diff --git a/statsmodels/.bzrignore b/statsmodels/.bzrignore
deleted file mode 100644
index 60a1812..0000000
--- a/statsmodels/.bzrignore
+++ /dev/null
@@ -1,29 +0,0 @@
-*.py[oc]
-# setup.py working directory
-build
-# setup.py dist directory
-./dist
-# Editor temporary/working/backup files
-*$
-.*.sw[nop]
-.sw[nop]
-*~
-[#]*#
-.#*
-*.bak
-*.tmp
-*.tgz
-*.rej
-*.org
-.project
-*.diff
-.settings/
-*.svn/
-*.log.py
-# Egg metadata
-./*.egg-info
-# The shelf plugin uses this dir
-./.shelf
-# Mac droppings
-.DS_Store
-help
diff --git a/statsmodels/.coveragerc b/statsmodels/.coveragerc
deleted file mode 100644
index ba8f9aa..0000000
--- a/statsmodels/.coveragerc
+++ /dev/null
@@ -1,26 +0,0 @@
-# .coveragerc to control coverage.py
-[run]
-branch = False
-
-[report]
-# Regexes for lines to exclude from consideration
-exclude_lines =
- # Have to re-enable the standard pragma
- pragma: no cover
-
- # Don't complain about missing debug-only code:
- def __repr__
- if self\.debug
-
- # Don't complain if tests don't hit defensive assertion code:
- raise AssertionError
- raise NotImplementedError
-
- # Don't complain if non-runnable code isn't run:
- if 0:
- if __name__ == .__main__.:
-
-ignore_errors = False
-
-[html]
-directory = coverage_html_report
\ No newline at end of file
diff --git a/statsmodels/.gitattributes b/statsmodels/.gitattributes
deleted file mode 100644
index ba00159..0000000
--- a/statsmodels/.gitattributes
+++ /dev/null
@@ -1,2 +0,0 @@
-* text=auto
-
diff --git a/statsmodels/.gitignore b/statsmodels/.gitignore
deleted file mode 100644
index 1c923e0..0000000
--- a/statsmodels/.gitignore
+++ /dev/null
@@ -1,39 +0,0 @@
-*.py[oc]
-# setup.py working directory
-build
-# setup.py dist directory
-./dist
-
-# repository directories for bzr-git
-.bzr
-.git
-marks.git
-marks.bzr
-
-# Editor temporary/working/backup files
-*$
-.*.sw[nop]
-.sw[nop]
-*~
-[#]*#
-.#*
-*.bak
-*.tmp
-*.tgz
-*.rej
-*.org
-.project
-*.diff
-.settings/
-*.svn/
-*.log.py
-# Egg metadata
-./*.egg-info
-# The shelf plugin uses this dir
-./.shelf
-# Mac droppings
-.DS_Store
-help
-
-# Project specific
-scikits/statsmodels/version.py
diff --git a/statsmodels/CHANGES.txt b/statsmodels/CHANGES.txt
deleted file mode 100644
index 84cf0bd..0000000
--- a/statsmodels/CHANGES.txt
+++ /dev/null
@@ -1,116 +0,0 @@
-Release History
-===============
-
-trunk for 0.4.0
----------------
-* tools.tools.ECDF -> distributions.ECDF
-* tools.tools.monotone_fn_inverter -> distributions.monotone_fn_inverter
-* tools.tools.StepFunction -> distributions.StepFunction
-
-0.3.1
------
-
-* Removed academic-only WFS dataset.
-* Fix easy_install issue on Windows.
-
-0.3.0
------
-
-*Changes that break backwards compatibility*
-
-Added api.py for importing. So the new convention for importing is::
-
- import scikits.statsmodels.api as sm
-
-Importing from modules directly now avoids unnecessary imports and increases
-the import speed if a library or user only needs specific functions.
-
-* sandbox/output.py -> iolib/table.py
-* lib/io.py -> iolib/foreign.py (Now contains Stata .dta format reader)
-* family -> families
-* families.links.inverse -> families.links.inverse_power
-* Datasets' Load class is now load function.
-* regression.py -> regression/linear_model.py
-* discretemod.py -> discrete/discrete_model.py
-* rlm.py -> robust/robust_linear_model.py
-* glm.py -> genmod/generalized_linear_model.py
-* model.py -> base/model.py
-* t() method -> tvalues attribute (t() still exists but raises a warning)
-
-*Main changes and additions*
-
-* Numerous bugfixes.
-* Time Series Analysis model (tsa)
-
- - Vector Autoregression Models VAR (tsa.VAR)
- - Autogressive Models AR (tsa.AR)
- - Autoregressive Moving Average Models ARMA (tsa.ARMA)
- optionally uses Cython for Kalman Filtering
- use setup.py install with option --with-cython
- - Baxter-King band-pass filter (tsa.filters.bkfilter)
- - Hodrick-Prescott filter (tsa.filters.hpfilter)
- - Christiano-Fitzgerald filter (tsa.filters.cffilter)
-
-* Improved maximum likelihood framework uses all available scipy.optimize solvers
-* Refactor of the datasets sub-package.
-* Added more datasets for examples.
-* Removed RPy dependency for running the test suite.
-* Refactored the test suite.
-* Refactored codebase/directory structure.
-* Support for offset and exposure in GLM.
-* Removed data_weights argument to GLM.fit for Binomial models.
-* New statistical tests, especially diagnostic and specification tests
-* Multiple test correction
-* General Method of Moment framework in sandbox
-* Improved documentation
-* and other additions
-
-
-0.2.0
------
-
-*Main changes*
-
- * renames for more consistency
- RLM.fitted_values -> RLM.fittedvalues
- GLMResults.resid_dev -> GLMResults.resid_deviance
- * GLMResults, RegressionResults:
- lazy calculations, convert attributes to properties with _cache
- * fix tests to run without rpy
- * expanded examples in examples directory
- * add PyDTA to lib.io -- functions for reading Stata .dta binary files
- and converting
- them to numpy arrays
- * made tools.categorical much more robust
- * add_constant now takes a prepend argument
- * fix GLS to work with only a one column design
-
-*New*
-
- * add four new datasets
-
- - A dataset from the American National Election Studies (1996)
- - Grunfeld (1950) investment data
- - Spector and Mazzeo (1980) program effectiveness data
- - A US macroeconomic dataset
- * add four new Maximum Likelihood Estimators for models with a discrete
- dependent variables with examples
-
- - Logit
- - Probit
- - MNLogit (multinomial logit)
- - Poisson
-
-*Sandbox*
-
- * add qqplot in sandbox.graphics
- * add sandbox.tsa (time series analysis) and sandbox.regression (anova)
- * add principal component analysis in sandbox.tools
- * add Seemingly Unrelated Regression (SUR) and Two-Stage Least Squares
- for systems of equations in sandbox.sysreg.Sem2SLS
- * add restricted least squares (RLS)
-
-
-0.1.0b1
--------
- * initial release
diff --git a/statsmodels/COPYRIGHTS.txt b/statsmodels/COPYRIGHTS.txt
deleted file mode 100644
index 26f4099..0000000
--- a/statsmodels/COPYRIGHTS.txt
+++ /dev/null
@@ -1,216 +0,0 @@
-
-The license of scikits.statsmodels can be found in LICENSE.txt
-
-scikits.statsmodels contains code or derivative code from several other
-packages. Some modules also note the author of individual contributions, or
-author of code that formed the basis for the derived or translated code.
-The copyright statements for the datasets are attached to the individual
-datasets, most datasets are in public domain, and we don't claim any copyright
-on any of them.
-
-In the following, we collect copyright statements of code from other packages,
-all of which are either a version of BSD or MIT licensed:
-
-numpy
-scipy
-pandas
-matplotlib
-scikits.learn
-
-
-
-numpy (scikits.statsmodels.compatnp contains copy of entire model)
-------------------------------------------------------------------
-Copyright (c) 2005-2009, NumPy Developers.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
-
- * Neither the name of the NumPy Developers nor the names of any
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
----------------------------------------------------------------------
-
-scipy
------
-Copyright (c) 2001, 2002 Enthought, Inc.
-All rights reserved.
-
-Copyright (c) 2003-2009 SciPy Developers.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- a. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- b. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- c. Neither the name of the Enthought nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
----------------------------------------------------------------------------
-
-
-pandas
-------
-
-Copyright (c) 2008-2009 AQR Capital Management, LLC
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
-
- * Neither the name of the copyright holder nor the names of any
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-----------------------------------------------------------------------
-
-
-matplotlib (copied from license.py)
-
-
-LICENSE AGREEMENT FOR MATPLOTLIB %(version)s
---------------------------------------
-
-1. This LICENSE AGREEMENT is between John D. Hunter ("JDH"), and the
-Individual or Organization ("Licensee") accessing and otherwise using
-matplotlib software in source or binary form and its associated
-documentation.
-
-2. Subject to the terms and conditions of this License Agreement, JDH
-hereby grants Licensee a nonexclusive, royalty-free, world-wide license
-to reproduce, analyze, test, perform and/or display publicly, prepare
-derivative works, distribute, and otherwise use matplotlib %(version)s
-alone or in any derivative version, provided, however, that JDH's
-License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
-2002-%(year)d John D. Hunter; All Rights Reserved" are retained in
-matplotlib %(version)s alone or in any derivative version prepared by
-Licensee.
-
-3. In the event Licensee prepares a derivative work that is based on or
-incorporates matplotlib %(version)s or any part thereof, and wants to
-make the derivative work available to others as provided herein, then
-Licensee hereby agrees to include in any such work a brief summary of
-the changes made to matplotlib %(version)s.
-
-4. JDH is making matplotlib %(version)s available to Licensee on an "AS
-IS" basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
-DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
-FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB %(version)s
-WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
-%(version)s FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
-LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
-MATPLOTLIB %(version)s, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
-THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material
-breach of its terms and conditions.
-
-7. Nothing in this License Agreement shall be deemed to create any
-relationship of agency, partnership, or joint venture between JDH and
-Licensee. This License Agreement does not grant permission to use JDH
-trademarks or trade name in a trademark sense to endorse or promote
-products or services of Licensee, or any third party.
-
-8. By copying, installing or otherwise using matplotlib %(version)s,
-Licensee agrees to be bound by the terms and conditions of this License
-Agreement.
---------------------------------------------------------------------------
-
-scikits.learn
--------------
-
-New BSD License
-
-Copyright (c) 2007 - 2010 Scikit-Learn Developers.
-All rights reserved.
-
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- a. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- b. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- c. Neither the name of the Scikit-learn Developers nor the names of
- its contributors may be used to endorse or promote products
- derived from this software without specific prior written
- permission.
-
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
----------------------------------------------------------------------------
-
diff --git a/statsmodels/INSTALL.txt b/statsmodels/INSTALL.txt
deleted file mode 100644
index 1412c2e..0000000
--- a/statsmodels/INSTALL.txt
+++ /dev/null
@@ -1,75 +0,0 @@
-Dependencies
-------------
-
-Python >= 2.5
-NumPy >= 1.4.0
-SciPy >= 0.7
-
-Optional Dependencies
----------------------
-
-Matplotlib is needed for plotting functionality and running many of the examples
-
-http://matplotlib.sourceforge.net/
-
-To build the documentation you will need Sphinx
-
-http://sphinx.pocoo.org/
-
-The documentation is available online as mentioned below.
-
-To run the test suite you will need nose
-
-http://somethingaboutorange.com/mrl/projects/nose/
-
-
-Easy Install
-------------
-
-To get the latest release using easy_install you need setuptools (easy_install)
-
-http://peak.telecommunity.com/DevCenter/EasyInstall
-
-Then you can do (with proper permissions)
-
-easy_install -U scikits.statsmodels
-
-Ubuntu/Debian
--------------
-
-On (X)ubuntu you can get dependencies through
-
-sudo apt-get install python python-setuptools python-numpy python-scipy
-
-You may install with easy_install, from source as mentioned below, or
-from the NeuroDebian repository: http://neuro.debian.net
-
-Installing from Source
-----------------------
-
-Download and extract the source distribution from PyPI or github
-
-PyPI: http://pypi.python.org/pypi/scikits.statsmodels
-Github: https://github.com/statsmodels/statsmodels/archives/master
-
-Or clone the bleeding edge code from our repository on github at
-
-https://github.com/statsmodels/statsmodels
-
-In the statsmodels directory do (with proper permissions)
-
-python setup.py install
-
-For the 0.3.0 release, there is some code written using Cython. If you have
-a C compiler, you can do
-
-python setup.py --with-cython
-python setup.py install
-
-Documentation
--------------
-
-You may find more information about the project and installation in our
-documentation
-
-http://statsmodels.sourceforge.net/
diff --git a/statsmodels/LICENSE.txt b/statsmodels/LICENSE.txt
deleted file mode 100644
index 6664c08..0000000
--- a/statsmodels/LICENSE.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-Copyright (C) 2006, Jonathan E. Taylor
-All rights reserved.
-
-Copyright (c) 2006-2008 Scipy Developers.
-All rights reserved.
-
-Copyright (c) 2009 Statsmodels Developers.
-All rights reserved.
-
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- a. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- b. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- c. Neither the name of Statsmodels nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL STATSMODELS OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
-
diff --git a/statsmodels/MANIFEST.in b/statsmodels/MANIFEST.in
deleted file mode 100644
index e0e8bdb..0000000
--- a/statsmodels/MANIFEST.in
+++ /dev/null
@@ -1,31 +0,0 @@
-global-include *.csv *.py *.txt *.pyx *.c
-#scikits*.*
-include MANIFEST.in
-
-#exclude scikits/statsmodels/docs/build/htmlhelp*
-recursive-exclude build *
-recursive-exclude dist *
-recursive-exclude tools *
-
-graft scikits/statsmodels/datasets
-graft scikits/statsmodels/tests
-graft scikits/statsmodels/sandbox/regression/data
-graft scikits/statsmodels/sandbox/tests
-graft scikits/statsmodels/sandbox/tsa/examples
-graft scikits/statsmodels/tsa/vector_ar/data
-recursive-include scikits/statsmodels/docs/source *
-exclude scikits/statsmodels/docs/source/generated/*
-recursive-include scikits/statsmodels/docs/sphinxext *
-recursive-exclude scikits/statsmodels/docs/build *
-#recursive-include scikits/statsmodels/docs/build/html *
-recursive-exclude scikits/statsmodels/docs/build/htmlhelp *
-include scikits/statsmodels/docs/build/htmlhelp/statsmodelsdoc.chm
-include scikits/statsmodels/docs/make.bat
-include scikits/statsmodels/docs/Makefile
-#include scikits/statsmodels/docs mak*
-#include scikits/statsmodels/docs GLM*
-
-#missed files: .npz, .npy
-include scikits/statsmodels/tsa/vector_ar/tests/results/vars_results.npz
-include scikits/statsmodels/iolib/tests/results/*
-global-exclude *~ *.swp *.pyc *.bak
diff --git a/statsmodels/README.txt b/statsmodels/README.txt
deleted file mode 100644
index 2965bc8..0000000
--- a/statsmodels/README.txt
+++ /dev/null
@@ -1,121 +0,0 @@
-What it is
-==========
-
-Statsmodels is a Python package that provides a complement to scipy for
-statistical computations including descriptive statistics and
-estimation of statistical models.
-
-Main Features
-=============
-
-* regression: Generalized least squares (including weighted least squares and
- least squares with autoregressive errors), ordinary least squares.
-* glm: Generalized linear models with support for all of the one-parameter
- exponential family distributions.
-* discrete choice models: Poisson, probit, logit, multinomial logit
-* rlm: Robust linear models with support for several M-estimators.
-* tsa: Time series analysis models, including ARMA, AR, VAR
-* nonparametric : (Univariate) kernel density estimators
-* datasets: Datasets to be distributed and used for examples and in testing.
-* PyDTA: Tools for reading Stata .dta files into numpy arrays.
-* stats: a wide range of statistical tests
-* sandbox: There is also a sandbox which contains code for generalized additive
- models (untested), mixed effects models, cox proportional hazards model (both
- are untested and still dependent on the nipy formula framework), generating
- descriptive statistics, and printing table output to ascii, latex, and html.
- There is also experimental code for systems of equations regression,
- time series models, panel data estimators and information theoretic measures.
- None of this code is considered "production ready".
-
-
-Where to get it
-===============
-
-Development branches will be on Github. This is where to go to get the most
-up to date code in the trunk branch. Experimental code is hosted here
-in branches and in developer forks. This code is merged to master often. We
-try to make sure that the master branch is always stable.
-
-https://www.github.com/statsmodels/statsmodels
-
-Source download of stable tags will be on SourceForge.
-
-https://sourceforge.net/projects/statsmodels/
-
-or
-
-PyPi: http://pypi.python.org/pypi/scikits.statsmodels/
-
-
-Installation from sources
-=========================
-
-In the top directory, just do::
-
- python setup.py install
-
-See INSTALL.txt for requirements or
-
-http://statsmodels.sourceforge.net/
-
-For more information.
-
-
-License
-=======
-
-Simplified BSD
-
-
-Documentation
-=============
-
-The official documentation is hosted on SourceForge.
-
-http://statsmodels.sourceforge.net/
-
-The sphinx docs are currently undergoing a lot of work. They are not yet
-comprehensive, but should get you started.
-
-Our blog will continue to be updated as we make progress on the code.
-
-http://scipystats.blogspot.com
-
-
-Windows Help
-============
-The source distribution for Windows includes a htmlhelp file (statsmodels.chm).
-This can be opened from the python interpreter ::
-
->>> import scikits.statsmodels.api as sm
->>> sm.open_help()
-
-
-Discussion and Development
-==========================
-
-All chatter will take place on the or scipy-user mailing list. We are very
-interested in receiving feedback about usability, suggestions for improvements,
-and bug reports via the mailing list or the bug tracker at
-
-https://github.com/statsmodels/statsmodels/issues
-
-There is also a google group at
-
-http://groups.google.com/group/pystatsmodels
-
-to discuss development and design issues that are deemed to be too specialized
-for the scipy-dev/user list.
-
-
-Python 3
-========
-
-scikits.statsmodels has been ported and tested for Python 3.2. Python 3
-version of the code can be obtained by running 2to3.py over the entire
-statsmodels source. The numerical core of statsmodels worked almost without
-changes, however there can be problems with data input and plotting.
-The STATA file reader and writer in iolib.foreign has not been ported yet.
-And there are still some problems with the matplotlib version for Python 3
-that was used in testing. Running the test suite with Python 3.2 shows some
-errors related to foreign and matplotlib.
diff --git a/statsmodels/causality.npy b/statsmodels/causality.npy
deleted file mode 100644
index 4609d58..0000000
Binary files a/statsmodels/causality.npy and /dev/null differ
diff --git a/statsmodels/coefs.npy b/statsmodels/coefs.npy
deleted file mode 100644
index d711b41..0000000
Binary files a/statsmodels/coefs.npy and /dev/null differ
diff --git a/statsmodels/crit.npy b/statsmodels/crit.npy
deleted file mode 100644
index 457d15f..0000000
Binary files a/statsmodels/crit.npy and /dev/null differ
diff --git a/statsmodels/detomega.npy b/statsmodels/detomega.npy
deleted file mode 100644
index 236c321..0000000
Binary files a/statsmodels/detomega.npy and /dev/null differ
diff --git a/statsmodels/irf.npy b/statsmodels/irf.npy
deleted file mode 100644
index a7e30a0..0000000
Binary files a/statsmodels/irf.npy and /dev/null differ
diff --git a/statsmodels/loglike.npy b/statsmodels/loglike.npy
deleted file mode 100644
index 6f7f1be..0000000
Binary files a/statsmodels/loglike.npy and /dev/null differ
diff --git a/statsmodels/nahead.npy b/statsmodels/nahead.npy
deleted file mode 100644
index a3ad668..0000000
Binary files a/statsmodels/nahead.npy and /dev/null differ
diff --git a/statsmodels/nirfs.npy b/statsmodels/nirfs.npy
deleted file mode 100644
index a3ad668..0000000
Binary files a/statsmodels/nirfs.npy and /dev/null differ
diff --git a/statsmodels/obs.npy b/statsmodels/obs.npy
deleted file mode 100644
index f8bf808..0000000
Binary files a/statsmodels/obs.npy and /dev/null differ
diff --git a/statsmodels/orthirf.npy b/statsmodels/orthirf.npy
deleted file mode 100644
index 27b7e4f..0000000
Binary files a/statsmodels/orthirf.npy and /dev/null differ
diff --git a/statsmodels/phis.npy b/statsmodels/phis.npy
deleted file mode 100644
index c9bcbc1..0000000
Binary files a/statsmodels/phis.npy and /dev/null differ
diff --git a/statsmodels/scikits/__init__.py b/statsmodels/scikits/__init__.py
deleted file mode 100644
index 4d0b94e..0000000
--- a/statsmodels/scikits/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-__import__('pkg_resources').declare_namespace(__name__)
diff --git a/statsmodels/scikits/statsmodels/LICENSE.txt b/statsmodels/scikits/statsmodels/LICENSE.txt
deleted file mode 100644
index 3de6a31..0000000
--- a/statsmodels/scikits/statsmodels/LICENSE.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-Copyright (C) 2006, Jonathan E. Taylor
-All rights reserved.
-
-Copyright (c) 2006-2008 Scipy Developers.
-All rights reserved.
-
-Copyright (c) 2009 Statsmodels Developers.
-All rights reserved.
-
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
-
-3. The name of the author may not be used to endorse or promote
- products derived from this software without specific prior
- written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
-INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
-IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
diff --git a/statsmodels/scikits/statsmodels/TODO.txt b/statsmodels/scikits/statsmodels/TODO.txt
deleted file mode 100644
index ed91dc9..0000000
--- a/statsmodels/scikits/statsmodels/TODO.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-Tests TODO
-----------
-Test I/O of models wrt array types, dimensions
- - add checks in all top class for data
-
-Known Issues
-----------
-Need to clip mu's in GLM to avoid np.log(0), etc. (done for gamma)
-Regression will not work with a 1d array for exog (pinv needs two), then
- other calculations need checking and changing
-
-TODO
------
-Make a recarray dataset and masked dataset for testing and development
-Rename bse
-Add tvalues attribute to results instead of calling t method?
-
-
-note the tests requirements somewhere (rpy, R, car library)
diff --git a/statsmodels/scikits/statsmodels/__init__.py b/statsmodels/scikits/statsmodels/__init__.py
deleted file mode 100644
index 5fc578b..0000000
--- a/statsmodels/scikits/statsmodels/__init__.py
+++ /dev/null
@@ -1,77 +0,0 @@
-#
-# models - Statistical Models
-#
-from __future__ import with_statement
-
-__docformat__ = 'restructuredtext'
-
-#from version import __version__
-#from info import __doc__
-
-#from regression import *
-#from genmod.glm import *
-#from robust.rlm import *
-#from discrete.discretemod import *
-#import tsa
-#from tools.tools import add_constant, chain_dot
-#import base.model
-#import tools.tools
-#import datasets
-#import glm.families
-#import stats.stattools
-#import iolib
-
-from numpy import errstate
-#__all__ = filter(lambda s:not s.startswith('_'),dir())
-
-from numpy.testing import Tester
-class NoseWrapper(Tester):
- '''
- This is simply a monkey patch for numpy.testing.Tester.
-
- It allows extra_argv to be changed from its default None to ['--exe'] so
- that the tests can be run the same across platforms. It also takes kwargs
- that are passed to numpy.errstate to suppress floating point warnings.
- '''
- def test(self, label='fast', verbose=1, extra_argv=['--exe'], doctests=False,
- coverage=False, **kwargs):
- ''' Run tests for module using nose
-
- %(test_header)s
- doctests : boolean
- If True, run doctests in module, default False
- coverage : boolean
- If True, report coverage of NumPy code, default False
- (Requires the coverage module:
- http://nedbatchelder.com/code/modules/coverage.html)
- kwargs
- Passed to numpy.errstate. See its documentation for details.
- '''
-
- # cap verbosity at 3 because nose becomes *very* verbose beyond that
- verbose = min(verbose, 3)
-
- from numpy.testing import utils
- utils.verbose = verbose
-
- if doctests:
- print "Running unit tests and doctests for %s" % self.package_name
- else:
- print "Running unit tests for %s" % self.package_name
-
- self._show_system_info()
-
- # reset doctest state on every run
- import doctest
- doctest.master = None
-
- argv, plugins = self.prepare_test_args(label, verbose, extra_argv,
- doctests, coverage)
- from numpy.testing.noseclasses import NumpyTestProgram
- from warnings import simplefilter #, catch_warnings
- with errstate(**kwargs):
-## with catch_warnings():
- simplefilter('ignore', category=DeprecationWarning)
- t = NumpyTestProgram(argv=argv, exit=False, plugins=plugins)
- return t.result
-test = NoseWrapper().test
diff --git a/statsmodels/scikits/statsmodels/api.py b/statsmodels/scikits/statsmodels/api.py
deleted file mode 100644
index 4286a3a..0000000
--- a/statsmodels/scikits/statsmodels/api.py
+++ /dev/null
@@ -1,32 +0,0 @@
-import iolib, datasets, tools
-from tools.tools import add_constant, categorical
-import regression
-from .regression.linear_model import OLS, GLS, WLS, GLSAR
-from .genmod.generalized_linear_model import GLM
-from .genmod import families
-import robust
-from .robust.robust_linear_model import RLM
-from .discrete.discrete_model import Poisson, Logit, Probit, MNLogit
-from .tsa import api as tsa
-import nonparametric
-import distributions
-from __init__ import test
-from . import version
-from info import __doc__
-from graphics.qqplot import qqplot
-
-import os
-
-chmpath = os.path.join(os.path.dirname(__file__),
- 'docs\\build\\htmlhelp\\statsmodelsdoc.chm')
-if os.path.exists(chmpath):
- def open_help(chmpath=chmpath):
- from subprocess import Popen
- p = Popen(chmpath, shell=True)
-
-
-del os
-del chmpath
-
-
-
diff --git a/statsmodels/scikits/statsmodels/base/__init__.py b/statsmodels/scikits/statsmodels/base/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/base/data.py b/statsmodels/scikits/statsmodels/base/data.py
deleted file mode 100644
index ca93c91..0000000
--- a/statsmodels/scikits/statsmodels/base/data.py
+++ /dev/null
@@ -1,322 +0,0 @@
-"""
-Base tools for handling various kinds of data structures, attaching metadata to
-results, and doing data cleaning
-"""
-
-import numpy as np
-from pandas import DataFrame, Series, TimeSeries
-from scikits.statsmodels.tools.decorators import (resettable_cache,
- cache_readonly, cache_writable)
-import scikits.statsmodels.tools.data as data_util
-
-class ModelData(object):
- """
- Class responsible for handling input data and extracting metadata into the
- appropriate form
- """
- def __init__(self, endog, exog=None, **kwds):
- self._orig_endog = endog
- self._orig_exog = exog
- self.endog, self.exog = self._convert_endog_exog(endog, exog)
- self._check_integrity()
- self._cache = resettable_cache()
-
- def _convert_endog_exog(self, endog, exog):
-
- # for consistent outputs if endog is (n,1)
- yarr = self._get_yarr(endog)
- xarr = None
- if exog is not None:
- xarr = self._get_xarr(exog)
- if xarr.ndim == 1:
- xarr = xarr[:, None]
- if xarr.ndim != 2:
- raise ValueError("exog is not 1d or 2d")
-
- return yarr, xarr
-
- @cache_writable()
- def ynames(self):
- endog = self._orig_endog
- ynames = self._get_names(endog)
- if not ynames:
- ynames = _make_endog_names(endog)
-
- if len(ynames) == 1:
- return ynames[0]
- else:
- return list(ynames)
-
- @cache_writable()
- def xnames(self):
- exog = self._orig_exog
- if exog is not None:
- xnames = self._get_names(exog)
- if not xnames:
- xnames = _make_exog_names(exog)
- return list(xnames)
- return None
-
- @cache_readonly
- def row_labels(self):
- exog = self._orig_exog
- if exog is not None:
- row_labels = self._get_row_labels(exog)
- else:
- endog = self._orig_endog
- row_labels = self._get_row_labels(endog)
- return row_labels
-
- def _get_row_labels(self, arr):
- return None
-
- def _get_names(self, arr):
- if isinstance(arr, DataFrame):
- return list(arr.columns)
- elif isinstance(arr, Series):
- if arr.name:
- return [arr.name]
- else:
- return
- else:
- try:
- return arr.dtype.names
- except AttributeError:
- pass
-
- return None
-
- def _get_yarr(self, endog):
- if data_util.is_structured_ndarray(endog):
- endog = data_util.struct_to_ndarray(endog)
- return np.asarray(endog).squeeze()
-
- def _get_xarr(self, exog):
- if data_util.is_structured_ndarray(exog):
- exog = data_util.struct_to_ndarray(exog)
- return np.asarray(exog)
-
- def _check_integrity(self):
- if self.exog is not None:
- if len(self.exog) != len(self.endog):
- raise ValueError("endog and exog matrices are different sizes")
-
- def wrap_output(self, obj, how='columns'):
- if how == 'columns':
- return self.attach_columns(obj)
- elif how == 'rows':
- return self.attach_rows(obj)
- elif how == 'cov':
- return self.attach_cov(obj)
- elif how == 'dates':
- return self.attach_dates(obj)
- elif how == 'columns_eq':
- return self.attach_columns_eq(obj)
- elif how == 'cov_eq':
- return self.attach_cov_eq(obj)
- else:
- return obj
-
- def attach_columns(self, result):
- return result
-
- def attach_columns_eq(self, result):
- return result
-
- def attach_cov(self, result):
- return result
-
- def attach_cov_eq(self, result):
- return result
-
- def attach_rows(self, result):
- return result
-
- def attach_dates(self, result):
- return result
-
-class PandasData(ModelData):
- """
- Data handling class which knows how to reattach pandas metadata to model
- results
- """
-
- def _get_row_labels(self, arr):
- return arr.index
-
- def attach_columns(self, result):
- if result.squeeze().ndim == 1:
- return Series(result, index=self.xnames)
- else: # for e.g., confidence intervals
- return DataFrame(result, index=self.xnames)
-
- def attach_columns_eq(self, result):
- return DataFrame(result, index=self.xnames, columns=self.ynames)
-
- def attach_cov(self, result):
- return DataFrame(result, index=self.xnames, columns=self.xnames)
-
- def attach_cov_eq(self, result):
- return DataFrame(result, index=self.ynames, columns=self.ynames)
-
- def attach_rows(self, result):
- # assumes if len(row_labels) > len(result) it's bc it was truncated
- # at the front, for AR lags, for example
- if result.squeeze().ndim == 1:
- return Series(result, index=self.row_labels[-len(result):])
- else: # this is for VAR results, may not be general enough
- return DataFrame(result, index=self.row_labels[-len(result):],
- columns=self.ynames)
-
- def attach_dates(self, result):
- return TimeSeries(result, index=self.predict_dates)
-
-class TimeSeriesData(ModelData):
- """
- Data handling class which returns scikits.timeseries model results
- """
- def _get_row_labels(self, arr):
- return arr.dates
-
- #def attach_columns(self, result):
- # return recarray?
-
- #def attach_cov(self, result):
- # return recarray?
-
- def attach_rows(self, result):
- from scikits.timeseries import time_series
- return time_series(result, dates = self.row_labels[-len(result):])
-
- def attach_dates(self, result):
- from scikits.timeseries import time_series
- return time_series(result, dates = self.predict_dates)
-
-
-_la = None
-def _lazy_import_larry():
- global _la
- import la
- _la = la
-
-
-class LarryData(ModelData):
- """
- Data handling class which knows how to reattach pandas metadata to model
- results
- """
- def __init__(self, endog, exog=None, **kwds):
- _lazy_import_larry()
- super(LarryData, self).__init__(endog, exog=exog, **kwds)
-
- def _get_yarr(self, endog):
- try:
- return endog.x
- except AttributeError:
- return np.asarray(endog).squeeze()
-
- def _get_xarr(self, exog):
- try:
- return exog.x
- except AttributeError:
- return np.asarray(exog)
-
- def _get_names(self, exog):
- try:
- return exog.label[1]
- except Exception:
- pass
-
- return None
-
- def _get_row_labels(self, arr):
- return arr.label[0]
-
- def attach_columns(self, result):
- if result.ndim == 1:
- return _la.larry(result, [self.xnames])
- else:
- shape = results.shape
- return _la.larray(result, [self.xnames, range(shape[1])])
-
- def attach_columns_eq(self, result):
- return _la.larray(result, [self.xnames], [self.xnames])
-
- def attach_cov(self, result):
- return _la.larry(result, [self.xnames], [self.xnames])
-
- def attach_cov_eq(self, result):
- return _la.larray(result, [self.ynames], [self.ynames])
-
- def attach_rows(self, result):
- return _la.larry(result, [self.row_labels[-len(result):]])
-
- def attach_dates(self, result):
- return _la.larray(result, [self.predict_dates])
-
-def _is_structured_array(data):
- return isinstance(data, np.ndarray) and data.dtype.names is not None
-
-def _make_endog_names(endog):
- if endog.ndim == 1 or endog.shape[1] == 1:
- ynames = ['y']
- else: # for VAR
- ynames = ['y%d' % (i+1) for i in range(endog.shape[1])]
-
- return ynames
-
-def _make_exog_names(exog):
- exog_var = exog.var(0)
- if (exog_var == 0).any():
- # assumes one constant in first or last position
- # avoid exception if more than one constant
- const_idx = exog_var.argmin()
- if const_idx == exog.shape[1] - 1:
- exog_names = ['x%d' % i for i in range(1,exog.shape[1])]
- exog_names += ['const']
- else:
- exog_names = ['x%d' % i for i in range(exog.shape[1])]
- exog_names[const_idx] = 'const'
- else:
- exog_names = ['x%d' % i for i in range(exog.shape[1])]
-
- return exog_names
-
-def handle_data(endog, exog):
- """
- Given inputs
- """
- if _is_using_pandas(endog, exog):
- klass = PandasData
- elif _is_using_larry(endog, exog):
- klass = LarryData
- elif _is_using_timeseries(endog, exog):
- klass = TimeSeriesData
- # keep this check last
- elif _is_using_ndarray(endog, exog):
- klass = ModelData
- else:
- raise ValueError('unrecognized data structures: %s / %s' %
- (type(endog), type(exog)))
-
- return klass(endog, exog=exog)
-
-def _is_using_ndarray(endog, exog):
- return (isinstance(endog, np.ndarray) and
- (isinstance(exog, np.ndarray) or exog is None))
-
-def _is_using_pandas(endog, exog):
- from pandas import Series, DataFrame, WidePanel
- klasses = (Series, DataFrame, WidePanel)
- return (isinstance(endog, klasses) or isinstance(exog, klasses))
-
-def _is_using_larry(endog, exog):
- try:
- import la
- return isinstance(endog, la.larry) or isinstance(exog, la.larry)
- except ImportError:
- return False
-
-def _is_using_timeseries(endog, exog):
- from scikits.timeseries import TimeSeries as tsTimeSeries
- return isinstance(endog, tsTimeSeries) or isinstance(exog, tsTimeSeries)
diff --git a/statsmodels/scikits/statsmodels/base/model.py b/statsmodels/scikits/statsmodels/base/model.py
deleted file mode 100644
index cb5eaaf..0000000
--- a/statsmodels/scikits/statsmodels/base/model.py
+++ /dev/null
@@ -1,1466 +0,0 @@
-import numpy as np
-from scipy import optimize, stats
-from scikits.statsmodels.base.data import handle_data
-from scikits.statsmodels.tools.tools import recipr
-from scikits.statsmodels.stats.contrast import ContrastResults
-from scikits.statsmodels.tools.decorators import (resettable_cache,
- cache_readonly)
-import scikits.statsmodels.base.wrapper as wrap
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1
-
-
-class Model(object):
- """
- A (predictive) statistical model. The class Model itself is not to be used.
-
- Model lays out the methods expected of any subclass.
-
- Parameters
- ----------
- endog : array-like
- Endogenous response variable.
- exog : array-like
- Exogenous design.
-
- Notes
- -----
- `endog` and `exog` are references to any data provided. So if the data is
- already stored in numpy arrays and it is changed then `endog` and `exog`
- will change as well.
- """
-
- def __init__(self, endog, exog=None):
- self._data = handle_data(endog, exog)
- self.exog = self._data.exog
- self.endog = self._data.endog
-
- @property
- def endog_names(self):
- return self._data.ynames
-
- @property
- def exog_names(self):
- return self._data.xnames
-
- def fit(self):
- """
- Fit a model to data.
- """
- raise NotImplementedError
-
- def predict(self, exog, params=None):
- """
- After a model has been fit predict returns the fitted values. If
- the model has not been fit, then fit is called.
- """
- raise NotImplementedError
-
-
-class LikelihoodModel(Model):
- """
- Likelihood model is a subclass of Model.
- """
-
- def __init__(self, endog, exog=None):
- super(LikelihoodModel, self).__init__(endog, exog)
- self.initialize()
-
- def initialize(self):
- """
- Initialize (possibly re-initialize) a Model instance. For
- instance, the design matrix of a linear model may change
- and some things must be recomputed.
- """
- pass
-
- # TODO: if the intent is to re-initialize the model with new data then this
- # method needs to take inputs...
-
- def loglike(self, params):
- """
- Log-likelihood of model.
- """
- raise NotImplementedError
-
- def score(self, params):
- """
- Score vector of model.
-
- The gradient of logL with respect to each parameter.
- """
- raise NotImplementedError
-
- def information(self, params):
- """
- Fisher information matrix of model
-
- Returns -Hessian of loglike evaluated at params.
- """
- raise NotImplementedError
-
- def hessian(self, params):
- """
- The Hessian matrix of the model
- """
- raise NotImplementedError
-
- def fit(self, start_params=None, method='newton', maxiter=100,
- full_output=True, disp=True, fargs=(), callback=None, retall=False,
- **kwargs):
- """
- Fit method for likelihood based models
-
- Parameters
- ----------
- start_params : array-like, optional
- Initial guess of the solution for the loglikelihood maximization.
- The default is an array of zeros.
- method : str {'newton','nm','bfgs','powell','cg', or 'ncg'}
- Method can be 'newton' for Newton-Raphson, 'nm' for Nelder-Mead,
- 'bfgs' for Broyden-Fletcher-Goldfarb-Shanno, 'powell' for modified
- Powell's method, 'cg' for conjugate gradient, or 'ncg' for Newton-
- conjugate gradient. `method` determines which solver from
- scipy.optimize is used. The explicit arguments in `fit` are passed
- to the solver. Each solver has several optional arguments that are
- not the same across solvers. See the notes section below (or
- scipy.optimize) for the available arguments.
- maxiter : int
- The maximum number of iterations to perform.
- full_output : bool
- Set to True to have all available output in the Results object's
- mle_retvals attribute. The output is dependent on the solver.
- See LikelihoodModelResults notes section for more information.
- disp : bool
- Set to True to print convergence messages.
- fargs : tuple
- Extra arguments passed to the likelihood function, i.e.,
- loglike(x,*args)
- callback : callable callback(xk)
- Called after each iteration, as callback(xk), where xk is the
- current parameter vector.
- retall : bool
- Set to True to return list of solutions at each iteration.
- Available in Results object's mle_retvals attribute.
-
- Notes
- -----
- Optional arguments for the solvers (available in Results.mle_settings):
-
- 'newton'
- tol : float
- Relative error in params acceptable for convergence.
- 'nm' -- Nelder Mead
- xtol : float
- Relative error in params acceptable for convergence
- ftol : float
- Relative error in loglike(params) acceptable for
- convergence
- maxfun : int
- Maximum number of function evaluations to make.
- 'bfgs'
- gtol : float
- Stop when norm of gradient is less than gtol.
- norm : float
- Order of norm (np.Inf is max, -np.Inf is min)
- epsilon
- If fprime is approximated, use this value for the step
- size. Only relevant if LikelihoodModel.score is None.
- 'cg'
- gtol : float
- Stop when norm of gradient is less than gtol.
- norm : float
- Order of norm (np.Inf is max, -np.Inf is min)
- epsilon : float
- If fprime is approximated, use this value for the step
- size. Can be scalar or vector. Only relevant if
- Likelihoodmodel.score is None.
- 'ncg'
- fhess_p : callable f'(x,*args)
- Function which computes the Hessian of f times an arbitrary
- vector, p. Should only be supplied if
- LikelihoodModel.hessian is None.
- avextol : float
- Stop when the average relative error in the minimizer
- falls below this amount.
- epsilon : float or ndarray
- If fhess is approximated, use this value for the step size.
- Only relevant if Likelihoodmodel.hessian is None.
- 'powell'
- xtol : float
- Line-search error tolerance
- ftol : float
- Relative error in loglike(params) for acceptable for
- convergence.
- maxfun : int
- Maximum number of function evaluations to make.
- start_direc : ndarray
- Initial direction set.
- """
- Hinv = None # JP error if full_output=0, Hinv not defined
- methods = ['newton', 'nm', 'bfgs', 'powell', 'cg', 'ncg']
- if start_params is None:
- if hasattr(self, 'start_params'):
- start_params = self.start_params
- elif self.exog is not None:
- # fails for shape (K,)?
- start_params = [0] * self.exog.shape[1]
- else:
- raise ValueError("If exog is None, then start_params should "
- "be specified")
-
- if method.lower() not in methods:
- raise ValueError("Unknown fit method %s" % method)
- method = method.lower()
-
- # TODO: separate args from nonarg taking score and hessian, ie.,
- # user-supplied and numerically evaluated estimate frprime doesn't take
- # args in most (any?) of the optimize function
-
- f = lambda params, *args: -self.loglike(params, *args)
- score = lambda params: -self.score(params)
- try:
- hess = lambda params: -self.hessian(params)
- except:
- hess = None
-
- fit_funcs = {
- 'newton': _fit_mle_newton,
- 'nm': _fit_mle_nm, # Nelder-Mead
- 'bfgs': _fit_mle_bfgs,
- 'cg': _fit_mle_cg,
- 'ncg': _fit_mle_ncg,
- 'powell': _fit_mle_powell
- }
-
- if method == 'newton':
- score = lambda params: self.score(params)
- hess = lambda params: self.hessian(params)
-
- func = fit_funcs[method]
- xopt, retvals = func(f, score, start_params, fargs, kwargs,
- disp=disp, maxiter=maxiter, callback=callback,
- retall=retall, full_output=full_output,
- hess=hess)
-
- if not full_output:
- xopt = retvals
-
- # NOTE: better just to use the Analytic Hessian here, as approximation
- # isn't great
-# if method == 'bfgs' and full_output:
-# Hinv = retvals.setdefault('Hinv', 0)
- elif method == 'newton' and full_output:
- Hinv = np.linalg.inv(-retvals['Hessian'])
- else:
- try:
- Hinv = np.linalg.inv(-1 * self.hessian(xopt))
- except:
- #might want custom warning ResultsWarning? NumericalWarning?
- from warnings import warn
- warndoc = ('Inverting hessian failed, no bse or '
- 'cov_params available')
- warn(warndoc, Warning)
- Hinv = None
-
- #TODO: add Hessian approximation and change the above if needed
- mlefit = LikelihoodModelResults(self, xopt, Hinv, scale=1.)
-
- #TODO: hardcode scale?
- if isinstance(retvals, dict):
- mlefit.mle_retvals = retvals
- optim_settings = {'optimizer': method, 'start_params': start_params,
- 'maxiter': maxiter, 'full_output': full_output,
- 'disp': disp, 'fargs': fargs, 'callback': callback,
- 'retall': retall}
- optim_settings.update(kwargs)
- mlefit.mle_settings = optim_settings
- return mlefit
-
-
-def _fit_mle_newton(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- tol = kwargs.setdefault('tol', 1e-8)
- iterations = 0
- oldparams = np.inf
- newparams = np.asarray(start_params)
- if retall:
- history = [oldparams, newparams]
- while (iterations < maxiter and np.all(np.abs(newparams -
- oldparams) > tol)):
- H = hess(newparams)
- oldparams = newparams
- newparams = oldparams - np.dot(np.linalg.inv(H),
- score(oldparams))
- if retall:
- history.append(newparams)
- if callback is not None:
- callback(newparams)
- iterations += 1
- fval = f(newparams, *fargs) # this is the negative likelihood
- if iterations == maxiter:
- warnflag = 1
- if disp:
- print ("Warning: Maximum number of iterations has been "
- "exceeded.")
- print " Current function value: %f" % fval
- print " Iterations: %d" % iterations
- else:
- warnflag = 0
- if disp:
- print "Optimization terminated successfully."
- print " Current function value: %f" % fval
- print " Iterations %d" % iterations
- if full_output:
- (xopt, fopt, niter,
- gopt, hopt) = (newparams, f(newparams, *fargs),
- iterations, score(newparams),
- hess(newparams))
- converged = not warnflag
- retvals = {'fopt': fopt, 'iterations': niter, 'score': gopt,
- 'Hessian': hopt, 'warnflag': warnflag,
- 'converged': converged}
- if retall:
- retvals.update({'allvecs': history})
- else:
- retvals = newparams
-
- return xopt, retvals
-
-
-def _fit_mle_bfgs(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- gtol = kwargs.setdefault('gtol', 1.0000000000000001e-05)
- norm = kwargs.setdefault('norm', np.Inf)
- epsilon = kwargs.setdefault('epsilon', 1.4901161193847656e-08)
- retvals = optimize.fmin_bfgs(f, start_params, score, args=fargs,
- gtol=gtol, norm=norm, epsilon=epsilon,
- maxiter=maxiter, full_output=full_output,
- disp=disp, retall=retall, callback=callback)
- if full_output:
- if not retall:
- xopt, fopt, gopt, Hinv, fcalls, gcalls, warnflag = retvals
- else:
- (xopt, fopt, gopt, Hinv, fcalls,
- gcalls, warnflag, allvecs) = retvals
- converged = not warnflag
- retvals = {'fopt': fopt, 'gopt': gopt, 'Hinv': Hinv,
- 'fcalls': fcalls, 'gcalls': gcalls, 'warnflag':
- warnflag, 'converged': converged}
- if retall:
- retvals.update({'allvecs': allvecs})
-
- return xopt, retvals
-
-
-def _fit_mle_nm(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- xtol = kwargs.setdefault('xtol', 0.0001)
- ftol = kwargs.setdefault('ftol', 0.0001)
- maxfun = kwargs.setdefault('maxfun', None)
- retvals = optimize.fmin(f, start_params, args=fargs, xtol=xtol,
- ftol=ftol, maxiter=maxiter, maxfun=maxfun,
- full_output=full_output, disp=disp, retall=retall,
- callback=callback)
- if full_output:
- if not retall:
- xopt, fopt, niter, fcalls, warnflag = retvals
- else:
- xopt, fopt, niter, fcalls, warnflag, allvecs = retvals
- converged = not warnflag
- retvals = {'fopt': fopt, 'iterations': niter,
- 'fcalls': fcalls, 'warnflag': warnflag,
- 'converged': converged}
- if retall:
- retvals.update({'allvecs': allvecs})
-
- return xopt, retvals
-
-
-def _fit_mle_cg(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- gtol = kwargs.setdefault('gtol', 1.0000000000000001e-05)
- norm = kwargs.setdefault('norm', np.Inf)
- epsilon = kwargs.setdefault('epsilon', 1.4901161193847656e-08)
- retvals = optimize.fmin_cg(f, start_params, score, gtol=gtol, norm=norm,
- epsilon=epsilon, maxiter=maxiter,
- full_output=full_output, disp=disp,
- retall=retall, callback=callback)
- if full_output:
- if not retall:
- xopt, fopt, fcalls, gcalls, warnflag = retvals
- else:
- xopt, fopt, fcalls, gcalls, warnflag, allvecs = retvals
- converged = not warnflag
- retvals = {'fopt': fopt, 'fcalls': fcalls, 'gcalls': gcalls,
- 'warnflag': warnflag, 'converged': converged}
- if retall:
- retvals.update({'allvecs': allvecs})
-
- return xopt, retvals
-
-
-def _fit_mle_ncg(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- fhess_p = kwargs.setdefault('fhess_p', None)
- avextol = kwargs.setdefault('avextol', 1.0000000000000001e-05)
- epsilon = kwargs.setdefault('epsilon', 1.4901161193847656e-08)
- retvals = optimize.fmin_ncg(f, start_params, score, fhess_p=fhess_p,
- fhess=hess, args=fargs, avextol=avextol,
- epsilon=epsilon, maxiter=maxiter,
- full_output=full_output, disp=disp,
- retall=retall, callback=callback)
- if full_output:
- if not retall:
- xopt, fopt, fcalls, gcalls, hcalls, warnflag = retvals
- else:
- xopt, fopt, fcalls, gcalls, hcalls, warnflag, allvecs =\
- retvals
- converged = not warnflag
- retvals = {'fopt': fopt, 'fcalls': fcalls, 'gcalls': gcalls,
- 'hcalls': hcalls, 'warnflag': warnflag,
- 'converged': converged}
- if retall:
- retvals.update({'allvecs': allvecs})
-
- return xopt, retvals
-
-
-def _fit_mle_powell(f, score, start_params, fargs, kwargs, disp=True,
- maxiter=100, callback=None, retall=False,
- full_output=True, hess=None):
- xtol = kwargs.setdefault('xtol', 0.0001)
- ftol = kwargs.setdefault('ftol', 0.0001)
- maxfun = kwargs.setdefault('maxfun', None)
- start_direc = kwargs.setdefault('start_direc', None)
- retvals = optimize.fmin_powell(f, start_params, args=fargs, xtol=xtol,
- ftol=ftol, maxiter=maxiter, maxfun=maxfun,
- full_output=full_output, disp=disp,
- retall=retall, callback=callback,
- direc=start_direc)
- if full_output:
- if not retall:
- xopt, fopt, direc, niter, fcalls, warnflag = retvals
- else:
- xopt, fopt, direc, niter, fcalls, warnflag, allvecs =\
- retvals
- converged = not warnflag
- retvals = {'fopt': fopt, 'direc': direc, 'iterations': niter,
- 'fcalls': fcalls, 'warnflag': warnflag,
- 'converged': converged}
- if retall:
- retvals.update({'allvecs': allvecs})
-
- return xopt, retvals
-
-
-#TODO: the below is unfinished
-class GenericLikelihoodModel(LikelihoodModel):
- """
- Allows the fitting of any likelihood function via maximum likelihood.
-
- A subclass needs to specify at least the log-likelihood
- If the log-likelihood is specified for each observation, then results that
- require the Jacobian will be available. (The other case is not tested yet.)
-
- Notes
- -----
- Optimization methods that require only a likelihood function are 'nm' and
- 'powell'
-
- Optimization methods that require a likelihood function and a
- score/gradient are 'bfgs', 'cg', and 'ncg'. A function to compute the
- Hessian is optional for 'ncg'.
-
- Optimization method that require a likelihood function, a score/gradient,
- and a Hessian is 'newton'
-
- If they are not overwritten by a subclass, then numerical gradient,
- Jacobian and Hessian of the log-likelihood are caclulated by numerical
- forward differentiation. This might results in some cases in precision
- problems, and the Hessian might not be positive definite. Even if the
- Hessian is not positive definite the covariance matrix of the parameter
- estimates based on the outer product of the Jacobian might still be valid.
-
-
- Examples
- --------
- see also subclasses in directory miscmodels
-
- import scikits.statsmodels.api as sm
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- # in this dir
- from model import GenericLikelihoodModel
- probit_mod = sm.Probit(data.endog, data.exog)
- probit_res = probit_mod.fit()
- loglike = probit_mod.loglike
- score = probit_mod.score
- mod = GenericLikelihoodModel(data.endog, data.exog, loglike, score)
- res = mod.fit(method="nm", maxiter = 500)
- import numpy as np
- np.allclose(res.params, probit_res.params)
-
- """
- def __init__(self, endog, exog=None, loglike=None, score=None,
- hessian=None):
- # let them be none in case user wants to use inheritance
- if loglike:
- self.loglike = loglike
- if score:
- self.score = score
- if hessian:
- self.hessian = hessian
- self.confint_dist = stats.norm
-
- # TODO: data structures?
-
- # this won't work for ru2nmnl, maybe np.ndim of a dict?
- if exog is not None:
- #try:
- self.nparams = self.df_model = (exog.shape[1]
- if np.ndim(exog) == 2 else 1)
- super(GenericLikelihoodModel, self).__init__(endog, exog)
-
- #this is redundant and not used when subclassing
- def initialize(self):
- if not self.score: # right now score is not optional
- self.score = approx_fprime1
- if not self.hessian:
- pass
- else: # can use approx_hess_p if we have a gradient
- if not self.hessian:
- pass
-
- def expandparams(self, params):
- '''
- expand to full parameter array when some parameters are fixed
-
- Parameters
- ----------
- params : array
- reduced parameter array
-
- Returns
- -------
- paramsfull : array
- expanded parameter array where fixed parameters are included
-
- Notes
- -----
- Calling this requires that self.fixed_params and self.fixed_paramsmask
- are defined.
-
- *developer notes:*
-
- This can be used in the log-likelihood to ...
-
- this could also be replaced by a more general parameter
- transformation.
-
- '''
- paramsfull = self.fixed_params.copy()
- paramsfull[self.fixed_paramsmask] = params
- return paramsfull
-
- def reduceparams(self, params):
- return params[self.fixed_paramsmask]
-
- def loglike(self, params):
- return self.loglikeobs(params).sum(0)
-
- def nloglike(self, params):
- return -self.loglikeobs(params).sum(0)
-
- def loglikeobs(self, params):
- return -self.nloglikeobs(params)
-
- def score(self, params):
- '''
- Gradient of log-likelihood evaluated at params
- '''
- return approx_fprime1(params, self.loglike, epsilon=1e-4).ravel()
-
- def jac(self, params, **kwds):
- '''
- Jacobian/Gradient of log-likelihood evaluated at params for each
- observation.
- '''
- kwds.setdefault('epsilon', 1e-4)
- return approx_fprime1(params, self.loglikeobs, **kwds)
-
- def hessian(self, params):
- '''
- Hessian of log-likelihood evaluated at params
- '''
- from scikits.statsmodels.sandbox.regression.numdiff import approx_hess
- # need options for hess (epsilon)
- return approx_hess(params, self.loglike)[0]
-
- def fit(self, start_params=None, method='nm', maxiter=500, full_output=1,
- disp=1, callback=None, retall=0, **kwargs):
- """
- Fit the model using maximum likelihood.
-
- The rest of the docstring is from
- scikits.statsmodels.LikelihoodModel.fit
- """
- if start_params is None:
- if hasattr(self, 'start_params'):
- start_params = self.start_params
- else:
- start_params = 0.1 * np.ones(self.nparams)
-
- fit_method = super(GenericLikelihoodModel, self).fit
- mlefit = fit_method(start_params=start_params,
- method=method, maxiter=maxiter,
- full_output=full_output,
- disp=disp, callback=callback, **kwargs)
- genericmlefit = GenericLikelihoodModelResults(self, mlefit)
- return genericmlefit
- #fit.__doc__ += LikelihoodModel.fit.__doc__
-
- #------------------------------
- #TODO: the following have been moved to the result mixin class
- # check if anything is still using them from here
-
- @cache_readonly
- def jacv(self):
- if not hasattr(self, '_results'):
- raise ValueError('need to call fit first')
- return self.jac(self._results.params)
-
- @cache_readonly
- def hessv(self):
- if not hasattr(self, '_results'):
- raise ValueError('need to call fit first')
- return self.hessian(self._results.params)
-
- # the following could be moved to results
- @cache_readonly
- def covjac(self):
- '''
- covariance of parameters based on loglike outer product of jacobian
- '''
-## if not hasattr(self, '_results'):
-## raise ValueError('need to call fit first')
-## #self.fit()
-## self.jacv = jacv = self.jac(self._results.params)
- jacv = self.jacv
- return np.linalg.inv(np.dot(jacv.T, jacv))
-
- @cache_readonly
- def covjhj(self):
- jacv = self.jacv
-## hessv = self.hessv
-## hessinv = np.linalg.inv(hessv)
-## self.hessinv = hessinv
- hessinv = self._results.cov_params()
- return np.dot(hessinv, np.dot(np.dot(jacv.T, jacv), hessinv))
-
- @cache_readonly
- def bsejhj(self):
- return np.sqrt(np.diag(self.covjhj))
-
- @cache_readonly
- def bsejac(self):
- return np.sqrt(np.diag(self.covjac))
-
-
-class Results(object):
- """
- Class to contain model results
-
- Parameters
- ----------
- model : class instance
- the previously specified model instance
- params : array
- parameter estimates from the fit model
- """
- def __init__(self, model, params, **kwd):
- self.__dict__.update(kwd)
- self.initialize(model, params, **kwd)
-
- def initialize(self, model, params, **kwd):
- self.params = params
- self.model = model
-
-
-#TODO: public method?
-class LikelihoodModelResults(Results):
- """
- Class to contain results from likelihood models
-
- Parameters
- -----------
- model : LikelihoodModel instance or subclass instance
- LikelihoodModelResults holds a reference to the model that is fit.
- params : 1d array_like
- parameter estimates from estimated model
- normalized_cov_params : 2d array
- Normalized (before scaling) covariance of params. (dot(X.T,X))**-1
- scale : float
- For (some subset of models) scale will typically be the
- mean square error from the estimated model (sigma^2)
-
- Returns
- -------
- **Attributes**
- mle_retvals : dict
- Contains the values returned from the chosen optimization method if
- full_output is True during the fit. Available only if the model
- is fit by maximum likelihood. See notes below for the output from
- the different methods.
- mle_settings : dict
- Contains the arguments passed to the chosen optimization method.
- Available if the model is fit by maximum likelihood. See
- LikelihoodModel.fit for more information.
- model : model instance
- LikelihoodResults contains a reference to the model that is fit.
- params : ndarray
- The parameters estimated for the model.
- scale : float
- The scaling factor of the model given during instantiation.
- tvalues : array
- The t-values of the standard errors.
-
-
- Notes
- --------
- The covariance of params is given by scale times normalized_cov_params.
-
- Return values by solver if full_ouput is True during fit:
-
- 'newton'
- fopt : float
- The value of the (negative) loglikelihood at its
- minimum.
- iterations : int
- Number of iterations performed.
- score : ndarray
- The score vector at the optimum.
- Hessian : ndarray
- The Hessian at the optimum.
- warnflag : int
- 1 if maxiter is exceeded. 0 if successful convergence.
- converged : bool
- True: converged. False: did not converge.
- allvecs : list
- List of solutions at each iteration.
- 'nm'
- fopt : float
- The value of the (negative) loglikelihood at its
- minimum.
- iterations : int
- Number of iterations performed.
- warnflag : int
- 1: Maximum number of function evaluations made.
- 2: Maximum number of iterations reached.
- converged : bool
- True: converged. False: did not converge.
- allvecs : list
- List of solutions at each iteration.
- 'bfgs'
- fopt : float
- Value of the (negative) loglikelihood at its minimum.
- gopt : float
- Value of gradient at minimum, which should be near 0.
- Hinv : ndarray
- value of the inverse Hessian matrix at minimum. Note
- that this is just an approximation and will often be
- different from the value of the analytic Hessian.
- fcalls : int
- Number of calls to loglike.
- gcalls : int
- Number of calls to gradient/score.
- warnflag : int
- 1: Maximum number of iterations exceeded. 2: Gradient
- and/or function calls are not changing.
- converged : bool
- True: converged. False: did not converge.
- allvecs : list
- Results at each iteration.
- 'powell'
- fopt : float
- Value of the (negative) loglikelihood at its minimum.
- direc : ndarray
- Current direction set.
- iterations : int
- Number of iterations performed.
- fcalls : int
- Number of calls to loglike.
- warnflag : int
- 1: Maximum number of function evaluations. 2: Maximum number
- of iterations.
- converged : bool
- True : converged. False: did not converge.
- allvecs : list
- Results at each iteration.
- 'cg'
- fopt : float
- Value of the (negative) loglikelihood at its minimum.
- fcalls : int
- Number of calls to loglike.
- gcalls : int
- Number of calls to gradient/score.
- warnflag : int
- 1: Maximum number of iterations exceeded. 2: Gradient and/
- or function calls not changing.
- converged : bool
- True: converged. False: did not converge.
- allvecs : list
- Results at each iteration.
- 'ncg'
- fopt : float
- Value of the (negative) loglikelihood at its minimum.
- fcalls : int
- Number of calls to loglike.
- gcalls : int
- Number of calls to gradient/score.
- hcalls : int
- Number of calls to hessian.
- warnflag : int
- 1: Maximum number of iterations exceeded.
- converged : bool
- True: converged. False: did not converge.
- allvecs : list
- Results at each iteration.
- """
- def __init__(self, model, params, normalized_cov_params=None, scale=1.):
- super(LikelihoodModelResults, self).__init__(model, params)
- self.normalized_cov_params = normalized_cov_params
- self.scale = scale
-
- def normalized_cov_params(self):
- raise NotImplementedError
-
- #JP: add methods that are valid generically higher up in class hierarchy
- @cache_readonly
- def llf(self):
- return self.model.loglike(self.params)
-
- @cache_readonly
- def bse(self):
- return np.sqrt(np.diag(self.cov_params()))
-
- def t(self, column=None):
- """
- deprecated: Return the t-statistic for a given parameter estimate.
-
- FutureWarning: use attribute tvalues instead, t will be removed
- in the next release
-
- Parameters
- ----------
- column : array-like
- The columns for which you would like the t-value.
- Note that this uses Python's indexing conventions.
-
- See also
- ---------
- Use t_test for more complicated t-statistics.
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> results = sm.OLS(data.endog, data.exog).fit()
- >>> results.tvalues
- array([ 0.17737603, -1.06951632, -4.13642736, -4.82198531, -0.22605114,
- 4.01588981, -3.91080292])
- >>> results.tvalues[[1,2,4]]
- array([-1.06951632, -4.13642736, -0.22605114])
- >>> import numpy as np
- >>> results.tvalues[np.array([1,2,4]]
- array([-1.06951632, -4.13642736, -0.22605114])
-
- """
- import warnings
- warnings.warn("`t` will be removed in the next release, use attribute"
- "`tvalues` instead", FutureWarning)
-
- if self.normalized_cov_params is None:
- raise ValueError('need covariance of parameters for computing T '
- 'statistics')
-
- if column is None:
- column = range(self.params.shape[0])
-
- column = np.asarray(column)
- _params = self.params[column]
- _cov = self.cov_params(column=column)
- if _cov.ndim == 2:
- _cov = np.diag(_cov)
- _t = _params * recipr(np.sqrt(_cov))
- # repicr drops precision for MNLogit?
- _t = _params / np.sqrt(_cov)
- return _t
-
- @cache_readonly
- def tvalues(self):
- """
- Return the t-statistic for a given parameter estimate.
- """
- return self.params / self.bse
-
- @cache_readonly
- def pvalues(self):
- return stats.t.sf(np.abs(self.tvalues), self.df_resid) * 2
-
- def cov_params(self, r_matrix=None, column=None, scale=None, other=None):
- """
- Returns the variance/covariance matrix.
-
- The variance/covariance matrix can be of a linear contrast
- of the estimates of params or all params multiplied by scale which
- will usually be an estimate of sigma^2. Scale is assumed to be
- a scalar.
-
- Parameters
- ----------
- r_matrix : array-like
- Can be 1d, or 2d. Can be used alone or with other.
- column : array-like, optional
- Must be used on its own. Can be 0d or 1d see below.
- scale : float, optional
- Can be specified or not. Default is None, which means that
- the scale argument is taken from the model.
- other : array-like, optional
- Can be used when r_matrix is specified.
-
- Returns
- -------
- (The below are assumed to be in matrix notation.)
-
- cov : ndarray
-
- If no argument is specified returns the covariance matrix of a model
- (scale)*(X.T X)^(-1)
-
- If contrast is specified it pre and post-multiplies as follows
- (scale) * r_matrix (X.T X)^(-1) r_matrix.T
-
- If contrast and other are specified returns
- (scale) * r_matrix (X.T X)^(-1) other.T
-
- If column is specified returns
- (scale) * (X.T X)^(-1)[column,column] if column is 0d
-
- OR
-
- (scale) * (X.T X)^(-1)[column][:,column] if column is 1d
-
- """
- if self.normalized_cov_params is None:
- raise ValueError('need covariance of parameters for computing '
- '(unnormalized) covariances')
- if column is not None and (r_matrix is not None or other is not None):
- raise ValueError('Column should be specified without other '
- 'arguments.')
- if other is not None and r_matrix is None:
- raise ValueError('other can only be specified with r_matrix')
- if scale is None:
- scale = self.scale
- if column is not None:
- column = np.asarray(column)
- if column.shape == ():
- return self.normalized_cov_params[column, column] * scale
- else:
- return self.normalized_cov_params[column][:, column] * scale
- elif r_matrix is not None:
- r_matrix = np.asarray(r_matrix)
- if r_matrix.shape == ():
- raise ValueError("r_matrix should be 1d or 2d")
- if other is None:
- other = r_matrix
- else:
- other = np.asarray(other)
- tmp = np.dot(r_matrix, np.dot(self.normalized_cov_params,
- np.transpose(other)))
- return tmp * scale
- if r_matrix is None and column is None:
- return self.normalized_cov_params * scale
-
- #TODO: make sure this works as needed for GLMs
- def t_test(self, r_matrix, q_matrix=None, scale=None):
- """
- Compute a tcontrast/t-test for a row vector array of the form Rb = q
-
- where R is r_matrix, b = the parameter vector, and q is q_matrix.
-
- Parameters
- ----------
- r_matrix : array-like
- A length p row vector specifying the linear restrictions.
- q_matrix : array-like or scalar, optional
- Either a scalar or a length p row vector.
- scale : float, optional
- An optional `scale` to use. Default is the scale specified
- by the model fit.
-
- Examples
- --------
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> results = sm.OLS(data.endog, data.exog).fit()
- >>> r = np.zeros_like(results.params)
- >>> r[4:6] = [1,-1]
- >>> print r
- [ 0. 0. 0. 0. 1. -1. 0.]
-
- r tests that the coefficients on the 5th and 6th independent
- variable are the same.
-
- >>>T_Test = results.t_test(r)
- >>>print T_test
-
- >>> T_test.effect
- -1829.2025687192481
- >>> T_test.sd
- 455.39079425193762
- >>> T_test.t
- -4.0167754636411717
- >>> T_test.p
- 0.0015163772380899498
-
- See also
- ---------
- t : method to get simpler t values
- f_test : for f tests
-
- """
- r_matrix = np.atleast_2d(np.asarray(r_matrix))
- num_ttests = r_matrix.shape[0]
- num_params = r_matrix.shape[1]
-
- if self.normalized_cov_params is None:
- raise ValueError('Need covariance of parameters for computing '
- 'T statistics')
- if num_params != self.params.shape[0]:
- raise ValueError('r_matrix and params are not aligned')
- if q_matrix is None:
- q_matrix = np.zeros(num_ttests)
- else:
- q_matrix = np.asarray(q_matrix)
- if q_matrix.size > 1:
- if q_matrix.shape[0] != num_ttests:
- raise ValueError("r_matrix and q_matrix must have the same "
- "number of rows")
-
- _t = _sd = None
-
- _effect = np.dot(r_matrix, self.params)
- if num_ttests > 1:
- _sd = np.sqrt(np.diag(self.cov_params(r_matrix=r_matrix)))
- else:
- _sd = np.sqrt(self.cov_params(r_matrix=r_matrix))
- _t = (_effect - q_matrix) * recipr(_sd)
- return ContrastResults(effect=_effect, t=_t, sd=_sd,
- df_denom=self.model.df_resid)
-
- #TODO: untested for GLMs?
- def f_test(self, r_matrix, q_matrix=None, scale=1.0, invcov=None):
- """
- Compute an Fcontrast/F-test for a contrast matrix.
-
- Here, matrix `r_matrix` is assumed to be non-singular. More precisely,
-
- r_matrix (pX pX.T) r_matrix.T
-
- is assumed invertible. Here, pX is the generalized inverse of the
- design matrix of the model. There can be problems in non-OLS models
- where the rank of the covariance of the noise is not full.
-
- Parameters
- ----------
- r_matrix : array-like
- q x p array where q is the number of restrictions to test and
- p is the number of regressors in the full model fit.
- If q is 1 then f_test(r_matrix).fvalue is equivalent to
- the square of t_test(r_matrix).t
- q_matrix : array-like
- q x 1 array, that represents the sum of each linear restriction.
- Default is all zeros for each restriction.
- scale : float, optional
- Default is 1.0 for no scaling.
- invcov : array-like, optional
- A qxq matrix to specify an inverse covariance
- matrix based on a restrictions matrix.
-
- Examples
- --------
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> results = sm.OLS(data.endog, data.exog).fit()
- >>> A = np.identity(len(results.params))
- >>> A = A[:-1,:]
-
- This tests that each coefficient is jointly statistically
- significantly different from zero.
-
- >>> print results.f_test(A)
-
-
- Compare this to
-
- >>> results.F
- 330.2853392346658
- >>> results.F_p
- 4.98403096572e-10
-
- >>> B = np.array(([0,1,-1,0,0,0,0],[0,0,0,0,1,-1,0]))
-
- This tests that the coefficient on the 2nd and 3rd regressors are
- equal and jointly that the coefficient on the 5th and 6th regressors
- are equal.
-
- >>> print results.f_test(B)
-
-
- See also
- --------
- scikits.statsmodels.contrasts
- scikits.statsmodels.model.t_test
-
- """
- r_matrix = np.asarray(r_matrix)
- r_matrix = np.atleast_2d(r_matrix)
-
- if self.normalized_cov_params is None:
- raise ValueError('need covariance of parameters for computing '
- 'F statistics')
-
- cparams = np.dot(r_matrix, self.params[:, None])
- J = float(r_matrix.shape[0]) # number of restrictions
- if q_matrix is None:
- q_matrix = np.zeros(J)
- else:
- q_matrix = np.asarray(q_matrix)
- if q_matrix.ndim == 1:
- q_matrix = q_matrix[:, None]
- if q_matrix.shape[0] != J:
- raise ValueError("r_matrix and q_matrix must have the same "
- "number of rows")
- Rbq = cparams - q_matrix
- if invcov is None:
- invcov = np.linalg.inv(self.cov_params(r_matrix=r_matrix))
- F = np.dot(np.dot(Rbq.T, invcov), Rbq) / J
- return ContrastResults(F=F, df_denom=self.model.df_resid,
- df_num=invcov.shape[0])
-
- def conf_int(self, alpha=.05, cols=None, method='default'):
- """
- Returns the confidence interval of the fitted parameters.
-
- Parameters
- ----------
- alpha : float, optional
- The `alpha` level for the confidence interval.
- ie., The default `alpha` = .05 returns a 95% confidence interval.
- cols : array-like, optional
- `cols` specifies which confidence intervals to return
- method : string
- Not Implemented Yet
- Method to estimate the confidence_interval.
- "Default" : uses self.bse which is based on inverse Hessian for MLE
- "jhj" :
- "jac" :
- "boot-bse"
- "boot_quant"
- "profile"
-
-
- Returns
- --------
- conf_int : array
- Each row contains [lower, upper] confidence interval
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> results = sm.OLS(data.endog, data.exog).fit()
- >>> results.conf_int()
- array([[ -1.77029035e+02, 2.07152780e+02],
- [ -1.11581102e-01, 3.99427438e-02],
- [ -3.12506664e+00, -9.15392966e-01],
- [ -1.51794870e+00, -5.48505034e-01],
- [ -5.62517214e-01, 4.60309003e-01],
- [ 7.98787515e+02, 2.85951541e+03],
- [ -5.49652948e+06, -1.46798779e+06]])
-
- >>> results.conf_int(cols=(1,2))
- array([[-0.1115811 , 0.03994274],
- [-3.12506664, -0.91539297]])
-
- Notes
- -----
- The confidence interval is based on Student's t distribution for all
- models except RLM and GLM, which uses the standard normal distribution.
-
- """
- bse = self.bse
- #TODO: simplify structure, DRY
- if hasattr(self.model, 'confint_dist'):
- dist = self.model.confint_dist
- elif type(self).__name__ in ['RLMResults', 'GLMResults',
- 'DiscreteResults']:
- dist = stats.norm
- else:
- dist = stats.t
-
- if dist == stats.t:
- q = dist.ppf(1 - alpha / 2, self.model.df_resid)
- elif dist == stats.norm:
- q = dist.ppf(1 - alpha / 2)
-
- if cols is None:
- lower = self.params - q * bse
- upper = self.params + q * bse
- else:
- cols = np.asarray(cols)
- lower = self.params[cols] - q * bse[cols]
- upper = self.params[cols] + q * bse[cols]
- return np.asarray(zip(lower, upper))
-
- @cache_readonly
- def llf(self):
- return self.model.loglike(self.params)
-
-
-class LikelihoodResultsWrapper(wrap.ResultsWrapper):
- _attrs = {
- 'params': 'columns',
- 'bse': 'columns',
- 'pvalues': 'columns',
- 'tvalues': 'columns',
- 'resid': 'rows',
- 'fittedvalues': 'rows',
- 'normalized_cov_params': 'cov',
- }
-
- _wrap_attrs = _attrs
- _wrap_methods = {
- 'cov_params': 'cov',
- 'conf_int': 'columns'
- }
-
-wrap.populate_wrapper(LikelihoodResultsWrapper,
- LikelihoodModelResults)
-
-
-class ResultMixin(object):
-
- @cache_readonly
- def df_modelwc(self):
- # collect different ways of defining the number of parameters, used for
- # aic, bic
- if hasattr(self, 'df_model'):
- if hasattr(self, 'hasconst'):
- hasconst = self.hasconst
- else:
- # default assumption
- hasconst = 1
- return self.df_model + hasconst
- else:
- return self.params.size
-
- @cache_readonly
- def aic(self):
- return -2 * self.llf + 2 * (self.df_modelwc)
-
- @cache_readonly
- def bic(self):
- return -2 * self.llf + np.log(self.nobs) * (self.df_modelwc)
-
- @cache_readonly
- def jacv(self):
- '''cached Jacobian of log-likelihood
- '''
- return self.model.jac(self.params)
-
- @cache_readonly
- def hessv(self):
- '''cached Hessian of log-likelihood
- '''
- return self.model.hessian(self.params)
-
- @cache_readonly
- def covjac(self):
- '''
- covariance of parameters based on outer product of jacobian of
- log-likelihood
-
- '''
-## if not hasattr(self, '_results'):
-## raise ValueError('need to call fit first')
-## #self.fit()
-## self.jacv = jacv = self.jac(self._results.params)
- jacv = self.jacv
- return np.linalg.inv(np.dot(jacv.T, jacv))
-
- @cache_readonly
- def covjhj(self):
- '''covariance of parameters based on HJJH
-
- dot product of Hessian, Jacobian, Jacobian, Hessian of likelihood
-
- name should be covhjh
- '''
- jacv = self.jacv
-## hessv = self.hessv
-## hessinv = np.linalg.inv(hessv)
-## self.hessinv = hessinv
- hessinv = self.cov_params()
- return np.dot(hessinv, np.dot(np.dot(jacv.T, jacv), hessinv))
-
- @cache_readonly
- def bsejhj(self):
- '''standard deviation of parameter estimates based on covHJH
- '''
- return np.sqrt(np.diag(self.covjhj))
-
- @cache_readonly
- def bsejac(self):
- '''standard deviation of parameter estimates based on covjac
- '''
- return np.sqrt(np.diag(self.covjac))
-
- def bootstrap(self, nrep=100, method='nm', disp=0, store=1):
- '''simple bootstrap to get mean and variance of estimator
-
- see notes
-
- Parameters
- ----------
- nrep : int
- number of bootstrap replications
- method : str
- optimization method to use
- disp : bool
- If true, then optimization prints results
- store : bool
- If true, then parameter estimates for all bootstrap iterations
- are attached in self.bootstrap_results
-
- Returns
- -------
- mean : array
- mean of parameter estimates over bootstrap replications
- std : array
- standard deviation of parameter estimates over bootstrap
- replications
-
- Notes
- -----
- This was mainly written to compare estimators of the standard errors of
- the parameter estimates. It uses independent random sampling from the
- original endog and exog, and therefore is only correct if observations
- are independently distributed.
-
- This will be moved to apply only to models with independently
- distributed observations.
- '''
- results = []
- print self.model.__class__
- hascloneattr = True if hasattr(self, 'cloneattr') else False
- for i in xrange(nrep):
- rvsind = np.random.randint(self.nobs - 1, size=self.nobs)
- #this needs to set startparam and get other defining attributes
- #need a clone method on model
- fitmod = self.model.__class__(self.endog[rvsind],
- self.exog[rvsind, :])
- if hascloneattr:
- for attr in self.model.cloneattr:
- setattr(fitmod, attr, getattr(self.model, attr))
-
- fitres = fitmod.fit(method=method, disp=disp)
- results.append(fitres.params)
- results = np.array(results)
- if store:
- self.bootstrap_results = results
- return results.mean(0), results.std(0), results
-
- def get_nlfun(self, fun):
- #I think this is supposed to get the delta method that is currently
- #in miscmodels count (as part of Poisson example)
- pass
-
-
-class GenericLikelihoodModelResults(LikelihoodModelResults, ResultMixin):
- """
- A results class for the discrete dependent variable models.
-
- ..Warning :
-
- The following description has not been updated to this version/class.
- Where are AIC, BIC, ....? docstring looks like copy from discretemod
-
- Parameters
- ----------
- model : A DiscreteModel instance
- mlefit : instance of LikelihoodResults
- This contains the numerical optimization results as returned by
- LikelihoodModel.fit(), in a superclass of GnericLikelihoodModels
-
-
- Returns
- -------
- *Attributes*
-
- Warning most of these are not available yet
-
- aic : float
- Akaike information criterion. -2*(`llf` - p) where p is the number
- of regressors including the intercept.
- bic : float
- Bayesian information criterion. -2*`llf` + ln(`nobs`)*p where p is the
- number of regressors including the intercept.
- bse : array
- The standard errors of the coefficients.
- df_resid : float
- See model definition.
- df_model : float
- See model definition.
- fitted_values : array
- Linear predictor XB.
- llf : float
- Value of the loglikelihood
- llnull : float
- Value of the constant-only loglikelihood
- llr : float
- Likelihood ratio chi-squared statistic; -2*(`llnull` - `llf`)
- llr_pvalue : float
- The chi-squared probability of getting a log-likelihood ratio
- statistic greater than llr. llr has a chi-squared distribution
- with degrees of freedom `df_model`.
- prsquared : float
- McFadden's pseudo-R-squared. 1 - (`llf`/`llnull`)
-
- """
-
- def __init__(self, model, mlefit):
-# super(DiscreteResults, self).__init__(model, params,
-# np.linalg.inv(-hessian), scale=1.)
- self.model = model
- #self.df_model = model.df_model
- #self.df_resid = model.df_resid
- self.endog = model.endog
- self.exog = model.exog
- self.nobs = model.endog.shape[0]
- self._cache = resettable_cache()
- self.__dict__.update(mlefit.__dict__)
diff --git a/statsmodels/scikits/statsmodels/base/wrapper.py b/statsmodels/scikits/statsmodels/base/wrapper.py
deleted file mode 100644
index f579a8c..0000000
--- a/statsmodels/scikits/statsmodels/base/wrapper.py
+++ /dev/null
@@ -1,101 +0,0 @@
-import inspect
-import functools
-import types
-
-import numpy as np
-
-class ResultsWrapper(object):
- """
- Class which wraps a statsmodels estimation Results class and steps in to
- reattach metadata to results (if available)
- """
- _wrap_attrs = {}
- _wrap_methods = {}
-
- def __init__(self, results):
- self._results = results
- self.__doc__ = results.__doc__
-
- def __dir__(self):
- return [x for x in dir(self._results)]
-
- def __getattribute__(self, attr):
- get = lambda name: object.__getattribute__(self, name)
- results = get('_results')
-
- try:
- return get(attr)
- except AttributeError:
- pass
-
- obj = getattr(results, attr)
- data = results.model._data
- how = self._wrap_attrs.get(attr)
- if how:
- obj = data.wrap_output(obj, how=how)
-
- return obj
-
-def union_dicts(*dicts):
- result = {}
- for d in dicts:
- result.update(d)
- return result
-
-def make_wrapper(func, how):
- @functools.wraps(func)
- def wrapper(self, *args, **kwargs):
- results = object.__getattribute__(self, '_results')
- data = results.model._data
- return data.wrap_output(func(results, *args, **kwargs), how)
-
- argspec = inspect.getargspec(func)
- formatted = inspect.formatargspec(argspec.args, varargs=argspec.varargs,
- defaults=argspec.defaults)
-
- wrapper.__doc__ = "%s%s\n%s" % (func.im_func.func_name, formatted,
- wrapper.__doc__)
-
- return wrapper
-
-def populate_wrapper(klass, wrapping):
- for meth, how in klass._wrap_methods.iteritems():
- if not hasattr(wrapping, meth):
- continue
-
- func = getattr(wrapping, meth)
- wrapper = make_wrapper(func, how)
- setattr(klass, meth, wrapper)
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
- from pandas import DataFrame
- data = sm.datasets.longley.load()
- df = DataFrame(data.exog, columns=data.exog_name)
- y = data.endog
- # data.exog = sm.add_constant(data.exog)
- df['intercept'] = 1.
- olsresult = sm.OLS(y, df).fit()
- rlmresult = sm.RLM(y, df).fit()
-
- # olswrap = RegressionResultsWrapper(olsresult)
- # rlmwrap = RLMResultsWrapper(rlmresult)
-
- data = sm.datasets.wfs.load()
- # get offset
- offset = np.log(data.exog[:,-1])
- exog = data.exog[:,:-1]
-
- # convert dur to dummy
- exog = sm.tools.categorical(exog, col=0, drop=True)
- # drop reference category
- # convert res to dummy
- exog = sm.tools.categorical(exog, col=0, drop=True)
- # convert edu to dummy
- exog = sm.tools.categorical(exog, col=0, drop=True)
- # drop reference categories and add intercept
- exog = sm.add_constant(exog[:,[1,2,3,4,5,7,8,10,11,12]])
-
- endog = np.round(data.endog)
- mod = sm.GLM(endog, exog, family=sm.families.Poisson()).fit()
- # glmwrap = GLMResultsWrapper(mod)
diff --git a/statsmodels/scikits/statsmodels/compatnp/__init__.py b/statsmodels/scikits/statsmodels/compatnp/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/compatnp/py3k.py b/statsmodels/scikits/statsmodels/compatnp/py3k.py
deleted file mode 100644
index 9633fd7..0000000
--- a/statsmodels/scikits/statsmodels/compatnp/py3k.py
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-Python 3 compatibility tools.
-
-"""
-
-__all__ = ['bytes', 'asbytes', 'isfileobj', 'getexception', 'strchar',
- 'unicode', 'asunicode', 'asbytes_nested', 'asunicode_nested',
- 'asstr', 'open_latin1']
-
-import sys
-
-if sys.version_info[0] >= 3:
- import io
- bytes = bytes
- unicode = str
- asunicode = str
- def asbytes(s):
- if isinstance(s, bytes):
- return s
- return s.encode('latin1')
- def asstr(s):
- if isinstance(s, str):
- return s
- return s.decode('latin1')
- def isfileobj(f):
- return isinstance(f, io.FileIO)
- def open_latin1(filename, mode='r'):
- return open(filename, mode=mode, encoding='iso-8859-1')
- strchar = 'U'
-else:
- bytes = str
- unicode = unicode
- asbytes = str
- asstr = str
- strchar = 'S'
- def isfileobj(f):
- return isinstance(f, file)
- def asunicode(s):
- if isinstance(s, unicode):
- return s
- return s.decode('ascii')
- def open_latin1(filename, mode='r'):
- return open(filename, mode=mode)
-
-def getexception():
- return sys.exc_info()[1]
-
-def asbytes_nested(x):
- if hasattr(x, '__iter__') and not isinstance(x, (bytes, unicode)):
- return [asbytes_nested(y) for y in x]
- else:
- return asbytes(x)
-
-def asunicode_nested(x):
- if hasattr(x, '__iter__') and not isinstance(x, (bytes, unicode)):
- return [asunicode_nested(y) for y in x]
- else:
- return asunicode(x)
diff --git a/statsmodels/scikits/statsmodels/datasets/COPYING b/statsmodels/scikits/statsmodels/datasets/COPYING
deleted file mode 100644
index 7960872..0000000
--- a/statsmodels/scikits/statsmodels/datasets/COPYING
+++ /dev/null
@@ -1,35 +0,0 @@
-Last Change: Tue Jul 17 05:00 PM 2007 J
-
-The code and descriptive text is copyrighted and offered under the terms of
-the BSD License from the authors; see below. However, the actual dataset may
-have a different origin and intellectual property status. See the SOURCE and
-COPYRIGHT variables for this information.
-
-Copyright (c) 2007 David Cournapeau
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
- * Neither the author nor the names of any contributors may be used
- to endorse or promote products derived from this software without
- specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/statsmodels/scikits/statsmodels/datasets/README.txt b/statsmodels/scikits/statsmodels/datasets/README.txt
deleted file mode 100644
index c5afe1f..0000000
--- a/statsmodels/scikits/statsmodels/datasets/README.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-This README was copied from
-http://projects.scipy.org/scikits/browser/trunk/learn/scikits/learn/datasets/
------------------------------------------------------------------------------
-
-Last Change: Tue Jul 17 04:00 PM 2007 J
-
-This packages datasets defines a set of packages which contain datasets useful
-for demo, examples, etc... This can be seen as an equivalent of the R dataset
-package, but for python.
-
-Each subdir is a python package, and should define the function load, returning
-the corresponding data. For example, to access datasets data1, you should be able to do:
-
->> from datasets.data1 import load
->> d = load() # -> d contains the data of the datasets data1
-
-load can do whatever it wants: fetching data from a file (python script, csv
-file, etc...), from the internet, etc... Some special variables must be defined
-for each package, containing a python string:
- - COPYRIGHT: copyright informations
- - SOURCE: where the data are coming from
- - DESCHOSRT: short description
- - DESCLONG: long description
- - NOTE: some notes on the datasets.
-
-For the datasets to be useful in the learn scikits, which is the project which initiated this datasets package, the data returned by load has to be a dict with the following conventions:
- - 'data': this value should be a record array containing the actual data.
- - 'label': this value should be a rank 1 array of integers, contains the
- label index for each sample, that is label[i] should be the label index
- of data[i].
- - 'class': a record array such as class[i] is the class name. In other
- words, this makes the correspondance label index <> label name.
diff --git a/statsmodels/scikits/statsmodels/datasets/__init__.py b/statsmodels/scikits/statsmodels/datasets/__init__.py
deleted file mode 100644
index 79557f5..0000000
--- a/statsmodels/scikits/statsmodels/datasets/__init__.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""
-Datasets module
-"""
-#__all__ = filter(lambda s:not s.startswith('_'),dir())
-import anes96, committee, ccard, copper, cpunish, grunfeld, longley, \
- macrodata, randhie, scotland, spector, stackloss, star98, sunspots, \
- nile, strikes
-
diff --git a/statsmodels/scikits/statsmodels/datasets/anes96/__init__.py b/statsmodels/scikits/statsmodels/datasets/anes96/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/anes96/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/anes96/anes96.csv b/statsmodels/scikits/statsmodels/datasets/anes96/anes96.csv
deleted file mode 100644
index 8cfd594..0000000
--- a/statsmodels/scikits/statsmodels/datasets/anes96/anes96.csv
+++ /dev/null
@@ -1,945 +0,0 @@
-'popul' 'TVnews' 'selfLR' 'ClinLR' 'DoleLR' 'PID' 'age' 'educ' 'income' 'vote'
-0 7 7 1 6 6 36 3 1 1
-190 1 3 3 5 1 20 4 1 0
-31 7 2 2 6 1 24 6 1 0
-83 4 3 4 5 1 28 6 1 0
-640 7 5 6 4 0 68 6 1 0
-110 3 3 4 6 1 21 4 1 0
-100 7 5 6 4 1 77 4 1 0
-31 1 5 4 5 4 21 4 1 0
-180 7 4 6 3 3 31 4 1 0
-2800 0 3 3 7 0 39 3 1 0
-1600 0 3 2 4 4 26 2 1 0
-330 5 4 3 6 1 31 4 1 0
-190 2 5 4 6 5 22 4 1 1
-100 7 4 4 6 0 42 5 1 0
-1000 7 5 7 4 0 74 1 1 0
-0 7 6 7 5 0 62 3 1 0
-130 7 4 4 5 1 58 3 1 0
-5 5 3 3 6 1 24 6 1 0
-33 7 6 2 6 5 51 4 1 1
-19 2 2 1 4 0 36 3 2 0
-74 7 4 4 7 2 88 2 2 0
-190 0 2 4 6 2 20 4 2 0
-12 3 4 6 3 2 27 3 2 0
-0 7 6 1 6 6 44 4 2 1
-19 0 4 2 2 1 45 3 2 0
-0 2 4 3 6 1 21 4 2 0
-390 5 3 4 7 1 40 5 2 0
-40 7 4 3 4 0 40 6 2 0
-3 3 5 5 4 1 48 3 2 0
-450 3 4 7 1 0 34 3 2 0
-350 0 3 4 7 2 26 2 2 0
-64 3 4 4 2 1 60 2 3 0
-3 0 4 4 3 0 32 3 3 0
-0 1 4 3 7 1 31 3 3 0
-640 7 7 5 7 4 33 3 3 1
-0 7 3 4 6 0 57 3 3 0
-12 7 4 3 6 1 84 3 3 0
-62 6 7 2 7 5 75 3 3 1
-31 2 7 2 6 6 19 4 3 1
-0 1 3 2 6 1 47 6 3 0
-180 6 5 5 5 0 51 2 3 0
-640 3 6 4 4 5 40 3 3 0
-110 0 2 3 6 1 22 6 3 0
-100 1 7 7 5 6 35 2 3 0
-100 7 4 4 7 2 43 5 3 0
-11 3 6 6 3 2 76 6 3 0
-0 7 4 3 1 6 45 3 3 1
-4 7 4 6 6 0 88 2 3 0
-35 6 4 4 2 1 46 3 4 0
-0 1 3 4 5 2 22 6 4 0
-0 7 5 1 6 5 68 3 4 1
-0 2 5 2 6 5 38 3 4 1
-33 7 4 3 6 3 69 2 4 0
-270 2 5 4 3 0 67 3 4 0
-45 7 2 4 6 0 88 4 4 0
-40 3 6 2 5 5 68 3 4 1
-6 1 5 2 4 2 76 3 4 1
-2 7 4 4 6 0 72 2 4 0
-0 0 6 2 6 6 37 6 4 1
-35 3 4 2 6 0 69 3 4 0
-83 0 2 4 6 0 33 6 4 0
-3500 7 2 2 6 0 34 4 4 0
-100 2 4 4 7 2 30 3 4 0
-350 2 3 3 6 1 19 3 4 0
-100 3 4 6 2 0 44 3 4 0
-67 1 4 4 7 1 64 3 4 0
-30 5 7 7 2 0 37 4 4 0
-0 7 6 3 5 4 31 5 5 1
-0 0 6 1 5 4 88 4 5 1
-6 7 6 2 6 6 77 4 5 1
-350 1 4 5 6 5 30 6 5 0
-400 1 2 3 7 1 32 4 5 0
-15 7 6 2 6 6 59 1 5 1
-0 0 4 4 4 3 47 4 5 0
-3 2 4 6 5 1 22 3 5 0
-22 5 4 2 6 2 55 3 5 0
-64 2 2 1 3 0 24 2 5 0
-32 5 3 7 4 1 65 1 5 0
-390 7 3 6 2 2 24 3 5 0
-0 7 3 4 5 3 30 3 5 0
-0 7 4 5 2 3 73 3 5 0
-59 5 3 3 5 1 73 5 5 0
-0 6 4 3 6 2 91 1 5 0
-35 7 3 2 5 0 71 2 5 0
-0 2 6 4 5 4 34 4 5 1
-170 7 4 3 2 0 48 2 6 0
-12 1 6 2 6 5 42 4 6 1
-40 4 6 5 4 0 72 2 6 0
-31 2 3 4 6 6 20 4 6 1
-31 7 2 2 7 0 22 4 6 0
-1600 1 3 3 6 1 24 6 6 0
-1 1 4 2 7 2 39 6 6 0
-4 7 6 1 6 6 83 5 6 1
-190 0 6 2 6 6 39 3 6 1
-53 3 5 3 6 1 33 5 6 0
-31 7 4 3 6 1 53 3 6 1
-16 7 5 3 6 5 82 3 6 1
-33 5 4 3 5 6 82 3 6 1
-0 3 5 3 6 5 47 6 7 1
-0 3 4 2 7 4 68 3 7 0
-0 7 4 3 5 0 84 6 7 0
-27 2 6 1 6 5 35 5 7 1
-84 7 4 5 6 1 67 2 7 0
-22 3 5 3 5 4 33 2 7 1
-0 3 3 3 5 0 49 7 7 0
-3500 0 4 3 7 0 91 1 7 0
-390 7 4 5 3 1 43 3 7 0
-0 7 4 3 2 6 65 4 7 0
-16 7 5 6 3 0 69 3 7 0
-200 0 5 5 4 1 56 4 8 0
-640 0 2 3 5 0 24 6 8 0
-0 7 4 4 5 0 77 3 8 0
-45 7 6 3 7 0 74 3 8 0
-12 0 7 3 6 6 25 6 8 1
-20 7 6 2 5 4 85 1 8 1
-7300 5 7 7 6 3 21 2 8 0
-64 7 6 3 1 0 24 4 8 0
-13 7 5 4 7 4 73 4 8 0
-190 0 4 5 3 2 37 3 8 0
-9 4 4 5 1 2 35 4 8 0
-0 7 4 4 7 0 47 3 8 0
-170 2 4 2 6 6 21 3 8 1
-640 7 3 6 4 0 55 5 8 0
-9 4 6 3 6 6 30 6 8 1
-0 4 5 3 6 4 76 7 8 1
-7300 5 3 4 3 3 36 4 8 0
-2800 0 1 1 7 0 38 3 9 0
-0 7 2 3 5 0 67 3 9 0
-30 7 7 3 7 6 70 2 9 1
-44 7 5 3 7 2 78 4 9 0
-7300 1 2 2 7 3 27 6 9 0
-330 4 3 5 6 1 51 4 9 0
-3 0 6 7 3 5 33 4 9 0
-51 2 6 1 5 6 80 6 9 1
-29 5 4 1 6 1 79 1 9 0
-630 2 6 4 5 4 66 1 9 1
-170 0 4 1 6 0 32 3 10 0
-33 7 4 5 7 0 70 2 10 0
-0 3 2 3 6 3 42 3 10 0
-9 5 5 4 5 5 73 4 10 1
-22 4 4 4 6 0 87 2 10 0
-100 0 7 5 1 1 30 5 10 0
-2 2 4 4 5 3 52 3 10 0
-0 6 5 3 6 1 62 4 10 0
-50 7 6 3 4 0 67 3 10 0
-15 4 6 3 4 4 37 6 10 0
-3 4 3 5 7 0 37 4 10 0
-720 5 1 5 6 1 64 6 10 0
-640 7 1 1 5 0 34 3 10 0
-5 7 4 4 7 0 70 3 10 0
-24 2 6 2 6 6 31 5 10 1
-22 7 2 2 6 0 29 6 11 0
-55 7 4 5 4 1 71 2 11 0
-0 2 4 4 4 0 67 1 11 0
-1600 5 4 4 6 0 41 7 11 0
-170 6 1 2 6 0 49 6 11 0
-1000 7 4 4 5 0 42 5 11 0
-63 0 6 3 2 0 78 2 11 0
-110 0 4 1 6 1 24 3 11 0
-16 7 4 6 6 1 29 3 11 0
-100 3 4 2 6 5 39 5 11 1
-7300 3 5 3 6 1 19 4 11 0
-22 2 4 2 7 1 32 5 11 0
-71 3 4 2 6 5 69 3 11 1
-900 4 5 2 5 5 83 3 11 1
-35 7 4 1 5 4 76 2 11 1
-2 7 7 1 2 0 62 2 11 0
-83 2 3 3 6 0 47 7 11 0
-370 5 6 7 4 0 35 3 11 0
-12 0 4 5 3 4 23 3 11 0
-370 7 4 4 1 1 79 4 11 0
-100 7 6 2 6 5 64 5 11 1
-470 7 6 2 4 5 70 4 11 1
-22 7 6 1 6 6 87 5 11 1
-2800 0 3 6 1 0 28 2 12 0
-47 5 3 5 7 1 58 3 12 0
-900 5 4 4 6 1 85 2 12 0
-330 7 3 6 4 0 62 3 12 0
-84 0 3 2 7 1 26 6 12 0
-0 0 6 2 5 5 28 3 12 1
-33 3 6 1 7 6 88 2 12 1
-53 7 2 3 6 0 57 6 12 0
-8 7 2 2 6 0 78 3 12 0
-2 7 4 4 2 0 56 3 12 0
-0 0 4 6 3 3 46 5 12 0
-0 2 4 4 3 5 20 3 12 1
-0 0 5 6 4 1 24 4 12 0
-0 7 5 2 6 2 72 4 12 0
-15 7 2 4 7 1 51 4 12 0
-900 0 6 2 5 6 34 6 12 1
-30 2 4 2 6 1 21 4 12 0
-0 7 4 4 6 2 74 7 12 0
-170 3 4 4 6 1 48 1 12 0
-900 2 3 3 7 5 28 3 12 0
-0 6 7 1 7 5 38 2 12 1
-1600 7 4 6 1 0 70 3 12 0
-0 7 4 5 4 0 72 2 12 0
-2800 0 4 5 6 0 41 3 12 0
-110 5 3 4 5 1 50 7 12 0
-1 7 6 2 5 5 73 3 12 1
-3 5 5 2 4 0 79 6 12 0
-0 4 5 1 4 5 76 2 12 1
-22 0 5 3 5 5 62 5 12 1
-63 3 6 2 6 6 30 6 12 1
-290 0 6 3 6 5 35 4 12 1
-2 7 1 2 7 1 66 4 12 0
-40 0 2 4 6 0 35 4 12 0
-67 0 6 1 5 6 57 6 12 1
-0 5 4 5 4 5 37 5 12 1
-470 7 5 5 2 1 61 3 13 0
-0 7 6 2 6 6 56 3 13 1
-4 6 3 4 5 1 53 3 13 0
-20 0 4 5 3 2 24 6 13 1
-2800 7 4 1 6 5 74 3 13 1
-0 0 4 4 3 1 36 3 13 0
-1 0 6 2 4 5 30 5 13 1
-640 0 4 7 4 1 55 2 13 0
-170 3 3 2 7 2 35 6 13 0
-270 2 3 4 6 0 26 4 13 0
-390 0 3 4 6 2 25 4 13 0
-16 2 6 7 4 3 27 3 13 0
-11 7 4 1 6 5 66 3 13 1
-0 1 5 2 6 2 39 2 13 0
-270 7 1 1 2 2 58 5 13 0
-170 2 4 4 4 0 53 3 13 1
-900 7 6 7 4 0 76 3 13 0
-270 7 5 2 7 1 51 3 13 0
-0 7 4 2 7 0 70 2 13 0
-350 3 6 3 6 6 68 4 13 1
-0 0 5 4 5 2 32 3 13 1
-6 0 5 4 5 5 55 3 13 0
-290 7 2 2 6 0 52 4 13 0
-630 7 6 4 6 4 73 2 13 1
-900 0 5 4 7 0 42 2 13 0
-31 2 4 4 3 4 23 5 13 1
-1600 5 2 3 6 0 30 7 14 0
-71 7 2 2 7 0 68 4 14 0
-200 7 5 2 3 2 68 3 14 0
-0 0 6 4 7 3 68 6 14 0
-30 5 2 3 6 0 38 5 14 0
-10 1 4 3 6 2 74 3 14 0
-0 7 5 6 3 0 59 2 14 0
-900 2 5 2 5 2 73 2 14 0
-71 7 2 3 6 0 79 3 14 0
-22 3 7 1 6 5 28 4 14 1
-0 7 6 2 6 6 50 3 14 1
-0 4 6 3 1 1 36 4 14 0
-0 3 6 2 6 6 50 3 14 1
-0 1 6 2 6 6 61 3 14 1
-7300 3 2 2 6 0 37 4 14 0
-83 0 3 4 7 0 29 6 14 0
-93 7 2 3 7 0 39 4 14 0
-0 7 4 5 4 2 83 6 14 1
-51 7 6 1 5 4 68 6 14 1
-31 2 6 1 5 6 25 4 14 1
-93 2 1 3 6 1 41 6 14 0
-0 7 3 2 6 1 67 3 14 0
-0 3 4 2 6 4 36 6 14 1
-31 4 6 2 6 4 66 4 14 1
-900 1 3 2 7 1 55 4 14 0
-0 4 3 2 6 2 42 5 14 0
-2 7 6 3 5 5 42 3 14 1
-110 3 4 5 7 1 36 3 14 0
-63 1 6 4 6 4 53 5 14 1
-900 0 3 2 5 1 36 5 14 0
-31 3 4 3 6 2 29 7 14 0
-510 1 4 4 6 0 31 3 14 0
-270 2 3 4 6 1 43 6 14 0
-9 3 3 4 7 1 33 6 14 0
-3 1 6 6 2 0 63 3 14 0
-29 1 5 2 4 2 25 5 14 0
-45 2 3 2 6 0 72 4 14 0
-83 5 3 3 6 1 40 4 14 0
-22 7 4 2 6 2 27 6 14 0
-15 3 5 4 7 2 26 4 15 0
-110 7 5 2 5 6 67 3 15 1
-8 0 4 5 5 1 21 3 15 0
-11 5 6 2 6 6 27 7 15 1
-56 4 6 5 3 0 78 6 15 1
-8 3 4 4 3 1 32 3 15 0
-100 5 4 2 6 1 68 4 15 0
-900 7 4 2 6 5 76 4 15 0
-67 7 3 3 6 0 33 5 15 0
-35 4 6 2 5 4 38 2 15 1
-35 3 4 3 5 1 49 7 15 0
-22 0 5 4 6 5 61 4 15 1
-110 7 7 1 5 4 57 3 15 1
-12 0 4 2 5 2 20 3 15 0
-7300 7 4 2 4 4 63 6 15 1
-0 0 4 1 5 4 53 3 15 1
-19 5 4 2 6 5 35 4 15 1
-470 3 4 4 7 0 39 3 15 0
-4 3 3 5 3 4 48 3 15 1
-640 4 6 2 5 4 62 3 15 1
-640 2 4 2 3 1 30 5 15 0
-200 7 7 1 4 6 26 6 15 1
-0 7 3 2 4 5 74 6 15 1
-29 4 3 4 6 2 37 5 15 0
-330 2 4 5 5 1 43 5 15 0
-19 5 5 1 4 6 68 3 15 1
-1 7 5 3 4 5 73 5 15 1
-110 5 6 1 6 6 60 7 15 1
-0 7 5 4 6 1 35 3 15 0
-350 4 3 4 6 0 29 6 15 0
-2 5 3 3 5 1 25 6 15 0
-0 7 2 2 6 0 25 7 15 0
-7 4 2 4 5 0 70 6 15 0
-71 1 6 2 5 6 41 3 15 1
-53 0 4 2 6 1 37 6 15 0
-0 0 6 1 6 6 39 5 15 1
-2 6 3 4 6 0 35 4 15 0
-190 4 2 3 6 0 62 7 15 0
-31 0 3 2 6 1 30 7 15 0
-16 7 4 2 6 0 74 4 15 0
-22 7 3 3 4 5 47 3 15 0
-3 4 4 5 3 1 43 6 15 0
-0 6 5 3 6 5 64 2 15 1
-0 7 4 3 5 2 75 4 15 1
-67 3 4 4 7 1 27 6 15 0
-40 7 4 4 6 0 21 3 15 0
-74 4 2 2 6 1 70 2 15 0
-3 6 5 2 6 5 67 3 15 1
-140 7 6 4 5 6 82 5 15 0
-14 0 2 2 6 0 40 6 15 0
-110 0 5 3 6 5 26 4 15 1
-35 3 4 3 5 1 29 6 15 0
-0 1 4 5 6 2 28 6 15 0
-310 7 6 4 3 5 65 3 15 0
-900 2 6 5 3 1 25 3 15 0
-0 7 3 2 7 1 65 2 15 0
-11 4 6 2 6 5 38 5 15 1
-0 2 4 3 5 5 72 7 15 1
-270 7 3 2 7 1 67 3 15 0
-51 7 3 1 7 0 74 3 15 0
-11 5 2 4 4 2 71 6 15 0
-2 0 4 6 4 0 47 3 15 0
-20 7 5 4 6 1 69 1 15 0
-31 3 3 3 6 1 29 6 15 0
-2 0 6 2 5 6 34 3 15 1
-5 3 4 3 6 0 43 4 15 0
-22 7 2 1 7 0 30 3 15 0
-0 7 5 5 4 0 76 2 15 0
-27 0 2 4 6 1 26 5 16 0
-7 7 4 3 6 2 76 5 16 0
-0 0 1 4 6 1 42 7 16 0
-0 4 3 1 4 5 33 3 16 1
-0 1 6 2 5 5 25 3 16 1
-2800 0 2 2 7 0 51 4 16 0
-0 4 4 2 5 4 57 3 16 1
-22 1 6 1 5 6 21 4 16 1
-9 7 5 1 4 5 79 7 16 1
-0 1 6 2 5 5 35 5 16 1
-9 5 4 2 5 4 57 6 16 1
-0 1 4 4 6 5 32 6 16 0
-37 5 4 5 5 2 51 6 16 0
-23 0 5 2 4 6 62 7 16 1
-0 4 5 1 6 5 48 4 16 1
-0 7 7 1 6 6 39 3 16 1
-0 5 3 2 6 5 26 6 16 1
-40 0 4 2 4 1 38 3 16 1
-0 5 3 3 4 0 50 4 16 0
-9 2 5 5 6 4 33 3 16 1
-15 5 4 3 6 2 36 3 16 0
-640 5 4 4 6 0 24 6 16 0
-0 4 3 2 6 0 25 5 16 0
-0 7 6 5 3 0 62 3 16 0
-0 2 4 3 3 6 33 3 16 1
-0 7 6 2 5 6 53 6 16 1
-22 7 6 2 5 6 68 6 16 1
-22 7 5 4 6 1 68 3 16 0
-10 1 6 1 5 5 38 3 16 1
-29 1 4 5 3 0 58 1 16 0
-170 7 4 2 6 5 34 6 16 1
-4 2 4 3 4 1 58 2 16 0
-11 0 3 4 7 1 35 5 16 0
-31 3 7 2 6 6 42 6 16 1
-0 7 4 4 6 0 54 3 16 0
-0 7 6 2 5 6 69 3 16 1
-360 2 4 6 5 0 35 4 16 0
-0 7 6 1 5 6 66 4 16 1
-900 2 3 2 7 0 58 3 16 0
-51 5 2 4 7 1 41 3 16 0
-0 2 5 2 6 4 35 6 16 0
-110 0 3 3 6 1 40 7 16 0
-1 7 4 7 2 0 53 1 16 0
-8 5 6 2 6 5 67 6 16 1
-5 5 4 4 6 0 32 5 16 0
-87 4 3 4 6 0 41 4 16 0
-3 1 2 1 6 1 43 7 16 0
-51 1 5 3 2 0 65 2 16 0
-350 7 3 3 7 0 60 5 16 0
-3 7 5 3 6 0 77 6 16 0
-630 0 6 5 4 1 35 4 16 0
-180 4 6 7 5 1 48 4 16 0
-0 0 6 2 6 6 52 3 16 1
-35 7 5 3 6 2 43 7 16 0
-0 7 6 2 6 6 43 5 16 1
-0 7 6 2 6 6 67 4 16 1
-6 1 4 4 7 0 56 3 16 0
-7300 2 3 3 4 0 62 4 16 0
-2 1 7 7 5 0 62 3 16 0
-35 3 3 2 6 1 22 6 16 0
-0 0 2 2 6 1 21 5 16 0
-45 3 6 1 6 6 34 3 16 1
-0 7 4 3 5 0 70 3 16 0
-5 1 3 2 6 2 50 3 16 0
-35 5 6 1 6 6 42 4 16 1
-900 5 6 2 6 6 73 3 16 1
-35 2 3 1 6 0 57 7 16 0
-0 7 6 1 5 6 40 6 16 1
-0 2 6 1 6 6 58 6 16 1
-11 7 4 6 2 1 62 3 16 0
-40 1 3 5 3 1 44 3 17 0
-0 3 5 3 7 6 30 6 17 0
-23 7 3 3 7 0 76 5 17 0
-270 3 4 3 3 1 50 4 17 0
-9 1 6 2 5 5 41 4 17 1
-0 6 6 3 6 6 77 3 17 1
-0 3 6 3 5 6 35 6 17 1
-0 7 4 3 4 3 39 4 17 0
-2 0 4 2 4 4 72 3 17 1
-0 2 6 2 5 6 42 7 17 1
-16 7 5 2 6 5 85 2 17 1
-7300 0 4 2 6 3 79 4 17 0
-0 5 2 3 6 0 39 4 17 0
-23 4 6 1 5 6 58 6 17 1
-42 0 4 2 6 5 27 6 17 1
-2 4 4 3 5 1 43 5 17 0
-0 0 3 3 6 0 58 4 17 0
-42 7 4 3 6 4 28 7 17 1
-470 2 5 3 6 5 27 6 17 0
-42 0 3 6 5 2 40 3 17 0
-0 5 1 3 6 0 43 6 17 0
-40 7 5 4 6 5 64 3 17 1
-180 7 2 2 6 0 39 6 17 0
-110 7 4 2 6 4 76 4 17 1
-140 5 3 3 6 0 64 5 17 0
-0 4 4 6 3 2 28 4 17 0
-0 2 4 2 6 1 45 3 17 0
-190 1 6 2 6 6 22 3 17 1
-35 1 3 3 6 1 27 6 17 0
-45 0 1 2 7 0 31 4 17 0
-170 1 2 2 7 0 34 6 17 0
-0 4 2 3 7 0 30 4 17 0
-0 2 6 1 6 6 64 3 17 1
-35 0 6 1 6 4 36 6 17 1
-5 7 4 3 5 4 31 2 17 1
-350 1 4 3 4 5 37 3 17 1
-4 0 6 4 2 1 48 3 17 0
-70 0 5 7 7 3 41 3 17 0
-8 2 5 2 6 5 25 4 17 1
-12 5 4 2 6 6 82 3 17 1
-5 1 6 2 5 4 36 7 17 1
-0 7 6 2 5 1 47 3 17 1
-16 6 2 3 6 0 67 4 17 0
-0 0 4 6 2 5 24 4 17 1
-9 0 4 5 3 5 33 6 17 1
-14 7 4 1 5 1 59 4 17 1
-22 7 7 1 6 6 71 4 17 1
-0 7 6 2 5 6 36 3 17 1
-1 3 3 3 5 0 41 3 17 0
-1600 5 6 2 6 6 38 6 17 1
-7300 1 6 3 6 6 32 3 17 1
-19 0 5 6 7 1 32 4 17 0
-9 6 5 4 6 0 75 6 17 0
-0 7 5 2 4 4 52 3 17 1
-1600 5 2 3 6 0 29 7 17 0
-12 7 3 4 6 0 71 3 17 0
-1 0 6 2 5 2 33 6 17 0
-0 3 1 2 7 2 67 7 17 0
-0 2 6 1 6 6 49 4 17 1
-0 0 2 3 5 1 31 7 17 0
-9 7 3 4 6 1 53 2 17 0
-0 3 2 3 7 0 35 7 17 0
-170 7 6 2 6 6 49 7 18 1
-3 7 6 4 4 0 74 3 18 0
-14 0 6 1 5 6 29 4 18 1
-1 5 2 3 6 0 27 6 18 0
-23 5 4 4 6 5 70 4 18 0
-0 0 6 1 6 6 43 6 18 1
-1 5 2 3 6 2 47 7 18 0
-0 4 4 4 6 0 42 7 18 0
-9 0 6 2 5 6 41 6 18 1
-130 2 6 4 6 6 37 4 18 1
-5 5 5 5 4 1 61 3 18 0
-4 7 4 2 6 0 84 4 18 0
-2800 7 5 3 7 0 46 6 18 0
-4 0 4 3 6 5 39 7 18 0
-6 7 2 3 6 0 53 3 18 0
-4 7 5 1 6 6 87 6 18 1
-84 2 4 6 2 0 51 3 18 0
-0 0 5 2 5 4 37 5 18 1
-9 1 4 3 5 4 37 6 18 1
-290 0 5 2 6 6 40 6 18 1
-0 3 4 4 6 2 46 6 18 0
-9 7 1 4 1 3 44 3 18 1
-0 2 4 3 6 1 37 3 18 0
-0 7 4 2 6 2 55 7 18 0
-22 0 5 2 5 1 40 6 18 1
-0 5 3 2 6 1 42 7 18 0
-640 7 6 2 6 6 40 3 18 1
-10 0 6 2 6 6 32 3 18 1
-4 5 5 2 5 4 58 7 18 1
-0 2 5 1 6 4 37 3 18 1
-640 4 4 5 5 5 51 3 18 1
-110 5 3 5 4 5 44 5 18 0
-0 2 4 5 2 0 23 2 18 0
-0 2 6 2 6 6 38 3 18 1
-67 0 3 4 6 0 42 7 18 0
-520 7 4 2 5 4 60 4 18 1
-0 3 4 3 6 1 34 4 18 0
-51 1 6 2 6 6 49 3 18 1
-0 0 4 2 3 4 40 3 18 1
-2800 7 2 2 7 0 23 4 18 0
-110 2 2 3 6 0 47 3 18 0
-7300 7 4 4 7 0 44 5 18 0
-7300 5 5 2 6 1 37 7 18 1
-0 2 6 1 6 5 26 5 18 1
-16 7 7 6 5 2 51 4 18 0
-140 4 4 4 6 0 69 3 18 0
-54 2 2 2 7 0 36 6 18 0
-2 2 2 3 6 2 28 4 18 0
-470 4 5 2 6 5 40 4 19 1
-0 1 6 1 6 5 45 4 19 1
-75 3 5 2 5 5 75 6 19 1
-11 2 6 2 5 5 32 6 19 1
-0 0 3 2 6 1 27 3 19 0
-2800 6 5 2 5 3 63 6 19 1
-140 1 5 3 6 6 79 7 19 1
-9 7 3 2 6 1 40 6 19 0
-7300 2 4 3 6 1 57 6 19 0
-45 3 3 4 5 1 44 6 19 0
-1600 7 5 2 5 6 78 6 19 1
-9 7 4 5 5 5 58 7 19 0
-0 7 2 2 7 1 55 3 19 0
-130 4 3 4 6 2 25 6 19 0
-9 0 2 3 6 0 27 7 19 0
-3500 3 4 2 7 2 21 3 19 0
-0 3 6 2 6 5 37 4 19 1
-0 0 7 3 4 5 31 3 19 1
-35 7 2 4 6 0 85 7 19 0
-900 1 4 2 6 5 33 3 19 0
-27 7 3 7 4 3 63 2 19 1
-900 7 4 4 6 1 51 3 19 0
-0 2 3 5 2 0 46 3 19 0
-64 2 5 2 6 6 26 5 19 1
-4 7 3 3 6 0 57 6 19 0
-0 3 4 2 6 1 48 3 19 1
-0 2 7 1 5 5 55 3 19 1
-53 0 3 6 4 1 37 5 19 0
-290 2 6 2 6 6 39 3 19 1
-15 2 2 3 4 1 24 3 19 1
-0 0 6 3 6 6 30 6 19 1
-35 0 3 4 6 1 36 7 19 0
-0 0 5 4 6 4 45 3 19 0
-470 1 5 2 6 2 29 3 19 0
-16 7 6 3 6 5 41 4 19 1
-40 1 5 3 5 4 28 5 19 1
-290 7 2 2 7 0 35 4 19 0
-4 7 2 3 6 0 46 4 19 0
-1 7 1 2 7 1 55 4 19 0
-140 3 2 3 6 6 65 4 19 0
-110 1 4 2 6 1 22 4 19 0
-0 1 4 4 6 1 41 4 19 0
-900 1 2 3 6 2 43 7 19 0
-0 2 4 3 6 0 49 4 19 0
-0 4 4 2 5 4 35 7 19 1
-51 7 3 3 5 1 80 3 19 0
-71 2 4 6 2 0 57 4 19 0
-900 4 3 3 6 0 48 3 19 0
-83 4 1 4 6 2 43 6 19 0
-360 3 4 4 7 0 34 4 19 0
-180 7 2 2 4 0 44 5 19 0
-1 3 6 1 6 4 49 6 20 1
-22 7 5 2 7 2 43 7 20 0
-1 0 4 3 5 6 39 4 20 1
-2 2 4 3 7 1 27 3 20 0
-34 4 6 2 6 6 30 6 20 1
-33 2 6 2 6 4 33 6 20 1
-10 1 2 3 7 0 32 5 20 0
-290 7 5 2 6 6 31 6 20 1
-0 2 5 3 7 2 27 5 20 0
-76 3 2 2 6 0 36 4 20 0
-20 7 3 2 6 2 45 5 20 0
-0 5 4 6 5 2 51 3 20 0
-0 0 6 2 3 5 36 4 20 1
-0 7 6 4 6 4 47 7 20 1
-470 4 4 4 6 1 42 6 20 0
-9 6 6 1 5 6 70 6 20 1
-0 0 3 3 6 3 40 4 20 0
-0 7 2 5 7 0 38 3 20 0
-8 0 5 1 6 4 29 3 20 1
-1 0 4 2 5 6 58 3 20 1
-1 7 4 6 1 2 28 3 20 0
-7 1 6 3 6 5 30 4 20 1
-0 3 4 3 6 2 48 5 20 0
-170 0 6 2 6 6 35 4 20 1
-270 3 6 7 6 0 38 3 20 0
-0 0 4 2 5 4 56 7 20 1
-13 4 5 3 6 5 62 4 20 1
-10 7 6 1 6 5 56 4 20 1
-22 0 6 2 5 6 32 3 20 1
-640 5 4 5 7 1 50 5 20 0
-900 3 3 4 6 1 45 6 20 0
-22 7 3 3 4 0 36 6 20 0
-62 1 6 2 6 6 49 4 20 1
-110 2 7 1 6 6 31 6 20 1
-84 4 2 3 6 2 33 7 20 0
-0 1 6 2 6 6 35 4 20 1
-13 2 4 2 5 4 73 4 20 1
-20 7 6 1 5 6 54 5 20 1
-0 3 4 2 7 1 48 3 20 0
-16 3 6 2 6 4 65 4 20 1
-6 7 5 6 5 6 46 4 20 0
-12 0 2 2 6 0 45 7 20 0
-0 7 6 2 5 6 65 7 20 1
-0 0 6 2 6 6 45 6 20 1
-170 7 4 1 5 4 89 7 20 1
-100 0 5 3 6 4 32 4 20 0
-5 4 6 4 4 1 38 4 20 0
-3500 5 2 4 2 5 33 4 20 1
-71 4 6 2 5 6 49 7 20 1
-4 7 5 2 6 5 64 6 20 1
-7300 5 5 4 7 1 55 4 20 0
-7 0 3 3 5 1 56 7 20 0
-290 4 4 5 3 5 30 6 20 0
-0 0 5 4 6 5 41 7 20 1
-0 1 6 2 5 6 39 5 20 1
-520 7 4 4 6 4 34 3 20 0
-430 5 4 5 7 1 53 3 20 0
-9 2 3 3 6 2 40 6 20 0
-40 0 3 3 6 1 48 6 20 0
-2 7 6 5 5 5 59 4 20 0
-75 7 6 2 4 4 54 4 20 1
-170 0 3 5 6 1 41 6 20 0
-170 1 2 3 6 0 41 6 20 0
-640 5 5 3 6 4 63 7 20 0
-2800 1 7 1 6 4 39 3 20 1
-9 3 7 2 5 4 46 3 20 0
-150 7 4 3 6 0 55 3 20 0
-0 7 4 1 5 3 42 3 20 1
-0 7 6 3 6 4 58 2 20 1
-100 0 3 2 6 2 42 4 20 0
-33 7 4 3 4 2 40 6 20 1
-310 7 5 2 5 1 56 6 20 1
-53 1 4 5 2 2 37 4 20 0
-13 2 3 2 6 2 37 6 20 0
-290 6 5 1 5 5 49 6 20 1
-310 7 6 1 6 6 63 4 20 1
-0 7 6 2 5 6 30 7 20 1
-54 7 4 2 6 4 62 5 20 1
-1600 0 4 3 6 1 30 6 20 0
-14 0 6 3 6 6 34 6 20 1
-25 7 6 3 6 5 41 4 20 1
-45 0 4 5 4 6 43 3 20 1
-20 2 5 2 6 4 33 5 20 0
-18 6 4 3 5 5 67 7 20 1
-740 7 5 1 6 0 55 5 20 1
-9 6 2 2 6 0 33 5 20 0
-5 0 6 1 5 5 61 4 20 1
-7300 7 4 1 6 4 45 3 20 0
-81 7 4 3 7 0 34 3 20 0
-190 1 6 2 6 6 35 3 20 1
-51 1 4 4 5 2 50 6 20 0
-7300 7 3 4 2 0 38 4 20 0
-350 0 6 2 6 5 56 3 20 1
-27 2 4 1 6 5 31 3 20 1
-33 5 6 1 4 5 40 7 20 1
-50 4 3 2 6 0 44 3 20 0
-1 7 6 5 2 2 39 4 20 0
-11 1 4 3 6 1 45 3 20 0
-51 5 3 3 6 0 72 6 20 0
-160 7 2 3 5 1 44 7 20 0
-16 7 1 3 6 0 61 7 21 0
-110 6 6 2 6 6 34 7 21 1
-110 4 5 2 5 5 61 6 21 1
-13 6 3 3 7 1 67 4 21 0
-220 7 4 1 4 6 38 6 21 1
-470 7 4 2 6 1 50 6 21 0
-22 6 6 1 6 6 62 4 21 1
-9 2 6 3 6 5 36 6 21 1
-22 3 6 3 5 4 50 6 21 1
-190 2 4 2 7 1 30 6 21 0
-100 5 6 2 6 6 59 5 21 1
-14 7 3 3 6 0 62 6 21 0
-0 7 4 3 6 3 40 4 21 0
-180 1 6 1 6 6 30 4 21 1
-3 6 3 2 6 2 47 3 21 0
-51 2 5 2 6 1 41 6 21 0
-9 2 6 1 6 6 35 7 21 1
-0 7 5 2 6 6 45 4 21 1
-0 2 4 2 6 4 34 6 21 1
-71 2 5 7 2 2 55 3 21 0
-290 1 5 3 6 2 37 4 21 0
-45 3 5 2 4 4 61 7 21 1
-0 3 4 5 4 1 62 2 21 0
-26 1 5 2 6 6 54 6 21 1
-87 3 2 3 6 1 33 6 21 0
-0 0 2 3 6 1 50 6 21 0
-630 0 3 4 7 2 37 3 21 0
-50 5 5 3 6 3 44 3 21 1
-35 7 4 3 4 3 78 3 21 0
-180 7 6 2 4 6 56 3 21 0
-32 0 2 3 4 2 29 6 21 0
-0 7 3 2 5 4 52 6 21 0
-51 1 6 4 5 1 31 3 21 0
-40 0 6 3 6 6 34 7 21 1
-0 2 5 3 6 5 31 7 21 1
-0 7 4 3 5 2 43 6 21 0
-0 1 4 4 3 5 31 3 21 1
-1 6 6 1 6 6 63 7 21 1
-7 2 2 3 7 4 38 4 21 0
-0 2 6 2 6 6 31 5 21 1
-71 2 2 1 7 0 64 3 21 0
-75 2 3 2 5 5 55 7 21 0
-55 1 2 2 6 0 41 3 21 0
-290 4 3 4 5 5 38 4 21 1
-88 4 6 3 6 5 28 6 21 1
-0 7 4 3 5 5 42 5 21 1
-16 7 2 4 3 1 43 4 21 0
-75 1 5 1 6 5 37 4 21 1
-220 1 4 2 6 3 47 5 21 0
-3 5 5 1 6 5 52 7 21 1
-130 0 5 2 6 5 32 4 21 1
-0 5 4 4 3 2 29 3 21 0
-110 2 6 2 5 4 56 3 21 1
-12 7 4 3 5 5 63 7 21 1
-180 3 3 3 6 1 35 5 21 0
-93 7 4 3 5 3 36 4 21 1
-170 7 4 2 7 0 75 5 21 0
-31 5 3 3 6 1 48 6 21 0
-62 4 7 2 6 6 36 5 21 1
-30 4 4 3 6 2 34 6 21 0
-66 7 4 3 7 1 35 5 21 0
-3 3 5 2 5 6 50 4 21 1
-18 3 5 2 5 6 39 7 21 1
-350 5 5 4 6 5 70 7 21 1
-71 7 4 2 5 6 76 3 21 1
-3500 5 5 2 5 5 35 6 21 1
-0 0 3 4 3 3 53 7 21 1
-360 6 5 2 6 4 46 6 21 1
-81 2 5 2 5 4 34 4 21 1
-350 5 4 4 6 5 69 4 21 0
-190 1 5 2 5 1 32 3 21 0
-0 7 5 1 6 6 50 2 21 1
-290 1 5 3 6 6 35 6 21 1
-18 0 6 1 6 6 67 5 21 1
-11 3 5 5 6 5 47 3 21 0
-2 2 6 3 5 4 50 6 21 1
-570 0 6 2 6 4 32 3 21 1
-310 3 5 4 6 2 58 5 21 0
-1 7 3 2 7 0 49 7 21 0
-0 2 6 3 6 1 43 4 21 1
-35 1 5 2 6 5 24 6 21 1
-22 7 5 3 4 2 58 7 21 0
-2 1 2 2 5 0 43 4 21 0
-0 7 4 3 6 5 59 3 21 1
-0 3 6 1 6 6 40 5 21 1
-310 0 5 2 7 0 35 4 21 0
-470 5 2 3 5 1 48 4 21 0
-0 4 6 1 6 6 40 3 21 1
-270 3 3 2 7 0 48 3 21 0
-110 0 2 4 6 0 47 7 21 0
-50 3 6 4 1 1 23 3 21 0
-0 0 6 1 6 6 38 3 21 1
-3 7 6 2 6 6 81 7 21 1
-31 5 3 3 6 1 48 6 21 0
-22 7 5 6 2 4 52 3 21 0
-83 2 4 1 6 3 24 6 21 1
-9 0 4 2 6 1 21 5 21 0
-5 7 5 2 6 5 70 6 21 1
-0 7 7 1 7 6 24 6 21 1
-0 7 4 3 5 1 57 7 21 0
-0 6 3 5 6 4 37 6 21 0
-27 1 3 5 3 5 25 5 21 0
-110 1 6 5 1 1 33 3 21 0
-0 7 4 6 3 0 45 3 22 0
-0 3 5 2 7 5 42 6 22 0
-350 3 3 3 6 2 47 6 22 0
-0 7 6 1 6 6 51 7 22 1
-5 7 5 4 6 5 85 2 22 0
-15 4 3 3 6 2 32 7 22 0
-35 7 3 3 6 2 31 7 22 0
-0 2 4 3 6 2 23 6 22 0
-75 3 3 3 6 0 42 6 22 0
-0 5 6 2 5 5 55 6 22 1
-16 7 6 2 6 6 45 6 22 1
-0 1 6 2 5 6 35 7 22 1
-0 0 2 4 6 0 45 6 22 0
-0 0 3 3 5 2 42 3 22 0
-4 1 6 2 6 5 37 4 22 1
-62 0 4 4 4 5 38 3 22 1
-0 3 2 2 6 1 47 7 22 0
-4 7 4 2 6 2 32 6 22 0
-56 2 5 2 6 5 35 6 22 1
-2 6 4 2 6 5 38 4 22 1
-0 0 4 4 4 3 40 3 22 0
-75 7 6 2 5 6 62 6 22 1
-10 2 2 2 6 1 28 7 22 0
-0 6 6 2 5 6 59 5 22 1
-0 2 1 2 6 0 25 6 22 0
-220 2 4 2 6 6 31 6 22 1
-0 1 7 2 6 6 45 4 22 1
-75 0 5 2 7 5 42 6 22 0
-0 3 2 2 5 1 56 7 22 0
-140 5 3 3 6 1 47 7 22 0
-290 1 6 2 5 5 38 6 22 1
-350 7 4 3 7 2 47 6 22 0
-55 1 5 2 6 6 49 4 22 1
-31 3 3 3 6 2 29 7 22 0
-17 7 2 2 6 0 57 6 22 0
-51 4 6 3 5 6 68 3 22 1
-140 7 2 2 4 0 76 6 22 0
-9 4 6 2 6 5 66 6 22 1
-0 7 5 1 6 4 59 4 22 1
-640 7 5 3 6 4 37 7 22 0
-32 2 5 2 6 6 38 6 22 1
-5 7 6 2 6 5 47 7 22 1
-8 1 5 2 4 5 36 7 22 1
-18 0 5 4 6 0 45 7 22 0
-0 6 5 2 6 5 39 7 22 1
-0 1 3 2 6 1 34 6 22 0
-0 3 6 6 4 0 49 4 22 0
-31 2 6 2 6 5 36 6 22 1
-350 7 6 1 6 6 81 5 22 1
-20 1 5 2 6 4 29 4 22 1
-70 3 5 3 4 0 45 6 22 0
-31 3 5 2 6 5 21 4 22 1
-3 7 2 4 3 6 33 6 22 1
-9 7 4 4 2 2 44 3 23 0
-59 1 2 2 6 4 52 7 23 0
-27 2 3 5 7 1 38 4 23 0
-51 4 2 3 6 2 44 5 23 0
-9 7 6 2 6 6 87 7 23 1
-0 2 7 2 6 5 22 3 23 1
-88 0 3 3 5 2 32 6 23 1
-67 0 4 5 6 4 69 3 23 0
-29 2 6 2 5 6 49 6 23 1
-5 0 6 2 6 6 53 3 23 1
-0 0 6 1 6 5 44 6 23 1
-900 1 6 2 7 5 34 6 23 1
-18 1 6 1 5 5 55 7 23 1
-190 2 3 3 6 0 35 6 23 0
-2 7 4 5 5 3 55 3 23 0
-5 3 6 3 5 5 27 6 23 1
-56 3 4 4 5 1 26 6 23 0
-75 7 4 2 6 5 54 6 23 0
-56 0 5 2 6 5 42 4 23 1
-0 5 6 1 6 6 57 7 23 1
-0 0 7 1 4 6 54 6 23 1
-75 6 6 3 6 6 55 6 23 1
-1600 7 5 3 6 6 50 7 23 1
-15 0 5 5 6 1 57 7 23 0
-19 3 5 3 7 3 46 4 23 0
-16 7 6 2 6 6 53 6 23 1
-42 2 3 3 5 0 32 7 23 0
-18 5 5 2 5 3 53 5 23 1
-0 3 3 3 6 1 39 6 23 0
-310 1 5 2 5 4 47 6 23 1
-1600 7 5 2 4 2 57 4 23 0
-23 5 6 3 6 6 49 6 23 1
-20 1 5 4 6 5 31 5 23 0
-51 5 5 3 5 5 43 6 23 1
-0 2 5 2 5 4 44 6 23 1
-0 4 4 3 6 0 39 6 23 0
-0 2 6 1 6 5 49 4 23 1
-18 7 5 4 6 4 72 6 23 1
-7300 7 5 2 6 5 50 6 23 1
-110 1 5 2 6 6 28 4 23 1
-0 0 5 2 7 3 48 7 23 1
-3500 1 3 4 7 1 32 6 23 0
-720 7 5 5 5 1 63 4 23 0
-9 4 4 5 6 5 36 4 23 1
-47 7 6 3 6 6 36 6 23 1
-350 7 3 2 7 2 53 3 23 0
-0 5 2 2 6 2 44 7 23 0
-0 0 4 2 6 6 41 7 24 1
-83 0 2 3 6 1 56 7 24 0
-1 4 4 4 6 2 63 7 24 0
-190 7 2 4 6 0 52 6 24 0
-0 7 3 3 7 2 43 7 24 0
-12 7 4 3 6 2 40 3 24 0
-9 5 5 1 7 4 69 4 24 1
-23 7 2 2 6 0 49 7 24 0
-9 1 3 3 6 2 65 7 24 0
-18 5 6 1 6 5 53 7 24 1
-0 5 5 3 5 6 50 4 24 1
-12 3 2 4 6 0 27 5 24 0
-0 6 5 3 5 5 44 6 24 1
-170 2 2 3 5 0 54 7 24 0
-0 7 4 2 6 4 33 5 24 1
-9 0 4 4 6 3 48 7 24 0
-23 3 5 2 6 5 54 5 24 1
-0 0 6 2 5 6 56 3 24 1
-9 1 2 4 7 2 34 7 24 0
-290 7 6 4 7 6 41 6 24 0
-1 0 5 1 5 6 40 6 24 1
-350 1 7 2 6 6 55 6 24 1
-20 0 4 3 5 5 38 6 24 1
-0 3 6 2 6 6 40 6 24 1
-23 1 6 1 6 6 46 4 24 1
-150 4 3 3 4 0 26 6 24 0
-31 0 5 2 7 3 49 6 24 0
-0 7 4 1 5 6 51 5 24 1
-9 2 5 2 6 4 46 6 24 0
-47 0 3 4 6 2 40 7 24 0
-900 0 3 4 7 2 30 5 24 0
-83 3 2 3 6 2 45 5 24 0
-18 7 5 4 6 4 52 7 24 1
-0 0 6 1 5 6 36 6 24 1
-20 0 4 3 5 3 49 6 24 0
-24 7 3 4 5 1 38 7 24 0
-18 0 2 4 6 1 51 7 24 0
-9 3 3 2 5 1 47 6 24 0
-0 1 6 1 5 6 52 7 24 1
-9 0 6 2 6 6 33 6 24 1
-0 4 4 2 6 6 50 4 24 1
-18 7 6 2 5 4 48 7 24 1
-19 3 2 2 6 0 36 6 24 0
-31 3 2 3 6 1 35 7 24 0
-3500 7 7 3 5 4 34 7 24 0
-0 7 2 4 5 2 53 6 24 0
-33 0 4 3 6 2 33 7 24 0
-0 1 6 3 6 6 52 6 24 1
-18 3 4 3 6 4 44 7 24 0
-0 0 3 4 4 0 48 6 24 0
-31 3 5 2 6 5 20 4 24 1
-0 5 3 2 4 6 45 6 24 1
-59 7 4 2 6 2 70 3 24 0
-0 0 3 3 4 2 39 3 24 0
-7300 7 3 3 5 1 40 7 24 1
-75 4 5 2 7 5 62 6 24 1
-0 7 5 2 6 4 46 6 24 1
-27 7 4 4 7 2 46 3 24 0
-1600 7 4 2 5 6 56 7 24 1
-0 7 6 3 6 6 55 7 24 1
-0 7 6 2 6 6 41 4 24 1
-7300 1 2 3 6 0 43 7 24 0
-16 7 7 1 7 6 34 3 24 1
-0 7 7 1 6 4 73 6 24 1
-0 7 5 2 6 6 50 6 24 1
-0 3 6 2 7 5 43 6 24 1
-0 6 6 2 5 6 46 7 24 1
-18 7 4 2 6 3 61 7 24 1
diff --git a/statsmodels/scikits/statsmodels/datasets/anes96/data.py b/statsmodels/scikits/statsmodels/datasets/anes96/data.py
deleted file mode 100644
index 1f49f49..0000000
--- a/statsmodels/scikits/statsmodels/datasets/anes96/data.py
+++ /dev/null
@@ -1,116 +0,0 @@
-"""American National Election Survey 1996"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain."""
-TITLE = __doc__
-SOURCE = """
-http://www.electionstudies.org/
-
-The American National Election Studies.
-"""
-
-DESCRSHORT = """This data is a subset of the American National Election Studies of 1996."""
-
-DESCRLONG = DESCRSHORT
-
-NOTE = """
-Number of observations - 944
-Numner of variables - 10
-
-Variables name definitions::
-
- popul - Census place population in 1000s
- TVnews - Number of times per week that respondent watches TV news.
- PID - Party identification of respondent.
- 0 - Strong Democrat
- 1 - Weak Democrat
- 2 - Independent-Democrat
- 3 - Independent-Indpendent
- 4 - Independent-Republican
- 5 - Weak Republican
- 6 - Strong Republican
- age : Age of respondent.
- educ - Education level of respondent
- 1 - 1-8 grades
- 2 - Some high school
- 3 - High school graduate
- 4 - Some college
- 5 - College degree
- 6 - Master's degree
- 7 - PhD
- income - Income of household
- 1 - None or less than $2,999
- 2 - $3,000-$4,999
- 3 - $5,000-$6,999
- 4 - $7,000-$8,999
- 5 - $9,000-$9,999
- 6 - $10,000-$10,999
- 7 - $11,000-$11,999
- 8 - $12,000-$12,999
- 9 - $13,000-$13,999
- 10 - $14,000-$14.999
- 11 - $15,000-$16,999
- 12 - $17,000-$19,999
- 13 - $20,000-$21,999
- 14 - $22,000-$24,999
- 15 - $25,000-$29,999
- 16 - $30,000-$34,999
- 17 - $35,000-$39,999
- 18 - $40,000-$44,999
- 19 - $45,000-$49,999
- 20 - $50,000-$59,999
- 21 - $60,000-$74,999
- 22 - $75,000-89,999
- 23 - $90,000-$104,999
- 24 - $105,000 and over
- vote - Expected vote
- 0 - Clinton
- 1 - Dole
- The following 3 variables all take the values:
- 1 - Extremely liberal
- 2 - Liberal
- 3 - Slightly liberal
- 4 - Moderate
- 5 - Slightly conservative
- 6 - Conservative
- 7 - Extremely Conservative
- selfLR - Respondent's self-reported political leanings from "Left"
- to "Right".
- ClinLR - Respondents impression of Bill Clinton's political
- leanings from "Left" to "Right".
- DoleLR - Respondents impression of Bob Dole's political leanings
- from "Left" to "Right".
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """Load the anes96 data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=5, dtype=float)
-
-def load_pandas():
- """Load the anes96 data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=5, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/anes96.csv',"rb"), delimiter="\t",
- names = True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/anes96/src/anes96.csv b/statsmodels/scikits/statsmodels/datasets/anes96/src/anes96.csv
deleted file mode 100644
index a8378a9..0000000
--- a/statsmodels/scikits/statsmodels/datasets/anes96/src/anes96.csv
+++ /dev/null
@@ -1,945 +0,0 @@
-popul TVnews selfLR ClinLR DoleLR PID age educ income vote reldist
-0 7 7 1 6 6 36 3 1 1 -5
-190 1 3 3 5 1 20 4 1 0 2
-31 7 2 2 6 1 24 6 1 0 4
-83 4 3 4 5 1 28 6 1 0 1
-640 7 5 6 4 0 68 6 1 0 0
-110 3 3 4 6 1 21 4 1 0 2
-100 7 5 6 4 1 77 4 1 0 0
-31 1 5 4 5 4 21 4 1 0 -1
-180 7 4 6 3 3 31 4 1 0 -1
-2800 0 3 3 7 0 39 3 1 0 4
-1600 0 3 2 4 4 26 2 1 0 0
-330 5 4 3 6 1 31 4 1 0 1
-190 2 5 4 6 5 22 4 1 1 0
-100 7 4 4 6 0 42 5 1 0 2
-1000 7 5 7 4 0 74 1 1 0 -1
-0 7 6 7 5 0 62 3 1 0 0
-130 7 4 4 5 1 58 3 1 0 1
-5 5 3 3 6 1 24 6 1 0 3
-33 7 6 2 6 5 51 4 1 1 -4
-19 2 2 1 4 0 36 3 2 0 1
-74 7 4 4 7 2 88 2 2 0 3
-190 0 2 4 6 2 20 4 2 0 2
-12 3 4 6 3 2 27 3 2 0 -1
-0 7 6 1 6 6 44 4 2 1 -5
-19 0 4 2 2 1 45 3 2 0 0
-0 2 4 3 6 1 21 4 2 0 1
-390 5 3 4 7 1 40 5 2 0 3
-40 7 4 3 4 0 40 6 2 0 -1
-3 3 5 5 4 1 48 3 2 0 1
-450 3 4 7 1 0 34 3 2 0 0
-350 0 3 4 7 2 26 2 2 0 3
-64 3 4 4 2 1 60 2 3 0 2
-3 0 4 4 3 0 32 3 3 0 1
-0 1 4 3 7 1 31 3 3 0 2
-640 7 7 5 7 4 33 3 3 1 -2
-0 7 3 4 6 0 57 3 3 0 2
-12 7 4 3 6 1 84 3 3 0 1
-62 6 7 2 7 5 75 3 3 1 -5
-31 2 7 2 6 6 19 4 3 1 -4
-0 1 3 2 6 1 47 6 3 0 2
-180 6 5 5 5 0 51 2 3 0 0
-640 3 6 4 4 5 40 3 3 0 0
-110 0 2 3 6 1 22 6 3 0 3
-100 1 7 7 5 6 35 2 3 0 2
-100 7 4 4 7 2 43 5 3 0 3
-11 3 6 6 3 2 76 6 3 0 3
-0 7 4 3 1 6 45 3 3 1 2
-4 7 4 6 6 0 88 2 3 0 0
-35 6 4 4 2 1 46 3 4 0 2
-0 1 3 4 5 2 22 6 4 0 1
-0 7 5 1 6 5 68 3 4 1 -3
-0 2 5 2 6 5 38 3 4 1 -2
-33 7 4 3 6 3 69 2 4 0 1
-270 2 5 4 3 0 67 3 4 0 1
-45 7 2 4 6 0 88 4 4 0 2
-40 3 6 2 5 5 68 3 4 1 -3
-6 1 5 2 4 2 76 3 4 1 -2
-2 7 4 4 6 0 72 2 4 0 2
-0 0 6 2 6 6 37 6 4 1 -4
-35 3 4 2 6 0 69 3 4 0 0
-83 0 2 4 6 0 33 6 4 0 2
-3500 7 2 2 6 0 34 4 4 0 4
-100 2 4 4 7 2 30 3 4 0 3
-350 2 3 3 6 1 19 3 4 0 3
-100 3 4 6 2 0 44 3 4 0 0
-67 1 4 4 7 1 64 3 4 0 3
-30 5 7 7 2 0 37 4 4 0 5
-0 7 6 3 5 4 31 5 5 1 -2
-0 0 6 1 5 4 88 4 5 1 -4
-6 7 6 2 6 6 77 4 5 1 -4
-350 1 4 5 6 5 30 6 5 0 1
-400 1 2 3 7 1 32 4 5 0 4
-15 7 6 2 6 6 59 1 5 1 -4
-0 0 4 4 4 3 47 4 5 0 0
-3 2 4 6 5 1 22 3 5 0 -1
-22 5 4 2 6 2 55 3 5 0 0
-64 2 2 1 3 0 24 2 5 0 0
-32 5 3 7 4 1 65 1 5 0 -3
-390 7 3 6 2 2 24 3 5 0 -2
-0 7 3 4 5 3 30 3 5 0 1
-0 7 4 5 2 3 73 3 5 0 1
-59 5 3 3 5 1 73 5 5 0 2
-0 6 4 3 6 2 91 1 5 0 1
-35 7 3 2 5 0 71 2 5 0 1
-0 2 6 4 5 4 34 4 5 1 -1
-170 7 4 3 2 0 48 2 6 0 1
-12 1 6 2 6 5 42 4 6 1 -4
-40 4 6 5 4 0 72 2 6 0 1
-31 2 3 4 6 6 20 4 6 1 2
-31 7 2 2 7 0 22 4 6 0 5
-1600 1 3 3 6 1 24 6 6 0 3
-1 1 4 2 7 2 39 6 6 0 1
-4 7 6 1 6 6 83 5 6 1 -5
-190 0 6 2 6 6 39 3 6 1 -4
-53 3 5 3 6 1 33 5 6 0 -1
-31 7 4 3 6 1 53 3 6 1 1
-16 7 5 3 6 5 82 3 6 1 -1
-33 5 4 3 5 6 82 3 6 1 0
-0 3 5 3 6 5 47 6 7 1 -1
-0 3 4 2 7 4 68 3 7 0 1
-0 7 4 3 5 0 84 6 7 0 0
-27 2 6 1 6 5 35 5 7 1 -5
-84 7 4 5 6 1 67 2 7 0 1
-22 3 5 3 5 4 33 2 7 1 -2
-0 3 3 3 5 0 49 7 7 0 2
-3500 0 4 3 7 0 91 1 7 0 2
-390 7 4 5 3 1 43 3 7 0 0
-0 7 4 3 2 6 65 4 7 0 1
-16 7 5 6 3 0 69 3 7 0 1
-200 0 5 5 4 1 56 4 8 0 1
-640 0 2 3 5 0 24 6 8 0 2
-0 7 4 4 5 0 77 3 8 0 1
-45 7 6 3 7 0 74 3 8 0 -2
-12 0 7 3 6 6 25 6 8 1 -3
-20 7 6 2 5 4 85 1 8 1 -3
-7300 5 7 7 6 3 21 2 8 0 1
-64 7 6 3 1 0 24 4 8 0 2
-13 7 5 4 7 4 73 4 8 0 1
-190 0 4 5 3 2 37 3 8 0 0
-9 4 4 5 1 2 35 4 8 0 2
-0 7 4 4 7 0 47 3 8 0 3
-170 2 4 2 6 6 21 3 8 1 0
-640 7 3 6 4 0 55 5 8 0 -2
-9 4 6 3 6 6 30 6 8 1 -3
-0 4 5 3 6 4 76 7 8 1 -1
-7300 5 3 4 3 3 36 4 8 0 -1
-2800 0 1 1 7 0 38 3 9 0 6
-0 7 2 3 5 0 67 3 9 0 2
-30 7 7 3 7 6 70 2 9 1 -4
-44 7 5 3 7 2 78 4 9 0 0
-7300 1 2 2 7 3 27 6 9 0 5
-330 4 3 5 6 1 51 4 9 0 1
-3 0 6 7 3 5 33 4 9 0 2
-51 2 6 1 5 6 80 6 9 1 -4
-29 5 4 1 6 1 79 1 9 0 -1
-630 2 6 4 5 4 66 1 9 1 -1
-170 0 4 1 6 0 32 3 10 0 -1
-33 7 4 5 7 0 70 2 10 0 2
-0 3 2 3 6 3 42 3 10 0 3
-9 5 5 4 5 5 73 4 10 1 -1
-22 4 4 4 6 0 87 2 10 0 2
-100 0 7 5 1 1 30 5 10 0 4
-2 2 4 4 5 3 52 3 10 0 1
-0 6 5 3 6 1 62 4 10 0 -1
-50 7 6 3 4 0 67 3 10 0 -1
-15 4 6 3 4 4 37 6 10 0 -1
-3 4 3 5 7 0 37 4 10 0 2
-720 5 1 5 6 1 64 6 10 0 1
-640 7 1 1 5 0 34 3 10 0 4
-5 7 4 4 7 0 70 3 10 0 3
-24 2 6 2 6 6 31 5 10 1 -4
-22 7 2 2 6 0 29 6 11 0 4
-55 7 4 5 4 1 71 2 11 0 -1
-0 2 4 4 4 0 67 1 11 0 0
-1600 5 4 4 6 0 41 7 11 0 2
-170 6 1 2 6 0 49 6 11 0 4
-1000 7 4 4 5 0 42 5 11 0 1
-63 0 6 3 2 0 78 2 11 0 1
-110 0 4 1 6 1 24 3 11 0 -1
-16 7 4 6 6 1 29 3 11 0 0
-100 3 4 2 6 5 39 5 11 1 0
-7300 3 5 3 6 1 19 4 11 0 -1
-22 2 4 2 7 1 32 5 11 0 1
-71 3 4 2 6 5 69 3 11 1 0
-900 4 5 2 5 5 83 3 11 1 -3
-35 7 4 1 5 4 76 2 11 1 -2
-2 7 7 1 2 0 62 2 11 0 -1
-83 2 3 3 6 0 47 7 11 0 3
-370 5 6 7 4 0 35 3 11 0 1
-12 0 4 5 3 4 23 3 11 0 0
-370 7 4 4 1 1 79 4 11 0 3
-100 7 6 2 6 5 64 5 11 1 -4
-470 7 6 2 4 5 70 4 11 1 -2
-22 7 6 1 6 6 87 5 11 1 -5
-2800 0 3 6 1 0 28 2 12 0 -1
-47 5 3 5 7 1 58 3 12 0 2
-900 5 4 4 6 1 85 2 12 0 2
-330 7 3 6 4 0 62 3 12 0 -2
-84 0 3 2 7 1 26 6 12 0 3
-0 0 6 2 5 5 28 3 12 1 -3
-33 3 6 1 7 6 88 2 12 1 -4
-53 7 2 3 6 0 57 6 12 0 3
-8 7 2 2 6 0 78 3 12 0 4
-2 7 4 4 2 0 56 3 12 0 2
-0 0 4 6 3 3 46 5 12 0 -1
-0 2 4 4 3 5 20 3 12 1 1
-0 0 5 6 4 1 24 4 12 0 0
-0 7 5 2 6 2 72 4 12 0 -2
-15 7 2 4 7 1 51 4 12 0 3
-900 0 6 2 5 6 34 6 12 1 -3
-30 2 4 2 6 1 21 4 12 0 0
-0 7 4 4 6 2 74 7 12 0 2
-170 3 4 4 6 1 48 1 12 0 2
-900 2 3 3 7 5 28 3 12 0 4
-0 6 7 1 7 5 38 2 12 1 -6
-1600 7 4 6 1 0 70 3 12 0 1
-0 7 4 5 4 0 72 2 12 0 -1
-2800 0 4 5 6 0 41 3 12 0 1
-110 5 3 4 5 1 50 7 12 0 1
-1 7 6 2 5 5 73 3 12 1 -3
-3 5 5 2 4 0 79 6 12 0 -2
-0 4 5 1 4 5 76 2 12 1 -3
-22 0 5 3 5 5 62 5 12 1 -2
-63 3 6 2 6 6 30 6 12 1 -4
-290 0 6 3 6 5 35 4 12 1 -3
-2 7 1 2 7 1 66 4 12 0 5
-40 0 2 4 6 0 35 4 12 0 2
-67 0 6 1 5 6 57 6 12 1 -4
-0 5 4 5 4 5 37 5 12 1 -1
-470 7 5 5 2 1 61 3 13 0 3
-0 7 6 2 6 6 56 3 13 1 -4
-4 6 3 4 5 1 53 3 13 0 1
-20 0 4 5 3 2 24 6 13 1 0
-2800 7 4 1 6 5 74 3 13 1 -1
-0 0 4 4 3 1 36 3 13 0 1
-1 0 6 2 4 5 30 5 13 1 -2
-640 0 4 7 4 1 55 2 13 0 -3
-170 3 3 2 7 2 35 6 13 0 3
-270 2 3 4 6 0 26 4 13 0 2
-390 0 3 4 6 2 25 4 13 0 2
-16 2 6 7 4 3 27 3 13 0 1
-11 7 4 1 6 5 66 3 13 1 -1
-0 1 5 2 6 2 39 2 13 0 -2
-270 7 1 1 2 2 58 5 13 0 1
-170 2 4 4 4 0 53 3 13 1 0
-900 7 6 7 4 0 76 3 13 0 1
-270 7 5 2 7 1 51 3 13 0 -1
-0 7 4 2 7 0 70 2 13 0 1
-350 3 6 3 6 6 68 4 13 1 -3
-0 0 5 4 5 2 32 3 13 1 -1
-6 0 5 4 5 5 55 3 13 0 -1
-290 7 2 2 6 0 52 4 13 0 4
-630 7 6 4 6 4 73 2 13 1 -2
-900 0 5 4 7 0 42 2 13 0 1
-31 2 4 4 3 4 23 5 13 1 1
-1600 5 2 3 6 0 30 7 14 0 3
-71 7 2 2 7 0 68 4 14 0 5
-200 7 5 2 3 2 68 3 14 0 -1
-0 0 6 4 7 3 68 6 14 0 -1
-30 5 2 3 6 0 38 5 14 0 3
-10 1 4 3 6 2 74 3 14 0 1
-0 7 5 6 3 0 59 2 14 0 1
-900 2 5 2 5 2 73 2 14 0 -3
-71 7 2 3 6 0 79 3 14 0 3
-22 3 7 1 6 5 28 4 14 1 -5
-0 7 6 2 6 6 50 3 14 1 -4
-0 4 6 3 1 1 36 4 14 0 2
-0 3 6 2 6 6 50 3 14 1 -4
-0 1 6 2 6 6 61 3 14 1 -4
-7300 3 2 2 6 0 37 4 14 0 4
-83 0 3 4 7 0 29 6 14 0 3
-93 7 2 3 7 0 39 4 14 0 4
-0 7 4 5 4 2 83 6 14 1 -1
-51 7 6 1 5 4 68 6 14 1 -4
-31 2 6 1 5 6 25 4 14 1 -4
-93 2 1 3 6 1 41 6 14 0 3
-0 7 3 2 6 1 67 3 14 0 2
-0 3 4 2 6 4 36 6 14 1 0
-31 4 6 2 6 4 66 4 14 1 -4
-900 1 3 2 7 1 55 4 14 0 3
-0 4 3 2 6 2 42 5 14 0 2
-2 7 6 3 5 5 42 3 14 1 -2
-110 3 4 5 7 1 36 3 14 0 2
-63 1 6 4 6 4 53 5 14 1 -2
-900 0 3 2 5 1 36 5 14 0 1
-31 3 4 3 6 2 29 7 14 0 1
-510 1 4 4 6 0 31 3 14 0 2
-270 2 3 4 6 1 43 6 14 0 2
-9 3 3 4 7 1 33 6 14 0 3
-3 1 6 6 2 0 63 3 14 0 4
-29 1 5 2 4 2 25 5 14 0 -2
-45 2 3 2 6 0 72 4 14 0 2
-83 5 3 3 6 1 40 4 14 0 3
-22 7 4 2 6 2 27 6 14 0 0
-15 3 5 4 7 2 26 4 15 0 1
-110 7 5 2 5 6 67 3 15 1 -3
-8 0 4 5 5 1 21 3 15 0 0
-11 5 6 2 6 6 27 7 15 1 -4
-56 4 6 5 3 0 78 6 15 1 2
-8 3 4 4 3 1 32 3 15 0 1
-100 5 4 2 6 1 68 4 15 0 0
-900 7 4 2 6 5 76 4 15 0 0
-67 7 3 3 6 0 33 5 15 0 3
-35 4 6 2 5 4 38 2 15 1 -3
-35 3 4 3 5 1 49 7 15 0 0
-22 0 5 4 6 5 61 4 15 1 0
-110 7 7 1 5 4 57 3 15 1 -4
-12 0 4 2 5 2 20 3 15 0 -1
-7300 7 4 2 4 4 63 6 15 1 -2
-0 0 4 1 5 4 53 3 15 1 -2
-19 5 4 2 6 5 35 4 15 1 0
-470 3 4 4 7 0 39 3 15 0 3
-4 3 3 5 3 4 48 3 15 1 -2
-640 4 6 2 5 4 62 3 15 1 -3
-640 2 4 2 3 1 30 5 15 0 -1
-200 7 7 1 4 6 26 6 15 1 -3
-0 7 3 2 4 5 74 6 15 1 0
-29 4 3 4 6 2 37 5 15 0 2
-330 2 4 5 5 1 43 5 15 0 0
-19 5 5 1 4 6 68 3 15 1 -3
-1 7 5 3 4 5 73 5 15 1 -1
-110 5 6 1 6 6 60 7 15 1 -5
-0 7 5 4 6 1 35 3 15 0 0
-350 4 3 4 6 0 29 6 15 0 2
-2 5 3 3 5 1 25 6 15 0 2
-0 7 2 2 6 0 25 7 15 0 4
-7 4 2 4 5 0 70 6 15 0 1
-71 1 6 2 5 6 41 3 15 1 -3
-53 0 4 2 6 1 37 6 15 0 0
-0 0 6 1 6 6 39 5 15 1 -5
-2 6 3 4 6 0 35 4 15 0 2
-190 4 2 3 6 0 62 7 15 0 3
-31 0 3 2 6 1 30 7 15 0 2
-16 7 4 2 6 0 74 4 15 0 0
-22 7 3 3 4 5 47 3 15 0 1
-3 4 4 5 3 1 43 6 15 0 0
-0 6 5 3 6 5 64 2 15 1 -1
-0 7 4 3 5 2 75 4 15 1 0
-67 3 4 4 7 1 27 6 15 0 3
-40 7 4 4 6 0 21 3 15 0 2
-74 4 2 2 6 1 70 2 15 0 4
-3 6 5 2 6 5 67 3 15 1 -2
-140 7 6 4 5 6 82 5 15 0 -1
-14 0 2 2 6 0 40 6 15 0 4
-110 0 5 3 6 5 26 4 15 1 -1
-35 3 4 3 5 1 29 6 15 0 0
-0 1 4 5 6 2 28 6 15 0 1
-310 7 6 4 3 5 65 3 15 0 1
-900 2 6 5 3 1 25 3 15 0 2
-0 7 3 2 7 1 65 2 15 0 3
-11 4 6 2 6 5 38 5 15 1 -4
-0 2 4 3 5 5 72 7 15 1 0
-270 7 3 2 7 1 67 3 15 0 3
-51 7 3 1 7 0 74 3 15 0 2
-11 5 2 4 4 2 71 6 15 0 0
-2 0 4 6 4 0 47 3 15 0 -2
-20 7 5 4 6 1 69 1 15 0 0
-31 3 3 3 6 1 29 6 15 0 3
-2 0 6 2 5 6 34 3 15 1 -3
-5 3 4 3 6 0 43 4 15 0 1
-22 7 2 1 7 0 30 3 15 0 4
-0 7 5 5 4 0 76 2 15 0 1
-27 0 2 4 6 1 26 5 16 0 2
-7 7 4 3 6 2 76 5 16 0 1
-0 0 1 4 6 1 42 7 16 0 2
-0 4 3 1 4 5 33 3 16 1 -1
-0 1 6 2 5 5 25 3 16 1 -3
-2800 0 2 2 7 0 51 4 16 0 5
-0 4 4 2 5 4 57 3 16 1 -1
-22 1 6 1 5 6 21 4 16 1 -4
-9 7 5 1 4 5 79 7 16 1 -3
-0 1 6 2 5 5 35 5 16 1 -3
-9 5 4 2 5 4 57 6 16 1 -1
-0 1 4 4 6 5 32 6 16 0 2
-37 5 4 5 5 2 51 6 16 0 0
-23 0 5 2 4 6 62 7 16 1 -2
-0 4 5 1 6 5 48 4 16 1 -3
-0 7 7 1 6 6 39 3 16 1 -5
-0 5 3 2 6 5 26 6 16 1 2
-40 0 4 2 4 1 38 3 16 1 -2
-0 5 3 3 4 0 50 4 16 0 1
-9 2 5 5 6 4 33 3 16 1 1
-15 5 4 3 6 2 36 3 16 0 1
-640 5 4 4 6 0 24 6 16 0 2
-0 4 3 2 6 0 25 5 16 0 2
-0 7 6 5 3 0 62 3 16 0 2
-0 2 4 3 3 6 33 3 16 1 0
-0 7 6 2 5 6 53 6 16 1 -3
-22 7 6 2 5 6 68 6 16 1 -3
-22 7 5 4 6 1 68 3 16 0 0
-10 1 6 1 5 5 38 3 16 1 -4
-29 1 4 5 3 0 58 1 16 0 0
-170 7 4 2 6 5 34 6 16 1 0
-4 2 4 3 4 1 58 2 16 0 -1
-11 0 3 4 7 1 35 5 16 0 3
-31 3 7 2 6 6 42 6 16 1 -4
-0 7 4 4 6 0 54 3 16 0 2
-0 7 6 2 5 6 69 3 16 1 -3
-360 2 4 6 5 0 35 4 16 0 -1
-0 7 6 1 5 6 66 4 16 1 -4
-900 2 3 2 7 0 58 3 16 0 3
-51 5 2 4 7 1 41 3 16 0 3
-0 2 5 2 6 4 35 6 16 0 -2
-110 0 3 3 6 1 40 7 16 0 3
-1 7 4 7 2 0 53 1 16 0 -1
-8 5 6 2 6 5 67 6 16 1 -4
-5 5 4 4 6 0 32 5 16 0 2
-87 4 3 4 6 0 41 4 16 0 2
-3 1 2 1 6 1 43 7 16 0 3
-51 1 5 3 2 0 65 2 16 0 1
-350 7 3 3 7 0 60 5 16 0 4
-3 7 5 3 6 0 77 6 16 0 -1
-630 0 6 5 4 1 35 4 16 0 1
-180 4 6 7 5 1 48 4 16 0 0
-0 0 6 2 6 6 52 3 16 1 -4
-35 7 5 3 6 2 43 7 16 0 -1
-0 7 6 2 6 6 43 5 16 1 -4
-0 7 6 2 6 6 67 4 16 1 -4
-6 1 4 4 7 0 56 3 16 0 3
-7300 2 3 3 4 0 62 4 16 0 1
-2 1 7 7 5 0 62 3 16 0 2
-35 3 3 2 6 1 22 6 16 0 2
-0 0 2 2 6 1 21 5 16 0 4
-45 3 6 1 6 6 34 3 16 1 -5
-0 7 4 3 5 0 70 3 16 0 0
-5 1 3 2 6 2 50 3 16 0 2
-35 5 6 1 6 6 42 4 16 1 -5
-900 5 6 2 6 6 73 3 16 1 -4
-35 2 3 1 6 0 57 7 16 0 1
-0 7 6 1 5 6 40 6 16 1 -4
-0 2 6 1 6 6 58 6 16 1 -5
-11 7 4 6 2 1 62 3 16 0 0
-40 1 3 5 3 1 44 3 17 0 -2
-0 3 5 3 7 6 30 6 17 0 0
-23 7 3 3 7 0 76 5 17 0 4
-270 3 4 3 3 1 50 4 17 0 0
-9 1 6 2 5 5 41 4 17 1 -3
-0 6 6 3 6 6 77 3 17 1 -3
-0 3 6 3 5 6 35 6 17 1 -2
-0 7 4 3 4 3 39 4 17 0 -1
-2 0 4 2 4 4 72 3 17 1 -2
-0 2 6 2 5 6 42 7 17 1 -3
-16 7 5 2 6 5 85 2 17 1 -2
-7300 0 4 2 6 3 79 4 17 0 0
-0 5 2 3 6 0 39 4 17 0 3
-23 4 6 1 5 6 58 6 17 1 -4
-42 0 4 2 6 5 27 6 17 1 0
-2 4 4 3 5 1 43 5 17 0 0
-0 0 3 3 6 0 58 4 17 0 3
-42 7 4 3 6 4 28 7 17 1 1
-470 2 5 3 6 5 27 6 17 0 -1
-42 0 3 6 5 2 40 3 17 0 -1
-0 5 1 3 6 0 43 6 17 0 3
-40 7 5 4 6 5 64 3 17 1 0
-180 7 2 2 6 0 39 6 17 0 4
-110 7 4 2 6 4 76 4 17 1 0
-140 5 3 3 6 0 64 5 17 0 3
-0 4 4 6 3 2 28 4 17 0 -1
-0 2 4 2 6 1 45 3 17 0 0
-190 1 6 2 6 6 22 3 17 1 -4
-35 1 3 3 6 1 27 6 17 0 3
-45 0 1 2 7 0 31 4 17 0 5
-170 1 2 2 7 0 34 6 17 0 5
-0 4 2 3 7 0 30 4 17 0 4
-0 2 6 1 6 6 64 3 17 1 -5
-35 0 6 1 6 4 36 6 17 1 -5
-5 7 4 3 5 4 31 2 17 1 0
-350 1 4 3 4 5 37 3 17 1 -1
-4 0 6 4 2 1 48 3 17 0 2
-70 0 5 7 7 3 41 3 17 0 0
-8 2 5 2 6 5 25 4 17 1 -2
-12 5 4 2 6 6 82 3 17 1 0
-5 1 6 2 5 4 36 7 17 1 -3
-0 7 6 2 5 1 47 3 17 1 -3
-16 6 2 3 6 0 67 4 17 0 3
-0 0 4 6 2 5 24 4 17 1 0
-9 0 4 5 3 5 33 6 17 1 0
-14 7 4 1 5 1 59 4 17 1 -2
-22 7 7 1 6 6 71 4 17 1 -5
-0 7 6 2 5 6 36 3 17 1 -3
-1 3 3 3 5 0 41 3 17 0 2
-1600 5 6 2 6 6 38 6 17 1 -4
-7300 1 6 3 6 6 32 3 17 1 -3
-19 0 5 6 7 1 32 4 17 0 1
-9 6 5 4 6 0 75 6 17 0 0
-0 7 5 2 4 4 52 3 17 1 -2
-1600 5 2 3 6 0 29 7 17 0 3
-12 7 3 4 6 0 71 3 17 0 2
-1 0 6 2 5 2 33 6 17 0 -3
-0 3 1 2 7 2 67 7 17 0 5
-0 2 6 1 6 6 49 4 17 1 -5
-0 0 2 3 5 1 31 7 17 0 2
-9 7 3 4 6 1 53 2 17 0 2
-0 3 2 3 7 0 35 7 17 0 4
-170 7 6 2 6 6 49 7 18 1 -4
-3 7 6 4 4 0 74 3 18 0 0
-14 0 6 1 5 6 29 4 18 1 -4
-1 5 2 3 6 0 27 6 18 0 3
-23 5 4 4 6 5 70 4 18 0 2
-0 0 6 1 6 6 43 6 18 1 -5
-1 5 2 3 6 2 47 7 18 0 3
-0 4 4 4 6 0 42 7 18 0 2
-9 0 6 2 5 6 41 6 18 1 -3
-130 2 6 4 6 6 37 4 18 1 -2
-5 5 5 5 4 1 61 3 18 0 1
-4 7 4 2 6 0 84 4 18 0 0
-2800 7 5 3 7 0 46 6 18 0 0
-4 0 4 3 6 5 39 7 18 0 1
-6 7 2 3 6 0 53 3 18 0 3
-4 7 5 1 6 6 87 6 18 1 -3
-84 2 4 6 2 0 51 3 18 0 0
-0 0 5 2 5 4 37 5 18 1 -3
-9 1 4 3 5 4 37 6 18 1 0
-290 0 5 2 6 6 40 6 18 1 -2
-0 3 4 4 6 2 46 6 18 0 2
-9 7 1 4 1 3 44 3 18 1 -3
-0 2 4 3 6 1 37 3 18 0 1
-0 7 4 2 6 2 55 7 18 0 0
-22 0 5 2 5 1 40 6 18 1 -3
-0 5 3 2 6 1 42 7 18 0 2
-640 7 6 2 6 6 40 3 18 1 -4
-10 0 6 2 6 6 32 3 18 1 -4
-4 5 5 2 5 4 58 7 18 1 -3
-0 2 5 1 6 4 37 3 18 1 -3
-640 4 4 5 5 5 51 3 18 1 0
-110 5 3 5 4 5 44 5 18 0 -1
-0 2 4 5 2 0 23 2 18 0 1
-0 2 6 2 6 6 38 3 18 1 -4
-67 0 3 4 6 0 42 7 18 0 2
-520 7 4 2 5 4 60 4 18 1 -1
-0 3 4 3 6 1 34 4 18 0 1
-51 1 6 2 6 6 49 3 18 1 -4
-0 0 4 2 3 4 40 3 18 1 -1
-2800 7 2 2 7 0 23 4 18 0 5
-110 2 2 3 6 0 47 3 18 0 3
-7300 7 4 4 7 0 44 5 18 0 3
-7300 5 5 2 6 1 37 7 18 1 -2
-0 2 6 1 6 5 26 5 18 1 -5
-16 7 7 6 5 2 51 4 18 0 1
-140 4 4 4 6 0 69 3 18 0 2
-54 2 2 2 7 0 36 6 18 0 5
-2 2 2 3 6 2 28 4 18 0 3
-470 4 5 2 6 5 40 4 19 1 -2
-0 1 6 1 6 5 45 4 19 1 -5
-75 3 5 2 5 5 75 6 19 1 -3
-11 2 6 2 5 5 32 6 19 1 -3
-0 0 3 2 6 1 27 3 19 0 2
-2800 6 5 2 5 3 63 6 19 1 -3
-140 1 5 3 6 6 79 7 19 1 -1
-9 7 3 2 6 1 40 6 19 0 2
-7300 2 4 3 6 1 57 6 19 0 1
-45 3 3 4 5 1 44 6 19 0 1
-1600 7 5 2 5 6 78 6 19 1 -3
-9 7 4 5 5 5 58 7 19 0 0
-0 7 2 2 7 1 55 3 19 0 5
-130 4 3 4 6 2 25 6 19 0 2
-9 0 2 3 6 0 27 7 19 0 3
-3500 3 4 2 7 2 21 3 19 0 1
-0 3 6 2 6 5 37 4 19 1 -4
-0 0 7 3 4 5 31 3 19 1 -1
-35 7 2 4 6 0 85 7 19 0 2
-900 1 4 2 6 5 33 3 19 0 0
-27 7 3 7 4 3 63 2 19 1 -3
-900 7 4 4 6 1 51 3 19 0 2
-0 2 3 5 2 0 46 3 19 0 -1
-64 2 5 2 6 6 26 5 19 1 -2
-4 7 3 3 6 0 57 6 19 0 3
-0 3 4 2 6 1 48 3 19 1 0
-0 2 7 1 5 5 55 3 19 1 -4
-53 0 3 6 4 1 37 5 19 0 -2
-290 2 6 2 6 6 39 3 19 1 -4
-15 2 2 3 4 1 24 3 19 1 1
-0 0 6 3 6 6 30 6 19 1 -3
-35 0 3 4 6 1 36 7 19 0 2
-0 0 5 4 6 4 45 3 19 0 0
-470 1 5 2 6 2 29 3 19 0 -2
-16 7 6 3 6 5 41 4 19 1 -3
-40 1 5 3 5 4 28 5 19 1 -2
-290 7 2 2 7 0 35 4 19 0 5
-4 7 2 3 6 0 46 4 19 0 3
-1 7 1 2 7 1 55 4 19 0 5
-140 3 2 3 6 6 65 4 19 0 3
-110 1 4 2 6 1 22 4 19 0 0
-0 1 4 4 6 1 41 4 19 0 2
-900 1 2 3 6 2 43 7 19 0 3
-0 2 4 3 6 0 49 4 19 0 1
-0 4 4 2 5 4 35 7 19 1 -1
-51 7 3 3 5 1 80 3 19 0 2
-71 2 4 6 2 0 57 4 19 0 0
-900 4 3 3 6 0 48 3 19 0 3
-83 4 1 4 6 2 43 6 19 0 2
-360 3 4 4 7 0 34 4 19 0 3
-180 7 2 2 4 0 44 5 19 0 2
-1 3 6 1 6 4 49 6 20 1 -5
-22 7 5 2 7 2 43 7 20 0 -1
-1 0 4 3 5 6 39 4 20 1 0
-2 2 4 3 7 1 27 3 20 0 2
-34 4 6 2 6 6 30 6 20 1 -4
-33 2 6 2 6 4 33 6 20 1 -4
-10 1 2 3 7 0 32 5 20 0 4
-290 7 5 2 6 6 31 6 20 1 -2
-0 2 5 3 7 2 27 5 20 0 0
-76 3 2 2 6 0 36 4 20 0 4
-20 7 3 2 6 2 45 5 20 0 2
-0 5 4 6 5 2 51 3 20 0 -1
-0 0 6 2 3 5 36 4 20 1 -1
-0 7 6 4 6 4 47 7 20 1 -2
-470 4 4 4 6 1 42 6 20 0 2
-9 6 6 1 5 6 70 6 20 1 -4
-0 0 3 3 6 3 40 4 20 0 3
-0 7 2 5 7 0 38 3 20 0 2
-8 0 5 1 6 4 29 3 20 1 -3
-1 0 4 2 5 6 58 3 20 1 -1
-1 7 4 6 1 2 28 3 20 0 1
-7 1 6 3 6 5 30 4 20 1 -3
-0 3 4 3 6 2 48 5 20 0 1
-170 0 6 2 6 6 35 4 20 1 -4
-270 3 6 7 6 0 38 3 20 0 -1
-0 0 4 2 5 4 56 7 20 1 -1
-13 4 5 3 6 5 62 4 20 1 -1
-10 7 6 1 6 5 56 4 20 1 -5
-22 0 6 2 5 6 32 3 20 1 -3
-640 5 4 5 7 1 50 5 20 0 2
-900 3 3 4 6 1 45 6 20 0 2
-22 7 3 3 4 0 36 6 20 0 1
-62 1 6 2 6 6 49 4 20 1 -4
-110 2 7 1 6 6 31 6 20 1 -5
-84 4 2 3 6 2 33 7 20 0 3
-0 1 6 2 6 6 35 4 20 1 -4
-13 2 4 2 5 4 73 4 20 1 -1
-20 7 6 1 5 6 54 5 20 1 -4
-0 3 4 2 7 1 48 3 20 0 1
-16 3 6 2 6 4 65 4 20 1 -4
-6 7 5 6 5 6 46 4 20 0 -1
-12 0 2 2 6 0 45 7 20 0 4
-0 7 6 2 5 6 65 7 20 1 -3
-0 0 6 2 6 6 45 6 20 1 -4
-170 7 4 1 5 4 89 7 20 1 -2
-100 0 5 3 6 4 32 4 20 0 -1
-5 4 6 4 4 1 38 4 20 0 0
-3500 5 2 4 2 5 33 4 20 1 -2
-71 4 6 2 5 6 49 7 20 1 -3
-4 7 5 2 6 5 64 6 20 1 -2
-7300 5 5 4 7 1 55 4 20 0 1
-7 0 3 3 5 1 56 7 20 0 2
-290 4 4 5 3 5 30 6 20 0 0
-0 0 5 4 6 5 41 7 20 1 0
-0 1 6 2 5 6 39 5 20 1 -3
-520 7 4 4 6 4 34 3 20 0 2
-430 5 4 5 7 1 53 3 20 0 2
-9 2 3 3 6 2 40 6 20 0 3
-40 0 3 3 6 1 48 6 20 0 3
-2 7 6 5 5 5 59 4 20 0 0
-75 7 6 2 4 4 54 4 20 1 -2
-170 0 3 5 6 1 41 6 20 0 1
-170 1 2 3 6 0 41 6 20 0 3
-640 5 5 3 6 4 63 7 20 0 -1
-2800 1 7 1 6 4 39 3 20 1 -5
-9 3 7 2 5 4 46 3 20 0 -3
-150 7 4 3 6 0 55 3 20 0 1
-0 7 4 1 5 3 42 3 20 1 -2
-0 7 6 3 6 4 58 2 20 1 -3
-100 0 3 2 6 2 42 4 20 0 2
-33 7 4 3 4 2 40 6 20 1 -1
-310 7 5 2 5 1 56 6 20 1 -3
-53 1 4 5 2 2 37 4 20 0 1
-13 2 3 2 6 2 37 6 20 0 2
-290 6 5 1 5 5 49 6 20 1 -4
-310 7 6 1 6 6 63 4 20 1 -5
-0 7 6 2 5 6 30 7 20 1 -3
-54 7 4 2 6 4 62 5 20 1 0
-1600 0 4 3 6 1 30 6 20 0 1
-14 0 6 3 6 6 34 6 20 1 -3
-25 7 6 3 6 5 41 4 20 1 -3
-45 0 4 5 4 6 43 3 20 1 -1
-20 2 5 2 6 4 33 5 20 0 -2
-18 6 4 3 5 5 67 7 20 1 0
-740 7 5 1 6 0 55 5 20 1 -3
-9 6 2 2 6 0 33 5 20 0 4
-5 0 6 1 5 5 61 4 20 1 -4
-7300 7 4 1 6 4 45 3 20 0 -1
-81 7 4 3 7 0 34 3 20 0 2
-190 1 6 2 6 6 35 3 20 1 -4
-51 1 4 4 5 2 50 6 20 0 1
-7300 7 3 4 2 0 38 4 20 0 0
-350 0 6 2 6 5 56 3 20 1 -4
-27 2 4 1 6 5 31 3 20 1 -1
-33 5 6 1 4 5 40 7 20 1 -3
-50 4 3 2 6 0 44 3 20 0 2
-1 7 6 5 2 2 39 4 20 0 3
-11 1 4 3 6 1 45 3 20 0 1
-51 5 3 3 6 0 72 6 20 0 3
-160 7 2 3 5 1 44 7 20 0 2
-16 7 1 3 6 0 61 7 21 0 3
-110 6 6 2 6 6 34 7 21 1 -4
-110 4 5 2 5 5 61 6 21 1 -3
-13 6 3 3 7 1 67 4 21 0 4
-220 7 4 1 4 6 38 6 21 1 -3
-470 7 4 2 6 1 50 6 21 0 0
-22 6 6 1 6 6 62 4 21 1 -5
-9 2 6 3 6 5 36 6 21 1 -3
-22 3 6 3 5 4 50 6 21 1 -2
-190 2 4 2 7 1 30 6 21 0 1
-100 5 6 2 6 6 59 5 21 1 -4
-14 7 3 3 6 0 62 6 21 0 3
-0 7 4 3 6 3 40 4 21 0 1
-180 1 6 1 6 6 30 4 21 1 -5
-3 6 3 2 6 2 47 3 21 0 2
-51 2 5 2 6 1 41 6 21 0 -2
-9 2 6 1 6 6 35 7 21 1 -5
-0 7 5 2 6 6 45 4 21 1 -2
-0 2 4 2 6 4 34 6 21 1 0
-71 2 5 7 2 2 55 3 21 0 1
-290 1 5 3 6 2 37 4 21 0 -1
-45 3 5 2 4 4 61 7 21 1 -2
-0 3 4 5 4 1 62 2 21 0 -1
-26 1 5 2 6 6 54 6 21 1 -2
-87 3 2 3 6 1 33 6 21 0 3
-0 0 2 3 6 1 50 6 21 0 3
-630 0 3 4 7 2 37 3 21 0 3
-50 5 5 3 6 3 44 3 21 1 -1
-35 7 4 3 4 3 78 3 21 0 -1
-180 7 6 2 4 6 56 3 21 0 -2
-32 0 2 3 4 2 29 6 21 0 1
-0 7 3 2 5 4 52 6 21 0 1
-51 1 6 4 5 1 31 3 21 0 -1
-40 0 6 3 6 6 34 7 21 1 -3
-0 2 5 3 6 5 31 7 21 1 -1
-0 7 4 3 5 2 43 6 21 0 0
-0 1 4 4 3 5 31 3 21 1 1
-1 6 6 1 6 6 63 7 21 1 -5
-7 2 2 3 7 4 38 4 21 0 4
-0 2 6 2 6 6 31 5 21 1 -4
-71 2 2 1 7 0 64 3 21 0 4
-75 2 3 2 5 5 55 7 21 0 1
-55 1 2 2 6 0 41 3 21 0 4
-290 4 3 4 5 5 38 4 21 1 1
-88 4 6 3 6 5 28 6 21 1 -3
-0 7 4 3 5 5 42 5 21 1 0
-16 7 2 4 3 1 43 4 21 0 -1
-75 1 5 1 6 5 37 4 21 1 -3
-220 1 4 2 6 3 47 5 21 0 0
-3 5 5 1 6 5 52 7 21 1 -3
-130 0 5 2 6 5 32 4 21 1 -2
-0 5 4 4 3 2 29 3 21 0 1
-110 2 6 2 5 4 56 3 21 1 -3
-12 7 4 3 5 5 63 7 21 1 0
-180 3 3 3 6 1 35 5 21 0 3
-93 7 4 3 5 3 36 4 21 1 0
-170 7 4 2 7 0 75 5 21 0 1
-31 5 3 3 6 1 48 6 21 0 3
-62 4 7 2 6 6 36 5 21 1 -4
-30 4 4 3 6 2 34 6 21 0 1
-66 7 4 3 7 1 35 5 21 0 2
-3 3 5 2 5 6 50 4 21 1 -3
-18 3 5 2 5 6 39 7 21 1 -3
-350 5 5 4 6 5 70 7 21 1 0
-71 7 4 2 5 6 76 3 21 1 -1
-3500 5 5 2 5 5 35 6 21 1 -3
-0 0 3 4 3 3 53 7 21 1 -1
-360 6 5 2 6 4 46 6 21 1 -2
-81 2 5 2 5 4 34 4 21 1 -3
-350 5 4 4 6 5 69 4 21 0 2
-190 1 5 2 5 1 32 3 21 0 -3
-0 7 5 1 6 6 50 2 21 1 -3
-290 1 5 3 6 6 35 6 21 1 -1
-18 0 6 1 6 6 67 5 21 1 -5
-11 3 5 5 6 5 47 3 21 0 1
-2 2 6 3 5 4 50 6 21 1 -2
-570 0 6 2 6 4 32 3 21 1 -4
-310 3 5 4 6 2 58 5 21 0 0
-1 7 3 2 7 0 49 7 21 0 3
-0 2 6 3 6 1 43 4 21 1 -3
-35 1 5 2 6 5 24 6 21 1 -2
-22 7 5 3 4 2 58 7 21 0 -1
-2 1 2 2 5 0 43 4 21 0 3
-0 7 4 3 6 5 59 3 21 1 1
-0 3 6 1 6 6 40 5 21 1 -5
-310 0 5 2 7 0 35 4 21 0 -1
-470 5 2 3 5 1 48 4 21 0 2
-0 4 6 1 6 6 40 3 21 1 -5
-270 3 3 2 7 0 48 3 21 0 3
-110 0 2 4 6 0 47 7 21 0 2
-50 3 6 4 1 1 23 3 21 0 3
-0 0 6 1 6 6 38 3 21 1 -5
-3 7 6 2 6 6 81 7 21 1 -4
-31 5 3 3 6 1 48 6 21 0 3
-22 7 5 6 2 4 52 3 21 0 2
-83 2 4 1 6 3 24 6 21 1 -1
-9 0 4 2 6 1 21 5 21 0 0
-5 7 5 2 6 5 70 6 21 1 -2
-0 7 7 1 7 6 24 6 21 1 -6
-0 7 4 3 5 1 57 7 21 0 0
-0 6 3 5 6 4 37 6 21 0 1
-27 1 3 5 3 5 25 5 21 0 -2
-110 1 6 5 1 1 33 3 21 0 4
-0 7 4 6 3 0 45 3 22 0 -1
-0 3 5 2 7 5 42 6 22 0 -1
-350 3 3 3 6 2 47 6 22 0 3
-0 7 6 1 6 6 51 7 22 1 -5
-5 7 5 4 6 5 85 2 22 0 0
-15 4 3 3 6 2 32 7 22 0 3
-35 7 3 3 6 2 31 7 22 0 3
-0 2 4 3 6 2 23 6 22 0 1
-75 3 3 3 6 0 42 6 22 0 3
-0 5 6 2 5 5 55 6 22 1 -3
-16 7 6 2 6 6 45 6 22 1 -4
-0 1 6 2 5 6 35 7 22 1 -3
-0 0 2 4 6 0 45 6 22 0 2
-0 0 3 3 5 2 42 3 22 0 2
-4 1 6 2 6 5 37 4 22 1 -4
-62 0 4 4 4 5 38 3 22 1 0
-0 3 2 2 6 1 47 7 22 0 4
-4 7 4 2 6 2 32 6 22 0 0
-56 2 5 2 6 5 35 6 22 1 -2
-2 6 4 2 6 5 38 4 22 1 0
-0 0 4 4 4 3 40 3 22 0 0
-75 7 6 2 5 6 62 6 22 1 -3
-10 2 2 2 6 1 28 7 22 0 4
-0 6 6 2 5 6 59 5 22 1 -3
-0 2 1 2 6 0 25 6 22 0 4
-220 2 4 2 6 6 31 6 22 1 0
-0 1 7 2 6 6 45 4 22 1 -4
-75 0 5 2 7 5 42 6 22 0 -1
-0 3 2 2 5 1 56 7 22 0 3
-140 5 3 3 6 1 47 7 22 0 3
-290 1 6 2 5 5 38 6 22 1 -3
-350 7 4 3 7 2 47 6 22 0 2
-55 1 5 2 6 6 49 4 22 1 -2
-31 3 3 3 6 2 29 7 22 0 3
-17 7 2 2 6 0 57 6 22 0 4
-51 4 6 3 5 6 68 3 22 1 -2
-140 7 2 2 4 0 76 6 22 0 2
-9 4 6 2 6 5 66 6 22 1 -4
-0 7 5 1 6 4 59 4 22 1 -3
-640 7 5 3 6 4 37 7 22 0 -1
-32 2 5 2 6 6 38 6 22 1 -2
-5 7 6 2 6 5 47 7 22 1 -4
-8 1 5 2 4 5 36 7 22 1 -2
-18 0 5 4 6 0 45 7 22 0 0
-0 6 5 2 6 5 39 7 22 1 -2
-0 1 3 2 6 1 34 6 22 0 2
-0 3 6 6 4 0 49 4 22 0 2
-31 2 6 2 6 5 36 6 22 1 -4
-350 7 6 1 6 6 81 5 22 1 -5
-20 1 5 2 6 4 29 4 22 1 -2
-70 3 5 3 4 0 45 6 22 0 -1
-31 3 5 2 6 5 21 4 22 1 -2
-3 7 2 4 3 6 33 6 22 1 -1
-9 7 4 4 2 2 44 3 23 0 2
-59 1 2 2 6 4 52 7 23 0 4
-27 2 3 5 7 1 38 4 23 0 2
-51 4 2 3 6 2 44 5 23 0 3
-9 7 6 2 6 6 87 7 23 1 -4
-0 2 7 2 6 5 22 3 23 1 -4
-88 0 3 3 5 2 32 6 23 1 2
-67 0 4 5 6 4 69 3 23 0 1
-29 2 6 2 5 6 49 6 23 1 -3
-5 0 6 2 6 6 53 3 23 1 -4
-0 0 6 1 6 5 44 6 23 1 -5
-900 1 6 2 7 5 34 6 23 1 -3
-18 1 6 1 5 5 55 7 23 1 -4
-190 2 3 3 6 0 35 6 23 0 3
-2 7 4 5 5 3 55 3 23 0 0
-5 3 6 3 5 5 27 6 23 1 -2
-56 3 4 4 5 1 26 6 23 0 1
-75 7 4 2 6 5 54 6 23 0 0
-56 0 5 2 6 5 42 4 23 1 -2
-0 5 6 1 6 6 57 7 23 1 -5
-0 0 7 1 4 6 54 6 23 1 -3
-75 6 6 3 6 6 55 6 23 1 -3
-1600 7 5 3 6 6 50 7 23 1 -1
-15 0 5 5 6 1 57 7 23 0 1
-19 3 5 3 7 3 46 4 23 0 0
-16 7 6 2 6 6 53 6 23 1 -4
-42 2 3 3 5 0 32 7 23 0 2
-18 5 5 2 5 3 53 5 23 1 -3
-0 3 3 3 6 1 39 6 23 0 3
-310 1 5 2 5 4 47 6 23 1 -3
-1600 7 5 2 4 2 57 4 23 0 -2
-23 5 6 3 6 6 49 6 23 1 -3
-20 1 5 4 6 5 31 5 23 0 0
-51 5 5 3 5 5 43 6 23 1 -2
-0 2 5 2 5 4 44 6 23 1 -3
-0 4 4 3 6 0 39 6 23 0 1
-0 2 6 1 6 5 49 4 23 1 -5
-18 7 5 4 6 4 72 6 23 1 0
-7300 7 5 2 6 5 50 6 23 1 -2
-110 1 5 2 6 6 28 4 23 1 -2
-0 0 5 2 7 3 48 7 23 1 -1
-3500 1 3 4 7 1 32 6 23 0 3
-720 7 5 5 5 1 63 4 23 0 0
-9 4 4 5 6 5 36 4 23 1 1
-47 7 6 3 6 6 36 6 23 1 -3
-350 7 3 2 7 2 53 3 23 0 3
-0 5 2 2 6 2 44 7 23 0 4
-0 0 4 2 6 6 41 7 24 1 0
-83 0 2 3 6 1 56 7 24 0 3
-1 4 4 4 6 2 63 7 24 0 2
-190 7 2 4 6 0 52 6 24 0 2
-0 7 3 3 7 2 43 7 24 0 4
-12 7 4 3 6 2 40 3 24 0 1
-9 5 5 1 7 4 69 4 24 1 -2
-23 7 2 2 6 0 49 7 24 0 4
-9 1 3 3 6 2 65 7 24 0 3
-18 5 6 1 6 5 53 7 24 1 -5
-0 5 5 3 5 6 50 4 24 1 -2
-12 3 2 4 6 0 27 5 24 0 2
-0 6 5 3 5 5 44 6 24 1 -2
-170 2 2 3 5 0 54 7 24 0 2
-0 7 4 2 6 4 33 5 24 1 0
-9 0 4 4 6 3 48 7 24 0 2
-23 3 5 2 6 5 54 5 24 1 -2
-0 0 6 2 5 6 56 3 24 1 -3
-9 1 2 4 7 2 34 7 24 0 3
-290 7 6 4 7 6 41 6 24 0 -1
-1 0 5 1 5 6 40 6 24 1 -4
-350 1 7 2 6 6 55 6 24 1 -4
-20 0 4 3 5 5 38 6 24 1 0
-0 3 6 2 6 6 40 6 24 1 -4
-23 1 6 1 6 6 46 4 24 1 -5
-150 4 3 3 4 0 26 6 24 0 1
-31 0 5 2 7 3 49 6 24 0 -1
-0 7 4 1 5 6 51 5 24 1 -2
-9 2 5 2 6 4 46 6 24 0 -2
-47 0 3 4 6 2 40 7 24 0 2
-900 0 3 4 7 2 30 5 24 0 3
-83 3 2 3 6 2 45 5 24 0 3
-18 7 5 4 6 4 52 7 24 1 0
-0 0 6 1 5 6 36 6 24 1 -4
-20 0 4 3 5 3 49 6 24 0 0
-24 7 3 4 5 1 38 7 24 0 1
-18 0 2 4 6 1 51 7 24 0 2
-9 3 3 2 5 1 47 6 24 0 1
-0 1 6 1 5 6 52 7 24 1 -4
-9 0 6 2 6 6 33 6 24 1 -4
-0 4 4 2 6 6 50 4 24 1 0
-18 7 6 2 5 4 48 7 24 1 -3
-19 3 2 2 6 0 36 6 24 0 4
-31 3 2 3 6 1 35 7 24 0 3
-3500 7 7 3 5 4 34 7 24 0 -2
-0 7 2 4 5 2 53 6 24 0 1
-33 0 4 3 6 2 33 7 24 0 1
-0 1 6 3 6 6 52 6 24 1 -3
-18 3 4 3 6 4 44 7 24 0 1
-0 0 3 4 4 0 48 6 24 0 0
-31 3 5 2 6 5 20 4 24 1 -2
-0 5 3 2 4 6 45 6 24 1 0
-59 7 4 2 6 2 70 3 24 0 0
-0 0 3 3 4 2 39 3 24 0 1
-7300 7 3 3 5 1 40 7 24 1 2
-75 4 5 2 7 5 62 6 24 1 -1
-0 7 5 2 6 4 46 6 24 1 -2
-27 7 4 4 7 2 46 3 24 0 3
-1600 7 4 2 5 6 56 7 24 1 -1
-0 7 6 3 6 6 55 7 24 1 -3
-0 7 6 2 6 6 41 4 24 1 -4
-7300 1 2 3 6 0 43 7 24 0 3
-16 7 7 1 7 6 34 3 24 1 -6
-0 7 7 1 6 4 73 6 24 1 -5
-0 7 5 2 6 6 50 6 24 1 -2
-0 3 6 2 7 5 43 6 24 1 -3
-0 6 6 2 5 6 46 7 24 1 -3
-18 7 4 2 6 3 61 7 24 1 0
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/R_wls.s b/statsmodels/scikits/statsmodels/datasets/ccard/R_wls.s
deleted file mode 100644
index 22e2542..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/R_wls.s
+++ /dev/null
@@ -1,13 +0,0 @@
-d <- read.csv('./ccard.csv')
-attach(d)
-
-
-m1 <- lm(AVGEXP ~ AGE + INCOME + INCOMESQ + OWNRENT, weights=1/INCOMESQ)
-results <- summary(m1)
-
-m2 <- lm(AVGEXP ~ AGE + INCOME + INCOMESQ + OWNRENT - 1, weights=1/INCOMESQ)
-results2 <- summary(m2)
-
-print('m1 has a constant, which theoretically should be INCOME')
-print('m2 include -1 for no constant')
-print('See ccard/R_wls.s')
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/__init__.py b/statsmodels/scikits/statsmodels/datasets/ccard/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/ccard.csv b/statsmodels/scikits/statsmodels/datasets/ccard/ccard.csv
deleted file mode 100644
index ad7592e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/ccard.csv
+++ /dev/null
@@ -1,73 +0,0 @@
-"AVGEXP","AGE","INCOME","INCOMESQ","OWNRENT"
-124.98,38,4.52,20.4304,1
-9.85,33,2.42,5.8564,0
-15,34,4.5,20.25,1
-137.87,31,2.54,6.4516,0
-546.5,32,9.79,95.8441,1
-92,23,2.5,6.25,0
-40.83,28,3.96,15.6816,0
-150.79,29,2.37,5.6169,1
-777.82,37,3.8,14.44,1
-52.58,28,3.2,10.24,0
-256.66,31,3.95,15.6025,1
-78.87,29,2.45,6.0025,1
-42.62,35,1.91,3.6481,1
-335.43,41,3.2,10.24,1
-248.72,40,4,16,1
-548.03,40,10,100,1
-43.34,35,2.35,5.5225,1
-218.52,34,2,4,1
-170.64,36,4,16,0
-37.58,43,5.14,26.4196,1
-502.2,30,4.51,20.3401,0
-73.18,22,1.5,2.25,0
-1532.77,40,5.5,30.25,1
-42.69,22,2.03,4.1209,0
-417.83,29,3.2,10.24,0
-552.72,21,2.47,6.1009,1
-222.54,24,3,9,0
-541.3,43,3.54,12.5316,1
-568.77,37,5.7,32.49,1
-344.47,27,3.5,12.25,0
-405.35,28,4.6,21.16,1
-310.94,26,3,9,1
-53.65,23,2.59,6.7081,0
-63.92,30,1.51,2.2801,0
-165.85,30,1.85,3.4225,0
-9.58,38,2.6,6.76,0
-319.49,36,2,4,0
-83.08,26,2.35,5.5225,0
-644.83,28,7,49,1
-93.2,24,2,4,0
-105.04,21,1.7,2.89,0
-34.13,24,2.8,7.84,0
-41.19,26,2.4,5.76,0
-169.89,33,3,9,0
-1898.03,34,4.8,23.04,0
-810.39,33,3.18,10.1124,0
-32.78,21,1.5,2.25,0
-95.8,25,3,9,0
-27.78,27,2.28,5.1984,0
-215.07,26,2.8,7.84,0
-79.51,22,2.7,7.29,0
-306.03,41,6,36,0
-104.54,42,3.9,15.21,0
-642.47,25,3.07,9.4249,0
-308.05,31,2.46,6.0516,1
-186.35,27,2,4,0
-56.15,33,3.25,10.5625,0
-129.37,37,2.72,7.3984,0
-93.11,27,2.2,4.84,0
-292.66,24,3.75,14.0625,0
-98.46,25,2.88,8.2944,0
-258.55,36,3.05,9.3025,0
-101.68,33,2.55,6.5025,0
-65.25,55,2.64,6.9696,1
-108.61,20,1.65,2.7225,0
-49.56,29,2.4,5.76,0
-235.57,41,7.24,52.4176,1
-68.38,43,2.4,5.76,0
-474.15,33,6,36,1
-234.05,25,3.6,12.96,0
-451.2,26,5,25,1
-251.52,46,5.5,30.25,1
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/data.py b/statsmodels/scikits/statsmodels/datasets/ccard/data.py
deleted file mode 100644
index 415f6a5..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/data.py
+++ /dev/null
@@ -1,57 +0,0 @@
-"""Bill Greene's credit scoring data."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission of the original author, who
-retains all rights."""
-TITLE = __doc__
-SOURCE = """
-William Greene's `Econometric Analysis`
-
-More information can be found at the web site of the text:
-http://pages.stern.nyu.edu/~wgreene/Text/econometricanalysis.htm
-"""
-
-DESCRSHORT = """William Greene's credit scoring data"""
-
-DESCRLONG = """More information on this data can be found on the
-homepage for Greene's `Econometric Analysis`. See source.
-"""
-
-NOTE = """
-Number of observations - 72
-Number of variables - 5
-Variable name definitions - See Source for more information on the variables.
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """Load the credit card data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """Load the credit card data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/ccard.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/src/ccard.csv b/statsmodels/scikits/statsmodels/datasets/ccard/src/ccard.csv
deleted file mode 100644
index 733cb10..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/src/ccard.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-"MDR","Acc","Age","Income","Avgexp","Ownrent","Selfempl"
-0,1,38,4.52,124.98,1,0
-0,1,33,2.42,9.85,0,0
-0,1,34,4.5,15,1,0
-0,1,31,2.54,137.87,0,0
-0,1,32,9.79,546.5,1,0
-0,1,23,2.5,92,0,0
-0,1,28,3.96,40.83,0,0
-0,1,29,2.37,150.79,1,0
-0,1,37,3.8,777.82,1,0
-0,1,28,3.2,52.58,0,0
-0,1,31,3.95,256.66,1,0
-0,0,42,1.98,0,1,0
-0,0,30,1.73,0,1,0
-0,1,29,2.45,78.87,1,0
-0,1,35,1.91,42.62,1,0
-0,1,41,3.2,335.43,1,0
-0,1,40,4,248.72,1,0
-7,0,30,3,0,1,0
-0,1,40,10,548.03,1,1
-3,0,46,3.4,0,0,0
-0,1,35,2.35,43.34,1,0
-1,0,25,1.88,0,0,0
-0,1,34,2,218.52,1,0
-1,1,36,4,170.64,0,0
-0,1,43,5.14,37.58,1,0
-0,1,30,4.51,502.2,0,0
-0,0,22,3.84,0,0,1
-0,1,22,1.5,73.18,0,0
-0,0,34,2.5,0,1,0
-0,1,40,5.5,1532.77,1,0
-0,1,22,2.03,42.69,0,0
-1,1,29,3.2,417.83,0,0
-1,0,25,3.15,0,1,0
-0,1,21,2.47,552.72,1,0
-0,1,24,3,222.54,0,0
-0,1,43,3.54,541.3,1,0
-0,0,43,2.28,0,0,0
-0,1,37,5.7,568.77,1,0
-0,1,27,3.5,344.47,0,0
-0,1,28,4.6,405.35,1,0
-0,1,26,3,310.94,1,0
-0,1,23,2.59,53.65,0,0
-0,1,30,1.51,63.92,0,0
-0,1,30,1.85,165.85,0,0
-0,1,38,2.6,9.58,0,0
-0,0,28,1.8,0,0,1
-0,1,36,2,319.49,0,0
-0,0,38,3.26,0,0,0
-0,1,26,2.35,83.08,0,0
-0,1,28,7,644.83,1,0
-0,0,50,3.6,0,0,0
-0,1,24,2,93.2,0,0
-0,1,21,1.7,105.04,0,0
-0,1,24,2.8,34.13,0,0
-0,1,26,2.4,41.19,0,0
-1,1,33,3,169.89,0,0
-0,1,34,4.8,1898.03,0,0
-0,1,33,3.18,810.39,0,0
-0,0,45,1.8,0,0,0
-0,1,21,1.5,32.78,0,0
-2,1,25,3,95.8,0,0
-0,1,27,2.28,27.78,0,0
-0,1,26,2.8,215.07,0,0
-0,1,22,2.7,79.51,0,0
-3,0,27,4.9,0,1,0
-0,0,26,2.5,0,0,1
-0,1,41,6,306.03,0,1
-0,1,42,3.9,104.54,0,0
-0,0,22,5.1,0,0,0
-0,1,25,3.07,642.47,0,0
-0,1,31,2.46,308.05,1,0
-0,1,27,2,186.35,0,0
-0,1,33,3.25,56.15,0,0
-0,1,37,2.72,129.37,0,0
-0,1,27,2.2,93.11,0,0
-1,0,24,4.1,0,0,0
-0,1,24,3.75,292.66,0,0
-0,1,25,2.88,98.46,0,0
-0,1,36,3.05,258.55,0,0
-0,1,33,2.55,101.68,0,0
-0,0,33,4,0,0,0
-1,1,55,2.64,65.25,1,0
-0,1,20,1.65,108.61,0,0
-0,1,29,2.4,49.56,0,0
-3,0,40,3.71,0,0,0
-0,1,41,7.24,235.57,1,0
-0,0,41,4.39,0,1,0
-0,0,35,3.3,0,1,0
-0,0,24,2.3,0,0,0
-1,0,54,4.18,0,0,0
-2,0,34,2.49,0,0,0
-0,0,45,2.81,0,1,0
-0,1,43,2.4,68.38,0,0
-4,0,35,1.5,0,0,0
-2,0,36,8.4,0,0,0
-0,1,22,1.56,0,0,0
-1,1,33,6,474.15,1,0
-1,1,25,3.6,234.05,0,0
-0,1,26,5,451.2,1,0
-0,1,46,5.5,251.52,1,0
diff --git a/statsmodels/scikits/statsmodels/datasets/ccard/src/names.txt b/statsmodels/scikits/statsmodels/datasets/ccard/src/names.txt
deleted file mode 100644
index 9990e34..0000000
--- a/statsmodels/scikits/statsmodels/datasets/ccard/src/names.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-MDR = Number of derogator reports
-
-Acc = Credit card application accpeted (1=yes)
-
-Age = Age in years + 12ths of a year
-
-Income = Income divided by 10,000
-
-Avgexp = Avg. monthly credit card expenditure
-
-Ownrent = Indiviual owns(1) or rents(0) home
-
-Selfempl = (1=yes, 0=no)
-
diff --git a/statsmodels/scikits/statsmodels/datasets/committee/R_committee.s b/statsmodels/scikits/statsmodels/datasets/committee/R_committee.s
deleted file mode 100644
index 2784379..0000000
--- a/statsmodels/scikits/statsmodels/datasets/committee/R_committee.s
+++ /dev/null
@@ -1,11 +0,0 @@
-### SETUP ###
-d <- read.table("./committee.csv",sep=",", header=T)
-attach(d)
-
-LNSTAFF <- log(STAFF)
-SUBS.LNSTAFF <- SUBS*LNSTAFF
-library(MASS)
-#m1 <- glm.nb(BILLS104 ~ SIZE + SUBS + LNSTAFF + PRESTIGE + BILLS103 + SUBS.LNSTAFF)
-m1 <- glm(BILLS104 ~ SIZE + SUBS + LNSTAFF + PRESTIGE + BILLS103 + SUBS.LNSTAFF, family=negative.binomial(1)) # Disp should be 1 by default
-
-results <- summary.glm(m1)
diff --git a/statsmodels/scikits/statsmodels/datasets/committee/__init__.py b/statsmodels/scikits/statsmodels/datasets/committee/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/committee/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/committee/committee.csv b/statsmodels/scikits/statsmodels/datasets/committee/committee.csv
deleted file mode 100644
index 0027b56..0000000
--- a/statsmodels/scikits/statsmodels/datasets/committee/committee.csv
+++ /dev/null
@@ -1,21 +0,0 @@
-"COMMITTEE","BILLS104","SIZE","SUBS","STAFF","PRESTIGE","BILLS103"
-"Appropriations",6,58,13,109,1,9
-"Budget",23,42,0,39,1,101
-"Rules",44,13,2,25,1,54
-"Ways_and_Means",355,39,5,23,1,542
-"Banking",125,51,5,61,0,101
-"Economic_Educ_Oppor",131,43,5,69,0,158
-"Commerce",271,49,4,79,0,196
-"International_Relations",63,44,3,68,0,40
-"Government_Reform",149,51,7,99,0,72
-"Judiciary",253,35,5,56,0,168
-"Agriculture",81,49,5,46,0,60
-"National_Security",89,55,7,48,0,75
-"Resources",142,44,5,58,0,98
-"TransInfrastructure",155,61,6,74,0,69
-"Science",27,50,4,58,0,25
-"Small_Business",8,43,4,29,0,9
-"Veterans_Affairs",28,33,3,36,0,41
-"House_Oversight",68,12,0,24,0,233
-"Stds_of_Conduct",1,10,0,9,0,0
-"Intelligence",4,16,2,24,0,2
diff --git a/statsmodels/scikits/statsmodels/datasets/committee/data.py b/statsmodels/scikits/statsmodels/datasets/committee/data.py
deleted file mode 100644
index fbb55a7..0000000
--- a/statsmodels/scikits/statsmodels/datasets/committee/data.py
+++ /dev/null
@@ -1,71 +0,0 @@
-"""First 100 days of the US House of Representatives 1995"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission from the original author,
-who retains all rights."""
-TITLE = __doc__
-SOURCE = """
-Jeff Gill's `Generalized Linear Models: A Unifited Approach`
-
-http://jgill.wustl.edu/research/books.html
-"""
-
-DESCRSHORT = """Number of bill assignments in the 104th House in 1995"""
-
-DESCRLONG = """The example in Gill, seeks to explain the number of bill
-assignments in the first 100 days of the US' 104th House of Representatives.
-The response variable is the number of bill assignments in the first 100 days
-over 20 Committees. The explanatory variables in the example are the number of
-assignments in the first 100 days of the 103rd House, the number of members on
-the committee, the number of subcommittees, the log of the number of staff
-assigned to the committee, a dummy variable indicating whether
-the committee is a high prestige committee, and an interaction term between
-the number of subcommittees and the log of the staff size.
-
-The data returned by load are not cleaned to represent the above example.
-"""
-
-NOTE = """Number of Observations - 20
-
-Number of Variables - 6
-
-Variable name definitions::
-
- BILLS104 - Number of bill assignments in the first 100 days of the 104th
- House of Representatives.
- SIZE - Number of members on the committee.
- SUBS - Number of subcommittees.
- STAFF - Number of staff members assigned to the committee.
- PRESTIGE - PRESTIGE == 1 is a high prestige committee.
- BILLS103 - Number of bill assignments in the first 100 days of the 103rd
- House of Representatives.
-
-Committee names are included as a variable in the data file though not
-returned by load.
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """Load the committee data and returns a data class.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/committee.csv', 'rb'), delimiter=",",
- names=True, dtype=float, usecols=(1,2,3,4,5,6))
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/committee/src/committee.dat b/statsmodels/scikits/statsmodels/datasets/committee/src/committee.dat
deleted file mode 100644
index 3f6371a..0000000
--- a/statsmodels/scikits/statsmodels/datasets/committee/src/committee.dat
+++ /dev/null
@@ -1,21 +0,0 @@
- SIZE SUBS STAFF PRESTIGE POLICY CONSTIT SERVICE BILLS103 BILLS104
-Appropriations 58 13 109 1 0 0 0 9 6
-Budget 42 0 39 1 0 0 0 101 23
-Rules 13 2 25 1 0 0 0 54 44
-Ways_and_Means 39 5 23 1 0 0 0 542 355
-Banking 51 5 61 0 1 0 0 101 125
-Economic_Educ_Oppor 43 5 69 0 1 0 0 158 131
-Commerce 49 4 79 0 1 0 0 196 271
-International_Relations 44 3 68 0 1 0 0 40 63
-Government_Reform 51 7 99 0 1 0 0 72 149
-Judiciary 35 5 56 0 1 0 0 168 253
-Agriculture 49 5 46 0 0 1 0 60 81
-National_Security 55 7 48 0 0 1 0 75 89
-Resources 44 5 58 0 0 1 0 98 142
-TransInfrastructure 61 6 74 0 0 1 0 69 155
-Science 50 4 58 0 0 1 0 25 27
-Small_Business 43 4 29 0 0 1 0 9 8
-Veterans_Affairs 33 3 36 0 0 1 0 41 28
-House_Oversight 12 0 24 0 0 0 1 233 68
-Stds_of_Conduct 10 0 9 0 0 0 1 0 1
-Intelligence 16 2 24 0 0 0 1 2 4
diff --git a/statsmodels/scikits/statsmodels/datasets/copper/__init__.py b/statsmodels/scikits/statsmodels/datasets/copper/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/copper/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/copper/copper.csv b/statsmodels/scikits/statsmodels/datasets/copper/copper.csv
deleted file mode 100644
index aee51b4..0000000
--- a/statsmodels/scikits/statsmodels/datasets/copper/copper.csv
+++ /dev/null
@@ -1,26 +0,0 @@
-"YEAR","WORLDCONSUMPTION","COPPERPRICE","INCOMEINDEX","ALUMPRICE","INVENTORYINDEX","TIME"
-1951,3173,26.56,0.7,19.76,0.98,1
-1952,3281.1,27.31,0.71,20.78,1.04,2
-1953,3135.7,32.95,0.72,22.55,1.05,3
-1954,3359.1,33.9,0.7,23.06,0.97,4
-1955,3755.1,42.7,0.74,24.93,1.02,5
-1956,3875.9,46.11,0.74,26.5,1.04,6
-1957,3905.7,31.7,0.74,27.24,0.98,7
-1958,3957.6,27.23,0.72,26.21,0.98,8
-1959,4279.1,32.89,0.75,26.09,1.03,9
-1960,4627.9,33.78,0.77,27.4,1.03,10
-1961,4910.2,31.66,0.76,26.94,0.98,11
-1962,4908.4,32.28,0.79,25.18,1,12
-1963,5327.9,32.38,0.83,23.94,0.97,13
-1964,5878.4,33.75,0.85,25.07,1.03,14
-1965,6075.2,36.25,0.89,25.37,1.08,15
-1966,6312.7,36.24,0.93,24.55,1.05,16
-1967,6056.8,38.23,0.95,24.98,1.03,17
-1968,6375.9,40.83,0.99,24.96,1.03,18
-1969,6974.3,44.62,1,25.52,0.99,19
-1970,7101.6,52.27,1,26.01,1,20
-1971,7071.7,45.16,1.02,25.46,0.96,21
-1972,7754.8,42.5,1.07,22.17,0.97,22
-1973,8480.3,43.7,1.12,18.56,0.98,23
-1974,8105.2,47.88,1.1,21.32,1.01,24
-1975,7157.2,36.33,1.07,22.75,0.94,25
diff --git a/statsmodels/scikits/statsmodels/datasets/copper/data.py b/statsmodels/scikits/statsmodels/datasets/copper/data.py
deleted file mode 100644
index 54e9157..0000000
--- a/statsmodels/scikits/statsmodels/datasets/copper/data.py
+++ /dev/null
@@ -1,74 +0,0 @@
-"""World Copper Prices 1951-1975 dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission from the original author,
-who retains all rights."""
-TITLE = "World Copper Market 1951-1975 Dataset"
-SOURCE = """
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-"""
-
-DESCRSHORT = """World Copper Market 1951-1975"""
-
-DESCRLONG = """This data describes the world copper market from 1951 through 1975. In an
-example, in Gill, the outcome variable (of a 2 stage estimation) is the world
-consumption of copper for the 25 years. The explanatory variables are the
-world consumption of copper in 1000 metric tons, the constant dollar adjusted
-price of copper, the price of a substitute, aluminum, an index of real per
-capita income base 1970, an annual measure of manufacturer inventory change,
-and a time trend.
-"""
-
-NOTE = """
-Number of Observations - 25
-
-Number of Variables - 6
-
-Variable name definitions::
-
- WORLDCONSUMPTION - World consumption of copper (in 1000 metric tons)
- COPPERPRICE - Constant dollar adjusted price of copper
- INCOMEINDEX - An index of real per capita income (base 1970)
- ALUMPRICE - The price of aluminum
- INVENTORYINDEX - A measure of annual manufacturer inventory trend
- TIME - A time trend
-
-Years are included in the data file though not returned by load.
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the copper data and returns a Dataset class.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/copper.csv', 'rb'), delimiter=",",
- names=True, dtype=float, usecols=(1,2,3,4,5,6))
- return data
-
-def load_pandas():
- """
- Load the copper data and returns a Dataset class.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
diff --git a/statsmodels/scikits/statsmodels/datasets/copper/src/copper.dat b/statsmodels/scikits/statsmodels/datasets/copper/src/copper.dat
deleted file mode 100644
index 9f878b6..0000000
--- a/statsmodels/scikits/statsmodels/datasets/copper/src/copper.dat
+++ /dev/null
@@ -1,26 +0,0 @@
-YEAR WORLDCONSUMPTION COPPERPRICE INCOMEINDEX ALUMPRICE INVENTORYINDEX TIME
-1951 3173.0 26.56 0.70 19.76 0.97679 1
-1952 3281.1 27.31 0.71 20.78 1.03937 2
-1953 3135.7 32.95 0.72 22.55 1.05153 3
-1954 3359.1 33.90 0.70 23.06 0.97312 4
-1955 3755.1 42.70 0.74 24.93 1.02349 5
-1956 3875.9 46.11 0.74 26.50 1.04135 6
-1957 3905.7 31.70 0.74 27.24 0.97686 7
-1958 3957.6 27.23 0.72 26.21 0.98069 8
-1959 4279.1 32.89 0.75 26.09 1.02888 9
-1960 4627.9 33.78 0.77 27.40 1.03392 10
-1961 4910.2 31.66 0.76 26.94 0.97922 11
-1962 4908.4 32.28 0.79 25.18 0.99679 12
-1963 5327.9 32.38 0.83 23.94 0.96630 13
-1964 5878.4 33.75 0.85 25.07 1.02915 14
-1965 6075.2 36.25 0.89 25.37 1.07950 15
-1966 6312.7 36.24 0.93 24.55 1.05073 16
-1967 6056.8 38.23 0.95 24.98 1.02788 17
-1968 6375.9 40.83 0.99 24.96 1.02799 18
-1969 6974.3 44.62 1.00 25.52 0.99151 19
-1970 7101.6 52.27 1.00 26.01 1.00191 20
-1971 7071.7 45.16 1.02 25.46 0.95644 21
-1972 7754.8 42.50 1.07 22.17 0.96947 22
-1973 8480.3 43.70 1.12 18.56 0.98220 23
-1974 8105.2 47.88 1.10 21.32 1.00793 24
-1975 7157.2 36.33 1.07 22.75 0.93810 25
diff --git a/statsmodels/scikits/statsmodels/datasets/cpunish/R_cpunish.s b/statsmodels/scikits/statsmodels/datasets/cpunish/R_cpunish.s
deleted file mode 100644
index b04d122..0000000
--- a/statsmodels/scikits/statsmodels/datasets/cpunish/R_cpunish.s
+++ /dev/null
@@ -1,11 +0,0 @@
-### SETUP ###
-d <- read.table("./cpunish.csv",sep=",", header=T)
-attach(d)
-LN_VC100k96 = log(VC100k96)
-### MODEL ###
-m1 <- glm(EXECUTIONS ~ INCOME + PERPOVERTY + PERBLACK + LN_VC100k96 + SOUTH + DEGREE,
- family=poisson)
-results <- summary.glm(m1)
-results
-results['coefficients']
-
diff --git a/statsmodels/scikits/statsmodels/datasets/cpunish/__init__.py b/statsmodels/scikits/statsmodels/datasets/cpunish/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/cpunish/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/cpunish/cpunish.csv b/statsmodels/scikits/statsmodels/datasets/cpunish/cpunish.csv
deleted file mode 100644
index 70c2a97..0000000
--- a/statsmodels/scikits/statsmodels/datasets/cpunish/cpunish.csv
+++ /dev/null
@@ -1,18 +0,0 @@
-"STATE","EXECUTIONS","INCOME","PERPOVERTY","PERBLACK","VC100k96","SOUTH","DEGREE"
-"Texas",37,34453,16.7,12.2,644,1,0.16
-"Virginia",9,41534,12.5,20,351,1,0.27
-"Missouri",6,35802,10.6,11.2,591,0,0.21
-"Arkansas",4,26954,18.4,16.1,524,1,0.16
-"Alabama",3,31468,14.8,25.9,565,1,0.19
-"Arizona",2,32552,18.8,3.5,632,0,0.25
-"Illinois",2,40873,11.6,15.3,886,0,0.25
-"South_Carolina",2,34861,13.1,30.1,997,1,0.21
-"Colorado",1,42562,9.4,4.3,405,0,0.31
-"Florida",1,31900,14.3,15.4,1051,1,0.24
-"Indiana",1,37421,8.2,8.2,537,0,0.19
-"Kentucky",1,33305,16.4,7.2,321,0,0.16
-"Louisiana",1,32108,18.4,32.1,929,1,0.18
-"Maryland",1,45844,9.3,27.4,931,0,0.29
-"Nebraska",1,34743,10,4,435,0,0.24
-"Oklahoma",1,29709,15.2,7.7,597,0,0.21
-"Oregon",1,36777,11.7,1.8,463,0,0.25
diff --git a/statsmodels/scikits/statsmodels/datasets/cpunish/data.py b/statsmodels/scikits/statsmodels/datasets/cpunish/data.py
deleted file mode 100644
index 4b28371..0000000
--- a/statsmodels/scikits/statsmodels/datasets/cpunish/data.py
+++ /dev/null
@@ -1,78 +0,0 @@
-"""US Capital Punishment dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission from the original author,
-who retains all rights."""
-TITLE = __doc__
-SOURCE = """
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-"""
-
-DESCRSHORT = """Number of state executions in 1997"""
-
-DESCRLONG = """This data describes the number of times capital punishment is implemented
-at the state level for the year 1997. The outcome variable is the number of
-executions. There were executions in 17 states.
-Included in the data are explanatory variables for median per capita income
-in dollars, the percent of the population classified as living in poverty,
-the percent of Black citizens in the population, the rate of violent
-crimes per 100,000 residents for 1996, a dummy variable indicating
-whether the state is in the South, and (an estimate of) the proportion
-of the population with a college degree of some kind.
-"""
-
-NOTE = """
-Number of Observations - 17
-
-Number of Variables - 7
-
-Variable name definitions::
-
- EXECUTIONS - Executions in 1996
- INCOME - Median per capita income in 1996 dollars
- PERPOVERTY - Percent of the population classified as living in poverty
- PERBLACK - Percent of black citizens in the population
- VC100k96 - Rate of violent crimes per 100,00 residents for 1996
- SOUTH - SOUTH == 1 indicates a state in the South
- DEGREE - An esimate of the proportion of the state population with a
- college degree of some kind
-
-State names are included in the data file, though not returned by load.
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the cpunish data and return a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Load the cpunish data and return a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/cpunish.csv', 'rb'), delimiter=",",
- names=True, dtype=float, usecols=(1,2,3,4,5,6,7))
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/cpunish/src/cpunish.dat b/statsmodels/scikits/statsmodels/datasets/cpunish/src/cpunish.dat
deleted file mode 100644
index 52d70b5..0000000
--- a/statsmodels/scikits/statsmodels/datasets/cpunish/src/cpunish.dat
+++ /dev/null
@@ -1,18 +0,0 @@
-STATE EXECUTIONS INCOME PERPOVERTY PERBLACK VC100k96 SOUTH <9thGRADE 9thTO12th HSOREQUIV SOMECOLL AADEGREE BACHELORS GRAD/PROF
-Texas 37 34453 16.7 12.2 644 1 1492112 1924831 3153187 2777973 598956 530849 673250
-Virginia 9 41534 12.5 20.0 351 1 461475 669851 1297714 969191 244488 676710 363602
-Missouri 6 35802 10.6 11.2 591 0 391097 578440 1251550 785555 170146 420521 204294
-Arkansas 4 26954 18.4 16.1 524 1 234071 328690 571252 323016 62246 143038 67144
-Alabama 3 31468 14.8 25.9 565 1 362434 597455 875703 575123 146228 281466 142177
-Arizona 2 32552 18.8 3.5 632 0 224662 368279 708340 724228 173801 325575 161560
-Illinois 2 40873 11.6 15.3 886 0 786815 1203134 2531465 1817238 490791 1101193 552145
-South_Carolina 2 34861 13.1 30.1 997 1 303694 479916 776053 466145 152671 267365 118811
-Colorado 1 42562 9.4 4.3 405 0 124477 270560 654510 630445 161331 402917 190168
-Florida 1 31900 14.3 15.4 1051 1 883820 1706839 3045682 2054574 682005 1133053 567453
-Indiana 1 37421 8.2 8.2 537 0 310403 673362 1530741 775605 212379 360087 224057
-Kentucky 1 33305 16.4 7.2 321 0 456107 467956 881795 476362 108409 209055 129994
-Louisiana 1 32108 18.4 32.1 929 1 391630 534570 951832 586477 94409 288154 143624
-Maryland 1 45844 9.3 27.4 931 0 257518 514788 1044976 744604 182465 532883 342012
-Nebraska 1 34743 10.0 4.0 435 0 81690 124792 388540 272981 80956 141231 59008
-Oklahoma 1 29709 15.2 7.7 597 0 201228 375155 706003 539511 113434 253635 119774
-Oregon 1 36777 11.7 1.8 463 0 122513 283409 613983 561176 139269 267161 130403
diff --git a/statsmodels/scikits/statsmodels/datasets/grunfeld/__init__.py b/statsmodels/scikits/statsmodels/datasets/grunfeld/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/grunfeld/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/grunfeld/data.py b/statsmodels/scikits/statsmodels/datasets/grunfeld/data.py
deleted file mode 100644
index 269eb77..0000000
--- a/statsmodels/scikits/statsmodels/datasets/grunfeld/data.py
+++ /dev/null
@@ -1,90 +0,0 @@
-"""Grunfeld (1950) Investment Data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain."""
-TITLE = __doc__
-SOURCE = """This is the Grunfeld (1950) Investment Data.
-
-The source for the data was the original 11-firm data set from Grunfeld's Ph.D.
-thesis recreated by Kleiber and Zeileis (2008) "The Grunfeld Data at 50".
-The data can be found here.
-http://statmath.wu-wien.ac.at/~zeileis/grunfeld/
-
-For a note on the many versions of the Grunfeld data circulating see:
-http://www.stanford.edu/~clint/bench/grunfeld.htm
-"""
-
-DESCRSHORT = """Grunfeld (1950) Investment Data for 11 U.S. Firms."""
-
-DESCRLONG = DESCRSHORT
-
-NOTE = """Number of observations - 220 (20 years for 11 firms)
-
-Number of variables - 5
-
-Variables name definitions::
-
- invest - Gross investment in 1947 dollars
- value - Market value as of Dec. 31 in 1947 dollars
- capital - Stock of plant and equipment in 1947 dollars
- firm - General Motors, US Steel, General Electric, Chrysler,
- Atlantic Refining, IBM, Union Oil, Westinghouse, Goodyear,
- Diamond Match, American Steel
- year - 1935 - 1954
-
-Note that raw_data has firm expanded to dummy variables, since it is a
-string categorical variable.
-"""
-
-from numpy import recfromtxt, column_stack, array
-from scikits.statsmodels.tools import categorical
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Loads the Grunfeld data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
-
- Notes
- -----
- raw_data has the firm variable expanded to dummy variables for each
- firm (ie., there is no reference dummy)
- """
- data = _get_data()
- raw_data = categorical(data, col='firm', drop=True)
- ds = du.process_recarray(data, endog_idx=0, stack=False)
- ds.raw_data = raw_data
- return ds
-
-def load_pandas():
- """
- Loads the Grunfeld data and returns a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
-
- Notes
- -----
- raw_data has the firm variable expanded to dummy variables for each
- firm (ie., there is no reference dummy)
- """
- from pandas import DataFrame
- data = _get_data()
- raw_data = categorical(data, col='firm', drop=True)
- ds = du.process_recarray_pandas(data, endog_idx=0)
- ds.raw_data = DataFrame(raw_data)
- return ds
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/grunfeld.csv','rb'), delimiter=",",
- names=True, dtype="f8,f8,f8,a17,f8")
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/grunfeld/grunfeld.csv b/statsmodels/scikits/statsmodels/datasets/grunfeld/grunfeld.csv
deleted file mode 100644
index 94826c7..0000000
--- a/statsmodels/scikits/statsmodels/datasets/grunfeld/grunfeld.csv
+++ /dev/null
@@ -1,221 +0,0 @@
-invest,value,capital,firm,year
-317.6,3078.5,2.8,General Motors,1935
-391.8,4661.7,52.6,General Motors,1936
-410.6,5387.1,156.9,General Motors,1937
-257.7,2792.2,209.2,General Motors,1938
-330.8,4313.2,203.4,General Motors,1939
-461.2,4643.9,207.2,General Motors,1940
-512,4551.2,255.2,General Motors,1941
-448,3244.1,303.7,General Motors,1942
-499.6,4053.7,264.1,General Motors,1943
-547.5,4379.3,201.6,General Motors,1944
-561.2,4840.9,265,General Motors,1945
-688.1,4900.9,402.2,General Motors,1946
-568.9,3526.5,761.5,General Motors,1947
-529.2,3254.7,922.4,General Motors,1948
-555.1,3700.2,1020.1,General Motors,1949
-642.9,3755.6,1099,General Motors,1950
-755.9,4833,1207.7,General Motors,1951
-891.2,4924.9,1430.5,General Motors,1952
-1304.4,6241.7,1777.3,General Motors,1953
-1486.7,5593.6,2226.3,General Motors,1954
-209.9,1362.4,53.8,US Steel,1935
-355.3,1807.1,50.5,US Steel,1936
-469.9,2676.3,118.1,US Steel,1937
-262.3,1801.9,260.2,US Steel,1938
-230.4,1957.3,312.7,US Steel,1939
-361.6,2202.9,254.2,US Steel,1940
-472.8,2380.5,261.4,US Steel,1941
-445.6,2168.6,298.7,US Steel,1942
-361.6,1985.1,301.8,US Steel,1943
-288.2,1813.9,279.1,US Steel,1944
-258.7,1850.2,213.8,US Steel,1945
-420.3,2067.7,132.6,US Steel,1946
-420.5,1796.7,264.8,US Steel,1947
-494.5,1625.8,306.9,US Steel,1948
-405.1,1667,351.1,US Steel,1949
-418.8,1677.4,357.8,US Steel,1950
-588.2,2289.5,342.1,US Steel,1951
-645.5,2159.4,444.2,US Steel,1952
-641,2031.3,623.6,US Steel,1953
-459.3,2115.5,669.7,US Steel,1954
-33.1,1170.6,97.8,General Electric,1935
-45,2015.8,104.4,General Electric,1936
-77.2,2803.3,118,General Electric,1937
-44.6,2039.7,156.2,General Electric,1938
-48.1,2256.2,172.6,General Electric,1939
-74.4,2132.2,186.6,General Electric,1940
-113,1834.1,220.9,General Electric,1941
-91.9,1588,287.8,General Electric,1942
-61.3,1749.4,319.9,General Electric,1943
-56.8,1687.2,321.3,General Electric,1944
-93.6,2007.7,319.6,General Electric,1945
-159.9,2208.3,346,General Electric,1946
-147.2,1656.7,456.4,General Electric,1947
-146.3,1604.4,543.4,General Electric,1948
-98.3,1431.8,618.3,General Electric,1949
-93.5,1610.5,647.4,General Electric,1950
-135.2,1819.4,671.3,General Electric,1951
-157.3,2079.7,726.1,General Electric,1952
-179.5,2371.6,800.3,General Electric,1953
-189.6,2759.9,888.9,General Electric,1954
-40.29,417.5,10.5,Chrysler,1935
-72.76,837.8,10.2,Chrysler,1936
-66.26,883.9,34.7,Chrysler,1937
-51.6,437.9,51.8,Chrysler,1938
-52.41,679.7,64.3,Chrysler,1939
-69.41,727.8,67.1,Chrysler,1940
-68.35,643.6,75.2,Chrysler,1941
-46.8,410.9,71.4,Chrysler,1942
-47.4,588.4,67.1,Chrysler,1943
-59.57,698.4,60.5,Chrysler,1944
-88.78,846.4,54.6,Chrysler,1945
-74.12,893.8,84.8,Chrysler,1946
-62.68,579,96.8,Chrysler,1947
-89.36,694.6,110.2,Chrysler,1948
-78.98,590.3,147.4,Chrysler,1949
-100.66,693.5,163.2,Chrysler,1950
-160.62,809,203.5,Chrysler,1951
-145,727,290.6,Chrysler,1952
-174.93,1001.5,346.1,Chrysler,1953
-172.49,703.2,414.9,Chrysler,1954
-39.68,157.7,183.2,Atlantic Refining,1935
-50.73,167.9,204,Atlantic Refining,1936
-74.24,192.9,236,Atlantic Refining,1937
-53.51,156.7,291.7,Atlantic Refining,1938
-42.65,191.4,323.1,Atlantic Refining,1939
-46.48,185.5,344,Atlantic Refining,1940
-61.4,199.6,367.7,Atlantic Refining,1941
-39.67,189.5,407.2,Atlantic Refining,1942
-62.24,151.2,426.6,Atlantic Refining,1943
-52.32,187.7,470,Atlantic Refining,1944
-63.21,214.7,499.2,Atlantic Refining,1945
-59.37,232.9,534.6,Atlantic Refining,1946
-58.02,249,566.6,Atlantic Refining,1947
-70.34,224.5,595.3,Atlantic Refining,1948
-67.42,237.3,631.4,Atlantic Refining,1949
-55.74,240.1,662.3,Atlantic Refining,1950
-80.3,327.3,683.9,Atlantic Refining,1951
-85.4,359.4,729.3,Atlantic Refining,1952
-91.9,398.4,774.3,Atlantic Refining,1953
-81.43,365.7,804.9,Atlantic Refining,1954
-20.36,197,6.5,IBM,1935
-25.98,210.3,15.8,IBM,1936
-25.94,223.1,27.7,IBM,1937
-27.53,216.7,39.2,IBM,1938
-24.6,286.4,48.6,IBM,1939
-28.54,298,52.5,IBM,1940
-43.41,276.9,61.5,IBM,1941
-42.81,272.6,80.5,IBM,1942
-27.84,287.4,94.4,IBM,1943
-32.6,330.3,92.6,IBM,1944
-39.03,324.4,92.3,IBM,1945
-50.17,401.9,94.2,IBM,1946
-51.85,407.4,111.4,IBM,1947
-64.03,409.2,127.4,IBM,1948
-68.16,482.2,149.3,IBM,1949
-77.34,673.8,164.4,IBM,1950
-95.3,676.9,177.2,IBM,1951
-99.49,702,200,IBM,1952
-127.52,793.5,211.5,IBM,1953
-135.72,927.3,238.7,IBM,1954
-24.43,138,100.2,Union Oil,1935
-23.21,200.1,125,Union Oil,1936
-32.78,210.1,142.4,Union Oil,1937
-32.54,161.2,165.1,Union Oil,1938
-26.65,161.7,194.8,Union Oil,1939
-33.71,145.1,222.9,Union Oil,1940
-43.5,110.6,252.1,Union Oil,1941
-34.46,98.1,276.3,Union Oil,1942
-44.28,108.8,300.3,Union Oil,1943
-70.8,118.2,318.2,Union Oil,1944
-44.12,126.5,336.2,Union Oil,1945
-48.98,156.7,351.2,Union Oil,1946
-48.51,119.4,373.6,Union Oil,1947
-50,129.1,389.4,Union Oil,1948
-50.59,134.8,406.7,Union Oil,1949
-42.53,140.8,429.5,Union Oil,1950
-64.77,179,450.6,Union Oil,1951
-72.68,178.1,466.9,Union Oil,1952
-73.86,186.8,486.2,Union Oil,1953
-89.51,192.7,511.3,Union Oil,1954
-12.93,191.5,1.8,Westinghouse,1935
-25.9,516,0.8,Westinghouse,1936
-35.05,729,7.4,Westinghouse,1937
-22.89,560.4,18.1,Westinghouse,1938
-18.84,519.9,23.5,Westinghouse,1939
-28.57,628.5,26.5,Westinghouse,1940
-48.51,537.1,36.2,Westinghouse,1941
-43.34,561.2,60.8,Westinghouse,1942
-37.02,617.2,84.4,Westinghouse,1943
-37.81,626.7,91.2,Westinghouse,1944
-39.27,737.2,92.4,Westinghouse,1945
-53.46,760.5,86,Westinghouse,1946
-55.56,581.4,111.1,Westinghouse,1947
-49.56,662.3,130.6,Westinghouse,1948
-32.04,583.8,141.8,Westinghouse,1949
-32.24,635.2,136.7,Westinghouse,1950
-54.38,723.8,129.7,Westinghouse,1951
-71.78,864.1,145.5,Westinghouse,1952
-90.08,1193.5,174.8,Westinghouse,1953
-68.6,1188.9,213.5,Westinghouse,1954
-26.63,290.6,162,Goodyear,1935
-23.39,291.1,174,Goodyear,1936
-30.65,335,183,Goodyear,1937
-20.89,246,198,Goodyear,1938
-28.78,356.2,208,Goodyear,1939
-26.93,289.8,223,Goodyear,1940
-32.08,268.2,234,Goodyear,1941
-32.21,213.3,248,Goodyear,1942
-35.69,348.2,274,Goodyear,1943
-62.47,374.2,282,Goodyear,1944
-52.32,387.2,316,Goodyear,1945
-56.95,347.4,302,Goodyear,1946
-54.32,291.9,333,Goodyear,1947
-40.53,297.2,359,Goodyear,1948
-32.54,276.9,370,Goodyear,1949
-43.48,274.6,376,Goodyear,1950
-56.49,339.9,391,Goodyear,1951
-65.98,474.8,414,Goodyear,1952
-66.11,496,443,Goodyear,1953
-49.34,474.5,468,Goodyear,1954
-2.54,70.91,4.5,Diamond Match,1935
-2,87.94,4.71,Diamond Match,1936
-2.19,82.2,4.57,Diamond Match,1937
-1.99,58.72,4.56,Diamond Match,1938
-2.03,80.54,4.38,Diamond Match,1939
-1.81,86.47,4.21,Diamond Match,1940
-2.14,77.68,4.12,Diamond Match,1941
-1.86,62.16,3.83,Diamond Match,1942
-0.93,62.24,3.58,Diamond Match,1943
-1.18,61.82,3.41,Diamond Match,1944
-1.36,65.85,3.31,Diamond Match,1945
-2.24,69.54,3.23,Diamond Match,1946
-3.81,64.97,3.9,Diamond Match,1947
-5.66,68,5.38,Diamond Match,1948
-4.21,71.24,7.39,Diamond Match,1949
-3.42,69.05,8.74,Diamond Match,1950
-4.67,83.04,9.07,Diamond Match,1951
-6,74.42,9.93,Diamond Match,1952
-6.53,63.51,11.68,Diamond Match,1953
-5.12,58.12,14.33,Diamond Match,1954
-2.938,30.284,52.011,American Steel,1935
-5.643,43.909,52.903,American Steel,1936
-10.233,107.02,54.499,American Steel,1937
-4.046,68.306,59.722,American Steel,1938
-3.326,84.164,61.659,American Steel,1939
-4.68,69.157,62.243,American Steel,1940
-5.732,60.148,63.361,American Steel,1941
-12.117,49.332,64.861,American Steel,1942
-15.276,75.18,67.953,American Steel,1943
-9.275,62.05,69.59,American Steel,1944
-9.577,59.152,69.144,American Steel,1945
-3.956,68.424,70.269,American Steel,1946
-3.834,48.505,71.051,American Steel,1947
-5.97,40.507,71.508,American Steel,1948
-6.433,39.961,73.827,American Steel,1949
-4.77,36.494,75.847,American Steel,1950
-6.532,46.082,77.367,American Steel,1951
-7.329,57.616,78.631,American Steel,1952
-9.02,57.441,80.215,American Steel,1953
-6.281,47.165,83.788,American Steel,1954
diff --git a/statsmodels/scikits/statsmodels/datasets/grunfeld/src/grunfeld.csv b/statsmodels/scikits/statsmodels/datasets/grunfeld/src/grunfeld.csv
deleted file mode 100644
index 94826c7..0000000
--- a/statsmodels/scikits/statsmodels/datasets/grunfeld/src/grunfeld.csv
+++ /dev/null
@@ -1,221 +0,0 @@
-invest,value,capital,firm,year
-317.6,3078.5,2.8,General Motors,1935
-391.8,4661.7,52.6,General Motors,1936
-410.6,5387.1,156.9,General Motors,1937
-257.7,2792.2,209.2,General Motors,1938
-330.8,4313.2,203.4,General Motors,1939
-461.2,4643.9,207.2,General Motors,1940
-512,4551.2,255.2,General Motors,1941
-448,3244.1,303.7,General Motors,1942
-499.6,4053.7,264.1,General Motors,1943
-547.5,4379.3,201.6,General Motors,1944
-561.2,4840.9,265,General Motors,1945
-688.1,4900.9,402.2,General Motors,1946
-568.9,3526.5,761.5,General Motors,1947
-529.2,3254.7,922.4,General Motors,1948
-555.1,3700.2,1020.1,General Motors,1949
-642.9,3755.6,1099,General Motors,1950
-755.9,4833,1207.7,General Motors,1951
-891.2,4924.9,1430.5,General Motors,1952
-1304.4,6241.7,1777.3,General Motors,1953
-1486.7,5593.6,2226.3,General Motors,1954
-209.9,1362.4,53.8,US Steel,1935
-355.3,1807.1,50.5,US Steel,1936
-469.9,2676.3,118.1,US Steel,1937
-262.3,1801.9,260.2,US Steel,1938
-230.4,1957.3,312.7,US Steel,1939
-361.6,2202.9,254.2,US Steel,1940
-472.8,2380.5,261.4,US Steel,1941
-445.6,2168.6,298.7,US Steel,1942
-361.6,1985.1,301.8,US Steel,1943
-288.2,1813.9,279.1,US Steel,1944
-258.7,1850.2,213.8,US Steel,1945
-420.3,2067.7,132.6,US Steel,1946
-420.5,1796.7,264.8,US Steel,1947
-494.5,1625.8,306.9,US Steel,1948
-405.1,1667,351.1,US Steel,1949
-418.8,1677.4,357.8,US Steel,1950
-588.2,2289.5,342.1,US Steel,1951
-645.5,2159.4,444.2,US Steel,1952
-641,2031.3,623.6,US Steel,1953
-459.3,2115.5,669.7,US Steel,1954
-33.1,1170.6,97.8,General Electric,1935
-45,2015.8,104.4,General Electric,1936
-77.2,2803.3,118,General Electric,1937
-44.6,2039.7,156.2,General Electric,1938
-48.1,2256.2,172.6,General Electric,1939
-74.4,2132.2,186.6,General Electric,1940
-113,1834.1,220.9,General Electric,1941
-91.9,1588,287.8,General Electric,1942
-61.3,1749.4,319.9,General Electric,1943
-56.8,1687.2,321.3,General Electric,1944
-93.6,2007.7,319.6,General Electric,1945
-159.9,2208.3,346,General Electric,1946
-147.2,1656.7,456.4,General Electric,1947
-146.3,1604.4,543.4,General Electric,1948
-98.3,1431.8,618.3,General Electric,1949
-93.5,1610.5,647.4,General Electric,1950
-135.2,1819.4,671.3,General Electric,1951
-157.3,2079.7,726.1,General Electric,1952
-179.5,2371.6,800.3,General Electric,1953
-189.6,2759.9,888.9,General Electric,1954
-40.29,417.5,10.5,Chrysler,1935
-72.76,837.8,10.2,Chrysler,1936
-66.26,883.9,34.7,Chrysler,1937
-51.6,437.9,51.8,Chrysler,1938
-52.41,679.7,64.3,Chrysler,1939
-69.41,727.8,67.1,Chrysler,1940
-68.35,643.6,75.2,Chrysler,1941
-46.8,410.9,71.4,Chrysler,1942
-47.4,588.4,67.1,Chrysler,1943
-59.57,698.4,60.5,Chrysler,1944
-88.78,846.4,54.6,Chrysler,1945
-74.12,893.8,84.8,Chrysler,1946
-62.68,579,96.8,Chrysler,1947
-89.36,694.6,110.2,Chrysler,1948
-78.98,590.3,147.4,Chrysler,1949
-100.66,693.5,163.2,Chrysler,1950
-160.62,809,203.5,Chrysler,1951
-145,727,290.6,Chrysler,1952
-174.93,1001.5,346.1,Chrysler,1953
-172.49,703.2,414.9,Chrysler,1954
-39.68,157.7,183.2,Atlantic Refining,1935
-50.73,167.9,204,Atlantic Refining,1936
-74.24,192.9,236,Atlantic Refining,1937
-53.51,156.7,291.7,Atlantic Refining,1938
-42.65,191.4,323.1,Atlantic Refining,1939
-46.48,185.5,344,Atlantic Refining,1940
-61.4,199.6,367.7,Atlantic Refining,1941
-39.67,189.5,407.2,Atlantic Refining,1942
-62.24,151.2,426.6,Atlantic Refining,1943
-52.32,187.7,470,Atlantic Refining,1944
-63.21,214.7,499.2,Atlantic Refining,1945
-59.37,232.9,534.6,Atlantic Refining,1946
-58.02,249,566.6,Atlantic Refining,1947
-70.34,224.5,595.3,Atlantic Refining,1948
-67.42,237.3,631.4,Atlantic Refining,1949
-55.74,240.1,662.3,Atlantic Refining,1950
-80.3,327.3,683.9,Atlantic Refining,1951
-85.4,359.4,729.3,Atlantic Refining,1952
-91.9,398.4,774.3,Atlantic Refining,1953
-81.43,365.7,804.9,Atlantic Refining,1954
-20.36,197,6.5,IBM,1935
-25.98,210.3,15.8,IBM,1936
-25.94,223.1,27.7,IBM,1937
-27.53,216.7,39.2,IBM,1938
-24.6,286.4,48.6,IBM,1939
-28.54,298,52.5,IBM,1940
-43.41,276.9,61.5,IBM,1941
-42.81,272.6,80.5,IBM,1942
-27.84,287.4,94.4,IBM,1943
-32.6,330.3,92.6,IBM,1944
-39.03,324.4,92.3,IBM,1945
-50.17,401.9,94.2,IBM,1946
-51.85,407.4,111.4,IBM,1947
-64.03,409.2,127.4,IBM,1948
-68.16,482.2,149.3,IBM,1949
-77.34,673.8,164.4,IBM,1950
-95.3,676.9,177.2,IBM,1951
-99.49,702,200,IBM,1952
-127.52,793.5,211.5,IBM,1953
-135.72,927.3,238.7,IBM,1954
-24.43,138,100.2,Union Oil,1935
-23.21,200.1,125,Union Oil,1936
-32.78,210.1,142.4,Union Oil,1937
-32.54,161.2,165.1,Union Oil,1938
-26.65,161.7,194.8,Union Oil,1939
-33.71,145.1,222.9,Union Oil,1940
-43.5,110.6,252.1,Union Oil,1941
-34.46,98.1,276.3,Union Oil,1942
-44.28,108.8,300.3,Union Oil,1943
-70.8,118.2,318.2,Union Oil,1944
-44.12,126.5,336.2,Union Oil,1945
-48.98,156.7,351.2,Union Oil,1946
-48.51,119.4,373.6,Union Oil,1947
-50,129.1,389.4,Union Oil,1948
-50.59,134.8,406.7,Union Oil,1949
-42.53,140.8,429.5,Union Oil,1950
-64.77,179,450.6,Union Oil,1951
-72.68,178.1,466.9,Union Oil,1952
-73.86,186.8,486.2,Union Oil,1953
-89.51,192.7,511.3,Union Oil,1954
-12.93,191.5,1.8,Westinghouse,1935
-25.9,516,0.8,Westinghouse,1936
-35.05,729,7.4,Westinghouse,1937
-22.89,560.4,18.1,Westinghouse,1938
-18.84,519.9,23.5,Westinghouse,1939
-28.57,628.5,26.5,Westinghouse,1940
-48.51,537.1,36.2,Westinghouse,1941
-43.34,561.2,60.8,Westinghouse,1942
-37.02,617.2,84.4,Westinghouse,1943
-37.81,626.7,91.2,Westinghouse,1944
-39.27,737.2,92.4,Westinghouse,1945
-53.46,760.5,86,Westinghouse,1946
-55.56,581.4,111.1,Westinghouse,1947
-49.56,662.3,130.6,Westinghouse,1948
-32.04,583.8,141.8,Westinghouse,1949
-32.24,635.2,136.7,Westinghouse,1950
-54.38,723.8,129.7,Westinghouse,1951
-71.78,864.1,145.5,Westinghouse,1952
-90.08,1193.5,174.8,Westinghouse,1953
-68.6,1188.9,213.5,Westinghouse,1954
-26.63,290.6,162,Goodyear,1935
-23.39,291.1,174,Goodyear,1936
-30.65,335,183,Goodyear,1937
-20.89,246,198,Goodyear,1938
-28.78,356.2,208,Goodyear,1939
-26.93,289.8,223,Goodyear,1940
-32.08,268.2,234,Goodyear,1941
-32.21,213.3,248,Goodyear,1942
-35.69,348.2,274,Goodyear,1943
-62.47,374.2,282,Goodyear,1944
-52.32,387.2,316,Goodyear,1945
-56.95,347.4,302,Goodyear,1946
-54.32,291.9,333,Goodyear,1947
-40.53,297.2,359,Goodyear,1948
-32.54,276.9,370,Goodyear,1949
-43.48,274.6,376,Goodyear,1950
-56.49,339.9,391,Goodyear,1951
-65.98,474.8,414,Goodyear,1952
-66.11,496,443,Goodyear,1953
-49.34,474.5,468,Goodyear,1954
-2.54,70.91,4.5,Diamond Match,1935
-2,87.94,4.71,Diamond Match,1936
-2.19,82.2,4.57,Diamond Match,1937
-1.99,58.72,4.56,Diamond Match,1938
-2.03,80.54,4.38,Diamond Match,1939
-1.81,86.47,4.21,Diamond Match,1940
-2.14,77.68,4.12,Diamond Match,1941
-1.86,62.16,3.83,Diamond Match,1942
-0.93,62.24,3.58,Diamond Match,1943
-1.18,61.82,3.41,Diamond Match,1944
-1.36,65.85,3.31,Diamond Match,1945
-2.24,69.54,3.23,Diamond Match,1946
-3.81,64.97,3.9,Diamond Match,1947
-5.66,68,5.38,Diamond Match,1948
-4.21,71.24,7.39,Diamond Match,1949
-3.42,69.05,8.74,Diamond Match,1950
-4.67,83.04,9.07,Diamond Match,1951
-6,74.42,9.93,Diamond Match,1952
-6.53,63.51,11.68,Diamond Match,1953
-5.12,58.12,14.33,Diamond Match,1954
-2.938,30.284,52.011,American Steel,1935
-5.643,43.909,52.903,American Steel,1936
-10.233,107.02,54.499,American Steel,1937
-4.046,68.306,59.722,American Steel,1938
-3.326,84.164,61.659,American Steel,1939
-4.68,69.157,62.243,American Steel,1940
-5.732,60.148,63.361,American Steel,1941
-12.117,49.332,64.861,American Steel,1942
-15.276,75.18,67.953,American Steel,1943
-9.275,62.05,69.59,American Steel,1944
-9.577,59.152,69.144,American Steel,1945
-3.956,68.424,70.269,American Steel,1946
-3.834,48.505,71.051,American Steel,1947
-5.97,40.507,71.508,American Steel,1948
-6.433,39.961,73.827,American Steel,1949
-4.77,36.494,75.847,American Steel,1950
-6.532,46.082,77.367,American Steel,1951
-7.329,57.616,78.631,American Steel,1952
-9.02,57.441,80.215,American Steel,1953
-6.281,47.165,83.788,American Steel,1954
diff --git a/statsmodels/scikits/statsmodels/datasets/longley/R_gls.s b/statsmodels/scikits/statsmodels/datasets/longley/R_gls.s
deleted file mode 100644
index 7564bb0..0000000
--- a/statsmodels/scikits/statsmodels/datasets/longley/R_gls.s
+++ /dev/null
@@ -1,37 +0,0 @@
-### GLS Example with Longley Data
-### Done the long way...
-
-d <- read.table('./longley.csv', sep=',', header=T)
-attach(d)
-m1 <- lm(TOTEMP ~ GNP + POP)
-rho <- cor(m1$res[-1],m1$res[-16])
-sigma <- diag(16) # diagonal matrix of ones
-sigma <- rho^abs(row(sigma)-col(sigma))
-# row sigma is a matrix of the row index
-# col sigma is a matrix of the column index
-# this gives a upper-lower triangle with the
-# covariance structure of an AR1 process...
-sigma_inv <- solve(sigma) # inverse of sigma
-x <- model.matrix(m1)
-xPrimexInv <- solve(t(x) %*% sigma_inv %*% x)
-beta <- xPrimexInv %*% t(x) %*% sigma_inv %*% TOTEMP
-beta
-# residuals
-res <- TOTEMP - x %*% beta
-# whitened residuals, not sure if this is right
-# xPrimexInv is different than cholsigmainv obviously...
-wres = sigma_inv %*% TOTEMP - sigma_inv %*% x %*% beta
-
-sig <- sqrt(sum(res^2)/m1$df)
-wsig <- sqrt(sum(wres^2)/m1$df)
-wvc <- sqrt(diag(xPrimexInv))*wsig
-vc <- sqrt(diag(xPrimexInv))*sig
-vc
-
-### Attempt to use a varFunc for GLS
-library(nlme)
-m1 <- gls(TOTEMP ~ GNP + POP, correlation=corAR1(value=rho, fixed=TRUE))
-results <- summary(m1)
-bse <- sqrt(diag(vcov(m1)))
-
-
diff --git a/statsmodels/scikits/statsmodels/datasets/longley/R_lm.s b/statsmodels/scikits/statsmodels/datasets/longley/R_lm.s
deleted file mode 100644
index 09d3985..0000000
--- a/statsmodels/scikits/statsmodels/datasets/longley/R_lm.s
+++ /dev/null
@@ -1,6 +0,0 @@
-d <- read.table('./longley.csv', sep=',', header=T)
-attach(d)
-
-library(nlme) # to be able to get BIC
-m1 <- lm(TOTEMP ~ GNPDEFL + GNP + UNEMP + ARMED + POP + YEAR)
-results <-summary(m1)
diff --git a/statsmodels/scikits/statsmodels/datasets/longley/__init__.py b/statsmodels/scikits/statsmodels/datasets/longley/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/longley/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/longley/data.py b/statsmodels/scikits/statsmodels/datasets/longley/data.py
deleted file mode 100644
index 63d6c8e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/longley/data.py
+++ /dev/null
@@ -1,73 +0,0 @@
-"""Longley dataset"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain."""
-TITLE = __doc__
-SOURCE = """
-The classic 1967 Longley Data
-
-http://www.itl.nist.gov/div898/strd/lls/data/Longley.shtml
-
-::
-
- Longley, J.W. (1967) "An Appraisal of Least Squares Programs for the
- Electronic Comptuer from the Point of View of the User." Journal of
- the American Statistical Association. 62.319, 819-41.
-"""
-
-DESCRSHORT = """"""
-
-DESCRLONG = """The Longley dataset contains various US macroeconomic
-variables that are known to be highly collinear. It has been used to appraise
-the accuracy of least squares routines."""
-
-NOTE = """
-Number of Observations - 16
-
-Number of Variables - 6
-
-Variable name definitions::
-
- TOTEMP - Total Employment
- GNPDEFL - GNP deflator
- GNP - GNP
- UNEMP - Number of unemployed
- ARMED - Size of armed forces
- POP - Population
- YEAR - Year (1947 - 1962)
-"""
-
-from numpy import recfromtxt, array, column_stack
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the Longley data and return a Dataset class.
-
- Returns
- -------
- Dataset instance
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Load the Longley data and return a Dataset class.
-
- Returns
- -------
- Dataset instance
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath+'/longley.csv',"rb"), delimiter=",",
- names=True, dtype=float, usecols=(1,2,3,4,5,6,7))
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/longley/longley.csv b/statsmodels/scikits/statsmodels/datasets/longley/longley.csv
deleted file mode 100644
index 1148cf4..0000000
--- a/statsmodels/scikits/statsmodels/datasets/longley/longley.csv
+++ /dev/null
@@ -1,17 +0,0 @@
-"Obs","TOTEMP","GNPDEFL","GNP","UNEMP","ARMED","POP","YEAR"
-1,60323,83,234289,2356,1590,107608,1947
-2,61122,88.5,259426,2325,1456,108632,1948
-3,60171,88.2,258054,3682,1616,109773,1949
-4,61187,89.5,284599,3351,1650,110929,1950
-5,63221,96.2,328975,2099,3099,112075,1951
-6,63639,98.1,346999,1932,3594,113270,1952
-7,64989,99,365385,1870,3547,115094,1953
-8,63761,100,363112,3578,3350,116219,1954
-9,66019,101.2,397469,2904,3048,117388,1955
-10,67857,104.6,419180,2822,2857,118734,1956
-11,68169,108.4,442769,2936,2798,120445,1957
-12,66513,110.8,444546,4681,2637,121950,1958
-13,68655,112.6,482704,3813,2552,123366,1959
-14,69564,114.2,502601,3931,2514,125368,1960
-15,69331,115.7,518173,4806,2572,127852,1961
-16,70551,116.9,554894,4007,2827,130081,1962
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/__init__.py b/statsmodels/scikits/statsmodels/datasets/macrodata/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/macrodata/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/data.py b/statsmodels/scikits/statsmodels/datasets/macrodata/data.py
deleted file mode 100644
index 5388320..0000000
--- a/statsmodels/scikits/statsmodels/datasets/macrodata/data.py
+++ /dev/null
@@ -1,89 +0,0 @@
-"""United States Macroeconomic data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain."""
-TITLE = __doc__
-SOURCE = """
-Compiled by Skipper Seabold. All data are from the Federal Reserve Bank of St.
-Louis [1] except the unemployment rate which was taken from the National
-Bureau of Labor Statistics [2]. ::
-
- [1] Data Source: FRED, Federal Reserve Economic Data, Federal Reserve Bank of
- St. Louis; http://research.stlouisfed.org/fred2/; accessed December 15,
- 2009.
-
- [2] Data Source: Bureau of Labor Statistics, U.S. Department of Labor;
- http://www.bls.gov/data/; accessed December 15, 2009.
-"""
-
-DESCRSHORT = """US Macroeconomic Data for 1959Q1 - 2009Q3"""
-
-DESCRLONG = DESCRSHORT
-
-NOTE = """
-Number of Observations - 203
-
-Number of Variables - 14
-
-Variable name definitions::
-
- year - 1959q1 - 2009q3
- quarter - 1-4
- realgdp - Real gross domestic product (Bil. of chained 2005 US$,
- seasonally adjusted annual rate)
- realcons - Real personal consumption expenditures (Bil. of chained 2005
- US$,
- seasonally adjusted annual rate)
- realinv - Real gross private domestic investment (Bil. of chained 2005
- US$, seasonally adjusted annual rate)
- realgovt - Real federal consumption expenditures & gross investment
- (Bil. of chained 2005 US$, seasonally adjusted annual rate)
- realdpi - Real gross private domestic investment (Bil. of chained 2005
- US$, seasonally adjusted annual rate)
- cpi - End of the quarter consumer price index for all urban
- consumers: all items (1982-84 = 100, seasonally adjusted).
- m1 - End of the quarter M1 nominal money stock (Seasonally adjusted)
- tbilrate - Quarterly monthly average of the monthly 3-month treasury bill:
- secondary market rate
- unemp - Seasonally adjusted unemployment rate (%)
- pop - End of the quarter total population: all ages incl. armed
- forces over seas
- infl - Inflation rate (ln(cpi_{t}/cpi_{t-1}) * 400)
- realint - Real interest rate (tbilrate - infl)
-"""
-
-from numpy import recfromtxt, column_stack, array
-from pandas import DataFrame
-
-from scikits.statsmodels.tools import Dataset
-from os.path import dirname, abspath
-
-def load():
- """
- Load the US macro data and return a Dataset class.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
-
- Notes
- -----
- The macrodata Dataset instance does not contain endog and exog attributes.
- """
- data = _get_data()
- names = data.dtype.names
- dataset = Dataset(data=data, names=names)
- return dataset
-
-def load_pandas():
- dataset = load()
- dataset.data = DataFrame(dataset.data)
- return dataset
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/macrodata.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.csv b/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.csv
deleted file mode 100644
index 0ebdbd9..0000000
--- a/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.csv
+++ /dev/null
@@ -1,204 +0,0 @@
-"year","quarter","realgdp","realcons","realinv","realgovt","realdpi","cpi","m1","tbilrate","unemp","pop","infl","realint"
-1959,1,2710.349,1707.4,286.898,470.045,1886.9,28.980,139.7,2.82,5.8,177.146,0,0
-1959,2,2778.801,1733.7,310.859,481.301,1919.7,29.150,141.7,3.08,5.1,177.830,2.34,0.74
-1959,3,2775.488,1751.8,289.226,491.260,1916.4,29.350,140.5,3.82,5.3,178.657,2.74,1.09
-1959,4,2785.204,1753.7,299.356,484.052,1931.3,29.370,140,4.33,5.6,179.386,0.27,4.06
-1960,1,2847.699,1770.5,331.722,462.199,1955.5,29.540,139.6,3.50,5.2,180.007,2.31,1.19
-1960,2,2834.390,1792.9,298.152,460.400,1966.1,29.550,140.2,2.68,5.2,180.671,0.14,2.55
-1960,3,2839.022,1785.8,296.375,474.676,1967.8,29.750,140.9,2.36,5.6,181.528,2.7,-0.34
-1960,4,2802.616,1788.2,259.764,476.434,1966.6,29.840,141.1,2.29,6.3,182.287,1.21,1.08
-1961,1,2819.264,1787.7,266.405,475.854,1984.5,29.810,142.1,2.37,6.8,182.992,-0.4,2.77
-1961,2,2872.005,1814.3,286.246,480.328,2014.4,29.920,142.9,2.29,7,183.691,1.47,0.81
-1961,3,2918.419,1823.1,310.227,493.828,2041.9,29.980,144.1,2.32,6.8,184.524,0.8,1.52
-1961,4,2977.830,1859.6,315.463,502.521,2082.0,30.040,145.2,2.60,6.2,185.242,0.8,1.8
-1962,1,3031.241,1879.4,334.271,520.960,2101.7,30.210,146.4,2.73,5.6,185.874,2.26,0.47
-1962,2,3064.709,1902.5,331.039,523.066,2125.2,30.220,146.5,2.78,5.5,186.538,0.13,2.65
-1962,3,3093.047,1917.9,336.962,538.838,2137.0,30.380,146.7,2.78,5.6,187.323,2.11,0.67
-1962,4,3100.563,1945.1,325.650,535.912,2154.6,30.440,148.3,2.87,5.5,188.013,0.79,2.08
-1963,1,3141.087,1958.2,343.721,522.917,2172.5,30.480,149.7,2.90,5.8,188.580,0.53,2.38
-1963,2,3180.447,1976.9,348.730,518.108,2193.1,30.690,151.3,3.03,5.7,189.242,2.75,0.29
-1963,3,3240.332,2003.8,360.102,546.893,2217.9,30.750,152.6,3.38,5.5,190.028,0.78,2.6
-1963,4,3264.967,2020.6,364.534,532.383,2254.6,30.940,153.7,3.52,5.6,190.668,2.46,1.06
-1964,1,3338.246,2060.5,379.523,529.686,2299.6,30.950,154.8,3.51,5.5,191.245,0.13,3.38
-1964,2,3376.587,2096.7,377.778,526.175,2362.1,31.020,156.8,3.47,5.2,191.889,0.9,2.57
-1964,3,3422.469,2135.2,386.754,522.008,2392.7,31.120,159.2,3.53,5,192.631,1.29,2.25
-1964,4,3431.957,2141.2,389.910,514.603,2420.4,31.280,160.7,3.76,5,193.223,2.05,1.71
-1965,1,3516.251,2188.8,429.145,508.006,2447.4,31.380,162,3.93,4.9,193.709,1.28,2.65
-1965,2,3563.960,2213.0,429.119,508.931,2474.5,31.580,163.1,3.84,4.7,194.303,2.54,1.3
-1965,3,3636.285,2251.0,444.444,529.446,2542.6,31.650,166,3.93,4.4,194.997,0.89,3.04
-1965,4,3724.014,2314.3,446.493,544.121,2594.1,31.880,169.1,4.35,4.1,195.539,2.9,1.46
-1966,1,3815.423,2348.5,484.244,556.593,2618.4,32.280,171.8,4.62,3.9,195.999,4.99,-0.37
-1966,2,3828.124,2354.5,475.408,571.371,2624.7,32.450,170.3,4.65,3.8,196.560,2.1,2.55
-1966,3,3853.301,2381.5,470.697,594.514,2657.8,32.850,171.2,5.23,3.8,197.207,4.9,0.33
-1966,4,3884.520,2391.4,472.957,599.528,2688.2,32.900,171.9,5.00,3.7,197.736,0.61,4.39
-1967,1,3918.740,2405.3,460.007,640.682,2728.4,33.100,174.2,4.22,3.8,198.206,2.42,1.8
-1967,2,3919.556,2438.1,440.393,631.430,2750.8,33.400,178.1,3.78,3.8,198.712,3.61,0.17
-1967,3,3950.826,2450.6,453.033,641.504,2777.1,33.700,181.6,4.42,3.8,199.311,3.58,0.84
-1967,4,3980.970,2465.7,462.834,640.234,2797.4,34.100,184.3,4.90,3.9,199.808,4.72,0.18
-1968,1,4063.013,2524.6,472.907,651.378,2846.2,34.400,186.6,5.18,3.7,200.208,3.5,1.67
-1968,2,4131.998,2563.3,492.026,646.145,2893.5,34.900,190.5,5.50,3.5,200.706,5.77,-0.28
-1968,3,4160.267,2611.5,476.053,640.615,2899.3,35.300,194,5.21,3.5,201.290,4.56,0.65
-1968,4,4178.293,2623.5,480.998,636.729,2918.4,35.700,198.7,5.85,3.4,201.760,4.51,1.34
-1969,1,4244.100,2652.9,512.686,633.224,2923.4,36.300,200.7,6.08,3.4,202.161,6.67,-0.58
-1969,2,4256.460,2669.8,508.601,623.160,2952.9,36.800,201.7,6.49,3.4,202.677,5.47,1.02
-1969,3,4283.378,2682.7,520.360,623.613,3012.9,37.300,202.9,7.02,3.6,203.302,5.4,1.63
-1969,4,4263.261,2704.1,492.334,606.900,3034.9,37.900,206.2,7.64,3.6,203.849,6.38,1.26
-1970,1,4256.573,2720.7,476.925,594.888,3050.1,38.500,206.7,6.76,4.2,204.401,6.28,0.47
-1970,2,4264.289,2733.2,478.419,576.257,3103.5,38.900,208,6.66,4.8,205.052,4.13,2.52
-1970,3,4302.259,2757.1,486.594,567.743,3145.4,39.400,212.9,6.15,5.2,205.788,5.11,1.04
-1970,4,4256.637,2749.6,458.406,564.666,3135.1,39.900,215.5,4.86,5.8,206.466,5.04,-0.18
-1971,1,4374.016,2802.2,517.935,542.709,3197.3,40.100,220,3.65,5.9,207.065,2,1.65
-1971,2,4398.829,2827.9,533.986,534.905,3245.3,40.600,224.9,4.76,5.9,207.661,4.96,-0.19
-1971,3,4433.943,2850.4,541.010,532.646,3259.7,40.900,227.2,4.70,6,208.345,2.94,1.75
-1971,4,4446.264,2897.8,524.085,516.140,3294.2,41.200,230.1,3.87,6,208.917,2.92,0.95
-1972,1,4525.769,2936.5,561.147,518.192,3314.9,41.500,235.6,3.55,5.8,209.386,2.9,0.64
-1972,2,4633.101,2992.6,595.495,526.473,3346.1,41.800,238.8,3.86,5.7,209.896,2.88,0.98
-1972,3,4677.503,3038.8,603.970,498.116,3414.6,42.200,245,4.47,5.6,210.479,3.81,0.66
-1972,4,4754.546,3110.1,607.104,496.540,3550.5,42.700,251.5,5.09,5.3,210.985,4.71,0.38
-1973,1,4876.166,3167.0,645.654,504.838,3590.7,43.700,252.7,5.98,5,211.420,9.26,-3.28
-1973,2,4932.571,3165.4,675.837,497.033,3626.2,44.200,257.5,7.19,4.9,211.909,4.55,2.64
-1973,3,4906.252,3176.7,649.412,475.897,3644.4,45.600,259,8.06,4.8,212.475,12.47,-4.41
-1973,4,4953.050,3167.4,674.253,476.174,3688.9,46.800,263.8,7.68,4.8,212.932,10.39,-2.71
-1974,1,4909.617,3139.7,631.230,491.043,3632.3,48.100,267.2,7.80,5.1,213.361,10.96,-3.16
-1974,2,4922.188,3150.6,628.102,490.177,3601.1,49.300,269.3,7.89,5.2,213.854,9.86,-1.96
-1974,3,4873.520,3163.6,592.672,492.586,3612.4,51.000,272.3,8.16,5.6,214.451,13.56,-5.4
-1974,4,4854.340,3117.3,598.306,496.176,3596.0,52.300,273.9,6.96,6.6,214.931,10.07,-3.11
-1975,1,4795.295,3143.4,493.212,490.603,3581.9,53.000,276.2,5.53,8.2,215.353,5.32,0.22
-1975,2,4831.942,3195.8,476.085,486.679,3749.3,54.000,283.7,5.57,8.9,215.973,7.48,-1.91
-1975,3,4913.328,3241.4,516.402,498.836,3698.6,54.900,285.4,6.27,8.5,216.587,6.61,-0.34
-1975,4,4977.511,3275.7,530.596,500.141,3736.0,55.800,288.4,5.26,8.3,217.095,6.5,-1.24
-1976,1,5090.663,3341.2,585.541,495.568,3791.0,56.100,294.7,4.91,7.7,217.528,2.14,2.77
-1976,2,5128.947,3371.8,610.513,494.532,3822.2,57.000,297.2,5.28,7.6,218.035,6.37,-1.09
-1976,3,5154.072,3407.5,611.646,493.141,3856.7,57.900,302,5.05,7.7,218.644,6.27,-1.22
-1976,4,5191.499,3451.8,615.898,494.415,3884.4,58.700,308.3,4.57,7.8,219.179,5.49,-0.92
-1977,1,5251.762,3491.3,646.198,498.509,3887.5,60.000,316,4.60,7.5,219.684,8.76,-4.16
-1977,2,5356.131,3510.6,696.141,506.695,3931.8,60.800,320.2,5.06,7.1,220.239,5.3,-0.24
-1977,3,5451.921,3544.1,734.078,509.605,3990.8,61.600,326.4,5.82,6.9,220.904,5.23,0.59
-1977,4,5450.793,3597.5,713.356,504.584,4071.2,62.700,334.4,6.20,6.6,221.477,7.08,-0.88
-1978,1,5469.405,3618.5,727.504,506.314,4096.4,63.900,339.9,6.34,6.3,221.991,7.58,-1.24
-1978,2,5684.569,3695.9,777.454,518.366,4143.4,65.500,347.6,6.72,6,222.585,9.89,-3.18
-1978,3,5740.300,3711.4,801.452,520.199,4177.1,67.100,353.3,7.64,6,223.271,9.65,-2.01
-1978,4,5816.222,3741.3,819.689,524.782,4209.8,68.500,358.6,9.02,5.9,223.865,8.26,0.76
-1979,1,5825.949,3760.2,819.556,525.524,4255.9,70.600,368,9.42,5.9,224.438,12.08,-2.66
-1979,2,5831.418,3758.0,817.660,532.040,4226.1,73.000,377.2,9.30,5.7,225.055,13.37,-4.07
-1979,3,5873.335,3794.9,801.742,531.232,4250.3,75.200,380.8,10.49,5.9,225.801,11.88,-1.38
-1979,4,5889.495,3805.0,786.817,531.126,4284.3,78.000,385.8,11.94,5.9,226.451,14.62,-2.68
-1980,1,5908.467,3798.4,781.114,548.115,4296.2,80.900,383.8,13.75,6.3,227.061,14.6,-0.85
-1980,2,5787.373,3712.2,710.640,561.895,4236.1,82.600,394,7.90,7.3,227.726,8.32,-0.42
-1980,3,5776.617,3752.0,656.477,554.292,4279.7,84.700,409,10.34,7.7,228.417,10.04,0.3
-1980,4,5883.460,3802.0,723.220,556.130,4368.1,87.200,411.3,14.75,7.4,228.937,11.64,3.11
-1981,1,6005.717,3822.8,795.091,567.618,4358.1,89.100,427.4,13.95,7.4,229.403,8.62,5.32
-1981,2,5957.795,3822.8,757.240,584.540,4358.6,91.500,426.9,15.33,7.4,229.966,10.63,4.69
-1981,3,6030.184,3838.3,804.242,583.890,4455.4,93.400,428.4,14.58,7.4,230.641,8.22,6.36
-1981,4,5955.062,3809.3,773.053,590.125,4464.4,94.400,442.7,11.33,8.2,231.157,4.26,7.07
-1982,1,5857.333,3833.9,692.514,591.043,4469.6,95.000,447.1,12.95,8.8,231.645,2.53,10.42
-1982,2,5889.074,3847.7,691.900,596.403,4500.8,97.500,448,11.97,9.4,232.188,10.39,1.58
-1982,3,5866.370,3877.2,683.825,605.370,4520.6,98.100,464.5,8.10,9.9,232.816,2.45,5.65
-1982,4,5871.001,3947.9,622.930,623.307,4536.4,97.900,477.2,7.96,10.7,233.322,-0.82,8.77
-1983,1,5944.020,3986.6,645.110,630.873,4572.2,98.800,493.2,8.22,10.4,233.781,3.66,4.56
-1983,2,6077.619,4065.7,707.372,644.322,4605.5,99.800,507.8,8.69,10.1,234.307,4.03,4.66
-1983,3,6197.468,4137.6,754.937,662.412,4674.7,100.800,517.2,8.99,9.4,234.907,3.99,5.01
-1983,4,6325.574,4203.2,834.427,639.197,4771.1,102.100,525.1,8.89,8.5,235.385,5.13,3.76
-1984,1,6448.264,4239.2,921.763,644.635,4875.4,103.300,535,9.43,7.9,235.839,4.67,4.76
-1984,2,6559.594,4299.9,952.841,664.839,4959.4,104.100,540.9,9.94,7.5,236.348,3.09,6.85
-1984,3,6623.343,4333.0,974.989,662.294,5036.6,105.100,543.7,10.19,7.4,236.976,3.82,6.37
-1984,4,6677.264,4390.1,958.993,684.282,5084.5,105.700,557,8.14,7.3,237.468,2.28,5.87
-1985,1,6740.275,4464.6,927.375,691.613,5072.0,107.000,570.4,8.25,7.3,237.900,4.89,3.36
-1985,2,6797.344,4505.2,943.383,708.524,5172.7,107.700,589.1,7.17,7.3,238.466,2.61,4.56
-1985,3,6903.523,4590.8,932.959,732.305,5140.7,108.500,607.8,7.13,7.2,239.113,2.96,4.17
-1985,4,6955.918,4600.9,969.434,732.026,5193.9,109.900,621.4,7.14,7,239.638,5.13,2.01
-1986,1,7022.757,4639.3,967.442,728.125,5255.8,108.700,641,6.56,7,240.094,-4.39,10.95
-1986,2,7050.969,4688.7,945.972,751.334,5315.5,109.500,670.3,6.06,7.2,240.651,2.93,3.13
-1986,3,7118.950,4770.7,916.315,779.770,5343.3,110.200,694.9,5.31,7,241.274,2.55,2.76
-1986,4,7153.359,4799.4,917.736,767.671,5346.5,111.400,730.2,5.44,6.8,241.784,4.33,1.1
-1987,1,7193.019,4792.1,945.776,772.247,5379.4,112.700,743.9,5.61,6.6,242.252,4.64,0.97
-1987,2,7269.510,4856.3,947.100,782.962,5321.0,113.800,743,5.67,6.3,242.804,3.89,1.79
-1987,3,7332.558,4910.4,948.055,783.804,5416.2,115.000,756.2,6.19,6,243.446,4.2,1.99
-1987,4,7458.022,4922.2,1021.980,795.467,5493.1,116.000,756.2,5.76,5.9,243.981,3.46,2.29
-1988,1,7496.600,5004.4,964.398,773.851,5562.1,117.200,768.1,5.76,5.7,244.445,4.12,1.64
-1988,2,7592.881,5040.8,987.858,765.980,5614.3,118.500,781.4,6.48,5.5,245.021,4.41,2.07
-1988,3,7632.082,5080.6,994.204,760.245,5657.5,119.900,783.3,7.22,5.5,245.693,4.7,2.52
-1988,4,7733.991,5140.4,1007.371,783.065,5708.5,121.200,785.7,8.03,5.3,246.224,4.31,3.72
-1989,1,7806.603,5159.3,1045.975,767.024,5773.4,123.100,779.2,8.67,5.2,246.721,6.22,2.44
-1989,2,7865.016,5182.4,1033.753,784.275,5749.8,124.500,777.8,8.15,5.2,247.342,4.52,3.63
-1989,3,7927.393,5236.1,1021.604,791.819,5787.0,125.400,786.6,7.76,5.3,248.067,2.88,4.88
-1989,4,7944.697,5261.7,1011.119,787.844,5831.3,127.500,795.4,7.65,5.4,248.659,6.64,1.01
-1990,1,8027.693,5303.3,1021.070,799.681,5875.1,128.900,806.2,7.80,5.3,249.306,4.37,3.44
-1990,2,8059.598,5320.8,1021.360,800.639,5913.9,130.500,810.1,7.70,5.3,250.132,4.93,2.76
-1990,3,8059.476,5341.0,997.319,793.513,5918.1,133.400,819.8,7.33,5.7,251.057,8.79,-1.46
-1990,4,7988.864,5299.5,934.248,800.525,5878.2,134.700,827.2,6.67,6.1,251.889,3.88,2.79
-1991,1,7950.164,5284.4,896.210,806.775,5896.3,135.100,843.2,5.83,6.6,252.643,1.19,4.65
-1991,2,8003.822,5324.7,891.704,809.081,5941.1,136.200,861.5,5.54,6.8,253.493,3.24,2.29
-1991,3,8037.538,5345.0,913.904,793.987,5953.6,137.200,878,5.18,6.9,254.435,2.93,2.25
-1991,4,8069.046,5342.6,948.891,778.378,5992.4,138.300,910.4,4.14,7.1,255.214,3.19,0.95
-1992,1,8157.616,5434.5,927.796,778.568,6082.9,139.400,943.8,3.88,7.4,255.992,3.17,0.71
-1992,2,8244.294,5466.7,988.912,777.762,6129.5,140.500,963.2,3.50,7.6,256.894,3.14,0.36
-1992,3,8329.361,5527.1,999.135,786.639,6160.6,141.700,1003.8,2.97,7.6,257.861,3.4,-0.44
-1992,4,8417.016,5594.6,1030.758,787.064,6248.2,142.800,1030.4,3.12,7.4,258.679,3.09,0.02
-1993,1,8432.485,5617.2,1054.979,762.901,6156.5,143.800,1047.6,2.92,7.2,259.414,2.79,0.13
-1993,2,8486.435,5671.1,1063.263,752.158,6252.3,144.500,1084.5,3.02,7.1,260.255,1.94,1.08
-1993,3,8531.108,5732.7,1062.514,744.227,6265.7,145.600,1113,3.00,6.8,261.163,3.03,-0.04
-1993,4,8643.769,5783.7,1118.583,748.102,6358.1,146.300,1131.6,3.05,6.6,261.919,1.92,1.13
-1994,1,8727.919,5848.1,1166.845,721.288,6332.6,147.200,1141.1,3.48,6.6,262.631,2.45,1.02
-1994,2,8847.303,5891.5,1234.855,717.197,6440.6,148.400,1150.5,4.20,6.2,263.436,3.25,0.96
-1994,3,8904.289,5938.7,1212.655,736.890,6487.9,149.400,1150.1,4.68,6,264.301,2.69,2
-1994,4,9003.180,5997.3,1269.190,716.702,6574.0,150.500,1151.4,5.53,5.6,265.044,2.93,2.6
-1995,1,9025.267,6004.3,1282.090,715.326,6616.6,151.800,1149.3,5.72,5.5,265.755,3.44,2.28
-1995,2,9044.668,6053.5,1247.610,712.492,6617.2,152.600,1145.4,5.52,5.7,266.557,2.1,3.42
-1995,3,9120.684,6107.6,1235.601,707.649,6666.8,153.500,1137.3,5.32,5.7,267.456,2.35,2.97
-1995,4,9184.275,6150.6,1270.392,681.081,6706.2,154.700,1123.5,5.17,5.6,268.151,3.11,2.05
-1996,1,9247.188,6206.9,1287.128,695.265,6777.7,156.100,1124.8,4.91,5.5,268.853,3.6,1.31
-1996,2,9407.052,6277.1,1353.795,705.172,6850.6,157.000,1112.4,5.09,5.5,269.667,2.3,2.79
-1996,3,9488.879,6314.6,1422.059,692.741,6908.9,158.200,1086.1,5.04,5.3,270.581,3.05,2
-1996,4,9592.458,6366.1,1418.193,690.744,6946.8,159.400,1081.5,4.99,5.3,271.360,3.02,1.97
-1997,1,9666.235,6430.2,1451.304,681.445,7008.9,159.900,1063.8,5.10,5.2,272.083,1.25,3.85
-1997,2,9809.551,6456.2,1543.976,693.525,7061.5,160.400,1066.2,5.01,5,272.912,1.25,3.76
-1997,3,9932.672,6566.0,1571.426,691.261,7142.4,161.500,1065.5,5.02,4.9,273.852,2.73,2.29
-1997,4,10008.874,6641.1,1596.523,690.311,7241.5,162.000,1074.4,5.11,4.7,274.626,1.24,3.88
-1998,1,10103.425,6707.2,1672.732,668.783,7406.2,162.200,1076.1,5.02,4.6,275.304,0.49,4.53
-1998,2,10194.277,6822.6,1652.716,687.184,7512.0,163.200,1075,4.98,4.4,276.115,2.46,2.52
-1998,3,10328.787,6913.1,1700.071,681.472,7591.0,163.900,1086,4.49,4.5,277.003,1.71,2.78
-1998,4,10507.575,7019.1,1754.743,688.147,7646.5,164.700,1097.8,4.38,4.4,277.790,1.95,2.43
-1999,1,10601.179,7088.3,1809.993,683.601,7698.4,165.900,1101.9,4.39,4.3,278.451,2.9,1.49
-1999,2,10684.049,7199.9,1803.674,683.594,7716.0,166.700,1098.7,4.54,4.3,279.295,1.92,2.62
-1999,3,10819.914,7286.4,1848.949,697.936,7765.9,168.100,1102.3,4.75,4.2,280.203,3.35,1.41
-1999,4,11014.254,7389.2,1914.567,713.445,7887.7,169.300,1121.9,5.20,4.1,280.976,2.85,2.35
-2000,1,11043.044,7501.3,1887.836,685.216,8053.4,170.900,1113.5,5.63,4,281.653,3.76,1.87
-2000,2,11258.454,7571.8,2018.529,712.641,8135.9,172.700,1103,5.81,3.9,282.385,4.19,1.62
-2000,3,11267.867,7645.9,1986.956,698.827,8222.3,173.900,1098.7,6.07,4,283.190,2.77,3.3
-2000,4,11334.544,7713.5,1987.845,695.597,8234.6,175.600,1097.7,5.70,3.9,283.900,3.89,1.81
-2001,1,11297.171,7744.3,1882.691,710.403,8296.5,176.400,1114.9,4.39,4.2,284.550,1.82,2.57
-2001,2,11371.251,7773.5,1876.650,725.623,8273.7,177.400,1139.7,3.54,4.4,285.267,2.26,1.28
-2001,3,11340.075,7807.7,1837.074,730.493,8484.5,177.600,1166,2.72,4.8,286.047,0.45,2.27
-2001,4,11380.128,7930.0,1731.189,739.318,8385.5,177.700,1190.9,1.74,5.5,286.728,0.23,1.51
-2002,1,11477.868,7957.3,1789.327,756.915,8611.6,179.300,1185.9,1.75,5.7,287.328,3.59,-1.84
-2002,2,11538.770,7997.8,1810.779,774.408,8658.9,180.000,1199.5,1.70,5.8,288.028,1.56,0.14
-2002,3,11596.430,8052.0,1814.531,786.673,8629.2,181.200,1204,1.61,5.7,288.783,2.66,-1.05
-2002,4,11598.824,8080.6,1813.219,799.967,8649.6,182.600,1226.8,1.20,5.8,289.421,3.08,-1.88
-2003,1,11645.819,8122.3,1813.141,800.196,8681.3,183.200,1248.4,1.14,5.9,290.019,1.31,-0.17
-2003,2,11738.706,8197.8,1823.698,838.775,8812.5,183.700,1287.9,0.96,6.2,290.704,1.09,-0.13
-2003,3,11935.461,8312.1,1889.883,839.598,8935.4,184.900,1297.3,0.94,6.1,291.449,2.6,-1.67
-2003,4,12042.817,8358.0,1959.783,845.722,8986.4,186.300,1306.1,0.90,5.8,292.057,3.02,-2.11
-2004,1,12127.623,8437.6,1970.015,856.570,9025.9,187.400,1332.1,0.94,5.7,292.635,2.35,-1.42
-2004,2,12213.818,8483.2,2055.580,861.440,9115.0,189.100,1340.5,1.21,5.6,293.310,3.61,-2.41
-2004,3,12303.533,8555.8,2082.231,876.385,9175.9,190.800,1361,1.63,5.4,294.066,3.58,-1.95
-2004,4,12410.282,8654.2,2125.152,865.596,9303.4,191.800,1366.6,2.20,5.4,294.741,2.09,0.11
-2005,1,12534.113,8719.0,2170.299,869.204,9189.6,193.800,1357.8,2.69,5.3,295.308,4.15,-1.46
-2005,2,12587.535,8802.9,2131.468,870.044,9253.0,194.700,1366.6,3.01,5.1,295.994,1.85,1.16
-2005,3,12683.153,8865.6,2154.949,890.394,9308.0,199.200,1375,3.52,5,296.770,9.14,-5.62
-2005,4,12748.699,8888.5,2232.193,875.557,9358.7,199.400,1380.6,4.00,4.9,297.435,0.4,3.6
-2006,1,12915.938,8986.6,2264.721,900.511,9533.8,200.700,1380.5,4.51,4.7,298.061,2.6,1.91
-2006,2,12962.462,9035.0,2261.247,892.839,9617.3,202.700,1369.2,4.82,4.7,298.766,3.97,0.85
-2006,3,12965.916,9090.7,2229.636,892.002,9662.5,201.900,1369.4,4.90,4.7,299.593,-1.58,6.48
-2006,4,13060.679,9181.6,2165.966,894.404,9788.8,203.574,1373.6,4.92,4.4,300.320,3.3,1.62
-2007,1,13099.901,9265.1,2132.609,882.766,9830.2,205.920,1379.7,4.95,4.5,300.977,4.58,0.36
-2007,2,13203.977,9291.5,2162.214,898.713,9842.7,207.338,1370,4.72,4.5,301.714,2.75,1.97
-2007,3,13321.109,9335.6,2166.491,918.983,9883.9,209.133,1379.2,4.00,4.7,302.509,3.45,0.55
-2007,4,13391.249,9363.6,2123.426,925.110,9886.2,212.495,1377.4,3.01,4.8,303.204,6.38,-3.37
-2008,1,13366.865,9349.6,2082.886,943.372,9826.8,213.997,1384,1.56,4.9,303.803,2.82,-1.26
-2008,2,13415.266,9351.0,2026.518,961.280,10059.0,218.610,1409.3,1.74,5.4,304.483,8.53,-6.79
-2008,3,13324.600,9267.7,1990.693,991.551,9838.3,216.889,1474.7,1.17,6,305.270,-3.16,4.33
-2008,4,13141.920,9195.3,1857.661,1007.273,9920.4,212.174,1576.5,0.12,6.9,305.952,-8.79,8.91
-2009,1,12925.410,9209.2,1558.494,996.287,9926.4,212.671,1592.8,0.22,8.1,306.547,0.94,-0.71
-2009,2,12901.504,9189.0,1456.678,1023.528,10077.5,214.469,1653.6,0.18,9.2,307.226,3.37,-3.19
-2009,3,12990.341,9256.0,1486.398,1044.088,10040.6,216.385,1673.9,0.12,9.6,308.013,3.56,-3.44
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.dta b/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.dta
deleted file mode 100644
index 265fbcc..0000000
Binary files a/statsmodels/scikits/statsmodels/datasets/macrodata/macrodata.dta and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/src/macrodata.xls/macrodata.xls b/statsmodels/scikits/statsmodels/datasets/macrodata/src/macrodata.xls/macrodata.xls
deleted file mode 100644
index 2a8fbff..0000000
Binary files a/statsmodels/scikits/statsmodels/datasets/macrodata/src/macrodata.xls/macrodata.xls and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/datasets/macrodata/src/unemp.csv b/statsmodels/scikits/statsmodels/datasets/macrodata/src/unemp.csv
deleted file mode 100644
index 01864d6..0000000
--- a/statsmodels/scikits/statsmodels/datasets/macrodata/src/unemp.csv
+++ /dev/null
@@ -1,214 +0,0 @@
-Series Id: LNS14000000Q
-
-Seasonally Adjusted
-Series title: (Seas) Unemployment Rate
-Labor force status: Unemployment rate
-Type of data: Percent or rate
-Age: 16 years and over
-
-
-Series id,Year,Period,Value,
-LNS14000000Q,1959,Q01,5.8
-LNS14000000Q,1959,Q02,5.1
-LNS14000000Q,1959,Q03,5.3
-LNS14000000Q,1959,Q04,5.6
-LNS14000000Q,1960,Q01,5.2
-LNS14000000Q,1960,Q02,5.2
-LNS14000000Q,1960,Q03,5.6
-LNS14000000Q,1960,Q04,6.3
-LNS14000000Q,1961,Q01,6.8
-LNS14000000Q,1961,Q02,7.0
-LNS14000000Q,1961,Q03,6.8
-LNS14000000Q,1961,Q04,6.2
-LNS14000000Q,1962,Q01,5.6
-LNS14000000Q,1962,Q02,5.5
-LNS14000000Q,1962,Q03,5.6
-LNS14000000Q,1962,Q04,5.5
-LNS14000000Q,1963,Q01,5.8
-LNS14000000Q,1963,Q02,5.7
-LNS14000000Q,1963,Q03,5.5
-LNS14000000Q,1963,Q04,5.6
-LNS14000000Q,1964,Q01,5.5
-LNS14000000Q,1964,Q02,5.2
-LNS14000000Q,1964,Q03,5.0
-LNS14000000Q,1964,Q04,5.0
-LNS14000000Q,1965,Q01,4.9
-LNS14000000Q,1965,Q02,4.7
-LNS14000000Q,1965,Q03,4.4
-LNS14000000Q,1965,Q04,4.1
-LNS14000000Q,1966,Q01,3.9
-LNS14000000Q,1966,Q02,3.8
-LNS14000000Q,1966,Q03,3.8
-LNS14000000Q,1966,Q04,3.7
-LNS14000000Q,1967,Q01,3.8
-LNS14000000Q,1967,Q02,3.8
-LNS14000000Q,1967,Q03,3.8
-LNS14000000Q,1967,Q04,3.9
-LNS14000000Q,1968,Q01,3.7
-LNS14000000Q,1968,Q02,3.5
-LNS14000000Q,1968,Q03,3.5
-LNS14000000Q,1968,Q04,3.4
-LNS14000000Q,1969,Q01,3.4
-LNS14000000Q,1969,Q02,3.4
-LNS14000000Q,1969,Q03,3.6
-LNS14000000Q,1969,Q04,3.6
-LNS14000000Q,1970,Q01,4.2
-LNS14000000Q,1970,Q02,4.8
-LNS14000000Q,1970,Q03,5.2
-LNS14000000Q,1970,Q04,5.8
-LNS14000000Q,1971,Q01,5.9
-LNS14000000Q,1971,Q02,5.9
-LNS14000000Q,1971,Q03,6.0
-LNS14000000Q,1971,Q04,6.0
-LNS14000000Q,1972,Q01,5.8
-LNS14000000Q,1972,Q02,5.7
-LNS14000000Q,1972,Q03,5.6
-LNS14000000Q,1972,Q04,5.3
-LNS14000000Q,1973,Q01,5.0
-LNS14000000Q,1973,Q02,4.9
-LNS14000000Q,1973,Q03,4.8
-LNS14000000Q,1973,Q04,4.8
-LNS14000000Q,1974,Q01,5.1
-LNS14000000Q,1974,Q02,5.2
-LNS14000000Q,1974,Q03,5.6
-LNS14000000Q,1974,Q04,6.6
-LNS14000000Q,1975,Q01,8.2
-LNS14000000Q,1975,Q02,8.9
-LNS14000000Q,1975,Q03,8.5
-LNS14000000Q,1975,Q04,8.3
-LNS14000000Q,1976,Q01,7.7
-LNS14000000Q,1976,Q02,7.6
-LNS14000000Q,1976,Q03,7.7
-LNS14000000Q,1976,Q04,7.8
-LNS14000000Q,1977,Q01,7.5
-LNS14000000Q,1977,Q02,7.1
-LNS14000000Q,1977,Q03,6.9
-LNS14000000Q,1977,Q04,6.6
-LNS14000000Q,1978,Q01,6.3
-LNS14000000Q,1978,Q02,6.0
-LNS14000000Q,1978,Q03,6.0
-LNS14000000Q,1978,Q04,5.9
-LNS14000000Q,1979,Q01,5.9
-LNS14000000Q,1979,Q02,5.7
-LNS14000000Q,1979,Q03,5.9
-LNS14000000Q,1979,Q04,5.9
-LNS14000000Q,1980,Q01,6.3
-LNS14000000Q,1980,Q02,7.3
-LNS14000000Q,1980,Q03,7.7
-LNS14000000Q,1980,Q04,7.4
-LNS14000000Q,1981,Q01,7.4
-LNS14000000Q,1981,Q02,7.4
-LNS14000000Q,1981,Q03,7.4
-LNS14000000Q,1981,Q04,8.2
-LNS14000000Q,1982,Q01,8.8
-LNS14000000Q,1982,Q02,9.4
-LNS14000000Q,1982,Q03,9.9
-LNS14000000Q,1982,Q04,10.7
-LNS14000000Q,1983,Q01,10.4
-LNS14000000Q,1983,Q02,10.1
-LNS14000000Q,1983,Q03,9.4
-LNS14000000Q,1983,Q04,8.5
-LNS14000000Q,1984,Q01,7.9
-LNS14000000Q,1984,Q02,7.5
-LNS14000000Q,1984,Q03,7.4
-LNS14000000Q,1984,Q04,7.3
-LNS14000000Q,1985,Q01,7.3
-LNS14000000Q,1985,Q02,7.3
-LNS14000000Q,1985,Q03,7.2
-LNS14000000Q,1985,Q04,7.0
-LNS14000000Q,1986,Q01,7.0
-LNS14000000Q,1986,Q02,7.2
-LNS14000000Q,1986,Q03,7.0
-LNS14000000Q,1986,Q04,6.8
-LNS14000000Q,1987,Q01,6.6
-LNS14000000Q,1987,Q02,6.3
-LNS14000000Q,1987,Q03,6.0
-LNS14000000Q,1987,Q04,5.9
-LNS14000000Q,1988,Q01,5.7
-LNS14000000Q,1988,Q02,5.5
-LNS14000000Q,1988,Q03,5.5
-LNS14000000Q,1988,Q04,5.3
-LNS14000000Q,1989,Q01,5.2
-LNS14000000Q,1989,Q02,5.2
-LNS14000000Q,1989,Q03,5.3
-LNS14000000Q,1989,Q04,5.4
-LNS14000000Q,1990,Q01,5.3
-LNS14000000Q,1990,Q02,5.3
-LNS14000000Q,1990,Q03,5.7
-LNS14000000Q,1990,Q04,6.1
-LNS14000000Q,1991,Q01,6.6
-LNS14000000Q,1991,Q02,6.8
-LNS14000000Q,1991,Q03,6.9
-LNS14000000Q,1991,Q04,7.1
-LNS14000000Q,1992,Q01,7.4
-LNS14000000Q,1992,Q02,7.6
-LNS14000000Q,1992,Q03,7.6
-LNS14000000Q,1992,Q04,7.4
-LNS14000000Q,1993,Q01,7.2
-LNS14000000Q,1993,Q02,7.1
-LNS14000000Q,1993,Q03,6.8
-LNS14000000Q,1993,Q04,6.6
-LNS14000000Q,1994,Q01,6.6
-LNS14000000Q,1994,Q02,6.2
-LNS14000000Q,1994,Q03,6.0
-LNS14000000Q,1994,Q04,5.6
-LNS14000000Q,1995,Q01,5.5
-LNS14000000Q,1995,Q02,5.7
-LNS14000000Q,1995,Q03,5.7
-LNS14000000Q,1995,Q04,5.6
-LNS14000000Q,1996,Q01,5.5
-LNS14000000Q,1996,Q02,5.5
-LNS14000000Q,1996,Q03,5.3
-LNS14000000Q,1996,Q04,5.3
-LNS14000000Q,1997,Q01,5.2
-LNS14000000Q,1997,Q02,5.0
-LNS14000000Q,1997,Q03,4.9
-LNS14000000Q,1997,Q04,4.7
-LNS14000000Q,1998,Q01,4.6
-LNS14000000Q,1998,Q02,4.4
-LNS14000000Q,1998,Q03,4.5
-LNS14000000Q,1998,Q04,4.4
-LNS14000000Q,1999,Q01,4.3
-LNS14000000Q,1999,Q02,4.3
-LNS14000000Q,1999,Q03,4.2
-LNS14000000Q,1999,Q04,4.1
-LNS14000000Q,2000,Q01,4.0
-LNS14000000Q,2000,Q02,3.9
-LNS14000000Q,2000,Q03,4.0
-LNS14000000Q,2000,Q04,3.9
-LNS14000000Q,2001,Q01,4.2
-LNS14000000Q,2001,Q02,4.4
-LNS14000000Q,2001,Q03,4.8
-LNS14000000Q,2001,Q04,5.5
-LNS14000000Q,2002,Q01,5.7
-LNS14000000Q,2002,Q02,5.8
-LNS14000000Q,2002,Q03,5.7
-LNS14000000Q,2002,Q04,5.8
-LNS14000000Q,2003,Q01,5.9
-LNS14000000Q,2003,Q02,6.2
-LNS14000000Q,2003,Q03,6.1
-LNS14000000Q,2003,Q04,5.8
-LNS14000000Q,2004,Q01,5.7
-LNS14000000Q,2004,Q02,5.6
-LNS14000000Q,2004,Q03,5.4
-LNS14000000Q,2004,Q04,5.4
-LNS14000000Q,2005,Q01,5.3
-LNS14000000Q,2005,Q02,5.1
-LNS14000000Q,2005,Q03,5.0
-LNS14000000Q,2005,Q04,4.9
-LNS14000000Q,2006,Q01,4.7
-LNS14000000Q,2006,Q02,4.7
-LNS14000000Q,2006,Q03,4.7
-LNS14000000Q,2006,Q04,4.4
-LNS14000000Q,2007,Q01,4.5
-LNS14000000Q,2007,Q02,4.5
-LNS14000000Q,2007,Q03,4.7
-LNS14000000Q,2007,Q04,4.8
-LNS14000000Q,2008,Q01,4.9
-LNS14000000Q,2008,Q02,5.4
-LNS14000000Q,2008,Q03,6.0
-LNS14000000Q,2008,Q04,6.9
-LNS14000000Q,2009,Q01,8.1
-LNS14000000Q,2009,Q02,9.2
-LNS14000000Q,2009,Q03,9.6
-
diff --git a/statsmodels/scikits/statsmodels/datasets/nile/__init__.py b/statsmodels/scikits/statsmodels/datasets/nile/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/nile/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/nile/data.py b/statsmodels/scikits/statsmodels/datasets/nile/data.py
deleted file mode 100644
index 23a4a4e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/nile/data.py
+++ /dev/null
@@ -1,61 +0,0 @@
-"""Name of dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """E.g., This is public domain."""
-TITLE = """Title of the dataset"""
-SOURCE = """
-This section should provide a link to the original dataset if possible and
-attribution and correspondance information for the dataset's original author
-if so desired.
-"""
-
-DESCRSHORT = """A short description."""
-
-DESCRLONG = """A longer description of the dataset."""
-
-#suggested notes
-NOTE = """
-Number of observations:
-Number of variables:
-Variable name definitions:
-
-Any other useful information that does not fit into the above categories.
-"""
-
-from numpy import recfromtxt, column_stack, array
-from pandas import Series, DataFrame
-
-from scikits.statsmodels.tools import Dataset
-from os.path import dirname, abspath
-
-def load():
- """
- Load the Nile data and return a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- names = list(data.dtype.names)
- endog_name = 'volume'
- endog = array(data[endog_name], dtype=float)
- dataset = Dataset(data=data, names=[endog_name], endog=endog,
- endog_name=endog_name)
- return dataset
-
-def load_pandas():
- data = DataFrame(_get_data())
- # TODO: time series
- endog = Series(data['volume'], index=data['year'].astype(int))
- dataset = Dataset(data=data, names=list(data.columns),
- endog=endog, endog_name='volume')
- return dataset
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/nile.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/nile/nile.csv b/statsmodels/scikits/statsmodels/datasets/nile/nile.csv
deleted file mode 100644
index 25f7792..0000000
--- a/statsmodels/scikits/statsmodels/datasets/nile/nile.csv
+++ /dev/null
@@ -1,101 +0,0 @@
-year,volume
-1871,1120
-1872,1160
-1873,963
-1874,1210
-1875,1160
-1876,1160
-1877,813
-1878,1230
-1879,1370
-1880,1140
-1881,995
-1882,935
-1883,1110
-1884,994
-1885,1020
-1886,960
-1887,1180
-1888,799
-1889,958
-1890,1140
-1891,1100
-1892,1210
-1893,1150
-1894,1250
-1895,1260
-1896,1220
-1897,1030
-1898,1100
-1899,774
-1900,840
-1901,874
-1902,694
-1903,940
-1904,833
-1905,701
-1906,916
-1907,692
-1908,1020
-1909,1050
-1910,969
-1911,831
-1912,726
-1913,456
-1914,824
-1915,702
-1916,1120
-1917,1100
-1918,832
-1919,764
-1920,821
-1921,768
-1922,845
-1923,864
-1924,862
-1925,698
-1926,845
-1927,744
-1928,796
-1929,1040
-1930,759
-1931,781
-1932,865
-1933,845
-1934,944
-1935,984
-1936,897
-1937,822
-1938,1010
-1939,771
-1940,676
-1941,649
-1942,846
-1943,812
-1944,742
-1945,801
-1946,1040
-1947,860
-1948,874
-1949,848
-1950,890
-1951,744
-1952,749
-1953,838
-1954,1050
-1955,918
-1956,986
-1957,797
-1958,923
-1959,975
-1960,815
-1961,1020
-1962,906
-1963,901
-1964,1170
-1965,912
-1966,746
-1967,919
-1968,718
-1969,714
-1970,740
diff --git a/statsmodels/scikits/statsmodels/datasets/randhie/__init__.py b/statsmodels/scikits/statsmodels/datasets/randhie/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/randhie/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/randhie/data.py b/statsmodels/scikits/statsmodels/datasets/randhie/data.py
deleted file mode 100644
index 80437e5..0000000
--- a/statsmodels/scikits/statsmodels/datasets/randhie/data.py
+++ /dev/null
@@ -1,87 +0,0 @@
-"""RAND Health Insurance Experiment Data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is in the public domain."""
-TITLE = __doc__
-SOURCE = """
-The data was collected by the RAND corporation as part of the Health
-Insurance Experiment (HIE).
-
-http://www.rand.org/health/projects/hie/
-
-This data was used in::
-
- Cameron, A.C. amd Trivedi, P.K. 2005. `Microeconometrics: Methods
- and Applications,` Cambridge: New York.
-
-And was obtained from:
-
-See randhie/src for the original data and description. The data included
-here contains only a subset of the original data. The data varies slightly
-compared to that reported in Cameron and Trivedi.
-"""
-
-DESCRSHORT = """The RAND Co. Health Insurance Experiment Data"""
-
-DESCRLONG = """"""
-
-NOTE = """
-Number of observations - 20,190
-Number of variables - 10
-Variable name definitions::
-
- mdvis - Number of outpatient visits to an MD
- lncoins - ln(coinsurance + 1), 0 <= coninsurance <= 100
- idp - 1 if individual deductible plan, 0 otherwise
- lpi - ln(max(1, annual participation incentive payment))
- fmde - 0 if idp = 1; ln(max(1, MDE/(0.01 coinsurance))) otherwise
- physlm - 1 if the person has a physical limitation
- disea - number of chronic diseases
- hlthg - 1 if self-rated health is good
- hlthf - 1 if self-rated health is fair
- hlthp - 1 if self-rated health is poor
- (Omitted category is excellent self-rated health)
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-PATH = '%s/%s' % (dirname(abspath(__file__)), 'randhie.csv')
-
-def load():
- """
- Loads the RAND HIE data and returns a Dataset class.
-
- ----------
- endog - response variable, mdvis
- exog - design
-
- Returns
- Load instance:
- a class of the data with array attrbutes 'endog' and 'exog'
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Loads the RAND HIE data and returns a Dataset class.
-
- ----------
- endog - response variable, mdvis
- exog - design
-
- Returns
- Load instance:
- a class of the data with array attrbutes 'endog' and 'exog'
- """
- from pandas import read_csv
- data = read_csv(PATH)
- return du.process_recarray_pandas(data, endog_idx=0)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(PATH, "rb"), delimiter=",", names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/randhie/randhie.csv b/statsmodels/scikits/statsmodels/datasets/randhie/randhie.csv
deleted file mode 100644
index e120ec2..0000000
--- a/statsmodels/scikits/statsmodels/datasets/randhie/randhie.csv
+++ /dev/null
@@ -1,20191 +0,0 @@
-mdvis,lncoins,idp,lpi,fmde,physlm,disea,hlthg,hlthf,hlthp
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-1,0,1,6.109248,0,1,13,1,0,0
-0,0,1,6.109248,0,1,13,1,0,0
-1,0,1,6.109248,0,1,13,1,0,0
-2,0,1,6.109248,0,1,13,1,0,0
-4,0,1,6.109248,0,1,13,1,0,0
-0,0,1,6.109248,0,0,17.4,1,0,0
-0,0,1,6.109248,0,0,17.4,1,0,0
-0,0,1,6.109248,0,0,17.4,1,0,0
-0,0,1,6.109248,0,0,17.4,1,0,0
-0,0,1,6.109248,0,0,17.4,1,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-1,0,0,6.006353,0,0,4.3,1,0,0
-0,0,0,6.006353,0,0,4.3,1,0,0
-0,0,0,6.006353,0,0,4.3,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-1,0,0,6.006353,0,0,13,1,0,0
-0,0,0,6.006353,0,0,13,1,0,0
-7,0,0,6.006353,0,0,13,1,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-8,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-0,0,0,0,0,0,8.7,0,0,0
-4,4.61512,1,6.802395,0,0,17.4,1,0,0
-5,4.61512,1,6.802395,0,0,17.4,1,0,0
-14,4.61512,1,6.802395,0,0,17.4,1,0,0
-3,4.61512,1,6.802395,0,0,13,1,0,0
-3,4.61512,1,6.802395,0,0,13,1,0,0
-5,4.61512,1,6.802395,0,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,1,26.1,0,0,0
-1,3.258096,0,6.907755,8.294049,1,26.1,0,0,0
-6,3.258096,0,6.907755,8.294049,1,26.1,0,0,0
-2,3.258096,0,6.907755,8.294049,1,26.1,0,0,0
-1,3.258096,0,6.907755,8.294049,1,26.1,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,30.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,30.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,30.4,0,0,0
-15,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-6,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-4,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-4,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-3,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-21,0,0,0,0,0,13,0,1,0
-15,0,0,0,0,0,13,0,1,0
-20,0,0,0,0,0,13,0,1,0
-20,0,0,0,0,0,13,0,1,0
-17,0,0,0,0,0,13,0,1,0
-7,0,0,0,0,0,17.4,1,0,0
-8,0,0,0,0,0,17.4,1,0,0
-6,0,0,0,0,0,17.4,1,0,0
-15,0,0,0,0,0,17.4,1,0,0
-10,0,0,0,0,0,17.4,1,0,0
-6,3.931826,0,6.683361,7.376508,0,0,1,0,0
-3,3.931826,0,6.683361,7.376508,0,0,1,0,0
-7,3.931826,0,6.683361,7.376508,0,0,1,0,0
-1,3.931826,0,6.683361,7.376508,0,34.8,1,0,0
-1,3.931826,0,6.683361,7.376508,0,34.8,1,0,0
-0,3.931826,0,6.683361,7.376508,0,34.8,1,0,0
-1,3.931826,0,6.683361,7.376508,0,13,0,1,0
-1,3.931826,0,6.683361,7.376508,0,13,0,1,0
-0,3.931826,0,6.683361,7.376508,0,13,0,1,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-4,4.61512,1,6.907755,0,0,0,1,0,0
-12,4.61512,1,6.907755,0,0,0,1,0,0
-3,4.61512,1,6.907755,0,0,17.4,0,1,0
-2,4.61512,1,6.907755,0,0,17.4,0,1,0
-2,4.61512,1,6.907755,0,0,17.4,0,1,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,8.7,1,0,0
-2,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-3,4.61512,1,6.907755,0,1,13,1,0,0
-1,4.61512,1,6.907755,0,1,13,1,0,0
-4,4.61512,1,6.907755,0,1,13,1,0,0
-20,4.61512,1,6.907755,0,0,21.7,1,0,0
-15,4.61512,1,6.907755,0,0,21.7,1,0,0
-11,4.61512,1,6.907755,0,0,21.7,1,0,0
-69,0,0,6.393591,0,1,13.73189,0,1,0
-58,0,0,6.393591,0,1,13.73189,0,1,0
-63,0,0,6.393591,0,1,13.73189,0,1,0
-2,0,0,6.393591,0,1,13.73189,0,0,0
-3,0,0,6.393591,0,1,13.73189,0,0,0
-2,0,0,6.393591,0,1,13.73189,0,0,0
-11,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,17.4,0,0,0
-10,0,0,0,0,0,17.4,0,0,0
-12,0,0,0,0,0,17.4,0,0,0
-35,0,0,0,0,0,13,0,0,0
-9,0,0,0,0,0,13,0,0,0
-6,0,0,0,0,0,13,0,0,0
-6,0,0,0,0,0,13,0,0,0
-14,0,0,0,0,0,13,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,1,0,0
-4,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-16,0,0,0,0,1,21.7,1,0,0
-16,0,0,0,0,1,21.7,1,0,0
-17,0,0,0,0,1,21.7,1,0,0
-0,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13,0,0,0
-3,0,0,0,0,0,13,0,0,0
-2,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-6,0,0,0,0,0,4.3,1,0,0
-3,0,0,0,0,0,4.3,1,0,0
-3,0,0,0,0,0,4.3,1,0,0
-7,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-7,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,26.1,0,0,0
-8,0,0,0,0,0,26.1,0,0,0
-4,0,0,0,0,0,26.1,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,1,13.73189,1,0,0
-4,0,0,0,0,1,13.73189,1,0,0
-7,0,0,0,0,1,13.73189,1,0,0
-7,0,0,5.446737,0,1,13,1,0,0
-19,0,0,5.446737,0,1,13,1,0,0
-0,0,0,5.446737,0,1,13,1,0,0
-12,0,0,5.446737,0,0,17.4,0,0,0
-7,0,0,5.446737,0,0,17.4,0,0,0
-3,0,0,5.446737,0,0,17.4,0,0,0
-0,0,0,5.446737,0,0,13.73189,0,0,0
-0,0,0,5.446737,0,0,13.73189,0,0,0
-1,0,0,5.446737,0,0,13.73189,0,0,0
-9,0,0,5.446737,0,0,13.73189,0,0,0
-2,0,0,5.446737,0,0,13.73189,0,0,0
-2,0,0,5.446737,0,0,13.73189,0,0,0
-3,0,0,5.446737,0,0,13.73189,0,0,0
-3,0,0,5.446737,0,0,13.73189,0,0,0
-2,0,0,5.446737,0,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13,1,0,0
-2,3.258096,0,6.907755,8.294049,0,26.1,1,0,0
-1,3.258096,0,6.907755,8.294049,0,26.1,1,0,0
-3,3.258096,0,6.907755,8.294049,0,26.1,1,0,0
-4,3.258096,0,6.907755,8.294049,0,26.1,1,0,0
-1,3.258096,0,6.907755,8.294049,0,26.1,1,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-4,4.61512,1,6.907755,0,0,17.4,1,0,0
-3,4.61512,1,6.907755,0,0,17.4,1,0,0
-10,4.61512,1,6.907755,0,0,17.4,1,0,0
-5,4.61512,1,6.907755,0,0,17.4,1,0,0
-11,4.61512,1,6.907755,0,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-7,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-11,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-7,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-2,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-4,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-0,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-0,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-1,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-0,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-0,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-0,3.258096,0,6.300786,7.68708,0,13.73189,1,0,0
-4,4.61512,1,6.55108,0,0,17.4,0,0,0
-10,4.61512,1,6.55108,0,0,17.4,0,0,0
-1,4.61512,1,6.55108,0,0,17.4,0,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,17.4,0,0,0
-1,4.61512,1,6.907755,0,0,17.4,0,0,0
-3,4.61512,1,6.907755,0,0,17.4,0,0,0
-3,4.61512,1,5.843544,0,0,4.3,0,0,0
-2,4.61512,1,5.843544,0,0,4.3,0,0,0
-1,4.61512,1,5.843544,0,0,4.3,0,0,0
-1,4.61512,1,5.843544,0,0,4.3,0,0,0
-2,4.61512,1,5.843544,0,0,4.3,0,0,0
-0,0,0,0,0,0,17.4,1,0,0
-0,0,0,0,0,0,17.4,1,0,0
-0,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-0,0,0,0,0,0,17.4,1,0,0
-6,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-5,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-11,4.61512,1,6.907755,0,1,8.7,1,0,0
-44,4.61512,1,6.907755,0,1,8.7,1,0,0
-7,4.61512,1,6.907755,0,1,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-3,4.61512,1,6.907755,0,0,13,1,0,0
-0,4.61512,1,6.907755,0,1,13.73189,1,0,0
-3,4.61512,1,6.907755,0,1,13.73189,1,0,0
-1,4.61512,1,6.907755,0,1,13.73189,1,0,0
-8,4.61512,1,6.907755,0,1,39.1,0,1,0
-6,4.61512,1,6.907755,0,1,39.1,0,1,0
-3,4.61512,1,6.907755,0,1,39.1,0,1,0
-3,3.258096,0,5.420535,6.806829,1,21.7,1,0,0
-3,3.258096,0,5.420535,6.806829,1,21.7,1,0,0
-3,3.258096,0,5.420535,6.806829,1,21.7,1,0,0
-2,3.258096,0,6.272877,7.659172,0,8.7,0,0,0
-1,3.258096,0,6.272877,7.659172,0,8.7,0,0,0
-1,3.258096,0,6.272877,7.659172,0,8.7,0,0,0
-3,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-17,4.61512,1,6.907755,0,0,13.73189,1,0,0
-21,4.61512,1,6.907755,0,0,13.73189,1,0,0
-5,4.61512,1,6.907755,0,1,39.1,1,0,0
-5,4.61512,1,6.907755,0,1,39.1,1,0,0
-3,4.61512,1,6.907755,0,1,39.1,1,0,0
-10,0,0,0,0,1,13.73189,0,0,1
-1,0,0,0,0,1,13.73189,0,0,1
-1,0,0,0,0,1,13.73189,0,0,1
-2,0,0,0,0,1,13.73189,0,0,1
-1,0,0,0,0,1,13.73189,0,0,1
-2,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-7,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-9,0,0,0,0,1,13.73189,0,1,0
-9,0,0,0,0,1,13.73189,0,1,0
-10,0,0,0,0,1,13.73189,0,1,0
-2,3.258096,0,5.720312,7.106606,0,13.73189,0,1,0
-5,3.258096,0,5.720312,7.106606,0,13.73189,0,1,0
-9,3.258096,0,5.720312,7.106606,0,13.73189,0,1,0
-48,3.258096,0,5.720312,7.106606,0,13.73189,0,1,0
-8,3.258096,0,5.720312,7.106606,0,13.73189,0,1,0
-5,4.61512,1,6.907755,0,0,4.3,0,0,0
-8,4.61512,1,6.907755,0,0,4.3,0,0,0
-14,4.61512,1,6.907755,0,0,4.3,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-10,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-7,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,21.7,0,0,0
-2,4.61512,1,6.907755,0,0,21.7,0,0,0
-2,4.61512,1,6.907755,0,0,21.7,0,0,0
-1,4.61512,1,6.907755,0,0,0,0,0,0
-0,4.61512,1,6.907755,0,0,0,0,0,0
-0,4.61512,1,6.907755,0,0,0,0,0,0
-30,3.258096,0,6.907755,8.294049,1,43.5,0,0,1
-25,3.258096,0,6.907755,8.294049,1,43.5,0,0,1
-18,3.258096,0,6.907755,8.294049,1,43.5,0,0,1
-15,3.258096,0,6.907755,8.294049,1,43.5,0,0,1
-20,3.258096,0,6.907755,8.294049,1,43.5,0,0,1
-45,3.258096,0,6.907755,8.294049,1,43.5,1,0,0
-28,3.258096,0,6.907755,8.294049,1,43.5,1,0,0
-14,3.258096,0,6.907755,8.294049,1,43.5,1,0,0
-14,3.258096,0,6.907755,8.294049,1,43.5,1,0,0
-28,3.258096,0,6.907755,8.294049,1,43.5,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-7,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-0,4.61512,1,5.883322,0,0,0,1,0,0
-0,4.61512,1,5.883322,0,0,0,1,0,0
-1,4.61512,1,5.883322,0,0,0,1,0,0
-0,4.61512,1,5.883322,0,0,13.73189,0,0,0
-0,4.61512,1,5.883322,0,0,13.73189,0,0,0
-2,4.61512,1,5.883322,0,0,13.73189,0,0,0
-0,4.61512,1,5.883322,0,0,26.1,0,0,0
-0,4.61512,1,5.883322,0,0,26.1,0,0,0
-0,4.61512,1,5.883322,0,0,26.1,0,0,0
-2,4.61512,1,6.907755,0,0,8.7,1,0,0
-2,4.61512,1,6.907755,0,0,8.7,1,0,0
-7,4.61512,1,6.907755,0,0,26.1,0,1,0
-4,4.61512,1,6.907755,0,0,26.1,0,1,0
-9,4.61512,1,6.907755,0,0,26.1,0,1,0
-10,4.61512,1,6.907755,0,0,26.1,0,1,0
-9,4.61512,1,6.907755,0,0,26.1,0,1,0
-5,4.61512,1,6.907755,0,0,8.7,1,0,0
-9,4.61512,1,6.907755,0,0,8.7,1,0,0
-7,4.61512,1,6.907755,0,0,8.7,1,0,0
-3,4.61512,1,6.907755,0,0,8.7,1,0,0
-4,4.61512,1,6.907755,0,0,8.7,1,0,0
-3,4.61512,1,6.907755,0,1,8.7,1,0,0
-3,4.61512,1,6.907755,0,1,8.7,1,0,0
-1,4.61512,1,6.907755,0,1,8.7,1,0,0
-0,4.61512,1,6.907755,0,1,8.7,1,0,0
-3,4.61512,1,6.907755,0,1,8.7,1,0,0
-4,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-3,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,1,13.73189,0,1,0
-0,4.61512,1,6.907755,0,1,13.73189,0,1,0
-1,4.61512,1,6.907755,0,1,13.73189,0,1,0
-3,4.61512,1,6.907755,0,1,13.73189,0,1,0
-1,4.61512,1,6.907755,0,1,13.73189,0,1,0
-2,0,0,0,0,1,17.4,1,0,0
-1,0,0,0,0,1,17.4,1,0,0
-3,0,0,0,0,1,17.4,1,0,0
-0,0,0,0,0,1,17.4,1,0,0
-1,0,0,0,0,1,17.4,1,0,0
-0,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-3,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-4,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,4.61512,1,5.703783,0,0,13.73189,1,0,0
-1,4.61512,1,5.703783,0,0,13.73189,1,0,0
-1,4.61512,1,5.703783,0,0,13.73189,1,0,0
-0,4.61512,1,5.703783,0,0,13.73189,1,0,0
-5,4.61512,1,5.703783,0,0,13.73189,1,0,0
-1,4.61512,1,5.703783,0,0,13.73189,1,0,0
-6,4.61512,1,5.703783,0,0,13.73189,0,0,0
-1,4.61512,1,5.703783,0,0,13.73189,0,0,0
-3,4.61512,1,5.703783,0,0,13.73189,0,0,0
-4,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-8,0,0,0,0,0,4.3,0,0,0
-3,0,0,0,0,0,4.3,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-0,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-7,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-5,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13,1,0,0
-6,3.931826,0,6.907755,7.600903,0,13,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13,1,0,0
-10,0,0,0,0,0,17.4,0,0,0
-7,0,0,0,0,0,17.4,0,0,0
-8,0,0,0,0,0,17.4,0,0,0
-4,0,0,0,0,0,17.4,0,0,0
-3,0,0,0,0,0,17.4,0,0,0
-10,0,0,0,0,0,17.4,0,0,0
-15,0,0,0,0,0,17.4,0,0,0
-16,0,0,0,0,0,17.4,0,0,0
-3,0,0,0,0,0,17.4,0,0,0
-6,0,0,0,0,0,17.4,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-14,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-13,0,0,0,0,0,13.73189,0,0,0
-1,0,0,6.198479,0,0,13.73189,0,0,0
-9,0,0,6.198479,0,0,13.73189,0,0,0
-1,0,0,6.198479,0,0,13.73189,0,0,0
-2,0,0,6.198479,0,0,13.73189,0,0,0
-2,0,0,6.198479,0,0,13.73189,0,0,0
-2,0,0,6.198479,0,0,13.73189,0,0,0
-5,0,0,6.198479,0,0,13.73189,0,0,0
-2,0,0,6.198479,0,0,13.73189,0,0,0
-2,0,0,6.198479,0,0,13.73189,0,0,0
-6,0,0,6.198479,0,0,13.73189,0,0,0
-0,0,0,6.198479,0,0,13.73189,1,0,0
-0,0,0,6.198479,0,0,13.73189,1,0,0
-0,0,0,6.198479,0,0,13.73189,1,0,0
-2,0,0,6.198479,0,0,13.73189,1,0,0
-2,0,0,6.198479,0,0,13.73189,1,0,0
-6,0,0,5.662961,0,0,13.73189,0,0,0
-4,0,0,5.662961,0,0,13.73189,0,0,0
-5,0,0,5.662961,0,0,13.73189,0,0,0
-1,0,0,5.662961,0,0,13.73189,0,0,0
-2,0,0,5.662961,0,0,13.73189,0,0,0
-4,0,0,5.662961,0,0,13.73189,0,0,0
-4,0,0,5.662961,0,0,13.73189,0,0,0
-1,0,0,5.662961,0,0,13.73189,0,0,0
-1,0,0,5.662961,0,0,13.73189,0,0,0
-2,0,0,5.662961,0,0,13.73189,0,0,0
-10,0,0,5.662961,0,0,13.73189,0,0,0
-7,0,0,5.662961,0,0,13.73189,0,0,0
-5,0,0,5.662961,0,0,13.73189,0,0,0
-4,0,0,5.662961,0,0,13.73189,0,0,0
-4,0,0,5.662961,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-3,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-6,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-4,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-2,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-7,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-6,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-1,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-0,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-2,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-0,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-0,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-5,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-3,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-0,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-1,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-8,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-7,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-1,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-3,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-2,3.931826,0,6.395262,7.088409,0,13.73189,0,0,0
-1,3.931826,0,6.576469,7.269617,0,13.73189,0,0,0
-4,3.931826,0,6.576469,7.269617,0,13.73189,0,0,0
-1,3.931826,0,6.576469,7.269617,0,13.73189,0,0,0
-5,3.931826,0,6.576469,7.269617,0,13.73189,1,0,0
-1,3.931826,0,6.576469,7.269617,0,13.73189,1,0,0
-2,3.931826,0,6.576469,7.269617,0,13.73189,1,0,0
-13,3.931826,0,6.576469,7.269617,0,13.73189,0,1,0
-12,3.931826,0,6.576469,7.269617,0,13.73189,0,1,0
-13,3.931826,0,6.576469,7.269617,0,13.73189,0,1,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,0,1,4.532599,0,0,13,0,0,0
-4,0,1,4.532599,0,0,13,0,0,0
-0,0,1,4.532599,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-2,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-4,0,0,5.777652,0,0,13.73189,1,0,0
-4,0,0,5.777652,0,0,13.73189,1,0,0
-4,0,0,5.777652,0,0,13.73189,1,0,0
-1,0,0,5.777652,0,0,13.73189,1,0,0
-3,0,0,5.777652,0,0,13.73189,1,0,0
-3,0,0,5.777652,0,0,13.73189,1,0,0
-12,0,0,5.777652,0,0,13.73189,1,0,0
-14,0,0,5.777652,0,0,13.73189,1,0,0
-5,0,0,5.777652,0,0,13.73189,1,0,0
-10,0,0,5.777652,0,0,13.73189,1,0,0
-4,0,0,5.777652,0,0,13.73189,0,1,0
-4,0,0,5.777652,0,0,13.73189,0,1,0
-4,0,0,5.777652,0,0,13.73189,0,1,0
-3,0,0,5.777652,0,0,13.73189,0,1,0
-3,0,0,5.777652,0,0,13.73189,0,1,0
-3,0,0,5.777652,0,0,13.73189,1,0,0
-2,0,0,5.777652,0,0,13.73189,1,0,0
-1,0,0,5.777652,0,0,13.73189,1,0,0
-5,0,0,5.777652,0,0,13.73189,1,0,0
-1,0,0,5.777652,0,0,13.73189,1,0,0
-19,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-15,4.61512,1,6.907755,0,0,13.73189,1,0,0
-10,4.61512,1,6.907755,0,0,13.73189,1,0,0
-7,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,0,1,5.703783,0,0,8.7,1,0,0
-0,0,1,5.703783,0,0,8.7,1,0,0
-0,0,1,5.703783,0,0,8.7,1,0,0
-1,0,1,5.703783,0,0,8.7,1,0,0
-0,0,1,5.703783,0,0,8.7,1,0,0
-5,0,1,5.703783,0,1,17.4,1,0,0
-2,0,1,5.703783,0,1,17.4,1,0,0
-0,0,1,5.703783,0,1,17.4,1,0,0
-3,0,1,5.703783,0,1,17.4,1,0,0
-4,0,1,5.703783,0,1,17.4,1,0,0
-0,0,1,6.272877,0,0,0,0,0,0
-1,0,1,6.272877,0,0,0,0,0,0
-3,0,1,6.272877,0,0,0,0,0,0
-1,0,1,6.272877,0,0,13.73189,0,0,0
-0,0,1,6.272877,0,0,13.73189,0,0,0
-4,0,1,6.272877,0,0,13.73189,0,0,0
-4,0,1,6.272877,0,0,13,0,0,0
-2,0,1,6.272877,0,0,13,0,0,0
-6,0,1,6.272877,0,0,13,0,0,0
-1,0,1,6.272877,0,0,13.73189,0,0,0
-2,0,1,6.272877,0,0,13.73189,0,0,0
-5,0,1,6.272877,0,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-4,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-7,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-6,3.258096,0,6.907755,8.294049,1,0,0,0,0
-4,3.258096,0,6.907755,8.294049,1,0,0,0,0
-0,3.258096,0,6.907755,8.294049,1,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-3,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-14,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-0,0,1,4.727388,0,0,0,0,0,0
-0,0,1,4.727388,0,0,0,0,0,0
-1,0,1,4.727388,0,0,0,0,0,0
-2,0,1,4.727388,0,0,0,0,0,0
-2,0,1,4.727388,0,0,0,0,0,0
-2,0,1,4.727388,0,0,13,0,0,0
-0,0,1,4.727388,0,0,13,0,0,0
-0,0,1,4.727388,0,0,13,0,0,0
-7,0,1,4.727388,0,0,13,0,0,0
-3,0,1,4.727388,0,0,13,0,0,0
-3,0,1,4.727388,0,0,8.7,0,0,0
-3,0,1,4.727388,0,0,8.7,0,0,0
-3,0,1,4.727388,0,0,8.7,0,0,0
-0,0,1,4.727388,0,0,8.7,0,0,0
-0,0,1,4.727388,0,0,8.7,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-4,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-0,0,1,0,0,1,13.73189,0,0,1
-0,0,1,0,0,1,13.73189,0,0,1
-0,0,1,0,0,1,13.73189,0,0,1
-2,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-2,0,1,0,0,0,13.73189,1,0,0
-0,3.258096,0,5.828946,7.21524,0,13.73189,1,0,0
-1,3.258096,0,5.828946,7.21524,0,13.73189,1,0,0
-0,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-0,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-3,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-2,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-0,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-0,3.258096,0,5.828946,7.21524,0,4.3,1,0,0
-0,3.258096,0,5.828946,7.21524,0,13.73189,1,0,0
-0,3.258096,0,5.828946,7.21524,0,13.73189,1,0,0
-0,3.258096,0,5.828946,7.21524,0,8.7,0,1,0
-5,3.258096,0,5.828946,7.21524,0,8.7,0,1,0
-2,0,1,5.703783,0,0,13.73189,1,0,0
-6,0,1,5.703783,0,0,13.73189,1,0,0
-0,0,1,5.703783,0,0,13.73189,1,0,0
-0,0,1,5.703783,0,0,13.73189,0,0,0
-0,0,1,5.703783,0,0,13.73189,0,0,0
-2,0,1,5.703783,0,0,13.73189,0,0,0
-35,0,1,5.986452,0,1,13.73189,1,0,0
-20,0,1,5.986452,0,1,13.73189,1,0,0
-16,0,1,5.986452,0,1,13.73189,1,0,0
-9,0,1,5.986452,0,1,13.73189,1,0,0
-16,0,1,5.986452,0,1,13.73189,1,0,0
-22,0,1,5.986452,0,0,13.73189,1,0,0
-9,0,1,5.986452,0,0,13.73189,1,0,0
-13,0,1,5.986452,0,0,13.73189,1,0,0
-8,0,1,5.986452,0,0,13.73189,1,0,0
-5,0,1,5.986452,0,0,13.73189,1,0,0
-1,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-1,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-1,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-3,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-8,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-7,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-2,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-2,4.61512,1,6.684612,0,0,13.73189,1,0,0
-3,4.61512,1,6.684612,0,0,13.73189,1,0,0
-1,4.61512,1,6.684612,0,0,13.73189,1,0,0
-1,4.61512,1,6.684612,0,0,13.73189,1,0,0
-4,4.61512,1,6.684612,0,0,13.73189,1,0,0
-15,4.61512,1,6.684612,0,0,13.73189,1,0,0
-9,4.61512,1,6.684612,0,0,13.73189,1,0,0
-10,4.61512,1,6.684612,0,0,13.73189,1,0,0
-2,4.61512,1,6.684612,0,0,13.73189,1,0,0
-4,4.61512,1,6.684612,0,0,13.73189,1,0,0
-4,4.61512,1,6.684612,0,0,13.73189,1,0,0
-2,4.61512,1,6.684612,0,0,13.73189,1,0,0
-0,4.61512,1,6.684612,0,0,13.73189,1,0,0
-3,4.61512,1,6.684612,0,0,13.73189,1,0,0
-0,4.61512,1,6.684612,0,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,0,17.4,0,0,1
-2,3.258096,0,6.907755,8.294049,0,17.4,0,0,1
-5,3.258096,0,6.907755,8.294049,0,17.4,0,0,1
-9,3.258096,0,6.907755,8.294049,1,30.4,0,0,1
-2,3.258096,0,6.907755,8.294049,1,30.4,0,0,1
-8,3.258096,0,6.907755,8.294049,1,30.4,0,0,1
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13,0,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-7,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-5,0,0,4.543295,0,1,34.8,1,0,0
-5,0,0,4.543295,0,1,34.8,1,0,0
-8,0,0,4.543295,0,1,34.8,1,0,0
-7,0,0,4.543295,0,1,34.8,1,0,0
-6,0,0,4.543295,0,1,34.8,1,0,0
-0,4.61512,1,6.826545,0,0,13.73189,1,0,0
-3,4.61512,1,6.826545,0,0,13.73189,1,0,0
-5,4.61512,1,6.826545,0,0,13.73189,1,0,0
-0,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-5,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-5,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-7,0,0,0,0,0,17.4,1,0,0
-1,0,0,0,0,0,17.4,1,0,0
-1,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-4,0,0,0,0,0,17.4,1,0,0
-2,3.931826,0,6.855409,7.548556,0,8.7,0,0,0
-0,3.931826,0,6.855409,7.548556,0,8.7,0,0,0
-1,3.931826,0,6.855409,7.548556,0,8.7,0,0,0
-1,3.931826,0,6.855409,7.548556,0,8.7,0,0,0
-0,3.931826,0,6.855409,7.548556,0,8.7,0,0,0
-8,3.931826,0,6.855409,7.548556,0,21.7,0,0,0
-1,3.931826,0,6.855409,7.548556,0,21.7,0,0,0
-5,3.931826,0,6.855409,7.548556,0,21.7,0,0,0
-3,3.931826,0,6.855409,7.548556,0,21.7,0,0,0
-7,3.931826,0,6.855409,7.548556,0,21.7,0,0,0
-0,3.258096,0,0,0,0,17.4,0,0,0
-0,3.258096,0,0,0,0,17.4,0,0,0
-0,3.258096,0,0,0,0,17.4,0,0,0
-0,3.258096,0,0,0,0,17.4,0,0,0
-1,3.258096,0,0,0,0,17.4,0,0,0
-5,3.258096,0,0,0,0,30.4,0,0,0
-2,3.258096,0,0,0,0,30.4,0,0,0
-2,3.258096,0,0,0,0,30.4,0,0,0
-0,3.258096,0,0,0,0,30.4,0,0,0
-1,3.258096,0,0,0,0,30.4,0,0,0
-0,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-2,3.258096,0,0,0,0,13.73189,0,0,0
-3,3.258096,0,0,0,0,13.73189,0,0,0
-3,3.258096,0,0,0,0,13.73189,0,0,0
-0,3.258096,0,0,0,0,13.73189,0,0,0
-2,3.258096,0,0,0,0,13.73189,0,0,0
-0,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-3,3.258096,0,0,0,0,13.73189,0,0,0
-3,3.258096,0,0,0,0,13.73189,0,0,0
-0,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-2,3.258096,0,0,0,0,13.73189,0,0,0
-2,3.258096,0,0,0,0,13.73189,0,0,0
-0,3.258096,0,0,0,0,13.73189,0,0,0
-1,3.258096,0,0,0,0,13.73189,0,0,0
-5,3.258096,0,0,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-0,4.61512,1,6.907755,0,0,0,1,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-4,3.258096,0,5.926926,7.313221,0,13,1,0,0
-0,3.258096,0,5.926926,7.313221,0,13,1,0,0
-0,3.258096,0,5.926926,7.313221,0,13,1,0,0
-0,3.258096,0,5.926926,7.313221,0,13,1,0,0
-0,3.258096,0,5.926926,7.313221,0,13,1,0,0
-2,4.61512,1,6.907755,0,1,13.73189,1,0,0
-1,4.61512,1,6.907755,0,1,13.73189,1,0,0
-0,4.61512,1,6.907755,0,1,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-8,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,21.7,1,0,0
-12,4.61512,1,6.907755,0,0,21.7,1,0,0
-18,4.61512,1,6.907755,0,0,21.7,1,0,0
-8,4.61512,1,6.907755,0,0,13,0,0,0
-4,4.61512,1,6.907755,0,0,13,0,0,0
-13,4.61512,1,6.907755,0,0,13,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13,0,0,0
-2,4.61512,1,6.907755,0,0,13,0,0,0
-4,4.61512,1,6.907755,0,0,13,0,0,0
-6,4.61512,1,6.907755,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,13,0,0,0
-8,4.61512,1,6.907755,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-7,4.61512,1,6.907755,0,0,8.7,0,0,0
-1,3.258096,0,6.683361,8.069655,0,30.4,1,0,0
-1,3.258096,0,6.683361,8.069655,0,30.4,1,0,0
-2,3.258096,0,6.683361,8.069655,0,30.4,1,0,0
-12,3.258096,0,6.683361,8.069655,0,30.4,1,0,0
-3,3.258096,0,6.683361,8.069655,0,30.4,1,0,0
-4,3.258096,0,6.683361,8.069655,0,13.73189,1,0,0
-2,3.258096,0,6.683361,8.069655,0,13.73189,1,0,0
-3,3.258096,0,6.683361,8.069655,0,13.73189,1,0,0
-2,3.258096,0,6.683361,8.069655,0,13.73189,1,0,0
-2,3.258096,0,6.683361,8.069655,0,13.73189,1,0,0
-2,3.258096,0,6.683361,8.069655,1,30.4,1,0,0
-1,3.258096,0,6.683361,8.069655,1,30.4,1,0,0
-2,3.258096,0,6.683361,8.069655,1,30.4,1,0,0
-3,3.258096,0,6.683361,8.069655,1,30.4,1,0,0
-3,3.258096,0,6.683361,8.069655,1,30.4,1,0,0
-0,3.258096,0,5.556828,6.943122,0,4.3,1,0,0
-0,3.258096,0,5.556828,6.943122,0,4.3,1,0,0
-0,3.258096,0,5.556828,6.943122,0,4.3,1,0,0
-0,3.258096,0,5.556828,6.943122,0,4.3,1,0,0
-0,3.258096,0,5.556828,6.943122,0,4.3,1,0,0
-7,0,0,6.139884,0,0,13.73189,0,0,0
-6,0,0,6.139884,0,0,13.73189,0,0,0
-12,0,0,6.139884,0,0,13.73189,0,0,0
-5,0,0,6.139884,0,0,13.73189,1,0,0
-10,0,0,6.139884,0,0,13.73189,1,0,0
-5,0,0,6.139884,0,0,13.73189,1,0,0
-3,0,0,6.139884,0,0,13.73189,0,0,0
-7,0,0,6.139884,0,0,13.73189,0,0,0
-0,0,0,6.139884,0,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-8,3.931826,0,6.907755,7.600903,0,13,0,0,0
-8,3.931826,0,6.907755,7.600903,0,13,0,0,0
-8,3.931826,0,6.907755,7.600903,0,13,0,0,0
-5,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-2,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-3,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-6,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-4,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-5,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-7,0,1,5.313206,0,0,13,0,0,0
-9,0,1,5.313206,0,0,13,0,0,0
-5,0,1,5.313206,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,17.4,0,1,0
-0,4.61512,1,6.907755,0,0,17.4,0,1,0
-0,4.61512,1,6.907755,0,0,17.4,0,1,0
-1,4.61512,1,6.907755,0,0,30.4,1,0,0
-0,4.61512,1,6.907755,0,0,30.4,1,0,0
-0,4.61512,1,6.907755,0,0,30.4,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-6,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-4,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-3,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-8,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13,0,0,0
-3,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-2,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-6,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-11,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-4,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.519147,7.905442,0,8.7,0,0,0
-3,3.258096,0,6.519147,7.905442,0,8.7,0,0,0
-2,3.258096,0,6.519147,7.905442,0,8.7,0,0,0
-5,3.258096,0,6.519147,7.905442,0,8.7,0,0,0
-5,3.258096,0,6.519147,7.905442,0,8.7,0,0,0
-6,3.258096,0,6.519147,7.905442,0,13.73189,0,0,0
-1,3.258096,0,6.519147,7.905442,0,13.73189,0,0,0
-1,3.258096,0,6.519147,7.905442,0,13.73189,0,0,0
-0,3.258096,0,6.519147,7.905442,0,13.73189,0,0,0
-2,3.258096,0,6.519147,7.905442,0,13.73189,0,0,0
-0,3.258096,0,6.519147,7.905442,0,17.4,0,0,0
-1,3.258096,0,6.519147,7.905442,0,17.4,0,0,0
-1,3.258096,0,6.519147,7.905442,0,17.4,0,0,0
-3,3.258096,0,6.519147,7.905442,0,17.4,0,0,0
-5,3.258096,0,6.519147,7.905442,0,17.4,0,0,0
-0,3.258096,0,0,6.57368,0,0,0,0,0
-0,3.258096,0,0,6.57368,0,0,0,0,0
-0,3.258096,0,0,6.57368,0,0,0,0,0
-1,3.258096,0,0,6.57368,0,0,0,0,0
-0,3.258096,0,0,6.57368,0,0,0,0,0
-2,3.931826,0,0,0,0,13.73189,0,0,0
-5,3.931826,0,0,0,0,13.73189,0,0,0
-7,3.931826,0,0,0,0,13.73189,0,0,0
-7,3.931826,0,0,0,0,13.73189,0,0,0
-4,3.931826,0,0,0,0,13.73189,0,0,0
-1,3.931826,0,0,0,0,13.73189,0,0,0
-9,3.931826,0,0,0,1,13.73189,1,0,0
-7,3.931826,0,0,0,1,13.73189,1,0,0
-14,3.931826,0,0,0,1,13.73189,1,0,0
-11,3.931826,0,0,0,0,13.73189,0,0,0
-16,3.931826,0,0,0,0,13.73189,0,0,0
-15,3.931826,0,0,0,0,13.73189,0,0,0
-4,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-1,0,1,6.109248,0,0,17.4,0,0,0
-0,0,1,6.109248,0,0,17.4,0,0,0
-0,0,1,6.109248,0,0,17.4,0,0,0
-4,0,1,6.109248,0,0,13,0,0,0
-0,0,1,6.109248,0,0,13,0,0,0
-3,0,1,6.109248,0,0,13,0,0,0
-19,0,0,0,0,0,13,0,0,0
-3,0,0,0,0,0,13,0,0,0
-10,0,0,0,0,0,13,0,0,0
-7,0,0,0,0,0,17.4,0,0,0
-9,0,0,0,0,0,17.4,0,0,0
-6,0,0,0,0,0,17.4,0,0,0
-5,0,0,0,0,0,13,0,0,0
-10,0,0,0,0,0,13,0,0,0
-1,0,0,0,0,0,13,0,0,0
-6,0,0,3.951244,0,0,4.3,0,0,0
-4,0,0,3.951244,0,0,4.3,0,0,0
-7,0,0,3.951244,0,0,4.3,0,0,0
-15,3.258096,0,6.57368,7.959975,0,13.73189,0,0,0
-16,3.258096,0,6.57368,7.959975,0,13.73189,0,0,0
-3,3.258096,0,6.57368,7.959975,0,13.73189,0,0,0
-1,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-3,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-9,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-1,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,.12982,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,.12982,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,.12982,13.73189,1,0,0
-1,3.258096,0,6.214608,7.600903,.12982,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,.12982,13.73189,1,0,0
-3,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-0,3.258096,0,6.214608,7.600903,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,17.4,1,0,0
-7,4.61512,1,6.907755,0,0,17.4,1,0,0
-14,4.61512,1,6.907755,0,0,17.4,1,0,0
-5,3.258096,0,6.120297,7.506592,0,13,0,0,0
-4,3.258096,0,6.120297,7.506592,0,13,0,0,0
-1,3.258096,0,6.120297,7.506592,0,13,0,0,0
-4,3.258096,0,6.120297,7.506592,0,13,0,0,0
-3,3.258096,0,6.120297,7.506592,0,13,0,0,0
-0,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-2,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-5,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-0,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-0,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-1,3.258096,0,6.120297,7.506592,0,4.3,0,0,0
-1,3.258096,0,6.120297,7.506592,0,4.3,0,0,0
-1,3.258096,0,6.120297,7.506592,0,4.3,0,0,0
-0,3.258096,0,6.120297,7.506592,0,4.3,0,0,0
-1,3.258096,0,6.120297,7.506592,0,4.3,0,0,0
-1,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-3,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-3,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-2,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-2,3.258096,0,6.120297,7.506592,0,13.73189,0,0,0
-0,0,1,6.131227,0,0,17.4,1,0,0
-4,0,1,6.131227,0,0,17.4,1,0,0
-1,0,1,6.131227,0,0,17.4,1,0,0
-0,0,1,6.131227,0,0,17.4,1,0,0
-0,0,1,6.131227,0,0,17.4,1,0,0
-1,0,1,6.131227,0,0,13.73189,1,0,0
-1,0,1,6.131227,0,0,13.73189,1,0,0
-3,0,1,6.131227,0,0,13.73189,1,0,0
-5,0,1,6.131227,0,0,13.73189,1,0,0
-1,0,1,6.131227,0,0,13.73189,1,0,0
-0,0,1,6.131227,0,0,4.3,1,0,0
-0,0,1,6.131227,0,0,4.3,1,0,0
-1,0,1,6.131227,0,0,4.3,1,0,0
-2,0,1,6.131227,0,0,4.3,1,0,0
-12,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-10,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-17,3.258096,0,6.684612,8.070906,1,26.1,1,0,0
-10,3.258096,0,6.684612,8.070906,1,26.1,1,0,0
-8,3.258096,0,6.684612,8.070906,1,26.1,1,0,0
-6,3.258096,0,6.684612,8.070906,1,26.1,1,0,0
-1,3.258096,0,6.684612,8.070906,1,26.1,1,0,0
-8,3.258096,0,6.684612,8.070906,1,21.7,0,1,0
-5,3.258096,0,6.684612,8.070906,1,21.7,0,1,0
-4,3.258096,0,6.684612,8.070906,1,21.7,0,1,0
-2,3.258096,0,6.684612,8.070906,1,21.7,0,1,0
-4,3.258096,0,6.684612,8.070906,1,21.7,0,1,0
-11,3.258096,0,6.684612,8.070906,0,13,0,0,0
-6,3.258096,0,6.684612,8.070906,0,13,0,0,0
-6,3.258096,0,6.684612,8.070906,0,13,0,0,0
-2,3.258096,0,6.684612,8.070906,0,13,0,0,0
-7,3.258096,0,6.684612,8.070906,0,13,0,0,0
-0,3.258096,0,6.736967,8.123261,0,13.73189,0,0,0
-0,3.258096,0,6.736967,8.123261,0,13.73189,0,0,0
-0,3.258096,0,6.736967,8.123261,0,13.73189,0,0,0
-14,4.61512,1,0,0,1,26.1,0,0,0
-3,4.61512,1,0,0,1,26.1,0,0,0
-7,0,1,6.109248,0,0,21.7,1,0,0
-3,0,1,6.109248,0,0,21.7,1,0,0
-2,0,1,6.109248,0,0,21.7,1,0,0
-1,0,1,6.109248,0,0,13,1,0,0
-3,0,1,6.109248,0,0,13,1,0,0
-2,0,1,6.109248,0,0,13,1,0,0
-8,0,1,6.109248,0,0,8.7,1,0,0
-14,0,1,6.109248,0,0,8.7,1,0,0
-6,0,1,6.109248,0,0,8.7,1,0,0
-0,3.931826,0,6.109248,5.786897,0,13.73189,1,0,0
-0,3.931826,0,6.109248,5.786897,0,13.73189,1,0,0
-2,3.931826,0,6.109248,5.786897,0,13.73189,1,0,0
-0,3.931826,0,6.109248,5.786897,0,13.73189,1,0,0
-5,3.931826,0,6.109248,5.786897,0,13.73189,1,0,0
-4,3.931826,0,6.109248,5.786897,0,26.1,1,0,0
-0,3.931826,0,6.109248,5.786897,0,26.1,1,0,0
-9,3.931826,0,6.109248,5.786897,0,26.1,1,0,0
-2,3.931826,0,6.109248,5.786897,0,26.1,1,0,0
-7,3.931826,0,6.109248,5.786897,0,26.1,1,0,0
-9,3.931826,0,6.109248,5.786897,0,13,1,0,0
-3,3.931826,0,6.109248,5.786897,0,13,1,0,0
-7,3.931826,0,6.109248,5.786897,0,13,1,0,0
-4,3.931826,0,6.109248,5.786897,0,13,1,0,0
-5,3.931826,0,6.109248,5.786897,0,13,1,0,0
-10,3.258096,0,6.907755,8.294049,0,21.7,0,1,0
-2,3.258096,0,6.907755,8.294049,0,21.7,0,1,0
-6,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-10,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,1,0,0
-7,4.61512,1,6.907755,0,0,13.73189,1,0,0
-10,4.61512,1,6.907755,0,0,13.73189,1,0,0
-5,4.61512,1,6.907755,0,0,13.73189,1,0,0
-6,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-12,3.931826,0,6.907755,7.600903,1,26.1,1,0,0
-17,3.931826,0,6.907755,7.600903,1,26.1,1,0,0
-0,3.931826,0,6.907755,7.600903,1,26.1,1,0,0
-2,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-1,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-0,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-4,4.61512,1,6.907755,0,0,8.7,1,0,0
-3,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-0,4.61512,1,6.907755,0,0,8.7,1,0,0
-0,4.61512,1,6.907755,0,0,0,0,0,0
-0,4.61512,1,6.907755,0,0,0,0,0,0
-3,4.61512,1,6.907755,0,0,0,0,0,0
-2,4.61512,1,6.907755,0,0,0,0,0,0
-1,4.61512,1,6.907755,0,0,0,0,0,0
-1,4.61512,1,6.907755,0,.0277778,13.73189,1,0,0
-1,4.61512,1,6.907755,0,.0277778,13.73189,1,0,0
-2,4.61512,1,6.907755,0,.0277778,13.73189,1,0,0
-0,4.61512,1,6.907755,0,.0277778,13.73189,1,0,0
-2,4.61512,1,6.907755,0,.0277778,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,8.7,1,0,0
-6,4.61512,1,6.907755,0,0,8.7,1,0,0
-0,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-12,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-9,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-7,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-3,3.931826,0,6.907755,7.600903,1,13,0,0,0
-2,3.931826,0,6.907755,7.600903,1,13,0,0,0
-3,3.931826,0,6.907755,7.600903,1,13,0,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-7,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,4.61512,1,0,0,0,8.7,1,0,0
-3,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-1,4.61512,1,0,0,0,8.7,1,0,0
-1,4.61512,1,0,0,0,8.7,1,0,0
-1,4.61512,1,0,0,0,4.3,1,0,0
-1,4.61512,1,0,0,0,4.3,1,0,0
-0,4.61512,1,0,0,0,4.3,1,0,0
-0,4.61512,1,0,0,0,4.3,1,0,0
-0,4.61512,1,0,0,0,4.3,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-8,4.61512,1,0,0,0,13.73189,1,0,0
-3,4.61512,1,0,0,0,13.73189,1,0,0
-2,4.61512,1,0,0,0,13.73189,1,0,0
-7,4.61512,1,0,0,0,17.4,1,0,0
-5,4.61512,1,0,0,0,17.4,1,0,0
-4,4.61512,1,0,0,0,17.4,1,0,0
-2,4.61512,1,0,0,0,17.4,1,0,0
-4,4.61512,1,0,0,0,17.4,1,0,0
-1,4.61512,1,0,0,0,13,0,1,0
-6,4.61512,1,0,0,0,13,0,1,0
-2,4.61512,1,0,0,0,13,0,1,0
-4,4.61512,1,0,0,0,13,0,1,0
-0,4.61512,1,0,0,0,13,0,1,0
-8,0,1,6.109248,0,0,13.73189,0,0,0
-4,0,1,6.109248,0,0,13.73189,0,0,0
-6,0,1,6.109248,0,0,13.73189,0,0,0
-4,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-4,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-2,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-1,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-4,0,1,6.109248,0,0,13.73189,1,0,0
-3,0,1,6.109248,0,0,13.73189,1,0,0
-0,0,1,6.109248,0,0,13.73189,1,0,0
-3,0,1,6.109248,0,0,13.73189,1,0,0
-2,0,1,6.109248,0,0,13.73189,1,0,0
-1,0,1,6.109248,0,0,13.73189,1,0,0
-2,0,1,6.109248,0,0,13.73189,1,0,0
-2,0,1,6.109248,0,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-11,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-7,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-31,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,0,0,6.126869,0,0,13.73189,0,0,0
-3,0,0,6.126869,0,0,13.73189,0,0,0
-6,0,0,6.126869,0,0,13.73189,0,0,0
-4,0,0,6.126869,0,0,13.73189,0,0,0
-1,0,0,6.126869,0,0,13.73189,0,0,0
-3,0,0,6.126869,0,0,8.7,0,0,0
-9,0,0,6.126869,0,0,8.7,0,0,0
-1,0,0,6.126869,0,0,8.7,0,0,0
-4,0,0,6.126869,0,0,8.7,0,0,0
-1,0,0,6.126869,0,0,8.7,0,0,0
-1,0,0,6.126869,0,0,0,0,0,0
-3,0,0,6.126869,0,0,0,0,0,0
-0,0,0,6.126869,0,0,0,0,0,0
-2,0,0,6.126869,0,0,0,0,0,0
-1,0,0,6.126869,0,0,0,0,0,0
-3,0,0,6.126869,0,0,13.73189,0,0,0
-5,0,0,6.126869,0,0,13.73189,0,0,0
-7,0,0,6.126869,0,0,13.73189,0,0,0
-3,0,0,6.126869,0,0,13.73189,0,0,0
-0,0,0,6.126869,0,0,13.73189,0,0,0
-1,0,0,6.126869,0,0,13.73189,0,0,0
-5,0,0,6.126869,0,0,13.73189,0,0,0
-7,0,0,6.126869,0,0,13.73189,0,0,0
-4,0,0,6.126869,0,0,13.73189,0,0,0
-2,0,0,6.126869,0,0,13.73189,0,0,0
-8,0,0,0,0,1,30.4,0,0,1
-9,0,0,0,0,1,30.4,0,0,1
-2,0,0,0,0,1,30.4,0,0,1
-4,0,0,0,0,1,30.4,0,0,1
-3,0,0,0,0,1,30.4,0,0,1
-15,0,0,0,0,0,30.4,0,1,0
-28,0,0,0,0,0,30.4,0,1,0
-11,0,0,0,0,0,30.4,0,1,0
-16,0,0,0,0,0,30.4,0,1,0
-17,0,0,0,0,0,30.4,0,1,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,0,1,0,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-4,4.61512,1,6.907755,0,1,13.73189,0,1,0
-0,4.61512,1,6.907755,0,1,13.73189,0,1,0
-3,4.61512,1,6.907755,0,1,13.73189,0,1,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,0,0,0,0,0,17.4,1,0,0
-5,0,0,0,0,0,17.4,1,0,0
-0,0,0,0,0,0,17.4,1,0,0
-0,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-4,0,0,0,0,0,4.3,1,0,0
-0,0,0,0,0,0,4.3,1,0,0
-0,0,0,0,0,0,4.3,1,0,0
-0,0,0,0,0,0,4.3,1,0,0
-2,0,0,0,0,0,4.3,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,1,26.1,0,1,0
-2,3.931826,0,6.907755,7.600903,1,26.1,0,1,0
-5,3.931826,0,6.907755,7.600903,1,26.1,0,1,0
-3,3.931826,0,6.907755,7.600903,1,26.1,0,1,0
-4,3.931826,0,6.907755,7.600903,1,26.1,0,1,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13,0,0,0
-3,0,0,0,0,1,17.4,1,0,0
-6,0,0,0,0,1,17.4,1,0,0
-2,0,0,0,0,1,17.4,1,0,0
-2,0,0,0,0,1,30.4,0,1,0
-1,0,0,0,0,1,30.4,0,1,0
-5,0,0,0,0,1,30.4,0,1,0
-8,3.258096,0,4.70048,6.086775,1,13.73189,0,1,0
-5,3.258096,0,4.70048,6.086775,1,13.73189,0,1,0
-0,0,0,0,0,0,4.3,1,0,0
-1,0,0,0,0,0,4.3,1,0,0
-3,0,0,0,0,0,4.3,1,0,0
-0,0,0,0,0,0,4.3,1,0,0
-2,0,0,0,0,0,4.3,1,0,0
-2,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-1,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-1,0,0,0,0,0,8.7,1,0,0
-8,0,0,0,0,0,8.7,1,0,0
-1,0,0,0,0,0,8.7,1,0,0
-3,0,0,0,0,0,8.7,1,0,0
-4,0,0,4.276666,0,0,0,1,0,0
-10,0,0,4.276666,0,0,0,1,0,0
-8,0,0,4.276666,0,0,0,1,0,0
-3,0,0,4.276666,0,0,0,1,0,0
-2,0,0,4.276666,0,0,0,1,0,0
-8,4.61512,1,0,0,0,21.7,0,0,1
-0,4.61512,1,0,0,0,21.7,0,0,1
-0,4.61512,1,0,0,0,21.7,0,0,1
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,13.73189,0,0,0
-0,3.258096,0,4.61512,6.001415,0,8.7,0,0,0
-0,3.258096,0,4.61512,6.001415,0,8.7,0,0,0
-0,3.258096,0,4.61512,6.001415,0,21.7,0,0,0
-0,3.258096,0,4.61512,6.001415,0,21.7,0,0,0
-2,0,0,0,0,0,13,0,0,0
-5,0,0,0,0,0,13,0,0,0
-5,0,0,0,0,0,13,0,0,0
-5,0,0,0,0,0,13,0,0,0
-5,0,0,0,0,0,13,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-0,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-1,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-1,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-2,3.931826,0,6.907755,7.600903,1,21.7,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-9,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-4,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-7,3.258096,0,6.520621,7.906916,0,13,1,0,0
-13,3.258096,0,6.520621,7.906916,0,13,1,0,0
-4,3.258096,0,6.520621,7.906916,0,13,1,0,0
-1,3.258096,0,6.520621,7.906916,0,8.7,1,0,0
-1,3.258096,0,6.520621,7.906916,0,8.7,1,0,0
-7,3.258096,0,6.520621,7.906916,0,8.7,1,0,0
-2,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-1,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-0,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-0,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-1,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-0,3.258096,0,6.520621,7.906916,0,13.73189,1,0,0
-5,0,1,6.109248,0,0,30.4,1,0,0
-2,0,1,6.109248,0,0,30.4,1,0,0
-0,0,1,6.109248,0,0,30.4,1,0,0
-3,0,1,6.109248,0,0,30.4,1,0,0
-4,0,1,6.109248,0,0,30.4,1,0,0
-2,0,1,6.109248,0,1,17.4,1,0,0
-1,0,1,6.109248,0,1,17.4,1,0,0
-1,0,1,6.109248,0,1,17.4,1,0,0
-1,0,1,6.109248,0,1,17.4,1,0,0
-1,0,1,6.109248,0,1,17.4,1,0,0
-9,0,1,6.109248,0,0,13.73189,1,0,0
-10,0,1,6.109248,0,0,13.73189,1,0,0
-8,0,1,6.109248,0,0,13.73189,1,0,0
-6,0,1,6.109248,0,0,13.73189,1,0,0
-8,0,1,6.109248,0,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-3,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-5,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-4,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-3,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-1,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,0,1,0,0
-2,3.931826,0,6.907755,7.600903,0,0,1,0,0
-6,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,21.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,21.7,1,0,0
-2,3.931826,0,6.907755,7.600903,0,21.7,1,0,0
-0,3.931826,0,6.907755,7.600903,1,30.4,1,0,0
-2,3.931826,0,6.907755,7.600903,1,30.4,1,0,0
-6,3.931826,0,6.907755,7.600903,1,30.4,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-7,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.363563,7.05671,0,21.7,1,0,0
-2,3.931826,0,6.363563,7.05671,0,21.7,1,0,0
-1,3.931826,0,6.363563,7.05671,0,21.7,1,0,0
-2,3.931826,0,6.263398,6.956545,0,8.7,0,0,0
-2,3.931826,0,6.263398,6.956545,0,8.7,0,0,0
-0,3.931826,0,6.263398,6.956545,0,8.7,0,0,0
-1,3.931826,0,6.263398,6.956545,0,8.7,0,0,0
-1,3.931826,0,6.263398,6.956545,0,8.7,0,0,0
-2,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-0,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-0,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-2,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-1,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-16,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-16,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-7,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-0,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-0,3.931826,0,6.263398,6.956545,0,13.73189,0,0,0
-4,3.931826,0,6.263398,6.956545,0,17.4,0,0,0
-0,3.931826,0,6.263398,6.956545,0,17.4,0,0,0
-3,3.931826,0,6.263398,6.956545,0,17.4,0,0,0
-1,3.931826,0,6.263398,6.956545,0,17.4,0,0,0
-2,3.931826,0,6.263398,6.956545,0,17.4,0,0,0
-0,3.258096,0,4.276666,5.662961,1,13.73189,0,1,0
-0,3.258096,0,4.276666,5.662961,1,13.73189,0,1,0
-29,3.258096,0,4.276666,5.662961,1,13.73189,0,1,0
-0,3.258096,0,4.276666,5.662961,1,26.1,0,1,0
-0,3.258096,0,4.276666,5.662961,1,26.1,0,1,0
-12,3.258096,0,4.276666,5.662961,1,26.1,0,1,0
-3,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-7,4.61512,1,6.907755,0,0,8.7,0,0,0
-2,4.61512,1,6.907755,0,0,8.7,0,0,0
-1,4.61512,1,6.907755,0,0,8.7,0,0,0
-4,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-3,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,26.1,1,0,0
-4,4.61512,1,6.907755,0,0,26.1,1,0,0
-1,4.61512,1,6.907755,0,0,26.1,1,0,0
-4,4.61512,1,6.907755,0,0,26.1,1,0,0
-6,4.61512,1,6.907755,0,0,26.1,1,0,0
-2,4.61512,1,4.317488,0,0,13.73189,0,0,0
-8,4.61512,1,4.317488,0,0,13.73189,0,0,0
-2,4.61512,1,4.317488,0,0,13.73189,0,0,0
-4,4.61512,1,4.317488,0,0,13.73189,0,0,0
-4,4.61512,1,4.317488,0,0,13.73189,0,0,0
-8,4.61512,1,4.317488,0,0,21.7,0,0,0
-3,4.61512,1,4.317488,0,0,21.7,0,0,0
-16,4.61512,1,4.317488,0,0,21.7,0,0,0
-18,4.61512,1,4.317488,0,0,21.7,0,0,0
-8,4.61512,1,4.317488,0,0,21.7,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-7,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,1,13.73189,0,1,0
-1,4.61512,1,6.907755,0,1,13.73189,0,1,0
-11,4.61512,1,6.907755,0,1,13.73189,0,1,0
-8,4.61512,1,6.907755,0,1,13.73189,0,1,0
-9,4.61512,1,6.907755,0,1,13.73189,0,1,0
-6,0,1,4.382027,0,1,26.1,1,0,0
-2,0,1,4.382027,0,1,26.1,1,0,0
-4,0,1,4.382027,0,1,26.1,1,0,0
-3,0,1,4.382027,0,1,26.1,1,0,0
-6,0,1,4.382027,0,1,26.1,1,0,0
-3,0,1,4.382027,0,0,4.3,0,0,0
-4,0,1,4.382027,0,0,4.3,0,0,0
-3,0,1,4.382027,0,0,4.3,0,0,0
-3,0,1,4.382027,0,0,4.3,0,0,0
-5,0,1,4.382027,0,0,4.3,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-6,0,0,0,0,0,8.7,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-5,0,0,0,0,0,17.4,0,0,0
-2,0,0,0,0,0,17.4,0,0,0
-4,0,0,0,0,0,17.4,0,0,0
-3,0,0,0,0,0,17.4,0,0,0
-5,0,0,0,0,0,17.4,0,0,0
-6,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-15,0,0,0,0,0,8.7,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-5,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-0,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-12,0,0,0,0,0,4.3,0,0,0
-9,0,0,0,0,0,4.3,0,0,0
-4,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-3,0,0,5.451038,0,0,13.73189,1,0,0
-5,0,0,5.451038,0,0,13.73189,1,0,0
-4,0,0,5.451038,0,0,13.73189,1,0,0
-5,0,0,5.451038,0,0,13.73189,1,0,0
-3,0,0,5.451038,0,0,13.73189,1,0,0
-4,0,0,5.451038,0,0,13.73189,1,0,0
-5,0,0,5.451038,0,0,13.73189,1,0,0
-6,0,0,5.451038,0,0,13.73189,1,0,0
-5,0,0,5.451038,0,0,13.73189,1,0,0
-6,0,0,5.451038,0,0,13.73189,1,0,0
-1,0,0,5.451038,0,0,13.73189,1,0,0
-1,0,0,5.451038,0,0,13.73189,1,0,0
-0,0,0,5.451038,0,0,13.73189,1,0,0
-0,0,0,5.451038,0,0,13.73189,1,0,0
-1,0,0,5.451038,0,0,13.73189,1,0,0
-9,0,0,5.451038,0,0,13.73189,1,0,0
-4,0,0,5.451038,0,0,13.73189,1,0,0
-2,0,0,5.451038,0,0,13.73189,1,0,0
-2,0,0,5.451038,0,0,13.73189,1,0,0
-4,0,0,5.451038,0,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-6,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-11,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-13,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-9,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,4.61512,1,6.549651,0,0,4.3,0,0,0
-6,4.61512,1,6.549651,0,0,4.3,0,0,0
-0,4.61512,1,6.549651,0,0,4.3,0,0,0
-6,4.61512,1,6.549651,0,0,4.3,0,0,0
-5,4.61512,1,6.549651,0,0,4.3,0,0,0
-22,4.61512,1,6.549651,0,0,26.1,1,0,0
-2,4.61512,1,6.549651,0,0,26.1,1,0,0
-0,4.61512,1,6.549651,0,0,26.1,1,0,0
-2,4.61512,1,6.549651,0,0,26.1,1,0,0
-0,4.61512,1,6.549651,0,0,26.1,1,0,0
-8,0,1,4.976734,0,0,13.73189,0,0,0
-7,0,1,4.976734,0,0,13.73189,0,0,0
-1,0,1,4.976734,0,0,13.73189,0,0,0
-0,0,1,4.976734,0,0,13.73189,1,0,0
-7,0,1,4.976734,0,0,13.73189,1,0,0
-6,0,1,4.976734,0,0,13.73189,1,0,0
-0,0,1,4.976734,0,0,13.73189,1,0,0
-0,0,1,4.976734,0,0,13.73189,1,0,0
-0,0,1,4.976734,0,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-5,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-4,3.931826,0,6.907755,7.600903,0,21.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,4.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-6,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13,0,0,0
-4,4.61512,1,6.907755,0,0,13,0,0,0
-3,4.61512,1,6.907755,0,0,13,0,0,0
-1,4.61512,1,6.907755,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,13,0,0,0
-15,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-4,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-6,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-11,3.258096,0,6.461468,7.847763,1,30.4,0,1,0
-1,3.258096,0,6.461468,7.847763,1,30.4,0,1,0
-6,3.258096,0,6.461468,7.847763,1,30.4,0,1,0
-7,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-6,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-5,3.258096,0,6.461468,7.847763,0,13.73189,1,0,0
-2,3.258096,0,6.461468,7.847763,0,26.1,0,0,0
-9,3.258096,0,6.461468,7.847763,0,26.1,0,0,0
-4,3.258096,0,6.461468,7.847763,0,26.1,0,0,0
-4,0,0,5.111988,0,0,13.73189,1,0,0
-4,0,0,5.111988,0,0,13.73189,1,0,0
-6,0,0,5.111988,0,0,13.73189,1,0,0
-2,0,0,5.111988,0,0,13.73189,0,0,0
-1,0,0,5.111988,0,0,13.73189,0,0,0
-5,0,0,5.111988,0,0,13.73189,0,0,0
-5,0,0,5.111988,0,0,13.73189,0,0,0
-5,0,0,5.111988,0,0,13.73189,0,0,0
-3,0,0,5.111988,0,0,13.73189,0,0,0
-0,3.258096,0,6.214608,7.600903,0,0,0,0,0
-0,3.258096,0,6.214608,7.600903,0,0,0,0,0
-0,3.258096,0,6.214608,7.600903,0,0,0,0,0
-0,3.258096,0,6.214608,7.600903,0,0,0,0,0
-0,3.258096,0,6.214608,7.600903,0,0,0,0,0
-8,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-3,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-4,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-1,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-10,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-6,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-1,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-2,3.258096,0,6.214608,7.600903,0,13.73189,0,0,0
-6,3.258096,0,6.214608,7.600903,0,26.1,0,0,0
-1,3.258096,0,6.214608,7.600903,0,26.1,0,0,0
-4,3.258096,0,6.214608,7.600903,0,26.1,0,0,0
-1,3.258096,0,6.214608,7.600903,0,26.1,0,0,0
-1,3.258096,0,6.214608,7.600903,0,26.1,0,0,0
-0,4.61512,1,6.39693,0,0,26.1,1,0,0
-4,4.61512,1,6.39693,0,0,26.1,1,0,0
-0,4.61512,1,6.39693,0,0,26.1,1,0,0
-0,4.61512,1,6.39693,0,0,26.1,1,0,0
-2,4.61512,1,6.39693,0,0,26.1,1,0,0
-4,4.61512,1,6.39693,0,0,4.3,0,0,0
-1,4.61512,1,6.39693,0,0,4.3,0,0,0
-0,4.61512,1,6.39693,0,0,4.3,0,0,0
-1,4.61512,1,6.39693,0,0,4.3,0,0,0
-7,4.61512,1,6.39693,0,0,4.3,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-5,0,1,0,0,0,17.4,1,0,0
-3,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-9,0,1,0,0,0,17.4,1,0,0
-9,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-5,0,1,0,0,0,8.7,0,0,0
-2,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-2,0,1,0,0,0,8.7,0,0,0
-3,0,1,0,0,0,8.7,0,0,0
-2,0,1,0,0,0,13,0,0,0
-0,0,1,0,0,0,13,0,0,0
-0,0,1,0,0,0,13,0,0,0
-0,0,1,0,0,0,13,0,0,0
-3,0,1,0,0,0,13,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-6,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-0,0,1,0,0,0,8.7,0,0,0
-1,0,1,0,0,0,8.7,0,0,0
-1,0,1,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,26.1,1,0,0
-38,0,0,0,0,0,26.1,1,0,0
-22,0,0,0,0,0,26.1,1,0,0
-6,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-4,0,0,4.094345,0,0,0,0,0,0
-3,0,0,4.094345,0,0,0,0,0,0
-1,0,0,4.094345,0,0,0,0,0,0
-3,0,0,4.094345,0,0,0,0,0,0
-5,0,0,4.094345,0,0,0,0,0,0
-5,0,0,4.094345,0,0,0,0,0,0
-0,0,0,4.094345,0,0,0,0,0,0
-1,0,0,4.094345,0,0,0,0,0,0
-1,0,0,4.094345,0,0,0,0,0,0
-0,0,0,4.094345,0,0,0,0,0,0
-6,0,0,4.094345,0,0,13,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-3,0,0,4.094345,0,0,13.73189,0,0,0
-6,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-3,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-4,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13,0,0,0
-1,0,0,4.094345,0,0,13,0,0,0
-4,0,0,4.094345,0,0,13,0,0,0
-2,0,0,4.094345,0,0,13,0,0,0
-5,0,0,4.094345,0,0,13,0,0,0
-14,0,1,5.703783,0,0,21.7,1,0,0
-4,0,1,5.703783,0,0,21.7,1,0,0
-11,0,1,5.703783,0,0,21.7,1,0,0
-13,0,1,5.703783,0,0,21.7,1,0,0
-12,0,1,5.703783,0,0,21.7,1,0,0
-24,0,1,5.703783,0,0,4.3,1,0,0
-12,0,1,5.703783,0,0,4.3,1,0,0
-18,0,1,5.703783,0,0,4.3,1,0,0
-19,0,1,5.703783,0,0,4.3,1,0,0
-18,0,1,5.703783,0,0,4.3,1,0,0
-5,3.931826,0,0,0,1,30.4,1,0,0
-23,3.931826,0,0,0,1,30.4,1,0,0
-0,3.931826,0,0,0,1,30.4,1,0,0
-0,3.931826,0,0,7.600903,1,34.8,1,0,0
-0,3.931826,0,0,7.600903,1,34.8,1,0,0
-0,3.931826,0,0,7.600903,1,34.8,1,0,0
-6,0,1,5.924256,0,0,13.73189,1,0,0
-1,0,1,5.924256,0,0,13.73189,1,0,0
-0,0,1,5.924256,0,0,13.73189,1,0,0
-0,0,1,5.924256,0,0,13.73189,0,0,0
-0,0,1,5.924256,0,0,13.73189,0,0,0
-0,0,1,5.924256,0,0,13.73189,0,0,0
-3,0,1,5.924256,0,0,13.73189,0,0,0
-3,0,1,5.924256,0,0,13.73189,0,0,0
-3,0,1,5.924256,0,0,13.73189,0,0,0
-2,0,1,5.924256,0,0,13.73189,0,0,0
-1,0,1,5.924256,0,0,13.73189,0,0,0
-1,0,1,5.924256,0,0,13.73189,0,0,0
-1,0,0,0,0,1,21.7,0,0,1
-5,0,0,0,0,1,21.7,0,0,1
-3,0,0,0,0,1,21.7,0,0,1
-9,0,0,0,0,1,21.7,0,0,1
-4,0,0,0,0,1,21.7,0,0,1
-7,0,0,0,0,0,13,1,0,0
-9,0,0,0,0,0,13,1,0,0
-1,0,0,0,0,0,13,1,0,0
-4,0,0,0,0,0,13,1,0,0
-1,0,0,0,0,0,13,1,0,0
-0,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-13,4.61512,1,6.331502,0,1,13.73189,1,0,0
-0,4.61512,1,6.331502,0,1,13.73189,1,0,0
-7,4.61512,1,6.331502,0,1,13.73189,1,0,0
-12,4.61512,1,6.331502,0,1,13.73189,1,0,0
-15,4.61512,1,6.331502,0,1,13.73189,1,0,0
-0,0,1,5.402678,0,1,13,1,0,0
-0,0,1,5.402678,0,1,13,1,0,0
-1,0,1,5.402678,0,1,13,1,0,0
-4,0,1,5.402678,0,1,13,1,0,0
-3,0,1,5.402678,0,1,13,1,0,0
-2,4.61512,1,6.618739,0,0,13.73189,1,0,0
-3,4.61512,1,6.618739,0,0,13.73189,1,0,0
-11,4.61512,1,6.618739,0,0,13.73189,1,0,0
-3,4.61512,1,6.618739,0,0,13.73189,1,0,0
-0,4.61512,1,6.618739,0,0,13.73189,1,0,0
-4,4.61512,1,6.618739,0,0,13.73189,1,0,0
-8,4.61512,1,6.618739,0,0,13.73189,1,0,0
-1,4.61512,1,6.618739,0,0,13.73189,1,0,0
-1,4.61512,1,6.618739,0,0,13.73189,1,0,0
-0,4.61512,1,6.618739,0,0,13.73189,1,0,0
-1,4.61512,1,6.618739,0,0,13.73189,1,0,0
-2,3.931826,0,5.963579,6.656726,0,13,0,0,0
-1,3.931826,0,5.963579,6.656726,0,13,0,0,0
-1,3.931826,0,5.963579,6.656726,0,13,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-3,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-5,0,0,0,0,0,13,0,0,0
-7,0,0,0,0,0,13,0,0,0
-3,0,0,0,0,0,13,0,0,0
-1,0,0,0,0,0,13,0,0,0
-14,0,0,0,0,0,13,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,26.1,0,0,0
-3,0,0,0,0,0,26.1,0,0,0
-6,0,0,0,0,0,26.1,0,0,0
-8,0,0,0,0,0,26.1,0,0,0
-5,0,0,0,0,0,26.1,0,0,0
-1,0,0,0,0,0,21.7,0,0,0
-3,0,0,0,0,0,21.7,0,0,0
-9,0,0,0,0,0,21.7,0,0,0
-4,0,0,0,0,0,21.7,0,0,0
-6,0,0,0,0,0,21.7,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-10,0,0,0,0,0,13.73189,0,0,0
-51,0,0,0,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,0,0,0
-23,4.61512,1,6.907755,0,0,13.73189,0,0,0
-23,4.61512,1,6.907755,0,0,21.7,0,0,0
-12,4.61512,1,6.907755,0,0,21.7,0,0,0
-17,4.61512,1,6.907755,0,0,21.7,0,0,0
-11,4.61512,1,6.907755,0,0,21.7,0,0,0
-13,4.61512,1,6.907755,0,0,21.7,0,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-5,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,4.3,0,0,0
-3,4.61512,1,6.907755,0,0,4.3,0,0,0
-5,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-5,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-5,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-4,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-5,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-33,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-10,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-2,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-4,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-3,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-1,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,3.258096,0,6.244167,7.630461,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,0,1,0,0
-0,4.61512,1,5.645447,0,0,0,1,0,0
-0,4.61512,1,5.645447,0,0,0,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-0,4.61512,1,5.645447,0,0,13.73189,1,0,0
-2,3.931826,0,6.309918,7.003066,1,17.4,0,0,1
-0,3.931826,0,6.309918,7.003066,1,17.4,0,0,1
-0,3.931826,0,6.633318,7.326466,0,4.3,1,0,0
-3,3.931826,0,6.633318,7.326466,0,4.3,1,0,0
-0,3.931826,0,6.633318,7.326466,0,4.3,1,0,0
-0,3.931826,0,6.633318,7.326466,0,4.3,1,0,0
-5,3.931826,0,6.633318,7.326466,0,4.3,1,0,0
-4,0,0,0,0,1,13.73189,0,0,0
-3,0,0,0,0,1,13.73189,0,0,0
-1,0,0,0,0,1,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,3.258096,0,6.55108,7.937375,0,0,0,0,0
-0,3.258096,0,6.55108,7.937375,0,0,0,0,0
-1,3.258096,0,6.55108,7.937375,0,0,0,0,0
-0,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-0,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-1,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-0,3.258096,0,6.55108,7.937375,0,4.3,0,0,0
-0,3.258096,0,6.55108,7.937375,0,4.3,0,0,0
-0,3.258096,0,6.55108,7.937375,0,4.3,0,0,0
-0,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-1,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-1,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,4.3,0,0,0
-3,0,0,0,0,0,4.3,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-9,0,0,0,0,0,0,0,0,0
-17,0,0,0,0,0,0,0,0,0
-31,0,0,0,0,0,0,0,0,0
-13,0,0,0,0,0,0,0,0,0
-6,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-15,0,0,0,0,0,13,0,0,0
-28,0,0,0,0,0,13,0,0,0
-10,0,0,0,0,0,13,0,0,0
-20,0,0,0,0,0,13,0,0,0
-16,0,0,0,0,0,13,0,0,0
-6,3.931826,0,0,6.527958,0,13.73189,0,0,0
-2,3.931826,0,0,6.527958,0,13.73189,0,0,0
-3,3.931826,0,0,6.527958,0,13.73189,0,0,0
-1,3.931826,0,0,6.527958,0,13.73189,0,0,0
-0,3.931826,0,0,6.527958,0,13.73189,0,0,0
-1,3.931826,0,0,6.527958,0,13.73189,0,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-2,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-0,3.931826,0,6.028278,6.721426,0,13.73189,0,0,0
-2,3.931826,0,5.81413,6.507277,0,13.73189,0,0,0
-0,3.931826,0,5.81413,6.507277,0,13.73189,0,0,0
-4,3.931826,0,5.81413,6.507277,0,13.73189,0,0,0
-1,3.931826,0,5.81413,6.507277,0,13.73189,0,0,0
-1,3.931826,0,5.81413,6.507277,0,13.73189,0,0,0
-4,3.931826,0,6.028278,6.721426,0,13.73189,1,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,1,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,1,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,1,0,0
-1,3.931826,0,6.028278,6.721426,0,13.73189,1,0,0
-1,0,0,4.174387,0,0,13.73189,0,0,0
-2,0,0,4.174387,0,0,13.73189,0,0,0
-5,0,0,4.174387,0,0,13.73189,0,0,0
-8,0,0,4.174387,0,0,13.73189,1,0,0
-3,0,0,4.174387,0,0,13.73189,1,0,0
-4,0,0,4.174387,0,0,13.73189,1,0,0
-5,0,0,4.174387,0,0,13.73189,0,0,0
-11,0,0,4.174387,0,0,13.73189,0,0,0
-7,0,0,4.174387,0,0,13.73189,0,0,0
-1,0,0,4.174387,0,0,13.73189,0,0,0
-0,0,0,4.174387,0,0,13.73189,0,0,0
-2,0,0,4.174387,0,0,13.73189,0,0,0
-6,0,0,4.174387,0,0,13.73189,0,0,0
-5,0,0,4.174387,0,0,13.73189,0,0,0
-12,0,0,4.174387,0,0,13.73189,0,0,0
-3,0,0,4.094345,0,0,4.3,0,0,0
-1,0,0,4.094345,0,0,4.3,0,0,0
-1,0,0,4.094345,0,0,4.3,0,0,0
-0,0,0,4.094345,0,0,4.3,0,0,0
-5,0,0,4.094345,0,0,4.3,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-3,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,8.7,0,0,0
-0,0,0,4.094345,0,0,8.7,0,0,0
-0,0,0,4.094345,0,0,8.7,0,0,0
-0,0,0,4.094345,0,0,8.7,0,0,0
-0,0,0,4.094345,0,0,8.7,0,0,0
-6,0,0,4.094345,0,1,13,0,0,0
-3,0,0,4.094345,0,1,13,0,0,0
-4,0,0,4.094345,0,1,13,0,0,0
-2,0,0,4.094345,0,1,13,0,0,0
-1,0,0,4.094345,0,1,13,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-6,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-5,0,0,0,0,0,21.7,0,1,0
-5,0,0,0,0,0,21.7,0,1,0
-3,0,0,0,0,0,21.7,0,1,0
-2,0,0,0,0,0,47.8,0,1,0
-1,0,0,0,0,0,47.8,0,1,0
-4,0,0,0,0,0,47.8,0,1,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,26.1,0,1,0
-3,3.258096,0,6.907755,8.294049,0,26.1,0,1,0
-2,3.258096,0,6.907755,8.294049,0,26.1,0,1,0
-3,3.258096,0,6.907755,8.294049,0,26.1,0,1,0
-4,3.258096,0,6.907755,8.294049,0,26.1,0,1,0
-34,3.258096,0,6.907755,8.294049,0,4.3,1,0,0
-24,3.258096,0,6.907755,8.294049,0,4.3,1,0,0
-28,3.258096,0,6.907755,8.294049,0,4.3,1,0,0
-22,3.258096,0,6.907755,8.294049,0,4.3,1,0,0
-24,3.258096,0,6.907755,8.294049,0,4.3,1,0,0
-1,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-2,0,1,6.109248,0,0,13.73189,0,0,0
-1,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-2,0,1,6.109248,0,0,13.73189,0,0,0
-2,0,1,6.109248,0,0,13.73189,0,0,0
-2,0,1,6.109248,0,0,13.73189,0,0,0
-3,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-0,0,1,6.109248,0,0,13.73189,0,0,0
-8,0,1,6.109248,0,0,13.73189,0,0,0
-0,4.61512,1,5.135798,0,0,17.4,0,1,0
-3,4.61512,1,5.135798,0,0,17.4,0,1,0
-2,4.61512,1,5.135798,0,0,17.4,0,1,0
-0,4.61512,1,5.135798,0,0,17.4,0,1,0
-4,4.61512,1,5.135798,0,0,17.4,0,1,0
-0,3.258096,0,0,0,1,30.4,0,1,0
-0,3.258096,0,0,0,1,30.4,0,1,0
-0,3.258096,0,0,0,1,30.4,0,1,0
-0,0,1,0,0,0,13.73189,0,1,0
-2,0,1,0,0,0,13.73189,0,1,0
-4,0,1,0,0,0,13.73189,0,1,0
-4,0,1,0,0,0,13.73189,0,1,0
-5,0,1,0,0,0,13.73189,0,1,0
-0,0,1,0,0,1,13.73189,1,0,0
-0,0,1,0,0,1,13.73189,1,0,0
-1,0,1,0,0,1,13.73189,1,0,0
-1,0,1,0,0,1,13.73189,1,0,0
-1,0,1,0,0,1,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-3,0,1,0,0,0,13.73189,1,0,0
-0,0,1,0,0,0,13.73189,1,0,0
-3,0,1,0,0,0,13.73189,1,0,0
-2,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-3,0,1,0,0,0,13.73189,1,0,0
-2,0,1,0,0,0,13.73189,1,0,0
-2,0,1,0,0,0,13.73189,1,0,0
-2,3.258096,0,5.83773,7.224025,0,26.1,1,0,0
-0,3.258096,0,5.83773,7.224025,0,26.1,1,0,0
-0,3.258096,0,5.83773,7.224025,0,26.1,1,0,0
-2,3.258096,0,5.83773,7.224025,0,26.1,1,0,0
-26,3.258096,0,5.83773,7.224025,0,26.1,1,0,0
-0,3.258096,0,5.83773,7.224025,1,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-7,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,0,0,0
-8,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,0,0,0,0,0,4.3,0,0,0
-4,0,0,0,0,0,4.3,0,0,0
-10,0,0,0,0,0,4.3,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-7,0,0,0,0,0,13.73189,0,0,0
-7,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13,0,0,0
-4,0,0,0,0,0,13,0,0,0
-2,0,0,0,0,0,13,0,0,0
-4,0,0,0,0,0,26.1,0,0,0
-2,0,0,0,0,0,26.1,0,0,0
-5,0,0,0,0,0,26.1,0,0,0
-18,4.61512,1,6.907755,0,0,0,0,0,0
-21,4.61512,1,6.907755,0,0,0,0,0,0
-14,4.61512,1,6.907755,0,0,0,0,0,0
-10,4.61512,1,6.907755,0,0,0,0,0,0
-14,4.61512,1,6.907755,0,0,0,0,0,0
-11,4.61512,1,6.907755,0,0,17.4,1,0,0
-8,4.61512,1,6.907755,0,0,17.4,1,0,0
-16,4.61512,1,6.907755,0,0,17.4,1,0,0
-3,4.61512,1,6.907755,0,0,17.4,1,0,0
-4,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,5.924256,0,0,13,0,0,0
-3,4.61512,1,5.924256,0,0,13,0,0,0
-0,4.61512,1,5.924256,0,0,13,0,0,0
-1,4.61512,1,5.924256,0,0,13,0,0,0
-0,4.61512,1,5.924256,0,0,13,0,0,0
-6,0,0,5.673323,0,0,13.73189,1,0,0
-5,0,0,5.673323,0,0,13.73189,1,0,0
-14,0,0,5.673323,0,0,13.73189,1,0,0
-2,0,0,5.673323,0,0,13.73189,1,0,0
-5,0,0,5.673323,0,0,13.73189,1,0,0
-5,0,0,5.673323,0,0,13.73189,1,0,0
-5,0,0,5.673323,0,0,34.8,1,0,0
-11,0,0,5.673323,0,0,34.8,1,0,0
-11,0,0,5.673323,0,0,34.8,1,0,0
-6,0,0,5.673323,0,0,17.4,0,0,1
-11,0,0,5.673323,0,0,17.4,0,0,1
-11,0,0,5.673323,0,0,17.4,0,0,1
-3,0,0,5.673323,0,0,13.73189,1,0,0
-6,0,0,5.673323,0,0,13.73189,1,0,0
-2,0,0,5.673323,0,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-5,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-10,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-13,4.61512,1,6.907755,0,0,13.73189,1,0,0
-5,4.61512,1,6.907755,0,0,13.73189,1,0,0
-7,4.61512,1,6.907755,0,0,13.73189,1,0,0
-4,4.61512,1,6.907755,0,0,13.73189,1,0,0
-8,4.61512,1,6.907755,0,0,17.4,1,0,0
-3,4.61512,1,6.907755,0,0,17.4,1,0,0
-5,4.61512,1,6.907755,0,0,17.4,1,0,0
-15,4.61512,1,6.907755,0,0,21.7,1,0,0
-4,4.61512,1,6.907755,0,0,21.7,1,0,0
-9,4.61512,1,6.907755,0,0,21.7,1,0,0
-22,4.61512,1,6.907755,0,0,13.73189,1,0,0
-23,4.61512,1,6.907755,0,0,13.73189,1,0,0
-13,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-1,4.61512,1,6.436151,0,0,13.73189,0,0,0
-1,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-1,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-1,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-2,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-0,4.61512,1,6.436151,0,0,13.73189,1,0,0
-1,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-1,4.61512,1,6.436151,0,0,13.73189,0,0,0
-3,4.61512,1,6.436151,0,0,13.73189,0,0,0
-0,4.61512,1,6.436151,0,0,13.73189,0,0,0
-2,4.61512,1,5.998937,0,0,21.7,1,0,0
-0,4.61512,1,5.998937,0,0,21.7,1,0,0
-0,4.61512,1,5.998937,0,0,21.7,1,0,0
-3,4.61512,1,5.998937,0,0,21.7,1,0,0
-2,4.61512,1,5.998937,0,0,21.7,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-8,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-7,0,0,0,0,1,21.7,1,0,0
-7,0,0,0,0,1,21.7,1,0,0
-6,0,0,0,0,1,21.7,1,0,0
-9,0,0,0,0,1,21.7,1,0,0
-6,0,0,0,0,1,21.7,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,8.7,1,0,0
-6,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-1,0,0,0,0,0,8.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-10,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,1,0,0
-0,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-1,0,1,0,0,0,13.73189,1,0,0
-0,0,1,0,0,0,13.73189,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-0,0,1,0,0,0,17.4,1,0,0
-0,3.258096,0,6.327937,7.714231,0,4.3,1,0,0
-0,3.258096,0,6.327937,7.714231,0,4.3,1,0,0
-0,3.258096,0,6.327937,7.714231,0,4.3,1,0,0
-2,3.258096,0,6.327937,7.714231,0,4.3,1,0,0
-2,3.258096,0,6.327937,7.714231,0,4.3,1,0,0
-4,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-3,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-2,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-1,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-6,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-1,3.258096,0,6.327937,7.714231,0,8.7,1,0,0
-2,3.258096,0,6.327937,7.714231,0,8.7,1,0,0
-1,3.258096,0,6.327937,7.714231,0,8.7,1,0,0
-1,3.258096,0,6.327937,7.714231,0,8.7,1,0,0
-1,3.258096,0,6.327937,7.714231,0,8.7,1,0,0
-2,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-6,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-4,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-1,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-2,3.258096,0,6.327937,7.714231,0,13.73189,1,0,0
-6,0,1,5.986452,0,0,30.4,1,0,0
-13,0,1,5.986452,0,0,30.4,1,0,0
-19,0,1,5.986452,0,0,30.4,1,0,0
-14,0,1,5.986452,0,1,26.1,1,0,0
-30,0,1,5.986452,0,1,26.1,1,0,0
-38,0,1,5.986452,0,1,26.1,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-9,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-11,3.258096,0,6.620073,8.006368,0,13.73189,1,0,0
-18,3.258096,0,6.620073,8.006368,0,13.73189,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.73189,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.73189,1,0,0
-0,3.258096,0,6.620073,8.006368,0,13.73189,1,0,0
-4,4.61512,1,6.448889,0,0,8.7,0,0,0
-1,4.61512,1,6.448889,0,0,8.7,0,0,0
-2,4.61512,1,6.448889,0,0,8.7,0,0,0
-4,4.61512,1,6.448889,0,0,8.7,0,0,0
-0,4.61512,1,6.448889,0,0,8.7,0,0,0
-1,4.61512,1,6.448889,0,0,8.7,0,0,0
-1,4.61512,1,6.448889,0,0,17.4,0,0,0
-1,4.61512,1,6.448889,0,0,17.4,0,0,0
-0,4.61512,1,6.448889,0,0,17.4,0,0,0
-0,0,1,4.356709,0,0,13.73189,0,0,0
-4,0,1,4.356709,0,0,13.73189,0,0,0
-9,0,1,4.356709,0,0,13.73189,0,0,0
-2,0,1,4.356709,0,0,13.73189,0,0,0
-0,0,1,4.356709,0,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-7,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-15,3.258096,0,6.907755,8.294049,0,13,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13,0,0,0
-16,3.258096,0,6.907755,8.294049,0,13,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,21.7,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,4.61512,1,6.907755,0,0,21.7,1,0,0
-3,4.61512,1,6.907755,0,0,21.7,1,0,0
-5,4.61512,1,6.907755,0,0,21.7,1,0,0
-11,4.61512,1,6.907755,0,0,21.7,1,0,0
-2,4.61512,1,6.907755,0,0,21.7,1,0,0
-7,4.61512,1,6.907755,0,0,13,1,0,0
-6,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-2,4.61512,1,6.907755,0,0,13,1,0,0
-0,4.61512,1,6.907755,0,0,13,1,0,0
-5,4.61512,1,6.799056,0,0,21.7,0,1,0
-8,4.61512,1,6.799056,0,0,21.7,0,1,0
-6,4.61512,1,6.799056,0,0,21.7,0,1,0
-9,4.61512,1,6.799056,0,0,21.7,0,1,0
-4,4.61512,1,6.799056,0,0,21.7,0,1,0
-1,4.61512,1,6.799056,0,1,30.4,0,1,0
-0,4.61512,1,6.799056,0,1,30.4,0,1,0
-0,4.61512,1,6.799056,0,1,30.4,0,1,0
-0,4.61512,1,6.799056,0,1,30.4,0,1,0
-0,4.61512,1,6.799056,0,1,30.4,0,1,0
-1,4.61512,1,6.519147,0,0,13,1,0,0
-1,4.61512,1,6.519147,0,0,13,1,0,0
-0,4.61512,1,6.519147,0,0,13,1,0,0
-1,4.61512,1,6.519147,0,0,13,1,0,0
-0,4.61512,1,6.519147,0,0,13,1,0,0
-0,0,0,5.509388,0,0,21.7,0,0,0
-1,0,0,5.509388,0,0,21.7,0,0,0
-2,0,0,5.509388,0,0,21.7,0,0,0
-1,0,0,5.509388,0,0,21.7,0,0,0
-1,0,0,5.509388,0,0,21.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-9,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,0,1,5.703783,0,0,30.4,1,0,0
-2,0,1,5.703783,0,0,30.4,1,0,0
-13,0,1,5.703783,0,1,26.1,0,1,0
-12,0,1,5.703783,0,1,26.1,0,1,0
-7,0,0,0,0,0,17.4,1,0,0
-11,0,0,0,0,0,17.4,1,0,0
-11,0,0,0,0,0,17.4,1,0,0
-2,0,0,0,0,0,30.4,1,0,0
-2,0,0,0,0,0,30.4,1,0,0
-2,0,0,0,0,0,30.4,1,0,0
-1,0,0,0,0,0,4.3,0,0,0
-0,0,0,0,0,0,4.3,0,0,0
-4,0,0,0,0,0,4.3,0,0,0
-0,3.258096,0,5.988961,7.375256,0,4.3,0,0,0
-0,3.258096,0,5.988961,7.375256,0,4.3,0,0,0
-2,3.258096,0,5.988961,7.375256,0,4.3,0,0,0
-1,3.258096,0,5.988961,7.375256,0,4.3,0,0,0
-1,3.258096,0,5.988961,7.375256,0,4.3,0,0,0
-0,4.61512,1,6.302619,0,0,13.73189,0,1,0
-0,4.61512,1,6.302619,0,0,13.73189,0,1,0
-0,4.61512,1,6.302619,0,0,13.73189,0,1,0
-6,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-6,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-8,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-13,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,0,1,5.703783,0,0,13.73189,0,0,0
-1,0,1,5.703783,0,0,13.73189,1,0,0
-0,0,1,5.703783,0,0,13.73189,1,0,0
-0,0,1,5.703783,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-8,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-7,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,21.7,1,0,0
-5,0,0,0,0,0,21.7,1,0,0
-7,0,0,0,0,0,21.7,1,0,0
-5,0,0,0,0,0,21.7,1,0,0
-9,0,0,0,0,0,21.7,1,0,0
-2,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-1,0,0,0,0,0,17.4,1,0,0
-3,0,0,0,0,0,17.4,1,0,0
-3,3.931826,0,4.49981,0,0,4.3,1,0,0
-6,3.931826,0,4.49981,0,0,4.3,1,0,0
-0,3.931826,0,4.49981,0,0,4.3,1,0,0
-13,0,0,0,0,0,26.1,0,1,0
-1,0,0,0,0,0,26.1,0,1,0
-2,0,0,0,0,0,26.1,0,1,0
-9,0,0,0,0,1,43.5,0,1,0
-7,0,0,0,0,1,43.5,0,1,0
-13,0,0,0,0,1,43.5,0,1,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-11,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-4,4.61512,1,6.802395,0,0,0,0,0,0
-2,4.61512,1,6.802395,0,0,0,0,0,0
-5,4.61512,1,6.802395,0,0,0,0,0,0
-5,4.61512,1,6.802395,0,0,8.7,0,0,0
-0,4.61512,1,6.802395,0,0,8.7,0,0,0
-1,4.61512,1,6.802395,0,0,8.7,0,0,0
-9,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-8,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-4,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-5,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-4,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-5,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,0,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,0,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,0,0,0
-1,3.258096,0,6.771935,8.15823,0,13.73189,0,0,0
-2,3.258096,0,6.771935,8.15823,0,13.73189,0,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,1,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,1,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,1,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,1,0,0
-0,3.258096,0,6.771935,8.15823,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-31,0,0,0,0,0,13.73189,1,0,0
-17,0,0,0,0,0,13.73189,1,0,0
-9,0,0,0,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-2,4.61512,1,6.907755,0,0,4.3,0,0,0
-0,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-1,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-6,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-8,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-6,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-8,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-3,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-2,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-0,3.258096,0,6.635947,8.022241,0,13.73189,0,0,0
-3,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-2,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-0,3.258096,0,6.635947,8.022241,1,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-23,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-11,0,0,5.552959,0,0,13.73189,1,0,0
-3,0,0,5.552959,0,0,13.73189,1,0,0
-6,0,0,5.552959,0,0,13.73189,1,0,0
-6,0,0,5.552959,0,0,13.73189,1,0,0
-2,0,0,5.552959,0,0,13.73189,1,0,0
-0,0,0,5.552959,0,0,13.73189,1,0,0
-1,0,0,5.552959,0,0,13.73189,1,0,0
-5,0,0,5.552959,0,0,13.73189,1,0,0
-6,0,0,5.552959,0,0,13.73189,1,0,0
-0,0,0,5.552959,0,0,13.73189,1,0,0
-1,0,0,5.552959,0,0,13.73189,1,0,0
-1,0,0,5.552959,0,0,13.73189,1,0,0
-2,0,0,5.552959,0,0,13.73189,1,0,0
-11,0,0,5.552959,0,0,13.73189,1,0,0
-5,0,0,5.552959,0,0,13.73189,1,0,0
-4,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-2,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,0,0,0
-5,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.12982,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.12982,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.12982,13.73189,0,0,0
-2,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-3,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-3,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-2,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-4,3.258096,0,6.55108,7.937375,0,13.73189,0,0,0
-0,4.61512,1,5.988961,0,0,13.73189,0,0,0
-6,4.61512,1,5.988961,0,0,13.73189,0,0,0
-6,4.61512,1,5.988961,0,0,13.73189,0,0,0
-3,4.61512,1,5.988961,0,0,21.7,0,0,0
-1,4.61512,1,5.988961,0,0,21.7,0,0,0
-2,4.61512,1,5.988961,0,0,21.7,0,0,0
-2,4.61512,1,5.988961,0,0,17.4,1,0,0
-2,4.61512,1,5.988961,0,0,17.4,1,0,0
-3,4.61512,1,5.988961,0,0,17.4,1,0,0
-8,4.61512,1,5.988961,0,0,13.73189,1,0,0
-3,4.61512,1,5.988961,0,0,13.73189,1,0,0
-20,4.61512,1,5.988961,0,0,13.73189,1,0,0
-7,4.61512,1,5.988961,0,0,8.7,0,0,0
-1,4.61512,1,5.988961,0,0,8.7,0,0,0
-5,4.61512,1,5.988961,0,0,8.7,0,0,0
-15,3.931826,0,5.298317,5.991465,0,8.7,1,0,0
-2,3.931826,0,5.298317,5.991465,0,8.7,1,0,0
-1,3.931826,0,5.298317,5.991465,0,8.7,1,0,0
-4,3.931826,0,5.298317,5.991465,0,8.7,1,0,0
-2,3.931826,0,5.298317,5.991465,0,8.7,1,0,0
-2,3.931826,0,4.744932,5.438079,0,8.7,1,0,0
-0,3.931826,0,4.744932,5.438079,0,8.7,1,0,0
-0,3.931826,0,4.744932,5.438079,0,8.7,1,0,0
-2,3.931826,0,4.744932,5.438079,0,8.7,1,0,0
-5,3.931826,0,4.744932,5.438079,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,0,0,5.673323,0,0,13.73189,0,0,0
-1,0,0,5.673323,0,0,13.73189,0,0,0
-1,0,0,5.673323,0,0,13.73189,0,0,0
-3,0,0,5.673323,0,0,13.73189,0,0,0
-1,0,0,5.673323,0,0,13.73189,0,0,0
-6,0,0,5.673323,0,0,17.4,1,0,0
-3,0,0,5.673323,0,0,17.4,1,0,0
-7,0,0,5.673323,0,0,17.4,1,0,0
-8,0,0,5.673323,0,0,17.4,1,0,0
-2,0,0,5.673323,0,0,17.4,1,0,0
-1,0,0,5.673323,0,0,13.73189,0,0,0
-0,0,0,5.673323,0,0,13.73189,0,0,0
-3,0,0,5.673323,0,0,13.73189,0,0,0
-6,0,0,5.673323,0,0,13.73189,0,0,0
-1,0,0,5.673323,0,0,13.73189,0,0,0
-2,0,0,5.673323,0,0,8.7,0,0,0
-2,0,0,5.673323,0,0,8.7,0,0,0
-5,0,0,5.673323,0,0,8.7,0,0,0
-3,0,0,5.673323,0,0,8.7,0,0,0
-2,0,0,5.673323,0,0,8.7,0,0,0
-1,4.61512,1,6.885509,0,0,13.73189,0,0,0
-3,4.61512,1,6.885509,0,0,13.73189,0,0,0
-1,4.61512,1,6.885509,0,0,13.73189,0,0,0
-2,4.61512,1,6.885509,0,0,13.73189,0,0,0
-1,4.61512,1,6.885509,0,0,13.73189,0,0,0
-2,4.61512,1,6.885509,0,0,13.73189,0,0,0
-0,4.61512,1,6.885509,0,0,13.73189,0,0,0
-3,4.61512,1,6.885509,0,0,13.73189,0,0,0
-0,4.61512,1,6.885509,0,0,13.73189,0,0,0
-22,4.61512,1,6.885509,0,0,13.73189,1,0,0
-19,4.61512,1,6.885509,0,0,13.73189,1,0,0
-14,4.61512,1,6.885509,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-1,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-2,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-1,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-0,4.61512,1,0,0,0,0,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-5,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-1,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-3,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-1,0,0,5.105946,0,0,13.73189,0,0,0
-3,0,0,5.105946,0,0,13.73189,0,0,0
-9,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,1,0,0
-11,0,0,5.105946,0,0,13.73189,1,0,0
-7,0,0,5.105946,0,0,13.73189,1,0,0
-6,0,0,5.105946,0,0,13.73189,1,0,0
-4,0,0,5.105946,0,0,13.73189,1,0,0
-2,0,0,5.105946,0,0,13.73189,0,0,0
-0,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-7,0,0,5.105946,0,0,13.73189,0,0,0
-11,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-5,0,0,5.105946,0,0,13.73189,0,0,0
-7,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-5,0,0,5.105946,0,0,13.73189,0,0,0
-0,0,0,5.105946,0,0,13.73189,0,0,0
-8,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-1,0,0,5.105946,0,0,13.73189,0,0,0
-4,0,0,5.105946,0,0,13.73189,0,0,0
-1,4.61512,1,5.351858,0,1,13.73189,0,0,1
-11,4.61512,1,5.351858,0,1,13.73189,0,0,1
-1,4.61512,1,5.351858,0,1,13.73189,0,0,1
-0,4.61512,1,4.317488,0,0,13.73189,1,0,0
-0,4.61512,1,4.317488,0,0,13.73189,1,0,0
-2,4.61512,1,4.317488,0,0,13.73189,1,0,0
-0,3.258096,0,5.129899,6.516193,0,17.4,1,0,0
-1,3.258096,0,5.129899,6.516193,0,17.4,1,0,0
-0,3.258096,0,5.129899,6.516193,0,17.4,1,0,0
-0,3.258096,0,5.129899,6.516193,0,13.73189,1,0,0
-0,3.258096,0,5.129899,6.516193,0,13.73189,1,0,0
-0,3.258096,0,5.129899,6.516193,0,13.73189,1,0,0
-0,4.61512,1,4.919981,0,.0327869,13.73189,0,0,0
-0,4.61512,1,4.919981,0,.12982,13.73189,1,0,0
-0,3.931826,0,5.187386,5.880533,.12982,13.73189,1,0,0
-0,3.931826,0,5.187386,5.880533,.12982,13.73189,1,0,0
-0,3.931826,0,5.187386,5.880533,.12982,13.73189,1,0,0
-1,3.931826,0,5.187386,5.880533,0,8.7,1,0,0
-0,3.931826,0,5.187386,5.880533,0,8.7,1,0,0
-0,3.931826,0,5.187386,5.880533,0,8.7,1,0,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-7,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-11,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-12,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,0,0,1,13.73189,0,1,0
-2,3.258096,0,0,0,1,13.73189,0,1,0
-4,3.258096,0,0,0,1,13.73189,0,1,0
-4,3.258096,0,0,0,1,13.73189,0,1,0
-7,3.258096,0,0,0,1,13.73189,0,1,0
-20,3.258096,0,5.556828,6.590301,1,13.73189,0,1,0
-2,4.61512,1,4.844187,0,0,13.73189,1,0,0
-0,4.61512,1,4.844187,0,0,13.73189,1,0,0
-0,4.61512,1,6.476973,0,0,8.7,0,0,0
-4,4.61512,1,6.476973,0,0,8.7,0,0,0
-1,4.61512,1,6.476973,0,0,8.7,0,0,0
-2,4.61512,1,6.476973,0,0,8.7,0,0,0
-3,4.61512,1,6.476973,0,0,8.7,0,0,0
-8,4.61512,1,6.476973,0,0,8.7,0,0,0
-5,4.61512,1,6.476973,0,0,8.7,0,0,0
-4,4.61512,1,6.476973,0,0,8.7,0,0,0
-0,4.61512,1,6.476973,0,0,8.7,0,0,0
-2,4.61512,1,6.476973,0,0,8.7,0,0,0
-3,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-0,4.61512,1,6.476973,0,0,13.73189,0,0,0
-0,4.61512,1,6.476973,0,0,13.73189,0,0,0
-0,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-2,4.61512,1,6.476973,0,0,13.73189,0,0,0
-0,4.61512,1,6.476973,0,0,13.73189,0,0,0
-3,4.61512,1,6.476973,0,0,13.73189,0,0,0
-2,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-4,4.61512,1,6.476973,0,0,13.73189,0,0,0
-1,4.61512,1,6.476973,0,0,13.73189,0,0,0
-0,0,1,4.787492,0,0,21.7,0,0,0
-1,0,1,4.787492,0,0,21.7,0,0,0
-1,0,1,4.787492,0,0,21.7,0,0,0
-0,0,1,4.787492,0,0,21.7,0,0,0
-2,0,1,4.787492,0,0,21.7,0,0,0
-0,0,1,4.787492,0,0,0,0,0,0
-0,0,1,4.787492,0,0,0,0,0,0
-0,0,1,4.787492,0,0,0,0,0,0
-0,0,1,4.787492,0,0,0,0,0,0
-1,0,1,4.787492,0,0,0,0,0,0
-1,0,1,4.787492,0,0,13.73189,0,0,0
-1,0,1,4.787492,0,0,13.73189,0,0,0
-1,0,1,4.787492,0,0,13.73189,0,0,0
-0,0,1,4.787492,0,0,13.73189,0,0,0
-3,0,1,4.787492,0,0,13.73189,0,0,0
-2,0,1,4.787492,0,0,13.73189,0,0,0
-1,0,1,4.787492,0,0,13.73189,0,0,0
-0,0,1,4.787492,0,0,13.73189,0,0,0
-1,0,1,4.787492,0,0,13.73189,0,0,0
-4,0,1,4.787492,0,0,13.73189,0,0,0
-0,3.258096,0,6.871091,8.257385,0,4.3,0,0,0
-0,3.258096,0,6.871091,8.257385,0,4.3,0,0,0
-5,3.258096,0,6.871091,8.257385,0,4.3,0,0,0
-4,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-2,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-2,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-2,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,1,13.73189,0,0,0
-2,3.258096,0,6.871091,8.257385,1,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,1,13.73189,0,0,0
-2,3.258096,0,6.871091,8.257385,0,13,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13,0,0,0
-6,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-4,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.871091,8.257385,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,17.4,0,0,0
-4,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-3,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-3,0,0,5.451038,0,0,13.73189,0,0,0
-6,0,0,5.451038,0,0,13.73189,0,0,0
-3,0,0,5.451038,0,0,13.73189,0,0,0
-4,0,0,5.451038,0,0,13.73189,0,0,0
-6,0,0,5.451038,0,0,13.73189,0,0,0
-4,0,0,5.451038,0,0,13,0,0,0
-10,0,0,5.451038,0,0,13,0,0,0
-3,0,0,5.451038,0,0,13,0,0,0
-7,0,0,5.451038,0,0,13,0,0,0
-5,0,0,5.451038,0,0,13,0,0,0
-5,0,0,5.451038,0,0,13.73189,0,0,0
-3,0,0,5.451038,0,0,13.73189,0,0,0
-5,0,0,5.451038,0,0,13.73189,0,0,0
-2,0,0,5.451038,0,0,13.73189,0,0,0
-4,0,0,5.451038,0,0,13.73189,0,0,0
-4,0,0,5.451038,0,0,4.3,0,0,0
-7,0,0,5.451038,0,0,4.3,0,0,0
-6,0,0,5.451038,0,0,4.3,0,0,0
-12,0,0,5.451038,0,0,4.3,0,0,0
-1,0,0,5.451038,0,0,4.3,0,0,0
-13,4.61512,1,6.386879,0,1,34.8,0,1,0
-5,4.61512,1,6.386879,0,1,34.8,0,1,0
-1,4.61512,1,6.386879,0,1,34.8,0,1,0
-1,4.61512,1,6.386879,0,0,13.73189,0,1,0
-6,4.61512,1,6.386879,0,0,13.73189,0,1,0
-7,4.61512,1,6.386879,0,0,13.73189,0,1,0
-1,4.61512,1,6.386879,0,0,13.73189,0,1,0
-3,4.61512,1,6.386879,0,0,13.73189,0,1,0
-2,4.61512,1,6.386879,0,0,13.73189,0,1,0
-4,4.61512,1,6.386879,0,0,13.73189,0,0,0
-6,4.61512,1,6.386879,0,0,13.73189,0,0,0
-2,4.61512,1,6.386879,0,0,13.73189,0,0,0
-2,4.61512,1,6.386879,0,0,17.4,1,0,0
-0,4.61512,1,6.386879,0,0,17.4,1,0,0
-1,4.61512,1,6.386879,0,0,17.4,1,0,0
-6,0,0,5.796058,0,0,13,0,0,0
-0,0,0,5.796058,0,0,13,0,0,0
-1,0,0,5.796058,0,0,13,0,0,0
-3,0,0,5.796058,0,0,13,0,0,0
-2,0,0,5.796058,0,0,13,0,0,0
-0,0,0,5.796058,0,0,4.3,0,0,0
-4,0,0,5.796058,0,0,4.3,0,0,0
-3,0,0,5.796058,0,0,4.3,0,0,0
-3,0,0,5.796058,0,0,4.3,0,0,0
-2,0,0,5.796058,0,0,4.3,0,0,0
-4,0,0,5.796058,0,0,17.4,1,0,0
-11,0,0,5.796058,0,0,17.4,1,0,0
-7,0,0,5.796058,0,0,17.4,1,0,0
-3,0,0,5.796058,0,0,17.4,1,0,0
-5,0,0,5.796058,0,0,17.4,1,0,0
-1,4.61512,1,6.791222,0,0,13.73189,0,0,0
-2,4.61512,1,6.791222,0,0,13.73189,0,0,0
-1,4.61512,1,6.791222,0,0,13.73189,0,0,0
-1,4.61512,1,6.791222,0,0,13.73189,0,0,0
-3,4.61512,1,6.791222,0,0,13.73189,0,0,0
-4,4.61512,1,6.791222,0,0,0,0,0,0
-3,4.61512,1,6.791222,0,0,0,0,0,0
-2,4.61512,1,6.791222,0,0,0,0,0,0
-1,4.61512,1,6.791222,0,0,0,0,0,0
-4,4.61512,1,6.791222,0,0,0,0,0,0
-2,4.61512,1,6.791222,0,0,8.7,0,0,0
-3,4.61512,1,6.791222,0,0,8.7,0,0,0
-6,4.61512,1,6.791222,0,0,8.7,0,0,0
-0,4.61512,1,6.791222,0,0,8.7,0,0,0
-2,4.61512,1,6.791222,0,0,8.7,0,0,0
-2,0,0,5.273,0,0,4.3,0,0,0
-3,0,0,5.273,0,0,4.3,0,0,0
-1,0,0,5.273,0,0,4.3,0,0,0
-0,0,0,5.273,0,0,4.3,0,0,0
-0,0,0,5.273,0,0,4.3,0,0,0
-4,0,0,5.273,0,0,4.3,0,0,0
-2,0,0,5.273,0,0,4.3,0,0,0
-1,0,0,5.273,0,0,4.3,0,0,0
-2,0,0,5.273,0,0,4.3,0,0,0
-7,0,0,5.273,0,0,0,0,0,0
-1,0,0,5.273,0,0,0,0,0,0
-2,0,0,5.273,0,0,0,0,0,0
-1,0,0,5.273,0,0,0,0,0,0
-4,0,0,5.273,0,0,0,0,0,0
-2,0,0,5.273,0,0,0,0,0,0
-3,0,0,5.273,0,0,0,0,0,0
-0,0,0,5.273,0,0,0,0,0,0
-4,0,0,5.273,0,0,0,0,0,0
-1,0,0,5.273,0,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,1,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-19,3.258096,0,6.907755,8.294049,1,13.73189,0,1,0
-11,3.258096,0,6.907755,8.294049,1,13.73189,0,1,0
-8,3.258096,0,6.907755,8.294049,1,13.73189,0,1,0
-1,3.258096,0,6.907755,8.294049,1,13.73189,0,1,0
-3,3.258096,0,6.907755,8.294049,1,13.73189,0,1,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-1,0,0,5.278115,0,0,13,0,0,0
-2,0,0,5.278115,0,0,13,0,0,0
-5,0,0,5.278115,0,0,13,0,0,0
-3,0,0,5.278115,0,0,13,0,0,0
-0,0,0,5.278115,0,0,13,0,0,0
-4,0,0,5.278115,0,0,13.73189,0,0,0
-3,0,0,5.278115,0,0,13.73189,0,0,0
-0,0,0,5.278115,0,0,13.73189,0,0,0
-1,0,0,5.278115,0,0,13.73189,0,0,0
-2,0,0,5.278115,0,0,13.73189,0,0,0
-20,0,0,5.278115,0,0,13.73189,1,0,0
-9,0,0,5.278115,0,0,13.73189,1,0,0
-26,0,0,5.278115,0,0,13.73189,1,0,0
-28,0,0,5.278115,0,0,13.73189,1,0,0
-33,0,0,5.278115,0,0,13.73189,1,0,0
-13,0,0,5.278115,0,0,8.7,0,0,0
-11,0,0,5.278115,0,0,8.7,0,0,0
-12,0,0,5.278115,0,0,8.7,0,0,0
-7,0,0,5.278115,0,0,8.7,0,0,0
-16,0,0,5.278115,0,0,8.7,0,0,0
-6,0,0,5.278115,0,0,8.7,0,0,0
-3,0,0,5.278115,0,0,8.7,0,0,0
-6,0,0,5.278115,0,0,8.7,0,0,0
-7,0,0,5.278115,0,0,8.7,0,0,0
-6,0,0,5.278115,0,0,8.7,0,0,0
-2,0,0,5.278115,0,0,13.73189,0,0,0
-0,0,0,5.278115,0,0,13.73189,0,0,0
-0,0,0,5.278115,0,0,13.73189,0,0,0
-3,0,0,5.278115,0,0,13.73189,0,0,0
-3,0,0,5.278115,0,0,13.73189,0,0,0
-2,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-1,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-0,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-2,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-3,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-4,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-1,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-1,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-1,3.258096,0,5.883322,7.269617,0,13.73189,1,0,0
-2,0,1,5.703783,0,0,8.7,1,0,0
-6,0,1,5.703783,0,0,8.7,1,0,0
-1,0,1,5.703783,0,0,8.7,1,0,0
-0,0,1,5.703783,0,0,4.3,1,0,0
-7,0,1,5.703783,0,0,4.3,1,0,0
-6,0,1,5.703783,0,0,4.3,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-37,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-11,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-8,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,1,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-3,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-2,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-0,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,0,0,0,0,0,17.4,0,0,0
-4,0,0,0,0,0,17.4,0,0,0
-1,0,0,0,0,0,17.4,0,0,0
-0,0,0,0,0,0,17.4,0,0,0
-1,0,0,0,0,0,17.4,0,0,0
-3,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-3,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-3,0,0,0,0,0,8.7,0,0,0
-6,0,0,0,0,0,8.7,0,0,0
-7,0,0,0,0,0,8.7,0,0,0
-8,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,8.7,0,0,0
-2,0,0,0,0,0,17.4,0,0,0
-0,0,0,0,0,0,17.4,0,0,0
-0,0,0,0,0,0,17.4,0,0,0
-2,0,0,0,0,0,17.4,0,0,0
-0,0,0,0,0,0,17.4,0,0,0
-12,0,1,0,0,1,47.8,0,0,1
-38,0,1,0,0,1,30.4,1,0,0
-11,0,1,0,0,1,30.4,1,0,0
-6,0,1,0,0,1,30.4,1,0,0
-9,0,1,0,0,1,30.4,1,0,0
-7,0,1,0,0,1,30.4,1,0,0
-27,3.931826,0,6.408529,7.101676,1,13.73189,0,0,1
-0,3.931826,0,6.408529,7.101676,1,13.73189,0,0,1
-0,3.931826,0,6.408529,7.101676,1,13.73189,0,0,1
-0,3.931826,0,6.408529,7.101676,0,13.73189,1,0,0
-9,3.931826,0,6.408529,7.101676,0,13.73189,1,0,0
-11,3.931826,0,6.408529,7.101676,0,13.73189,1,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,0,0
-2,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-3,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.4,0,0,0
-2,3.931826,0,6.50129,7.194437,0,17.4,1,0,0
-3,3.931826,0,6.50129,7.194437,0,17.4,1,0,0
-2,3.931826,0,6.50129,7.194437,0,17.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,8.7,1,0,0
-1,4.61512,1,6.855409,0,0,8.7,0,0,0
-0,4.61512,1,6.855409,0,0,8.7,0,0,0
-0,4.61512,1,6.855409,0,0,8.7,0,0,0
-13,4.61512,1,6.855409,0,0,30.4,0,0,0
-8,4.61512,1,6.855409,0,0,30.4,0,0,0
-11,4.61512,1,6.855409,0,0,30.4,0,0,0
-1,4.61512,1,6.907755,0,0,21.7,1,0,0
-4,4.61512,1,6.907755,0,0,21.7,1,0,0
-1,4.61512,1,6.907755,0,0,21.7,1,0,0
-2,4.61512,1,6.907755,0,0,21.7,1,0,0
-3,4.61512,1,6.907755,0,0,21.7,1,0,0
-5,4.61512,1,6.907755,0,1,30.4,0,1,0
-2,4.61512,1,6.907755,0,1,30.4,0,1,0
-3,4.61512,1,6.907755,0,1,30.4,0,1,0
-13,4.61512,1,6.907755,0,1,30.4,0,1,0
-6,4.61512,1,6.907755,0,1,30.4,0,1,0
-1,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-0,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-1,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-2,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-2,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-3,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-9,3.931826,0,6.536692,7.229839,1,13.73189,1,0,0
-7,3.931826,0,6.536692,7.229839,1,13.73189,1,0,0
-5,3.931826,0,6.536692,7.229839,1,13.73189,1,0,0
-0,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-0,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-1,3.931826,0,6.536692,7.229839,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-8,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-3,3.931826,0,6.907755,7.600903,0,0,0,0,0
-4,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-4,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-4,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-3,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,4.61512,1,6.802395,0,0,13,0,0,0
-0,4.61512,1,6.802395,0,0,13,0,0,0
-0,4.61512,1,6.802395,0,0,13,0,0,0
-0,4.61512,1,6.802395,0,0,13,0,0,0
-1,4.61512,1,6.802395,0,0,13,0,0,0
-0,4.61512,1,6.802395,0,0,13,0,0,0
-3,4.61512,1,6.802395,0,0,13.73189,0,0,0
-1,4.61512,1,6.802395,0,0,13.73189,0,0,0
-1,4.61512,1,6.802395,0,0,13.73189,0,0,0
-1,4.61512,1,6.802395,0,0,13.73189,0,0,0
-1,4.61512,1,6.802395,0,0,13.73189,0,0,0
-1,4.61512,1,6.802395,0,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-22,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-41,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-22,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-65,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-0,0,0,5.257495,0,0,8.7,1,0,0
-2,0,0,5.257495,0,0,8.7,1,0,0
-0,0,0,5.257495,0,0,8.7,1,0,0
-2,0,0,5.257495,0,0,17.4,1,0,0
-3,0,0,5.257495,0,0,17.4,1,0,0
-1,0,0,5.257495,0,0,17.4,1,0,0
-4,0,0,5.257495,0,0,13.73189,0,0,0
-0,0,0,5.257495,0,0,13.73189,0,0,0
-3,0,0,5.257495,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-1,0,0,4.094345,0,0,13.73189,0,0,0
-4,0,0,4.094345,0,0,13.73189,0,0,0
-2,0,0,4.094345,0,0,13.73189,0,0,0
-34,0,0,4.094345,0,0,13.73189,1,0,0
-22,0,0,4.094345,0,0,13.73189,1,0,0
-31,0,0,4.094345,0,0,13.73189,1,0,0
-4,0,0,4.094345,0,0,13.73189,1,0,0
-7,0,0,4.094345,0,0,13.73189,1,0,0
-2,0,0,4.094345,0,0,17.4,0,0,0
-4,0,0,4.094345,0,0,17.4,0,0,0
-2,0,0,4.094345,0,0,17.4,0,0,0
-10,0,0,4.094345,0,0,17.4,0,0,0
-12,0,0,4.094345,0,0,17.4,0,0,0
-28,0,0,4.094345,0,0,13,0,0,0
-9,0,0,4.094345,0,0,13,0,0,0
-1,0,0,4.094345,0,0,13,0,0,0
-9,0,0,4.094345,0,0,13,0,0,0
-24,0,0,4.094345,0,0,13,0,0,0
-6,0,0,5.552959,0,0,17.4,1,0,0
-5,0,0,5.552959,0,0,17.4,1,0,0
-6,0,0,5.552959,0,0,17.4,1,0,0
-11,0,0,5.552959,0,0,17.4,1,0,0
-10,0,0,5.552959,0,0,17.4,1,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-5,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-10,0,0,4.430817,0,0,13,0,0,0
-16,0,0,4.430817,0,0,13,0,0,0
-8,0,0,4.430817,0,0,13,0,0,0
-7,0,0,4.430817,0,0,13,0,0,0
-5,0,0,4.430817,0,0,13,0,0,0
-7,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-1,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13,0,0,0
-2,0,0,4.430817,0,0,13,0,0,0
-4,0,0,4.430817,0,0,13.73189,1,0,0
-11,0,0,4.430817,0,0,13.73189,1,0,0
-13,0,0,4.430817,0,0,13.73189,1,0,0
-6,0,0,4.430817,0,0,13.73189,1,0,0
-9,0,0,4.430817,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-12,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-18,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-6,0,0,0,0,0,13.73189,1,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-4,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,8.7,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13,1,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-10,0,1,0,0,1,30.4,1,0,0
-3,0,1,0,0,1,30.4,1,0,0
-1,0,1,0,0,1,30.4,1,0,0
-2,0,1,0,0,1,30.4,1,0,0
-0,0,1,0,0,1,30.4,1,0,0
-3,0,1,0,0,0,0,0,0,0
-0,0,1,0,0,0,0,0,0,0
-0,0,1,0,0,0,0,0,0,0
-0,0,1,0,0,0,0,0,0,0
-3,0,1,0,0,0,0,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-2,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-6,0,1,0,0,0,13.73189,0,0,0
-0,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-4,0,1,0,0,0,13.73189,0,0,0
-1,0,1,0,0,0,13.73189,0,0,0
-11,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-7,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-9,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-6,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-4,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-8,3.931826,0,6.906755,7.599902,0,17.4,1,0,0
-6,3.931826,0,6.906755,7.599902,0,17.4,1,0,0
-6,3.931826,0,6.906755,7.599902,0,17.4,1,0,0
-6,3.931826,0,6.906755,7.599902,0,17.4,1,0,0
-12,3.931826,0,6.906755,7.599902,0,17.4,1,0,0
-3,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-7,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-13,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-10,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-2,3.931826,0,6.906755,7.599902,0,13.73189,1,0,0
-2,3.931826,0,6.906755,7.599902,0,26.1,1,0,0
-2,3.931826,0,6.906755,7.599902,0,26.1,1,0,0
-4,3.931826,0,6.906755,7.599902,0,26.1,1,0,0
-3,3.931826,0,6.906755,7.599902,0,26.1,1,0,0
-4,3.931826,0,6.906755,7.599902,0,26.1,1,0,0
-8,0,0,3.178054,0,1,13.73189,1,0,0
-1,0,0,3.178054,0,1,13.73189,1,0,0
-0,0,0,3.178054,0,1,13.73189,1,0,0
-0,3.931826,0,6.309918,7.003066,1,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,1,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,1,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,1,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,1,8.7,1,0,0
-1,3.931826,0,6.309918,7.003066,0,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,0,8.7,1,0,0
-0,3.931826,0,6.309918,7.003066,0,8.7,1,0,0
-4,3.931826,0,6.309918,7.003066,0,8.7,1,0,0
-10,3.931826,0,6.309918,7.003066,0,21.7,1,0,0
-22,3.931826,0,6.309918,7.003066,0,21.7,1,0,0
-8,3.931826,0,6.309918,7.003066,0,21.7,1,0,0
-22,3.931826,0,6.309918,7.003066,0,21.7,1,0,0
-18,3.931826,0,6.309918,7.003066,0,21.7,1,0,0
-7,4.61512,1,6.802395,0,0,4.3,0,0,0
-7,4.61512,1,6.802395,0,0,4.3,0,0,0
-2,4.61512,1,6.802395,0,0,4.3,0,0,0
-0,4.61512,1,6.802395,0,0,4.3,0,0,0
-3,4.61512,1,6.802395,0,0,4.3,0,0,0
-0,4.61512,1,6.802395,0,0,4.3,0,0,0
-6,4.61512,1,6.802395,0,0,0,0,0,0
-5,4.61512,1,6.802395,0,0,0,0,0,0
-7,4.61512,1,6.802395,0,0,0,0,0,0
-2,4.61512,1,6.802395,0,0,17.4,0,0,0
-8,4.61512,1,6.802395,0,0,17.4,0,0,0
-3,4.61512,1,6.802395,0,0,17.4,0,0,0
-3,4.61512,1,6.802395,0,0,13.73189,0,0,0
-4,4.61512,1,6.802395,0,0,13.73189,0,0,0
-2,4.61512,1,6.802395,0,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13,1,0,0
-3,3.931826,0,6.907755,7.600903,0,13,1,0,0
-1,3.931826,0,6.907755,7.600903,0,13,1,0,0
-2,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-2,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-1,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-1,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-2,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-1,0,0,6.408529,0,0,13,1,0,0
-2,0,0,6.408529,0,0,13,1,0,0
-1,0,0,6.408529,0,0,13,1,0,0
-5,0,0,6.408529,0,1,34.8,1,0,0
-9,0,0,6.408529,0,1,34.8,1,0,0
-11,0,0,6.408529,0,1,34.8,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-2,3.931826,0,6.907755,7.600903,0,8.7,0,0,0
-5,3.931826,0,5.003946,5.697093,0,17.4,0,0,0
-3,3.931826,0,5.003946,5.697093,0,17.4,0,0,0
-2,3.931826,0,5.003946,5.697093,0,17.4,0,0,0
-5,3.931826,0,5.003946,5.697093,0,17.4,0,0,0
-4,3.931826,0,5.003946,5.697093,0,17.4,0,0,0
-3,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-2,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-6,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-4,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-3,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-4,3.931826,0,5.003946,5.697093,0,13.73189,1,0,0
-3,3.931826,0,5.003946,5.697093,0,13.73189,1,0,0
-0,3.931826,0,5.003946,5.697093,0,13.73189,1,0,0
-0,3.931826,0,5.003946,5.697093,0,13.73189,1,0,0
-3,3.931826,0,5.003946,5.697093,0,13.73189,1,0,0
-4,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-2,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-6,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-0,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-5,3.931826,0,5.003946,5.697093,0,13.73189,0,0,0
-3,4.61512,1,6.75227,0,0,13.73189,0,0,0
-0,4.61512,1,6.75227,0,0,13.73189,0,0,0
-1,4.61512,1,6.75227,0,0,13.73189,0,0,0
-2,4.61512,1,6.75227,0,0,13.73189,0,0,0
-0,4.61512,1,6.75227,0,0,13.73189,0,0,0
-6,4.61512,1,6.75227,0,0,13.73189,0,0,0
-0,4.61512,1,6.75227,0,0,13.73189,0,0,0
-3,4.61512,1,6.75227,0,0,13.73189,0,0,0
-1,4.61512,1,6.75227,0,0,13.73189,0,0,0
-0,4.61512,1,6.75227,0,0,13.73189,0,0,0
-2,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-7,4.61512,1,6.907755,0,0,13.73189,0,0,0
-4,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,3.931826,0,5.852202,6.190315,0,13.73189,1,0,0
-0,3.931826,0,5.852202,6.190315,0,13.73189,1,0,0
-1,3.931826,0,5.852202,6.190315,0,13.73189,1,0,0
-2,3.931826,0,5.852202,6.190315,1,30.4,0,1,0
-0,3.931826,0,5.852202,6.190315,1,30.4,0,1,0
-0,3.931826,0,5.852202,6.190315,1,30.4,0,1,0
-4,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-1,4.61512,1,6.907755,0,0,8.7,1,0,0
-3,4.61512,1,6.907755,0,0,13,1,0,0
-3,4.61512,1,6.907755,0,0,13,1,0,0
-1,4.61512,1,6.907755,0,0,13,1,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-3,0,0,5.783825,0,0,13.73189,0,0,0
-6,0,0,5.783825,0,0,13.73189,0,0,0
-5,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-4,0,0,5.783825,0,0,13.73189,0,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-5,0,0,5.783825,0,0,8.7,0,0,0
-8,0,0,5.783825,0,0,8.7,0,0,0
-1,0,0,5.783825,0,0,8.7,0,0,0
-1,0,0,5.783825,0,0,8.7,0,0,0
-0,0,0,5.783825,0,0,8.7,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-2,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-4,0,0,5.783825,0,0,0,0,0,0
-4,0,0,5.783825,0,0,0,0,0,0
-9,0,0,5.783825,0,0,0,0,0,0
-4,0,0,5.783825,0,0,0,0,0,0
-7,0,0,5.783825,0,0,0,0,0,0
-0,0,0,5.783825,0,0,0,1,0,0
-2,0,0,5.783825,0,0,0,1,0,0
-0,0,0,5.783825,0,0,0,1,0,0
-4,0,0,5.783825,0,0,0,1,0,0
-0,0,0,5.783825,0,0,0,1,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-1,0,0,5.783825,0,0,13.73189,0,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-0,0,0,5.783825,0,0,13.73189,0,0,0
-3,0,0,5.746203,0,1,26.1,0,0,1
-7,0,0,5.746203,0,1,26.1,0,0,1
-6,0,0,5.746203,0,1,26.1,0,0,1
-3,0,0,5.746203,0,0,17.4,0,1,0
-8,0,0,5.746203,0,0,17.4,0,1,0
-0,0,0,5.746203,0,0,17.4,0,1,0
-9,0,0,5.746203,0,1,34.8,0,0,1
-8,0,0,5.746203,0,1,34.8,0,0,1
-6,0,0,5.746203,0,1,34.8,0,0,1
-2,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-0,0,0,5.31812,0,0,13.73189,0,0,0
-0,0,0,5.31812,0,0,13.73189,0,0,0
-0,0,0,5.31812,0,0,13.73189,0,0,0
-0,0,0,5.31812,0,0,13.73189,0,0,0
-1,0,0,5.31812,0,0,13.73189,0,0,0
-12,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-12,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-7,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-21,3.258096,0,5.986452,6.79794,1,30.4,0,0,1
-10,3.258096,0,5.986452,6.79794,1,30.4,0,0,1
-12,3.258096,0,5.986452,6.79794,1,30.4,0,0,1
-38,3.258096,0,5.986452,6.79794,0,26.1,1,0,0
-13,3.258096,0,5.986452,6.79794,0,26.1,1,0,0
-15,3.258096,0,5.986452,6.79794,0,26.1,1,0,0
-35,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-46,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-31,3.258096,0,5.986452,6.79794,0,13.73189,0,0,0
-13,3.258096,0,5.627621,7.013916,1,13.73189,0,0,0
-1,0,0,0,0,0,8.7,1,0,0
-2,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-1,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-0,0,0,0,0,0,13,0,1,0
-1,0,0,0,0,0,13,0,1,0
-1,0,0,0,0,0,13,0,1,0
-3,0,0,0,0,0,13,0,1,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-1,4.61512,1,0,0,0,13.73189,0,0,0
-1,4.61512,1,0,0,1,17.4,0,0,0
-3,4.61512,1,0,0,1,17.4,0,0,0
-2,4.61512,1,0,0,1,17.4,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-2,4.61512,1,0,0,0,8.7,0,0,0
-0,4.61512,1,0,0,0,8.7,0,0,0
-0,4.61512,1,0,0,0,8.7,0,0,0
-0,4.61512,1,0,0,1,13,1,0,0
-0,4.61512,1,0,0,1,13,1,0,0
-0,4.61512,1,0,0,1,13,1,0,0
-0,4.61512,1,5.56452,0,0,13.73189,1,0,0
-13,4.61512,1,5.56452,0,0,13.73189,1,0,0
-6,4.61512,1,5.56452,0,0,13.73189,1,0,0
-1,4.61512,1,5.56452,0,0,13.73189,1,0,0
-4,4.61512,1,5.56452,0,0,13.73189,1,0,0
-3,0,0,5.556828,0,1,39.1,1,0,0
-7,0,0,5.556828,0,1,39.1,1,0,0
-10,0,0,5.556828,0,1,39.1,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,21.7,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13.73189,1,0,0
-9,3.258096,0,6.39693,7.783224,0,17.4,1,0,0
-15,3.258096,0,6.39693,7.783224,0,17.4,1,0,0
-19,3.258096,0,6.39693,7.783224,0,17.4,1,0,0
-2,3.258096,0,6.39693,7.783224,0,17.4,1,0,0
-3,3.258096,0,6.39693,7.783224,0,17.4,1,0,0
-9,3.258096,0,0,0,0,30.4,0,1,0
-12,3.258096,0,0,0,0,30.4,0,1,0
-9,3.258096,0,0,0,0,30.4,0,1,0
-8,3.258096,0,0,0,0,30.4,0,1,0
-12,3.258096,0,0,0,0,30.4,0,1,0
-2,3.258096,0,0,0,0,13.73189,1,0,0
-1,3.258096,0,0,0,0,13.73189,1,0,0
-2,3.258096,0,0,0,0,13.73189,1,0,0
-1,3.258096,0,0,0,0,13.73189,1,0,0
-2,3.258096,0,0,0,0,13.73189,1,0,0
-2,3.258096,0,0,0,0,8.7,1,0,0
-2,3.258096,0,0,0,0,8.7,1,0,0
-5,3.258096,0,0,0,0,8.7,1,0,0
-4,3.258096,0,0,0,0,8.7,1,0,0
-8,3.258096,0,0,0,0,8.7,1,0,0
-11,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-2,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-3,0,0,0,0,0,13.73189,1,0,0
-4,0,0,0,0,0,13.73189,1,0,0
-13,0,0,0,0,0,26.1,1,0,0
-14,0,0,0,0,0,26.1,1,0,0
-2,0,0,0,0,0,26.1,1,0,0
-10,0,0,0,0,0,13,1,0,0
-4,0,0,0,0,0,13,1,0,0
-3,0,0,0,0,0,13,1,0,0
-0,3.931826,0,0,5.111988,0,13.73189,0,0,0
-0,3.931826,0,0,5.111988,0,13.73189,0,0,0
-0,3.931826,0,0,5.111988,0,13.73189,0,0,0
-3,3.931826,0,0,5.111988,0,13.73189,0,0,0
-0,3.931826,0,0,5.111988,0,13.73189,0,0,0
-6,3.931826,0,0,5.111988,0,13.73189,0,0,0
-8,3.931826,0,0,5.111988,0,13.73189,0,0,0
-17,3.931826,0,0,5.111988,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-1,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,26.1,0,1,0
-0,0,0,0,0,0,26.1,0,1,0
-0,0,0,0,0,0,26.1,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,0,1,0
-1,0,0,4.983607,0,0,4.3,0,0,0
-6,0,0,4.983607,0,0,4.3,0,0,0
-2,0,0,4.983607,0,0,4.3,0,0,0
-9,0,0,4.983607,0,0,8.7,0,0,0
-3,0,0,4.983607,0,0,8.7,0,0,0
-3,0,0,4.983607,0,0,8.7,0,0,0
-5,0,0,5.277298,0,0,8.7,1,0,0
-2,0,0,5.277298,0,0,8.7,1,0,0
-3,0,0,5.277298,0,0,8.7,1,0,0
-2,0,0,5.277298,0,.12982,13.73189,0,0,0
-6,0,0,5.277298,0,.12982,13.73189,0,0,0
-2,0,0,5.277298,0,.12982,13.73189,0,0,0
-3,0,0,5.277298,0,0,13.73189,0,0,0
-2,0,0,5.277298,0,0,13.73189,0,0,0
-4,0,0,5.277298,0,0,13.73189,0,0,0
-3,0,0,5.277298,0,0,13.73189,0,0,0
-5,0,0,5.277298,0,0,13.73189,0,0,0
-4,0,0,5.277298,0,0,13.73189,0,0,0
-8,0,0,5.277298,0,0,21.7,0,0,0
-10,0,0,5.277298,0,0,21.7,0,0,0
-10,0,0,5.277298,0,0,21.7,0,0,0
-0,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-1,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-0,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-0,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-1,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-7,3.931826,0,5.988961,6.682108,0,8.7,1,0,0
-10,3.931826,0,5.988961,6.682108,0,8.7,1,0,0
-4,3.931826,0,5.988961,6.682108,0,8.7,1,0,0
-0,3.931826,0,5.988961,6.682108,0,8.7,1,0,0
-1,3.931826,0,5.988961,6.682108,0,8.7,1,0,0
-9,3.931826,0,0,7.570443,0,13.73189,0,0,0
-1,3.931826,0,0,7.570443,0,13.73189,0,0,0
-2,3.931826,0,0,7.570443,0,13.73189,0,0,0
-4,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-1,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-8,3.931826,0,0,7.570443,0,13.73189,1,0,0
-5,3.931826,0,0,7.570443,0,13.73189,1,0,0
-0,3.931826,0,0,7.570443,0,13.73189,1,0,0
-0,3.931826,0,0,7.570443,0,13.73189,1,0,0
-0,3.931826,0,0,7.570443,0,13.73189,1,0,0
-3,3.931826,0,0,7.570443,0,13.73189,0,0,0
-1,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-0,3.931826,0,0,7.570443,0,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,0,13,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13,1,0,0
-8,3.258096,0,6.907755,8.294049,0,13,1,0,0
-1,0,0,0,0,0,13.73189,0,1,0
-3,0,0,0,0,0,13.73189,0,1,0
-4,0,0,0,0,0,13.73189,0,1,0
-0,0,0,0,0,0,13.73189,1,0,0
-0,0,0,0,0,0,13.73189,1,0,0
-7,0,0,0,0,0,13.73189,1,0,0
-3,0,1,6.475433,0,0,13,0,0,0
-6,0,1,6.475433,0,0,13,0,0,0
-3,0,1,6.475433,0,0,13,0,0,0
-0,0,1,6.475433,0,0,0,0,0,0
-9,0,1,6.475433,0,0,0,0,0,0
-0,0,1,6.475433,0,0,0,0,0,0
-5,0,0,0,0,0,13.73189,0,0,0
-12,0,0,0,0,0,13.73189,0,0,0
-44,0,0,0,0,0,13.73189,0,0,0
-56,0,0,0,0,0,13.73189,0,0,0
-38,0,0,0,0,0,13.73189,0,0,0
-10,0,0,0,0,0,8.7,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-4,0,0,0,0,0,8.7,0,0,0
-1,0,0,0,0,0,8.7,0,0,0
-3,0,0,0,0,0,8.7,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-5,0,0,4.094345,0,0,13.73189,0,0,0
-0,0,0,4.094345,0,0,13.73189,0,0,0
-7,0,0,4.094345,0,0,13.73189,0,0,0
-7,0,0,4.094345,0,0,13.73189,0,0,0
-9,0,0,4.094345,0,0,13.73189,0,0,0
-3,0,0,4.094345,0,0,13.73189,0,0,0
-7,0,0,4.094345,0,0,13.73189,0,0,0
-4,0,0,4.094345,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,4.3,0,0,0
-5,4.61512,1,6.907755,0,0,4.3,0,0,0
-3,4.61512,1,6.907755,0,0,4.3,0,0,0
-3,4.61512,1,6.907755,0,0,8.7,0,0,0
-5,4.61512,1,6.907755,0,0,8.7,0,0,0
-1,4.61512,1,6.907755,0,0,8.7,0,0,0
-1,4.61512,1,0,0,0,0,0,0,0
-2,4.61512,1,0,0,0,0,0,0,0
-0,4.61512,1,0,0,0,0,0,0,0
-0,4.61512,1,0,0,0,0,0,0,0
-4,0,0,0,0,0,4.3,0,0,0
-5,0,0,0,0,0,4.3,0,0,0
-3,0,0,0,0,0,4.3,0,0,0
-8,0,0,0,0,0,0,0,0,0
-10,0,0,0,0,0,0,0,0,0
-7,0,0,0,0,0,0,0,0,0
-13,0,0,0,0,1,39.1,0,0,0
-10,0,0,0,0,1,39.1,0,0,0
-11,0,0,0,0,1,39.1,0,0,0
-5,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,8.7,0,0,0
-13,3.258096,0,6.907755,8.294049,0,13,1,0,0
-16,3.258096,0,6.907755,8.294049,0,13,1,0,0
-7,3.258096,0,6.907755,8.294049,0,13,1,0,0
-4,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-3,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-0,3.931826,0,5.988961,6.682108,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,13,0,0,0
-0,4.61512,1,0,0,0,13,0,0,0
-0,4.61512,1,0,0,0,13,0,0,0
-1,4.61512,1,0,0,0,13,0,0,0
-1,4.61512,1,0,0,0,13,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-1,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,8.7,0,0,0
-0,4.61512,1,0,0,0,8.7,0,0,0
-7,4.61512,1,0,0,0,8.7,0,0,0
-1,4.61512,1,0,0,0,8.7,0,0,0
-3,4.61512,1,0,0,0,8.7,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-8,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-11,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-10,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-30,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-18,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-18,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-17,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-14,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-19,3.258096,0,6.907755,8.294049,1,26.1,1,0,0
-23,3.258096,0,6.907755,8.294049,1,26.1,1,0,0
-29,3.258096,0,6.907755,8.294049,1,26.1,1,0,0
-27,3.258096,0,6.907755,8.294049,1,26.1,1,0,0
-25,3.258096,0,6.907755,8.294049,1,26.1,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-7,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-6,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-6,3.258096,0,6.907755,8.294049,0,21.7,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-1,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-0,4.61512,1,6.005269,0,0,13.73189,0,0,0
-1,4.61512,1,6.005269,0,0,13.73189,0,0,0
-1,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,8.7,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,0,0,0
-0,3.931826,0,6.620073,7.313221,0,4.3,0,0,0
-0,3.931826,0,6.620073,7.313221,0,4.3,0,0,0
-0,3.931826,0,6.620073,7.313221,0,4.3,0,0,0
-1,4.61512,1,6.907755,0,0,17.4,1,0,0
-5,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-0,4.61512,1,6.907755,0,0,17.4,1,0,0
-6,4.61512,1,6.907755,0,0,17.4,1,0,0
-3,4.61512,1,6.907755,0,0,21.7,1,0,0
-5,4.61512,1,6.907755,0,0,21.7,1,0,0
-1,4.61512,1,6.907755,0,0,21.7,1,0,0
-4,4.61512,1,6.907755,0,0,21.7,1,0,0
-1,4.61512,1,6.907755,0,0,21.7,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-3,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-1,4.61512,1,6.907755,0,0,13.73189,1,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-10,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-0,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,13.73189,0,0,0
-1,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-0,0,0,0,0,0,8.7,1,0,0
-2,0,0,0,0,0,21.7,1,0,0
-2,0,0,0,0,0,21.7,1,0,0
-1,0,0,0,0,0,21.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-6,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-8,0,0,4.61512,0,1,13.73189,0,0,0
-2,0,0,4.61512,0,1,13.73189,0,0,0
-6,0,0,4.61512,0,1,13.73189,0,0,0
-4,0,0,4.61512,0,1,13.73189,0,0,0
-3,0,0,4.61512,0,1,13.73189,0,0,0
-7,0,0,4.61512,0,0,13.73189,0,0,0
-6,0,0,4.61512,0,0,13.73189,0,0,0
-0,0,0,4.61512,0,0,13.73189,0,0,0
-0,0,0,4.61512,0,0,13.73189,0,0,0
-10,0,0,4.61512,0,0,13.73189,0,0,0
-9,0,0,4.61512,0,1,13.73189,0,0,0
-6,0,0,4.61512,0,1,13.73189,0,0,0
-9,0,0,4.61512,0,1,13.73189,0,0,0
-12,0,0,4.61512,0,1,13.73189,0,0,0
-0,0,0,4.61512,0,1,13.73189,0,0,0
-15,3.931826,0,5.991465,6.684612,0,8.7,1,0,0
-4,3.931826,0,5.991465,6.684612,0,8.7,1,0,0
-2,3.931826,0,5.991465,6.684612,0,8.7,1,0,0
-2,3.931826,0,5.389072,5.991465,0,13,0,0,0
-1,3.931826,0,5.389072,5.991465,0,13,0,0,0
-1,3.931826,0,5.389072,5.991465,0,13,0,0,0
-7,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-4,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-4,0,0,0,0,0,13,1,0,0
-4,0,0,0,0,0,13,1,0,0
-8,0,0,0,0,0,13,1,0,0
-4,0,0,0,0,0,13,1,0,0
-4,0,0,0,0,0,13,1,0,0
-7,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-12,0,0,0,0,0,13.73189,0,0,0
-4,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-1,0,1,5.703783,0,0,13.73189,0,0,0
-0,0,1,5.703783,0,0,13.73189,0,0,0
-2,0,1,5.703783,0,0,13.73189,0,0,0
-2,0,1,5.703783,0,0,13.73189,0,0,0
-1,0,1,5.703783,0,0,13.73189,0,0,0
-4,0,1,5.703783,0,0,13.73189,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,0,1,0
-2,3.931826,0,6.39693,7.090077,0,13.73189,0,1,0
-5,3.931826,0,6.39693,7.090077,0,13.73189,0,1,0
-4,3.931826,0,6.39693,7.090077,0,13.73189,0,1,0
-4,3.931826,0,6.39693,7.090077,0,13.73189,0,0,0
-1,3.931826,0,6.39693,7.090077,0,13.73189,0,0,0
-0,3.931826,0,6.39693,7.090077,0,13.73189,0,0,0
-5,0,0,4.787492,0,0,13.73189,0,0,0
-11,0,0,4.787492,0,0,13.73189,0,0,0
-41,0,0,4.787492,0,0,13.73189,0,0,0
-2,0,0,4.787492,0,0,13.73189,0,0,0
-3,0,0,4.787492,0,0,13.73189,0,0,0
-3,0,0,4.787492,0,0,13.73189,0,0,0
-7,0,0,4.787492,0,0,13.73189,1,0,0
-10,0,0,4.787492,0,0,13.73189,1,0,0
-10,0,0,4.787492,0,0,13.73189,1,0,0
-7,0,1,0,0,1,13.73189,0,0,1
-6,0,1,0,0,1,13.73189,0,0,1
-11,0,1,0,0,1,13.73189,0,0,1
-4,0,1,0,0,0,13.73189,1,0,0
-7,0,1,0,0,0,13.73189,1,0,0
-6,0,1,0,0,0,13.73189,1,0,0
-2,0,1,0,0,1,13.73189,0,1,0
-2,0,1,0,0,1,13.73189,0,1,0
-4,0,1,0,0,1,13.73189,0,1,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-6,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-13,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,1,0
-1,3.931826,0,6.907755,7.600903,0,4.3,0,1,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,1,0
-2,3.931826,0,6.907755,7.600903,0,4.3,0,1,0
-0,3.931826,0,6.907755,7.600903,0,4.3,0,1,0
-0,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-6,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-2,3.931826,0,6.907755,7.600903,0,17.4,1,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-1,4.61512,1,6.395262,0,0,8.7,1,0,0
-0,4.61512,1,6.395262,0,0,8.7,1,0,0
-2,4.61512,1,6.395262,0,0,8.7,1,0,0
-1,4.61512,1,6.395262,0,1,17.4,0,1,0
-0,4.61512,1,6.395262,0,1,17.4,0,1,0
-2,4.61512,1,6.395262,0,1,17.4,0,1,0
-0,4.61512,1,6.395262,0,0,13.73189,1,0,0
-0,4.61512,1,6.395262,0,0,13.73189,1,0,0
-2,4.61512,1,6.395262,0,0,13.73189,1,0,0
-0,4.61512,1,0,0,0,17.4,1,0,0
-0,4.61512,1,0,0,0,17.4,1,0,0
-0,4.61512,1,0,0,0,17.4,1,0,0
-0,4.61512,1,0,0,0,17.4,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,8.7,1,0,0
-0,4.61512,1,0,0,0,34.8,0,1,0
-0,4.61512,1,0,0,0,34.8,0,1,0
-0,4.61512,1,0,0,0,34.8,0,1,0
-0,4.61512,1,0,0,0,34.8,0,1,0
-0,4.61512,1,0,0,0,34.8,0,1,0
-0,4.61512,1,0,0,0,4.3,0,0,0
-0,4.61512,1,0,0,0,4.3,0,0,0
-0,4.61512,1,0,0,0,4.3,0,0,0
-0,4.61512,1,0,0,0,4.3,0,0,0
-0,4.61512,1,0,0,0,4.3,0,0,0
-0,4.61512,1,6.907755,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,13,0,0,0
-0,4.61512,1,6.907755,0,0,13.73189,1,0,0
-7,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-4,3.258096,0,6.907755,8.294049,0,17.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,26.1,0,0,0
-2,3.258096,0,6.907755,8.294049,0,26.1,0,0,0
-15,3.258096,0,6.907755,8.294049,0,26.1,0,0,0
-0,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-2,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-1,3.258096,0,6.907755,8.294049,0,4.3,0,0,0
-3,4.61512,1,6.308098,0,0,8.7,0,0,0
-1,4.61512,1,6.308098,0,0,8.7,0,0,0
-3,4.61512,1,6.308098,0,0,8.7,0,0,0
-4,4.61512,1,6.308098,0,0,21.7,0,0,0
-3,4.61512,1,6.308098,0,0,21.7,0,0,0
-0,4.61512,1,6.308098,0,0,21.7,0,0,0
-7,4.61512,1,6.907755,0,1,8.7,0,1,0
-8,4.61512,1,6.907755,0,1,8.7,0,1,0
-9,4.61512,1,6.907755,0,1,8.7,0,1,0
-8,4.61512,1,6.907755,0,1,8.7,0,1,0
-7,4.61512,1,6.907755,0,1,8.7,0,1,0
-1,0,0,0,0,0,13.73189,1,0,0
-1,0,0,0,0,0,13.73189,1,0,0
-5,0,0,0,0,0,13.73189,1,0,0
-5,0,0,4.276666,0,0,13.73189,0,0,0
-3,0,0,4.276666,0,0,13.73189,0,0,0
-2,0,0,4.276666,0,0,13.73189,0,0,0
-0,4.61512,1,0,0,0,13.73189,0,1,0
-1,4.61512,1,0,0,0,13.73189,0,1,0
-0,4.61512,1,0,0,0,13.73189,0,1,0
-0,4.61512,1,0,0,0,13.73189,0,1,0
-0,4.61512,1,0,0,0,13.73189,0,1,0
-1,0,0,0,0,1,13.73189,0,1,0
-1,0,0,0,0,1,13.73189,0,1,0
-1,0,0,0,0,1,13.73189,0,1,0
-7,0,0,0,0,1,13.73189,0,1,0
-1,0,0,0,0,1,13.73189,0,1,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-4,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,1,0,0
-0,3.258096,0,5.828946,7.21524,0,13.73189,0,1,0
-0,3.258096,0,5.828946,7.21524,0,13.73189,0,1,0
-3,3.931826,0,6.683361,7.376508,0,13.73189,0,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,0,0,0
-0,3.931826,0,6.683361,7.376508,0,13.73189,0,0,0
-8,0,0,0,0,0,13.73189,0,0,0
-9,0,0,0,0,0,13.73189,0,0,0
-3,0,0,0,0,0,13.73189,0,0,0
-2,0,0,0,0,0,13.73189,0,0,0
-6,0,0,0,0,0,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.73189,0,0,0
-1,0,1,0,0,1,13.73189,0,0,0
-0,0,1,0,0,1,13.73189,0,0,0
-3,0,1,0,0,1,13.73189,0,0,0
-9,0,1,0,0,1,13.73189,0,0,0
-1,0,1,0,0,1,13.73189,0,0,0
-0,4.61512,1,5.645447,0,0,13.73189,0,0,0
-0,4.61512,1,5.645447,0,0,13.73189,0,0,0
-0,4.61512,1,5.645447,0,0,13.73189,0,0,0
-16,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-6,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-9,3.931826,0,6.907755,7.600903,0,13.73189,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.73189,0,0,0
-9,0,0,5.783825,0,.0327869,13.73189,0,0,0
-23,0,0,5.783825,0,.0327869,13.73189,0,0,0
-41,0,0,5.783825,0,.0327869,13.73189,0,0,0
-20,0,0,5.783825,0,.0327869,13.73189,0,0,0
-21,0,0,5.783825,0,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-1,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-0,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-15,0,0,6.126869,0,.0327869,13.73189,0,0,0
-7,0,0,6.126869,0,.0327869,13.73189,0,0,0
-5,0,0,6.126869,0,.0327869,13.73189,0,0,0
-0,0,0,6.126869,0,.0327869,13.73189,0,0,0
-5,0,1,4.976734,0,.0327869,13.73189,0,0,0
-8,0,1,4.976734,0,.0327869,13.73189,0,0,0
-13,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-7,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-5,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-8,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-5,4.61512,1,0,0,.0327869,13.73189,0,0,0
-1,4.61512,1,0,0,.0327869,13.73189,0,0,0
-0,4.61512,1,0,0,.0327869,13.73189,0,0,0
-2,4.61512,1,0,0,.0327869,13.73189,0,0,0
-1,0,0,0,0,.0327869,13.73189,0,0,0
-2,0,0,0,0,.0327869,13.73189,0,0,0
-13,3.931826,0,6.109248,5.786897,.0327869,13.73189,0,0,0
-6,3.931826,0,6.109248,5.786897,.0327869,13.73189,0,0,0
-3,3.931826,0,6.109248,5.786897,.0327869,13.73189,0,0,0
-0,3.931826,0,6.109248,5.786897,.0327869,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-13,0,0,5.783825,0,.0327869,13.73189,0,0,0
-2,0,0,5.783825,0,.0327869,13.73189,0,0,0
-1,0,0,5.783825,0,.0327869,13.73189,0,0,0
-0,0,0,0,0,.0327869,13.73189,0,0,0
-0,0,0,0,0,.0327869,13.73189,0,0,0
-10,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-5,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-2,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-4,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-4,4.61512,1,6.802395,0,.0327869,13.73189,0,0,0
-2,4.61512,1,6.802395,0,.0327869,13.73189,0,0,0
-6,0,0,5.777652,0,.0327869,13.73189,0,0,0
-3,0,0,5.777652,0,.0327869,13.73189,0,0,0
-2,0,0,5.777652,0,.0327869,13.73189,0,0,0
-5,0,0,5.777652,0,.0327869,13.73189,0,0,0
-9,0,0,0,0,.0327869,13.73189,0,0,0
-7,0,0,0,0,.0327869,13.73189,0,0,0
-9,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-22,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-5,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-2,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-8,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-1,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-2,0,0,4.094345,0,.0327869,13.73189,0,0,0
-3,0,0,4.094345,0,.0327869,13.73189,0,0,0
-7,0,0,0,0,.0327869,13.73189,0,0,0
-1,0,0,0,0,.0327869,13.73189,0,0,0
-3,0,0,0,0,.0327869,13.73189,0,0,0
-2,0,0,0,0,.0327869,13.73189,0,0,0
-3,4.61512,1,6.791222,0,.0327869,13.73189,0,0,0
-1,4.61512,1,6.791222,0,.0327869,13.73189,0,0,0
-2,4.61512,1,6.791222,0,.0327869,13.73189,0,0,0
-6,4.61512,1,6.791222,0,.0327869,13.73189,0,0,0
-13,0,0,0,0,.0327869,13.73189,0,0,0
-4,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-5,3.258096,0,5.988961,7.375256,.0327869,13.73189,0,0,0
-5,3.258096,0,5.988961,7.375256,.0327869,13.73189,0,0,0
-1,3.258096,0,5.988961,7.375256,.0327869,13.73189,0,0,0
-3,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-6,0,0,5.31812,0,.0327869,13.73189,0,0,0
-1,0,0,5.31812,0,.0327869,13.73189,0,0,0
-2,0,0,5.31812,0,.0327869,13.73189,0,0,0
-6,0,0,0,0,.0327869,13.73189,0,0,0
-4,0,0,0,0,.0327869,13.73189,0,0,0
-7,0,0,0,0,.0327869,13.73189,0,0,0
-7,3.931826,0,5.298317,5.991465,.0327869,13.73189,0,0,0
-2,3.931826,0,5.298317,5.991465,.0327869,13.73189,0,0,0
-3,3.931826,0,5.298317,5.991465,.0327869,13.73189,0,0,0
-7,3.931826,0,6.907755,7.600903,.0327869,13.73189,0,0,0
-4,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-1,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-11,3.258096,0,6.907755,8.294049,.0327869,13.73189,0,0,0
-11,0,0,4.983607,0,.0327869,13.73189,0,0,0
-1,4.61512,1,4.317488,0,.0327869,13.73189,0,0,0
-0,4.61512,1,4.317488,0,.0327869,13.73189,0,0,0
-0,4.61512,1,4.317488,0,.0327869,13.73189,0,0,0
-18,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-5,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-2,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-12,0,0,0,0,.0327869,13.73189,0,0,0
-8,0,0,0,0,.0327869,13.73189,0,0,0
-8,0,1,6.109248,0,.0327869,13.73189,0,0,0
-15,0,0,0,0,.0327869,13.73189,0,0,0
-6,0,0,0,0,.0327869,13.73189,0,0,0
-6,3.931826,0,6.395262,7.088409,.0327869,13.73189,0,0,0
-6,3.931826,0,6.395262,7.088409,.0327869,13.73189,0,0,0
-4,0,0,5.783825,0,.0327869,13.73189,0,0,0
-3,0,0,5.783825,0,.0327869,13.73189,0,0,0
-8,0,0,0,0,.0327869,13.73189,0,0,0
-6,0,0,0,0,.0327869,13.73189,0,0,0
-20,0,0,4.61512,0,.0327869,13.73189,0,0,0
-14,0,0,4.61512,0,.0327869,13.73189,0,0,0
-2,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-0,4.61512,1,6.907755,0,.0327869,13.73189,0,0,0
-0,4.61512,1,0,0,.0327869,13.73189,0,0,0
-5,4.61512,1,0,0,.0327869,13.73189,0,0,0
-7,0,0,0,0,.0327869,13.73189,0,0,0
-6,3.258096,0,0,0,.0327869,13.73189,0,0,0
-2,0,1,0,0,.0327869,13.73189,0,0,0
-7,0,0,0,0,.0327869,13.73189,0,0,0
-5,0,0,5.552959,0,.0327869,13.73189,0,0,0
-0,4.61512,1,5.843544,0,.0327869,13.73189,0,0,0
-2,4.61512,1,0,0,.0327869,13.73189,0,0,0
-4,3.258096,0,6.39693,7.783224,.0327869,13.73189,0,0,0
-7,0,1,4.787492,0,.0327869,13.73189,0,0,0
-13,4.61512,1,5.924256,0,.0327869,13.73189,0,0,0
-2,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,4.564348,0,6.309918,6.361212,0,6.9,1,0,0
-0,4.564348,0,6.309918,6.361212,0,6.9,1,0,0
-3,4.564348,0,6.309918,6.361212,0,6.9,1,0,0
-3,4.564348,0,6.309918,6.361212,0,6.9,1,0,0
-0,4.564348,0,6.309918,6.361212,0,6.9,1,0,0
-1,4.564348,0,6.309918,6.361212,0,10.3,1,0,0
-3,4.564348,0,6.309918,6.361212,0,10.3,1,0,0
-0,4.564348,0,6.309918,6.361212,0,10.3,1,0,0
-0,4.564348,0,6.309918,6.361212,0,10.3,1,0,0
-0,4.564348,0,6.309918,6.361212,0,10.3,1,0,0
-1,0,0,5.187609,0,0,10.3,1,0,0
-0,0,0,5.187609,0,0,10.3,1,0,0
-2,0,0,5.187609,0,0,10.3,1,0,0
-2,0,0,5.187609,0,0,27.6,1,0,0
-3,0,0,5.187609,0,0,27.6,1,0,0
-6,0,0,5.187609,0,0,27.6,1,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-9,0,1,6.109248,6.160541,0,6.9,0,0,0
-19,0,1,6.109248,6.160541,0,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,11.84267,0,0,0
-7,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,24.1,1,0,0
-5,0,1,6.109248,6.160541,0,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,24.1,1,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-0,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-6,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,4.564348,0,4.405865,5.374791,0,0,0,0,0
-0,4.564348,0,4.405865,5.374791,0,0,0,0,0
-0,4.564348,0,4.405865,5.374791,0,0,0,0,0
-1,4.564348,0,4.405865,5.374791,1,20.7,1,0,0
-1,4.564348,0,4.405865,5.374791,1,20.7,1,0,0
-0,4.564348,0,4.405865,5.374791,1,20.7,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-14,0,0,0,0,0,13.8,1,0,0
-10,0,0,0,0,0,13.8,1,0,0
-22,0,0,0,0,0,13.8,1,0,0
-1,0,1,0,6.160541,0,10.3,0,0,0
-1,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-3,0,1,0,6.160541,0,0,0,0,0
-2,0,1,0,6.160541,0,0,0,0,0
-0,0,1,0,6.160541,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,0,1,0,5.061929,0,10.3,0,0,0
-7,0,1,0,5.061929,0,10.3,0,0,0
-13,0,1,0,5.061929,0,10.3,0,0,0
-4,0,0,6.177778,0,0,13.8,0,0,0
-3,0,0,6.177778,0,0,13.8,0,0,0
-3,0,0,6.177778,0,0,13.8,0,0,0
-4,0,0,6.177778,0,0,13.8,0,0,0
-8,0,0,6.177778,0,0,13.8,0,0,0
-2,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-0,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-1,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-2,4.564348,0,5.981894,6.365746,0,10.3,1,0,0
-8,4.564348,0,5.981894,6.365746,0,10.3,1,0,0
-2,4.564348,0,5.981894,6.365746,0,10.3,1,0,0
-0,4.564348,0,5.981894,6.365746,1,27.6,1,0,0
-3,4.564348,0,5.981894,6.365746,1,27.6,1,0,0
-6,4.564348,0,5.981894,6.365746,1,27.6,1,0,0
-3,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-6,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-1,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-0,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-2,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-3,4.564348,0,5.981894,6.365746,0,11.84267,1,0,0
-0,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,11.84267,0,0,0
-3,0,1,5.460734,6.160541,0,11.84267,0,0,0
-8,0,1,5.460734,6.160541,0,11.84267,0,0,0
-3,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,11.84267,0,0,0
-3,0,1,5.460734,6.160541,0,11.84267,0,0,0
-2,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,11.84267,0,0,0
-2,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-0,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-4,0,1,5.460734,6.160541,0,11.84267,0,0,0
-2,0,1,5.460734,6.160541,0,11.84267,0,0,0
-3,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,11.84267,0,0,0
-4,0,1,5.460734,6.160541,0,11.84267,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-0,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-1,0,1,5.460734,6.160541,0,3.4,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-8,3.258096,0,6.907755,8.294049,0,0,1,0,0
-2,3.258096,0,6.907755,8.294049,0,0,1,0,0
-0,3.258096,0,6.907755,8.294049,0,0,1,0,0
-12,0,1,0,5.061929,1,27.6,1,0,0
-1,0,1,0,5.061929,1,27.6,1,0,0
-5,0,1,0,5.061929,1,27.6,1,0,0
-1,0,1,6.39693,6.160541,0,11.84267,0,0,0
-0,0,1,6.39693,6.160541,0,11.84267,0,0,0
-2,0,1,6.39693,6.160541,1,10.3,1,0,0
-1,0,1,6.39693,6.160541,1,10.3,1,0,0
-7,0,1,6.39693,6.160541,1,34.5,0,0,0
-2,0,1,6.39693,6.160541,1,34.5,0,0,0
-9,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-1,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-3,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-3,0,0,4.730568,0,0,3.4,0,0,0
-1,0,0,4.730568,0,0,3.4,0,0,0
-1,0,0,4.730568,0,0,3.4,0,0,0
-7,0,0,5.330978,0,0,11.84267,0,0,0
-7,0,0,5.330978,0,0,11.84267,0,0,0
-7,0,0,5.330978,0,0,11.84267,0,0,0
-11,0,0,5.330978,0,0,11.84267,0,0,0
-6,0,0,5.330978,0,0,11.84267,0,0,0
-2,0,0,5.330978,0,0,0,0,0,0
-2,0,0,5.330978,0,0,0,0,0,0
-4,0,0,5.330978,0,0,0,0,0,0
-1,0,0,5.330978,0,0,0,0,0,0
-4,0,0,5.330978,0,0,0,0,0,0
-1,0,0,5.330978,0,0,3.4,0,0,0
-2,0,0,5.330978,0,0,3.4,0,0,0
-7,0,0,5.330978,0,0,3.4,0,0,0
-5,0,0,5.330978,0,0,3.4,0,0,0
-7,0,0,5.330978,0,0,3.4,0,0,0
-12,0,0,0,0,0,31,0,0,0
-6,0,0,0,0,0,31,0,0,0
-7,0,0,0,0,0,31,0,0,0
-7,0,0,0,0,0,31,0,0,0
-8,0,0,0,0,0,31,0,0,0
-7,0,0,0,0,1,31,0,0,0
-7,0,0,0,0,1,31,0,0,0
-5,0,0,0,0,1,31,0,0,0
-5,0,0,0,0,1,31,0,0,0
-6,0,0,0,0,1,31,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-6,0,0,0,0,0,0,0,0,0
-7,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-8,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,5.641907,0,0,11.84267,0,0,0
-12,0,0,5.641907,0,0,11.84267,0,0,0
-14,0,0,5.641907,0,0,11.84267,0,0,0
-3,0,0,5.641907,0,1,17.2,0,0,0
-3,0,0,5.641907,0,1,17.2,0,0,0
-2,0,0,5.641907,0,1,17.2,0,0,0
-3,0,0,5.641907,0,0,13.8,0,0,0
-3,0,0,5.641907,0,0,13.8,0,0,0
-1,0,0,5.641907,0,0,13.8,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-4,0,1,5.617753,6.160541,0,11.84267,0,0,0
-0,0,1,5.617753,6.160541,0,11.84267,0,0,0
-0,0,1,5.617753,6.160541,0,11.84267,0,0,0
-0,0,1,5.617753,6.160541,0,11.84267,0,0,0
-5,0,1,5.617753,6.160541,0,11.84267,0,0,0
-2,0,1,5.617753,6.160541,0,6.9,0,0,0
-3,0,1,5.617753,6.160541,0,6.9,0,0,0
-1,0,1,5.617753,6.160541,0,6.9,0,0,0
-2,0,1,5.617753,6.160541,0,6.9,0,0,0
-0,0,1,5.617753,6.160541,0,6.9,0,0,0
-8,0,1,5.617753,6.160541,1,10.3,0,0,0
-3,0,1,5.617753,6.160541,1,10.3,0,0,0
-1,0,1,5.617753,6.160541,1,10.3,0,0,0
-1,0,1,5.617753,6.160541,1,10.3,0,0,0
-3,0,1,5.617753,6.160541,1,10.3,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,17.2,1,0,0
-27,0,0,0,0,0,17.2,1,0,0
-15,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,0,0,0,0
-2,0,0,5.878744,0,0,11.84267,1,0,0
-10,0,0,5.878744,0,0,11.84267,1,0,0
-6,0,0,5.878744,0,0,11.84267,1,0,0
-3,0,0,5.878744,0,0,13.8,1,0,0
-7,0,0,5.878744,0,0,13.8,1,0,0
-3,0,0,5.878744,0,0,13.8,1,0,0
-1,0,0,5.878744,0,0,6.9,1,0,0
-5,0,0,5.878744,0,0,6.9,1,0,0
-5,0,0,5.878744,0,0,6.9,1,0,0
-9,0,0,5.878744,0,0,11.84267,1,0,0
-8,0,0,5.878744,0,0,11.84267,1,0,0
-4,0,0,5.878744,0,0,11.84267,1,0,0
-0,4.564348,0,6.547474,6.943732,0,0,0,0,0
-3,4.564348,0,6.547474,6.943732,0,0,0,0,0
-0,4.564348,0,6.547474,6.943732,0,0,0,0,0
-0,4.564348,0,6.547474,6.943732,0,0,0,0,0
-0,4.564348,0,6.547474,6.943732,0,0,0,0,0
-0,4.564348,0,6.547474,6.943732,0,17.2,0,0,0
-2,4.564348,0,6.547474,6.943732,0,17.2,0,0,0
-0,4.564348,0,6.547474,6.943732,0,17.2,0,0,0
-4,4.564348,0,6.547474,6.943732,0,17.2,0,0,0
-1,4.564348,0,6.547474,6.943732,0,17.2,0,0,0
-1,3.258096,0,6.804725,8.19102,0,10.3,1,0,0
-1,3.258096,0,6.804725,8.19102,0,10.3,1,0,0
-1,3.258096,0,6.804725,8.19102,0,10.3,1,0,0
-4,3.258096,0,6.804725,8.19102,0,6.9,0,0,0
-2,3.258096,0,6.804725,8.19102,0,6.9,0,0,0
-0,3.258096,0,6.804725,8.19102,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,3.258096,0,5.298317,6.684612,0,27.6,0,0,0
-0,3.258096,0,5.298317,6.684612,0,27.6,0,0,0
-19,3.258096,0,5.298317,6.684612,0,27.6,0,0,0
-30,3.258096,0,5.298317,6.684612,0,27.6,0,0,0
-18,3.258096,0,5.298317,6.684612,0,27.6,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-28,0,0,0,0,1,17.2,1,0,0
-20,0,0,0,0,1,17.2,1,0,0
-2,0,0,0,0,1,17.2,1,0,0
-0,0,0,0,0,1,17.2,1,0,0
-0,0,0,0,0,1,17.2,1,0,0
-4,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-11,0,1,5.703783,5.755076,0,3.4,0,0,0
-7,0,1,5.703783,5.755076,0,3.4,0,0,0
-7,0,1,5.703783,5.755076,0,3.4,0,0,0
-3,0,1,5.703783,5.755076,0,10.3,0,0,0
-1,0,1,5.703783,5.755076,0,10.3,0,0,0
-8,0,1,5.703783,5.755076,0,10.3,0,0,0
-4,3.258096,0,6.856462,8.242756,0,6.9,0,0,0
-2,3.258096,0,6.856462,8.242756,0,6.9,0,0,0
-2,3.258096,0,6.856462,8.242756,0,6.9,0,0,0
-2,3.258096,0,6.856462,8.242756,0,6.9,0,0,0
-5,3.258096,0,6.856462,8.242756,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-1,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-0,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-0,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-2,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-5,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,0,0,6.762128,0,0,6.9,0,0,0
-2,0,0,6.762128,0,0,6.9,0,0,0
-2,0,0,6.762128,0,0,6.9,0,0,0
-0,0,0,6.762128,0,0,0,0,0,0
-2,0,0,6.762128,0,0,0,0,0,0
-2,0,0,6.762128,0,0,0,0,0,0
-3,3.258096,0,5.808503,7.194797,0,13.8,0,0,0
-3,3.258096,0,5.808503,7.194797,0,13.8,0,0,0
-3,3.258096,0,5.808503,7.194797,0,13.8,0,0,0
-2,0,0,6.099332,0,0,11.84267,0,0,0
-2,0,0,6.099332,0,0,11.84267,0,0,0
-5,0,0,6.099332,0,0,11.84267,0,0,0
-7,0,0,6.099332,0,0,11.84267,0,0,0
-12,0,0,6.099332,0,0,11.84267,0,0,0
-6,0,0,6.099332,0,0,11.84267,0,0,0
-4,0,0,6.099332,0,0,11.84267,0,0,0
-3,0,0,6.099332,0,0,11.84267,0,0,0
-4,0,0,6.099332,0,0,11.84267,0,0,0
-11,0,0,6.099332,0,0,10.3,0,0,0
-9,0,0,6.099332,0,0,10.3,0,0,0
-5,0,0,6.099332,0,0,10.3,0,0,0
-2,0,0,6.099332,0,0,11.84267,0,0,0
-2,0,0,6.099332,0,0,11.84267,0,0,0
-1,0,0,6.099332,0,0,11.84267,0,0,0
-3,0,0,6.099332,0,0,20.7,0,0,0
-3,0,0,6.099332,0,0,20.7,0,0,0
-6,0,0,6.099332,0,0,20.7,0,0,0
-8,0,0,5.680172,0,1,41.4,0,1,0
-8,0,0,5.680172,0,1,41.4,0,1,0
-13,0,0,5.680172,0,1,41.4,0,1,0
-31,0,0,0,0,0,3.4,0,0,0
-33,0,0,0,0,0,3.4,0,0,0
-11,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-11,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,17.2,1,0,0
-3,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-3,0,1,5.992264,5.755076,0,13.8,1,0,0
-0,0,1,5.992264,5.755076,0,13.8,1,0,0
-3,0,1,5.992264,5.755076,0,13.8,1,0,0
-10,0,1,5.992264,5.755076,1,31,1,0,0
-3,0,1,5.992264,5.755076,1,31,1,0,0
-9,0,1,5.992264,5.755076,1,31,1,0,0
-5,0,0,0,0,1,34.5,0,0,0
-8,0,0,0,0,1,34.5,0,0,0
-16,0,0,0,0,1,34.5,0,0,0
-2,4.564348,0,6.393591,6.445051,1,13.8,1,0,0
-0,4.564348,0,6.393591,6.445051,1,13.8,1,0,0
-0,4.564348,0,6.393591,6.445051,1,13.8,1,0,0
-1,4.564348,0,6.393591,6.445051,0,10.3,0,0,0
-1,4.564348,0,6.393591,6.445051,0,10.3,0,0,0
-3,4.564348,0,6.393591,6.445051,0,10.3,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,0,1,5.010635,5.061929,0,0,0,0,0
-8,0,1,5.010635,5.061929,0,0,0,0,0
-2,0,1,5.010635,5.061929,0,0,0,0,0
-2,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-1,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-0,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-1,4.564348,0,5.926926,5.97822,0,11.84267,0,0,0
-1,4.564348,0,5.926926,5.97822,0,0,1,0,0
-0,4.564348,0,5.926926,5.97822,0,0,1,0,0
-0,4.564348,0,5.926926,5.97822,0,0,1,0,0
-5,4.564348,0,5.926926,5.97822,0,0,1,0,0
-2,4.564348,0,5.926926,5.97822,0,0,1,0,0
-14,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-3,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-6,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-4,3.258096,0,6.907755,8.294049,0,20.7,0,0,0
-5,0,0,6.45331,0,0,10.3,1,0,0
-14,0,0,6.45331,0,0,10.3,1,0,0
-13,0,0,6.45331,0,0,10.3,1,0,0
-9,0,0,6.45331,0,0,10.3,1,0,0
-13,0,0,6.45331,0,0,10.3,1,0,0
-9,0,0,6.45331,0,1,13.8,0,0,1
-10,0,0,6.45331,0,1,13.8,0,0,1
-19,0,0,6.45331,0,1,13.8,0,0,1
-13,0,0,6.45331,0,1,13.8,0,0,1
-19,0,0,6.45331,0,1,13.8,0,0,1
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-6,0,1,6.109248,6.160541,0,24.1,0,0,0
-0,0,1,6.109248,6.160541,0,24.1,0,0,0
-1,0,1,6.109248,6.160541,0,24.1,0,0,0
-5,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-2,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-2,0,1,5.010635,5.061929,0,13.8,1,0,0
-2,0,1,5.010635,5.061929,0,13.8,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-4,3.258096,0,5.273,6.659294,0,24.1,1,0,0
-3,3.258096,0,5.273,6.659294,0,24.1,1,0,0
-7,3.258096,0,5.273,6.659294,0,24.1,1,0,0
-4,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-11,0,1,3.688879,5.061929,0,20.7,0,0,0
-1,0,1,3.688879,5.061929,0,20.7,0,0,0
-1,0,1,3.688879,5.061929,0,20.7,0,0,0
-2,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-4,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-13,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-12,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-4,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,0,0,0,0,1,31,1,0,0
-1,0,0,0,0,1,31,1,0,0
-2,0,0,0,0,1,31,1,0,0
-8,0,0,0,0,1,31,1,0,0
-3,0,0,0,0,1,31,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-11,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-10,0,0,0,0,0,3.4,1,0,0
-8,0,0,0,0,0,3.4,1,0,0
-7,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-5,0,0,0,0,0,13.8,0,0,0
-7,0,0,0,0,0,13.8,0,0,0
-9,0,0,0,0,0,13.8,0,0,0
-0,0,0,4.59875,0,0,11.84267,0,0,0
-0,0,0,4.59875,0,0,11.84267,0,0,0
-1,0,0,4.59875,0,0,11.84267,0,0,0
-4,0,0,4.59875,0,0,3.4,0,0,0
-1,0,0,4.59875,0,0,3.4,0,0,0
-3,0,0,4.59875,0,0,3.4,0,0,0
-5,0,0,4.59875,0,0,10.3,0,0,0
-1,0,0,4.59875,0,0,10.3,0,0,0
-1,0,0,4.59875,0,0,10.3,0,0,0
-1,0,0,4.59875,0,0,11.84267,1,0,0
-1,0,0,4.59875,0,0,11.84267,1,0,0
-1,0,0,4.59875,0,0,11.84267,1,0,0
-0,0,1,0,5.061929,1,20.7,0,0,0
-0,0,1,0,5.061929,1,20.7,0,0,0
-0,0,1,0,5.061929,1,20.7,0,0,0
-1,0,1,0,5.061929,1,20.7,0,0,0
-2,0,1,0,5.061929,1,20.7,0,0,0
-0,0,1,0,6.160541,0,11.84267,0,0,0
-1,0,1,0,6.160541,0,11.84267,0,0,0
-0,0,1,0,6.160541,0,11.84267,0,0,0
-1,0,1,0,6.160541,0,13.8,0,0,0
-2,0,1,0,6.160541,0,13.8,0,0,0
-2,0,1,0,6.160541,0,13.8,0,0,0
-1,0,1,0,6.160541,0,11.84267,0,0,0
-2,0,1,0,6.160541,0,11.84267,0,0,0
-2,0,1,0,6.160541,0,11.84267,0,0,0
-0,0,1,0,6.160541,0,11.84267,0,0,0
-1,0,1,0,6.160541,0,11.84267,0,0,0
-0,0,1,0,6.160541,0,11.84267,0,0,0
-1,0,1,0,6.160541,0,10.3,1,0,0
-0,0,1,0,6.160541,0,10.3,1,0,0
-1,0,1,0,6.160541,0,10.3,1,0,0
-4,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-6,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-5,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-35,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-25,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-37,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-23,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-15,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-0,4.564348,0,5.93648,6.735905,0,6.9,0,0,0
-0,4.564348,0,5.93648,6.735905,0,6.9,0,0,0
-0,4.564348,0,5.93648,6.735905,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-6,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-4,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-1,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-1,0,1,5.703783,6.160541,0,11.84267,0,0,0
-1,0,1,5.703783,6.160541,0,11.84267,0,0,0
-1,0,1,5.703783,6.160541,0,11.84267,0,0,0
-0,0,1,5.703783,6.160541,0,6.9,0,0,0
-2,0,1,5.703783,6.160541,0,6.9,0,0,0
-1,0,1,5.703783,6.160541,0,6.9,0,0,0
-1,0,1,5.703783,6.160541,0,6.9,0,0,0
-2,0,1,5.703783,6.160541,0,6.9,0,0,0
-0,0,1,5.703783,6.160541,0,6.9,0,0,0
-10,0,1,5.05529,5.755076,0,10.3,0,1,0
-3,0,1,5.05529,5.755076,0,10.3,0,1,0
-2,0,1,5.05529,5.755076,0,17.2,0,0,0
-0,0,1,5.05529,5.755076,0,17.2,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-5,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-3,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-11,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-6,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,1,0,0
-3,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-11,3.258096,0,6.574629,7.960924,1,10.3,0,0,0
-1,3.258096,0,6.574629,7.960924,1,10.3,0,0,0
-0,3.258096,0,6.574629,7.960924,1,10.3,0,0,0
-0,3.258096,0,6.574629,7.960924,1,10.3,0,0,0
-0,3.258096,0,6.574629,7.960924,1,10.3,0,0,0
-1,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-0,3.258096,0,6.574629,7.960924,0,11.84267,0,0,0
-24,0,0,3.696848,0,0,10.3,0,1,0
-11,0,0,3.696848,0,0,10.3,0,1,0
-4,0,0,3.696848,0,0,10.3,0,1,0
-6,0,0,3.696848,0,0,13.8,0,1,0
-4,0,0,3.696848,0,0,13.8,0,1,0
-3,0,0,3.696848,0,0,13.8,0,1,0
-7,3.258096,0,6.115671,7.501966,0,11.84267,1,0,0
-8,3.258096,0,6.115671,7.501966,0,11.84267,1,0,0
-3,3.258096,0,6.115671,7.501966,0,11.84267,1,0,0
-2,3.258096,0,6.115671,7.501966,0,27.6,1,0,0
-3,3.258096,0,6.115671,7.501966,0,27.6,1,0,0
-1,3.258096,0,6.115671,7.501966,0,27.6,1,0,0
-2,3.258096,0,6.115671,7.501966,0,10.3,1,0,0
-0,3.258096,0,6.115671,7.501966,0,10.3,1,0,0
-1,3.258096,0,6.115671,7.501966,0,10.3,1,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-3,4.564348,0,5.947513,5.998806,1,27.6,0,1,0
-0,0,1,0,5.061929,0,6.9,0,0,0
-0,0,1,0,5.061929,0,6.9,0,0,0
-3,0,1,0,5.061929,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-9,0,0,0,0,0,11.84267,0,0,0
-14,0,0,0,0,0,11.84267,0,0,0
-9,0,0,0,0,0,10.3,1,0,0
-6,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,3.4,0,0,0
-7,0,0,0,0,0,3.4,0,0,0
-8,0,0,0,0,0,3.4,0,0,0
-1,0,1,4.341856,5.755076,0,10.3,0,0,0
-1,0,1,4.341856,5.755076,0,10.3,0,0,0
-2,0,1,4.341856,5.755076,0,10.3,0,0,0
-1,0,1,4.341856,5.755076,0,6.9,1,0,0
-0,0,1,4.341856,5.755076,0,6.9,1,0,0
-0,0,1,4.341856,5.755076,0,6.9,1,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-10,0,0,0,0,1,24.1,1,0,0
-4,0,0,0,0,1,24.1,1,0,0
-3,0,0,0,0,1,24.1,1,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,1,17.2,0,1,0
-7,0,0,0,0,1,17.2,0,1,0
-0,0,0,0,0,1,17.2,0,1,0
-2,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-15,0,1,6.109248,6.160541,1,11.84267,0,0,0
-9,0,1,6.109248,6.160541,1,11.84267,0,0,0
-2,0,1,6.109248,6.160541,1,11.84267,0,0,0
-5,0,1,6.109248,6.160541,1,11.84267,0,0,0
-2,0,1,6.109248,6.160541,1,11.84267,0,0,0
-5,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-5,0,1,6.109248,6.160541,0,17.2,0,0,0
-6,0,1,6.109248,6.160541,0,17.2,0,0,0
-4,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-3,0,1,6.109248,6.160541,1,13.8,0,0,0
-4,0,1,6.109248,6.160541,1,13.8,0,0,0
-1,0,1,6.109248,6.160541,1,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-8,0,0,0,0,0,13.8,0,0,0
-5,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-6,0,0,0,0,1,20.7,0,1,0
-0,0,0,0,0,1,20.7,0,1,0
-0,0,0,0,0,1,20.7,0,1,0
-1,0,0,0,0,1,20.7,0,1,0
-0,0,0,0,0,1,20.7,0,1,0
-4,3.258096,0,6.87363,8.259924,0,3.4,1,0,0
-0,3.258096,0,6.87363,8.259924,0,3.4,1,0,0
-2,3.258096,0,6.87363,8.259924,0,3.4,1,0,0
-3,3.258096,0,6.87363,8.259924,0,3.4,1,0,0
-11,3.258096,0,6.87363,8.259924,0,3.4,1,0,0
-1,3.258096,0,6.87363,8.259924,0,0,0,0,0
-1,3.258096,0,6.87363,8.259924,0,0,0,0,0
-0,3.258096,0,6.87363,8.259924,0,0,0,0,0
-1,3.258096,0,6.87363,8.259924,0,0,0,0,0
-1,3.258096,0,6.87363,8.259924,0,0,0,0,0
-3,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-1,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-1,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-1,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-0,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-3,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-0,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-1,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-1,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-3,3.258096,0,6.87363,8.259924,0,11.84267,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-1,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-1,0,1,0,5.755076,0,10.3,1,0,0
-7,0,1,0,5.755076,0,10.3,1,0,0
-1,0,1,0,5.755076,0,10.3,1,0,0
-0,0,1,0,5.755076,0,10.3,1,0,0
-1,0,1,0,5.755076,0,10.3,1,0,0
-5,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-8,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-12,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-6,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-6,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-7,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,0,6.959049,0,27.6,1,0,0
-1,4.564348,0,0,6.959049,0,27.6,1,0,0
-5,4.564348,0,0,6.959049,0,27.6,1,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-11,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-4,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,0,0,0,0,0
-11,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-11,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-11,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-7,0,1,5.010635,5.061929,0,24.1,0,1,0
-16,0,1,5.010635,5.061929,0,24.1,0,1,0
-10,0,1,5.010635,5.061929,0,24.1,0,1,0
-2,0,1,4.362206,5.061929,0,10.3,1,0,0
-2,0,1,4.362206,5.061929,0,10.3,1,0,0
-0,0,1,4.362206,5.061929,0,10.3,1,0,0
-2,3.258096,0,6.151668,7.537962,1,6.9,0,0,0
-1,3.258096,0,6.151668,7.537962,1,6.9,0,0,0
-12,3.258096,0,6.151668,7.537962,1,6.9,0,0,0
-3,3.258096,0,6.151668,7.537962,1,6.9,0,0,0
-4,3.258096,0,6.151668,7.537962,1,6.9,0,0,0
-2,3.258096,0,6.158038,7.544332,0,17.2,1,0,0
-7,3.258096,0,6.158038,7.544332,0,17.2,1,0,0
-5,3.258096,0,6.158038,7.544332,0,17.2,1,0,0
-5,3.258096,0,6.158038,7.544332,0,17.2,1,0,0
-6,3.258096,0,6.158038,7.544332,0,17.2,1,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-4,0,1,5.703783,5.755076,0,6.9,0,0,0
-9,0,1,5.703783,5.755076,0,6.9,0,0,0
-3,0,1,5.703783,5.755076,1,6.9,1,0,0
-1,0,1,5.703783,5.755076,1,6.9,1,0,0
-1,0,1,5.703783,5.755076,1,6.9,1,0,0
-2,4.564348,0,5.587249,5.638542,1,17.2,1,0,0
-14,4.564348,0,5.587249,5.638542,1,17.2,1,0,0
-2,4.564348,0,5.587249,5.638542,1,17.2,1,0,0
-0,0,0,4.342636,0,0,13.8,1,0,0
-3,0,0,4.342636,0,0,13.8,1,0,0
-3,0,0,4.342636,0,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-2,4.564348,0,6.907755,6.959049,0,27.6,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-11,0,0,0,0,0,6.9,0,0,0
-16,0,0,0,0,0,6.9,0,0,0
-16,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-11,0,0,0,0,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-8,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-4,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-6,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-5,3.258096,0,6.907755,8.294049,0,24.1,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,1,27.6,0,1,0
-7,3.258096,0,6.907755,8.294049,1,27.6,0,1,0
-3,3.258096,0,6.907755,8.294049,1,27.6,0,1,0
-1,3.258096,0,6.907755,8.294049,1,27.6,0,1,0
-1,3.258096,0,6.907755,8.294049,1,27.6,0,1,0
-1,3.258096,0,6.907755,8.294049,1,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,1,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,1,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,1,11.84267,0,0,0
-4,3.258096,0,6.907755,8.294049,1,11.84267,0,0,0
-9,3.258096,0,6.907755,8.294049,1,31,0,1,0
-4,3.258096,0,6.907755,8.294049,1,31,0,1,0
-3,3.258096,0,6.907755,8.294049,1,31,0,1,0
-2,3.258096,0,6.907755,8.294049,1,31,0,1,0
-2,3.258096,0,6.907755,8.294049,1,31,0,1,0
-3,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-4,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-2,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-7,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-3,3.258096,0,6.907755,8.294049,1,11.84267,0,1,0
-2,3.258096,0,6.907755,8.294049,1,13.8,1,0,0
-2,3.258096,0,6.907755,8.294049,1,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,1,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,1,13.8,1,0,0
-3,3.258096,0,6.907755,8.294049,1,13.8,1,0,0
-0,3.258096,0,6.612041,7.998335,0,3.4,0,0,0
-2,3.258096,0,6.612041,7.998335,0,3.4,0,0,0
-0,3.258096,0,6.612041,7.998335,0,3.4,0,0,0
-1,4.564348,0,5.042651,5.746707,1,17.2,0,0,0
-1,4.564348,0,5.042651,5.746707,1,17.2,0,0,0
-1,4.564348,0,5.042651,5.746707,1,17.2,0,0,0
-0,4.564348,0,5.519459,5.570752,0,10.3,0,0,0
-0,4.564348,0,5.519459,5.570752,0,10.3,0,0,0
-0,4.564348,0,5.519459,5.570752,0,10.3,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,1,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-5,0,1,0,6.160541,0,3.4,0,0,1
-4,0,1,0,6.160541,0,3.4,0,0,1
-3,0,1,0,6.160541,0,3.4,0,0,1
-0,0,1,0,6.160541,0,6.9,0,0,0
-8,0,1,0,6.160541,0,13.8,1,0,0
-8,0,1,0,6.160541,0,13.8,1,0,0
-5,0,1,0,6.160541,0,13.8,1,0,0
-2,0,0,6.475741,0,1,17.2,1,0,0
-6,0,0,6.475741,0,1,17.2,1,0,0
-13,0,0,6.475741,0,1,17.2,1,0,0
-2,0,0,6.475741,0,1,20.7,1,0,0
-1,0,0,6.475741,0,1,20.7,1,0,0
-5,0,0,6.475741,0,1,20.7,1,0,0
-6,0,0,6.475741,0,0,11.84267,0,0,0
-8,0,0,6.475741,0,0,11.84267,0,0,0
-6,0,0,6.475741,0,0,11.84267,0,0,0
-6,0,0,3.295837,0,0,13.8,1,0,0
-7,0,0,3.295837,0,0,13.8,1,0,0
-5,0,0,3.295837,0,0,13.8,1,0,0
-10,0,0,3.295837,0,0,13.8,1,0,0
-10,0,0,3.295837,0,0,13.8,1,0,0
-1,0,0,3.295837,0,0,11.84267,0,0,0
-1,0,0,3.295837,0,0,11.84267,0,0,0
-1,0,0,3.295837,0,0,11.84267,0,0,0
-2,0,0,3.295837,0,0,11.84267,0,0,0
-3,0,0,3.295837,0,0,11.84267,0,0,0
-1,0,0,3.295837,0,0,0,0,0,0
-0,0,0,3.295837,0,0,0,0,0,0
-1,0,0,3.295837,0,0,0,0,0,0
-4,0,0,3.295837,0,0,0,0,0,0
-4,0,0,3.295837,0,0,0,0,0,0
-0,0,0,3.295837,0,0,6.9,0,0,0
-1,0,0,3.295837,0,0,6.9,0,0,0
-0,0,0,3.295837,0,0,6.9,0,0,0
-0,0,0,3.295837,0,0,6.9,0,0,0
-5,0,0,3.295837,0,0,6.9,0,0,0
-6,0,0,3.295837,0,0,6.9,0,0,0
-17,0,0,3.295837,0,0,6.9,0,0,0
-7,0,0,3.295837,0,0,6.9,0,0,0
-6,0,0,3.295837,0,0,6.9,0,0,0
-7,0,0,3.295837,0,0,6.9,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-2,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-3,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-1,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-2,4.564348,0,0,6.105732,0,11.84267,0,0,0
-0,4.564348,0,0,6.105732,0,11.84267,0,0,0
-1,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-0,4.564348,0,0,6.105732,0,13.8,0,0,0
-2,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-1,0,1,5.703783,5.755076,0,20.7,0,0,0
-1,0,1,5.703783,5.755076,0,20.7,0,0,0
-1,0,1,5.703783,5.755076,0,20.7,0,0,0
-1,0,1,5.703783,5.755076,0,20.7,0,0,0
-6,0,1,5.703783,5.755076,0,20.7,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-4,0,1,5.703783,5.755076,0,3.4,0,0,0
-2,0,1,5.703783,5.755076,0,3.4,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-3,0,1,5.703783,5.755076,0,3.4,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-2,0,1,5.703783,5.755076,0,17.2,1,0,0
-5,0,1,5.703783,5.755076,0,17.2,1,0,0
-8,0,1,5.703783,5.755076,0,17.2,1,0,0
-16,0,1,5.703783,5.755076,0,3.4,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-6,0,1,5.703783,5.755076,0,3.4,1,0,0
-12,0,1,5.703783,5.755076,0,10.3,0,0,0
-6,0,1,5.703783,5.755076,0,10.3,0,0,0
-3,0,1,5.703783,5.755076,0,10.3,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-8,0,0,0,0,0,11.84267,0,0,0
-9,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-8,0,0,0,0,0,17.2,0,0,0
-11,0,0,0,0,0,17.2,0,0,0
-7,0,0,0,0,0,17.2,0,0,0
-4,0,0,0,0,0,17.2,0,0,0
-5,0,0,0,0,0,17.2,0,0,0
-14,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-5,0,0,0,0,0,17.2,0,0,0
-8,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-6,0,0,0,0,0,11.84267,1,0,0
-11,0,0,0,0,0,11.84267,1,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-9,0,0,0,0,0,11.84267,1,0,0
-1,0,1,0,5.755076,0,13.8,1,0,0
-2,0,1,0,5.755076,0,13.8,1,0,0
-0,0,1,0,5.755076,0,13.8,1,0,0
-3,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-3,0,1,0,5.755076,0,10.3,0,0,0
-1,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-2,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-1,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-3,3.258096,0,6.907755,8.294049,1,10.3,1,0,0
-3,3.258096,0,6.907755,8.294049,1,10.3,1,0,0
-15,3.258096,0,6.907755,8.294049,1,10.3,1,0,0
-6,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-2,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-5,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-2,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-3,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-5,3.258096,0,6.553078,7.939373,1,24.1,0,0,0
-3,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-0,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-0,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-0,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-1,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-0,3.258096,0,6.553078,7.939373,0,11.84267,0,0,0
-5,0,0,5.988059,0,1,34.5,1,0,0
-7,0,0,5.988059,0,1,34.5,1,0,0
-8,0,0,5.988059,0,1,34.5,1,0,0
-5,0,0,5.988059,0,1,6.9,1,0,0
-9,0,0,5.988059,0,1,6.9,1,0,0
-3,0,0,5.988059,0,1,6.9,1,0,0
-0,4.564348,0,6.72827,6.779563,0,0,0,0,0
-1,4.564348,0,6.72827,6.779563,0,0,0,0,0
-0,4.564348,0,6.72827,6.779563,0,0,0,0,0
-0,4.564348,0,6.72827,6.779563,0,0,0,0,0
-1,4.564348,0,6.72827,6.779563,0,0,0,0,0
-1,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-1,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-1,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-2,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-3,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-1,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-4,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-1,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-0,4.564348,0,6.72827,6.779563,0,11.84267,0,0,0
-6,4.564348,0,6.72827,6.779563,1,10.3,0,0,0
-2,4.564348,0,6.72827,6.779563,1,10.3,0,0,0
-1,4.564348,0,6.72827,6.779563,1,10.3,0,0,0
-4,4.564348,0,6.72827,6.779563,1,10.3,0,0,0
-8,4.564348,0,6.72827,6.779563,1,10.3,0,0,0
-5,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-5,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-7,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.079933,6.160541,0,3.4,1,0,0
-3,0,1,6.079933,6.160541,0,3.4,1,0,0
-0,0,1,6.079933,6.160541,0,6.9,0,0,0
-0,0,1,6.079933,6.160541,0,6.9,0,0,0
-2,0,1,6.079933,6.160541,0,6.9,0,0,0
-0,0,1,6.079933,6.160541,0,3.4,0,0,0
-0,0,1,6.079933,6.160541,0,3.4,0,0,0
-0,0,1,6.079933,6.160541,0,3.4,0,0,0
-4,4.564348,0,6.680604,6.731897,1,10.3,1,0,0
-4,4.564348,0,6.680604,6.731897,1,10.3,1,0,0
-0,4.564348,0,6.680604,6.731897,1,10.3,1,0,0
-2,4.564348,0,6.680604,6.731897,0,11.84267,0,0,0
-1,4.564348,0,6.680604,6.731897,0,11.84267,0,0,0
-1,4.564348,0,6.680604,6.731897,0,11.84267,0,0,0
-13,0,0,0,0,0,6.9,1,0,0
-7,0,0,0,0,0,6.9,1,0,0
-5,0,0,0,0,0,6.9,1,0,0
-4,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-6,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-1,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-2,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-1,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-3,4.564348,0,5.375278,6.958999,0,20.7,0,0,0
-0,4.564348,0,5.375278,6.958999,0,20.7,0,0,0
-1,4.564348,0,5.375278,6.958999,0,20.7,0,0,0
-6,4.564348,0,5.375278,6.958999,0,6.9,0,0,0
-1,4.564348,0,5.375278,6.958999,0,6.9,0,0,0
-0,4.564348,0,5.375278,6.958999,0,6.9,0,0,0
-3,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-1,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-1,4.564348,0,5.375278,6.958999,0,11.84267,0,0,0
-4,0,0,4.063885,0,0,6.9,1,0,0
-0,0,0,4.063885,0,0,6.9,1,0,0
-4,0,0,4.063885,0,0,6.9,1,0,0
-8,0,0,4.063885,0,0,17.2,1,0,0
-1,0,0,4.063885,0,0,17.2,1,0,0
-2,0,0,4.063885,0,0,17.2,1,0,0
-10,0,0,4.063885,0,0,13.8,1,0,0
-7,0,0,4.063885,0,0,13.8,1,0,0
-7,0,0,4.063885,0,0,13.8,1,0,0
-3,0,0,6.840974,0,0,6.9,0,0,0
-1,0,0,6.840974,0,0,6.9,0,0,0
-4,0,0,6.840974,0,0,6.9,0,0,0
-2,0,0,6.840974,0,0,24.1,0,0,0
-2,0,0,6.840974,0,0,24.1,0,0,0
-3,0,0,6.840974,0,0,24.1,0,0,0
-2,0,0,6.840974,0,0,11.84267,0,0,0
-4,0,0,6.840974,0,0,11.84267,0,0,0
-4,0,0,6.840974,0,0,11.84267,0,0,0
-0,0,0,6.840974,0,0,11.84267,0,0,0
-3,0,0,6.840974,0,0,11.84267,0,0,0
-1,0,0,6.840974,0,0,11.84267,0,0,0
-2,0,0,6.840974,0,0,11.84267,0,0,0
-4,0,0,6.840974,0,0,11.84267,0,0,0
-1,0,0,6.840974,0,0,11.84267,0,0,0
-2,0,0,6.840974,0,.1981873,13.8,0,0,0
-2,0,0,6.840974,0,.1981873,13.8,0,0,0
-1,0,0,6.840974,0,.1981873,13.8,0,0,0
-11,0,0,0,0,0,10.3,0,0,0
-9,0,0,0,0,0,10.3,0,0,0
-6,0,0,0,0,0,10.3,0,0,0
-7,3.258096,0,6.572423,7.958717,0,24.1,1,0,0
-9,3.258096,0,6.572423,7.958717,0,24.1,1,0,0
-9,3.258096,0,6.572423,7.958717,0,24.1,1,0,0
-5,0,1,0,5.755076,0,3.4,0,0,0
-0,0,1,0,5.755076,0,3.4,0,0,0
-3,0,1,0,5.755076,0,3.4,0,0,0
-1,0,1,0,5.755076,0,3.4,0,0,0
-0,0,1,0,5.755076,0,3.4,0,0,0
-1,0,1,0,5.755076,0,3.4,0,0,0
-2,3.258096,0,0,7.167964,0,10.3,1,0,0
-3,3.258096,0,0,7.167964,0,10.3,1,0,0
-2,3.258096,0,0,7.167964,0,10.3,1,0,0
-1,3.258096,0,0,7.167964,0,3.4,0,0,0
-3,3.258096,0,0,7.167964,0,3.4,0,0,0
-4,3.258096,0,0,7.167964,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-6,0,0,0,0,0,3.4,0,0,0
-23,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-9,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-11,0,0,0,0,0,11.84267,0,0,0
-11,0,0,0,0,0,20.7,0,0,0
-2,0,0,0,0,0,20.7,0,0,0
-4,0,0,0,0,0,20.7,0,0,0
-13,0,0,0,0,0,20.7,0,0,0
-18,0,0,0,0,0,20.7,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,0,0,1,0
-3,0,0,0,0,0,0,0,1,0
-4,0,0,0,0,0,0,0,1,0
-4,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-5,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-8,0,0,0,0,1,6.9,0,0,0
-3,0,0,0,0,1,6.9,0,0,0
-5,0,0,0,0,1,6.9,0,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-4,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-10,0,0,0,0,0,11.84267,0,1,0
-7,0,0,0,0,0,11.84267,0,1,0
-6,0,0,0,0,0,11.84267,0,1,0
-17,0,0,0,0,1,34.5,0,1,0
-19,0,0,0,0,1,34.5,0,1,0
-13,0,0,0,0,1,34.5,0,1,0
-6,0,0,4.599152,0,0,10.3,0,0,0
-2,0,0,4.599152,0,0,10.3,0,0,0
-7,0,0,4.599152,0,0,10.3,0,0,0
-4,0,0,4.599152,0,1,17.2,0,1,0
-6,0,0,4.599152,0,1,17.2,0,1,0
-4,0,0,4.599152,0,1,17.2,0,1,0
-1,0,1,5.703783,5.755076,0,27.6,0,0,0
-8,0,1,5.703783,5.755076,0,27.6,0,0,0
-2,0,1,5.703783,5.755076,0,27.6,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-4,0,1,5.703783,5.755076,0,17.2,0,0,0
-3,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-13,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,3.4,1,0,0
-0,4.564348,0,6.114964,6.63781,0,3.4,1,0,0
-0,4.564348,0,6.114964,6.63781,0,3.4,1,0,0
-0,4.564348,0,6.114964,6.63781,0,3.4,1,0,0
-0,4.564348,0,6.114964,6.63781,0,3.4,1,0,0
-0,4.564348,0,6.114964,6.63781,0,10.3,0,0,0
-0,4.564348,0,6.114964,6.63781,0,10.3,0,0,0
-0,4.564348,0,6.114964,6.63781,0,10.3,0,0,0
-0,4.564348,0,6.114964,6.63781,0,10.3,0,0,0
-0,4.564348,0,6.114964,6.63781,0,10.3,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-2,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-0,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,4.564348,0,6.114964,6.63781,0,11.84267,0,0,0
-1,0,0,4.564348,0,0,0,0,0,0
-1,0,0,4.564348,0,0,0,0,0,0
-1,0,0,4.564348,0,0,0,0,0,0
-1,0,0,4.564348,0,0,0,0,0,0
-3,0,0,4.564348,0,0,0,0,0,0
-0,0,0,4.564348,0,0,0,0,0,0
-8,0,0,4.564348,0,0,0,0,0,0
-0,0,0,4.564348,0,0,0,0,0,0
-1,0,0,4.564348,0,0,0,0,0,0
-4,0,0,4.564348,0,0,0,0,0,0
-10,0,0,4.564348,0,1,31,1,0,0
-6,0,0,4.564348,0,1,31,1,0,0
-3,0,0,4.564348,0,1,31,1,0,0
-3,0,0,4.564348,0,1,31,1,0,0
-8,0,0,4.564348,0,1,31,1,0,0
-0,0,0,4.564348,0,0,11.84267,0,0,0
-5,0,0,4.564348,0,0,11.84267,0,0,0
-4,0,0,4.564348,0,0,11.84267,0,0,0
-6,0,0,4.564348,0,0,11.84267,0,0,0
-4,0,0,4.564348,0,0,11.84267,0,0,0
-9,0,0,4.564348,0,0,10.3,0,0,0
-0,0,0,4.564348,0,0,10.3,0,0,0
-0,0,0,4.564348,0,0,10.3,0,0,0
-1,0,0,4.564348,0,0,10.3,0,0,0
-3,0,0,4.564348,0,0,10.3,0,0,0
-5,0,1,6.109248,6.160541,1,13.8,1,0,0
-0,0,1,6.109248,6.160541,1,13.8,1,0,0
-6,0,1,6.109248,6.160541,1,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-6,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,27.6,1,0,0
-3,4.564348,0,6.907755,6.959049,0,27.6,1,0,0
-2,4.564348,0,6.907755,6.959049,0,27.6,1,0,0
-2,4.564348,0,6.907755,6.959049,0,27.6,1,0,0
-2,4.564348,0,6.907755,6.959049,0,27.6,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-1,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-5,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-12,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-62,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-74,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-3,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-2,3.258096,0,6.907755,8.294049,1,3.4,1,0,0
-1,3.258096,0,6.907755,8.294049,1,3.4,1,0,0
-3,3.258096,0,6.907755,8.294049,1,3.4,1,0,0
-11,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-16,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-26,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-7,3.258096,0,0,8.294049,0,11.84267,0,0,0
-3,3.258096,0,0,8.294049,0,11.84267,0,0,0
-4,3.258096,0,0,8.294049,0,11.84267,0,0,0
-1,3.258096,0,0,8.294049,0,11.84267,0,0,0
-2,3.258096,0,0,8.294049,0,11.84267,0,0,0
-3,3.258096,0,0,8.294049,0,11.84267,0,0,0
-2,3.258096,0,0,8.294049,0,11.84267,0,0,0
-1,3.258096,0,0,8.294049,0,11.84267,0,0,0
-2,3.258096,0,0,8.294049,0,11.84267,0,0,0
-4,3.258096,0,0,8.294049,0,11.84267,0,0,0
-0,3.258096,0,0,8.294049,0,10.3,0,0,0
-1,3.258096,0,0,8.294049,0,10.3,0,0,0
-0,3.258096,0,0,8.294049,0,10.3,0,0,0
-0,3.258096,0,0,8.294049,0,10.3,0,0,0
-2,3.258096,0,0,8.294049,0,10.3,0,0,0
-3,3.258096,0,0,8.294049,0,13.8,0,0,0
-4,3.258096,0,0,8.294049,0,13.8,0,0,0
-6,3.258096,0,0,8.294049,0,13.8,0,0,0
-1,3.258096,0,0,8.294049,0,13.8,0,0,0
-2,3.258096,0,0,8.294049,0,13.8,0,0,0
-4,3.258096,0,0,6.624596,0,6.9,0,0,0
-4,3.258096,0,0,6.624596,0,6.9,0,0,0
-2,3.258096,0,0,6.624596,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-11,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-19,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-19,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-8,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,3.258096,0,6.981507,8.294049,0,3.4,1,0,0
-1,3.258096,0,6.981507,8.294049,0,3.4,1,0,0
-0,3.258096,0,6.981507,8.294049,0,3.4,1,0,0
-4,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-2,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-5,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-3,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-1,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-1,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-1,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-2,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-3,3.258096,0,6.981507,8.294049,0,11.84267,1,0,0
-0,3.258096,0,6.981507,8.294049,1,10.3,1,0,0
-0,3.258096,0,6.981507,8.294049,1,10.3,1,0,0
-2,3.258096,0,6.981507,8.294049,1,10.3,1,0,0
-10,0,0,0,0,1,6.9,0,0,0
-4,0,0,0,0,1,6.9,0,0,0
-0,0,0,0,0,1,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-6,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.031646,7.417941,0,17.2,0,1,0
-0,3.258096,0,6.031646,7.417941,0,17.2,0,1,0
-0,3.258096,0,6.031646,7.417941,0,17.2,0,1,0
-0,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-2,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-0,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-0,3.258096,0,6.031646,7.417941,0,0,0,1,0
-0,3.258096,0,6.031646,7.417941,0,0,0,1,0
-0,3.258096,0,6.031646,7.417941,0,0,0,1,0
-2,3.258096,0,6.031646,7.417941,0,0,0,1,0
-0,3.258096,0,6.031646,7.417941,0,0,0,1,0
-3,3.258096,0,6.031646,7.417941,0,0,0,1,0
-0,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-0,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-0,3.258096,0,6.031646,7.417941,0,11.84267,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-1,0,0,0,0,0,10.3,0,1,0
-1,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,1,34.5,1,0,0
-0,0,0,0,0,1,34.5,1,0,0
-3,0,0,0,0,1,34.5,1,0,0
-5,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-2,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-2,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-3,4.564348,0,6.703188,6.754481,0,11.84267,0,0,0
-0,4.564348,0,6.703188,6.754481,0,11.84267,0,0,0
-2,4.564348,0,6.703188,6.754481,0,11.84267,0,0,0
-2,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-1,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-3,4.564348,0,6.703188,6.754481,0,6.9,0,0,0
-6,4.564348,0,6.907755,6.959049,1,11.84267,0,1,0
-0,4.564348,0,6.907755,6.959049,1,11.84267,0,1,0
-1,4.564348,0,6.907755,6.959049,1,11.84267,0,1,0
-3,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-0,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-45,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-37,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,5.298317,5.349611,0,6.9,1,0,0
-0,4.564348,0,5.298317,5.349611,0,6.9,1,0,0
-0,4.564348,0,5.298317,5.349611,0,6.9,1,0,0
-4,4.564348,0,5.298317,5.349611,1,17.2,1,0,0
-2,4.564348,0,5.298317,5.349611,1,17.2,1,0,0
-4,4.564348,0,5.298317,5.349611,1,17.2,1,0,0
-4,0,1,5.010635,5.061929,0,6.9,1,0,0
-7,0,1,5.010635,5.061929,0,6.9,1,0,0
-7,0,1,5.010635,5.061929,0,6.9,1,0,0
-1,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,1,0,0
-1,0,1,0,5.061929,0,0,0,0,0
-3,0,1,0,5.061929,0,0,0,0,0
-2,0,1,0,5.061929,0,0,0,0,0
-1,0,1,0,5.061929,0,3.4,0,0,0
-0,0,1,0,5.061929,0,3.4,0,0,0
-0,0,1,0,5.061929,0,3.4,0,0,0
-4,0,0,6.120297,0,0,10.3,0,0,0
-3,0,0,6.120297,0,0,10.3,0,0,0
-2,0,0,6.120297,0,0,10.3,0,0,0
-4,0,0,6.120297,0,0,11.84267,0,0,0
-1,0,0,6.120297,0,0,11.84267,0,0,0
-2,0,0,6.120297,0,0,11.84267,0,0,0
-2,0,0,6.120297,0,0,11.84267,0,0,0
-5,0,0,6.120297,0,0,11.84267,0,0,0
-2,0,0,6.120297,0,0,11.84267,0,0,0
-1,0,0,6.120297,0,0,10.3,0,0,0
-2,0,0,6.120297,0,0,10.3,0,0,0
-1,0,0,6.120297,0,0,10.3,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-7,4.564348,0,6.907755,6.959049,0,37.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,37.9,1,0,0
-2,4.564348,0,6.907755,6.959049,0,37.9,1,0,0
-2,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-10,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-5,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-0,0,1,5.010635,5.061929,0,10.3,1,0,0
-3,0,1,5.010635,5.061929,0,10.3,1,0,0
-4,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,4.564348,0,0,6.671367,1,20.7,0,0,0
-0,4.564348,0,0,6.671367,1,20.7,0,0,0
-0,4.564348,0,0,6.671367,1,20.7,0,0,0
-0,4.564348,0,0,6.671367,1,20.7,0,0,0
-0,4.564348,0,0,6.671367,1,20.7,0,0,0
-5,3.258096,0,6.907755,8.294049,1,24.1,1,0,0
-1,3.258096,0,6.907755,8.294049,1,24.1,1,0,0
-5,3.258096,0,6.907755,8.294049,1,24.1,1,0,0
-4,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-4,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-4,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-8,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-8,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-0,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-21,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-6,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-4,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-3,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-5,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-1,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,11.84267,0,0,0
-0,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-0,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-0,3.258096,0,6.395262,7.774856,0,3.4,1,0,0
-0,0,1,0,5.061929,0,3.4,0,1,0
-0,0,1,0,5.061929,0,3.4,0,1,0
-0,0,1,0,5.061929,0,3.4,0,1,0
-5,0,0,5.871329,0,0,6.9,1,0,0
-5,0,0,5.871329,0,0,6.9,1,0,0
-4,0,0,5.871329,0,0,6.9,1,0,0
-5,0,0,5.871329,0,1,10.3,1,0,0
-14,0,0,5.871329,0,1,10.3,1,0,0
-6,0,0,5.871329,0,1,10.3,1,0,0
-0,0,1,5.743003,5.755076,0,0,0,1,0
-0,0,1,5.743003,5.755076,0,0,0,1,0
-0,0,1,5.743003,5.755076,0,0,0,1,0
-4,0,1,5.743003,5.755076,0,10.3,0,1,0
-2,0,1,5.743003,5.755076,0,10.3,0,1,0
-0,0,1,5.743003,5.755076,0,10.3,0,1,0
-3,0,0,5.805978,0,0,10.3,0,0,0
-34,0,0,5.805978,0,0,10.3,0,0,0
-18,0,0,5.805978,0,0,10.3,0,0,0
-0,0,0,5.805978,0,0,17.2,0,0,0
-1,0,0,5.805978,0,0,17.2,0,0,0
-3,0,0,5.805978,0,0,17.2,0,0,0
-7,0,0,5.805978,0,0,11.84267,0,0,0
-1,0,0,5.805978,0,0,11.84267,0,0,0
-2,0,0,5.805978,0,0,11.84267,0,0,0
-0,0,0,5.506307,0,0,13.8,1,0,0
-1,0,0,5.506307,0,0,13.8,1,0,0
-1,0,0,5.506307,0,0,13.8,1,0,0
-7,0,0,5.506307,0,0,3.4,1,0,0
-4,0,0,5.506307,0,0,3.4,1,0,0
-2,0,0,5.506307,0,0,3.4,1,0,0
-0,0,0,5.506307,0,0,17.2,1,0,0
-1,0,0,5.506307,0,0,17.2,1,0,0
-3,0,0,5.506307,0,0,17.2,1,0,0
-8,3.258096,0,0,7.968458,0,10.3,0,1,0
-10,3.258096,0,0,7.968458,0,10.3,0,1,0
-12,3.258096,0,0,7.968458,0,10.3,0,1,0
-0,3.258096,0,0,7.968458,0,11.84267,1,0,0
-3,3.258096,0,0,7.968458,0,11.84267,1,0,0
-2,3.258096,0,0,7.968458,0,11.84267,1,0,0
-8,3.258096,0,0,7.968458,0,11.84267,1,0,0
-6,3.258096,0,0,7.968458,0,11.84267,1,0,0
-7,3.258096,0,0,7.968458,0,11.84267,1,0,0
-11,3.258096,0,0,7.968458,1,10.3,0,1,0
-2,3.258096,0,0,7.968458,1,10.3,0,1,0
-7,3.258096,0,0,7.968458,1,10.3,0,1,0
-6,3.258096,0,0,7.968458,0,11.84267,1,0,0
-3,3.258096,0,0,7.968458,0,11.84267,1,0,0
-6,3.258096,0,0,7.968458,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-13,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-10,0,1,6.109248,6.160541,0,13.8,0,0,0
-4,0,1,6.109248,6.160541,0,13.8,0,0,0
-3,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,1,0,0,0,0
-0,0,1,6.109248,6.160541,1,0,0,0,0
-0,0,1,6.109248,6.160541,1,0,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-7,0,0,0,0,0,6.9,0,0,0
-8,0,0,0,0,1,17.2,0,1,0
-4,0,0,0,0,1,17.2,0,1,0
-5,0,0,0,0,1,17.2,0,1,0
-7,0,0,0,0,1,17.2,0,1,0
-3,0,0,0,0,1,17.2,0,1,0
-5,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-7,0,0,0,0,0,11.84267,1,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-6,0,0,0,0,0,11.84267,1,0,0
-10,3.258096,0,6.243779,7.630073,0,10.3,0,0,0
-7,3.258096,0,6.243779,7.630073,0,10.3,0,0,0
-7,3.258096,0,6.243779,7.630073,0,10.3,0,0,0
-3,3.258096,0,6.243779,7.630073,0,11.84267,0,1,0
-0,3.258096,0,6.243779,7.630073,0,11.84267,0,1,0
-1,3.258096,0,6.243779,7.630073,0,11.84267,0,1,0
-3,3.258096,0,6.243779,7.630073,0,11.84267,0,0,0
-3,3.258096,0,6.243779,7.630073,0,11.84267,0,0,0
-1,3.258096,0,6.243779,7.630073,0,11.84267,0,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-19,0,1,6.215408,5.755076,1,31,0,0,0
-19,0,1,6.215408,5.755076,1,31,0,0,0
-12,0,1,6.215408,5.755076,1,31,0,0,0
-2,0,1,6.215408,5.755076,0,3.4,0,0,0
-5,0,0,3.871201,0,1,10.3,0,0,0
-0,0,0,3.871201,0,1,10.3,0,0,0
-0,0,0,3.871201,0,1,10.3,0,0,0
-0,0,0,3.871201,0,1,13.8,0,0,0
-0,0,0,3.871201,0,1,13.8,0,0,0
-0,0,0,3.871201,0,1,13.8,0,0,0
-0,0,0,3.871201,0,0,3.4,0,0,0
-0,0,0,3.871201,0,0,3.4,0,0,0
-0,0,0,3.871201,0,0,3.4,0,0,0
-0,0,0,3.871201,0,0,17.2,0,0,0
-0,0,0,3.871201,0,0,17.2,0,0,0
-0,0,0,3.871201,0,0,17.2,0,0,0
-9,3.258096,0,6.291291,7.677586,0,17.2,0,0,0
-12,3.258096,0,6.291291,7.677586,0,17.2,0,0,0
-10,3.258096,0,6.291291,7.677586,0,17.2,0,0,0
-1,3.258096,0,6.291291,7.677586,0,10.3,0,0,0
-5,3.258096,0,6.291291,7.677586,0,10.3,0,0,0
-1,3.258096,0,6.291291,7.677586,0,11.84267,0,0,0
-3,3.258096,0,6.291291,7.677586,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,1,11.84267,0,1,0
-1,0,0,0,0,1,11.84267,0,1,0
-2,0,0,0,0,1,11.84267,0,1,0
-1,0,0,0,0,0,11.84267,0,1,0
-0,0,0,0,0,0,11.84267,0,1,0
-0,0,0,0,0,0,11.84267,0,1,0
-0,0,0,0,0,0,27.6,1,0,0
-6,0,0,0,0,0,27.6,1,0,0
-2,0,0,0,0,0,27.6,1,0,0
-14,0,0,0,0,1,11.84267,0,1,0
-8,0,0,0,0,1,11.84267,0,1,0
-3,0,0,0,0,1,11.84267,0,1,0
-3,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-4,3.258096,0,5.768321,7.154615,0,20.7,1,0,0
-4,3.258096,0,5.768321,7.154615,0,20.7,1,0,0
-7,3.258096,0,5.768321,7.154615,0,20.7,1,0,0
-3,3.258096,0,5.768321,7.154615,0,11.84267,0,0,0
-3,3.258096,0,5.768321,7.154615,0,11.84267,0,0,0
-0,3.258096,0,5.768321,7.154615,0,11.84267,0,0,0
-6,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-7,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-4,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-3,3.258096,0,6.659294,8.045588,0,17.2,1,0,0
-0,3.258096,0,6.659294,8.045588,0,17.2,1,0,0
-3,3.258096,0,6.659294,8.045588,0,17.2,1,0,0
-1,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-4,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-1,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-3,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-5,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-3,3.258096,0,6.659294,8.045588,0,11.84267,0,0,0
-6,3.258096,0,6.659294,8.045588,0,0,0,0,0
-0,3.258096,0,6.659294,8.045588,0,0,0,0,0
-0,3.258096,0,6.659294,8.045588,0,0,0,0,0
-5,0,0,4.736198,0,0,6.9,0,0,0
-8,0,0,4.736198,0,0,6.9,0,0,0
-7,0,0,4.736198,0,0,6.9,0,0,0
-4,0,0,4.736198,0,0,11.84267,1,0,0
-1,0,0,4.736198,0,0,11.84267,1,0,0
-4,0,0,4.736198,0,0,11.84267,1,0,0
-2,0,0,4.736198,0,0,11.84267,1,0,0
-3,0,0,4.736198,0,0,11.84267,1,0,0
-2,0,0,4.736198,0,0,11.84267,1,0,0
-8,4.564348,0,5.584999,3.628682,0,17.2,0,0,0
-2,4.564348,0,5.584999,3.628682,0,17.2,0,0,0
-3,4.564348,0,5.584999,3.628682,0,17.2,0,0,0
-12,4.564348,0,5.675383,5.726676,1,24.1,0,1,0
-4,4.564348,0,5.675383,5.726676,1,24.1,0,1,0
-15,4.564348,0,5.675383,5.726676,1,24.1,0,1,0
-3,4.564348,0,5.675383,5.726676,1,3.4,0,1,0
-1,4.564348,0,5.675383,5.726676,1,3.4,0,1,0
-2,4.564348,0,5.675383,5.726676,1,3.4,0,1,0
-0,4.564348,0,5.675383,5.726676,0,6.9,0,1,0
-1,4.564348,0,5.675383,5.726676,0,6.9,0,1,0
-1,4.564348,0,5.675383,5.726676,0,6.9,0,1,0
-8,4.564348,0,5.675383,5.726676,0,0,1,0,0
-5,4.564348,0,5.675383,5.726676,0,0,1,0,0
-0,4.564348,0,5.675383,5.726676,0,0,1,0,0
-2,4.564348,0,5.675383,5.726676,1,6.9,1,0,0
-5,4.564348,0,5.675383,5.726676,1,6.9,1,0,0
-5,4.564348,0,5.675383,5.726676,1,6.9,1,0,0
-1,3.258096,0,0,7.495542,0,10.3,0,1,0
-1,3.258096,0,0,7.495542,0,10.3,0,1,0
-1,3.258096,0,0,7.495542,0,10.3,0,1,0
-1,3.258096,0,0,7.495542,0,10.3,0,1,0
-0,3.258096,0,0,7.495542,0,10.3,0,1,0
-19,4.564348,0,4.848116,4.89941,0,11.84267,0,0,0
-1,4.564348,0,4.848116,4.89941,0,13.8,0,0,0
-15,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-26,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-40,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-1,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-10,0,0,5.301911,0,1,17.2,1,0,0
-10,0,0,5.301911,0,1,17.2,1,0,0
-3,0,0,5.301911,0,1,17.2,1,0,0
-3,0,0,5.301911,0,1,17.2,1,0,0
-1,0,0,5.301911,0,1,17.2,1,0,0
-0,4.564348,0,0,6.566006,0,11.84267,0,0,0
-0,4.564348,0,0,6.566006,0,11.84267,0,0,0
-0,4.564348,0,0,6.566006,0,11.84267,0,0,0
-2,4.564348,0,5.087596,5.061929,0,17.2,1,0,0
-0,4.564348,0,5.087596,5.061929,0,17.2,1,0,0
-0,4.564348,0,5.087596,5.061929,0,17.2,1,0,0
-8,4.564348,0,5.087596,5.061929,0,13.8,1,0,0
-0,4.564348,0,5.087596,5.061929,0,13.8,1,0,0
-0,4.564348,0,5.087596,5.061929,0,13.8,1,0,0
-0,0,1,5.703783,5.755076,0,11.84267,0,0,0
-0,0,1,5.703783,5.755076,0,11.84267,0,0,0
-0,0,1,5.703783,5.755076,0,11.84267,0,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,0,0
-13,3.258096,0,6.907755,8.294049,0,27.6,1,0,0
-7,3.258096,0,6.907755,8.294049,0,27.6,1,0,0
-15,3.258096,0,6.907755,8.294049,0,27.6,1,0,0
-2,0,1,6.145901,5.061929,0,17.2,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,5.941539,0,0,11.84267,0,0,0
-3,0,0,5.941539,0,0,11.84267,0,0,0
-2,0,0,5.941539,0,0,11.84267,0,0,0
-3,0,0,5.941539,0,0,11.84267,1,0,0
-7,0,0,5.941539,0,0,11.84267,1,0,0
-2,0,0,5.941539,0,0,11.84267,1,0,0
-6,0,0,5.941539,0,0,34.5,0,0,0
-7,0,0,5.941539,0,0,34.5,0,0,0
-3,0,0,5.941539,0,0,34.5,0,0,0
-2,0,0,0,0,1,17.2,1,0,0
-0,0,0,0,0,1,17.2,1,0,0
-4,0,0,0,0,1,17.2,1,0,0
-1,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-8,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,34.5,1,0,0
-13,0,0,0,0,0,34.5,1,0,0
-10,0,0,0,0,0,34.5,1,0,0
-16,0,0,0,0,0,11.84267,1,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-6,0,0,0,0,0,3.4,0,0,0
-6,0,0,0,0,0,3.4,0,0,0
-7,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-10,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-4,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-4,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-1,3.258096,0,3.871201,5.257495,1,10.3,1,0,0
-0,3.258096,0,3.871201,5.257495,1,10.3,1,0,0
-5,3.258096,0,3.871201,5.257495,1,10.3,1,0,0
-2,3.258096,0,3.871201,5.257495,1,10.3,1,0,0
-4,3.258096,0,3.871201,5.257495,1,10.3,1,0,0
-24,3.258096,0,3.871201,5.257495,0,10.3,1,0,0
-16,3.258096,0,3.871201,5.257495,0,10.3,1,0,0
-9,3.258096,0,3.871201,5.257495,0,10.3,1,0,0
-4,3.258096,0,3.871201,5.257495,0,10.3,1,0,0
-4,3.258096,0,3.871201,5.257495,0,10.3,1,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-1,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-0,3.258096,0,3.871201,5.257495,0,3.4,1,0,0
-10,0,0,5.622572,0,0,13.8,0,0,0
-9,0,0,5.622572,0,0,13.8,0,0,0
-1,0,0,5.622572,0,0,13.8,0,0,0
-2,0,0,5.622572,0,0,3.4,0,0,0
-3,0,0,5.622572,0,0,3.4,0,0,0
-1,0,0,5.622572,0,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-2,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-16,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,4.564348,0,6.300786,6.352079,0,11.84267,0,0,0
-1,4.564348,0,6.300786,6.352079,0,11.84267,0,0,0
-4,4.564348,0,6.300786,6.352079,0,17.2,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-5,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-6,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-8,4.564348,0,6.907755,6.959049,1,37.9,0,1,0
-5,4.564348,0,6.907755,6.959049,1,37.9,0,1,0
-7,4.564348,0,6.907755,6.959049,1,37.9,0,1,0
-3,0,0,6.351409,0,1,11.84267,0,0,0
-3,0,0,6.351409,0,1,11.84267,0,0,0
-0,0,0,6.351409,0,1,11.84267,0,0,0
-3,0,0,6.351409,0,0,11.84267,0,0,0
-1,0,0,6.351409,0,0,11.84267,0,0,0
-0,0,0,6.351409,0,0,11.84267,0,0,0
-3,0,0,6.351409,0,1,10.3,1,0,0
-2,0,0,6.351409,0,1,10.3,1,0,0
-3,0,0,6.351409,0,1,10.3,1,0,0
-4,0,0,3.583519,0,0,17.2,1,0,0
-3,0,0,3.583519,0,0,17.2,1,0,0
-9,0,0,3.583519,0,0,17.2,1,0,0
-2,0,0,0,0,1,20.7,0,0,0
-3,0,0,0,0,1,20.7,0,0,0
-2,0,0,0,0,1,20.7,0,0,0
-7,0,0,0,0,1,10.3,1,0,0
-11,0,0,0,0,1,10.3,1,0,0
-4,0,0,0,0,1,10.3,1,0,0
-5,3.258096,0,0,5.075174,0,17.2,0,0,0
-6,3.258096,0,0,5.075174,0,17.2,0,0,0
-13,3.258096,0,0,5.075174,0,17.2,0,0,0
-0,4.564348,0,0,6.619512,0,3.4,0,0,0
-0,4.564348,0,0,6.619512,0,3.4,0,0,0
-0,4.564348,0,0,6.619512,0,3.4,0,0,0
-2,4.564348,0,0,6.619512,0,3.4,1,0,0
-2,4.564348,0,0,6.619512,0,3.4,1,0,0
-0,4.564348,0,0,6.619512,0,3.4,1,0,0
-0,4.564348,0,0,6.619512,0,11.84267,0,0,0
-1,4.564348,0,0,6.619512,0,11.84267,0,0,0
-1,4.564348,0,0,6.619512,0,11.84267,0,0,0
-0,0,1,5.010635,5.061929,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-0,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-0,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,31,0,0,0
-2,4.564348,0,6.907755,6.959049,0,31,0,0,0
-2,4.564348,0,6.907755,6.959049,0,31,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-5,0,0,5.678431,0,1,27.6,1,0,0
-2,0,0,5.678431,0,1,27.6,1,0,0
-3,0,0,5.678431,0,1,27.6,1,0,0
-0,0,1,5.831296,5.061929,1,17.2,0,0,0
-1,0,1,5.831296,5.061929,1,17.2,0,0,0
-0,0,1,5.831296,5.061929,1,17.2,0,0,0
-0,0,1,0,5.061929,0,0,0,0,0
-2,0,1,0,5.061929,0,0,0,0,0
-0,0,1,0,5.061929,0,0,0,0,0
-7,0,1,6.109248,6.160541,0,11.84267,1,0,0
-11,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-5,0,1,6.109248,6.160541,0,13.8,1,0,0
-10,0,1,6.109248,6.160541,0,13.8,1,0,0
-6,0,1,6.109248,6.160541,0,13.8,1,0,0
-24,0,1,6.109248,6.160541,1,11.84267,0,1,0
-39,0,1,6.109248,6.160541,1,11.84267,0,1,0
-12,0,1,6.109248,6.160541,1,11.84267,0,1,0
-8,0,1,6.109248,6.160541,0,6.9,1,0,0
-6,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,1,20.7,0,1,0
-5,0,0,0,0,1,17.2,1,0,0
-2,3.258096,0,6.802839,8.189134,0,11.84267,0,0,0
-2,3.258096,0,6.802839,8.189134,0,11.84267,0,0,0
-11,3.258096,0,6.802839,8.189134,0,11.84267,0,0,0
-12,3.258096,0,6.802839,8.189134,0,11.84267,0,0,0
-5,3.258096,0,6.802839,8.189134,0,11.84267,0,0,0
-1,3.258096,0,6.802839,8.189134,1,10.3,1,0,0
-4,3.258096,0,6.802839,8.189134,1,10.3,1,0,0
-5,3.258096,0,6.802839,8.189134,1,10.3,1,0,0
-29,3.258096,0,6.802839,8.189134,1,10.3,1,0,0
-11,3.258096,0,6.802839,8.189134,1,20.7,1,0,0
-3,3.258096,0,6.802839,8.189134,1,20.7,1,0,0
-14,3.258096,0,6.802839,8.189134,1,20.7,1,0,0
-5,3.258096,0,6.802839,8.189134,1,20.7,1,0,0
-5,3.258096,0,6.802839,8.189134,1,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,1
-1,0,1,6.109248,6.160541,0,3.4,0,0,1
-0,0,1,6.109248,6.160541,0,3.4,0,0,1
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-1,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-3,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,5.010635,5.061929,0,0,1,0,0
-2,0,1,5.010635,5.061929,0,0,1,0,0
-0,0,1,5.010635,5.061929,0,0,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-9,3.258096,0,6.907755,8.294049,1,27.6,1,0,0
-7,3.258096,0,6.907755,8.294049,1,27.6,1,0,0
-19,3.258096,0,6.907755,8.294049,1,27.6,1,0,0
-0,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-0,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-4,3.258096,0,6.907755,8.294049,1,17.2,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-4,0,0,0,0,1,13.8,1,0,0
-4,0,0,0,0,1,13.8,1,0,0
-12,0,0,0,0,1,13.8,1,0,0
-8,0,0,0,0,1,13.8,1,0,0
-52,0,0,0,0,1,13.8,1,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-11,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-11,0,0,0,0,0,11.84267,0,0,0
-8,0,0,0,0,0,11.84267,0,0,0
-8,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-6,0,0,0,0,0,10.3,0,0,0
-11,0,0,5.981414,0,1,10.3,1,0,0
-15,0,0,5.981414,0,1,10.3,1,0,0
-13,0,0,5.981414,0,1,10.3,1,0,0
-13,0,0,5.981414,0,1,10.3,1,0,0
-11,0,0,5.981414,0,1,10.3,1,0,0
-0,0,0,5.192957,0,0,3.4,0,0,0
-0,0,0,5.192957,0,0,3.4,0,0,0
-1,0,0,5.192957,0,0,3.4,0,0,0
-3,0,0,5.192957,0,0,6.9,0,0,0
-3,0,0,5.192957,0,0,6.9,0,0,0
-2,0,0,5.192957,0,0,6.9,0,0,0
-1,0,0,5.192957,0,0,0,0,0,0
-2,0,0,5.192957,0,0,0,0,0,0
-2,0,0,5.192957,0,0,0,0,0,0
-5,0,0,5.192957,0,1,13.8,0,0,1
-1,0,0,5.192957,0,1,13.8,0,0,1
-3,0,0,5.192957,0,1,13.8,0,0,1
-1,4.564348,0,6.720943,6.772237,0,17.2,1,0,0
-1,4.564348,0,6.720943,6.772237,0,17.2,1,0,0
-5,4.564348,0,6.720943,6.772237,0,17.2,1,0,0
-4,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-1,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-2,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-1,4.564348,0,6.720943,6.772237,0,13.8,1,0,0
-4,4.564348,0,6.720943,6.772237,0,13.8,1,0,0
-0,4.564348,0,6.720943,6.772237,0,13.8,1,0,0
-9,4.564348,0,6.720943,6.772237,0,11.84267,1,0,0
-1,4.564348,0,6.720943,6.772237,0,10.3,0,0,0
-0,4.564348,0,6.720943,6.772237,0,10.3,0,0,0
-0,4.564348,0,6.720943,6.772237,0,10.3,0,0,0
-2,4.564348,0,6.720943,6.772237,0,10.3,0,1,0
-4,4.564348,0,6.720943,6.772237,0,11.84267,0,1,0
-0,4.564348,0,6.720943,6.772237,0,11.84267,0,1,0
-2,4.564348,0,6.720943,6.772237,0,11.84267,0,1,0
-2,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-2,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-0,4.564348,0,6.720943,6.772237,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,20.7,0,0,0
-3,0,1,6.109248,6.160541,0,20.7,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,0,0,0
-4,0,1,6.109248,6.160541,0,20.7,0,0,0
-8,0,1,6.109248,6.160541,0,20.7,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,1,17.2,0,1,0
-9,0,1,6.109248,6.160541,1,17.2,0,1,0
-6,0,1,6.109248,6.160541,1,17.2,0,1,0
-5,0,1,6.109248,6.160541,1,17.2,0,1,0
-3,0,1,6.109248,6.160541,1,17.2,0,1,0
-19,0,1,5.010635,5.061929,0,31,0,0,0
-32,0,1,5.010635,5.061929,0,31,0,0,0
-3,0,1,5.010635,5.061929,0,31,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,5.975564,6.448223,0,17.2,1,0,0
-0,4.564348,0,5.975564,6.448223,0,17.2,1,0,0
-0,4.564348,0,5.975564,6.448223,0,17.2,1,0,0
-7,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,6.109248,6.160541,0,13.8,0,0,0
-10,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,0,0,0
-6,0,1,6.109248,6.160541,0,20.7,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-4,0,1,5.010635,5.061929,0,27.6,1,0,0
-1,0,1,5.010635,5.061929,0,27.6,1,0,0
-2,0,1,5.010635,5.061929,0,27.6,1,0,0
-3,0,1,5.010635,5.061929,0,27.6,1,0,0
-3,0,1,5.010635,5.061929,0,27.6,1,0,0
-3,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-7,0,0,0,0,0,17.2,1,0,0
-4,0,0,0,0,0,17.2,1,0,0
-3,0,0,0,0,0,17.2,1,0,0
-0,3.258096,0,6.146436,7.532731,0,6.9,1,0,0
-0,3.258096,0,6.146436,7.532731,0,6.9,1,0,0
-1,3.258096,0,6.146436,7.532731,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-9,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-34,3.258096,0,6.282267,7.668561,1,31,0,1,0
-13,3.258096,0,6.282267,7.668561,0,10.3,0,1,0
-2,0,1,6.645819,6.160541,0,24.1,1,0,0
-4,0,1,6.645819,6.160541,0,24.1,1,0,0
-1,0,1,6.645819,6.160541,0,24.1,1,0,0
-9,0,1,6.645819,6.160541,0,11.84267,0,0,0
-35,0,1,6.645819,6.160541,0,11.84267,0,0,0
-30,0,1,6.645819,6.160541,0,11.84267,0,0,0
-5,0,1,6.645819,6.160541,0,11.84267,0,0,0
-2,0,1,6.645819,6.160541,0,11.84267,0,0,0
-1,0,1,6.645819,6.160541,0,11.84267,0,0,0
-0,0,1,6.645819,6.160541,0,17.2,0,0,0
-1,0,1,6.645819,6.160541,0,17.2,0,0,0
-0,0,1,6.645819,6.160541,0,17.2,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,1,0,0,0,0
-2,0,0,0,0,1,0,0,0,0
-0,0,0,0,0,1,0,0,0,0
-7,0,0,0,0,1,34.5,1,0,0
-2,0,0,0,0,1,34.5,1,0,0
-1,0,0,0,0,1,34.5,1,0,0
-2,0,1,5.703783,5.755076,0,11.84267,1,0,0
-2,0,1,5.703783,5.755076,0,11.84267,1,0,0
-4,0,1,5.703783,5.755076,0,11.84267,1,0,0
-3,0,1,5.703783,5.755076,0,24.1,1,0,0
-1,0,1,5.703783,5.755076,0,24.1,1,0,0
-1,0,1,5.703783,5.755076,0,24.1,1,0,0
-5,0,1,5.703783,5.755076,0,13.8,1,0,0
-11,0,1,5.703783,5.755076,0,13.8,1,0,0
-1,0,1,5.703783,5.755076,0,13.8,1,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,1,0
-2,0,1,5.703783,5.755076,0,10.3,0,1,0
-6,0,1,5.703783,5.755076,0,10.3,0,1,0
-4,0,0,4.162003,0,0,10.3,0,0,0
-1,0,0,4.162003,0,0,10.3,0,0,0
-5,0,0,4.162003,0,0,10.3,0,0,0
-8,0,0,4.162003,0,0,10.3,0,0,0
-6,0,0,4.162003,0,0,10.3,0,0,0
-3,0,1,0,5.061929,1,13.8,0,1,0
-1,0,1,0,5.061929,1,13.8,0,1,0
-3,0,1,0,5.061929,1,13.8,0,1,0
-2,0,1,0,5.061929,1,13.8,0,1,0
-3,0,1,0,5.061929,1,13.8,0,1,0
-0,3.258096,0,6.200509,8.248006,0,6.9,0,0,0
-0,3.258096,0,6.200509,8.248006,0,6.9,0,0,0
-0,3.258096,0,6.200509,8.248006,0,6.9,0,0,0
-3,3.258096,0,6.200509,8.248006,0,10.3,0,0,0
-2,3.258096,0,6.200509,8.248006,0,10.3,0,0,0
-5,3.258096,0,6.200509,8.248006,0,10.3,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-2,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-3,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-5,4.564348,0,0,6.529803,1,13.8,0,0,0
-7,4.564348,0,0,6.529803,1,13.8,0,0,0
-3,4.564348,0,0,6.529803,1,13.8,0,0,0
-4,4.564348,0,0,6.529803,0,17.2,0,0,1
-1,4.564348,0,0,6.529803,0,17.2,0,0,1
-0,4.564348,0,0,6.529803,0,17.2,0,0,1
-6,4.564348,0,0,6.529803,1,11.84267,0,0,0
-2,4.564348,0,0,6.529803,1,11.84267,0,0,0
-3,4.564348,0,0,6.529803,1,11.84267,0,0,0
-2,4.564348,0,0,6.529803,0,11.84267,0,0,0
-1,4.564348,0,0,6.529803,0,11.84267,0,0,0
-6,4.564348,0,0,6.529803,0,11.84267,0,0,0
-1,0,0,5.496512,0,0,20.7,0,0,0
-5,0,0,5.496512,0,0,20.7,0,0,0
-1,0,0,5.496512,0,0,20.7,0,0,0
-1,0,0,5.496512,0,0,6.9,0,0,0
-4,0,0,5.496512,0,0,6.9,0,0,0
-6,0,0,5.496512,0,0,6.9,0,0,0
-38,0,0,0,0,0,3.4,0,0,0
-26,0,0,0,0,0,3.4,0,0,0
-32,0,0,0,0,0,3.4,0,0,0
-2,4.564348,0,6.703188,6.754481,0,24.1,1,0,0
-8,4.564348,0,6.703188,6.754481,0,24.1,1,0,0
-10,4.564348,0,6.703188,6.754481,0,24.1,1,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-8,0,0,0,0,0,11.84267,1,0,0
-4,0,0,0,0,0,11.84267,1,0,0
-4,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-3,3.258096,0,6.098074,7.484369,0,24.1,1,0,0
-0,3.258096,0,6.098074,7.484369,0,24.1,1,0,0
-1,3.258096,0,6.098074,7.484369,0,24.1,1,0,0
-3,0,1,5.852662,5.755076,0,17.2,1,0,0
-1,0,1,5.852662,5.755076,0,17.2,1,0,0
-1,0,1,5.852662,5.755076,0,17.2,1,0,0
-20,0,1,5.852662,5.755076,1,27.6,0,1,0
-38,0,1,5.852662,5.755076,1,27.6,0,1,0
-26,0,1,5.852662,5.755076,1,27.6,0,1,0
-4,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-1,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-0,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-1,3.258096,0,6.907755,8.294049,1,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,1,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,1,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,5.886104,7.272398,1,27.6,0,0,0
-9,3.258096,0,5.886104,7.272398,1,27.6,0,0,0
-3,3.258096,0,5.886104,7.272398,1,27.6,0,0,0
-6,3.258096,0,5.886104,7.272398,1,27.6,0,0,0
-3,3.258096,0,5.886104,7.272398,1,27.6,0,0,0
-5,3.258096,0,5.886104,7.272398,1,11.84267,0,1,0
-12,3.258096,0,5.886104,7.272398,1,11.84267,0,1,0
-2,3.258096,0,5.886104,7.272398,1,11.84267,0,1,0
-2,3.258096,0,5.886104,7.272398,1,11.84267,0,1,0
-2,3.258096,0,5.886104,7.272398,1,11.84267,0,1,0
-8,3.258096,0,5.886104,7.272398,1,17.2,0,0,0
-13,3.258096,0,5.886104,7.272398,1,17.2,0,0,0
-8,3.258096,0,5.886104,7.272398,1,17.2,0,0,0
-5,3.258096,0,5.886104,7.272398,1,17.2,0,0,0
-1,3.258096,0,5.886104,7.272398,1,17.2,0,0,0
-9,3.258096,0,5.886104,7.272398,0,11.84267,0,0,0
-11,3.258096,0,5.886104,7.272398,0,11.84267,0,0,0
-5,3.258096,0,5.886104,7.272398,0,11.84267,0,0,0
-3,3.258096,0,5.886104,7.272398,0,11.84267,0,0,0
-0,3.258096,0,5.886104,7.272398,0,11.84267,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-9,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,1,0,0
-4,0,1,6.109248,6.160541,0,13.8,1,0,0
-7,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-9,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-9,0,0,0,0,1,31,0,1,0
-5,0,0,0,0,1,31,0,1,0
-24,0,0,0,0,1,31,0,1,0
-6,0,0,0,0,1,17.2,0,1,0
-4,0,0,0,0,1,17.2,0,1,0
-2,0,0,0,0,1,17.2,0,1,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,24.1,0,0,0
-2,0,0,0,0,0,24.1,0,0,0
-2,0,0,0,0,0,24.1,0,0,0
-10,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-6,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-1,4.564348,0,6.907755,6.959049,1,20.7,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,0,0,0,0,17.2,1,0,0
-0,0,0,0,0,0,17.2,1,0,0
-5,0,0,0,0,0,17.2,1,0,0
-19,3.258096,0,6.148917,7.535211,1,34.5,1,0,0
-32,3.258096,0,6.148917,7.535211,1,34.5,1,0,0
-27,3.258096,0,6.148917,7.535211,1,34.5,1,0,0
-0,3.258096,0,0,6.040255,0,6.9,1,0,0
-0,3.258096,0,0,6.040255,0,6.9,1,0,0
-6,3.258096,0,0,6.040255,0,6.9,1,0,0
-11,0,1,0,5.061929,0,10.3,0,0,0
-2,0,1,0,5.061929,0,10.3,0,0,0
-9,0,1,0,5.061929,0,10.3,0,0,0
-3,0,0,0,0,1,27.6,1,0,0
-2,0,0,0,0,1,27.6,1,0,0
-2,0,0,0,0,1,27.6,1,0,0
-6,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,1,17.2,1,0,0
-6,0,0,0,0,1,17.2,1,0,0
-5,0,0,0,0,1,17.2,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-4,4.564348,0,6.907755,6.959049,0,37.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,37.9,0,0,0
-4,4.564348,0,6.907755,6.959049,0,37.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-38,0,1,6.109248,6.160541,0,11.84267,0,0,0
-37,0,1,6.109248,6.160541,0,11.84267,0,0,0
-16,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,3.258096,0,0,8.294049,0,11.84267,0,0,0
-3,3.258096,0,0,8.294049,0,11.84267,0,0,0
-0,3.258096,0,0,8.294049,1,10.3,0,0,0
-4,3.258096,0,0,8.294049,1,31,0,1,0
-4,3.258096,0,0,8.294049,0,11.84267,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,1,17.2,0,1,0
-8,0,0,0,0,1,17.2,0,1,0
-21,0,0,0,0,1,17.2,0,1,0
-2,0,0,0,0,1,17.2,0,1,0
-11,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-2,0,0,0,0,0,20.7,1,0,0
-7,0,0,0,0,0,20.7,1,0,0
-3,0,0,0,0,0,20.7,1,0,0
-0,3.258096,0,6.109248,7.495542,0,3.4,0,0,0
-1,3.258096,0,6.109248,7.495542,0,3.4,0,0,0
-1,3.258096,0,6.109248,7.495542,0,3.4,0,0,0
-2,3.258096,0,6.109248,7.495542,0,3.4,0,0,0
-4,3.258096,0,6.109248,7.495542,0,3.4,0,0,0
-5,0,0,0,0,0,17.2,1,0,0
-3,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-8,4.564348,0,6.620273,6.671566,0,6.9,0,0,0
-5,4.564348,0,6.620273,6.671566,0,6.9,0,0,0
-8,4.564348,0,6.620273,6.671566,0,6.9,0,0,0
-11,4.564348,0,6.620273,6.671566,1,31,0,0,1
-10,4.564348,0,6.620273,6.671566,1,31,0,0,1
-7,4.564348,0,6.620273,6.671566,1,31,0,0,1
-0,0,0,0,0,0,20.7,1,0,0
-4,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,24.1,1,0,0
-3,0,0,0,0,0,24.1,1,0,0
-3,0,0,0,0,0,24.1,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-3,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-1,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-2,3.258096,0,6.907755,8.294049,0,13.8,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,1,0,0
-3,0,0,6.047372,0,0,0,0,0,0
-2,0,0,6.047372,0,0,0,0,0,0
-1,0,0,6.047372,0,0,0,0,0,0
-3,0,0,6.047372,0,0,0,0,0,0
-7,0,0,6.047372,0,0,0,0,0,0
-5,0,0,6.047372,0,0,0,0,0,0
-3,0,0,6.047372,0,0,11.84267,0,0,0
-6,0,0,6.047372,0,0,11.84267,0,0,0
-3,0,0,6.047372,0,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,3.258096,0,6.415506,7.8018,1,20.7,0,1,0
-1,3.258096,0,5.700611,7.086905,0,3.4,0,0,0
-0,3.258096,0,5.700611,7.086905,0,3.4,0,0,0
-0,3.258096,0,5.700611,7.086905,0,3.4,0,0,0
-4,0,1,6.228511,6.160541,0,0,0,1,0
-1,0,1,6.228511,6.160541,0,0,0,1,0
-0,0,1,6.228511,6.160541,0,0,0,1,0
-0,0,1,6.228511,6.160541,0,0,0,1,0
-10,0,1,6.228511,6.160541,0,20.7,1,0,0
-5,0,1,6.228511,6.160541,0,20.7,1,0,0
-2,0,1,6.228511,6.160541,0,20.7,1,0,0
-3,0,1,6.228511,6.160541,0,20.7,1,0,0
-4,0,1,6.228511,6.160541,0,20.7,1,0,0
-9,0,1,6.228511,6.160541,0,6.9,0,1,0
-1,0,1,6.228511,6.160541,0,6.9,0,1,0
-2,0,1,6.228511,6.160541,0,6.9,0,1,0
-0,0,1,6.228511,6.160541,0,6.9,0,1,0
-6,0,1,6.228511,6.160541,0,6.9,0,1,0
-9,0,1,3.789177,5.061929,0,17.2,0,0,0
-1,0,1,3.789177,5.061929,0,17.2,0,0,0
-0,0,1,3.789177,5.061929,0,17.2,0,0,0
-5,0,0,5.355642,0,0,10.3,0,0,0
-0,0,0,5.355642,0,0,10.3,0,0,0
-0,0,0,5.355642,0,0,10.3,0,0,0
-1,0,0,5.355642,0,0,10.3,0,0,0
-1,0,0,5.355642,0,0,10.3,0,0,0
-0,0,0,6.246107,0,0,0,0,0,0
-1,0,0,6.246107,0,0,0,0,0,0
-8,0,0,6.246107,0,0,0,0,0,0
-5,0,0,6.246107,0,0,11.84267,0,1,0
-2,0,0,6.246107,0,0,11.84267,0,1,0
-4,0,0,6.246107,0,0,11.84267,0,1,0
-0,0,0,6.246107,0,0,11.84267,0,0,0
-5,0,0,6.246107,0,0,11.84267,0,0,0
-3,0,0,6.246107,0,0,11.84267,0,0,0
-2,0,0,6.246107,0,0,10.3,1,0,0
-7,0,0,6.246107,0,0,10.3,1,0,0
-7,0,0,6.246107,0,0,10.3,1,0,0
-2,0,0,5.219274,0,0,10.3,1,0,0
-1,0,0,5.219274,0,0,10.3,1,0,0
-0,0,0,5.219274,0,0,10.3,1,0,0
-11,0,0,5.219274,0,1,17.2,0,1,0
-2,0,0,5.219274,0,1,17.2,0,1,0
-1,0,0,5.219274,0,1,17.2,0,1,0
-1,0,0,5.219274,0,0,13.8,0,1,0
-0,0,0,5.219274,0,0,13.8,0,1,0
-5,0,0,5.219274,0,0,13.8,0,1,0
-0,4.564348,0,0,6.265902,0,3.4,0,0,0
-0,4.564348,0,0,6.265902,0,3.4,0,0,0
-0,4.564348,0,0,6.265902,0,3.4,0,0,0
-0,4.564348,0,0,6.265902,0,11.84267,0,0,0
-0,4.564348,0,0,6.265902,0,11.84267,0,0,0
-4,4.564348,0,0,6.265902,0,11.84267,0,0,0
-1,4.564348,0,0,6.265902,0,10.3,0,0,0
-1,4.564348,0,0,6.265902,0,10.3,0,0,0
-5,4.564348,0,0,6.265902,0,10.3,0,0,0
-6,4.564348,0,0,6.265902,0,11.84267,0,0,0
-3,4.564348,0,0,6.265902,0,11.84267,0,0,0
-2,4.564348,0,0,6.265902,0,11.84267,0,0,0
-0,0,1,0,5.755076,0,10.3,1,0,0
-1,0,1,0,5.755076,0,10.3,1,0,0
-2,0,1,0,5.755076,0,10.3,1,0,0
-0,0,1,0,5.755076,0,10.3,1,0,0
-1,0,1,0,5.755076,0,10.3,1,0,0
-0,0,1,0,5.755076,0,10.3,1,0,0
-4,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-2,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-10,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-3,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-1,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.342209,7.728504,0,3.4,0,0,0
-1,3.258096,0,6.342209,7.728504,0,3.4,0,0,0
-1,3.258096,0,6.342209,7.728504,0,3.4,0,0,0
-15,3.258096,0,6.342209,7.728504,1,27.6,1,0,0
-6,3.258096,0,6.342209,7.728504,1,27.6,1,0,0
-12,3.258096,0,6.342209,7.728504,1,27.6,1,0,0
-6,0,1,6.489873,6.160541,0,13.8,0,0,0
-1,0,1,6.489873,6.160541,0,13.8,0,0,0
-0,0,1,6.489873,6.160541,0,13.8,0,0,0
-0,0,1,6.489873,6.160541,0,11.84267,0,0,0
-1,0,1,6.489873,6.160541,0,11.84267,0,0,0
-0,0,1,6.489873,6.160541,0,11.84267,0,0,0
-0,0,1,6.489873,6.160541,0,24.1,0,0,0
-1,0,1,6.489873,6.160541,0,24.1,0,0,0
-0,0,1,6.489873,6.160541,0,24.1,0,0,0
-0,0,1,6.489873,6.160541,0,11.84267,0,0,0
-0,0,1,6.489873,6.160541,0,11.84267,0,0,0
-0,0,1,6.489873,6.160541,0,11.84267,0,0,0
-20,0,1,6.489873,6.160541,1,11.84267,0,0,0
-18,0,1,6.489873,6.160541,1,11.84267,0,0,0
-16,0,1,6.489873,6.160541,1,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,1,6.9,1,0,0
-5,0,0,0,0,1,6.9,1,0,0
-6,0,0,0,0,1,6.9,1,0,0
-15,0,0,0,0,1,6.9,1,0,0
-6,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,44.8,0,1,0
-3,0,0,0,0,0,44.8,0,1,0
-3,0,0,0,0,0,44.8,0,1,0
-0,3.258096,0,0,8.294049,0,6.9,0,0,0
-0,3.258096,0,0,8.294049,0,6.9,0,0,0
-0,3.258096,0,0,8.294049,0,6.9,0,0,0
-9,0,0,0,0,1,20.7,1,0,0
-18,0,0,0,0,1,20.7,1,0,0
-3,0,0,0,0,1,20.7,1,0,0
-0,0,0,0,0,1,20.7,1,0,0
-1,0,0,0,0,1,20.7,1,0,0
-9,0,0,0,0,0,11.84267,1,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,1,6.9,1,0,0
-2,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,1,6.9,1,0,0
-0,0,0,4.94876,0,1,6.9,1,0,0
-1,0,0,4.94876,0,1,6.9,1,0,0
-2,0,0,4.94876,0,1,6.9,1,0,0
-0,0,0,4.94876,0,1,6.9,1,0,0
-1,0,0,4.94876,0,1,6.9,1,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-9,0,0,0,0,1,6.9,1,0,0
-11,0,0,0,0,1,6.9,1,0,0
-6,0,0,0,0,1,6.9,1,0,0
-10,0,0,0,0,1,6.9,1,0,0
-5,0,0,0,0,1,6.9,1,0,0
-8,0,1,6.771248,6.160541,0,6.9,0,0,0
-5,0,1,6.771248,6.160541,0,6.9,0,0,0
-3,0,1,6.771248,6.160541,0,6.9,0,0,0
-8,0,1,6.771248,6.160541,1,10.3,1,0,0
-5,0,1,6.771248,6.160541,1,10.3,1,0,0
-8,0,1,6.771248,6.160541,1,10.3,1,0,0
-2,0,1,6.771248,6.160541,0,11.84267,0,0,0
-1,0,1,6.771248,6.160541,0,11.84267,0,0,0
-0,0,1,6.771248,6.160541,0,11.84267,0,0,0
-0,4.564348,0,0,6.959049,0,0,0,0,0
-1,4.564348,0,0,6.959049,0,0,0,0,0
-0,4.564348,0,0,6.959049,0,0,0,0,0
-0,4.564348,0,0,6.959049,0,0,0,0,0
-1,4.564348,0,0,6.959049,0,0,0,0,0
-2,4.564348,0,0,6.959049,0,10.3,0,0,0
-1,4.564348,0,0,6.959049,0,10.3,0,0,0
-0,4.564348,0,0,6.959049,0,10.3,0,0,0
-0,4.564348,0,0,6.959049,0,10.3,0,0,0
-0,4.564348,0,0,6.959049,0,10.3,0,0,0
-1,4.564348,0,0,6.959049,0,6.9,0,0,0
-1,4.564348,0,0,6.959049,0,6.9,0,0,0
-0,4.564348,0,0,6.959049,0,6.9,0,0,0
-2,4.564348,0,0,6.959049,0,6.9,0,0,0
-1,4.564348,0,0,6.959049,0,6.9,0,0,0
-8,4.564348,0,0,6.959049,0,11.84267,0,0,0
-2,4.564348,0,0,6.959049,0,11.84267,0,0,0
-4,4.564348,0,0,6.959049,0,11.84267,0,0,0
-6,4.564348,0,0,6.959049,0,11.84267,0,0,0
-3,4.564348,0,0,6.959049,0,11.84267,0,0,0
-0,4.564348,0,0,6.959049,0,0,0,0,0
-1,4.564348,0,0,6.959049,0,0,0,0,0
-1,4.564348,0,0,6.959049,0,0,0,0,0
-0,4.564348,0,0,6.959049,0,0,0,0,0
-1,4.564348,0,0,6.959049,0,0,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-5,3.258096,0,6.907755,8.294049,0,13.8,0,0,0
-10,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-1,0,1,5.703783,5.755076,1,10.3,1,0,0
-2,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-1,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-3,3.258096,0,6.907755,8.294049,0,20.7,1,0,0
-5,3.258096,0,6.515601,7.038784,0,17.2,0,0,0
-1,3.258096,0,6.515601,7.038784,0,17.2,0,0,0
-2,3.258096,0,6.515601,7.038784,0,17.2,0,0,0
-2,3.258096,0,6.515601,7.038784,0,17.2,0,0,0
-6,3.258096,0,6.515601,7.038784,0,17.2,0,0,0
-0,3.258096,0,6.515601,7.038784,0,3.4,0,0,0
-1,3.258096,0,6.515601,7.038784,0,3.4,0,0,0
-0,3.258096,0,6.515601,7.038784,0,3.4,0,0,0
-0,3.258096,0,6.515601,7.038784,0,3.4,0,0,0
-0,3.258096,0,6.515601,7.038784,0,3.4,0,0,0
-11,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-18,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-1,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-8,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-0,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-0,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-0,3.258096,0,6.515601,7.038784,0,10.3,0,0,0
-1,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-1,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-3,3.258096,0,6.814652,8.200947,0,17.2,1,0,0
-0,3.258096,0,6.814652,8.200947,0,17.2,1,0,0
-0,3.258096,0,6.814652,8.200947,0,17.2,1,0,0
-0,3.258096,0,6.814652,8.200947,0,10.3,1,0,0
-0,3.258096,0,6.814652,8.200947,0,10.3,1,0,0
-0,3.258096,0,6.814652,8.200947,0,10.3,1,0,0
-2,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-0,3.258096,0,6.814652,8.200947,0,11.84267,1,0,0
-1,3.258096,0,6.582247,7.654443,0,13.8,1,0,0
-0,3.258096,0,6.582247,7.654443,0,13.8,1,0,0
-2,3.258096,0,6.582247,7.654443,0,13.8,1,0,0
-8,3.258096,0,6.582247,7.654443,0,0,0,0,0
-4,3.258096,0,6.582247,7.654443,0,0,0,0,0
-4,3.258096,0,6.582247,7.654443,0,0,0,0,0
-8,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-7,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-10,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-11,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-10,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-7,3.258096,0,6.582247,7.654443,0,11.84267,0,0,0
-1,4.564348,0,6.276794,6.767828,0,3.4,1,0,0
-1,4.564348,0,6.276794,6.767828,0,3.4,1,0,0
-0,4.564348,0,6.276794,6.767828,0,3.4,1,0,0
-1,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,20.7,1,0,0
-0,4.564348,0,6.276794,6.767828,0,20.7,1,0,0
-0,4.564348,0,6.276794,6.767828,0,20.7,1,0,0
-1,4.564348,0,6.276794,6.767828,0,3.4,1,0,0
-0,4.564348,0,6.276794,6.767828,0,3.4,1,0,0
-0,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,11.84267,1,0,0
-0,4.564348,0,6.276794,6.767828,0,10.3,1,0,0
-0,4.564348,0,6.276794,6.767828,0,10.3,1,0,0
-0,4.564348,0,6.276794,6.767828,0,10.3,1,0,0
-2,0,0,0,0,1,20.7,1,0,0
-0,0,0,0,0,1,20.7,1,0,0
-0,0,0,0,0,1,20.7,1,0,0
-2,0,0,0,0,1,20.7,1,0,0
-5,0,0,0,0,1,20.7,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-3,0,0,5.51986,0,0,13.8,0,0,0
-0,0,0,5.51986,0,0,13.8,0,0,0
-1,0,0,5.51986,0,0,13.8,0,0,0
-1,0,0,5.51986,0,0,11.84267,0,0,0
-0,0,0,5.51986,0,0,11.84267,0,0,0
-0,0,0,5.51986,0,0,11.84267,0,0,0
-8,0,0,5.51986,0,0,11.84267,1,0,0
-4,0,0,5.51986,0,0,11.84267,1,0,0
-0,0,0,5.51986,0,0,11.84267,1,0,0
-4,0,0,5.51986,0,0,10.3,1,0,0
-15,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-17,0,0,0,0,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,0,1,0
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-5,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.460734,6.160541,0,24.1,1,0,0
-3,0,1,5.460734,6.160541,0,24.1,1,0,0
-0,0,1,5.460734,6.160541,0,24.1,1,0,0
-5,0,1,5.460734,6.160541,0,11.84267,1,0,0
-2,0,1,5.460734,6.160541,0,11.84267,1,0,0
-2,0,1,5.460734,6.160541,0,11.84267,1,0,0
-8,0,1,5.460734,6.160541,0,11.84267,1,0,0
-2,0,1,5.460734,6.160541,0,11.84267,1,0,0
-4,0,1,5.460734,6.160541,0,11.84267,1,0,0
-5,0,1,5.460734,6.160541,0,20.7,1,0,0
-0,0,1,5.460734,6.160541,0,20.7,1,0,0
-4,0,1,5.460734,6.160541,0,20.7,1,0,0
-11,0,1,5.460734,6.160541,0,11.84267,1,0,0
-5,0,1,5.460734,6.160541,0,11.84267,1,0,0
-11,0,1,5.460734,6.160541,0,11.84267,1,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,0,0,6.288007,0,0,3.4,0,0,0
-1,0,0,6.288007,0,0,3.4,0,0,0
-0,0,0,6.288007,0,0,3.4,0,0,0
-8,0,0,6.288007,0,0,11.84267,0,0,0
-7,0,0,6.288007,0,0,11.84267,0,0,0
-1,0,0,6.288007,0,0,11.84267,0,0,0
-4,0,0,6.288007,0,0,11.84267,0,0,0
-0,0,0,6.288007,0,0,11.84267,0,0,0
-0,0,0,6.288007,0,0,11.84267,0,0,0
-1,0,0,6.288007,0,0,13.8,1,0,0
-1,0,0,6.288007,0,0,13.8,1,0,0
-2,0,0,6.288007,0,0,13.8,1,0,0
-2,3.258096,0,6.253829,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.253829,8.294049,0,10.3,1,0,0
-3,3.258096,0,6.253829,8.294049,0,10.3,1,0,0
-1,3.258096,0,6.253829,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.253829,8.294049,0,10.3,1,0,0
-0,3.258096,0,6.253829,8.294049,0,0,1,0,0
-5,3.258096,0,6.253829,8.294049,0,0,1,0,0
-0,3.258096,0,6.253829,8.294049,0,0,1,0,0
-1,3.258096,0,6.253829,8.294049,0,0,1,0,0
-0,3.258096,0,6.253829,8.294049,0,0,1,0,0
-6,0,0,5.762052,0,1,24.1,0,1,0
-2,0,0,5.762052,0,1,24.1,0,1,0
-3,0,0,5.762052,0,1,24.1,0,1,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-0,0,0,5.762052,0,0,11.84267,0,0,0
-3,0,0,5.375278,0,.1981873,11.84267,1,0,0
-4,0,0,5.375278,0,.1981873,11.84267,1,0,0
-0,0,0,5.375278,0,.1981873,11.84267,1,0,0
-6,0,0,5.375278,0,.1981873,11.84267,0,1,0
-6,0,0,5.375278,0,.1981873,11.84267,0,1,0
-1,0,0,5.375278,0,.1981873,11.84267,0,1,0
-2,0,0,5.785915,0,0,3.4,1,0,0
-2,0,0,5.785915,0,0,3.4,1,0,0
-2,0,0,5.785915,0,0,3.4,1,0,0
-7,0,0,5.785915,0,0,3.4,1,0,0
-5,0,0,5.785915,0,0,3.4,1,0,0
-1,0,0,5.785915,0,0,3.4,1,0,0
-2,0,0,5.785915,0,0,3.4,1,0,0
-0,0,0,5.785915,0,0,3.4,1,0,0
-0,0,0,5.785915,0,0,3.4,1,0,0
-0,0,0,5.785915,0,0,3.4,1,0,0
-1,0,0,5.897868,0,0,6.9,1,0,0
-5,0,0,5.897868,0,0,6.9,1,0,0
-8,0,0,5.897868,0,0,6.9,1,0,0
-4,0,0,5.897868,0,0,11.84267,1,0,0
-1,0,0,5.897868,0,0,11.84267,1,0,0
-2,0,0,5.897868,0,0,11.84267,1,0,0
-11,0,0,5.897868,0,0,11.84267,1,0,0
-3,0,0,5.897868,0,0,11.84267,1,0,0
-3,0,0,5.897868,0,0,11.84267,1,0,0
-6,0,0,5.897868,0,0,3.4,1,0,0
-2,0,0,5.897868,0,0,3.4,1,0,0
-0,0,0,5.897868,0,0,3.4,1,0,0
-8,0,0,6.243273,0,0,6.9,1,0,0
-4,0,0,6.243273,0,0,6.9,1,0,0
-2,0,0,6.243273,0,0,6.9,1,0,0
-10,0,0,6.243273,0,0,10.3,1,0,0
-10,0,0,6.243273,0,0,10.3,1,0,0
-4,0,0,6.243273,0,0,10.3,1,0,0
-6,0,0,6.408858,0,1,20.7,1,0,0
-3,0,0,6.408858,0,1,20.7,1,0,0
-5,0,0,6.408858,0,1,20.7,1,0,0
-3,0,0,6.408858,0,1,20.7,1,0,0
-3,0,0,6.408858,0,1,20.7,1,0,0
-1,0,0,6.408858,0,1,17.2,0,1,0
-2,0,0,6.408858,0,1,17.2,0,1,0
-1,0,0,6.408858,0,1,17.2,0,1,0
-8,0,0,6.408858,0,1,17.2,0,1,0
-4,0,0,6.408858,0,1,17.2,0,1,0
-2,0,0,6.408858,0,0,11.84267,0,0,0
-0,0,0,6.408858,0,0,11.84267,0,0,0
-3,0,0,6.408858,0,0,11.84267,0,0,0
-2,0,0,6.408858,0,0,11.84267,0,0,0
-6,0,0,6.408858,0,0,11.84267,0,0,0
-1,0,0,6.408858,0,0,11.84267,0,0,0
-0,0,0,6.408858,0,0,11.84267,0,0,0
-1,0,0,6.408858,0,0,11.84267,0,0,0
-0,0,0,6.408858,0,0,11.84267,0,0,0
-1,0,0,6.408858,0,0,11.84267,0,0,0
-9,0,1,6.109248,6.160541,1,11.84267,1,0,0
-11,0,1,6.109248,6.160541,1,11.84267,1,0,0
-14,0,1,6.109248,6.160541,1,11.84267,1,0,0
-14,0,1,6.109248,6.160541,0,11.84267,1,0,0
-8,0,1,6.109248,6.160541,0,11.84267,1,0,0
-17,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-5,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,3.258096,0,6.573541,7.959835,0,3.4,1,0,0
-3,3.258096,0,6.573541,7.959835,0,3.4,1,0,0
-1,3.258096,0,6.573541,7.959835,0,3.4,1,0,0
-2,0,0,5.817825,0,0,0,1,0,0
-4,0,0,5.817825,0,0,0,1,0,0
-6,0,0,5.817825,0,0,0,1,0,0
-10,0,0,5.817825,0,0,27.6,1,0,0
-8,0,0,5.817825,0,0,27.6,1,0,0
-5,0,0,5.817825,0,0,27.6,1,0,0
-9,0,0,5.817825,0,0,6.9,0,0,0
-2,0,0,5.817825,0,0,6.9,0,0,0
-0,0,0,5.817825,0,0,6.9,0,0,0
-9,0,0,5.817825,0,0,3.4,0,0,0
-11,0,0,5.817825,0,0,3.4,0,0,0
-4,0,0,5.817825,0,0,10.3,1,0,0
-2,0,0,5.817825,0,0,10.3,1,0,0
-1,0,0,5.817825,0,0,10.3,1,0,0
-3,0,0,0,0,0,11.84267,0,0,0
-5,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-9,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-12,0,0,0,0,0,11.84267,0,0,0
-12,0,0,0,0,0,11.84267,0,0,0
-6,0,0,0,0,0,11.84267,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-1,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-5,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-3,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-4,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-4,0,1,5.703783,5.755076,0,3.4,0,0,0
-44,0,1,5.703783,5.755076,0,3.4,0,0,0
-57,0,1,5.703783,5.755076,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,0,0,0
-11,0,1,6.109248,6.160541,0,11.84267,0,0,0
-3,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-11,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-5,0,1,6.109248,6.160541,0,17.2,1,0,0
-6,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,17.2,1,0,0
-3,0,1,6.109248,6.160541,0,17.2,1,0,0
-3,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,5.274383,6.160541,0,11.84267,0,0,0
-0,0,1,5.274383,6.160541,0,11.84267,0,0,0
-0,0,1,5.274383,6.160541,0,11.84267,0,0,0
-3,0,1,5.274383,6.160541,0,10.3,0,0,0
-0,0,1,5.274383,6.160541,0,10.3,0,0,0
-0,0,1,5.274383,6.160541,0,10.3,0,0,0
-1,0,1,5.274383,6.160541,0,0,0,0,0
-2,0,1,5.274383,6.160541,0,0,0,0,0
-1,0,1,5.274383,6.160541,0,0,0,0,0
-1,0,1,5.274383,6.160541,0,11.84267,0,0,0
-1,0,1,5.274383,6.160541,0,11.84267,0,0,0
-0,0,1,5.274383,6.160541,0,11.84267,0,0,0
-1,4.564348,0,6.743352,6.794645,0,10.3,1,0,0
-0,4.564348,0,6.743352,6.794645,0,10.3,1,0,0
-0,4.564348,0,6.743352,6.794645,0,10.3,1,0,0
-0,4.564348,0,6.743352,6.794645,0,10.3,1,0,0
-0,4.564348,0,6.743352,6.794645,0,10.3,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,1,27.6,1,0,0
-4,0,0,0,0,1,27.6,1,0,0
-4,0,0,0,0,1,27.6,1,0,0
-3,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-33,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-3,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-6,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-5,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-3,3.258096,0,5.717028,7.103322,0,3.4,0,0,0
-1,3.258096,0,5.717028,7.103322,0,3.4,0,0,0
-1,3.258096,0,5.717028,7.103322,0,3.4,0,0,0
-1,3.258096,0,5.717028,7.103322,0,3.4,0,0,0
-1,3.258096,0,5.717028,7.103322,0,3.4,0,0,0
-1,3.258096,0,5.717028,7.103322,0,0,0,0,0
-1,3.258096,0,5.717028,7.103322,0,0,0,0,0
-0,3.258096,0,5.717028,7.103322,0,0,0,0,0
-0,3.258096,0,5.717028,7.103322,0,0,0,0,0
-1,3.258096,0,5.717028,7.103322,0,0,0,0,0
-2,0,0,0,0,1,3.4,0,0,0
-1,0,0,0,0,1,3.4,0,0,0
-4,0,0,0,0,1,3.4,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-7,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-5,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-5,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-8,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-6,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-7,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,0,1,6.243273,5.755076,0,6.9,0,0,0
-0,0,1,6.243273,5.755076,0,6.9,0,0,0
-0,0,1,6.243273,5.755076,0,6.9,0,0,0
-1,0,1,6.243273,5.755076,0,10.3,0,0,0
-19,0,1,6.243273,5.755076,0,10.3,0,0,0
-1,0,1,6.243273,5.755076,0,10.3,0,0,0
-14,3.258096,0,5.291293,5.703783,0,27.6,1,0,0
-11,3.258096,0,5.291293,5.703783,0,27.6,1,0,0
-10,3.258096,0,5.291293,5.703783,0,27.6,1,0,0
-3,3.258096,0,5.521461,6.907755,0,3.4,0,0,0
-6,3.258096,0,5.521461,6.907755,0,3.4,0,0,0
-6,3.258096,0,5.521461,6.907755,0,3.4,0,0,0
-7,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-0,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-6,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-6,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-2,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-2,4.564348,0,6.040255,6.091548,0,11.84267,0,0,0
-2,4.564348,0,6.040255,6.091548,0,6.9,0,0,0
-2,4.564348,0,6.040255,6.091548,0,6.9,0,0,0
-3,4.564348,0,6.040255,6.091548,0,6.9,0,0,0
-5,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-5,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-4,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-3,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-3,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,24.1,1,0,0
-2,0,1,5.703783,5.755076,0,24.1,1,0,0
-1,0,1,5.703783,5.755076,0,24.1,1,0,0
-1,0,1,5.703783,5.755076,0,24.1,1,0,0
-5,0,1,5.703783,5.755076,0,24.1,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,0,1,0,5.061929,1,13.8,1,0,0
-0,0,1,0,5.061929,1,13.8,1,0,0
-0,0,1,0,5.061929,1,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-1,4.564348,0,6.907755,6.959049,0,20.7,0,1,0
-0,4.564348,0,5.857933,5.909226,0,17.2,0,0,0
-0,4.564348,0,5.857933,5.909226,0,17.2,0,0,0
-0,4.564348,0,5.857933,5.909226,0,17.2,0,0,0
-14,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-4,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,1,0,0
-21,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-13,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-20,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-7,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-3,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-15,4.564348,0,6.907755,6.959049,0,11.84267,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-3,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-0,4.564348,0,6.506501,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.506501,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.506501,6.959049,0,10.3,0,0,0
-9,4.564348,0,6.506501,6.959049,1,11.84267,0,0,0
-2,4.564348,0,6.506501,6.959049,1,11.84267,0,0,0
-4,4.564348,0,6.506501,6.959049,1,11.84267,0,0,0
-1,4.564348,0,6.506501,6.959049,0,17.2,0,0,0
-3,4.564348,0,6.506501,6.959049,0,17.2,0,0,0
-1,4.564348,0,6.506501,6.959049,0,17.2,0,0,0
-7,4.564348,0,6.506501,6.959049,0,27.6,0,0,0
-55,4.564348,0,6.506501,6.959049,0,27.6,0,0,0
-3,4.564348,0,6.506501,6.959049,0,27.6,0,0,0
-1,0,1,0,5.061929,0,0,1,0,0
-14,0,1,0,5.061929,1,24.1,1,0,0
-2,0,1,0,5.061929,1,24.1,1,0,0
-0,0,1,0,5.061929,1,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-2,0,1,6.109248,6.160541,0,11.84267,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,0,0,0
-9,0,1,6.109248,6.160541,0,10.3,0,0,0
-5,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-3,0,0,6.282566,0,0,11.84267,0,0,0
-2,0,0,6.282566,0,0,11.84267,0,0,0
-0,0,0,6.282566,0,0,11.84267,0,0,0
-1,0,0,6.282566,0,0,6.9,0,0,0
-0,0,0,6.282566,0,0,6.9,0,0,0
-3,0,0,6.282566,0,0,6.9,0,0,0
-1,0,0,6.282566,0,0,6.9,1,0,0
-0,0,0,6.282566,0,0,6.9,1,0,0
-1,0,0,6.282566,0,0,6.9,1,0,0
-7,0,0,6.282566,0,0,3.4,1,0,0
-7,0,0,6.282566,0,0,3.4,1,0,0
-3,0,0,6.282566,0,0,3.4,1,0,0
-14,0,1,5.010635,5.061929,0,13.8,0,0,0
-7,0,1,5.010635,5.061929,0,13.8,0,0,0
-3,0,1,5.010635,5.061929,0,13.8,0,0,0
-3,4.564348,0,5.164786,5.216079,0,6.9,0,0,0
-5,4.564348,0,5.164786,5.216079,0,6.9,0,0,0
-0,4.564348,0,5.164786,5.216079,0,6.9,0,0,0
-1,4.564348,0,5.164786,5.216079,0,6.9,0,0,0
-1,4.564348,0,5.164786,5.216079,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-3,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-5,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,0,0,0,0
-5,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-8,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-9,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-6,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-7,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,1,13.8,0,1,0
-1,3.258096,0,6.907755,8.294049,1,13.8,0,1,0
-0,3.258096,0,6.907755,8.294049,1,13.8,0,1,0
-2,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-4,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-0,3.258096,0,6.907755,8.294049,0,10.3,0,0,0
-2,3.258096,0,0,7.832014,0,13.8,1,0,0
-1,3.258096,0,0,7.832014,0,13.8,1,0,0
-0,3.258096,0,0,7.832014,0,13.8,1,0,0
-1,0,1,0,5.061929,0,17.2,1,0,0
-0,0,1,0,5.061929,0,17.2,1,0,0
-0,0,1,0,5.061929,0,17.2,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,0,5.061929,0,6.9,1,0,0
-2,0,1,0,5.061929,1,13.8,0,1,0
-0,0,1,0,5.061929,1,13.8,0,1,0
-2,0,1,0,5.061929,1,13.8,0,1,0
-3,0,0,4.587006,0,0,10.3,0,0,0
-3,0,0,4.587006,0,0,10.3,0,0,0
-6,0,0,4.587006,0,0,10.3,0,0,0
-1,0,0,4.587006,0,0,6.9,1,0,0
-0,0,0,4.587006,0,0,6.9,1,0,0
-5,0,0,4.587006,0,0,6.9,1,0,0
-0,4.564348,0,0,4.145638,1,17.2,0,0,0
-0,4.564348,0,0,4.145638,1,17.2,0,0,0
-5,0,0,5.962654,0,0,13.8,0,0,0
-6,0,0,5.962654,0,0,13.8,0,0,0
-2,0,0,5.962654,0,0,13.8,0,0,0
-5,0,0,5.962654,0,0,11.84267,0,0,0
-1,0,0,5.962654,0,0,11.84267,0,0,0
-4,0,0,5.962654,0,0,11.84267,0,0,0
-1,0,0,5.962654,0,0,3.4,0,0,0
-3,0,0,5.962654,0,0,3.4,0,0,0
-4,0,0,5.962654,0,0,3.4,0,0,0
-4,0,0,0,0,0,24.1,0,0,0
-6,0,0,0,0,0,24.1,0,0,0
-2,0,0,0,0,0,24.1,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,3.258096,0,4.969813,7.041412,0,6.9,1,0,0
-6,3.258096,0,4.969813,7.041412,0,6.9,1,0,0
-9,3.258096,0,4.969813,7.041412,0,6.9,1,0,0
-0,3.258096,0,0,6.579251,0,13.8,0,1,0
-1,3.258096,0,0,6.579251,0,13.8,0,1,0
-0,3.258096,0,0,6.579251,0,13.8,0,1,0
-5,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,0,0,0,0
-9,0,0,4.509099,0,0,13.8,1,0,0
-12,0,0,4.509099,0,0,13.8,1,0,0
-10,0,0,4.509099,0,0,13.8,1,0,0
-4,0,0,4.509099,0,0,10.3,1,0,0
-11,0,0,4.509099,0,0,10.3,1,0,0
-9,0,0,4.509099,0,0,10.3,1,0,0
-0,3.258096,0,4.49981,5.886104,0,6.9,0,0,0
-1,3.258096,0,4.49981,5.886104,0,6.9,0,0,0
-0,3.258096,0,4.49981,5.886104,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,24.1,0,0,0
-3,0,1,6.109248,6.160541,0,24.1,0,0,0
-0,0,1,6.109248,6.160541,0,24.1,0,0,0
-2,0,1,6.109248,6.160541,0,24.1,0,0,0
-2,0,1,6.109248,6.160541,0,24.1,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,4.564348,0,0,6.165086,0,13.8,1,0,0
-9,4.564348,0,0,6.165086,0,13.8,1,0,0
-11,4.564348,0,0,6.165086,0,13.8,1,0,0
-3,4.564348,0,6.639876,6.691169,0,0,0,0,0
-1,4.564348,0,6.639876,6.691169,0,0,0,0,0
-5,4.564348,0,6.639876,6.691169,0,0,0,0,0
-2,4.564348,0,6.639876,6.691169,0,0,0,0,0
-1,4.564348,0,6.639876,6.691169,0,0,0,0,0
-13,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-7,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-7,0,1,6.109248,6.160541,0,17.2,1,0,0
-7,0,1,6.109248,6.160541,0,17.2,1,0,0
-3,0,1,6.109248,6.160541,0,17.2,1,0,0
-11,3.258096,0,4.989071,6.375365,0,3.4,0,0,0
-0,3.258096,0,4.989071,6.375365,0,3.4,0,0,0
-8,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-13,0,0,0,0,0,6.9,0,0,0
-7,0,0,0,0,1,10.3,1,0,0
-4,0,0,0,0,1,10.3,1,0,0
-1,0,0,0,0,1,10.3,1,0,0
-2,0,0,0,0,0,6.9,0,1,0
-1,0,0,0,0,0,6.9,0,1,0
-1,0,0,0,0,0,6.9,0,1,0
-0,0,0,0,0,1,6.9,0,0,0
-0,0,0,0,0,1,6.9,0,0,0
-3,0,0,0,0,1,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-3,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-6,3.258096,0,6.907755,8.294049,0,10.3,1,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-0,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-1,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,1,37.9,0,0,0
-4,4.564348,0,6.907755,6.959049,1,37.9,0,0,0
-1,4.564348,0,6.907755,6.959049,1,37.9,0,0,0
-2,4.564348,0,6.907755,6.959049,1,37.9,0,0,0
-0,4.564348,0,6.907755,6.959049,1,37.9,0,0,0
-2,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-9,0,1,6.289567,5.755076,1,10.3,0,0,0
-8,0,1,6.289567,5.755076,1,10.3,0,0,0
-10,0,1,6.289567,5.755076,1,10.3,0,0,0
-0,0,1,6.289567,5.755076,0,10.3,0,0,0
-1,0,1,6.289567,5.755076,0,10.3,0,0,0
-0,0,1,6.289567,5.755076,0,10.3,0,0,0
-2,0,0,5.949705,0,0,24.1,0,0,0
-5,0,0,5.949705,0,0,24.1,0,0,0
-3,0,0,5.949705,0,0,24.1,0,0,0
-2,0,0,5.949705,0,0,11.84267,0,0,0
-1,0,0,5.949705,0,0,11.84267,0,0,0
-4,0,0,5.949705,0,0,11.84267,0,0,0
-3,0,0,5.949705,0,0,11.84267,0,0,0
-2,0,0,5.949705,0,0,11.84267,0,0,0
-1,0,0,5.949705,0,0,11.84267,0,0,0
-2,0,0,5.949705,0,0,11.84267,0,0,0
-1,0,0,5.949705,0,0,11.84267,0,0,0
-1,0,0,5.949705,0,0,11.84267,0,0,0
-6,0,0,5.949705,0,0,10.3,0,0,0
-7,0,0,5.949705,0,0,10.3,0,0,0
-6,0,0,5.949705,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,1,0,0
-16,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,3.258096,0,6.39693,7.783224,0,13.8,0,0,0
-3,3.258096,0,6.39693,7.783224,0,13.8,0,0,0
-0,3.258096,0,6.39693,7.783224,0,11.84267,0,0,0
-0,3.258096,0,6.39693,7.783224,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-3,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-3,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-4,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-4,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-2,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-12,0,1,5.703783,5.755076,1,3.4,0,0,0
-3,0,1,5.703783,5.755076,1,3.4,0,0,0
-1,0,1,5.703783,5.755076,1,3.4,0,0,0
-1,0,1,5.703783,5.755076,1,3.4,0,0,0
-4,0,1,5.703783,5.755076,1,3.4,0,0,0
-4,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,0,13.8,0,0,0
-2,0,1,5.703783,5.755076,0,13.8,0,0,0
-3,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-6,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-2,0,0,0,0,1,11.84267,0,0,0
-5,0,0,5.455321,0,0,24.1,0,1,0
-8,0,0,5.455321,0,0,24.1,0,1,0
-9,0,0,5.455321,0,0,24.1,0,1,0
-11,0,0,5.455321,0,1,20.7,0,0,0
-9,0,0,5.455321,0,1,20.7,0,0,0
-4,0,0,5.455321,0,1,20.7,0,0,0
-6,0,0,5.455321,0,0,11.84267,0,0,0
-2,0,0,5.455321,0,0,11.84267,0,0,0
-1,0,0,5.455321,0,0,11.84267,0,0,0
-4,0,0,6.378766,0,0,0,0,0,0
-2,0,0,6.378766,0,0,0,0,0,0
-4,0,0,6.378766,0,0,0,0,0,0
-6,0,0,6.378766,0,1,10.3,0,0,0
-2,0,0,6.378766,0,1,10.3,0,0,0
-3,0,0,6.378766,0,1,10.3,0,0,0
-1,0,1,6.249125,6.160541,0,24.1,1,0,0
-6,0,1,6.249125,6.160541,0,24.1,1,0,0
-24,0,1,6.249125,6.160541,0,24.1,1,0,0
-2,0,1,6.249125,6.160541,0,11.84267,0,0,0
-1,0,1,6.249125,6.160541,0,11.84267,0,0,0
-5,0,1,6.249125,6.160541,0,11.84267,0,0,0
-0,0,1,6.249125,6.160541,0,6.9,0,0,0
-0,0,1,6.249125,6.160541,0,6.9,0,0,0
-3,0,1,6.249125,6.160541,0,6.9,0,0,0
-0,0,1,6.249125,6.160541,0,11.84267,0,0,0
-2,0,1,6.249125,6.160541,0,11.84267,0,0,0
-1,0,1,6.249125,6.160541,0,11.84267,0,0,0
-4,0,0,0,0,0,13.8,0,0,0
-4,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-1,3.258096,0,6.43575,7.693937,1,24.1,1,0,0
-0,3.258096,0,6.43575,7.693937,1,24.1,1,0,0
-0,3.258096,0,6.43575,7.693937,1,24.1,1,0,0
-2,3.258096,0,6.43575,7.693937,1,13.8,1,0,0
-1,3.258096,0,6.43575,7.693937,1,13.8,1,0,0
-0,3.258096,0,6.43575,7.693937,1,13.8,1,0,0
-1,3.258096,0,6.43575,7.693937,0,11.84267,0,0,0
-2,3.258096,0,6.43575,7.693937,0,11.84267,0,0,0
-1,3.258096,0,6.43575,7.693937,0,11.84267,0,0,0
-3,4.564348,0,5.956356,6.007648,0,13.8,0,0,0
-0,4.564348,0,5.956356,6.007648,0,13.8,0,0,0
-0,0,1,3.648839,5.061929,0,0,1,0,0
-0,0,1,3.648839,5.061929,0,0,1,0,0
-0,0,1,3.648839,5.061929,0,0,1,0,0
-0,0,1,3.648839,5.061929,0,0,1,0,0
-0,0,1,3.648839,5.061929,0,0,1,0,0
-0,0,0,5.244916,0,0,24.1,1,0,0
-2,0,0,5.244916,0,0,24.1,1,0,0
-0,0,0,5.244916,0,0,24.1,1,0,0
-0,0,0,5.244916,0,0,24.1,1,0,0
-1,0,0,5.244916,0,0,24.1,1,0,0
-6,0,0,4.896346,0,0,17.2,1,0,0
-2,0,0,4.896346,0,0,17.2,1,0,0
-1,0,0,4.896346,0,0,17.2,1,0,0
-1,0,0,4.896346,0,0,17.2,1,0,0
-3,0,0,4.896346,0,0,17.2,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-8,0,0,0,0,1,13.8,1,0,0
-9,0,0,0,0,1,13.8,1,0,0
-9,0,0,0,0,1,13.8,1,0,0
-11,0,0,0,0,1,13.8,1,0,0
-6,0,0,0,0,1,13.8,1,0,0
-1,3.258096,0,5.783825,7.17012,1,17.2,1,0,0
-2,3.258096,0,0,6.329008,0,20.7,1,0,0
-2,3.258096,0,0,6.329008,0,20.7,1,0,0
-5,3.258096,0,0,6.329008,0,20.7,1,0,0
-4,3.258096,0,0,6.329008,0,20.7,1,0,0
-1,3.258096,0,0,6.329008,0,20.7,1,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,13.8,0,0,0
-8,0,1,6.109248,6.160541,0,13.8,0,0,0
-3,0,1,6.109248,6.160541,0,13.8,0,0,0
-10,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,0,5.061929,0,3.4,0,0,0
-0,0,1,0,5.061929,0,3.4,0,0,0
-0,0,1,0,5.061929,0,3.4,0,0,0
-0,0,1,0,5.061929,0,3.4,0,0,0
-14,4.564348,0,0,5.435788,0,3.4,0,0,0
-9,4.564348,0,0,5.435788,0,3.4,0,0,0
-23,4.564348,0,0,5.435788,0,3.4,0,0,0
-7,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-6,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-5,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-9,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-5,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-6,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-7,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-13,0,1,6.109248,6.160541,0,3.4,0,0,0
-10,0,1,6.109248,6.160541,0,3.4,0,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-14,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,3.258096,0,6.114788,7.501082,0,17.2,0,0,0
-12,3.258096,0,6.114788,7.501082,0,17.2,0,0,0
-21,3.258096,0,6.114788,7.501082,0,17.2,0,0,0
-0,0,0,4.189655,0,0,11.84267,0,0,0
-1,0,0,4.189655,0,0,11.84267,0,0,0
-1,0,0,4.189655,0,0,11.84267,0,0,0
-1,0,0,4.189655,0,0,11.84267,1,0,0
-2,0,0,4.189655,0,0,11.84267,1,0,0
-6,0,0,4.189655,0,0,11.84267,1,0,0
-5,0,0,4.189655,0,0,13.8,0,0,0
-2,0,0,4.189655,0,0,13.8,0,0,0
-4,0,0,4.189655,0,0,13.8,0,0,0
-0,0,1,0,6.160541,0,11.84267,1,0,0
-0,0,1,0,6.160541,0,11.84267,1,0,0
-1,0,1,0,6.160541,0,11.84267,1,0,0
-2,0,1,0,6.160541,0,11.84267,1,0,0
-1,0,1,0,6.160541,0,11.84267,1,0,0
-3,0,1,0,6.160541,1,6.9,1,0,0
-5,0,1,0,6.160541,1,6.9,1,0,0
-4,0,1,0,6.160541,1,6.9,1,0,0
-0,0,1,0,6.160541,1,6.9,1,0,0
-1,0,1,0,6.160541,1,6.9,1,0,0
-0,0,1,0,6.160541,0,11.84267,1,0,0
-15,0,0,0,0,1,20.7,1,0,0
-9,0,0,0,0,1,20.7,1,0,0
-1,0,0,0,0,1,20.7,1,0,0
-0,0,0,0,0,1,11.84267,0,0,0
-0,0,0,0,0,1,11.84267,0,0,0
-1,0,0,0,0,1,11.84267,0,0,0
-0,0,0,0,0,0,10.3,0,1,0
-6,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-3,0,0,0,0,0,0,1,0,0
-21,0,1,6.86943,5.755076,1,20.7,0,1,0
-41,0,1,6.86943,5.755076,1,20.7,0,1,0
-25,0,1,6.86943,5.755076,1,20.7,0,1,0
-1,0,1,6.86943,5.755076,1,17.2,0,0,0
-1,0,1,6.86943,5.755076,1,17.2,0,0,0
-1,0,1,6.86943,5.755076,1,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-0,0,1,6.109248,6.160541,0,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,11.84267,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,3.258096,0,4.382027,8.294049,0,6.9,0,0,0
-1,3.258096,0,4.382027,8.294049,0,6.9,0,0,0
-1,3.258096,0,4.382027,8.294049,0,6.9,0,0,0
-0,3.258096,0,4.382027,8.294049,0,6.9,0,0,0
-0,3.258096,0,4.382027,8.294049,0,6.9,0,0,0
-0,3.258096,0,4.382027,8.294049,0,3.4,0,0,0
-2,3.258096,0,4.382027,8.294049,0,3.4,0,0,0
-7,3.258096,0,4.382027,8.294049,0,3.4,0,0,0
-3,3.258096,0,4.382027,8.294049,0,3.4,0,0,0
-0,3.258096,0,4.382027,8.294049,0,3.4,0,0,0
-0,3.258096,0,4.382027,8.294049,0,17.2,0,0,0
-5,3.258096,0,4.382027,8.294049,0,17.2,0,0,0
-8,3.258096,0,4.382027,8.294049,0,17.2,0,0,0
-2,3.258096,0,4.382027,8.294049,0,17.2,0,0,0
-1,3.258096,0,4.382027,8.294049,0,17.2,0,0,0
-9,0,0,0,0,0,10.3,0,0,0
-13,0,0,0,0,0,10.3,0,0,0
-14,0,0,0,0,0,10.3,0,0,0
-0,0,1,5.010635,5.061929,0,0,1,0,0
-0,0,1,0,5.061929,0,10.3,1,0,0
-1,0,1,0,5.061929,0,10.3,1,0,0
-10,0,1,0,5.061929,0,10.3,1,0,0
-4,0,1,0,5.061929,0,10.3,1,0,0
-4,0,1,0,5.061929,0,10.3,1,0,0
-3,0,0,0,0,0,20.7,0,1,0
-0,0,0,0,0,0,20.7,0,1,0
-8,0,0,0,0,0,20.7,0,1,0
-7,0,0,0,0,0,20.7,0,1,0
-1,0,0,0,0,0,11.84267,1,0,0
-0,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-5,0,0,0,0,0,11.84267,1,0,0
-1,0,0,0,0,0,11.84267,1,0,0
-19,0,0,0,0,0,24.1,0,0,1
-14,0,0,0,0,0,24.1,0,0,1
-23,0,0,0,0,0,24.1,0,0,1
-23,0,0,0,0,0,24.1,0,0,1
-14,0,0,0,0,0,24.1,0,0,1
-4,0,0,0,0,1,13.8,0,0,0
-9,0,0,0,0,1,13.8,0,0,0
-6,0,0,0,0,1,13.8,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-7,0,0,0,0,0,6.9,0,0,0
-8,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,4.564348,0,5.247024,5.298317,0,0,0,0,0
-6,0,0,0,0,1,0,0,0,0
-4,0,0,0,0,1,0,0,0,0
-9,0,0,0,0,1,0,0,0,0
-1,0,0,3.401197,0,0,10.3,0,0,0
-4,0,0,3.401197,0,0,10.3,0,0,0
-2,0,0,3.401197,0,0,10.3,0,0,0
-0,3.258096,0,6.351758,7.738052,1,20.7,1,0,0
-6,3.258096,0,6.351758,7.738052,1,20.7,1,0,0
-4,3.258096,0,6.351758,7.738052,1,20.7,1,0,0
-2,3.258096,0,6.351758,7.738052,0,11.84267,0,0,0
-3,3.258096,0,6.351758,7.738052,0,11.84267,0,0,0
-2,3.258096,0,6.351758,7.738052,0,11.84267,0,0,0
-0,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-1,3.258096,0,0,8.294049,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-4,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,1,6.109248,6.160541,0,11.84267,1,0,0
-1,0,1,6.109248,6.160541,0,11.84267,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,1,27.6,1,0,0
-0,0,0,0,0,1,27.6,1,0,0
-0,0,0,0,0,1,27.6,1,0,0
-1,0,0,0,0,1,3.4,0,0,1
-0,0,0,0,0,1,3.4,0,0,1
-0,0,0,0,0,1,3.4,0,0,1
-1,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.645741,6.697034,0,13.8,0,0,0
-0,4.564348,0,6.645741,6.697034,0,13.8,0,0,0
-0,4.564348,0,6.645741,6.697034,0,13.8,0,0,0
-3,4.564348,0,6.645741,6.697034,0,6.9,0,0,0
-1,4.564348,0,6.645741,6.697034,0,6.9,0,0,0
-0,4.564348,0,6.645741,6.697034,0,6.9,0,0,0
-2,4.564348,0,6.645741,6.697034,0,0,0,0,0
-0,4.564348,0,6.645741,6.697034,0,0,0,0,0
-0,4.564348,0,6.645741,6.697034,0,0,0,0,0
-3,4.564348,0,6.645741,6.697034,0,17.2,0,0,0
-1,4.564348,0,6.645741,6.697034,0,17.2,0,0,0
-1,4.564348,0,6.645741,6.697034,0,17.2,0,0,0
-0,4.564348,0,6.645741,6.697034,0,11.84267,0,0,0
-0,4.564348,0,6.645741,6.697034,0,11.84267,0,0,0
-0,4.564348,0,6.645741,6.697034,0,11.84267,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,4.564348,0,0,6.959049,0,6.9,0,0,0
-0,4.564348,0,0,6.959049,0,17.2,0,0,0
-0,4.564348,0,0,6.959049,1,17.2,0,0,0
-0,0,1,5.554818,5.061929,0,10.3,0,0,1
-2,0,1,5.554818,5.061929,0,10.3,0,0,1
-1,0,1,5.554818,5.061929,0,10.3,0,0,1
-0,4.564348,0,0,6.602374,0,3.4,0,0,0
-0,4.564348,0,0,6.602374,0,3.4,0,0,0
-0,4.564348,0,0,6.602374,0,3.4,0,0,0
-0,0,0,0,0,.1981873,11.84267,0,0,0
-0,0,0,0,0,.1981873,11.84267,0,0,0
-0,0,0,0,0,.1981873,11.84267,0,0,0
-0,0,0,0,0,1,0,0,1,0
-0,0,0,0,0,1,0,0,1,0
-0,0,0,0,0,1,0,0,1,0
-0,3.258096,0,0,7.495542,0,6.9,1,0,0
-7,3.258096,0,0,7.495542,0,6.9,1,0,0
-2,3.258096,0,0,7.495542,0,6.9,1,0,0
-5,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-2,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-1,3.258096,0,6.907755,8.294049,0,24.1,1,0,0
-1,4.564348,0,0,4.807036,0,6.9,1,0,0
-5,4.564348,0,0,4.807036,0,6.9,1,0,0
-0,4.564348,0,0,4.807036,0,6.9,1,0,0
-7,3.258096,0,0,7.552342,1,6.9,1,0,0
-1,3.258096,0,0,7.552342,1,6.9,1,0,0
-1,3.258096,0,0,7.552342,1,6.9,1,0,0
-7,4.564348,0,5.788491,5.674408,1,24.1,1,0,0
-4,4.564348,0,5.788491,5.674408,1,24.1,1,0,0
-3,4.564348,0,5.788491,5.674408,1,24.1,1,0,0
-2,4.564348,0,5.788491,5.674408,1,27.6,1,0,0
-6,4.564348,0,5.788491,5.674408,1,27.6,1,0,0
-11,4.564348,0,5.788491,5.674408,1,27.6,1,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-12,0,1,5.617753,6.160541,0,11.84267,0,0,0
-8,0,1,5.617753,6.160541,0,11.84267,0,0,0
-6,0,1,5.617753,6.160541,0,11.84267,0,0,0
-3,0,1,5.617753,6.160541,0,11.84267,0,0,0
-3,0,1,5.617753,6.160541,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-5,3.258096,0,6.115671,7.501966,0,11.84267,0,0,0
-3,3.258096,0,6.115671,7.501966,0,11.84267,0,0,0
-9,3.258096,0,6.115671,7.501966,0,11.84267,0,0,0
-1,4.564348,0,4.882802,4.934095,1,10.3,0,0,0
-0,4.564348,0,4.882802,4.934095,1,10.3,0,0,0
-0,4.564348,0,4.882802,4.934095,1,10.3,0,0,0
-0,4.564348,0,0,6.566006,0,13.8,0,0,0
-0,4.564348,0,0,6.566006,0,13.8,0,0,0
-0,4.564348,0,0,6.566006,0,13.8,0,0,0
-4,0,0,0,0,.1981873,11.84267,0,0,0
-4,0,0,0,0,.1981873,11.84267,0,0,0
-1,0,0,0,0,.1981873,11.84267,0,0,0
-0,0,0,0,0,.0221239,11.84267,0,0,0
-5,0,0,0,0,.0221239,11.84267,0,0,0
-4,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,1,6.39693,6.160541,.0221239,11.84267,0,0,0
-1,0,1,6.39693,6.160541,.0221239,11.84267,0,0,0
-6,0,0,6.762128,0,.0221239,11.84267,0,0,0
-5,0,0,6.762128,0,.0221239,11.84267,0,0,0
-4,0,0,6.762128,0,.0221239,11.84267,0,0,0
-4,0,0,0,0,0,11.84267,0,0,0
-1,0,0,0,0,0,11.84267,0,0,0
-0,0,0,0,0,0,11.84267,0,0,0
-3,0,0,6.351409,0,0,6.9,0,0,0
-1,0,0,6.351409,0,0,6.9,0,0,0
-0,0,0,6.351409,0,0,6.9,0,0,0
-7,0,0,5.871329,0,0,11.84267,0,0,0
-2,0,0,5.871329,0,0,11.84267,0,0,0
-6,0,0,5.871329,0,0,11.84267,0,0,0
-4,0,1,0,6.160541,0,11.84267,0,0,0
-0,0,1,0,6.160541,0,11.84267,0,0,0
-8,0,1,0,6.160541,0,11.84267,0,0,0
-8,0,0,5.785915,0,0,11.84267,0,0,0
-6,0,0,5.785915,0,0,11.84267,0,0,0
-1,0,0,5.785915,0,0,11.84267,0,0,0
-3,0,0,5.785915,0,0,11.84267,0,0,0
-2,0,0,5.785915,0,0,11.84267,0,0,0
-3,3.258096,0,0,7.167964,.0221239,11.84267,0,0,0
-2,3.258096,0,0,7.167964,.0221239,11.84267,0,0,0
-0,0,0,0,0,.1981873,11.84267,0,0,0
-3,0,0,0,0,.1981873,11.84267,0,0,0
-1,0,0,0,0,.1981873,11.84267,0,0,0
-3,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-1,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-1,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-2,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-2,3.258096,0,5.717028,7.103322,0,11.84267,0,0,0
-4,0,0,6.246107,0,0,11.84267,0,0,0
-4,0,0,6.246107,0,0,11.84267,0,0,0
-5,0,0,6.246107,0,0,11.84267,0,0,0
-7,4.564348,0,6.639876,6.691169,.1981873,11.84267,0,0,0
-8,4.564348,0,6.639876,6.691169,.1981873,11.84267,0,0,0
-7,4.564348,0,6.639876,6.691169,.1981873,11.84267,0,0,0
-7,4.564348,0,6.639876,6.691169,.1981873,11.84267,0,0,0
-16,4.564348,0,6.639876,6.691169,.1981873,11.84267,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-0,4.564348,0,0,6.959049,1,27.6,0,0,0
-1,3.258096,0,6.280845,6.628041,0,11.84267,1,0,0
-4,3.258096,0,6.280845,6.628041,0,11.84267,1,0,0
-5,3.258096,0,6.280845,6.628041,0,11.84267,1,0,0
-7,3.258096,0,6.280845,6.628041,0,3.4,1,0,0
-26,3.258096,0,6.280845,6.628041,0,3.4,1,0,0
-11,3.258096,0,6.280845,6.628041,0,3.4,1,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-5,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-2,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-0,3.258096,0,6.907755,8.294049,0,6.9,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-0,0,0,0,0,.0221239,11.84267,0,0,0
-1,0,0,0,0,.0221239,11.84267,0,0,0
-3,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,1,20.7,0,0,0
-1,0,0,5.355642,0,0,3.4,0,0,0
-1,0,0,5.355642,0,0,3.4,0,0,0
-2,0,0,5.355642,0,0,3.4,0,0,0
-9,0,0,5.355642,0,0,3.4,0,0,0
-3,0,0,5.355642,0,0,3.4,0,0,0
-15,0,0,4.587006,0,0,11.84267,0,0,0
-4,0,0,4.587006,0,0,11.84267,0,0,0
-1,0,0,4.587006,0,0,11.84267,0,0,0
-4,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-5,0,1,5.703783,5.755076,0,6.9,0,0,0
-3,3.258096,0,6.612041,7.998335,.0221239,11.84267,0,0,0
-5,3.258096,0,6.612041,7.998335,.0221239,11.84267,0,0,0
-0,3.258096,0,6.612041,7.998335,.0221239,11.84267,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-3,0,1,0,5.755076,0,10.3,0,0,0
-4,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-0,0,1,0,5.755076,0,10.3,0,0,0
-5,0,1,0,5.755076,1,24.1,0,0,0
-2,0,1,0,5.755076,1,24.1,0,0,0
-4,0,1,0,5.755076,1,24.1,0,0,0
-1,0,1,0,5.755076,1,24.1,0,0,0
-7,0,1,0,5.755076,1,24.1,0,0,0
-3,3.258096,0,6.907755,8.294049,0,0,0,0,0
-1,3.258096,0,6.907755,8.294049,0,0,0,0,0
-4,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-0,3.258096,0,6.907755,8.294049,0,0,0,0,0
-2,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-3,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,0,11.84267,0,0,0
-20,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-10,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-23,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-12,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-9,3.258096,0,6.907755,8.294049,0,17.2,0,0,0
-7,0,0,0,0,.0221239,11.84267,0,0,0
-6,0,0,0,0,.0221239,11.84267,0,0,0
-3,0,0,0,0,.0221239,11.84267,0,0,0
-4,4.564348,0,0,5.435788,0,10.3,0,0,0
-9,4.564348,0,0,5.435788,0,10.3,0,0,0
-5,4.564348,0,0,5.435788,0,10.3,0,0,0
-10,3.258096,0,6.280845,6.628041,1,13.8,0,0,0
-8,3.258096,0,6.280845,6.628041,1,13.8,0,0,0
-7,3.258096,0,6.280845,6.628041,1,13.8,0,0,0
-2,0,0,4.063885,0,0,3.4,0,0,0
-0,0,0,4.063885,0,0,3.4,0,0,0
-0,0,0,4.063885,0,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,11.84267,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-0,3.258096,0,6.907755,8.294049,0,3.4,0,0,0
-1,3.258096,0,0,7.194437,0,6.9,0,0,0
-0,3.258096,0,0,7.194437,0,6.9,0,0,0
-0,3.258096,0,0,7.194437,0,6.9,0,0,0
-0,3.258096,0,0,7.194437,0,11.84267,0,0,0
-0,3.258096,0,0,7.194437,0,11.84267,0,0,0
-0,3.258096,0,0,7.194437,0,11.84267,0,0,0
-0,3.258096,0,0,6.866933,0,3.4,0,0,0
-1,3.258096,0,0,6.866933,0,3.4,0,0,0
-1,3.258096,0,0,6.866933,0,3.4,0,0,0
-0,3.258096,0,5.783825,7.17012,0,13.8,0,0,0
-1,3.258096,0,5.783825,7.17012,0,13.8,0,0,0
-1,3.258096,0,5.783825,7.17012,0,13.8,0,0,0
-10,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-1,3.258096,0,5.521461,6.907755,1,13.8,0,0,0
-4,3.258096,0,5.521461,6.907755,1,13.8,0,0,0
-2,3.258096,0,5.521461,6.907755,1,13.8,0,0,0
-11,3.258096,0,5.886104,7.272398,.0221239,11.84267,0,0,0
-10,3.258096,0,5.886104,7.272398,.0221239,11.84267,0,0,0
-7,3.258096,0,5.886104,7.272398,.0221239,11.84267,0,0,0
-3,3.258096,0,5.886104,7.272398,.0221239,11.84267,0,0,0
-0,3.258096,0,5.886104,7.272398,.0221239,11.84267,0,0,0
-2,0,1,6.109248,6.160541,.0221239,11.84267,0,0,0
-1,0,1,6.109248,6.160541,.0221239,11.84267,0,0,0
-8,0,0,0,0,.0221239,11.84267,0,0,0
-5,0,0,0,0,.0221239,11.84267,0,0,0
-7,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-2,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-3,4.564348,0,5.519459,5.570752,.0221239,11.84267,0,0,0
-1,4.564348,0,5.519459,5.570752,.0221239,11.84267,0,0,0
-4,3.258096,0,6.907755,8.294049,.0221239,11.84267,0,0,0
-5,3.258096,0,6.907755,8.294049,.0221239,11.84267,0,0,0
-2,3.258096,0,6.43575,7.693937,.0221239,11.84267,0,0,0
-1,3.258096,0,6.43575,7.693937,.0221239,11.84267,0,0,0
-7,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-5,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-4,0,0,0,0,.0221239,11.84267,0,0,0
-3,0,0,0,0,.0221239,11.84267,0,0,0
-1,0,0,0,0,.0221239,11.84267,0,0,0
-15,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-12,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-8,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-10,0,0,5.871329,0,.0221239,11.84267,0,0,0
-6,0,0,5.871329,0,.0221239,11.84267,0,0,0
-11,0,0,5.330978,0,.0221239,11.84267,0,0,0
-6,0,0,5.330978,0,.0221239,11.84267,0,0,0
-4,0,0,5.330978,0,.0221239,11.84267,0,0,0
-3,0,0,5.330978,0,.0221239,11.84267,0,0,0
-7,3.258096,0,6.804725,8.19102,.0221239,11.84267,0,0,0
-4,3.258096,0,6.804725,8.19102,.0221239,11.84267,0,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-1,0,0,0,0,.0221239,11.84267,0,0,0
-4,0,1,0,6.160541,.0221239,11.84267,0,0,0
-1,0,1,0,6.160541,.0221239,11.84267,0,0,0
-3,0,1,5.743003,5.755076,.0221239,11.84267,0,0,0
-0,0,1,5.743003,5.755076,.0221239,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-4,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-9,4.564348,0,6.703188,6.754481,.0221239,11.84267,0,0,0
-8,4.564348,0,6.703188,6.754481,.0221239,11.84267,0,0,0
-12,0,0,5.496512,0,.0221239,11.84267,0,0,0
-8,0,0,5.496512,0,.0221239,11.84267,0,0,0
-2,3.258096,0,6.907755,8.294049,.0221239,11.84267,0,0,0
-1,3.258096,0,6.907755,8.294049,.0221239,11.84267,0,0,0
-5,3.258096,0,6.87363,8.259924,.0221239,11.84267,0,0,0
-2,3.258096,0,6.87363,8.259924,.0221239,11.84267,0,0,0
-0,3.258096,0,6.87363,8.259924,.0221239,11.84267,0,0,0
-14,0,0,0,0,.0221239,11.84267,0,0,0
-12,0,0,0,0,.0221239,11.84267,0,0,0
-5,4.564348,0,6.547474,6.943732,.0221239,11.84267,0,0,0
-6,4.564348,0,6.547474,6.943732,.0221239,11.84267,0,0,0
-2,4.564348,0,6.547474,6.943732,.0221239,11.84267,0,0,0
-4,0,0,5.962654,0,.0221239,11.84267,0,0,0
-3,0,0,5.962654,0,.0221239,11.84267,0,0,0
-3,0,1,0,5.061929,.0221239,11.84267,0,0,0
-2,0,1,0,5.061929,.0221239,11.84267,0,0,0
-3,0,1,0,5.061929,.0221239,11.84267,0,0,0
-3,0,1,4.341856,5.755076,.0221239,11.84267,0,0,0
-5,0,1,4.341856,5.755076,.0221239,11.84267,0,0,0
-0,4.564348,0,6.743352,6.794645,.0221239,11.84267,0,0,0
-0,4.564348,0,6.743352,6.794645,.0221239,11.84267,0,0,0
-0,4.564348,0,6.743352,6.794645,.0221239,11.84267,0,0,0
-0,4.564348,0,6.743352,6.794645,.0221239,11.84267,0,0,0
-3,0,1,5.703783,6.160541,.0221239,11.84267,0,0,0
-2,0,1,5.617753,6.160541,.0221239,11.84267,0,0,0
-2,0,1,5.617753,6.160541,.0221239,11.84267,0,0,0
-2,0,1,5.617753,6.160541,.0221239,11.84267,0,0,0
-10,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-7,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-1,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-12,3.258096,0,6.342209,7.728504,.0221239,11.84267,0,0,0
-1,0,1,6.109248,6.160541,.0221239,11.84267,0,0,0
-5,3.258096,0,6.907755,8.294049,.0221239,11.84267,0,0,0
-12,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-6,3.258096,0,0,5.075174,.0221239,11.84267,0,0,0
-0,0,0,0,0,.0221239,11.84267,0,0,0
-3,0,1,6.109248,6.160541,.0221239,11.84267,0,0,0
-0,3.258096,0,0,7.194437,.0221239,11.84267,0,0,0
-6,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-1,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-4,0,0,0,0,.0221239,11.84267,0,0,0
-7,0,0,5.785915,0,.0221239,11.84267,0,0,0
-10,0,0,5.785915,0,.0221239,11.84267,0,0,0
-6,0,0,5.785915,0,.0221239,11.84267,0,0,0
-0,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-6,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-9,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-3,0,0,5.355642,0,.0221239,11.84267,0,0,0
-6,0,0,5.355642,0,.0221239,11.84267,0,0,0
-3,0,0,5.355642,0,.0221239,11.84267,0,0,0
-1,0,0,0,0,.0221239,11.84267,0,0,0
-7,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-6,4.564348,0,6.547474,6.943732,.0221239,11.84267,0,0,0
-2,4.564348,0,6.547474,6.943732,.0221239,11.84267,0,0,0
-8,4.564348,0,6.72827,6.779563,.0221239,11.84267,0,0,0
-6,4.564348,0,6.72827,6.779563,.0221239,11.84267,0,0,0
-11,0,0,0,0,.0221239,11.84267,0,0,0
-2,0,0,0,0,.0221239,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-2,4.564348,0,6.907755,6.959049,.0221239,11.84267,0,0,0
-12,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-8,0,1,5.703783,5.755076,.0221239,11.84267,0,0,0
-3,0,1,6.109248,6.160541,.0221239,11.84267,0,0,0
-8,4.564348,0,6.639876,6.691169,.0221239,11.84267,0,0,0
-7,0,0,0,0,.0221239,11.84267,0,0,0
-7,0,0,5.355642,0,.0221239,11.84267,0,0,0
-6,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-9,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,1,17.2,1,0,0
-1,3.258096,0,6.620073,8.006368,1,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,1,17.2,1,0,0
-0,0,1,6.1441,5.755076,0,0,0,0,0
-3,0,1,6.1441,5.755076,0,0,0,0,0
-3,0,1,6.1441,5.755076,0,0,0,0,0
-4,0,1,6.1441,5.755076,0,10.3,0,0,0
-6,0,1,6.1441,5.755076,0,10.3,0,0,0
-1,0,1,6.1441,5.755076,0,10.3,0,0,0
-6,0,0,6.953913,0,0,9.967326,0,0,0
-2,0,0,6.953913,0,0,9.967326,0,0,0
-3,0,0,6.953913,0,0,9.967326,0,0,0
-2,0,0,6.953913,0,1,6.9,0,0,0
-1,0,0,6.953913,0,1,6.9,0,0,0
-37,0,0,6.953913,0,1,6.9,0,0,0
-1,0,0,6.953913,0,0,6.9,0,0,0
-3,0,0,6.953913,0,0,6.9,0,0,0
-1,0,0,6.953913,0,0,6.9,0,0,0
-6,0,0,6.953913,0,1,9.967326,0,0,0
-7,0,0,6.953913,0,1,9.967326,0,0,0
-13,0,0,6.953913,0,1,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-4,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-1,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-5,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,3.258096,0,6.620073,8.006368,0,27.6,1,0,0
-2,3.258096,0,6.620073,8.006368,0,27.6,1,0,0
-1,3.258096,0,6.620073,8.006368,0,27.6,1,0,0
-6,3.258096,0,6.620073,8.006368,0,27.6,1,0,0
-5,3.258096,0,6.620073,8.006368,0,27.6,1,0,0
-1,0,0,5.629059,0,0,9.967326,0,0,0
-3,0,0,5.629059,0,0,9.967326,0,0,0
-5,0,0,5.629059,0,0,9.967326,0,0,0
-2,0,0,5.629059,0,0,9.967326,0,0,0
-4,0,0,5.629059,0,0,9.967326,0,0,0
-1,0,0,5.629059,0,0,9.967326,0,0,0
-1,0,0,5.629059,0,0,9.967326,0,0,0
-5,0,0,5.629059,0,0,9.967326,0,0,0
-2,0,0,5.629059,0,0,9.967326,0,0,0
-1,0,0,5.629059,0,0,9.967326,0,0,0
-1,0,0,5.629059,0,1,13.8,0,0,0
-2,0,0,5.629059,0,1,13.8,0,0,0
-1,0,0,5.629059,0,1,13.8,0,0,0
-2,0,0,5.629059,0,1,13.8,0,0,0
-2,0,0,5.629059,0,1,13.8,0,0,0
-2,0,0,5.629059,0,0,3.4,0,0,0
-6,0,0,5.629059,0,0,3.4,0,0,0
-0,0,0,5.629059,0,0,3.4,0,0,0
-1,0,0,5.629059,0,0,3.4,0,0,0
-1,0,0,5.629059,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,1,17.2,1,0,0
-3,0,0,0,0,1,17.2,1,0,0
-5,0,0,0,0,1,17.2,1,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,1,6.694067,6.160541,0,0,1,0,0
-3,0,1,6.694067,6.160541,0,0,1,0,0
-2,0,1,6.694067,6.160541,0,0,1,0,0
-1,0,1,6.694067,6.160541,0,24.1,1,0,0
-1,0,1,6.694067,6.160541,0,24.1,1,0,0
-1,0,1,6.694067,6.160541,0,24.1,1,0,0
-5,0,1,6.694067,6.160541,0,9.967326,1,0,0
-4,0,1,6.694067,6.160541,0,9.967326,1,0,0
-6,0,1,6.694067,6.160541,0,9.967326,1,0,0
-0,4.564348,0,6.802395,6.959049,0,0,0,0,0
-0,4.564348,0,6.802395,6.959049,0,0,0,0,0
-2,4.564348,0,6.802395,6.959049,0,0,0,0,0
-0,4.564348,0,6.802395,6.959049,0,0,0,0,0
-0,4.564348,0,6.802395,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-9,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-7,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-11,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-34,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,20.7,1,0,0
-4,0,0,0,0,0,20.7,1,0,0
-5,0,0,0,0,0,20.7,1,0,0
-4,0,0,0,0,1,9.967326,0,0,0
-22,0,0,0,0,1,9.967326,0,0,0
-34,0,0,0,0,1,9.967326,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-5,3.258096,0,6.620073,8.006368,1,13.8,0,1,0
-5,3.258096,0,6.620073,8.006368,1,13.8,0,1,0
-4,3.258096,0,6.620073,8.006368,1,13.8,0,1,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,0,0,6.364407,0,0,3.4,0,0,0
-1,0,0,6.364407,0,0,3.4,0,0,0
-3,0,0,6.364407,0,0,3.4,0,0,0
-1,0,0,6.364407,0,0,3.4,0,0,0
-2,0,0,6.364407,0,0,3.4,0,0,0
-5,0,0,6.364407,0,0,6.9,1,0,0
-2,0,0,6.364407,0,0,6.9,1,0,0
-2,0,0,6.364407,0,0,6.9,1,0,0
-0,0,0,6.364407,0,0,6.9,1,0,0
-2,0,0,6.364407,0,0,6.9,1,0,0
-2,0,0,6.364407,0,0,0,1,0,0
-0,0,0,6.364407,0,0,0,1,0,0
-3,0,0,6.364407,0,0,0,1,0,0
-1,0,0,6.364407,0,0,0,1,0,0
-9,0,0,6.364407,0,0,0,1,0,0
-1,0,0,6.364407,0,0,6.9,1,0,0
-2,0,0,6.364407,0,0,6.9,1,0,0
-9,0,0,6.364407,0,0,6.9,1,0,0
-3,0,0,6.364407,0,0,6.9,1,0,0
-8,0,0,6.364407,0,0,6.9,1,0,0
-11,4.564348,0,0,0,0,0,1,0,0
-6,4.564348,0,0,0,0,0,1,0,0
-2,4.564348,0,0,0,0,0,1,0,0
-1,0,1,5.010635,5.061929,0,13.8,1,0,0
-3,0,1,5.010635,5.061929,0,13.8,1,0,0
-2,0,1,5.010635,5.061929,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-52,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-18,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,0,0,6.63752,0,0,24.1,0,0,0
-1,0,0,6.63752,0,0,24.1,0,0,0
-0,0,0,6.63752,0,0,24.1,0,0,0
-0,0,0,6.63752,0,0,24.1,0,0,0
-2,0,0,6.63752,0,0,24.1,0,0,0
-2,0,0,6.63752,0,1,9.967326,0,0,0
-1,0,0,6.63752,0,1,9.967326,0,0,0
-4,0,0,6.63752,0,1,9.967326,0,0,0
-8,0,0,6.63752,0,1,9.967326,0,0,0
-3,0,0,6.63752,0,1,9.967326,0,0,0
-0,0,0,6.63752,0,0,10.3,1,0,0
-1,0,0,6.63752,0,0,10.3,1,0,0
-0,0,0,6.63752,0,0,10.3,1,0,0
-0,0,0,6.63752,0,0,10.3,1,0,0
-0,0,0,6.63752,0,0,10.3,1,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-2,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-3,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-3,0,0,6.63752,0,0,9.967326,0,0,0
-1,0,0,6.63752,0,0,9.967326,0,0,0
-3,0,0,6.63752,0,0,9.967326,0,0,0
-2,0,0,6.63752,0,0,9.967326,0,0,0
-3,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-0,0,0,6.63752,0,0,9.967326,0,0,0
-2,0,0,6.63752,0,0,9.967326,0,0,0
-4,3.931826,0,6.253829,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.253829,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.253829,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.253829,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.253829,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.253829,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.253829,7.600903,0,0,0,0,0
-1,3.931826,0,6.253829,7.600903,0,0,0,0,0
-4,3.931826,0,6.253829,7.600903,0,0,0,0,0
-2,0,0,6.107112,0,0,10.3,1,0,0
-5,0,0,6.107112,0,0,10.3,1,0,0
-9,0,0,6.107112,0,0,10.3,1,0,0
-7,0,0,6.107112,0,0,9.967326,1,0,0
-3,0,0,6.107112,0,0,9.967326,1,0,0
-4,0,0,6.107112,0,0,9.967326,1,0,0
-1,0,0,6.107112,0,0,6.9,1,0,0
-0,0,0,6.107112,0,0,6.9,1,0,0
-1,0,0,6.107112,0,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-3,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-4,3.931826,0,6.907755,7.600903,0,31,1,0,0
-6,3.931826,0,6.907755,7.600903,0,31,1,0,0
-5,3.931826,0,6.907755,7.600903,0,31,1,0,0
-5,4.564348,0,4.918885,4.970179,0,13.8,1,0,0
-4,4.564348,0,4.918885,4.970179,0,13.8,1,0,0
-2,4.564348,0,4.918885,4.970179,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-6,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,0,0,4.832943,0,0,6.9,0,0,0
-0,0,0,4.832943,0,0,6.9,0,0,0
-1,0,0,4.832943,0,0,6.9,0,0,0
-7,0,0,4.832943,0,0,10.3,0,0,0
-1,0,0,4.832943,0,0,10.3,0,0,0
-4,0,0,4.832943,0,0,10.3,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,31,1,0,0
-1,0,0,0,0,0,31,1,0,0
-2,0,0,0,0,0,31,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-7,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,6.9,0,1,0
-2,0,0,0,0,0,6.9,0,1,0
-0,0,0,0,0,0,6.9,0,1,0
-1,0,1,5.083886,5.061929,0,17.2,1,0,0
-2,0,1,5.083886,5.061929,0,17.2,1,0,0
-0,0,1,5.083886,5.061929,0,17.2,1,0,0
-11,0,0,3.843316,0,0,13.8,0,0,0
-20,0,0,3.843316,0,0,13.8,0,0,0
-0,0,0,3.843316,0,1,9.967326,1,0,0
-4,0,0,3.843316,0,1,9.967326,1,0,0
-5,0,0,3.843316,0,1,9.967326,1,0,0
-1,0,0,3.843316,0,1,3.4,1,0,0
-2,0,0,3.843316,0,1,3.4,1,0,0
-15,0,0,3.843316,0,1,3.4,1,0,0
-1,0,0,3.843316,0,0,3.4,0,0,0
-1,0,0,3.843316,0,0,3.4,0,0,0
-3,0,0,3.843316,0,0,3.4,0,0,0
-2,0,0,3.843316,0,0,13.8,1,0,0
-0,0,0,3.843316,0,0,13.8,1,0,0
-1,0,0,3.843316,0,0,13.8,1,0,0
-3,0,0,3.843316,0,1,6.9,0,0,0
-5,0,0,3.843316,0,1,6.9,0,0,0
-4,0,0,3.843316,0,1,6.9,0,0,0
-4,0,0,3.843316,0,0,9.967326,0,0,0
-7,0,0,3.843316,0,0,9.967326,0,0,0
-0,0,0,3.843316,0,0,9.967326,0,0,0
-6,0,0,4.356709,0,0,0,1,0,0
-2,0,0,4.356709,0,0,0,1,0,0
-3,0,0,4.356709,0,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-7,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-7,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,0,0,4.836282,0,0,3.4,0,0,0
-2,0,0,4.836282,0,0,3.4,0,0,0
-0,0,0,4.836282,0,0,3.4,0,0,0
-2,3.258096,0,0,0,0,6.9,1,0,0
-4,3.258096,0,0,0,0,6.9,1,0,0
-1,3.258096,0,0,0,0,6.9,1,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-9,0,0,4.339902,0,0,3.4,0,0,0
-1,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-0,0,0,4.339902,0,0,3.4,0,0,0
-4,0,0,5.052161,0,0,9.967326,1,0,0
-1,0,0,5.052161,0,0,9.967326,1,0,0
-6,0,0,5.052161,0,0,9.967326,1,0,0
-5,0,0,5.052161,0,0,9.967326,1,0,0
-5,0,0,5.052161,0,0,9.967326,1,0,0
-3,0,0,5.052161,0,0,3.4,1,0,0
-3,0,0,5.052161,0,0,3.4,1,0,0
-1,0,0,5.052161,0,0,3.4,1,0,0
-3,0,0,5.052161,0,0,3.4,1,0,0
-2,0,0,5.052161,0,0,3.4,1,0,0
-4,0,0,5.052161,0,0,3.4,1,0,0
-3,0,0,5.052161,0,0,3.4,1,0,0
-4,0,0,5.052161,0,0,3.4,1,0,0
-1,0,0,5.052161,0,0,3.4,1,0,0
-1,0,0,5.052161,0,0,3.4,1,0,0
-9,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-4,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.258096,0,6.215408,7.601702,0,6.9,1,0,0
-0,3.258096,0,6.215408,7.601702,0,6.9,1,0,0
-1,3.258096,0,6.215408,7.601702,0,6.9,1,0,0
-3,3.258096,0,6.215408,7.601702,0,24.1,1,0,0
-0,3.258096,0,6.215408,7.601702,0,24.1,1,0,0
-2,3.258096,0,6.215408,7.601702,0,24.1,1,0,0
-0,0,0,5.949392,0,0,9.967326,0,0,0
-0,0,0,5.949392,0,0,9.967326,0,0,0
-0,0,0,5.949392,0,0,9.967326,0,0,0
-3,0,0,5.949392,0,1,24.1,1,0,0
-0,0,0,5.949392,0,1,24.1,1,0,0
-4,0,0,5.949392,0,1,24.1,1,0,0
-3,0,0,5.949392,0,0,9.967326,0,0,0
-0,0,0,5.949392,0,0,9.967326,0,0,0
-2,0,0,5.949392,0,0,9.967326,0,0,0
-3,0,0,5.949392,0,1,20.7,1,0,0
-0,0,0,5.949392,0,1,20.7,1,0,0
-3,0,0,5.949392,0,1,20.7,1,0,0
-8,0,0,0,0,1,20.7,1,0,0
-8,0,0,0,0,1,20.7,1,0,0
-10,0,0,0,0,1,20.7,1,0,0
-8,0,0,0,0,1,20.7,1,0,0
-13,0,0,0,0,1,20.7,1,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,1,10.3,0,1,0
-0,0,0,0,0,1,9.967326,1,0,0
-2,0,0,0,0,1,9.967326,1,0,0
-3,0,0,0,0,0,10.3,0,1,0
-3,0,0,0,0,0,10.3,0,1,0
-5,0,0,0,0,0,10.3,0,1,0
-2,0,0,0,0,0,10.3,0,1,0
-10,0,0,0,0,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-1,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-10,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,0,0,6.061457,0,0,9.967326,0,0,0
-9,0,0,6.061457,0,0,9.967326,0,0,0
-5,0,0,6.061457,0,0,9.967326,0,0,0
-3,0,0,6.061457,0,0,9.967326,0,0,0
-2,0,0,6.061457,0,0,9.967326,0,0,0
-2,0,0,6.061457,0,0,9.967326,0,0,0
-2,0,0,6.061457,0,0,9.967326,0,0,0
-1,0,0,6.061457,0,0,9.967326,0,0,0
-1,0,0,6.061457,0,0,9.967326,0,0,0
-2,0,0,6.061457,0,0,9.967326,0,0,0
-3,0,0,6.061457,0,0,3.4,0,0,0
-6,0,0,6.061457,0,0,3.4,0,0,0
-6,0,0,6.061457,0,0,3.4,0,0,0
-3,0,0,6.061457,0,0,3.4,0,0,0
-1,0,0,6.061457,0,0,3.4,0,0,0
-4,0,0,6.061457,0,0,10.3,1,0,0
-2,0,0,6.061457,0,0,10.3,1,0,0
-1,0,0,6.061457,0,0,10.3,1,0,0
-2,0,0,6.061457,0,0,10.3,1,0,0
-1,0,0,6.061457,0,0,10.3,1,0,0
-3,0,0,6.061457,0,0,6.9,0,0,0
-6,0,0,6.061457,0,0,6.9,0,0,0
-7,0,0,6.061457,0,0,6.9,0,0,0
-0,0,0,6.061457,0,0,6.9,0,0,0
-0,0,0,6.061457,0,0,6.9,0,0,0
-3,0,0,6.061457,0,0,3.4,0,0,0
-0,0,0,6.061457,0,0,3.4,0,0,0
-0,0,0,6.061457,0,0,3.4,0,0,0
-2,0,0,6.061457,0,0,3.4,0,0,0
-1,0,0,6.061457,0,0,3.4,0,0,0
-5,0,0,6.865057,0,0,3.4,0,0,0
-1,0,0,6.865057,0,0,3.4,0,0,0
-4,0,0,6.865057,0,0,3.4,0,0,0
-9,0,0,6.865057,0,0,3.4,1,0,0
-2,0,0,6.865057,0,0,3.4,1,0,0
-3,0,0,6.865057,0,0,3.4,1,0,0
-2,0,0,6.865057,0,0,9.967326,1,0,0
-1,0,0,6.865057,0,0,9.967326,1,0,0
-0,0,0,6.865057,0,0,9.967326,1,0,0
-2,0,0,6.865057,0,0,9.967326,1,0,0
-3,0,0,6.865057,0,0,9.967326,1,0,0
-4,0,0,6.865057,0,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,1,13.8,0,0,0
-3,0,1,6.109248,6.160541,1,13.8,0,0,0
-2,0,1,6.109248,6.160541,1,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,1,20.7,0,0,0
-0,0,1,6.109248,6.160541,1,20.7,0,0,0
-2,0,1,6.109248,6.160541,1,20.7,0,0,0
-10,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-11,0,1,6.109248,6.160541,0,9.967326,0,0,0
-10,0,1,6.109248,6.160541,0,9.967326,0,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,0,0,0,0
-1,3.931826,0,6.558198,7.251345,0,9.967326,0,0,0
-2,3.931826,0,6.558198,7.251345,0,9.967326,0,0,0
-1,3.931826,0,6.558198,7.251345,0,9.967326,0,0,0
-2,3.931826,0,6.558198,7.251345,0,6.9,1,0,0
-3,3.931826,0,6.558198,7.251345,0,6.9,1,0,0
-5,3.931826,0,6.558198,7.251345,0,6.9,1,0,0
-7,3.931826,0,6.599871,7.293018,1,20.7,0,1,0
-3,3.931826,0,6.599871,7.293018,1,20.7,0,1,0
-2,3.931826,0,6.599871,7.293018,1,20.7,0,1,0
-4,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-3,4.564348,0,6.907755,6.959049,0,9.967326,0,1,0
-0,4.564348,0,6.39693,6.448223,0,20.7,0,0,0
-1,4.564348,0,6.39693,6.448223,0,20.7,0,0,0
-2,4.564348,0,6.39693,6.448223,0,20.7,0,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-2,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-2,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-4,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-2,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-3,4.564348,0,6.148468,6.199761,0,9.967326,0,0,0
-6,4.564348,0,6.148468,6.199761,0,6.9,0,0,0
-2,4.564348,0,6.148468,6.199761,0,6.9,0,0,0
-0,4.564348,0,6.148468,6.199761,0,6.9,0,0,0
-2,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-6,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,20.7,1,0,0
-5,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-6,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-0,0,1,6.200184,6.160541,0,9.967326,0,0,0
-3,0,1,6.200184,6.160541,0,9.967326,0,0,0
-0,0,1,6.200184,6.160541,0,9.967326,0,0,0
-0,0,1,6.200184,6.160541,0,17.2,0,0,0
-2,0,1,6.200184,6.160541,0,17.2,0,0,0
-2,0,1,6.200184,6.160541,0,17.2,0,0,0
-1,0,1,6.200184,6.160541,0,9.967326,0,0,0
-2,0,1,6.200184,6.160541,0,9.967326,0,0,0
-1,0,1,6.200184,6.160541,0,9.967326,0,0,0
-0,0,1,6.200184,6.160541,0,3.4,0,0,0
-2,0,1,6.200184,6.160541,0,3.4,0,0,0
-0,0,1,6.200184,6.160541,0,3.4,0,0,0
-0,0,0,4.922023,0,1,24.1,1,0,0
-0,0,0,4.922023,0,1,24.1,1,0,0
-0,0,0,4.922023,0,1,24.1,1,0,0
-6,0,0,0,0,0,3.4,0,0,0
-6,0,0,0,0,0,3.4,0,0,0
-10,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-7,0,0,5.45018,0,0,6.9,0,0,0
-6,0,0,5.45018,0,0,6.9,0,0,0
-3,0,0,5.45018,0,0,6.9,0,0,0
-1,0,0,5.45018,0,0,3.4,0,0,0
-1,0,0,5.45018,0,0,3.4,0,0,0
-3,0,0,5.45018,0,0,3.4,0,0,0
-7,0,0,5.45018,0,0,6.9,0,1,0
-4,0,0,5.45018,0,0,6.9,0,1,0
-2,0,0,5.45018,0,0,6.9,0,1,0
-4,0,0,5.45018,0,0,20.7,1,0,0
-9,0,0,5.45018,0,0,20.7,1,0,0
-14,0,0,5.45018,0,0,20.7,1,0,0
-21,0,0,5.45018,0,1,34.5,0,0,1
-6,0,0,5.45018,0,1,34.5,0,0,1
-6,0,0,5.45018,0,1,34.5,0,0,1
-2,4.564348,0,6.818924,6.870217,0,10.3,0,1,0
-6,4.564348,0,6.818924,6.870217,0,10.3,0,1,0
-1,4.564348,0,6.818924,6.870217,0,10.3,0,1,0
-1,4.564348,0,6.818924,6.870217,0,10.3,0,1,0
-5,4.564348,0,6.818924,6.870217,0,10.3,0,1,0
-7,4.564348,0,6.818924,6.870217,0,9.967326,1,0,0
-4,4.564348,0,6.818924,6.870217,0,9.967326,1,0,0
-2,4.564348,0,6.818924,6.870217,0,9.967326,1,0,0
-2,4.564348,0,6.818924,6.870217,0,9.967326,1,0,0
-3,4.564348,0,6.818924,6.870217,0,9.967326,1,0,0
-3,4.564348,0,6.818924,6.870217,0,3.4,0,0,0
-2,4.564348,0,6.818924,6.870217,0,3.4,0,0,0
-0,4.564348,0,6.818924,6.870217,0,3.4,0,0,0
-1,4.564348,0,6.818924,6.870217,0,3.4,0,0,0
-3,4.564348,0,6.818924,6.870217,0,3.4,0,0,0
-3,0,1,5.600494,5.061929,0,3.4,0,0,0
-4,0,1,5.600494,5.061929,0,3.4,0,0,0
-3,0,1,5.600494,5.061929,0,3.4,0,0,0
-15,0,0,0,0,1,27.6,0,1,0
-11,0,0,0,0,1,27.6,0,1,0
-9,0,0,0,0,1,27.6,0,1,0
-0,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-2,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-1,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-0,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-0,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-2,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-0,4.564348,0,6.620073,6.671367,0,10.3,0,0,0
-1,4.564348,0,6.620073,6.671367,0,10.3,0,0,0
-2,4.564348,0,6.620073,6.671367,0,10.3,0,0,0
-0,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-1,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-0,4.564348,0,6.620073,6.671367,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-6,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-10,0,0,0,0,0,9.967326,0,1,0
-5,0,0,0,0,0,9.967326,0,1,0
-2,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-10,0,0,0,0,0,9.967326,1,0,0
-7,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-6,0,0,0,0,0,9.967326,1,0,0
-38,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,1,10.3,1,0,0
-3,0,0,0,0,1,10.3,1,0,0
-2,0,0,0,0,1,10.3,1,0,0
-8,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-7,0,0,0,0,0,34.5,1,0,0
-8,0,0,0,0,0,34.5,1,0,0
-7,0,0,0,0,0,34.5,1,0,0
-2,0,1,5.703783,5.755076,1,6.9,0,0,0
-2,0,1,5.703783,5.755076,1,6.9,0,0,0
-3,0,1,5.703783,5.755076,1,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,10.3,0,0,0
-1,0,1,5.703783,5.755076,0,10.3,0,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,0,0
-1,0,0,6.239028,0,0,10.3,1,0,0
-1,0,0,6.239028,0,0,10.3,1,0,0
-2,0,0,6.239028,0,0,10.3,1,0,0
-6,0,0,6.239028,0,0,3.4,1,0,0
-2,0,0,6.239028,0,0,3.4,1,0,0
-4,0,0,6.239028,0,0,3.4,1,0,0
-3,0,0,6.239028,0,0,20.7,0,0,0
-3,0,0,6.239028,0,0,20.7,0,0,0
-4,0,0,6.239028,0,0,20.7,0,0,0
-8,0,0,6.239028,0,1,41.4,1,0,0
-7,0,0,6.239028,0,1,41.4,1,0,0
-4,0,0,6.239028,0,1,41.4,1,0,0
-3,0,1,0,5.755076,0,6.9,1,0,0
-7,0,1,0,5.755076,0,6.9,1,0,0
-6,0,1,0,5.755076,0,6.9,1,0,0
-1,0,1,0,5.755076,0,6.9,1,0,0
-3,0,1,0,5.755076,0,6.9,1,0,0
-4,0,1,0,5.755076,0,10.3,1,0,0
-5,0,1,0,5.755076,0,10.3,1,0,0
-5,0,1,0,5.755076,0,10.3,1,0,0
-3,0,1,0,5.755076,0,10.3,1,0,0
-0,0,1,0,5.755076,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-9,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-8,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-7,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,0,1,0
-2,3.258096,0,6.620073,8.006368,0,17.2,0,1,0
-3,3.258096,0,6.620073,8.006368,0,17.2,0,1,0
-18,3.258096,0,6.017132,7.403427,0,17.2,0,1,0
-11,3.258096,0,6.017132,7.403427,0,17.2,0,1,0
-9,3.258096,0,6.017132,7.403427,0,17.2,0,1,0
-3,3.258096,0,6.017132,7.403427,0,9.967326,1,0,0
-2,3.258096,0,6.017132,7.403427,0,9.967326,1,0,0
-2,3.258096,0,6.017132,7.403427,0,9.967326,1,0,0
-7,3.258096,0,6.017132,7.403427,0,9.967326,0,0,0
-7,3.258096,0,6.017132,7.403427,0,9.967326,0,0,0
-20,3.258096,0,6.017132,7.403427,0,9.967326,0,0,0
-1,0,1,5.010635,5.061929,0,20.7,1,0,0
-0,0,1,5.010635,5.061929,0,20.7,1,0,0
-0,0,1,5.010635,5.061929,0,20.7,1,0,0
-0,4.564348,0,6.185694,6.236988,0,0,0,0,0
-0,4.564348,0,6.185694,6.236988,0,0,0,0,0
-1,4.564348,0,6.185694,6.236988,0,0,0,0,0
-0,4.564348,0,6.185694,6.236988,0,0,0,0,0
-0,4.564348,0,6.185694,6.236988,0,0,0,0,0
-1,4.564348,0,6.185694,6.236988,1,6.9,1,0,0
-0,4.564348,0,6.185694,6.236988,1,6.9,1,0,0
-1,4.564348,0,6.185694,6.236988,1,6.9,1,0,0
-0,4.564348,0,6.185694,6.236988,1,6.9,1,0,0
-3,4.564348,0,6.185694,6.236988,1,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,24.1,0,0,0
-1,0,1,6.109248,6.160541,0,24.1,0,0,0
-0,0,1,6.109248,6.160541,0,24.1,0,0,0
-6,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-5,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,5.010635,5.061929,0,6.9,0,0,0
-1,0,1,5.010635,5.061929,0,6.9,0,0,0
-1,0,1,5.010635,5.061929,0,6.9,0,0,0
-11,3.258096,0,6.620073,8.006368,0,0,1,0,0
-6,3.258096,0,6.620073,8.006368,0,0,1,0,0
-10,3.258096,0,6.620073,8.006368,0,0,1,0,0
-7,3.258096,0,6.620073,8.006368,0,0,1,0,0
-5,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-6,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-8,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-7,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-7,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-5,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-6,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-9,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-9,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,0,0,3.594569,0,0,6.9,1,0,0
-3,0,0,3.594569,0,0,6.9,1,0,0
-1,0,0,3.594569,0,0,6.9,1,0,0
-3,0,0,3.594569,0,0,3.4,0,0,0
-4,0,0,3.594569,0,0,3.4,0,0,0
-4,0,0,3.594569,0,0,3.4,0,0,0
-1,0,0,3.594569,0,0,10.3,1,0,0
-3,0,0,3.594569,0,0,10.3,1,0,0
-1,0,0,3.594569,0,0,10.3,1,0,0
-6,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-44,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-1,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,1,3.4,1,0,0
-7,0,0,5.917603,0,0,10.3,1,0,0
-6,0,0,5.917603,0,0,10.3,1,0,0
-10,0,0,5.917603,0,0,10.3,1,0,0
-0,0,0,5.917603,0,0,9.967326,0,0,0
-2,0,0,5.917603,0,0,9.967326,0,0,0
-2,0,0,5.917603,0,0,9.967326,0,0,0
-1,0,0,5.917603,0,0,9.967326,0,0,0
-3,0,0,5.917603,0,0,9.967326,0,0,0
-2,0,0,5.917603,0,0,9.967326,0,0,0
-0,0,0,5.917603,0,0,6.9,0,0,0
-1,0,0,5.917603,0,0,6.9,0,0,0
-1,0,0,5.917603,0,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,1,27.6,1,0,0
-6,0,1,6.109248,6.160541,1,27.6,1,0,0
-1,0,1,6.109248,6.160541,1,27.6,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,0,1,0,0
-1,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,0,5.061929,1,27.6,0,1,0
-0,0,1,0,5.061929,1,27.6,0,1,0
-1,0,1,0,5.061929,1,27.6,0,1,0
-1,0,1,0,5.061929,1,27.6,0,1,0
-1,0,1,0,5.061929,1,27.6,0,1,0
-2,0,1,6.109248,6.160541,1,0,1,0,0
-1,0,1,6.109248,6.160541,1,0,1,0,0
-1,0,1,6.109248,6.160541,1,0,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,1,9.967326,1,0,0
-0,0,1,6.109248,6.160541,1,9.967326,1,0,0
-5,0,1,6.109248,6.160541,1,9.967326,1,0,0
-4,0,0,5.566358,0,0,3.4,0,0,0
-1,0,0,5.566358,0,0,3.4,0,0,0
-2,0,0,5.566358,0,0,3.4,0,0,0
-10,0,0,5.566358,0,1,9.967326,0,0,0
-5,0,0,5.566358,0,1,9.967326,0,0,0
-2,0,0,5.566358,0,1,9.967326,0,0,0
-3,0,0,5.566358,0,0,0,0,0,0
-2,0,0,5.566358,0,0,0,0,0,0
-0,0,0,5.566358,0,0,0,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-13,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,1,20.7,1,0,0
-6,0,0,0,0,1,20.7,1,0,0
-1,0,0,0,0,1,20.7,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,0,9.967326,1,0,0
-3,0,0,5.45018,0,1,17.2,1,0,0
-2,0,0,5.45018,0,1,17.2,1,0,0
-6,0,0,5.45018,0,1,17.2,1,0,0
-3,0,0,5.45018,0,0,6.9,0,0,0
-1,0,0,5.45018,0,0,6.9,0,0,0
-3,0,0,5.45018,0,0,6.9,0,0,0
-2,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,0,13.8,0,0,0
-0,0,1,5.703783,5.755076,0,13.8,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-2,4.564348,0,5.438079,5.489373,0,13.8,0,1,0
-0,4.564348,0,5.438079,5.489373,0,13.8,0,1,0
-9,4.564348,0,5.438079,5.489373,0,13.8,0,1,0
-1,3.258096,0,6.561596,7.947891,0,17.2,0,0,0
-1,3.258096,0,6.561596,7.947891,0,17.2,0,0,0
-0,3.258096,0,6.561596,7.947891,0,17.2,0,0,0
-2,3.258096,0,6.561596,7.947891,0,10.3,1,0,0
-4,3.258096,0,6.561596,7.947891,0,10.3,1,0,0
-5,3.258096,0,6.561596,7.947891,0,10.3,1,0,0
-0,3.258096,0,6.561596,7.947891,0,9.967326,0,0,0
-1,3.258096,0,6.561596,7.947891,0,9.967326,0,0,0
-0,3.258096,0,6.561596,7.947891,0,9.967326,0,0,0
-0,3.258096,0,6.561596,7.947891,0,6.9,1,0,0
-0,3.258096,0,6.561596,7.947891,0,6.9,1,0,0
-0,3.258096,0,6.561596,7.947891,0,6.9,1,0,0
-0,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-1,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-0,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-2,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-1,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-6,3.258096,0,5.068904,6.455199,0,9.967326,0,0,0
-4,3.258096,0,5.068904,6.455199,1,17.2,1,0,0
-5,3.258096,0,5.068904,6.455199,1,17.2,1,0,0
-2,3.258096,0,5.068904,6.455199,1,17.2,1,0,0
-3,0,0,6.061457,0,1,13.8,0,1,0
-4,0,0,6.061457,0,1,13.8,0,1,0
-4,0,0,6.061457,0,1,13.8,0,1,0
-0,0,0,6.061457,0,0,13.8,0,0,0
-1,0,0,6.061457,0,0,13.8,0,0,0
-0,0,0,6.061457,0,0,13.8,0,0,0
-1,0,0,7.128143,0,0,6.9,0,0,0
-1,0,0,7.128143,0,0,6.9,0,0,0
-1,0,0,7.128143,0,0,6.9,0,0,0
-2,0,0,7.128143,0,0,0,0,0,0
-5,0,0,7.128143,0,0,0,0,0,0
-1,0,0,7.128143,0,0,0,0,0,0
-1,0,0,7.128143,0,0,0,0,0,0
-9,0,0,7.128143,0,0,0,0,0,0
-2,0,0,7.128143,0,0,0,0,0,0
-1,0,0,7.128143,0,0,9.967326,0,0,0
-2,0,0,7.128143,0,0,9.967326,0,0,0
-1,0,0,7.128143,0,0,9.967326,0,0,0
-1,0,0,7.128143,0,0,17.2,0,0,0
-2,0,0,7.128143,0,0,17.2,0,0,0
-4,0,0,7.128143,0,0,17.2,0,0,0
-2,0,0,7.128143,0,1,9.967326,0,0,0
-6,0,0,7.128143,0,1,9.967326,0,0,0
-4,0,0,7.128143,0,1,9.967326,0,0,0
-1,0,0,7.128143,0,0,9.967326,0,0,0
-2,0,0,7.128143,0,0,9.967326,0,0,0
-4,0,0,7.128143,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,1,17.2,0,1,0
-1,0,0,0,0,1,17.2,0,1,0
-2,0,0,0,0,1,17.2,0,1,0
-1,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,1,0
-4,0,0,0,0,0,9.967326,0,1,0
-2,0,0,0,0,0,9.967326,0,1,0
-17,0,1,6.772897,6.160541,0,13.8,1,0,0
-16,0,1,6.772897,6.160541,0,13.8,1,0,0
-10,0,1,6.772897,6.160541,0,13.8,1,0,0
-0,0,1,6.772897,6.160541,0,9.967326,0,0,0
-2,0,1,6.772897,6.160541,0,9.967326,0,0,0
-2,0,1,6.772897,6.160541,0,9.967326,0,0,0
-0,0,1,6.772897,6.160541,0,0,1,0,0
-1,0,1,6.772897,6.160541,0,0,1,0,0
-3,0,1,6.772897,6.160541,0,0,1,0,0
-10,3.931826,0,0,6.818924,.1572505,9.967326,0,0,1
-6,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-7,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,0,0,0,0
-7,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-6,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-7,0,0,4.175003,0,0,13.8,0,0,0
-2,0,0,4.175003,0,0,13.8,0,0,0
-4,0,0,4.175003,0,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.367501,6.418794,0,9.967326,0,0,0
-0,4.564348,0,6.367501,6.418794,0,9.967326,0,0,0
-0,4.564348,0,6.367501,6.418794,0,9.967326,0,0,0
-2,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-0,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-1,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-1,4.564348,0,6.367501,6.418794,0,27.6,1,0,0
-4,4.564348,0,6.367501,6.418794,0,27.6,1,0,0
-2,4.564348,0,6.367501,6.418794,0,27.6,1,0,0
-2,4.564348,0,6.367501,6.418794,0,10.3,1,0,0
-1,4.564348,0,6.367501,6.418794,0,10.3,1,0,0
-0,4.564348,0,6.367501,6.418794,0,10.3,1,0,0
-1,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-0,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-2,4.564348,0,6.367501,6.418794,0,9.967326,1,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-4,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.258096,0,6.332569,7.718863,0,6.9,0,0,0
-0,3.258096,0,6.332569,7.718863,0,6.9,0,0,0
-0,3.258096,0,6.332569,7.718863,0,6.9,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-9,0,0,0,0,.1572505,9.967326,0,0,0
-9,0,0,0,0,.1572505,9.967326,0,0,0
-7,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,5.426711,0,0,3.4,0,0,0
-0,0,0,5.426711,0,0,3.4,0,0,0
-3,0,0,5.426711,0,0,3.4,0,0,0
-0,0,0,5.426711,0,0,3.4,0,0,0
-0,0,0,5.426711,0,0,3.4,0,0,0
-8,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-4,0,0,0,0,.1572505,9.967326,0,0,0
-0,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-3,0,0,5.911122,0,0,13.8,1,0,0
-1,0,0,5.911122,0,0,13.8,1,0,0
-2,0,0,5.911122,0,0,13.8,1,0,0
-2,0,0,5.911122,0,0,13.8,1,0,0
-2,0,0,5.911122,0,0,13.8,1,0,0
-1,0,0,5.911122,0,0,6.9,1,0,0
-0,0,0,5.911122,0,0,6.9,1,0,0
-3,0,0,5.911122,0,0,6.9,1,0,0
-8,0,0,5.911122,0,0,6.9,1,0,0
-3,0,0,5.911122,0,0,6.9,1,0,0
-0,0,0,5.911122,0,0,0,1,0,0
-1,0,0,5.911122,0,0,0,1,0,0
-2,0,0,5.911122,0,0,0,1,0,0
-2,0,0,5.911122,0,0,0,1,0,0
-2,0,0,5.911122,0,0,0,1,0,0
-7,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,1,24.1,1,0,0
-1,0,0,0,0,1,24.1,1,0,0
-0,0,0,0,0,1,24.1,1,0,0
-1,0,0,0,0,1,24.1,1,0,0
-1,0,0,0,0,1,24.1,1,0,0
-8,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,.0431267,9.967326,0,1,0
-2,0,0,0,0,.0431267,9.967326,0,1,0
-3,0,0,0,0,.0431267,9.967326,0,1,0
-2,0,0,0,0,1,20.7,0,1,0
-11,0,0,0,0,1,20.7,0,1,0
-4,0,0,0,0,1,20.7,0,1,0
-9,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-8,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,3.258096,0,5.991465,7.377759,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-3,4.564348,0,6.159518,6.262295,0,17.2,0,1,0
-2,4.564348,0,6.159518,6.262295,0,17.2,0,1,0
-3,4.564348,0,6.159518,6.262295,0,17.2,0,1,0
-2,4.564348,0,6.159518,6.262295,0,17.2,0,1,0
-2,4.564348,0,6.159518,6.262295,0,17.2,0,1,0
-2,4.564348,0,6.159518,6.262295,0,3.4,1,0,0
-0,4.564348,0,6.159518,6.262295,0,3.4,1,0,0
-1,4.564348,0,6.159518,6.262295,0,3.4,1,0,0
-1,4.564348,0,6.159518,6.262295,0,3.4,1,0,0
-1,4.564348,0,6.159518,6.262295,0,3.4,1,0,0
-1,4.564348,0,6.159518,6.262295,0,3.4,0,0,0
-0,4.564348,0,6.159518,6.262295,0,3.4,0,0,0
-0,4.564348,0,6.159518,6.262295,0,3.4,0,0,0
-0,4.564348,0,6.159518,6.262295,0,3.4,0,0,0
-0,4.564348,0,6.159518,6.262295,0,3.4,0,0,0
-3,0,0,5.796483,0,0,3.4,0,0,0
-1,0,0,5.796483,0,0,3.4,0,0,0
-0,0,0,5.796483,0,0,3.4,0,0,0
-1,0,0,5.796483,0,0,3.4,0,0,0
-0,0,0,5.796483,0,0,3.4,0,0,0
-4,0,0,5.796483,0,0,6.9,0,0,0
-6,0,0,5.796483,0,0,6.9,0,0,0
-7,0,0,5.796483,0,0,6.9,0,0,0
-1,0,0,5.796483,0,0,6.9,0,0,0
-4,0,0,5.796483,0,0,6.9,0,0,0
-1,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-1,3.258096,0,0,7.755767,0,9.967326,0,0,0
-1,3.258096,0,0,7.755767,0,9.967326,0,0,0
-12,3.258096,0,0,7.755767,0,6.9,0,0,0
-0,3.258096,0,0,7.755767,0,6.9,0,0,0
-4,3.258096,0,0,7.755767,0,6.9,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-1,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,9.967326,0,0,0
-0,3.258096,0,0,7.755767,0,3.4,0,1,0
-0,3.258096,0,0,7.755767,0,3.4,0,1,0
-0,3.258096,0,0,7.755767,0,3.4,0,1,0
-1,0,1,5.010635,5.061929,0,24.1,1,0,0
-0,0,1,5.010635,5.061929,0,24.1,1,0,0
-0,0,1,5.010635,5.061929,0,24.1,1,0,0
-7,0,1,5.703783,5.755076,0,13.8,0,0,0
-14,0,1,5.703783,5.755076,0,13.8,0,0,0
-23,0,1,5.703783,5.755076,0,13.8,0,0,0
-14,0,1,5.703783,5.755076,0,13.8,0,0,0
-16,0,1,5.703783,5.755076,0,13.8,0,0,0
-21,0,1,5.703783,5.755076,0,20.7,0,0,0
-7,0,1,5.703783,5.755076,0,20.7,0,0,0
-5,0,1,5.703783,5.755076,0,20.7,0,0,0
-15,0,1,5.703783,5.755076,0,20.7,0,0,0
-5,0,1,5.703783,5.755076,0,20.7,0,0,0
-4,4.564348,0,6.620073,6.671367,0,17.2,1,0,0
-4,4.564348,0,6.620073,6.671367,0,17.2,1,0,0
-3,4.564348,0,6.620073,6.671367,0,17.2,1,0,0
-4,0,1,0,6.160541,0,0,0,0,0
-2,0,1,0,6.160541,0,0,0,0,0
-0,0,1,0,6.160541,0,0,0,0,0
-0,0,1,0,6.160541,0,0,0,0,0
-0,0,1,0,6.160541,0,0,0,0,0
-0,0,1,0,6.160541,0,0,0,0,0
-1,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-5,0,1,5.010635,5.061929,0,20.7,0,0,0
-1,0,1,5.010635,5.061929,0,20.7,0,0,0
-6,0,1,5.010635,5.061929,0,20.7,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-5,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,0,0,0
-3,0,1,5.703783,5.755076,1,17.2,1,0,0
-0,0,1,5.703783,5.755076,1,17.2,1,0,0
-2,0,1,5.703783,5.755076,1,17.2,1,0,0
-1,0,1,5.703783,5.755076,0,13.8,1,0,0
-0,0,1,5.703783,5.755076,0,13.8,1,0,0
-1,0,1,5.703783,5.755076,0,13.8,1,0,0
-2,0,1,5.50655,5.061929,1,10.3,1,0,0
-4,0,1,5.50655,5.061929,1,10.3,1,0,0
-11,0,1,5.50655,5.061929,1,10.3,1,0,0
-11,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-3,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-5,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-5,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.258096,0,6.324359,7.710653,1,27.6,0,0,0
-6,3.258096,0,6.324359,7.710653,1,27.6,0,0,0
-6,3.258096,0,6.324359,7.710653,1,27.6,0,0,0
-6,3.258096,0,6.324359,7.710653,1,27.6,0,0,0
-9,3.258096,0,6.324359,7.710653,1,27.6,0,0,0
-1,3.258096,0,6.324359,7.710653,0,3.4,0,0,0
-0,3.258096,0,6.324359,7.710653,0,3.4,0,0,0
-1,3.258096,0,6.324359,7.710653,0,3.4,0,0,0
-2,3.258096,0,6.324359,7.710653,0,3.4,0,0,0
-0,3.258096,0,6.324359,7.710653,0,3.4,0,0,0
-2,3.258096,0,6.324359,7.710653,0,6.9,0,0,0
-0,3.258096,0,6.324359,7.710653,0,6.9,0,0,0
-2,3.258096,0,6.324359,7.710653,0,6.9,0,0,0
-2,3.258096,0,6.324359,7.710653,0,6.9,0,0,0
-0,3.258096,0,6.324359,7.710653,0,6.9,0,0,0
-1,3.258096,0,6.324359,7.710653,0,9.967326,0,0,0
-0,3.258096,0,6.324359,7.710653,0,9.967326,0,0,0
-1,3.258096,0,6.324359,7.710653,0,9.967326,0,0,0
-1,3.258096,0,6.324359,7.710653,0,9.967326,0,0,0
-2,3.258096,0,6.324359,7.710653,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-8,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-12,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,1,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,1,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,1,17.2,0,0,0
-4,3.258096,0,6.620073,8.006368,1,17.2,0,0,0
-2,3.258096,0,6.620073,8.006368,1,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,1,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,1,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,1,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,1,3.4,0,0,0
-6,3.258096,0,6.620073,8.006368,1,3.4,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-6,0,0,4.60517,0,0,6.9,0,0,0
-10,0,0,4.60517,0,0,6.9,0,0,0
-5,0,0,4.60517,0,0,6.9,0,0,0
-13,0,0,4.60517,0,0,13.8,1,0,0
-1,0,0,4.60517,0,0,13.8,1,0,0
-1,0,0,4.60517,0,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-5,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-10,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-15,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-11,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-7,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,0,0,6.256287,0,1,48.3,0,1,0
-0,0,0,6.256287,0,1,48.3,0,1,0
-2,0,0,6.256287,0,1,48.3,0,1,0
-7,0,0,6.256287,0,1,20.7,1,0,0
-4,0,0,6.256287,0,1,20.7,1,0,0
-4,0,0,6.256287,0,1,20.7,1,0,0
-4,0,0,6.256287,0,0,13.8,1,0,0
-3,0,0,6.256287,0,0,13.8,1,0,0
-1,0,0,6.256287,0,0,13.8,1,0,0
-0,0,0,6.256287,0,0,9.967326,0,1,0
-0,0,0,6.256287,0,0,9.967326,0,1,0
-4,0,0,6.256287,0,0,9.967326,0,1,0
-2,0,0,6.256287,0,0,9.967326,1,0,0
-2,0,0,6.256287,0,0,9.967326,1,0,0
-5,0,0,6.256287,0,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-7,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-4,0,0,0,0,0,17.2,0,0,0
-6,0,0,0,0,0,3.4,1,0,0
-6,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-13,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-8,0,0,0,0,0,9.967326,0,0,0
-14,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-9,0,0,0,0,0,9.967326,0,0,0
-8,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-1,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-2,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,1,0
-1,0,1,6.109248,6.160541,0,9.967326,0,1,0
-3,0,1,6.109248,6.160541,0,9.967326,0,1,0
-1,0,1,6.109248,6.160541,0,9.967326,0,1,0
-3,0,1,6.109248,6.160541,0,9.967326,0,1,0
-6,3.931826,0,0,7.600903,0,20.7,0,0,0
-1,3.931826,0,0,7.600903,0,20.7,0,0,0
-4,3.931826,0,0,7.600903,0,20.7,0,0,0
-5,3.931826,0,0,7.600903,0,20.7,0,0,0
-4,3.931826,0,0,7.600903,0,20.7,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-1,3.931826,0,0,7.600903,0,3.4,0,0,0
-10,3.931826,0,0,7.600903,0,9.967326,0,0,0
-11,3.931826,0,0,7.600903,0,9.967326,0,0,0
-6,3.931826,0,0,7.600903,0,9.967326,0,0,0
-2,3.931826,0,0,7.600903,0,9.967326,0,0,0
-2,3.931826,0,0,7.600903,0,9.967326,0,0,0
-0,3.931826,0,0,7.600903,0,6.9,0,0,0
-2,3.931826,0,0,7.600903,0,6.9,0,0,0
-0,3.931826,0,0,7.600903,0,6.9,0,0,0
-2,3.931826,0,0,7.600903,0,6.9,0,0,0
-0,3.931826,0,0,7.600903,0,6.9,0,0,0
-1,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-1,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-2,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-0,0,1,0,6.160541,0,9.967326,0,0,0
-1,0,1,0,6.160541,0,6.9,0,0,0
-0,0,1,0,6.160541,0,6.9,0,0,0
-0,0,1,0,6.160541,0,6.9,0,0,0
-5,0,0,4.356709,0,0,9.967326,0,0,0
-1,0,0,4.356709,0,0,9.967326,0,0,0
-3,0,0,4.356709,0,0,9.967326,0,0,0
-3,0,0,4.356709,0,0,6.9,0,0,0
-0,0,0,4.356709,0,0,6.9,0,0,0
-2,0,0,4.356709,0,0,6.9,0,0,0
-2,0,0,4.356709,0,0,6.9,0,0,0
-0,0,0,4.356709,0,0,6.9,0,0,0
-0,0,0,4.356709,0,0,6.9,0,0,0
-6,0,0,6.64066,0,1,24.1,1,0,0
-4,0,0,6.64066,0,1,24.1,1,0,0
-7,0,0,6.64066,0,1,24.1,1,0,0
-0,0,0,6.64066,0,0,0,0,0,0
-10,0,0,6.64066,0,0,0,0,0,0
-11,0,0,6.64066,0,0,0,0,0,0
-3,0,0,0,0,0,13.8,1,0,0
-4,0,0,0,0,0,13.8,1,0,0
-4,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-6,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-4,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-2,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-10,4.564348,0,6.907755,6.959049,0,24.1,0,1,0
-2,4.564348,0,6.907755,6.959049,0,24.1,0,1,0
-11,4.564348,0,6.907755,6.959049,0,24.1,0,1,0
-2,4.564348,0,6.659294,6.710587,0,6.9,0,0,0
-6,4.564348,0,6.659294,6.710587,0,6.9,0,0,0
-2,4.564348,0,6.659294,6.710587,0,6.9,0,0,0
-5,4.564348,0,0,6.784695,0,6.9,0,0,0
-12,4.564348,0,0,6.784695,0,6.9,0,0,0
-2,4.564348,0,0,6.784695,0,6.9,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-1,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-2,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-2,0,1,5.352806,5.061929,.1572505,9.967326,1,0,0
-3,0,1,5.352806,5.061929,.1572505,9.967326,1,0,0
-7,0,1,5.352806,5.061929,.1572505,9.967326,1,0,0
-1,0,0,5.51986,0,0,6.9,1,0,0
-3,0,0,5.51986,0,0,6.9,1,0,0
-0,0,0,5.51986,0,0,6.9,1,0,0
-4,0,0,5.51986,0,1,13.8,0,0,1
-7,0,0,5.51986,0,1,13.8,0,0,1
-10,0,0,5.51986,0,1,13.8,0,0,1
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-6,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-7,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-7,0,0,0,0,0,9.967326,1,0,0
-6,0,0,0,0,0,9.967326,1,0,0
-31,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,0,0,0,0,13.8,1,0,0
-6,0,0,0,0,0,13.8,1,0,0
-5,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-2,0,0,5.040582,0,0,3.4,0,0,0
-2,0,0,5.040582,0,0,3.4,0,0,0
-8,0,0,5.040582,0,0,3.4,0,0,0
-1,0,0,5.45018,0,0,9.967326,1,0,0
-2,0,0,5.45018,0,0,9.967326,1,0,0
-2,0,0,5.45018,0,0,9.967326,1,0,0
-2,0,0,5.45018,0,0,9.967326,1,0,0
-3,0,0,5.45018,0,0,9.967326,1,0,0
-1,0,0,5.45018,0,0,9.967326,1,0,0
-0,0,0,5.45018,0,0,9.967326,1,0,0
-1,0,0,5.45018,0,0,9.967326,1,0,0
-0,0,0,5.45018,0,0,9.967326,1,0,0
-2,0,0,5.45018,0,0,9.967326,1,0,0
-0,0,0,5.45018,0,0,9.967326,0,0,0
-1,0,0,5.45018,0,0,9.967326,0,0,0
-0,0,0,5.45018,0,0,9.967326,0,0,0
-0,0,0,5.45018,0,0,9.967326,0,0,0
-2,0,0,5.45018,0,0,9.967326,0,0,0
-5,0,0,5.45018,0,0,6.9,1,0,0
-1,0,0,5.45018,0,0,6.9,1,0,0
-3,0,0,5.45018,0,0,6.9,1,0,0
-7,0,0,5.45018,0,0,6.9,1,0,0
-1,0,0,5.45018,0,0,6.9,1,0,0
-3,0,0,5.45018,0,0,3.4,1,0,0
-0,0,0,5.45018,0,0,3.4,1,0,0
-1,0,0,5.45018,0,0,3.4,1,0,0
-3,0,0,5.45018,0,0,3.4,1,0,0
-0,0,0,5.45018,0,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-5,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-6,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-6,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.586172,7.408531,0,0,0,0,0
-6,3.931826,0,6.586172,7.408531,0,0,0,0,0
-6,3.931826,0,6.586172,7.408531,0,0,0,0,0
-6,3.931826,0,6.586172,7.408531,0,0,0,0,0
-1,3.931826,0,6.586172,7.408531,0,0,0,0,0
-0,4.564348,0,5.247024,5.298317,0,17.2,0,0,0
-2,4.564348,0,6.586379,6.637672,1,20.7,0,0,0
-0,4.564348,0,6.586379,6.637672,1,20.7,0,0,0
-0,4.564348,0,6.586379,6.637672,1,20.7,0,0,0
-0,4.564348,0,6.586379,6.637672,0,6.9,0,0,0
-3,4.564348,0,6.586379,6.637672,0,6.9,0,0,0
-0,4.564348,0,6.586379,6.637672,0,6.9,0,0,0
-0,4.564348,0,6.586379,6.637672,0,9.967326,1,0,0
-0,4.564348,0,6.586379,6.637672,0,9.967326,1,0,0
-2,4.564348,0,6.586379,6.637672,0,9.967326,1,0,0
-0,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-4,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-1,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-0,4.564348,0,6.586379,6.637672,0,3.4,0,0,0
-5,4.564348,0,6.586379,6.637672,0,3.4,0,0,0
-1,4.564348,0,6.586379,6.637672,0,3.4,0,0,0
-0,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-3,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-0,4.564348,0,6.586379,6.637672,0,9.967326,0,0,0
-2,0,0,5.672085,0,0,3.4,0,0,0
-3,0,0,5.672085,0,0,3.4,0,0,0
-1,0,0,5.672085,0,0,3.4,0,0,0
-2,0,0,5.672085,0,0,3.4,0,0,0
-0,0,0,5.672085,0,0,3.4,0,0,0
-1,0,0,5.672085,0,0,3.4,0,0,0
-1,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-4,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-1,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-3,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-0,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-1,3.258096,0,6.131227,7.517521,0,37.9,1,0,0
-6,3.258096,0,6.131227,7.517521,0,37.9,1,0,0
-1,3.258096,0,6.131227,7.517521,0,37.9,1,0,0
-6,3.258096,0,6.131227,7.517521,0,37.9,1,0,0
-2,3.258096,0,6.131227,7.517521,0,37.9,1,0,0
-0,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-4,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-0,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-0,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-0,3.258096,0,6.131227,7.517521,0,9.967326,0,0,0
-1,3.258096,0,6.131227,7.517521,0,6.9,1,0,0
-2,3.258096,0,6.131227,7.517521,0,6.9,1,0,0
-0,3.258096,0,6.131227,7.517521,0,6.9,1,0,0
-0,3.258096,0,6.131227,7.517521,0,6.9,1,0,0
-0,3.258096,0,6.131227,7.517521,0,6.9,1,0,0
-2,0,0,0,0,0,20.7,0,0,0
-1,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-10,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-2,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-4,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-0,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-0,4.564348,0,5.164786,5.216079,0,3.4,0,0,0
-1,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-3,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-4,0,0,4.958078,0,0,13.8,1,0,0
-1,0,0,4.958078,0,0,13.8,1,0,0
-2,0,0,4.958078,0,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,4.564348,0,6.49224,6.543533,0,17.2,1,0,0
-5,4.564348,0,6.49224,6.543533,0,17.2,1,0,0
-2,4.564348,0,6.49224,6.543533,0,17.2,1,0,0
-8,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-4,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-3,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-0,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-2,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-0,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-1,4.564348,0,6.49224,6.543533,0,6.9,0,0,0
-7,4.564348,0,6.49224,6.543533,0,6.9,0,0,0
-0,4.564348,0,6.49224,6.543533,0,6.9,0,0,0
-6,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-5,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-0,4.564348,0,6.49224,6.543533,0,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-8,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-5,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-5,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-8,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-3,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-2,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-1,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-2,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-5,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,24.1,0,0,0
-0,0,0,0,0,0,24.1,0,0,0
-0,0,0,0,0,0,24.1,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-1,3.258096,0,6.476973,7.863267,0,10.3,1,0,0
-2,3.258096,0,6.476973,7.863267,0,10.3,1,0,0
-1,3.258096,0,6.476973,7.863267,0,10.3,1,0,0
-3,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-3,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-3,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-1,3.931826,0,5.416101,6.109248,0,6.9,1,0,0
-0,3.931826,0,5.416101,6.109248,0,6.9,1,0,0
-0,3.931826,0,5.416101,6.109248,0,6.9,1,0,0
-0,3.931826,0,5.416101,6.109248,0,9.967326,0,0,0
-1,3.931826,0,5.416101,6.109248,0,9.967326,0,0,0
-0,3.931826,0,5.416101,6.109248,0,9.967326,0,0,0
-6,0,0,6.965062,0,0,0,0,0,0
-1,0,0,6.965062,0,0,0,0,0,0
-0,0,0,6.965062,0,0,0,0,0,0
-1,0,0,6.965062,0,0,9.967326,0,0,0
-0,0,0,6.965062,0,0,9.967326,0,0,0
-1,0,0,6.965062,0,0,9.967326,0,0,0
-1,0,0,6.965062,0,0,10.3,0,0,0
-5,0,0,6.965062,0,0,10.3,0,0,0
-1,0,0,6.965062,0,0,10.3,0,0,0
-1,0,0,6.965062,0,0,9.967326,0,0,0
-0,0,0,6.965062,0,0,9.967326,0,0,0
-5,0,0,6.965062,0,0,9.967326,0,0,0
-7,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-4,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-6,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-6,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-13,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-5,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-2,0,1,5.703783,5.755076,0,9.967326,1,0,0
-0,0,1,5.703783,5.755076,0,9.967326,1,0,0
-0,0,1,5.703783,5.755076,0,9.967326,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-0,0,1,5.703783,5.755076,0,10.3,1,0,0
-2,0,1,5.703783,5.755076,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,1,0
-6,0,1,6.109248,6.160541,0,6.9,0,1,0
-2,0,1,6.109248,6.160541,0,6.9,0,1,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-18,0,1,6.109248,6.160541,0,6.9,1,0,0
-11,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-8,0,1,6.109248,6.160541,0,9.967326,1,0,0
-11,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-5,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-6,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-14,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-10,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,1,20.7,0,1,0
-0,0,1,6.109248,6.160541,1,20.7,0,1,0
-0,0,1,6.109248,6.160541,1,20.7,0,1,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,1,0
-1,0,1,6.109248,6.160541,0,9.967326,0,1,0
-0,0,1,6.109248,6.160541,0,9.967326,0,1,0
-5,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,3.258096,0,6.620073,8.006368,1,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,1,10.3,0,0,0
-2,3.258096,0,6.620073,8.006368,1,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-6,3.258096,0,6.620073,8.006368,0,0,0,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,1,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,1,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,1,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,4.564348,0,0,5.611975,0,0,0,0,0
-3,4.564348,0,0,5.611975,0,0,0,0,0
-0,4.564348,0,0,5.611975,0,0,0,0,0
-0,4.564348,0,5.926926,6.042758,0,13.8,0,0,0
-1,4.564348,0,5.926926,6.042758,0,13.8,0,0,0
-1,4.564348,0,5.926926,6.042758,0,13.8,0,0,0
-1,0,0,6.383034,0,0,0,0,1,0
-2,0,0,6.383034,0,0,0,0,1,0
-1,0,0,6.383034,0,0,0,0,1,0
-0,0,0,6.383034,0,0,3.4,0,1,0
-3,0,0,6.383034,0,0,3.4,0,1,0
-3,0,0,6.383034,0,0,3.4,0,1,0
-0,0,0,6.383034,0,0,9.967326,0,0,0
-1,0,0,6.383034,0,0,9.967326,0,0,0
-0,0,0,6.383034,0,0,9.967326,0,0,0
-23,0,0,6.383034,0,1,20.7,0,0,1
-72,0,0,6.383034,0,1,20.7,0,0,1
-18,0,0,6.383034,0,1,20.7,0,0,1
-3,0,0,6.383034,0,0,9.967326,1,0,0
-1,0,0,6.383034,0,0,9.967326,1,0,0
-3,0,0,6.383034,0,0,9.967326,1,0,0
-3,0,0,6.383034,0,1,0,0,0,1
-8,0,0,6.383034,0,1,0,0,0,1
-4,0,0,6.383034,0,1,0,0,0,1
-1,0,1,5.703783,5.755076,0,9.967326,0,0,0
-1,0,1,5.703783,5.755076,0,9.967326,0,0,0
-0,0,1,5.703783,5.755076,0,9.967326,0,0,0
-3,0,1,5.703783,5.755076,1,31,0,0,0
-1,0,1,5.703783,5.755076,1,31,0,0,0
-1,0,1,5.703783,5.755076,1,31,0,0,0
-5,0,1,5.010635,5.061929,1,10.3,0,1,0
-2,0,1,5.010635,5.061929,1,10.3,0,1,0
-1,0,1,5.703783,5.755076,0,10.3,0,0,0
-2,0,1,5.703783,5.755076,0,10.3,0,0,0
-3,0,1,5.703783,5.755076,0,10.3,0,0,0
-1,0,1,5.703783,5.755076,0,0,0,0,0
-1,0,1,5.703783,5.755076,0,0,0,0,0
-0,0,1,5.703783,5.755076,0,0,0,0,0
-3,0,0,6.660473,0,0,9.967326,0,0,0
-1,0,0,6.660473,0,0,9.967326,0,0,0
-6,0,0,6.660473,0,0,9.967326,0,0,0
-2,0,0,6.660473,0,1,3.4,0,0,0
-0,0,0,6.660473,0,1,3.4,0,0,0
-3,0,0,6.660473,0,1,3.4,0,0,0
-1,0,0,6.660473,0,0,10.3,1,0,0
-1,0,0,6.660473,0,0,10.3,1,0,0
-2,0,0,6.660473,0,0,10.3,1,0,0
-0,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-0,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-0,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-1,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-1,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-2,3.258096,0,6.418039,7.804333,0,3.4,0,0,0
-4,0,0,5.741848,0,0,13.8,1,0,0
-2,0,0,5.741848,0,0,13.8,1,0,0
-2,0,0,5.741848,0,0,13.8,1,0,0
-1,0,1,0,0,0,10.3,0,0,0
-9,0,0,5.741848,0,1,10.3,0,0,1
-7,0,0,5.741848,0,1,10.3,0,0,1
-15,0,0,5.741848,0,1,10.3,0,0,1
-5,4.564348,0,5.024538,5.075831,0,9.967326,0,0,0
-4,4.564348,0,5.024538,5.075831,0,9.967326,0,0,0
-1,4.564348,0,5.024538,5.075831,0,9.967326,0,0,0
-3,4.564348,0,5.024538,5.075831,1,20.7,0,1,0
-1,4.564348,0,5.024538,5.075831,1,20.7,0,1,0
-2,4.564348,0,5.024538,5.075831,1,20.7,0,1,0
-0,0,1,6.109248,6.160541,0,9.967326,0,1,0
-3,0,1,6.109248,6.160541,0,9.967326,0,1,0
-2,0,1,6.109248,6.160541,0,9.967326,0,1,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,1,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,5.289478,5.061929,1,10.3,0,1,0
-2,0,1,5.289478,5.061929,1,10.3,0,1,0
-1,0,1,5.289478,5.061929,1,10.3,0,1,0
-2,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-9,4.564348,0,6.407292,6.458586,0,13.8,0,0,0
-7,4.564348,0,6.407292,6.458586,0,13.8,0,0,0
-5,4.564348,0,6.407292,6.458586,0,13.8,0,0,0
-4,0,0,6.190643,0,1,6.9,1,0,0
-3,0,0,6.190643,0,1,6.9,1,0,0
-4,0,0,6.190643,0,1,6.9,1,0,0
-3,0,0,6.190643,0,0,6.9,1,0,0
-34,0,0,6.190643,0,0,6.9,1,0,0
-46,0,0,6.190643,0,0,6.9,1,0,0
-7,0,0,6.190643,0,1,13.8,0,0,0
-5,0,0,6.190643,0,1,13.8,0,0,0
-2,0,0,6.190643,0,1,13.8,0,0,0
-14,0,0,6.190643,0,0,3.4,0,0,0
-4,0,0,6.190643,0,0,3.4,0,0,0
-1,0,0,6.190643,0,0,3.4,0,0,0
-4,0,0,6.190643,0,0,0,0,0,0
-2,0,0,6.190643,0,0,0,0,0,0
-1,0,0,6.190643,0,0,0,0,0,0
-9,0,0,0,0,0,27.6,1,0,0
-5,0,0,0,0,0,27.6,1,0,0
-6,0,0,0,0,0,27.6,1,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-10,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-8,4.564348,0,6.052183,5.941943,1,24.1,0,1,0
-8,4.564348,0,6.052183,5.941943,1,24.1,0,1,0
-5,4.564348,0,6.052183,5.941943,1,24.1,0,1,0
-12,4.564348,0,6.052183,5.941943,1,24.1,0,1,0
-11,4.564348,0,6.052183,5.941943,1,24.1,0,1,0
-6,0,1,6.109248,6.160541,0,17.2,0,1,0
-13,0,1,6.109248,6.160541,0,17.2,0,1,0
-3,0,1,6.109248,6.160541,0,17.2,0,1,0
-8,0,1,6.109248,6.160541,0,17.2,0,1,0
-6,0,1,6.109248,6.160541,0,17.2,0,1,0
-5,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-8,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-9,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-9,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-7,0,0,5.352806,0,1,17.2,0,0,0
-6,0,0,5.352806,0,1,17.2,0,0,0
-2,0,0,5.352806,0,1,17.2,0,0,0
-7,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,1,24.1,1,0,0
-1,4.564348,0,6.907755,6.959049,1,24.1,1,0,0
-0,4.564348,0,6.907755,6.959049,1,24.1,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,1,9.967326,0,0,0
-2,0,1,6.109248,6.160541,1,9.967326,0,0,0
-1,0,1,6.109248,6.160541,1,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,1,0
-10,0,1,6.109248,6.160541,0,9.967326,0,1,0
-8,0,1,6.109248,6.160541,0,9.967326,0,1,0
-4,3.931826,0,6.835185,7.528332,0,3.4,0,0,0
-1,3.931826,0,6.835185,7.528332,0,3.4,0,0,0
-1,3.931826,0,6.835185,7.528332,0,3.4,0,0,0
-1,3.931826,0,6.835185,7.528332,0,27.6,1,0,0
-2,3.931826,0,6.835185,7.528332,0,27.6,1,0,0
-23,3.931826,0,6.835185,7.528332,0,27.6,1,0,0
-0,3.931826,0,6.835185,7.528332,0,9.967326,0,1,0
-1,3.931826,0,6.835185,7.528332,0,9.967326,0,1,0
-5,3.931826,0,6.835185,7.528332,0,9.967326,0,1,0
-0,3.931826,0,6.835185,7.528332,0,3.4,1,0,0
-0,3.931826,0,6.835185,7.528332,0,3.4,1,0,0
-5,3.931826,0,6.835185,7.528332,0,3.4,1,0,0
-6,4.564348,0,6.200184,6.249121,0,10.3,1,0,0
-2,4.564348,0,6.200184,6.249121,0,10.3,1,0,0
-6,4.564348,0,6.200184,6.249121,0,10.3,1,0,0
-7,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-3,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-5,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-3,3.258096,0,6.327937,7.714231,0,3.4,0,0,0
-5,3.258096,0,6.327937,7.714231,0,3.4,0,0,0
-2,3.258096,0,6.327937,7.714231,0,3.4,0,0,0
-5,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-5,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-3,3.258096,0,6.327937,7.714231,0,9.967326,0,0,0
-3,3.258096,0,6.327937,7.714231,0,10.3,0,0,0
-0,3.258096,0,6.327937,7.714231,0,10.3,0,0,0
-2,3.258096,0,6.327937,7.714231,0,10.3,0,0,0
-2,0,1,5.010635,5.061929,0,10.3,1,0,0
-1,0,1,5.010635,5.061929,0,10.3,1,0,0
-2,0,1,5.010635,5.061929,0,10.3,1,0,0
-5,0,1,5.010635,5.061929,0,20.7,0,0,0
-14,0,1,5.010635,5.061929,0,20.7,0,0,0
-1,0,1,5.010635,5.061929,0,20.7,0,0,0
-8,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-8,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-13,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-5,3.258096,0,6.620073,8.006368,1,44.8,1,0,0
-4,3.258096,0,6.620073,8.006368,1,44.8,1,0,0
-1,3.258096,0,6.620073,8.006368,1,44.8,1,0,0
-5,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-9,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.069814,7.456108,0,0,1,0,0
-5,3.258096,0,6.069814,7.456108,0,0,1,0,0
-3,3.258096,0,6.069814,7.456108,0,0,1,0,0
-0,3.258096,0,5.966147,7.352441,0,3.4,1,0,0
-1,3.258096,0,5.966147,7.352441,0,3.4,1,0,0
-1,3.258096,0,5.966147,7.352441,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,1,9.967326,0,1,0
-5,0,1,6.109248,6.160541,1,34.5,0,1,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-6,0,1,6.109248,6.160541,0,10.3,1,0,0
-7,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-7,0,1,6.109248,6.160541,0,13.8,1,0,0
-4,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-12,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-5,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-8,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-4,0,0,0,0,.1572505,9.967326,0,0,0
-3,0,0,0,0,.1572505,9.967326,0,0,0
-0,0,0,0,0,.1572505,9.967326,0,0,0
-5,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-3,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-3,0,0,0,0,.1572505,9.967326,0,0,0
-0,0,0,0,0,.1572505,9.967326,0,0,0
-1,0,0,0,0,.1572505,9.967326,0,0,0
-2,0,0,0,0,.1572505,9.967326,0,0,0
-6,3.258096,0,6.49224,7.878534,1,17.2,0,1,0
-6,3.258096,0,6.49224,7.878534,1,17.2,0,1,0
-4,3.258096,0,6.49224,7.878534,1,17.2,0,1,0
-1,3.258096,0,6.49224,7.878534,1,17.2,0,1,0
-8,3.258096,0,6.49224,7.878534,1,17.2,0,1,0
-6,3.258096,0,6.49224,7.878534,0,13.8,1,0,0
-2,3.258096,0,6.49224,7.878534,0,13.8,1,0,0
-4,3.258096,0,6.49224,7.878534,0,13.8,1,0,0
-5,3.258096,0,6.49224,7.878534,0,13.8,1,0,0
-8,3.258096,0,6.49224,7.878534,0,13.8,1,0,0
-5,3.258096,0,6.49224,7.878534,1,9.967326,1,0,0
-2,3.258096,0,6.49224,7.878534,1,9.967326,1,0,0
-7,3.258096,0,6.49224,7.878534,1,9.967326,1,0,0
-6,3.258096,0,6.49224,7.878534,1,9.967326,1,0,0
-6,3.258096,0,6.49224,7.878534,1,9.967326,1,0,0
-6,3.258096,0,6.49224,7.878534,0,9.967326,1,0,0
-5,3.258096,0,6.49224,7.878534,0,9.967326,1,0,0
-8,3.258096,0,6.49224,7.878534,0,9.967326,1,0,0
-4,3.258096,0,6.49224,7.878534,0,9.967326,1,0,0
-2,3.258096,0,6.49224,7.878534,0,9.967326,1,0,0
-16,3.258096,0,6.49224,7.878534,1,13.8,1,0,0
-2,3.258096,0,6.49224,7.878534,1,13.8,1,0,0
-12,3.258096,0,6.49224,7.878534,1,13.8,1,0,0
-5,3.258096,0,6.49224,7.878534,1,13.8,1,0,0
-14,3.258096,0,6.49224,7.878534,1,13.8,1,0,0
-4,3.258096,0,6.49224,7.878534,0,20.7,1,0,0
-4,3.258096,0,6.49224,7.878534,0,20.7,1,0,0
-2,3.258096,0,6.49224,7.878534,0,20.7,1,0,0
-4,3.258096,0,6.49224,7.878534,0,20.7,1,0,0
-5,3.258096,0,6.49224,7.878534,0,20.7,1,0,0
-0,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-2,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-1,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-1,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-1,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-6,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,0,1,0,0
-1,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,1,31,1,0,0
-0,0,1,6.109248,6.160541,1,31,1,0,0
-0,0,1,6.109248,6.160541,1,31,1,0,0
-4,0,1,6.109248,6.160541,1,24.1,1,0,0
-10,0,1,6.109248,6.160541,1,24.1,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,0,4.276666,0,0,3.4,0,0,0
-0,0,0,4.276666,0,0,3.4,0,0,0
-0,0,0,4.276666,0,0,3.4,0,0,0
-12,0,0,4.276666,0,1,20.7,0,0,0
-4,0,0,4.276666,0,1,20.7,0,0,0
-5,0,0,4.276666,0,1,20.7,0,0,0
-1,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,24.1,1,0,0
-1,0,0,0,0,0,24.1,1,0,0
-1,0,0,0,0,0,24.1,1,0,0
-2,0,0,0,0,0,24.1,1,0,0
-6,0,0,0,0,0,24.1,1,0,0
-1,4.564348,0,5.741848,5.937397,0,13.8,0,0,0
-2,4.564348,0,5.741848,5.937397,0,13.8,0,0,0
-5,4.564348,0,5.741848,5.937397,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-14,0,1,0,5.061929,1,24.1,1,0,0
-13,0,1,0,5.061929,1,24.1,1,0,0
-7,0,1,0,5.061929,1,24.1,1,0,0
-4,0,1,5.010635,5.061929,0,24.1,1,0,0
-11,0,1,5.010635,5.061929,0,24.1,1,0,0
-11,0,1,5.010635,5.061929,0,24.1,1,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,1,0,0
-1,3.258096,0,6.119858,7.506152,0,3.4,1,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,1,0,0
-0,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-1,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-2,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-2,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-0,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-1,3.258096,0,6.119858,7.506152,0,9.967326,0,0,0
-2,3.258096,0,6.119858,7.506152,0,6.9,0,0,0
-1,3.258096,0,6.119858,7.506152,0,6.9,0,0,0
-5,3.258096,0,6.119858,7.506152,0,6.9,0,0,0
-1,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-0,3.258096,0,6.119858,7.506152,0,3.4,0,0,0
-0,3.258096,0,5.497783,6.884077,0,6.9,0,0,0
-0,3.258096,0,5.497783,6.884077,0,6.9,0,0,0
-0,3.258096,0,5.497783,6.884077,0,6.9,0,0,0
-1,0,1,5.352806,5.061929,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-0,0,1,6.109248,6.160541,1,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-8,0,0,0,0,0,9.967326,0,0,0
-9,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-5,0,0,0,0,0,13.8,0,0,0
-2,4.564348,0,5.991465,6.042758,0,24.1,0,0,0
-1,4.564348,0,5.991465,6.042758,0,24.1,0,0,0
-0,4.564348,0,5.991465,6.042758,0,24.1,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-9,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-4,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,0,1,5.010635,5.061929,1,10.3,1,0,0
-0,0,1,5.010635,5.061929,1,10.3,1,0,0
-0,0,1,5.010635,5.061929,1,10.3,1,0,0
-0,0,1,5.010635,5.061929,1,10.3,1,0,0
-2,0,1,5.010635,5.061929,1,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,4.564348,0,6.605095,6.656388,0,10.3,1,0,0
-0,4.564348,0,6.605095,6.656388,0,10.3,1,0,0
-0,4.564348,0,6.605095,6.656388,0,10.3,1,0,0
-1,4.564348,0,6.605095,6.656388,0,3.4,0,0,0
-1,4.564348,0,6.605095,6.656388,0,3.4,0,0,0
-1,4.564348,0,6.605095,6.656388,0,3.4,0,0,0
-0,4.564348,0,6.605095,6.656388,0,6.9,0,0,0
-0,4.564348,0,6.605095,6.656388,0,6.9,0,0,0
-0,4.564348,0,6.605095,6.656388,0,6.9,0,0,0
-1,0,0,2.821379,0,0,10.3,0,0,0
-0,0,0,2.821379,0,0,10.3,0,0,0
-4,0,0,2.821379,0,0,10.3,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,5.352806,0,0,17.2,0,1,0
-3,0,0,5.352806,0,0,17.2,0,1,0
-2,0,0,5.352806,0,0,17.2,0,1,0
-6,0,0,6.953913,0,0,9.967326,0,0,0
-7,0,0,6.953913,0,0,9.967326,0,0,0
-4,0,0,6.953913,0,0,9.967326,0,0,0
-6,0,0,4.356709,0,0,9.967326,0,0,0
-16,0,0,4.356709,0,0,9.967326,0,0,0
-2,0,0,4.356709,0,0,9.967326,0,0,0
-5,0,0,4.356709,0,1,6.9,0,0,0
-5,0,0,4.356709,0,1,6.9,0,0,0
-5,0,0,4.356709,0,1,6.9,0,0,0
-8,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-9,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-4,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-1,0,0,6.364407,0,1,0,0,0,0
-0,0,0,6.364407,0,1,0,0,0,0
-2,0,0,6.364407,0,1,0,0,0,0
-0,0,0,6.364407,0,1,0,0,0,0
-1,0,0,6.364407,0,1,0,0,0,0
-4,0,0,6.364407,0,0,3.4,0,0,0
-2,0,0,6.364407,0,0,3.4,0,0,0
-4,0,0,6.364407,0,0,3.4,0,0,0
-1,0,0,6.364407,0,0,3.4,0,0,0
-2,0,0,6.364407,0,0,3.4,0,0,0
-5,4.564348,0,0,0,.0268456,9.967326,0,0,0
-0,4.564348,0,0,0,.0268456,9.967326,0,0,0
-2,4.564348,0,0,0,.0268456,9.967326,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,4.564348,0,6.620073,6.671367,0,6.9,0,0,0
-3,4.564348,0,6.620073,6.671367,0,6.9,0,0,0
-0,4.564348,0,6.620073,6.671367,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-1,3.931826,0,5.416101,6.109248,1,9.967326,0,0,0
-2,3.931826,0,5.416101,6.109248,1,9.967326,0,0,0
-1,3.931826,0,5.416101,6.109248,1,9.967326,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-9,0,1,6.109248,6.160541,0,9.967326,0,0,0
-11,0,1,6.109248,6.160541,0,9.967326,0,0,0
-17,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,0,0,6.087683,0,0,13.8,0,0,0
-2,0,0,6.087683,0,0,13.8,0,0,0
-9,0,0,6.087683,0,0,13.8,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-7,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-6,0,0,0,0,0,0,0,0,0
-1,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-2,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-2,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-4,0,0,5.629059,0,.0268456,9.967326,0,0,0
-1,0,0,5.629059,0,.0268456,9.967326,0,0,0
-2,0,0,5.629059,0,.0268456,9.967326,0,0,0
-2,0,0,5.629059,0,.0268456,9.967326,0,0,0
-5,3.931826,0,6.253829,7.600903,.0268456,9.967326,0,0,0
-1,3.931826,0,6.253829,7.600903,.0268456,9.967326,0,0,0
-7,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-1,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-13,0,0,6.953913,0,.0268456,9.967326,0,0,0
-14,0,0,6.953913,0,.0268456,9.967326,0,0,0
-5,0,0,0,0,.0268456,9.967326,0,0,0
-2,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-3,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-2,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-4,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,.0268456,9.967326,0,0,0
-7,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-6,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-9,3.258096,0,5.966147,7.352441,.0268456,9.967326,0,0,0
-5,3.258096,0,5.966147,7.352441,.0268456,9.967326,0,0,0
-1,0,1,6.694067,6.160541,.0268456,9.967326,0,0,0
-4,0,0,5.796483,0,.0268456,9.967326,0,0,0
-5,0,0,5.796483,0,.0268456,9.967326,0,0,0
-6,0,0,5.796483,0,.0268456,9.967326,0,0,0
-8,3.258096,0,6.49224,7.878534,.0268456,9.967326,0,0,0
-5,3.258096,0,6.49224,7.878534,.0268456,9.967326,0,0,0
-5,3.258096,0,6.49224,7.878534,.0268456,9.967326,0,0,0
-7,0,0,5.566358,0,.0268456,9.967326,0,0,0
-12,0,0,6.660473,0,.0268456,9.967326,0,0,0
-8,0,0,4.832943,0,.0268456,9.967326,0,0,0
-4,0,1,5.703783,5.755076,.0268456,9.967326,0,0,0
-6,4.564348,0,6.818924,6.870217,.0268456,9.967326,0,0,0
-7,4.564348,0,6.818924,6.870217,.0268456,9.967326,0,0,0
-12,4.564348,0,6.818924,6.870217,.0268456,9.967326,0,0,0
-9,4.564348,0,6.620073,6.671367,.0268456,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-4,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-5,3.258096,0,6.327937,7.714231,.0268456,9.967326,0,0,0
-9,0,0,2.821379,0,.0268456,9.967326,0,0,0
-1,4.564348,0,6.802395,6.959049,.0268456,9.967326,0,0,0
-0,4.564348,0,6.802395,6.959049,.0268456,9.967326,0,0,0
-3,3.258096,0,6.49224,7.878534,.0268456,9.967326,0,0,0
-5,3.258096,0,6.49224,7.878534,.0268456,9.967326,0,0,0
-6,0,0,5.426711,0,.0268456,9.967326,0,0,0
-7,0,0,5.052161,0,.0268456,9.967326,0,0,0
-17,4.564348,0,6.818924,6.870217,.0268456,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-2,4.564348,0,6.55108,6.602374,1,10.3,1,0,0
-0,4.564348,0,6.55108,6.602374,1,10.3,1,0,0
-0,4.564348,0,6.55108,6.602374,1,10.3,1,0,0
-0,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-0,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-1,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-0,4.564348,0,6.55108,6.602374,0,0,1,0,0
-0,4.564348,0,6.55108,6.602374,0,0,1,0,0
-8,4.564348,0,6.55108,6.602374,0,0,1,0,0
-0,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-0,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-0,4.564348,0,6.55108,6.602374,0,9.967326,1,0,0
-2,3.258096,0,6.586172,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.586172,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.586172,8.006368,0,6.9,0,0,0
-4,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-6,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.586172,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,1,0,0
-3,3.258096,0,6.586172,8.006368,0,9.967326,1,0,0
-0,3.258096,0,6.586172,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.586172,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.586172,8.006368,0,13.8,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-3,0,1,0,5.061929,0,6.9,1,0,0
-2,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,0,5.061929,0,6.9,1,0,0
-1,0,0,5.399971,0,0,10.3,1,0,0
-1,0,0,5.399971,0,0,10.3,1,0,0
-0,0,0,5.399971,0,0,10.3,1,0,0
-5,0,0,0,0,1,10.3,1,0,0
-3,0,0,0,0,1,10.3,1,0,0
-2,0,0,0,0,1,10.3,1,0,0
-1,0,0,0,0,1,0,1,0,0
-1,0,0,0,0,1,0,1,0,0
-1,0,0,0,0,1,0,1,0,0
-7,0,0,0,0,0,9.967326,0,1,0
-3,0,0,0,0,0,9.967326,0,1,0
-8,0,0,0,0,0,9.967326,0,1,0
-8,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-8,0,0,0,0,0,17.2,0,0,0
-4,0,0,0,0,0,17.2,0,0,0
-0,0,1,6.226378,6.160541,0,10.3,0,0,0
-0,0,1,6.226378,6.160541,0,10.3,0,0,0
-0,0,1,6.226378,6.160541,0,10.3,0,0,0
-4,0,1,6.226378,6.160541,0,6.9,1,0,0
-0,0,1,6.226378,6.160541,0,6.9,1,0,0
-0,0,1,6.226378,6.160541,0,6.9,1,0,0
-1,0,1,6.226378,6.160541,0,9.967326,0,0,0
-1,0,1,6.226378,6.160541,0,9.967326,0,0,0
-1,0,1,6.226378,6.160541,0,9.967326,0,0,0
-5,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-5,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-4,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-5,0,0,5.676206,0,1,3.4,1,0,0
-1,0,0,5.676206,0,1,3.4,1,0,0
-1,0,0,5.676206,0,1,3.4,1,0,0
-4,0,0,5.676206,0,1,3.4,1,0,0
-2,0,0,5.676206,0,1,3.4,1,0,0
-1,0,0,5.676206,0,1,9.967326,0,1,0
-2,0,0,5.676206,0,1,9.967326,0,1,0
-1,0,0,5.676206,0,1,9.967326,0,1,0
-8,0,0,5.676206,0,1,9.967326,0,1,0
-5,0,0,5.676206,0,1,9.967326,0,1,0
-7,0,0,5.676206,0,0,9.967326,0,1,0
-5,0,0,5.676206,0,0,9.967326,0,1,0
-0,0,0,5.676206,0,0,9.967326,0,1,0
-0,0,0,5.676206,0,0,9.967326,0,1,0
-1,0,0,5.676206,0,0,9.967326,0,1,0
-2,0,0,5.676206,0,0,9.967326,1,0,0
-2,0,0,5.676206,0,0,9.967326,1,0,0
-2,0,0,5.676206,0,0,9.967326,1,0,0
-5,0,0,5.676206,0,0,9.967326,1,0,0
-7,0,0,5.676206,0,0,9.967326,1,0,0
-11,0,0,5.676206,0,0,17.2,1,0,0
-4,0,0,5.676206,0,0,17.2,1,0,0
-11,0,0,5.676206,0,0,17.2,1,0,0
-9,0,0,5.676206,0,0,17.2,1,0,0
-8,0,0,5.676206,0,0,17.2,1,0,0
-6,0,0,5.676206,0,0,9.967326,0,1,0
-9,0,0,5.676206,0,0,9.967326,0,1,0
-6,0,0,5.676206,0,0,9.967326,0,1,0
-10,0,0,5.676206,0,0,9.967326,0,1,0
-5,0,0,5.676206,0,0,9.967326,0,1,0
-2,0,1,5.010635,5.061929,0,6.9,1,0,0
-0,0,1,5.010635,5.061929,0,6.9,1,0,0
-0,0,1,5.010635,5.061929,0,6.9,1,0,0
-2,0,1,5.010635,5.061929,0,6.9,0,0,0
-1,0,1,5.010635,5.061929,0,6.9,0,0,0
-0,0,1,5.010635,5.061929,0,6.9,0,0,0
-3,0,1,6.104436,6.160541,0,3.4,0,0,0
-0,0,1,6.104436,6.160541,0,3.4,0,0,0
-1,0,1,6.104436,6.160541,0,3.4,0,0,0
-5,0,1,6.104436,6.160541,0,24.1,1,0,0
-3,0,1,6.104436,6.160541,0,24.1,1,0,0
-1,0,1,6.104436,6.160541,0,24.1,1,0,0
-8,0,1,6.104436,6.160541,0,9.967326,1,0,0
-2,0,1,6.104436,6.160541,0,9.967326,1,0,0
-2,0,1,6.104436,6.160541,0,9.967326,1,0,0
-3,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,0,0,0,0
-0,3.258096,0,6.586172,8.006368,0,0,0,0,0
-0,3.258096,0,6.586172,8.006368,0,0,0,0,0
-1,3.258096,0,6.586172,8.006368,0,0,0,0,0
-0,3.258096,0,6.586172,8.006368,0,0,0,0,0
-0,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-3,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-3,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-1,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-2,0,0,5.974827,0,0,13.8,0,0,0
-4,0,0,5.974827,0,0,13.8,0,0,0
-2,0,0,5.974827,0,0,13.8,0,0,0
-0,0,1,6.005367,5.061929,0,10.3,0,0,1
-1,0,1,6.005367,5.061929,0,10.3,0,0,1
-0,0,1,6.005367,5.061929,0,10.3,0,0,1
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,0,0,5.437731,0,0,17.2,1,0,0
-5,0,0,5.437731,0,0,17.2,1,0,0
-2,0,0,5.437731,0,0,17.2,1,0,0
-2,0,0,5.437731,0,0,10.3,0,0,0
-3,0,0,5.437731,0,0,10.3,0,0,0
-1,0,0,5.437731,0,0,10.3,0,0,0
-4,0,1,5.703783,5.755076,1,13.8,0,1,0
-1,0,1,5.703783,5.755076,1,13.8,0,1,0
-3,0,1,5.703783,5.755076,1,13.8,0,1,0
-2,0,1,5.703783,5.755076,0,20.7,1,0,0
-1,0,1,5.703783,5.755076,0,20.7,1,0,0
-3,0,1,5.703783,5.755076,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-6,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-5,0,0,5.418764,0,1,17.2,1,0,0
-5,0,0,5.418764,0,1,17.2,1,0,0
-3,0,0,5.418764,0,1,17.2,1,0,0
-3,0,0,5.418764,0,0,9.967326,0,0,0
-1,0,0,5.418764,0,0,9.967326,0,0,0
-2,0,0,5.418764,0,0,9.967326,0,0,0
-5,0,0,5.418764,0,0,9.967326,0,0,0
-0,0,0,5.418764,0,0,9.967326,0,0,0
-0,0,0,5.418764,0,0,9.967326,0,0,0
-5,0,0,5.418764,0,0,20.7,0,0,0
-4,0,0,5.418764,0,0,20.7,0,0,0
-7,0,0,5.418764,0,0,20.7,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,1,24.1,0,0,0
-2,4.564348,0,6.907755,6.959049,1,24.1,0,0,0
-0,4.564348,0,6.907755,6.959049,1,24.1,0,0,0
-0,4.564348,0,6.907755,6.959049,1,24.1,0,0,0
-0,4.564348,0,6.907755,6.959049,1,24.1,0,0,0
-3,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-5,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-6,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-2,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-8,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-4,0,0,6.346478,0,0,13.8,0,0,0
-1,0,0,6.346478,0,0,13.8,0,0,0
-10,0,0,6.346478,0,0,13.8,0,0,0
-3,0,0,6.346478,0,0,9.967326,0,0,0
-1,0,0,6.346478,0,0,9.967326,0,0,0
-2,0,0,6.346478,0,0,9.967326,0,0,0
-13,0,0,6.346478,0,0,9.967326,0,0,0
-4,0,0,6.346478,0,0,9.967326,0,0,0
-5,0,0,6.346478,0,0,9.967326,0,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-5,0,1,5.703783,5.755076,0,10.3,1,0,0
-5,0,1,5.703783,5.755076,0,10.3,1,0,0
-0,0,1,5.703783,5.755076,0,10.3,1,0,0
-3,0,1,5.703783,5.755076,0,10.3,1,0,0
-5,0,1,5.703783,5.755076,0,10.3,1,0,0
-4,0,0,0,0,0,0,1,0,0
-5,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-5,0,0,0,0,0,3.4,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-7,0,0,5.681128,0,1,27.6,1,0,0
-2,0,0,5.681128,0,1,27.6,1,0,0
-0,0,0,5.676206,0,0,9.967326,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-4,0,0,5.676206,0,0,9.967326,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-2,0,0,5.676206,0,0,13.8,0,0,0
-1,0,0,5.676206,0,0,13.8,0,0,0
-4,0,0,5.676206,0,0,13.8,0,0,0
-0,0,0,5.676206,0,1,24.1,0,0,0
-0,0,0,5.676206,0,1,24.1,0,0,0
-3,0,0,5.676206,0,1,24.1,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-1,0,0,5.676206,0,0,9.967326,0,0,0
-4,0,0,5.676206,0,0,9.967326,0,0,0
-4,0,0,5.676206,0,0,3.4,0,0,0
-0,0,0,5.676206,0,0,3.4,0,0,0
-1,0,0,5.676206,0,0,3.4,0,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,1,37.9,0,1,0
-7,0,0,0,0,1,37.9,0,1,0
-1,0,0,0,0,1,37.9,0,1,0
-0,0,0,0,0,1,37.9,0,1,0
-2,0,0,0,0,1,37.9,0,1,0
-8,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-7,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-8,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-6,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-6,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,0,1,6.22543,6.160541,0,3.4,0,0,0
-1,0,1,6.22543,6.160541,0,3.4,0,0,0
-0,0,1,6.22543,6.160541,0,3.4,0,0,0
-0,0,1,6.22543,6.160541,0,9.967326,0,0,0
-0,0,1,6.22543,6.160541,0,9.967326,0,0,0
-0,0,1,6.22543,6.160541,0,9.967326,0,0,0
-0,0,1,6.22543,6.160541,0,9.967326,0,0,0
-1,0,1,6.22543,6.160541,0,9.967326,0,0,0
-1,0,1,6.22543,6.160541,0,9.967326,0,0,0
-4,0,1,6.22543,6.160541,0,9.967326,0,0,0
-3,0,1,6.22543,6.160541,0,9.967326,0,0,0
-4,0,1,6.22543,6.160541,0,9.967326,0,0,0
-8,0,1,6.22543,6.160541,0,6.9,0,0,0
-2,0,1,6.22543,6.160541,0,6.9,0,0,0
-0,0,1,6.22543,6.160541,0,6.9,0,0,0
-1,0,0,6.094202,0,0,9.967326,0,0,0
-3,0,0,6.094202,0,0,9.967326,0,0,0
-3,0,0,6.094202,0,0,9.967326,0,0,0
-0,0,0,6.094202,0,0,3.4,0,0,0
-0,0,0,6.094202,0,0,3.4,0,0,0
-0,0,0,6.094202,0,0,3.4,0,0,0
-2,0,0,6.094202,0,0,9.967326,0,0,0
-4,0,0,6.094202,0,0,9.967326,0,0,0
-2,0,0,6.094202,0,0,9.967326,0,0,0
-1,0,0,6.094202,0,0,10.3,0,0,0
-2,0,0,6.094202,0,0,10.3,0,0,0
-1,0,0,6.094202,0,0,10.3,0,0,0
-0,4.564348,0,6.882438,6.933731,0,24.1,0,0,0
-2,4.564348,0,6.882438,6.933731,0,24.1,0,0,0
-0,4.564348,0,6.882438,6.933731,0,24.1,0,0,0
-2,0,0,5.313501,0,0,17.2,1,0,0
-1,0,0,5.313501,0,0,17.2,1,0,0
-3,0,0,5.313501,0,0,17.2,1,0,0
-3,0,0,4.880982,0,0,0,1,0,0
-5,0,0,4.880982,0,0,0,1,0,0
-7,0,0,4.880982,0,0,0,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-6,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,1,0,0
-9,0,1,6.109248,6.160541,0,13.8,1,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,1,0
-12,0,1,6.109248,6.160541,0,9.967326,0,1,0
-11,0,1,6.109248,6.160541,0,9.967326,0,1,0
-10,0,1,6.109248,6.160541,0,9.967326,1,0,0
-4,0,1,6.109248,6.160541,0,9.967326,1,0,0
-6,0,1,6.109248,6.160541,0,9.967326,1,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,3.258096,0,5.703783,7.090077,0,3.4,0,0,0
-0,3.258096,0,5.703783,7.090077,0,3.4,0,0,0
-1,3.258096,0,5.703783,7.090077,0,3.4,0,0,0
-1,3.258096,0,5.703783,7.090077,0,3.4,0,0,0
-1,3.258096,0,5.703783,7.090077,0,3.4,0,0,0
-2,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-0,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-0,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-0,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-1,3.258096,0,0,6.659294,0,9.967326,0,0,0
-2,3.258096,0,0,6.659294,0,9.967326,0,0,0
-0,3.258096,0,0,6.659294,0,9.967326,0,0,0
-2,3.258096,0,0,6.659294,0,3.4,0,0,0
-1,3.258096,0,0,6.659294,0,3.4,0,0,0
-2,3.258096,0,0,6.659294,0,3.4,0,0,0
-1,3.258096,0,6.098074,7.484369,0,3.4,0,0,0
-1,3.258096,0,6.098074,7.484369,0,3.4,0,0,0
-1,3.258096,0,6.098074,7.484369,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-2,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-3,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-4,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-1,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-2,0,0,6.094202,0,0,9.967326,0,0,0
-3,0,0,6.094202,0,0,9.967326,0,0,0
-0,0,0,6.094202,0,0,9.967326,0,0,0
-4,0,0,6.094202,0,0,9.967326,1,0,0
-1,0,0,6.094202,0,0,9.967326,1,0,0
-3,0,0,6.094202,0,0,9.967326,1,0,0
-7,0,0,6.094202,0,0,10.3,1,0,0
-18,0,0,6.094202,0,0,10.3,1,0,0
-9,0,0,6.094202,0,0,10.3,1,0,0
-7,0,0,6.094202,0,0,20.7,1,0,0
-34,0,0,6.094202,0,0,20.7,1,0,0
-16,0,0,6.094202,0,0,20.7,1,0,0
-0,3.258096,0,6.2105,7.596794,0,13.8,0,0,0
-2,3.258096,0,6.2105,7.596794,0,13.8,0,0,0
-2,3.258096,0,6.2105,7.596794,0,13.8,0,0,0
-4,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-2,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-1,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-11,3.258096,0,6.2105,7.596794,0,3.4,0,0,0
-3,3.258096,0,6.2105,7.596794,0,3.4,0,0,0
-0,3.258096,0,6.2105,7.596794,0,3.4,0,0,0
-4,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-2,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-2,3.258096,0,6.2105,7.596794,0,9.967326,0,0,0
-0,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-0,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-2,4.564348,0,5.398163,5.449456,0,3.4,0,0,0
-2,4.564348,0,5.398163,5.449456,0,3.4,0,0,0
-0,4.564348,0,5.398163,5.449456,0,3.4,0,0,0
-1,4.564348,0,5.398163,5.449456,1,24.1,1,0,0
-1,4.564348,0,5.398163,5.449456,1,24.1,1,0,0
-0,4.564348,0,5.398163,5.449456,1,24.1,1,0,0
-1,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-0,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-0,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-2,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-0,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-2,4.564348,0,5.398163,5.449456,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,20.7,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,0,0,0
-3,0,1,6.109248,6.160541,0,20.7,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-11,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-5,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-3,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-4,3.258096,0,6.620073,8.006368,0,20.7,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,0,1,6.823765,5.755076,0,13.8,0,0,0
-1,0,1,6.823765,5.755076,0,13.8,0,0,0
-7,0,1,6.823765,5.755076,0,13.8,0,0,0
-0,0,1,6.823765,5.755076,0,3.4,0,0,0
-0,0,1,6.823765,5.755076,0,3.4,0,0,0
-0,0,1,6.823765,5.755076,0,3.4,0,0,0
-8,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,1,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,1,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,1,13.8,0,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.931826,0,6.639876,7.333023,0,13.8,1,0,0
-3,3.931826,0,6.639876,7.333023,0,13.8,1,0,0
-1,3.931826,0,6.639876,7.333023,0,13.8,1,0,0
-1,4.564348,0,6.533062,6.584355,1,17.2,0,0,0
-1,4.564348,0,6.533062,6.584355,1,17.2,0,0,0
-8,4.564348,0,6.533062,6.584355,1,17.2,0,0,0
-10,4.564348,0,6.533062,6.584355,1,17.2,0,0,0
-3,4.564348,0,6.533062,6.584355,1,17.2,0,0,0
-3,4.564348,0,6.533062,6.584355,1,20.7,1,0,0
-1,4.564348,0,6.533062,6.584355,1,20.7,1,0,0
-1,4.564348,0,6.533062,6.584355,1,20.7,1,0,0
-3,4.564348,0,6.533062,6.584355,1,20.7,1,0,0
-1,4.564348,0,6.533062,6.584355,1,20.7,1,0,0
-4,0,0,6.094202,0,0,6.9,0,0,0
-0,0,0,6.094202,0,0,6.9,0,0,0
-0,0,0,6.094202,0,0,6.9,0,0,0
-2,0,0,6.094202,0,0,27.6,0,0,0
-3,0,0,6.094202,0,0,27.6,0,0,0
-13,0,0,6.094202,0,0,27.6,0,0,0
-0,0,0,6.094202,0,0,6.9,0,0,0
-0,0,0,6.094202,0,0,6.9,0,0,0
-1,0,0,6.094202,0,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-28,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-6,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-6,0,0,0,0,0,10.3,1,0,0
-6,0,1,5.703783,5.755076,0,17.2,0,0,0
-3,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-2,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-4,0,0,4.836282,0,1,17.2,1,0,0
-7,0,0,4.836282,0,1,17.2,1,0,0
-6,0,0,4.836282,0,1,17.2,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-6,0,0,0,0,0,9.967326,1,0,0
-11,0,0,0,0,0,6.9,1,0,0
-10,0,0,0,0,0,6.9,1,0,0
-10,0,0,0,0,0,6.9,1,0,0
-5,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-6,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-10,0,0,0,0,0,9.967326,1,0,0
-6,0,0,0,0,0,9.967326,1,0,0
-10,0,0,0,0,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-4,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-6,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,3.4,0,0,0
-4,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-7,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,0,4.836282,0,1,10.3,0,0,0
-0,0,0,4.836282,0,1,10.3,0,0,0
-0,0,0,4.836282,0,1,10.3,0,0,0
-2,0,0,4.836282,0,1,10.3,0,0,0
-4,0,0,4.836282,0,1,10.3,0,0,0
-1,0,0,4.836282,0,0,13.8,0,0,0
-0,0,0,4.836282,0,0,13.8,0,0,0
-1,0,0,4.836282,0,0,13.8,0,0,0
-1,0,0,4.836282,0,0,13.8,0,0,0
-1,0,0,4.836282,0,0,13.8,0,0,0
-8,0,0,0,0,0,13.8,1,0,0
-6,0,0,0,0,0,13.8,1,0,0
-17,0,0,0,0,0,13.8,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-4,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-3,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-8,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-4,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-4,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,1,6.472594,5.755076,0,10.3,0,0,0
-0,0,1,6.472594,5.755076,0,10.3,0,0,0
-2,0,1,6.472594,5.755076,0,10.3,0,0,0
-4,0,1,6.472594,5.755076,0,0,0,0,0
-4,0,1,6.472594,5.755076,0,0,0,0,0
-2,0,1,6.472594,5.755076,0,0,0,0,0
-1,0,1,5.075674,5.061929,0,6.9,0,0,0
-7,0,1,5.075674,5.061929,0,6.9,0,0,0
-6,0,1,5.075674,5.061929,0,6.9,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,1,6.9,0,1,0
-1,0,0,0,0,1,6.9,0,1,0
-5,0,0,0,0,1,6.9,0,1,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,1,17.2,0,0,0
-2,0,1,6.109248,6.160541,1,17.2,0,0,0
-0,0,1,6.109248,6.160541,1,17.2,0,0,0
-3,0,1,6.109248,6.160541,1,17.2,0,0,0
-1,0,1,6.109248,6.160541,1,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,0,0,0
-5,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-8,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,0,0,0,0,24.1,1,0,0
-0,0,0,0,0,0,24.1,1,0,0
-1,0,0,0,0,0,24.1,1,0,0
-2,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-10,0,0,0,0,0,9.967326,0,0,0
-9,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-4,0,0,5.676206,0,0,3.4,0,0,0
-3,0,0,5.676206,0,0,3.4,0,0,0
-6,0,0,5.676206,0,0,3.4,0,0,0
-6,0,0,5.676206,0,0,3.4,0,0,0
-5,0,0,5.676206,0,0,3.4,0,0,0
-2,0,0,5.676206,0,0,3.4,0,0,0
-0,0,0,5.676206,0,0,3.4,0,0,0
-5,0,0,5.676206,0,0,3.4,0,0,0
-3,0,0,5.676206,0,0,3.4,0,0,0
-7,0,0,5.676206,0,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-7,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-4,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,1,3.4,1,0,0
-2,0,1,6.109248,6.160541,1,3.4,1,0,0
-3,0,1,6.109248,6.160541,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,5.998539,5.755076,0,3.4,1,0,0
-0,0,1,5.998539,5.755076,0,3.4,1,0,0
-1,0,1,5.998539,5.755076,0,3.4,1,0,0
-1,0,1,5.998539,5.755076,0,10.3,0,0,0
-1,0,1,5.998539,5.755076,0,10.3,0,0,0
-0,0,1,5.998539,5.755076,0,10.3,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,1,5.676206,5.061929,0,10.3,0,0,0
-3,0,1,5.676206,5.061929,0,10.3,0,0,0
-6,0,1,5.676206,5.061929,0,10.3,0,0,0
-3,4.564348,0,0,5.061929,0,0,0,0,0
-1,4.564348,0,0,5.061929,0,0,0,0,0
-0,4.564348,0,0,5.061929,0,0,0,0,0
-2,4.564348,0,5.347107,5.398401,0,6.9,0,0,0
-2,4.564348,0,5.347107,5.398401,0,6.9,0,0,0
-7,4.564348,0,5.347107,5.398401,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-3,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,10.3,1,0,0
-7,4.564348,0,6.882438,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.882438,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.882438,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.882438,6.959049,0,10.3,1,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.882438,6.959049,0,9.967326,0,0,0
-3,0,0,5.918894,0,0,13.8,0,0,0
-0,0,0,5.918894,0,0,13.8,0,0,0
-0,0,0,5.918894,0,0,13.8,0,0,0
-16,0,0,5.918894,0,0,9.967326,0,0,0
-40,0,0,5.918894,0,0,9.967326,0,0,0
-19,0,0,5.918894,0,0,9.967326,0,0,0
-7,0,0,5.918894,0,0,17.2,0,0,1
-5,0,0,5.918894,0,0,17.2,0,0,1
-0,0,0,5.918894,0,0,17.2,0,0,1
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-7,0,1,5.703783,5.755076,0,3.4,0,0,0
-3,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-3,0,0,5.824229,0,1,6.9,0,0,0
-1,0,0,5.824229,0,1,6.9,0,0,0
-2,0,0,5.824229,0,1,6.9,0,0,0
-1,0,0,5.824229,0,0,9.967326,0,0,0
-1,0,0,5.824229,0,0,9.967326,0,0,0
-2,0,0,5.824229,0,0,9.967326,0,0,0
-3,0,0,5.824229,0,0,3.4,0,0,0
-1,0,0,5.824229,0,0,3.4,0,0,0
-0,0,0,5.824229,0,0,3.4,0,0,0
-2,0,0,5.824229,0,0,9.967326,0,0,0
-1,0,0,5.824229,0,0,9.967326,0,0,0
-3,0,0,5.824229,0,0,9.967326,0,0,0
-1,0,0,5.532757,0,0,10.3,1,0,0
-2,0,0,5.532757,0,0,10.3,1,0,0
-1,0,0,5.532757,0,0,10.3,1,0,0
-2,0,0,5.532757,0,0,10.3,1,0,0
-3,0,0,5.532757,0,0,10.3,1,0,0
-2,0,1,5.010635,5.061929,0,10.3,1,0,0
-1,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-3,0,1,5.703783,5.755076,0,10.3,0,0,0
-0,0,1,5.703783,5.755076,0,10.3,0,0,0
-4,0,1,5.703783,5.755076,0,10.3,0,0,0
-12,0,1,5.703783,5.755076,0,6.9,1,0,0
-5,0,1,5.703783,5.755076,0,6.9,1,0,0
-0,4.564348,0,6.427944,6.479237,0,6.9,0,0,0
-2,4.564348,0,6.427944,6.479237,0,9.967326,0,0,0
-1,4.564348,0,6.427944,6.479237,0,9.967326,0,0,0
-2,4.564348,0,6.427944,6.479237,0,9.967326,0,0,0
-0,4.564348,0,6.427944,6.479237,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,1,6.9,1,0,0
-8,0,1,6.109248,6.160541,1,6.9,1,0,0
-16,0,1,6.109248,6.160541,1,6.9,1,0,0
-16,0,1,6.109248,6.160541,1,6.9,1,0,0
-4,0,1,6.109248,6.160541,1,6.9,1,0,0
-1,0,1,6.109248,6.160541,1,9.967326,0,0,0
-2,0,1,6.109248,6.160541,1,9.967326,0,0,0
-0,0,1,6.109248,6.160541,1,9.967326,0,0,0
-1,0,1,6.109248,6.160541,1,9.967326,0,0,0
-1,0,1,6.109248,6.160541,1,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,20.7,0,1,0
-1,0,1,6.109248,6.160541,0,20.7,0,1,0
-1,0,1,6.109248,6.160541,0,20.7,0,1,0
-0,0,1,6.109248,6.160541,0,20.7,0,1,0
-1,0,1,6.109248,6.160541,0,20.7,0,1,0
-4,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-4,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,1,0,0
-18,0,1,0,5.755076,1,41.4,0,1,0
-11,0,1,0,5.755076,1,41.4,0,1,0
-3,0,1,0,5.755076,1,41.4,0,1,0
-2,0,1,0,5.755076,1,41.4,0,1,0
-1,0,1,0,5.755076,0,13.8,0,0,0
-1,0,1,0,5.755076,0,13.8,0,0,0
-6,0,1,0,5.755076,0,13.8,0,0,0
-4,0,1,0,5.755076,0,13.8,0,0,0
-1,0,1,0,5.755076,0,13.8,0,0,0
-3,0,1,7.122189,5.755076,0,17.2,1,0,0
-2,0,1,7.122189,5.755076,0,17.2,1,0,0
-2,0,1,7.122189,5.755076,0,17.2,1,0,0
-2,0,1,7.122189,5.755076,0,17.2,1,0,0
-0,0,1,7.122189,5.755076,0,17.2,1,0,0
-0,0,1,7.122189,5.755076,0,17.2,1,0,0
-3,3.258096,0,6.401469,7.787764,.1572505,9.967326,1,0,0
-1,3.258096,0,6.401469,7.787764,.1572505,9.967326,1,0,0
-3,3.258096,0,6.401469,7.787764,.1572505,9.967326,1,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-4,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-4,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-4,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-7,0,1,6.109248,6.160541,1,24.1,1,0,0
-8,0,1,6.109248,6.160541,1,24.1,1,0,0
-5,0,1,6.109248,6.160541,1,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,3.4,1,0,0
-6,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,1,0
-5,0,1,6.109248,6.160541,0,9.967326,0,1,0
-3,0,1,6.109248,6.160541,0,9.967326,0,1,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,27.6,0,0,1
-9,0,1,6.109248,6.160541,0,27.6,0,0,1
-4,0,1,6.109248,6.160541,0,27.6,0,0,1
-4,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-2,0,0,5.228324,0,0,6.9,1,0,0
-1,0,0,5.228324,0,0,6.9,1,0,0
-5,0,0,5.228324,0,0,6.9,1,0,0
-3,0,0,5.228324,0,0,6.9,1,0,0
-3,0,0,5.228324,0,0,6.9,1,0,0
-3,0,0,5.228324,0,0,6.9,1,0,0
-1,0,0,5.228324,0,0,3.4,0,0,0
-2,0,0,5.228324,0,0,3.4,0,0,0
-1,0,0,5.228324,0,0,3.4,0,0,0
-2,0,0,5.228324,0,0,9.967326,0,0,0
-2,0,0,5.228324,0,0,9.967326,0,0,0
-2,0,0,5.228324,0,0,9.967326,0,0,0
-0,0,0,5.228324,0,0,3.4,1,0,0
-2,0,0,5.228324,0,0,3.4,1,0,0
-1,0,0,5.228324,0,0,3.4,1,0,0
-0,0,0,5.228324,0,0,9.967326,0,0,0
-0,0,0,5.228324,0,0,9.967326,0,0,0
-2,0,0,5.228324,0,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-3,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-2,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,1,20.7,0,0,0
-0,4.564348,0,6.907755,6.959049,1,20.7,0,0,0
-0,4.564348,0,6.907755,6.959049,1,20.7,0,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-5,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-0,3.258096,0,5.010635,6.39693,0,9.967326,0,0,0
-9,3.258096,0,5.010635,6.39693,0,9.967326,0,0,0
-1,3.258096,0,5.010635,6.39693,0,9.967326,0,0,0
-1,3.258096,0,5.010635,6.39693,0,10.3,1,0,0
-2,3.258096,0,5.010635,6.39693,0,10.3,1,0,0
-6,3.258096,0,5.010635,6.39693,0,10.3,1,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-5,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-7,3.258096,0,5.68358,7.069874,1,13.8,1,0,0
-2,3.258096,0,5.68358,7.069874,1,13.8,1,0,0
-0,3.258096,0,5.68358,7.069874,1,13.8,1,0,0
-12,3.258096,0,5.68358,7.069874,1,13.8,1,0,0
-11,3.258096,0,5.68358,7.069874,1,13.8,1,0,0
-2,3.258096,0,5.68358,7.069874,0,17.2,0,0,0
-9,3.258096,0,5.68358,7.069874,0,17.2,0,0,0
-1,3.258096,0,5.68358,7.069874,0,17.2,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-2,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-5,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-7,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-4,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-2,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-3,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-3,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-1,3.258096,0,5.68358,7.069874,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-5,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-3,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-4,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,0,1,5.676206,5.755076,0,9.967326,0,0,0
-2,0,1,5.676206,5.755076,0,9.967326,0,0,0
-5,0,1,5.676206,5.755076,0,9.967326,0,0,0
-6,0,1,5.676206,5.755076,0,13.8,0,0,0
-5,0,1,5.676206,5.755076,0,13.8,0,0,0
-0,0,1,5.676206,5.755076,0,13.8,0,0,0
-6,0,1,5.676206,5.755076,0,9.967326,0,0,0
-3,0,1,5.676206,5.755076,0,9.967326,0,0,0
-1,0,1,5.676206,5.755076,0,9.967326,0,0,0
-1,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-0,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-2,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-2,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-8,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-4,3.258096,0,6.619806,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.619806,8.006368,0,10.3,0,0,0
-2,3.258096,0,6.619806,8.006368,0,10.3,0,0,0
-7,3.258096,0,6.619806,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.619806,8.006368,0,10.3,0,0,0
-2,3.258096,0,6.619806,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.619806,8.006368,0,0,0,0,0
-3,3.258096,0,6.619806,8.006368,0,0,0,0,0
-3,3.258096,0,6.619806,8.006368,0,0,0,0,0
-0,3.258096,0,6.619806,8.006368,0,0,0,0,0
-2,3.258096,0,6.619806,8.006368,0,0,0,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-6,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,0,1,0,0
-4,0,0,0,0,0,0,1,0,0
-3,0,0,0,0,0,0,1,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-8,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,1,0,0,0,0
-1,3.258096,0,6.620073,8.006368,1,0,0,0,0
-5,3.258096,0,6.620073,8.006368,1,0,0,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-6,0,0,3.401197,0,0,37.9,1,0,0
-3,0,0,3.401197,0,0,37.9,1,0,0
-0,0,0,3.401197,0,0,37.9,1,0,0
-3,0,0,3.401197,0,0,37.9,1,0,0
-5,0,0,3.401197,0,0,37.9,1,0,0
-3,0,0,3.401197,0,0,9.967326,0,0,0
-4,0,0,3.401197,0,0,9.967326,0,0,0
-0,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,9.967326,0,0,0
-0,0,0,3.401197,0,0,9.967326,0,0,0
-0,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,9.967326,0,0,0
-1,0,0,3.401197,0,0,0,0,0,0
-1,0,0,3.401197,0,0,0,0,0,0
-6,0,0,3.401197,0,0,6.9,1,0,0
-1,0,0,3.401197,0,0,6.9,1,0,0
-1,0,0,3.401197,0,0,6.9,1,0,0
-0,0,0,3.401197,0,0,6.9,1,0,0
-4,0,0,3.401197,0,0,6.9,1,0,0
-1,0,0,5.852202,0,0,20.7,1,0,0
-1,0,0,5.852202,0,0,20.7,1,0,0
-4,0,0,5.852202,0,0,20.7,1,0,0
-3,0,0,5.852202,0,0,20.7,1,0,0
-0,0,0,5.852202,0,0,20.7,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-2,0,0,5.321057,0,0,9.967326,0,0,0
-2,0,0,5.321057,0,0,9.967326,0,0,0
-1,0,0,5.321057,0,0,9.967326,0,0,0
-3,0,0,5.321057,0,0,9.967326,0,0,0
-3,0,0,5.321057,0,0,9.967326,0,0,0
-3,0,0,5.321057,0,0,9.967326,0,0,0
-4,0,0,5.321057,0,0,3.4,0,0,0
-0,0,0,5.321057,0,0,3.4,0,0,0
-7,0,0,5.321057,0,0,3.4,0,0,0
-3,0,0,5.321057,0,0,3.4,0,0,0
-1,0,0,5.321057,0,0,3.4,0,0,0
-2,0,0,5.321057,0,0,3.4,0,0,0
-3,0,1,5.703783,5.755076,0,9.967326,1,0,0
-5,0,1,5.703783,5.755076,0,9.967326,1,0,0
-8,0,1,5.703783,5.755076,0,9.967326,1,0,0
-1,0,1,5.703783,5.755076,0,17.2,0,0,0
-2,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-4,4.564348,0,5.774551,5.825845,0,9.967326,0,0,1
-7,4.564348,0,5.774551,5.825845,0,9.967326,0,0,1
-5,4.564348,0,5.774551,5.825845,0,9.967326,0,0,1
-0,4.564348,0,5.774551,5.825845,0,10.3,0,0,0
-4,4.564348,0,5.774551,5.825845,0,10.3,0,0,0
-4,4.564348,0,5.774551,5.825845,0,10.3,0,0,0
-1,4.564348,0,5.774551,5.825845,0,9.967326,1,0,0
-3,4.564348,0,5.774551,5.825845,0,9.967326,1,0,0
-2,4.564348,0,5.774551,5.825845,0,9.967326,1,0,0
-3,0,0,0,0,1,9.967326,0,0,0
-8,0,0,0,0,1,9.967326,0,0,0
-4,0,0,0,0,1,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,31,1,0,0
-3,0,0,0,0,0,31,1,0,0
-3,0,0,0,0,0,31,1,0,0
-7,0,0,0,0,0,9.967326,0,0,0
-8,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-7,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,1,24.1,0,1,0
-7,0,0,0,0,1,24.1,0,1,0
-30,0,0,0,0,1,24.1,0,1,0
-2,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-4,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-2,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-3,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-9,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-2,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-4,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-2,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-1,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-1,3.258096,0,6.26957,7.702105,0,9.967326,1,0,0
-1,3.258096,0,6.26957,7.702105,1,13.8,1,0,0
-2,3.258096,0,6.26957,7.702105,1,13.8,1,0,0
-6,3.258096,0,6.26957,7.702105,1,13.8,1,0,0
-1,3.258096,0,6.26957,7.702105,1,13.8,1,0,0
-5,3.258096,0,6.26957,7.702105,1,13.8,1,0,0
-0,3.258096,0,6.26957,7.702105,0,0,1,0,0
-0,3.258096,0,6.26957,7.702105,0,0,1,0,0
-0,3.258096,0,6.26957,7.702105,0,0,1,0,0
-0,3.258096,0,6.26957,7.702105,0,0,1,0,0
-0,3.258096,0,6.26957,7.702105,0,0,1,0,0
-16,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-5,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-9,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-1,4.564348,0,6.907755,6.959049,0,37.9,0,1,0
-6,4.564348,0,6.907755,6.959049,0,37.9,0,1,0
-1,4.564348,0,6.907755,6.959049,0,37.9,0,1,0
-4,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,0,0,5.480639,0,0,6.9,0,0,0
-0,0,0,5.480639,0,0,6.9,0,0,0
-0,0,0,5.480639,0,0,6.9,0,0,0
-3,0,0,5.480639,0,0,3.4,0,0,0
-1,0,0,5.480639,0,0,3.4,0,0,0
-9,0,0,5.480639,0,0,3.4,0,0,0
-2,0,0,5.480639,0,0,13.8,0,0,0
-0,0,0,5.480639,0,0,13.8,0,0,0
-1,0,0,5.480639,0,0,13.8,0,0,0
-0,0,0,5.480639,0,0,9.967326,0,0,0
-0,0,0,5.480639,0,0,9.967326,0,0,0
-1,0,0,5.480639,0,0,9.967326,0,0,0
-2,0,0,5.480639,0,0,6.9,0,0,0
-1,0,0,5.480639,0,0,6.9,0,0,0
-0,0,0,5.480639,0,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-3,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-3,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-4,0,1,6.109248,6.160541,0,24.1,0,0,0
-1,0,1,6.109248,6.160541,0,24.1,0,0,0
-1,0,1,6.109248,6.160541,0,24.1,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-8,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,1,13.8,1,0,0
-3,0,1,6.109248,6.160541,1,13.8,1,0,0
-2,0,1,6.109248,6.160541,1,13.8,1,0,0
-0,0,1,6.109248,6.160541,1,13.8,1,0,0
-0,0,1,6.109248,6.160541,1,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-2,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,1,9.967326,0,1,0
-2,0,1,6.109248,6.160541,1,9.967326,0,1,0
-0,0,1,6.109248,6.160541,1,9.967326,0,1,0
-3,0,1,6.109248,6.160541,1,9.967326,0,1,0
-1,0,1,6.109248,6.160541,1,9.967326,0,1,0
-2,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,0,1,0,0
-5,0,0,0,0,0,0,1,0,0
-3,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-4,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-19,0,0,0,0,0,24.1,1,0,0
-14,0,0,0,0,0,24.1,1,0,0
-4,0,0,0,0,0,24.1,1,0,0
-8,0,0,0,0,0,24.1,1,0,0
-6,0,0,0,0,0,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-4,3.258096,0,5.858676,7.24497,1,3.4,0,0,0
-5,3.258096,0,5.858676,7.24497,1,3.4,0,0,0
-4,3.258096,0,5.858676,7.24497,1,3.4,0,0,0
-0,3.931826,0,6.907935,7.600903,0,13.8,0,0,0
-3,3.931826,0,6.907935,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907935,7.600903,0,13.8,0,0,0
-4,3.931826,0,6.907935,7.600903,0,13.8,0,0,0
-2,3.931826,0,6.907935,7.600903,0,13.8,0,0,0
-3,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-6,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-4,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-6,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-6,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907935,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907935,7.600903,0,3.4,0,0,0
-5,3.931826,0,6.907935,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907935,7.600903,0,3.4,0,0,0
-5,3.931826,0,6.907935,7.600903,0,3.4,0,0,0
-3,3.931826,0,6.907935,7.600903,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,5.294309,7.156956,0,27.6,1,0,0
-2,3.258096,0,5.294309,7.156956,0,27.6,1,0,0
-3,3.258096,0,5.294309,7.156956,0,27.6,1,0,0
-3,3.258096,0,5.294309,7.156956,0,10.3,0,0,0
-3,3.258096,0,5.294309,7.156956,0,10.3,0,0,0
-5,3.258096,0,5.294309,7.156956,0,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-6,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-13,0,0,5.989262,0,1,13.8,1,0,0
-5,0,0,5.989262,0,1,13.8,1,0,0
-2,0,0,5.989262,0,1,13.8,1,0,0
-4,0,0,5.989262,0,0,6.9,1,0,0
-0,0,0,5.989262,0,0,6.9,1,0,0
-2,0,0,5.989262,0,0,6.9,1,0,0
-10,0,0,0,0,1,17.2,1,0,0
-4,0,0,0,0,1,17.2,1,0,0
-1,0,0,0,0,1,17.2,1,0,0
-5,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-7,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-13,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,4.564348,0,6.372978,6.424272,0,3.4,1,0,0
-1,4.564348,0,6.372978,6.424272,0,3.4,1,0,0
-0,4.564348,0,6.372978,6.424272,0,3.4,1,0,0
-1,4.564348,0,6.372978,6.424272,0,3.4,1,0,0
-1,4.564348,0,6.372978,6.424272,0,3.4,1,0,0
-2,4.564348,0,6.372978,6.424272,0,17.2,1,0,0
-2,4.564348,0,6.372978,6.424272,0,17.2,1,0,0
-1,4.564348,0,6.372978,6.424272,0,17.2,1,0,0
-1,4.564348,0,6.372978,6.424272,0,17.2,1,0,0
-1,4.564348,0,6.372978,6.424272,0,17.2,1,0,0
-3,4.564348,0,6.372978,6.424272,0,9.967326,0,0,0
-2,4.564348,0,6.372978,6.424272,0,9.967326,0,0,0
-3,4.564348,0,6.372978,6.424272,0,9.967326,0,0,0
-4,4.564348,0,6.372978,6.424272,0,9.967326,0,0,0
-2,4.564348,0,6.372978,6.424272,0,9.967326,0,0,0
-0,3.931826,0,5.518898,5.442418,0,6.9,0,0,0
-0,3.931826,0,5.518898,5.442418,0,6.9,0,0,0
-1,3.931826,0,5.518898,5.442418,0,6.9,0,0,0
-2,0,1,0,5.061929,0,20.7,1,0,0
-3,0,1,0,5.061929,0,20.7,1,0,0
-0,0,1,0,5.061929,0,20.7,1,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,0,9.967326,1,0,0
-4,0,0,0,0,1,24.1,1,0,0
-3,0,0,0,0,1,24.1,1,0,0
-7,0,0,0,0,1,24.1,1,0,0
-4,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-8,0,0,0,0,0,3.4,1,0,0
-2,4.564348,0,6.836635,6.887928,0,27.6,1,0,0
-0,4.564348,0,6.836635,6.887928,0,27.6,1,0,0
-4,4.564348,0,6.836635,6.887928,0,6.9,1,0,0
-3,4.564348,0,6.836635,6.887928,0,6.9,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.3,0,0,0
-1,4.564348,0,6.802395,6.853688,0,10.3,0,0,0
-0,4.564348,0,6.802395,6.853688,0,10.3,0,0,0
-0,4.564348,0,6.802395,6.853688,0,10.3,0,0,0
-0,4.564348,0,6.802395,6.853688,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,4.564348,0,6.365267,6.41656,0,9.967326,0,1,0
-1,4.564348,0,6.365267,6.41656,0,9.967326,0,1,0
-0,4.564348,0,6.365267,6.41656,0,9.967326,0,1,0
-0,4.564348,0,6.365267,6.41656,0,3.4,1,0,0
-0,4.564348,0,6.365267,6.41656,0,3.4,1,0,0
-1,4.564348,0,6.365267,6.41656,0,3.4,1,0,0
-0,4.564348,0,6.365267,6.41656,0,9.967326,1,0,0
-0,4.564348,0,6.365267,6.41656,0,9.967326,1,0,0
-0,4.564348,0,6.365267,6.41656,0,9.967326,1,0,0
-2,4.564348,0,6.365267,6.41656,0,3.4,0,0,0
-0,4.564348,0,6.365267,6.41656,0,3.4,0,0,0
-0,4.564348,0,6.365267,6.41656,0,3.4,0,0,0
-4,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-4,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-6,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-6,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-4,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-4,3.258096,0,0,6.877296,0,0,0,0,0
-9,3.258096,0,0,6.877296,0,0,0,0,0
-8,3.258096,0,0,6.877296,0,0,0,0,0
-1,0,0,5.154216,0,0,3.4,0,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-2,0,0,5.154216,0,0,3.4,0,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-5,0,0,5.154216,0,0,3.4,0,0,0
-4,0,0,5.154216,0,0,3.4,0,0,0
-2,0,0,5.154216,0,0,6.9,0,0,0
-0,0,0,5.154216,0,0,6.9,0,0,0
-0,0,0,5.154216,0,0,9.967326,0,0,0
-0,0,0,5.154216,0,0,9.967326,0,0,0
-1,0,0,5.154216,0,0,9.967326,0,0,0
-2,3.258096,0,6.586172,8.006368,0,10.3,0,0,0
-10,3.258096,0,6.586172,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.586172,8.006368,0,10.3,0,0,0
-3,3.258096,0,6.586172,8.006368,0,13.8,1,0,0
-0,3.258096,0,6.586172,8.006368,0,13.8,1,0,0
-7,0,1,6.823765,6.160541,0,9.967326,0,0,0
-3,0,1,6.823765,6.160541,0,9.967326,0,0,0
-3,0,1,6.823765,6.160541,0,9.967326,0,0,0
-4,0,1,6.823765,6.160541,1,24.1,1,0,0
-7,0,1,6.823765,6.160541,1,24.1,1,0,0
-4,0,1,6.823765,6.160541,1,24.1,1,0,0
-2,0,1,6.823765,6.160541,0,13.8,0,0,0
-1,0,1,6.823765,6.160541,0,13.8,0,0,0
-0,0,1,6.823765,6.160541,0,13.8,0,0,0
-2,0,0,6.218202,0,0,10.3,0,0,0
-0,0,0,6.218202,0,0,10.3,0,0,0
-1,0,0,6.218202,0,0,10.3,0,0,0
-3,0,0,6.218202,0,0,6.9,1,0,0
-5,0,0,6.218202,0,0,6.9,1,0,0
-0,0,0,6.218202,0,0,6.9,1,0,0
-2,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-4,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-0,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-2,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-14,3.931826,0,0,7.600903,0,10.3,0,1,0
-15,3.931826,0,0,7.600903,0,10.3,0,1,0
-16,3.931826,0,0,7.600903,0,10.3,0,1,0
-41,3.931826,0,0,7.600903,0,10.3,0,1,0
-7,3.931826,0,0,7.600903,0,6.9,1,0,0
-4,3.931826,0,0,7.600903,0,6.9,1,0,0
-0,3.931826,0,0,7.600903,0,6.9,1,0,0
-5,3.931826,0,0,7.600903,0,6.9,1,0,0
-4,3.931826,0,0,7.600903,0,6.9,1,0,0
-2,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-2,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,9.967326,1,0,0
-5,3.931826,0,0,7.600903,0,9.967326,1,0,0
-1,3.931826,0,0,7.600903,0,3.4,1,0,0
-2,3.931826,0,0,7.600903,0,3.4,1,0,0
-2,3.931826,0,0,7.600903,0,3.4,1,0,0
-0,3.931826,0,0,7.600903,0,3.4,1,0,0
-1,3.931826,0,0,7.600903,0,3.4,1,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-4,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-4,0,0,6.200184,0,0,9.967326,0,0,0
-1,0,0,6.200184,0,0,9.967326,0,0,0
-4,0,0,6.200184,0,0,9.967326,0,0,0
-3,0,0,6.200184,0,0,9.967326,0,0,0
-2,0,0,6.200184,0,0,9.967326,0,0,0
-3,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-1,0,0,6.200184,0,0,9.967326,0,0,0
-8,0,0,6.200184,0,0,9.967326,0,0,0
-2,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-4,0,0,6.200184,0,0,9.967326,0,0,0
-2,0,0,6.200184,0,0,10.3,0,1,0
-7,0,0,6.200184,0,0,10.3,0,1,0
-2,0,0,6.200184,0,0,10.3,0,1,0
-1,0,0,6.200184,0,0,10.3,0,1,0
-3,0,0,6.200184,0,0,10.3,0,1,0
-4,0,0,6.200184,0,1,6.9,0,0,0
-0,0,0,6.200184,0,1,6.9,0,0,0
-1,0,0,6.200184,0,1,6.9,0,0,0
-1,0,0,6.200184,0,1,6.9,0,0,0
-6,0,0,6.200184,0,1,6.9,0,0,0
-2,0,0,5.198276,0,0,6.9,0,0,0
-6,0,0,5.198276,0,0,6.9,0,0,0
-3,0,0,5.198276,0,0,6.9,0,0,0
-2,0,0,5.198276,0,0,6.9,0,0,0
-2,0,0,5.198276,0,0,6.9,0,0,0
-0,0,0,5.198276,0,0,13.8,0,0,0
-0,0,0,5.198276,0,0,13.8,0,0,0
-4,0,0,5.198276,0,0,13.8,0,0,0
-0,0,0,5.198276,0,0,13.8,0,0,0
-1,0,0,5.198276,0,0,13.8,0,0,0
-24,0,0,5.991664,0,0,9.967326,0,0,0
-6,0,0,5.991664,0,0,9.967326,0,0,0
-5,0,0,5.991664,0,0,9.967326,0,0,0
-5,0,0,5.991664,0,0,9.967326,0,0,0
-7,0,0,5.991664,0,0,9.967326,0,0,0
-0,0,0,5.991664,0,0,6.9,0,0,0
-0,0,0,5.991664,0,0,6.9,0,0,0
-0,0,0,5.991664,0,0,6.9,0,0,0
-1,0,0,5.991664,0,0,6.9,0,0,0
-0,0,0,5.991664,0,0,6.9,0,0,0
-3,0,0,5.991664,0,0,9.967326,0,0,0
-1,0,0,5.991664,0,0,9.967326,0,0,0
-5,0,0,5.991664,0,0,9.967326,0,0,0
-2,0,0,5.991664,0,0,9.967326,0,0,0
-1,0,0,5.991664,0,0,9.967326,0,0,0
-8,0,0,5.991664,0,0,27.6,0,0,0
-5,0,0,5.991664,0,0,27.6,0,0,0
-4,0,0,5.991664,0,0,27.6,0,0,0
-3,0,0,5.991664,0,0,27.6,0,0,0
-4,0,0,5.991664,0,0,27.6,0,0,0
-0,4.564348,0,0,3.592253,0,6.9,0,0,0
-0,4.564348,0,0,3.592253,0,6.9,0,0,0
-1,4.564348,0,0,3.592253,0,6.9,0,0,0
-0,3.931826,0,0,7.185387,0,0,0,0,0
-2,3.931826,0,0,7.185387,0,0,0,0,0
-0,3.931826,0,0,7.185387,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-6,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,0,0,5.527523,0,0,9.967326,0,0,0
-1,0,0,5.527523,0,0,9.967326,0,0,0
-1,0,0,5.527523,0,0,9.967326,0,0,0
-2,0,0,5.527523,0,0,6.9,1,0,0
-2,0,0,5.527523,0,0,6.9,1,0,0
-2,0,0,5.527523,0,0,6.9,1,0,0
-22,0,0,5.527523,0,0,9.967326,0,1,0
-25,0,0,5.527523,0,0,9.967326,0,1,0
-30,0,0,5.527523,0,0,9.967326,0,1,0
-2,0,0,5.527523,0,0,10.3,1,0,0
-0,0,0,5.527523,0,0,10.3,1,0,0
-4,0,0,5.527523,0,0,10.3,1,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.872128,6.948998,0,17.2,1,0,0
-2,4.564348,0,6.872128,6.948998,0,17.2,1,0,0
-3,4.564348,0,6.872128,6.948998,0,17.2,1,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,10.3,1,0,0
-6,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-4,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-4,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-0,3.258096,0,0,6.618472,0,10.3,1,0,0
-1,3.258096,0,0,6.618472,0,10.3,1,0,0
-7,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-2,0,0,5.11247,0,0,13.8,0,0,0
-6,0,0,5.11247,0,0,13.8,0,0,0
-3,0,0,5.11247,0,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-3,3.931826,0,6.907755,7.600903,0,0,0,0,0
-4,3.931826,0,6.907755,7.600903,0,0,0,0,0
-8,3.931826,0,6.907755,7.600903,0,0,0,0,0
-6,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-0,0,1,5.703783,5.755076,0,17.2,0,0,0
-7,0,1,5.703783,5.755076,0,9.967326,0,0,0
-0,0,1,5.703783,5.755076,0,9.967326,0,0,0
-3,0,1,5.703783,5.755076,0,9.967326,0,0,0
-5,0,1,5.010635,5.061929,0,27.6,1,0,0
-0,0,1,5.010635,5.061929,0,27.6,1,0,0
-0,0,1,5.010635,5.061929,0,27.6,1,0,0
-1,0,1,5.010635,5.061929,0,27.6,1,0,0
-0,0,1,5.010635,5.061929,0,27.6,1,0,0
-7,0,0,0,0,1,6.9,1,0,0
-1,0,0,0,0,1,6.9,1,0,0
-4,0,0,0,0,1,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-5,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,4.836282,0,0,10.3,1,0,0
-1,0,0,4.836282,0,0,10.3,1,0,0
-2,0,0,4.836282,0,0,10.3,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-24,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-33,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-9,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-12,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-13,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-11,0,0,0,0,0,13.8,0,0,0
-5,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-6,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-6,4.564348,0,0,4.573082,0,0,0,0,0
-3,4.564348,0,0,4.573082,0,0,0,0,0
-0,4.564348,0,0,4.573082,0,0,0,0,0
-1,4.564348,0,0,5.362033,0,10.3,1,0,0
-1,4.564348,0,0,5.362033,0,10.3,1,0,0
-2,4.564348,0,0,5.362033,0,10.3,1,0,0
-1,0,0,5.372497,0,0,3.4,0,0,0
-0,0,0,5.372497,0,0,3.4,0,0,0
-5,0,0,5.372497,0,0,3.4,0,0,0
-9,0,0,5.372497,0,0,9.967326,0,0,0
-1,0,0,5.372497,0,0,9.967326,0,0,0
-2,0,0,5.372497,0,0,9.967326,0,0,0
-2,0,0,5.372497,0,1,9.967326,0,0,0
-0,0,0,5.372497,0,1,9.967326,0,0,0
-3,0,0,5.372497,0,1,9.967326,0,0,0
-1,0,0,5.372497,0,0,13.8,0,0,0
-1,0,0,5.372497,0,0,13.8,0,0,0
-2,0,0,5.372497,0,0,13.8,0,0,0
-1,0,0,5.372497,0,0,9.967326,0,0,0
-0,0,0,5.372497,0,0,9.967326,0,0,0
-3,0,0,5.372497,0,0,9.967326,0,0,0
-2,0,1,6.200184,6.160541,0,9.967326,0,0,0
-1,0,1,6.200184,6.160541,0,9.967326,0,0,0
-6,0,1,6.200184,6.160541,0,9.967326,0,0,0
-0,0,1,6.200184,6.160541,0,3.4,0,0,0
-0,0,1,6.200184,6.160541,0,3.4,0,0,0
-0,0,1,6.200184,6.160541,0,3.4,0,0,0
-0,0,1,6.200184,6.160541,0,0,0,0,0
-0,0,1,6.200184,6.160541,0,0,0,0,0
-2,0,1,6.200184,6.160541,0,0,0,0,0
-0,0,1,6.200184,6.160541,0,9.967326,0,0,0
-0,0,1,6.200184,6.160541,0,9.967326,0,0,0
-1,0,1,6.200184,6.160541,0,9.967326,0,0,0
-5,0,0,0,0,1,6.9,0,0,0
-4,0,0,0,0,1,6.9,0,0,0
-7,0,0,0,0,1,6.9,0,0,0
-3,0,0,0,0,0,17.2,1,0,0
-3,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,17.2,1,0,0
-3,3.258096,0,4.787492,6.173786,0,3.4,1,0,0
-7,3.258096,0,4.787492,6.173786,0,3.4,1,0,0
-10,3.258096,0,4.787492,6.173786,0,3.4,1,0,0
-23,3.258096,0,4.787492,6.173786,1,31,0,1,0
-18,3.258096,0,4.787492,6.173786,1,31,0,1,0
-4,3.258096,0,4.787492,6.173786,1,31,0,1,0
-7,3.258096,0,4.787492,6.173786,0,3.4,0,0,0
-5,3.258096,0,4.787492,6.173786,0,3.4,0,0,0
-1,3.258096,0,4.787492,6.173786,0,3.4,0,0,0
-0,3.258096,0,4.787492,6.173786,0,9.967326,0,0,0
-12,3.258096,0,4.787492,6.173786,0,9.967326,0,0,0
-3,3.258096,0,4.787492,6.173786,0,9.967326,0,0,0
-1,3.258096,0,4.787492,6.173786,0,13.8,0,0,0
-2,3.258096,0,4.787492,6.173786,0,13.8,0,0,0
-5,3.258096,0,4.787492,6.173786,0,13.8,0,0,0
-0,4.564348,0,6.141069,6.192362,0,13.8,1,0,0
-0,4.564348,0,6.141069,6.192362,0,13.8,1,0,0
-4,4.564348,0,6.141069,6.192362,0,13.8,1,0,0
-7,0,0,0,0,.1572505,9.967326,0,1,0
-2,0,0,0,0,.1572505,9.967326,0,1,0
-5,0,0,0,0,.1572505,9.967326,0,1,0
-4,0,0,0,0,.1572505,9.967326,1,0,0
-6,0,0,0,0,.1572505,9.967326,1,0,0
-3,0,0,0,0,.1572505,9.967326,1,0,0
-7,0,0,0,0,.1572505,9.967326,1,0,0
-1,0,0,0,0,.1572505,9.967326,1,0,0
-2,0,0,0,0,.1572505,9.967326,1,0,0
-8,0,0,0,0,.1572505,9.967326,1,0,0
-2,0,0,0,0,.1572505,9.967326,1,0,0
-0,0,0,0,0,.1572505,9.967326,1,0,0
-2,0,0,0,0,.1572505,9.967326,1,0,0
-2,0,0,0,0,.1572505,9.967326,1,0,0
-3,0,0,0,0,.1572505,9.967326,1,0,0
-2,0,1,3.73767,5.061929,0,6.9,1,0,0
-1,0,1,3.73767,5.061929,0,6.9,1,0,0
-1,0,1,3.73767,5.061929,0,6.9,1,0,0
-1,0,1,3.73767,5.061929,0,6.9,1,0,0
-5,0,1,3.73767,5.061929,0,6.9,1,0,0
-2,0,1,5.749202,5.755076,0,10.3,1,0,0
-1,0,1,5.749202,5.755076,0,10.3,1,0,0
-3,0,1,5.749202,5.755076,0,10.3,1,0,0
-0,0,1,5.749202,5.755076,0,10.3,1,0,0
-1,0,1,5.749202,5.755076,0,10.3,1,0,0
-1,0,1,5.881984,5.755076,0,9.967326,1,0,0
-2,0,1,5.881984,5.755076,0,9.967326,1,0,0
-1,0,1,5.881984,5.755076,0,9.967326,1,0,0
-1,0,1,5.881984,5.755076,0,9.967326,1,0,0
-0,0,1,5.881984,5.755076,0,17.2,1,0,0
-3,0,1,5.881984,5.755076,0,17.2,1,0,0
-2,0,1,5.881984,5.755076,0,17.2,1,0,0
-2,0,1,5.881984,5.755076,0,17.2,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-4,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-2,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-2,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-1,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-1,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-1,3.258096,0,6.476973,7.863267,0,9.967326,0,0,0
-0,3.258096,0,6.476973,7.863267,0,6.9,0,0,0
-0,3.258096,0,6.476973,7.863267,0,6.9,0,0,0
-1,3.258096,0,6.476973,7.863267,0,6.9,0,0,0
-0,0,0,5.902633,0,0,17.2,0,0,0
-1,0,0,5.902633,0,0,17.2,0,0,0
-4,0,0,5.902633,0,0,17.2,0,0,0
-1,0,0,5.902633,0,0,9.967326,0,0,0
-0,0,0,5.902633,0,0,9.967326,0,0,0
-1,0,0,5.902633,0,0,9.967326,0,0,0
-1,0,0,5.902633,0,0,9.967326,0,0,0
-2,0,0,5.902633,0,0,9.967326,0,0,0
-1,0,0,5.902633,0,0,9.967326,0,0,0
-0,0,0,5.902633,0,0,6.9,0,0,0
-0,0,0,5.902633,0,0,6.9,0,0,0
-0,0,0,5.902633,0,0,6.9,0,0,0
-52,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-8,0,1,6.109248,6.160541,0,13.8,0,1,0
-2,0,1,6.109248,6.160541,0,13.8,0,1,0
-7,0,1,6.109248,6.160541,0,13.8,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-5,0,1,6.109248,6.160541,0,9.967326,1,0,0
-17,0,1,6.109248,6.160541,0,9.967326,0,0,0
-11,0,1,6.109248,6.160541,0,9.967326,0,0,0
-44,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,0,4.718499,0,0,6.9,1,0,0
-7,0,0,4.718499,0,0,6.9,1,0,0
-3,0,0,4.718499,0,0,6.9,1,0,0
-7,0,0,4.718499,0,0,20.7,1,0,0
-5,0,0,4.718499,0,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-10,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-4,0,1,6.109248,6.160541,0,6.9,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,4.564348,0,6.044199,6.095492,0,6.9,0,0,0
-4,4.564348,0,6.044199,6.095492,0,6.9,0,0,0
-3,4.564348,0,6.044199,6.095492,0,6.9,0,0,0
-3,4.564348,0,6.044199,6.095492,0,6.9,0,0,0
-2,4.564348,0,6.044199,6.095492,0,6.9,0,0,0
-7,4.564348,0,6.044199,6.095492,0,20.7,0,0,0
-10,4.564348,0,6.044199,6.095492,0,20.7,0,0,0
-2,4.564348,0,6.044199,6.095492,0,20.7,0,0,0
-1,4.564348,0,6.044199,6.095492,0,20.7,0,0,0
-4,4.564348,0,6.044199,6.095492,0,20.7,0,0,0
-2,4.564348,0,6.044199,6.095492,1,3.4,1,0,0
-6,4.564348,0,6.044199,6.095492,1,3.4,1,0,0
-2,4.564348,0,6.044199,6.095492,1,3.4,1,0,0
-2,4.564348,0,6.044199,6.095492,1,3.4,1,0,0
-0,4.564348,0,6.044199,6.095492,1,3.4,1,0,0
-8,4.564348,0,6.044199,6.095492,0,0,1,0,0
-4,4.564348,0,6.044199,6.095492,0,0,1,0,0
-2,4.564348,0,6.044199,6.095492,0,0,1,0,0
-19,4.564348,0,6.044199,6.095492,0,0,1,0,0
-8,4.564348,0,6.044199,6.095492,0,0,1,0,0
-5,4.564348,0,6.044199,6.095492,0,3.4,0,0,0
-5,4.564348,0,6.044199,6.095492,0,3.4,0,0,0
-5,4.564348,0,6.044199,6.095492,0,3.4,0,0,0
-12,4.564348,0,6.044199,6.095492,0,3.4,0,0,0
-2,4.564348,0,6.044199,6.095492,0,3.4,0,0,0
-6,4.564348,0,6.044199,6.095492,0,9.967326,0,0,0
-2,4.564348,0,6.044199,6.095492,0,9.967326,0,0,0
-6,4.564348,0,6.044199,6.095492,0,9.967326,0,0,0
-0,4.564348,0,6.044199,6.095492,0,9.967326,0,0,0
-7,4.564348,0,6.044199,6.095492,0,9.967326,0,0,0
-0,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-3,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-3,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.586172,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.371441,7.757735,0,10.3,1,0,0
-2,3.258096,0,6.371441,7.757735,0,10.3,1,0,0
-1,3.258096,0,6.371441,7.757735,0,10.3,1,0,0
-9,0,0,0,0,0,20.7,1,0,0
-11,0,0,0,0,0,20.7,1,0,0
-6,0,0,0,0,0,20.7,1,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,0,1,0,6.160541,0,9.967326,0,0,0
-1,0,1,0,6.160541,0,9.967326,0,0,0
-3,0,1,0,6.160541,0,9.967326,0,0,0
-5,0,1,0,6.160541,0,9.967326,0,0,0
-5,0,1,0,6.160541,0,9.967326,0,0,0
-2,0,1,0,6.160541,0,9.967326,0,0,0
-2,0,1,0,6.160541,0,0,0,0,0
-3,0,1,0,6.160541,0,0,0,0,0
-1,0,1,0,6.160541,0,0,0,0,0
-1,0,1,0,6.160541,0,3.4,0,0,0
-0,0,1,0,6.160541,0,3.4,0,0,0
-3,0,1,0,6.160541,0,3.4,0,0,0
-0,3.258096,0,6.497152,7.883446,0,0,0,0,0
-0,3.258096,0,6.497152,7.883446,0,0,0,0,0
-3,3.258096,0,6.497152,7.883446,0,0,0,0,0
-0,3.258096,0,6.497152,7.883446,0,6.9,1,0,0
-2,3.258096,0,6.497152,7.883446,0,6.9,1,0,0
-0,3.258096,0,6.497152,7.883446,0,6.9,1,0,0
-2,3.258096,0,6.497152,7.883446,0,9.967326,0,0,0
-3,3.258096,0,6.497152,7.883446,0,9.967326,0,0,0
-2,3.258096,0,6.497152,7.883446,0,9.967326,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-0,0,1,5.010635,5.061929,0,3.4,0,0,0
-1,0,1,5.010635,5.061929,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-7,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-7,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-3,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.258096,0,6.55108,7.937375,1,24.1,0,1,0
-1,3.258096,0,6.55108,7.937375,1,24.1,0,1,0
-2,3.258096,0,6.55108,7.937375,1,24.1,0,1,0
-8,3.258096,0,6.55108,7.937375,0,17.2,0,1,0
-3,3.258096,0,6.55108,7.937375,0,17.2,0,1,0
-6,3.258096,0,6.55108,7.937375,0,17.2,0,1,0
-2,3.258096,0,6.55108,7.937375,0,9.967326,0,0,0
-1,3.258096,0,6.55108,7.937375,0,9.967326,0,0,0
-3,3.258096,0,6.55108,7.937375,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,1,10.3,0,0,0
-0,3.931826,0,6.907755,7.600903,1,10.3,0,0,0
-0,3.931826,0,6.907755,7.600903,1,10.3,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-4,0,0,0,0,0,0,0,0,0
-5,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-21,0,0,0,0,1,13.8,0,0,0
-23,0,0,0,0,1,13.8,0,0,0
-15,0,0,0,0,1,13.8,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,4.564348,0,5.955423,5.911367,0,0,0,0,0
-0,4.564348,0,5.955423,5.911367,0,0,0,0,0
-0,4.564348,0,5.955423,5.911367,0,0,0,0,0
-2,4.564348,0,6.882438,6.959049,0,17.2,1,0,0
-0,4.564348,0,6.882438,6.959049,0,17.2,1,0,0
-4,4.564348,0,6.882438,6.959049,0,17.2,1,0,0
-0,4.564348,0,6.882438,6.959049,0,17.2,1,0,0
-5,4.564348,0,6.882438,6.959049,0,17.2,1,0,0
-5,4.564348,0,6.882438,6.959049,1,34.5,1,0,0
-4,4.564348,0,6.882438,6.959049,1,34.5,1,0,0
-5,4.564348,0,6.882438,6.959049,1,34.5,1,0,0
-4,4.564348,0,6.882438,6.959049,1,34.5,1,0,0
-11,4.564348,0,6.882438,6.959049,1,34.5,1,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,1,0,0
-3,4.564348,0,6.882438,6.959049,0,9.967326,1,0,0
-4,4.564348,0,6.882438,6.959049,0,9.967326,1,0,0
-4,4.564348,0,6.882438,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.882438,6.959049,0,9.967326,1,0,0
-2,3.258096,0,6.620073,8.006368,1,9.967326,1,0,0
-5,3.258096,0,6.620073,8.006368,1,9.967326,1,0,0
-3,3.258096,0,6.620073,8.006368,1,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,1,9.967326,1,0,0
-0,3.258096,0,6.620073,8.006368,1,9.967326,1,0,0
-2,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-2,3.258096,0,6.620073,8.006368,0,0,1,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.842769,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.842769,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.842769,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.842769,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.842769,8.006368,0,0,0,0,0
-2,3.258096,0,6.842769,8.006368,0,0,0,0,0
-2,3.258096,0,6.842769,8.006368,0,0,0,0,0
-4,0,0,0,0,1,31,0,1,0
-2,0,0,0,0,1,31,0,1,0
-3,0,0,0,0,1,31,0,1,0
-6,0,0,0,0,1,20.7,0,1,0
-0,0,0,0,0,1,20.7,0,1,0
-2,0,0,0,0,1,20.7,0,1,0
-1,4.564348,0,6.907755,6.959049,1,13.8,0,0,0
-1,4.564348,0,6.907755,6.959049,1,13.8,0,0,0
-3,4.564348,0,6.907755,6.959049,1,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-9,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-9,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-8,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-5,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-2,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-3,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-5,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-3,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-2,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-18,0,1,6.109248,6.160541,0,17.2,1,0,0
-13,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,41.4,0,0,0
-3,0,1,6.109248,6.160541,0,41.4,0,0,0
-0,0,1,6.109248,6.160541,0,41.4,0,0,0
-0,0,1,6.109248,6.160541,0,41.4,0,0,0
-1,0,1,6.109248,6.160541,0,41.4,0,0,0
-8,0,1,6.109248,6.160541,0,10.3,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-7,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-3,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-4,3.258096,0,6.586172,8.006368,0,20.7,1,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.586172,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.586172,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.586172,8.006368,0,13.8,1,0,0
-14,3.258096,0,6.586172,8.006368,0,13.8,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-6,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-4,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,0,0,0,0
-5,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-5,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-5,0,0,0,0,1,34.5,1,0,0
-9,0,0,0,0,1,34.5,1,0,0
-44,0,0,0,0,1,34.5,1,0,0
-76,0,0,0,0,1,34.5,1,0,0
-77,0,0,0,0,1,34.5,1,0,0
-1,0,0,0,0,1,17.2,0,0,0
-1,0,0,0,0,1,17.2,0,0,0
-8,0,0,0,0,1,17.2,0,0,0
-25,0,0,0,0,1,17.2,0,0,0
-12,0,0,0,0,1,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-5,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-5,0,0,0,0,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-10,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-18,3.258096,0,6.802395,8.188689,0,27.6,0,0,0
-0,3.258096,0,6.802395,8.188689,0,27.6,0,0,0
-0,3.258096,0,6.802395,8.188689,0,27.6,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-2,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-4,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-5,0,1,6.109248,6.160541,0,24.1,1,0,0
-7,0,1,6.109248,6.160541,0,24.1,1,0,0
-1,0,1,6.109248,6.160541,0,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-5,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-3,3.931826,0,6.907755,7.600903,1,20.7,1,0,0
-3,3.931826,0,6.907755,7.600903,1,20.7,1,0,0
-9,3.931826,0,6.907755,7.600903,1,20.7,1,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-3,3.931826,0,6.907755,7.600903,1,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,1,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,1,6.9,1,0,0
-1,3.931826,0,6.907755,7.600903,1,6.9,1,0,0
-2,3.931826,0,6.907755,7.600903,1,6.9,1,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-0,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-2,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-13,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-3,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-3,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-2,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,9.967326,0,0,0
-1,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,0,1,6.109248,6.160541,0,9.967326,0,0,0
-6,0,1,6.109248,6.160541,0,6.9,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,5.711089,5.061929,0,10.3,1,0,0
-0,0,1,5.711089,5.061929,0,10.3,1,0,0
-2,0,1,5.711089,5.061929,0,10.3,1,0,0
-8,0,0,0,0,1,31,1,0,0
-4,0,0,0,0,1,31,1,0,0
-4,0,0,0,0,1,31,1,0,0
-2,0,0,5.015954,0,0,13.8,0,0,0
-0,0,0,5.015954,0,0,13.8,0,0,0
-0,0,0,5.015954,0,0,13.8,0,0,0
-8,0,1,5.703783,5.755076,1,17.2,0,1,0
-10,0,1,5.703783,5.755076,1,17.2,0,1,0
-7,0,1,5.703783,5.755076,1,17.2,0,1,0
-9,0,1,5.703783,5.755076,1,17.2,0,1,0
-9,0,1,5.703783,5.755076,1,17.2,0,1,0
-1,0,1,5.703783,5.755076,1,24.1,1,0,0
-7,0,1,5.703783,5.755076,1,24.1,1,0,0
-4,0,1,5.703783,5.755076,1,24.1,1,0,0
-4,0,1,5.703783,5.755076,1,24.1,1,0,0
-5,0,1,5.703783,5.755076,1,24.1,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-6,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-4,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,1,0,0
-1,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-7,0,1,6.109248,6.160541,0,3.4,1,0,0
-6,0,1,6.109248,6.160541,0,3.4,1,0,0
-5,0,1,5.855989,5.061929,0,3.4,0,0,0
-9,0,1,5.855989,5.061929,0,3.4,0,0,0
-11,0,1,5.855989,5.061929,0,3.4,0,0,0
-4,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-17,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-6,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-6,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,1,0,0
-3,4.564348,0,2.890372,2.941665,0,9.967326,0,0,0
-0,4.564348,0,2.890372,2.941665,0,9.967326,0,0,0
-1,4.564348,0,2.890372,2.941665,0,9.967326,0,0,0
-6,4.564348,0,2.890372,2.941665,0,20.7,1,0,0
-2,4.564348,0,2.890372,2.941665,0,20.7,1,0,0
-1,4.564348,0,2.890372,2.941665,0,20.7,1,0,0
-4,3.258096,0,6.55108,7.937375,0,9.967326,0,1,0
-3,3.258096,0,6.55108,7.937375,0,9.967326,0,1,0
-2,3.258096,0,6.55108,7.937375,0,9.967326,0,1,0
-0,3.258096,0,6.55108,7.937375,0,9.967326,0,1,0
-1,3.258096,0,6.55108,7.937375,0,9.967326,0,1,0
-14,3.258096,0,6.55108,7.937375,0,24.1,0,1,0
-13,3.258096,0,6.55108,7.937375,0,24.1,0,1,0
-4,3.258096,0,6.55108,7.937375,0,24.1,0,1,0
-1,3.258096,0,6.55108,7.937375,0,24.1,0,1,0
-1,3.258096,0,6.55108,7.937375,0,24.1,0,1,0
-1,3.258096,0,6.55108,7.937375,0,6.9,1,0,0
-2,3.258096,0,6.55108,7.937375,0,6.9,1,0,0
-0,3.258096,0,6.55108,7.937375,0,6.9,1,0,0
-0,3.258096,0,6.55108,7.937375,0,6.9,1,0,0
-1,3.258096,0,6.55108,7.937375,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-3,4.564348,0,0,5.755076,0,10.3,0,0,0
-0,4.564348,0,0,5.755076,0,10.3,0,0,0
-2,0,1,6.052089,6.160541,0,3.4,1,0,0
-2,0,1,6.052089,6.160541,0,3.4,1,0,0
-2,0,1,6.052089,6.160541,0,3.4,1,0,0
-2,0,1,6.052089,6.160541,0,9.967326,0,0,0
-1,0,1,6.052089,6.160541,0,9.967326,0,0,0
-1,0,1,6.052089,6.160541,0,9.967326,0,0,0
-2,0,1,6.052089,6.160541,0,13.8,0,0,0
-2,0,1,6.052089,6.160541,0,13.8,0,0,0
-1,0,1,6.052089,6.160541,0,13.8,0,0,0
-1,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-6,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-6,0,1,6.109248,6.160541,0,24.1,1,0,0
-1,0,1,6.109248,6.160541,0,24.1,1,0,0
-1,0,1,6.109248,6.160541,0,24.1,1,0,0
-6,0,1,5.010635,5.061929,0,31,1,0,0
-2,0,1,5.010635,5.061929,0,31,1,0,0
-6,0,1,5.010635,5.061929,0,31,1,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-5,0,0,0,0,0,0,0,0,0
-0,0,0,6.200184,0,0,0,0,0,0
-4,0,0,6.200184,0,0,0,0,0,0
-5,0,0,6.200184,0,0,0,0,0,0
-0,0,0,6.200184,0,0,6.9,1,0,0
-0,0,0,6.200184,0,0,6.9,1,0,0
-0,0,0,6.200184,0,0,6.9,1,0,0
-0,0,0,6.200184,0,0,0,0,0,0
-1,0,0,6.200184,0,0,0,0,0,0
-0,0,0,6.200184,0,0,13.8,1,0,0
-2,0,0,6.200184,0,0,13.8,1,0,0
-3,0,0,6.200184,0,0,13.8,1,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-2,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-1,0,0,6.200184,0,0,9.967326,0,0,0
-0,0,0,6.200184,0,0,9.967326,0,0,0
-1,0,0,6.200184,0,0,9.967326,0,0,0
-1,0,0,6.200184,0,0,6.9,0,0,0
-0,0,0,6.200184,0,0,6.9,0,0,0
-0,0,0,6.200184,0,0,6.9,0,0,0
-3,0,1,5.352806,5.061929,0,10.3,0,0,0
-0,0,1,5.352806,5.061929,0,10.3,0,0,0
-4,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-25,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-10,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,31,0,1,0
-3,4.564348,0,6.907755,6.959049,0,31,0,1,0
-1,4.564348,0,6.907755,6.959049,0,31,0,1,0
-4,0,0,5.154216,0,0,9.967326,0,0,0
-7,0,0,5.154216,0,0,9.967326,0,0,0
-4,0,0,5.154216,0,0,9.967326,0,0,0
-7,0,0,5.154216,0,0,17.2,1,0,0
-19,0,0,5.154216,0,0,17.2,1,0,0
-6,0,0,5.154216,0,0,17.2,1,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-0,0,0,5.154216,0,0,3.4,0,0,0
-1,0,0,5.154216,0,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-3,3.258096,0,6.109248,8.006368,1,10.3,0,0,0
-8,3.258096,0,6.109248,8.006368,1,10.3,0,0,0
-0,3.258096,0,6.109248,8.006368,1,10.3,0,0,0
-3,4.564348,0,6.684612,6.735905,0,3.4,0,0,0
-3,4.564348,0,6.684612,6.735905,0,3.4,0,0,0
-9,4.564348,0,6.684612,6.735905,0,9.967326,0,1,0
-2,4.564348,0,6.684612,6.735905,0,9.967326,0,1,0
-0,4.564348,0,6.684612,6.735905,0,9.967326,0,1,0
-2,4.564348,0,6.684612,6.735905,0,17.2,0,0,0
-1,4.564348,0,6.684612,6.735905,0,17.2,0,0,0
-1,4.564348,0,6.684612,6.735905,0,17.2,0,0,0
-0,4.564348,0,6.684612,6.735905,0,9.967326,0,0,0
-0,4.564348,0,6.684612,6.735905,0,9.967326,0,0,0
-0,4.564348,0,6.684612,6.735905,0,9.967326,0,0,0
-3,4.564348,0,6.684612,6.735905,0,13.8,0,0,0
-2,4.564348,0,6.684612,6.735905,0,13.8,0,0,0
-1,4.564348,0,6.684612,6.735905,0,13.8,0,0,0
-2,4.564348,0,5.521461,5.572754,0,0,0,0,0
-0,4.564348,0,5.521461,5.572754,0,0,0,0,0
-0,4.564348,0,5.521461,5.572754,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-6,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-9,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-5,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-2,3.931826,0,6.620073,7.313221,0,6.9,0,0,0
-1,3.931826,0,6.620073,7.313221,0,6.9,0,0,0
-3,3.931826,0,6.620073,7.313221,0,6.9,0,0,0
-1,3.931826,0,6.620073,7.313221,0,6.9,0,0,0
-3,3.931826,0,6.620073,7.313221,0,6.9,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-5,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-0,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-3,0,0,0,0,0,9.967326,1,0,0
-2,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-1,0,0,0,0,0,9.967326,1,0,0
-4,0,1,5.010635,5.061929,1,0,1,0,0
-0,0,1,5.010635,5.061929,1,0,1,0,0
-0,0,1,5.010635,5.061929,1,0,1,0,0
-0,0,1,5.352806,5.061929,1,10.3,0,0,0
-1,0,1,5.352806,5.061929,1,10.3,0,0,0
-0,0,1,5.352806,5.061929,1,10.3,0,0,0
-0,0,1,5.703783,5.755076,0,9.967326,0,0,0
-2,0,1,5.703783,5.755076,0,9.967326,0,0,0
-0,0,1,5.703783,5.755076,0,9.967326,0,0,0
-3,0,1,5.703783,5.755076,0,34.5,1,0,0
-2,0,1,5.703783,5.755076,0,34.5,1,0,0
-0,0,1,5.703783,5.755076,0,34.5,1,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-2,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-2,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-3,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-3,0,0,6.468878,0,0,9.967326,0,0,0
-1,0,0,6.468878,0,0,9.967326,0,0,0
-0,0,0,6.468878,0,0,9.967326,0,0,0
-2,0,0,6.468878,0,0,17.2,1,0,0
-3,0,0,6.468878,0,0,17.2,1,0,0
-1,0,0,6.468878,0,0,17.2,1,0,0
-1,0,0,6.468878,0,0,17.2,1,0,0
-1,0,0,6.468878,0,0,17.2,1,0,0
-1,0,0,6.468878,0,0,17.2,0,0,0
-6,0,0,6.468878,0,0,17.2,0,0,0
-5,0,0,6.468878,0,0,17.2,0,0,0
-5,0,0,6.468878,0,0,17.2,0,0,0
-1,0,0,6.468878,0,0,17.2,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-3,0,1,5.703783,5.755076,0,6.9,0,0,0
-0,0,1,5.703783,5.755076,0,6.9,0,0,0
-2,0,1,5.703783,5.755076,0,6.9,0,0,0
-4,0,1,5.504844,5.061929,0,13.8,1,0,0
-3,0,1,5.504844,5.061929,0,13.8,1,0,0
-1,0,1,5.504844,5.061929,0,13.8,1,0,0
-18,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-6,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-4,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-0,0,1,6.109248,6.160541,.1572505,9.967326,0,0,0
-0,0,1,6.109248,6.160541,.1572505,9.967326,0,0,0
-0,0,1,6.109248,6.160541,.1572505,9.967326,0,0,0
-1,0,1,6.109248,6.160541,.1572505,9.967326,0,1,0
-4,0,1,6.109248,6.160541,.1572505,9.967326,0,1,0
-2,0,1,6.109248,6.160541,.1572505,9.967326,0,1,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-1,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-0,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-1,0,1,6.109248,6.160541,.0431267,9.967326,0,0,0
-7,0,1,5.010635,5.061929,0,6.9,0,0,0
-4,0,1,5.010635,5.061929,0,6.9,0,0,0
-2,0,1,5.010635,5.061929,0,6.9,0,0,0
-2,3.258096,0,6.263398,7.649693,.1572505,9.967326,1,0,0
-0,3.258096,0,6.263398,7.649693,.1572505,9.967326,1,0,0
-8,3.258096,0,6.263398,7.649693,.1572505,9.967326,1,0,0
-4,3.258096,0,6.263398,7.649693,.1572505,9.967326,1,0,0
-3,3.258096,0,6.263398,7.649693,.1572505,9.967326,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-10,0,1,6.109248,6.160541,0,3.4,1,0,0
-10,0,1,6.109248,6.160541,0,9.967326,0,0,0
-12,0,1,6.109248,6.160541,0,9.967326,0,0,0
-6,0,1,6.109248,6.160541,0,9.967326,0,0,0
-8,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-7,0,1,6.109248,6.160541,0,13.8,0,0,0
-3,0,1,6.109248,6.160541,0,9.967326,0,0,0
-8,0,1,6.109248,6.160541,0,9.967326,0,0,0
-7,0,1,6.109248,6.160541,0,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-3,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-6,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-5,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-0,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-4,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-12,4.564348,0,0,0,0,0,0,0,0
-5,4.564348,0,0,0,0,0,0,0,0
-5,4.564348,0,0,0,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,.1572505,9.967326,0,0,0
-3,0,0,6.828582,0,0,17.2,0,0,0
-2,0,0,6.828582,0,0,17.2,0,0,0
-4,0,0,6.828582,0,0,17.2,0,0,0
-5,0,0,6.828582,0,0,6.9,0,0,0
-9,0,0,6.828582,0,0,6.9,0,0,0
-7,0,0,6.828582,0,0,6.9,0,0,0
-0,4.564348,0,6.476973,6.528265,0,10.3,1,0,0
-1,4.564348,0,6.476973,6.528265,0,10.3,1,0,0
-0,4.564348,0,6.476973,6.528265,0,10.3,1,0,0
-3,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-2,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-3,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-1,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-8,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-5,4.564348,0,6.476973,6.528265,0,9.967326,0,0,0
-4,4.564348,0,6.476973,6.528265,0,0,1,0,0
-1,4.564348,0,6.476973,6.528265,0,0,1,0,0
-3,4.564348,0,6.476973,6.528265,0,0,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-4,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-7,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-5,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-0,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,1,0,0
-3,0,0,5.189618,0,0,17.2,1,0,0
-5,0,0,5.189618,0,0,17.2,1,0,0
-1,0,0,5.189618,0,0,17.2,1,0,0
-4,0,1,5.893411,5.755076,0,0,0,0,0
-0,0,1,5.893411,5.755076,0,0,0,0,0
-1,0,1,5.893411,5.755076,0,0,0,0,0
-3,0,1,5.893411,5.755076,0,3.4,0,0,0
-2,0,1,5.893411,5.755076,0,3.4,0,0,0
-2,0,1,5.893411,5.755076,0,3.4,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-5,0,0,0,0,0,9.967326,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-7,0,0,0,0,1,6.9,0,0,0
-1,0,0,0,0,1,6.9,0,0,0
-1,0,0,0,0,1,6.9,0,0,0
-2,0,0,0,0,1,6.9,0,0,0
-2,0,0,0,0,1,6.9,0,0,0
-5,3.258096,0,6.586172,8.006368,0,0,0,0,0
-8,3.258096,0,6.586172,8.006368,0,0,0,0,0
-6,3.258096,0,6.586172,8.006368,0,0,0,0,0
-2,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-10,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-4,3.258096,0,6.586172,8.006368,0,9.967326,0,0,0
-5,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.586172,8.006368,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,20.7,1,0,0
-6,3.931826,0,6.907755,7.600903,0,20.7,1,0,0
-2,3.931826,0,6.907755,7.600903,0,20.7,1,0,0
-1,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-5,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-2,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-13,3.258096,0,6.611073,7.344202,0,0,1,0,0
-0,3.258096,0,6.611073,7.344202,0,0,1,0,0
-3,3.258096,0,6.611073,7.344202,0,0,1,0,0
-3,3.258096,0,6.611073,7.344202,0,9.967326,1,0,0
-2,3.258096,0,6.611073,7.344202,0,9.967326,1,0,0
-3,3.258096,0,6.611073,7.344202,0,9.967326,1,0,0
-0,0,1,6.611073,6.160541,1,3.4,1,0,0
-6,0,1,6.611073,6.160541,1,3.4,1,0,0
-5,0,1,6.611073,6.160541,1,3.4,1,0,0
-1,0,1,6.611073,6.160541,0,9.967326,1,0,0
-4,0,1,6.611073,6.160541,0,17.2,1,0,0
-5,0,1,6.611073,6.160541,0,17.2,1,0,0
-2,0,1,6.611073,6.160541,0,17.2,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-26,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-14,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-11,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-0,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-3,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-3,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,4.564348,0,6.907555,6.959049,0,9.967326,1,0,0
-2,4.564348,0,6.907555,6.959049,0,9.967326,1,0,0
-1,4.564348,0,6.907555,6.959049,0,9.967326,1,0,0
-3,4.564348,0,6.907555,6.959049,0,6.9,1,0,0
-2,4.564348,0,6.907555,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907555,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907555,6.959049,0,3.4,1,0,0
-3,4.564348,0,6.907555,6.959049,0,3.4,1,0,0
-5,4.564348,0,6.907555,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.756816,6.808109,0,13.8,0,1,0
-0,4.564348,0,6.756816,6.808109,0,13.8,0,1,0
-1,4.564348,0,6.756816,6.808109,0,9.967326,0,0,0
-0,4.564348,0,6.756816,6.808109,0,9.967326,0,0,0
-0,4.564348,0,6.756816,6.808109,0,6.9,0,0,1
-1,4.564348,0,6.756816,6.808109,0,6.9,0,0,1
-7,0,0,0,0,0,37.9,0,0,0
-6,0,0,0,0,0,37.9,0,0,0
-4,0,0,0,0,0,37.9,0,0,0
-3,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,0,1,0,0
-4,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-6,0,0,0,0,1,17.2,1,0,0
-8,0,0,0,0,1,17.2,1,0,0
-2,0,0,0,0,1,17.2,1,0,0
-8,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-1,0,0,0,0,0,9.967326,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-8,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,10.3,0,1,0
-2,0,0,0,0,0,10.3,0,1,0
-9,0,0,0,0,0,10.3,0,1,0
-8,0,0,0,0,0,10.3,0,1,0
-4,0,0,0,0,0,10.3,0,1,0
-9,0,0,0,0,0,9.967326,0,0,0
-10,0,0,0,0,0,9.967326,0,0,0
-9,0,0,0,0,0,9.967326,0,0,0
-6,0,0,0,0,0,9.967326,0,0,0
-3,0,0,0,0,0,9.967326,0,0,0
-11,0,0,0,0,1,9.967326,1,0,0
-11,0,0,0,0,1,9.967326,1,0,0
-14,0,0,0,0,1,9.967326,1,0,0
-9,0,0,0,0,1,9.967326,1,0,0
-11,0,0,0,0,1,9.967326,1,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.882438,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.766191,6.817485,0,10.3,0,0,0
-0,4.564348,0,6.766191,6.817485,0,10.3,0,0,0
-0,4.564348,0,6.766191,6.817485,0,10.3,0,0,0
-0,0,1,6.052089,6.160541,0,6.9,1,0,0
-0,0,1,6.052089,6.160541,0,6.9,1,0,0
-1,0,1,6.052089,6.160541,0,6.9,1,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-3,0,1,6.052089,6.160541,0,9.967326,0,0,0
-1,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-4,0,1,6.052089,6.160541,0,9.967326,0,0,0
-3,0,1,6.052089,6.160541,0,13.8,0,0,0
-0,0,1,6.052089,6.160541,0,13.8,0,0,0
-4,0,1,6.052089,6.160541,0,13.8,0,0,0
-1,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-0,0,1,6.052089,6.160541,0,9.967326,0,0,0
-4,0,0,4.836282,0,0,10.3,1,0,0
-8,0,0,4.836282,0,0,10.3,1,0,0
-10,0,0,4.836282,0,0,10.3,1,0,0
-9,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-2,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-4,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-6,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-8,3.931826,0,6.907755,7.600903,1,6.9,0,0,1
-8,3.931826,0,6.907755,7.600903,1,6.9,0,0,1
-5,3.931826,0,6.907755,7.600903,1,6.9,0,0,1
-4,3.931826,0,6.907755,7.600903,1,6.9,0,0,1
-8,3.931826,0,6.907755,7.600903,1,6.9,0,0,1
-7,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-8,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-5,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-7,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-7,3.931826,0,6.907755,7.600903,0,9.967326,0,0,0
-1,3.931826,0,6.907755,7.600903,0,27.6,0,0,0
-4,3.931826,0,6.907755,7.600903,0,27.6,0,0,0
-6,3.931826,0,6.907755,7.600903,0,27.6,0,0,0
-10,3.931826,0,6.907755,7.600903,0,27.6,0,0,0
-5,3.931826,0,6.907755,7.600903,0,27.6,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-7,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-16,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,0,1,7.122189,5.755076,0,3.4,0,0,0
-1,0,1,7.122189,5.755076,0,3.4,0,0,0
-2,0,1,7.122189,5.755076,0,3.4,0,0,0
-0,0,1,7.122189,5.755076,0,3.4,0,0,0
-5,0,1,7.122189,5.755076,0,3.4,0,0,0
-0,0,1,7.122189,5.755076,0,0,0,0,0
-0,0,1,7.122189,5.755076,0,0,0,0,0
-0,0,1,7.122189,5.755076,0,0,0,0,0
-0,0,1,7.122189,5.755076,0,0,0,0,0
-1,0,1,7.122189,5.755076,0,0,0,0,0
-6,0,1,5.010635,5.061929,0,3.4,0,0,0
-3,0,1,5.010635,5.061929,0,3.4,0,0,0
-5,0,1,5.010635,5.061929,0,3.4,0,0,0
-6,0,1,5.010635,5.061929,0,3.4,0,0,0
-2,0,1,5.010635,5.061929,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-5,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-5,0,1,0,5.061929,0,6.9,1,0,0
-0,0,1,0,5.061929,0,6.9,1,0,0
-4,0,1,0,5.061929,0,6.9,1,0,0
-3,0,0,0,0,1,37.9,1,0,0
-1,0,0,0,0,1,37.9,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-6,0,0,0,0,0,3.4,0,1,0
-2,0,0,0,0,0,3.4,0,1,0
-6,0,0,0,0,0,3.4,0,1,0
-1,3.258096,0,6.612955,7.999249,0,10.3,1,0,0
-2,3.258096,0,6.612955,7.999249,0,10.3,1,0,0
-3,3.258096,0,6.612955,7.999249,0,10.3,1,0,0
-2,3.258096,0,6.612955,7.999249,0,10.3,1,0,0
-0,3.258096,0,6.612955,7.999249,0,10.3,1,0,0
-4,3.258096,0,5.703783,7.090077,1,6.9,0,0,0
-2,3.258096,0,5.703783,7.090077,1,6.9,0,0,0
-1,3.258096,0,5.703783,7.090077,1,6.9,0,0,0
-1,3.258096,0,5.703783,7.090077,1,6.9,0,0,0
-1,3.258096,0,5.703783,7.090077,1,6.9,0,0,0
-3,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-6,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-7,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-3,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-14,3.258096,0,5.703783,7.090077,0,10.3,1,0,0
-1,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-1,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,0,9.967326,0,0,0
-1,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-0,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-2,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-0,4.564348,0,6.123589,6.174882,0,24.1,1,0,0
-0,4.564348,0,6.123589,6.174882,0,24.1,1,0,0
-0,4.564348,0,6.123589,6.174882,0,24.1,1,0,0
-0,4.564348,0,6.123589,6.174882,0,13.8,1,0,0
-0,4.564348,0,6.123589,6.174882,0,13.8,1,0,0
-0,4.564348,0,6.123589,6.174882,0,13.8,1,0,0
-3,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-0,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-4,4.564348,0,6.123589,6.174882,0,3.4,1,0,0
-0,4.564348,0,5.416101,5.467394,0,6.9,1,0,0
-0,4.564348,0,5.416101,5.467394,0,6.9,1,0,0
-0,4.564348,0,5.416101,5.467394,0,6.9,1,0,0
-0,4.564348,0,6.802395,6.853688,0,3.4,0,0,0
-0,4.564348,0,6.802395,6.853688,0,3.4,0,0,0
-3,4.564348,0,6.802395,6.853688,0,3.4,0,0,0
-0,4.564348,0,6.802395,6.853688,1,10.3,0,0,0
-5,4.564348,0,6.802395,6.853688,1,10.3,0,0,0
-8,4.564348,0,6.802395,6.853688,1,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-14,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-6,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-7,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,5.741848,4.49981,0,0,0,0,0
-0,3.931826,0,5.741848,4.49981,0,0,0,0,0
-0,3.931826,0,5.741848,4.49981,0,0,0,0,0
-8,0,0,5.741848,0,0,10.3,0,1,0
-11,0,0,5.741848,0,0,10.3,0,1,0
-11,0,0,5.741848,0,0,10.3,0,1,0
-3,0,0,4.836282,0,0,6.9,1,0,0
-11,0,0,4.836282,0,0,6.9,1,0,0
-8,0,0,4.836282,0,0,6.9,1,0,0
-1,0,1,5.913449,5.755076,0,13.8,0,0,0
-0,0,1,5.913449,5.755076,0,13.8,0,0,0
-1,0,1,5.913449,5.755076,0,13.8,0,0,0
-2,0,1,5.913449,5.755076,0,13.8,0,0,0
-0,0,1,5.913449,5.755076,0,13.8,0,0,0
-2,0,1,5.913449,5.755076,0,10.3,1,0,0
-2,0,1,5.913449,5.755076,0,10.3,1,0,0
-1,0,1,5.913449,5.755076,0,10.3,1,0,0
-4,0,1,5.913449,5.755076,0,10.3,1,0,0
-1,0,1,5.913449,5.755076,0,10.3,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-10,0,0,0,0,0,6.9,1,0,0
-12,0,0,0,0,0,6.9,1,0,0
-11,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,6.9,1,0,0
-7,0,0,5.418764,0,0,9.967326,0,0,0
-3,0,0,5.418764,0,0,9.967326,0,0,0
-0,0,0,5.418764,0,0,9.967326,0,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-7,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-5,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-2,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,3.258096,0,6.620073,8.006368,0,9.967326,0,0,0
-1,0,1,5.749202,5.755076,0,10.3,0,0,0
-0,0,1,5.749202,5.755076,0,10.3,0,0,0
-1,0,1,5.749202,5.755076,0,10.3,0,0,0
-0,0,1,5.749202,5.755076,0,10.3,0,0,0
-2,0,1,5.749202,5.755076,0,10.3,0,0,0
-6,4.564348,0,6.372978,6.424272,.0268456,9.967326,0,0,0
-3,4.564348,0,6.372978,6.424272,.0268456,9.967326,0,0,0
-2,4.564348,0,6.372978,6.424272,.0268456,9.967326,0,0,0
-3,4.564348,0,6.372978,6.424272,.0268456,9.967326,0,0,0
-2,4.564348,0,6.372978,6.424272,.0268456,9.967326,0,0,0
-1,0,0,6.346478,0,0,0,0,0,0
-2,0,0,6.346478,0,0,0,0,0,0
-1,0,0,6.346478,0,0,0,0,0,0
-5,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-4,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-1,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-2,4.564348,0,6.907755,6.959049,0,9.967326,0,0,0
-0,0,0,3.401197,0,0,6.9,0,0,0
-0,0,0,3.401197,0,0,6.9,0,0,0
-1,0,0,3.401197,0,0,6.9,0,0,0
-4,0,0,3.401197,0,0,6.9,0,0,0
-5,0,0,0,0,1,10.3,0,0,0
-2,0,0,0,0,1,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-5,3.258096,0,6.620073,8.006368,1,37.9,0,0,0
-6,3.258096,0,6.620073,8.006368,1,37.9,0,0,0
-3,3.258096,0,6.620073,8.006368,1,37.9,0,0,0
-2,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-3,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-1,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-3,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-7,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-0,0,0,0,0,.1572505,9.967326,0,0,0
-7,0,0,0,0,.0268456,9.967326,0,0,0
-4,0,0,0,0,.0268456,9.967326,0,0,0
-7,0,0,0,0,.0268456,9.967326,0,0,0
-2,0,0,0,0,.0268456,9.967326,0,0,0
-13,0,0,6.200184,0,.0268456,9.967326,0,0,0
-4,0,0,6.200184,0,.0268456,9.967326,0,0,0
-1,0,0,6.200184,0,.0268456,9.967326,0,0,0
-5,0,0,6.200184,0,.0268456,9.967326,0,0,0
-5,0,0,6.200184,0,.0268456,9.967326,0,0,0
-12,3.931826,0,6.907755,7.600903,.0268456,9.967326,0,0,0
-4,3.931826,0,6.907755,7.600903,.0268456,9.967326,0,0,0
-6,0,0,0,0,.0268456,9.967326,0,0,0
-7,0,0,0,0,.0268456,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-5,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-4,0,0,0,0,.0268456,9.967326,0,0,0
-3,0,0,0,0,.0268456,9.967326,0,0,0
-18,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-13,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-9,0,0,0,0,.0268456,9.967326,0,0,0
-10,0,0,0,0,.0268456,9.967326,0,0,0
-7,0,0,0,0,.0268456,9.967326,0,0,0
-7,0,0,0,0,.0268456,9.967326,0,0,0
-5,0,0,0,0,.0268456,9.967326,0,0,0
-4,0,0,0,0,.0268456,9.967326,0,0,0
-2,0,0,0,0,.0268456,9.967326,0,0,0
-4,0,0,0,0,.0268456,9.967326,0,0,0
-6,4.564348,0,6.907555,6.959049,.0268456,9.967326,0,0,0
-2,4.564348,0,6.907555,6.959049,.0268456,9.967326,0,0,0
-4,0,0,5.321057,0,.0268456,9.967326,0,0,0
-3,0,1,6.109248,6.160541,.0268456,9.967326,0,0,0
-3,0,0,0,0,.0268456,9.967326,0,0,0
-5,0,0,0,0,.0268456,9.967326,0,0,0
-3,0,1,5.703783,5.755076,.0268456,9.967326,0,0,0
-2,0,1,5.703783,5.755076,.0268456,9.967326,0,0,0
-1,0,1,5.703783,5.755076,.0268456,9.967326,0,0,0
-20,0,0,0,0,.0268456,9.967326,0,0,0
-6,4.564348,0,6.907755,6.959049,.0268456,9.967326,0,0,0
-1,0,0,0,0,.0268456,9.967326,0,0,0
-11,0,1,5.893411,5.755076,.0268456,9.967326,0,0,0
-7,4.564348,0,0,3.592253,.0268456,9.967326,0,0,0
-2,0,1,5.010635,5.061929,.0268456,9.967326,0,0,0
-3,0,1,5.010635,5.061929,.0268456,9.967326,0,0,0
-1,0,1,5.010635,5.061929,.0268456,9.967326,0,0,0
-7,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-2,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-1,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-0,4.564348,0,5.521461,5.572754,.0268456,9.967326,0,0,0
-8,0,0,0,0,.0268456,9.967326,0,0,0
-3,3.258096,0,6.619806,8.006368,.0268456,9.967326,0,0,0
-7,3.258096,0,6.619806,8.006368,.0268456,9.967326,0,0,0
-7,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-2,3.258096,0,5.703783,7.090077,.0268456,9.967326,0,0,0
-4,0,1,5.881984,5.755076,.0268456,9.967326,0,0,0
-0,0,1,5.881984,5.755076,.0268456,9.967326,0,0,0
-6,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-2,0,1,5.749202,5.755076,.0268456,9.967326,0,0,0
-7,0,1,0,0,.0268456,9.967326,0,0,0
-6,0,0,0,0,.0268456,9.967326,0,0,0
-8,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-7,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-9,3.258096,0,6.620073,8.006368,0,17.2,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-1,0,1,0,5.755076,1,13.8,0,1,0
-3,0,1,0,5.755076,1,13.8,0,1,0
-0,0,1,0,5.755076,1,13.8,0,1,0
-0,0,1,0,5.755076,1,13.8,0,1,0
-2,0,1,0,5.755076,1,13.8,0,1,0
-0,0,1,0,5.755076,0,6.9,0,0,0
-0,0,1,0,5.755076,0,6.9,0,0,0
-0,0,1,0,5.755076,0,6.9,0,0,0
-0,0,1,0,5.755076,0,6.9,0,0,0
-0,0,1,0,5.755076,0,6.9,0,0,0
-3,0,0,0,0,0,20.7,0,0,0
-1,0,0,0,0,0,20.7,0,0,0
-0,0,0,0,0,0,20.7,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-2,0,0,0,0,0,31,0,1,0
-2,0,0,0,0,0,31,0,1,0
-2,0,0,0,0,0,31,0,1,0
-1,0,0,0,0,0,31,0,1,0
-7,0,0,0,0,0,31,0,1,0
-3,0,0,0,0,1,27.6,0,0,1
-5,0,0,0,0,1,27.6,0,0,1
-4,0,0,0,0,1,27.6,0,0,1
-8,0,0,0,0,1,27.6,0,0,1
-9,0,0,0,0,1,27.6,0,0,1
-9,0,0,0,0,0,3.4,1,0,0
-5,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-8,0,0,0,0,0,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-7,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-6,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-2,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-5,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,0,0
-0,3.258096,0,0,6.866933,0,3.4,1,0,0
-0,3.258096,0,0,6.866933,0,3.4,1,0,0
-2,3.258096,0,0,6.866933,0,3.4,1,0,0
-1,0,1,0,5.061929,0,20.7,1,0,0
-3,0,1,0,5.061929,0,20.7,1,0,0
-1,0,1,0,5.061929,0,20.7,1,0,0
-0,0,0,0,0,1,27.6,0,0,1
-0,0,0,0,0,1,27.6,0,0,1
-0,0,0,0,0,1,27.6,0,0,1
-2,0,0,0,0,1,27.6,0,0,1
-0,0,0,0,0,1,27.6,0,0,1
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-2,0,0,2.484907,0,0,17.2,0,0,0
-1,0,0,2.484907,0,0,17.2,0,0,0
-8,0,0,2.484907,0,0,17.2,0,0,0
-4,0,0,2.484907,0,0,17.2,0,0,0
-3,0,0,2.484907,0,0,17.2,0,0,0
-4,0,1,6.761573,6.160541,0,10.3,0,1,0
-1,0,1,6.761573,6.160541,0,10.3,0,1,0
-0,0,1,6.761573,6.160541,0,10.57626,0,0,0
-1,0,1,6.761573,6.160541,0,10.57626,0,0,0
-2,0,1,6.761573,6.160541,0,10.57626,0,0,0
-0,0,1,6.761573,6.160541,0,10.57626,0,0,0
-6,0,1,6.761573,6.160541,1,6.9,0,1,0
-0,0,1,6.761573,6.160541,1,6.9,0,1,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-13,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-4,0,1,6.109248,6.160541,0,20.7,1,0,0
-6,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-0,4.564348,0,5.991465,6.042758,0,6.9,0,1,0
-0,4.564348,0,5.991465,6.042758,0,6.9,0,1,0
-0,4.564348,0,5.991465,6.042758,0,6.9,0,1,0
-0,4.564348,0,5.991465,6.042758,0,10.57626,0,0,0
-0,4.564348,0,5.991465,6.042758,0,10.57626,0,0,0
-0,4.564348,0,5.991465,6.042758,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,1,0
-3,0,1,6.109248,6.160541,0,17.2,0,1,0
-0,0,1,6.109248,6.160541,0,17.2,0,1,0
-0,0,1,6.109248,6.160541,0,17.2,0,1,0
-2,0,1,6.109248,6.160541,0,17.2,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-2,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-4,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-4,0,1,5.010635,5.061929,0,10.3,1,0,0
-2,0,1,5.010635,5.061929,0,10.3,1,0,0
-5,0,1,5.010635,5.061929,0,10.3,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-6,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,24.1,0,1,0
-2,0,0,0,0,0,24.1,0,1,0
-8,0,0,0,0,0,24.1,0,1,0
-12,0,0,0,0,0,24.1,0,1,0
-16,0,0,0,0,0,24.1,0,1,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-7,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-0,0,0,5.970139,0,0,3.4,0,0,0
-0,0,0,5.970139,0,0,3.4,0,0,0
-1,0,0,5.970139,0,0,3.4,0,0,0
-1,0,0,5.970139,0,0,3.4,0,0,0
-0,0,0,5.970139,0,0,3.4,0,0,0
-0,0,0,5.970139,0,0,0,1,0,0
-0,0,0,5.970139,0,0,0,1,0,0
-0,0,0,5.970139,0,0,0,1,0,0
-0,0,0,5.970139,0,0,0,1,0,0
-0,0,0,5.970139,0,0,0,1,0,0
-0,0,0,5.970139,0,0,10.57626,0,0,0
-0,0,0,5.970139,0,0,10.57626,0,0,0
-0,0,0,5.970139,0,0,10.57626,0,0,0
-0,0,0,5.970139,0,0,10.57626,0,0,0
-0,0,0,5.970139,0,0,10.57626,0,0,0
-1,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-0,0,0,5.970139,0,0,10.57626,1,0,0
-5,0,1,6.109248,6.160541,0,20.7,0,0,0
-3,0,1,6.109248,6.160541,0,20.7,0,0,0
-3,0,1,6.109248,6.160541,0,20.7,0,0,0
-4,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-4,0,1,6.109248,6.160541,0,13.8,0,0,0
-5,0,0,6.240744,0,0,3.4,1,0,0
-7,0,0,6.240744,0,0,3.4,1,0,0
-4,0,0,6.240744,0,0,3.4,1,0,0
-1,0,0,6.240744,0,0,3.4,1,0,0
-1,0,0,6.240744,0,0,3.4,1,0,0
-11,0,0,6.240744,0,0,10.57626,1,0,0
-15,0,0,6.240744,0,0,10.57626,1,0,0
-6,0,0,6.240744,0,0,10.57626,1,0,0
-2,0,0,6.240744,0,0,10.57626,1,0,0
-2,0,0,6.240744,0,0,10.57626,1,0,0
-13,0,0,6.240744,0,0,10.57626,1,0,0
-17,0,0,6.240744,0,0,10.57626,1,0,0
-10,0,0,6.240744,0,0,10.57626,1,0,0
-13,0,0,6.240744,0,0,10.57626,1,0,0
-11,0,0,6.240744,0,0,10.57626,1,0,0
-5,0,0,6.240744,0,0,3.4,1,0,0
-7,0,0,6.240744,0,0,3.4,1,0,0
-5,0,0,6.240744,0,0,3.4,1,0,0
-4,0,0,6.240744,0,0,3.4,1,0,0
-3,0,0,6.240744,0,0,3.4,1,0,0
-7,0,1,5.703783,5.755076,0,13.8,1,0,0
-9,0,1,5.703783,5.755076,0,13.8,1,0,0
-11,0,1,5.703783,5.755076,0,13.8,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-2,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.703783,5.755076,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,3.258096,0,6.471356,5.771441,0,0,0,1,0
-1,3.258096,0,6.471356,5.771441,0,0,0,1,0
-0,3.258096,0,6.471356,5.771441,0,0,0,1,0
-0,3.258096,0,6.471356,5.771441,0,3.4,1,0,0
-0,3.258096,0,6.471356,5.771441,0,3.4,1,0,0
-0,3.258096,0,6.471356,5.771441,0,3.4,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-4,0,0,0,0,0,3.4,1,0,0
-1,4.564348,0,7.06732,6.675624,0,10.57626,0,0,0
-1,4.564348,0,7.06732,6.675624,0,10.57626,0,0,0
-0,4.564348,0,7.06732,6.675624,0,10.57626,0,0,0
-5,4.564348,0,7.06732,6.675624,0,10.57626,0,0,0
-8,4.564348,0,7.06732,6.675624,0,10.57626,0,0,0
-5,4.564348,0,7.06732,6.675624,0,13.8,0,0,0
-4,4.564348,0,7.06732,6.675624,0,13.8,0,0,0
-4,4.564348,0,7.06732,6.675624,0,13.8,0,0,0
-6,4.564348,0,7.06732,6.675624,0,13.8,0,0,0
-4,4.564348,0,7.06732,6.675624,0,13.8,0,0,0
-2,4.564348,0,7.06732,6.675624,0,3.4,0,0,0
-0,4.564348,0,7.06732,6.675624,0,3.4,0,0,0
-0,4.564348,0,7.06732,6.675624,0,3.4,0,0,0
-0,4.564348,0,7.06732,6.675624,0,3.4,0,0,0
-0,4.564348,0,7.06732,6.675624,0,3.4,0,0,0
-5,4.564348,0,7.06732,6.675624,1,10.57626,0,0,0
-9,4.564348,0,7.06732,6.675624,1,10.57626,0,0,0
-3,4.564348,0,7.06732,6.675624,1,10.57626,0,0,0
-4,4.564348,0,7.06732,6.675624,1,10.57626,0,0,0
-4,4.564348,0,7.06732,6.675624,1,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-5,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-5,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-1,0,0,5.009835,0,0,0,1,0,0
-2,0,0,5.009835,0,0,0,1,0,0
-0,0,0,5.009835,0,0,0,1,0,0
-0,0,0,5.009835,0,0,6.9,0,0,0
-0,0,0,5.009835,0,0,6.9,0,0,0
-0,0,0,5.009835,0,0,6.9,0,0,0
-2,0,0,3.401197,0,0,10.57626,0,0,0
-4,0,0,3.401197,0,0,10.57626,0,0,0
-2,0,0,3.401197,0,0,10.57626,0,0,0
-7,0,0,3.401197,0,0,17.2,1,0,0
-3,0,0,3.401197,0,0,17.2,1,0,0
-2,0,0,3.401197,0,0,17.2,1,0,0
-11,0,0,3.401197,0,0,10.57626,1,0,0
-14,0,0,3.401197,0,0,10.57626,1,0,0
-14,0,0,3.401197,0,0,10.57626,1,0,0
-0,0,0,3.401197,0,0,13.8,1,0,0
-0,0,0,3.401197,0,0,13.8,1,0,0
-1,0,0,3.401197,0,0,13.8,1,0,0
-2,0,0,3.401197,0,0,3.4,0,0,0
-1,0,0,3.401197,0,0,3.4,0,0,0
-2,0,0,3.401197,0,0,3.4,0,0,0
-13,4.564348,0,6.907755,6.959049,0,24.1,0,0,0
-3,4.564348,0,6.907755,6.959049,0,24.1,0,0,0
-9,4.564348,0,6.907755,6.959049,0,24.1,0,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-8,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,1,27.6,0,0,0
-3,3.258096,0,6.620073,8.006368,1,27.6,0,0,0
-2,3.258096,0,6.620073,8.006368,1,27.6,0,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-5,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,4.564348,0,6.537792,6.282464,0,10.57626,1,0,0
-0,4.564348,0,6.537792,6.282464,1,10.3,1,0,0
-0,4.564348,0,6.537792,6.282464,1,10.3,1,0,0
-0,4.564348,0,6.537792,6.282464,0,10.3,1,0,0
-0,4.564348,0,6.537792,6.282464,0,10.3,1,0,0
-0,4.564348,0,6.537792,6.282464,1,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-6,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,0,0,0,0
-1,4.564348,0,6.235587,6.28688,0,0,0,0,0
-3,4.564348,0,6.235587,6.28688,0,0,0,0,0
-0,4.564348,0,6.235587,6.28688,0,6.9,1,0,0
-0,4.564348,0,6.235587,6.28688,0,6.9,1,0,0
-1,4.564348,0,6.235587,6.28688,0,6.9,1,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-0,4.564348,0,6.235587,6.28688,0,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-6,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-2,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-7,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-15,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-2,4.564348,0,0,5.714254,1,13.8,1,0,0
-1,4.564348,0,0,5.714254,1,13.8,1,0,0
-4,4.564348,0,0,5.714254,1,13.8,1,0,0
-0,4.564348,0,4.959693,5.010986,1,6.9,1,0,0
-0,4.564348,0,4.959693,5.010986,1,6.9,1,0,0
-0,4.564348,0,4.959693,5.010986,1,6.9,1,0,0
-0,4.564348,0,4.959693,5.010986,1,13.8,0,0,0
-0,4.564348,0,4.959693,5.010986,1,13.8,0,0,0
-0,4.564348,0,4.959693,5.010986,1,13.8,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,10.57626,0,1,0
-0,0,0,4.992878,0,.1442925,10.57626,0,0,0
-0,0,0,4.992878,0,.1442925,10.57626,0,0,0
-0,0,0,4.992878,0,.1442925,10.57626,0,0,0
-0,0,0,4.992878,0,1,6.9,1,0,0
-0,0,0,4.992878,0,1,6.9,1,0,0
-0,0,0,4.992878,0,1,6.9,1,0,0
-0,0,0,4.992878,0,.1442925,10.57626,0,0,0
-4,0,0,4.992878,0,.1442925,10.57626,0,0,0
-0,0,0,4.992878,0,.1442925,10.57626,0,0,0
-0,0,0,4.992878,0,0,13.8,1,0,0
-0,0,0,4.992878,0,0,13.8,1,0,0
-0,0,0,4.992878,0,0,13.8,1,0,0
-0,4.564348,0,5.172754,5.224048,0,10.3,1,0,0
-0,4.564348,0,5.172754,5.224048,0,10.3,1,0,0
-0,4.564348,0,5.172754,5.224048,0,10.3,1,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,1,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,1,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,1,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,0,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,0,0,0
-0,4.564348,0,5.172754,5.224048,.1442925,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-12,0,0,6.471356,0,0,3.4,0,0,0
-10,0,0,6.471356,0,0,3.4,0,0,0
-10,0,0,6.471356,0,0,3.4,0,0,0
-8,0,0,6.471356,0,1,10.3,0,0,0
-2,0,0,6.471356,0,1,10.3,0,0,0
-7,0,0,6.471356,0,1,10.3,0,0,0
-0,0,0,6.471356,0,0,10.57626,0,0,0
-1,0,0,6.471356,0,0,10.57626,0,0,0
-1,0,0,6.471356,0,0,10.57626,0,0,0
-4,0,0,6.471356,0,0,10.57626,0,0,0
-2,0,0,6.471356,0,0,10.57626,0,0,0
-5,0,0,6.471356,0,0,10.57626,0,0,0
-8,0,0,6.471356,0,0,10.57626,0,0,0
-3,0,0,6.471356,0,0,10.57626,0,0,0
-2,0,0,6.471356,0,0,10.57626,0,0,0
-0,3.258096,0,5.810392,7.196687,0,0,0,0,0
-0,3.258096,0,5.810392,7.196687,0,0,0,0,0
-0,3.258096,0,5.810392,7.196687,0,0,0,0,0
-0,3.258096,0,5.810392,7.196687,0,0,0,0,0
-0,3.258096,0,5.810392,7.196687,0,0,0,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,0,1,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,0,1,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,0,1,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,0,1,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,0,1,0
-0,3.258096,0,5.810392,7.196687,0,6.9,0,1,0
-0,3.258096,0,5.810392,7.196687,0,6.9,0,1,0
-0,3.258096,0,5.810392,7.196687,0,6.9,0,1,0
-0,3.258096,0,5.810392,7.196687,0,6.9,0,1,0
-0,3.258096,0,5.810392,7.196687,0,6.9,0,1,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-2,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,10.57626,1,0,0
-0,3.258096,0,5.810392,7.196687,0,3.4,0,1,0
-0,3.258096,0,5.810392,7.196687,0,3.4,0,1,0
-0,3.258096,0,5.810392,7.196687,0,3.4,0,1,0
-0,3.258096,0,5.810392,7.196687,0,3.4,0,1,0
-1,3.258096,0,5.810392,7.196687,0,3.4,0,1,0
-0,3.258096,0,5.810392,7.196687,0,0,0,1,0
-1,3.258096,0,5.810392,7.196687,0,0,0,1,0
-0,3.258096,0,5.810392,7.196687,0,0,0,1,0
-0,3.258096,0,5.810392,7.196687,0,0,0,1,0
-0,3.258096,0,5.810392,7.196687,0,0,0,1,0
-0,3.258096,0,5.810392,7.196687,0,3.4,1,0,0
-0,3.258096,0,5.810392,7.196687,0,3.4,1,0,0
-0,3.258096,0,5.810392,7.196687,0,3.4,1,0,0
-0,3.258096,0,5.810392,7.196687,0,3.4,1,0,0
-0,3.258096,0,5.810392,7.196687,0,3.4,1,0,0
-0,0,0,5.731462,0,0,0,0,0,0
-1,0,0,5.731462,0,0,0,0,0,0
-4,0,0,5.731462,0,0,0,0,0,0
-1,0,0,5.731462,0,0,13.8,0,1,0
-1,0,0,5.731462,0,0,13.8,0,1,0
-2,0,0,5.731462,0,0,13.8,0,1,0
-0,0,0,7.080969,0,0,10.3,1,0,0
-1,0,0,7.080969,0,0,10.3,1,0,0
-4,0,0,7.080969,0,0,10.3,1,0,0
-0,0,0,7.080969,0,.1442925,10.57626,1,0,0
-1,0,0,7.080969,0,.1442925,10.57626,1,0,0
-1,0,0,7.080969,0,.1442925,10.57626,1,0,0
-0,0,0,7.080969,0,0,0,1,0,0
-1,0,0,7.080969,0,0,0,1,0,0
-0,0,0,7.080969,0,0,0,1,0,0
-4,0,0,7.080969,0,0,3.4,1,0,0
-2,0,0,7.080969,0,0,3.4,1,0,0
-3,0,0,7.080969,0,0,3.4,1,0,0
-0,3.258096,0,0,8.006368,1,27.6,0,1,0
-0,3.258096,0,0,8.006368,1,27.6,0,1,0
-0,3.258096,0,0,8.006368,1,27.6,0,1,0
-4,3.258096,0,0,8.006368,1,27.6,0,1,0
-1,3.258096,0,0,8.006368,1,27.6,0,1,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-13,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-2,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,1,6.9,1,0,0
-0,0,0,3.809326,0,0,10.3,0,0,0
-0,0,0,3.809326,0,0,10.3,0,0,0
-0,0,0,3.809326,0,0,10.3,0,0,0
-0,0,0,3.809326,0,0,10.3,0,0,0
-1,0,0,3.809326,0,0,10.3,0,0,0
-1,0,0,3.809326,0,0,6.9,0,0,0
-1,0,0,3.809326,0,0,6.9,0,0,0
-0,0,0,3.809326,0,0,6.9,0,0,0
-0,0,0,3.809326,0,0,6.9,0,0,0
-2,0,0,3.809326,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-2,4.564348,0,6.907755,6.959049,1,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-6,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-4,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-0,3.931826,0,0,7.600903,1,20.7,0,1,0
-0,3.931826,0,0,7.600903,1,20.7,0,1,0
-0,3.931826,0,0,7.600903,1,20.7,0,1,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-0,3.931826,0,0,7.600903,0,3.4,0,0,0
-1,3.931826,0,0,7.600903,0,13.8,1,0,0
-1,3.931826,0,0,7.600903,0,13.8,1,0,0
-0,3.931826,0,0,7.600903,0,13.8,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-1,0,1,0,6.160541,1,20.7,0,0,1
-0,0,1,0,6.160541,1,20.7,0,0,1
-0,0,1,0,6.160541,1,20.7,0,0,1
-0,0,1,0,6.160541,1,20.7,0,0,1
-0,0,1,0,6.160541,1,20.7,0,0,1
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,0,6.384047,0,0,10.57626,0,0,0
-3,0,0,6.384047,0,0,10.57626,0,0,0
-1,0,0,6.384047,0,0,10.57626,0,0,0
-1,0,0,6.384047,0,0,0,1,0,0
-2,0,0,6.384047,0,0,0,1,0,0
-1,0,0,6.384047,0,0,0,1,0,0
-1,0,0,6.384047,0,0,13.8,1,0,0
-4,0,0,6.384047,0,0,13.8,1,0,0
-1,0,0,6.384047,0,0,13.8,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,0,0,0,0,0,3.4,0,1,0
-1,0,0,0,0,0,3.4,0,1,0
-0,0,0,0,0,0,3.4,0,1,0
-7,0,0,6.437399,0,1,37.9,0,1,0
-5,0,0,6.437399,0,1,37.9,0,1,0
-6,0,0,6.437399,0,1,37.9,0,1,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-5,0,0,0,0,0,10.57626,1,0,0
-9,0,0,6.437399,0,0,17.2,1,0,0
-3,0,0,6.437399,0,0,17.2,1,0,0
-5,0,0,6.437399,0,0,17.2,1,0,0
-2,0,0,0,0,1,13.8,1,0,0
-2,0,0,0,0,1,13.8,1,0,0
-1,0,0,0,0,1,13.8,1,0,0
-2,0,0,6.437399,0,0,0,0,1,0
-2,0,1,6.109248,6.160541,1,10.3,1,0,0
-2,0,1,6.109248,6.160541,1,10.3,1,0,0
-6,0,1,6.109248,6.160541,1,10.3,1,0,0
-5,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,0,0,0,0
-3,0,1,6.109248,6.160541,1,0,0,0,0
-0,0,1,6.109248,6.160541,1,0,0,0,0
-4,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-6,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-8,0,1,6.109248,6.160541,0,3.4,0,0,0
-9,0,0,6.148468,0,1,58.6,0,0,1
-1,0,0,6.148468,0,1,58.6,0,0,1
-7,0,0,6.148468,0,1,58.6,0,0,1
-19,0,0,6.148468,0,1,58.6,0,0,1
-21,0,0,6.148468,0,1,58.6,0,0,1
-1,0,0,6.148468,0,0,10.3,0,1,0
-0,0,0,6.148468,0,0,10.3,0,1,0
-1,0,0,6.148468,0,0,10.3,0,1,0
-0,0,0,6.148468,0,0,10.3,0,1,0
-2,0,0,6.148468,0,0,6.9,0,0,1
-0,0,0,6.148468,0,0,6.9,0,0,1
-0,0,0,6.148468,0,0,6.9,0,0,1
-4,0,0,6.148468,0,0,6.9,0,0,1
-7,0,0,6.148468,0,0,6.9,0,0,1
-0,0,0,6.148468,0,0,3.4,0,0,0
-0,0,0,6.148468,0,0,3.4,0,0,0
-0,0,0,6.148468,0,0,3.4,0,0,0
-0,0,0,6.148468,0,0,3.4,0,0,0
-1,0,0,6.148468,0,0,3.4,0,0,0
-0,0,0,4.032469,0,1,0,0,0,0
-0,0,0,4.032469,0,1,0,0,0,0
-0,0,0,4.032469,0,1,0,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-3,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,20.7,0,0,0
-3,0,0,0,0,0,20.7,0,0,0
-1,0,0,0,0,0,20.7,0,0,0
-1,0,0,0,0,0,20.7,0,0,0
-2,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-0,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-4,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-2,3.258096,0,5.646683,7.032977,0,10.57626,0,0,0
-2,3.258096,0,5.646683,7.032977,0,10.57626,0,0,0
-12,3.258096,0,5.646683,7.032977,0,10.57626,0,0,0
-0,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-0,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-2,3.258096,0,5.646683,7.032977,0,3.4,0,0,0
-3,0,0,5.879527,0,0,6.9,1,0,0
-4,0,0,5.879527,0,0,6.9,1,0,0
-1,0,0,5.879527,0,0,6.9,1,0,0
-0,0,0,5.879527,0,0,6.9,1,0,0
-0,0,0,5.879527,0,0,6.9,1,0,0
-0,0,0,5.879527,0,0,10.3,1,0,0
-3,0,0,5.879527,0,0,10.3,1,0,0
-0,0,0,5.879527,0,0,10.3,1,0,0
-0,0,0,5.879527,0,0,10.3,1,0,0
-0,0,0,5.879527,0,0,10.3,1,0,0
-2,0,0,5.879527,0,0,10.57626,0,0,0
-4,0,0,5.879527,0,0,10.57626,0,0,0
-3,0,0,5.879527,0,0,10.57626,0,0,0
-5,0,0,5.879527,0,0,10.57626,0,0,0
-0,0,0,5.879527,0,0,10.57626,0,0,0
-1,0,0,0,0,0,17.2,1,0,0
-5,0,0,0,0,0,17.2,1,0,0
-0,0,0,0,0,0,17.2,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-2,0,0,0,0,0,10.3,0,1,0
-3,0,0,0,0,0,10.3,0,1,0
-3,0,0,0,0,0,10.3,0,1,0
-3,0,0,0,0,0,10.3,0,1,0
-1,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,1,3.4,1,0,0
-4,0,0,0,0,1,3.4,1,0,0
-1,0,0,0,0,1,3.4,1,0,0
-1,0,0,0,0,1,3.4,1,0,0
-3,0,0,0,0,1,3.4,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-2,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,6.9,0,0,1
-1,0,0,0,0,0,6.9,0,0,1
-5,0,0,0,0,0,6.9,0,0,1
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-4,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-2,0,1,6.368736,5.755076,0,10.3,1,0,0
-0,0,1,6.368736,5.755076,0,10.3,1,0,0
-3,0,1,6.368736,5.755076,0,10.3,1,0,0
-1,0,1,6.368736,5.755076,0,6.9,0,0,0
-0,0,1,6.368736,5.755076,0,6.9,0,0,0
-2,0,1,6.368736,5.755076,0,6.9,0,0,0
-1,0,1,6.651572,5.755076,0,13.8,0,0,0
-1,0,1,6.651572,5.755076,0,13.8,0,0,0
-5,0,1,6.651572,5.755076,0,13.8,0,0,0
-2,0,1,6.651572,5.755076,0,13.8,0,0,0
-4,0,1,6.651572,5.755076,0,13.8,0,0,0
-0,0,1,6.651572,5.755076,0,10.57626,0,0,0
-3,0,1,6.651572,5.755076,0,10.57626,0,0,0
-4,0,1,6.651572,5.755076,0,10.57626,0,0,0
-2,0,1,6.651572,5.755076,0,10.57626,0,0,0
-1,0,1,6.651572,5.755076,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,3.4,0,0,0
-1,3.258096,0,6.55108,7.937375,0,3.4,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-2,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-1,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-2,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-1,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-3,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.57626,0,0,0
-1,3.258096,0,6.55108,7.937375,1,17.2,0,1,0
-2,3.258096,0,6.55108,7.937375,1,17.2,0,1,0
-2,3.258096,0,6.55108,7.937375,1,17.2,0,1,0
-3,3.258096,0,6.55108,7.937375,1,17.2,0,1,0
-3,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-2,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-1,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-5,0,0,6.031934,0,.1442925,10.57626,0,0,0
-2,0,0,6.031934,0,.1442925,10.57626,0,0,0
-4,0,0,6.031934,0,.1442925,10.57626,0,0,0
-2,0,0,6.031934,0,.1442925,10.57626,0,0,0
-1,0,0,6.031934,0,.1442925,10.57626,0,0,0
-2,0,0,6.031934,0,.1442925,10.57626,0,0,0
-5,0,1,6.183674,6.160541,0,3.4,0,0,0
-0,0,1,6.183674,6.160541,0,3.4,0,0,0
-0,0,1,6.183674,6.160541,0,3.4,0,0,0
-5,0,1,6.183674,6.160541,0,3.4,0,0,0
-0,0,1,6.183674,6.160541,0,3.4,0,0,0
-0,0,1,6.183674,6.160541,0,3.4,0,0,0
-8,0,1,6.183674,6.160541,0,10.3,1,0,0
-1,0,1,6.183674,6.160541,0,10.3,1,0,0
-4,0,1,6.183674,6.160541,0,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,1,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,1,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,1,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-5,0,0,0,0,0,20.7,1,0,0
-1,0,0,0,0,0,20.7,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-5,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-13,0,0,0,0,0,13.8,0,0,0
-2,0,0,0,0,1,13.8,1,0,0
-3,0,0,0,0,1,13.8,1,0,0
-1,0,0,0,0,1,13.8,1,0,0
-2,0,0,0,0,1,13.8,1,0,0
-5,0,0,0,0,1,13.8,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.57626,1,0,0
-0,4.564348,0,0,6.804848,0,10.3,0,0,0
-0,4.564348,0,0,6.804848,0,10.3,0,0,0
-0,4.564348,0,0,6.804848,0,10.3,0,0,0
-0,4.564348,0,0,6.804848,0,3.4,1,0,0
-0,4.564348,0,0,6.804848,0,3.4,1,0,0
-0,4.564348,0,0,6.804848,0,3.4,1,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-8,0,0,0,0,0,20.7,1,0,0
-1,0,0,0,0,0,20.7,1,0,0
-3,0,0,0,0,0,20.7,1,0,0
-16,4.564348,0,6.907755,6.959049,1,10.57626,0,0,1
-19,4.564348,0,6.907755,6.959049,1,10.57626,0,0,1
-14,4.564348,0,6.907755,6.959049,1,10.57626,0,0,1
-17,4.564348,0,6.907755,6.959049,1,10.57626,0,0,1
-7,4.564348,0,6.907755,6.959049,1,10.57626,0,0,1
-4,4.564348,0,6.907755,6.959049,1,3.4,0,1,0
-9,4.564348,0,6.907755,6.959049,1,3.4,0,1,0
-3,4.564348,0,6.907755,6.959049,1,3.4,0,1,0
-2,4.564348,0,6.907755,6.959049,1,3.4,0,1,0
-0,4.564348,0,6.907755,6.959049,1,3.4,0,1,0
-9,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-3,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-2,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-3,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-7,4.564348,0,6.907755,6.959049,1,24.1,0,1,0
-21,4.564348,0,6.907755,6.959049,1,27.6,0,0,1
-23,4.564348,0,6.907755,6.959049,1,27.6,0,0,1
-21,4.564348,0,6.907755,6.959049,1,27.6,0,0,1
-27,4.564348,0,6.907755,6.959049,1,27.6,0,0,1
-29,4.564348,0,6.907755,6.959049,1,27.6,0,0,1
-12,4.564348,0,6.907755,6.959049,1,31,0,1,0
-5,4.564348,0,6.907755,6.959049,1,31,0,1,0
-8,4.564348,0,6.907755,6.959049,1,31,0,1,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-5,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,0,1,0
-3,0,0,6.254329,0,0,10.57626,0,0,0
-1,0,0,6.254329,0,0,10.57626,0,0,0
-5,0,0,6.254329,0,0,10.57626,0,0,0
-7,0,0,6.254329,0,0,10.57626,0,0,0
-4,0,0,6.254329,0,0,10.57626,0,0,0
-0,0,0,6.254329,0,0,0,0,0,0
-5,0,0,6.254329,0,0,0,0,0,0
-0,0,0,6.254329,0,0,0,0,0,0
-3,0,0,6.254329,0,0,0,0,0,0
-10,0,0,6.254329,0,0,0,0,0,0
-9,0,0,6.254329,0,0,34.5,1,0,0
-13,0,0,6.254329,0,0,34.5,1,0,0
-22,0,0,6.254329,0,0,34.5,1,0,0
-14,0,0,6.254329,0,0,34.5,1,0,0
-17,0,0,6.254329,0,0,34.5,1,0,0
-2,0,0,6.254329,0,0,10.3,0,0,0
-1,0,0,6.254329,0,0,10.3,0,0,0
-1,0,0,6.254329,0,0,10.3,0,0,0
-1,0,0,6.254329,0,0,10.3,0,0,0
-5,0,0,6.254329,0,0,10.3,0,0,0
-2,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-0,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-8,3.258096,0,6.55108,7.937375,0,10.3,0,0,0
-3,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,1,10.57626,0,1,0
-1,3.258096,0,6.620073,8.006368,1,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,1,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,1,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,1,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,4.564348,0,4.945919,4.997212,0,10.3,1,0,0
-0,4.564348,0,4.945919,4.997212,0,10.3,1,0,0
-0,4.564348,0,4.945919,4.997212,0,10.3,1,0,0
-0,4.564348,0,4.945919,4.997212,0,10.57626,0,1,0
-0,4.564348,0,4.945919,4.997212,0,10.57626,0,1,0
-0,4.564348,0,4.945919,4.997212,0,10.57626,0,1,0
-0,4.564348,0,4.945919,4.997212,1,0,1,0,0
-3,4.564348,0,4.945919,4.997212,1,0,1,0,0
-3,4.564348,0,4.945919,4.997212,1,0,1,0,0
-0,4.564348,0,4.945919,4.997212,1,10.3,0,0,1
-0,4.564348,0,4.945919,4.997212,1,10.3,0,0,1
-1,4.564348,0,4.945919,4.997212,1,10.3,0,0,1
-0,4.564348,0,4.945919,4.997212,0,0,0,1,0
-0,4.564348,0,4.945919,4.997212,0,0,0,1,0
-1,4.564348,0,4.945919,4.997212,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,27.6,0,0,0
-2,0,1,6.109248,6.160541,0,27.6,0,0,0
-1,0,1,6.109248,6.160541,0,27.6,0,0,0
-0,0,1,6.109248,6.160541,0,27.6,0,0,0
-0,0,1,6.109248,6.160541,0,27.6,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-1,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-2,4.564348,0,2.960105,3.011398,0,13.8,1,0,0
-4,4.564348,0,2.960105,3.011398,0,13.8,1,0,0
-1,4.564348,0,2.960105,3.011398,0,13.8,1,0,0
-0,4.564348,0,2.960105,3.011398,0,0,1,0,0
-0,4.564348,0,2.960105,3.011398,0,0,1,0,0
-1,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,4.564348,0,2.960105,3.011398,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-8,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-16,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-5,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,0,0,0
-1,0,0,5.294309,0,0,0,0,0,0
-4,0,0,5.294309,0,0,0,0,0,0
-2,0,0,5.294309,0,0,0,0,0,0
-2,0,0,5.294309,0,0,10.57626,0,0,0
-0,0,0,5.294309,0,0,10.57626,0,0,0
-1,0,0,5.294309,0,0,10.57626,0,0,0
-1,0,0,5.294309,0,0,0,0,0,0
-2,0,0,5.294309,0,0,0,0,0,0
-4,0,0,5.294309,0,0,0,0,0,0
-1,0,0,4.992878,0,0,20.7,0,0,0
-0,0,0,4.992878,0,0,20.7,0,0,0
-3,0,0,4.992878,0,0,10.57626,0,0,0
-5,0,0,4.992878,0,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-4,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-4,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-10,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-10,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-1,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-1,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,24.1,0,0,0
-0,4.564348,0,5.349961,5.401254,0,24.1,0,0,0
-2,4.564348,0,5.349961,5.401254,0,24.1,0,0,0
-1,4.564348,0,5.349961,5.401254,0,24.1,0,0,0
-2,4.564348,0,5.349961,5.401254,0,24.1,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-0,4.564348,0,5.349961,5.401254,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-2,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-3,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,0,8.006368,0,10.57626,1,0,0
-0,3.258096,0,0,8.006368,0,10.57626,1,0,0
-0,3.258096,0,0,8.006368,0,10.57626,1,0,0
-0,3.258096,0,0,8.006368,0,10.57626,0,1,0
-0,3.258096,0,0,8.006368,0,10.57626,0,1,0
-1,3.258096,0,0,8.006368,0,10.57626,0,1,0
-3,3.258096,0,0,8.006368,0,6.9,1,0,0
-0,3.258096,0,0,8.006368,0,6.9,1,0,0
-1,3.258096,0,0,8.006368,0,6.9,1,0,0
-4,3.258096,0,0,8.006368,0,27.6,1,0,0
-1,3.258096,0,0,8.006368,0,27.6,1,0,0
-2,3.258096,0,0,8.006368,0,27.6,1,0,0
-2,3.258096,0,0,8.006368,0,10.57626,1,0,0
-0,3.258096,0,0,8.006368,0,10.57626,1,0,0
-0,3.258096,0,0,8.006368,0,10.57626,1,0,0
-6,0,1,6.507039,5.755076,1,17.2,0,1,0
-5,0,1,6.507039,5.755076,1,17.2,0,1,0
-7,0,1,6.507039,5.755076,1,17.2,0,1,0
-3,0,1,5.928099,5.755076,0,3.4,1,0,0
-0,0,1,5.928099,5.755076,0,3.4,1,0,0
-0,0,1,5.928099,5.755076,0,3.4,1,0,0
-2,0,1,6.507039,5.755076,0,10.3,1,0,0
-2,0,1,6.507039,5.755076,0,10.3,1,0,0
-4,0,1,6.507039,5.755076,0,10.3,1,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,1,10.3,0,0,0
-0,3.258096,0,0,8.006368,1,10.3,0,0,0
-0,3.258096,0,0,8.006368,1,10.3,0,0,0
-0,3.258096,0,0,8.006368,1,10.57626,0,0,0
-0,3.258096,0,0,8.006368,1,10.57626,0,0,0
-0,3.258096,0,0,8.006368,1,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,13.8,1,0,0
-0,3.258096,0,0,8.006368,0,13.8,1,0,0
-1,3.258096,0,0,8.006368,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,1,0
-11,0,1,6.109248,6.160541,0,6.9,0,1,0
-1,0,1,6.109248,6.160541,0,6.9,0,1,0
-2,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,1,0,0
-2,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,13.8,0,0,0
-0,3.258096,0,0,6.635421,1,10.57626,0,1,0
-0,3.258096,0,0,6.635421,1,10.57626,0,1,0
-0,3.258096,0,0,6.635421,1,10.57626,0,1,0
-0,3.931826,0,0,6.984716,0,10.3,1,0,0
-0,3.931826,0,0,6.984716,0,10.3,1,0,0
-0,3.931826,0,0,6.984716,0,10.3,1,0,0
-0,3.931826,0,0,6.984716,0,10.3,1,0,0
-1,3.931826,0,0,6.984716,0,10.3,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,3.931826,0,0,6.984716,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,3.931826,0,6.867558,7.560705,1,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,1,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,1,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,1,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,1,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,10.57626,0,0,0
-0,3.931826,0,6.867558,7.560705,0,3.4,0,1,0
-0,3.931826,0,6.867558,7.560705,0,3.4,0,1,0
-1,3.931826,0,6.867558,7.560705,0,3.4,0,1,0
-1,3.931826,0,6.867558,7.560705,0,3.4,0,1,0
-0,3.931826,0,6.867558,7.560705,0,3.4,0,1,0
-0,0,0,6.656212,0,0,13.8,0,1,0
-0,0,0,6.656212,0,0,13.8,0,1,0
-0,0,0,6.656212,0,0,13.8,0,1,0
-0,0,0,6.656212,0,0,3.4,0,0,0
-3,0,0,6.656212,0,0,3.4,0,0,0
-2,0,0,6.656212,0,0,3.4,0,0,0
-0,0,0,6.656212,0,0,20.7,0,1,0
-0,0,0,6.656212,0,0,20.7,0,1,0
-0,0,0,6.656212,0,0,20.7,0,1,0
-0,0,1,0,6.160541,1,0,1,0,0
-0,0,1,0,6.160541,1,0,1,0,0
-0,0,1,0,6.160541,1,0,1,0,0
-2,0,1,0,6.160541,1,0,1,0,0
-7,0,1,0,6.160541,1,0,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-1,0,1,0,6.160541,0,13.8,1,0,0
-1,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,0,1,0,0
-0,0,1,0,6.160541,0,0,1,0,0
-3,0,1,0,6.160541,0,0,1,0,0
-3,0,1,0,6.160541,0,0,1,0,0
-2,0,1,0,6.160541,0,0,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-3,0,1,0,6.160541,0,10.57626,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-2,0,1,0,6.160541,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-3,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-7,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-4,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-3,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-1,0,0,6.337321,0,0,10.3,1,0,0
-3,0,0,6.337321,0,0,10.3,1,0,0
-4,0,0,6.337321,0,0,10.3,1,0,0
-5,0,0,6.337321,0,0,10.3,1,0,0
-6,0,0,6.337321,0,0,10.3,1,0,0
-8,0,0,6.337321,0,0,10.3,1,0,0
-5,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-4,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-4,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-4,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-5,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-0,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-0,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-0,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-0,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-1,4.564348,0,6.476973,6.528265,0,10.3,0,1,0
-9,0,1,6.109248,6.160541,0,20.7,0,0,0
-5,0,1,6.109248,6.160541,0,20.7,0,0,0
-4,0,1,6.109248,6.160541,0,20.7,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-3,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,0,1,6.47148,5.755076,0,10.3,0,0,0
-8,0,1,6.47148,5.755076,0,10.3,0,0,0
-2,0,1,6.47148,5.755076,0,10.3,0,0,0
-3,0,1,6.47148,5.755076,1,27.6,0,0,0
-2,0,1,6.47148,5.755076,1,27.6,0,0,0
-4,0,1,6.47148,5.755076,1,27.6,0,0,0
-3,0,1,5.010635,5.061929,0,13.8,0,0,0
-2,0,1,5.010635,5.061929,0,13.8,0,0,0
-4,0,1,5.010635,5.061929,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-7,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-6,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-9,3.258096,0,6.620073,8.006368,1,20.7,0,1,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,1,0
-7,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,0,0,4.526127,0,0,20.7,0,0,1
-5,0,0,4.526127,0,0,20.7,0,0,1
-15,0,0,4.526127,0,0,20.7,0,0,1
-14,0,0,4.526127,0,0,24.1,0,1,0
-4,0,0,4.526127,0,0,24.1,0,1,0
-7,0,0,4.526127,0,0,24.1,0,1,0
-0,3.258096,0,0,5.243861,1,13.8,1,0,0
-7,3.258096,0,0,5.243861,1,13.8,1,0,0
-3,3.258096,0,0,5.243861,1,13.8,1,0,0
-0,3.258096,0,0,5.243861,0,0,0,0,0
-0,3.258096,0,0,5.243861,0,0,0,0,0
-2,3.258096,0,0,5.243861,0,0,0,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-2,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,20.7,0,1,0
-2,4.564348,0,6.802395,6.853688,0,20.7,0,1,0
-4,4.564348,0,6.802395,6.853688,0,20.7,0,1,0
-12,4.564348,0,6.802395,6.853688,0,20.7,0,1,0
-5,4.564348,0,6.802395,6.853688,0,20.7,0,1,0
-0,4.564348,0,6.802395,6.853688,0,0,0,1,0
-0,4.564348,0,6.802395,6.853688,0,0,0,1,0
-0,4.564348,0,6.802395,6.853688,0,0,0,1,0
-0,4.564348,0,6.802395,6.853688,0,0,0,1,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-1,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-2,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,3.4,1,0,0
-0,4.564348,0,6.802395,6.853688,0,3.4,1,0,0
-1,4.564348,0,6.802395,6.853688,0,3.4,1,0,0
-1,4.564348,0,6.802395,6.853688,0,3.4,1,0,0
-0,4.564348,0,6.802395,6.853688,0,3.4,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-0,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-6,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-3,4.564348,0,6.802395,6.853688,0,10.57626,1,0,0
-9,0,1,6.471356,6.160541,0,24.1,0,0,1
-10,0,1,6.471356,6.160541,0,24.1,0,0,1
-12,0,1,6.471356,6.160541,0,24.1,0,0,1
-18,0,1,6.471356,6.160541,0,10.3,0,0,0
-13,0,1,6.471356,6.160541,0,10.3,0,0,0
-11,0,1,6.471356,6.160541,0,10.3,0,0,0
-6,0,1,6.471356,6.160541,1,10.3,0,1,0
-4,0,1,6.471356,6.160541,1,10.3,0,1,0
-5,0,1,6.471356,6.160541,1,10.3,0,1,0
-0,0,0,5.671328,0,0,0,0,0,0
-4,0,0,5.671328,0,0,0,0,0,0
-3,0,0,5.671328,0,0,0,0,0,0
-1,4.564348,0,5.98202,5.799093,0,10.3,1,0,0
-0,4.564348,0,5.98202,5.799093,0,10.3,1,0,0
-0,4.564348,0,5.98202,5.799093,0,10.3,1,0,0
-3,4.564348,0,5.98202,5.799093,0,20.7,1,0,0
-5,4.564348,0,5.98202,5.799093,0,20.7,1,0,0
-2,4.564348,0,5.98202,5.799093,0,20.7,1,0,0
-6,0,0,6.819711,0,0,6.9,0,0,0
-7,0,0,6.819711,0,0,6.9,0,0,0
-1,0,0,6.819711,0,0,6.9,0,0,0
-1,0,0,6.819711,0,0,10.3,1,0,0
-3,0,0,6.819711,0,0,10.3,1,0,0
-0,0,0,6.819711,0,0,10.3,1,0,0
-0,0,1,0,5.061929,0,10.3,0,0,0
-4,0,1,0,5.061929,0,10.3,0,0,0
-0,0,1,0,5.061929,0,10.3,0,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-10,0,0,0,0,0,0,1,0,0
-3,3.258096,0,6.210821,7.597116,0,10.57626,0,0,0
-1,3.258096,0,6.210821,7.597116,0,10.57626,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.57626,0,0,0
-3,3.258096,0,6.210821,7.597116,0,10.57626,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.57626,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.3,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.3,0,0,0
-1,3.258096,0,6.210821,7.597116,0,10.3,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.3,0,0,0
-0,3.258096,0,6.210821,7.597116,0,10.3,0,0,0
-1,3.258096,0,6.210821,7.597116,0,6.9,0,0,0
-0,3.258096,0,6.210821,7.597116,0,6.9,0,0,0
-0,3.258096,0,6.210821,7.597116,0,6.9,0,0,0
-0,3.258096,0,6.210821,7.597116,0,6.9,0,0,0
-1,3.258096,0,6.210821,7.597116,0,6.9,0,0,0
-2,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,10.57626,1,0,0
-0,0,1,5.703783,5.755076,0,10.57626,1,0,0
-0,0,1,5.703783,5.755076,0,10.57626,1,0,0
-0,0,0,4.510859,0,0,3.4,1,0,0
-2,0,0,4.510859,0,0,3.4,1,0,0
-0,0,0,4.510859,0,0,3.4,1,0,0
-0,0,0,4.510859,0,0,13.8,1,0,0
-0,0,0,4.510859,0,0,13.8,1,0,0
-0,0,0,4.510859,0,0,10.57626,1,0,0
-0,0,0,4.510859,0,0,10.57626,1,0,0
-4,0,0,6.437399,0,0,13.8,0,0,0
-4,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,0,1,5.671328,5.061929,0,6.9,0,0,0
-1,0,1,5.671328,5.061929,0,6.9,0,0,0
-2,0,1,5.671328,5.061929,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-7,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-9,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-0,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-0,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-1,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-1,4.564348,0,5.753049,5.804342,1,10.57626,1,0,0
-0,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-0,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-6,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-15,0,0,6.23973,0,1,17.2,0,0,1
-4,0,0,6.23973,0,1,17.2,0,0,1
-12,0,0,6.23973,0,1,17.2,0,0,1
-14,0,0,6.23973,0,1,24.1,0,1,0
-16,0,0,6.23973,0,1,24.1,0,1,0
-14,0,0,6.23973,0,1,24.1,0,1,0
-8,0,0,6.23973,0,0,3.4,0,0,0
-4,0,0,6.23973,0,0,3.4,0,0,0
-10,0,0,6.23973,0,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-1,0,1,6.109248,6.160541,0,0,0,1,0
-4,0,1,6.109248,6.160541,0,24.1,0,1,0
-7,0,1,6.109248,6.160541,0,24.1,0,1,0
-11,0,1,6.109248,6.160541,0,24.1,0,1,0
-6,0,0,6.815157,0,0,17.2,1,0,0
-5,0,0,6.815157,0,0,17.2,1,0,0
-3,0,0,6.815157,0,0,17.2,1,0,0
-2,0,0,6.815157,0,0,17.2,1,0,0
-0,0,0,6.815157,0,0,17.2,1,0,0
-5,0,0,6.815157,0,0,0,1,0,0
-1,0,0,6.815157,0,0,0,1,0,0
-0,0,0,6.815157,0,0,0,1,0,0
-2,0,0,6.815157,0,0,0,1,0,0
-2,0,0,6.815157,0,0,0,1,0,0
-2,0,0,6.815157,0,0,10.57626,1,0,0
-0,0,0,6.815157,0,0,10.57626,1,0,0
-5,0,0,6.815157,0,0,10.57626,1,0,0
-1,0,0,6.815157,0,0,10.57626,1,0,0
-2,0,0,6.815157,0,0,10.57626,1,0,0
-2,0,1,5.010635,5.061929,0,0,0,0,0
-2,0,1,5.010635,5.061929,0,0,0,0,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-0,0,1,5.010635,5.061929,0,0,0,0,0
-0,3.258096,0,6.129377,7.515671,0,10.3,0,0,0
-9,3.258096,0,6.129377,7.515671,0,6.9,1,0,0
-1,0,1,5.735281,5.755076,0,27.6,1,0,0
-3,0,1,5.735281,5.755076,0,27.6,1,0,0
-3,0,1,5.735281,5.755076,1,34.5,0,1,0
-1,0,1,5.735281,5.755076,1,34.5,0,1,0
-2,0,1,5.735281,5.755076,1,34.5,0,1,0
-0,3.258096,0,5.773309,7.034916,0,3.4,0,0,0
-0,3.258096,0,5.773309,7.034916,0,3.4,0,0,0
-1,3.258096,0,5.773309,7.034916,0,3.4,0,0,0
-0,3.258096,0,5.773309,7.034916,0,3.4,0,0,0
-0,3.258096,0,5.773309,7.034916,0,3.4,0,0,0
-1,3.258096,0,5.773309,7.034916,0,17.2,0,0,0
-1,3.258096,0,5.773309,7.034916,0,17.2,0,0,0
-1,3.258096,0,5.773309,7.034916,0,17.2,0,0,0
-1,3.258096,0,5.773309,7.034916,0,17.2,0,0,0
-2,3.258096,0,5.773309,7.034916,0,17.2,0,0,0
-0,4.564348,0,0,6.721172,.1442925,10.57626,1,0,0
-2,4.564348,0,0,6.721172,.1442925,10.57626,1,0,0
-2,4.564348,0,0,6.721172,.1442925,10.57626,1,0,0
-0,0,0,2.890372,0,0,0,0,0,0
-3,0,0,2.890372,0,0,0,0,0,0
-3,0,0,2.890372,0,0,0,0,0,0
-0,0,1,5.089077,5.061929,0,6.9,0,0,0
-0,0,1,5.089077,5.061929,0,6.9,0,0,0
-4,0,1,5.089077,5.061929,0,6.9,0,0,0
-0,4.564348,0,6.160574,6.211867,0,10.57626,1,0,0
-1,4.564348,0,6.160574,6.211867,0,10.57626,1,0,0
-1,4.564348,0,6.160574,6.211867,0,10.57626,1,0,0
-0,4.564348,0,6.160574,6.211867,0,20.7,0,1,0
-1,4.564348,0,6.160574,6.211867,0,20.7,0,1,0
-5,4.564348,0,6.160574,6.211867,0,20.7,0,1,0
-0,4.564348,0,6.160574,6.211867,0,10.57626,0,0,0
-2,4.564348,0,6.160574,6.211867,0,10.57626,0,0,0
-0,4.564348,0,6.160574,6.211867,0,10.57626,0,0,0
-1,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.3,0,1,0
-2,0,0,0,0,0,10.3,0,1,0
-6,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-1,4.564348,0,6.907755,6.959049,1,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,1,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,1,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-0,4.564348,0,6.907755,6.959049,1,27.6,0,0,0
-0,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-0,0,0,0,0,0,17.2,1,0,0
-0,3.931826,0,6.39693,7.090077,0,3.4,1,0,0
-0,3.931826,0,6.39693,7.090077,0,3.4,1,0,0
-0,3.931826,0,6.39693,7.090077,0,3.4,1,0,0
-0,3.931826,0,6.39693,7.090077,.1442925,10.57626,0,1,0
-0,3.931826,0,6.39693,7.090077,.1442925,10.57626,0,1,0
-0,3.931826,0,6.39693,7.090077,.1442925,10.57626,0,1,0
-4,0,0,4.822859,0,1,37.9,1,0,0
-7,0,0,4.822859,0,1,37.9,1,0,0
-7,0,0,4.822859,0,1,37.9,1,0,0
-2,0,0,4.822859,0,1,37.9,1,0,0
-2,0,0,4.822859,0,1,37.9,1,0,0
-1,0,0,4.822859,0,0,10.57626,0,0,0
-2,0,0,4.822859,0,0,10.57626,0,0,0
-0,0,0,4.822859,0,0,10.57626,0,0,0
-1,0,0,4.822859,0,0,10.57626,0,0,0
-0,0,0,4.822859,0,0,10.57626,0,0,0
-1,0,0,4.822859,0,0,10.3,0,0,0
-1,0,0,4.822859,0,0,10.3,0,0,0
-1,0,0,4.822859,0,0,10.3,0,0,0
-1,0,0,4.822859,0,0,10.3,0,0,0
-0,0,0,4.822859,0,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-0,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-26,4.564348,0,6.907755,6.959049,1,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,3.258096,0,6.347144,7.733438,0,10.3,1,0,0
-1,3.258096,0,6.347144,7.733438,0,10.3,1,0,0
-3,3.258096,0,6.347144,7.733438,0,10.3,1,0,0
-0,3.258096,0,5.420535,6.536633,0,6.9,0,0,0
-1,3.258096,0,5.420535,6.536633,0,6.9,0,0,0
-0,3.258096,0,5.420535,6.536633,0,6.9,0,0,0
-0,3.258096,0,5.420535,6.536633,0,3.4,0,0,0
-1,3.258096,0,5.420535,6.536633,0,3.4,0,0,0
-0,3.258096,0,5.420535,6.536633,0,3.4,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,3.258096,0,5.420535,6.536633,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-1,0,1,6.109248,6.160541,0,6.9,0,1,0
-6,0,1,6.109248,6.160541,0,6.9,0,1,0
-3,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,3.4,1,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,3.4,1,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,3.4,1,0,0
-0,4.564348,0,5.783825,5.835118,0,6.9,1,0,0
-0,4.564348,0,5.783825,5.835118,0,6.9,1,0,0
-0,4.564348,0,5.783825,5.835118,0,6.9,1,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,10.57626,0,0,0
-4,4.564348,0,5.783825,5.835118,.1442925,10.57626,0,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,10.57626,0,0,0
-6,0,0,6.206979,0,0,10.57626,0,0,0
-4,0,0,6.206979,0,0,10.57626,0,0,0
-4,0,0,6.206979,0,0,10.57626,0,0,0
-2,0,0,6.206979,0,0,6.9,1,0,0
-0,0,0,6.206979,0,0,6.9,1,0,0
-2,0,0,6.206979,0,0,6.9,1,0,0
-1,0,0,6.206979,0,0,3.4,1,0,0
-1,0,0,6.206979,0,0,3.4,1,0,0
-2,0,0,6.206979,0,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,13.8,0,0,0
-1,0,1,5.010635,5.061929,0,13.8,0,0,0
-1,0,1,5.010635,5.061929,0,13.8,0,0,0
-0,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,10.57626,0,1,0
-1,0,0,0,0,1,6.9,1,0,0
-2,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,1,6.9,1,0,0
-0,0,0,6.66899,0,1,6.9,0,1,0
-0,0,0,6.66899,0,1,6.9,0,1,0
-2,0,0,6.66899,0,1,6.9,0,1,0
-0,0,0,6.66899,0,0,10.3,0,1,0
-0,0,0,6.66899,0,0,10.3,0,1,0
-0,0,0,6.66899,0,0,10.3,0,1,0
-0,0,0,6.66899,0,0,13.8,0,1,0
-0,0,0,6.66899,0,0,13.8,0,1,0
-0,0,0,6.66899,0,0,13.8,0,1,0
-0,0,0,6.66899,0,0,0,0,1,0
-0,0,0,6.66899,0,0,0,0,1,0
-0,0,0,6.66899,0,0,0,0,1,0
-0,3.258096,0,0,7.532195,0,3.4,0,0,1
-1,3.258096,0,0,7.532195,0,3.4,0,0,1
-0,3.258096,0,0,7.532195,0,3.4,0,0,1
-2,0,1,0,5.061929,0,13.8,1,0,0
-0,0,1,0,5.061929,0,13.8,1,0,0
-1,0,1,0,5.061929,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-5,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,1,3.4,0,1,0
-0,0,0,0,0,1,3.4,0,1,0
-0,0,0,0,0,1,3.4,0,1,0
-0,0,0,0,0,1,3.4,0,1,0
-1,0,0,0,0,1,3.4,0,1,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,0,13.8,1,0,0
-0,4.564348,0,0,6.818751,0,13.8,1,0,0
-0,4.564348,0,0,6.818751,0,13.8,1,0,0
-0,4.564348,0,0,6.818751,0,13.8,1,0,0
-0,4.564348,0,0,6.818751,0,13.8,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-2,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-1,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-0,4.564348,0,0,6.818751,.1442925,10.57626,1,0,0
-7,3.258096,0,0,4.884316,0,6.9,1,0,0
-4,3.258096,0,0,4.884316,0,6.9,1,0,0
-2,3.258096,0,0,4.884316,0,6.9,1,0,0
-2,0,1,0,5.061929,0,13.8,0,0,0
-5,0,1,0,5.061929,0,13.8,0,0,0
-6,0,1,0,5.061929,0,13.8,0,0,0
-0,0,0,0,0,0,37.9,1,0,0
-3,0,0,0,0,0,37.9,1,0,0
-4,0,0,0,0,0,37.9,1,0,0
-0,0,0,0,0,.1442925,10.57626,1,0,0
-0,0,0,0,0,.1442925,10.57626,1,0,0
-1,0,0,0,0,.1442925,10.57626,1,0,0
-1,0,0,0,0,.1442925,10.57626,1,0,0
-1,0,0,0,0,.1442925,10.57626,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,20.7,0,0,1
-3,0,0,0,0,0,20.7,0,0,1
-6,0,0,0,0,0,20.7,0,0,1
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,6.9,0,0,1
-1,0,0,0,0,0,6.9,0,0,1
-1,0,0,0,0,0,6.9,0,0,1
-2,0,0,6.030685,0,0,10.57626,1,0,0
-3,0,0,6.030685,0,0,10.57626,1,0,0
-5,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,0,6.030685,0,1,10.3,0,1,0
-1,0,0,6.030685,0,1,10.3,0,1,0
-1,0,0,6.030685,0,1,10.3,0,1,0
-1,0,0,6.030685,0,0,6.9,0,0,0
-1,0,0,6.030685,0,0,6.9,0,0,0
-2,0,0,6.030685,0,0,6.9,0,0,0
-1,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,0,6.030685,0,0,10.57626,1,0,0
-2,0,0,2.890372,0,0,0,1,0,0
-3,0,0,2.890372,0,0,0,1,0,0
-7,0,0,2.890372,0,0,0,1,0,0
-0,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,0,6.030685,0,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.3,0,1,0
-10,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,3.258096,0,5.8925,7.278795,0,6.9,1,0,0
-0,3.258096,0,5.8925,7.278795,0,6.9,1,0,0
-0,3.258096,0,5.8925,7.278795,0,6.9,1,0,0
-0,3.258096,0,5.8925,7.278795,0,3.4,1,0,0
-0,3.258096,0,5.8925,7.278795,0,3.4,1,0,0
-0,3.258096,0,5.8925,7.278795,0,3.4,1,0,0
-0,3.258096,0,5.8925,7.278795,1,10.3,0,1,0
-0,3.258096,0,5.8925,7.278795,1,10.3,0,1,0
-0,3.258096,0,5.8925,7.278795,1,10.3,0,1,0
-0,3.258096,0,5.8925,7.278795,0,10.57626,1,0,0
-0,3.258096,0,5.8925,7.278795,0,10.57626,1,0,0
-0,3.258096,0,5.8925,7.278795,0,10.57626,1,0,0
-3,0,1,5.010635,5.061929,0,3.4,1,0,0
-4,0,1,5.010635,5.061929,0,3.4,1,0,0
-2,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,4.564348,0,6.620007,6.6713,0,6.9,1,0,0
-0,4.564348,0,6.620007,6.6713,0,6.9,1,0,0
-0,4.564348,0,6.620007,6.6713,0,6.9,1,0,0
-5,4.564348,0,6.620007,6.6713,0,20.7,1,0,0
-2,4.564348,0,6.620007,6.6713,0,20.7,1,0,0
-1,4.564348,0,6.620007,6.6713,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-12,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-1,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,10.3,0,1,0
-0,0,1,0,6.160541,0,10.3,0,1,0
-1,0,1,0,6.160541,0,10.3,0,1,0
-0,0,1,0,6.160541,0,10.57626,0,1,0
-0,0,1,0,6.160541,0,10.57626,0,1,0
-0,0,1,0,6.160541,0,10.57626,0,1,0
-1,0,0,4.268298,0,1,20.7,1,0,0
-1,0,0,4.268298,0,1,20.7,1,0,0
-0,0,0,4.268298,0,1,20.7,1,0,0
-0,0,0,4.564348,0,0,6.9,1,0,0
-0,0,0,4.564348,0,0,6.9,1,0,0
-0,0,0,4.564348,0,0,6.9,1,0,0
-5,0,1,5.594116,5.061929,0,10.3,1,0,0
-0,0,1,5.594116,5.061929,0,10.3,1,0,0
-4,0,1,5.594116,5.061929,0,10.3,1,0,0
-11,0,0,5.869636,0,0,6.9,0,0,0
-9,0,0,5.869636,0,0,6.9,0,0,0
-19,0,0,5.869636,0,0,6.9,0,0,0
-30,0,0,5.869636,0,0,6.9,0,0,0
-27,0,0,5.869636,0,0,6.9,0,0,0
-8,0,0,5.869636,0,0,3.4,0,0,0
-9,0,0,5.869636,0,0,3.4,0,0,0
-6,0,0,5.869636,0,0,3.4,0,0,0
-2,0,0,5.869636,0,0,3.4,0,0,0
-0,0,0,5.869636,0,0,3.4,0,0,0
-1,0,0,5.869636,0,0,6.9,0,0,0
-1,0,0,5.869636,0,0,6.9,0,0,0
-2,0,0,5.869636,0,0,6.9,0,0,0
-1,0,0,5.869636,0,0,6.9,0,0,0
-8,0,0,5.869636,0,0,6.9,0,0,0
-6,0,0,5.869636,0,0,10.57626,0,0,0
-1,0,0,5.869636,0,0,10.57626,0,0,0
-8,0,0,5.869636,0,0,10.57626,0,0,0
-9,0,0,5.869636,0,0,10.57626,0,0,0
-7,0,0,5.869636,0,0,10.57626,0,0,0
-2,4.564348,0,6.745236,6.79653,0,27.6,1,0,0
-1,4.564348,0,6.745236,6.79653,0,27.6,1,0,0
-2,0,0,6.152051,0,0,10.57626,1,0,0
-4,0,0,6.152051,0,0,10.57626,1,0,0
-2,0,0,6.152051,0,0,10.57626,1,0,0
-7,0,0,6.152051,0,0,10.57626,1,0,0
-2,0,0,6.152051,0,0,10.57626,1,0,0
-1,0,0,6.152051,0,0,6.9,1,0,0
-1,0,0,6.152051,0,0,6.9,1,0,0
-0,0,0,6.152051,0,0,6.9,1,0,0
-3,0,0,6.152051,0,0,6.9,1,0,0
-1,0,0,6.152051,0,0,6.9,1,0,0
-2,0,0,6.152051,0,0,24.1,1,0,0
-8,0,0,6.152051,0,0,24.1,1,0,0
-2,0,0,6.152051,0,0,24.1,1,0,0
-2,0,0,6.152051,0,0,24.1,1,0,0
-5,0,0,6.152051,0,0,24.1,1,0,0
-0,4.564348,0,0,0,0,3.4,1,0,0
-0,4.564348,0,0,0,0,3.4,1,0,0
-0,4.564348,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-2,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,5.713733,0,0,6.9,0,0,0
-4,0,0,5.713733,0,0,6.9,0,0,0
-2,0,0,5.713733,0,0,6.9,0,0,0
-4,0,0,5.713733,0,0,17.2,0,1,0
-3,0,0,5.713733,0,0,17.2,0,1,0
-1,0,0,5.713733,0,0,17.2,0,1,0
-1,3.258096,0,6.617403,8.003697,0,13.8,1,0,0
-2,3.258096,0,0,5.768321,0,20.7,1,0,0
-1,3.258096,0,0,5.768321,0,20.7,1,0,0
-5,3.258096,0,0,5.768321,0,20.7,1,0,0
-1,3.258096,0,0,5.768321,0,20.7,1,0,0
-0,3.258096,0,0,5.768321,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,1
-2,0,1,6.109248,6.160541,0,10.57626,0,0,1
-1,0,1,6.109248,6.160541,0,10.57626,0,0,1
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,0,0,5.379713,0,0,6.9,0,0,0
-2,0,0,5.379713,0,0,6.9,0,0,0
-0,0,0,5.379713,0,0,6.9,0,0,0
-5,0,0,5.379713,0,0,13.8,0,0,1
-2,0,0,5.379713,0,0,13.8,0,0,1
-3,0,0,5.379713,0,0,13.8,0,0,1
-0,0,0,5.379713,0,0,0,0,0,0
-1,0,0,5.379713,0,0,0,0,0,0
-0,0,0,5.379713,0,0,0,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-6,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-5,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-5,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-7,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-5,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-4,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-3,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-1,4.564348,0,6.649632,6.700925,0,3.4,1,0,0
-0,4.564348,0,6.649632,6.700925,0,3.4,1,0,0
-1,4.564348,0,6.649632,6.700925,0,3.4,1,0,0
-0,4.564348,0,6.649632,6.700925,0,10.3,0,0,0
-0,4.564348,0,6.649632,6.700925,0,10.3,0,0,0
-1,4.564348,0,6.649632,6.700925,0,10.3,0,0,0
-0,4.564348,0,6.649632,6.700925,0,3.4,1,0,0
-0,4.564348,0,6.649632,6.700925,0,3.4,1,0,0
-4,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-1,0,1,5.703783,5.755076,0,3.4,1,0,0
-3,0,1,5.703783,5.755076,0,3.4,1,0,0
-2,0,1,5.703783,5.755076,0,10.3,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-4,0,1,5.703783,5.755076,0,10.3,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-5,0,0,5.875043,0,1,17.2,1,0,0
-3,0,0,5.875043,0,1,17.2,1,0,0
-2,0,0,5.875043,0,1,17.2,1,0,0
-5,0,0,5.875043,0,.1442925,10.57626,0,0,0
-1,0,0,5.875043,0,.1442925,10.57626,0,0,0
-3,0,0,5.875043,0,.1442925,10.57626,0,0,0
-1,0,0,5.875043,0,.1442925,10.57626,0,0,0
-2,0,0,5.875043,0,.1442925,10.57626,0,0,0
-2,0,0,5.875043,0,.1442925,10.57626,0,0,0
-0,0,0,5.369708,0,0,0,0,0,0
-0,0,0,5.369708,0,0,0,0,0,0
-0,0,0,5.369708,0,0,0,0,0,0
-0,0,0,5.369708,0,0,10.57626,0,1,0
-0,0,0,5.369708,0,0,10.57626,0,1,0
-0,0,0,5.369708,0,0,10.57626,0,1,0
-0,0,0,5.369708,0,0,13.8,1,0,0
-0,0,0,5.369708,0,0,13.8,1,0,0
-0,0,0,5.369708,0,0,3.4,0,0,0
-0,0,0,5.369708,0,0,3.4,0,0,0
-2,0,0,5.369708,0,0,3.4,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.3,0,0,0
-0,0,1,0,6.160541,1,10.3,1,0,0
-1,0,1,0,6.160541,1,10.3,1,0,0
-4,0,1,0,6.160541,1,10.3,1,0,0
-1,4.564348,0,6.772966,6.824259,0,27.6,1,0,0
-1,4.564348,0,6.772966,6.824259,0,27.6,1,0,0
-6,4.564348,0,6.772966,6.824259,0,27.6,1,0,0
-0,4.564348,0,6.772966,6.824259,0,10.57626,0,0,0
-0,4.564348,0,6.772966,6.824259,0,10.57626,0,0,0
-2,4.564348,0,6.772966,6.824259,0,10.57626,0,0,0
-1,4.564348,0,6.772966,6.824259,0,6.9,1,0,0
-0,4.564348,0,6.772966,6.824259,0,6.9,1,0,0
-0,4.564348,0,6.772966,6.824259,0,6.9,1,0,0
-0,4.564348,0,6.19461,6.245903,0,10.57626,1,0,0
-0,4.564348,0,6.19461,6.245903,0,10.57626,1,0,0
-1,4.564348,0,6.19461,6.245903,0,10.57626,1,0,0
-1,4.564348,0,6.19461,6.245903,0,10.57626,1,0,0
-3,4.564348,0,6.19461,6.245903,0,10.57626,1,0,0
-0,4.564348,0,6.19461,6.245903,0,10.3,1,0,0
-1,4.564348,0,6.19461,6.245903,0,10.3,1,0,0
-0,4.564348,0,6.19461,6.245903,0,10.3,1,0,0
-3,4.564348,0,6.19461,6.245903,0,10.3,1,0,0
-4,4.564348,0,6.19461,6.245903,0,10.3,1,0,0
-12,0,0,6.934592,0,1,20.7,0,1,0
-8,0,0,6.934592,0,1,20.7,0,1,0
-4,0,0,6.934592,0,1,20.7,0,1,0
-0,0,0,6.934592,0,0,10.3,1,0,0
-0,0,0,6.934592,0,0,10.3,1,0,0
-0,0,0,6.934592,0,0,10.3,1,0,0
-7,4.564348,0,5.97269,5.046476,0,24.1,0,1,0
-13,4.564348,0,5.97269,5.046476,0,24.1,0,1,0
-5,4.564348,0,5.97269,5.046476,0,24.1,0,1,0
-1,0,1,5.703783,5.755076,0,6.9,1,0,0
-0,0,1,5.703783,5.755076,0,6.9,1,0,0
-0,0,1,5.703783,5.755076,0,6.9,1,0,0
-1,0,1,5.703783,5.755076,0,10.57626,1,0,0
-1,0,1,5.703783,5.755076,0,10.57626,1,0,0
-0,0,1,5.703783,5.755076,0,10.57626,1,0,0
-11,3.931826,0,6.907755,7.600903,0,41.4,1,0,0
-4,3.931826,0,6.907755,7.600903,0,41.4,1,0,0
-8,3.931826,0,6.907755,7.600903,0,41.4,1,0,0
-2,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-3,3.931826,0,6.907755,7.600903,0,17.2,1,0,0
-0,3.258096,0,0,7.091243,0,0,1,0,0
-0,3.258096,0,0,7.091243,0,0,1,0,0
-0,3.258096,0,0,7.091243,0,0,1,0,0
-0,3.258096,0,5.752573,7.138867,0,0,0,1,0
-0,3.258096,0,5.752573,7.138867,0,0,0,1,0
-0,3.258096,0,5.752573,7.138867,0,0,0,1,0
-7,0,1,5.703783,6.160541,0,6.9,1,0,0
-2,0,1,5.703783,6.160541,0,6.9,1,0,0
-4,0,1,5.703783,6.160541,0,6.9,1,0,0
-3,0,1,5.703783,6.160541,0,13.8,1,0,0
-10,0,1,5.703783,6.160541,0,13.8,1,0,0
-16,0,1,5.703783,6.160541,0,13.8,1,0,0
-1,0,1,5.703783,6.160541,1,24.1,0,1,0
-2,0,1,5.703783,6.160541,1,24.1,0,1,0
-2,0,1,5.703783,6.160541,1,24.1,0,1,0
-5,0,1,5.703783,6.160541,0,20.7,0,1,0
-3,0,1,5.703783,6.160541,0,20.7,0,1,0
-6,0,1,5.703783,6.160541,0,20.7,0,1,0
-2,0,1,5.703783,6.160541,1,20.7,1,0,0
-0,0,1,5.703783,6.160541,1,20.7,1,0,0
-2,0,1,5.703783,6.160541,1,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-4,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-8,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-5,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,13.8,0,1,0
-0,0,0,0,0,0,13.8,0,1,0
-0,0,0,0,0,0,13.8,0,1,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-10,0,1,5.010635,6.160541,0,6.9,1,0,0
-5,0,1,5.010635,6.160541,0,6.9,1,0,0
-0,0,1,5.010635,6.160541,0,6.9,1,0,0
-3,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-2,0,1,5.010635,6.160541,1,17.2,1,0,0
-1,0,1,5.010635,6.160541,1,17.2,1,0,0
-2,0,1,5.010635,6.160541,1,17.2,1,0,0
-0,0,0,6.030685,0,1,34.5,0,0,1
-3,0,0,6.030685,0,1,34.5,0,0,1
-10,0,0,6.030685,0,1,34.5,0,0,1
-1,0,0,6.030685,0,0,6.9,0,1,0
-10,0,0,6.030685,0,0,6.9,0,1,0
-12,0,0,6.030685,0,0,6.9,0,1,0
-0,0,0,6.030685,0,0,0,1,0,0
-0,0,0,6.030685,0,0,0,1,0,0
-2,0,0,6.030685,0,0,0,1,0,0
-1,0,0,6.030685,0,0,17.2,1,0,0
-0,0,0,6.030685,0,0,17.2,1,0,0
-4,0,0,6.030685,0,0,17.2,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,0,0,0
-3,0,1,5.703783,5.755076,0,10.3,0,0,0
-2,0,1,5.703783,5.755076,0,10.3,0,0,0
-11,0,1,5.703783,5.755076,1,13.8,1,0,0
-1,0,1,5.703783,5.755076,1,13.8,1,0,0
-4,0,1,5.703783,5.755076,1,13.8,1,0,0
-0,3.258096,0,0,7.391662,1,31,0,1,0
-0,3.258096,0,0,7.391662,1,31,0,1,0
-3,3.258096,0,0,7.391662,1,31,0,1,0
-10,3.258096,0,0,7.391662,1,31,0,1,0
-22,3.258096,0,0,7.391662,1,31,0,1,0
-2,0,1,6.109248,6.160541,0,13.8,1,0,0
-5,0,1,6.109248,6.160541,0,13.8,1,0,0
-6,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-4,3.258096,0,7.006478,7.976801,0,13.8,0,0,0
-1,3.258096,0,7.006478,7.976801,0,13.8,0,0,0
-1,3.258096,0,7.006478,7.976801,0,13.8,0,0,0
-2,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-2,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-2,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-1,3.258096,0,7.006478,7.976801,0,10.3,0,0,0
-0,3.258096,0,7.006478,7.976801,0,10.3,0,0,0
-0,3.258096,0,7.006478,7.976801,0,10.3,0,0,0
-0,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-2,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-0,3.258096,0,7.006478,7.976801,0,10.57626,0,0,0
-0,0,0,0,0,0,0,0,0,0
-4,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-8,3.258096,0,6.510258,7.896553,1,31,1,0,0
-3,3.258096,0,6.510258,7.896553,1,31,1,0,0
-7,3.258096,0,6.510258,7.896553,1,31,1,0,0
-1,3.258096,0,6.510258,7.896553,0,6.9,0,0,0
-2,3.258096,0,6.510258,7.896553,0,6.9,0,0,0
-2,3.258096,0,6.510258,7.896553,0,6.9,0,0,0
-0,3.258096,0,6.510258,7.896553,0,10.57626,0,0,0
-0,3.258096,0,6.510258,7.896553,0,10.57626,0,0,0
-1,3.258096,0,6.510258,7.896553,0,10.57626,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-0,0,1,5.010635,5.061929,0,10.3,0,0,0
-3,3.258096,0,6.620073,8.006368,1,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,1,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,1,10.57626,1,0,0
-4,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-1,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-5,3.258096,0,6.620073,8.006368,1,27.6,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,1,37.9,0,0,1
-5,3.258096,0,6.620073,8.006368,1,37.9,0,0,1
-5,3.258096,0,6.620073,8.006368,1,37.9,0,0,1
-6,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-6,0,0,5.702181,0,0,17.2,0,0,0
-3,0,0,5.702181,0,0,17.2,0,0,0
-3,0,0,5.702181,0,0,17.2,0,0,0
-5,0,0,5.702181,0,0,17.2,0,0,0
-2,0,0,5.702181,0,0,17.2,0,0,0
-9,0,0,5.702181,0,0,13.8,0,0,0
-0,0,0,5.702181,0,0,13.8,0,0,0
-2,0,0,5.702181,0,0,13.8,0,0,0
-4,0,0,5.702181,0,0,13.8,0,0,0
-7,0,0,5.702181,0,0,13.8,0,0,0
-9,0,0,5.702181,0,0,3.4,1,0,0
-1,0,0,5.702181,0,0,3.4,1,0,0
-2,0,0,5.702181,0,0,3.4,1,0,0
-0,0,0,5.702181,0,0,3.4,1,0,0
-3,0,0,5.702181,0,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,1,20.7,0,0,0
-1,3.258096,0,6.620073,8.006368,1,20.7,0,0,0
-0,3.258096,0,6.620073,8.006368,1,20.7,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,1,13.8,0,0,0
-5,0,0,0,0,1,13.8,0,0,0
-1,0,0,0,0,1,13.8,0,0,0
-0,3.258096,0,6.357409,7.743703,0,3.4,1,0,0
-0,3.258096,0,6.357409,7.743703,0,3.4,1,0,0
-1,3.258096,0,6.357409,7.743703,0,3.4,1,0,0
-0,3.258096,0,6.357409,7.743703,0,0,1,0,0
-7,3.258096,0,6.357409,7.743703,0,0,1,0,0
-1,3.258096,0,6.357409,7.743703,0,0,1,0,0
-0,3.258096,0,6.223171,7.609466,1,27.6,1,0,0
-0,3.258096,0,6.223171,7.609466,1,27.6,1,0,0
-1,3.258096,0,6.223171,7.609466,1,27.6,1,0,0
-0,3.258096,0,6.223171,7.609466,0,10.57626,0,0,0
-0,3.258096,0,6.223171,7.609466,0,10.57626,0,0,0
-0,3.258096,0,6.223171,7.609466,0,10.57626,0,0,0
-0,3.258096,0,6.223171,7.609466,0,10.3,0,0,0
-0,3.258096,0,6.223171,7.609466,0,10.3,0,0,0
-0,3.258096,0,6.223171,7.609466,0,10.3,0,0,0
-1,3.931826,0,0,7.600903,0,6.9,1,0,0
-0,3.931826,0,0,7.600903,0,6.9,1,0,0
-2,3.931826,0,0,7.600903,0,6.9,1,0,0
-0,3.931826,0,0,7.600903,0,10.57626,0,0,0
-2,3.931826,0,0,7.600903,0,10.57626,0,0,0
-4,3.931826,0,0,7.600903,0,10.57626,0,0,0
-0,3.931826,0,0,7.600903,0,10.57626,0,0,0
-0,3.931826,0,0,7.600903,0,10.57626,0,0,0
-0,3.931826,0,0,7.600903,0,10.57626,0,0,0
-0,0,0,2.890372,0,.1442925,10.57626,0,0,0
-2,0,0,2.890372,0,.1442925,10.57626,0,0,0
-0,0,0,2.890372,0,.1442925,10.57626,0,0,0
-3,0,0,2.890372,0,0,17.2,1,0,0
-3,0,0,2.890372,0,0,17.2,1,0,0
-4,0,0,2.890372,0,0,17.2,1,0,0
-2,0,0,2.890372,0,0,6.9,0,0,0
-1,0,0,2.890372,0,0,6.9,0,0,0
-3,0,0,2.890372,0,0,6.9,0,0,0
-0,0,1,5.010635,5.061929,0,6.9,0,0,0
-0,0,1,5.010635,5.061929,0,6.9,0,0,0
-0,0,1,5.010635,5.061929,0,6.9,0,0,0
-10,0,0,5.273,0,0,24.1,1,0,0
-2,0,0,5.273,0,0,24.1,1,0,0
-1,0,0,5.273,0,0,24.1,1,0,0
-2,0,0,5.273,0,0,10.57626,1,0,0
-0,0,0,5.273,0,0,10.57626,1,0,0
-1,0,0,5.273,0,0,10.57626,1,0,0
-4,0,0,5.273,0,0,3.4,1,0,0
-2,0,0,5.273,0,0,3.4,1,0,0
-1,0,0,5.273,0,0,3.4,1,0,0
-0,0,0,5.273,0,0,10.57626,1,0,0
-7,0,0,5.273,0,0,10.57626,1,0,0
-3,0,0,5.273,0,0,10.57626,1,0,0
-0,0,0,5.273,0,0,6.9,0,1,0
-0,0,0,5.273,0,0,6.9,0,1,0
-0,0,0,5.273,0,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-0,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-2,4.564348,0,6.907755,6.959049,0,24.1,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-1,4.564348,0,6.383507,6.4348,0,17.2,0,0,0
-3,4.564348,0,6.383507,6.4348,0,17.2,0,0,0
-0,4.564348,0,6.383507,6.4348,0,17.2,0,0,0
-0,4.564348,0,6.383507,6.4348,0,0,0,0,0
-0,4.564348,0,6.383507,6.4348,0,0,0,0,0
-0,4.564348,0,6.383507,6.4348,0,0,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-4,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-4,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-14,0,0,6.815157,0,0,10.57626,0,0,0
-12,0,0,6.815157,0,0,10.57626,0,0,0
-10,0,0,6.815157,0,0,10.57626,0,0,0
-5,0,0,6.815157,0,0,10.57626,0,0,0
-3,0,0,6.815157,0,0,10.57626,0,0,0
-6,0,0,0,0,1,6.9,0,0,0
-18,0,0,0,0,1,6.9,0,0,0
-11,0,0,0,0,1,6.9,0,0,0
-7,0,0,0,0,1,6.9,0,0,0
-4,0,0,0,0,1,6.9,0,0,0
-0,0,0,0,0,0,10.3,0,0,0
-7,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-0,4.564348,0,0,5.714254,0,3.4,0,0,0
-0,4.564348,0,0,5.714254,0,3.4,0,0,0
-0,4.564348,0,0,5.714254,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,20.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,20.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,20.7,0,0,0
-1,3.931826,0,6.907755,7.600903,0,20.7,0,0,0
-0,3.931826,0,6.907755,7.600903,0,20.7,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,5.977771,5.755076,0,17.2,1,0,0
-5,0,1,5.977771,5.755076,0,17.2,1,0,0
-2,0,1,5.977771,5.755076,0,17.2,1,0,0
-0,0,1,5.977771,5.755076,1,3.4,1,0,0
-0,0,1,5.977771,5.755076,1,3.4,1,0,0
-0,0,1,5.977771,5.755076,1,3.4,1,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,20.7,1,0,0
-3,0,0,0,0,0,20.7,1,0,0
-7,0,0,0,0,0,20.7,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-10,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-10,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.931826,0,6.907755,7.600903,0,24.1,0,0,0
-0,3.931826,0,6.907755,7.600903,0,24.1,0,0,0
-1,3.931826,0,6.907755,7.600903,0,24.1,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-5,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,1,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,1,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,1,10.57626,0,0,0
-1,0,0,6.287598,0,0,10.57626,0,0,0
-7,0,0,6.287598,0,0,10.57626,0,0,0
-7,0,0,6.287598,0,0,10.57626,0,0,0
-1,0,0,6.287598,0,0,10.57626,0,1,0
-3,0,0,6.287598,0,0,10.57626,0,1,0
-7,0,0,6.287598,0,0,10.57626,0,1,0
-1,0,0,6.287598,0,0,10.57626,0,1,0
-8,0,0,6.287598,0,0,10.57626,0,1,0
-5,0,0,6.287598,0,0,10.57626,0,1,0
-1,0,0,6.287598,0,0,6.9,0,0,0
-2,0,0,6.287598,0,0,6.9,0,0,0
-5,0,0,6.287598,0,0,6.9,0,0,0
-1,0,0,6.287598,0,0,10.3,0,1,0
-7,0,0,6.287598,0,0,10.3,0,1,0
-9,0,0,6.287598,0,0,10.3,0,1,0
-2,0,0,6.287598,0,0,10.57626,0,0,0
-3,0,0,6.287598,0,0,10.57626,0,0,0
-3,0,0,6.287598,0,0,10.57626,0,0,0
-6,0,0,6.287598,0,0,3.4,0,0,0
-6,0,0,6.287598,0,0,3.4,0,0,0
-0,0,0,6.287598,0,0,3.4,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-1,0,0,6.437399,0,0,6.9,0,0,0
-2,4.564348,0,6.745236,6.79653,0,13.8,0,0,0
-1,4.564348,0,6.745236,6.79653,0,13.8,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,6.384047,0,0,10.57626,0,0,0
-2,0,0,6.384047,0,0,10.57626,0,0,0
-1,0,0,6.384047,0,0,10.57626,0,0,0
-10,0,0,5.879527,0,.1442925,10.57626,0,0,0
-7,0,0,5.879527,0,.1442925,10.57626,0,0,0
-1,0,0,5.879527,0,.1442925,10.57626,0,0,0
-1,0,0,5.879527,0,.1442925,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,0,0,0
-0,4.564348,0,4.959693,5.010986,0,10.57626,0,0,0
-0,4.564348,0,4.959693,5.010986,0,10.57626,0,0,0
-0,4.564348,0,4.959693,5.010986,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,1,6.9,0,0,0
-5,0,1,6.109248,6.160541,1,6.9,0,0,0
-8,0,1,6.109248,6.160541,1,6.9,0,0,0
-11,0,1,5.010635,5.061929,.1442925,10.57626,0,0,0
-0,0,1,5.010635,5.061929,.1442925,10.57626,0,0,0
-1,0,1,5.010635,5.061929,.1442925,10.57626,0,0,0
-0,0,1,5.010635,5.061929,.1442925,10.57626,0,0,0
-1,4.564348,0,5.98202,5.799093,.1442925,10.57626,0,0,0
-0,4.564348,0,5.98202,5.799093,.1442925,10.57626,0,0,0
-0,4.564348,0,5.98202,5.799093,.1442925,10.57626,0,0,0
-5,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-12,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-11,0,0,6.152051,0,.1442925,10.57626,0,0,0
-12,0,0,6.152051,0,.1442925,10.57626,0,0,0
-5,0,0,6.152051,0,.1442925,10.57626,0,0,0
-4,0,0,6.152051,0,.1442925,10.57626,0,0,0
-28,0,0,0,0,.1442925,10.57626,0,0,0
-11,0,0,0,0,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,3.258096,0,5.810392,7.196687,.1442925,10.57626,0,0,0
-1,3.258096,0,5.810392,7.196687,.1442925,10.57626,0,0,0
-0,3.258096,0,5.810392,7.196687,.1442925,10.57626,0,0,0
-0,3.258096,0,5.810392,7.196687,.1442925,10.57626,0,0,0
-5,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,.1442925,10.57626,0,0,0
-0,0,1,0,6.160541,.1442925,10.57626,0,0,0
-0,0,1,0,6.160541,.1442925,10.57626,0,0,0
-2,0,1,0,6.160541,.1442925,10.57626,0,0,0
-15,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-8,0,0,6.819711,0,0,10.57626,0,0,0
-11,0,0,6.819711,0,0,10.57626,0,0,0
-9,0,0,6.819711,0,0,10.57626,0,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-0,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-0,4.564348,0,5.753049,5.804342,0,13.8,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-6,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-6,0,1,5.928099,5.755076,0,10.3,0,0,0
-0,0,1,5.928099,5.755076,0,10.3,0,0,0
-3,0,1,5.928099,5.755076,0,10.3,0,0,0
-1,0,0,6.532596,0,0,10.57626,0,0,0
-2,0,0,6.532596,0,0,10.57626,0,0,0
-1,0,0,6.532596,0,0,10.57626,0,0,0
-2,0,0,6.532596,0,0,17.2,0,0,0
-10,0,0,6.532596,0,0,17.2,0,0,0
-7,0,0,6.532596,0,0,17.2,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,4.564348,0,5.783825,5.835118,0,10.57626,0,0,0
-2,4.564348,0,5.783825,5.835118,0,10.57626,0,0,0
-0,4.564348,0,5.783825,5.835118,0,10.57626,0,0,0
-4,0,1,6.761573,6.160541,0,10.57626,0,0,0
-1,0,1,6.761573,6.160541,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-5,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,0,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,0,0,0
-0,3.258096,0,6.471356,5.771441,0,10.57626,0,0,0
-8,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-4,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-10,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-3,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-3,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,3.258096,0,0,6.635421,.1442925,10.57626,0,0,0
-0,3.258096,0,0,6.635421,.1442925,10.57626,0,0,0
-1,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-2,0,0,0,0,0,10.3,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-2,0,1,0,6.160541,0,10.57626,0,0,0
-4,0,1,5.010635,6.160541,0,10.57626,0,0,0
-1,0,1,5.010635,6.160541,0,10.57626,0,0,0
-4,0,1,5.010635,6.160541,0,10.57626,0,0,0
-8,0,0,0,0,0,10.57626,0,0,0
-7,0,0,0,0,0,10.57626,0,0,0
-8,0,0,0,0,0,10.57626,0,0,0
-11,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-9,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-2,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,0,4.510859,0,.1442925,10.57626,0,0,0
-0,0,0,4.510859,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,1,0,0,0,0
-0,0,0,0,0,1,0,0,0,0
-0,0,0,0,0,1,0,0,0,0
-0,0,1,6.109248,6.160541,1,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,10.57626,0,0,0
-4,0,0,2.890372,0,0,10.57626,0,0,0
-3,0,0,2.890372,0,0,10.57626,0,0,0
-3,0,0,2.890372,0,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,7.080969,0,0,0,0,0,0
-0,0,0,7.080969,0,0,0,0,0,0
-0,0,0,7.080969,0,0,0,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-14,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-8,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-2,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-6,4.564348,0,4.945919,4.997212,.1442925,10.57626,0,0,0
-1,4.564348,0,4.945919,4.997212,.1442925,10.57626,0,0,0
-17,0,0,6.030685,0,.1442925,10.57626,0,0,0
-12,0,0,6.030685,0,.1442925,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,5.752573,7.138867,.1442925,10.57626,0,0,0
-0,3.258096,0,5.752573,7.138867,.1442925,10.57626,0,0,0
-11,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-10,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-6,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-13,0,0,6.819711,0,.1442925,10.57626,0,0,0
-8,0,0,6.819711,0,.1442925,10.57626,0,0,0
-2,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-7,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-3,0,0,5.294309,0,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,4.564348,0,7.06732,6.675624,.1442925,10.57626,0,0,0
-0,4.564348,0,7.06732,6.675624,.1442925,10.57626,0,0,0
-2,0,1,0,6.160541,.1442925,10.57626,0,0,0
-0,4.564348,0,5.783825,5.835118,.1442925,10.57626,0,0,0
-6,3.258096,0,6.357409,7.743703,.1442925,10.57626,0,0,0
-0,4.564348,0,6.160574,6.211867,.1442925,10.57626,0,0,0
-1,4.564348,0,6.160574,6.211867,.1442925,10.57626,0,0,0
-0,0,1,0,6.160541,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-6,4.564348,0,5.753049,5.804342,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-6,0,0,0,0,.1442925,10.57626,0,0,0
-18,0,0,0,0,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-8,0,0,0,0,.1442925,10.57626,0,0,0
-11,0,0,6.206979,0,.1442925,10.57626,0,0,0
-5,0,0,5.702181,0,.1442925,10.57626,0,0,0
-6,0,1,0,6.160541,.1442925,10.57626,0,0,0
-0,4.564348,0,6.649632,6.700925,.1442925,10.57626,0,0,0
-11,0,0,6.030685,0,.1442925,10.57626,0,0,0
-10,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-0,3.258096,0,5.752573,7.138867,.1442925,10.57626,0,0,0
-0,4.564348,0,5.991465,6.042758,0,10.3,0,0,0
-0,4.564348,0,5.991465,6.042758,0,10.3,0,0,0
-0,4.564348,0,5.991465,6.042758,0,10.3,0,0,0
-0,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-2,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-2,4.564348,0,5.991465,6.042758,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-0,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-1,4.564348,0,6.907755,6.959049,0,10.3,0,1,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-2,3.258096,0,6.311226,6.966024,0,10.57626,0,0,0
-3,3.258096,0,6.311226,6.966024,0,10.57626,0,0,0
-0,3.258096,0,6.311226,6.966024,0,10.57626,0,0,0
-4,3.258096,0,6.311226,6.966024,0,6.9,0,0,0
-5,3.258096,0,6.311226,6.966024,0,6.9,0,0,0
-1,3.258096,0,6.311226,6.966024,0,6.9,0,0,0
-1,0,0,5.634933,0,0,10.57626,1,0,0
-0,0,0,5.634933,0,0,10.57626,1,0,0
-2,0,0,5.634933,0,0,10.57626,1,0,0
-3,0,0,5.634933,0,0,10.57626,1,0,0
-1,0,0,5.634933,0,0,10.57626,1,0,0
-0,0,0,5.634933,0,0,0,0,0,0
-0,0,0,5.634933,0,0,0,0,0,0
-2,0,0,5.634933,0,0,0,0,0,0
-5,0,0,5.634933,0,0,0,0,0,0
-1,0,0,5.634933,0,0,0,0,0,0
-18,0,0,5.634933,0,0,17.2,0,0,1
-4,0,0,5.634933,0,0,17.2,0,0,1
-9,0,0,5.634933,0,0,17.2,0,0,1
-4,0,0,5.634933,0,0,17.2,0,0,1
-3,0,0,5.634933,0,0,17.2,0,0,1
-1,0,0,5.634933,0,0,6.9,1,0,0
-9,0,0,5.634933,0,0,6.9,1,0,0
-1,0,0,5.634933,0,0,6.9,1,0,0
-0,0,0,5.634933,0,0,6.9,1,0,0
-0,0,0,5.634933,0,0,6.9,1,0,0
-2,0,0,6.264845,0,0,10.3,0,0,0
-5,0,0,6.264845,0,0,10.3,0,0,0
-3,0,0,6.264845,0,0,10.3,0,0,0
-2,0,0,6.264845,0,0,10.3,0,0,0
-2,0,0,6.264845,0,0,10.3,0,0,0
-2,0,0,6.264845,0,1,0,0,0,0
-1,0,0,6.264845,0,1,0,0,0,0
-1,0,0,6.264845,0,1,0,0,0,0
-1,0,0,6.264845,0,1,0,0,0,0
-1,0,0,6.264845,0,1,0,0,0,0
-3,0,0,6.264845,0,0,3.4,0,0,0
-3,0,0,6.264845,0,0,3.4,0,0,0
-1,0,0,6.264845,0,0,3.4,0,0,0
-3,0,0,6.264845,0,0,3.4,0,0,0
-3,0,0,6.264845,0,0,3.4,0,0,0
-2,0,0,6.264845,0,0,10.3,0,0,0
-1,0,0,6.264845,0,0,10.3,0,0,0
-4,0,0,6.264845,0,0,10.3,0,0,0
-3,0,0,6.264845,0,0,10.3,0,0,0
-2,0,0,6.264845,0,0,10.3,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-1,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-1,4.564348,0,3.883624,3.934917,.1442925,10.57626,1,0,0
-3,4.564348,0,6.939874,6.602374,0,17.2,1,0,0
-0,4.564348,0,6.939874,6.602374,1,10.3,1,0,0
-2,4.564348,0,6.015181,5.734873,1,3.4,0,1,0
-1,4.564348,0,6.015181,5.734873,1,3.4,0,1,0
-1,4.564348,0,6.015181,5.734873,1,3.4,0,1,0
-9,4.564348,0,6.015181,5.734873,1,3.4,0,1,0
-3,4.564348,0,6.015181,5.734873,1,3.4,0,1,0
-2,4.564348,0,6.015181,5.734873,1,3.4,1,0,0
-0,4.564348,0,6.015181,5.734873,1,3.4,1,0,0
-2,4.564348,0,6.015181,5.734873,1,3.4,1,0,0
-0,4.564348,0,6.015181,5.734873,1,3.4,1,0,0
-3,4.564348,0,6.015181,5.734873,1,3.4,1,0,0
-7,4.564348,0,6.015181,5.734873,1,13.8,1,0,0
-13,4.564348,0,6.015181,5.734873,1,13.8,1,0,0
-7,4.564348,0,6.015181,5.734873,1,13.8,1,0,0
-17,4.564348,0,6.015181,5.734873,1,13.8,1,0,0
-10,4.564348,0,6.015181,5.734873,1,13.8,1,0,0
-1,4.564348,0,6.015181,5.734873,1,10.57626,1,0,0
-1,4.564348,0,6.015181,5.734873,1,10.57626,1,0,0
-0,4.564348,0,6.015181,5.734873,1,10.57626,1,0,0
-0,4.564348,0,6.015181,5.734873,1,10.57626,1,0,0
-0,4.564348,0,6.015181,5.734873,1,10.57626,1,0,0
-2,3.258096,0,0,6.907755,1,17.2,1,0,0
-1,3.258096,0,0,6.907755,1,17.2,1,0,0
-1,3.258096,0,0,6.907755,1,17.2,1,0,0
-0,0,0,0,0,1,31,1,0,0
-2,0,0,0,0,1,31,1,0,0
-2,0,0,0,0,1,31,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,20.7,1,0,0
-1,0,0,0,0,0,20.7,1,0,0
-1,0,0,0,0,0,20.7,1,0,0
-2,4.564348,0,6.232605,6.2643,1,13.8,1,0,0
-0,4.564348,0,6.232605,6.2643,1,13.8,1,0,0
-0,4.564348,0,6.232605,6.2643,1,13.8,1,0,0
-0,4.564348,0,6.232605,6.2643,1,13.8,1,0,0
-0,4.564348,0,6.232605,6.2643,1,13.8,1,0,0
-0,4.564348,0,6.232605,6.2643,1,10.3,1,0,0
-0,4.564348,0,6.232605,6.2643,1,10.3,1,0,0
-0,0,0,5.903944,0,0,10.3,1,0,0
-1,0,0,5.903944,0,0,10.3,1,0,0
-2,0,0,5.903944,0,0,10.3,1,0,0
-0,0,0,5.903944,0,0,10.57626,0,1,0
-2,0,0,5.903944,0,0,10.57626,0,1,0
-2,0,0,5.903944,0,0,10.57626,0,1,0
-1,0,0,4.094345,0,1,6.9,1,0,0
-3,0,0,4.094345,0,1,6.9,1,0,0
-4,0,0,4.094345,0,1,6.9,1,0,0
-4,0,0,4.094345,0,1,6.9,1,0,0
-2,0,0,4.094345,0,1,6.9,1,0,0
-4,0,0,4.094345,0,0,10.3,1,0,0
-14,0,0,4.094345,0,0,10.3,1,0,0
-13,0,0,4.094345,0,0,10.3,1,0,0
-7,0,0,4.094345,0,0,10.3,1,0,0
-1,0,0,4.094345,0,0,10.3,1,0,0
-0,0,1,5.703783,5.755076,0,0,1,0,0
-0,0,1,5.703783,5.755076,0,0,1,0,0
-1,0,1,5.703783,5.755076,0,0,1,0,0
-0,0,1,5.703783,5.755076,0,13.8,1,0,0
-1,0,1,5.703783,5.755076,0,13.8,1,0,0
-1,0,1,5.703783,5.755076,0,13.8,1,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-1,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-5,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-5,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-0,3.931826,0,6.907755,7.600903,0,20.7,0,1,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-2,0,0,5.039806,0,0,0,0,1,0
-3,0,0,5.039806,0,0,0,0,1,0
-0,0,0,5.039806,0,0,0,0,1,0
-4,0,0,5.039806,0,0,10.3,0,1,0
-1,0,0,5.039806,0,0,10.3,0,1,0
-3,0,0,5.039806,0,0,10.3,0,1,0
-0,0,0,5.259992,0,0,13.8,1,0,0
-2,0,0,5.259992,0,0,13.8,1,0,0
-1,0,0,5.259992,0,0,13.8,1,0,0
-6,0,0,5.259992,0,0,17.2,0,1,0
-10,0,0,5.259992,0,0,17.2,0,1,0
-3,0,0,5.259992,0,0,17.2,0,1,0
-2,4.564348,0,5.752731,5.804342,1,6.9,0,1,0
-1,4.564348,0,5.752731,5.804342,1,6.9,0,1,0
-3,4.564348,0,5.752731,5.804342,1,6.9,0,1,0
-4,4.564348,0,5.752731,5.804342,1,6.9,0,1,0
-4,4.564348,0,5.752731,5.804342,1,6.9,0,1,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-0,0,1,5.010635,5.061929,0,3.4,1,0,0
-1,0,1,5.010635,5.061929,0,3.4,1,0,0
-7,3.258096,0,5.762052,7.148346,1,24.1,0,1,0
-19,3.258096,0,5.762052,7.148346,1,24.1,0,1,0
-6,3.258096,0,5.762052,7.148346,1,24.1,0,1,0
-0,3.258096,0,0,5.991465,0,3.4,0,0,0
-0,3.258096,0,0,5.991465,0,3.4,0,0,0
-3,3.258096,0,0,5.991465,0,3.4,0,0,0
-1,3.258096,0,5.762052,7.148346,0,10.57626,0,0,0
-2,3.258096,0,5.762052,7.148346,0,10.57626,0,0,0
-3,3.258096,0,5.762052,7.148346,0,10.57626,0,0,0
-0,0,1,5.703783,5.755076,1,34.5,0,1,0
-0,0,1,5.703783,5.755076,1,34.5,0,1,0
-0,0,1,5.703783,5.755076,1,34.5,0,1,0
-0,0,1,5.703783,5.755076,1,34.5,0,1,0
-0,0,1,5.703783,5.755076,1,34.5,0,1,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,5.703783,5.755076,1,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-6,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,5.342525,5.061929,1,34.5,0,1,0
-6,0,1,5.342525,5.061929,1,34.5,0,1,0
-5,0,1,5.342525,5.061929,1,34.5,0,1,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,6.9,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-3,0,1,0,6.160541,0,3.4,1,0,0
-2,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,.1442925,10.57626,1,0,0
-0,0,1,0,6.160541,.1442925,10.57626,1,0,0
-0,0,1,0,6.160541,.1442925,10.57626,1,0,0
-1,3.258096,0,6.54002,7.926314,0,20.7,1,0,0
-4,3.258096,0,6.54002,7.926314,0,20.7,1,0,0
-1,3.258096,0,6.54002,7.926314,0,20.7,1,0,0
-0,3.258096,0,6.54002,7.926314,0,10.57626,0,0,0
-0,3.258096,0,6.54002,7.926314,0,10.57626,0,0,0
-0,3.258096,0,6.54002,7.926314,0,10.57626,0,0,0
-0,3.258096,0,6.54002,7.926314,0,10.3,1,0,0
-0,3.258096,0,6.54002,7.926314,0,10.3,1,0,0
-0,3.258096,0,6.54002,7.926314,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-2,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,1,10.57626,0,1,0
-0,0,1,6.109248,6.160541,1,10.57626,0,1,0
-0,0,1,6.109248,6.160541,1,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,4.564348,0,5.655992,4.646413,0,10.57626,0,0,0
-2,4.564348,0,5.655992,4.646413,0,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,0,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,0,0,0,0,0
-0,4.564348,0,5.655992,4.646413,0,0,0,0,0
-0,4.564348,0,5.655992,4.646413,0,0,0,0,0
-1,4.564348,0,5.655992,4.646413,0,34.5,0,0,0
-5,4.564348,0,5.655992,4.646413,0,34.5,0,0,0
-0,4.564348,0,5.655992,4.646413,0,34.5,0,0,0
-4,4.564348,0,5.655992,4.646413,1,27.6,1,0,0
-2,4.564348,0,5.655992,4.646413,1,27.6,1,0,0
-0,4.564348,0,5.655992,4.646413,1,27.6,1,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,4.564348,0,5.655992,4.646413,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,0,6.160541,1,34.5,0,0,1
-0,0,1,0,6.160541,1,34.5,0,0,1
-1,0,1,0,6.160541,1,34.5,0,0,1
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-1,0,1,0,6.160541,1,6.9,0,0,1
-2,0,1,0,6.160541,1,6.9,0,0,1
-1,0,1,0,6.160541,1,6.9,0,0,1
-5,4.564348,0,6.460843,6.512136,0,6.9,1,0,0
-0,4.564348,0,6.460843,6.512136,0,6.9,1,0,0
-0,4.564348,0,6.460843,6.512136,0,6.9,1,0,0
-0,3.931826,0,6.462249,7.155396,0,3.4,0,0,0
-1,3.931826,0,6.462249,7.155396,0,3.4,0,0,0
-0,3.931826,0,6.462249,7.155396,0,3.4,0,0,0
-40,0,0,5.315371,0,0,17.2,1,0,0
-12,0,0,5.315371,0,0,17.2,1,0,0
-9,0,0,5.315371,0,0,17.2,1,0,0
-9,0,0,5.315371,0,0,17.2,1,0,0
-3,0,0,5.315371,0,0,17.2,1,0,0
-3,0,0,5.315371,0,0,6.9,0,0,0
-0,0,0,5.315371,0,0,6.9,0,0,0
-0,0,0,5.315371,0,0,6.9,0,0,0
-3,0,0,5.315371,0,0,6.9,0,0,0
-6,0,0,5.315371,0,0,6.9,0,0,0
-3,0,0,6.100677,0,0,10.3,1,0,0
-2,0,0,6.100677,0,0,10.3,1,0,0
-1,0,0,6.100677,0,0,10.3,1,0,0
-1,0,0,6.100677,0,0,10.3,1,0,0
-0,0,0,6.100677,0,0,10.3,1,0,0
-2,0,0,6.100677,0,0,6.9,1,0,0
-0,0,0,6.100677,0,0,6.9,1,0,0
-0,0,0,6.100677,0,0,6.9,1,0,0
-0,0,0,6.100677,0,0,6.9,1,0,0
-1,0,0,6.100677,0,0,6.9,1,0,0
-0,0,0,6.100677,0,0,10.57626,1,0,0
-0,0,0,6.100677,0,0,10.57626,1,0,0
-1,0,0,6.100677,0,0,10.57626,1,0,0
-0,0,0,6.100677,0,0,10.57626,1,0,0
-2,0,0,6.100677,0,0,10.57626,1,0,0
-1,0,0,6.100677,0,0,17.2,1,0,0
-5,0,0,6.100677,0,0,17.2,1,0,0
-1,0,0,6.100677,0,0,17.2,1,0,0
-1,0,0,6.100677,0,0,17.2,1,0,0
-2,0,0,6.100677,0,0,17.2,1,0,0
-0,0,0,6.100677,0,0,20.7,0,1,0
-5,0,0,6.100677,0,0,20.7,0,1,0
-1,0,0,6.100677,0,0,20.7,0,1,0
-1,0,0,6.100677,0,0,20.7,0,1,0
-1,0,0,6.100677,0,0,20.7,0,1,0
-2,0,0,6.100677,0,0,6.9,1,0,0
-2,0,0,6.100677,0,0,6.9,1,0,0
-5,0,0,6.100677,0,0,6.9,1,0,0
-2,0,0,6.100677,0,0,6.9,1,0,0
-4,0,0,6.100677,0,0,6.9,1,0,0
-2,3.258096,0,6.507277,7.893572,0,6.9,0,1,0
-1,3.258096,0,6.507277,7.893572,0,6.9,0,1,0
-0,3.258096,0,6.507277,7.893572,0,6.9,0,1,0
-0,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-2,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-3,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-1,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-0,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-2,3.258096,0,6.507277,7.893572,.1442925,10.57626,1,0,0
-2,3.258096,0,6.507277,7.893572,0,10.3,0,1,0
-0,3.258096,0,6.507277,7.893572,0,10.3,0,1,0
-1,3.258096,0,6.507277,7.893572,0,10.3,0,1,0
-9,3.258096,0,5.156178,6.542472,0,3.4,1,0,0
-5,3.258096,0,5.156178,6.542472,0,3.4,1,0,0
-4,3.258096,0,5.156178,6.542472,0,3.4,1,0,0
-0,3.258096,0,5.156178,6.542472,0,6.9,0,0,0
-0,3.258096,0,5.156178,6.542472,0,6.9,0,0,0
-0,3.258096,0,5.156178,6.542472,0,6.9,0,0,0
-3,3.258096,0,5.156178,6.542472,1,24.1,0,1,0
-4,3.258096,0,5.156178,6.542472,1,24.1,0,1,0
-5,3.258096,0,5.156178,6.542472,1,24.1,0,1,0
-4,3.258096,0,5.156178,6.542472,0,6.9,1,0,0
-0,3.258096,0,5.156178,6.542472,0,6.9,1,0,0
-1,3.258096,0,5.156178,6.542472,0,6.9,1,0,0
-1,3.258096,0,5.156178,6.542472,1,17.2,0,0,0
-1,3.258096,0,5.156178,6.542472,1,17.2,0,0,0
-2,3.258096,0,5.156178,6.542472,1,17.2,0,0,0
-0,4.564348,0,0,6.679335,0,6.9,1,0,0
-0,4.564348,0,0,6.679335,0,6.9,1,0,0
-0,4.564348,0,0,6.679335,0,6.9,1,0,0
-0,4.564348,0,0,6.679335,0,17.2,0,1,0
-0,4.564348,0,0,6.679335,0,17.2,0,1,0
-0,4.564348,0,0,6.679335,0,17.2,0,1,0
-0,4.564348,0,0,6.679335,0,10.57626,0,0,0
-0,4.564348,0,0,6.679335,0,10.57626,0,0,0
-0,4.564348,0,0,6.679335,0,10.57626,0,0,0
-2,4.564348,0,5.857933,5.909226,0,3.4,1,0,0
-1,4.564348,0,5.857933,5.909226,1,10.57626,1,0,0
-2,4.564348,0,5.857933,5.909226,0,10.57626,1,0,0
-3,4.564348,0,5.857933,5.909226,1,10.3,1,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-6,0,0,3.401197,0,1,6.9,0,0,1
-8,0,0,3.401197,0,1,6.9,0,0,1
-3,0,0,3.401197,0,1,6.9,0,0,1
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-3,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,13.8,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-1,0,0,0,0,0,0,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-3,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-2,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-16,0,1,6.109248,6.160541,0,10.3,1,0,0
-12,0,1,6.109248,6.160541,0,10.3,1,0,0
-5,3.258096,0,6.401171,7.787465,0,6.9,1,0,0
-1,3.258096,0,6.401171,7.787465,0,6.9,1,0,0
-1,3.258096,0,6.401171,7.787465,0,6.9,1,0,0
-0,3.258096,0,6.401171,7.787465,0,17.2,1,0,0
-0,3.258096,0,6.401171,7.787465,0,17.2,1,0,0
-0,3.258096,0,6.401171,7.787465,0,17.2,1,0,0
-0,3.258096,0,6.401171,7.787465,0,20.7,1,0,0
-1,3.258096,0,6.401171,7.787465,0,20.7,1,0,0
-3,3.258096,0,6.401171,7.787465,0,20.7,1,0,0
-11,0,0,5.030438,0,1,6.9,1,0,0
-11,0,0,5.030438,0,1,6.9,1,0,0
-9,0,0,5.030438,0,1,6.9,1,0,0
-7,0,0,5.030438,0,1,6.9,1,0,0
-2,0,0,5.030438,0,1,6.9,1,0,0
-0,0,1,5.010635,6.160541,0,0,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,0,1,0
-3,0,1,5.010635,6.160541,0,10.57626,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,1,13.8,1,0,0
-29,0,1,5.010635,6.160541,1,13.8,1,0,0
-0,0,1,5.010635,6.160541,1,13.8,1,0,0
-0,0,1,5.010635,6.160541,0,17.2,0,0,0
-0,0,1,5.010635,6.160541,0,17.2,0,0,0
-0,0,1,5.010635,6.160541,0,17.2,0,0,0
-0,0,1,5.010635,6.160541,0,20.7,1,0,0
-6,0,1,5.010635,6.160541,0,20.7,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-2,0,1,5.010635,5.755076,1,10.3,1,0,0
-0,0,1,5.010635,5.755076,1,10.3,1,0,0
-8,0,1,5.010635,5.755076,1,10.3,1,0,0
-0,0,1,5.010635,5.755076,0,0,0,0,0
-5,0,1,5.010635,5.755076,0,0,0,0,0
-1,0,1,5.010635,5.755076,0,0,0,0,0
-12,0,0,0,0,0,13.8,0,0,0
-8,0,0,0,0,0,13.8,0,0,0
-8,0,0,0,0,0,13.8,0,0,0
-8,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-8,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-6,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-6,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,0,0,5.482637,0,0,0,1,0,0
-1,0,0,5.482637,0,0,0,1,0,0
-2,0,0,5.482637,0,0,0,1,0,0
-1,0,1,6.109248,6.160541,1,31,0,1,0
-2,0,1,6.109248,6.160541,1,31,0,1,0
-7,0,1,6.109248,6.160541,1,31,0,1,0
-1,0,1,6.109248,6.160541,1,31,0,1,0
-2,0,1,6.109248,6.160541,1,31,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,0,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-1,0,1,6.109248,6.160541,0,10.3,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-1,0,1,6.109248,6.160541,0,10.3,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-1,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,1,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,0,27.6,0,0,0
-0,3.258096,0,6.620073,8.006368,0,27.6,0,0,0
-0,3.258096,0,6.620073,8.006368,0,27.6,0,0,0
-0,0,1,0,6.160541,0,3.4,0,1,0
-0,0,1,0,6.160541,0,3.4,0,1,0
-0,0,1,0,6.160541,0,3.4,0,1,0
-0,0,1,0,6.160541,0,6.9,0,1,0
-1,0,1,0,6.160541,0,6.9,0,1,0
-1,0,1,0,6.160541,0,6.9,0,1,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,4.564348,0,6.461468,6.512762,1,24.1,1,0,0
-1,4.564348,0,6.461468,6.512762,1,24.1,1,0,0
-0,4.564348,0,6.461468,6.512762,1,24.1,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,3.4,1,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,4.564348,0,6.461468,6.512762,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,0,4.822859,0,.1442925,10.57626,0,0,0
-0,0,0,4.822859,0,.1442925,10.57626,0,0,0
-3,0,0,4.822859,0,.1442925,10.57626,0,0,0
-0,0,0,4.822859,0,0,10.3,0,0,0
-1,0,0,4.822859,0,0,10.3,0,0,0
-9,0,0,4.822859,0,0,10.3,0,0,0
-7,0,0,5.042134,0,0,17.2,0,0,1
-9,0,0,5.042134,0,0,17.2,0,0,1
-5,0,0,5.042134,0,0,17.2,0,0,1
-3,0,0,5.042134,0,0,10.3,1,0,0
-2,0,0,5.042134,0,0,10.3,1,0,0
-0,0,0,5.042134,0,0,10.3,1,0,0
-3,0,0,5.042134,0,0,13.8,0,1,0
-1,0,0,5.042134,0,0,13.8,0,1,0
-3,0,0,5.042134,0,0,13.8,0,1,0
-2,0,0,5.042134,0,0,13.8,1,0,0
-6,0,0,5.042134,0,0,13.8,1,0,0
-4,0,0,5.042134,0,0,13.8,1,0,0
-7,0,0,5.042134,0,0,10.57626,1,0,0
-5,0,0,5.042134,0,0,10.57626,1,0,0
-4,0,0,5.042134,0,0,10.57626,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-4,0,0,0,0,0,13.8,1,0,0
-10,0,0,0,0,0,13.8,1,0,0
-10,0,0,0,0,0,13.8,1,0,0
-9,0,0,0,0,0,13.8,1,0,0
-7,0,0,0,0,0,17.2,1,0,0
-2,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,17.2,1,0,0
-6,0,0,0,0,0,17.2,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-5,0,0,0,0,0,13.8,1,0,0
-6,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,17.2,1,0,0
-0,0,0,0,0,0,17.2,1,0,0
-1,0,0,0,0,0,17.2,1,0,0
-2,3.258096,0,0,8.006368,0,6.9,1,0,0
-1,3.258096,0,0,8.006368,0,6.9,1,0,0
-2,3.258096,0,0,8.006368,0,6.9,1,0,0
-5,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-15,0,0,0,0,0,20.7,0,0,0
-6,0,0,0,0,0,20.7,0,0,0
-6,0,0,0,0,0,20.7,0,0,0
-11,0,0,0,0,0,20.7,0,0,0
-8,0,0,0,0,0,20.7,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-7,0,1,0,6.160541,0,13.8,1,0,0
-1,0,1,0,6.160541,0,13.8,1,0,0
-2,0,1,0,6.160541,0,13.8,1,0,0
-4,0,1,0,6.160541,0,13.8,1,0,0
-10,0,1,0,6.160541,0,13.8,1,0,0
-2,0,1,0,6.160541,0,3.4,1,0,0
-1,0,1,0,6.160541,0,3.4,1,0,0
-1,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-3,0,1,0,6.160541,0,3.4,1,0,0
-4,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-2,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-2,0,1,0,6.160541,0,10.57626,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-1,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-4,0,1,6.268187,5.755076,1,37.9,0,0,1
-7,0,1,6.268187,5.755076,1,37.9,0,0,1
-29,0,1,6.268187,5.755076,1,37.9,0,0,1
-5,0,1,6.268187,5.755076,1,37.9,0,0,1
-5,0,1,6.268187,5.755076,1,27.6,0,0,1
-3,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-3,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-1,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-3,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-4,3.931826,0,6.907755,7.600903,1,10.3,1,0,0
-2,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-4,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-12,0,0,5.632071,0,1,10.3,0,0,1
-0,0,0,5.632071,0,1,10.3,0,0,1
-2,0,0,5.632071,0,1,10.3,0,0,1
-0,0,0,5.632071,0,1,10.3,0,0,1
-11,0,0,5.632071,0,1,10.3,0,0,1
-5,0,0,0,0,0,6.9,0,1,0
-2,0,0,0,0,0,6.9,0,1,0
-3,0,0,0,0,0,6.9,0,1,0
-0,0,0,0,0,0,6.9,0,1,0
-3,0,0,0,0,0,6.9,0,1,0
-3,0,0,5.632071,0,0,3.4,0,1,0
-2,0,0,5.632071,0,0,3.4,0,1,0
-2,0,0,5.632071,0,0,3.4,0,1,0
-0,0,0,5.632071,0,0,3.4,0,1,0
-2,0,0,5.632071,0,0,3.4,0,1,0
-0,0,0,5.632071,0,0,3.4,0,1,0
-0,0,0,5.632071,0,0,3.4,0,1,0
-0,0,0,5.632071,0,0,3.4,0,1,0
-0,0,0,5.632071,0,0,3.4,0,1,0
-3,0,0,5.632071,0,0,3.4,0,1,0
-4,0,0,5.632071,0,0,10.57626,0,1,0
-3,0,0,5.632071,0,0,10.57626,0,1,0
-2,0,0,5.632071,0,0,10.57626,0,1,0
-0,0,0,5.632071,0,0,10.57626,0,1,0
-2,0,0,5.632071,0,0,10.57626,0,1,0
-4,0,0,5.632071,0,0,13.8,0,1,0
-1,0,0,5.632071,0,0,13.8,0,1,0
-10,0,0,5.632071,0,0,13.8,0,1,0
-3,0,0,5.632071,0,0,13.8,0,1,0
-8,0,0,5.632071,0,0,13.8,0,1,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-10,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-4,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-2,4.564348,0,6.907755,6.959049,0,20.7,0,1,0
-8,4.564348,0,6.907755,6.959049,0,20.7,0,1,0
-7,4.564348,0,6.907755,6.959049,0,20.7,0,1,0
-0,0,1,0,5.755076,0,10.57626,1,0,0
-1,0,1,0,5.755076,0,10.57626,1,0,0
-0,0,1,0,5.755076,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,0,5.755076,0,3.4,1,0,0
-0,0,1,0,5.755076,0,3.4,1,0,0
-0,0,1,0,5.755076,0,3.4,1,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,3.258096,0,3.039749,4.426044,0,10.57626,1,0,0
-0,3.258096,0,3.039749,4.426044,0,10.57626,1,0,0
-1,3.258096,0,3.039749,4.426044,0,10.57626,1,0,0
-0,3.258096,0,3.039749,4.426044,0,10.57626,0,1,0
-0,3.258096,0,3.039749,4.426044,0,10.57626,0,1,0
-0,3.258096,0,3.039749,4.426044,0,10.57626,0,1,0
-0,3.258096,0,3.039749,4.426044,1,0,1,0,0
-0,3.258096,0,3.039749,4.426044,1,0,1,0,0
-0,3.258096,0,3.039749,4.426044,1,0,1,0,0
-0,3.258096,0,3.039749,4.426044,1,34.5,0,0,1
-1,3.258096,0,3.039749,4.426044,1,34.5,0,0,1
-8,3.258096,0,3.039749,4.426044,1,34.5,0,0,1
-1,0,1,5.941959,5.755076,1,6.9,0,1,0
-0,0,1,5.941959,5.755076,1,6.9,0,1,0
-0,0,1,5.941959,5.755076,1,6.9,0,1,0
-0,0,1,5.941959,5.755076,1,6.9,0,1,0
-0,0,1,5.941959,5.755076,1,6.9,0,1,0
-1,0,1,5.941959,5.755076,0,3.4,1,0,0
-3,0,1,5.941959,5.755076,0,3.4,1,0,0
-1,0,1,5.941959,5.755076,0,3.4,1,0,0
-1,0,1,5.941959,5.755076,0,3.4,1,0,0
-2,0,1,5.941959,5.755076,0,3.4,1,0,0
-10,0,0,5.126342,0,0,3.4,1,0,0
-6,0,0,5.126342,0,0,3.4,1,0,0
-3,0,0,5.126342,0,0,3.4,1,0,0
-1,0,0,5.126342,0,0,10.57626,1,0,0
-0,0,0,5.126342,0,0,10.57626,1,0,0
-0,0,0,5.126342,0,0,10.57626,1,0,0
-2,0,0,5.126342,0,0,10.57626,1,0,0
-0,0,0,5.126342,0,0,10.57626,1,0,0
-0,0,0,5.126342,0,0,10.57626,1,0,0
-0,0,0,5.126342,0,0,10.3,0,1,0
-0,0,0,5.126342,0,0,10.3,0,1,0
-3,0,0,5.126342,0,0,10.3,0,1,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-1,0,1,5.010635,6.160541,0,10.3,0,0,0
-1,0,1,5.010635,6.160541,0,10.3,0,0,0
-0,0,1,5.010635,6.160541,0,10.3,0,0,0
-1,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,6.9,0,0,0
-0,0,1,5.010635,6.160541,0,6.9,0,0,0
-1,0,1,5.010635,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,13.8,1,0,0
-2,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,13.8,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-3,0,1,6.109248,6.160541,0,6.9,0,0,0
-6,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-0,0,1,6.109248,6.160541,0,27.6,1,0,0
-1,0,0,5.259992,0,0,6.9,1,0,0
-0,0,0,5.259992,0,0,6.9,1,0,0
-8,0,0,5.259992,0,0,6.9,1,0,0
-0,0,0,5.259992,0,0,10.3,1,0,0
-5,0,0,5.259992,0,0,10.3,1,0,0
-1,0,0,5.259992,0,0,10.3,1,0,0
-1,0,0,5.259992,0,0,10.57626,1,0,0
-1,0,0,5.259992,0,0,10.57626,1,0,0
-0,0,0,5.259992,0,0,10.57626,1,0,0
-3,0,0,5.259992,0,0,10.57626,1,0,0
-1,0,0,5.259992,0,0,10.57626,1,0,0
-0,0,0,5.259992,0,0,10.57626,1,0,0
-1,0,1,5.703783,5.755076,0,6.9,1,0,0
-0,0,1,5.703783,5.755076,0,6.9,1,0,0
-3,0,1,5.703783,5.755076,0,6.9,1,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-3,0,0,0,0,0,3.4,0,0,0
-1,3.931826,0,6.07507,6.560323,0,17.2,0,1,0
-1,3.931826,0,6.07507,6.560323,0,17.2,0,1,0
-3,3.931826,0,6.07507,6.560323,0,17.2,0,1,0
-0,3.931826,0,6.07507,6.560323,0,3.4,0,0,1
-7,3.931826,0,6.07507,6.560323,0,3.4,0,0,1
-2,3.931826,0,6.07507,6.560323,0,3.4,0,0,1
-5,0,1,6.109248,6.160541,0,10.57626,0,1,0
-8,0,1,6.109248,6.160541,0,0,0,0,0
-3,0,1,6.109248,6.160541,0,0,1,0,0
-3,0,1,6.109248,6.160541,1,24.1,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,1,6.9,0,0,0
-0,3.258096,0,7.163699,8.006368,0,0,0,0,0
-0,3.258096,0,7.163699,8.006368,0,0,0,0,0
-0,3.258096,0,7.163699,8.006368,0,0,0,0,0
-0,3.258096,0,7.163699,8.006368,0,0,0,0,0
-0,3.258096,0,7.163699,8.006368,0,0,0,0,0
-1,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-1,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-2,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-5,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-1,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-2,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-0,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-0,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-2,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-0,3.258096,0,7.163699,8.006368,0,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,0,17.2,0,0,0
-12,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-9,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-5,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,17.2,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-13,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-4,0,0,4.457134,0,0,24.1,1,0,0
-4,0,0,4.457134,0,0,24.1,1,0,0
-1,0,0,4.457134,0,0,24.1,1,0,0
-1,0,0,4.457134,0,0,3.4,0,0,0
-1,0,0,4.457134,0,0,3.4,0,0,0
-0,0,0,4.457134,0,0,3.4,0,0,0
-2,0,0,4.457134,0,0,27.6,1,0,0
-1,0,0,4.457134,0,0,27.6,1,0,0
-2,0,0,4.457134,0,0,27.6,1,0,0
-2,0,1,6.708963,6.160541,0,20.7,0,0,0
-1,0,1,6.708963,6.160541,0,20.7,0,0,0
-3,0,1,6.708963,6.160541,0,20.7,0,0,0
-3,0,1,6.708963,6.160541,0,10.57626,0,0,0
-1,0,1,6.708963,6.160541,0,10.57626,0,0,0
-3,0,1,6.708963,6.160541,0,10.57626,0,0,0
-3,0,1,6.708963,6.160541,0,10.3,0,0,0
-0,0,1,6.708963,6.160541,0,10.3,0,0,0
-3,0,1,6.708963,6.160541,0,10.3,0,0,0
-7,0,1,6.708963,6.160541,0,10.57626,0,0,0
-3,0,1,6.708963,6.160541,0,10.57626,0,0,0
-3,0,1,6.708963,6.160541,0,10.57626,0,0,0
-4,0,0,6.370175,0,1,31,0,0,1
-0,0,0,6.370175,0,1,31,0,0,1
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-9,0,1,6.109248,6.160541,0,10.57626,1,0,0
-13,0,1,6.109248,6.160541,0,10.57626,1,0,0
-4,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,0,0,0,0,6.9,0,1,0
-1,0,0,0,0,0,6.9,0,1,0
-4,0,0,0,0,0,6.9,0,1,0
-0,0,0,0,0,0,6.9,0,1,0
-1,0,0,0,0,0,10.57626,0,1,0
-1,0,0,0,0,0,10.57626,0,1,0
-3,0,0,0,0,0,10.57626,0,1,0
-3,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-11,0,0,0,0,1,17.2,0,1,0
-21,0,0,0,0,1,17.2,0,1,0
-19,0,0,0,0,1,17.2,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-5,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-4,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,0,6.9,0,1,0
-3,0,0,0,0,0,6.9,0,1,0
-3,0,0,0,0,0,6.9,0,1,0
-4,0,0,0,0,0,6.9,0,1,0
-8,0,0,0,0,1,10.3,0,0,0
-4,0,0,0,0,1,10.3,0,0,0
-0,0,0,0,0,1,10.3,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-3,0,1,5.010635,6.160541,0,3.4,1,0,0
-0,0,1,5.010635,6.160541,0,3.4,1,0,0
-0,0,1,5.010635,6.160541,0,3.4,1,0,0
-0,0,1,5.010635,6.160541,0,3.4,0,0,1
-0,0,1,5.010635,6.160541,0,3.4,0,0,1
-2,0,1,5.010635,6.160541,0,3.4,0,0,1
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-2,3.931826,0,6.276455,6.969603,0,0,0,0,0
-0,3.931826,0,6.276455,6.969603,0,0,0,0,0
-2,3.931826,0,6.276455,6.969603,0,0,0,0,0
-1,3.931826,0,6.276455,6.969603,0,0,0,0,0
-2,3.931826,0,6.276455,6.969603,0,0,0,0,0
-4,0,0,5.377498,0,0,17.2,0,0,1
-10,0,0,5.377498,0,0,17.2,0,0,1
-4,0,0,5.377498,0,0,17.2,0,0,1
-1,0,0,5.377498,0,0,27.6,1,0,0
-3,0,0,5.377498,0,0,27.6,1,0,0
-3,0,0,5.377498,0,0,27.6,1,0,0
-2,0,0,5.377498,0,0,10.57626,0,0,1
-6,0,0,5.377498,0,0,10.57626,0,0,1
-6,0,0,5.377498,0,0,10.57626,0,0,1
-0,0,0,5.377498,0,0,0,0,0,0
-0,0,0,5.377498,0,0,0,0,0,0
-3,0,0,5.377498,0,0,3.4,1,0,0
-7,0,0,5.377498,0,0,3.4,1,0,0
-1,0,0,5.377498,0,0,3.4,1,0,0
-2,0,0,5.377498,0,0,10.57626,0,0,0
-1,0,0,5.377498,0,0,10.57626,0,0,0
-1,0,0,5.377498,0,0,10.57626,0,0,0
-2,0,0,5.377498,0,0,3.4,1,0,0
-0,0,0,5.377498,0,0,3.4,1,0,0
-0,0,0,5.377498,0,0,3.4,1,0,0
-4,4.564348,0,5.898527,5.94982,1,17.2,0,0,1
-0,4.564348,0,5.898527,5.94982,1,17.2,0,0,1
-1,4.564348,0,5.898527,5.94982,1,17.2,0,0,1
-2,0,0,0,0,1,0,0,1,0
-1,0,0,0,0,1,0,0,1,0
-1,0,0,0,0,1,0,0,1,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,3.4,0,1,0
-0,0,0,0,0,0,3.4,0,1,0
-3,0,0,0,0,0,3.4,0,1,0
-1,0,0,0,0,0,10.57626,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-9,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-1,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-0,0,1,5.163185,6.160541,.1442925,10.57626,1,0,0
-7,0,1,5.163185,6.160541,0,20.7,1,0,0
-1,0,1,5.163185,6.160541,0,20.7,1,0,0
-0,0,1,5.163185,6.160541,0,20.7,1,0,0
-0,0,1,5.163185,6.160541,0,13.8,1,0,0
-0,0,1,5.163185,6.160541,0,13.8,1,0,0
-0,0,1,5.163185,6.160541,0,13.8,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,1,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,0,1,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,0,1,0,0
-1,3.258096,0,6.620073,8.006368,.1442925,0,1,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,0,1,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,0,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,1,3.4,0,1,0
-0,3.258096,0,6.620073,8.006368,1,3.4,0,1,0
-1,3.258096,0,6.620073,8.006368,1,3.4,0,1,0
-0,3.258096,0,6.620073,8.006368,1,3.4,0,1,0
-0,3.258096,0,6.620073,8.006368,1,3.4,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-2,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-2,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-1,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-0,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-0,4.564348,0,6.436151,5.741653,1,13.8,1,0,0
-0,4.564348,0,6.436151,5.741653,1,13.8,1,0,0
-0,4.564348,0,6.436151,5.741653,1,13.8,1,0,0
-0,4.564348,0,6.436151,5.741653,0,0,0,1,0
-0,4.564348,0,6.436151,5.741653,0,0,0,1,0
-0,4.564348,0,6.436151,5.741653,0,0,0,1,0
-0,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-0,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-0,4.564348,0,6.436151,5.741653,0,10.57626,0,1,0
-0,4.564348,0,6.436151,5.741653,0,6.9,0,1,0
-1,4.564348,0,6.436151,5.741653,0,6.9,0,1,0
-0,4.564348,0,6.436151,5.741653,0,6.9,0,1,0
-0,4.564348,0,6.55108,6.602374,1,27.6,0,0,0
-1,4.564348,0,6.55108,6.602374,1,27.6,0,0,0
-0,4.564348,0,6.55108,6.602374,1,27.6,0,0,0
-4,4.564348,0,6.55108,6.602374,1,27.6,0,0,0
-2,4.564348,0,6.55108,6.602374,1,27.6,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-1,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-1,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-1,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,1,6.9,0,0,0
-0,4.564348,0,6.55108,6.602374,1,6.9,0,0,0
-0,4.564348,0,6.55108,6.602374,1,6.9,0,0,0
-1,4.564348,0,6.55108,6.602374,1,6.9,0,0,0
-0,4.564348,0,6.55108,6.602374,1,6.9,0,0,0
-1,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-2,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-4,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-1,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-2,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-0,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-2,4.564348,0,6.55108,6.602374,0,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-5,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,0,0
-3,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-3,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,0,0,0
-0,0,1,6.115627,6.160541,.1442925,10.57626,1,0,0
-1,0,1,6.115627,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.115627,6.160541,.1442925,10.57626,1,0,0
-3,0,1,6.115627,6.160541,0,10.3,1,0,0
-0,0,1,6.115627,6.160541,0,10.3,1,0,0
-0,0,1,6.115627,6.160541,0,10.3,1,0,0
-20,0,1,6.115627,6.160541,1,3.4,1,0,0
-0,0,1,6.115627,6.160541,1,3.4,1,0,0
-2,0,1,6.115627,6.160541,1,3.4,1,0,0
-1,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-0,0,1,6.109248,6.160541,1,17.2,1,0,0
-4,0,0,0,0,0,10.57626,1,0,0
-8,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-5,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-3,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-1,0,0,0,0,0,6.9,1,0,0
-8,0,0,0,0,1,13.8,1,0,0
-2,0,0,0,0,1,13.8,1,0,0
-6,0,0,0,0,1,13.8,1,0,0
-5,0,0,0,0,1,13.8,1,0,0
-4,0,0,0,0,1,13.8,1,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-8,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-12,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-21,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-18,3.258096,0,6.620073,8.006368,1,20.7,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-7,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-15,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-14,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,0,0,5.827062,0,0,20.7,1,0,0
-2,0,0,5.827062,0,0,20.7,1,0,0
-1,0,0,5.827062,0,0,20.7,1,0,0
-4,0,0,5.827062,0,0,20.7,1,0,0
-6,0,0,5.827062,0,0,20.7,1,0,0
-7,0,0,5.827062,0,0,20.7,1,0,0
-5,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-4,0,0,0,0,0,17.2,0,0,0
-3,0,0,0,0,0,17.2,0,0,0
-2,0,0,0,0,0,17.2,0,0,0
-4,0,0,5.567428,0,0,10.3,1,0,0
-0,0,0,5.567428,0,0,10.3,1,0,0
-2,0,0,5.567428,0,0,10.3,1,0,0
-8,0,0,5.567428,0,0,20.7,1,0,0
-8,0,0,5.567428,0,0,20.7,1,0,0
-7,0,0,5.567428,0,0,20.7,1,0,0
-2,0,1,5.703783,5.755076,1,37.9,0,1,0
-2,0,1,5.703783,5.755076,1,37.9,0,1,0
-5,0,1,5.703783,5.755076,1,37.9,0,1,0
-1,0,1,5.703783,5.755076,1,24.1,1,0,0
-9,0,1,5.703783,5.755076,1,24.1,1,0,0
-8,0,1,5.703783,5.755076,1,24.1,1,0,0
-2,3.258096,0,6.343529,7.729823,0,13.8,1,0,0
-1,3.258096,0,6.343529,7.729823,0,13.8,1,0,0
-0,3.258096,0,6.343529,7.729823,0,13.8,1,0,0
-0,3.258096,0,6.343529,7.729823,0,10.57626,1,0,0
-0,3.258096,0,6.343529,7.729823,0,10.57626,1,0,0
-0,3.258096,0,6.343529,7.729823,0,10.57626,1,0,0
-4,3.258096,0,6.343529,7.729823,0,3.4,1,0,0
-2,3.258096,0,6.343529,7.729823,0,3.4,1,0,0
-4,3.258096,0,6.343529,7.729823,0,3.4,1,0,0
-0,0,0,5.259992,0,0,6.9,0,0,0
-3,0,0,5.259992,0,0,6.9,0,0,0
-2,0,0,5.259992,0,0,6.9,0,0,0
-1,0,0,5.259992,0,0,10.3,1,0,0
-8,0,0,5.259992,0,0,10.3,1,0,0
-5,0,0,5.259992,0,0,10.3,1,0,0
-1,0,0,5.029653,0,0,3.4,0,1,0
-0,0,0,5.029653,0,0,3.4,0,1,0
-1,0,0,5.029653,0,0,3.4,0,1,0
-2,0,0,5.029653,0,0,3.4,0,1,0
-0,0,0,5.029653,0,0,3.4,0,1,0
-1,0,0,5.029653,0,1,10.3,0,0,1
-15,0,0,5.029653,0,1,10.3,0,0,1
-2,0,0,5.029653,0,1,10.3,0,0,1
-1,0,0,5.029653,0,1,10.3,0,0,1
-2,0,0,5.029653,0,1,10.3,0,0,1
-0,0,0,5.029653,0,0,13.8,0,0,1
-1,0,0,5.029653,0,0,13.8,0,0,1
-0,0,0,5.029653,0,0,13.8,0,0,1
-0,0,0,5.029653,0,0,13.8,0,0,1
-0,0,0,5.029653,0,0,13.8,0,0,1
-6,0,1,6.767757,6.160541,1,24.1,0,1,0
-22,0,1,6.767757,6.160541,1,24.1,0,1,0
-13,0,1,6.767757,6.160541,1,24.1,0,1,0
-2,0,1,6.767757,6.160541,0,0,0,0,0
-0,0,1,6.767757,6.160541,0,0,0,0,0
-0,0,1,6.767757,6.160541,0,0,0,0,0
-2,0,1,6.767757,6.160541,0,10.57626,0,0,0
-4,0,1,6.767757,6.160541,0,10.57626,0,0,0
-1,0,1,6.767757,6.160541,0,10.57626,0,0,0
-0,0,0,5.259992,0,1,20.7,1,0,0
-3,0,0,5.259992,0,1,20.7,1,0,0
-0,0,0,5.259992,0,1,20.7,1,0,0
-1,0,0,5.259992,0,0,6.9,0,0,0
-0,0,0,5.259992,0,0,6.9,0,0,0
-1,0,0,5.259992,0,0,6.9,0,0,0
-6,0,0,5.259992,0,1,20.7,1,0,0
-4,0,0,5.259992,0,1,20.7,1,0,0
-3,0,0,5.259992,0,1,20.7,1,0,0
-2,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-8,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-1,0,0,5.259992,0,0,10.57626,1,0,0
-2,0,0,5.259992,0,0,10.57626,1,0,0
-3,0,0,5.259992,0,0,10.57626,1,0,0
-1,0,0,5.259992,0,0,3.4,1,0,0
-1,0,0,5.259992,0,0,3.4,1,0,0
-1,0,0,5.259992,0,0,3.4,1,0,0
-1,0,0,5.259992,0,0,3.4,1,0,0
-4,0,0,5.259992,0,0,3.4,1,0,0
-2,0,0,5.259992,0,0,3.4,1,0,0
-4,0,1,5.703783,5.755076,0,10.3,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-6,0,1,5.703783,5.755076,0,10.3,1,0,0
-0,0,1,5.703783,5.755076,0,0,0,0,0
-0,0,1,5.703783,5.755076,0,0,0,0,0
-1,0,1,5.703783,5.755076,0,0,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.3,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.3,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.3,0,0,0
-1,3.258096,0,5.204007,6.590301,0,10.3,0,0,0
-2,3.258096,0,5.204007,6.590301,0,10.3,0,0,0
-2,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-2,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-0,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-5,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-3,3.258096,0,5.204007,6.590301,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-4,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-3,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-4,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,1,37.9,0,1,0
-4,0,1,6.109248,6.160541,1,37.9,0,1,0
-0,0,1,6.109248,6.160541,1,37.9,0,1,0
-2,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,0
-1,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,6.109248,6.160541,0,13.8,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,4.564348,0,0,5.928188,0,6.9,1,0,0
-0,4.564348,0,0,5.928188,0,6.9,1,0,0
-0,4.564348,0,0,5.928188,0,6.9,1,0,0
-0,4.564348,0,6.709304,6.760598,0,3.4,1,0,0
-0,4.564348,0,6.709304,6.760598,0,3.4,1,0,0
-0,4.564348,0,6.709304,6.760598,0,3.4,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,13.8,1,0,0
-0,4.564348,0,6.709304,6.760598,0,13.8,1,0,0
-0,4.564348,0,6.709304,6.760598,0,13.8,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-0,4.564348,0,6.709304,6.760598,0,10.57626,1,0,0
-2,4.564348,0,4.393214,4.444507,0,10.3,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.3,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.3,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,1,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,0,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,0,0
-0,4.564348,0,4.393214,4.444507,0,10.57626,0,0,0
-0,3.931826,0,0,7.600903,.1442925,10.57626,0,0,0
-14,3.931826,0,0,7.600903,.1442925,10.57626,0,0,0
-9,3.931826,0,0,7.600903,.1442925,10.57626,0,0,0
-0,3.931826,0,0,7.600903,.1442925,10.57626,0,0,0
-2,3.931826,0,0,7.600903,.1442925,10.57626,0,0,0
-13,0,0,0,0,0,3.4,1,0,0
-18,0,0,0,0,0,3.4,1,0,0
-16,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-2,0,0,0,0,0,6.9,1,0,0
-7,0,0,0,0,0,6.9,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-4,4.564348,0,5.283711,5.335004,1,24.1,0,0,1
-7,4.564348,0,5.283711,5.335004,1,24.1,0,0,1
-6,4.564348,0,5.283711,5.335004,1,24.1,0,0,1
-4,4.564348,0,5.283711,5.335004,1,24.1,0,0,1
-7,4.564348,0,5.283711,5.335004,1,24.1,0,0,1
-0,4.564348,0,5.283711,5.335004,0,20.7,0,0,1
-2,4.564348,0,5.283711,5.335004,0,20.7,0,0,1
-1,0,0,0,0,1,17.2,0,1,0
-0,0,0,0,0,1,17.2,0,1,0
-0,0,0,0,0,1,17.2,0,1,0
-0,0,0,0,0,1,17.2,0,1,0
-1,0,0,0,0,1,17.2,0,1,0
-6,0,0,0,0,0,24.1,1,0,0
-4,0,0,0,0,0,24.1,1,0,0
-6,0,0,0,0,0,24.1,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,1,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,1,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,1,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,1,0
-1,3.258096,0,6.620073,8.006368,0,13.8,0,1,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,1,0
-4,3.258096,0,6.620073,8.006368,0,13.8,0,1,0
-1,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-2,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,.1442925,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,31,0,1,0
-8,3.258096,0,6.620073,8.006368,0,31,0,1,0
-4,3.258096,0,6.620073,8.006368,0,31,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-5,3.258096,0,6.620073,8.006368,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,4.564348,0,6.907755,6.959049,1,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-2,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-5,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-4,0,1,6.109248,6.160541,1,13.8,0,1,0
-18,0,1,6.109248,6.160541,1,13.8,0,1,0
-6,0,1,6.109248,6.160541,1,13.8,0,1,0
-3,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-4,0,0,0,0,0,10.3,0,0,0
-3,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-7,0,0,0,0,0,6.9,0,0,0
-7,0,0,0,0,0,10.57626,0,0,0
-12,0,0,0,0,0,10.57626,0,0,0
-7,0,0,0,0,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,0,0,1,0
-0,0,1,0,6.160541,0,0,0,1,0
-0,0,1,0,6.160541,0,0,0,1,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,10.57626,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,13.8,1,0,0
-0,0,1,0,6.160541,0,3.4,0,0,0
-0,0,1,0,6.160541,0,3.4,0,0,0
-0,0,1,0,6.160541,0,3.4,0,0,0
-19,0,0,5.444493,0,1,37.9,0,1,0
-15,0,0,5.444493,0,1,37.9,0,1,0
-17,0,0,5.444493,0,1,37.9,0,1,0
-28,0,0,5.444493,0,1,20.7,1,0,0
-32,0,0,5.444493,0,1,20.7,1,0,0
-0,0,0,3.178054,0,0,0,0,0,0
-0,0,0,3.178054,0,0,0,0,0,0
-0,0,0,3.178054,0,0,0,0,0,0
-5,0,0,3.178054,0,1,27.6,1,0,0
-7,0,0,3.178054,0,1,27.6,1,0,0
-6,0,0,3.178054,0,1,27.6,1,0,0
-0,3.258096,0,6.021509,6.918102,1,24.1,0,1,0
-0,3.258096,0,6.021509,6.918102,1,24.1,0,1,0
-0,3.258096,0,6.021509,6.918102,1,24.1,0,1,0
-0,3.931826,0,5.753049,6.446196,0,24.1,0,1,0
-1,3.931826,0,5.753049,6.446196,0,24.1,0,1,0
-0,3.931826,0,5.753049,6.446196,0,24.1,0,1,0
-0,3.931826,0,5.753049,6.446196,1,17.2,1,0,0
-0,3.931826,0,5.753049,6.446196,1,17.2,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-8,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-5,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-7,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-16,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-5,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-8,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-6,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-7,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-2,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-6,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-3,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-1,3.258096,0,6.620073,8.006368,1,24.1,1,0,0
-5,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,0,0,5.285232,0,0,6.9,0,0,0
-1,0,0,5.285232,0,0,6.9,0,0,0
-2,0,0,5.285232,0,0,6.9,0,0,0
-1,0,0,5.285232,0,0,10.3,0,0,0
-3,0,0,5.285232,0,0,10.3,0,0,0
-2,0,0,5.285232,0,0,10.3,0,0,0
-0,0,0,5.285232,0,0,10.3,0,0,0
-0,0,0,5.285232,0,0,10.3,0,0,0
-1,0,0,5.285232,0,0,10.3,0,0,0
-2,0,0,4.97231,0,0,17.2,1,0,0
-0,0,0,4.97231,0,0,17.2,1,0,0
-0,0,0,4.97231,0,0,17.2,1,0,0
-0,0,0,4.97231,0,0,10.57626,0,0,0
-1,0,0,4.97231,0,0,10.57626,0,0,0
-0,0,0,4.97231,0,0,10.57626,0,0,0
-2,0,0,4.97231,0,0,31,1,0,0
-2,0,0,4.97231,0,0,31,1,0,0
-1,0,0,4.97231,0,0,31,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,0,1,0
-7,0,0,0,0,0,10.3,0,1,0
-13,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,0,0,1,0
-0,0,0,0,0,0,0,0,1,0
-0,0,0,0,0,0,0,0,1,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,1,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,1,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,1,0,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,0,1,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-1,0,0,4.668708,0,1,17.2,1,0,0
-3,0,0,4.668708,0,1,17.2,1,0,0
-2,0,0,4.668708,0,1,17.2,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-2,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,13.8,1,0,0
-1,0,0,4.668708,0,0,13.8,1,0,0
-1,0,0,4.668708,0,0,13.8,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-3,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-2,0,0,4.668708,0,0,13.8,1,0,0
-3,0,0,4.668708,0,0,13.8,1,0,0
-4,0,0,4.668708,0,0,13.8,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-1,0,0,4.668708,0,0,10.57626,1,0,0
-0,0,0,4.668708,0,0,10.57626,1,0,0
-1,0,0,4.668708,0,0,3.4,1,0,0
-1,0,0,4.668708,0,0,3.4,1,0,0
-0,0,0,4.668708,0,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-1,4.564348,0,6.907755,6.959049,0,0,0,0,0
-2,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-4,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-3,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-8,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-5,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-0,0,1,6.109248,6.160541,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-2,3.258096,0,6.620073,8.006368,1,10.3,1,0,0
-10,4.564348,0,6.50354,6.569703,0,17.2,1,0,0
-10,4.564348,0,6.50354,6.569703,0,17.2,1,0,0
-5,4.564348,0,6.50354,6.569703,0,17.2,1,0,0
-4,4.564348,0,6.50354,6.569703,0,17.2,1,0,0
-2,4.564348,0,6.50354,6.569703,0,17.2,1,0,0
-0,4.564348,0,6.50354,6.569703,0,6.9,0,0,0
-0,4.564348,0,6.50354,6.569703,0,6.9,0,0,0
-0,4.564348,0,6.50354,6.569703,0,6.9,0,0,0
-1,4.564348,0,6.50354,6.569703,0,6.9,0,0,0
-0,4.564348,0,6.50354,6.569703,0,6.9,0,0,0
-0,0,1,5.857819,5.755076,0,0,0,0,0
-0,0,1,5.857819,5.755076,0,0,0,0,0
-0,0,1,5.857819,5.755076,0,0,0,0,0
-1,0,1,5.857819,5.755076,0,0,0,0,0
-0,0,1,5.857819,5.755076,0,0,0,0,0
-0,0,1,5.857819,5.755076,0,13.8,0,0,0
-2,0,1,5.857819,5.755076,0,13.8,0,0,0
-1,0,1,5.857819,5.755076,0,13.8,0,0,0
-1,0,1,5.857819,5.755076,0,13.8,0,0,0
-0,0,1,5.857819,5.755076,0,13.8,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,1,0,0
-4,0,1,6.109248,6.160541,1,10.3,1,0,0
-7,0,1,6.109248,6.160541,1,10.3,1,0,0
-2,0,1,6.109248,6.160541,0,10.3,0,1,0
-3,0,1,6.109248,6.160541,0,10.3,0,1,0
-1,0,1,6.109248,6.160541,0,10.3,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-0,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,1,10.57626,0,0,1
-2,0,1,6.109248,6.160541,1,10.57626,0,0,1
-0,0,1,6.109248,6.160541,1,10.57626,0,0,1
-0,0,1,6.109248,6.160541,1,6.9,1,0,0
-0,0,1,6.109248,6.160541,1,6.9,1,0,0
-3,0,1,6.109248,6.160541,1,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,0,0,1
-0,0,1,6.109248,6.160541,0,13.8,0,0,1
-0,0,1,6.109248,6.160541,0,13.8,0,0,1
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-0,0,1,6.109248,6.160541,0,6.9,0,1,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,1
-1,0,1,6.109248,6.160541,0,6.9,0,0,1
-0,0,1,6.109248,6.160541,0,6.9,0,0,1
-1,0,1,6.109248,6.160541,0,10.57626,0,0,1
-0,0,1,6.109248,6.160541,0,10.57626,0,0,1
-0,0,1,6.109248,6.160541,0,10.57626,0,0,1
-0,0,1,5.615461,5.061929,0,0,0,1,0
-0,0,1,5.615461,5.061929,0,0,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-2,3.258096,0,6.094923,7.481217,0,10.57626,0,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-2,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-3,3.258096,0,6.094923,7.481217,0,10.3,0,1,0
-4,3.258096,0,6.094923,7.481217,0,10.3,0,1,0
-12,3.258096,0,6.094923,7.481217,0,10.3,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-1,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-2,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-3,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-1,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,0,1,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-2,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-0,3.258096,0,6.094923,7.481217,0,10.57626,1,0,0
-4,3.258096,0,6.094923,7.481217,1,10.3,1,0,0
-3,3.258096,0,6.094923,7.481217,1,10.3,1,0,0
-3,3.258096,0,6.094923,7.481217,1,10.3,1,0,0
-0,0,0,5.986854,0,0,0,1,0,0
-1,0,0,5.986854,0,0,0,1,0,0
-0,0,0,5.986854,0,0,0,1,0,0
-12,0,0,5.743003,0,1,6.9,0,1,0
-5,0,0,5.743003,0,1,6.9,0,1,0
-7,0,0,5.743003,0,1,6.9,0,1,0
-1,0,0,5.743003,0,0,10.57626,1,0,0
-3,0,0,5.743003,0,0,10.57626,1,0,0
-1,0,0,5.743003,0,0,10.57626,1,0,0
-1,0,0,6.148468,0,0,6.9,1,0,0
-0,0,0,6.148468,0,0,6.9,1,0,0
-10,0,0,6.148468,0,0,6.9,1,0,0
-0,0,0,5.743003,0,0,0,1,0,0
-2,0,0,5.743003,0,0,0,1,0,0
-3,0,0,5.743003,0,0,0,1,0,0
-0,0,0,5.743003,0,1,6.9,0,1,0
-0,0,0,5.743003,0,1,6.9,0,1,0
-1,0,0,5.743003,0,1,6.9,0,1,0
-9,0,1,6.701961,5.755076,1,20.7,0,0,1
-14,0,1,6.701961,5.755076,1,20.7,0,0,1
-2,0,1,6.701961,5.755076,1,20.7,0,0,1
-1,0,1,6.701961,5.755076,0,6.9,0,1,0
-1,0,1,6.701961,5.755076,0,6.9,0,1,0
-2,0,1,6.701961,5.755076,0,6.9,0,1,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,1,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,1,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,1,0
-1,3.258096,0,6.476973,7.863267,0,10.57626,0,1,0
-4,3.258096,0,6.476973,7.863267,0,10.57626,0,1,0
-1,3.258096,0,6.476973,7.863267,0,3.4,0,0,0
-0,3.258096,0,6.476973,7.863267,0,3.4,0,0,0
-0,3.258096,0,6.476973,7.863267,0,3.4,0,0,0
-1,3.258096,0,6.476973,7.863267,0,3.4,0,0,0
-2,3.258096,0,6.476973,7.863267,0,3.4,0,0,0
-2,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-0,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-1,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-3,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-8,3.258096,0,6.476973,7.863267,0,10.3,0,0,0
-0,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-1,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-2,4.564348,0,6.907755,6.959049,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-22,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-3,0,1,6.109248,6.160541,0,6.9,1,0,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,1,0,0
-3,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-6,0,1,0,5.755076,1,37.9,0,0,1
-3,0,1,0,5.755076,1,37.9,0,0,1
-7,0,1,0,5.755076,1,37.9,0,0,1
-2,0,1,0,5.755076,1,20.7,1,0,0
-5,0,1,0,5.755076,1,20.7,1,0,0
-1,0,1,0,5.755076,1,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,3.4,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-5,0,1,6.109248,6.160541,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,17.2,1,0,0
-3,0,1,6.109248,6.160541,0,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,1,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,3.258096,0,6.603266,7.989561,0,3.4,0,0,0
-0,3.258096,0,6.603266,7.989561,0,3.4,0,0,0
-1,3.258096,0,6.603266,7.989561,0,3.4,0,0,0
-2,3.258096,0,6.603266,7.989561,0,3.4,0,0,0
-0,3.258096,0,6.603266,7.989561,0,3.4,0,0,0
-1,3.258096,0,6.603266,7.989561,0,0,1,0,0
-3,3.258096,0,6.603266,7.989561,0,0,1,0,0
-3,3.258096,0,6.603266,7.989561,0,0,1,0,0
-5,3.258096,0,6.603266,7.989561,0,0,1,0,0
-1,3.258096,0,6.603266,7.989561,0,0,1,0,0
-1,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-0,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-1,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-1,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-1,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-0,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-1,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-2,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-3,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-2,3.258096,0,6.603266,7.989561,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-1,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,0,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.3,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-2,3.258096,0,6.408595,6.293789,0,17.2,0,1,0
-1,3.258096,0,6.408595,6.293789,0,17.2,0,1,0
-2,3.258096,0,6.408595,6.293789,0,17.2,0,1,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,1,0,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,1,0,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,1,0,0
-0,4.564348,0,5.933306,5.929029,0,3.4,0,0,0
-0,4.564348,0,5.933306,5.929029,0,3.4,0,0,0
-0,4.564348,0,5.933306,5.929029,0,3.4,0,0,0
-0,4.564348,0,5.933306,5.929029,0,6.9,0,0,0
-0,4.564348,0,5.933306,5.929029,0,6.9,0,0,0
-0,4.564348,0,5.933306,5.929029,0,6.9,0,0,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,0,0,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,0,0,0
-0,4.564348,0,5.933306,5.929029,0,10.57626,0,0,0
-3,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-5,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,1,6.9,0,0,1
-0,4.564348,0,6.907755,6.959049,1,6.9,0,0,1
-1,4.564348,0,6.907755,6.959049,1,6.9,0,0,1
-1,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-2,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-0,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-7,4.564348,0,6.907755,6.959049,0,17.2,0,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-4,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-3,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,1,10.3,1,0,0
-0,0,0,0,0,1,10.3,1,0,0
-0,0,0,0,0,1,10.3,1,0,0
-3,0,0,0,0,1,17.2,1,0,0
-3,0,0,0,0,1,17.2,1,0,0
-2,0,0,0,0,1,17.2,1,0,0
-0,3.258096,0,6.262826,7.649121,0,20.7,0,0,0
-0,3.258096,0,6.262826,7.649121,0,20.7,0,0,0
-0,3.258096,0,6.262826,7.649121,0,20.7,0,0,0
-0,3.258096,0,6.262826,7.649121,1,27.6,0,0,0
-4,3.258096,0,6.262826,7.649121,1,27.6,0,0,0
-0,3.258096,0,6.262826,7.649121,1,27.6,0,0,0
-0,3.258096,0,6.262826,7.649121,0,10.57626,0,0,0
-0,3.258096,0,6.262826,7.649121,0,10.57626,0,0,0
-0,3.258096,0,6.262826,7.649121,0,10.57626,0,0,0
-6,0,0,5.72984,0,1,20.7,0,1,0
-5,0,0,5.72984,0,1,20.7,0,1,0
-4,0,0,5.72984,0,1,20.7,0,1,0
-9,0,0,5.72984,0,1,20.7,0,1,0
-8,0,0,5.72984,0,1,20.7,0,1,0
-7,0,0,5.72984,0,1,24.1,1,0,0
-12,0,0,5.72984,0,1,24.1,1,0,0
-6,0,0,5.72984,0,1,24.1,1,0,0
-5,0,0,5.72984,0,0,10.57626,1,0,0
-6,0,0,5.72984,0,0,10.57626,1,0,0
-4,0,0,5.72984,0,0,10.57626,1,0,0
-4,0,0,5.72984,0,0,10.57626,1,0,0
-1,0,0,5.72984,0,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-3,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-1,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.57626,1,0,0
-0,0,1,5.010635,6.160541,0,10.3,0,0,0
-4,0,1,5.010635,6.160541,0,10.3,0,0,0
-5,0,1,5.010635,6.160541,0,10.3,0,0,0
-4,0,1,5.010635,6.160541,0,6.9,0,0,0
-0,0,1,5.010635,6.160541,0,6.9,0,0,0
-3,0,1,5.010635,6.160541,0,6.9,0,0,0
-13,0,0,0,0,0,10.57626,1,0,0
-7,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-6,0,0,0,0,0,10.3,1,0,0
-9,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-20,0,0,0,0,0,10.57626,1,0,0
-7,0,0,0,0,0,10.57626,1,0,0
-4,0,0,0,0,0,10.57626,1,0,0
-3,3.258096,0,6.620073,8.006368,0,24.1,1,0,0
-1,3.258096,0,6.620073,8.006368,0,24.1,1,0,0
-1,3.258096,0,6.620073,8.006368,0,24.1,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-0,0,1,5.703783,6.160541,0,10.3,0,1,0
-1,0,1,5.703783,6.160541,0,10.3,0,1,0
-9,0,1,5.703783,6.160541,0,10.3,0,1,0
-0,0,1,5.703783,6.160541,0,10.3,1,0,0
-0,0,1,5.703783,6.160541,0,10.3,1,0,0
-0,0,1,5.703783,6.160541,0,10.3,1,0,0
-10,0,0,5.560835,0,1,31,0,1,0
-8,0,0,5.560835,0,1,31,0,1,0
-10,0,0,5.560835,0,1,31,0,1,0
-7,0,0,5.560835,0,1,31,0,1,0
-9,0,0,5.560835,0,1,31,0,1,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-1,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,6.9,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-1,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-6,4.564348,0,6.907755,6.959049,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-9,0,1,5.593967,5.061929,1,37.9,0,1,0
-3,0,1,5.593967,5.061929,1,37.9,0,1,0
-5,0,1,5.593967,5.061929,1,37.9,0,1,0
-13,0,0,5.766538,0,1,31,1,0,0
-8,0,0,5.766538,0,1,31,1,0,0
-15,0,0,5.766538,0,1,31,1,0,0
-10,0,0,5.766538,0,1,27.6,0,1,0
-6,0,0,5.766538,0,1,27.6,0,1,0
-14,0,0,5.766538,0,1,27.6,0,1,0
-13,0,1,6.109248,6.160541,0,27.6,1,0,0
-5,0,1,6.109248,6.160541,0,27.6,1,0,0
-4,0,1,6.109248,6.160541,0,27.6,1,0,0
-3,0,1,6.109248,6.160541,0,10.3,1,0,0
-1,0,1,6.109248,6.160541,0,10.3,1,0,0
-4,0,1,6.109248,6.160541,0,10.3,1,0,0
-17,0,1,6.109248,6.160541,0,10.57626,1,0,0
-10,0,1,6.109248,6.160541,0,10.57626,1,0,0
-11,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-1,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,0,1,6.109248,6.160541,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-4,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-8,0,1,6.109248,6.160541,0,10.3,0,0,0
-3,0,1,6.109248,6.160541,0,10.3,0,0,0
-6,0,1,6.109248,6.160541,0,10.3,0,0,0
-9,0,1,6.109248,6.160541,0,10.3,0,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-4,0,1,6.109248,6.160541,0,17.2,1,0,0
-6,0,1,6.109248,6.160541,0,17.2,1,0,0
-11,0,1,6.109248,6.160541,0,17.2,1,0,0
-8,0,1,6.109248,6.160541,0,17.2,1,0,0
-3,0,0,0,0,1,24.1,0,0,1
-1,0,0,0,0,1,10.57626,0,1,0
-13,3.258096,0,6.238403,6.915723,1,37.9,0,0,1
-0,3.931826,0,0,7.37149,0,10.3,0,1,0
-3,3.931826,0,0,7.37149,0,10.3,0,1,0
-2,3.931826,0,0,7.37149,0,10.3,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,1,0
-3,3.931826,0,0,7.37149,1,10.57626,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,1,0
-0,3.931826,0,0,7.37149,1,10.57626,0,0,0
-0,3.931826,0,0,7.37149,1,10.57626,0,0,0
-1,3.931826,0,0,7.37149,1,10.57626,0,0,0
-0,3.931826,0,0,7.37149,1,10.57626,0,0,0
-0,3.931826,0,0,7.37149,1,10.57626,0,0,0
-0,3.931826,0,0,7.37149,1,10.57626,0,0,0
-1,3.931826,0,0,7.37149,0,3.4,0,1,0
-7,3.931826,0,0,7.37149,0,3.4,0,1,0
-2,3.931826,0,0,7.37149,0,3.4,0,1,0
-0,0,0,0,0,.1442925,3.4,0,0,0
-0,0,0,0,0,.1442925,3.4,0,0,0
-0,0,0,0,0,.1442925,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,10.3,0,1,0
-0,0,0,0,0,0,3.4,0,1,0
-2,0,0,4.094345,0,0,10.3,0,0,0
-3,0,0,4.094345,0,0,10.3,0,0,0
-4,0,0,4.094345,0,0,10.3,0,0,0
-4,0,0,4.094345,0,0,10.3,0,0,0
-1,0,0,4.094345,0,0,10.3,0,0,0
-3,0,0,4.094345,0,0,17.2,0,0,0
-2,0,0,4.094345,0,0,17.2,0,0,0
-2,0,0,4.094345,0,0,17.2,0,0,0
-1,0,0,4.094345,0,0,17.2,0,0,0
-7,0,0,4.094345,0,0,17.2,0,0,0
-0,0,0,5.094976,0,0,0,0,0,0
-0,0,0,5.094976,0,0,3.4,0,0,0
-1,0,0,5.094976,0,0,3.4,0,0,0
-0,0,0,5.094976,0,0,3.4,0,0,0
-0,0,0,5.094976,0,0,10.57626,0,0,0
-0,0,0,5.094976,0,0,10.57626,0,0,0
-0,0,0,5.094976,0,0,10.57626,0,0,0
-0,0,0,5.094976,0,0,10.57626,0,0,0
-1,0,0,5.094976,0,0,10.57626,0,0,0
-0,0,0,5.094976,0,0,10.57626,0,0,0
-0,0,0,5.094976,0,0,0,1,0,0
-1,0,0,5.094976,0,0,0,1,0,0
-0,0,0,5.094976,0,0,0,1,0,0
-0,0,0,5.094976,0,0,13.8,1,0,0
-1,0,0,5.094976,0,0,13.8,1,0,0
-0,0,0,5.094976,0,0,13.8,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-6,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-3,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,13.8,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-5,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,1,0,0
-4,0,0,5.145166,0,0,6.9,0,0,0
-1,0,0,5.145166,0,0,6.9,0,0,0
-7,0,0,5.145166,0,0,6.9,0,0,0
-4,0,1,5.703783,5.755076,1,17.2,1,0,0
-3,0,1,5.703783,5.755076,1,17.2,1,0,0
-2,0,1,5.703783,5.755076,1,24.1,1,0,0
-7,0,1,5.703783,5.755076,1,24.1,1,0,0
-9,0,1,5.703783,5.755076,1,24.1,1,0,0
-0,3.931826,0,6.907755,7.600903,1,3.4,0,0,1
-0,3.931826,0,6.907755,7.600903,1,3.4,0,0,1
-0,3.931826,0,6.907755,7.600903,1,3.4,0,0,1
-3,3.931826,0,6.907755,7.600903,1,20.7,0,0,1
-2,3.931826,0,6.907755,7.600903,1,20.7,0,0,1
-2,3.931826,0,6.907755,7.600903,1,20.7,0,0,1
-12,0,0,5.046517,0,0,20.7,1,0,0
-21,0,0,5.046517,0,0,20.7,1,0,0
-16,0,0,5.046517,0,0,20.7,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-0,4.564348,0,6.907755,6.959049,0,6.9,1,0,0
-1,4.564348,0,6.907755,6.959049,0,27.6,0,1,0
-9,4.564348,0,6.907755,6.959049,0,27.6,0,1,0
-1,4.564348,0,6.907755,6.959049,0,27.6,0,1,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,0,6.9,0,1,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,1
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,1
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,1
-0,0,0,5.436556,0,0,3.4,1,0,0
-1,0,0,5.436556,0,0,3.4,1,0,0
-2,0,0,5.436556,0,0,3.4,1,0,0
-3,0,0,5.436556,0,0,13.8,1,0,0
-3,0,0,5.436556,0,0,13.8,1,0,0
-8,0,0,5.436556,0,0,13.8,1,0,0
-6,0,0,5.436556,0,0,10.57626,1,0,0
-1,0,0,5.436556,0,0,10.57626,1,0,0
-2,0,0,5.436556,0,0,10.57626,1,0,0
-4,3.258096,0,6.579251,7.965546,0,6.9,1,0,0
-2,3.258096,0,6.579251,7.965546,0,6.9,1,0,0
-1,3.258096,0,6.579251,7.965546,0,6.9,1,0,0
-6,3.258096,0,6.579251,7.965546,0,27.6,0,1,0
-5,3.258096,0,6.579251,7.965546,0,27.6,0,1,0
-1,3.258096,0,6.579251,7.965546,0,27.6,0,1,0
-2,3.258096,0,6.579251,7.965546,0,3.4,0,1,0
-1,3.258096,0,6.579251,7.965546,0,3.4,0,1,0
-0,3.258096,0,6.579251,7.965546,0,3.4,0,1,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,1,17.2,0,1,0
-0,3.931826,0,6.907755,7.600903,1,17.2,0,1,0
-0,3.931826,0,6.907755,7.600903,1,17.2,0,1,0
-0,3.931826,0,6.907755,7.600903,1,17.2,0,1,0
-0,3.931826,0,6.907755,7.600903,1,17.2,0,1,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-1,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-4,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-4,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-3,3.931826,0,6.907755,7.600903,0,10.3,0,1,0
-1,0,0,5.943534,0,0,17.2,1,0,0
-2,0,0,5.943534,0,0,17.2,1,0,0
-0,0,0,5.943534,0,0,17.2,1,0,0
-0,0,0,0,0,0,27.6,0,1,0
-9,0,0,0,0,0,27.6,0,1,0
-13,0,0,0,0,0,27.6,0,1,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,1,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,1,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,0,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,0,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,0,0
-1,4.564348,0,5.160491,5.467394,0,3.4,0,0,0
-0,4.564348,0,5.160491,5.467394,0,3.4,0,0,0
-0,4.564348,0,5.160491,5.467394,0,10.57626,0,0,0
-0,4.564348,0,5.160491,5.467394,0,10.57626,0,0,0
-0,4.564348,0,0,4.420108,0,0,1,0,0
-0,4.564348,0,0,4.420108,0,0,1,0,0
-0,4.564348,0,0,4.420108,0,0,1,0,0
-0,4.564348,0,0,4.420108,0,0,1,0,0
-0,4.564348,0,0,4.420108,0,0,1,0,0
-9,0,0,5.757007,0,0,17.2,1,0,0
-6,0,0,5.757007,0,0,17.2,1,0,0
-3,0,0,5.757007,0,0,17.2,1,0,0
-5,0,0,5.757007,0,0,10.57626,1,0,0
-2,0,0,5.757007,0,0,10.57626,1,0,0
-2,0,0,5.757007,0,0,10.57626,1,0,0
-9,0,0,5.757007,0,0,17.2,1,0,0
-2,0,0,5.757007,0,0,17.2,1,0,0
-2,0,0,5.757007,0,0,17.2,1,0,0
-2,0,0,5.757007,0,0,10.57626,1,0,0
-3,0,0,5.757007,0,0,10.57626,1,0,0
-2,0,0,5.757007,0,0,10.57626,1,0,0
-2,0,0,5.470083,0,1,24.1,1,0,0
-26,0,0,5.470083,0,1,24.1,1,0,0
-11,0,0,5.470083,0,1,24.1,1,0,0
-8,0,0,5.470083,0,0,10.57626,1,0,0
-14,0,0,5.470083,0,0,10.57626,1,0,0
-5,0,0,5.470083,0,0,10.57626,1,0,0
-34,0,0,5.470083,0,1,44.8,1,0,0
-48,0,0,5.470083,0,1,44.8,1,0,0
-31,0,0,5.470083,0,1,44.8,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,0,0,1,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-0,0,1,0,6.160541,0,3.4,1,0,0
-4,0,1,0,6.160541,0,3.4,1,0,0
-0,4.564348,0,0,6.448223,0,3.4,0,0,0
-0,4.564348,0,0,6.448223,0,3.4,0,0,0
-0,4.564348,0,0,6.448223,0,3.4,0,0,0
-0,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-1,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,0,20.7,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.3,0,0,0
-1,0,1,6.109248,6.160541,0,10.3,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-5,0,1,6.109248,6.160541,0,27.6,0,0,0
-1,0,1,6.109248,6.160541,0,27.6,0,0,0
-1,3.258096,0,5.269815,6.656109,0,24.1,0,0,0
-2,3.258096,0,5.269815,6.656109,0,24.1,0,0,0
-3,3.258096,0,5.269815,6.656109,0,24.1,0,0,0
-0,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-4,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-4,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-6,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-1,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-2,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,1,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-8,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-4,3.258096,0,6.620073,8.006368,1,13.8,1,0,0
-5,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.620073,8.006368,0,17.2,1,0,0
-5,0,1,5.703783,5.755076,0,0,1,0,0
-4,0,1,5.703783,5.755076,0,0,1,0,0
-1,0,1,5.703783,5.755076,0,0,1,0,0
-0,0,1,5.703783,5.755076,0,0,1,0,0
-1,0,1,5.703783,5.755076,0,0,1,0,0
-10,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-1,0,1,5.703783,5.755076,0,3.4,0,0,0
-0,0,1,5.703783,5.755076,0,3.4,0,0,0
-5,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-4,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-6,4.564348,0,6.907755,6.959049,1,3.4,1,0,0
-13,4.564348,0,6.907755,6.959049,0,41.4,0,1,0
-11,4.564348,0,6.907755,6.959049,0,41.4,0,1,0
-13,4.564348,0,6.907755,6.959049,0,41.4,0,1,0
-1,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-6,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-0,0,1,6.109248,6.160541,0,13.8,1,0,0
-3,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,20.7,1,0,0
-0,0,1,6.109248,6.160541,0,20.7,1,0,0
-1,0,1,6.109248,6.160541,0,20.7,1,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,0,0,0,1,13.8,0,0,0
-0,0,0,0,0,1,13.8,0,0,0
-4,0,0,0,0,1,13.8,0,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-7,0,0,0,0,0,6.9,0,0,0
-5,0,0,0,0,0,6.9,0,0,0
-10,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-4,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,3.4,1,0,0
-0,0,0,6.050488,0,.1442925,10.3,0,1,0
-0,0,0,6.050488,0,.1442925,10.3,0,1,0
-0,0,0,6.050488,0,.1442925,10.3,0,1,0
-9,0,0,6.050488,0,.1442925,10.3,0,1,0
-3,0,0,6.050488,0,.1442925,10.3,0,1,0
-5,0,0,6.050488,0,0,10.3,1,0,0
-0,0,0,6.050488,0,0,10.3,1,0,0
-0,0,0,6.050488,0,0,10.3,1,0,0
-14,0,0,6.050488,0,0,10.3,1,0,0
-7,0,0,6.050488,0,0,10.3,1,0,0
-5,0,0,5.88566,0,1,27.6,1,0,0
-0,0,0,5.88566,0,1,27.6,1,0,0
-2,0,0,5.88566,0,1,27.6,1,0,0
-2,0,0,5.88566,0,0,10.57626,0,0,0
-0,0,0,5.88566,0,0,10.57626,0,0,0
-0,0,0,5.88566,0,0,10.57626,0,0,0
-4,0,0,5.88566,0,0,10.57626,1,0,0
-1,0,0,5.88566,0,0,10.57626,1,0,0
-0,0,0,5.88566,0,0,10.57626,1,0,0
-1,0,0,5.88566,0,0,10.3,0,0,0
-2,0,0,5.88566,0,0,10.3,0,0,0
-3,0,0,5.88566,0,0,10.3,0,0,0
-5,0,0,5.88566,0,1,10.57626,1,0,0
-0,0,0,5.88566,0,1,10.57626,1,0,0
-0,0,0,5.88566,0,1,10.57626,1,0,0
-0,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-7,0,0,0,0,1,17.2,0,0,1
-18,0,0,0,0,1,17.2,0,0,1
-0,0,1,5.703783,6.160541,1,6.9,0,0,0
-0,0,1,5.703783,6.160541,1,6.9,0,0,0
-1,0,1,5.703783,6.160541,1,6.9,0,0,0
-0,0,1,5.703783,6.160541,0,10.3,0,0,0
-0,0,1,5.703783,6.160541,0,10.3,0,0,0
-0,0,1,5.703783,6.160541,0,10.3,0,0,0
-1,0,1,5.703783,6.160541,0,10.3,1,0,0
-0,0,1,5.703783,6.160541,0,10.3,1,0,0
-0,0,1,5.703783,6.160541,0,10.3,1,0,0
-1,0,0,6.704414,0,0,6.9,0,1,0
-3,0,0,6.704414,0,0,6.9,0,1,0
-0,0,0,6.704414,0,0,6.9,0,1,0
-1,0,0,6.704414,0,0,6.9,0,1,0
-0,0,0,6.704414,0,0,6.9,0,1,0
-1,0,0,6.704414,0,0,10.57626,1,0,0
-0,0,0,6.704414,0,0,10.57626,1,0,0
-2,0,0,6.704414,0,0,10.57626,1,0,0
-1,0,0,6.704414,0,0,10.57626,1,0,0
-1,0,0,6.704414,0,0,10.57626,1,0,0
-11,0,0,6.704414,0,0,10.3,0,1,0
-5,0,0,6.704414,0,0,10.3,0,1,0
-1,0,0,6.704414,0,0,10.3,0,1,0
-5,0,0,6.704414,0,0,10.3,0,1,0
-7,0,0,6.704414,0,0,10.3,0,1,0
-13,0,1,5.703783,5.755076,1,6.9,0,0,0
-3,0,1,5.703783,5.755076,1,6.9,0,0,0
-0,0,1,5.703783,5.755076,1,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,1
-6,0,1,5.703783,5.755076,0,6.9,0,0,1
-6,0,1,5.703783,5.755076,0,6.9,0,0,1
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,1,6.109248,6.160541,0,3.4,1,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,1,0,0
-3,0,1,6.109248,6.160541,0,0,1,0,0
-1,0,1,6.109248,6.160541,0,0,1,0,0
-2,0,1,6.109248,6.160541,0,0,1,0,0
-1,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-2,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-2,3.258096,0,6.620073,8.006368,1,24.1,0,1,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-4,3.258096,0,6.620073,8.006368,0,0,0,0,0
-1,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-2,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-5,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,0,0,5.957701,0,0,6.9,1,0,0
-1,0,0,5.957701,0,0,6.9,1,0,0
-1,0,0,5.957701,0,0,6.9,1,0,0
-0,0,0,5.957701,0,0,6.9,1,0,0
-3,0,0,5.957701,0,0,10.57626,0,0,0
-1,0,0,5.957701,0,0,10.57626,0,0,0
-3,0,0,5.957701,0,0,10.57626,0,0,0
-2,0,0,5.957701,0,0,10.57626,0,0,0
-1,0,0,5.957701,0,0,10.57626,0,0,0
-0,0,0,5.957701,0,0,10.57626,0,0,0
-3,0,0,5.957701,0,0,10.57626,0,0,0
-2,0,0,5.957701,0,0,10.57626,0,0,0
-1,0,0,5.957701,0,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,6.9,1,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,3.931826,0,6.907755,7.600903,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-7,0,1,6.109248,6.160541,1,17.2,1,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-1,0,1,5.703783,5.755076,0,6.9,0,0,0
-2,0,1,5.703783,5.755076,0,6.9,0,0,0
-2,0,1,5.703783,5.755076,0,6.9,0,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-7,0,1,5.703783,5.755076,0,10.3,1,0,0
-0,0,1,5.703783,5.755076,0,10.3,1,0,0
-2,0,0,4.094345,0,0,3.4,0,0,0
-2,0,0,4.094345,0,0,3.4,0,0,0
-1,0,0,4.094345,0,0,3.4,0,0,0
-20,4.564348,0,6.49224,5.781393,0,20.7,1,0,0
-24,4.564348,0,6.49224,5.781393,0,20.7,1,0,0
-17,4.564348,0,6.49224,5.781393,0,20.7,1,0,0
-0,4.564348,0,6.49224,5.781393,0,3.4,1,0,0
-0,4.564348,0,6.49224,5.781393,0,3.4,1,0,0
-0,4.564348,0,6.49224,5.781393,0,3.4,1,0,0
-9,4.564348,0,6.49224,5.781393,0,10.57626,1,0,0
-4,4.564348,0,6.49224,5.781393,0,10.57626,1,0,0
-5,4.564348,0,6.49224,5.781393,0,10.57626,1,0,0
-1,0,0,5.482637,0,1,10.3,1,0,0
-2,0,0,5.482637,0,1,10.3,1,0,0
-2,0,0,5.482637,0,1,10.3,1,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,0,10.57626,1,0,0
-0,3.258096,0,6.055495,7.44179,0,10.57626,1,0,0
-0,3.258096,0,6.055495,7.44179,0,10.57626,1,0,0
-0,3.258096,0,6.055495,7.44179,0,10.57626,1,0,0
-0,3.258096,0,6.055495,7.44179,0,10.57626,1,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,1,0
-2,3.258096,0,6.055495,7.44179,0,10.3,0,0,1
-0,3.258096,0,6.055495,7.44179,0,10.3,0,0,1
-0,3.258096,0,6.055495,7.44179,0,10.3,0,0,1
-0,3.258096,0,6.055495,7.44179,0,10.3,0,0,1
-0,3.258096,0,6.055495,7.44179,0,10.3,0,0,1
-5,3.258096,0,6.055495,7.44179,0,20.7,1,0,0
-1,3.258096,0,6.055495,7.44179,0,20.7,1,0,0
-0,3.258096,0,6.055495,7.44179,0,20.7,1,0,0
-0,3.258096,0,6.055495,7.44179,0,20.7,1,0,0
-1,3.258096,0,6.055495,7.44179,0,20.7,1,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-2,3.258096,0,6.620073,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,1,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,1,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,1,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-0,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-4,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-6,0,0,0,0,0,6.9,0,0,0
-8,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-11,0,0,0,0,0,10.3,0,0,0
-5,0,0,0,0,0,10.57626,0,0,0
-10,0,0,0,0,0,10.57626,0,0,0
-5,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,3.4,0,1,0
-0,0,0,0,0,0,3.4,0,1,0
-2,0,0,0,0,0,3.4,0,1,0
-1,0,0,0,0,0,3.4,1,0,0
-3,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-3,0,0,0,0,0,10.3,0,1,0
-7,0,0,0,0,0,10.3,0,1,0
-4,0,0,0,0,0,10.3,0,1,0
-0,0,1,6.119022,5.755076,0,3.4,0,0,0
-1,0,1,6.119022,5.755076,0,3.4,0,0,0
-0,0,1,6.119022,5.755076,0,3.4,0,0,0
-0,0,1,6.119022,5.755076,0,3.4,0,0,0
-0,0,1,6.119022,5.755076,0,3.4,0,0,0
-1,0,1,6.119022,5.755076,0,6.9,0,0,0
-0,0,1,6.119022,5.755076,0,6.9,0,0,0
-0,0,1,6.119022,5.755076,0,6.9,0,0,0
-1,0,1,6.119022,5.755076,0,6.9,0,0,0
-3,0,1,6.119022,5.755076,0,6.9,0,0,0
-2,0,0,5.285232,0,0,3.4,0,0,0
-6,0,0,5.285232,0,0,3.4,0,0,0
-6,0,0,5.285232,0,0,3.4,0,0,0
-1,0,0,5.285232,0,0,3.4,0,0,0
-8,0,0,5.285232,0,0,3.4,0,0,0
-5,0,0,5.285232,0,0,3.4,0,0,0
-6,0,0,5.285232,0,0,10.57626,0,0,0
-5,0,0,5.285232,0,0,10.57626,0,0,0
-4,0,0,5.285232,0,0,10.57626,0,0,0
-24,0,0,5.285232,0,0,10.3,0,0,0
-12,0,0,5.285232,0,0,10.3,0,0,0
-9,0,0,5.285232,0,0,10.3,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-2,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,1,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-6,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-8,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-5,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-9,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-3,3.258096,0,6.620073,8.006368,0,6.9,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,0,1,6.313548,6.160541,0,6.9,0,0,0
-0,0,1,6.313548,6.160541,0,6.9,0,0,0
-0,0,1,6.313548,6.160541,0,6.9,0,0,0
-11,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-0,4.564348,0,6.907755,6.959049,0,0,0,0,0
-4,4.564348,0,6.907755,6.959049,0,31,0,0,0
-1,4.564348,0,6.907755,6.959049,0,31,0,0,0
-3,4.564348,0,6.907755,6.959049,0,31,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,6.9,0,0,0
-0,3.258096,0,6.067036,7.45333,0,6.9,0,0,0
-0,3.258096,0,6.067036,7.45333,0,6.9,0,0,0
-0,3.258096,0,6.067036,7.45333,0,13.8,0,0,0
-0,3.258096,0,6.067036,7.45333,0,13.8,0,0,0
-7,3.258096,0,6.067036,7.45333,0,13.8,0,0,0
-0,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-3,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-1,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,3.4,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-0,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-1,3.258096,0,6.067036,7.45333,0,10.57626,0,0,0
-6,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-6,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-0,3.258096,0,6.874819,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.874819,8.006368,0,17.2,1,0,0
-4,3.258096,0,6.874819,8.006368,0,17.2,1,0,0
-0,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-3,3.258096,0,6.874819,8.006368,0,3.4,1,0,0
-1,3.258096,0,6.874819,8.006368,1,10.3,1,0,0
-0,3.258096,0,6.874819,8.006368,1,10.3,1,0,0
-7,3.258096,0,6.874819,8.006368,1,10.3,1,0,0
-7,0,0,6.243312,0,0,10.3,1,0,0
-8,0,0,6.243312,0,0,10.3,1,0,0
-8,0,0,6.243312,0,0,10.3,1,0,0
-4,0,0,6.243312,0,0,10.57626,0,0,0
-4,0,0,6.243312,0,0,10.57626,0,0,0
-8,0,0,6.243312,0,0,10.57626,0,0,0
-4,0,0,6.243312,0,0,13.8,0,0,0
-4,0,0,6.243312,0,0,13.8,0,0,0
-0,0,0,6.243312,0,0,13.8,0,0,0
-1,3.258096,0,6.841616,8.006368,1,20.7,1,0,0
-3,3.258096,0,6.841616,8.006368,1,20.7,1,0,0
-1,3.258096,0,6.841616,8.006368,1,20.7,1,0,0
-1,3.258096,0,6.841616,8.006368,1,24.1,1,0,0
-1,3.258096,0,6.841616,8.006368,1,24.1,1,0,0
-4,3.258096,0,6.841616,8.006368,1,24.1,1,0,0
-1,0,0,5.267652,0,0,3.4,0,0,0
-8,0,0,5.267652,0,0,3.4,0,0,0
-4,0,0,5.267652,0,0,3.4,0,0,0
-2,0,0,5.267652,0,0,6.9,0,0,0
-0,0,0,5.267652,0,0,6.9,0,0,0
-0,0,0,5.267652,0,0,6.9,0,0,0
-0,0,0,5.267652,0,.1442925,10.57626,0,0,0
-0,0,0,5.267652,0,.1442925,10.57626,0,0,0
-2,0,0,5.267652,0,.1442925,10.57626,0,0,0
-2,0,0,5.267652,0,.1442925,10.57626,0,0,0
-2,0,0,5.267652,0,.1442925,10.57626,0,0,0
-0,0,0,5.267652,0,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,1,0,0
-0,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-2,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-0,4.564348,0,6.907755,6.959049,1,17.2,1,0,0
-1,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,1,0,0
-2,4.564348,0,6.907755,6.959049,0,24.1,0,0,0
-2,0,0,6.717563,0,0,10.3,0,0,0
-2,0,0,6.717563,0,0,10.3,0,0,0
-5,0,0,6.717563,0,0,10.3,0,0,0
-2,0,0,6.717563,0,0,10.57626,0,0,0
-2,0,0,6.717563,0,0,10.57626,0,0,0
-3,0,0,6.717563,0,0,10.57626,0,0,0
-17,0,0,6.717563,0,0,6.9,0,0,0
-19,0,0,6.717563,0,0,6.9,0,0,0
-20,0,0,6.717563,0,0,6.9,0,0,0
-2,0,0,6.717563,0,0,10.57626,0,0,0
-3,0,0,6.717563,0,0,10.57626,0,0,0
-7,0,0,6.717563,0,0,10.57626,0,0,0
-4,0,0,6.717563,0,0,10.57626,0,0,0
-6,0,0,6.717563,0,0,10.57626,0,0,0
-3,0,0,6.717563,0,0,10.57626,0,0,0
-0,0,1,5.56268,5.061929,0,24.1,0,0,1
-2,0,1,5.56268,5.061929,0,24.1,0,0,1
-1,0,1,5.56268,5.061929,0,24.1,0,0,1
-0,4.564348,0,5.969474,6.020768,0,6.9,0,1,0
-0,4.564348,0,5.969474,6.020768,0,6.9,0,1,0
-2,4.564348,0,5.969474,6.020768,1,20.7,0,1,0
-0,4.564348,0,5.969474,6.020768,1,20.7,0,1,0
-0,4.564348,0,5.969474,6.020768,1,20.7,0,1,0
-0,4.564348,0,6.265776,6.31707,0,20.7,1,0,0
-5,4.564348,0,6.265776,6.31707,0,20.7,1,0,0
-0,4.564348,0,6.265776,6.31707,0,20.7,1,0,0
-6,3.258096,0,6.174827,7.561121,0,10.57626,0,0,0
-4,3.258096,0,6.174827,7.561121,0,10.57626,0,0,0
-8,3.258096,0,6.174827,7.561121,0,10.57626,0,0,0
-6,3.258096,0,6.174827,7.561121,0,10.57626,0,0,0
-11,3.258096,0,6.174827,7.561121,0,10.57626,0,0,0
-6,3.258096,0,6.174827,7.561121,0,10.57626,1,0,0
-9,3.258096,0,6.174827,7.561121,0,10.57626,1,0,0
-9,3.258096,0,6.174827,7.561121,0,10.57626,1,0,0
-3,3.258096,0,6.174827,7.561121,0,10.57626,1,0,0
-3,3.258096,0,6.174827,7.561121,0,10.57626,1,0,0
-1,3.258096,0,6.174827,7.561121,0,17.2,1,0,0
-0,3.258096,0,6.174827,7.561121,0,17.2,1,0,0
-1,3.258096,0,6.174827,7.561121,0,17.2,1,0,0
-3,3.258096,0,6.174827,7.561121,0,17.2,1,0,0
-0,3.258096,0,6.174827,7.561121,0,17.2,1,0,0
-3,3.258096,0,6.174827,7.561121,0,24.1,1,0,0
-2,3.258096,0,6.174827,7.561121,0,24.1,1,0,0
-3,3.258096,0,6.174827,7.561121,0,24.1,1,0,0
-4,3.258096,0,6.174827,7.561121,0,24.1,1,0,0
-1,3.258096,0,6.174827,7.561121,0,24.1,1,0,0
-0,3.258096,0,6.500689,7.886983,1,24.1,0,0,0
-2,3.258096,0,6.500689,7.886983,1,24.1,0,0,0
-2,3.258096,0,6.500689,7.886983,1,24.1,0,0,0
-1,3.258096,0,6.500689,7.886983,1,24.1,0,0,0
-2,3.258096,0,6.500689,7.886983,0,3.4,0,0,0
-0,3.258096,0,6.500689,7.886983,0,3.4,0,0,0
-0,3.258096,0,6.500689,7.886983,0,3.4,0,0,0
-0,3.258096,0,6.500689,7.886983,0,3.4,0,0,0
-0,3.258096,0,6.500689,7.886983,0,3.4,0,0,0
-2,3.258096,0,6.500689,7.886983,0,13.8,0,0,0
-0,3.258096,0,6.500689,7.886983,0,13.8,0,0,0
-1,3.258096,0,6.500689,7.886983,0,13.8,0,0,0
-1,3.258096,0,6.500689,7.886983,0,13.8,0,0,0
-2,3.258096,0,6.500689,7.886983,0,13.8,0,0,0
-0,3.258096,0,6.500689,7.886983,0,6.9,0,0,0
-0,3.258096,0,6.500689,7.886983,0,6.9,0,0,0
-0,3.258096,0,6.500689,7.886983,0,6.9,0,0,0
-0,3.258096,0,6.500689,7.886983,0,6.9,0,0,0
-0,3.258096,0,6.500689,7.886983,0,6.9,0,0,0
-5,0,0,6.163736,0,0,10.57626,0,0,0
-5,0,0,6.163736,0,0,10.57626,0,0,0
-3,0,0,6.163736,0,0,10.57626,0,0,0
-8,0,0,6.163736,0,0,10.57626,0,0,0
-8,0,0,6.163736,0,0,10.57626,0,0,0
-2,0,0,6.163736,0,0,10.57626,0,0,0
-2,0,0,6.163736,0,0,10.57626,0,0,0
-2,0,0,6.163736,0,0,10.57626,0,0,0
-2,0,0,6.163736,0,0,10.57626,0,0,0
-3,0,0,6.163736,0,0,10.57626,0,0,0
-2,0,0,6.163736,0,0,0,0,0,0
-2,0,0,6.163736,0,0,0,0,0,0
-2,0,0,6.163736,0,0,0,0,0,0
-1,0,0,6.163736,0,0,0,0,0,0
-3,0,0,6.163736,0,0,0,0,0,0
-8,0,0,6.163736,0,1,10.3,0,0,0
-5,0,0,6.163736,0,1,10.3,0,0,0
-4,0,0,6.163736,0,1,10.3,0,0,0
-2,0,0,6.163736,0,1,10.3,0,0,0
-2,0,0,6.163736,0,1,10.3,0,0,0
-2,0,0,6.690892,0,0,6.9,0,1,0
-0,0,0,6.690892,0,0,6.9,0,1,0
-0,0,0,6.690892,0,0,6.9,0,1,0
-2,0,0,6.690892,0,0,3.4,0,1,0
-0,0,0,6.690892,0,0,3.4,0,1,0
-1,0,0,6.690892,0,0,3.4,0,1,0
-1,0,0,6.690892,0,0,3.4,0,1,0
-2,0,0,6.690892,0,0,3.4,0,1,0
-2,0,0,6.690892,0,0,3.4,0,1,0
-3,0,0,6.690892,0,0,10.57626,0,1,0
-1,0,0,6.690892,0,0,10.57626,0,1,0
-1,0,0,6.690892,0,0,10.57626,0,1,0
-0,0,0,6.690892,0,0,10.57626,0,1,0
-0,0,0,6.690892,0,0,10.57626,0,1,0
-0,0,0,6.690892,0,0,10.57626,0,1,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-3,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-0,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-1,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,3.4,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-1,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,3.931826,0,6.907755,7.600903,.1442925,10.57626,1,0,0
-0,3.931826,0,6.907755,7.600903,.1442925,10.57626,1,0,0
-3,3.931826,0,6.907755,7.600903,.1442925,10.57626,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-1,3.931826,0,6.907755,7.600903,0,0,1,0,0
-4,3.931826,0,6.907755,7.600903,0,0,1,0,0
-8,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-1,3.931826,0,6.907755,7.600903,0,13.8,0,1,0
-4,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,.1442925,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-0,3.931826,0,6.907755,7.600903,0,0,1,0,0
-4,0,1,6.109248,6.160541,0,6.9,1,0,0
-8,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-0,0,1,6.109248,6.160541,0,6.9,1,0,0
-5,0,1,6.109248,6.160541,1,24.1,1,0,0
-0,0,1,6.109248,6.160541,1,24.1,1,0,0
-0,0,1,6.109248,6.160541,1,24.1,1,0,0
-0,0,1,6.109248,6.160541,1,24.1,1,0,0
-0,0,1,6.109248,6.160541,1,24.1,1,0,0
-1,0,1,6.109248,6.160541,0,24.1,1,0,0
-0,0,1,6.109248,6.160541,0,24.1,1,0,0
-0,0,1,6.109248,6.160541,0,24.1,1,0,0
-2,0,1,6.109248,6.160541,0,24.1,1,0,0
-0,0,1,6.109248,6.160541,0,24.1,1,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-4,0,1,5.703783,5.755076,0,10.3,1,0,0
-1,0,1,5.703783,5.755076,0,10.3,1,0,0
-3,0,1,5.703783,5.755076,0,10.3,1,0,0
-17,0,1,5.703783,5.755076,1,31,1,0,0
-17,0,1,5.703783,5.755076,1,31,1,0,0
-21,0,1,5.703783,5.755076,1,31,1,0,0
-15,0,0,4.094345,0,0,3.4,0,0,0
-2,0,0,4.094345,0,0,3.4,0,0,0
-1,0,0,4.094345,0,0,3.4,0,0,0
-3,0,0,4.094345,0,1,13.8,1,0,0
-3,0,0,4.094345,0,1,13.8,1,0,0
-6,0,0,4.094345,0,1,13.8,1,0,0
-6,0,0,4.094345,0,1,10.57626,1,0,0
-3,0,0,4.094345,0,1,10.57626,1,0,0
-8,0,0,4.094345,0,1,10.57626,1,0,0
-2,0,0,4.094345,0,0,3.4,0,0,0
-3,0,0,4.094345,0,0,3.4,0,0,0
-4,0,0,4.094345,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,1,0
-4,0,0,0,0,0,3.4,0,1,0
-0,0,0,0,0,0,3.4,0,1,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-2,0,0,0,0,0,6.9,0,0,0
-0,0,0,0,0,0,6.9,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-16,0,0,0,0,1,10.3,0,1,0
-9,0,0,0,0,1,10.3,0,1,0
-10,0,0,0,0,1,10.3,0,1,0
-0,0,0,5.796544,0,0,3.4,1,0,0
-1,0,0,5.796544,0,0,3.4,1,0,0
-4,0,0,5.796544,0,0,3.4,1,0,0
-5,0,0,0,0,0,17.2,0,0,0
-4,0,0,0,0,0,17.2,0,0,0
-4,0,0,0,0,0,17.2,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,1,3.4,0,0,0
-0,0,0,0,0,1,3.4,0,0,0
-1,0,0,0,0,1,3.4,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,13.8,1,0,0
-3,0,0,0,0,0,13.8,1,0,0
-4,0,0,0,0,0,13.8,1,0,0
-4,0,0,0,0,1,10.3,1,0,0
-0,0,0,0,0,1,10.3,1,0,0
-2,0,0,0,0,1,10.3,1,0,0
-2,0,0,0,0,0,10.57626,0,1,0
-1,0,0,0,0,0,10.57626,0,1,0
-2,0,0,0,0,0,10.57626,0,1,0
-0,0,0,0,0,1,10.57626,1,0,0
-4,0,0,0,0,1,10.57626,1,0,0
-3,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,6.9,1,0,0
-9,0,0,0,0,1,6.9,1,0,0
-8,0,0,0,0,1,6.9,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-6,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-2,0,0,0,0,0,10.57626,1,0,0
-0,0,1,5.703783,5.755076,0,10.57626,0,0,0
-0,0,1,5.703783,5.755076,0,10.57626,0,0,0
-4,0,1,5.703783,5.755076,1,6.9,1,0,0
-5,0,1,5.703783,5.755076,1,6.9,1,0,0
-3,0,1,5.703783,5.755076,1,6.9,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,1,10.57626,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-0,0,0,0,0,0,3.4,1,0,0
-2,0,0,0,0,0,3.4,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,10.3,1,0,0
-5,0,0,0,0,0,10.3,1,0,0
-4,0,0,0,0,0,10.3,1,0,0
-3,0,0,0,0,0,10.3,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-0,0,0,0,0,0,0,1,0,0
-1,0,1,5.010635,5.061929,0,31,1,0,0
-16,0,1,5.010635,5.061929,0,31,1,0,0
-16,0,1,5.010635,5.061929,0,31,1,0,0
-17,0,1,5.010635,5.061929,0,31,1,0,0
-11,0,1,5.010635,5.061929,0,31,1,0,0
-3,0,0,5.33001,0,0,20.7,1,0,0
-2,0,0,5.33001,0,0,20.7,1,0,0
-4,0,0,5.33001,0,0,20.7,1,0,0
-2,0,0,5.33001,0,0,20.7,1,0,0
-3,0,0,5.33001,0,0,20.7,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-1,0,0,5.33001,0,0,10.57626,1,0,0
-8,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-3,0,0,5.33001,0,0,10.57626,1,0,0
-7,0,0,5.33001,0,0,10.57626,1,0,0
-5,0,0,5.33001,0,0,10.57626,1,0,0
-4,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-5,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-2,0,0,5.33001,0,0,10.57626,1,0,0
-1,0,0,5.33001,0,0,10.57626,1,0,0
-1,0,0,5.33001,0,0,3.4,1,0,0
-1,0,0,5.33001,0,0,3.4,1,0,0
-0,0,0,5.33001,0,0,3.4,1,0,0
-2,0,0,5.33001,0,0,3.4,1,0,0
-2,0,0,5.33001,0,0,3.4,1,0,0
-1,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-1,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,0,5.33001,0,0,10.57626,1,0,0
-3,0,0,5.33001,0,0,10.57626,1,0,0
-1,0,0,5.33001,0,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-4,0,1,6.109248,6.160541,0,10.57626,1,0,0
-0,0,1,6.109248,6.160541,0,10.57626,1,0,0
-1,0,1,6.109248,6.160541,0,3.4,1,0,0
-3,0,1,6.109248,6.160541,0,3.4,1,0,0
-4,0,1,6.109248,6.160541,0,3.4,1,0,0
-6,0,1,6.109248,6.160541,0,3.4,1,0,0
-5,0,1,6.109248,6.160541,0,3.4,1,0,0
-2,0,1,6.109248,6.160541,0,3.4,1,0,0
-0,0,0,4.97231,0,0,6.9,0,0,0
-3,0,0,4.97231,0,0,6.9,0,0,0
-5,0,0,4.97231,0,0,6.9,0,0,0
-0,0,0,4.97231,0,0,24.1,0,0,0
-0,0,0,4.97231,0,0,24.1,0,0,0
-4,0,0,4.97231,0,0,24.1,0,0,0
-2,0,0,4.97231,0,0,10.57626,0,0,0
-4,0,0,4.97231,0,0,10.57626,0,0,0
-3,0,0,4.97231,0,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,0,0,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,1,0,0
-0,0,1,6.109248,6.160541,1,10.3,1,0,0
-0,0,1,6.109248,6.160541,1,10.3,1,0,0
-1,0,1,6.109248,6.160541,1,10.3,1,0,0
-4,0,1,6.109248,6.160541,1,10.3,1,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-2,0,0,5.796544,0,.1442925,10.57626,1,0,0
-2,0,0,5.796544,0,.1442925,10.57626,1,0,0
-0,0,0,5.796544,0,.1442925,10.57626,1,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-1,0,0,0,0,0,10.57626,1,0,0
-0,0,0,0,0,0,10.57626,1,0,0
-1,4.564348,0,6.907755,6.959049,1,17.2,0,0,0
-2,4.564348,0,6.907755,6.959049,1,17.2,0,0,0
-1,4.564348,0,6.907755,6.959049,1,17.2,0,0,0
-4,0,0,3.178054,0,0,10.57626,0,0,0
-3,0,0,3.178054,0,0,10.57626,0,0,0
-8,0,0,3.178054,0,0,10.57626,0,0,0
-11,0,0,0,0,0,10.57626,0,0,0
-7,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-5,0,0,0,0,0,3.4,0,0,0
-4,0,0,0,0,0,3.4,0,0,0
-6,0,0,0,0,0,3.4,0,0,0
-0,0,0,0,0,0,3.4,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-0,3.258096,0,0,8.006368,0,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,10.57626,0,0,0
-2,3.258096,0,0,8.006368,0,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,10.57626,0,0,0
-0,0,0,5.029653,0,0,3.4,0,0,0
-0,0,0,5.029653,0,0,3.4,0,0,0
-0,0,0,5.029653,0,0,3.4,0,0,0
-2,3.258096,0,6.476973,7.863267,0,10.57626,0,0,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,0,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,0,0
-0,3.258096,0,6.476973,7.863267,0,10.57626,0,0,0
-1,3.258096,0,6.476973,7.863267,0,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-7,0,1,6.109248,6.160541,0,10.57626,0,0,0
-13,0,1,6.109248,6.160541,0,10.57626,0,0,0
-7,0,1,6.109248,6.160541,0,10.57626,0,0,0
-9,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,3.258096,0,6.055495,7.44179,1,10.57626,0,0,0
-0,0,0,5.126342,0,0,10.57626,0,0,0
-3,0,0,5.126342,0,0,10.57626,0,0,0
-0,0,0,5.126342,0,0,10.57626,0,0,0
-5,0,0,0,0,0,10.3,0,0,0
-8,0,0,0,0,0,10.3,0,0,0
-12,0,0,0,0,0,10.3,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,0,4.668708,0,0,10.57626,0,0,0
-0,0,0,4.668708,0,0,10.57626,0,0,0
-0,0,0,4.668708,0,0,10.57626,0,0,0
-0,0,0,5.145166,0,0,3.4,0,0,0
-0,0,0,5.145166,0,0,3.4,0,0,0
-1,0,0,5.145166,0,0,3.4,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-5,0,0,4.094345,0,1,27.6,0,0,0
-4,0,0,4.094345,0,1,27.6,0,0,0
-0,0,0,4.094345,0,1,27.6,0,0,0
-0,0,0,4.094345,0,0,10.57626,0,0,0
-1,0,0,4.094345,0,0,10.57626,0,0,0
-1,0,0,4.094345,0,0,10.57626,0,0,0
-3,0,0,4.094345,0,0,10.57626,0,0,0
-2,0,0,4.094345,0,0,10.57626,0,0,0
-4,0,0,4.094345,0,0,10.57626,0,0,0
-3,0,0,4.458988,0,0,20.7,0,0,0
-3,0,0,4.458988,0,0,20.7,0,0,0
-5,0,0,4.458988,0,0,20.7,0,0,0
-4,0,0,4.458988,0,0,10.3,0,0,0
-4,0,0,4.458988,0,0,10.3,0,0,0
-2,0,0,4.458988,0,0,10.3,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-0,3.258096,0,6.620073,8.006368,0,13.8,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,0,0,0,0
-6,3.258096,0,6.620073,8.006368,0,0,0,0,0
-5,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-3,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-2,3.258096,0,6.620073,8.006368,0,24.1,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.3,0,0,0
-0,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-0,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-1,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-3,3.258096,0,6.784457,7.932075,1,10.3,0,0,0
-1,3.258096,0,6.784457,7.932075,1,10.3,0,0,0
-2,3.258096,0,6.784457,7.932075,1,10.3,0,0,0
-0,3.258096,0,6.784457,7.932075,0,3.4,1,0,0
-1,3.258096,0,6.784457,7.932075,0,3.4,1,0,0
-0,3.258096,0,6.784457,7.932075,0,3.4,1,0,0
-0,3.258096,0,6.784457,7.932075,0,10.3,1,0,0
-0,3.258096,0,6.784457,7.932075,0,10.3,1,0,0
-1,3.258096,0,6.784457,7.932075,0,10.3,1,0,0
-1,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-2,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-2,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-0,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-1,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-6,3.258096,0,6.784457,7.932075,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,0,1,5.010635,6.160541,0,0,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,6.109248,6.160541,1,10.3,0,0,0
-4,0,1,6.109248,6.160541,1,10.3,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-1,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-0,0,1,0,6.160541,0,10.57626,0,0,0
-3,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-4,0,1,0,5.061929,0,6.9,0,0,0
-0,0,1,0,5.061929,0,6.9,0,0,0
-0,0,1,0,5.061929,0,6.9,0,0,0
-0,0,1,0,5.061929,0,6.9,0,0,0
-1,0,1,0,5.061929,0,6.9,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,20.7,0,0,0
-0,0,0,6.050488,0,.1442925,20.7,0,0,0
-0,0,0,6.050488,0,.1442925,20.7,0,0,0
-4,0,0,6.050488,0,.1442925,20.7,0,0,0
-9,0,0,6.050488,0,.1442925,20.7,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-1,0,0,0,0,0,13.8,0,0,0
-13,0,0,0,0,0,13.8,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,0,0,0,0,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-9,0,0,0,0,0,10.57626,0,0,0
-6,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-4,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-5,0,0,0,0,0,10.57626,0,0,0
-0,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-1,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-0,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-0,4.564348,0,5.160491,5.467394,0,6.9,0,0,0
-0,4.564348,0,5.160491,5.467394,0,6.9,0,0,0
-0,4.564348,0,5.160491,5.467394,0,6.9,0,0,0
-0,4.564348,0,5.160491,5.467394,0,6.9,0,0,0
-0,4.564348,0,5.160491,5.467394,0,6.9,0,0,0
-8,0,0,4.094345,0,.1442925,10.57626,0,0,0
-2,0,0,4.094345,0,.1442925,10.57626,0,0,0
-2,0,0,4.094345,0,.1442925,10.57626,0,0,0
-2,0,0,4.094345,0,.1442925,10.57626,0,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-0,4.564348,0,5.572838,6.959049,0,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-4,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-6,0,0,0,0,1,13.8,0,0,0
-4,0,0,0,0,1,13.8,0,0,0
-5,0,0,0,0,1,13.8,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-2,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-0,0,1,5.010635,6.160541,0,10.57626,0,0,0
-3,0,0,0,0,0,10.57626,0,0,0
-1,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,4.564348,0,6.709304,6.760598,.1442925,10.57626,0,0,0
-0,4.564348,0,6.709304,6.760598,.1442925,10.57626,0,0,0
-0,4.564348,0,6.709304,6.760598,.1442925,10.57626,0,0,0
-7,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-5,0,0,0,0,.1442925,10.57626,0,0,0
-4,0,0,0,0,.1442925,10.57626,0,0,0
-4,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-7,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-0,4.564348,0,6.907755,6.959049,0,13.8,0,0,0
-12,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-3,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-6,0,0,4.094345,0,.1442925,10.57626,0,0,0
-3,0,0,4.094345,0,.1442925,10.57626,0,0,0
-2,0,0,4.094345,0,.1442925,10.57626,0,0,0
-6,0,0,4.094345,0,.1442925,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-8,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-2,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-5,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,3.258096,0,0,5.991465,0,10.57626,0,0,0
-5,3.258096,0,0,5.991465,0,10.57626,0,0,0
-2,3.258096,0,0,5.991465,0,10.57626,0,0,0
-2,0,0,6.050488,0,.1442925,10.57626,0,0,0
-2,0,0,6.050488,0,.1442925,10.57626,0,0,0
-4,0,0,6.050488,0,.1442925,10.57626,0,0,0
-2,0,0,6.050488,0,.1442925,10.57626,0,0,0
-5,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-3,0,0,6.050488,0,.1442925,10.57626,0,0,0
-1,0,0,6.050488,0,.1442925,10.57626,0,0,0
-14,0,1,5.857819,5.755076,.1442925,10.57626,0,0,0
-4,0,1,5.857819,5.755076,.1442925,10.57626,0,0,0
-1,0,1,5.857819,5.755076,.1442925,10.57626,0,0,0
-0,3.258096,0,0,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,0,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,0,8.006368,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-3,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-1,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-4,0,1,6.109248,6.160541,0,10.57626,0,0,0
-20,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-21,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-28,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-1,0,0,5.267652,0,1,10.57626,0,0,0
-9,0,0,5.267652,0,1,10.57626,0,0,0
-9,0,0,5.267652,0,1,10.57626,0,0,0
-1,0,1,6.109248,6.160541,1,10.57626,0,0,0
-1,0,1,6.109248,6.160541,1,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,10.57626,0,0,0
-0,0,1,6.109248,6.160541,1,20.7,0,0,0
-6,0,1,6.109248,6.160541,1,20.7,0,0,0
-5,0,1,6.109248,6.160541,1,20.7,0,0,0
-0,3.258096,0,5.269815,6.656109,0,0,0,0,0
-0,3.258096,0,5.269815,6.656109,0,0,0,0,0
-0,3.258096,0,5.269815,6.656109,0,0,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-0,0,0,0,0,0,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,4.668708,0,0,10.57626,0,0,0
-0,0,0,4.668708,0,0,10.57626,0,0,0
-1,0,0,4.668708,0,0,10.57626,0,0,0
-1,0,0,4.668708,0,.1442925,10.57626,0,0,0
-1,0,0,4.668708,0,.1442925,10.57626,0,0,0
-3,0,0,4.668708,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-0,0,0,0,0,0,0,0,0,0
-2,0,0,5.796544,0,0,10.57626,0,0,0
-2,0,0,5.796544,0,0,10.57626,0,0,0
-3,0,0,5.796544,0,0,10.57626,0,0,0
-0,0,1,5.703783,5.755076,1,27.6,0,0,0
-0,0,1,5.703783,5.755076,1,27.6,0,0,0
-0,0,1,5.703783,5.755076,1,27.6,0,0,0
-0,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-0,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-0,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-1,0,1,5.703783,5.755076,0,10.57626,0,0,0
-0,0,1,5.703783,5.755076,0,10.57626,0,0,0
-1,0,1,5.703783,5.755076,0,10.57626,0,0,0
-1,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-2,3.931826,0,6.907755,7.600903,0,10.57626,0,0,0
-0,0,0,5.126342,0,0,10.57626,0,0,0
-1,0,0,5.126342,0,0,10.57626,0,0,0
-2,0,0,5.126342,0,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,10.57626,0,0,0
-1,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,0,1,6.109248,6.160541,0,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-0,4.564348,0,6.015181,5.734873,.1442925,10.57626,0,0,0
-13,0,0,0,0,0,10.57626,0,0,0
-11,0,0,0,0,0,10.57626,0,0,0
-12,0,0,0,0,0,10.57626,0,0,0
-10,4.564348,0,6.50354,6.569703,.1442925,10.57626,0,0,0
-10,4.564348,0,6.50354,6.569703,.1442925,10.57626,0,0,0
-6,4.564348,0,6.50354,6.569703,.1442925,10.57626,0,0,0
-1,0,0,6.050488,0,.1442925,10.57626,0,0,0
-0,0,0,6.050488,0,.1442925,10.57626,0,0,0
-2,0,0,6.050488,0,.1442925,10.57626,0,0,0
-11,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-7,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-5,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,0,0,0,0,10.57626,0,0,0
-2,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-0,0,1,6.109248,6.160541,0,17.2,0,0,0
-8,0,1,6.109248,6.160541,1,10.57626,0,0,0
-5,0,1,6.109248,6.160541,1,10.57626,0,0,0
-3,0,1,6.109248,6.160541,1,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,3.931826,0,6.07507,6.560323,0,10.57626,0,0,0
-2,3.931826,0,6.07507,6.560323,0,10.57626,0,0,0
-0,3.931826,0,6.07507,6.560323,0,10.57626,0,0,0
-3,0,0,6.148468,0,0,10.57626,0,0,0
-6,0,0,6.148468,0,0,10.57626,0,0,0
-5,0,0,6.148468,0,0,10.57626,0,0,0
-8,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-7,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-0,3.258096,0,6.579251,7.965546,0,10.57626,0,0,0
-0,3.258096,0,0,8.006368,0,0,0,0,0
-3,3.258096,0,0,8.006368,0,0,0,0,0
-2,0,0,5.482637,0,0,10.57626,0,0,0
-1,0,0,5.482637,0,0,10.57626,0,0,0
-0,0,0,5.482637,0,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-2,4.564348,0,6.907755,6.959049,0,3.4,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-1,4.564348,0,6.907755,6.959049,0,10.57626,0,0,0
-4,3.258096,0,0,8.006368,0,6.9,0,0,0
-1,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,3.258096,0,0,8.006368,0,6.9,0,0,0
-0,0,1,6.313548,6.160541,0,10.57626,0,0,0
-0,0,1,6.313548,6.160541,0,10.57626,0,0,0
-1,0,1,6.313548,6.160541,0,10.57626,0,0,0
-5,0,1,6.313548,6.160541,0,24.1,0,0,0
-0,0,1,6.313548,6.160541,0,24.1,0,0,0
-6,0,1,6.313548,6.160541,0,24.1,0,0,0
-8,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-4,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,3.258096,0,6.620073,8.006368,0,10.57626,0,0,0
-2,0,1,5.703783,6.160541,0,10.57626,0,0,0
-0,0,1,5.703783,6.160541,0,10.57626,0,0,0
-0,0,1,5.703783,6.160541,0,10.57626,0,0,0
-12,0,0,0,0,0,17.2,0,0,0
-9,0,0,0,0,0,17.2,0,0,0
-1,0,0,0,0,0,17.2,0,0,0
-20,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-15,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-12,4.564348,0,6.49224,5.781393,0,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-1,4.564348,0,6.232605,6.2643,.1442925,10.57626,0,0,0
-0,4.564348,0,6.232605,6.2643,.1442925,10.57626,0,0,0
-0,4.564348,0,6.232605,6.2643,.1442925,10.57626,0,0,0
-25,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-16,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-8,0,0,0,0,.1442925,10.57626,0,0,0
-0,4.564348,0,4.393214,4.444507,.1442925,10.57626,0,0,0
-0,4.564348,0,4.393214,4.444507,.1442925,10.57626,0,0,0
-0,4.564348,0,0,6.679335,.1442925,10.57626,0,0,0
-0,4.564348,0,0,6.679335,.1442925,10.57626,0,0,0
-6,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-2,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-9,0,0,0,0,.1442925,10.57626,0,0,0
-3,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,0,0,0,.1442925,10.57626,0,0,0
-1,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,0,0,.1442925,10.57626,0,0,0
-2,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-1,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-14,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-14,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-14,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-1,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-1,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-1,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-5,0,1,5.703783,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.703783,6.160541,.1442925,10.57626,0,0,0
-9,0,0,4.094345,0,.1442925,10.57626,0,0,0
-5,0,0,4.094345,0,.1442925,10.57626,0,0,0
-15,0,0,0,0,.1442925,10.57626,0,0,0
-6,0,0,0,0,.1442925,10.57626,0,0,0
-0,3.258096,0,0,8.006368,.1442925,10.57626,0,0,0
-0,3.258096,0,0,8.006368,.1442925,10.57626,0,0,0
-16,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-0,4.564348,0,6.907755,6.959049,.1442925,10.57626,0,0,0
-3,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-9,0,1,5.857819,5.755076,.1442925,10.57626,0,0,0
-0,0,1,5.857819,5.755076,.1442925,10.57626,0,0,0
-2,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-12,0,0,5.33001,0,.1442925,10.57626,0,0,0
-2,0,0,5.33001,0,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-0,0,1,5.010635,6.160541,.1442925,10.57626,0,0,0
-8,0,0,6.264845,0,.1442925,10.57626,0,0,0
-10,0,0,6.264845,0,.1442925,10.57626,0,0,0
-7,0,0,5.259992,0,.1442925,10.57626,0,0,0
-7,0,0,6.050488,0,.1442925,10.57626,0,0,0
-1,0,0,6.050488,0,.1442925,10.57626,0,0,0
-1,0,0,5.029653,0,.1442925,10.57626,0,0,0
-21,3.258096,0,5.269815,6.656109,.1442925,10.57626,0,0,0
-0,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-3,0,0,4.668708,0,.1442925,10.57626,0,0,0
-5,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-8,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
-8,0,1,5.703783,5.755076,.1442925,10.57626,0,0,0
-11,0,0,0,0,.1442925,10.57626,0,0,0
-0,0,0,5.126342,0,.1442925,10.57626,0,0,0
-6,0,0,0,0,.1442925,10.57626,0,0,0
-20,0,0,0,0,.1442925,10.57626,0,0,0
-2,3.258096,0,6.784457,7.932075,.1442925,10.57626,0,0,0
-1,3.258096,0,6.784457,7.932075,.1442925,10.57626,0,0,0
-3,3.931826,0,0,7.37149,.1442925,10.57626,0,0,0
-0,0,1,6.109248,6.160541,.1442925,10.57626,0,0,0
-5,3.258096,0,6.476973,7.863267,.1442925,10.57626,0,0,0
-0,3.258096,0,6.507277,7.893572,.1442925,10.57626,0,0,0
-1,4.564348,0,3.883624,3.934917,.1442925,10.57626,0,0,0
-0,3.258096,0,6.262826,7.649121,.1442925,10.57626,0,0,0
-2,0,0,5.377498,0,.1442925,10.57626,0,0,0
-0,0,0,5.377498,0,.1442925,10.57626,0,0,0
-8,3.258096,0,6.874819,8.006368,.1442925,10.57626,0,0,0
-8,3.258096,0,5.156178,6.542472,.1442925,10.57626,0,0,0
-6,3.258096,0,6.620073,8.006368,.1442925,10.57626,0,0,0
diff --git a/statsmodels/scikits/statsmodels/datasets/randhie/src/randdesc.txt b/statsmodels/scikits/statsmodels/datasets/randhie/src/randdesc.txt
deleted file mode 100644
index f9ccd0e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/randhie/src/randdesc.txt
+++ /dev/null
@@ -1,49 +0,0 @@
- storage display value
-variable name type format label variable label
---------------------------------------------------------------------
-plan float %9.0g hie plan number
-site float %9.0g site
-coins float %9.0g coinsurance -- medical
-tookphys float %9.0g took baseline physical
-year float %9.0g study year
-zper float %9.0g person id, leading digit is sit
-black float %9.0g black
-income float %9.0g income based on annual income r
-xage float %9.0g age that year
-female float %9.0g female
-educdec float %9.0g education of decision maker
-time float %9.0g time eligible during the year
-outpdol float %9.0g outpatient exp. excl. ment and
-drugdol float %9.0g drugs purchased, outpatient
-suppdol float %9.0g supplies purchased, outpatient
-mentdol float %9.0g psychotherapy exp., outpatient
-inpdol float %9.0g inpatient exp., facilities & md
-meddol float %9.0g medical exp excl outpatient men
-totadm float %9.0g number of hosp. admissions
-inpmis float %9.0g missing any inpatient charges
-mentvis float %9.0g number psychotherapy visits
-mdvis float %9.0g number face-to-fact md visits
-notmdvis float %9.0g number face-to-face, not-md vis
-num float %9.0g family size
-mhi float %9.0g mental health index -- baselin
-disea float %9.0g count of chronic diseases -- ba
-physlm float %9.0g physical limitations -- baselin
-ghindx float %9.0g general health index -- baselin
-mdeoff float %9.0g maximum expenditure offer
-pioff float %9.0g participation incentive
-child float %9.0g child
-fchild float %9.0g female child
-lfam float %9.0g log of family size
-lpi float %9.0g log participation incentive
-idp float %9.0g individual deductible plan
-logc float %9.0g log(coinsurance+1)
-fmde float %9.0g function of mdeoff
-hlthg float %9.0g good health
-hlthf float %9.0g fair health
-hlthp float %9.0g poor health
-xghindx float %9.0g ghi with imputation
-linc float %9.0g
-lnum float %9.0g
-lnmeddol float %9.0g
-binexp float %9.0g
-
diff --git a/statsmodels/scikits/statsmodels/datasets/randhie/src/randhie.csv b/statsmodels/scikits/statsmodels/datasets/randhie/src/randhie.csv
deleted file mode 100644
index d66feb8..0000000
--- a/statsmodels/scikits/statsmodels/datasets/randhie/src/randhie.csv
+++ /dev/null
@@ -1,20191 +0,0 @@
-plan,site,coins,tookphys,year,zper,black,income,xage,female,educdec,time,outpdol,drugdol,suppdol,mentdol,inpdol,meddol,totadm,inpmis,mentvis,mdvis,notmdvis,num,mhi,disea,physlm,ghindx,mdeoff,pioff,child,fchild,lfam,lpi,idp,logc,fmde,hlthg,hlthf,hlthp,xghindx,linc,lnum,lnmeddol,binexp
-3,1,100,0,1,125024,1,13748.76,42.87748,0,12,1,0,8.451119,0,0,0,8.451119,0,0,0,0,0,4,95,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.2078,9.528776,1.386294,2.134299,1
-3,1,100,0,2,125024,1,13748.76,43.87748,0,12,1,48.78706,13.28841,0,0,0,62.07547,0,0,0,2,0,4,95,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.2078,9.528776,1.386294,4.128351,1
-3,1,100,0,3,125024,1,13748.76,44.87748,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.2078,9.528776,1.386294,,0
-3,1,100,0,4,125024,1,13748.76,45.87748,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.2078,9.528776,1.386294,,0
-3,1,100,0,5,125024,1,13748.76,46.87748,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.2078,9.528776,1.386294,,0
-3,1,100,0,1,125025,1,13748.76,16.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.8,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,76.34753,9.528776,1.386294,,0
-3,1,100,0,2,125025,1,13748.76,17.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.8,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,76.34753,9.528776,1.386294,,0
-3,1,100,0,3,125025,1,13748.76,18.59138,0,12,1,7.371007,0,0,0,0,7.371007,0,0,0,1,0,4,93.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,76.34753,9.528776,1.386294,1.997554,1
-3,1,100,0,4,125025,1,13748.76,19.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,76.34753,9.528776,1.386294,,0
-3,1,100,0,5,125025,1,13748.76,20.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,76.34753,9.528776,1.386294,,0
-3,1,100,0,1,125026,1,13748.76,14.49966,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,98.7,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,71.01083,9.528776,1.386294,,0
-3,1,100,0,2,125026,1,13748.76,15.49966,1,12,1,13.47709,14.28571,0,0,0,27.7628,0,0,0,1,0,4,98.7,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,71.01083,9.528776,1.386294,3.323697,1
-3,1,100,0,3,125026,1,13748.76,16.49966,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,98.7,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,71.01083,9.528776,1.386294,,0
-3,1,100,0,4,125026,1,13748.76,17.49966,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,98.7,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,71.01083,9.528776,1.386294,,0
-3,1,100,0,5,125026,1,13748.76,18.49966,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,98.7,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,71.01083,9.528776,1.386294,,0
-3,1,100,0,1,125027,1,13748.76,43.14305,1,12,1,60.6596,42.93286,0,0,0,103.5925,0,0,0,6,0,4,96.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84741,9.528776,1.386294,4.640465,1
-3,1,100,0,2,125027,1,13748.76,44.14305,1,12,1,242.1186,11.07817,37.38544,0,0,290.5822,0,0,0,2,1,4,96.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84741,9.528776,1.386294,5.671886,1
-3,1,100,0,3,125027,1,13748.76,45.14305,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84741,9.528776,1.386294,,0
-3,1,100,0,4,125027,1,13748.76,46.14305,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84741,9.528776,1.386294,,0
-3,1,100,0,5,125027,1,13748.76,47.14305,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84741,9.528776,1.386294,,0
-1,1,0,1,1,125057,1,5107.692,13.54962,1,12,1,12.79001,0,0,0,382.9268,395.7168,1,0,0,1,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,80.28564,8.538699,1.098612,5.980699,1
-1,1,0,1,2,125057,1,5107.692,14.54962,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,80.28564,8.538699,1.098612,,0
-1,1,0,1,3,125057,1,5107.692,15.54962,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,80.28564,8.538699,1.098612,,0
-1,1,0,1,4,125057,1,5107.692,16.54962,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,80.28564,8.538699,1.098612,,0
-1,1,0,1,5,125057,1,5107.692,17.54962,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,80.28564,8.538699,1.098612,,0
-1,1,0,1,1,125058,1,5107.692,15.28268,1,12,1,18.4414,0,0,0,0,18.4414,0,0,0,1,0,3,61.1,13,1,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,63.74599,8.538699,1.098612,2.914598,1
-1,1,0,1,2,125058,1,5107.692,16.28268,1,12,1,0,2.39521,0,0,0,2.39521,0,0,0,0,0,3,61.1,13,1,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,63.74599,8.538699,1.098612,.8734707,1
-1,1,0,1,3,125058,1,5107.692,17.28268,1,12,1,4.955401,17.09613,0,0,0,22.05154,0,0,0,1,0,3,61.1,13,1,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,63.74599,8.538699,1.098612,3.093382,1
-1,1,0,1,4,125058,1,5107.692,18.28268,1,12,1,29.8302,25.7687,0,0,0,55.5989,0,0,0,2,0,3,61.1,13,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.74599,8.538699,1.098612,4.018163,1
-1,1,0,1,5,125058,1,5107.692,19.28268,1,12,1,122.0025,11.75852,0,0,0,133.761,0,0,0,4,0,3,61.1,13,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.74599,8.538699,1.098612,4.896055,1
-1,1,0,1,1,125059,1,5107.692,38.83094,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,68.12782,8.538699,1.098612,,0
-1,1,0,1,2,125059,1,5107.692,39.83094,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,68.12782,8.538699,1.098612,,0
-1,1,0,1,3,125059,1,5107.692,40.83094,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,68.12782,8.538699,1.098612,,0
-1,1,0,1,4,125059,1,5107.692,41.83094,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,68.12782,8.538699,1.098612,,0
-1,1,0,1,5,125059,1,5107.692,42.83094,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,68.12782,8.538699,1.098612,,0
-1,1,0,0,1,125075,1,1,24.60233,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,80,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,71.88312,.6931472,0,,0
-1,1,0,0,2,125075,1,1,25.60233,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,80,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,71.88312,.6931472,0,,0
-1,1,0,0,3,125075,1,1,26.60233,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,80,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,71.88312,.6931472,0,,0
-11,1,0,0,1,125126,1,5899.918,15.74538,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,0,2,125126,1,5899.918,16.74538,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,0,3,125126,1,5899.918,17.74538,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,1,1,125127,1,5899.918,60.48734,1,9,1,5.889281,0,0,0,0,5.889281,0,0,0,1,0,4,71.6,4.3,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,63.0108,8.682863,1.386294,1.773134,1
-11,1,0,1,2,125127,1,5899.918,61.48734,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,71.6,4.3,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,63.0108,8.682863,1.386294,,0
-11,1,0,1,3,125127,1,5899.918,62.48734,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,71.6,4.3,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,63.0108,8.682863,1.386294,,0
-11,1,0,0,1,125128,1,5899.918,14.59001,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,63.5,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,0,2,125128,1,5899.918,15.59001,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,63.5,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,0,3,125128,1,5899.918,16.59001,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,63.5,13,0,,0,406,1,1,1.386294,6.006353,0,0,0,1,0,0,59.67566,8.682863,1.386294,,0
-11,1,0,1,1,125129,1,5899.918,59.27721,0,4,1,66.19553,67.13781,0,0,0,133.3333,0,0,0,1,0,4,71.6,13,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,61.37119,8.682863,1.386294,4.892852,1
-11,1,0,1,2,125129,1,5899.918,60.27721,0,4,1,0,61.45552,0,0,0,61.45552,0,0,0,0,0,4,71.6,13,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,61.37119,8.682863,1.386294,4.118314,1
-11,1,0,1,3,125129,1,5899.918,61.27721,0,4,1,695.5725,62.11302,5.405406,0,0,763.0909,0,0,0,7,32,4,71.6,13,0,,0,406,0,0,1.386294,6.006353,0,0,0,1,0,0,61.37119,8.682863,1.386294,6.637377,1
-11,1,0,1,1,125133,1,3596.154,14.22313,0,12,1,11.99041,7.284173,0,0,0,19.27458,0,0,0,1,0,3,92.6,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,75.73199,8.187899,1.098612,2.958787,1
-11,1,0,1,2,125133,1,3596.154,15.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,92.6,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,75.73199,8.187899,1.098612,,0
-11,1,0,1,3,125133,1,3596.154,16.22313,0,12,1,28.42893,0,0,0,0,28.42893,0,0,0,2,0,3,92.6,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,75.73199,8.187899,1.098612,3.347407,1
-11,1,0,1,1,125134,1,3596.154,45.42916,0,7,1,455.9352,2.817746,0,0,0,458.753,0,0,0,8,0,3,83.2,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,67.10523,8.187899,1.098612,6.128512,1
-11,1,0,1,2,125134,1,3596.154,46.42916,0,7,1,94.38663,0,40.40526,0,0,134.7919,0,0,0,1,1,3,83.2,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,67.10523,8.187899,1.098612,4.903732,1
-11,1,0,1,3,125134,1,3596.154,47.42916,0,7,1,37.90524,0,0,0,1239.302,1277.207,1,0,0,2,0,3,83.2,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,67.10523,8.187899,1.098612,7.152431,1
-11,1,0,1,1,125135,1,3596.154,37.11157,1,12,1,5.995204,4.586331,0,0,0,10.58153,0,0,0,1,0,3,68.4,8.7,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.57648,8.187899,1.098612,2.35911,1
-11,1,0,1,2,125135,1,3596.154,38.11157,1,12,1,15.33406,14.0471,47.82585,0,0,77.20701,0,0,0,1,1,3,68.4,8.7,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.57648,8.187899,1.098612,4.34649,1
-11,1,0,1,3,125135,1,3596.154,39.11157,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.4,8.7,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.57648,8.187899,1.098612,,0
-2,1,100,0,1,125152,1,11468.98,55.32923,1,11,1,38.28033,11.23675,32.61484,0,0,82.13192,0,0,0,4,0,2,82.1,17.4,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,60.89297,9.347488,.6931472,4.408327,1
-2,1,100,0,2,125152,1,11468.98,56.32923,1,11,1,120.4852,17.69811,0,0,0,138.1833,0,0,0,5,0,2,82.1,17.4,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,60.89297,9.347488,.6931472,4.928581,1
-2,1,100,0,3,125152,1,11468.98,57.32923,1,11,1,126.5356,42.39312,52.37838,0,944.2113,1165.518,1,0,0,14,0,2,82.1,17.4,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,60.89297,9.347488,.6931472,7.060921,1
-2,1,100,0,1,125153,1,11468.98,59.01711,0,7,1,20.61249,5.624264,0,0,0,26.23675,0,0,0,3,0,2,87.4,13,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,59.25336,9.347488,.6931472,3.267161,1
-2,1,100,0,2,125153,1,11468.98,60.01711,0,7,1,18.86792,0,0,0,0,18.86792,0,0,0,3,0,2,87.4,13,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,59.25336,9.347488,.6931472,2.937463,1
-2,1,100,0,3,125153,1,11468.98,61.01711,0,7,1,80.09828,3.759214,45.18919,0,0,129.0467,0,0,0,5,0,2,87.4,13,0,,900,900,0,0,.6931472,6.802395,1,0,0,1,0,0,59.25336,9.347488,.6931472,4.860174,1
-7,1,25,0,1,125159,0,7586.229,10.00411,1,12,1,4.711425,2.915194,0,0,0,7.626619,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.48192,8.934221,1.609438,2.031645,1
-7,1,25,0,2,125159,0,7586.229,11.00411,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.48192,8.934221,1.609438,,0
-7,1,25,0,3,125159,0,7586.229,12.00411,1,12,1,32.92383,28.55037,0,0,0,61.4742,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.48192,8.934221,1.609438,4.118618,1
-7,1,25,0,4,125159,0,7586.229,13.00411,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.48192,8.934221,1.609438,,0
-7,1,25,0,5,125159,0,7586.229,14.00411,1,12,1,10.42101,0,0,0,0,10.42101,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.48192,8.934221,1.609438,2.343824,1
-7,1,25,0,1,125160,0,7586.229,32.61328,0,13,1,17.66784,0,0,191.4016,0,17.66784,0,0,16,0,0,5,60,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.5937,8.934221,1.609438,2.871746,1
-7,1,25,0,2,125160,0,7586.229,33.61328,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,60,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.5937,8.934221,1.609438,,0
-7,1,25,0,3,125160,0,7586.229,34.61328,0,13,1,9.336609,7.174447,0,0,0,16.51106,0,0,0,2,0,5,60,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.5937,8.934221,1.609438,2.80403,1
-7,1,25,0,4,125160,0,7586.229,35.61328,0,13,1,5.469462,4.010939,0,0,0,9.480401,0,0,0,1,0,5,60,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.5937,8.934221,1.609438,2.249227,1
-7,1,25,0,5,125160,0,7586.229,36.61328,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,60,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.5937,8.934221,1.609438,,0
-7,1,25,0,1,125161,0,7586.229,32.50377,1,12,1,15.90106,51.88457,0,459.364,0,67.78563,0,0,30,2,0,5,40,26.1,1,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.16502,8.934221,1.609438,4.21635,1
-7,1,25,0,2,125161,0,7586.229,33.50377,1,12,1,70.08086,50.88949,0,0,5875.984,5996.954,2,0,0,1,11,5,40,26.1,1,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.16502,8.934221,1.609438,8.699007,1
-7,1,25,0,3,125161,0,7586.229,34.50377,1,12,1,52.08845,105.9165,0,157.2482,0,158.0049,0,0,9,6,0,5,40,26.1,1,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.16502,8.934221,1.609438,5.062626,1
-7,1,25,0,4,125161,0,7586.229,35.50377,1,12,1,27.34731,3.696445,0,18.23154,0,31.04376,0,0,1,2,0,5,40,26.1,1,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.16502,8.934221,1.609438,3.435398,1
-7,1,25,0,5,125161,0,7586.229,36.50377,1,12,1,10.42101,32.97207,0,264.6936,0,43.39308,0,0,12,1,0,5,40,26.1,1,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.16502,8.934221,1.609438,3.7703,1
-7,1,25,0,1,125162,0,7586.229,3.720739,0,12,1,35.33569,16.93168,0,29.44641,0,52.26737,0,0,2,5,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,80.76491,8.934221,1.609438,3.956372,1
-7,1,25,0,2,125162,0,7586.229,4.720739,0,12,1,16.71159,1.832884,0,0,0,18.54447,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,80.76491,8.934221,1.609438,2.920172,1
-7,1,25,0,3,125162,0,7586.229,5.720739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,80.76491,8.934221,1.609438,,0
-7,1,25,0,4,125162,0,7586.229,6.720739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,80.76491,8.934221,1.609438,,0
-7,1,25,0,5,125162,0,7586.229,7.720739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,80.76491,8.934221,1.609438,,0
-7,1,25,0,1,125163,0,7586.229,8.309377,0,12,1,22.37927,3.533569,0,0,0,25.91284,0,0,0,4,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.9959,8.934221,1.609438,3.254739,1
-7,1,25,0,2,125163,0,7586.229,9.309377,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.9959,8.934221,1.609438,,0
-7,1,25,0,3,125163,0,7586.229,10.30938,0,12,1,22.60442,3.847666,0,0,0,26.45209,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.9959,8.934221,1.609438,3.275335,1
-7,1,25,0,4,125163,0,7586.229,11.30938,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.9959,8.934221,1.609438,,0
-7,1,25,0,5,125163,0,7586.229,12.30938,0,12,1,32.51355,0,0,0,0,32.51355,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.9959,8.934221,1.609438,3.481657,1
-6,1,25,0,1,125164,0,7854.839,61.42642,0,13,1,15.90106,14.25206,62.77385,0,0,92.92697,0,0,0,1,1,3,85.3,30.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.34652,8.969012,1.098612,4.531814,1
-6,1,25,0,2,125164,0,7854.839,62.42642,0,13,1,39.3531,1.859838,0,0,0,41.21294,0,0,0,1,1,3,85.3,30.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.34652,8.969012,1.098612,3.718752,1
-6,1,25,0,3,125164,0,7854.839,63.42642,0,13,1,9.82801,0,55.45946,0,0,65.28747,0,0,0,0,1,3,85.3,30.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.34652,8.969012,1.098612,4.1788,1
-6,1,25,0,1,125165,0,7854.839,55.06366,1,12,1,279.7409,33.63369,62.77385,0,1107.167,1483.316,1,0,0,15,7,3,74.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.01054,8.969012,1.098612,7.302035,1
-6,1,25,0,2,125165,0,7854.839,56.06366,1,12,1,226.1456,.7708895,33.23989,0,1411.617,1671.774,1,0,0,6,4,3,74.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.01054,8.969012,1.098612,7.42164,1
-6,1,25,0,3,125165,0,7854.839,57.06366,1,12,1,83.63636,0,48.79607,0,439.1253,571.5577,1,0,0,2,1,3,74.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.01054,8.969012,1.098612,6.348365,1
-6,1,25,0,1,125166,0,7854.839,19.02259,1,12,1,36.51355,2.408716,0,0,0,38.92226,0,0,0,4,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.8187,8.969012,1.098612,3.661566,1
-6,1,25,0,2,125166,0,7854.839,20.02259,1,12,1,72.50674,20.31806,0,0,0,92.8248,0,0,0,4,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.8187,8.969012,1.098612,4.530714,1
-6,1,25,0,3,125166,0,7854.839,21.02259,1,12,1,17.19902,23.32678,0,0,0,40.5258,0,0,0,3,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.8187,8.969012,1.098612,3.701939,1
-11,1,0,1,1,125172,0,12934.86,45.82067,1,12,1,152.2782,71.61271,33.20744,0,0,257.0983,0,0,0,21,0,2,71.6,13,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,57.73302,9.467759,.6931472,5.549459,1
-11,1,0,1,2,125172,0,12934.86,46.82067,1,12,1,115.0055,87.29463,0,0,0,202.3001,0,0,0,15,0,2,71.6,13,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,57.73302,9.467759,.6931472,5.309752,1
-11,1,0,1,3,125172,0,12934.86,47.82067,1,12,1,236.409,152.015,41.93018,0,1868.364,2298.718,1,0,0,20,1,2,71.6,13,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,57.73302,9.467759,.6931472,7.740107,1
-11,1,0,1,4,125172,0,12934.86,48.82067,1,12,1,165.053,176.3024,0,0,0,341.3555,0,0,0,20,0,2,71.6,13,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,57.73302,9.467759,.6931472,5.832924,1
-11,1,0,1,5,125172,0,12934.86,49.82067,1,12,1,128.2268,156.8768,0,0,0,285.1037,0,0,0,17,0,2,71.6,13,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,57.73302,9.467759,.6931472,5.652853,1
-11,1,0,1,1,125173,0,12934.86,52.62149,0,11,1,41.96643,14.02878,12.88969,0,0,68.8849,0,0,0,7,0,2,76.8,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.14933,9.467759,.6931472,4.232437,1
-11,1,0,1,2,125173,0,12934.86,53.62149,0,11,1,66.81271,15.78861,42.35487,0,0,124.9562,0,0,0,8,0,2,76.8,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.14933,9.467759,.6931472,4.827963,1
-11,1,0,1,3,125173,0,12934.86,54.62149,0,11,1,66.33417,14.48379,42.69825,0,618.02,741.5361,1,0,0,6,1,2,76.8,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.14933,9.467759,.6931472,6.608724,1
-11,1,0,1,4,125173,0,12934.86,55.62149,0,11,1,95.43568,14.94698,0,0,36.88336,147.266,0,0,0,15,0,2,76.8,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.14933,9.467759,.6931472,4.99224,1
-11,1,0,1,5,125173,0,12934.86,56.62149,0,11,1,74.90479,18.64156,50.36818,0,0,143.9145,0,0,0,10,1,2,76.8,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.14933,9.467759,.6931472,4.96922,1
-8,1,50,1,1,125181,0,14684.86,21.68652,1,14,1,289.1187,17.17026,28.82494,0,0,335.1139,0,0,0,6,1,3,62.1,0,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,73.27021,9.594641,1.098612,5.814471,1
-8,1,50,1,2,125181,0,14684.86,22.68652,1,14,1,100.2191,27.17963,0,0,0,127.3987,0,0,0,3,0,3,62.1,0,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,73.27021,9.594641,1.098612,4.847322,1
-8,1,50,1,3,125181,0,14684.86,23.68652,1,14,1,113.7157,15.65087,17.601,0,0,146.9676,0,0,0,7,1,3,62.1,0,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,73.27021,9.594641,1.098612,4.990212,1
-8,1,50,1,1,125182,0,14684.86,48.81862,1,11,1,17.98561,12.40408,36.8705,0,0,67.26019,0,0,0,1,1,3,87.4,34.8,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,68.81352,9.594641,1.098612,4.208569,1
-8,1,50,1,2,125182,0,14684.86,49.81862,1,11,1,15.33406,3.192771,0,0,0,18.52683,0,0,0,1,0,3,87.4,34.8,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,68.81352,9.594641,1.098612,2.91922,1
-8,1,50,1,3,125182,0,14684.86,50.81862,1,11,1,9.975062,0,33.35661,0,0,43.33167,0,0,0,0,1,3,87.4,34.8,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,1,0,0,68.81352,9.594641,1.098612,3.768884,1
-8,1,50,1,1,125183,0,14684.86,47.6961,0,9,1,5.995204,0,0,0,0,5.995204,0,0,0,1,0,3,87.4,13,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,0,1,0,64.34435,9.594641,1.098612,1.79096,1
-8,1,50,1,2,125183,0,14684.86,48.6961,0,9,1,21.90581,15.32311,26.90033,0,0,64.12924,0,0,0,1,2,3,87.4,13,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,0,1,0,64.34435,9.594641,1.098612,4.160901,1
-8,1,50,1,3,125183,0,14684.86,49.6961,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,87.4,13,0,,799,799,0,0,1.098612,6.683361,0,3.931826,7.376508,0,1,0,64.34435,9.594641,1.098612,,0
-3,1,100,0,1,125184,0,12770.47,15.7755,0,12,1,2.944641,0,0,0,0,2.944641,0,0,0,1,0,6,88.4,0,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,1.079987,1
-3,1,100,0,2,125184,0,12770.47,16.7755,0,12,1,33.42318,4.366577,0,0,0,37.78976,0,0,0,4,0,6,88.4,0,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,3.632038,1
-3,1,100,0,3,125184,0,12770.47,17.7755,0,12,1,105.0369,0,0,0,0,105.0369,0,0,0,12,0,6,88.4,0,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,4.654311,1
-3,1,100,0,1,125185,0,12770.47,43.87132,0,12,1,34.74676,20.81861,25.84806,0,0,81.41343,0,0,0,3,1,6,58.9,17.4,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,1,0,56.85956,9.454969,1.791759,4.39954,1
-3,1,100,0,2,125185,0,12770.47,44.87132,0,12,1,22.64151,18.92183,42.81401,0,0,84.37736,0,0,0,2,1,6,58.9,17.4,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,1,0,56.85956,9.454969,1.791759,4.435299,1
-3,1,100,0,3,125185,0,12770.47,45.87132,0,12,1,91.40049,6.388206,46.90909,0,0,144.6978,0,0,0,2,4,6,58.9,17.4,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,1,0,56.85956,9.454969,1.791759,4.974648,1
-3,1,100,0,1,125186,0,12770.47,11.95072,1,12,1,2.944641,0,0,0,0,2.944641,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,78.63347,9.454969,1.791759,1.079987,1
-3,1,100,0,2,125186,0,12770.47,12.95072,1,12,1,40.43127,0,11.10512,0,0,51.53639,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,78.63347,9.454969,1.791759,3.942288,1
-3,1,100,0,3,125186,0,12770.47,13.95072,1,12,1,12.77641,4.078624,0,0,0,16.85504,0,0,0,2,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,78.63347,9.454969,1.791759,2.82465,1
-3,1,100,0,1,125187,0,12770.47,14.44216,0,12,1,12.95642,8.36278,0,0,0,21.3192,0,0,0,2,0,6,77.9,8.7,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,3.059608,1
-3,1,100,0,2,125187,0,12770.47,15.44216,0,12,1,11.32076,4.851752,0,0,0,16.17251,0,0,0,2,0,6,77.9,8.7,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,2.783313,1
-3,1,100,0,3,125187,0,12770.47,16.44216,0,12,1,6.879607,6.388206,0,0,0,13.26781,0,0,0,1,0,6,77.9,8.7,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,2.585341,1
-3,1,100,0,1,125188,0,12770.47,43.46064,1,12,1,27.38516,10.01178,0,0,0,37.39694,0,0,0,3,0,6,71.6,13,1,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,71.8888,9.454969,1.791759,3.621589,1
-3,1,100,0,2,125188,0,12770.47,44.46064,1,12,1,24.25876,17.00809,58.59299,0,0,99.85984,0,0,0,1,1,6,71.6,13,1,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,71.8888,9.454969,1.791759,4.603767,1
-3,1,100,0,3,125188,0,12770.47,45.46064,1,12,1,113.7592,0,0,0,785.9607,899.7199,1,0,0,4,0,6,71.6,13,1,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,71.8888,9.454969,1.791759,6.802083,1
-3,1,100,0,1,125189,0,12770.47,17.13895,0,12,1,159.5995,8.863369,0,0,0,168.4629,0,0,0,20,0,6,71.6,21.7,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,5.126716,1
-3,1,100,0,2,125189,0,12770.47,18.13895,0,12,1,81.9407,142.3989,44.86253,0,0,269.2021,0,0,0,15,1,6,71.6,21.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,5.595463,1
-3,1,100,0,3,125189,0,12770.47,19.13895,0,12,1,124.8157,139.9853,37.27273,0,0,302.0737,0,0,0,11,1,6,71.6,21.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,73.87741,9.454969,1.791759,5.710671,1
-11,1,0,0,1,125214,0,6866.625,54.21492,1,10,1,588.0447,447.4853,0,0,1195.518,2231.048,1,0,0,69,0,2,76.3,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,1,0,50.56934,8.834574,.6931472,7.710227,1
-11,1,0,0,2,125214,0,6866.625,55.21492,1,10,1,496.6146,343.035,25.33693,0,576.097,1441.084,1,0,0,58,1,2,76.3,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,1,0,50.56934,8.834574,.6931472,7.27315,1
-11,1,0,0,3,125214,0,6866.625,56.21492,1,10,1,799.8133,335.2776,28.2457,0,41.27764,1204.614,0,0,0,63,1,2,76.3,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,1,0,50.56934,8.834574,.6931472,7.093915,1
-11,1,0,0,1,125215,0,6866.625,49.56879,0,9,1,17.66784,0,0,0,0,17.66784,0,0,0,2,0,2,87.5,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,0,0,70.33569,8.834574,.6931472,2.871746,1
-11,1,0,0,2,125215,0,6866.625,50.56879,0,9,1,74.93262,9.347709,28.57143,0,0,112.8518,0,0,0,3,1,2,87.5,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,0,0,70.33569,8.834574,.6931472,4.726075,1
-11,1,0,0,3,125215,0,6866.625,51.56879,0,9,1,18.18182,8.255528,23.11057,0,0,49.54791,0,0,0,2,1,2,87.5,13.73189,1,,0,598,0,0,.6931472,6.393591,0,0,0,0,0,0,70.33569,8.834574,.6931472,3.90294,1
-11,1,0,1,1,125216,0,9106.079,6.171116,0,12,1,80.01189,26.79952,0,0,286.8055,393.6169,1,0,0,11,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,84.24345,9.116807,1.386294,5.975378,1
-11,1,0,1,2,125216,0,9106.079,7.171116,0,12,1,198.6935,16.08601,0,0,0,214.7795,0,0,0,9,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,84.24345,9.116807,1.386294,5.369612,1
-11,1,0,1,3,125216,0,9106.079,8.171116,0,12,1,34.68781,16.16948,0,0,0,50.85728,0,0,0,5,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,84.24345,9.116807,1.386294,3.929023,1
-11,1,0,1,4,125216,0,9106.079,9.171116,0,12,1,23.86416,7.755851,0,0,0,31.62001,0,0,0,3,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,84.24345,9.116807,1.098612,3.45379,1
-11,1,0,1,5,125216,0,9106.079,10.17112,0,12,1,153.8704,35.07783,0,0,0,188.9483,0,0,0,8,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,84.24345,9.116807,1.098612,5.241473,1
-11,1,0,1,1,125217,0,9106.079,10.39288,0,12,1,36.28793,4.46163,0,0,0,40.74955,0,0,0,6,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.06646,9.116807,1.386294,3.707445,1
-11,1,0,1,2,125217,0,9106.079,11.39288,0,12,1,18.50844,5.960806,0,0,0,24.46924,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.06646,9.116807,1.386294,3.197417,1
-11,1,0,1,3,125217,0,9106.079,12.39288,0,12,1,23.78593,6.665015,0,0,0,30.45094,0,0,0,4,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.06646,9.116807,1.386294,3.416117,1
-11,1,0,1,4,125217,0,9106.079,13.39288,0,12,1,15.14456,8.926113,0,0,0,24.07067,0,0,0,3,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,1,0,0,74.06646,9.116807,1.098612,3.180994,1
-11,1,0,1,5,125217,0,9106.079,14.39288,0,12,1,23.55911,1.262095,0,0,0,24.8212,0,0,0,2,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,1,0,0,74.06646,9.116807,1.098612,3.211698,1
-11,1,0,1,1,125218,0,9106.079,44.80219,0,10,1,197.204,6.097561,0,0,0,203.3016,0,0,0,6,0,4,80,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.65557,9.116807,1.386294,5.314691,1
-11,1,0,1,2,125218,0,9106.079,45.80219,0,10,1,166.0316,21.09418,0,0,7141.557,7328.683,2,0,0,10,0,4,80,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.65557,9.116807,1.386294,8.899551,1
-11,1,0,1,3,125218,0,9106.079,46.80219,0,10,1,444.9951,90.65907,29.58375,0,0,565.2379,0,0,0,12,31,4,80,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.65557,9.116807,1.386294,6.337246,1
-11,1,0,1,1,125219,0,9106.079,33.42916,1,12,1,249.8513,130.3093,3.777514,0,0,383.9381,0,0,0,35,0,4,55.8,13,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52583,9.116807,1.386294,5.950481,1
-11,1,0,1,2,125219,0,9106.079,34.42916,1,12,1,381.0561,177.006,4.899292,0,1644.339,2207.3,1,0,0,9,15,4,55.8,13,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52583,9.116807,1.386294,7.699525,1
-11,1,0,1,3,125219,0,9106.079,35.42916,1,12,1,98.11695,149.3062,170.9613,59.46482,0,418.3846,0,0,4,6,0,4,55.8,13,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52583,9.116807,1.386294,6.036401,1
-11,1,0,1,4,125219,0,9106.079,36.42916,1,12,1,54.61221,145.5484,0,80.31207,1999.358,2199.518,1,0,5,6,0,3,55.8,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.52583,9.116807,1.098612,7.695993,1
-11,1,0,1,5,125219,0,9106.079,37.42916,1,12,1,110.223,271.9941,257.0467,117.7955,0,639.2638,0,0,8,14,0,3,55.8,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.52583,9.116807,1.098612,6.460317,1
-2,1,100,0,1,125220,0,12213.6,35.87132,0,17,1,33.57314,10.8813,0,0,0,44.45444,0,0,0,5,0,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.73786,9.410387,1.609438,3.794465,1
-2,1,100,0,2,125220,0,12213.6,36.87132,0,17,1,23.54874,7.338445,0,0,0,30.88719,0,0,0,4,0,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.73786,9.410387,1.609438,3.430341,1
-2,1,100,0,3,125220,0,12213.6,37.87132,0,17,1,43.81047,4.189526,37.0773,0,0,85.07731,0,0,0,2,1,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.73786,9.410387,1.609438,4.44356,1
-2,1,100,0,4,125220,0,12213.6,38.87132,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.73786,9.410387,1.609438,,0
-2,1,100,0,5,125220,0,12213.6,39.87132,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.73786,9.410387,1.609438,,0
-2,1,100,0,1,125221,0,12213.6,10.94045,0,16,1,42.86571,.5395684,0,0,0,43.40528,0,0,0,1,2,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,3.770581,1
-2,1,100,0,2,125221,0,12213.6,11.94045,0,16,1,29.84666,8.598028,26.85104,0,0,65.29573,0,0,0,2,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,4.178926,1
-2,1,100,0,3,125221,0,12213.6,12.94045,0,16,1,7.381546,8.254364,0,0,0,15.63591,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,2.74957,1
-2,1,100,0,4,125221,0,12213.6,13.94045,0,16,1,195.6893,3.665283,0,0,0,199.3545,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,5.295085,1
-2,1,100,0,5,125221,0,12213.6,14.94045,0,16,1,90.71096,0,0,0,0,90.71096,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,4.507678,1
-2,1,100,0,1,125222,0,12213.6,33.19096,1,16,1,45.20384,15.19784,0,0,0,60.40168,0,0,0,3,0,5,71.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,80.14037,9.410387,1.609438,4.101017,1
-2,1,100,0,2,125222,0,12213.6,34.19096,1,16,1,21.35816,7.174151,0,0,0,28.53231,0,0,0,3,0,5,71.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,80.14037,9.410387,1.609438,3.351037,1
-2,1,100,0,3,125222,0,12213.6,35.19096,1,16,1,23.94015,4.239401,0,0,0,28.17955,0,0,0,3,0,5,71.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,80.14037,9.410387,1.609438,3.338597,1
-2,1,100,0,4,125222,0,12213.6,36.19096,1,16,1,6.915629,5.693868,0,0,0,12.6095,0,0,0,1,0,5,71.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,80.14037,9.410387,1.609438,2.53445,1
-2,1,100,0,5,125222,0,12213.6,37.19096,1,16,1,49.93652,2.653407,0,0,0,52.58993,0,0,0,2,0,5,71.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,80.14037,9.410387,1.609438,3.962525,1
-2,1,100,0,1,125223,0,12213.6,7.750855,0,16,1,34.77218,5.635491,0,0,0,40.40767,0,0,0,3,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,3.69902,1
-2,1,100,0,2,125223,0,12213.6,8.750855,0,16,1,13.96495,10.35049,0,0,0,24.31544,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,3.191112,1
-2,1,100,0,3,125223,0,12213.6,9.750855,0,16,1,29.55112,17.95511,0,0,0,47.50623,0,0,0,1,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,3.860861,1
-2,1,100,0,4,125223,0,12213.6,10.75086,0,16,1,15.3988,9.22084,0,0,0,24.61964,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,3.203545,1
-2,1,100,0,5,125223,0,12213.6,11.75086,0,16,1,11.84934,0,0,0,0,11.84934,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,87.05311,9.410387,1.609438,2.472273,1
-2,1,100,0,1,125224,0,12213.6,6.606434,1,16,1,31.41487,10.52158,0,0,0,41.93645,0,0,0,2,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,86.53913,9.410387,1.609438,3.736156,1
-2,1,100,0,2,125224,0,12213.6,7.606434,1,16,1,24.26068,11.22672,0,0,0,35.4874,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,86.53913,9.410387,1.609438,3.569178,1
-2,1,100,0,3,125224,0,12213.6,8.606434,1,16,1,1.995013,0,0,0,0,1.995013,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,86.53913,9.410387,1.609438,.6906503,1
-2,1,100,0,4,125224,0,12213.6,9.606434,1,16,1,14.01568,0,0,0,0,14.01568,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,86.53913,9.410387,1.609438,2.640176,1
-2,1,100,0,5,125224,0,12213.6,10.60643,1,16,1,13.22471,0,0,0,0,13.22471,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,86.53913,9.410387,1.609438,2.582087,1
-11,1,0,1,1,125229,0,22318.24,41.1143,1,12,1,151.6786,88.81295,26.6307,0,0,267.1223,0,0,0,16,0,8,74.7,21.7,1,,0,0,0,0,2.079442,0,0,0,0,1,0,0,68.03587,10.0132,2.079442,5.587707,1
-11,1,0,1,2,125229,0,22318.24,42.1143,1,12,1,225.0822,26.31435,0,0,0,251.3965,0,0,0,16,0,8,74.7,21.7,1,,0,0,0,0,2.079442,0,0,0,0,1,0,0,68.03587,10.0132,2.079442,5.527031,1
-11,1,0,1,3,125229,0,22318.24,43.1143,1,12,1,185.2868,61.14713,35.91022,0,0,282.3441,0,0,0,17,0,9,74.7,21.7,1,,0,0,0,0,2.197225,0,0,0,0,1,0,0,68.03587,10.0132,2.197225,5.643126,1
-11,1,0,1,1,125230,0,22318.24,17.30869,0,12,1,5.395683,6.564748,0,0,0,11.96043,0,0,0,0,0,8,80,13,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,80.52389,10.0132,2.079442,2.481604,1
-11,1,0,1,2,125230,0,22318.24,18.30869,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,80,13,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,80.52389,10.0132,2.079442,,0
-11,1,0,1,3,125230,0,22318.24,19.30869,0,12,1,17.45636,9.077307,0,0,0,26.53367,0,0,0,3,0,9,80,13,0,,0,0,0,0,2.197225,0,0,0,0,0,0,0,80.52389,10.0132,2.197225,3.278414,1
-11,1,0,1,1,125231,0,22318.24,18.41205,0,12,1,13.48921,5.749401,0,0,0,19.23861,0,0,0,2,0,8,52.6,0,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,78.67783,10.0132,2.079442,2.956919,1
-11,1,0,1,2,125231,0,22318.24,19.41205,0,12,1,49.8357,15.33406,32.04819,0,0,97.21796,0,0,0,4,0,8,52.6,0,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,78.67783,10.0132,2.079442,4.576955,1
-11,1,0,1,3,125231,0,22318.24,20.41205,0,12,1,32.91771,8.304239,0,0,700.02,741.2419,1,0,0,3,0,9,52.6,0,0,,0,0,0,0,2.197225,0,0,0,0,0,0,0,78.67783,10.0132,2.197225,6.608327,1
-11,1,0,1,1,125232,0,22318.24,14.19576,0,12,1,59.95204,14.92806,0,0,0,74.8801,0,0,0,6,0,8,80,4.3,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,74.01256,10.0132,2.079442,4.315888,1
-11,1,0,1,2,125232,0,22318.24,15.19576,0,12,1,21.90581,35.20263,0,0,0,57.10843,0,0,0,3,0,8,80,4.3,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,74.01256,10.0132,2.079442,4.044952,1
-11,1,0,1,3,125232,0,22318.24,16.19576,0,12,1,19.95012,16.7581,0,0,0,36.70823,0,0,0,3,0,9,80,4.3,0,,0,0,1,0,2.197225,0,0,0,0,1,0,0,74.01256,10.0132,2.197225,3.603001,1
-11,1,0,1,1,125233,0,22318.24,16.1807,1,12,1,90.22782,44.44844,27.56595,0,0,162.2422,0,0,0,7,0,8,75.8,0,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,74.24654,10.0132,2.079442,5.08909,1
-11,1,0,1,2,125233,0,22318.24,17.1807,1,12,1,19.16758,27.40964,0,0,491.6375,538.2147,1,0,0,3,0,8,75.8,0,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,74.24654,10.0132,2.079442,6.288258,1
-11,1,0,1,3,125233,0,22318.24,18.1807,1,12,1,334.2444,11.47132,0,0,11.97007,357.6858,0,0,0,7,0,9,75.8,0,0,,0,0,0,0,2.197225,0,0,0,0,0,0,0,74.24654,10.0132,2.197225,5.879655,1
-11,1,0,1,1,125234,0,22318.24,43.61123,0,16,1,67.14629,178.0456,55.44365,0,0,300.6355,0,0,0,8,0,8,81.1,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.31422,10.0132,2.079442,5.705899,1
-11,1,0,1,2,125234,0,22318.24,44.61123,0,16,1,65.71741,122.6451,0,0,0,188.3625,0,0,0,8,0,8,81.1,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.31422,10.0132,2.079442,5.238369,1
-11,1,0,1,3,125234,0,22318.24,45.61123,0,16,1,70.82294,125.1122,46.90773,0,0,242.8429,0,0,0,4,0,9,81.1,26.1,0,,0,0,0,0,2.197225,0,0,0,0,0,0,0,77.31422,10.0132,2.197225,5.492415,1
-11,1,0,1,1,125235,0,22318.24,10.42026,0,12,1,26.3789,21.07314,0,0,0,47.45204,0,0,0,4,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.64054,10.0132,2.079442,3.85972,1
-11,1,0,1,2,125235,0,22318.24,11.42026,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.64054,10.0132,2.079442,,0
-11,1,0,1,3,125235,0,22318.24,12.42026,0,12,1,41.39651,10.69825,0,0,0,52.09476,0,0,0,4,0,9,74.36826,13.73189,0,,0,0,1,0,2.197225,0,0,0,0,0,0,0,84.64054,10.0132,2.197225,3.953064,1
-11,1,0,1,1,125236,0,22318.24,11.50445,0,12,1,59.95204,63.31535,64.04076,0,0,187.3082,0,0,0,8,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,1,0,0,74.46355,10.0132,2.079442,5.232755,1
-11,1,0,1,2,125236,0,22318.24,12.50445,0,12,1,23.00109,41.15005,54.45783,0,0,118.609,0,0,0,4,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,1,0,0,74.46355,10.0132,2.079442,4.775832,1
-11,1,0,1,3,125236,0,22318.24,13.50445,0,12,1,68.82793,62.04489,55.70075,0,0,186.5736,0,0,0,7,0,9,74.36826,13.73189,1,,0,0,1,0,2.197225,0,0,0,0,1,0,0,74.46355,10.0132,2.197225,5.228826,1
-11,1,0,1,1,125258,0,7810.794,41.70842,0,12,1,78.61987,51.86199,7.703748,0,0,138.1856,0,0,0,7,0,5,77.9,13,1,,0,232,0,0,1.609438,5.446737,0,0,0,1,0,0,63.76923,8.96339,1.609438,4.928598,1
-11,1,0,1,2,125258,0,7810.794,42.70842,0,12,1,192.1611,112.0577,87.09853,0,2911.241,3302.559,3,0,0,19,1,5,77.9,13,1,,0,232,0,0,1.609438,5.446737,0,0,0,1,0,0,63.76923,8.96339,1.609438,8.102453,1
-11,1,0,1,3,125258,0,7810.794,43.70842,0,12,1,663.4787,111.7344,26.26363,0,1011.516,1812.993,1,0,0,0,2,5,77.9,13,1,,0,232,0,0,1.609438,5.446737,0,0,0,1,0,0,63.76923,8.96339,1.609438,7.502734,1
-11,1,0,1,1,125259,0,7810.794,31.87406,1,10,1,101.7252,56.00238,0,0,0,157.7275,0,0,0,12,0,5,80,17.4,0,,0,232,0,0,1.609438,5.446737,0,0,0,0,0,0,76.00816,8.96339,1.609438,5.060869,1
-11,1,0,1,2,125259,0,7810.794,32.87406,1,10,1,60.42461,36.89167,0,0,0,97.31628,0,0,0,7,0,5,80,17.4,0,,0,232,0,0,1.609438,5.446737,0,0,0,0,0,0,76.00816,8.96339,1.609438,4.577966,1
-11,1,0,1,3,125259,0,7810.794,33.87406,1,10,1,26.75917,31.91774,0,0,0,58.67691,0,0,0,3,0,5,80,17.4,0,,0,232,0,0,1.609438,5.446737,0,0,0,0,0,0,76.00816,8.96339,1.609438,4.072046,1
-11,1,0,1,1,125260,0,7810.794,10.96509,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,,0
-11,1,0,1,2,125260,0,7810.794,11.96509,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,,0
-11,1,0,1,3,125260,0,7810.794,12.96509,0,10,1,5.946482,1.982161,0,0,0,7.928642,0,0,0,1,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,2.070482,1
-11,1,0,1,1,125261,0,7810.794,12.13415,0,10,1,71.0113,22.08209,0,0,0,93.0934,0,0,0,9,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,4.533603,1
-11,1,0,1,2,125261,0,7810.794,13.13415,0,10,1,37.56124,0,1.633097,0,0,39.19434,0,0,0,2,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,3.668532,1
-11,1,0,1,3,125261,0,7810.794,14.13415,0,10,1,21.80377,4.6333,0,0,0,26.43707,0,0,0,2,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,3.274767,1
-11,1,0,1,1,125262,0,7810.794,9.24846,0,10,1,19.63117,3.920285,0,0,0,23.55146,0,0,0,3,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,3.159188,1
-11,1,0,1,2,125262,0,7810.794,10.24846,0,10,1,22.86336,11.64398,0,0,0,34.50735,0,0,0,3,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,3.541172,1
-11,1,0,1,3,125262,0,7810.794,11.24846,0,10,1,128.8404,3.468781,0,0,0,132.3092,0,0,0,2,0,5,74.36826,13.73189,0,,0,232,1,0,1.609438,5.446737,0,0,0,0,0,0,79.16512,8.96339,1.609438,4.885142,1
-10,1,50,0,1,125292,0,7562.655,3.129364,1,12,1,38.96883,4.118705,0,0,0,43.08753,0,0,0,4,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.76939,8.931109,1.386294,3.763234,1
-10,1,50,0,2,125292,0,7562.655,4.129364,1,12,1,31.21577,10.38335,0,0,0,41.59912,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.76939,8.931109,1.386294,3.728079,1
-10,1,50,0,3,125292,0,7562.655,5.129364,1,12,1,15.9601,0,0,0,0,15.9601,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.76939,8.931109,1.386294,2.770092,1
-10,1,50,0,4,125292,0,7562.655,6.129364,1,12,1,239.6496,0,0,0,0,239.6496,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.76939,8.931109,1.386294,5.479178,1
-10,1,50,0,5,125292,0,7562.655,7.129364,1,12,1,42.74228,2.530681,0,0,0,45.27296,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.76939,8.931109,1.386294,3.81271,1
-10,1,50,0,1,125293,0,7562.655,25.76591,0,12,1,6.594724,15.55755,0,0,0,22.15228,0,0,0,1,0,4,90,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.12549,8.931109,1.386294,3.09794,1
-10,1,50,0,2,125293,0,7562.655,26.76591,0,12,1,102.4096,5.733844,0,0,0,108.1435,0,0,0,2,0,4,90,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.12549,8.931109,1.386294,4.683459,1
-10,1,50,0,3,125293,0,7562.655,27.76591,0,12,1,199.0025,0,0,0,0,199.0025,0,0,0,0,28,4,90,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.12549,8.931109,1.386294,5.293317,1
-10,1,50,0,4,125293,0,7562.655,28.76591,0,12,1,96.81881,0,0,0,0,96.81881,0,0,0,0,21,4,90,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.12549,8.931109,1.386294,4.572841,1
-10,1,50,0,5,125293,0,7562.655,29.76591,0,12,1,57.97715,0,0,0,0,57.97715,0,0,0,0,13,4,90,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.12549,8.931109,1.386294,4.060049,1
-10,1,50,0,1,125294,0,7562.655,25.56058,1,12,1,20.38369,9.028777,0,0,0,29.41247,0,0,0,2,0,4,81.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,71.5183,8.931109,1.386294,3.381419,1
-10,1,50,0,2,125294,0,7562.655,26.56058,1,12,1,4.928806,19.43045,0,0,0,24.35925,0,0,0,1,0,4,81.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,71.5183,8.931109,1.386294,3.192912,1
-10,1,50,0,3,125294,0,7562.655,27.56058,1,12,1,9.102244,1.361596,0,0,0,10.46384,0,0,0,1,0,4,81.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,71.5183,8.931109,1.386294,2.347926,1
-10,1,50,0,4,125294,0,7562.655,28.56058,1,12,1,11.06501,0,0,0,0,11.06501,0,0,0,2,0,4,81.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,71.5183,8.931109,1.386294,2.403788,1
-10,1,50,0,5,125294,0,7562.655,29.56058,1,12,1,18.6204,0,0,0,0,18.6204,0,0,0,2,0,4,81.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,71.5183,8.931109,1.386294,2.924258,1
-10,1,50,0,1,125295,0,7562.655,1.284052,1,12,1,23.98082,5.905276,0,0,0,29.88609,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.6642,8.931109,1.386294,3.397393,1
-10,1,50,0,2,125295,0,7562.655,2.284052,1,12,1,45.96933,8.603505,0,0,0,54.57284,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.6642,8.931109,1.386294,3.999536,1
-10,1,50,0,3,125295,0,7562.655,3.284052,1,12,1,25.93516,5.506235,0,0,0,31.4414,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.6642,8.931109,1.386294,3.448125,1
-10,1,50,0,4,125295,0,7562.655,4.284052,1,12,1,19.8248,0,0,0,0,19.8248,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.6642,8.931109,1.386294,2.986934,1
-10,1,50,0,5,125295,0,7562.655,5.284052,1,12,1,175.9204,0,0,0,320.4655,496.386,1,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.6642,8.931109,1.386294,6.207354,1
-7,1,25,1,1,125310,0,6375.931,42.06982,1,12,1,121.3563,27.78108,0,0,0,149.1374,0,0,0,3,0,2,83.2,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.44223,8.760442,.6931472,5.004868,1
-7,1,25,1,2,125310,0,6375.931,43.06982,1,12,1,148.6119,21.5841,0,0,0,170.196,0,0,0,4,0,2,83.2,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.44223,8.760442,.6931472,5.13695,1
-7,1,25,1,3,125310,0,6375.931,44.06982,1,12,1,77.7998,32.16056,0,0,0,109.9604,0,0,0,1,0,2,83.2,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.44223,8.760442,.6931472,4.70012,1
-7,1,25,1,4,125310,0,6375.931,45.06982,1,12,1,132.1707,21.61542,0,0,0,153.7861,0,0,0,3,0,2,83.2,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.44223,8.760442,.6931472,5.035563,1
-7,1,25,1,5,125310,0,6375.931,46.06982,1,12,1,125.7888,15.73412,25.87295,0,676.8364,844.2322,1,0,0,3,1,2,83.2,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.44223,8.760442,.6931472,6.738428,1
-7,1,25,1,1,125311,0,6375.931,52.39151,0,9,1,82.09399,0,34.50327,0,0,116.5973,0,0,0,2,1,2,95.8,26.1,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,66.65314,8.760442,.6931472,4.758726,1
-7,1,25,1,2,125311,0,6375.931,53.39151,0,9,1,62.0577,0,0,0,0,62.0577,0,0,0,1,0,2,95.8,26.1,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,66.65314,8.760442,.6931472,4.128065,1
-7,1,25,1,3,125311,0,6375.931,54.39151,0,9,1,83.74628,2.65114,0,0,1015.084,1101.482,1,0,0,3,0,2,95.8,26.1,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,66.65314,8.760442,.6931472,7.004412,1
-7,1,25,1,4,125311,0,6375.931,55.39151,0,9,1,122.9922,53.419,0,0,0,176.4112,0,0,0,4,0,2,95.8,26.1,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,66.65314,8.760442,.6931472,5.172818,1
-7,1,25,1,5,125311,0,6375.931,56.39151,0,9,1,87.50526,51.59865,35.75936,0,0,174.8633,0,0,0,1,1,2,95.8,26.1,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,66.65314,8.760442,.6931472,5.164004,1
-4,1,100,1,1,125323,0,15324.44,56.06297,0,14,1,32.71862,7.614515,0,0,0,40.33313,0,0,0,2,0,2,95.8,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.37316,9.63727,.6931472,3.697173,1
-4,1,100,1,2,125323,0,15324.44,57.06297,0,14,1,19.59717,0,0,0,0,19.59717,0,0,0,2,0,2,95.8,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.37316,9.63727,.6931472,2.975385,1
-4,1,100,1,3,125323,0,15324.44,58.06297,0,14,1,33.44896,0,35.99108,0,0,69.44004,0,0,0,2,0,2,95.8,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.37316,9.63727,.6931472,4.240464,1
-4,1,100,1,4,125323,0,15324.44,59.06297,0,14,1,20.19275,0,0,0,0,20.19275,0,0,0,2,0,2,95.8,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.37316,9.63727,.6931472,3.005324,1
-4,1,100,1,5,125323,0,15324.44,60.06297,0,14,1,6.310475,0,0,0,0,6.310475,0,0,0,1,0,2,95.8,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.37316,9.63727,.6931472,1.842211,1
-4,1,100,1,1,125324,0,15324.44,55.58659,1,12,1,36.58537,28.40571,26.73409,0,0,91.72517,0,0,0,4,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,66.03719,9.63727,.6931472,4.518797,1
-4,1,100,1,2,125324,0,15324.44,56.58659,1,12,1,79.47741,10.17964,0,0,0,89.65705,0,0,0,3,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,66.03719,9.63727,.6931472,4.495992,1
-4,1,100,1,3,125324,0,15324.44,57.58659,1,12,1,80.77304,76.58077,0,0,0,157.3538,0,0,0,10,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,66.03719,9.63727,.6931472,5.058497,1
-4,1,100,1,4,125324,0,15324.44,58.58659,1,12,1,44.51583,44.19917,38.36622,0,0,127.0812,0,0,0,5,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,66.03719,9.63727,.6931472,4.844827,1
-4,1,100,1,5,125324,0,15324.44,59.58659,1,12,1,123.6853,45.18721,32.97434,0,0,201.8469,0,0,0,11,4,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,66.03719,9.63727,.6931472,5.307509,1
-6,1,25,1,1,125337,0,6566.377,32.282,1,12,1,66.54888,39.25795,0,0,0,105.8068,0,0,0,5,1,5,36.8,17.4,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.28,8.78987,1.609438,4.661615,1
-6,1,25,1,2,125337,0,6566.377,33.282,1,12,1,26.95418,6.318059,0,0,0,33.27224,0,0,0,3,0,5,36.8,17.4,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.28,8.78987,1.609438,3.504723,1
-6,1,25,1,3,125337,0,6566.377,34.282,1,12,1,19.65602,2.358722,0,0,0,22.01474,0,0,0,2,0,5,36.8,17.4,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.28,8.78987,1.609438,3.091712,1
-6,1,25,1,4,125337,0,6566.377,35.282,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,36.8,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,66.28,8.78987,1.386294,,0
-6,1,25,1,5,125337,0,6566.377,36.282,1,12,1,78.69946,.8336807,0,0,0,79.53314,0,0,0,5,0,4,36.8,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,66.28,8.78987,1.386294,4.376174,1
-6,1,25,1,1,125338,0,6566.377,11.11567,0,12,1,110.1296,19.84099,0,0,3467.986,3597.956,1,0,0,7,0,5,74.36826,13.73189,1,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.53985,8.78987,1.609438,8.188121,1
-6,1,25,1,2,125338,0,6566.377,12.11567,0,12,1,69.6496,3.876011,0,0,0,73.5256,0,0,0,1,1,5,74.36826,13.73189,1,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.53985,8.78987,1.609438,4.297634,1
-6,1,25,1,3,125338,0,6566.377,13.11567,0,12,1,40.25553,4.19656,0,0,0,44.45209,0,0,0,2,0,5,74.36826,13.73189,1,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.53985,8.78987,1.609438,3.794412,1
-6,1,25,1,4,125338,0,6566.377,14.11567,0,12,1,30.99362,0,0,0,0,30.99362,0,0,0,1,0,4,74.36826,13.73189,1,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.53985,8.78987,1.386294,3.433781,1
-6,1,25,1,5,125338,0,6566.377,15.11567,0,12,1,40.85035,6.669446,0,0,0,47.5198,0,0,0,5,0,4,74.36826,13.73189,1,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.53985,8.78987,1.386294,3.861146,1
-6,1,25,1,1,125339,0,6566.377,12.27378,1,12,1,11.77856,1.737338,0,0,0,13.5159,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,76.26729,8.78987,1.609438,2.603867,1
-6,1,25,1,2,125339,0,6566.377,13.27378,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,76.26729,8.78987,1.609438,,0
-6,1,25,1,3,125339,0,6566.377,14.27378,1,12,1,21.13022,.5896806,0,0,397.5676,419.2875,1,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,76.26729,8.78987,1.609438,6.038557,1
-6,1,25,1,4,125339,0,6566.377,15.27378,1,12,1,25.97995,0,0,0,0,25.97995,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.26729,8.78987,1.386294,3.257325,1
-6,1,25,1,5,125339,0,6566.377,16.27378,1,12,1,5.002084,.8336807,0,0,0,5.835765,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.26729,8.78987,1.386294,1.764005,1
-6,1,25,1,1,125340,0,6566.377,5.952087,1,12,1,26.50177,2.173145,0,0,0,28.67491,0,0,0,4,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.02587,8.78987,1.609438,3.356023,1
-6,1,25,1,2,125340,0,6566.377,6.952087,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.02587,8.78987,1.609438,,0
-6,1,25,1,3,125340,0,6566.377,7.952087,1,12,1,90.90909,11.32187,0,0,278.3342,380.5651,1,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.02587,8.78987,1.609438,5.941658,1
-6,1,25,1,4,125340,0,6566.377,8.952087,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.02587,8.78987,1.386294,,0
-6,1,25,1,5,125340,0,6566.377,9.952087,1,12,1,5.835765,0,0,0,0,5.835765,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.02587,8.78987,1.386294,1.764005,1
-6,1,25,1,1,125341,0,6566.377,35.60849,0,12,1,167.8445,71.67255,0,0,0,239.5171,0,0,0,11,0,5,34.7,21.7,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,61.01952,8.78987,1.609438,5.478625,1
-6,1,25,1,2,125341,0,6566.377,36.60849,0,12,1,36.1186,20.60917,0,0,0,56.72776,0,0,0,7,0,5,34.7,21.7,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,61.01952,8.78987,1.609438,4.038264,1
-6,1,25,1,3,125341,0,6566.377,37.60849,0,12,.9561644,0,4.058968,0,0,0,4.058968,0,0,0,0,0,5,34.7,21.7,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,61.01952,8.78987,1.609438,1.400929,1
-5,1,25,0,1,125352,0,5798.387,31.08829,0,12,1,15.31213,3.386337,0,0,0,18.69847,0,0,0,1,1,3,72.5,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,66.24147,8.665507,1.098612,2.928442,1
-5,1,25,0,2,125352,0,5798.387,32.08829,0,12,1,111.0512,3.22372,0,0,0,114.2749,0,0,0,2,0,3,72.5,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,66.24147,8.665507,1.098612,4.738607,1
-5,1,25,0,3,125352,0,5798.387,33.08829,0,12,1,266.0934,5.307125,0,0,783.8133,1055.214,1,0,0,4,0,3,72.5,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,66.24147,8.665507,1.098612,6.961499,1
-5,1,25,0,1,125353,0,5798.387,30.91855,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,69.36126,8.665507,1.098612,,0
-5,1,25,0,2,125353,0,5798.387,31.91855,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,69.36126,8.665507,1.098612,,0
-5,1,25,0,3,125353,0,5798.387,32.91855,1,12,1,36.85504,0,0,0,0,36.85504,0,0,0,1,0,3,63.8,13.73189,0,,545,545,0,0,1.098612,6.300786,0,3.258096,7.68708,1,0,0,69.36126,8.665507,1.098612,3.606992,1
-5,1,25,0,1,125354,0,5798.387,10.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,545,545,1,1,1.098612,6.300786,0,3.258096,7.68708,1,0,0,73.12908,8.665507,1.098612,,0
-5,1,25,0,2,125354,0,5798.387,11.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,545,545,1,1,1.098612,6.300786,0,3.258096,7.68708,1,0,0,73.12908,8.665507,1.098612,,0
-5,1,25,0,3,125354,0,5798.387,12.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,545,545,1,1,1.098612,6.300786,0,3.258096,7.68708,1,0,0,73.12908,8.665507,1.098612,,0
-3,1,100,1,1,125355,0,4906.328,31.66051,1,12,1,25.58001,32.79596,0,0,0,58.37597,0,0,0,4,0,1,77.9,17.4,0,,700,700,0,0,0,6.55108,1,0,0,0,0,0,78.576,8.498485,0,4.066904,1
-3,1,100,1,2,125355,0,4906.328,32.66051,1,12,1,87.6429,47.50681,33.5656,0,0,168.7153,0,0,0,10,0,1,77.9,17.4,0,,700,700,0,0,0,6.55108,1,0,0,0,0,0,78.576,8.498485,0,5.128212,1
-3,1,100,1,3,125355,0,4906.328,33.66051,1,12,1,12.3885,17.92864,0,0,0,30.31715,0,0,0,1,0,1,77.9,17.4,0,,700,700,0,0,0,6.55108,1,0,0,0,0,0,78.576,8.498485,0,3.411713,1
-4,1,100,0,1,125356,0,2566.822,5.303217,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,537,0,1,0,.6931472,0,1,0,0,1,0,0,75.47171,7.850813,.6931472,,0
-4,1,100,0,2,125356,0,2566.822,6.303217,0,10,1,11.01322,0,0,0,0,11.01322,0,0,0,1,0,2,74.36826,13.73189,0,,537,0,1,0,.6931472,0,1,0,0,1,0,0,75.47171,7.850813,.6931472,2.399096,1
-4,1,100,0,3,125356,0,2566.822,7.303217,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,537,0,1,0,.6931472,0,1,0,0,1,0,0,75.47171,7.850813,.6931472,,0
-4,1,100,0,1,125357,0,2566.822,37.57426,1,10,1,15.07841,1.833534,0,0,713.3414,730.2533,1,0,0,1,0,2,76.3,13.73189,0,,537,0,0,0,.6931472,0,1,0,0,1,0,0,63.56458,7.850813,.6931472,6.593391,1
-4,1,100,0,2,125357,0,2566.822,38.57426,1,10,1,13.76652,0,47.75881,0,0,61.52533,0,0,0,1,0,2,76.3,13.73189,0,,537,0,0,0,.6931472,0,1,0,0,1,0,0,63.56458,7.850813,.6931472,4.119449,1
-4,1,100,0,3,125357,0,2566.822,39.57426,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,76.3,13.73189,0,,537,0,0,0,.6931472,0,1,0,0,1,0,0,63.56458,7.850813,.6931472,,0
-4,1,100,1,1,125386,0,7636.477,14.57632,1,15,1,5.395683,14.1307,0,0,244.2866,263.813,1,0,0,1,0,2,92.2,4.3,0,,1000,1000,1,1,.6931472,6.907755,1,0,0,0,0,0,75.45777,8.940823,.6931472,5.57524,1
-4,1,100,1,2,125386,0,7636.477,15.57632,1,15,1,0,0,0,0,0,0,0,0,0,0,0,2,92.2,4.3,0,,1000,1000,1,1,.6931472,6.907755,1,0,0,0,0,0,75.45777,8.940823,.6931472,,0
-4,1,100,1,3,125386,0,7636.477,16.57632,1,15,1,0,0,0,0,0,0,0,0,0,0,0,2,92.2,4.3,0,,1000,1000,1,1,.6931472,6.907755,1,0,0,0,0,0,75.45777,8.940823,.6931472,,0
-4,1,100,1,1,125387,0,7636.477,55.44969,1,15,1,14.98801,10.7554,37.05036,0,0,62.79377,0,0,0,1,0,2,55.8,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.79291,8.940823,.6931472,4.139856,1
-4,1,100,1,2,125387,0,7636.477,56.44969,1,15,1,6.571742,2.185104,0,0,0,8.756845,0,0,0,1,0,2,55.8,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.79291,8.940823,.6931472,2.169836,1
-4,1,100,1,3,125387,0,7636.477,57.44969,1,15,1,74.81297,5.950125,0,0,0,80.76309,0,0,0,3,0,2,55.8,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.79291,8.940823,.6931472,4.39152,1
-2,1,100,0,1,125410,0,4534.119,23.95893,1,16,1,14.13428,1.413428,0,0,0,15.5477,0,0,0,3,0,1,68.4,4.3,0,,345,345,0,0,0,5.843544,1,0,0,0,0,0,78.4139,8.419606,0,2.743913,1
-2,1,100,0,2,125410,0,4534.119,24.95893,1,16,1,10.78167,1.407008,0,0,0,12.18868,0,0,0,2,0,1,68.4,4.3,0,,345,345,0,0,0,5.843544,1,0,0,0,0,0,78.4139,8.419606,0,2.500508,1
-2,1,100,0,3,125410,0,4534.119,25.95893,1,16,1,29.09091,1.184275,12.30467,0,257.5184,300.0983,1,0,0,1,2,1,68.4,4.3,0,,345,345,0,0,0,5.843544,1,0,0,0,0,0,78.4139,8.419606,0,5.70411,1
-2,1,100,0,4,125410,0,4534.119,26.95893,1,16,1,65.01823,7.301732,0,0,414.5852,486.9052,1,0,0,1,0,1,68.4,4.3,0,,345,345,0,0,0,5.843544,1,0,0,0,0,0,78.4139,8.419606,0,6.188069,1
-2,1,100,0,5,125410,0,4534.119,27.95893,1,16,1,65.23551,4.864527,0,0,0,70.10004,0,0,0,2,0,2,68.4,4.3,0,,345,345,0,0,.6931472,5.843544,1,0,0,0,0,0,78.4139,8.419606,.6931472,4.249923,1
-11,1,0,1,1,125425,0,6586.849,19.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.6,17.4,0,,0,0,0,0,0,0,0,0,0,1,0,0,66.48602,8.792982,0,,0
-11,1,0,1,2,125425,0,6586.849,20.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.6,17.4,0,,0,0,0,0,0,0,0,0,0,1,0,0,66.48602,8.792982,0,,0
-11,1,0,1,3,125425,0,6586.849,21.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.6,17.4,0,,0,0,0,0,0,0,0,0,0,1,0,0,66.48602,8.792982,0,,0
-11,1,0,1,4,125425,0,6586.849,22.63039,0,12,1,32.73398,4.61042,0,0,0,37.3444,0,0,0,3,1,2,71.6,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.48602,8.792982,.6931472,3.620183,1
-11,1,0,1,5,125425,0,6586.849,23.63039,0,12,1,12.69573,0,0,0,0,12.69573,0,0,0,0,1,2,71.6,17.4,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.48602,8.792982,.6931472,2.541265,1
-11,1,0,1,1,125426,0,9542.002,19.99726,0,12,1,56.95444,4.046762,0,0,0,61.0012,0,0,0,6,0,1,69.5,4.3,0,,0,0,0,0,0,0,0,0,0,0,0,0,78.01653,9.163564,0,4.110894,1
-11,1,0,1,2,125426,0,9542.002,20.99726,0,12,1,10.9529,.5476452,0,0,0,11.50055,0,0,0,1,0,1,69.5,4.3,0,,0,0,0,0,0,0,0,0,0,0,0,0,78.01653,9.163564,0,2.442395,1
-11,1,0,1,3,125426,0,9542.002,21.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,69.5,4.3,0,,0,0,0,0,0,0,0,0,0,0,0,0,78.01653,9.163564,0,,0
-11,1,0,1,4,125426,0,9542.002,22.99726,0,12,1,82.06547,18.02674,35.17289,0,0,135.2651,0,0,0,5,1,1,69.5,4.3,0,,0,0,0,0,0,0,0,0,0,0,0,0,78.01653,9.163564,0,4.907237,1
-11,1,0,1,5,125426,0,9542.002,23.99726,0,12,1,23.2755,6.982649,0,0,0,30.25815,0,0,0,1,0,1,69.5,4.3,0,,0,0,0,0,0,0,0,0,0,0,0,0,78.01653,9.163564,0,3.409765,1
-4,1,100,1,1,125432,0,2454.715,46.06434,0,17,1,108.813,112.3921,0,35.97122,0,221.205,0,0,5,11,1,4,38.9,8.7,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84441,7.806173,1.386294,5.39909,1
-4,1,100,1,2,125432,0,2454.715,47.06434,0,17,1,370.4819,148.0449,23.46659,690.1698,2736.95,3278.943,3,0,48,44,1,4,38.9,8.7,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84441,7.806173,1.386294,8.095277,1
-4,1,100,1,3,125432,0,2454.715,48.06434,0,17,1,168.0798,57.54115,0,139.6509,0,225.6209,0,0,7,7,0,4,38.9,8.7,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.84441,7.806173,1.386294,5.418856,1
-4,1,100,1,1,125433,0,2454.715,17.00479,1,12,1,38.3693,.8693045,0,0,0,39.23861,0,0,0,1,0,4,76.8,13,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,64.73034,7.806173,1.386294,3.669661,1
-4,1,100,1,2,125433,0,2454.715,18.00479,1,12,1,18.15444,2.102957,33.7678,0,0,54.02519,0,0,0,1,1,4,76.8,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,64.73034,7.806173,1.386294,3.98945,1
-4,1,100,1,3,125433,0,2454.715,19.00479,1,12,1,22.44389,0,0,0,0,22.44389,0,0,0,3,0,4,76.8,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,64.73034,7.806173,1.386294,3.111018,1
-4,1,100,1,1,125434,0,2454.715,9.601643,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,1,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,76.38216,7.806173,1.386294,,0
-4,1,100,1,2,125434,0,2454.715,10.60164,1,12,1,52.35487,0,0,0,0,52.35487,0,0,0,3,1,4,74.36826,13.73189,1,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,76.38216,7.806173,1.386294,3.958045,1
-4,1,100,1,3,125434,0,2454.715,11.60164,1,12,1,18.95262,0,0,0,0,18.95262,0,0,0,1,0,4,74.36826,13.73189,1,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,76.38216,7.806173,1.386294,2.941942,1
-4,1,100,1,1,125435,0,2454.715,47.8987,1,12,1,53.95683,68.91487,0,0,0,122.8717,0,0,0,8,0,4,42.1,39.1,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,54.82101,7.806173,1.386294,4.811141,1
-4,1,100,1,2,125435,0,2454.715,48.8987,1,12,1,60.78861,79.4414,30.33406,0,325.3012,495.8653,1,0,0,6,1,4,42.1,39.1,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,54.82101,7.806173,1.386294,6.206304,1
-4,1,100,1,3,125435,0,2454.715,49.8987,1,12,1,22.44389,2.009975,0,0,0,24.45387,0,0,0,3,0,4,42.1,39.1,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,54.82101,7.806173,1.386294,3.196788,1
-6,1,25,1,1,125454,0,1093.672,60.81862,1,6,1,32.71862,20.09518,0,0,0,52.8138,0,0,0,3,0,1,75.8,21.7,1,,226,226,0,0,0,5.420535,0,3.258096,6.806829,1,0,0,62.52559,6.99821,0,3.966773,1
-6,1,25,1,2,125454,0,1093.672,61.81862,1,6,1,26.12956,15.77572,0,0,0,41.90528,0,0,0,3,1,1,75.8,21.7,1,,226,226,0,0,0,5.420535,0,3.258096,6.806829,1,0,0,62.52559,6.99821,0,3.735412,1
-6,1,25,1,3,125454,0,1093.672,62.81862,1,6,1,16.84836,6.868186,0,0,0,23.71655,0,0,0,3,0,1,75.8,21.7,1,,226,226,0,0,0,5.420535,0,3.258096,6.806829,1,0,0,62.52559,6.99821,0,3.166173,1
-6,1,25,1,1,125455,0,3467.742,21.80698,1,12,1,27.95955,0,41.047,0,0,69.00655,0,0,0,2,0,1,68.4,8.7,0,,530,530,0,0,0,6.272877,0,3.258096,7.659172,0,0,0,79.25372,8.151547,0,4.234201,1
-6,1,25,1,2,125455,0,3467.742,22.80698,1,12,1,26.12956,9.450191,13.60915,0,0,49.1889,0,0,0,1,1,1,68.4,8.7,0,,530,530,0,0,0,6.272877,0,3.258096,7.659172,0,0,0,79.25372,8.151547,0,3.895668,1
-6,1,25,1,3,125455,0,3467.742,23.80698,1,12,1,20.19326,0,0,0,0,20.19326,0,0,0,1,0,1,68.4,8.7,0,,530,530,0,0,0,6.272877,0,3.258096,7.659172,0,0,0,79.25372,8.151547,0,3.005349,1
-3,1,100,0,1,125484,0,4986.759,33.18549,0,11,1,18.8457,2.915194,0,0,0,21.76089,0,0,0,3,0,3,77.9,0,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,67.92956,8.514742,1.098612,3.080115,1
-3,1,100,0,2,125484,0,4986.759,34.18549,0,11,1,21.56334,0,0,0,0,21.56334,0,0,0,1,0,3,77.9,0,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,67.92956,8.514742,1.098612,3.070995,1
-3,1,100,0,3,125484,0,4986.759,35.18549,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.9,0,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,67.92956,8.514742,1.098612,,0
-3,1,100,0,1,125485,0,4986.759,6.672143,0,12,1,12.36749,28.97527,9.234393,0,360.424,411.0012,1,0,0,3,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,1,0,0,73.90472,8.514742,1.098612,6.018596,1
-3,1,100,0,2,125485,0,4986.759,7.672143,0,12,1,138.7062,37.19677,0,0,0,175.903,0,0,0,17,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,1,0,0,73.90472,8.514742,1.098612,5.169932,1
-3,1,100,0,3,125485,0,4986.759,8.672142,0,12,1,80.09828,7.149877,0,0,0,87.24815,0,0,0,21,1,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,1,0,0,73.90472,8.514742,1.098612,4.468756,1
-3,1,100,0,1,125486,0,4986.759,29.27858,1,12,1,19.43463,5.859835,0,0,0,25.29446,0,0,0,5,0,3,44.2,39.1,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,68.93575,8.514742,1.098612,3.230586,1
-3,1,100,0,2,125486,0,4986.759,30.27858,1,12,1,62.53369,97.96765,53.36927,0,2370.226,2584.097,2,0,0,5,0,3,44.2,39.1,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,68.93575,8.514742,1.098612,7.857131,1
-3,1,100,0,3,125486,0,4986.759,31.27858,1,12,1,33.90664,87.46928,0,0,0,121.3759,0,0,0,3,0,3,44.2,39.1,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,68.93575,8.514742,1.098612,4.798892,1
-11,1,0,0,1,125501,1,9055.211,39.57837,1,12,1,348.0216,43.64508,0,0,0,391.6667,0,0,0,10,0,8,45,13.73189,1,,0,0,0,0,2.079442,0,0,0,0,0,0,1,66.24201,9.111206,2.079442,5.970411,1
-11,1,0,0,2,125501,1,9055.211,40.57837,1,12,1,59.96714,7.721797,0,0,0,67.68893,0,0,0,1,0,8,45,13.73189,1,,0,0,0,0,2.079442,0,0,0,0,0,0,1,66.24201,9.111206,2.079442,4.214923,1
-11,1,0,0,3,125501,1,9055.211,41.57837,1,12,1,3.990025,12.06983,0,0,0,16.05985,0,0,0,1,0,8,45,13.73189,1,,0,0,0,0,2.079442,0,0,0,0,0,0,1,66.24201,9.111206,2.079442,2.776322,1
-11,1,0,0,4,125501,1,9055.211,42.57837,1,12,1,13.83126,21.96865,0,0,0,35.79991,0,0,0,2,0,8,45,13.73189,1,,0,0,0,0,2.079442,0,0,0,0,0,0,1,66.24201,9.111206,2.079442,3.577945,1
-11,1,0,0,5,125501,1,9055.211,43.57837,1,12,1,26.02624,20.94795,3.537876,0,0,50.51206,0,0,0,1,0,8,45,13.73189,1,,0,0,0,0,2.079442,0,0,0,0,0,0,1,66.24201,9.111206,2.079442,3.922212,1
-11,1,0,0,1,125502,1,9055.211,9.535934,1,12,1,64.7482,0,0,0,0,64.7482,0,0,0,2,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,78.46435,9.111206,2.079442,4.170506,1
-11,1,0,0,2,125502,1,9055.211,10.53593,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,78.46435,9.111206,2.079442,,0
-11,1,0,0,3,125502,1,9055.211,11.53593,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,78.46435,9.111206,2.079442,,0
-11,1,0,0,4,125502,1,9055.211,12.53593,1,12,1,56.93868,0,0,0,0,56.93868,0,0,0,3,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,78.46435,9.111206,2.079442,4.041975,1
-11,1,0,0,5,125502,1,9055.211,13.53593,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,78.46435,9.111206,2.079442,,0
-11,1,0,0,1,125503,1,9055.211,4.971937,0,12,1,35.3717,1.858513,0,0,0,37.23022,0,0,0,1,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.5467,9.111206,2.079442,3.617121,1
-11,1,0,0,2,125503,1,9055.211,5.971937,0,12,1,0,2.135816,0,0,0,2.135816,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.5467,9.111206,2.079442,.7588488,1
-11,1,0,0,3,125503,1,9055.211,6.971937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.5467,9.111206,2.079442,,0
-11,1,0,0,4,125503,1,9055.211,7.971937,0,12,1,45.50484,0,0,0,0,45.50484,0,0,0,2,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.5467,9.111206,2.079442,3.817819,1
-11,1,0,0,5,125503,1,9055.211,8.971937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.5467,9.111206,2.079442,,0
-11,1,0,0,1,125504,1,9055.211,16.19986,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,63.8,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,,0
-11,1,0,0,2,125504,1,9055.211,17.19986,0,12,1,146.2486,0,0,0,0,146.2486,0,0,0,7,0,8,63.8,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,4.985308,1
-11,1,0,0,3,125504,1,9055.211,18.19986,0,12,1,52.36908,0,0,0,0,52.36908,0,0,0,5,0,8,63.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,3.958316,1
-11,1,0,0,4,125504,1,9055.211,19.19986,0,12,1,0,5.928999,0,0,0,5.928999,0,0,0,0,0,8,63.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,1.779855,1
-11,1,0,0,5,125504,1,9055.211,20.19986,0,12,1,45.2391,0,0,0,0,45.2391,0,0,0,1,0,8,63.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,3.811962,1
-11,1,0,0,1,125505,1,9055.211,7.827516,0,12,1,25.77938,1.396883,0,0,0,27.17626,0,0,0,2,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,79.24362,9.111206,2.079442,3.302344,1
-11,1,0,0,2,125505,1,9055.211,8.827516,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,79.24362,9.111206,2.079442,,0
-11,1,0,0,3,125505,1,9055.211,9.827516,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,79.24362,9.111206,2.079442,,0
-11,1,0,0,4,125505,1,9055.211,10.82752,0,12,1,5.532504,0,0,0,0,5.532504,0,0,0,1,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,79.24362,9.111206,2.079442,1.71064,1
-11,1,0,0,5,125505,1,9055.211,11.82752,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,1,0,0,79.24362,9.111206,2.079442,,0
-11,1,0,0,1,125506,1,9055.211,14.91307,0,12,1,31.65468,1.318945,0,0,0,32.97362,0,0,0,2,0,8,80,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,3.495708,1
-11,1,0,0,2,125506,1,9055.211,15.91307,0,12,1,190.0986,11.74699,0,0,0,201.8456,0,0,0,2,0,8,80,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,5.307503,1
-11,1,0,0,3,125506,1,9055.211,16.91307,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,80,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,,0
-11,1,0,0,4,125506,1,9055.211,17.91307,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,80,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,,0
-11,1,0,0,5,125506,1,9055.211,18.91307,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,80,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,75.33212,9.111206,2.079442,,0
-11,1,0,0,1,125507,1,9055.211,37.17728,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8,73.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,1,0,0,62.82508,9.111206,2.079442,,0
-11,1,0,0,2,125507,1,9055.211,38.17728,0,3,1,8.214677,4.791895,0,0,699.9124,712.9189,1,0,0,1,0,8,73.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,1,0,0,62.82508,9.111206,2.079442,6.569368,1
-11,1,0,0,3,125507,1,9055.211,39.17728,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8,73.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,1,0,0,62.82508,9.111206,2.079442,,0
-11,1,0,0,4,125507,1,9055.211,40.17728,0,3,1,28.5846,5.048409,0,0,0,33.63301,0,0,0,6,0,8,73.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,1,0,0,62.82508,9.111206,2.079442,3.515508,1
-11,1,0,0,5,125507,1,9055.211,41.17728,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8,73.8,13.73189,0,,0,0,0,0,2.079442,0,0,0,0,1,0,0,62.82508,9.111206,2.079442,,0
-11,1,0,0,1,125520,1,9542.002,13.06776,1,8,1,23.79536,8.090423,0,0,0,31.88578,0,0,0,3,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,78.41846,9.163564,1.098612,3.46216,1
-11,1,0,0,2,125520,1,9542.002,14.06776,1,8,1,45.18236,8.111051,0,0,0,53.29342,0,0,0,4,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,78.41846,9.163564,1.098612,3.975813,1
-11,1,0,0,3,125520,1,9542.002,15.06776,1,8,1,77.05649,6.417245,0,0,0,83.47374,0,0,0,5,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,78.41846,9.163564,1.098612,4.424532,1
-11,1,0,0,1,125521,1,9542.002,55.04175,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,98.7,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,66.12138,9.163564,1.098612,,0
-11,1,0,0,2,125521,1,9542.002,56.04175,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,98.7,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,66.12138,9.163564,1.098612,,0
-11,1,0,0,3,125521,1,9542.002,57.04175,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,98.7,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,66.12138,9.163564,1.098612,,0
-11,1,0,0,1,125522,1,9542.002,46.06982,1,8,1,52.94468,108.6615,0,0,0,161.6062,0,0,0,9,0,3,91.3,13.73189,1,,0,0,0,0,1.098612,0,0,0,0,0,1,0,61.18452,9.163564,1.098612,5.085163,1
-11,1,0,0,2,125522,1,9542.002,47.06982,1,8,1,59.88024,77.16386,0,0,0,137.0441,0,0,0,9,0,3,91.3,13.73189,1,,0,0,0,0,1.098612,0,0,0,0,0,1,0,61.18452,9.163564,1.098612,4.920303,1
-11,1,0,0,3,125522,1,9542.002,48.06982,1,8,1,90.68385,107.5322,0,0,0,198.216,0,0,0,10,0,3,91.3,13.73189,1,,0,0,0,0,1.098612,0,0,0,0,0,1,0,61.18452,9.163564,1.098612,5.289358,1
-5,1,25,0,1,125535,1,4560.794,54.19576,1,9,1,28.17746,0,0,0,0,28.17746,0,0,0,2,0,1,81.3,13.73189,0,,305,305,0,0,0,5.720312,0,3.258096,7.106606,0,1,0,62.11581,8.425471,0,3.338522,1
-5,1,25,0,2,125535,1,4560.794,55.19576,1,9,1,89.12924,14.40307,84.12924,0,0,187.6616,0,0,0,5,0,1,81.3,13.73189,0,,305,305,0,0,0,5.720312,0,3.258096,7.106606,0,1,0,62.11581,8.425471,0,5.23464,1
-5,1,25,0,3,125535,1,4560.794,56.19576,1,9,1,159.1022,0,0,0,54.86284,213.9651,1,1,0,9,0,1,81.3,13.73189,0,,305,305,0,0,0,5.720312,0,3.258096,7.106606,0,1,0,62.11581,8.425471,0,5.365813,1
-5,1,25,0,4,125535,1,4560.794,57.19576,1,9,1,1629.986,87.47349,369.29,0,10612.44,12699.19,6,0,0,48,99,1,81.3,13.73189,0,,305,305,0,0,0,5.720312,0,3.258096,7.106606,0,1,0,62.11581,8.425471,0,9.449294,1
-5,1,25,0,5,125535,1,4560.794,58.19576,1,9,.2684931,1913.957,74.28693,70.22429,0,445.6665,2504.135,1,0,0,8,78,1,81.3,13.73189,0,,305,305,0,0,0,5.720312,0,3.258096,7.106606,0,1,0,62.11581,8.425471,0,7.825698,1
-3,1,100,1,1,125558,0,10174.32,14.47775,1,12,1,34.50327,47.81678,0,0,0,82.32005,0,0,0,5,0,5,40,4.3,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,73.93777,9.22772,1.609438,4.410614,1
-3,1,100,1,2,125558,0,10174.32,15.47775,1,12,1,53.89222,16.84812,0,0,0,70.74034,0,0,0,8,0,5,40,4.3,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,73.93777,9.22772,1.609438,4.259016,1
-3,1,100,1,3,125558,0,10174.32,16.47775,1,12,1,96.25867,20.9663,0,0,0,117.225,0,0,0,14,0,5,40,4.3,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,73.93777,9.22772,1.609438,4.764095,1
-3,1,100,1,1,125559,0,10174.32,11.84668,1,12,1,45.50863,13.48602,0,0,0,58.99464,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.01885,9.22772,1.609438,4.077446,1
-3,1,100,1,2,125559,0,10174.32,12.84668,1,12,1,113.337,22.43876,34.69788,0,0,170.4736,0,0,0,10,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.01885,9.22772,1.609438,5.13858,1
-3,1,100,1,3,125559,0,10174.32,13.84668,1,12,1,36.05054,9.088206,11.72943,0,0,56.86819,0,0,0,4,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.01885,9.22772,1.609438,4.040736,1
-3,1,100,1,1,125560,0,10174.32,4.596851,1,12,1,52.94468,21.56454,0,0,0,74.50922,0,0,0,7,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,79.58723,9.22772,1.609438,4.310923,1
-3,1,100,1,2,125560,0,10174.32,5.596851,1,12,1,62.0577,19.53185,0,0,0,81.58955,0,0,0,6,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,79.58723,9.22772,1.609438,4.401701,1
-3,1,100,1,3,125560,0,10174.32,6.596851,1,12,1,27.99802,18.76611,0,0,0,46.76412,0,0,0,3,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,79.58723,9.22772,1.609438,3.845116,1
-3,1,100,1,1,125561,0,10174.32,35.14032,1,12,1,21.71327,2.492564,0,0,0,24.20583,0,0,0,2,0,5,65.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.3196,9.22772,1.609438,3.186594,1
-3,1,100,1,2,125561,0,10174.32,36.14032,1,12,1,15.78661,4.284159,0,0,0,20.07077,0,0,0,2,0,5,65.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.3196,9.22772,1.609438,2.999264,1
-3,1,100,1,3,125561,0,10174.32,37.14032,1,12,1,20.6888,9.811695,0,0,0,30.5005,0,0,0,2,0,5,65.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.3196,9.22772,1.609438,3.417743,1
-3,1,100,1,1,125562,0,10174.32,37.46749,0,12,1,21.41582,.9399167,0,0,0,22.35574,0,0,0,1,0,5,72.6,0,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,77.42842,9.22772,1.609438,3.107083,1
-3,1,100,1,2,125562,0,10174.32,38.46749,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,72.6,0,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,77.42842,9.22772,1.609438,,0
-3,1,100,1,3,125562,0,10174.32,39.46749,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,72.6,0,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,77.42842,9.22772,1.609438,,0
-7,1,25,1,1,125563,0,5212.159,56.80493,0,11,1,384.89,464.2772,0,0,380.3688,1229.536,1,0,0,30,0,2,41.1,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,47.30153,8.558941,.6931472,7.114392,1
-7,1,25,1,2,125563,0,5212.159,57.80493,0,11,1,219.3794,246.9243,0,0,0,466.3037,0,0,0,25,0,2,41.1,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,47.30153,8.558941,.6931472,6.144837,1
-7,1,25,1,3,125563,0,5212.159,58.80493,0,11,1,172.9435,265.892,0,0,3273.32,3712.156,3,0,0,18,1,2,41.1,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,47.30153,8.558941,.6931472,8.219368,1
-7,1,25,1,4,125563,0,5212.159,59.80493,0,11,1,156.0349,325.6631,30.74805,0,0,512.4461,0,0,0,15,1,2,41.1,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,47.30153,8.558941,.6931472,6.239195,1
-7,1,25,1,5,125563,0,5212.159,60.80493,0,11,1,216.6597,202.5452,23.55911,0,3844.867,4287.631,5,0,0,20,0,2,41.1,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,47.30153,8.558941,.6931472,8.36349,1
-7,1,25,1,1,125564,0,5212.159,46.55989,1,12,1,685.9429,402.8673,6.912552,0,2913.075,4008.798,1,0,0,45,1,2,52.6,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,65.82284,8.558941,.6931472,8.296247,1
-7,1,25,1,2,125564,0,5212.159,47.55989,1,12,1,211.4861,452.5749,0,0,0,664.061,0,0,0,28,0,2,52.6,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,65.82284,8.558941,.6931472,6.498374,1
-7,1,25,1,3,125564,0,5212.159,48.55989,1,12,1,144.5441,268.776,25.11397,0,0,438.4341,0,0,0,14,1,2,52.6,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,65.82284,8.558941,.6931472,6.08321,1
-7,1,25,1,4,125564,0,5212.159,49.55989,1,12,1,196.2827,228.7334,3.212483,0,3800.069,4228.297,2,0,0,14,3,2,52.6,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,65.82284,8.558941,.6931472,8.349555,1
-7,1,25,1,5,125564,0,5212.159,50.55989,1,12,1,489.6929,264.2869,33.65587,0,2078.502,2866.138,3,0,0,28,5,2,52.6,43.5,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,65.82284,8.558941,.6931472,7.960721,1
-9,1,50,1,1,125567,0,10021.71,36.75565,1,17,1,22.01071,7.061273,0,0,0,29.07198,0,0,0,3,0,4,62.1,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.82717,9.212609,1.386294,3.369775,1
-9,1,50,1,2,125567,0,10021.71,37.75565,1,17,1,0,0,0,0,0,0,0,0,0,0,0,4,62.1,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.82717,9.212609,1.386294,,0
-9,1,50,1,3,125567,0,10021.71,38.75565,1,17,1,120.4163,3.320119,1.48662,14.8662,0,125.223,0,0,3,3,0,4,62.1,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.82717,9.212609,1.386294,4.830096,1
-9,1,50,1,1,125568,0,10021.71,6.329911,0,17,1,19.03629,2.825699,0,0,0,21.86199,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.78433,9.212609,1.386294,3.084749,1
-9,1,50,1,2,125568,0,10021.71,7.329911,0,17,1,34.02286,0,0,0,0,34.02286,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.78433,9.212609,1.386294,3.527033,1
-9,1,50,1,3,125568,0,10021.71,8.329911,0,17,1,12.3885,0,0,0,0,12.3885,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.78433,9.212609,1.386294,2.516769,1
-9,1,50,1,1,125569,0,10021.71,13.42642,1,17,1,24.98513,1.784652,0,0,0,26.76978,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.27036,9.212609,1.386294,3.287274,1
-9,1,50,1,2,125569,0,10021.71,14.42642,1,17,1,6.53239,2.177463,0,0,0,8.709853,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.27036,9.212609,1.386294,2.164455,1
-9,1,50,1,3,125569,0,10021.71,15.42642,1,17,1,14.8662,6.194252,0,14.8662,0,21.06046,0,0,3,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.27036,9.212609,1.386294,3.047397,1
-9,1,50,1,1,125570,0,10021.71,42.07529,0,10,1,14.8721,0,19.03629,0,0,33.90839,0,0,0,0,1,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.59772,9.212609,1.386294,3.523662,1
-9,1,50,1,2,125570,0,10021.71,43.07529,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.59772,9.212609,1.386294,,0
-9,1,50,1,3,125570,0,10021.71,44.07529,0,10,1,90.68385,1.73439,0,14.8662,0,92.41824,0,0,3,7,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.59772,9.212609,1.386294,4.526324,1
-2,1,100,1,1,125574,0,5724.566,27.76728,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.9,0,0,,359,359,0,0,1.098612,5.883322,1,0,0,1,0,0,72.43401,8.652697,1.098612,,0
-2,1,100,1,2,125574,0,5724.566,28.76728,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.9,0,0,,359,359,0,0,1.098612,5.883322,1,0,0,1,0,0,72.43401,8.652697,1.098612,,0
-2,1,100,1,3,125574,0,5724.566,29.76728,1,13,1,10.90188,0,0,0,0,10.90188,0,0,0,1,0,3,77.9,0,0,,359,359,0,0,1.098612,5.883322,1,0,0,1,0,0,72.43401,8.652697,1.098612,2.388936,1
-2,1,100,1,1,125575,0,5724.566,8.008214,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,359,359,1,0,1.098612,5.883322,1,0,0,0,0,0,82.44528,8.652697,1.098612,,0
-2,1,100,1,2,125575,0,5724.566,9.008214,0,13,1,34.86663,0,0,0,0,34.86663,0,0,0,0,1,3,74.36826,13.73189,0,,359,359,1,0,1.098612,5.883322,1,0,0,0,0,0,82.44528,8.652697,1.098612,3.55153,1
-2,1,100,1,3,125575,0,5724.566,10.00821,0,13,1,9.910803,.9910803,0,0,0,10.90188,0,0,0,2,0,3,74.36826,13.73189,0,,359,359,1,0,1.098612,5.883322,1,0,0,0,0,0,82.44528,8.652697,1.098612,2.388936,1
-2,1,100,1,1,125576,0,5724.566,27.1102,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,62.1,26.1,0,,359,359,0,0,1.098612,5.883322,1,0,0,0,0,0,69.46257,8.652697,1.098612,,0
-2,1,100,1,2,125576,0,5724.566,28.1102,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,62.1,26.1,0,,359,359,0,0,1.098612,5.883322,1,0,0,0,0,0,69.46257,8.652697,1.098612,,0
-2,1,100,1,3,125576,0,5724.566,29.1102,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,62.1,26.1,0,,359,359,0,0,1.098612,5.883322,1,0,0,0,0,0,69.46257,8.652697,1.098612,,0
-2,1,100,1,1,125586,0,18062.99,17.12252,1,12,1,21.41582,4.491374,0,0,0,25.9072,0,0,0,2,1,6,56.8,8.7,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.791759,3.254521,1
-2,1,100,1,2,125586,0,18062.99,18.12252,1,12,1,53.62003,1.360915,.9526402,0,0,55.93359,0,0,0,2,0,6,56.8,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.791759,4.024165,1
-2,1,100,1,1,125587,0,18062.99,19.14305,1,12,1,152.1594,51.43367,33.56931,0,1869.024,2106.187,2,0,0,7,1,6,45.3,26.1,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,1,0,57.79599,9.801676,1.791759,7.652634,1
-2,1,100,1,2,125587,0,18062.99,20.14305,1,12,1,40.55525,24.81764,0,0,0,65.37289,0,0,0,4,0,6,45.3,26.1,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,1,0,57.79599,9.801676,1.791759,4.180108,1
-2,1,100,1,3,125587,0,18062.99,21.14305,1,12,1,117.6908,39.4004,37.28444,0,0,194.3756,0,0,0,9,1,5,45.3,26.1,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,1,0,57.79599,9.801676,1.609438,5.269793,1
-2,1,100,1,4,125587,0,18062.99,22.14305,1,12,1,80.771,33.29509,0,0,0,114.0661,0,0,0,10,0,5,45.3,26.1,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,1,0,57.79599,9.801676,1.609438,4.736778,1
-2,1,100,1,5,125587,0,18062.99,23.14305,1,12,1,260.2019,164.2785,32.5326,0,732.0782,1189.091,1,0,0,9,1,5,45.3,26.1,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,1,0,57.79599,9.801676,1.609438,7.080945,1
-2,1,100,1,1,125588,0,18062.99,43.6961,0,12,1,45.21119,45.09221,62.14753,0,0,152.4509,0,0,0,5,2,6,77.9,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,64.31509,9.801676,1.791759,5.026843,1
-2,1,100,1,2,125588,0,18062.99,44.6961,0,12,1,117.583,71.36636,0,0,0,188.9494,0,0,0,9,6,6,77.9,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,64.31509,9.801676,1.791759,5.241479,1
-2,1,100,1,3,125588,0,18062.99,45.6961,0,12,1,100.0991,27.70069,0,0,0,127.7998,0,0,0,7,0,5,77.9,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.31509,9.801676,1.609438,4.850465,1
-2,1,100,1,4,125588,0,18062.99,46.6961,0,12,1,16.98027,43.23084,0,0,0,60.21111,0,0,0,3,0,5,77.9,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.31509,9.801676,1.609438,4.097857,1
-2,1,100,1,5,125588,0,18062.99,47.6961,0,12,1,37.86285,47.72823,50.99706,0,0,136.5881,0,0,0,4,1,5,77.9,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.31509,9.801676,1.609438,4.91697,1
-2,1,100,1,1,125589,0,18062.99,39.83847,1,12,1,29.14932,0,42.27246,0,0,71.42178,0,0,0,3,1,6,81.1,8.7,1,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,72.26447,9.801676,1.791759,4.268603,1
-2,1,100,1,2,125589,0,18062.99,40.83847,1,12,1,6.53239,2.384322,0,0,0,8.916712,0,0,0,3,0,6,81.1,8.7,1,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,72.26447,9.801676,1.791759,2.187927,1
-2,1,100,1,3,125589,0,18062.99,41.83847,1,12,1,20.31715,3.508424,37.80476,0,0,61.63033,0,0,0,1,1,5,81.1,8.7,1,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.26447,9.801676,1.609438,4.121154,1
-2,1,100,1,4,125589,0,18062.99,42.83847,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.1,8.7,1,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.26447,9.801676,1.609438,,0
-2,1,100,1,5,125589,0,18062.99,43.83847,1,12,1,174.5688,0,43.08372,0,0,217.6525,0,0,0,3,1,5,81.1,8.7,1,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.26447,9.801676,1.609438,5.3829,1
-2,1,100,1,1,125590,0,18062.99,17.12252,1,12,1,35.69304,0,23.00416,0,0,58.6972,0,0,0,4,1,6,76.8,13,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.791759,4.072392,1
-2,1,100,1,2,125590,0,18062.99,18.12252,1,12,1,11.43168,0,0,0,0,11.43168,0,0,0,1,0,6,76.8,13,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.791759,2.436388,1
-2,1,100,1,3,125590,0,18062.99,19.12252,1,12,1,36.66997,5.277503,14.4995,0,0,56.44698,0,0,0,1,1,5,76.8,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.609438,4.033302,1
-2,1,100,1,4,125590,0,18062.99,20.12252,1,12,1,36.71409,2.225792,0,0,0,38.93988,0,0,0,3,0,5,76.8,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.609438,3.662019,1
-2,1,100,1,5,125590,0,18062.99,21.12252,1,12,1,30.71098,6.327303,29.69289,0,0,66.73117,0,0,0,2,1,5,76.8,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,68.8233,9.801676,1.609438,4.200672,1
-2,1,100,1,1,125591,0,18062.99,13.03765,1,12,1,83.28376,3.450327,398.5842,0,1679.494,2164.813,1,0,0,1,2,6,74.36826,13.73189,1,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,1,0,66.11668,9.801676,1.791759,7.680089,1
-2,1,100,1,2,125591,0,18062.99,14.03765,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,1,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,1,0,66.11668,9.801676,1.791759,,0
-2,1,100,1,3,125591,0,18062.99,15.03765,1,12,1,3.468781,0,0,0,0,3.468781,0,0,0,1,0,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,1,0,66.11668,9.801676,1.609438,1.243803,1
-2,1,100,1,4,125591,0,18062.99,16.03765,1,12,1,39.23818,5.598898,0,0,0,44.83708,0,0,0,3,0,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,1,0,66.11668,9.801676,1.609438,3.803035,1
-2,1,100,1,5,125591,0,18062.99,17.03765,1,12,1,31.55238,0,30.33656,0,0,61.88894,0,0,0,1,1,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,1,0,66.11668,9.801676,1.609438,4.125341,1
-11,1,0,1,1,125613,0,1388.958,20.10404,0,9,1,20.5235,36.35931,0,0,0,56.88281,0,0,0,2,0,1,46.3,17.4,1,,0,0,0,0,0,0,0,0,0,1,0,0,68.92193,7.237029,0,4.040993,1
-11,1,0,1,2,125613,0,1388.958,21.10404,0,9,1,34.38214,0,0,0,0,34.38214,0,0,0,1,0,1,46.3,17.4,1,,0,0,0,0,0,0,0,0,0,1,0,0,68.92193,7.237029,0,3.537537,1
-11,1,0,1,3,125613,0,1388.958,22.10404,0,9,1,37.41328,5.649158,0,0,0,43.06244,0,0,0,3,0,1,46.3,17.4,1,,0,0,0,0,0,0,0,0,0,1,0,0,68.92193,7.237029,0,3.762651,1
-11,1,0,1,4,125613,0,1388.958,23.10404,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,46.3,17.4,1,,0,0,0,0,0,0,0,0,0,1,0,0,68.92193,7.237029,0,,0
-11,1,0,1,5,125613,0,1388.958,24.10404,0,9,1,21.03492,0,0,0,0,21.03492,0,0,0,1,0,1,46.3,17.4,1,,0,0,0,0,0,0,0,0,0,1,0,0,68.92193,7.237029,0,3.046184,1
-11,1,0,1,1,125614,0,3273.573,57.48391,1,8,1,0,45.87745,0,26.76978,0,45.87745,0,0,3,0,0,1,83.2,13,0,,0,0,0,0,0,0,0,0,0,0,1,0,53.37024,8.093943,0,3.825974,1
-11,1,0,1,2,125614,0,3273.573,58.48391,1,8,1,0,32.69461,0,32.66195,0,32.69461,0,0,4,0,0,1,83.2,13,0,,0,0,0,0,0,0,0,0,0,0,1,0,53.37024,8.093943,0,3.48721,1
-11,1,0,1,3,125614,0,3273.573,59.48391,1,8,1,0,33.05748,0,22.29931,0,33.05748,0,0,3,0,0,1,83.2,13,0,,0,0,0,0,0,0,0,0,0,0,1,0,53.37024,8.093943,0,3.498248,1
-11,1,0,1,4,125614,0,3273.573,60.48391,1,8,1,0,35.09867,0,22.94631,0,35.09867,0,0,3,0,0,1,83.2,13,0,,0,0,0,0,0,0,0,0,0,0,1,0,53.37024,8.093943,0,3.558163,1
-11,1,0,1,5,125614,0,3273.573,61.48391,1,8,1,0,35.12411,0,33.65587,0,35.12411,0,0,4,0,0,1,83.2,13,0,,0,0,0,0,0,0,0,0,0,0,1,0,53.37024,8.093943,0,3.558888,1
-6,1,25,1,1,125617,0,9542.002,6.817248,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,72.63244,9.163564,1.791759,,0
-6,1,25,1,2,125617,0,9542.002,7.817248,0,12,1,2.695418,0,0,0,0,2.695418,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,72.63244,9.163564,1.791759,.9915532,1
-6,1,25,1,3,125617,0,9542.002,8.817248,0,12,1,67.66585,0,4.570024,0,0,72.23587,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,72.63244,9.163564,1.791759,4.279937,1
-6,1,25,1,4,125617,0,9542.002,9.817248,0,12,1,24.38469,0,0,0,782.0739,806.4585,1,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,72.63244,9.163564,1.791759,6.692652,1
-6,1,25,1,5,125617,0,9542.002,10.81725,0,12,1,236.9737,0,0,0,0,236.9737,0,0,0,4,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,72.63244,9.163564,1.791759,5.467949,1
-6,1,25,1,1,125618,0,9542.002,3.693361,1,12,1,45.78917,0,27.07892,0,0,72.86808,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.258096,8.294049,1,0,0,68.68684,9.163564,1.791759,4.288651,1
-6,1,25,1,2,125618,0,9542.002,4.693361,1,12,1,2.695418,0,0,0,0,2.695418,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.258096,8.294049,1,0,0,68.68684,9.163564,1.791759,.9915532,1
-6,1,25,1,3,125618,0,9542.002,5.693361,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.258096,8.294049,1,0,0,68.68684,9.163564,1.791759,,0
-6,1,25,1,4,125618,0,9542.002,6.693361,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.258096,8.294049,1,0,0,68.68684,9.163564,1.791759,,0
-6,1,25,1,5,125618,0,9542.002,7.693361,1,12,1,10.42101,0,0,0,0,10.42101,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.258096,8.294049,1,0,0,68.68684,9.163564,1.791759,2.343824,1
-6,1,25,1,1,125619,0,9542.002,4.807666,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.20081,9.163564,1.791759,,0
-6,1,25,1,2,125619,0,9542.002,5.807666,0,12,1,2.695418,0,0,0,0,2.695418,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.20081,9.163564,1.791759,.9915532,1
-6,1,25,1,3,125619,0,9542.002,6.807666,0,12,1,14.74201,0,23.48894,0,0,38.23096,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.20081,9.163564,1.791759,3.643646,1
-6,1,25,1,4,125619,0,9542.002,7.807666,0,12,1,60.28715,0,14.28897,0,0,74.57612,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.20081,9.163564,1.791759,4.311821,1
-6,1,25,1,5,125619,0,9542.002,8.807666,0,12,1,10.42101,0,20.90871,0,0,31.32972,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.20081,9.163564,1.791759,3.444567,1
-6,1,25,1,1,125620,0,9542.002,35.6961,0,10,1,0,0,33.23322,0,0,33.23322,0,0,0,0,0,6,58.9,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,67.52351,9.163564,1.791759,3.50355,1
-6,1,25,1,2,125620,0,9542.002,36.6961,0,10,1,140.9704,7.385445,0,0,0,148.3558,0,0,0,3,0,6,58.9,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,67.52351,9.163564,1.791759,4.999613,1
-6,1,25,1,3,125620,0,9542.002,37.6961,0,10,1,35.74939,0,0,0,0,35.74939,0,0,0,1,0,6,58.9,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,67.52351,9.163564,1.791759,3.576533,1
-6,1,25,1,4,125620,0,9542.002,38.6961,0,10,1,31.9052,0,0,0,675.6426,707.5479,1,0,0,0,3,6,58.9,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,67.52351,9.163564,1.791759,6.561805,1
-6,1,25,1,5,125620,0,9542.002,39.6961,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,58.9,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,67.52351,9.163564,1.791759,,0
-6,1,25,1,1,125621,0,9542.002,26.33539,1,12,1,0,3.239105,0,0,0,3.239105,0,0,0,0,0,6,49.5,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,71.57712,9.163564,1.791759,1.175297,1
-6,1,25,1,2,125621,0,9542.002,27.33539,1,12,1,77.35849,5.175202,0,0,0,82.53369,0,0,0,4,9,6,49.5,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,71.57712,9.163564,1.791759,4.413207,1
-6,1,25,1,3,125621,0,9542.002,28.33539,1,12,1,78.50123,1.719902,0,0,1031.071,1111.292,1,0,0,2,0,6,49.5,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,71.57712,9.163564,1.791759,7.013279,1
-6,1,25,1,4,125621,0,9542.002,29.33539,1,12,1,48.76937,0,0,0,0,48.76937,0,0,0,2,2,6,49.5,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,71.57712,9.163564,1.791759,3.887102,1
-6,1,25,1,5,125621,0,9542.002,30.33539,1,12,1,10.42101,0,0,0,0,10.42101,0,0,0,0,0,6,49.5,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,71.57712,9.163564,1.791759,2.343824,1
-2,1,100,0,1,125635,0,6916.232,46.73785,1,9,1,62.42638,12.60306,29.44641,0,0,104.4759,0,0,0,2,2,3,73.8,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,1,0,0,67.80335,8.841771,1.098612,4.648956,1
-2,1,100,0,2,125635,0,6916.232,47.73785,1,9,1,8.625337,2.96496,0,0,0,11.5903,0,0,0,1,0,3,73.8,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,1,0,0,67.80335,8.841771,1.098612,2.450168,1
-2,1,100,0,3,125635,0,6916.232,48.73785,1,9,1,8.845209,6.486486,0,0,0,15.3317,0,0,0,1,0,3,73.8,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,1,0,0,67.80335,8.841771,1.098612,2.729922,1
-2,1,100,0,1,125636,0,6916.232,10.32717,0,9,1,1.766784,15.22379,0,0,0,16.99058,0,0,0,0,0,3,74.36826,13.73189,0,,300,300,1,0,1.098612,5.703783,1,0,0,1,0,0,75.82542,8.841771,1.098612,2.832659,1
-2,1,100,0,2,125636,0,6916.232,11.32717,0,9,1,54.44744,14.76011,0,0,0,69.20755,0,0,0,5,0,3,74.36826,13.73189,0,,300,300,1,0,1.098612,5.703783,1,0,0,1,0,0,75.82542,8.841771,1.098612,4.23711,1
-2,1,100,0,3,125636,0,6916.232,12.32717,0,9,1,4.422605,4.29484,0,0,0,8.717444,0,0,0,1,0,3,74.36826,13.73189,0,,300,300,1,0,1.098612,5.703783,1,0,0,1,0,0,75.82542,8.841771,1.098612,2.165326,1
-2,1,100,0,1,125637,0,6916.232,53.96851,0,11,1,141.9317,27.04947,0,0,0,168.9812,0,0,0,6,3,3,85,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,0,0,0,72.67507,8.841771,1.098612,5.129787,1
-2,1,100,0,2,125637,0,6916.232,54.96851,0,11,1,7.54717,0,0,0,0,7.54717,0,0,0,1,0,3,85,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,0,0,0,72.67507,8.841771,1.098612,2.021173,1
-2,1,100,0,3,125637,0,6916.232,55.96851,0,11,1,7.371007,11.08108,0,0,0,18.45209,0,0,0,3,0,3,85,13.73189,0,,300,300,0,0,1.098612,5.703783,1,0,0,0,0,0,72.67507,8.841771,1.098612,2.915178,1
-11,1,0,1,1,125658,0,9201.975,14.49144,1,12,1,32.97998,28.15077,0,0,0,61.13074,0,0,0,4,0,6,80,4.3,0,,0,0,1,1,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,4.113015,1
-11,1,0,1,2,125658,0,9201.975,15.49144,1,12,1,18.86792,2.156334,0,0,0,21.02426,0,0,0,2,0,6,80,4.3,0,,0,0,1,1,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,3.045677,1
-11,1,0,1,3,125658,0,9201.975,16.49144,1,12,1,19.53317,0,2.702703,0,0,22.23587,0,0,0,1,0,6,80,4.3,0,,0,0,1,1,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,3.101707,1
-11,1,0,1,1,125659,0,9201.975,44.49829,0,12,1,0,3.239105,22.77385,0,0,26.01296,0,0,0,0,0,6,91.6,8.7,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.77976,9.127282,1.791759,3.258595,1
-11,1,0,1,2,125659,0,9201.975,45.49829,0,12,1,5.390836,4.636118,0,0,0,10.02695,0,0,0,1,0,6,91.6,8.7,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.77976,9.127282,1.791759,2.305277,1
-11,1,0,1,3,125659,0,9201.975,46.49829,0,12,1,12.28501,0,44.71745,0,0,57.00246,0,0,0,1,0,6,91.6,8.7,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.77976,9.127282,1.791759,4.043094,1
-11,1,0,1,1,125660,0,9201.975,42.95688,1,12,1,14.7232,10.24735,36.93168,0,0,61.90224,0,0,0,1,0,6,93.7,4.3,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.40642,9.127282,1.791759,4.125556,1
-11,1,0,1,2,125660,0,9201.975,43.95688,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,93.7,4.3,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.40642,9.127282,1.791759,,0
-11,1,0,1,3,125660,0,9201.975,44.95688,1,12,1,17.07617,0,42.75184,0,0,59.82801,0,0,0,1,0,6,93.7,4.3,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.40642,9.127282,1.791759,4.091474,1
-11,1,0,1,1,125661,0,9201.975,12.38604,0,12,1,62.42638,1.766784,0,0,0,64.19317,0,0,0,4,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,85.15327,9.127282,1.791759,4.161897,1
-11,1,0,1,2,125661,0,9201.975,13.38604,0,12,1,26.84636,0,1.293801,0,0,28.14016,0,0,0,0,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,85.15327,9.127282,1.791759,3.337198,1
-11,1,0,1,3,125661,0,9201.975,14.38604,0,12,1,80.95823,0,1.351351,0,0,82.30959,0,0,0,2,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,85.15327,9.127282,1.791759,4.410488,1
-11,1,0,1,1,125662,0,9201.975,16.52019,0,12,1,8.833922,0,14.13428,0,0,22.9682,0,0,0,1,0,6,87.4,4.3,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,80.40798,9.127282,1.791759,3.134111,1
-11,1,0,1,2,125662,0,9201.975,17.52019,0,12,1,76.54987,61.83289,15.16981,0,0,153.5526,0,0,0,8,0,6,87.4,4.3,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,80.40798,9.127282,1.791759,5.034043,1
-11,1,0,1,3,125662,0,9201.975,18.52019,0,12,1,51.00246,7.518427,0,0,0,58.52089,0,0,0,3,0,6,87.4,4.3,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,80.40798,9.127282,1.791759,4.069384,1
-11,1,0,0,1,125663,0,9201.975,17.7577,1,12,1,88.19199,10.95406,0,0,0,99.14606,0,0,0,4,1,6,84.2,8.7,0,,0,0,1,1,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,4.596594,1
-11,1,0,0,2,125663,0,9201.975,18.7577,1,12,1,4.312668,0,0,0,0,4.312668,0,0,0,0,0,6,84.2,8.7,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,1.461557,1
-11,1,0,0,3,125663,0,9201.975,19.7577,1,12,1,25.06142,0,0,0,0,25.06142,0,0,0,1,0,6,84.2,8.7,0,,0,0,0,0,1.791759,0,0,0,0,0,0,0,75.07128,9.127282,1.791759,3.22133,1
-8,1,50,1,1,125664,0,13812.04,52.90349,0,16,1,14.7232,0,32.27326,0,0,46.99647,0,0,0,1,0,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.5162,9.533368,.6931472,3.850072,1
-8,1,50,1,2,125664,0,13812.04,53.90349,0,16,1,8.086253,0,0,0,0,8.086253,0,0,0,0,0,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.5162,9.533368,.6931472,2.090165,1
-8,1,50,1,3,125664,0,13812.04,54.90349,0,16,1,13.75921,12.01474,10.01474,0,0,35.7887,0,0,0,2,0,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.5162,9.533368,.6931472,3.577632,1
-8,1,50,1,4,125664,0,13812.04,55.90349,0,16,1,155.8797,14.19781,0,0,0,170.0775,0,0,0,7,5,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.5162,9.533368,.6931472,5.136254,1
-8,1,50,1,5,125664,0,13812.04,56.90349,0,16,1,83.36807,31.82576,26.13589,0,0,141.3297,0,0,0,5,3,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.5162,9.533368,.6931472,4.951096,1
-8,1,50,1,1,125665,0,13812.04,50.8063,1,12,1,42.69729,0,46.82568,0,0,89.52296,0,0,0,2,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,66.96286,9.533368,.6931472,4.494495,1
-8,1,50,1,2,125665,0,13812.04,51.8063,1,12,1,56.60378,2.695418,15.20755,0,0,74.50674,0,0,0,2,2,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,66.96286,9.533368,.6931472,4.31089,1
-8,1,50,1,3,125665,0,13812.04,52.8063,1,12,1,25.06142,22.89435,0,0,0,47.95577,0,0,0,2,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,66.96286,9.533368,.6931472,3.870279,1
-8,1,50,1,4,125665,0,13812.04,53.8063,1,12,1,61.07566,6.800364,41.91431,0,0,109.7903,0,0,0,6,0,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,66.96286,9.533368,.6931472,4.698573,1
-8,1,50,1,5,125665,0,13812.04,54.8063,1,12,1,47.72822,27.10296,0,0,0,74.83118,0,0,0,2,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,66.96286,9.533368,.6931472,4.315235,1
-11,1,0,1,1,125666,0,14393.3,37.95756,1,12,1,93.99167,61.64188,29.7442,0,0,185.3777,0,0,0,10,0,4,83.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.78102,9.574588,1.386294,5.222395,1
-11,1,0,1,2,125666,0,14393.3,38.95756,1,12,1,106.4235,133.3587,26.06968,0,0,265.8519,0,0,0,7,1,4,83.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.78102,9.574588,1.386294,5.58294,1
-11,1,0,1,3,125666,0,14393.3,39.95756,1,12,1,157.334,97.64619,0,0,0,254.9802,0,0,0,8,0,4,83.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.78102,9.574588,1.386294,5.541186,1
-11,1,0,1,4,125666,0,14393.3,40.95756,1,12,1,46.35154,77.23267,0,0,0,123.5842,0,0,0,4,0,4,83.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.78102,9.574588,1.386294,4.816923,1
-11,1,0,1,5,125666,0,14393.3,41.95756,1,12,1,26.92469,77.76609,19.35213,0,0,124.0429,0,0,0,3,0,4,83.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.78102,9.574588,1.386294,4.820628,1
-11,1,0,1,1,125667,0,14393.3,44.67899,0,16,1,81.49911,8.56633,41.02915,0,0,131.0946,0,0,0,10,0,4,77.9,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46688,9.574588,1.386294,4.875919,1
-11,1,0,1,2,125667,0,14393.3,45.67899,0,16,1,167.6647,45.82471,1.088732,0,0,214.5781,0,0,0,15,0,4,77.9,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46688,9.574588,1.386294,5.368674,1
-11,1,0,1,3,125667,0,14393.3,46.67899,0,16,1,392.4678,36.85332,0,0,0,429.3211,0,0,0,16,0,4,77.9,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46688,9.574588,1.386294,6.062205,1
-11,1,0,1,4,125667,0,14393.3,47.67899,0,16,1,59.43093,24.49289,0,0,0,83.92382,0,0,0,3,0,4,77.9,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46688,9.574588,1.386294,4.42991,1
-11,1,0,1,5,125667,0,14393.3,48.67899,0,16,1,182.6336,19.06184,43.74422,0,0,245.4396,0,0,0,6,0,4,77.9,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46688,9.574588,1.386294,5.503051,1
-11,1,0,1,1,125668,0,14393.3,12.15332,1,12,1,20.82094,0,0,0,0,20.82094,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.97237,9.574588,1.386294,3.035959,1
-11,1,0,1,2,125668,0,14393.3,13.15332,1,12,1,77.84431,7.234622,23.89222,0,0,108.9711,0,0,0,5,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.97237,9.574588,1.386294,4.691083,1
-11,1,0,1,3,125668,0,14393.3,14.15332,1,12,1,5.946482,0,0,0,0,5.946482,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.97237,9.574588,1.386294,1.7828,1
-11,1,0,1,4,125668,0,14393.3,15.15332,1,12,1,62.41395,10.76641,0,0,0,73.18036,0,0,0,5,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.97237,9.574588,1.386294,4.292927,1
-11,1,0,1,5,125668,0,14393.3,16.15332,1,12,1,94.23643,10.77829,26.33992,0,0,131.3546,0,0,0,14,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.97237,9.574588,1.386294,4.877901,1
-11,1,0,1,1,125669,0,14393.3,5.067762,0,12,1,41.64188,5.223082,0,0,0,46.86496,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.05472,9.574588,1.386294,3.84727,1
-11,1,0,1,2,125669,0,14393.3,6.067762,0,12,1,50.08165,1.720196,.8165487,0,0,52.6184,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.05472,9.574588,1.386294,3.963066,1
-11,1,0,1,3,125669,0,14393.3,7.067762,0,12,1,4.955401,1.233895,0,0,0,6.189296,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.05472,9.574588,1.386294,1.822821,1
-11,1,0,1,4,125669,0,14393.3,8.067761,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.05472,9.574588,1.386294,,0
-11,1,0,1,5,125669,0,14393.3,9.067761,0,12,1,94.44678,3.84939,0,0,0,98.29617,0,0,0,13,1,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.05472,9.574588,1.386294,4.587985,1
-11,1,0,0,1,125674,0,14410.96,23.72895,1,16,1,5.995204,0,0,0,0,5.995204,0,0,0,1,0,3,83.8,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,79.16349,9.575813,1.098612,1.79096,1
-11,1,0,0,2,125674,0,14410.96,24.72895,1,16,1,412.5575,31.13363,0,0,0,443.6911,0,0,0,9,0,3,83.8,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,79.16349,9.575813,1.098612,6.095129,1
-11,1,0,0,3,125674,0,14410.96,25.72895,1,16,1,51.07232,29.69077,0,0,723.6409,804.404,1,0,0,1,0,3,83.8,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,79.16349,9.575813,1.098612,6.690102,1
-11,1,0,0,4,125674,0,14410.96,26.72895,1,16,1,28.5846,0,33.72522,0,0,62.30982,0,0,0,2,0,3,83.8,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,79.16349,9.575813,1.098612,4.132119,1
-11,1,0,0,5,125674,0,14410.96,27.72895,1,16,1,61.61659,0,14.1515,0,0,75.76809,0,0,0,2,0,3,83.8,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,79.16349,9.575813,1.098612,4.327677,1
-11,1,0,0,1,125675,0,14410.96,55.64956,1,15,1,55.27578,0,56.85851,0,0,112.1343,0,0,0,2,1,3,80,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,78.89941,9.575813,1.098612,4.719697,1
-11,1,0,0,2,125675,0,14410.96,56.64956,1,15,1,90.36144,0,0,0,0,90.36144,0,0,0,5,0,3,80,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,78.89941,9.575813,1.098612,4.503818,1
-11,1,0,0,3,125675,0,14410.96,57.64956,1,15,1,44.88778,0,0,0,0,44.88778,0,0,0,2,0,3,80,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,78.89941,9.575813,1.098612,3.804166,1
-11,1,0,0,4,125675,0,14410.96,58.64956,1,15,1,55.78608,0,0,0,0,55.78608,0,0,0,2,0,3,80,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,78.89941,9.575813,1.098612,4.021524,1
-11,1,0,0,5,125675,0,14410.96,59.64956,1,15,1,123.868,0,48.64579,0,0,172.5137,0,0,0,6,1,3,80,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,0,0,0,78.89941,9.575813,1.098612,5.150477,1
-11,1,0,0,1,125676,0,14410.96,55.15948,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,91.3,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,1,0,0,70.76144,9.575813,1.098612,,0
-11,1,0,0,2,125676,0,14410.96,56.15948,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,91.3,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,1,0,0,70.76144,9.575813,1.098612,,0
-11,1,0,0,3,125676,0,14410.96,57.15948,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,91.3,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,1,0,0,70.76144,9.575813,1.098612,,0
-11,1,0,0,4,125676,0,14410.96,58.15948,0,15,1,104.1955,0,0,0,0,104.1955,0,0,0,2,0,3,91.3,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,1,0,0,70.76144,9.575813,1.098612,4.646269,1
-11,1,0,0,5,125676,0,14410.96,59.15948,0,15,1,22.85231,0,61.91282,0,912.8227,997.5878,1,0,0,2,0,3,91.3,13.73189,0,,0,492,0,0,1.098612,6.198479,0,0,0,1,0,0,70.76144,9.575813,1.098612,6.90534,1
-11,1,0,0,1,125690,0,11982.63,13.87269,1,16,1,40.76739,10.47962,0,0,0,51.247,0,0,0,6,0,3,74.36826,13.73189,0,,0,288,1,1,1.098612,5.662961,0,0,0,0,0,0,86.44971,9.391296,1.098612,3.936657,1
-11,1,0,0,2,125690,0,11982.63,14.87269,1,16,1,29.02519,13.5816,0,0,0,42.60679,0,0,0,4,0,3,74.36826,13.73189,0,,0,288,1,1,1.098612,5.662961,0,0,0,0,0,0,86.44971,9.391296,1.098612,3.752014,1
-11,1,0,0,3,125690,0,11982.63,15.87269,1,16,1,39.4015,22.19451,0,0,0,61.59601,0,0,0,5,1,3,74.36826,13.73189,0,,0,288,1,1,1.098612,5.662961,0,0,0,0,0,0,86.44971,9.391296,1.098612,4.120597,1
-11,1,0,0,4,125690,0,11982.63,16.87269,1,16,1,5.532504,28.13278,0,0,0,33.66528,0,0,0,1,0,3,74.36826,13.73189,0,,0,288,1,1,1.098612,5.662961,0,0,0,0,0,0,86.44971,9.391296,1.098612,3.516467,1
-11,1,0,0,5,125690,0,11982.63,17.87269,1,16,1,28.98857,24.13457,24.96826,0,0,78.09141,0,0,0,2,1,3,74.36826,13.73189,0,,0,288,1,1,1.098612,5.662961,0,0,0,0,0,0,86.44971,9.391296,1.098612,4.35788,1
-11,1,0,0,1,125691,0,11982.63,49.93292,1,16,1,121.7026,14.65827,32.3741,0,0,168.735,0,0,0,4,1,3,92.5,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,79.07426,9.391296,1.098612,5.12833,1
-11,1,0,0,2,125691,0,11982.63,50.93292,1,16,1,31.76342,20.81051,17.25082,0,0,69.82475,0,0,0,4,1,3,92.5,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,79.07426,9.391296,1.098612,4.245988,1
-11,1,0,0,3,125691,0,11982.63,51.93292,1,16,1,44.13965,12.74314,32.53865,0,0,89.42145,0,0,0,1,1,3,92.5,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,79.07426,9.391296,1.098612,4.493361,1
-11,1,0,0,4,125691,0,11982.63,52.93292,1,16,1,8.759797,6.325496,0,0,0,15.08529,0,0,0,1,0,3,92.5,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,79.07426,9.391296,1.098612,2.71372,1
-11,1,0,0,5,125691,0,11982.63,53.93292,1,16,1,38.51037,27.10538,32.16251,0,0,97.77825,0,0,0,2,1,3,92.5,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,79.07426,9.391296,1.098612,4.582702,1
-11,1,0,0,1,125692,0,11982.63,54.93224,0,16,1,176.8585,98.89688,64.34652,0,0,340.1019,0,0,0,10,1,3,90,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,71.24387,9.391296,1.098612,5.829246,1
-11,1,0,0,2,125692,0,11982.63,55.93224,0,16,1,73.38445,85.47098,19.49617,0,0,178.3516,0,0,0,7,2,3,90,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,71.24387,9.391296,1.098612,5.183757,1
-11,1,0,0,3,125692,0,11982.63,56.93224,0,16,1,56.85786,81.89027,33.78554,0,0,172.5337,0,0,0,5,2,3,90,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,71.24387,9.391296,1.098612,5.150592,1
-11,1,0,0,4,125692,0,11982.63,57.93224,0,16,1,39.18856,88.06824,23.6284,0,0,150.8852,0,0,0,4,2,3,90,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,71.24387,9.391296,1.098612,5.01652,1
-11,1,0,0,5,125692,0,11982.63,58.93224,0,16,1,75.43377,56.97419,22.99619,0,0,155.4041,0,0,0,4,2,3,90,13.73189,0,,0,288,0,0,1.098612,5.662961,0,0,0,0,0,0,71.24387,9.391296,1.098612,5.046029,1
-11,1,0,0,1,125782,0,7207.816,7.958932,1,12,1,6.6345,4.191797,0,0,0,10.8263,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.96274,8.88306,1.609438,2.381978,1
-11,1,0,0,2,125782,0,7207.816,8.958932,1,12,1,5.506608,0,0,0,0,5.506608,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.96274,8.88306,1.609438,1.705949,1
-11,1,0,0,3,125782,0,7207.816,9.958932,1,12,1,5.524862,0,0,0,0,5.524862,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.96274,8.88306,1.609438,1.709258,1
-11,1,0,0,1,125783,0,7207.816,27.72895,1,12,1,30.75995,43.27503,0,0,0,74.03498,0,0,0,4,0,5,70,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.7831,8.88306,1.609438,4.304538,1
-11,1,0,0,2,125783,0,7207.816,28.72895,1,12,1,26.98238,34.0859,0,0,0,61.06828,0,0,0,4,1,5,70,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.7831,8.88306,1.609438,4.111993,1
-11,1,0,0,3,125783,0,7207.816,29.72895,1,12,1,43.69664,22.25013,17.96585,0,0,83.91261,0,0,0,4,1,5,70,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.7831,8.88306,1.609438,4.429776,1
-11,1,0,0,1,125784,0,7207.816,2.38193,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,73.53111,8.88306,1.609438,,0
-11,1,0,0,2,125784,0,7207.816,3.38193,1,12,1,25.3304,9.388766,0,0,0,34.71916,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,73.53111,8.88306,1.609438,3.547292,1
-11,1,0,0,3,125784,0,7207.816,4.38193,1,12,1,16.57458,7.132094,0,0,0,23.70668,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,73.53111,8.88306,1.609438,3.165757,1
-11,1,0,0,1,125785,0,7207.816,4.599589,0,12,1,21.10977,8.685163,0,0,0,29.79493,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.04509,8.88306,1.609438,3.394338,1
-11,1,0,0,2,125785,0,7207.816,5.599589,0,12,1,23.67841,20.56718,0,0,0,44.24559,0,0,0,5,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.04509,8.88306,1.609438,3.789756,1
-11,1,0,0,3,125785,0,7207.816,6.599589,0,12,1,24.10849,14.13862,0,0,0,38.24711,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.04509,8.88306,1.609438,3.644068,1
-11,1,0,0,1,125786,0,7207.816,33.67009,0,12,1,10.58504,0,0,0,0,10.58504,0,0,0,0,0,5,92.5,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.81962,8.88306,1.609438,2.359442,1
-11,1,0,0,2,125786,0,7207.816,34.67009,0,12,1,16.51982,4.157489,20.14317,0,0,40.82048,0,0,0,2,1,5,92.5,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.81962,8.88306,1.609438,3.709184,1
-11,1,0,0,3,125786,0,7207.816,35.67009,0,12,1,27.12205,7.332998,0,0,0,34.45505,0,0,0,4,1,5,92.5,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.81962,8.88306,1.609438,3.539655,1
-8,1,50,0,1,125798,0,8419.976,3.496235,0,12,1,18.58513,5.785372,0,0,0,24.3705,0,0,0,3,0,4,74.36826,13.73189,0,,599,599,1,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,75.69691,9.038481,1.386294,3.193374,1
-8,1,50,0,2,125798,0,8419.976,4.496235,0,12,1,32.85871,8.652793,0,0,0,41.5115,0,0,0,6,0,4,74.36826,13.73189,0,,599,599,1,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,75.69691,9.038481,1.386294,3.725971,1
-8,1,50,0,3,125798,0,8419.976,5.496235,0,12,1,56.53366,2.493766,0,0,0,59.02743,0,0,0,4,0,4,74.36826,13.73189,0,,599,599,1,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,75.69691,9.038481,1.386294,4.078002,1
-8,1,50,0,4,125798,0,8419.976,6.496235,0,12,1,28.12356,1.032734,0,0,0,29.15629,0,0,0,2,1,5,74.36826,13.73189,0,,599,599,1,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,75.69691,9.038481,1.609438,3.372671,1
-8,1,50,0,5,125798,0,8419.976,7.496235,0,12,1,81.07914,16.08125,0,0,0,97.16039,0,0,0,7,0,5,74.36826,13.73189,0,,599,599,1,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,75.69691,9.038481,1.609438,4.576363,1
-8,1,50,0,1,125799,0,8419.976,27.74812,1,12,1,41.36691,17.44005,0,0,0,58.80695,0,0,0,6,0,4,82.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,78.26785,9.038481,1.386294,4.07426,1
-8,1,50,0,2,125799,0,8419.976,28.74812,1,12,1,30.12048,9.83023,0,0,0,39.95071,0,0,0,1,0,4,82.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,78.26785,9.038481,1.386294,3.687646,1
-8,1,50,0,3,125799,0,8419.976,29.74812,1,12,1,8.977556,5.21197,35.41147,0,1465.092,1514.693,1,0,0,0,1,4,82.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,78.26785,9.038481,1.386294,7.322968,1
-8,1,50,0,4,125799,0,8419.976,30.74812,1,12,1,24.2047,23.02905,0,0,0,47.23375,0,0,0,2,0,5,82.5,13.73189,0,,599,599,0,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,78.26785,9.038481,1.609438,3.855109,1
-8,1,50,0,5,125799,0,8419.976,31.74812,1,12,1,0,0,13.26703,0,0,13.26703,0,0,0,0,0,5,82.5,13.73189,0,,599,599,0,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,78.26785,9.038481,1.609438,2.585282,1
-8,1,50,0,1,125800,0,8419.976,32.05202,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,87.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,77.63718,9.038481,1.386294,,0
-8,1,50,0,2,125800,0,8419.976,33.05202,0,14,1,55.31216,23.84447,0,0,0,79.15662,0,0,0,5,0,4,87.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,77.63718,9.038481,1.386294,4.371428,1
-8,1,50,0,3,125800,0,8419.976,34.05202,0,14,1,46.90773,9.17207,27.9601,0,0,84.0399,0,0,0,3,0,4,87.5,13.73189,0,,599,599,0,0,1.386294,6.395262,0,3.931826,7.088409,0,0,0,77.63718,9.038481,1.386294,4.431292,1
-8,1,50,0,4,125800,0,8419.976,35.05202,0,14,1,20.05532,6.851083,0,0,0,26.90641,0,0,0,0,0,5,87.5,13.73189,0,,599,599,0,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,77.63718,9.038481,1.609438,3.292365,1
-8,1,50,0,5,125800,0,8419.976,36.05202,0,14,1,8.887008,0,0,0,0,8.887008,0,0,0,1,0,5,87.5,13.73189,0,,599,599,0,0,1.609438,6.395262,0,3.931826,7.088409,0,0,0,77.63718,9.038481,1.609438,2.18459,1
-8,1,50,0,1,125801,0,8419.976,.5804244,1,12,1,65.94724,10.76139,0,0,0,76.70863,0,0,0,8,0,4,74.36826,13.73189,0,,599,599,1,1,1.386294,6.395262,0,3.931826,7.088409,0,0,0,79.42434,9.038481,1.386294,4.340014,1
-8,1,50,0,2,125801,0,8419.976,1.580424,1,12,1,37.23987,19.82475,0,0,0,57.06462,0,0,0,7,0,4,74.36826,13.73189,0,,599,599,1,1,1.386294,6.395262,0,3.931826,7.088409,0,0,0,79.42434,9.038481,1.386294,4.044184,1
-8,1,50,0,3,125801,0,8419.976,2.580424,1,12,1,7.98005,0,0,0,0,7.98005,0,0,0,1,0,4,74.36826,13.73189,0,,599,599,1,1,1.386294,6.395262,0,3.931826,7.088409,0,0,0,79.42434,9.038481,1.386294,2.076945,1
-8,1,50,0,4,125801,0,8419.976,3.580424,1,12,1,27.66252,0,0,0,0,27.66252,0,0,0,3,0,5,74.36826,13.73189,0,,599,599,1,1,1.609438,6.395262,0,3.931826,7.088409,0,0,0,79.42434,9.038481,1.609438,3.320078,1
-8,1,50,0,5,125801,0,8419.976,4.580424,1,12,1,49.09014,0,0,0,0,49.09014,0,0,0,2,1,5,74.36826,13.73189,0,,599,599,1,1,1.609438,6.395262,0,3.931826,7.088409,0,0,0,79.42434,9.038481,1.609438,3.893658,1
-8,1,50,0,1,125806,0,14051.49,28.63244,1,12,1,8.833922,18.49823,0,0,0,27.33216,0,0,0,1,0,3,83.8,13.73189,0,,718,718,0,0,1.098612,6.576469,0,3.931826,7.269617,0,0,0,79.52938,9.550555,1.098612,3.308064,1
-8,1,50,0,2,125806,0,14051.49,29.63244,1,12,1,38.27493,14.47978,0,0,0,52.75472,0,0,0,4,2,3,83.8,13.73189,0,,718,718,0,0,1.098612,6.576469,0,3.931826,7.269617,0,0,0,79.52938,9.550555,1.098612,3.965653,1
-8,1,50,0,3,125806,0,14051.49,30.63244,1,12,1,8.845209,22.13268,0,0,0,30.97789,0,0,0,1,0,3,83.8,13.73189,0,,718,718,0,0,1.098612,6.576469,0,3.931826,7.269617,0,0,0,79.52938,9.550555,1.098612,3.433274,1
-8,1,50,0,1,125807,0,14051.49,8.531143,1,12,1,47.93875,7.832745,14.77032,0,0,70.54182,0,0,0,5,1,3,74.36826,13.73189,0,,718,718,1,1,1.098612,6.576469,0,3.931826,7.269617,1,0,0,79.35551,9.550555,1.098612,4.256206,1
-8,1,50,0,2,125807,0,14051.49,9.531143,1,12,1,16.17251,2.560647,21.04582,0,0,39.77898,0,0,0,1,1,3,74.36826,13.73189,0,,718,718,1,1,1.098612,6.576469,0,3.931826,7.269617,1,0,0,79.35551,9.550555,1.098612,3.683339,1
-8,1,50,0,3,125807,0,14051.49,10.53114,1,12,1,23.09582,0,11.05651,0,0,34.15233,0,0,0,2,1,3,74.36826,13.73189,0,,718,718,1,1,1.098612,6.576469,0,3.931826,7.269617,1,0,0,79.35551,9.550555,1.098612,3.530831,1
-8,1,50,0,1,125808,0,14051.49,8.531143,0,12,1,63.60424,18.22144,0,0,0,81.82568,0,0,0,13,0,3,74.36826,13.73189,0,,718,718,1,0,1.098612,6.576469,0,3.931826,7.269617,0,1,0,60.19517,9.550555,1.098612,4.404591,1
-8,1,50,0,2,125808,0,14051.49,9.531143,0,12,1,77.08895,21.96766,18.88949,0,0,117.9461,0,0,0,12,1,3,74.36826,13.73189,0,,718,718,1,0,1.098612,6.576469,0,3.931826,7.269617,0,1,0,60.19517,9.550555,1.098612,4.770227,1
-8,1,50,0,3,125808,0,14051.49,10.53114,0,12,1,72.72727,13.09582,8.039312,0,0,93.86241,0,0,0,13,1,3,74.36826,13.73189,0,,718,718,1,0,1.098612,6.576469,0,3.931826,7.269617,0,1,0,60.19517,9.550555,1.098612,4.54183,1
-6,1,25,0,1,125810,0,10455.96,8.303902,1,12,1,10.25332,0,0,0,0,10.25332,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.24701,9.255023,1.386294,2.327601,1
-6,1,25,0,2,125810,0,10455.96,9.303902,1,12,1,5.506608,0,0,0,0,5.506608,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.24701,9.255023,1.386294,1.705949,1
-6,1,25,0,3,125810,0,10455.96,10.3039,1,12,1,11.04972,0,0,0,166.6449,177.6946,1,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.24701,9.255023,1.386294,5.180067,1
-6,1,25,0,1,125811,0,10455.96,38.2642,1,12,1,138.1182,6.574186,0,0,0,144.6924,0,0,0,5,0,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.34193,9.255023,1.386294,4.97461,1
-6,1,25,0,2,125811,0,10455.96,39.2642,1,12,1,29.18502,13.51872,0,0,0,42.70374,0,0,0,3,0,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.34193,9.255023,1.386294,3.754287,1
-6,1,25,0,3,125811,0,10455.96,40.2642,1,12,1,8.538423,7.157207,0,0,0,15.69563,0,0,0,1,0,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.34193,9.255023,1.386294,2.753382,1
-6,1,25,0,1,125812,0,10455.96,15.65777,0,12,1,53.49819,51.538,0,0,0,105.0362,0,0,0,2,4,4,77.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.2968,9.255023,1.386294,4.654305,1
-6,1,25,0,2,125812,0,10455.96,16.65777,0,12,1,6.60793,36.17841,0,0,0,42.78634,0,0,0,1,0,4,77.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.2968,9.255023,1.386294,3.756219,1
-6,1,25,0,3,125812,0,10455.96,17.65777,0,12,1,24.61075,33.24962,0,0,0,57.86037,0,0,0,1,0,4,77.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.2968,9.255023,1.386294,4.058033,1
-6,1,25,0,1,125813,0,10455.96,42.66393,0,12,1,15.07841,0,38.76357,0,0,53.84198,0,0,0,1,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.66858,9.255023,1.386294,3.986053,1
-6,1,25,0,2,125813,0,10455.96,43.66393,0,12,1,89.75771,3.276432,0,0,0,93.03414,0,0,0,5,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.66858,9.255023,1.386294,4.532967,1
-6,1,25,0,3,125813,0,10455.96,44.66393,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.66858,9.255023,1.386294,,0
-6,1,25,0,1,125817,0,7893.92,27.98905,0,14,1,17.38609,11.95444,0,0,0,29.34053,0,0,0,3,0,2,80,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,77.89652,8.973975,.6931472,3.37897,1
-6,1,25,0,2,125817,0,7893.92,28.98905,0,14,1,68.45564,33.51041,0,0,0,101.966,0,0,0,6,0,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.89652,8.973975,1.098612,4.62464,1
-6,1,25,0,3,125817,0,7893.92,29.98905,0,14,1,28.91771,24.4389,0,0,0,53.35661,0,0,0,3,0,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.89652,8.973975,1.098612,3.976998,1
-6,1,25,0,1,125818,0,7893.92,24.09309,1,12,1,80.03597,20.73741,0,0,1351.439,1452.212,2,0,0,5,2,2,86.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,78.52718,8.973975,.6931472,7.280843,1
-6,1,25,0,2,125818,0,7893.92,25.09309,1,12,1,174.5619,19.24973,0,0,947.6287,1141.44,1,0,0,6,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.52718,8.973975,1.098612,7.040046,1
-6,1,25,0,3,125818,0,7893.92,26.09309,1,12,1,48.00499,42.1197,0,0,0,90.12469,0,0,0,0,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.52718,8.973975,1.098612,4.501194,1
-1,1,0,1,1,125819,0,6789.702,59.02533,1,14,1,19.03629,33.78941,0,0,0,52.8257,0,0,0,0,0,1,82.1,13,0,,150,93,0,0,0,4.532599,1,0,0,0,0,0,78.15913,8.82331,0,3.966998,1
-1,1,0,1,2,125819,0,6789.702,60.02533,1,14,1,145.3457,14.31682,52.62384,0,0,212.2863,0,0,0,4,0,1,82.1,13,0,,150,93,0,0,0,4.532599,1,0,0,0,0,0,78.15913,8.82331,0,5.357936,1
-1,1,0,1,3,125819,0,6789.702,61.02533,1,14,1,0,14.79187,0,0,0,14.79187,0,0,0,0,0,1,82.1,13,0,,150,93,0,0,0,4.532599,1,0,0,0,0,0,78.15913,8.82331,0,2.694078,1
-4,1,100,0,1,125825,0,5982.63,21.49213,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.7,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,68.84245,8.696783,.6931472,,0
-4,1,100,0,2,125825,0,5982.63,22.49213,0,12,1,4.043127,0,0,0,0,4.043127,0,0,0,1,0,2,74.7,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,68.84245,8.696783,.6931472,1.397018,1
-4,1,100,0,3,125825,0,5982.63,23.49213,0,12,1,7.371007,6.422605,0,0,0,13.79361,0,0,0,1,0,3,74.7,0,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,68.84245,8.696783,1.098612,2.624206,1
-4,1,100,0,4,125825,0,5982.63,24.49213,0,12,1,9.913401,2.402005,0,0,0,12.31541,0,0,0,2,0,4,74.7,0,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,68.84245,8.696783,1.386294,2.510851,1
-4,1,100,0,5,125825,0,5982.63,25.49213,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.7,0,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,68.84245,8.696783,1.386294,,0
-4,1,100,0,1,125826,0,5982.63,21.79055,1,13,1,0,8.551237,0,0,0,8.551237,0,0,0,0,0,2,92.6,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,70.0071,8.696783,.6931472,2.146076,1
-4,1,100,0,2,125826,0,5982.63,22.79055,1,13,1,195.1483,7.681941,0,0,249.3261,452.1563,2,1,0,1,0,2,92.6,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,70.0071,8.696783,.6931472,6.114028,1
-4,1,100,0,3,125826,0,5982.63,23.79055,1,13,1,2.457002,26.60442,0,0,504.5946,533.656,1,0,0,0,0,3,92.6,0,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,70.0071,8.696783,1.098612,6.279751,1
-4,1,100,0,4,125826,0,5982.63,24.79055,1,13,1,15.38286,6.536007,0,0,0,21.91887,0,0,0,1,0,4,92.6,0,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,70.0071,8.696783,1.386294,3.087348,1
-4,1,100,0,5,125826,0,5982.63,25.79055,1,13,1,37.51563,1.350563,0,0,0,38.8662,0,0,0,0,1,4,92.6,0,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,70.0071,8.696783,1.386294,3.660125,1
-11,1,0,0,1,125832,0,7975.186,2.302532,0,12,1,142.5513,5.500603,0,0,0,148.0519,0,0,0,4,0,4,74.36826,13.73189,0,,0,323,1,0,1.386294,5.777652,0,0,0,1,0,0,72.61372,8.984216,1.386294,4.997563,1
-11,1,0,0,2,125832,0,7975.186,3.302532,0,12,1,83.14978,10.5011,7.957048,0,0,101.6079,0,0,0,4,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,1,0,0,72.61372,8.984216,1.609438,4.621121,1
-11,1,0,0,3,125832,0,7975.186,4.302533,0,12,1,37.66951,0,0,0,0,37.66951,0,0,0,4,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,1,0,0,72.61372,8.984216,1.609438,3.628851,1
-11,1,0,0,4,125832,0,7975.186,5.302533,0,12,1,4.636069,4.942049,0,0,0,9.578117,0,0,0,1,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,1,0,0,72.61372,8.984216,1.609438,2.259481,1
-11,1,0,0,5,125832,0,7975.186,6.302533,0,12,1,35.72948,4.100383,0,0,0,39.82986,0,0,0,3,1,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,1,0,0,72.61372,8.984216,1.609438,3.684617,1
-11,1,0,0,1,125833,0,7975.186,28.26831,1,12,1,68.45597,27.46683,0,0,1018.16,1114.083,1,0,0,3,0,4,63.8,13.73189,0,,0,323,0,0,1.386294,5.777652,0,0,0,1,0,0,65.52039,8.984216,1.386294,7.015787,1
-11,1,0,0,2,125833,0,7975.186,29.26831,1,12,1,214.4824,41.87225,0,0,0,256.3546,0,0,0,12,0,5,63.8,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,65.52039,8.984216,1.609438,5.546562,1
-11,1,0,0,3,125833,0,7975.186,30.26831,1,12,1,382.3204,21.48669,0,0,0,403.8071,0,0,0,14,0,5,63.8,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,65.52039,8.984216,1.609438,6.000937,1
-11,1,0,0,4,125833,0,7975.186,31.26831,1,12,1,45.89708,7.612425,0,0,0,53.5095,0,0,0,5,0,5,63.8,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,65.52039,8.984216,1.609438,3.979859,1
-11,1,0,0,5,125833,0,7975.186,32.26831,1,12,1,369.2046,1.52701,0,0,0,370.7316,0,0,0,10,4,5,63.8,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,65.52039,8.984216,1.609438,5.915478,1
-11,1,0,0,1,125834,0,7975.186,5.185489,0,12,1,30.15681,40.94692,0,0,0,71.10374,0,0,0,4,0,4,74.36826,13.73189,0,,0,323,1,0,1.386294,5.777652,0,0,0,0,1,0,64.17065,8.984216,1.386294,4.26414,1
-11,1,0,0,2,125834,0,7975.186,6.185489,0,12,1,22.57709,13.67291,0,0,0,36.25,0,0,0,4,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,0,1,0,64.17065,8.984216,1.609438,3.590439,1
-11,1,0,0,3,125834,0,7975.186,7.185489,0,12,1,24.10849,9.814164,0,0,0,33.92265,0,0,0,4,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,0,1,0,64.17065,8.984216,1.609438,3.524083,1
-11,1,0,0,4,125834,0,7975.186,8.18549,0,12,1,15.76263,7.927677,0,0,0,23.69031,0,0,0,3,0,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,0,1,0,64.17065,8.984216,1.609438,3.165066,1
-11,1,0,0,5,125834,0,7975.186,9.18549,0,12,1,35.30413,3.564441,0,0,0,38.86857,0,0,0,3,1,5,74.36826,13.73189,0,,0,323,1,0,1.609438,5.777652,0,0,0,0,1,0,64.17065,8.984216,1.609438,3.660186,1
-11,1,0,0,1,125835,0,7975.186,28.87337,0,12,1,28.95054,9.384801,0,0,0,38.33534,0,0,0,3,0,4,72.5,13.73189,0,,0,323,0,0,1.386294,5.777652,0,0,0,1,0,0,71.03061,8.984216,1.386294,3.646372,1
-11,1,0,0,2,125835,0,7975.186,29.87337,0,12,1,22.85242,10.76542,24.17401,0,0,57.79185,0,0,0,2,1,5,72.5,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,71.03061,8.984216,1.609438,4.056848,1
-11,1,0,0,3,125835,0,7975.186,30.87337,0,12,1,15.8212,0,0,0,0,15.8212,0,0,0,1,0,5,72.5,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,71.03061,8.984216,1.609438,2.761351,1
-11,1,0,0,4,125835,0,7975.186,31.87337,0,12,1,29.20723,10.54242,0,0,571.9843,611.7339,1,0,0,5,0,5,72.5,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,71.03061,8.984216,1.609438,6.416297,1
-11,1,0,0,5,125835,0,7975.186,32.87337,0,12,1,16.58869,2.973203,30.22544,0,0,49.78732,0,0,0,1,1,5,72.5,13.73189,0,,0,323,0,0,1.609438,5.777652,0,0,0,1,0,0,71.03061,8.984216,1.609438,3.90776,1
-3,1,100,0,1,125836,0,6799.007,36.56947,1,16,1,107.9614,53.13631,20.91074,99.51749,1011.683,1193.691,1,0,11,19,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,79.52723,8.824679,0,7.084805,1
-3,1,100,0,2,125836,0,6799.007,37.56947,1,16,1,11.56388,16.35463,12.11454,115.6388,0,40.03304,0,0,6,2,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,79.52723,8.824679,0,3.689705,1
-3,1,100,0,3,125836,0,6799.007,38.56947,1,16,1,31.64239,18.3325,0,421.8985,0,49.97489,0,0,42,4,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,79.52723,8.824679,0,3.911521,1
-3,1,100,0,1,125837,0,8071.34,43.94524,1,12,1,122.1351,67.4427,27.73221,0,0,217.31,0,0,0,15,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,67.36094,8.996199,0,5.381325,1
-3,1,100,0,2,125837,0,8071.34,44.94524,1,12,1,162.9956,25,0,0,0,187.9956,0,0,0,10,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,67.36094,8.996199,0,5.236419,1
-3,1,100,0,3,125837,0,8071.34,45.94524,1,12,1,45.20341,30.24109,0,0,0,75.4445,0,0,0,7,0,1,57.5,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,67.36094,8.996199,0,4.323397,1
-1,1,0,1,1,125838,0,7445.503,52.89528,1,12,1,34.98191,4.221954,40.97105,0,0,80.17491,0,0,0,3,2,2,89.5,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.84401,8.9155,.6931472,4.384211,1
-1,1,0,1,2,125838,0,7445.503,53.89528,1,12,1,11.01322,0,24.46586,0,0,35.47908,0,0,0,0,1,2,89.5,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.84401,8.9155,.6931472,3.568943,1
-1,1,0,1,3,125838,0,7445.503,54.89528,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.5,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.84401,8.9155,.6931472,,0
-1,1,0,1,4,125838,0,7445.503,55.89528,1,12,1,4.636069,2.577654,0,0,0,7.213723,0,0,0,1,0,2,89.5,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.84401,8.9155,.6931472,1.975985,1
-1,1,0,1,5,125838,0,7445.503,56.89528,1,12,1,11.05912,0,32.89239,0,0,43.95151,0,0,0,0,1,2,89.5,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.84401,8.9155,.6931472,3.783087,1
-1,1,0,1,1,125839,0,7445.503,52.94182,0,10,1,62.72618,20.00603,40.97105,0,0,123.7033,0,0,0,5,2,2,76.8,17.4,1,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,63.522,8.9155,.6931472,4.817885,1
-1,1,0,1,2,125839,0,7445.503,53.94182,0,10,1,33.03965,49.20154,24.46586,0,0,106.707,0,0,0,2,3,2,76.8,17.4,1,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,63.522,8.9155,.6931472,4.670087,1
-1,1,0,1,3,125839,0,7445.503,54.94182,0,10,1,12.05424,19.37218,0,0,0,31.42642,0,0,0,0,2,2,76.8,17.4,1,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,63.522,8.9155,.6931472,3.447649,1
-1,1,0,1,4,125839,0,7445.503,55.94182,0,10,1,43.11544,125.9805,12.98099,0,0,182.077,0,0,0,3,3,2,76.8,17.4,1,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,63.522,8.9155,.6931472,5.20443,1
-1,1,0,1,5,125839,0,7445.503,56.94182,0,10,1,89.11102,135.6359,20.44662,0,4835.295,5080.489,1,0,0,4,5,2,76.8,17.4,1,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,63.522,8.9155,.6931472,8.533163,1
-1,1,0,1,1,125840,0,10787.84,27.84942,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,89.5,0,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,78.6153,9.286267,1.386294,,0
-1,1,0,1,2,125840,0,10787.84,28.84942,0,12,1,4.381161,11.99343,0,0,0,16.37459,0,0,0,1,0,4,89.5,0,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,78.6153,9.286267,1.386294,2.795731,1
-1,1,0,1,3,125840,0,10787.84,29.84942,0,12,1,21.44638,13.51621,0,0,0,34.96259,0,0,0,3,0,4,89.5,0,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,78.6153,9.286267,1.386294,3.554279,1
-1,1,0,1,1,125841,0,10787.84,6.390144,1,12,1,21.88249,0,0,0,0,21.88249,0,0,0,1,1,4,74.36826,13.73189,0,,450,530,1,1,1.386294,6.272877,1,0,0,0,0,0,84.83971,9.286267,1.386294,3.085687,1
-1,1,0,1,2,125841,0,10787.84,7.390144,1,12,1,0,1.807229,0,0,0,1.807229,0,0,0,0,0,4,74.36826,13.73189,0,,450,530,1,1,1.386294,6.272877,1,0,0,0,0,0,84.83971,9.286267,1.386294,.5917947,1
-1,1,0,1,3,125841,0,10787.84,8.390143,1,12,1,26.30923,39.56609,0,0,0,65.87531,0,0,0,4,0,4,74.36826,13.73189,0,,450,530,1,1,1.386294,6.272877,1,0,0,0,0,0,84.83971,9.286267,1.386294,4.187764,1
-1,1,0,1,1,125842,0,10787.84,24.34223,1,12,1,20.98321,6.594724,0,0,0,27.57794,0,0,0,4,0,4,87.4,13,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,79.50648,9.286267,1.386294,3.317016,1
-1,1,0,1,2,125842,0,10787.84,25.34223,1,12,1,9.857613,8.105148,0,0,0,17.96276,0,0,0,2,0,4,87.4,13,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,79.50648,9.286267,1.386294,2.888301,1
-1,1,0,1,3,125842,0,10787.84,26.34223,1,12,1,106.4838,18.42893,0,0,0,124.9127,0,0,0,6,0,4,87.4,13,0,,450,530,0,0,1.386294,6.272877,1,0,0,0,0,0,79.50648,9.286267,1.386294,4.827615,1
-1,1,0,1,1,125843,0,10787.84,3.863107,0,12,1,8.093525,7.494005,0,0,0,15.58753,0,0,0,1,0,4,74.36826,13.73189,0,,450,530,1,0,1.386294,6.272877,1,0,0,0,0,0,81.92207,9.286267,1.386294,2.746471,1
-1,1,0,1,2,125843,0,10787.84,4.863108,0,12,1,12.59584,4.24425,0,0,0,16.84009,0,0,0,2,0,4,74.36826,13.73189,0,,450,530,1,0,1.386294,6.272877,1,0,0,0,0,0,81.92207,9.286267,1.386294,2.823762,1
-1,1,0,1,3,125843,0,10787.84,5.863108,0,12,1,64.83791,18.85287,0,0,0,83.69077,0,0,0,5,1,4,74.36826,13.73189,0,,450,530,1,0,1.386294,6.272877,1,0,0,0,0,0,81.92207,9.286267,1.386294,4.427129,1
-7,1,25,0,1,125869,0,9542.002,4.889802,0,13,1,34.74676,3.292108,0,0,0,38.03887,0,0,0,1,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.91723,9.163564,1.386294,3.638608,1
-7,1,25,0,1,125870,0,9542.002,26.49144,1,13,1,17.07892,4.110719,0,0,0,21.18963,0,0,0,2,0,4,61.3,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,72.26237,9.163564,1.386294,3.053512,1
-7,1,25,0,1,125871,0,9542.002,6.896646,1,13,1,25.91284,6.419317,0,0,0,32.33216,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,83.83487,9.163564,1.386294,3.476062,1
-7,1,25,0,1,125872,0,9542.002,27.436,0,13,1,24.14605,12.56184,14.57008,0,0,51.27797,0,0,0,2,0,4,68.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78554,9.163564,1.386294,3.937261,1
-6,1,25,1,1,125891,0,19523.22,38.09172,1,14,1,62.72085,7.773851,0,0,0,70.4947,0,0,0,4,0,4,83.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,66.25087,9.879411,1.386294,4.255538,1
-6,1,25,1,2,125891,0,19523.22,39.09172,1,14,1,155.7952,6.652291,0,0,0,162.4474,0,0,0,4,1,4,83.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,66.25087,9.879411,1.386294,5.090354,1
-6,1,25,1,3,125891,0,19523.22,40.09172,1,14,1,225.5774,4.388206,28.99263,0,0,258.9582,0,0,0,7,1,4,83.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,66.25087,9.879411,1.386294,5.556667,1
-6,1,25,1,1,125892,0,19523.22,38.18207,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,95.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.21307,9.879411,1.386294,,0
-6,1,25,1,2,125892,0,19523.22,39.18207,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,95.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.21307,9.879411,1.386294,,0
-6,1,25,1,3,125892,0,19523.22,40.18207,0,15,1,17.19902,0,0,0,0,17.19902,0,0,0,1,0,4,95.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.21307,9.879411,1.386294,2.844852,1
-6,1,25,1,1,125893,0,19523.22,16.64066,0,14,1,41.8139,16.0424,0,0,0,57.8563,0,0,0,6,0,4,86.3,0,1,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,4.057962,1
-6,1,25,1,2,125893,0,19523.22,17.64066,0,14,1,34.50135,1.617251,8.086253,0,0,44.20485,0,0,0,4,0,4,86.3,0,1,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,3.788835,1
-6,1,25,1,3,125893,0,19523.22,18.64066,0,14,1,0,2.432432,0,0,0,2.432432,0,0,0,0,0,4,86.3,0,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,.8888918,1
-6,1,25,1,1,125894,0,19523.22,17.66735,0,14,1,11.18964,0,0,0,0,11.18964,0,0,0,2,0,4,93.7,4.3,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,2.414988,1
-6,1,25,1,2,125894,0,19523.22,18.66735,0,14,1,58.76011,2.458221,0,0,0,61.21833,0,0,0,3,0,4,93.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,4.114447,1
-6,1,25,1,3,125894,0,19523.22,19.66735,0,14,1,145.4545,38.32924,0,0,0,183.7838,0,0,0,14,3,4,93.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.05912,9.879411,1.386294,5.21376,1
-1,1,0,1,1,125907,0,18647.29,38.52703,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,93.7,0,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,75.67756,9.83351,1.098612,,0
-1,1,0,1,2,125907,0,18647.29,39.52703,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,93.7,0,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,75.67756,9.83351,1.098612,,0
-1,1,0,1,3,125907,0,18647.29,40.52703,0,8,1,43.58722,0,0,0,0,43.58722,0,0,0,1,0,3,93.7,0,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,75.67756,9.83351,1.098612,3.774764,1
-1,1,0,1,4,125907,0,18647.29,41.52703,0,8,1,10.93892,0,0,0,0,10.93892,0,0,0,2,0,3,93.7,0,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,75.67756,9.83351,1.098612,2.392328,1
-1,1,0,1,5,125907,0,18647.29,42.52703,0,8,1,19.17466,5.122968,29.18716,0,0,53.48479,0,0,0,2,0,3,93.7,0,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,75.67756,9.83351,1.098612,3.979397,1
-1,1,0,1,1,125908,0,18647.29,38.16564,1,11,1,21.20141,10.3298,0,0,0,31.53121,0,0,0,2,0,3,82.1,13,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,76.56874,9.83351,1.098612,3.450978,1
-1,1,0,1,2,125908,0,18647.29,39.16564,1,11,1,33.531,9.229111,0,0,0,42.76011,0,0,0,0,1,3,82.1,13,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,76.56874,9.83351,1.098612,3.755606,1
-1,1,0,1,3,125908,0,18647.29,40.16564,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,82.1,13,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,76.56874,9.83351,1.098612,,0
-1,1,0,1,4,125908,0,18647.29,41.16564,1,11,1,430.2963,13.79672,25.48314,0,0,469.5761,0,0,0,7,0,3,82.1,13,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,76.56874,9.83351,1.098612,6.15183,1
-1,1,0,1,5,125908,0,18647.29,42.16564,1,11,1,22.50938,5.769071,0,0,0,28.27845,0,0,0,3,0,3,82.1,13,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,76.56874,9.83351,1.098612,3.3421,1
-1,1,0,1,1,125909,0,18647.29,16.5421,1,11,1,15.90106,18.43345,0,0,0,34.33451,0,0,0,3,0,3,82.1,8.7,0,,113,113,1,1,1.098612,4.727388,1,0,0,0,0,0,72.18691,9.83351,1.098612,3.536151,1
-1,1,0,1,2,125909,0,18647.29,17.5421,1,11,1,50.40431,10.27493,19.71968,0,0,80.39892,0,0,0,3,0,3,82.1,8.7,0,,113,113,1,1,1.098612,4.727388,1,0,0,0,0,0,72.18691,9.83351,1.098612,4.387001,1
-1,1,0,1,3,125909,0,18647.29,18.5421,1,11,1,17.69042,9.77887,0,0,0,27.46929,0,0,0,3,0,3,82.1,8.7,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,72.18691,9.83351,1.098612,3.313069,1
-1,1,0,1,4,125909,0,18647.29,19.5421,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,82.1,8.7,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,72.18691,9.83351,1.098612,,0
-1,1,0,1,5,125909,0,18647.29,20.5421,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,82.1,8.7,0,,113,113,0,0,1.098612,4.727388,1,0,0,0,0,0,72.18691,9.83351,1.098612,,0
-1,1,0,0,1,125962,0,3588.089,15.34292,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,80,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,0,0,0,70.76381,8.185654,1.098612,,0
-1,1,0,0,2,125962,0,3588.089,16.34292,1,10,1,55.52561,0,1.886792,0,0,57.4124,0,0,0,2,2,3,80,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,0,0,0,70.76381,8.185654,1.098612,4.05026,1
-1,1,0,0,3,125962,0,3588.089,17.34292,1,10,1,126.7813,0,0,0,0,126.7813,0,0,0,4,0,3,80,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,0,0,0,70.76381,8.185654,1.098612,4.842464,1
-1,1,0,0,1,125963,0,3588.089,55.24162,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,83.8,13.73189,0,,450,0,0,0,1.098612,0,1,0,0,1,0,0,64.55314,8.185654,1.098612,,0
-1,1,0,0,2,125963,0,3588.089,56.24162,1,10,1,15.09434,3.234501,0,0,0,18.32884,0,0,0,1,0,3,83.8,13.73189,0,,450,0,0,0,1.098612,0,1,0,0,1,0,0,64.55314,8.185654,1.098612,2.908476,1
-1,1,0,0,3,125963,0,3588.089,57.24162,1,10,1,6.879607,0,0,0,0,6.879607,0,0,0,1,0,3,83.8,13.73189,0,,450,0,0,0,1.098612,0,1,0,0,1,0,0,64.55314,8.185654,1.098612,1.928561,1
-1,1,0,0,1,125964,0,3588.089,58.2204,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,47.8484,8.185654,1.098612,,0
-1,1,0,0,2,125964,0,3588.089,59.2204,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,47.8484,8.185654,1.098612,,0
-1,1,0,0,3,125964,0,3588.089,60.2204,0,9,1,0,0,0,0,360.2555,360.2555,1,0,0,0,0,3,70,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,47.8484,8.185654,1.098612,5.886814,1
-1,1,0,0,1,125965,0,1,21.65366,0,9,1,10.60071,0,0,0,0,10.60071,0,0,0,2,0,1,45,13.73189,0,,150,0,0,0,0,0,1,0,0,1,0,0,68.1502,.6931472,0,2.360921,1
-1,1,0,0,2,125965,0,1,22.65366,0,9,1,9.703504,0,0,0,0,9.703504,0,0,0,1,0,1,45,13.73189,0,,150,0,0,0,0,0,1,0,0,1,0,0,68.1502,.6931472,0,2.272487,1
-1,1,0,0,3,125965,0,1,23.65366,0,9,1,57.64128,0,0,0,483.8575,541.4988,2,1,0,2,0,2,45,13.73189,0,,150,0,0,0,.6931472,0,1,0,0,1,0,0,68.1502,.6931472,.6931472,6.294341,1
-7,1,25,1,1,125967,1,1176.179,8.539356,1,5,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,340,340,1,1,1.791759,5.828946,0,3.258096,7.21524,1,0,0,76.93629,7.070876,1.791759,,0
-7,1,25,1,2,125967,1,1176.179,9.539356,1,5,1,8.165487,0,0,0,0,8.165487,0,0,0,1,0,6,74.36826,13.73189,0,,340,340,1,1,1.791759,5.828946,0,3.258096,7.21524,1,0,0,76.93629,7.070876,1.791759,2.099916,1
-7,1,25,1,1,125968,1,1176.179,16.41615,1,5,1,0,0,0,0,0,0,0,0,0,0,0,6,75.8,4.3,0,,340,340,1,1,1.791759,5.828946,0,3.258096,7.21524,1,0,0,58.89369,7.070876,1.791759,,0
-7,1,25,1,2,125968,1,1176.179,17.41615,1,5,1,0,0,0,0,0,0,0,0,0,0,0,6,75.8,4.3,0,,340,340,1,1,1.791759,5.828946,0,3.258096,7.21524,1,0,0,58.89369,7.070876,1.791759,,0
-7,1,25,1,1,125969,1,1176.179,17.52225,1,5,1,136.8233,5.264723,0,0,0,142.088,0,0,0,3,0,6,85.3,4.3,0,,340,340,1,1,1.791759,5.828946,0,3.258096,7.21524,1,0,0,58.69306,7.070876,1.791759,4.956447,1
-7,1,25,1,2,125969,1,1176.179,18.52225,1,5,1,41.3718,3.739793,0,0,253.4295,298.5411,1,0,0,2,0,6,85.3,4.3,0,,340,340,0,0,1.791759,5.828946,0,3.258096,7.21524,1,0,0,58.69306,7.070876,1.791759,5.698908,1
-7,1,25,1,3,125969,1,1176.179,19.52225,1,5,1,9.415262,0,0,0,0,9.415262,0,0,0,0,0,1,85.3,4.3,0,,340,340,0,0,0,5.828946,0,3.258096,7.21524,1,0,0,58.69306,7.070876,0,2.242332,1
-7,1,25,1,4,125969,1,1176.179,20.52225,1,5,1,0,0,0,0,0,0,0,0,0,0,0,1,85.3,4.3,0,,340,340,0,0,0,5.828946,0,3.258096,7.21524,1,0,0,58.69306,7.070876,0,,0
-7,1,25,1,1,125970,1,1176.179,1.850787,0,5,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,340,340,1,0,1.791759,5.828946,0,3.258096,7.21524,1,0,0,73.69083,7.070876,1.791759,,0
-7,1,25,1,2,125970,1,1176.179,2.850787,0,5,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,340,340,1,0,1.791759,5.828946,0,3.258096,7.21524,1,0,0,73.69083,7.070876,1.791759,,0
-7,1,25,1,1,125971,1,1176.179,45.83984,1,5,1,0,0,0,0,0,0,0,0,0,0,0,6,63.3,8.7,0,,340,340,0,0,1.791759,5.828946,0,3.258096,7.21524,0,1,0,51.09576,7.070876,1.791759,,0
-7,1,25,1,2,125971,1,1176.179,46.83984,1,5,1,54.98095,10.90365,0,0,0,65.8846,0,0,0,5,0,6,63.3,8.7,0,,340,340,0,0,1.791759,5.828946,0,3.258096,7.21524,0,1,0,51.09576,7.070876,1.791759,4.187905,1
-1,1,0,0,1,125983,0,16303.07,27.41684,1,12,1,15.07841,8.455971,0,0,0,23.53438,0,0,0,2,0,2,35,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,72.96643,9.69917,.6931472,3.158462,1
-1,1,0,0,2,125983,0,16303.07,28.41684,1,12,1,88.10573,17.94604,0,0,0,106.0518,0,0,0,6,0,2,35,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,72.96643,9.69917,.6931472,4.663928,1
-1,1,0,0,3,125983,0,16303.07,29.41684,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,35,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,72.96643,9.69917,.6931472,,0
-1,1,0,0,1,125984,0,16303.07,9.434634,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,300,300,1,0,.6931472,5.703783,1,0,0,0,0,0,86.51532,9.69917,.6931472,,0
-1,1,0,0,2,125984,0,16303.07,10.43463,0,12,1,16.51982,3.744493,0,0,0,20.26432,0,0,0,0,0,2,74.36826,13.73189,0,,300,300,1,0,.6931472,5.703783,1,0,0,0,0,0,86.51532,9.69917,.6931472,3.008862,1
-1,1,0,0,3,125984,0,16303.07,11.43463,0,12,1,10.0452,0,0,0,0,10.0452,0,0,0,2,0,2,74.36826,13.73189,0,,300,300,1,0,.6931472,5.703783,1,0,0,0,0,0,86.51532,9.69917,.6931472,2.307095,1
-1,1,0,0,1,126004,0,13952.85,51.66325,1,12,1,257.5848,48.26889,32.326,0,1196.336,1534.515,1,0,0,35,1,2,87.5,13.73189,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,61.69535,9.543511,.6931472,7.33597,1
-1,1,0,0,2,126004,0,13952.85,52.66325,1,12,1,139.902,108.3778,9.798585,0,0,258.0784,0,0,0,20,0,2,87.5,13.73189,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,61.69535,9.543511,.6931472,5.553263,1
-1,1,0,0,3,126004,0,13952.85,53.66325,1,12,1,99.85134,44.92072,0,0,0,144.772,0,0,0,16,0,2,87.5,13.73189,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,61.69535,9.543511,.6931472,4.975161,1
-1,1,0,0,4,126004,0,13952.85,54.66325,1,12,1,187.2419,31.91831,51.85865,0,1240.936,1511.955,1,0,0,9,1,2,87.5,13.73189,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,61.69535,9.543511,.6931472,7.321159,1
-1,1,0,0,5,126004,0,13952.85,55.66325,1,12,1,275.9781,53.71898,35.17038,0,903.7021,1268.57,1,0,0,16,1,2,87.5,13.73189,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,61.69535,9.543511,.6931472,7.145645,1
-1,1,0,0,1,126005,0,13952.85,54.70226,0,16,1,217.7275,63.3373,36.68055,0,0,317.7454,0,0,0,22,1,2,85,13.73189,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,64.83063,9.543511,.6931472,5.76125,1
-1,1,0,0,2,126005,0,13952.85,55.70226,0,16,1,213.9358,207.4088,23.08111,0,0,444.4257,0,0,0,9,1,2,85,13.73189,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,64.83063,9.543511,.6931472,6.096783,1
-1,1,0,0,3,126005,0,13952.85,56.70226,0,16,1,239.3459,54.42517,29.73241,0,0,323.5035,0,0,0,13,1,2,85,13.73189,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,64.83063,9.543511,.6931472,5.77921,1
-1,1,0,0,4,126005,0,13952.85,57.70226,0,16,1,174.6214,57.96237,22.94631,0,0,255.5301,0,0,0,8,0,2,85,13.73189,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,64.83063,9.543511,.6931472,5.54334,1
-1,1,0,0,5,126005,0,13952.85,58.70226,0,16,1,71.93942,87.61464,31.59024,0,0,191.1443,0,0,0,5,1,2,85,13.73189,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,64.83063,9.543511,.6931472,5.253029,1
-9,1,50,0,1,126039,0,9542.002,28.21082,1,10,1,18.4414,1.302796,31.08269,0,0,50.82689,0,0,0,1,1,5,91.3,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,68.16984,9.163564,1.609438,3.928426,1
-9,1,50,0,2,126039,0,9542.002,29.21082,1,10,1,10.88732,9.27055,0,0,0,20.15787,0,0,0,1,0,5,91.3,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,68.16984,9.163564,1.609438,3.003595,1
-9,1,50,0,3,126039,0,9542.002,30.21082,1,10,1,10.90188,9.544103,0,0,0,20.44599,0,0,0,1,0,5,91.3,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,68.16984,9.163564,1.609438,3.017787,1
-9,1,50,0,1,126040,0,9542.002,8.416153,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,,0
-9,1,50,0,2,126040,0,9542.002,9.416153,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,,0
-9,1,50,0,3,126040,0,9542.002,10.41615,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,,0
-9,1,50,0,1,126041,0,9542.002,9.46475,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,,0
-9,1,50,0,2,126041,0,9542.002,10.46475,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,,0
-9,1,50,0,3,126041,0,9542.002,11.46475,1,10,1,226.2735,0,0,0,0,226.2735,0,0,0,3,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.09991,9.163564,1.609438,5.421745,1
-9,1,50,0,1,126042,0,9542.002,32.282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.35583,9.163564,1.609438,,0
-9,1,50,0,2,126042,0,9542.002,33.282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.35583,9.163564,1.609438,,0
-9,1,50,0,3,126042,0,9542.002,34.282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,13.73189,0,,799,799,0,0,1.609438,6.683361,0,3.931826,7.376508,1,0,0,71.35583,9.163564,1.609438,,0
-9,1,50,0,1,126049,0,12300.87,8.427105,1,11,1,118.0801,1.177856,0,0,0,119.2579,0,0,0,2,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,73.41399,9.417506,1.791759,4.781289,1
-9,1,50,0,2,126049,0,12300.87,9.427105,1,11,1,16.71159,2.156334,0,0,0,18.86792,0,0,0,1,1,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,73.41399,9.417506,1.791759,2.937463,1
-9,1,50,0,3,126049,0,12300.87,10.4271,1,11,1,7.371007,1.474201,0,0,0,8.845209,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,73.41399,9.417506,1.94591,2.179876,1
-9,1,50,0,1,126050,0,12300.87,32.10678,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,70,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,71.28197,9.417506,1.791759,,0
-9,1,50,0,2,126050,0,12300.87,33.10678,0,12,1,10.78167,0,0,0,0,10.78167,0,0,0,0,1,6,70,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,71.28197,9.417506,1.791759,2.377848,1
-9,1,50,0,3,126050,0,12300.87,34.10678,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,70,13.73189,0,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,71.28197,9.417506,1.94591,,0
-9,1,50,0,1,126051,0,12300.87,5.177276,0,11,1,44.75854,6.478209,0,0,0,51.23675,0,0,0,4,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,74.73775,9.417506,1.791759,3.936457,1
-9,1,50,0,2,126051,0,12300.87,6.177276,0,11,1,15.63342,5.54717,0,0,0,21.18059,0,0,0,2,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,74.73775,9.417506,1.791759,3.053085,1
-9,1,50,0,3,126051,0,12300.87,7.177276,0,11,1,467.9656,19.48894,0,0,1272.885,1760.339,1,0,0,8,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,74.73775,9.417506,1.94591,7.473262,1
-9,1,50,0,1,126052,0,12300.87,1.544148,0,11,1,117.7856,16.48999,0,0,0,134.2756,0,0,0,10,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,70.69041,9.417506,1.791759,4.899895,1
-9,1,50,0,2,126052,0,12300.87,2.544148,0,11,1,100.8086,8.371967,0,0,0,109.1806,0,0,0,5,5,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,70.69041,9.417506,1.791759,4.693003,1
-9,1,50,0,3,126052,0,12300.87,3.544148,0,11,1,485.4546,6.579853,0,0,0,492.0344,0,0,0,5,60,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,70.69041,9.417506,1.94591,6.198549,1
-9,1,50,0,1,126053,0,12300.87,29.73032,1,11,1,41.8139,9.110719,0,0,0,50.92462,0,0,0,2,1,6,87.5,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.535,9.417506,1.791759,3.930346,1
-9,1,50,0,2,126053,0,12300.87,30.73032,1,11,1,8.625337,13.66038,0,0,992.1833,1014.469,2,0,0,1,0,6,87.5,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.535,9.417506,1.791759,6.922121,1
-9,1,50,0,3,126053,0,12300.87,31.73032,1,11,1,19.16462,4.412776,0,0,0,23.5774,0,0,0,2,0,7,87.5,13.73189,0,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,75.535,9.417506,1.94591,3.160289,1
-9,1,50,0,1,126054,0,12300.87,11.55099,1,11,1,88.33923,7.29682,347.4676,0,0,443.1036,0,0,0,5,2,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,77.6554,9.417506,1.791759,6.093804,1
-9,1,50,0,2,126054,0,12300.87,12.55099,1,11,1,85.44474,2.156334,170.3504,0,0,257.9515,0,0,0,7,1,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,77.6554,9.417506,1.791759,5.552772,1
-9,1,50,0,3,126054,0,12300.87,13.55099,1,11,1,150.0737,3.439803,19.65602,0,0,173.1695,0,0,0,10,1,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,77.6554,9.417506,1.94591,5.154271,1
-2,1,100,0,1,126055,0,4093.052,21.77413,0,12,1,13.54535,0,38.86926,0,0,52.4146,0,0,0,0,1,1,88.8,13.73189,0,,400,0,0,0,0,0,1,0,0,0,0,0,78.66626,8.31729,0,3.959185,1
-2,1,100,0,2,126055,0,4093.052,22.77413,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.8,13.73189,0,,400,0,0,0,0,0,1,0,0,0,0,0,78.66626,8.31729,0,,0
-2,1,100,0,3,126055,0,4093.052,23.77413,0,12,1,15.72482,3.965602,0,0,0,19.69042,0,0,0,2,0,1,88.8,13.73189,0,,400,0,0,0,0,0,1,0,0,0,0,0,78.66626,8.31729,0,2.980132,1
-2,1,100,0,4,126055,0,4093.052,24.77413,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.8,13.73189,0,,400,0,0,0,0,0,1,0,0,0,0,0,78.66626,8.31729,0,,0
-2,1,100,0,5,126055,0,4093.052,25.77413,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.8,13.73189,0,,400,0,0,0,0,0,1,0,0,0,0,0,78.66626,8.31729,0,,0
-2,1,100,0,1,126056,0,8754.739,47.22792,1,8,1,58.30389,49.14016,0,0,477.0023,584.4464,1,0,0,2,0,3,88.8,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,68.69417,9.077465,1.098612,6.370665,1
-2,1,100,0,2,126056,0,8754.739,48.22792,1,8,1,33.96227,66.42587,38.30728,0,0,138.6954,0,0,0,3,1,3,88.8,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,68.69417,9.077465,1.098612,4.93228,1
-2,1,100,0,3,126056,0,8754.739,49.22792,1,8,1,18.91892,56.82064,0,0,0,75.73956,0,0,0,1,0,3,88.8,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,68.69417,9.077465,1.098612,4.327301,1
-2,1,100,0,4,126056,0,8754.739,50.22792,1,8,1,18.45943,27.31996,0,0,0,45.7794,0,0,0,1,0,3,88.8,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,68.69417,9.077465,1.098612,3.823834,1
-2,1,100,0,5,126056,0,8754.739,51.22792,1,8,1,295.0396,54.80617,0,0,0,349.8458,0,0,0,4,0,3,88.8,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,68.69417,9.077465,1.098612,5.857492,1
-2,1,100,0,1,126057,0,8754.739,53.3306,0,8,1,204.947,139.3404,40.61837,0,0,384.9058,0,0,0,15,1,3,82.5,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,67.05456,9.077465,1.098612,5.952999,1
-2,1,100,0,2,126057,0,8754.739,54.3306,0,8,1,118.248,12.54986,0,0,734.8302,865.6281,1,0,0,9,0,3,82.5,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,67.05456,9.077465,1.098612,6.763455,1
-2,1,100,0,3,126057,0,8754.739,55.3306,0,8,1,159.0909,42.67322,0,0,1207.027,1408.791,1,0,0,10,0,3,82.5,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,67.05456,9.077465,1.098612,7.250487,1
-2,1,100,0,4,126057,0,8754.739,56.3306,0,8,1,41.47675,4.494075,31.43573,0,0,77.40656,0,0,0,2,1,3,82.5,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,67.05456,9.077465,1.098612,4.349072,1
-2,1,100,0,5,126057,0,8754.739,57.3306,0,8,1,347.4781,16.36932,35.71905,0,0,399.5665,0,0,0,4,1,3,82.5,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,67.05456,9.077465,1.098612,5.99038,1
-2,1,100,0,1,126058,0,8754.739,18.12457,0,12.32507,1,25.91284,30.6066,0,0,0,56.51944,0,0,0,4,0,3,85,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,72.24671,9.077465,1.098612,4.034585,1
-2,1,100,0,2,126058,0,8754.739,19.12457,0,12.32507,1,19.94609,45.92992,16.90027,0,0,82.77628,0,0,0,2,1,3,85,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,72.24671,9.077465,1.098612,4.416142,1
-2,1,100,0,3,126058,0,8754.739,20.12457,0,12.32507,1,9.82801,52.79115,34.91892,0,0,97.53809,0,0,0,0,1,3,85,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,72.24671,9.077465,1.098612,4.580243,1
-2,1,100,0,4,126058,0,8754.739,21.12457,0,12.32507,1,32.81677,26.08478,0,0,0,58.90155,0,0,0,3,0,3,85,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,72.24671,9.077465,1.098612,4.075867,1
-2,1,100,0,5,126058,0,8754.739,22.12457,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,3,85,13.73189,0,,800,800,0,0,1.098612,6.684612,1,0,0,1,0,0,72.24671,9.077465,1.098612,,0
-7,1,25,1,1,126064,0,7733.25,46.83094,1,7,1,74.34053,1.199041,51.81655,0,0,127.3561,0,0,0,6,1,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,37.95773,8.953414,.6931472,4.846987,1
-7,1,25,1,2,126064,0,7733.25,47.83094,1,7,1,23.00109,14.57284,5.476451,0,0,43.05038,0,0,0,2,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,37.95773,8.953414,.6931472,3.762371,1
-7,1,25,1,3,126064,0,7733.25,48.83094,1,7,1,37.90524,2.533666,0,0,0,40.4389,0,0,0,5,0,2,78.9,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,37.95773,8.953414,.6931472,3.699792,1
-7,1,25,1,1,126065,0,7733.25,52.93634,0,8,1,107.3141,139.3465,42.42206,0,0,289.0827,0,0,0,9,1,2,61.1,30.4,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,46.79753,8.953414,.6931472,5.666713,1
-7,1,25,1,2,126065,0,7733.25,53.93634,0,8,1,25.73932,52.24535,0,0,0,77.98466,0,0,0,2,0,2,61.1,30.4,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,46.79753,8.953414,.6931472,4.356512,1
-7,1,25,1,3,126065,0,7733.25,54.93634,0,8,1,194.2643,62.23441,0,0,7492.12,7748.619,3,0,0,8,0,2,61.1,30.4,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,1,46.79753,8.953414,.6931472,8.95527,1
-11,1,0,0,1,126084,0,11130.89,10.48323,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,83.49574,9.31757,1.609438,,0
-11,1,0,0,2,126084,0,11130.89,11.48323,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,83.49574,9.31757,1.609438,,0
-11,1,0,0,3,126084,0,11130.89,12.48323,0,9,1,4.914005,0,0,0,0,4.914005,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,83.49574,9.31757,1.609438,1.592089,1
-11,1,0,0,4,126084,0,11130.89,13.48323,0,9,1,7.748405,0,0,0,0,7.748405,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,83.49574,9.31757,1.609438,2.047487,1
-11,1,0,0,5,126084,0,11130.89,14.48323,0,9,1,20.84202,0,0,0,0,20.84202,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,83.49574,9.31757,1.609438,3.036971,1
-11,1,0,0,1,126085,0,11130.89,31.58932,0,9,1,8.833922,0,32.00824,0,0,40.84217,0,0,0,0,1,5,76.8,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.49057,9.31757,1.609438,3.709715,1
-11,1,0,0,2,126085,0,11130.89,32.58932,0,9,1,33.15364,0,2.156334,0,0,35.30997,0,0,0,0,1,5,76.8,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.49057,9.31757,1.609438,3.564166,1
-11,1,0,0,3,126085,0,11130.89,33.58932,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,76.8,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.49057,9.31757,1.609438,,0
-11,1,0,0,4,126085,0,11130.89,34.58932,0,9,1,0,0,0,54.69462,0,0,0,0,4,0,0,5,76.8,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.49057,9.31757,1.609438,,0
-11,1,0,0,5,126085,0,11130.89,35.58932,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,76.8,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.49057,9.31757,1.609438,,0
-11,1,0,0,1,126086,0,11130.89,12.10678,0,9,1,7.656066,5.235571,0,0,0,12.89164,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,75.63023,9.31757,1.609438,2.556579,1
-11,1,0,0,2,126086,0,11130.89,13.10678,0,9,1,7.54717,0,0,0,0,7.54717,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,75.63023,9.31757,1.609438,2.021173,1
-11,1,0,0,3,126086,0,11130.89,14.10678,0,9,1,9.336609,3.87715,0,0,0,13.21376,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,75.63023,9.31757,1.609438,2.581259,1
-11,1,0,0,4,126086,0,11130.89,15.10678,0,9,1,104.6035,0,0,0,0,104.6035,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,75.63023,9.31757,1.609438,4.650177,1
-11,1,0,0,5,126086,0,11130.89,16.10678,0,9,1,25.42726,0,0,0,0,25.42726,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,75.63023,9.31757,1.609438,3.235822,1
-11,1,0,0,1,126087,0,11130.89,9.407255,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,82.98176,9.31757,1.609438,,0
-11,1,0,0,2,126087,0,11130.89,10.40726,1,9,1,0,2.097035,0,0,0,2.097035,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,82.98176,9.31757,1.609438,.7405244,1
-11,1,0,0,3,126087,0,11130.89,11.40726,1,9,1,12.28501,0,0,0,0,12.28501,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,82.98176,9.31757,1.609438,2.50838,1
-11,1,0,0,4,126087,0,11130.89,12.40726,1,9,1,6.381039,0,0,0,0,6.381039,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,82.98176,9.31757,1.609438,1.853331,1
-11,1,0,0,5,126087,0,11130.89,13.40726,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,82.98176,9.31757,1.609438,,0
-11,1,0,0,1,126088,0,11130.89,27.19781,1,9,1,61.83746,37.04358,0,0,569.6584,668.5394,1,0,0,7,0,5,73.7,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.38175,9.31757,1.609438,6.505095,1
-11,1,0,0,2,126088,0,11130.89,28.19781,1,9,1,13.47709,7.024259,0,0,347.407,367.9084,1,0,0,2,0,5,73.7,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.38175,9.31757,1.609438,5.907834,1
-11,1,0,0,3,126088,0,11130.89,29.19781,1,9,1,19.65602,1.911548,0,0,0,21.56757,0,0,0,2,0,5,73.7,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.38175,9.31757,1.609438,3.071191,1
-11,1,0,0,4,126088,0,11130.89,30.19781,1,9,1,20.73838,3.682771,0,0,0,24.42115,0,0,0,1,0,5,73.7,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.38175,9.31757,1.609438,3.19545,1
-11,1,0,0,5,126088,0,11130.89,31.19781,1,9,1,43.14297,35.64402,0,0,797.9783,876.7653,1,0,0,4,0,5,73.7,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.38175,9.31757,1.609438,6.776239,1
-11,1,0,1,1,126091,0,6160.05,59.03628,1,12,1,94.84319,76.53197,34.66827,0,0,206.0434,0,0,0,5,1,1,56.8,34.8,1,,0,94,0,0,0,4.543295,0,0,0,1,0,0,68.39278,8.726003,0,5.328087,1
-11,1,0,1,2,126091,0,6160.05,60.03628,1,12,1,37.85793,134.6255,0,0,0,172.4835,0,0,0,5,0,1,56.8,34.8,1,,0,94,0,0,0,4.543295,0,0,0,1,0,0,68.39278,8.726003,0,5.150301,1
-11,1,0,1,3,126091,0,6160.05,61.03628,1,12,1,115.4093,74.85686,33.50075,0,0,223.767,0,0,0,8,2,1,56.8,34.8,1,,0,94,0,0,0,4.543295,0,0,0,1,0,0,68.39278,8.726003,0,5.410605,1
-11,1,0,1,4,126091,0,6160.05,62.03628,1,12,1,61.65971,48.77608,0,0,0,110.4358,0,0,0,7,0,1,56.8,34.8,1,,0,94,0,0,0,4.543295,0,0,0,1,0,0,68.39278,8.726003,0,4.704434,1
-11,1,0,1,5,126091,0,6160.05,63.03628,1,12,1,49.76606,65.95917,40.45087,0,0,156.1761,0,0,0,6,1,1,56.8,34.8,1,,0,94,0,0,0,4.543295,0,0,0,1,0,0,68.39278,8.726003,0,5.050984,1
-3,1,100,0,1,126107,0,8785.98,46.41752,1,8,1,10.60071,0,46.77856,0,0,57.37927,0,0,0,0,1,1,80,13.73189,0,,922,922,0,0,0,6.826545,1,0,0,1,0,0,62.95374,9.081026,0,4.049683,1
-3,1,100,0,2,126107,0,8785.98,47.41752,1,8,1,166.7763,0,0,0,0,166.7763,0,0,0,3,0,1,80,13.73189,0,,922,922,0,0,0,6.826545,1,0,0,1,0,0,62.95374,9.081026,0,5.116653,1
-3,1,100,0,3,126107,0,8785.98,48.41752,1,8,1,175.43,27.86241,0,0,1196.427,1399.72,1,0,0,5,0,1,80,13.73189,0,,922,922,0,0,0,6.826545,1,0,0,1,0,0,62.95374,9.081026,0,7.244028,1
-11,1,0,1,1,126119,0,13816.94,58.87748,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.25327,9.533723,1.098612,,0
-11,1,0,1,2,126119,0,13816.94,59.87748,0,16,1,31.93833,1.624449,16.0022,0,0,49.56498,0,0,0,1,1,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.25327,9.533723,1.098612,3.903285,1
-11,1,0,1,3,126119,0,13816.94,60.87748,0,16,1,32.14465,2.199899,0,0,0,34.34455,0,0,0,2,1,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.25327,9.533723,1.098612,3.536443,1
-11,1,0,1,4,126119,0,13816.94,61.87748,0,16,1,20.86231,0,0,0,0,20.86231,0,0,0,1,1,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.25327,9.533723,1.098612,3.037944,1
-11,1,0,1,5,126119,0,13816.94,62.87748,0,16,1,14.46193,0,45.44875,0,0,59.91068,0,0,0,0,2,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.25327,9.533723,1.098612,4.092854,1
-11,1,0,1,1,126120,0,13816.94,17.79055,0,12,1,54.28227,15.18697,31.73703,0,0,101.2063,0,0,0,5,1,3,92.6,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,80.46294,9.533723,1.098612,4.617161,1
-11,1,0,1,2,126120,0,13816.94,18.79055,0,12,1,0,6.150881,0,0,0,6.150881,0,0,0,0,0,3,92.6,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,80.46294,9.533723,1.098612,1.816595,1
-11,1,0,1,3,126120,0,13816.94,19.79055,0,12,1,51.58212,9.819186,0,0,0,61.40131,0,0,0,5,0,3,92.6,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,80.46294,9.533723,1.098612,4.117431,1
-11,1,0,1,4,126120,0,13816.94,20.79055,0,12,1,14.83542,0,22.41539,0,0,37.25081,0,0,0,0,2,3,92.6,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,80.46294,9.533723,1.098612,3.617674,1
-11,1,0,1,5,126120,0,13816.94,21.79055,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,92.6,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,80.46294,9.533723,1.098612,,0
-11,1,0,1,1,126121,0,13816.94,53.80151,1,12,1,81.4234,28.32328,0,0,310.6273,420.3739,1,0,0,7,0,3,86.3,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.963,9.533723,1.098612,6.041145,1
-11,1,0,1,2,126121,0,13816.94,54.80151,1,12,1,24.77974,15.00551,33.11674,0,1072.902,1145.804,1,0,0,1,1,3,86.3,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.963,9.533723,1.098612,7.043862,1
-11,1,0,1,3,126121,0,13816.94,55.80151,1,12,1,57.75992,10.7333,0,0,0,68.49322,0,0,0,1,1,3,86.3,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.963,9.533723,1.098612,4.226735,1
-11,1,0,1,4,126121,0,13816.94,56.80151,1,12,1,73.24989,5.535466,0,0,0,78.78535,0,0,0,3,1,3,86.3,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.963,9.533723,1.098612,4.366727,1
-11,1,0,1,5,126121,0,13816.94,57.80151,1,12,1,77.41386,9.136538,41.29307,0,0,127.8435,0,0,0,4,1,3,86.3,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.963,9.533723,1.098612,4.850807,1
-8,1,50,1,1,126129,0,11888.34,32.31485,0,9,1,25.58001,0,0,0,0,25.58001,0,0,0,2,0,2,88.4,8.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,74.574,9.383397,.6931472,3.241811,1
-8,1,50,1,2,126129,0,11888.34,33.31485,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,88.4,8.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,74.574,9.383397,.6931472,,0
-8,1,50,1,3,126129,0,11888.34,34.31485,0,9,1,17.3439,0,0,0,0,17.3439,0,0,0,1,0,2,88.4,8.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,74.574,9.383397,.6931472,2.853241,1
-8,1,50,1,4,126129,0,11888.34,35.31485,0,9,1,6.883892,0,0,0,0,6.883892,0,0,0,1,0,2,88.4,8.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,74.574,9.383397,.6931472,1.929184,1
-8,1,50,1,5,126129,0,11888.34,36.31485,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,88.4,8.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,74.574,9.383397,.6931472,,0
-8,1,50,1,1,126130,0,11888.34,28.4627,1,15,1,73.17073,7.828673,28.81618,0,0,109.8156,0,0,0,8,1,2,81.1,21.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,78.87518,9.383397,.6931472,4.698802,1
-8,1,50,1,2,126130,0,11888.34,29.4627,1,15,1,19.0528,1.453457,12.90147,0,0,33.40773,0,0,0,1,1,2,81.1,21.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,78.87518,9.383397,.6931472,3.508787,1
-8,1,50,1,3,126130,0,11888.34,30.4627,1,15,1,38.65213,5.891972,0,0,0,44.5441,0,0,0,5,1,2,81.1,21.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,78.87518,9.383397,.6931472,3.79648,1
-8,1,50,1,4,126130,0,11888.34,31.4627,1,15,1,20.65167,2.014686,33.18495,0,0,55.85131,0,0,0,3,0,2,81.1,21.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,78.87518,9.383397,.6931472,4.022693,1
-8,1,50,1,5,126130,0,11888.34,32.4627,1,15,1,49.22171,4.362642,0,0,0,53.58435,0,0,0,7,0,2,81.1,21.7,0,,949,949,0,0,.6931472,6.855409,0,3.931826,7.548556,0,0,0,78.87518,9.383397,.6931472,3.981257,1
-7,1,25,1,1,126134,0,9542.002,32.39699,0,14,1,11.99041,0,31.99041,0,0,43.98082,0,0,0,0,1,6,84.2,17.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,77.76795,9.163564,1.791759,3.783754,1
-7,1,25,1,2,126134,0,9542.002,33.39699,0,14,1,0,2.272727,0,0,0,2.272727,0,0,0,0,0,6,84.2,17.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,77.76795,9.163564,1.791759,.8209805,1
-7,1,25,1,3,126134,0,9542.002,34.39699,0,14,1,0,0,29.03242,0,0,29.03242,0,0,0,0,0,6,84.2,17.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,77.76795,9.163564,1.791759,3.368413,1
-7,1,25,1,4,126134,0,9542.002,35.39699,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,84.2,17.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,77.76795,9.163564,1.791759,,0
-7,1,25,1,5,126134,0,9542.002,36.39699,0,14,1,12.69573,0,28.81083,0,0,41.50656,0,0,0,1,0,6,84.2,17.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,77.76795,9.163564,1.791759,3.725852,1
-7,1,25,1,1,126135,0,9542.002,32.72553,1,14,1,59.95204,11.84053,27.50599,0,0,99.29856,0,0,0,5,1,6,81.1,30.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,78.65913,9.163564,1.791759,4.598131,1
-7,1,25,1,2,126135,0,9542.002,33.72553,1,14,1,19.16758,5.531216,0,0,0,24.6988,0,0,0,2,0,6,81.1,30.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,78.65913,9.163564,1.791759,3.206754,1
-7,1,25,1,3,126135,0,9542.002,34.72553,1,14,1,19.95012,1.496259,0,0,0,21.44638,0,0,0,2,0,6,81.1,30.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,78.65913,9.163564,1.791759,3.065556,1
-7,1,25,1,4,126135,0,9542.002,35.72553,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,81.1,30.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,78.65913,9.163564,1.791759,,0
-7,1,25,1,5,126135,0,9542.002,36.72553,1,14,1,8.463818,2.835379,0,0,0,11.2992,0,0,0,1,0,6,81.1,30.4,0,,0,0,0,0,1.791759,0,0,3.258096,0,0,0,0,78.65913,9.163564,1.791759,2.424731,1
-7,1,25,1,1,126136,0,9542.002,8.065708,0,14,1,5.395683,1.498801,0,0,0,6.894485,0,0,0,0,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,1.930722,1
-7,1,25,1,2,126136,0,9542.002,9.065708,0,14,1,42.71632,0,0,0,0,42.71632,0,0,0,1,4,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,3.754581,1
-7,1,25,1,3,126136,0,9542.002,10.06571,0,14,1,25.93516,0,23.35162,0,0,49.28678,0,0,0,2,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,3.897656,1
-7,1,25,1,4,126136,0,9542.002,11.06571,0,14,1,187.8746,2.236053,0,0,0,190.1107,0,0,0,3,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,5.247606,1
-7,1,25,1,5,126136,0,9542.002,12.06571,0,14,1,52.89886,0,23.19509,0,0,76.09395,0,0,0,3,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,4.331969,1
-7,1,25,1,1,126137,0,9542.002,6.316222,0,14,1,5.395683,0,0,0,0,5.395683,0,0,0,0,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,1.685599,1
-7,1,25,1,2,126137,0,9542.002,7.316222,0,14,1,62.97919,0,0,0,0,62.97919,0,0,0,2,2,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,4.142804,1
-7,1,25,1,3,126137,0,9542.002,8.316222,0,14,1,66.20947,0,0,0,0,66.20947,0,0,0,0,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,4.192823,1
-7,1,25,1,4,126137,0,9542.002,9.316222,0,14,1,23.51314,0,25.27432,0,0,48.78746,0,0,0,1,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,3.887473,1
-7,1,25,1,5,126137,0,9542.002,10.31622,0,14,1,9.310199,0,0,0,0,9.310199,0,0,0,1,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,83.32977,9.163564,1.791759,2.23111,1
-7,1,25,1,1,126138,0,9542.002,8.065708,0,14,1,23.38129,10.13189,0,0,0,33.51319,0,0,0,3,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,81.39986,9.163564,1.791759,3.511939,1
-7,1,25,1,2,126138,0,9542.002,9.065708,0,14,1,34.50164,4.162103,23.92661,0,0,62.59036,0,0,0,3,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,81.39986,9.163564,1.791759,4.136611,1
-7,1,25,1,3,126138,0,9542.002,10.06571,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,81.39986,9.163564,1.791759,,0
-7,1,25,1,4,126138,0,9542.002,11.06571,0,14,1,23.51314,2.051637,15.73075,0,0,41.29553,0,0,0,1,1,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,81.39986,9.163564,1.791759,3.720754,1
-7,1,25,1,5,126138,0,9542.002,12.06571,0,14,1,11.42615,0,0,0,0,11.42615,0,0,0,1,0,6,74.36826,13.73189,0,,0,0,1,0,1.791759,0,0,3.258096,0,0,0,0,81.39986,9.163564,1.791759,2.435905,1
-7,1,25,1,1,126139,0,9542.002,9.204655,1,14,1,25.77938,8.603118,0,0,0,34.3825,0,0,0,2,1,6,74.36826,13.73189,0,,0,0,1,1,1.791759,0,0,3.258096,0,0,0,0,82.8158,9.163564,1.791759,3.537548,1
-7,1,25,1,2,126139,0,9542.002,10.20465,1,14,1,29.02519,3.242059,0,0,0,32.26725,0,0,0,2,1,6,74.36826,13.73189,0,,0,0,1,1,1.791759,0,0,3.258096,0,0,0,0,82.8158,9.163564,1.791759,3.474053,1
-7,1,25,1,3,126139,0,9542.002,11.20465,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,0,1,1,1.791759,0,0,3.258096,0,0,0,0,82.8158,9.163564,1.791759,,0
-7,1,25,1,4,126139,0,9542.002,12.20465,1,14,1,22.59105,0,0,0,0,22.59105,0,0,0,1,1,6,74.36826,13.73189,0,,0,0,1,1,1.791759,0,0,3.258096,0,0,0,0,82.8158,9.163564,1.791759,3.117554,1
-7,1,25,1,5,126139,0,9542.002,13.20465,1,14,1,73.63521,2.750741,368.1761,0,0,444.562,0,0,0,5,0,6,74.36826,13.73189,0,,0,0,1,1,1.791759,0,0,3.258096,0,0,0,0,82.8158,9.163564,1.791759,6.09709,1
-4,1,100,1,1,126151,0,8923.697,43.38124,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.3,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,70.32339,9.096578,.6931472,,0
-4,1,100,1,2,126151,0,8923.697,44.38124,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.3,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,70.32339,9.096578,.6931472,,0
-4,1,100,1,3,126151,0,8923.697,45.38124,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.3,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,70.32339,9.096578,.6931472,,0
-4,1,100,1,1,126152,0,8923.697,42.28337,1,12,1,10.79137,0,0,0,0,10.79137,0,0,0,1,0,2,90.5,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.46137,9.096578,.6931472,2.378747,1
-4,1,100,1,2,126152,0,8923.697,43.28337,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90.5,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.46137,9.096578,.6931472,,0
-4,1,100,1,3,126152,0,8923.697,44.28337,1,12,1,5.985037,0,23.94015,0,0,29.92519,0,0,0,0,1,2,90.5,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.46137,9.096578,.6931472,3.3987,1
-5,1,25,0,1,126156,0,4841.812,46.5243,1,9,1,27.67962,3.898704,0,0,0,31.57833,0,0,0,4,0,1,85.6,13,0,,375,375,0,0,0,5.926926,0,3.258096,7.313221,1,0,0,68.95127,8.48525,0,3.452471,1
-5,1,25,0,2,126156,0,4841.812,47.5243,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,13,0,,375,375,0,0,0,5.926926,0,3.258096,7.313221,1,0,0,68.95127,8.48525,0,,0
-5,1,25,0,3,126156,0,4841.812,48.5243,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,13,0,,375,375,0,0,0,5.926926,0,3.258096,7.313221,1,0,0,68.95127,8.48525,0,,0
-5,1,25,0,4,126156,0,4841.812,49.5243,1,9,1,10.93892,0,30.44212,0,0,41.38104,0,0,0,0,1,1,85.6,13,0,,375,375,0,0,0,5.926926,0,3.258096,7.313221,1,0,0,68.95127,8.48525,0,3.722823,1
-5,1,25,0,5,126156,0,4841.812,50.5243,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,13,0,,375,375,0,0,0,5.926926,0,3.258096,7.313221,1,0,0,68.95127,8.48525,0,,0
-4,1,100,0,1,126157,0,9122.829,38.24504,0,12,1,13.68233,10.35098,0,0,0,24.03331,0,0,0,2,0,4,58.8,13.73189,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.64435,9.118645,1.386294,3.179441,1
-4,1,100,0,2,126157,0,9122.829,39.24504,0,12,1,381.6004,0,37.54491,0,0,419.1454,0,0,0,1,45,4,58.8,13.73189,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.64435,9.118645,1.386294,6.038218,1
-4,1,100,0,3,126157,0,9122.829,40.24504,0,12,1,5.946482,0,0,0,0,5.946482,0,0,0,0,1,4,58.8,13.73189,1,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.64435,9.118645,1.386294,1.7828,1
-4,1,100,0,1,126158,0,9122.829,35.38124,1,10,1,20.82094,21.14813,0,0,0,41.96907,0,0,0,1,1,4,56.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,68.66209,9.118645,1.386294,3.736933,1
-4,1,100,0,2,126158,0,9122.829,36.38124,1,10,1,221.0125,22.37343,6.53239,0,0,249.9184,0,0,0,1,33,4,56.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,68.66209,9.118645,1.386294,5.521134,1
-4,1,100,0,3,126158,0,9122.829,37.38124,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,56.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,68.66209,9.118645,1.386294,,0
-4,1,100,0,1,126159,0,9122.829,14.94045,0,10,1,25.58001,0,0,0,0,25.58001,0,0,0,1,1,4,82.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,69.60401,9.118645,1.386294,3.241811,1
-4,1,100,0,2,126159,0,9122.829,15.94045,0,10,1,8.165487,0,0,0,0,8.165487,0,0,0,0,1,4,82.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,69.60401,9.118645,1.386294,2.099916,1
-4,1,100,0,3,126159,0,9122.829,16.94045,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,69.60401,9.118645,1.386294,,0
-4,1,100,0,1,126160,0,9122.829,18.52156,1,12,1,21.49911,5.562165,0,0,0,27.06127,0,0,0,3,1,4,91.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.81157,9.118645,1.386294,3.298104,1
-4,1,100,0,2,126160,0,9122.829,19.52156,1,12,1,305.4763,14.70332,0,0,0,320.1796,0,0,0,8,36,4,91.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.81157,9.118645,1.386294,5.768882,1
-4,1,100,0,3,126160,0,9122.829,20.52156,1,12,1,9.142715,.6937562,0,0,0,9.836472,0,0,0,0,1,4,91.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.81157,9.118645,1.386294,2.286097,1
-3,1,100,0,1,126177,0,10341.81,52.85695,0,12,1,75.97173,6.089517,0,0,0,82.06125,0,0,0,3,0,5,86.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,66.41367,9.244047,1.609438,4.407466,1
-3,1,100,0,2,126177,0,10341.81,53.85695,0,12,1,361.5903,18.72776,50.42049,0,6563.558,6994.296,2,0,0,12,0,5,86.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,66.41367,9.244047,1.609438,8.85285,1
-3,1,100,0,3,126177,0,10341.81,54.85695,0,12,1,565.1351,59.71008,9.085995,0,834.1572,1468.089,1,0,0,18,1,5,86.3,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,66.41367,9.244047,1.609438,7.291717,1
-3,1,100,0,1,126178,0,10341.81,53.33333,1,12,1,110.7185,38.45701,0,0,0,149.1755,0,0,0,8,0,5,80,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,74.55164,9.244047,1.609438,5.005124,1
-3,1,100,0,2,126178,0,10341.81,54.33333,1,12,1,69.00269,47.7035,40.56065,0,1090.016,1247.283,1,0,0,4,1,5,80,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,74.55164,9.244047,1.609438,7.128723,1
-3,1,100,0,3,126178,0,10341.81,55.33333,1,12,1,105.774,65.58723,51.59705,0,0,222.9582,0,0,0,13,1,5,80,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,74.55164,9.244047,1.609438,5.406984,1
-3,1,100,0,1,126179,0,10341.81,12.38877,0,12,1,18.8457,3.374558,0,0,0,22.22026,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,85.67059,9.244047,1.609438,3.101004,1
-3,1,100,0,2,126179,0,10341.81,13.38877,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,85.67059,9.244047,1.609438,,0
-3,1,100,0,3,126179,0,10341.81,14.38877,0,12,1,19.65602,1.503685,0,0,0,21.1597,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,85.67059,9.244047,1.609438,3.052099,1
-3,1,100,0,1,126180,0,10341.81,16.52841,1,12,1,15.31213,2.479388,0,0,0,17.79152,0,0,0,2,0,5,72.6,13,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,75.20459,9.244047,1.609438,2.878722,1
-3,1,100,0,2,126180,0,10341.81,17.52841,1,12,1,21.56334,11.21833,0,0,0,32.78167,0,0,0,2,1,5,72.6,13,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,75.20459,9.244047,1.609438,3.48987,1
-3,1,100,0,3,126180,0,10341.81,18.52841,1,12,1,61.42506,14.27518,3.415233,0,0,79.11548,0,0,0,4,0,5,72.6,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,75.20459,9.244047,1.609438,4.370909,1
-3,1,100,0,1,126181,0,10341.81,18.2423,0,12.32507,1,91.8728,8.60424,0,0,0,100.477,0,0,0,6,0,5,42.1,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.95576,9.244047,1.609438,4.609929,1
-3,1,100,0,2,126181,0,10341.81,19.2423,0,12.32507,1,3.234501,1.078167,0,0,0,4.312668,0,0,0,0,0,5,42.1,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.95576,9.244047,1.609438,1.461557,1
-3,1,100,0,3,126181,0,10341.81,20.2423,0,12.32507,1,193.4742,22.92383,0,0,0,216.398,0,0,0,8,0,5,42.1,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.95576,9.244047,1.609438,5.37712,1
-3,1,100,0,1,126182,0,9542.002,21.45927,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.6,8.7,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.1736,9.163564,0,,0
-3,1,100,0,2,126182,0,9542.002,22.45927,1,12,1,0,.6630728,0,0,0,.6630728,0,0,0,0,0,1,72.6,8.7,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.1736,9.163564,0,-.4108706,1
-3,1,100,0,3,126182,0,9542.002,23.45927,1,12,1,115.7248,41.2973,30.02948,0,0,187.0516,0,0,0,7,4,1,72.6,8.7,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.1736,9.163564,0,5.231384,1
-5,1,25,1,1,126192,0,7179.28,53.90007,0,10,1,20.98321,4.664268,0,0,0,25.64748,0,0,0,1,0,3,45.3,30.4,0,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,63.23743,8.879094,1.098612,3.244445,1
-5,1,25,1,2,126192,0,7179.28,54.90007,0,10,1,6.024096,3.450164,0,0,0,9.47426,0,0,0,1,0,3,45.3,30.4,0,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,63.23743,8.879094,1.098612,2.248579,1
-5,1,25,1,3,126192,0,7179.28,55.90007,0,10,1,61.7207,2.488778,0,0,0,64.20947,0,0,0,2,0,3,45.3,30.4,0,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,63.23743,8.879094,1.098612,4.162151,1
-5,1,25,1,4,126192,0,7179.28,56.90007,0,10,1,158.5293,29.65422,0,0,1485.177,1673.361,1,0,0,12,0,3,45.3,30.4,0,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,63.23743,8.879094,1.098612,7.422589,1
-5,1,25,1,5,126192,0,7179.28,57.90007,0,10,1,35.12484,21.30766,1.481168,125.8951,0,57.91367,0,0,15,3,1,3,45.3,30.4,0,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,63.23743,8.879094,1.098612,4.058953,1
-5,1,25,1,1,126193,0,7179.28,13.78782,0,12,1,61.15108,8.141487,0,0,0,69.29256,0,0,0,4,0,3,74.36826,13.73189,0,,799,799,1,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,78.66734,8.879094,1.098612,4.238338,1
-5,1,25,1,2,126193,0,7179.28,14.78782,0,12,1,22.45345,2.924425,36.8839,0,0,62.26178,0,0,0,2,0,3,74.36826,13.73189,0,,799,799,1,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,78.66734,8.879094,1.098612,4.131348,1
-5,1,25,1,3,126193,0,7179.28,15.78782,0,12,1,33.91521,11.08728,0,0,0,45.00249,0,0,0,3,0,3,74.36826,13.73189,0,,799,799,1,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,78.66734,8.879094,1.098612,3.806718,1
-5,1,25,1,4,126193,0,7179.28,16.78782,0,12,1,19.59428,2.996773,27.18764,0,0,49.7787,0,0,0,2,0,3,74.36826,13.73189,0,,799,799,1,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,78.66734,8.879094,1.098612,3.907587,1
-5,1,25,1,5,126193,0,7179.28,17.78782,0,12,1,35.89928,2.276767,0,0,0,38.17605,0,0,0,2,0,3,74.36826,13.73189,0,,799,799,1,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,78.66734,8.879094,1.098612,3.642208,1
-5,1,25,1,1,126194,0,7179.28,34.96235,1,12,1,29.3765,17.90168,33.0036,0,0,80.28178,0,0,0,2,0,3,71.6,30.4,1,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,69.07321,8.879094,1.098612,4.385543,1
-5,1,25,1,2,126194,0,7179.28,35.96235,1,12,1,9.857613,11.45674,0,0,0,21.31435,0,0,0,1,0,3,71.6,30.4,1,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,69.07321,8.879094,1.098612,3.059381,1
-5,1,25,1,3,126194,0,7179.28,36.96235,1,12,1,25.93516,1.94015,0,0,0,27.87531,0,0,0,2,0,3,71.6,30.4,1,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,69.07321,8.879094,1.098612,3.327741,1
-5,1,25,1,4,126194,0,7179.28,37.96235,1,12,1,30.42877,15.09451,0,0,0,45.52328,0,0,0,3,0,3,71.6,30.4,1,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,69.07321,8.879094,1.098612,3.818224,1
-5,1,25,1,5,126194,0,7179.28,38.96235,1,12,1,121.4558,2.175201,0,276.6653,0,123.631,0,0,23,3,0,3,71.6,30.4,1,,799,799,0,0,1.098612,6.683361,0,3.258096,8.069655,1,0,0,69.07321,8.879094,1.098612,4.817301,1
-5,1,25,1,1,126195,0,3355.459,19.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.3,4.3,0,,259,259,0,0,0,5.556828,0,3.258096,6.943122,1,0,0,67.43752,8.118642,0,,0
-5,1,25,1,2,126195,0,3355.459,20.83573,0,12,1,9.309967,0,36.05695,0,0,45.36692,0,0,0,0,1,1,66.3,4.3,0,,259,259,0,0,0,5.556828,0,3.258096,6.943122,1,0,0,67.43752,8.118642,0,3.814783,1
-5,1,25,1,3,126195,0,3355.459,21.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.3,4.3,0,,259,259,0,0,0,5.556828,0,3.258096,6.943122,1,0,0,67.43752,8.118642,0,,0
-5,1,25,1,4,126195,0,3355.459,22.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.3,4.3,0,,259,259,0,0,0,5.556828,0,3.258096,6.943122,1,0,0,67.43752,8.118642,0,,0
-5,1,25,1,5,126195,0,3355.459,23.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.3,4.3,0,,259,259,0,0,0,5.556828,0,3.258096,6.943122,1,0,0,67.43752,8.118642,0,,0
-11,1,0,0,1,126198,0,11809.23,20.53388,0,13,1,61.24853,18.55124,34.06949,0,0,113.8693,0,0,0,7,0,3,85,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,0,0,0,79.07556,9.376721,1.098612,4.735051,1
-11,1,0,0,2,126198,0,11809.23,21.53388,0,13,1,84.20485,23.42318,.4851752,0,0,108.1132,0,0,0,6,2,3,85,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,0,0,0,79.07556,9.376721,1.098612,4.683179,1
-11,1,0,0,3,126198,0,11809.23,22.53388,0,13,1,217.1499,11.10565,32.33415,0,0,260.5897,0,0,0,12,1,3,85,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,0,0,0,79.07556,9.376721,1.098612,5.562947,1
-11,1,0,0,1,126199,0,11809.23,48.39151,1,12,1,72.61484,5.270907,44.00471,0,0,121.8905,0,0,0,5,2,3,67.5,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,1,0,0,72.16116,9.376721,1.098612,4.803123,1
-11,1,0,0,2,126199,0,11809.23,49.39151,1,12,1,212.3181,48.61995,.2695418,0,0,261.2076,0,0,0,10,0,3,67.5,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,1,0,0,72.16116,9.376721,1.098612,5.565315,1
-11,1,0,0,3,126199,0,11809.23,50.39151,1,12,1,116.9533,11.7199,56.48649,0,0,185.1597,0,0,0,5,0,3,67.5,13.73189,0,,0,464,0,0,1.098612,6.139884,0,0,0,1,0,0,72.16116,9.376721,1.098612,5.221219,1
-11,1,0,0,1,126200,0,11809.23,13.55236,0,12,1,20.61249,2.502945,0,0,0,23.11543,0,0,0,3,0,3,74.36826,13.73189,0,,0,464,1,0,1.098612,6.139884,0,0,0,0,0,0,87.52181,9.376721,1.098612,3.1405,1
-11,1,0,0,2,126200,0,11809.23,14.55236,0,12,1,46.36119,10.08625,0,0,0,56.44744,0,0,0,7,0,3,74.36826,13.73189,0,,0,464,1,0,1.098612,6.139884,0,0,0,0,0,0,87.52181,9.376721,1.098612,4.03331,1
-11,1,0,0,3,126200,0,11809.23,15.55236,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,0,464,1,0,1.098612,6.139884,0,0,0,0,0,0,87.52181,9.376721,1.098612,,0
-7,1,25,1,1,126205,0,8393.3,6.31896,1,13,1,9.518144,2.647234,0,0,0,12.16538,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,83.31136,9.035308,1.098612,2.498594,1
-7,1,25,1,2,126205,0,8393.3,7.31896,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,83.31136,9.035308,1.098612,,0
-7,1,25,1,3,126205,0,8393.3,8.318959,1,13,1,14.8662,7.433102,0,0,0,22.29931,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,83.31136,9.035308,1.386294,3.104556,1
-7,1,25,1,1,126206,0,8393.3,30.34634,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,75.11373,9.035308,1.098612,,0
-7,1,25,1,2,126206,0,8393.3,31.34634,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,75.11373,9.035308,1.098612,,0
-7,1,25,1,3,126206,0,8393.3,32.34634,0,12,1,26.16452,0,39.99009,0,0,66.15461,0,0,0,1,1,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.11373,9.035308,1.386294,4.191995,1
-7,1,25,1,1,126207,0,8393.3,28.46817,1,13,1,30.63653,18.38192,0,0,0,49.01844,0,0,0,1,0,3,41.1,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.69158,9.035308,1.098612,3.892197,1
-7,1,25,1,2,126207,0,8393.3,29.46817,1,13,1,5.443658,4.327708,3.266195,0,933.2335,946.2711,2,0,0,1,0,3,41.1,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.69158,9.035308,1.098612,6.852529,1
-7,1,25,1,3,126207,0,8393.3,30.46817,1,13,1,37.6115,14.14272,0,0,0,51.75421,0,0,0,3,0,4,41.1,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.69158,9.035308,1.386294,3.946506,1
-9,1,50,1,1,126208,0,12392.06,54.0616,0,12,1,131.1719,20.19631,0,0,0,151.3682,0,0,0,8,0,3,95.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.03518,9.424891,1.098612,5.019715,1
-9,1,50,1,2,126208,0,12392.06,55.0616,0,12,1,101.0343,13.28253,0,0,2096.51,2210.827,2,0,0,8,1,3,95.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.03518,9.424891,1.098612,7.701122,1
-9,1,50,1,3,126208,0,12392.06,56.0616,0,12,1,72.74529,16.82359,0,0,0,89.56888,0,0,0,8,0,3,95.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.03518,9.424891,1.098612,4.495008,1
-9,1,50,1,1,126209,0,12392.06,15.93155,0,16,1,39.26234,11.60024,28.59607,0,0,79.45866,0,0,0,5,1,3,77.9,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,81.08195,9.424891,1.098612,4.375237,1
-9,1,50,1,2,126209,0,12392.06,16.93155,0,16,1,10.77844,19.13446,0,0,0,29.9129,0,0,0,2,0,3,77.9,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,81.08195,9.424891,1.098612,3.39829,1
-9,1,50,1,3,126209,0,12392.06,17.93155,0,16,1,54.60852,4.286422,24.28147,0,0,83.17641,0,0,0,3,2,3,77.9,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,81.08195,9.424891,1.098612,4.420964,1
-9,1,50,1,1,126210,0,12392.06,50.22313,1,16,1,155.7406,39.29209,31.52885,0,0,226.5616,0,0,0,6,2,3,86.3,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.13973,9.424891,1.098612,5.423017,1
-9,1,50,1,2,126210,0,12392.06,51.22313,1,16,1,50.08165,37.20741,31.85629,0,0,119.1453,0,0,0,4,1,3,86.3,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.13973,9.424891,1.098612,4.780344,1
-9,1,50,1,3,126210,0,12392.06,52.22313,1,16,1,42.76511,39.51933,0,0,0,82.28444,0,0,0,5,0,3,86.3,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.13973,9.424891,1.098612,4.410182,1
-10,1,50,0,1,126222,0,25825.28,54.11088,0,19,1,50.05889,0,0,38.86926,0,50.05889,0,0,3,0,0,2,81.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.43079,10.15915,.6931472,3.9132,1
-10,1,50,0,2,126222,0,25825.28,55.11088,0,19,1,13.47709,0,0,266.8464,0,13.47709,0,0,15,0,0,2,81.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.43079,10.15915,.6931472,2.600991,1
-10,1,50,0,3,126222,0,25825.28,56.11088,0,19,1,0,0,0,16.21622,0,0,0,0,1,0,0,2,81.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,77.43079,10.15915,.6931472,,0
-10,1,50,0,1,126223,0,25825.28,52.73375,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,75,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.89941,10.15915,.6931472,,0
-10,1,50,0,2,126223,0,25825.28,53.73375,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,75,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.89941,10.15915,.6931472,,0
-10,1,50,0,3,126223,0,25825.28,54.73375,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,75,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.89941,10.15915,.6931472,,0
-1,1,0,1,1,126231,0,3460.918,51.72895,1,12,1,128.9753,61.96113,17.85041,0,0,208.7868,0,0,0,7,0,1,85.3,13,0,,150,203,0,0,0,5.313206,1,0,0,0,0,0,79.21188,8.149578,0,5.341314,1
-1,1,0,1,2,126231,0,3460.918,52.72895,1,12,1,170.8895,74.88949,44.60917,0,0,290.3882,0,0,0,9,2,1,85.3,13,0,,150,203,0,0,0,5.313206,1,0,0,0,0,0,79.21188,8.149578,0,5.671218,1
-1,1,0,1,3,126231,0,3460.918,53.72895,1,12,1,47.66585,37.99509,62.63882,0,0,148.2998,0,0,0,5,0,1,85.3,13,0,,150,203,0,0,0,5.313206,1,0,0,0,0,0,79.21188,8.149578,0,4.999236,1
-4,1,100,1,1,126240,0,9577.765,28.52019,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,52.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,59.58581,9.167304,1.386294,,0
-4,1,100,1,2,126240,0,9577.765,29.52019,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,52.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,59.58581,9.167304,1.386294,,0
-4,1,100,1,3,126240,0,9577.765,30.52019,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,52.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,1,0,59.58581,9.167304,1.386294,,0
-4,1,100,1,1,126241,0,9577.765,32.32854,0,11,1,5.889281,0,0,0,0,5.889281,0,0,0,1,0,4,33.7,30.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.88706,9.167304,1.386294,1.773134,1
-4,1,100,1,2,126241,0,9577.765,33.32854,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,33.7,30.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.88706,9.167304,1.386294,,0
-4,1,100,1,3,126241,0,9577.765,34.32854,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,33.7,30.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.88706,9.167304,1.386294,,0
-4,1,100,1,1,126242,0,9577.765,11.16222,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,,0
-4,1,100,1,2,126242,0,9577.765,12.16222,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,,0
-4,1,100,1,3,126242,0,9577.765,13.16222,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,,0
-4,1,100,1,1,126243,0,9577.765,12.92539,0,9,1,21.3192,0,0,0,0,21.3192,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,3.059608,1
-4,1,100,1,2,126243,0,9577.765,13.92539,0,9,1,8.086253,9.153639,0,0,0,17.23989,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,2.847226,1
-4,1,100,1,3,126243,0,9577.765,14.92539,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.2337,9.167304,1.386294,,0
-10,1,50,1,1,126250,0,11668.83,45.38809,1,11,1,36.27098,36.3729,33.71103,0,0,106.3549,0,0,0,4,0,3,80,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.51671,9.364761,1.098612,4.666782,1
-10,1,50,1,2,126250,0,11668.83,46.38809,1,11,1,71.08434,16.78532,8.105148,0,0,95.97481,0,0,0,6,0,3,80,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.51671,9.364761,1.098612,4.564086,1
-10,1,50,1,3,126250,0,11668.83,47.38809,1,11,1,46.13466,14.3591,37.29177,0,0,97.78554,0,0,0,4,1,3,80,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.51671,9.364761,1.098612,4.582777,1
-10,1,50,1,4,126250,0,11668.83,48.38809,1,11,1,35.96127,9.400645,0,0,0,45.36192,0,0,0,3,0,3,80,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.51671,9.364761,1.098612,3.814673,1
-10,1,50,1,5,126250,0,11668.83,49.38809,1,11,1,125.6877,34.24884,0,0,0,159.9365,0,0,0,8,0,3,80,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.51671,9.364761,1.098612,5.074777,1
-10,1,50,1,1,126251,0,11668.83,46.72416,0,11,1,138.1895,26.90648,31.03717,0,990.5935,1186.727,2,0,0,6,0,3,71.6,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.89005,9.364761,1.098612,7.078954,1
-10,1,50,1,2,126251,0,11668.83,47.72416,0,11,1,13.14348,11.65936,0,0,0,24.80285,0,0,0,2,0,3,71.6,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.89005,9.364761,1.098612,3.210958,1
-10,1,50,1,3,126251,0,11668.83,48.72416,0,11,1,43.01746,14.46883,33.99002,0,0,91.47631,0,0,0,3,0,3,71.6,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.89005,9.364761,1.098612,4.51608,1
-10,1,50,1,4,126251,0,11668.83,49.72416,0,11,1,48.4094,4.319963,0,0,0,52.72937,0,0,0,6,0,3,71.6,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.89005,9.364761,1.098612,3.965173,1
-10,1,50,1,5,126251,0,11668.83,50.72416,0,11,1,11.42615,0,29.67414,0,0,41.1003,0,0,0,0,1,3,71.6,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.89005,9.364761,1.098612,3.716015,1
-10,1,50,1,1,126252,0,11668.83,18.41752,0,11,1,32.07434,11.66067,0,0,632.9616,676.6967,1,0,0,3,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.67222,9.364761,1.098612,6.517223,1
-10,1,50,1,2,126252,0,11668.83,19.41752,0,11,1,5.476451,2.584885,0,0,0,8.061337,0,0,0,1,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.67222,9.364761,1.098612,2.087079,1
-10,1,50,1,3,126252,0,11668.83,20.41752,0,11,1,16.70823,2.992519,0,0,0,19.70075,0,0,0,2,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.67222,9.364761,1.098612,2.980657,1
-10,1,50,1,4,126252,0,11668.83,21.41752,0,11,1,82.98755,15.20055,0,0,2542.153,2640.341,2,0,0,6,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.67222,9.364761,1.098612,7.878664,1
-10,1,50,1,5,126252,0,11668.83,22.41752,0,11,1,95.64114,21.17647,0,0,0,116.8176,0,0,0,11,0,3,82.1,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,75.67222,9.364761,1.098612,4.760614,1
-5,1,25,1,1,126256,0,17812.88,41.86721,0,16,1,24.98513,8.893516,27.35277,0,0,61.23141,0,0,0,1,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,73.33533,9.787733,1.386294,4.11466,1
-5,1,25,1,2,126256,0,17812.88,42.86721,0,16,1,26.21121,0,0,0,0,26.21121,0,0,0,1,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,73.33533,9.787733,1.386294,3.266187,1
-5,1,25,1,3,126256,0,17812.88,43.86721,0,16,1,98.11695,6.243806,9.32111,0,0,113.6819,0,0,0,1,2,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,73.33533,9.787733,1.386294,4.733404,1
-5,1,25,1,4,126256,0,17812.88,44.86721,0,16,1,15.14456,0,44.60303,0,0,59.74759,0,0,0,1,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,73.33533,9.787733,1.386294,4.090129,1
-5,1,25,1,5,126256,0,17812.88,45.86721,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,73.33533,9.787733,1.386294,,0
-5,1,25,1,1,126257,0,17812.88,17.46201,0,15,1,28.55443,6.216538,0,0,0,34.77097,0,0,0,4,0,4,82.1,8.7,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.80552,9.787733,1.386294,3.548783,1
-5,1,25,1,2,126257,0,17812.88,18.46201,0,15,1,50.62602,1.986935,0,0,0,52.61296,0,0,0,3,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.80552,9.787733,1.386294,3.962962,1
-5,1,25,1,3,126257,0,17812.88,19.46201,0,15,1,25.76809,4.212091,0,0,0,29.98018,0,0,0,2,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.80552,9.787733,1.386294,3.400537,1
-5,1,25,1,4,126257,0,17812.88,20.46201,0,15,1,23.40523,0,0,0,0,23.40523,0,0,0,1,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.80552,9.787733,1.386294,3.15296,1
-5,1,25,1,5,126257,0,17812.88,21.46201,0,15,1,4.417333,0,0,0,0,4.417333,0,0,0,0,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.80552,9.787733,1.386294,1.485536,1
-5,1,25,1,1,126258,0,17812.88,9.459274,1,15,1,41.047,27.79298,0,0,0,68.83997,0,0,0,8,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77095,9.787733,1.386294,4.231785,1
-5,1,25,1,2,126258,0,17812.88,10.45927,1,15,1,22.319,3.810561,0,0,0,26.12956,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77095,9.787733,1.386294,3.263067,1
-5,1,25,1,3,126258,0,17812.88,11.45927,1,15,1,22.29931,4.831516,0,0,0,27.13082,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77095,9.787733,1.386294,3.30067,1
-5,1,25,1,4,126258,0,17812.88,12.45927,1,15,1,43.13905,12.09729,0,0,0,55.23635,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77095,9.787733,1.386294,4.011621,1
-5,1,25,1,5,126258,0,17812.88,13.45927,1,15,1,47.11822,11.42196,0,0,0,58.54018,0,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77095,9.787733,1.386294,4.069713,1
-5,1,25,1,1,126259,0,17812.88,39.07187,1,15,1,101.7252,0,0,0,0,101.7252,0,0,0,3,0,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.85065,9.787733,1.386294,4.622275,1
-5,1,25,1,2,126259,0,17812.88,40.07187,1,15,1,126.0207,0,0,0,0,126.0207,0,0,0,3,0,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.85065,9.787733,1.386294,4.836446,1
-5,1,25,1,3,126259,0,17812.88,41.07187,1,15,1,19.82161,2.750248,0,0,0,22.57185,0,0,0,2,0,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.85065,9.787733,1.386294,3.116704,1
-5,1,25,1,4,126259,0,17812.88,42.07187,1,15,1,18.81597,0,0,0,0,18.81597,0,0,0,1,0,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.85065,9.787733,1.386294,2.934706,1
-5,1,25,1,5,126259,0,17812.88,43.07187,1,15,1,109.8023,23.09634,3.407657,0,0,136.3063,0,0,0,4,0,4,80,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.85065,9.787733,1.386294,4.914905,1
-7,1,25,0,1,126288,0,11939.83,4.073922,0,12,1,35.92462,0,0,0,0,35.92462,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.3802,9.387718,1.386294,3.581423,1
-7,1,25,0,2,126288,0,11939.83,5.073922,0,12,1,28.84097,0,0,0,0,28.84097,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.3802,9.387718,1.386294,3.361797,1
-7,1,25,0,3,126288,0,11939.83,6.073922,0,12,1,52.82555,0,4.511056,4.299754,0,57.33661,0,0,1,2,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.3802,9.387718,1.386294,4.048939,1
-7,1,25,0,4,126288,0,11939.83,7.073922,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.3802,9.387718,1.386294,,0
-7,1,25,0,5,126288,0,11939.83,8.073922,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.3802,9.387718,1.386294,,0
-7,1,25,0,1,126289,0,11939.83,29.62628,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,91.6,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.3162,9.387718,1.386294,,0
-7,1,25,0,2,126289,0,11939.83,30.62628,0,11,1,24.25876,0,0,0,0,24.25876,0,0,0,2,0,4,91.6,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.3162,9.387718,1.386294,3.188778,1
-7,1,25,0,3,126289,0,11939.83,31.62628,0,11,1,0,0,0,19.04177,0,0,0,0,3,0,0,4,91.6,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.3162,9.387718,1.386294,,0
-7,1,25,0,4,126289,0,11939.83,32.62628,0,11,1,87.39745,0,0,0,0,87.39745,0,0,0,3,0,4,91.6,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.3162,9.387718,1.386294,4.470466,1
-7,1,25,0,5,126289,0,11939.83,33.62628,0,11,1,33.97249,0,0,0,0,33.97249,0,0,0,1,0,4,91.6,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.3162,9.387718,1.386294,3.525551,1
-7,1,25,0,1,126290,0,11939.83,29.02943,1,12,1,438.1036,0,17.85041,0,0,455.9541,0,0,0,3,1,4,61.1,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.35686,9.387718,1.386294,6.122392,1
-7,1,25,0,2,126290,0,11939.83,30.02943,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.35686,9.387718,1.386294,,0
-7,1,25,0,3,126290,0,11939.83,31.02943,1,12,1,12.28501,0,32.40786,50.9828,0,44.69287,0,0,5,0,1,4,61.1,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.35686,9.387718,1.386294,3.799814,1
-7,1,25,0,4,126290,0,11939.83,32.02943,1,12,1,458.7284,0,7.146764,0,1132.84,1598.715,1,0,0,3,0,4,61.1,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.35686,9.387718,1.386294,7.376956,1
-7,1,25,0,5,126290,0,11939.83,33.02943,1,12,1,12.50521,0,0,0,0,12.50521,0,0,0,1,0,4,61.1,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.35686,9.387718,1.386294,2.526145,1
-7,1,25,0,1,126291,0,11939.83,8.657084,1,12,1,75.97173,0,0,0,0,75.97173,0,0,0,2,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.36227,9.387718,1.386294,4.330361,1
-7,1,25,0,2,126291,0,11939.83,9.657084,1,12,1,24.20485,0,0,0,0,24.20485,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.36227,9.387718,1.386294,3.186553,1
-7,1,25,0,3,126291,0,11939.83,10.65708,1,12,1,20.63882,0,0,4.299754,0,20.63882,0,0,1,1,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.36227,9.387718,1.386294,3.027174,1
-7,1,25,0,4,126291,0,11939.83,11.65708,1,12,1,116.4768,2.734731,0,0,0,119.2115,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.36227,9.387718,1.386294,4.780899,1
-7,1,25,0,5,126291,0,11939.83,12.65708,1,12,1,91.9133,0,0,0,0,91.9133,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.36227,9.387718,1.386294,4.520846,1
-5,1,25,1,1,126311,0,7136.477,35.90691,0,12,1,58.15348,2.93765,0,0,0,61.09113,0,0,0,2,0,3,85.3,8.7,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,78.56193,8.873115,1.098612,4.112367,1
-5,1,25,1,2,126311,0,7136.477,36.90691,0,12,1,44.35926,0,0,0,0,44.35926,0,0,0,3,0,3,85.3,8.7,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,78.56193,8.873115,1.098612,3.792321,1
-5,1,25,1,3,126311,0,7136.477,37.90691,0,12,1,444.1596,27.6808,0,0,0,471.8404,0,0,0,2,1,3,85.3,8.7,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,78.56193,8.873115,1.098612,6.156641,1
-5,1,25,1,4,126311,0,7136.477,38.90691,0,12,1,76.07192,6.339327,52.0332,0,0,134.4444,0,0,0,5,1,3,85.3,8.7,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,78.56193,8.873115,1.098612,4.901151,1
-5,1,25,1,5,126311,0,7136.477,39.90691,0,12,1,20.31316,8.78121,0,0,0,29.09437,0,0,0,5,0,3,85.3,8.7,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,78.56193,8.873115,1.098612,3.370545,1
-5,1,25,1,1,126312,0,7136.477,.6680356,0,7,1,35.3717,2.068345,0,0,0,37.44005,0,0,0,6,0,3,74.36826,13.73189,0,,678,678,1,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,80.9538,8.873115,1.098612,3.622741,1
-5,1,25,1,2,126312,0,7136.477,1.668036,0,7,1,8.214677,2.382256,0,0,0,10.59693,0,0,0,1,0,3,74.36826,13.73189,0,,678,678,1,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,80.9538,8.873115,1.098612,2.360565,1
-5,1,25,1,3,126312,0,7136.477,2.668036,0,7,1,4.987531,0,0,0,0,4.987531,0,0,0,1,0,3,74.36826,13.73189,0,,678,678,1,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,80.9538,8.873115,1.098612,1.606941,1
-5,1,25,1,4,126312,0,7136.477,3.668036,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,678,678,1,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,80.9538,8.873115,1.098612,,0
-5,1,25,1,5,126312,0,7136.477,4.668036,0,7,1,22.85231,0,0,0,0,22.85231,0,0,0,2,1,3,74.36826,13.73189,0,,678,678,1,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,80.9538,8.873115,1.098612,3.129052,1
-5,1,25,1,1,126313,0,7136.477,36.23819,1,7,1,11.39089,21.94245,0,0,0,33.33333,0,0,0,0,0,3,64.2,17.4,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,69.21714,8.873115,1.098612,3.506558,1
-5,1,25,1,2,126313,0,7136.477,37.23819,1,7,1,43.81161,27.65608,0,0,0,71.46769,0,0,0,1,0,3,64.2,17.4,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,69.21714,8.873115,1.098612,4.269246,1
-5,1,25,1,3,126313,0,7136.477,38.23819,1,7,1,23.94015,34.0399,26.58354,0,0,84.56359,0,0,0,1,1,3,64.2,17.4,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,69.21714,8.873115,1.098612,4.437504,1
-5,1,25,1,4,126313,0,7136.477,39.23819,1,7,1,47.02628,47.30291,0,0,0,94.32919,0,0,0,3,0,3,64.2,17.4,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,69.21714,8.873115,1.098612,4.546791,1
-5,1,25,1,5,126313,0,7136.477,40.23819,1,7,1,121.5404,33.64367,56.60601,0,0,211.7901,0,0,0,5,1,3,64.2,17.4,0,,678,678,0,0,1.098612,6.519147,0,3.258096,7.905442,0,0,0,69.21714,8.873115,1.098612,5.355596,1
-5,1,25,1,1,126314,0,2291.563,19.36208,0,12,1,8.992805,0,38.21943,0,0,47.21223,0,0,0,0,1,1,73.7,0,0,,179,0,0,0,0,0,0,3.258096,6.57368,0,0,0,77.80665,7.737426,0,3.854653,1
-5,1,25,1,2,126314,0,2291.563,20.36208,0,12,1,0,0,39.49069,0,0,39.49069,0,0,0,0,0,1,73.7,0,0,,179,0,0,0,0,0,0,3.258096,6.57368,0,0,0,77.80665,7.737426,0,3.676065,1
-5,1,25,1,3,126314,0,2291.563,21.36208,0,12,1,8.977556,1.9202,31.79551,0,0,42.69327,0,0,0,0,1,1,73.7,0,0,,179,0,0,0,0,0,0,3.258096,6.57368,0,0,0,77.80665,7.737426,0,3.754041,1
-5,1,25,1,4,126314,0,2291.563,22.36208,0,12,1,49.80175,0,20.71922,0,0,70.52098,0,0,0,1,0,1,73.7,0,0,,179,0,0,0,0,0,0,3.258096,6.57368,0,0,0,77.80665,7.737426,0,4.25591,1
-5,1,25,1,5,126314,0,2291.563,23.36208,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.7,0,0,,179,0,0,0,0,0,0,3.258096,6.57368,0,0,0,77.80665,7.737426,0,,0
-8,1,50,0,1,126319,0,3717.07,6.833675,0,13,1,12.58993,10.61151,0,0,0,23.20144,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,3.931826,0,0,0,0,84.2508,8.22096,1.386294,3.144214,1
-8,1,50,0,2,126319,0,3717.07,7.833675,0,13,1,34.50164,15.03286,0,0,0,49.5345,0,0,0,5,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,3.931826,0,0,0,0,84.2508,8.22096,1.386294,3.902669,1
-8,1,50,0,3,126319,0,3717.07,8.833675,0,13,1,42.39402,16.28429,0,0,0,58.6783,0,0,0,7,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,3.931826,0,0,0,0,84.2508,8.22096,1.386294,4.07207,1
-8,1,50,0,1,126320,0,3717.07,34.01232,0,17,1,111.8106,2.667866,0,0,0,114.4784,0,0,0,7,0,4,33.8,13.73189,0,,0,0,0,0,1.386294,0,0,3.931826,0,0,0,0,74.86721,8.22096,1.386294,4.740386,1
-8,1,50,0,2,126320,0,3717.07,35.01232,0,17,1,30.66813,13.82804,37.48631,0,0,81.98248,0,0,0,4,0,4,33.8,13.73189,0,,0,0,0,0,1.386294,0,0,3.931826,0,0,0,0,74.86721,8.22096,1.386294,4.406506,1
-8,1,50,0,3,126320,0,3717.07,36.01232,0,17,1,84.78803,16.70823,0,0,0,101.4963,0,0,0,1,0,4,33.8,13.73189,0,,0,0,0,0,1.386294,0,0,3.931826,0,0,0,0,74.86721,8.22096,1.386294,4.620022,1
-8,1,50,0,1,126321,0,3717.07,32.33128,1,13,1,125,24.79017,102.0923,0,783.5432,1035.426,1,0,0,9,0,4,62.5,13.73189,1,,0,0,0,0,1.386294,0,0,3.931826,0,1,0,0,66.88633,8.22096,1.386294,6.942568,1
-8,1,50,0,2,126321,0,3717.07,33.33128,1,13,1,77.76561,40.82694,328.5871,0,1728.598,2175.778,2,0,0,7,0,4,62.5,13.73189,1,,0,0,0,0,1.386294,0,0,3.931826,0,1,0,0,66.88633,8.22096,1.386294,7.685142,1
-8,1,50,0,3,126321,0,3717.07,34.33128,1,13,1,483.5162,15.3616,249.3766,0,982.2244,1730.479,1,0,0,14,0,4,62.5,13.73189,1,,0,0,0,0,1.386294,0,0,3.931826,0,1,0,0,66.88633,8.22096,1.386294,7.456153,1
-8,1,50,0,1,126322,0,3717.07,.6926762,1,13,1,90.52758,16.78657,0,0,0,107.3141,0,0,0,11,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,3.931826,0,0,0,0,80.3052,8.22096,1.386294,4.67576,1
-8,1,50,0,2,126322,0,3717.07,1.692676,1,13,1,355.942,60.68456,0,0,0,416.6265,0,0,0,16,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,3.931826,0,0,0,0,80.3052,8.22096,1.386294,6.03219,1
-8,1,50,0,3,126322,0,3717.07,2.692676,1,13,1,100.7481,32.74314,0,0,352.1596,485.6509,1,0,0,15,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,3.931826,0,0,0,0,80.3052,8.22096,1.386294,6.18549,1
-1,1,0,0,1,126331,0,8401.985,1.689254,0,16,1,21.20141,21.2662,0,0,0,42.46761,0,0,0,4,0,3,74.36826,13.73189,0,,450,450,1,0,1.098612,6.109248,1,0,0,0,0,0,80.40897,9.036343,1.098612,3.748742,1
-1,1,0,0,2,126331,0,8401.985,2.689254,0,16,1,20.48518,19.89757,0,0,0,40.38275,0,0,0,3,0,3,74.36826,13.73189,0,,450,450,1,0,1.098612,6.109248,1,0,0,0,0,0,80.40897,9.036343,1.098612,3.698403,1
-1,1,0,0,3,126331,0,8401.985,3.689254,0,16,1,24.57002,20.2113,0,0,0,44.78133,0,0,0,3,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,80.40897,9.036343,1.386294,3.801791,1
-1,1,0,0,1,126332,0,8401.985,28.7447,0,16,1,21.49588,5.223793,0,0,0,26.71967,0,0,0,1,1,3,80,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,0,0,0,78.62843,9.036343,1.098612,3.2854,1
-1,1,0,0,2,126332,0,8401.985,29.7447,0,16,1,18.86792,0,0,0,0,18.86792,0,0,0,0,1,3,80,17.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,0,0,0,78.62843,9.036343,1.098612,2.937463,1
-1,1,0,0,3,126332,0,8401.985,30.7447,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,80,17.4,0,,450,450,0,0,1.386294,6.109248,1,0,0,0,0,0,78.62843,9.036343,1.386294,,0
-1,1,0,0,1,126333,0,8401.985,29.08419,1,16,1,60.6596,27.34393,42.40283,0,0,130.4064,0,0,0,4,1,3,87.4,13,0,,450,450,0,0,1.098612,6.109248,1,0,0,0,0,0,79.51961,9.036343,1.098612,4.870656,1
-1,1,0,0,2,126333,0,8401.985,30.08419,1,16,1,2.695418,27.78976,0,0,736.7925,767.2776,1,0,0,0,0,3,87.4,13,0,,450,450,0,0,1.098612,6.109248,1,0,0,0,0,0,79.51961,9.036343,1.098612,6.642848,1
-1,1,0,0,3,126333,0,8401.985,31.08419,1,16,1,26.04423,24.44226,0,0,0,50.48649,0,0,0,3,0,4,87.4,13,0,,450,450,0,0,1.386294,6.109248,1,0,0,0,0,0,79.51961,9.036343,1.386294,3.921706,1
-11,1,0,1,1,126340,0,6321.658,17.30048,1,14,1,132.0643,70.28555,42.75431,0,0,245.1041,0,0,0,19,0,3,92.6,13,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,74.41844,8.751895,1.098612,5.501683,1
-11,1,0,1,2,126340,0,6321.658,18.30048,1,14,1,22.86336,70.44093,0,0,0,93.3043,0,0,0,3,0,3,92.6,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.41844,8.751895,1.098612,4.535866,1
-11,1,0,1,3,126340,0,6321.658,19.30048,1,14,1,101.0902,64.54411,45.16848,0,0,210.8028,0,0,0,10,0,3,92.6,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.41844,8.751895,1.098612,5.350923,1
-11,1,0,1,1,126341,0,6321.658,53.70021,1,14,1,60.08328,23.3492,46.62106,0,0,130.0535,0,0,0,7,0,3,38.9,17.4,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.69423,8.751895,1.098612,4.867946,1
-11,1,0,1,2,126341,0,6321.658,54.70021,1,14,1,67.55579,39.62983,4.545455,0,832.798,944.5291,1,0,0,9,0,3,38.9,17.4,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.69423,8.751895,1.098612,6.850687,1
-11,1,0,1,3,126341,0,6321.658,55.70021,1,14,1,181.8632,15.36174,44.33102,0,0,241.556,0,0,0,6,1,3,38.9,17.4,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.69423,8.751895,1.098612,5.487102,1
-11,1,0,1,1,126342,0,6321.658,53.65366,0,14,1,66.62701,12.0464,38.07257,0,0,116.746,0,0,0,5,6,3,52.6,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,76.12692,8.751895,1.098612,4.760001,1
-11,1,0,1,2,126342,0,6321.658,54.65366,0,14,1,97.44148,37.34349,0,0,0,134.785,0,0,0,10,5,3,52.6,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,76.12692,8.751895,1.098612,4.903681,1
-11,1,0,1,3,126342,0,6321.658,55.65366,0,14,1,46.08523,23.14172,37.16551,0,0,106.3925,0,0,0,1,5,3,52.6,13,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,76.12692,8.751895,1.098612,4.667135,1
-11,1,0,1,1,126343,0,5065.757,23.02259,0,12,1,46.84117,6.632957,34.19393,0,0,87.66805,0,0,0,6,0,1,62.1,4.3,0,,0,52,0,0,0,3.951244,0,0,0,0,0,0,77.42352,8.530457,0,4.473557,1
-11,1,0,1,2,126343,0,5065.757,24.02259,0,12,1,20.6859,8.328797,0,0,0,29.0147,0,0,0,4,0,1,62.1,4.3,0,,0,52,0,0,0,3.951244,0,0,0,0,0,0,77.42352,8.530457,0,3.367803,1
-11,1,0,1,3,126343,0,5065.757,25.02259,0,12,1,48.56293,12.31417,29.51933,0,0,90.39643,0,0,0,7,0,1,62.1,4.3,0,,0,52,0,0,0,3.951244,0,0,0,0,0,0,77.42352,8.530457,0,4.504205,1
-5,1,25,0,1,126350,0,9707.816,61.90281,1,11,1,107.3322,87.77974,39.3934,0,0,234.5053,0,0,0,15,0,1,95,13.73189,0,,716,716,0,0,0,6.57368,0,3.258096,7.959975,0,0,0,76.49065,9.18079,0,5.457478,1
-5,1,25,0,2,126350,0,9707.816,62.90281,1,11,1,165.2291,86.33962,46.47979,0,1636.14,1934.189,1,0,0,16,0,1,95,13.73189,0,,716,716,0,0,0,6.57368,0,3.258096,7.959975,0,0,0,76.49065,9.18079,0,7.567443,1
-5,1,25,0,3,126350,0,9707.816,63.90281,1,11,1,29.48403,50.71253,0,0,0,80.19656,0,0,0,3,0,1,95,13.73189,0,,716,716,0,0,0,6.57368,0,3.258096,7.959975,0,0,0,76.49065,9.18079,0,4.38448,1
-5,1,25,0,1,126359,0,6277.295,32.53114,1,9,1,6.478209,0,0,0,0,6.478209,0,0,0,1,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,69.47372,8.744854,1.386294,1.868444,1
-5,1,25,0,2,126359,0,6277.295,33.53114,1,9,1,25.87601,2.156334,0,0,0,28.03234,0,0,0,2,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,69.47372,8.744854,1.386294,3.333359,1
-5,1,25,0,3,126359,0,6277.295,34.53114,1,9,1,46.06879,6.314497,0,0,0,52.38329,0,0,0,3,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,69.47372,8.744854,1.386294,3.958588,1
-5,1,25,0,4,126359,0,6277.295,35.53114,1,9,1,26.89152,0,0,0,0,26.89152,0,0,0,2,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,69.47372,8.744854,1.386294,3.291811,1
-5,1,25,0,5,126359,0,6277.295,36.53114,1,9,1,350.3126,6.669446,196.0192,0,0,553.0012,0,0,0,9,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,69.47372,8.744854,1.386294,6.31536,1
-5,1,25,0,1,126360,0,6277.295,9.029432,1,9,1,19.43463,0,20.84806,0,0,40.28268,0,0,0,2,1,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,1,0,0,76.85021,8.744854,1.386294,3.695922,1
-5,1,25,0,2,126360,0,6277.295,10.02943,1,9,1,5.390836,2.495957,8.964959,0,0,16.85175,0,0,0,1,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,1,0,0,76.85021,8.744854,1.386294,2.824455,1
-5,1,25,0,3,126360,0,6277.295,11.02943,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,1,0,0,76.85021,8.744854,1.386294,,0
-5,1,25,0,4,126360,0,6277.295,12.02943,1,9,1,46.03464,2.734731,0,0,0,48.76937,0,0,0,2,1,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,1,0,0,76.85021,8.744854,1.386294,3.887102,1
-5,1,25,0,5,126360,0,6277.295,13.02943,1,9,1,40.45436,5.360567,23.88495,0,492.0342,561.7341,1,0,0,2,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,1,0,0,76.85021,8.744854,1.386294,6.331028,1
-5,1,25,0,1,126361,0,6277.295,32.85695,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.12982,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,71.97958,8.744854,1.386294,,0
-5,1,25,0,2,126361,0,6277.295,33.85695,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.12982,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,71.97958,8.744854,1.386294,,0
-5,1,25,0,3,126361,0,6277.295,34.85695,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.12982,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,71.97958,8.744854,1.386294,,0
-5,1,25,0,4,126361,0,6277.295,35.85695,0,12.32507,1,30.76572,0,0,0,0,30.76572,0,0,0,1,0,4,74.36826,13.73189,.12982,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,71.97958,8.744854,1.386294,3.426401,1
-5,1,25,0,5,126361,0,6277.295,36.85695,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.12982,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,71.97958,8.744854,1.386294,,0
-5,1,25,0,1,126362,0,6277.295,14.23956,0,9,1,104.2108,.8598351,0,0,0,105.0707,0,0,0,3,0,4,95,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,70.41564,8.744854,1.386294,4.654633,1
-5,1,25,0,2,126362,0,6277.295,15.23956,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,70.41564,8.744854,1.386294,,0
-5,1,25,0,3,126362,0,6277.295,16.23956,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,70.41564,8.744854,1.386294,,0
-5,1,25,0,4,126362,0,6277.295,17.23956,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,70.41564,8.744854,1.386294,,0
-5,1,25,0,5,126362,0,6277.295,18.23956,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,95,13.73189,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,1,0,0,70.41564,8.744854,1.386294,,0
-4,1,100,1,1,126384,0,4298.431,62.02327,1,11,1,26.50177,11.16019,0,0,0,37.66196,0,0,0,3,0,1,81.1,17.4,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,68.18743,8.366238,0,3.62865,1
-4,1,100,1,2,126384,0,4298.431,63.02327,1,11,1,202.4259,99.78436,431.1752,0,0,733.3854,0,0,0,7,1,1,81.1,17.4,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,68.18743,8.366238,0,6.597672,1
-4,1,100,1,3,126384,0,4298.431,64.02327,1,11,1,351.8427,100.1228,107.4889,0,703.9951,1263.45,1,0,0,14,0,1,81.1,17.4,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,68.18743,8.366238,0,7.141601,1
-5,1,25,1,1,126386,0,7500,31.64134,1,12,1,47.29328,14.6282,0,0,0,61.92147,0,0,0,5,0,4,74.7,13,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,77.99498,8.922791,1.386294,4.125867,1
-5,1,25,1,2,126386,0,7500,32.64134,1,12,1,51.44257,27.51769,0,0,0,78.96026,0,0,0,4,0,4,74.7,13,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,77.99498,8.922791,1.386294,4.368945,1
-5,1,25,1,3,126386,0,7500,33.64134,1,12,1,9.910803,0,0,0,0,9.910803,0,0,0,1,0,4,74.7,13,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,77.99498,8.922791,1.386294,2.293625,1
-5,1,25,1,4,126386,0,7500,34.64134,1,12,1,68.60945,4.566315,0,0,0,73.17577,0,0,0,4,0,4,74.7,13,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,77.99498,8.922791,1.386294,4.292864,1
-5,1,25,1,5,126386,0,7500,35.64134,1,12,1,29.86958,0,126.2095,0,0,156.0791,0,0,0,3,0,4,74.7,13,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,77.99498,8.922791,1.386294,5.050363,1
-5,1,25,1,1,126387,0,7500,3.069131,0,12,1,0,5.086258,0,0,0,5.086258,0,0,0,0,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,79.16171,8.922791,1.386294,1.626542,1
-5,1,25,1,2,126387,0,7500,4.069131,0,12,1,18.50844,2.721829,0,0,0,21.23027,0,0,0,2,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,79.16171,8.922791,1.386294,3.055428,1
-5,1,25,1,3,126387,0,7500,5.069131,0,12,1,66.89792,3.468781,0,0,0,70.3667,0,0,0,5,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,79.16171,8.922791,1.386294,4.25372,1
-5,1,25,1,4,126387,0,7500,6.069131,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,79.16171,8.922791,1.386294,,0
-5,1,25,1,5,126387,0,7500,7.069131,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,79.16171,8.922791,1.386294,,0
-5,1,25,1,1,126388,0,7500,31.48528,0,12,1,9.815586,0,0,0,0,9.815586,0,0,0,1,0,4,65.3,4.3,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,78.04445,8.922791,1.386294,2.283972,1
-5,1,25,1,2,126388,0,7500,32.48528,0,12,1,15.24224,0,0,0,0,15.24224,0,0,0,1,0,4,65.3,4.3,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,78.04445,8.922791,1.386294,2.724071,1
-5,1,25,1,3,126388,0,7500,33.48528,0,12,1,7.680872,2.477701,0,0,0,10.15857,0,0,0,1,0,4,65.3,4.3,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,78.04445,8.922791,1.386294,2.318318,1
-5,1,25,1,4,126388,0,7500,34.48528,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,65.3,4.3,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,78.04445,8.922791,1.386294,,0
-5,1,25,1,5,126388,0,7500,35.48528,0,12,1,13.46235,0,0,0,0,13.46235,0,0,0,1,0,4,65.3,4.3,0,,455,455,0,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,78.04445,8.922791,1.386294,2.599897,1
-5,1,25,1,1,126389,0,7500,5.738535,0,12,1,11.89768,7.406306,0,0,0,19.30399,0,0,0,1,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,82.59333,8.922791,1.386294,2.960312,1
-5,1,25,1,2,126389,0,7500,6.738535,0,12,1,24.76864,5.389222,0,0,0,30.15787,0,0,0,3,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,82.59333,8.922791,1.386294,3.406446,1
-5,1,25,1,3,126389,0,7500,7.738535,0,12,1,28.74133,4.88107,0,0,0,33.6224,0,0,0,3,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,82.59333,8.922791,1.386294,3.515193,1
-5,1,25,1,4,126389,0,7500,8.738535,0,12,1,13.99725,2.294631,0,0,0,16.29188,0,0,0,2,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,82.59333,8.922791,1.386294,2.790667,1
-5,1,25,1,5,126389,0,7500,9.738535,0,12,1,34.939,0,0,0,0,34.939,0,0,0,2,0,4,74.36826,13.73189,0,,455,455,1,0,1.386294,6.120297,0,3.258096,7.506592,0,0,0,82.59333,8.922791,1.386294,3.553604,1
-1,1,0,1,1,126390,0,4179.28,43.07734,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80,17.4,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,70.18314,8.338134,1.098612,,0
-1,1,0,1,2,126390,0,4179.28,44.07734,1,12,1,46.36119,2.695418,14.01617,0,0,63.07278,0,0,0,4,1,3,80,17.4,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,70.18314,8.338134,1.098612,4.144289,1
-1,1,0,1,3,126390,0,4179.28,45.07734,1,12,1,8.353808,0,0,0,0,8.353808,0,0,0,1,0,3,80,17.4,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,70.18314,8.338134,1.098612,2.122718,1
-1,1,0,1,4,126390,0,4179.28,46.07734,1,12,1,9.11577,0,0,0,0,9.11577,0,0,0,0,0,2,80,17.4,0,,450,460,0,0,.6931472,6.131227,1,0,0,1,0,0,70.18314,8.338134,.6931472,2.210006,1
-1,1,0,1,5,126390,0,4179.28,47.07734,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80,17.4,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,70.18314,8.338134,1.098612,,0
-1,1,0,1,1,126391,0,4179.28,13.04586,0,12,1,5.300354,1.766784,0,0,0,7.067138,0,0,0,1,0,3,74.36826,13.73189,0,,450,460,1,0,1.098612,6.131227,1,0,0,1,0,0,75.23473,8.338134,1.098612,1.955456,1
-1,1,0,1,2,126391,0,4179.28,14.04586,0,12,1,28.03234,0,19.11051,0,0,47.14286,0,0,0,1,1,3,74.36826,13.73189,0,,450,460,1,0,1.098612,6.131227,1,0,0,1,0,0,75.23473,8.338134,1.098612,3.853183,1
-1,1,0,1,3,126391,0,4179.28,15.04586,0,12,1,62.89926,0,0,0,0,62.89926,0,0,0,3,0,3,74.36826,13.73189,0,,450,460,1,0,1.098612,6.131227,1,0,0,1,0,0,75.23473,8.338134,1.098612,4.141534,1
-1,1,0,1,4,126391,0,4179.28,16.04586,0,12,1,75.90246,0,34.77211,0,0,110.6746,0,0,0,5,1,2,74.36826,13.73189,0,,450,460,1,0,.6931472,6.131227,1,0,0,1,0,0,75.23473,8.338134,.6931472,4.706594,1
-1,1,0,1,5,126391,0,4179.28,17.04586,0,12,1,15.00625,.8336807,0,0,0,15.83993,0,0,0,1,0,3,74.36826,13.73189,0,,450,460,1,0,1.098612,6.131227,1,0,0,1,0,0,75.23473,8.338134,1.098612,2.762534,1
-1,1,0,1,1,126392,0,4179.28,39.97262,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,76.8,4.3,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,67.17622,8.338134,1.098612,,0
-1,1,0,1,2,126392,0,4179.28,40.97262,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,76.8,4.3,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,67.17622,8.338134,1.098612,,0
-1,1,0,1,3,126392,0,4179.28,41.97262,0,11,1,66.58477,0,0,0,0,66.58477,0,0,0,1,0,3,76.8,4.3,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,67.17622,8.338134,1.098612,4.198476,1
-1,1,0,1,5,126392,0,4179.28,43.97262,0,11,1,45.22718,0,4.126719,0,0,49.3539,0,0,0,2,0,3,76.8,4.3,0,,450,460,0,0,1.098612,6.131227,1,0,0,1,0,0,67.17622,8.338134,1.098612,3.899017,1
-9,1,50,0,1,126410,0,10069.48,26.74607,1,16,1,200.8393,22.97362,0,0,0,223.8129,0,0,0,12,0,2,93.8,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,69.61801,9.217363,.6931472,5.41081,1
-9,1,50,0,2,126410,0,10069.48,27.74607,1,16,1,465.3341,0,0,0,0,465.3341,0,0,0,5,0,2,93.8,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,69.61801,9.217363,.6931472,6.142756,1
-9,1,50,0,3,126410,0,10069.48,28.74607,1,16,1,74.06483,0,0,0,0,74.06483,0,0,0,1,0,2,93.8,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,69.61801,9.217363,.6931472,4.304941,1
-9,1,50,0,1,126411,0,10069.48,26.6475,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.70196,9.217363,.6931472,,0
-9,1,50,0,2,126411,0,10069.48,27.6475,0,16,1,6.571742,0,36.8839,0,0,43.45564,0,0,0,0,1,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.70196,9.217363,.6931472,3.771741,1
-9,1,50,0,3,126411,0,10069.48,28.6475,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.70196,9.217363,.6931472,,0
-11,1,0,0,1,126417,0,7262.407,25.62354,1,18,1,24.14605,14.68787,0,0,0,38.83392,0,0,0,2,0,3,75,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.44444,8.890604,1.098612,3.659294,1
-11,1,0,0,2,126417,0,7262.407,26.62354,1,18,1,173.5849,26.81402,17.57412,0,0,217.9731,0,0,0,10,1,3,75,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.44444,8.890604,1.098612,5.384371,1
-11,1,0,0,3,126417,0,7262.407,27.62354,1,18,1,48.2801,10.79115,0,0,0,59.07125,0,0,0,5,0,3,75,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.44444,8.890604,1.098612,4.078744,1
-11,1,0,0,4,126417,0,7262.407,28.62354,1,18,1,55.8113,4.443938,0,0,0,60.25524,0,0,0,3,0,3,75,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.44444,8.890604,1.098612,4.098589,1
-11,1,0,0,5,126417,0,7262.407,29.62354,1,18,1,38.76615,4.43935,22.62609,0,0,65.8316,0,0,0,3,1,3,75,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,78.44444,8.890604,1.098612,4.1871,1
-11,1,0,0,1,126418,0,7262.407,27.29363,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,78.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.55326,8.890604,1.098612,,0
-11,1,0,0,2,126418,0,7262.407,28.29363,0,18,1,103.504,1.078167,29.29919,0,0,133.8814,0,0,0,2,0,3,78.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.55326,8.890604,1.098612,4.896955,1
-11,1,0,0,3,126418,0,7262.407,29.29363,0,18,1,12.28501,5.189189,0,0,0,17.4742,0,0,0,1,1,3,78.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.55326,8.890604,1.098612,2.860726,1
-11,1,0,0,4,126418,0,7262.407,30.29363,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,78.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.55326,8.890604,1.098612,,0
-11,1,0,0,5,126418,0,7262.407,31.29363,0,18,1,15.00625,4.326803,22.62609,0,0,41.95915,0,0,0,1,1,3,78.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.55326,8.890604,1.098612,3.736696,1
-5,1,25,1,1,126426,0,15193.55,44.84873,1,12,1,177.8269,189.2933,28.92815,0,711.9258,1107.974,1,0,0,17,0,3,44.2,26.1,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,1,0,0,67.97492,9.628692,1.098612,7.010289,1
-5,1,25,1,2,126426,0,15193.55,45.84873,1,12,1,93.26145,158.4852,25.3531,0,1780.819,2057.919,2,0,0,10,0,3,44.2,26.1,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,1,0,0,67.97492,9.628692,1.098612,7.629451,1
-5,1,25,1,3,126426,0,15193.55,46.84873,1,12,1,222.8501,94.44226,0,0,0,317.2924,0,0,0,8,0,3,44.2,26.1,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,1,0,0,67.97492,9.628692,1.098612,5.759824,1
-5,1,25,1,4,126426,0,15193.55,47.84873,1,12,1,147.6755,75.87967,30.433,0,0,253.9881,0,0,0,6,0,3,44.2,26.1,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,1,0,0,67.97492,9.628692,1.098612,5.537288,1
-5,1,25,1,5,126426,0,15193.55,48.84873,1,12,1,19.69571,77.93247,0,0,0,97.62818,0,0,0,1,0,3,44.2,26.1,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,1,0,0,67.97492,9.628692,1.098612,4.581166,1
-5,1,25,1,1,126427,0,15193.55,42.23682,0,16,1,99.23439,207.9564,0,0,1480.071,1787.261,2,0,0,8,0,3,65.3,21.7,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,1,0,59.88523,9.628692,1.098612,7.48844,1
-5,1,25,1,2,126427,0,15193.55,43.23682,0,16,1,110.1078,131.3693,0,0,0,241.4771,0,0,0,5,0,3,65.3,21.7,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,1,0,59.88523,9.628692,1.098612,5.486774,1
-5,1,25,1,3,126427,0,15193.55,44.23682,0,16,1,126.9042,86.81081,0,0,1071.646,1285.361,1,0,0,4,1,3,65.3,21.7,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,1,0,59.88523,9.628692,1.098612,7.158795,1
-5,1,25,1,4,126427,0,15193.55,45.23682,0,16,1,13.90155,79.85415,0,0,0,93.7557,0,0,0,2,0,3,65.3,21.7,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,1,0,59.88523,9.628692,1.098612,4.540692,1
-5,1,25,1,5,126427,0,15193.55,46.23682,0,16,1,156.5235,55.02293,24.32263,0,645.8733,881.7424,1,0,0,4,0,3,65.3,21.7,1,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,1,0,59.88523,9.628692,1.098612,6.7819,1
-5,1,25,1,1,126428,0,15193.55,19.40862,0,12.32507,1,143.9929,11.78445,0,0,0,155.7774,0,0,0,11,0,3,80,13,0,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,0,0,77.93675,9.628692,1.098612,5.048428,1
-5,1,25,1,2,126428,0,15193.55,20.40862,0,12.32507,1,130.9973,9.681941,30.42048,680.8625,0,171.0997,0,0,33,6,0,3,80,13,0,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,0,0,77.93675,9.628692,1.098612,5.142247,1
-5,1,25,1,3,126428,0,15193.55,21.40862,0,12.32507,1,107.8624,0,27.72973,0,621.0024,756.5946,1,0,0,6,0,3,80,13,0,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,0,0,77.93675,9.628692,1.098612,6.628828,1
-5,1,25,1,4,126428,0,15193.55,22.40862,0,12.32507,1,23.35916,0,0,0,0,23.35916,0,0,0,2,0,3,80,13,0,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,0,0,77.93675,9.628692,1.098612,3.150989,1
-5,1,25,1,5,126428,0,15193.55,23.40862,0,12.32507,1,69.50813,7.582326,0,0,0,77.09045,0,0,0,7,0,3,80,13,0,,800,800,0,0,1.098612,6.684612,0,3.258096,8.070906,0,0,0,77.93675,9.628692,1.098612,4.344979,1
-7,1,25,0,1,126461,0,6078.164,49.24572,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,82.5,13.73189,0,,843,843,0,0,0,6.736967,0,3.258096,8.123261,0,0,0,79.31465,8.712623,0,,0
-7,1,25,0,2,126461,0,6078.164,50.24572,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,82.5,13.73189,0,,843,843,0,0,0,6.736967,0,3.258096,8.123261,0,0,0,79.31465,8.712623,0,,0
-7,1,25,0,3,126461,0,6078.164,51.24572,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,82.5,13.73189,0,,843,843,0,0,0,6.736967,0,3.258096,8.123261,0,0,0,79.31465,8.712623,0,,0
-2,1,100,0,1,126465,0,9542.002,59.37577,1,8,1,77.73852,111.331,0,0,0,189.0695,0,0,0,14,0,1,93.7,26.1,1,,107,0,0,0,0,0,1,0,0,0,0,0,74.02026,9.163564,0,5.242115,1
-2,1,100,0,2,126465,0,9542.002,60.37577,1,8,.4098361,33.42318,51.71429,0,0,0,85.13747,0,0,0,3,1,1,93.7,26.1,1,,107,0,0,0,0,0,1,0,0,0,0,0,74.02026,9.163564,0,4.444267,1
-1,1,0,0,1,126467,0,9542.002,51.60301,0,13,1,59.48174,17.95642,0,0,0,77.43816,0,0,0,7,0,3,52.6,21.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,69.33797,9.163564,1.098612,4.34948,1
-1,1,0,0,2,126467,0,9542.002,52.60301,0,13,1,17.78976,0,0,0,0,17.78976,0,0,0,3,0,3,52.6,21.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,69.33797,9.163564,1.098612,2.878623,1
-1,1,0,0,3,126467,0,9542.002,53.60301,0,13,1,28.13268,0,0,0,0,28.13268,0,0,0,2,0,3,52.6,21.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,69.33797,9.163564,1.098612,3.336932,1
-1,1,0,0,1,126468,0,9542.002,18.52704,1,12,1,30.62426,9.045937,0,0,0,39.6702,0,0,0,1,0,3,42.1,13,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,72.70441,9.163564,1.098612,3.6806,1
-1,1,0,0,2,126468,0,9542.002,19.52704,1,12,1,40.97035,5.369272,26.41509,0,0,72.75471,0,0,0,3,0,3,42.1,13,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,72.70441,9.163564,1.098612,4.287094,1
-1,1,0,0,3,126468,0,9542.002,20.52704,1,12,1,42.01474,11.95086,0,0,767.0762,821.0417,1,0,0,2,0,3,42.1,13,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,72.70441,9.163564,1.098612,6.710574,1
-1,1,0,0,1,126469,0,9542.002,47.10199,1,12,1,89.28151,26.27797,0,0,992.2438,1107.803,1,0,0,8,0,3,51.6,8.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,71.65771,9.163564,1.098612,7.010134,1
-1,1,0,0,2,126469,0,9542.002,48.10199,1,12,1,284.717,61.062,0,0,0,345.779,0,0,0,14,0,3,51.6,8.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,71.65771,9.163564,1.098612,5.8458,1
-1,1,0,0,3,126469,0,9542.002,49.10199,1,12,1,51.30221,44.10811,0,0,0,95.41032,0,0,0,6,0,3,51.6,8.7,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,71.65771,9.163564,1.098612,4.558187,1
-8,1,50,1,1,126486,0,1728.908,10.76797,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,163,450,1,0,1.098612,6.109248,0,3.931826,5.786897,1,0,0,76.10808,7.455823,1.098612,,0
-8,1,50,1,2,126486,0,1728.908,11.76797,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,163,450,1,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,76.10808,7.455823,1.386294,,0
-8,1,50,1,3,126486,0,1728.908,12.76797,0,11,1,16.35283,0,0,0,0,16.35283,0,0,0,2,0,4,74.36826,13.73189,0,,163,450,1,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,76.10808,7.455823,1.386294,2.794401,1
-8,1,50,1,4,126486,0,1728.908,13.76797,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,163,450,1,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,76.10808,7.455823,1.386294,,0
-8,1,50,1,5,126486,0,1728.908,14.76797,0,11,1,41.22844,4.585612,0,0,0,45.81405,0,0,0,5,0,4,74.36826,13.73189,0,,163,450,1,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,76.10808,7.455823,1.386294,3.824591,1
-8,1,50,1,1,126488,0,1728.908,47.95893,1,11,1,98.15586,20.80904,39.78584,0,0,158.7507,0,0,0,4,1,3,64.2,26.1,0,,163,450,0,0,1.098612,6.109248,0,3.931826,5.786897,1,0,0,67.26075,7.455823,1.098612,5.067335,1
-8,1,50,1,2,126488,0,1728.908,48.95893,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,64.2,26.1,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,67.26075,7.455823,1.386294,,0
-8,1,50,1,3,126488,0,1728.908,49.95893,1,11,1,81.26859,19.94053,54.89098,0,0,156.1001,0,0,0,9,1,4,64.2,26.1,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,67.26075,7.455823,1.386294,5.050498,1
-8,1,50,1,4,126488,0,1728.908,50.95893,1,11,1,19.73382,9.343736,0,0,0,29.07756,0,0,0,2,0,4,64.2,26.1,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,67.26075,7.455823,1.386294,3.369967,1
-8,1,50,1,5,126488,0,1728.908,51.95893,1,11,1,276.7144,45.35128,47.48002,0,470.8162,840.3618,1,0,0,7,1,4,64.2,26.1,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,67.26075,7.455823,1.386294,6.733832,1
-8,1,50,1,1,126489,0,1728.908,15.86858,1,11,1,95.18144,36.38311,0,0,25263.65,25395.21,1,0,0,9,0,3,75.8,13,0,,163,450,1,1,1.098612,6.109248,0,3.931826,5.786897,1,0,0,63.92562,7.455823,1.098612,10.14232,1
-8,1,50,1,2,126489,0,1728.908,16.86858,1,11,1,27.21829,27.10942,0,0,0,54.32771,0,0,0,3,0,4,75.8,13,0,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,1,0,0,63.92562,7.455823,1.386294,3.995034,1
-8,1,50,1,3,126489,0,1728.908,17.86858,1,11,1,80.94153,38.60258,41.94747,0,0,161.4916,0,0,0,7,2,4,75.8,13,0,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,1,0,0,63.92562,7.455823,1.386294,5.084453,1
-8,1,50,1,4,126489,0,1728.908,18.86858,1,11,1,76.8793,25.69527,0,0,0,102.5746,0,0,0,4,0,4,75.8,13,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,63.92562,7.455823,1.386294,4.63059,1
-8,1,50,1,5,126489,0,1728.908,19.86858,1,11,1,134.8296,25.7257,0,0,223.8199,384.3753,1,0,0,5,1,4,75.8,13,0,,163,450,0,0,1.386294,6.109248,0,3.931826,5.786897,1,0,0,63.92562,7.455823,1.386294,5.951619,1
-7,1,25,1,1,126497,0,5035.244,58.32717,0,8,1,143.735,43.96283,25.94125,0,558.5552,772.1943,1,0,0,10,0,2,65.3,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,1,0,58.96577,8.524416,.6931472,6.649236,1
-7,1,25,1,2,126497,0,5035.244,59.32717,0,8,1,15.88171,57.19058,30.77218,0,0,103.8445,0,0,0,2,1,2,65.3,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,1,0,58.96577,8.524416,.6931472,4.642894,1
-7,1,25,1,1,126498,0,5035.244,49.82888,1,8,1,285.8513,28.84892,0,0,0,314.7002,0,0,0,6,0,2,80,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,63.43494,8.524416,.6931472,5.75162,1
-7,1,25,1,2,126498,0,5035.244,50.82888,1,8,1,17.52464,11.33625,37.48083,0,448.7952,515.1369,1,0,0,2,1,2,80,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,63.43494,8.524416,.6931472,6.244433,1
-3,1,100,0,1,126516,0,17296.53,33.73032,1,16,1,16.65675,11.08864,0,0,0,27.74539,0,0,0,2,0,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.55659,9.758319,1.609438,3.32307,1
-3,1,100,0,2,126516,0,17296.53,34.73032,1,16,1,371.8018,30.44638,0,0,0,402.2482,0,0,0,10,0,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.55659,9.758319,1.609438,5.997069,1
-3,1,100,0,3,126516,0,17296.53,35.73032,1,16,1,10.15857,43.91972,0,0,0,54.0783,0,0,0,1,0,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.55659,9.758319,1.609438,3.990433,1
-3,1,100,0,1,126517,0,17296.53,9.330595,0,16,1,20.22606,17.93575,0,0,0,38.16181,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,77.79649,9.758319,1.609438,3.641835,1
-3,1,100,0,2,126517,0,17296.53,10.3306,0,16,1,29.9129,4.599891,0,0,0,34.51279,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,77.79649,9.758319,1.609438,3.54133,1
-3,1,100,0,3,126517,0,17296.53,11.3306,0,16,1,22.79485,3.657086,0,0,0,26.45193,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,77.79649,9.758319,1.609438,3.275329,1
-3,1,100,0,1,126518,0,17296.53,10.42026,1,16,1,24.39024,1.754908,0,0,0,26.14515,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.2181,9.758319,1.609438,3.263664,1
-3,1,100,0,2,126518,0,17296.53,11.42026,1,16,1,77.81709,13.05389,0,0,182.5259,273.3969,1,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.2181,9.758319,1.609438,5.610924,1
-3,1,100,0,3,126518,0,17296.53,12.42026,1,16,1,14.37066,0,0,0,0,14.37066,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.2181,9.758319,1.609438,2.665189,1
-3,1,100,0,1,126519,0,17296.53,34.54894,0,18,1,35.09816,49.55384,0,0,0,84.65199,0,0,0,5,0,5,80,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.61339,9.758319,1.609438,4.438549,1
-3,1,100,0,2,126519,0,17296.53,35.54894,0,18,1,159.4992,37.40882,0,0,0,196.908,0,0,0,7,0,5,80,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.61339,9.758319,1.609438,5.282737,1
-3,1,100,0,3,126519,0,17296.53,36.54894,0,18,1,101.5857,55.32706,0,0,0,156.9128,0,0,0,10,0,5,80,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.61339,9.758319,1.609438,5.05569,1
-3,1,100,0,1,126520,0,17296.53,4.112252,1,16,1,39.26234,15.84176,0,0,0,55.1041,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,71.73346,9.758319,1.609438,4.009224,1
-3,1,100,0,2,126520,0,17296.53,5.112252,1,16,1,89.82036,26.32553,0,0,0,116.1459,0,0,0,6,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,71.73346,9.758319,1.609438,4.754847,1
-3,1,100,0,3,126520,0,17296.53,6.112252,1,16,1,8.919723,16.0555,0,0,0,24.97522,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,71.73346,9.758319,1.609438,3.217884,1
-8,1,50,0,1,126544,0,13919.98,11.49076,1,12,1,28.85748,2.37338,0,0,0,31.23086,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.23631,9.541152,1.098612,3.441407,1
-8,1,50,0,2,126544,0,13919.98,12.49076,1,12,1,9.703504,0,0,0,0,9.703504,0,0,0,0,1,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.23631,9.541152,1.098612,2.272487,1
-8,1,50,0,3,126544,0,13919.98,13.49076,1,12,1,7.371007,1.941032,0,0,0,9.312039,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.23631,9.541152,1.098612,2.231308,1
-8,1,50,0,1,126545,0,13919.98,42.7269,1,12,1,283.5689,45.36514,0,0,0,328.9341,0,0,0,12,0,3,34.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,66.0592,9.541152,1.098612,5.795857,1
-8,1,50,0,2,126545,0,13919.98,43.7269,1,12,1,264.469,92.54447,33.66038,0,0,390.6739,0,0,0,17,6,3,34.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,66.0592,9.541152,1.098612,5.967873,1
-8,1,50,0,3,126545,0,13919.98,44.7269,1,12,1,0,47.2629,0,0,0,47.2629,0,0,0,0,0,3,34.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,66.0592,9.541152,1.098612,3.855726,1
-8,1,50,0,1,126546,0,13919.98,43.47981,0,11,1,191.9906,6.861013,0,0,0,198.8516,0,0,0,2,0,3,74.7,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.27012,9.541152,1.098612,5.292559,1
-8,1,50,0,2,126546,0,13919.98,44.47981,0,11,1,0,8.916442,0,0,0,8.916442,0,0,0,0,0,3,74.7,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.27012,9.541152,1.098612,2.187897,1
-8,1,50,0,3,126546,0,13919.98,45.47981,0,11,1,32.43243,2.584767,53.40541,0,0,88.42261,0,0,0,1,0,3,74.7,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.27012,9.541152,1.098612,4.482128,1
-3,1,100,1,1,126553,0,11575.06,3.471595,1,14,1,7.237636,0,0,0,0,7.237636,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,74.41945,9.356694,1.386294,1.979295,1
-3,1,100,1,2,126553,0,11575.06,4.471595,1,14,1,18.72247,0,0,0,0,18.72247,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,74.41945,9.356694,1.386294,2.929724,1
-3,1,100,1,3,126553,0,11575.06,5.471595,1,14,1,39.02562,2.556504,0,0,0,41.58212,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,74.41945,9.356694,1.386294,3.72767,1
-3,1,100,1,4,126553,0,11575.06,6.471595,1,14,1,12.05378,0,0,0,0,12.05378,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,74.41945,9.356694,1.386294,2.489378,1
-3,1,100,1,5,126553,0,11575.06,7.471595,1,14,1,16.58869,0,0,0,0,16.58869,0,0,0,1,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,74.41945,9.356694,1.386294,2.808721,1
-3,1,100,1,1,126554,0,11575.06,32.55578,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,77.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.67448,9.356694,1.386294,,0
-3,1,100,1,2,126554,0,11575.06,33.55578,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,77.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.67448,9.356694,1.386294,,0
-3,1,100,1,3,126554,0,11575.06,34.55578,0,16,1,12.05424,0,14.1336,0,0,26.18785,0,0,0,0,1,4,77.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.67448,9.356694,1.386294,3.265295,1
-3,1,100,1,4,126554,0,11575.06,35.55578,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,77.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.67448,9.356694,1.386294,,0
-3,1,100,1,5,126554,0,11575.06,36.55578,0,16,1,11.90983,0,0,0,0,11.90983,0,0,0,0,1,4,77.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.67448,9.356694,1.386294,2.477364,1
-3,1,100,1,1,126555,0,11575.06,6.401095,1,14,1,9.650181,8.27503,0,0,0,17.92521,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,77.85107,9.356694,1.386294,2.886208,1
-3,1,100,1,2,126555,0,11575.06,7.401095,1,14,1,0,7.621145,0,0,0,7.621145,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,77.85107,9.356694,1.386294,2.030927,1
-3,1,100,1,3,126555,0,11575.06,8.401095,1,14,1,15.57007,4.650929,0,0,0,20.22099,0,0,0,1,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,77.85107,9.356694,1.386294,3.006721,1
-3,1,100,1,4,126555,0,11575.06,9.401095,1,14,1,12.05378,2.545202,20.34771,0,0,34.94669,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,77.85107,9.356694,1.386294,3.553824,1
-3,1,100,1,5,126555,0,11575.06,10.4011,1,14,1,16.58869,0,12.44577,0,0,29.03445,0,0,0,1,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,1,0,0,77.85107,9.356694,1.386294,3.368483,1
-3,1,100,1,1,126556,0,11575.06,31.86311,1,14,1,28.34741,0,25.84439,0,0,54.1918,0,0,0,2,1,4,86.3,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,72.42058,9.356694,1.386294,3.99253,1
-3,1,100,1,2,126556,0,11575.06,32.86311,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,86.3,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,72.42058,9.356694,1.386294,,0
-3,1,100,1,3,126556,0,11575.06,33.86311,1,14,1,10.54746,0,0,0,0,10.54746,0,0,0,1,0,4,86.3,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,72.42058,9.356694,1.386294,2.355886,1
-3,1,100,1,4,126556,0,11575.06,34.86311,1,14,1,23.64395,1.687529,0,0,0,25.33148,0,0,0,1,1,4,86.3,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,72.42058,9.356694,1.386294,3.232048,1
-3,1,100,1,5,126556,0,11575.06,35.86311,1,14,1,11.48448,0,0,0,0,11.48448,0,0,0,1,0,4,86.3,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,72.42058,9.356694,1.386294,2.440996,1
-4,1,100,1,1,126566,0,8857.32,37.21561,0,13,1,80.33573,134.2626,0,0,0,214.5983,0,0,0,4,0,5,93.7,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.11638,9.089112,1.609438,5.368768,1
-4,1,100,1,2,126566,0,8857.32,38.21561,0,13,1,108.4337,120.2026,22.32202,0,0,250.9584,0,0,0,3,0,5,93.7,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,72.11638,9.089112,1.609438,5.525287,1
-4,1,100,1,3,126566,0,8857.32,39.21561,0,13,1,9.476309,0,0,0,0,9.476309,0,0,0,1,0,6,93.7,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,72.11638,9.089112,1.791759,2.248795,1
-4,1,100,1,4,126566,0,8857.32,40.21561,0,13,1,9.22084,4.601199,0,0,0,13.82204,0,0,0,1,0,6,93.7,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,72.11638,9.089112,1.791759,2.626264,1
-4,1,100,1,5,126566,0,8857.32,41.21561,0,13,1,.5289886,2.391028,0,0,0,2.920017,0,0,0,0,0,6,93.7,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,72.11638,9.089112,1.791759,1.071589,1
-4,1,100,1,1,126567,0,8857.32,14.45311,0,12,1,29.3765,0,0,0,0,29.3765,0,0,0,0,0,5,95.8,0,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,79.27259,9.089112,1.609438,3.380195,1
-4,1,100,1,2,126567,0,8857.32,15.45311,0,12,1,0,4.359255,0,0,0,4.359255,0,0,0,0,0,5,95.8,0,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,79.27259,9.089112,1.609438,1.472301,1
-4,1,100,1,3,126567,0,8857.32,16.45311,0,12,1,26.18454,6.528678,0,0,0,32.71322,0,0,0,3,0,6,95.8,0,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,0,0,0,79.27259,9.089112,1.791759,3.487779,1
-4,1,100,1,4,126567,0,8857.32,17.45311,0,12,1,23.0521,0,0,0,0,23.0521,0,0,0,2,0,6,95.8,0,0,,1000,1000,1,0,1.791759,6.907755,1,0,0,0,0,0,79.27259,9.089112,1.791759,3.137757,1
-4,1,100,1,5,126567,0,8857.32,18.45311,0,12,1,8.463818,0,0,0,0,8.463818,0,0,0,1,0,6,95.8,0,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,0,0,0,79.27259,9.089112,1.791759,2.1358,1
-4,1,100,1,1,126568,0,8857.32,13.40178,1,12,1,14.98801,3.52518,0,0,0,18.51319,0,0,0,1,0,5,74.36826,13.73189,.0277778,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,77.07726,9.089112,1.609438,2.918483,1
-4,1,100,1,2,126568,0,8857.32,14.40178,1,12,1,6.024096,4.813801,16.59912,0,0,27.43702,0,0,0,1,0,5,74.36826,13.73189,.0277778,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,77.07726,9.089112,1.609438,3.311893,1
-4,1,100,1,3,126568,0,8857.32,15.40178,1,12,1,17.45636,2.024938,0,0,0,19.4813,0,0,0,2,0,6,74.36826,13.73189,.0277778,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,77.07726,9.089112,1.791759,2.969455,1
-4,1,100,1,4,126568,0,8857.32,16.40178,1,12,1,0,3.720608,0,0,0,3.720608,0,0,0,0,0,6,74.36826,13.73189,.0277778,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,77.07726,9.089112,1.791759,1.313887,1
-4,1,100,1,5,126568,0,8857.32,17.40178,1,12,1,74.1642,3.643673,28.67964,0,0,106.4875,0,0,0,2,1,6,74.36826,13.73189,.0277778,,1000,1000,1,1,1.791759,6.907755,1,0,0,1,0,0,77.07726,9.089112,1.791759,4.668028,1
-4,1,100,1,1,126569,0,8857.32,6.075291,1,12,1,4.196643,12.58993,0,0,0,16.78657,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.01283,9.089112,1.609438,2.820579,1
-4,1,100,1,2,126569,0,8857.32,7.075291,1,12,1,16.977,11.17196,0,0,0,28.14896,0,0,0,1,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,83.01283,9.089112,1.609438,3.33751,1
-4,1,100,1,3,126569,0,8857.32,8.075291,1,12,1,0,3.690773,0,0,0,3.690773,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,83.01283,9.089112,1.791759,1.305836,1
-4,1,100,1,4,126569,0,8857.32,9.075291,1,12,1,29.50669,6.325496,0,0,0,35.83218,0,0,0,1,3,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,83.01283,9.089112,1.791759,3.578846,1
-4,1,100,1,5,126569,0,8857.32,10.07529,1,12,1,17.45662,1.447313,0,0,0,18.90394,0,0,0,0,3,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,83.01283,9.089112,1.791759,2.93937,1
-4,1,100,1,1,126570,0,8857.32,32.82683,1,12,1,40.76739,2.392086,0,0,0,43.15947,0,0,0,2,0,5,88.4,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,66.55627,9.089112,1.609438,3.764902,1
-4,1,100,1,2,126570,0,8857.32,33.82683,1,12,1,60.24096,11.12815,0,0,1100.181,1171.55,1,0,0,6,0,5,88.4,8.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,66.55627,9.089112,1.609438,7.066083,1
-4,1,100,1,3,126570,0,8857.32,34.82683,1,12,1,2.992519,2.109726,0,0,0,5.102244,0,0,0,0,0,6,88.4,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,66.55627,9.089112,1.791759,1.629681,1
-4,1,100,1,4,126570,0,8857.32,35.82683,1,12,1,62.24067,0,0,0,0,62.24067,0,0,0,1,1,6,88.4,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,66.55627,9.089112,1.791759,4.131009,1
-4,1,100,1,5,126570,0,8857.32,36.82683,1,12,1,18.30301,2.835379,0,0,0,21.13838,0,0,0,1,0,6,88.4,8.7,0,,1000,1000,0,0,1.791759,6.907755,1,0,0,1,0,0,66.55627,9.089112,1.791759,3.05109,1
-9,1,50,1,1,126596,0,14330.02,35.03354,1,20,1,106.0071,42.30271,0,0,696.6019,844.9117,1,0,0,12,0,4,67.4,21.7,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,64.92197,9.570182,1.386294,6.739232,1
-9,1,50,1,2,126596,0,14330.02,36.03354,1,20,1,100.2695,26.14016,8.625337,0,1220.782,1355.817,1,0,0,9,0,4,67.4,21.7,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,64.92197,9.570182,1.386294,7.212159,1
-9,1,50,1,3,126596,0,14330.02,37.03354,1,20,1,83.53809,47.91155,0,0,0,131.4496,0,0,0,7,0,4,67.4,21.7,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,64.92197,9.570182,1.386294,4.878624,1
-9,1,50,1,1,126597,0,14330.02,42.59822,0,24,1,21.20141,5.683156,49.85277,0,0,76.73734,0,0,0,3,0,4,68.4,13,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,68.74699,9.570182,1.386294,4.340388,1
-9,1,50,1,2,126597,0,14330.02,43.59822,0,24,1,1.617251,2.754717,0,0,0,4.371968,0,0,0,2,0,4,68.4,13,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,68.74699,9.570182,1.386294,1.475213,1
-9,1,50,1,3,126597,0,14330.02,44.59822,0,24,1,26.53563,4.127764,48.27027,0,0,78.93366,0,0,0,3,0,4,68.4,13,1,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,68.74699,9.570182,1.386294,4.368608,1
-9,1,50,1,1,126598,0,14330.02,2.023272,0,20,1,55.35925,13.26266,4.711425,0,0,73.33334,0,0,0,10,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,4.295015,1
-9,1,50,1,2,126598,0,14330.02,3.023272,0,20,1,51.21294,1.644205,0,0,0,52.85714,0,0,1,7,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,3.967593,1
-9,1,50,1,3,126598,0,14330.02,4.023272,0,20,1,24.57002,11.46929,0,0,0,36.03931,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,3.58461,1
-9,1,50,1,1,126599,0,14330.02,4.607803,0,20,1,324.7644,8.386337,0,0,0,333.1508,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,5.808595,1
-9,1,50,1,2,126599,0,14330.02,5.607803,0,20,1,24.25876,4.684636,0,0,0,28.9434,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,3.365342,1
-9,1,50,1,3,126599,0,14330.02,6.607803,0,20,1,15.23342,10.93366,0,0,0,26.16708,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,66.69353,9.570182,1.386294,3.264502,1
-2,1,100,0,1,126609,0,9542.002,41.79603,1,12,1,45.34747,11.702,0,0,0,57.04947,0,0,0,4,0,4,90.5,8.7,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,72.1002,9.163564,1.386294,4.043919,1
-2,1,100,0,2,126609,0,9542.002,42.79603,1,12,1,89.75742,4.911051,0,0,0,94.66846,0,0,0,3,0,4,90.5,8.7,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,72.1002,9.163564,1.386294,4.550381,1
-2,1,100,0,3,126609,0,9542.002,43.79603,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90.5,8.7,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,72.1002,9.163564,1.386294,,0
-2,1,100,0,4,126609,0,9542.002,44.79603,1,12,1,13.67366,2.962625,0,0,0,16.63628,0,0,0,1,0,4,90.5,8.7,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,72.1002,9.163564,1.386294,2.811586,1
-2,1,100,0,5,126609,0,9542.002,45.79603,1,12,1,38.76615,0,0,0,0,38.76615,0,0,0,1,0,4,90.5,8.7,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,72.1002,9.163564,1.386294,3.657547,1
-2,1,100,0,1,126610,0,9542.002,14.57632,0,12,1,5.889281,0,0,0,0,5.889281,0,0,0,1,0,4,73.7,4.3,0,,0,0,1,0,1.386294,0,1,0,0,1,0,0,74.08881,9.163564,1.386294,1.773134,1
-2,1,100,0,2,126610,0,9542.002,15.57632,0,12,1,13.47709,0,0,0,0,13.47709,0,0,0,1,0,4,73.7,4.3,0,,0,0,1,0,1.386294,0,1,0,0,1,0,0,74.08881,9.163564,1.386294,2.600991,1
-2,1,100,0,3,126610,0,9542.002,16.57632,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,4.3,0,,0,0,1,0,1.386294,0,1,0,0,1,0,0,74.08881,9.163564,1.386294,,0
-2,1,100,0,4,126610,0,9542.002,17.57632,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,4.3,0,,0,0,1,0,1.386294,0,1,0,0,1,0,0,74.08881,9.163564,1.386294,,0
-2,1,100,0,5,126610,0,9542.002,18.57632,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,4.3,0,,0,0,0,0,1.386294,0,1,0,0,1,0,0,74.08881,9.163564,1.386294,,0
-2,1,100,0,1,126611,0,9542.002,8.405202,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,1,0,0,1,0,0,79.46868,9.163564,1.386294,,0
-2,1,100,0,2,126611,0,9542.002,9.405202,1,12,1,4.851752,3.28841,0,0,0,8.140162,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,1,0,0,1,0,0,79.46868,9.163564,1.386294,2.09681,1
-2,1,100,0,3,126611,0,9542.002,10.4052,1,12,1,118.6732,23.14496,0,0,0,141.8182,0,0,0,8,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,1,0,0,1,0,0,79.46868,9.163564,1.386294,4.954546,1
-2,1,100,0,4,126611,0,9542.002,11.4052,1,12,1,34.43482,15.10939,0,0,0,49.54421,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,1,0,0,1,0,0,79.46868,9.163564,1.386294,3.902865,1
-2,1,100,0,5,126611,0,9542.002,12.4052,1,12,1,22.50938,21.21717,0,0,0,43.72655,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,1,0,0,1,0,0,79.46868,9.163564,1.386294,3.777956,1
-2,1,100,0,1,126612,0,9542.002,19.47433,1,13,1,48.29211,40.22968,21.49588,0,0,110.0177,0,0,0,7,0,1,78.9,17.4,0,,0,0,0,0,0,0,1,0,0,1,0,0,74.33247,9.163564,0,4.700641,1
-2,1,100,0,2,126612,0,9542.002,20.47433,1,13,1,44.20485,29.82749,0,0,0,74.03235,0,0,0,5,0,1,78.9,17.4,0,,0,0,0,0,0,0,1,0,0,1,0,0,74.33247,9.163564,0,4.304502,1
-2,1,100,0,3,126612,0,9542.002,21.47433,1,13,1,45.70024,17.79852,0,0,0,63.49877,0,0,0,4,0,1,78.9,17.4,0,,0,0,0,0,0,0,1,0,0,1,0,0,74.33247,9.163564,0,4.151021,1
-2,1,100,0,4,126612,0,9542.002,22.47433,1,13,1,34.27985,5.556062,0,0,0,39.83591,0,0,0,2,0,1,78.9,17.4,0,,0,0,0,0,0,0,1,0,0,1,0,0,74.33247,9.163564,0,3.684769,1
-2,1,100,0,5,126612,0,9542.002,23.47433,1,13,1,33.34723,8.724468,0,0,0,42.0717,0,0,0,4,0,1,78.9,17.4,0,,0,0,0,0,0,0,1,0,0,1,0,0,74.33247,9.163564,0,3.739375,1
-2,1,100,0,1,126613,0,9542.002,42.00411,0,12,1,24.44052,8.763251,37.27915,0,0,70.48292,0,0,0,1,0,4,77.9,13,0,,0,0,0,0,1.386294,0,1,0,0,0,1,0,66.69038,9.163564,1.386294,4.255371,1
-2,1,100,0,2,126613,0,9542.002,43.00411,0,12,1,379.2668,48.46361,0,0,0,427.7305,0,0,0,6,0,4,77.9,13,0,,0,0,0,0,1.386294,0,1,0,0,0,1,0,66.69038,9.163564,1.386294,6.058493,1
-2,1,100,0,3,126613,0,9542.002,44.00411,0,12,1,15.47912,16.09337,0,0,0,31.57248,0,0,0,2,0,4,77.9,13,0,,0,0,0,0,1.386294,0,1,0,0,0,1,0,66.69038,9.163564,1.386294,3.452286,1
-2,1,100,0,4,126613,0,9542.002,45.00411,0,12,1,29.62625,24.09754,37.09207,0,0,90.81586,0,0,0,4,0,4,77.9,13,0,,0,0,0,0,1.386294,0,1,0,0,0,1,0,66.69038,9.163564,1.386294,4.508834,1
-2,1,100,0,5,126613,0,9542.002,46.00411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.9,13,0,,0,0,0,0,1.386294,0,1,0,0,0,1,0,66.69038,9.163564,1.386294,,0
-1,1,0,0,1,126635,0,9092.432,1.092402,0,19,1,47.59072,9.970256,0,0,0,57.56097,0,0,0,8,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,79.71203,9.115308,1.386294,4.052845,1
-1,1,0,0,2,126635,0,9092.432,2.092402,0,19,1,31.8454,3.712575,0,0,0,35.55798,0,0,0,4,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,79.71203,9.115308,1.386294,3.571164,1
-1,1,0,0,3,126635,0,9092.432,3.092402,0,19,1,66.15461,10.53023,18.58276,0,0,95.26759,0,0,0,6,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,79.71203,9.115308,1.386294,4.55669,1
-1,1,0,0,4,126635,0,9092.432,4.092402,0,19,1,33.73107,5.043598,0,0,0,38.77467,0,0,0,4,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,79.71203,9.115308,1.386294,3.657767,1
-1,1,0,0,5,126635,0,9092.432,5.092402,0,19,1,40.80774,7.942785,28.18679,0,0,76.93732,0,0,0,3,0,4,74.36826,13.73189,0,,450,450,1,0,1.386294,6.109248,1,0,0,0,0,0,79.71203,9.115308,1.386294,4.342991,1
-1,1,0,0,1,126636,0,9092.432,3.92334,1,19,1,27.36466,5.591909,0,0,0,32.95657,0,0,0,4,0,4,74.36826,13.73189,0,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,79.19805,9.115308,1.386294,3.495191,1
-1,1,0,0,2,126636,0,9092.432,4.92334,1,19,1,31.02885,5.035384,0,0,0,36.06424,0,0,0,3,0,4,74.36826,13.73189,0,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,79.19805,9.115308,1.386294,3.585302,1
-1,1,0,0,3,126636,0,9092.432,5.92334,1,19,1,84.14272,0,0,0,0,84.14272,0,0,0,2,1,4,74.36826,13.73189,0,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,79.19805,9.115308,1.386294,4.432514,1
-1,1,0,0,4,126636,0,9092.432,6.92334,1,19,1,19.04543,10.11014,0,0,0,29.15558,0,0,0,3,0,4,74.36826,13.73189,0,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,79.19805,9.115308,1.386294,3.372646,1
-1,1,0,0,5,126636,0,9092.432,7.92334,1,19,1,66.91628,14.11022,0,0,0,81.0265,0,0,0,3,0,4,74.36826,13.73189,0,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,79.19805,9.115308,1.386294,4.394776,1
-1,1,0,0,1,126637,0,9092.432,32.19439,0,19,1,14.8721,0,35.12195,0,0,49.99405,0,0,0,1,0,4,57.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,68.50468,9.115308,1.386294,3.911904,1
-1,1,0,0,2,126637,0,9092.432,33.19439,0,19,1,0,0,0,0,0,0,0,0,0,0,0,4,57.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,68.50468,9.115308,1.386294,,0
-1,1,0,0,3,126637,0,9092.432,34.19439,0,19,1,51.53617,2.685827,25.76809,0,0,79.99009,0,0,0,4,0,4,57.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,68.50468,9.115308,1.386294,4.381903,1
-1,1,0,0,4,126637,0,9092.432,35.19439,0,19,1,116.5672,6.094539,0,0,0,122.6618,0,0,0,3,0,4,57.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,68.50468,9.115308,1.386294,4.809431,1
-1,1,0,0,5,126637,0,9092.432,36.19439,0,19,1,3.365587,0,0,0,0,3.365587,0,0,0,0,0,4,57.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,68.50468,9.115308,1.386294,1.213602,1
-1,1,0,0,1,126638,0,9092.432,30.88022,1,19,1,33.3135,27.72159,27.35277,0,0,88.38786,0,0,0,3,0,4,62.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,67.19316,9.115308,1.386294,4.481735,1
-1,1,0,0,2,126638,0,9092.432,31.88022,1,19,1,26.12956,11.24115,0,0,0,37.37071,0,0,0,2,0,4,62.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,67.19316,9.115308,1.386294,3.620887,1
-1,1,0,0,3,126638,0,9092.432,32.88022,1,19,1,14.8662,9.781962,0,0,0,24.64817,0,0,0,1,0,4,62.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,67.19316,9.115308,1.386294,3.204703,1
-1,1,0,0,4,126638,0,9092.432,33.88022,1,19,1,48.64617,2.505737,0,0,0,51.15191,0,0,0,2,0,4,62.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,67.19316,9.115308,1.386294,3.9348,1
-1,1,0,0,5,126638,0,9092.432,34.88022,1,19,1,24.8212,0,0,0,0,24.8212,0,0,0,2,0,4,62.5,13.73189,0,,450,450,0,0,1.386294,6.109248,1,0,0,1,0,0,67.19316,9.115308,1.386294,3.211698,1
-6,1,25,0,1,126650,0,9743.176,32.97467,0,14,1,0,2.338045,0,0,0,2.338045,0,0,0,0,0,4,91.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.79201,9.184425,1.386294,.8493149,1
-6,1,25,0,2,126650,0,9743.176,33.97467,0,14,1,43.66577,6.080863,0,0,0,49.74663,0,0,0,2,0,4,91.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.79201,9.184425,1.386294,3.906943,1
-6,1,25,0,3,126650,0,9743.176,34.97467,0,14,1,7.371007,7.208845,0,0,0,14.57985,0,0,0,1,0,5,91.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,78.79201,9.184425,1.609438,2.679641,1
-6,1,25,0,1,126651,0,9743.176,6.130048,0,12,1,50.79505,3.274441,0,0,0,54.06949,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.04264,9.184425,1.386294,3.99027,1
-6,1,25,0,2,126651,0,9743.176,7.130048,0,12,1,18.86792,8.722372,0,0,0,27.5903,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.04264,9.184425,1.386294,3.317464,1
-6,1,25,0,3,126651,0,9743.176,8.130048,0,12,1,64.37347,9.7543,0,0,0,74.12776,0,0,0,3,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,85.04264,9.184425,1.609438,4.30579,1
-6,1,25,0,1,126652,0,9743.176,31.21424,1,12,1,80.09423,51.60188,0,0,0,131.6961,0,0,0,9,0,4,86.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.3639,9.184425,1.386294,4.880497,1
-6,1,25,0,2,126652,0,9743.176,32.21424,1,12,1,124.5283,109.504,35.76819,0,4801.725,5071.525,1,0,0,11,0,4,86.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.3639,9.184425,1.386294,8.531397,1
-6,1,25,0,3,126652,0,9743.176,33.21424,1,12,1,6.633907,58.45209,0,0,0,65.086,0,0,0,1,0,5,86.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.3639,9.184425,1.609438,4.175709,1
-6,1,25,0,1,126653,0,9743.176,8.919918,0,12,1,130.7421,58.75147,0,0,0,189.4935,0,0,0,7,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.90643,9.184425,1.386294,5.244355,1
-6,1,25,0,2,126653,0,9743.176,9.919918,0,12,1,90.29649,40.14016,26.95418,0,0,157.3908,0,0,0,31,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.90643,9.184425,1.386294,5.058732,1
-6,1,25,0,3,126653,0,9743.176,10.91992,0,12,1,7.371007,18.92875,0,0,0,26.29976,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,73.90643,9.184425,1.609438,3.26956,1
-11,1,0,1,1,126665,0,5583.747,3.039014,0,11,1,51.56815,9.408926,0,0,255.5609,316.538,1,0,0,5,1,5,74.36826,13.73189,0,,0,458,1,0,1.609438,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.609438,5.757443,1
-11,1,0,1,2,126665,0,5583.747,4.039014,0,11,1,62.67621,0,0,0,0,62.67621,0,0,0,3,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,4.137982,1
-11,1,0,1,3,126665,0,5583.747,5.039014,0,11,1,47.21246,14.21396,0,0,0,61.42642,0,0,0,6,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,4.11784,1
-11,1,0,1,4,126665,0,5583.747,6.039014,0,11,1,25.96198,5.656003,0,0,0,31.61799,0,0,0,4,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,3.453726,1
-11,1,0,1,5,126665,0,5583.747,7.039014,0,11,1,13.61123,2.105487,20.44662,0,0,36.16333,0,0,0,1,1,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,3.588046,1
-11,1,0,1,1,126666,0,5583.747,22.5243,1,11,1,15.68154,12.14113,0,0,1307.382,1335.205,1,0,0,3,0,5,96.8,8.7,0,,0,458,0,0,1.609438,6.126869,0,0,0,0,0,0,75.68143,8.627794,1.609438,7.19684,1
-11,1,0,1,2,126666,0,5583.747,23.5243,1,11,1,237.5991,13.05066,0,0,0,250.6498,0,0,0,9,0,6,96.8,8.7,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,75.68143,8.627794,1.791759,5.524056,1
-11,1,0,1,3,126666,0,5583.747,24.5243,1,11,1,47.40332,1.808137,0,0,1024.405,1073.616,1,0,0,1,0,6,96.8,8.7,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,75.68143,8.627794,1.791759,6.978788,1
-11,1,0,1,4,126666,0,5583.747,25.5243,1,11,1,25.49838,10.75568,0,0,0,36.25406,0,0,0,4,0,6,96.8,8.7,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,75.68143,8.627794,1.791759,3.590551,1
-11,1,0,1,5,126666,0,5583.747,26.5243,1,11,1,5.104211,9.506593,0,0,0,14.6108,0,0,0,1,0,6,96.8,8.7,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,75.68143,8.627794,1.791759,2.681761,1
-11,1,0,1,1,126667,0,5583.747,23.90144,0,11,1,1.809409,5.458384,0,0,0,7.267793,0,0,0,1,0,5,93.7,0,0,,0,458,0,0,1.609438,6.126869,0,0,0,0,0,0,74.79025,8.627794,1.609438,1.983453,1
-11,1,0,1,2,126667,0,5583.747,24.90144,0,11,1,23.95374,7.075991,0,0,0,31.02974,0,0,0,3,0,6,93.7,0,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,74.79025,8.627794,1.791759,3.434946,1
-11,1,0,1,3,126667,0,5583.747,25.90144,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,93.7,0,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,74.79025,8.627794,1.791759,,0
-11,1,0,1,4,126667,0,5583.747,26.90144,0,11,1,10.19935,1.34446,0,0,0,11.54381,0,0,0,2,0,6,93.7,0,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,74.79025,8.627794,1.791759,2.446149,1
-11,1,0,1,5,126667,0,5583.747,27.90144,0,11,1,7.230966,5.338154,0,0,0,12.56912,0,0,0,1,0,6,93.7,0,0,,0,458,0,0,1.791759,6.126869,0,0,0,0,0,0,74.79025,8.627794,1.791759,2.531243,1
-11,1,0,1,1,126668,0,5583.747,1.954826,1,11,1,24.12545,11.78528,0,0,0,35.91074,0,0,0,3,0,5,74.36826,13.73189,0,,0,458,1,1,1.609438,6.126869,0,0,0,0,0,0,78.57231,8.627794,1.609438,3.581036,1
-11,1,0,1,2,126668,0,5583.747,2.954825,1,11,1,29.29515,14.17952,0,0,0,43.47467,0,0,0,5,0,6,74.36826,13.73189,0,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.57231,8.627794,1.791759,3.772178,1
-11,1,0,1,3,126668,0,5583.747,3.954825,1,11,1,42.69212,10.29633,0,0,0,52.98845,0,0,0,7,0,6,74.36826,13.73189,0,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.57231,8.627794,1.791759,3.970074,1
-11,1,0,1,4,126668,0,5583.747,4.954825,1,11,1,15.76263,0,0,0,0,15.76263,0,0,0,3,0,6,74.36826,13.73189,0,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.57231,8.627794,1.791759,2.757642,1
-11,1,0,1,5,126668,0,5583.747,5.954825,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.57231,8.627794,1.791759,,0
-11,1,0,1,1,126669,0,5583.747,4.911705,0,11,1,6.6345,2.110977,0,0,0,8.745477,0,0,0,1,0,5,74.36826,13.73189,0,,0,458,1,0,1.609438,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.609438,2.168537,1
-11,1,0,1,2,126669,0,5583.747,5.911705,0,11,1,25.88106,8.397577,0,0,0,34.27863,0,0,0,5,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,3.534522,1
-11,1,0,1,3,126669,0,5583.747,6.911705,0,11,1,46.7102,18.08137,0,0,360.2059,424.9975,1,0,0,7,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,6.052083,1
-11,1,0,1,4,126669,0,5583.747,7.911705,0,11,1,19.70329,15.80899,0,0,0,35.51229,0,0,0,4,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,3.569879,1
-11,1,0,1,5,126669,0,5583.747,8.911704,0,11,1,16.37601,3.913229,0,0,0,20.28924,0,0,0,2,0,6,74.36826,13.73189,0,,0,458,1,0,1.791759,6.126869,0,0,0,0,0,0,79.08629,8.627794,1.791759,3.010091,1
-11,1,0,1,1,126670,0,5098.015,57.87269,0,4,1,136.6906,17.47002,25.77938,0,0,179.94,0,0,0,8,1,2,61.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,0,1,49.52655,8.536802,.6931472,5.192624,1
-11,1,0,1,2,126670,0,5098.015,58.87269,0,4,1,117.7437,23.46659,0,0,0,141.2103,0,0,0,9,0,2,61.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,0,1,49.52655,8.536802,.6931472,4.95025,1
-11,1,0,1,3,126670,0,5098.015,59.87269,0,4,1,26.43392,13.49127,0,0,0,39.92519,0,0,0,2,0,2,61.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,0,1,49.52655,8.536802,.6931472,3.687007,1
-11,1,0,1,4,126670,0,5098.015,60.87269,0,4,1,57.63025,23.12125,28.35408,0,0,109.1056,0,0,0,4,1,2,61.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,0,1,49.52655,8.536802,.6931472,4.692316,1
-11,1,0,1,5,126670,0,5098.015,61.87269,0,4,1,35.97122,14.28269,0,0,0,50.25391,0,0,0,3,0,2,61.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,0,1,49.52655,8.536802,.6931472,3.917089,1
-11,1,0,1,1,126671,0,5098.015,53.72211,1,6,1,143.4353,39.52038,26.3789,0,0,209.3345,0,0,0,15,1,2,63.2,30.4,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.70358,8.536802,.6931472,5.343934,1
-11,1,0,1,2,126671,0,5098.015,54.72211,1,6,1,262.2399,60.87075,0,0,0,323.1106,0,0,0,28,1,2,63.2,30.4,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.70358,8.536802,.6931472,5.777995,1
-11,1,0,1,3,126671,0,5098.015,55.72211,1,6,1,78.80299,119.6908,0,0,0,198.4938,0,0,0,11,0,2,63.2,30.4,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.70358,8.536802,.6931472,5.290758,1
-11,1,0,1,4,126671,0,5098.015,56.72211,1,6,1,160.9036,100.5994,28.35408,0,0,289.8571,0,0,0,16,2,2,63.2,30.4,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.70358,8.536802,.6931472,5.669388,1
-11,1,0,1,5,126671,0,5098.015,57.72211,1,6,1,141.7689,124.3716,0,0,0,266.1405,0,0,0,17,0,2,63.2,30.4,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.70358,8.536802,.6931472,5.584024,1
-1,1,0,1,1,126674,0,3711.042,24.17796,0,12,1,0,0,0,0,344.0648,344.0648,1,0,0,0,0,1,34.7,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,78.79221,8.219337,0,5.84083,1
-1,1,0,1,2,126674,0,3711.042,25.17796,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,34.7,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,78.79221,8.219337,0,,0
-1,1,0,1,3,126674,0,3711.042,26.17796,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,34.7,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,78.79221,8.219337,0,,0
-1,1,0,1,4,126674,0,3711.042,27.17796,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,34.7,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,78.79221,8.219337,0,,0
-1,1,0,1,5,126674,0,3711.042,28.17796,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,34.7,4.3,0,,150,0,0,0,0,0,1,0,0,0,0,0,78.79221,8.219337,0,,0
-4,1,100,0,1,126678,0,4242.556,11.52088,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,75.05559,8.353157,1.94591,,0
-4,1,100,0,2,126678,0,4242.556,12.52088,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,75.05559,8.353157,1.94591,,0
-4,1,100,0,3,126678,0,4242.556,13.52088,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,75.05559,8.353157,1.94591,,0
-4,1,100,0,1,126679,0,4242.556,10.59274,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,0,0,0,80.99117,8.353157,1.94591,,0
-4,1,100,0,2,126679,0,4242.556,11.59274,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,0,0,0,80.99117,8.353157,1.94591,,0
-4,1,100,0,3,126679,0,4242.556,12.59274,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,0,0,0,80.99117,8.353157,1.94591,,0
-4,1,100,0,1,126680,0,4242.556,2.778919,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,68.34178,8.353157,1.94591,,0
-4,1,100,0,2,126680,0,4242.556,3.778919,1,10,1,0,1.518781,0,0,0,1.518781,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,68.34178,8.353157,1.94591,.4179078,1
-4,1,100,0,3,126680,0,4242.556,4.778919,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,1,0,0,1,0,0,68.34178,8.353157,1.94591,,0
-4,1,100,0,1,126681,0,4242.556,30.5681,0,8,1,38.66746,16.00238,0,0,0,54.66984,0,0,0,4,1,7,60,13.73189,1,,1000,1000,0,0,1.94591,6.907755,1,0,0,0,1,0,59.22386,8.353157,1.94591,4.001312,1
-4,1,100,0,2,126681,0,4242.556,31.5681,0,8,1,0,0,0,0,0,0,0,0,0,0,0,7,60,13.73189,1,,1000,1000,0,0,1.94591,6.907755,1,0,0,0,1,0,59.22386,8.353157,1.94591,,0
-4,1,100,0,3,126681,0,4242.556,32.5681,0,8,1,23.29039,0,0,0,0,23.29039,0,0,0,3,0,7,60,13.73189,1,,1000,1000,0,0,1.94591,6.907755,1,0,0,0,1,0,59.22386,8.353157,1.94591,3.148041,1
-4,1,100,0,1,126682,0,4242.556,28.33402,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,72.5,13.73189,0,,1000,1000,0,0,1.94591,6.907755,1,0,0,1,0,0,69.16129,8.353157,1.94591,,0
-4,1,100,0,2,126682,0,4242.556,29.33402,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,72.5,13.73189,0,,1000,1000,0,0,1.94591,6.907755,1,0,0,1,0,0,69.16129,8.353157,1.94591,,0
-4,1,100,0,3,126682,0,4242.556,30.33402,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,72.5,13.73189,0,,1000,1000,0,0,1.94591,6.907755,1,0,0,1,0,0,69.16129,8.353157,1.94591,,0
-4,1,100,0,1,126683,0,4242.556,7.980835,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,1,0,0,71.32816,8.353157,1.94591,,0
-4,1,100,0,2,126683,0,4242.556,8.980835,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,1,0,0,71.32816,8.353157,1.94591,,0
-4,1,100,0,3,126683,0,4242.556,9.980835,0,10,1,0,1.778989,0,0,0,1.778989,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,1,0,0,71.32816,8.353157,1.94591,.5760453,1
-4,1,100,0,1,126684,0,4242.556,9.38809,0,10,1,5.94884,1.302796,0,0,0,7.251636,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,0,0,0,82.46437,8.353157,1.94591,1.981227,1
-4,1,100,0,2,126684,0,4242.556,10.38809,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,0,0,0,82.46437,8.353157,1.94591,,0
-4,1,100,0,3,126684,0,4242.556,11.38809,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,1,0,0,0,0,0,82.46437,8.353157,1.94591,,0
-11,1,0,1,1,126755,0,4586.849,50.34086,1,12,1,39.26234,2.492564,0,0,0,41.75491,0,0,0,4,0,3,77.8,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.87788,8.431167,1.098612,3.731817,1
-11,1,0,1,2,126755,0,4586.849,51.34086,1,12,1,50.08165,16.44529,0,0,0,66.52695,0,0,0,5,0,3,77.8,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.87788,8.431167,1.098612,4.197607,1
-11,1,0,1,3,126755,0,4586.849,52.34086,1,12,1,0,7.41328,0,0,0,7.41328,0,0,0,0,0,3,77.8,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.87788,8.431167,1.098612,2.003273,1
-11,1,0,1,4,126755,0,4586.849,53.34086,1,12,1,0,12.29004,0,0,0,12.29004,0,0,0,0,0,3,77.8,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.87788,8.431167,1.098612,2.508789,1
-11,1,0,1,5,126755,0,4586.849,54.34086,1,12,1,19.77282,22.36853,0,0,0,42.14135,0,0,0,3,0,3,77.8,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,71.87788,8.431167,1.098612,3.74103,1
-11,1,0,1,1,126756,0,4586.849,18.26694,1,11,1,39.26234,8.370018,0,0,342.0583,389.6907,1,0,0,4,0,3,85.3,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,69.7751,8.431167,1.098612,5.965353,1
-11,1,0,1,2,126756,0,4586.849,19.26694,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85.3,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,69.7751,8.431167,1.098612,,0
-11,1,0,1,3,126756,0,4586.849,20.26694,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85.3,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,69.7751,8.431167,1.098612,,0
-11,1,0,1,4,126756,0,4586.849,21.26694,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85.3,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,69.7751,8.431167,1.098612,,0
-11,1,0,1,5,126756,0,4586.849,22.26694,1,11,1,12.62095,2.440051,0,0,0,15.061,0,0,0,2,0,3,85.3,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,69.7751,8.431167,1.098612,2.712109,1
-11,1,0,1,1,126757,0,4586.849,11.57837,1,12,1,5.94884,2.367638,0,0,0,8.316479,0,0,0,1,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,77.3399,8.431167,1.098612,2.118239,1
-11,1,0,1,2,126757,0,4586.849,12.57837,1,12,1,32.11758,3.102885,0,0,0,35.22047,0,0,0,1,1,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,77.3399,8.431167,1.098612,3.561627,1
-11,1,0,1,3,126757,0,4586.849,13.57837,1,12,1,90.82259,9.068384,0,0,0,99.89098,0,0,0,4,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,77.3399,8.431167,1.098612,4.604079,1
-11,1,0,1,4,126757,0,4586.849,14.57837,1,12,1,17.89812,10.67003,35.00689,0,0,63.57504,0,0,0,2,1,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,77.3399,8.431167,1.098612,4.152221,1
-11,1,0,1,5,126757,0,4586.849,15.57837,1,12,1,18.51073,0,0,0,0,18.51073,0,0,0,2,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,1,0,0,77.3399,8.431167,1.098612,2.91835,1
-9,1,50,0,1,126758,0,84.36725,45.90828,1,12,1,151.9435,49.29918,37.76796,0,1272.267,1511.278,1,0,0,10,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,70.80224,4.446962,1.098612,7.320711,1
-9,1,50,0,2,126758,0,84.36725,46.90828,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,70.80224,4.446962,1.098612,,0
-9,1,50,0,3,126758,0,84.36725,47.90828,1,12,1,25.55283,0,31.70516,0,0,57.25798,0,0,0,2,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,70.80224,4.446962,1.098612,4.047567,1
-9,1,50,0,4,126758,0,84.36725,48.90828,1,12,1,226.9827,0,0,0,0,226.9827,0,0,0,2,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,70.80224,4.446962,1.098612,5.424874,1
-9,1,50,0,5,126758,0,84.36725,49.90828,1,12,1,70.44602,18.2326,41.26719,0,0,129.9458,0,0,0,6,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,70.80224,4.446962,1.098612,4.867117,1
-9,1,50,0,1,126759,0,84.36725,46.73238,0,12,1,44.16961,0,31.50766,0,0,75.67727,0,0,0,2,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,62.74828,4.446962,1.098612,4.326478,1
-9,1,50,0,2,126759,0,84.36725,47.73238,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,62.74828,4.446962,1.098612,,0
-9,1,50,0,3,126759,0,84.36725,48.73238,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,62.74828,4.446962,1.098612,,0
-9,1,50,0,4,126759,0,84.36725,49.73238,0,12,1,12.76208,0,0,0,0,12.76208,0,0,0,1,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,62.74828,4.446962,1.098612,2.546478,1
-9,1,50,0,5,126759,0,84.36725,50.73238,0,12,1,18.75782,0,31.26303,0,0,50.02084,0,0,0,0,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,62.74828,4.446962,1.098612,3.91244,1
-10,1,50,1,1,126765,0,13699.75,43.59753,1,12,1,53.59246,39.69376,23.26266,0,0,116.5489,0,0,0,5,1,3,74.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,62.05545,9.525206,1.098612,4.758311,1
-10,1,50,1,2,126765,0,13699.75,44.59753,1,12,1,18.32884,31.47709,10.7062,0,0,60.51213,0,0,0,2,0,3,74.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,62.05545,9.525206,1.098612,4.102844,1
-10,1,50,1,3,126765,0,13699.75,45.59753,1,12,1,63.39066,35.8231,30.60934,0,0,129.8231,0,0,0,5,1,3,74.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,62.05545,9.525206,1.098612,4.866173,1
-10,1,50,1,4,126765,0,13699.75,46.59753,1,12,1,20.96627,27.52963,0,0,1209.435,1257.931,1,0,0,3,0,3,74.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,62.05545,9.525206,1.098612,7.137223,1
-10,1,50,1,5,126765,0,13699.75,47.59753,1,12,1,45.01876,12.85536,0,0,0,57.87411,0,0,0,4,0,3,74.7,26.1,1,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,62.05545,9.525206,1.098612,4.05827,1
-10,1,50,1,1,126766,0,13699.75,43.93977,0,8,1,10.60071,0,36.21908,0,0,46.81979,0,0,0,0,1,3,75.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67.41241,9.525206,1.098612,3.846306,1
-10,1,50,1,2,126766,0,13699.75,44.93977,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,75.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67.41241,9.525206,1.098612,,0
-10,1,50,1,3,126766,0,13699.75,45.93977,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,75.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67.41241,9.525206,1.098612,,0
-10,1,50,1,4,126766,0,13699.75,46.93977,0,8,1,15.49681,0,51.44029,0,0,66.9371,0,0,0,1,1,3,75.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67.41241,9.525206,1.098612,4.203753,1
-10,1,50,1,5,126766,0,13699.75,47.93977,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,75.8,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67.41241,9.525206,1.098612,,0
-10,1,50,1,1,126767,0,13699.75,15.26352,0,12,1,167.9623,6.036513,0,0,174.3522,348.351,1,0,0,4,13,3,83.2,13,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70143,9.525206,1.098612,5.85321,1
-10,1,50,1,2,126767,0,13699.75,16.26352,0,12,1,24.25876,5.401617,13.33154,0,0,42.99191,0,0,0,2,0,3,83.2,13,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70143,9.525206,1.098612,3.761012,1
-10,1,50,1,3,126767,0,13699.75,17.26352,0,12,1,7.371007,0,26.7027,0,0,34.07371,0,0,0,1,0,3,83.2,13,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70143,9.525206,1.098612,3.528526,1
-10,1,50,1,4,126767,0,13699.75,18.26352,0,12,1,15.9526,0,0,0,0,15.9526,0,0,0,2,0,3,83.2,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70143,9.525206,1.098612,2.769622,1
-10,1,50,1,5,126767,0,13699.75,19.26352,0,12,1,5.835765,0,0,0,0,5.835765,0,0,0,1,0,3,83.2,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70143,9.525206,1.098612,1.764005,1
-11,1,0,1,1,126783,0,4239.454,61.69199,0,9,1,129.9821,58.19155,32.95063,0,1693.105,1914.23,2,0,0,3,1,2,80,17.4,1,,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.22078,8.352426,.6931472,7.557071,1
-11,1,0,1,2,126783,0,4239.454,62.69199,0,9,1,231.1922,65.24769,0,0,0,296.4398,0,0,0,6,0,2,80,17.4,1,,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.22078,8.352426,.6931472,5.691844,1
-11,1,0,1,3,126783,0,4239.454,63.69199,0,9,1,29.23687,13.09713,38.32012,0,716.5065,797.1606,1,0,0,2,1,2,80,17.4,1,,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.22078,8.352426,.6931472,6.681056,1
-11,1,0,1,1,126784,0,4239.454,61.80972,1,7,1,79.71445,0,32.65913,0,0,112.3736,0,0,0,2,1,2,62.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.71434,8.352426,.6931472,4.721829,1
-11,1,0,1,2,126784,0,4239.454,62.80972,1,7,1,37.56124,7.642896,0,0,0,45.20414,0,0,0,1,0,2,62.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.71434,8.352426,.6931472,3.811189,1
-11,1,0,1,3,126784,0,4239.454,63.80972,1,7,1,55.5005,43.43409,48.44896,0,1622.894,1770.277,1,0,0,5,1,2,62.1,30.4,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.71434,8.352426,.6931472,7.478891,1
-5,1,25,0,1,126791,1,9542.002,51.154,0,12,1,202.0612,24.46996,0,0,7511.667,7738.198,2,0,0,8,0,1,46.3,13.73189,1,,110,110,0,0,0,4.70048,0,3.258096,6.086775,0,1,0,65.7506,9.163564,0,8.953924,1
-5,1,25,0,2,126791,1,9542.002,52.154,0,12,.2240437,120.7547,8.301887,210.7817,0,3156.113,3495.951,1,0,0,5,0,1,46.3,13.73189,1,,110,110,0,0,0,4.70048,0,3.258096,6.086775,0,1,0,65.7506,9.163564,0,8.159361,1
-11,1,0,1,1,126794,1,9542.002,18.95688,1,12,1,26.1749,0,0,0,0,26.1749,0,0,0,0,0,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,67.68577,9.163564,1.098612,3.264801,1
-11,1,0,1,2,126794,1,9542.002,19.95688,1,12,1,23.40773,0,26.16767,0,677.6592,727.2346,1,0,0,1,1,3,93.7,4.3,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,67.68577,9.163564,1.098612,6.589249,1
-11,1,0,1,3,126794,1,9542.002,20.95688,1,12,1,19.32607,4.44004,6.729435,0,0,30.49554,0,0,0,3,0,4,93.7,4.3,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.68577,9.163564,1.386294,3.41758,1
-11,1,0,1,4,126794,1,9542.002,21.95688,1,12,1,9.178522,0,31.17485,0,559.8486,600.2019,1,0,0,0,1,4,93.7,4.3,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.68577,9.163564,1.386294,6.397266,1
-11,1,0,1,5,126794,1,9542.002,22.95688,1,12,1,12.20025,4.636096,0,0,0,16.83635,0,0,0,2,0,5,93.7,4.3,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,67.68577,9.163564,1.609438,2.82354,1
-11,1,0,1,1,126795,1,9542.002,51.71252,1,8,1,17.25164,0,43.42653,0,0,60.67817,0,0,0,2,1,3,64.2,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,61.64053,9.163564,1.098612,4.105584,1
-11,1,0,1,2,126795,1,9542.002,52.71252,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,64.2,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,61.64053,9.163564,1.098612,,0
-11,1,0,1,3,126795,1,9542.002,53.71252,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,64.2,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,61.64053,9.163564,1.386294,,0
-11,1,0,1,4,126795,1,9542.002,54.71252,1,8,1,8.26067,0,34.87838,0,0,43.13905,0,0,0,0,1,4,64.2,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,61.64053,9.163564,1.386294,3.764429,1
-11,1,0,1,5,126795,1,9542.002,55.71252,1,8,1,5.04838,0,0,0,0,5.04838,0,0,0,1,0,5,64.2,8.7,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.64053,9.163564,1.609438,1.619067,1
-11,1,0,1,1,126796,1,9542.002,21.71937,0,12,1,21.41582,0,0,0,0,21.41582,0,0,0,0,0,3,80,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,66.78163,9.163564,1.098612,3.06413,1
-11,1,0,1,2,126796,1,9542.002,22.71937,0,12,1,9.254219,0,0,0,0,9.254219,0,0,0,1,0,3,80,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,66.78163,9.163564,1.098612,2.22508,1
-11,1,0,1,3,126796,1,9542.002,23.71937,0,12,1,116.997,4.578791,0,0,0,121.5758,0,0,0,8,0,4,80,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,66.78163,9.163564,1.386294,4.800538,1
-11,1,0,1,4,126796,1,9542.002,24.71937,0,12,1,5.96604,0,0,0,0,5.96604,0,0,0,1,0,4,80,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,66.78163,9.163564,1.386294,1.786083,1
-11,1,0,1,5,126796,1,9542.002,25.71937,0,12,1,42.49054,.8413967,.3575936,0,0,43.68953,0,0,0,3,0,5,80,8.7,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,66.78163,9.163564,1.609438,3.777108,1
-11,1,0,0,1,126797,1,9542.002,23.11294,1,12,1,24.98513,9.571684,21.94527,0,0,56.50208,0,0,0,4,0,1,78.9,0,0,,0,72,0,0,0,4.276666,0,0,0,1,0,0,63.49755,9.163564,0,4.034277,1
-11,1,0,0,2,126797,1,9542.002,24.11294,1,12,1,617.534,13.03212,18.96026,0,0,649.5264,0,0,0,10,1,1,78.9,0,0,,0,72,0,0,0,4.276666,0,0,0,1,0,0,63.49755,9.163564,0,6.476243,1
-11,1,0,0,3,126797,1,9542.002,25.11294,1,12,1,406.5857,28.15164,0,0,29.73241,464.4698,0,0,0,8,0,1,78.9,0,0,,0,72,0,0,0,4.276666,0,0,0,1,0,0,63.49755,9.163564,0,6.140896,1
-11,1,0,0,4,126797,1,9542.002,26.11294,1,12,1,519.9404,51.39054,38.84809,0,2560.996,3171.175,1,0,0,3,1,1,78.9,0,0,,0,72,0,0,0,4.276666,0,0,0,1,0,0,63.49755,9.163564,0,8.061857,1
-11,1,0,0,5,126797,1,9542.002,27.11294,1,12,1,648.3172,59.20909,16.48717,0,0,724.0135,0,0,0,2,3,1,78.9,0,0,,0,72,0,0,0,4.276666,0,0,0,1,0,0,63.49755,9.163564,0,6.58481,1
-4,1,100,0,1,126800,1,2297.767,52.39699,1,8,1,189.4582,0,0,0,0,189.4582,0,0,0,8,0,1,35.8,21.7,0,,0,0,0,0,0,0,1,0,0,0,0,1,62.06791,7.740128,0,5.244168,1
-4,1,100,0,2,126800,1,2297.767,53.39699,1,8,1,0,0,0,0,0,0,0,0,0,0,0,1,35.8,21.7,0,,0,0,0,0,0,0,1,0,0,0,0,1,62.06791,7.740128,0,,0
-4,1,100,0,3,126800,1,2297.767,54.39699,1,8,1,0,0,0,0,0,0,0,0,0,0,0,1,35.8,21.7,0,,0,0,0,0,0,0,1,0,0,0,0,1,62.06791,7.740128,0,,0
-5,1,25,0,1,126805,1,898.263,13.59617,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.72706,6.801576,1.609438,,0
-5,1,25,0,2,126805,1,898.263,14.59617,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.72706,6.801576,1.609438,,0
-5,1,25,0,1,126806,1,898.263,11.47159,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.72706,6.801576,1.609438,,0
-5,1,25,0,2,126806,1,898.263,12.47159,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.72706,6.801576,1.609438,,0
-5,1,25,0,1,126807,1,898.263,9.409993,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,1,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.21308,6.801576,1.609438,,0
-5,1,25,0,2,126807,1,898.263,10.40999,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,101,101,1,1,1.609438,4.61512,0,3.258096,6.001415,0,0,0,75.21308,6.801576,1.609438,,0
-5,1,25,0,1,126808,1,898.263,14.93224,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,75.8,8.7,0,,101,101,1,1,1.609438,4.61512,0,3.258096,6.001415,0,0,0,65.00531,6.801576,1.609438,,0
-5,1,25,0,2,126808,1,898.263,15.93224,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,75.8,8.7,0,,101,101,1,1,1.609438,4.61512,0,3.258096,6.001415,0,0,0,65.00531,6.801576,1.609438,,0
-5,1,25,0,1,126809,1,898.263,32.79945,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,62.1,21.7,0,,101,101,0,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,69.38714,6.801576,1.609438,,0
-5,1,25,0,2,126809,1,898.263,33.79945,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,62.1,21.7,0,,101,101,0,0,1.609438,4.61512,0,3.258096,6.001415,0,0,0,69.38714,6.801576,1.609438,,0
-11,1,0,0,1,126815,1,3944.789,51.42231,1,6,1,307.2278,0,0,0,0,307.2278,0,0,0,2,0,1,94.7,13,0,,0,0,0,0,0,0,0,0,0,0,0,0,67.9421,8.280404,0,5.72759,1
-11,1,0,0,2,126815,1,3944.789,52.42231,1,6,1,133.914,5.307567,0,0,0,139.2216,0,0,0,5,0,1,94.7,13,0,,0,0,0,0,0,0,0,0,0,0,0,0,67.9421,8.280404,0,4.936067,1
-11,1,0,0,3,126815,1,3944.789,53.42231,1,6,1,129.2121,0,34.14272,0,0,163.3548,0,0,0,5,1,1,94.7,13,0,,0,0,0,0,0,0,0,0,0,0,0,0,67.9421,8.280404,0,5.095924,1
-11,1,0,0,4,126815,1,3944.789,54.42231,1,6,1,128.4993,0,0,0,0,128.4993,0,0,0,5,0,1,94.7,13,0,,0,0,0,0,0,0,0,0,0,0,0,0,67.9421,8.280404,0,4.855924,1
-11,1,0,0,5,126815,1,3944.789,55.42231,1,6,1,138.1994,0,46.38199,0,749.2806,933.862,1,0,0,5,0,1,94.7,13,0,,0,0,0,0,0,0,0,0,0,0,0,0,67.9421,8.280404,0,6.839329,1
-9,1,50,1,1,126822,0,14151.37,7.118412,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.68566,9.557637,1.791759,,0
-9,1,50,1,2,126822,0,14151.37,8.118412,1,12,1,8.259912,0,0,0,0,8.259912,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.68566,9.557637,1.791759,2.111414,1
-9,1,50,1,3,126822,0,14151.37,9.118412,1,12,1,2.009041,0,0,0,0,2.009041,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.68566,9.557637,1.791759,.6976573,1
-9,1,50,1,4,126822,0,14151.37,10.11841,1,12,1,2.318034,0,0,0,0,2.318034,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.68566,9.557637,1.791759,.8407196,1
-9,1,50,1,5,126822,0,14151.37,11.11841,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.68566,9.557637,1.791759,,0
-9,1,50,1,1,126823,0,14151.37,8.678987,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,,0
-9,1,50,1,2,126823,0,14151.37,9.678987,1,12,1,46.25551,2.114537,28.19934,0,0,76.56938,0,0,0,6,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,4.338197,1
-9,1,50,1,3,126823,0,14151.37,10.67899,1,12,1,24.10849,0,0,0,0,24.10849,0,0,0,5,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,3.182564,1
-9,1,50,1,4,126823,0,14151.37,11.67899,1,12,1,49.95364,0,29.13305,0,0,79.08669,0,0,0,3,1,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,4.370544,1
-9,1,50,1,5,126823,0,14151.37,12.67899,1,12,1,14.88728,0,11.90983,0,0,26.79711,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,3.288294,1
-9,1,50,1,1,126824,0,14151.37,35.06092,1,12,1,3.015682,0,0,0,0,3.015682,0,0,0,0,0,6,72.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.27332,9.557637,1.791759,1.103826,1
-9,1,50,1,2,126824,0,14151.37,36.06092,1,12,1,22.57709,0,0,0,0,22.57709,0,0,0,1,0,6,72.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.27332,9.557637,1.791759,3.116936,1
-9,1,50,1,3,126824,0,14151.37,37.06092,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,72.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.27332,9.557637,1.791759,,0
-9,1,50,1,4,126824,0,14151.37,38.06092,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,72.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.27332,9.557637,1.791759,,0
-9,1,50,1,5,126824,0,14151.37,39.06092,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,72.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.27332,9.557637,1.791759,,0
-9,1,50,1,1,126825,0,14151.37,13.82615,1,12,1,4.221954,1.206273,33.40772,0,0,38.83595,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,3.659346,1
-9,1,50,1,2,126825,0,14151.37,14.82615,1,12,1,13.76652,0,0,0,0,13.76652,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,2.62224,1
-9,1,50,1,3,126825,0,14151.37,15.82615,1,12,1,4.018081,0,95.42944,0,0,99.44752,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,4.59963,1
-9,1,50,1,4,126825,0,14151.37,16.82615,1,12,1,17.61706,0,24.22346,0,0,41.84052,0,0,0,2,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,3.733865,1
-9,1,50,1,5,126825,0,14151.37,17.82615,1,12,1,2.552105,0,6.682263,0,0,9.234368,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,85.92707,9.557637,1.791759,2.222932,1
-9,1,50,1,1,126826,0,14151.37,41.97399,0,16,1,18.09409,0,0,0,0,18.09409,0,0,0,1,0,6,84.2,21.7,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,65.73057,9.557637,1.791759,2.895585,1
-9,1,50,1,2,126826,0,14151.37,42.97399,0,16,1,0,0,17.84141,0,0,17.84141,0,0,0,0,0,6,84.2,21.7,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,65.73057,9.557637,1.791759,2.881522,1
-9,1,50,1,3,126826,0,14151.37,43.97399,0,16,1,16.57458,0,0,0,0,16.57458,0,0,0,1,0,6,84.2,21.7,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,65.73057,9.557637,1.791759,2.80787,1
-9,1,50,1,4,126826,0,14151.37,44.97399,0,16,1,13.90821,0,47.2879,0,0,61.19611,0,0,0,1,0,6,84.2,21.7,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,65.73057,9.557637,1.791759,4.114084,1
-9,1,50,1,5,126826,0,14151.37,45.97399,0,16,1,11.48448,0,0,0,0,11.48448,0,0,0,2,0,6,84.2,21.7,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,65.73057,9.557637,1.791759,2.440996,1
-9,1,50,1,1,126827,0,14151.37,12.54483,0,12,1,3.015682,0,0,0,0,3.015682,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,86.44105,9.557637,1.791759,1.103826,1
-9,1,50,1,2,126827,0,14151.37,13.54483,0,12,1,98.01762,0,0,0,0,98.01762,0,0,0,4,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,86.44105,9.557637,1.791759,4.585147,1
-9,1,50,1,3,126827,0,14151.37,14.54483,0,12,1,2.009041,0,0,0,0,2.009041,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,86.44105,9.557637,1.791759,.6976573,1
-9,1,50,1,4,126827,0,14151.37,15.54483,0,12,1,115.9017,0,0,0,0,115.9017,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,86.44105,9.557637,1.791759,4.752743,1
-9,1,50,1,5,126827,0,14151.37,16.54483,0,12,1,298.4688,33.93024,0,0,0,332.399,0,0,0,6,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,86.44105,9.557637,1.791759,5.806336,1
-6,1,25,0,1,126835,0,12640.82,26.57084,1,8,1,14.13428,12.45583,0,0,0,26.59011,0,0,0,2,0,4,75.8,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,69.97394,9.444766,1.386294,3.280539,1
-6,1,25,0,2,126835,0,12640.82,27.57084,1,8,1,16.17251,7.02965,0,0,0,23.20216,0,0,0,2,0,4,75.8,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,69.97394,9.444766,1.386294,3.144245,1
-6,1,25,0,3,126835,0,12640.82,28.57084,1,8,1,8.845209,0,0,0,0,8.845209,0,0,0,1,0,4,75.8,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,69.97394,9.444766,1.386294,2.179876,1
-6,1,25,0,4,126835,0,12640.82,29.57084,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,75.8,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,69.97394,9.444766,1.386294,,0
-6,1,25,0,5,126835,0,12640.82,30.57084,1,8,1,42.93456,0,0,0,0,42.93456,0,0,0,4,0,4,75.8,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,69.97394,9.444766,1.386294,3.759677,1
-6,1,25,0,1,126836,0,12640.82,30.97604,0,12,1,14.13428,11.42521,0,0,0,25.55948,0,0,0,2,0,4,72.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.21928,9.444766,1.386294,3.241008,1
-6,1,25,0,2,126836,0,12640.82,31.97604,0,12,1,57.14286,8.533692,0,0,0,65.67655,0,0,0,9,0,4,72.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.21928,9.444766,1.386294,4.184742,1
-6,1,25,0,3,126836,0,12640.82,32.97604,0,12,1,60.93366,10.4226,.7371007,0,0,72.09337,0,0,0,4,1,4,72.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.21928,9.444766,1.386294,4.277962,1
-6,1,25,0,4,126836,0,12640.82,33.97604,0,12,1,5.925251,0,0,0,0,5.925251,0,0,0,1,0,4,72.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.21928,9.444766,1.386294,1.779223,1
-6,1,25,0,5,126836,0,12640.82,34.97604,0,12,1,50.85452,0,0,0,0,50.85452,0,0,0,2,0,4,72.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.21928,9.444766,1.386294,3.928969,1
-6,1,25,0,1,126837,0,12640.82,8.791239,0,8,1,154.1519,26.88457,0,0,0,181.0365,0,0,0,8,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,58.4809,9.444766,1.386294,5.198699,1
-6,1,25,0,2,126837,0,12640.82,9.791239,0,8,1,72.29111,0,0,0,0,72.29111,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,58.4809,9.444766,1.386294,4.280701,1
-6,1,25,0,3,126837,0,12640.82,10.79124,0,8,1,5.405406,3.552825,0,0,0,8.958231,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,58.4809,9.444766,1.386294,2.192573,1
-6,1,25,0,4,126837,0,12640.82,11.79124,0,8,1,41.02097,0,0,0,0,41.02097,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,58.4809,9.444766,1.386294,3.714083,1
-6,1,25,0,5,126837,0,12640.82,12.79124,0,8,1,29.28304,0,0,0,0,29.28304,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,58.4809,9.444766,1.386294,3.377008,1
-6,1,25,0,1,126838,0,12640.82,11.44695,1,8,1,16.48999,7.232038,0,0,0,23.72203,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.60046,9.444766,1.386294,3.166404,1
-6,1,25,0,2,126838,0,12640.82,12.44695,1,8,1,12.93801,4.819407,0,0,0,17.75741,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.60046,9.444766,1.386294,2.876803,1
-6,1,25,0,3,126838,0,12640.82,13.44695,1,8,1,5.896806,6.943489,0,0,0,12.84029,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.60046,9.444766,1.386294,2.552588,1
-6,1,25,0,4,126838,0,12640.82,14.44695,1,8,1,36.78213,0,.911577,0,0,37.69371,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.60046,9.444766,1.386294,3.629493,1
-6,1,25,0,5,126838,0,12640.82,15.44695,1,8,1,31.88829,0,0,0,0,31.88829,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.60046,9.444766,1.386294,3.462239,1
-5,1,25,0,1,126839,0,13224.14,26.36276,1,13,1,81.86102,31.21908,0,0,530.1649,643.245,1,0,0,7,0,4,71.6,13,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,70.1928,9.489875,1.386294,6.466526,1
-5,1,25,0,2,126839,0,13224.14,27.36276,1,13,1,119.6766,33.57412,0,0,0,153.2507,0,0,0,13,0,4,71.6,13,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,70.1928,9.489875,1.386294,5.032075,1
-5,1,25,0,3,126839,0,13224.14,28.36276,1,13,1,79.60688,13.03685,34.91892,0,0,127.5627,0,0,0,4,1,4,71.6,13,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,70.1928,9.489875,1.386294,4.848608,1
-5,1,25,0,1,126840,0,13224.14,28.4627,0,12,1,5.300354,5.683156,0,0,0,10.98351,0,0,0,1,0,4,83.2,8.7,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,69.02815,9.489875,1.386294,2.396395,1
-5,1,25,0,2,126840,0,13224.14,29.4627,0,12,1,4.851752,4.177897,0,0,0,9.02965,0,0,0,1,0,4,83.2,8.7,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,69.02815,9.489875,1.386294,2.200514,1
-5,1,25,0,3,126840,0,13224.14,30.4627,0,12,1,102.8256,24.99754,0,0,0,127.8231,0,0,0,7,2,4,83.2,8.7,0,,679,679,0,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,69.02815,9.489875,1.386294,4.850647,1
-5,1,25,0,1,126841,0,13224.14,5.155373,0,13,1,26.79623,9.952886,0,0,320.3769,357.126,1,0,0,2,1,4,74.36826,13.73189,0,,679,679,1,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,73.48592,9.489875,1.386294,5.878089,1
-5,1,25,0,2,126841,0,13224.14,6.155373,0,13,1,12.93801,4.716981,0,0,0,17.65499,0,0,0,1,0,4,74.36826,13.73189,0,,679,679,1,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,73.48592,9.489875,1.386294,2.871018,1
-5,1,25,0,3,126841,0,13224.14,7.155373,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,679,679,1,0,1.386294,6.520621,0,3.258096,7.906916,1,0,0,73.48592,9.489875,1.386294,,0
-5,1,25,0,1,126842,0,13224.14,6.63655,1,13,1,1.766784,5.918728,0,0,0,7.685513,0,0,0,0,0,4,74.36826,13.73189,0,,679,679,1,1,1.386294,6.520621,0,3.258096,7.906916,1,0,0,76.40357,9.489875,1.386294,2.039337,1
-5,1,25,0,2,126842,0,13224.14,7.63655,1,13,1,5.390836,0,0,0,0,5.390836,0,0,0,1,0,4,74.36826,13.73189,0,,679,679,1,1,1.386294,6.520621,0,3.258096,7.906916,1,0,0,76.40357,9.489875,1.386294,1.6847,1
-5,1,25,0,3,126842,0,13224.14,8.63655,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,679,679,1,1,1.386294,6.520621,0,3.258096,7.906916,1,0,0,76.40357,9.489875,1.386294,,0
-1,1,0,0,1,126859,0,10039.08,30.91581,0,14,1,191.8433,11.21319,33.5689,0,0,236.6254,0,0,0,5,2,3,56.8,30.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,66.07695,9.21434,1.098612,5.466478,1
-1,1,0,0,2,126859,0,10039.08,31.91581,0,14,1,70.08086,1.617251,0,0,0,71.69811,0,0,0,2,0,3,56.8,30.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,66.07695,9.21434,1.098612,4.272464,1
-1,1,0,0,3,126859,0,10039.08,32.91581,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,56.8,30.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,66.07695,9.21434,1.098612,,0
-1,1,0,0,4,126859,0,10039.08,33.91581,0,14,1,34.18414,9.553328,12.13765,0,0,55.87511,0,0,0,3,1,3,56.8,30.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,66.07695,9.21434,1.098612,4.023119,1
-1,1,0,0,5,126859,0,10039.08,34.91581,0,14,1,36.68195,5.944143,0,0,0,42.62609,0,0,0,4,0,3,56.8,30.4,0,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,66.07695,9.21434,1.098612,3.752467,1
-1,1,0,0,1,126860,0,10039.08,26.48871,1,9,1,58.33333,32.86808,24.73498,0,1244.411,1360.347,2,0,0,2,1,3,64.2,17.4,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.57109,9.21434,1.098612,7.215496,1
-1,1,0,0,2,126860,0,10039.08,27.48871,1,9,1,21.56334,0,0,0,514.6092,536.1725,1,0,0,1,0,3,64.2,17.4,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.57109,9.21434,1.098612,6.284456,1
-1,1,0,0,3,126860,0,10039.08,28.48871,1,9,1,15.23342,4.117936,0,0,0,19.35135,0,0,0,1,0,3,64.2,17.4,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.57109,9.21434,1.098612,2.962762,1
-1,1,0,0,4,126860,0,10039.08,29.48871,1,9,1,24.15679,5.720146,29.17047,0,0,59.0474,0,0,0,1,1,3,64.2,17.4,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.57109,9.21434,1.098612,4.078341,1
-1,1,0,0,5,126860,0,10039.08,30.48871,1,9,1,100.0417,6.335973,0,0,0,106.3777,0,0,0,1,1,3,64.2,17.4,1,,450,450,0,0,1.098612,6.109248,1,0,0,1,0,0,63.57109,9.21434,1.098612,4.666996,1
-1,1,0,0,1,126861,0,10039.08,7.359343,1,9,1,58.89281,7.108363,0,0,0,66.00117,0,0,0,9,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,72.6246,9.21434,1.098612,4.189672,1
-1,1,0,0,2,126861,0,10039.08,8.359343,1,9,1,105.6604,21.6496,24.25876,0,0,151.5687,0,0,0,10,1,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,72.6246,9.21434,1.098612,5.021039,1
-1,1,0,0,3,126861,0,10039.08,9.359343,1,9,1,73.46437,13.72482,0,0,0,87.18919,0,0,0,8,0,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,72.6246,9.21434,1.098612,4.468081,1
-1,1,0,0,4,126861,0,10039.08,10.35934,1,9,1,56.06199,27.39289,20.4649,0,0,103.9198,0,0,0,6,1,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,72.6246,9.21434,1.098612,4.64362,1
-1,1,0,0,5,126861,0,10039.08,11.35934,1,9,1,130.471,21.85911,10.83785,0,0,163.168,0,0,0,8,1,3,74.36826,13.73189,0,,450,450,1,1,1.098612,6.109248,1,0,0,1,0,0,72.6246,9.21434,1.098612,5.09478,1
-9,1,50,1,1,126862,0,10156.33,29.44832,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,84.2,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.47523,9.22595,1.098612,,0
-9,1,50,1,2,126862,0,10156.33,30.44832,0,13,1,30.12048,16.57722,0,0,0,46.6977,0,0,0,3,0,3,84.2,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.47523,9.22595,1.098612,3.843695,1
-9,1,50,1,3,126862,0,10156.33,31.44832,0,13,1,5.985037,0,37.08229,0,0,43.06733,0,0,0,0,1,3,84.2,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.47523,9.22595,1.098612,3.762765,1
-9,1,50,1,4,126862,0,10156.33,32.44832,0,13,1,23.51314,17.75011,0,0,0,41.26326,0,0,0,2,1,3,84.2,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.47523,9.22595,1.098612,3.719972,1
-9,1,50,1,5,126862,0,10156.33,33.44832,0,13,1,40.71096,1.531951,.6347863,0,0,42.8777,0,0,0,2,0,3,84.2,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.47523,9.22595,1.098612,3.758352,1
-9,1,50,1,1,126863,0,10156.33,2.915811,1,12,1,4.796163,18.59712,0,0,0,23.39329,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70722,9.22595,1.098612,3.152449,1
-9,1,50,1,2,126863,0,10156.33,3.915811,1,12,1,0,8.849945,0,0,0,8.849945,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70722,9.22595,1.098612,2.180411,1
-9,1,50,1,3,126863,0,10156.33,4.915811,1,12,1,17.95511,1.915212,0,0,0,19.87033,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70722,9.22595,1.098612,2.989228,1
-9,1,50,1,4,126863,0,10156.33,5.915811,1,12,1,5.532504,15.67543,0,0,0,21.20793,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70722,9.22595,1.098612,3.054375,1
-9,1,50,1,5,126863,0,10156.33,6.915811,1,12,1,5.924672,12.91578,0,0,0,18.84046,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,80.70722,9.22595,1.098612,2.936007,1
-9,1,50,1,1,126864,0,10156.33,24.84599,1,12,1,76.73861,33.05156,0,0,0,109.7902,0,0,0,4,0,3,84.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.30963,9.22595,1.098612,4.698571,1
-9,1,50,1,2,126864,0,10156.33,25.84599,1,12,1,10.9529,4.457831,0,0,0,15.41073,0,0,0,1,0,3,84.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.30963,9.22595,1.098612,2.735064,1
-9,1,50,1,3,126864,0,10156.33,26.84599,1,12,1,40.89775,20.54364,0,0,0,61.44139,0,0,0,5,0,3,84.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.30963,9.22595,1.098612,4.118084,1
-9,1,50,1,4,126864,0,10156.33,27.84599,1,12,1,43.79898,43.30567,0,0,0,87.10466,0,0,0,4,1,3,84.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.30963,9.22595,1.098612,4.46711,1
-9,1,50,1,5,126864,0,10156.33,28.84599,1,12,1,26.66102,25.26449,0,0,0,51.92552,0,0,0,3,0,3,84.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.30963,9.22595,1.098612,3.94981,1
-9,1,50,1,1,126865,0,17723.95,18.58179,0,11,1,4.759072,0,0,0,0,4.759072,0,0,0,1,0,6,65.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,68.26189,9.782728,1.791759,1.560053,1
-9,1,50,1,2,126865,0,17723.95,19.58179,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,65.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,68.26189,9.782728,1.791759,,0
-9,1,50,1,3,126865,0,17723.95,20.58179,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,65.3,8.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,68.26189,9.782728,1.94591,,0
-9,1,50,1,1,126866,0,17723.95,15.44422,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,64.2,4.3,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,73.25742,9.782728,1.791759,,0
-9,1,50,1,2,126866,0,17723.95,16.44422,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,64.2,4.3,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,73.25742,9.782728,1.791759,,0
-9,1,50,1,3,126866,0,17723.95,17.44422,0,12,1,3.964321,0,0,0,0,3.964321,0,0,0,1,0,7,64.2,4.3,0,,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,73.25742,9.782728,1.94591,1.377335,1
-9,1,50,1,1,126867,0,17723.95,17.24025,1,12,1,19.63117,5.205235,0,0,0,24.83641,0,0,0,2,0,6,46.3,0,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,67.93368,9.782728,1.791759,3.212311,1
-9,1,50,1,2,126867,0,17723.95,18.24025,1,12,1,51.71475,4.148067,0,0,0,55.86282,0,0,0,2,1,6,46.3,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,67.93368,9.782728,1.791759,4.022899,1
-9,1,50,1,3,126867,0,17723.95,19.24025,1,12,1,29.23687,6.778989,0,0,0,36.01586,0,0,0,6,0,7,46.3,0,0,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,67.93368,9.782728,1.94591,3.583959,1
-9,1,50,1,1,126868,0,17723.95,41.54415,0,12,1,7.733492,0,0,0,0,7.733492,0,0,0,1,0,6,73.7,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.6292,9.782728,1.791759,2.045561,1
-9,1,50,1,2,126868,0,17723.95,42.54415,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.7,21.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,69.6292,9.782728,1.791759,,0
-9,1,50,1,3,126868,0,17723.95,43.54415,0,12,1,12.3885,1.466799,0,0,0,13.8553,0,0,0,2,0,7,73.7,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,69.6292,9.782728,1.94591,2.628668,1
-9,1,50,1,1,126869,0,17723.95,40.38877,1,12,1,21.41582,0,0,0,0,21.41582,0,0,0,0,0,6,60,30.4,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,71.26881,9.782728,1.791759,3.06413,1
-9,1,50,1,2,126869,0,17723.95,41.38877,1,12,1,22.86336,2.928688,0,0,0,25.79205,0,0,0,2,0,6,60,30.4,1,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,71.26881,9.782728,1.791759,3.250066,1
-9,1,50,1,3,126869,0,17723.95,42.38877,1,12,1,69.87116,11.04063,54.50941,0,1599.336,1734.757,2,0,0,6,1,7,60,30.4,1,,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,71.26881,9.782728,1.94591,7.458623,1
-9,1,50,1,1,126870,0,17723.95,10.39836,1,12,1,9.518144,1.778703,0,0,0,11.29685,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,79.00697,9.782728,1.791759,2.424524,1
-9,1,50,1,2,126870,0,17723.95,11.39836,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,1,0,0,79.00697,9.782728,1.791759,,0
-9,1,50,1,3,126870,0,17723.95,12.39836,1,12,1,50.54509,10.41625,0,0,0,60.96135,0,0,0,7,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,79.00697,9.782728,1.94591,4.11024,1
-9,1,50,1,1,126871,0,4004.963,20.87064,1,12,1,15.46698,17.07317,0,0,0,32.54015,0,0,0,2,0,1,83.2,21.7,0,,580.31,580.31,0,0,0,6.363563,0,3.931826,7.05671,1,0,0,71.42945,8.295539,0,3.482475,1
-9,1,50,1,2,126871,0,4004.963,21.87064,1,12,1,23.9521,16.66848,0,0,0,40.62058,0,0,0,2,0,1,83.2,21.7,0,,580.31,580.31,0,0,0,6.363563,0,3.931826,7.05671,1,0,0,71.42945,8.295539,0,3.704275,1
-9,1,50,1,3,126871,0,4004.963,22.87064,1,12,1,12.3885,5.133796,36.76908,0,0,54.29138,0,0,0,1,1,1,83.2,21.7,0,,580.31,580.31,0,0,0,6.363563,0,3.931826,7.05671,1,0,0,71.42945,8.295539,0,3.994365,1
-8,1,50,1,1,126894,0,8056.452,28.20808,1,13,1,41.64188,7.013682,0,0,0,48.65556,0,0,0,2,0,4,68.4,8.7,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,79.3287,8.994352,1.386294,3.884766,1
-8,1,50,1,2,126894,0,8056.452,29.20808,1,13,1,22.72727,0,0,0,0,22.72727,0,0,0,2,0,4,68.4,8.7,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,79.3287,8.994352,1.386294,3.123566,1
-8,1,50,1,3,126894,0,8056.452,30.20808,1,13,1,0,7.190288,0,0,0,7.190288,0,0,0,0,0,4,68.4,8.7,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,79.3287,8.994352,1.386294,1.972731,1
-8,1,50,1,4,126894,0,8056.452,31.20808,1,13,1,18.35704,9.307021,32.13401,0,0,59.79807,0,0,0,1,1,4,68.4,8.7,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,79.3287,8.994352,1.386294,4.090973,1
-8,1,50,1,5,126894,0,8056.452,32.20808,1,13,1,7.57257,2.086664,0,0,0,9.659234,0,0,0,1,0,4,68.4,8.7,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,79.3287,8.994352,1.386294,2.267914,1
-8,1,50,1,1,126895,0,8056.452,8.271048,1,13,1,13.08745,7.067222,0,0,0,20.15467,0,0,0,2,0,4,74.36826,13.73189,0,,525,525,1,1,1.386294,6.263398,0,3.931826,6.956545,0,0,0,77.73626,8.994352,1.386294,3.003436,1
-8,1,50,1,2,126895,0,8056.452,9.271048,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,525,525,1,1,1.386294,6.263398,0,3.931826,6.956545,0,0,0,77.73626,8.994352,1.386294,,0
-8,1,50,1,3,126895,0,8056.452,10.27105,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,525,525,1,1,1.386294,6.263398,0,3.931826,6.956545,0,0,0,77.73626,8.994352,1.386294,,0
-8,1,50,1,4,126895,0,8056.452,11.27105,1,13,1,30.51859,0,22.54245,0,0,53.06104,0,0,0,2,1,4,74.36826,13.73189,0,,525,525,1,1,1.386294,6.263398,0,3.931826,6.956545,0,0,0,77.73626,8.994352,1.386294,3.971443,1
-8,1,50,1,5,126895,0,8056.452,12.27105,1,13,1,33.65587,0,15.38494,0,0,49.04081,0,0,0,1,1,4,74.36826,13.73189,0,,525,525,1,1,1.386294,6.263398,0,3.931826,6.956545,0,0,0,77.73626,8.994352,1.386294,3.892653,1
-8,1,50,1,1,126896,0,8056.452,5.842574,0,13,1,121.3563,8.596074,0,0,517.1624,647.1148,1,0,0,16,6,4,74.36826,13.73189,0,,525,525,1,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,83.45087,8.994352,1.386294,6.472524,1
-8,1,50,1,2,126896,0,8056.452,6.842574,0,13,1,146.9788,2.280893,31.29015,0,0,180.5498,0,0,0,16,4,4,74.36826,13.73189,0,,525,525,1,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,83.45087,8.994352,1.386294,5.196007,1
-8,1,50,1,3,126896,0,8056.452,7.842574,0,13,1,48.06739,0,37.80476,0,0,85.87215,0,0,0,7,0,4,74.36826,13.73189,0,,525,525,1,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,83.45087,8.994352,1.386294,4.452859,1
-8,1,50,1,4,126896,0,8056.452,8.842573,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,525,525,1,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,83.45087,8.994352,1.386294,,0
-8,1,50,1,5,126896,0,8056.452,9.842573,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,525,525,1,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,83.45087,8.994352,1.386294,,0
-8,1,50,1,1,126897,0,8056.452,29.61533,0,14,1,37.47769,18.91731,0,0,0,56.395,0,0,0,4,0,4,75.8,17.4,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,78.43752,8.994352,1.386294,4.032381,1
-8,1,50,1,2,126897,0,8056.452,30.61533,0,14,1,9.798585,0,43.23353,0,0,53.03212,0,0,0,0,1,4,75.8,17.4,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,78.43752,8.994352,1.386294,3.970898,1
-8,1,50,1,3,126897,0,8056.452,31.61533,0,14,1,18.83052,2.552032,0,0,0,21.38256,0,0,0,3,0,4,75.8,17.4,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,78.43752,8.994352,1.386294,3.062576,1
-8,1,50,1,4,126897,0,8056.452,32.61533,0,14,1,3.212483,3.969711,0,0,0,7.182194,0,0,0,1,0,4,75.8,17.4,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,78.43752,8.994352,1.386294,1.971605,1
-8,1,50,1,5,126897,0,8056.452,33.61533,0,14,1,9.255363,8.140513,0,0,0,17.39588,0,0,0,2,0,4,75.8,17.4,0,,525,525,0,0,1.386294,6.263398,0,3.931826,6.956545,0,0,0,78.43752,8.994352,1.386294,2.856233,1
-5,1,25,0,1,126899,1,1,6.8282,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,1,,72,72,1,1,.6931472,4.276666,0,3.258096,5.662961,0,1,0,63.00796,.6931472,.6931472,,0
-5,1,25,0,2,126899,1,1,7.8282,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,1,,72,72,1,1,.6931472,4.276666,0,3.258096,5.662961,0,1,0,63.00796,.6931472,.6931472,,0
-5,1,25,0,3,126899,1,1,8.828199,1,10,1,274.4472,29.65111,0,0,678.231,982.3292,1,0,0,29,4,2,74.36826,13.73189,1,,72,72,1,1,.6931472,4.276666,0,3.258096,5.662961,0,1,0,63.00796,.6931472,.6931472,6.889926,1
-5,1,25,0,1,126900,1,1,48.79671,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,55.8,26.1,1,,72,72,0,0,.6931472,4.276666,0,3.258096,5.662961,0,1,0,51.71064,.6931472,.6931472,,0
-5,1,25,0,2,126900,1,1,49.79671,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,55.8,26.1,1,,72,72,0,0,.6931472,4.276666,0,3.258096,5.662961,0,1,0,51.71064,.6931472,.6931472,,0
-5,1,25,0,3,126900,1,1,50.79671,1,10,1,158.4767,53.55774,0,0,0,212.0344,0,0,0,12,0,2,55.8,26.1,1,,72,72,0,0,.6931472,4.276666,0,3.258096,5.662961,0,1,0,51.71064,.6931472,.6931472,5.356749,1
-4,1,100,1,1,126916,0,13328.78,14.84736,1,18,1,52.94468,0,0,0,0,52.94468,0,0,0,3,0,4,68.4,8.7,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.75117,9.497756,1.386294,3.969248,1
-4,1,100,1,2,126916,0,13328.78,15.84736,1,18,1,1.633097,1.252041,0,0,0,2.885139,0,0,0,0,0,4,68.4,8.7,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.75117,9.497756,1.386294,1.059573,1
-4,1,100,1,3,126916,0,13328.78,16.84736,1,18,1,45.09415,12.63132,0,0,0,57.72547,0,0,0,7,0,4,68.4,8.7,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.75117,9.497756,1.386294,4.055698,1
-4,1,100,1,4,126916,0,13328.78,17.84736,1,18,1,14.22671,13.24002,0,0,0,27.46673,0,0,0,2,0,4,68.4,8.7,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.75117,9.497756,1.386294,3.312975,1
-4,1,100,1,5,126916,0,13328.78,18.84736,1,18,1,10.09676,5.889777,0,0,0,15.98654,0,0,0,1,0,4,68.4,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,75.75117,9.497756,1.386294,2.771747,1
-4,1,100,1,1,126917,0,13328.78,45.85352,0,15,1,67.22189,2.135633,52.8376,0,0,122.1951,0,0,0,4,0,4,54.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.31355,9.497756,1.386294,4.805619,1
-4,1,100,1,2,126917,0,13328.78,46.85352,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,54.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.31355,9.497756,1.386294,,0
-4,1,100,1,3,126917,0,13328.78,47.85352,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,54.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.31355,9.497756,1.386294,,0
-4,1,100,1,4,126917,0,13328.78,48.85352,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,54.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.31355,9.497756,1.386294,,0
-4,1,100,1,5,126917,0,13328.78,49.85352,0,15,1,12.62095,0,40.44173,0,0,53.06268,0,0,0,1,0,4,54.7,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.31355,9.497756,1.386294,3.971474,1
-4,1,100,1,1,126918,0,13328.78,16.09309,0,18,1,20.82094,0,0,0,0,20.82094,0,0,0,1,0,4,77.9,4.3,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.08788,9.497756,1.386294,3.035959,1
-4,1,100,1,2,126918,0,13328.78,17.09309,0,18,1,35.38378,2.885139,28.16004,0,0,66.42896,0,0,0,3,0,4,77.9,4.3,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.08788,9.497756,1.386294,4.196133,1
-4,1,100,1,3,126918,0,13328.78,18.09309,0,18,1,47.40833,0,0,0,0,47.40833,0,0,0,1,0,4,77.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,81.08788,9.497756,1.386294,3.858798,1
-4,1,100,1,4,126918,0,13328.78,19.09309,0,18,1,16.06241,0,16.06241,0,0,32.12483,0,0,0,0,2,4,77.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,81.08788,9.497756,1.386294,3.469629,1
-4,1,100,1,5,126918,0,13328.78,20.09309,0,18,1,80.77409,1.598654,0,0,0,82.37274,0,0,0,2,1,4,77.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,81.08788,9.497756,1.386294,4.411254,1
-4,1,100,1,1,126919,0,13328.78,51.32923,1,18,1,66.27008,0,35.69304,0,0,101.9631,0,0,0,2,1,4,58.9,26.1,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.3842,9.497756,1.386294,4.624611,1
-4,1,100,1,2,126919,0,13328.78,52.32923,1,18,1,48.44856,10.01633,0,0,0,58.46489,0,0,0,4,0,4,58.9,26.1,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.3842,9.497756,1.386294,4.068427,1
-4,1,100,1,3,126919,0,13328.78,53.32923,1,18,1,16.35283,13.95441,0,0,0,30.30724,0,0,0,1,0,4,58.9,26.1,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.3842,9.497756,1.386294,3.411386,1
-4,1,100,1,4,126919,0,13328.78,54.32923,1,18,1,80.31207,0,0,0,0,80.31207,0,0,0,4,0,4,58.9,26.1,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.3842,9.497756,1.386294,4.38592,1
-4,1,100,1,5,126919,0,13328.78,55.32923,1,18,1,44.17333,0,0,250.3155,0,44.17333,0,0,17,6,0,4,58.9,26.1,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.3842,9.497756,1.386294,3.788121,1
-4,1,100,1,1,126920,0,4392.68,1.919233,1,11,1,129.6231,0,0,0,0,129.6231,0,0,0,2,3,2,74.36826,13.73189,0,,75,75,1,1,.6931472,4.317488,1,0,0,0,0,0,75.32616,8.387922,.6931472,4.864631,1
-4,1,100,1,2,126920,0,4392.68,2.919233,1,11,1,69.54178,11.37466,0,0,0,80.91644,0,0,0,8,0,2,74.36826,13.73189,0,,75,75,1,1,.6931472,4.317488,1,0,0,0,0,0,75.32616,8.387922,.6931472,4.393417,1
-4,1,100,1,3,126920,0,4392.68,3.919233,1,11,1,45.70024,2.712531,0,0,0,48.41278,0,0,0,2,0,3,74.36826,13.73189,0,,75,75,1,1,1.098612,4.317488,1,0,0,0,0,0,75.32616,8.387922,1.098612,3.879764,1
-4,1,100,1,4,126920,0,4392.68,4.919233,1,11,1,25.75205,20.1732,0,0,0,45.92525,0,0,0,4,0,3,74.36826,13.73189,0,,75,75,1,1,1.098612,4.317488,1,0,0,0,0,0,75.32616,8.387922,1.098612,3.827015,1
-4,1,100,1,5,126920,0,4392.68,5.919233,1,11,1,63.77657,16.09421,0,0,0,79.87078,0,0,0,4,0,3,74.36826,13.73189,0,,75,75,1,1,1.098612,4.317488,1,0,0,0,0,0,75.32616,8.387922,1.098612,4.38041,1
-4,1,100,1,1,126921,0,4392.68,18.73511,1,11,1,235.4535,17.23204,0,0,0,252.6855,0,0,0,8,0,2,52.6,21.7,0,,75,75,0,0,.6931472,4.317488,1,0,0,0,0,0,73.02412,8.387922,.6931472,5.532146,1
-4,1,100,1,2,126921,0,4392.68,19.73511,1,11,1,170.0809,8.975741,0,140.1617,1719.865,1898.922,2,0,8,3,1,2,52.6,21.7,0,,75,75,0,0,.6931472,4.317488,1,0,0,0,0,0,73.02412,8.387922,.6931472,7.549042,1
-4,1,100,1,3,126921,0,4392.68,20.73511,1,11,1,361.6708,25.49386,1.474201,0,0,388.6388,0,0,0,16,16,3,52.6,21.7,0,,75,75,0,0,1.098612,4.317488,1,0,0,0,0,0,73.02412,8.387922,1.098612,5.96265,1
-4,1,100,1,4,126921,0,4392.68,21.73511,1,11,1,282.7028,34.11577,0,0,0,316.8186,0,0,0,18,9,3,52.6,21.7,0,,75,75,0,0,1.098612,4.317488,1,0,0,0,0,0,73.02412,8.387922,1.098612,5.758329,1
-4,1,100,1,5,126921,0,4392.68,22.73511,1,11,1,73.78074,13.13047,0,33.34723,211.7341,298.6453,1,0,2,8,0,3,52.6,21.7,0,,75,75,0,0,1.098612,4.317488,1,0,0,0,0,0,73.02412,8.387922,1.098612,5.699256,1
-3,1,100,0,1,126931,0,8213.399,15.79192,1,16,1,11.99041,5.065947,0,0,0,17.05635,0,0,0,1,0,3,77.5,13.73189,0,,1000,1000,1,1,1.098612,6.907755,1,0,0,0,0,0,74.30457,9.013644,1.098612,2.836523,1
-3,1,100,0,2,126931,0,8213.399,16.79192,1,16,1,5.476451,0,0,0,0,5.476451,0,0,0,1,0,3,77.5,13.73189,0,,1000,1000,1,1,1.098612,6.907755,1,0,0,0,0,0,74.30457,9.013644,1.098612,1.700457,1
-3,1,100,0,3,126931,0,8213.399,17.79192,1,16,1,20.44888,0,24.62843,0,0,45.0773,0,0,0,2,0,3,77.5,13.73189,0,,1000,1000,1,1,1.098612,6.907755,1,0,0,0,0,0,74.30457,9.013644,1.098612,3.808379,1
-3,1,100,0,4,126931,0,8213.399,18.79192,1,16,1,0,5.348087,0,0,0,5.348087,0,0,0,0,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.30457,9.013644,1.098612,1.676739,1
-3,1,100,0,5,126931,0,8213.399,19.79192,1,16,1,12.69573,0,31.84088,0,0,44.53661,0,0,0,1,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.30457,9.013644,1.098612,3.796311,1
-3,1,100,0,1,126932,0,8213.399,46.4011,1,16,1,25.17986,14.53837,0,0,0,39.71822,0,0,0,2,0,3,83.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.59227,9.013644,1.098612,3.68181,1
-3,1,100,0,2,126932,0,8213.399,47.4011,1,16,1,13.69113,11.88938,44.069,0,0,69.64951,0,0,0,1,0,3,83.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.59227,9.013644,1.098612,4.243475,1
-3,1,100,0,3,126932,0,8213.399,48.4011,1,16,1,10.97257,3.082294,0,0,0,14.05486,0,0,0,1,0,3,83.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.59227,9.013644,1.098612,2.642968,1
-3,1,100,0,4,126932,0,8213.399,49.4011,1,16,1,36.42231,34.43061,34.20931,0,0,105.0622,0,0,0,7,0,3,83.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.59227,9.013644,1.098612,4.654553,1
-3,1,100,0,5,126932,0,8213.399,50.4011,1,16,1,18.6204,2.873466,0,0,0,21.49386,0,0,0,2,0,3,83.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,74.59227,9.013644,1.098612,3.067768,1
-3,1,100,0,1,126933,0,8213.399,47.45243,0,16,1,71.34293,68.4952,39.91607,0,0,179.7542,0,0,0,5,1,3,62.5,13.73189,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,1,0,59.58566,9.013644,1.098612,5.19159,1
-3,1,100,0,2,126933,0,8213.399,48.45243,0,16,1,25.73932,74.11829,9.731654,0,0,109.5893,0,0,0,1,0,3,62.5,13.73189,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,1,0,59.58566,9.013644,1.098612,4.696739,1
-3,1,100,0,3,126933,0,8213.399,49.45243,0,16,1,78.67831,231.1022,0,39.90025,0,309.7805,0,0,2,11,0,3,62.5,13.73189,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,1,0,59.58566,9.013644,1.098612,5.735864,1
-3,1,100,0,4,126933,0,8213.399,50.45243,0,16,1,73.76672,134.0295,29.87091,110.6501,746.9802,984.6473,1,0,6,8,1,3,62.5,13.73189,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,1,0,59.58566,9.013644,1.098612,6.892283,1
-3,1,100,0,5,126933,0,8213.399,51.45243,0,16,1,155.7342,91.84512,0,0,6111.405,6358.984,1,0,0,9,0,3,62.5,13.73189,1,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,1,0,59.58566,9.013644,1.098612,8.757624,1
-1,1,0,1,1,126935,0,16733.25,48.67077,0,12,1,226.0559,239.298,60.95776,0,0,526.3117,0,0,0,6,1,2,55.8,26.1,1,,300,80,0,0,.6931472,4.382027,1,0,0,1,0,0,61.78216,9.725213,.6931472,6.265893,1
-1,1,0,1,2,126935,0,16733.25,49.67077,0,12,1,49.53729,188.1873,37.01688,0,0,274.7414,0,0,0,2,1,2,55.8,26.1,1,,300,80,0,0,.6931472,4.382027,1,0,0,1,0,0,61.78216,9.725213,.6931472,5.61583,1
-1,1,0,1,3,126935,0,16733.25,50.67077,0,12,1,52.27948,192.8692,0,0,0,245.1487,0,0,0,4,0,2,55.8,26.1,1,,300,80,0,0,.6931472,4.382027,1,0,0,1,0,0,61.78216,9.725213,.6931472,5.501865,1
-1,1,0,1,4,126935,0,16733.25,51.67077,0,12,1,236.5764,229.7705,34.41946,0,0,500.7664,0,0,0,3,1,2,55.8,26.1,1,,300,80,0,0,.6931472,4.382027,1,0,0,1,0,0,61.78216,9.725213,.6931472,6.21614,1
-1,1,0,1,5,126935,0,16733.25,52.67077,0,12,1,185.528,152.44,35.59108,0,0,373.5591,0,0,0,6,1,2,55.8,26.1,1,,300,80,0,0,.6931472,4.382027,1,0,0,1,0,0,61.78216,9.725213,.6931472,5.923076,1
-1,1,0,1,1,126936,0,16733.25,47.9562,1,10,1,139.7977,22.96252,42.89708,0,0,205.6573,0,0,0,3,0,2,86.3,4.3,0,,300,80,0,0,.6931472,4.382027,1,0,0,0,0,0,74.56667,9.725213,.6931472,5.326211,1
-1,1,0,1,2,126936,0,16733.25,48.9562,1,10,1,57.43059,5.307567,13.65269,0,0,76.39085,0,0,0,4,0,2,86.3,4.3,0,,300,80,0,0,.6931472,4.382027,1,0,0,0,0,0,74.56667,9.725213,.6931472,4.335863,1
-1,1,0,1,3,126936,0,16733.25,49.9562,1,10,1,42.12091,0,47.86422,0,0,89.98513,0,0,0,3,1,2,86.3,4.3,0,,300,80,0,0,.6931472,4.382027,1,0,0,0,0,0,74.56667,9.725213,.6931472,4.499644,1
-1,1,0,1,4,126936,0,16733.25,50.9562,1,10,1,511.363,0,33.52455,0,0,544.8876,0,0,0,3,0,2,86.3,4.3,0,,300,80,0,0,.6931472,4.382027,1,0,0,0,0,0,74.56667,9.725213,.6931472,6.30058,1
-1,1,0,1,5,126936,0,16733.25,51.9562,1,10,1,92.55364,4.724442,36.04964,0,0,133.3277,0,0,0,5,1,2,86.3,4.3,0,,300,80,0,0,.6931472,4.382027,1,0,0,0,0,0,74.56667,9.725213,.6931472,4.89281,1
-11,1,0,1,1,126945,0,12635.86,53.18549,0,18,1,14.8721,0,19.89292,0,0,34.76502,0,0,0,1,0,5,91.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.38226,9.444373,1.609438,3.548612,1
-11,1,0,1,2,126945,0,12635.86,54.18549,0,18,1,13.60915,2.705498,0,0,0,16.31464,0,0,0,1,0,5,91.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.38226,9.444373,1.609438,2.792063,1
-11,1,0,1,3,126945,0,12635.86,55.18549,0,18,1,32.21011,2.244797,0,0,0,34.45491,0,0,0,2,0,5,91.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.38226,9.444373,1.609438,3.539651,1
-11,1,0,1,4,126945,0,12635.86,56.18549,0,18,1,48.18724,11.77145,23.50161,0,0,83.4603,0,0,0,6,0,5,91.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.38226,9.444373,1.609438,4.424371,1
-11,1,0,1,5,126945,0,12635.86,57.18549,0,18,1,139.6719,2.519983,0,0,0,142.1918,0,0,0,4,0,5,91.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.38226,9.444373,1.609438,4.957177,1
-11,1,0,1,1,126946,0,12635.86,50.19028,1,16,1,82.68887,29.81559,47.87032,0,0,160.3748,0,0,0,5,0,5,89.5,17.4,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.05634,9.444373,1.609438,5.077513,1
-11,1,0,1,2,126946,0,12635.86,51.19028,1,16,1,28.30702,.843767,0,0,0,29.15079,0,0,0,2,0,5,89.5,17.4,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.05634,9.444373,1.609438,3.372482,1
-11,1,0,1,3,126946,0,12635.86,52.19028,1,16,1,39.64321,0,55.00496,0,0,94.64816,0,0,0,4,0,5,89.5,17.4,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.05634,9.444373,1.609438,4.550167,1
-11,1,0,1,4,126946,0,12635.86,53.19028,1,16,1,264.8004,0,0,0,0,264.8004,0,0,0,3,0,5,89.5,17.4,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.05634,9.444373,1.609438,5.578976,1
-11,1,0,1,5,126946,0,12635.86,54.19028,1,16,1,130.4165,23.04165,50.9045,0,0,204.3626,0,0,0,5,0,5,89.5,17.4,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.05634,9.444373,1.609438,5.319896,1
-11,1,0,1,1,126947,0,12635.86,13.05681,1,16,1,64.84235,11.87388,0,0,0,76.71624,0,0,0,6,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,86.10995,9.444373,1.609438,4.340114,1
-11,1,0,1,2,126947,0,12635.86,14.05681,1,16,1,29.94012,2.172019,0,0,0,32.11214,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,86.10995,9.444373,1.609438,3.469234,1
-11,1,0,1,3,126947,0,12635.86,15.05681,1,16,1,61.44698,0,0,0,0,61.44698,0,0,0,8,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,86.10995,9.444373,1.609438,4.118175,1
-11,1,0,1,4,126947,0,12635.86,16.05681,1,16,1,32.58376,5.025241,23.86416,0,0,61.47315,0,0,0,5,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,86.10995,9.444373,1.609438,4.1186,1
-11,1,0,1,5,126947,0,12635.86,17.05681,1,16,1,33.65587,12.62516,14.50989,0,0,60.79091,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,86.10995,9.444373,1.609438,4.10744,1
-11,1,0,1,1,126948,0,12635.86,18.10814,0,12.32507,1,139.2029,3.723974,38.54253,0,0,181.4694,0,0,0,15,0,5,71.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.99447,9.444373,1.609438,5.201087,1
-11,1,0,1,2,126948,0,12635.86,19.10814,0,12.32507,1,21.23027,3.756124,32.99401,0,0,57.9804,0,0,0,4,0,5,71.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.99447,9.444373,1.609438,4.060105,1
-11,1,0,1,3,126948,0,12635.86,20.10814,0,12.32507,1,45.09415,1.699703,33.36472,0,0,80.15857,0,0,0,5,0,5,71.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.99447,9.444373,1.609438,4.384007,1
-11,1,0,1,4,126948,0,12635.86,21.10814,0,12.32507,1,25.24094,1.652134,17.2648,0,0,44.15787,0,0,0,2,0,5,71.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.99447,9.444373,1.609438,3.787771,1
-11,1,0,1,5,126948,0,12635.86,22.10814,0,12.32507,1,0,1.598654,0,0,0,1.598654,0,0,0,0,0,5,71.6,8.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.99447,9.444373,1.609438,.4691619,1
-11,1,0,1,1,126949,0,12635.86,14.5462,1,16,1,14.27722,4.419988,0,0,0,18.6972,0,0,0,2,0,5,67.4,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,75.66186,9.444373,1.609438,2.928374,1
-11,1,0,1,2,126949,0,12635.86,15.5462,1,16,1,67.50136,26.33097,0,0,0,93.83234,0,0,0,12,0,5,67.4,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,75.66186,9.444373,1.609438,4.54151,1
-11,1,0,1,3,126949,0,12635.86,16.5462,1,16,1,74.33102,10.46581,0,0,0,84.79683,0,0,0,9,0,5,67.4,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,75.66186,9.444373,1.609438,4.440258,1
-11,1,0,1,4,126949,0,12635.86,17.5462,1,16,1,111.0601,16.838,0,0,0,127.8981,0,0,0,4,0,5,67.4,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,75.66186,9.444373,1.609438,4.851234,1
-11,1,0,1,5,126949,0,12635.86,18.5462,1,16,1,26.504,6.327303,25.27976,0,0,58.11106,0,0,0,2,0,5,67.4,4.3,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.66186,9.444373,1.609438,4.062356,1
-11,1,0,0,1,126956,0,12002.48,49.6345,0,22,1,124.8528,55.88928,44.16961,0,0,224.9117,0,0,0,3,2,4,71.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,64.51054,9.392952,1.386294,5.415708,1
-11,1,0,0,2,126956,0,12002.48,50.6345,0,22,1,155.7952,27.52022,0,0,0,183.3154,0,0,0,5,0,4,71.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,64.51054,9.392952,1.386294,5.211208,1
-11,1,0,0,3,126956,0,12002.48,51.6345,0,22,1,49.14005,24.69287,0,0,0,73.83292,0,0,0,4,0,4,71.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,64.51054,9.392952,1.386294,4.301805,1
-11,1,0,0,4,126956,0,12002.48,52.6345,0,22,1,208.2953,19.50775,27.34731,0,0,255.1504,0,0,0,5,1,4,71.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,64.51054,9.392952,1.386294,5.541853,1
-11,1,0,0,5,126956,0,12002.48,53.6345,0,22,1,122.9679,10.56273,0,0,0,133.5306,0,0,0,3,0,4,71.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,64.51054,9.392952,1.386294,4.894331,1
-11,1,0,0,1,126957,0,12002.48,53.49213,1,12,1,140.1649,25.8245,0,0,0,165.9894,0,0,0,4,0,4,85,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,71.93534,9.392952,1.386294,5.111924,1
-11,1,0,0,2,126957,0,12002.48,54.49213,1,12,1,53.90836,13.14286,46.36119,0,0,113.4124,0,0,0,5,1,4,85,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,71.93534,9.392952,1.386294,4.731031,1
-11,1,0,0,3,126957,0,12002.48,55.49213,1,12,1,71.74447,11.59705,0,0,0,83.34152,0,0,0,6,0,4,85,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,71.93534,9.392952,1.386294,4.422947,1
-11,1,0,0,4,126957,0,12002.48,56.49213,1,12,1,113.0356,8.226983,20.30538,0,1468.728,1610.296,1,0,0,5,0,4,85,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,71.93534,9.392952,1.386294,7.384173,1
-11,1,0,0,5,126957,0,12002.48,57.49213,1,12,1,75.03127,11.84243,38.76615,0,0,125.6398,0,0,0,6,1,4,85,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,71.93534,9.392952,1.386294,4.833419,1
-11,1,0,0,1,126958,0,12002.48,17.63997,0,12,1,10.60071,0,0,0,0,10.60071,0,0,0,1,0,4,51.3,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,2.360921,1
-11,1,0,0,2,126958,0,12002.48,18.63997,0,12,1,13.47709,2.695418,33.23989,0,0,49.4124,0,0,0,1,0,4,51.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,3.900201,1
-11,1,0,0,3,126958,0,12002.48,19.63997,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,51.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,,0
-11,1,0,0,4,126958,0,12002.48,20.63997,0,12,1,9.11577,5.036463,22.78942,0,0,36.94166,0,0,0,0,1,4,51.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,3.60934,1
-11,1,0,0,5,126958,0,12002.48,21.63997,0,12,1,8.336807,3.626511,0,0,0,11.96332,0,0,0,1,0,4,51.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,2.481845,1
-11,1,0,0,1,126959,0,12002.48,15.72895,0,12,1,44.75854,21.67256,0,0,0,66.4311,0,0,0,9,0,4,86.3,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,4.196165,1
-11,1,0,0,2,126959,0,12002.48,16.72895,0,12,1,63.61186,13.60108,5.956873,0,0,83.16982,0,0,0,4,0,4,86.3,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,4.420885,1
-11,1,0,0,3,126959,0,12002.48,17.72895,0,12,1,12.77641,7.592138,0,0,0,20.36855,0,0,0,2,0,4,86.3,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,3.013992,1
-11,1,0,0,4,126959,0,12002.48,18.72895,0,12,1,15.9526,26.39016,0,0,0,42.34275,0,0,0,2,0,4,86.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,3.745797,1
-11,1,0,0,5,126959,0,12002.48,19.72895,0,12,1,62.005,31.2797,0,0,0,93.2847,0,0,0,4,0,4,86.3,13.73189,0,,0,233,0,0,1.386294,5.451038,0,0,0,1,0,0,73.92395,9.392952,1.386294,4.535656,1
-7,1,25,1,1,126960,0,10653.9,59.69062,0,14,1,31.21319,53.12132,33.85159,0,0,118.1861,0,0,0,4,0,2,68.4,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,69.64326,9.273775,.6931472,4.772261,1
-7,1,25,1,2,126960,0,10653.9,60.69062,0,14,1,149.3261,43.71968,0,0,0,193.0458,0,0,0,5,0,2,68.4,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,69.64326,9.273775,.6931472,5.262928,1
-7,1,25,1,3,126960,0,10653.9,61.69062,0,14,1,142.9975,43.23341,0,0,0,186.231,0,0,0,6,0,2,68.4,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,69.64326,9.273775,.6931472,5.226988,1
-7,1,25,1,1,126961,0,10653.9,57.26762,1,12,1,55.35925,60.8775,0,0,0,116.2367,0,0,0,11,0,2,86.3,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.963,9.273775,.6931472,4.755629,1
-7,1,25,1,2,126961,0,10653.9,58.26762,1,12,1,121.2938,55.28302,0,0,0,176.5768,0,0,0,13,0,2,86.3,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.963,9.273775,.6931472,5.173756,1
-7,1,25,1,3,126961,0,10653.9,59.26762,1,12,1,60.44226,58.25553,33.63636,0,0,152.3342,0,0,0,9,0,2,86.3,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,71.963,9.273775,.6931472,5.026076,1
-2,1,100,1,1,126984,0,8362.283,49.6345,0,12,1,40.45211,0,0,0,0,40.45211,0,0,0,1,1,2,44.2,4.3,0,,699,699,0,0,.6931472,6.549651,1,0,0,0,0,0,72.58436,9.031607,.6931472,3.700119,1
-2,1,100,1,2,126984,0,8362.283,50.6345,0,12,1,132.8253,12.22101,24.65977,0,0,169.706,0,0,0,6,1,2,44.2,4.3,0,,699,699,0,0,.6931472,6.549651,1,0,0,0,0,0,72.58436,9.031607,.6931472,5.134068,1
-2,1,100,1,3,126984,0,8362.283,51.6345,0,12,1,0,7.408325,0,0,0,7.408325,0,0,0,0,0,2,44.2,4.3,0,,699,699,0,0,.6931472,6.549651,1,0,0,0,0,0,72.58436,9.031607,.6931472,2.002604,1
-2,1,100,1,4,126984,0,8362.283,52.6345,0,12,1,58.28362,18.79302,43.162,0,0,120.2386,0,0,0,6,1,2,44.2,4.3,0,,699,699,0,0,.6931472,6.549651,1,0,0,0,0,0,72.58436,9.031607,.6931472,4.789478,1
-2,1,100,1,5,126984,0,8362.283,53.6345,0,12,1,151.8721,5.456458,0,0,0,157.3286,0,0,0,5,0,2,44.2,4.3,0,,699,699,0,0,.6931472,6.549651,1,0,0,0,0,0,72.58436,9.031607,.6931472,5.058336,1
-2,1,100,1,1,126985,0,8362.283,50.57084,1,12,1,177.8703,18.67936,0,0,0,196.5497,0,0,0,22,3,2,68.4,26.1,0,,699,699,0,0,.6931472,6.549651,1,0,0,1,0,0,67.71264,9.031607,.6931472,5.280915,1
-2,1,100,1,2,126985,0,8362.283,51.57084,1,12,1,34.29505,24.49102,30.48449,0,0,89.27055,0,0,0,2,1,2,68.4,26.1,0,,699,699,0,0,.6931472,6.549651,1,0,0,1,0,0,67.71264,9.031607,.6931472,4.491672,1
-2,1,100,1,3,126985,0,8362.283,52.57084,1,12,1,0,21.56095,0,0,0,21.56095,0,0,0,0,0,2,68.4,26.1,0,,699,699,0,0,.6931472,6.549651,1,0,0,1,0,0,67.71264,9.031607,.6931472,3.070884,1
-2,1,100,1,4,126985,0,8362.283,53.57084,1,12,1,25.24094,18.40294,45.82377,0,0,89.46764,0,0,0,2,0,2,68.4,26.1,0,,699,699,0,0,.6931472,6.549651,1,0,0,1,0,0,67.71264,9.031607,.6931472,4.493877,1
-2,1,100,1,5,126985,0,8362.283,54.57084,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.4,26.1,0,,699,699,0,0,.6931472,6.549651,1,0,0,1,0,0,67.71264,9.031607,.6931472,,0
-1,1,0,0,1,127001,0,9542.002,2.102669,0,16,1,115.4299,22.84452,0,0,0,138.2744,0,0,0,8,2,3,74.36826,13.73189,0,,450,145,1,0,1.098612,4.976734,1,0,0,0,0,0,78.82387,9.163564,1.098612,4.92924,1
-1,1,0,0,2,127001,0,9542.002,3.102669,0,16,1,53.36927,12.67924,0,0,0,66.04852,0,0,0,7,0,4,74.36826,13.73189,0,,450,145,1,0,1.386294,4.976734,1,0,0,0,0,0,78.82387,9.163564,1.386294,4.19039,1
-1,1,0,0,3,127001,0,9542.002,4.102669,0,16,1,7.862408,1.371007,0,0,0,9.233416,0,0,0,1,0,4,74.36826,13.73189,0,,450,145,1,0,1.386294,4.976734,1,0,0,0,0,0,78.82387,9.163564,1.386294,2.222829,1
-1,1,0,0,1,127002,0,9542.002,31.37851,1,16,1,11.18964,34.65842,0,0,762.0789,807.927,1,0,0,0,0,3,67.5,13.73189,0,,450,145,0,0,1.098612,4.976734,1,0,0,1,0,0,72.19561,9.163564,1.098612,6.694472,1
-1,1,0,0,2,127002,0,9542.002,32.37851,1,16,1,156.0647,8.743936,0,0,0,164.8086,0,0,0,7,0,4,67.5,13.73189,0,,450,145,0,0,1.386294,4.976734,1,0,0,1,0,0,72.19561,9.163564,1.386294,5.104785,1
-1,1,0,0,3,127002,0,9542.002,33.37851,1,16,1,101.7199,15.31204,0,0,0,117.0319,0,0,0,6,0,4,67.5,13.73189,0,,450,145,0,0,1.386294,4.976734,1,0,0,1,0,0,72.19561,9.163564,1.386294,4.762447,1
-1,1,0,0,1,127003,0,9542.002,33.21561,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.3,13.73189,0,,450,145,0,0,1.098612,4.976734,1,0,0,1,0,0,68.24405,9.163564,1.098612,,0
-1,1,0,0,2,127003,0,9542.002,34.21561,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.3,13.73189,0,,450,145,0,0,1.386294,4.976734,1,0,0,1,0,0,68.24405,9.163564,1.386294,,0
-1,1,0,0,3,127003,0,9542.002,35.21561,0,16,1,4.914005,0,0,0,0,4.914005,0,0,0,0,0,4,86.3,13.73189,0,,450,145,0,0,1.386294,4.976734,1,0,0,1,0,0,68.24405,9.163564,1.386294,1.592089,1
-10,1,50,1,1,127053,0,14800.25,37.21834,0,16,1,11.09113,0,0,0,0,11.09113,0,0,0,1,0,3,98.9,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.07086,9.602467,1.098612,2.406146,1
-10,1,50,1,2,127053,0,14800.25,38.21834,0,16,1,26.28697,5.16977,0,0,0,31.45674,0,0,0,2,0,3,98.9,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.07086,9.602467,1.098612,3.448613,1
-10,1,50,1,3,127053,0,14800.25,39.21834,0,16,1,37.40648,0,40.399,0,0,77.80549,0,0,0,2,1,3,98.9,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.07086,9.602467,1.098612,4.354212,1
-10,1,50,1,1,127054,0,14800.25,7.137577,0,12,1,9.592326,4.556355,0,0,0,14.14868,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.53857,9.602467,1.098612,2.649621,1
-10,1,50,1,2,127054,0,14800.25,8.137577,0,12,1,7.119387,5.843373,0,0,0,12.96276,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.53857,9.602467,1.098612,2.562081,1
-10,1,50,1,3,127054,0,14800.25,9.137577,0,12,1,15.23691,0,0,0,0,15.23691,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,84.53857,9.602467,1.098612,2.723721,1
-10,1,50,1,1,127055,0,14800.25,40.87885,1,12,1,34.77218,4.868105,0,0,0,39.64029,0,0,0,2,0,3,70.5,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.55615,9.602467,1.098612,3.679846,1
-10,1,50,1,2,127055,0,14800.25,41.87885,1,12,1,203.4502,11.33078,40.71741,0,0,255.4984,0,0,0,5,2,3,70.5,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.55615,9.602467,1.098612,5.543216,1
-10,1,50,1,3,127055,0,14800.25,42.87885,1,12,1,31.42145,16.4788,0,0,0,47.90025,0,0,0,4,0,3,70.5,21.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,77.55615,9.602467,1.098612,3.869121,1
-10,1,50,1,1,127059,0,9848.635,34.73785,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,95.8,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.73395,9.195189,1.098612,,0
-10,1,50,1,2,127059,0,9848.635,35.73785,0,12,1,6.53239,0,0,0,0,6.53239,0,0,0,1,0,3,95.8,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.73395,9.195189,1.098612,1.876773,1
-10,1,50,1,3,127059,0,9848.635,36.73785,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,78.73395,9.195189,0,,0
-10,1,50,1,1,127060,0,9848.635,10.09993,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,79.89645,9.195189,1.098612,,0
-10,1,50,1,2,127060,0,9848.635,11.09993,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,79.89645,9.195189,1.098612,,0
-10,1,50,1,1,127061,0,9848.635,33.32786,1,12,1,28.55443,56.45449,0,0,0,85.00893,0,0,0,4,0,3,87.4,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,66.92303,9.195189,1.098612,4.442756,1
-10,1,50,1,2,127061,0,9848.635,34.32786,1,12,1,21.77463,1.986935,0,0,0,23.76157,0,0,0,2,0,3,87.4,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,66.92303,9.195189,1.098612,3.16807,1
-10,1,50,1,1,127074,0,11740.07,22.89391,0,13,1,0,1.6247,0,0,0,1.6247,0,0,0,0,0,1,75.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,1,0,0,66.68941,9.370849,0,.4853233,1
-10,1,50,1,2,127074,0,11740.07,23.89391,0,13,1,12.04819,0,0,0,0,12.04819,0,0,0,1,0,1,75.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,1,0,0,66.68941,9.370849,0,2.488915,1
-10,1,50,1,3,127074,0,11740.07,24.89391,0,13,1,4.987531,0,0,0,0,4.987531,0,0,0,1,0,1,75.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,1,0,0,66.68941,9.370849,0,1.606941,1
-10,1,50,1,4,127074,0,11740.07,25.89391,0,13,1,5.532504,0,0,0,0,5.532504,0,0,0,1,0,1,75.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,1,0,0,66.68941,9.370849,0,1.71064,1
-10,1,50,1,5,127074,0,11740.07,26.89391,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,75.8,0,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,1,0,0,66.68941,9.370849,0,,0
-4,1,100,1,1,127075,0,7539.082,.8158795,0,12,1,20.38369,1.306954,0,0,0,21.69065,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,80.7198,8.927988,1.386294,3.076881,1
-4,1,100,1,2,127075,0,7539.082,1.81588,0,12,1,20.26287,1.484118,0,0,0,21.74699,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,80.7198,8.927988,1.386294,3.079475,1
-4,1,100,1,3,127075,0,7539.082,2.81588,0,12,1,7.98005,0,0,0,0,7.98005,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,80.7198,8.927988,1.386294,2.076945,1
-4,1,100,1,4,127075,0,7539.082,3.81588,0,12,1,14.75334,0,0,0,0,14.75334,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,80.7198,8.927988,1.386294,2.69147,1
-4,1,100,1,5,127075,0,7539.082,4.815879,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,80.7198,8.927988,1.386294,,0
-4,1,100,1,1,127076,0,7539.082,25.78508,0,12,1,17.38609,0,0,0,0,17.38609,0,0,0,1,0,4,97.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.25877,8.927988,1.386294,2.85567,1
-4,1,100,1,2,127076,0,7539.082,26.78508,0,12,1,2.190581,0,47.27273,0,0,49.46331,0,0,0,0,0,4,97.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.25877,8.927988,1.386294,3.901231,1
-4,1,100,1,3,127076,0,7539.082,27.78508,0,12,1,9.476309,0,0,0,0,9.476309,0,0,0,1,0,4,97.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.25877,8.927988,1.386294,2.248795,1
-4,1,100,1,4,127076,0,7539.082,28.78508,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,97.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.25877,8.927988,1.386294,,0
-4,1,100,1,5,127076,0,7539.082,29.78508,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,97.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.25877,8.927988,1.386294,,0
-4,1,100,1,1,127077,0,7539.082,3.531827,0,12,1,16.18705,1.306954,0,0,0,17.49401,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,70.5428,8.927988,1.386294,2.861858,1
-4,1,100,1,2,127077,0,7539.082,4.531827,0,12,1,50.38335,15.73932,0,0,307.6396,373.7623,1,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,70.5428,8.927988,1.386294,5.92362,1
-4,1,100,1,3,127077,0,7539.082,5.531827,0,12,1,19.95012,1.391521,0,0,0,21.34165,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,70.5428,8.927988,1.386294,3.06066,1
-4,1,100,1,4,127077,0,7539.082,6.531827,0,12,1,18.44168,3.379437,0,0,191.9087,213.7298,1,1,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,70.5428,8.927988,1.386294,5.364713,1
-4,1,100,1,5,127077,0,7539.082,7.531827,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,70.5428,8.927988,1.386294,,0
-4,1,100,1,1,127078,0,7539.082,23.96715,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.2,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.14996,8.927988,1.386294,,0
-4,1,100,1,2,127078,0,7539.082,24.96715,1,12,1,42.71632,4.83023,34.33735,0,0,81.8839,0,0,0,4,1,4,83.2,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.14996,8.927988,1.386294,4.405303,1
-4,1,100,1,3,127078,0,7539.082,25.96715,1,12,1,34.91272,3.241895,0,0,0,38.15461,0,0,0,3,0,4,83.2,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.14996,8.927988,1.386294,3.641647,1
-4,1,100,1,4,127078,0,7539.082,26.96715,1,12,1,7.376671,2.434302,0,0,0,9.810973,0,0,0,1,0,4,83.2,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.14996,8.927988,1.386294,2.283501,1
-4,1,100,1,5,127078,0,7539.082,27.96715,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.2,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.14996,8.927988,1.386294,,0
-5,1,25,1,1,127097,0,8867.866,.9089665,1,16,1,110.1296,20.01178,0,0,0,130.1413,0,0,0,15,0,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,73.34382,9.090302,1.386294,4.868621,1
-5,1,25,1,2,127097,0,8867.866,1.908966,1,16,1,21.02426,7.929919,0,0,0,28.95418,0,0,0,4,0,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,73.34382,9.090302,1.386294,3.365715,1
-5,1,25,1,3,127097,0,8867.866,2.908967,1,16,1,52.92383,6.240786,0,0,0,59.16462,0,0,0,6,1,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,73.34382,9.090302,1.386294,4.080324,1
-5,1,25,1,1,127098,0,8867.866,34.62286,0,16,1,125.4417,25.9364,0,0,0,151.3781,0,0,0,11,0,4,57.9,30.4,1,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,1,0,63.20214,9.090302,1.386294,5.019781,1
-5,1,25,1,2,127098,0,8867.866,35.62286,0,16,1,13.47709,1.061995,0,0,0,14.53908,0,0,0,1,0,4,57.9,30.4,1,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,1,0,63.20214,9.090302,1.386294,2.676841,1
-5,1,25,1,3,127098,0,8867.866,36.62286,0,16,1,133.1695,1.965602,50.84029,0,242.7568,428.7322,1,0,0,6,1,4,57.9,30.4,1,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,1,0,63.20214,9.090302,1.386294,6.060833,1
-5,1,25,1,1,127099,0,8867.866,3.931554,1,16,1,44.75854,15.00589,0,0,0,59.76443,0,0,0,7,0,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,70.0731,9.090302,1.386294,4.090411,1
-5,1,25,1,2,127099,0,8867.866,4.931554,1,16,1,32.8841,13.29919,0,0,0,46.18329,0,0,0,6,0,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,70.0731,9.090302,1.386294,3.832618,1
-5,1,25,1,3,127099,0,8867.866,5.931554,1,16,1,26.53563,4.825553,0,0,0,31.36118,0,0,0,5,0,4,74.36826,13.73189,0,,640,640,1,1,1.386294,6.461468,0,3.258096,7.847763,1,0,0,70.0731,9.090302,1.386294,3.445571,1
-5,1,25,1,1,127100,0,8867.866,33.295,1,16,1,50.05889,18.32155,45.02356,0,0,113.404,0,0,0,2,1,4,83.2,26.1,0,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,0,0,75.64986,9.090302,1.386294,4.730957,1
-5,1,25,1,2,127100,0,8867.866,34.295,1,16,1,465.6334,18.71698,0,0,0,484.3504,0,0,0,9,0,4,83.2,26.1,0,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,0,0,75.64986,9.090302,1.386294,6.182808,1
-5,1,25,1,3,127100,0,8867.866,35.295,1,16,1,84.02949,13.94595,0,0,0,97.97543,0,0,0,4,0,4,83.2,26.1,0,,640,640,0,0,1.386294,6.461468,0,3.258096,7.847763,0,0,0,75.64986,9.090302,1.386294,4.584717,1
-11,1,0,0,1,127104,0,14157.57,52,1,13,1,42.56595,58.15348,34.43045,0,0,135.1499,0,0,0,4,0,2,82.5,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,1,0,0,67.18981,9.558075,.6931472,4.906384,1
-11,1,0,0,2,127104,0,14157.57,53,1,13,1,33.954,49.09639,0,0,0,83.05038,0,0,0,4,0,2,82.5,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,1,0,0,67.18981,9.558075,.6931472,4.419447,1
-11,1,0,0,3,127104,0,14157.57,54,1,13,1,47.8803,35.03741,0,0,0,82.91771,0,0,0,6,0,2,82.5,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,1,0,0,67.18981,9.558075,.6931472,4.417849,1
-11,1,0,0,1,127105,0,14157.57,51.43327,0,12,1,80.93525,9.106714,0,0,0,90.04197,0,0,0,2,0,2,68.8,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,0,0,0,70.86036,9.558075,.6931472,4.500276,1
-11,1,0,0,2,127105,0,14157.57,52.43327,0,12,1,60.24096,3.444688,0,0,0,63.68565,0,0,0,1,0,2,68.8,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,0,0,0,70.86036,9.558075,.6931472,4.153959,1
-11,1,0,0,3,127105,0,14157.57,53.43327,0,12,1,30.92269,7.047381,16.6783,0,0,54.64838,0,0,0,5,0,2,68.8,13.73189,0,,0,166,0,0,.6931472,5.111988,0,0,0,0,0,0,70.86036,9.558075,.6931472,4.000919,1
-11,1,0,0,1,127106,0,7895.782,22.43669,1,16,1,111.5108,12.47602,42.44005,0,0,166.4269,0,0,0,5,0,1,71.3,13.73189,0,,0,166,0,0,0,5.111988,0,0,0,0,0,0,75.76809,8.974211,0,5.114556,1
-11,1,0,0,2,127106,0,7895.782,23.43669,1,16,1,57.63965,14.15115,0,0,0,71.7908,0,0,0,5,0,1,71.3,13.73189,0,,0,166,0,0,0,5.111988,0,0,0,0,0,0,75.76809,8.974211,0,4.273757,1
-11,1,0,0,3,127106,0,7895.782,24.43669,1,16,1,73.71571,0,0,0,0,73.71571,0,0,0,3,1,1,71.3,13.73189,0,,0,166,0,0,0,5.111988,0,0,0,0,0,0,75.76809,8.974211,0,4.300216,1
-5,1,25,1,1,127107,0,8823.201,22.49966,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80,0,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,74.03484,9.085254,1.386294,,0
-5,1,25,1,2,127107,0,8823.201,23.49966,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80,0,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,74.03484,9.085254,1.386294,,0
-5,1,25,1,3,127107,0,8823.201,24.49966,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80,0,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,74.03484,9.085254,1.386294,,0
-5,1,25,1,4,127107,0,8823.201,25.49966,0,11,1,0,7.155879,0,0,0,7.155879,0,0,0,0,0,4,80,0,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,74.03484,9.085254,1.386294,1.967934,1
-5,1,25,1,5,127107,0,8823.201,26.49966,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80,0,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,74.03484,9.085254,1.386294,,0
-5,1,25,1,1,127108,0,8823.201,3.909651,0,12,1,73.52768,22.10247,0,0,0,95.63015,0,0,0,8,0,4,74.36826,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,80.33704,9.085254,1.386294,4.560488,1
-5,1,25,1,2,127108,0,8823.201,4.909651,0,12,1,15.63342,14.85175,0,0,783.3207,813.8059,1,0,0,3,0,4,74.36826,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,80.33704,9.085254,1.386294,6.701722,1
-5,1,25,1,3,127108,0,8823.201,5.909651,0,12,1,10.31941,4.186732,0,0,0,14.50614,0,0,0,2,0,4,74.36826,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,80.33704,9.085254,1.386294,2.674572,1
-5,1,25,1,4,127108,0,8823.201,6.909651,0,12,1,30.53783,7.848678,0,0,0,38.38651,0,0,0,4,0,4,74.36826,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,80.33704,9.085254,1.386294,3.647706,1
-5,1,25,1,5,127108,0,8823.201,7.909651,0,12,1,5.418924,1.763235,0,0,0,7.182159,0,0,0,1,0,4,74.36826,13.73189,0,,500,500,1,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,80.33704,9.085254,1.386294,1.9716,1
-5,1,25,1,1,127109,0,8823.201,1.629021,1,12,1,49.46996,25.78916,0,0,0,75.25912,0,0,0,10,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.82306,9.085254,1.386294,4.320937,1
-5,1,25,1,2,127109,0,8823.201,2.629021,1,12,1,67.22372,2.867924,0,0,0,70.09164,0,0,0,6,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.82306,9.085254,1.386294,4.249804,1
-5,1,25,1,3,127109,0,8823.201,3.629021,1,12,1,56.26536,0,0,0,0,56.26536,0,0,0,2,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.82306,9.085254,1.386294,4.030079,1
-5,1,25,1,4,127109,0,8823.201,4.629021,1,12,1,11.50866,0,0,0,0,11.50866,0,0,0,1,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.82306,9.085254,1.386294,2.4431,1
-5,1,25,1,5,127109,0,8823.201,5.629021,1,12,1,49.48729,2.796999,0,0,0,52.28429,0,0,0,2,0,4,74.36826,13.73189,0,,500,500,1,1,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.82306,9.085254,1.386294,3.956696,1
-5,1,25,1,1,127110,0,8823.201,21.95756,1,12,1,546.7314,14.18139,0,0,0,560.9128,0,0,0,6,0,4,70.5,26.1,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.01614,9.085254,1.386294,6.329566,1
-5,1,25,1,2,127110,0,8823.201,22.95756,1,12,1,16.71159,18.18868,24.22642,5.390836,0,59.12669,0,0,1,1,0,4,70.5,26.1,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.01614,9.085254,1.386294,4.079682,1
-5,1,25,1,3,127110,0,8823.201,23.95756,1,12,1,24.57002,4.894349,0,0,0,29.46437,0,0,0,4,0,4,70.5,26.1,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.01614,9.085254,1.386294,3.383182,1
-5,1,25,1,4,127110,0,8823.201,24.95756,1,12,1,13.67366,0,0,0,0,13.67366,0,0,0,1,0,4,70.5,26.1,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.01614,9.085254,1.386294,2.615471,1
-5,1,25,1,5,127110,0,8823.201,25.95756,1,12,1,11.25469,18.42018,0,0,0,29.67486,0,0,0,1,0,4,70.5,26.1,0,,500,500,0,0,1.386294,6.214608,0,3.258096,7.600903,0,0,0,79.01614,9.085254,1.386294,3.3903,1
-2,1,100,0,1,127133,0,7798.387,56.5065,1,12,1,0,31.35453,0,0,0,31.35453,0,0,0,0,0,2,83.2,26.1,0,,600,600,0,0,.6931472,6.39693,1,0,0,1,0,0,67.63052,8.961801,.6931472,3.445359,1
-2,1,100,0,2,127133,0,7798.387,57.5065,1,12,1,439.3046,30.83019,49.01348,0,0,519.1483,0,0,0,4,1,2,83.2,26.1,0,,600,600,0,0,.6931472,6.39693,1,0,0,1,0,0,67.63052,8.961801,.6931472,6.25219,1
-2,1,100,0,3,127133,0,7798.387,58.5065,1,12,1,17.19902,21.14496,0,0,0,38.34398,0,0,0,0,0,2,83.2,26.1,0,,600,600,0,0,.6931472,6.39693,1,0,0,1,0,0,67.63052,8.961801,.6931472,3.646598,1
-2,1,100,0,4,127133,0,7798.387,59.5065,1,12,1,11.39471,10.08204,28.10392,0,0,49.58067,0,0,0,0,1,2,83.2,26.1,0,,600,600,0,0,.6931472,6.39693,1,0,0,1,0,0,67.63052,8.961801,.6931472,3.903601,1
-2,1,100,0,5,127133,0,7798.387,60.5065,1,12,1,60.0792,25.33973,12.50521,0,0,97.92413,0,0,0,2,0,2,83.2,26.1,0,,600,600,0,0,.6931472,6.39693,1,0,0,1,0,0,67.63052,8.961801,.6931472,4.584193,1
-2,1,100,0,1,127134,0,7798.387,56.61876,0,11,1,104.5347,16.35453,0,0,0,120.8893,0,0,0,4,0,2,91.6,4.3,0,,600,600,0,0,.6931472,6.39693,1,0,0,0,0,0,73.34084,8.961801,.6931472,4.794875,1
-2,1,100,0,2,127134,0,7798.387,57.61876,0,11,1,2.695418,15.50943,0,0,0,18.20485,0,0,0,1,0,2,91.6,4.3,0,,600,600,0,0,.6931472,6.39693,1,0,0,0,0,0,73.34084,8.961801,.6931472,2.901688,1
-2,1,100,0,3,127134,0,7798.387,58.61876,0,11,1,0,20.05405,0,0,0,20.05405,0,0,0,0,0,2,91.6,4.3,0,,600,600,0,0,.6931472,6.39693,1,0,0,0,0,0,73.34084,8.961801,.6931472,2.998431,1
-2,1,100,0,4,127134,0,7798.387,59.61876,0,11,1,16.40839,.756609,0,0,0,17.165,0,0,0,1,0,2,91.6,4.3,0,,600,600,0,0,.6931472,6.39693,1,0,0,0,0,0,73.34084,8.961801,.6931472,2.842872,1
-2,1,100,0,5,127134,0,7798.387,60.61876,0,11,1,192.6928,15.47311,0,0,3459.266,3667.432,1,0,0,7,0,2,91.6,4.3,0,,600,600,0,0,.6931472,6.39693,1,0,0,0,0,0,73.34084,8.961801,.6931472,8.207247,1
-1,1,0,1,1,127135,0,10474.57,10.31348,1,11,1,11.60024,6.353361,0,0,0,17.9536,0,0,0,1,0,8,74.36826,13.73189,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,79.74134,9.256801,2.079442,2.887791,1
-1,1,0,1,2,127135,0,10474.57,11.31348,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,79.74134,9.256801,2.079442,,0
-1,1,0,1,3,127135,0,10474.57,12.31348,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,79.74134,9.256801,2.079442,,0
-1,1,0,1,4,127135,0,10474.57,13.31348,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,79.74134,9.256801,2.079442,,0
-1,1,0,1,5,127135,0,10474.57,14.31348,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,79.74134,9.256801,2.079442,,0
-1,1,0,1,1,127136,0,10474.57,39.59206,1,11,1,39.26234,32.86139,0,0,0,72.12373,0,0,0,5,0,8,36.8,17.4,0,,450,0,0,0,2.079442,0,1,0,0,1,0,0,67.32787,9.256801,2.079442,4.278383,1
-1,1,0,1,2,127136,0,10474.57,40.59206,1,11,1,73.2172,0,0,0,0,73.2172,0,0,0,3,0,8,36.8,17.4,0,,450,0,0,0,2.079442,0,1,0,0,1,0,0,67.32787,9.256801,2.079442,4.29343,1
-1,1,0,1,3,127136,0,10474.57,41.59206,1,11,1,0,18.13677,0,0,0,18.13677,0,0,0,0,0,8,36.8,17.4,0,,450,0,0,0,2.079442,0,1,0,0,1,0,0,67.32787,9.256801,2.079442,2.897941,1
-1,1,0,1,4,127136,0,10474.57,42.59206,1,11,1,147.6595,57.96237,34.4883,0,0,240.1101,0,0,0,9,2,8,36.8,17.4,0,,450,0,0,0,2.079442,0,1,0,0,1,0,0,67.32787,9.256801,2.079442,5.481098,1
-1,1,0,1,5,127136,0,10474.57,43.59206,1,11,1,138.2836,46.2053,33.30669,88.34666,0,217.7955,0,0,7,9,3,8,36.8,17.4,0,,450,0,0,0,2.079442,0,1,0,0,1,0,0,67.32787,9.256801,2.079442,5.383557,1
-1,1,0,1,1,127137,0,10474.57,18.88296,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,73.7,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,71.0389,9.256801,2.079442,,0
-1,1,0,1,2,127137,0,10474.57,19.88296,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,73.7,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,71.0389,9.256801,2.079442,,0
-1,1,0,1,3,127137,0,10474.57,20.88296,0,9,1,43.11199,.9910803,0,0,0,44.10307,0,0,0,5,0,8,73.7,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,71.0389,9.256801,2.079442,3.78653,1
-1,1,0,1,4,127137,0,10474.57,21.88296,0,9,1,14.22671,3.469481,0,0,0,17.69619,0,0,0,2,0,8,73.7,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,71.0389,9.256801,2.079442,2.873349,1
-1,1,0,1,5,127137,0,10474.57,22.88296,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,73.7,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,71.0389,9.256801,2.079442,,0
-1,1,0,1,1,127138,0,10474.57,40.93361,0,4,1,0,3.765616,0,0,0,3.765616,0,0,0,0,0,8,60,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,73.24482,9.256801,2.079442,1.325911,1
-1,1,0,1,2,127138,0,10474.57,41.93361,0,4,1,8.165487,0,44.94828,0,0,53.11377,0,0,0,0,1,8,60,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,73.24482,9.256801,2.079442,3.972436,1
-1,1,0,1,3,127138,0,10474.57,42.93361,0,4,1,11.39742,1.942517,0,0,0,13.33994,0,0,0,0,1,8,60,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,73.24482,9.256801,2.079442,2.590763,1
-1,1,0,1,4,127138,0,10474.57,43.93361,0,4,1,76.84718,12.93254,0,0,1469.986,1559.766,1,0,0,2,0,8,60,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,73.24482,9.256801,2.079442,7.352291,1
-1,1,0,1,5,127138,0,10474.57,44.93361,0,4,1,69.41523,30.73202,29.01557,0,0,129.1628,0,0,0,3,1,8,60,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,73.24482,9.256801,2.079442,4.861073,1
-1,1,0,1,1,127139,0,10474.57,16.18891,1,11,1,16.95419,3.604997,0,0,0,20.55919,0,0,0,2,0,8,43.2,13,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,67.54826,9.256801,2.079442,3.023308,1
-1,1,0,1,2,127139,0,10474.57,17.18891,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,43.2,13,0,,450,0,1,1,2.079442,0,1,0,0,0,0,0,67.54826,9.256801,2.079442,,0
-1,1,0,1,3,127139,0,10474.57,18.18891,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,43.2,13,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,67.54826,9.256801,2.079442,,0
-1,1,0,1,4,127139,0,10474.57,19.18891,1,11,1,10.09637,1.684259,35.00689,0,0,46.78752,0,0,0,0,1,8,43.2,13,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,67.54826,9.256801,2.079442,3.845616,1
-1,1,0,1,5,127139,0,10474.57,20.18891,1,11,1,21.03492,0,0,0,0,21.03492,0,0,0,3,0,8,43.2,13,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,67.54826,9.256801,2.079442,3.046184,1
-1,1,0,1,1,127140,0,10474.57,12.73922,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,77.94382,9.256801,2.079442,,0
-1,1,0,1,2,127140,0,10474.57,13.73922,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,77.94382,9.256801,2.079442,,0
-1,1,0,1,3,127140,0,10474.57,14.73922,0,11,1,26.26363,12.00198,0,0,0,38.26561,0,0,0,2,0,8,74.36826,13.73189,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,77.94382,9.256801,2.079442,3.644552,1
-1,1,0,1,4,127140,0,10474.57,15.73922,0,11,1,96.94814,7.88894,0,0,0,104.8371,0,0,0,6,0,8,74.36826,13.73189,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,77.94382,9.256801,2.079442,4.652408,1
-1,1,0,1,5,127140,0,10474.57,16.73922,0,11,1,9.255363,0,0,0,0,9.255363,0,0,0,1,0,8,74.36826,13.73189,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,77.94382,9.256801,2.079442,2.225203,1
-1,1,0,1,1,127141,0,10474.57,17.51951,0,11,1,8.328376,0,0,0,0,8.328376,0,0,0,1,0,8,63.2,8.7,0,,450,0,1,0,2.079442,0,1,0,0,0,0,0,72.88496,9.256801,2.079442,2.119668,1
-1,1,0,1,2,127141,0,10474.57,18.51951,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,63.2,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,72.88496,9.256801,2.079442,,0
-1,1,0,1,3,127141,0,10474.57,19.51951,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,63.2,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,72.88496,9.256801,2.079442,,0
-1,1,0,1,4,127141,0,10474.57,20.51951,0,11,1,39.59615,2.202845,0,0,0,41.79899,0,0,0,1,0,8,63.2,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,72.88496,9.256801,2.079442,3.732872,1
-1,1,0,1,5,127141,0,10474.57,21.51951,0,11,1,33.44552,0,0,0,0,33.44552,0,0,0,1,0,8,63.2,8.7,0,,450,0,0,0,2.079442,0,1,0,0,0,0,0,72.88496,9.256801,2.079442,3.509918,1
-11,1,0,1,1,127158,0,8062.035,60.58316,1,13,1,170.7317,82.06425,0,0,0,252.796,0,0,0,2,1,1,80,26.1,0,,0,0,0,0,0,0,0,0,0,1,0,0,73.09361,8.995046,0,5.532583,1
-11,1,0,1,2,127158,0,8062.035,61.58316,1,13,1,219.9238,49.15623,44.37126,0,0,313.4513,0,0,0,38,0,1,80,26.1,0,,0,0,0,0,0,0,0,0,0,1,0,0,73.09361,8.995046,0,5.747644,1
-11,1,0,1,3,127158,0,8062.035,62.58316,1,13,1,95.63924,79.23687,0,0,0,174.8761,0,0,0,22,0,1,80,26.1,0,,0,0,0,0,0,0,0,0,0,1,0,0,73.09361,8.995046,0,5.164078,1
-11,1,0,0,1,127174,0,10403.23,13.7577,1,12,1,51.82568,15.08834,0,0,0,66.91402,0,0,0,6,0,8,74.36826,13.73189,0,,0,60,1,1,2.079442,4.094345,0,0,0,0,0,0,83.22755,9.249968,2.079442,4.203408,1
-11,1,0,0,2,127174,0,10403.23,14.7577,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,,0
-11,1,0,0,3,127174,0,10403.23,15.7577,1,12,1,14.25061,0,2.457002,0,0,16.70762,0,0,0,1,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,2.815865,1
-11,1,0,0,4,127174,0,10403.23,16.7577,1,12,1,5.925251,0,0,0,0,5.925251,0,0,0,1,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,1.779223,1
-11,1,0,0,5,127174,0,10403.23,17.7577,1,12,1,16.88203,2.755315,0,0,0,19.63735,0,0,0,1,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,2.977433,1
-11,1,0,0,1,127175,0,10403.23,16.30938,0,12,1,34.74676,3.533569,36.9258,0,0,75.20612,0,0,0,4,1,8,80,0,0,,0,60,1,0,2.079442,4.094345,0,0,0,0,0,0,79.33826,9.249968,2.079442,4.320233,1
-11,1,0,0,2,127175,0,10403.23,17.30938,0,12,1,28.57143,9.105122,0,0,0,37.67655,0,0,0,3,0,7,80,0,0,,0,60,1,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,3.629038,1
-11,1,0,0,3,127175,0,10403.23,18.30938,0,12,1,12.53071,3.710074,0,0,0,16.24079,0,0,0,1,0,7,80,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,2.787526,1
-11,1,0,0,4,127175,0,10403.23,19.30938,0,12,1,49.64449,3.755697,0,0,0,53.40018,0,0,0,3,0,7,80,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,3.977814,1
-11,1,0,0,5,127175,0,10403.23,20.30938,0,12,1,138.1826,3.989162,0,0,0,142.1717,0,0,0,5,0,7,80,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,4.957036,1
-11,1,0,0,1,127176,0,10403.23,17.25667,0,12,1,83.53946,4.941107,0,0,0,88.48057,0,0,0,5,1,8,92.2,0,0,,0,60,1,0,2.079442,4.094345,0,0,0,0,0,0,79.33826,9.249968,2.079442,4.482783,1
-11,1,0,0,2,127176,0,10403.23,18.25667,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,92.2,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,,0
-11,1,0,0,3,127176,0,10403.23,19.25667,0,12,1,8.353808,3.012285,0,0,0,11.36609,0,0,0,1,0,7,92.2,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,2.430635,1
-11,1,0,0,4,127176,0,10403.23,20.25667,0,12,1,5.925251,7.452142,0,0,0,13.37739,0,0,0,1,0,7,92.2,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,2.593566,1
-11,1,0,0,5,127176,0,10403.23,21.25667,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,92.2,0,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,79.33826,9.249968,1.94591,,0
-11,1,0,0,1,127177,0,10403.23,41.25941,0,17,.8876712,176.119,1.766784,0,0,0,177.8857,0,0,0,6,0,8,81.1,13,0,,0,60,0,0,2.079442,4.094345,0,0,0,0,0,0,76.12859,9.249968,2.079442,5.181141,1
-11,1,0,0,1,127178,0,10403.23,6.485969,1,12,1,8.833922,0,0,0,0,8.833922,0,0,0,0,1,8,74.36826,13.73189,0,,0,60,1,1,2.079442,4.094345,0,0,0,0,0,0,83.22755,9.249968,2.079442,2.178599,1
-11,1,0,0,2,127178,0,10403.23,7.485969,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,,0
-11,1,0,0,3,127178,0,10403.23,8.485969,1,12,1,8.353808,0,0,0,0,8.353808,0,0,0,0,1,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,2.122718,1
-11,1,0,0,4,127178,0,10403.23,9.485969,1,12,1,20.96627,4.175023,0,0,0,25.14129,0,0,0,3,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,3.224512,1
-11,1,0,0,5,127178,0,10403.23,10.48597,1,12,1,74.19759,8.69529,0,0,0,82.89288,0,0,0,6,1,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,4.417549,1
-11,1,0,0,1,127179,0,10403.23,10.9514,1,12,1,14.7232,0,0,0,0,14.7232,0,0,0,1,1,8,74.36826,13.73189,0,,0,60,1,1,2.079442,4.094345,0,0,0,0,0,0,83.22755,9.249968,2.079442,2.689425,1
-11,1,0,0,2,127179,0,10403.23,11.9514,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,,0
-11,1,0,0,3,127179,0,10403.23,12.9514,1,12,1,12.53071,0,0,0,0,12.53071,0,0,0,1,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,2.528183,1
-11,1,0,0,4,127179,0,10403.23,13.9514,1,12,1,36.69098,4.453054,0,0,0,41.14403,0,0,0,2,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,3.717079,1
-11,1,0,0,5,127179,0,10403.23,14.9514,1,12,1,41.89246,3.397249,0,0,0,45.2897,0,0,0,3,1,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,83.22755,9.249968,1.94591,3.81308,1
-11,1,0,0,1,127180,0,10403.23,5.045859,1,12,1,27.67962,7.579505,0,0,0,35.25913,0,0,0,2,1,8,74.36826,13.73189,0,,0,60,1,1,2.079442,4.094345,0,0,0,0,0,0,79.79594,9.249968,2.079442,3.562724,1
-11,1,0,0,2,127180,0,10403.23,6.045859,1,12,1,9.703504,6.938005,0,0,0,16.64151,0,0,0,2,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,79.79594,9.249968,1.94591,2.8119,1
-11,1,0,0,3,127180,0,10403.23,7.045859,1,12,1,17.19902,1.371007,0,0,0,18.57002,0,0,0,1,1,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,79.79594,9.249968,1.94591,2.921549,1
-11,1,0,0,4,127180,0,10403.23,8.045859,1,12,1,25.52416,6.540565,0,0,0,32.06472,0,0,0,4,0,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,79.79594,9.249968,1.94591,3.467756,1
-11,1,0,0,5,127180,0,10403.23,9.045859,1,12,1,13.33889,2.067528,0,0,0,15.40642,0,0,0,1,1,7,74.36826,13.73189,0,,0,60,1,1,1.94591,4.094345,0,0,0,0,0,0,79.79594,9.249968,1.94591,2.734784,1
-11,1,0,0,1,127182,0,10403.23,42.16564,1,12,1,26.50177,17.54417,24.6172,0,0,68.66313,0,0,0,1,1,8,84.2,13,0,,0,60,0,0,2.079442,4.094345,0,0,0,0,0,0,77.33669,9.249968,2.079442,4.229212,1
-11,1,0,0,2,127182,0,10403.23,43.16564,1,12,1,5.929919,9.681941,0,0,0,15.61186,0,0,0,1,0,7,84.2,13,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,77.33669,9.249968,1.94591,2.748031,1
-11,1,0,0,3,127182,0,10403.23,44.16564,1,12,1,46.92875,25.14496,34.40786,0,0,106.4816,0,0,0,4,1,7,84.2,13,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,77.33669,9.249968,1.94591,4.667972,1
-11,1,0,0,4,127182,0,10403.23,45.16564,1,12,1,11.8505,17.41112,0,0,0,29.26162,0,0,0,2,0,7,84.2,13,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,77.33669,9.249968,1.94591,3.376277,1
-11,1,0,0,5,127182,0,10403.23,46.16564,1,12,1,77.32388,33.23885,27.44477,0,0,138.0075,0,0,0,5,1,7,84.2,13,0,,0,60,0,0,1.94591,4.094345,0,0,0,0,0,0,77.33669,9.249968,1.94591,4.927308,1
-1,1,0,1,1,127199,0,8439.206,38.84737,0,11,1,74.20495,6.478209,0,0,0,80.68316,0,0,0,14,0,2,97.9,21.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,68.78981,9.040762,.6931472,4.39053,1
-1,1,0,1,2,127199,0,8439.206,39.84737,0,11,1,90.97035,3.045822,0,0,0,94.01617,0,0,0,4,0,2,97.9,21.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,68.78981,9.040762,.6931472,4.543467,1
-1,1,0,1,3,127199,0,8439.206,40.84737,0,11,1,83.04668,13.91646,31.76904,0,637.5676,766.2997,1,0,0,11,1,2,97.9,21.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,68.78981,9.040762,.6931472,6.641573,1
-1,1,0,1,4,127199,0,8439.206,41.84737,0,11,1,81.77302,5.64722,0,0,13.67366,101.0939,0,0,0,13,0,2,97.9,21.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,68.78981,9.040762,.6931472,4.61605,1
-1,1,0,1,5,127199,0,8439.206,42.84737,0,11,1,142.7678,30.80867,0,0,0,173.5765,0,0,0,12,0,2,97.9,21.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,68.78981,9.040762,.6931472,5.156619,1
-1,1,0,1,1,127200,0,8439.206,42.18207,1,12,1,182.5677,30.06478,0,0,634.8233,847.4558,1,0,0,24,0,2,89.5,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.85607,9.040762,.6931472,6.742239,1
-1,1,0,1,2,127200,0,8439.206,43.18207,1,12,1,228.1671,29.54717,21.78437,0,0,279.4987,0,0,0,12,1,2,89.5,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.85607,9.040762,.6931472,5.632998,1
-1,1,0,1,3,127200,0,8439.206,44.18207,1,12,1,176.1671,53.73464,38.25553,0,1246.246,1514.403,1,0,0,18,0,2,89.5,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.85607,9.040762,.6931472,7.322776,1
-1,1,0,1,4,127200,0,8439.206,45.18207,1,12,1,173.1996,76.36281,0,0,2648.706,2898.268,2,0,0,19,0,2,89.5,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.85607,9.040762,.6931472,7.971869,1
-1,1,0,1,5,127200,0,8439.206,46.18207,1,12,1,145.6232,143.4181,44.73948,0,442.0175,775.7983,1,0,0,18,0,2,89.5,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,70.85607,9.040762,.6931472,6.653893,1
-10,1,50,0,1,127204,0,3783.499,58.65572,1,12,1,41.22497,8.892815,0,0,0,50.11779,0,0,0,5,0,1,52.6,30.4,1,,0,0,0,0,0,0,0,3.931826,0,1,0,0,65.2276,8.238668,0,3.914376,1
-10,1,50,0,2,127204,0,3783.499,59.65572,1,12,1,499.6765,33.69272,0,0,0,533.3693,0,0,0,23,0,1,52.6,30.4,1,,0,0,0,0,0,0,0,3.931826,0,1,0,0,65.2276,8.238668,0,6.279214,1
-10,1,50,0,3,127204,0,3783.499,60.65572,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,52.6,30.4,1,,0,0,0,0,0,0,0,3.931826,0,1,0,0,65.2276,8.238668,0,,0
-10,1,50,1,1,127205,0,3455.335,26.43942,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,53.7,34.8,1,,1000,0,0,0,0,0,0,3.931826,7.600903,1,0,0,66.19184,8.147964,0,,0
-10,1,50,1,2,127205,0,3455.335,27.43942,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,53.7,34.8,1,,1000,0,0,0,0,0,0,3.931826,7.600903,1,0,0,66.19184,8.147964,0,,0
-10,1,50,1,3,127205,0,3455.335,28.43942,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,53.7,34.8,1,,1000,0,0,0,0,0,0,3.931826,7.600903,1,0,0,66.19184,8.147964,0,,0
-1,1,0,0,1,127206,0,7291.563,28.61054,1,12,1,106.8905,16.87279,0,0,825.4182,949.1814,1,0,0,6,0,4,76.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,1,0,0,71.54827,8.89461,1.386294,6.8556,1
-1,1,0,0,2,127206,0,7291.563,29.61054,1,12,1,7.008086,.5390835,0,0,0,7.54717,0,0,0,1,0,4,76.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,1,0,0,71.54827,8.89461,1.386294,2.021173,1
-1,1,0,0,3,127206,0,7291.563,30.61054,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,1,0,0,71.54827,8.89461,1.386294,,0
-1,1,0,0,1,127207,0,7291.563,29.08419,0,16,1,0,2.267373,0,0,0,2.267373,0,0,0,0,0,4,86.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,0,0,0,78.51466,8.89461,1.386294,.8186221,1
-1,1,0,0,2,127207,0,7291.563,30.08419,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,0,0,0,78.51466,8.89461,1.386294,,0
-1,1,0,0,3,127207,0,7291.563,31.08419,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.3,13.73189,0,,450,374,0,0,1.386294,5.924256,1,0,0,0,0,0,78.51466,8.89461,1.386294,,0
-1,1,0,0,1,127208,0,7291.563,1.609856,0,12,1,24.14605,7.302709,0,0,0,31.44876,0,0,0,3,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,79.29922,8.89461,1.386294,3.44836,1
-1,1,0,0,2,127208,0,7291.563,2.609856,0,12,1,29.46092,4.25876,0,0,0,33.71968,0,0,0,3,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,79.29922,8.89461,1.386294,3.518082,1
-1,1,0,0,3,127208,0,7291.563,3.609856,0,12,1,25.06142,8.280098,0,0,0,33.34152,0,0,0,3,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,79.29922,8.89461,1.386294,3.506804,1
-1,1,0,0,1,127209,0,7291.563,4.191649,0,12,1,22.9682,2.090695,0,0,0,25.05889,0,0,0,2,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,78.32853,8.89461,1.386294,3.221229,1
-1,1,0,0,2,127209,0,7291.563,5.191649,0,12,1,9.16442,0,0,0,0,9.16442,0,0,0,1,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,78.32853,8.89461,1.386294,2.215329,1
-1,1,0,0,3,127209,0,7291.563,6.191649,0,12,1,8.845209,4.864865,0,0,0,13.71007,0,0,0,1,0,4,74.36826,13.73189,0,,450,374,1,0,1.386294,5.924256,1,0,0,0,0,0,78.32853,8.89461,1.386294,2.618131,1
-11,1,0,1,1,127217,0,4460.298,56.08487,1,16,1,834.5112,125.4358,286.0718,0,1492.156,2738.174,1,0,0,1,106,1,61.1,21.7,1,,0,0,0,0,0,0,0,0,0,0,0,1,47.66432,8.403195,0,7.915047,1
-11,1,0,1,2,127217,0,4460.298,57.08487,1,16,1,430.1887,142.5067,90.66846,0,0,663.3639,0,0,0,5,38,1,61.1,21.7,1,,0,0,0,0,0,0,0,0,0,0,0,1,47.66432,8.403195,0,6.497324,1
-11,1,0,1,3,127217,0,4460.298,58.08487,1,16,1,457.4939,49.43489,467.7985,0,1704.619,2679.346,1,0,0,3,16,1,61.1,21.7,1,,0,0,0,0,0,0,0,0,0,0,0,1,47.66432,8.403195,0,7.893328,1
-11,1,0,1,4,127217,0,4460.298,59.08487,1,16,1,515.041,0,114.608,0,9089.563,9719.212,3,0,0,9,6,1,61.1,21.7,1,,0,0,0,0,0,0,0,0,0,0,0,1,47.66432,8.403195,0,9.18186,1
-11,1,0,1,5,127217,0,4460.298,60.08487,1,16,1,312.8387,0,180.5544,208.4202,6626.84,7120.233,2,0,10,4,0,1,61.1,21.7,1,,0,0,0,0,0,0,0,0,0,0,0,1,47.66432,8.403195,0,8.870696,1
-11,1,0,1,1,127219,0,5075.062,21.22108,1,13,1,96.10312,29.09472,32.57794,0,0,157.7758,0,0,0,7,0,2,70.5,13,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.88802,8.532291,.6931472,5.061175,1
-11,1,0,1,2,127219,0,5075.062,22.22108,1,13,1,74.75356,37.21249,0,0,0,111.966,0,0,0,9,0,2,70.5,13,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.88802,8.532291,.6931472,4.718196,1
-11,1,0,1,3,127219,0,5075.062,23.22108,1,13,1,33.66584,13.31671,3.566085,0,1794.175,1844.723,1,0,0,1,0,2,70.5,13,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.88802,8.532291,.6931472,7.520084,1
-11,1,0,1,4,127219,0,5075.062,24.22108,1,13,1,39.18856,9.930843,4.329184,0,0,53.44859,0,0,0,4,0,3,70.5,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,65.88802,8.532291,1.098612,3.97872,1
-11,1,0,1,5,127219,0,5075.062,25.22108,1,13,1,71.43462,27.57512,0,0,900.3851,999.3948,1,0,0,1,0,3,70.5,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,65.88802,8.532291,1.098612,6.90715,1
-11,1,0,1,1,127220,0,5075.062,23.34839,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90.5,4.3,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.43843,8.532291,.6931472,,0
-11,1,0,1,2,127220,0,5075.062,24.34839,0,12,1,6.024096,3.012048,0,0,0,9.036144,0,0,0,1,0,2,90.5,4.3,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.43843,8.532291,.6931472,2.201233,1
-11,1,0,1,3,127220,0,5075.062,25.34839,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90.5,4.3,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.43843,8.532291,.6931472,,0
-11,1,0,1,4,127220,0,5075.062,26.34839,0,12,1,4.61042,10.83449,0,0,0,15.44491,0,0,0,1,0,3,90.5,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.43843,8.532291,1.098612,2.737279,1
-11,1,0,1,5,127220,0,5075.062,27.34839,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,90.5,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.43843,8.532291,1.098612,,0
-3,1,100,0,1,127222,0,2485.112,56.53114,1,11,1,180.5065,83.48646,37.63251,0,1603.139,1904.764,2,0,0,13,0,1,46.3,13.73189,1,,562,562,0,0,0,6.331502,1,0,0,1,0,0,61.29097,7.818475,0,7.552114,1
-3,1,100,0,2,127222,0,2485.112,57.53114,1,11,1,0,19.6496,0,0,0,19.6496,0,0,0,0,0,1,46.3,13.73189,1,,562,562,0,0,0,6.331502,1,0,0,1,0,0,61.29097,7.818475,0,2.978057,1
-3,1,100,0,3,127222,0,2485.112,58.53114,1,11,1,235.6658,89.30713,0,0,482.5897,807.5627,1,0,0,7,1,1,46.3,13.73189,1,,562,562,0,0,0,6.331502,1,0,0,1,0,0,61.29097,7.818475,0,6.694021,1
-3,1,100,0,4,127222,0,2485.112,59.53114,1,11,1,231.8824,72.08295,202.9353,0,297.7211,804.6217,1,0,0,12,0,1,46.3,13.73189,1,,562,562,0,0,0,6.331502,1,0,0,1,0,0,61.29097,7.818475,0,6.690372,1
-3,1,100,0,5,127222,0,2485.112,60.53114,1,11,1,302.8345,81.74239,0,0,0,384.5769,0,0,0,15,7,1,46.3,13.73189,1,,562,562,0,0,0,6.331502,1,0,0,1,0,0,61.29097,7.818475,0,5.952144,1
-1,1,0,1,1,127229,0,3681.762,55.59753,1,12,1,0,4.842356,0,0,0,4.842356,0,0,0,0,0,1,55.8,13,1,,150,222,0,0,0,5.402678,1,0,0,1,0,0,65.05453,8.211418,0,1.577401,1
-1,1,0,1,2,127229,0,3681.762,56.59753,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,55.8,13,1,,150,222,0,0,0,5.402678,1,0,0,1,0,0,65.05453,8.211418,0,,0
-1,1,0,1,3,127229,0,3681.762,57.59753,1,12,1,3.964321,0,15.60951,0,0,19.57384,0,0,0,1,0,1,55.8,13,1,,150,222,0,0,0,5.402678,1,0,0,1,0,0,65.05453,8.211418,0,2.974194,1
-1,1,0,1,4,127229,0,3681.762,58.59753,1,12,1,253.6255,2.257916,0,0,0,255.8834,0,0,0,4,0,1,55.8,13,1,,150,222,0,0,0,5.402678,1,0,0,1,0,0,65.05453,8.211418,0,5.544722,1
-1,1,0,1,5,127229,0,3681.762,59.59753,1,12,1,29.44888,28.78418,26.92469,0,844.1818,929.3395,1,0,0,3,1,1,55.8,13,1,,150,222,0,0,0,5.402678,1,0,0,1,0,0,65.05453,8.211418,0,6.834474,1
-4,1,100,0,1,127230,0,5570.099,14.67488,1,12,1,13.78897,2.014389,36.33693,0,0,52.14029,0,0,0,2,0,3,85,13.73189,0,,749,749,1,1,1.098612,6.618739,1,0,0,1,0,0,68.3137,8.625348,1.098612,3.953938,1
-4,1,100,0,1,127231,0,5570.099,37.20192,1,12,1,36.57074,1.7506,37.6199,0,0,75.94125,0,0,0,3,1,3,76.3,13.73189,0,,749,749,0,0,1.098612,6.618739,1,0,0,1,0,0,71.75487,8.625348,1.098612,4.32996,1
-4,1,100,0,2,127231,0,5570.099,38.20192,1,12,1,486.2267,23.44469,13.73494,0,0,523.4064,0,0,0,11,0,2,76.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,71.75487,8.625348,.6931472,6.260358,1
-4,1,100,0,3,127231,0,5570.099,39.20192,1,12,1,26.18454,2.543641,23.97506,0,822.2593,874.9626,1,0,0,3,1,2,76.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,71.75487,8.625348,.6931472,6.774181,1
-4,1,100,0,4,127231,0,5570.099,40.20192,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,76.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,71.75487,8.625348,.6931472,,0
-4,1,100,0,5,127231,0,5570.099,41.20192,1,12,1,77.86712,0,3.343208,0,0,81.21033,0,0,0,4,0,2,76.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,71.75487,8.625348,.6931472,4.397042,1
-4,1,100,0,1,127232,0,5570.099,16.08487,1,12,1,93.89088,19.2506,36.57074,0,0,149.7122,0,0,0,8,1,3,26.3,13.73189,0,,749,749,1,1,1.098612,6.618739,1,0,0,1,0,0,68.3137,8.625348,1.098612,5.008715,1
-4,1,100,0,2,127232,0,5570.099,17.08487,1,12,1,23.00109,4.211391,0,0,599.9178,627.1303,1,0,0,1,0,2,26.3,13.73189,0,,749,749,1,1,.6931472,6.618739,1,0,0,1,0,0,68.3137,8.625348,.6931472,6.441154,1
-4,1,100,0,3,127232,0,5570.099,18.08487,1,12,1,4.987531,3.63591,0,0,0,8.623442,0,0,0,1,0,2,26.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,68.3137,8.625348,.6931472,2.154484,1
-4,1,100,0,4,127232,0,5570.099,19.08487,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,26.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,68.3137,8.625348,.6931472,,0
-4,1,100,0,5,127232,0,5570.099,20.08487,1,12,1,31.78163,0,0,0,665.912,697.6936,1,0,0,1,0,2,26.3,13.73189,0,,749,749,0,0,.6931472,6.618739,1,0,0,1,0,0,68.3137,8.625348,.6931472,6.54778,1
-8,1,50,1,1,127238,0,5155.707,51.30458,1,15,1,16.18705,0,0,0,0,16.18705,0,0,0,2,0,1,93.3,13,0,,389,389,0,0,0,5.963579,0,3.931826,6.656726,0,0,0,78.97939,8.548054,0,2.784212,1
-8,1,50,1,2,127238,0,5155.707,52.30458,1,15,1,52.30011,0,0,0,0,52.30011,0,0,0,1,0,1,93.3,13,0,,389,389,0,0,0,5.963579,0,3.931826,6.656726,0,0,0,78.97939,8.548054,0,3.956999,1
-8,1,50,1,3,127238,0,5155.707,53.30458,1,15,1,14.96259,0,36.73317,0,0,51.69576,0,0,0,1,0,1,93.3,13,0,,389,389,0,0,0,5.963579,0,3.931826,6.656726,0,0,0,78.97939,8.548054,0,3.945376,1
-11,1,0,0,1,127241,0,4911.911,23.44148,0,16,1,88.12949,0,45.67146,0,0,133.801,0,0,0,2,1,1,82.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,77.1768,8.499621,0,4.896353,1
-11,1,0,0,2,127241,0,4911.911,24.44148,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,82.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,77.1768,8.499621,0,,0
-11,1,0,0,3,127241,0,4911.911,25.44148,0,16,1,8.977556,0,37.00748,0,0,45.98504,0,0,0,0,1,1,82.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,77.1768,8.499621,0,3.828316,1
-11,1,0,1,1,127244,0,15527.12,18.00958,0,12.32507,1,28.94582,6.613663,23.02709,0,0,58.58657,0,0,0,1,2,10,70.5,8.7,0,,0,0,0,0,2.302585,0,0,0,0,0,0,0,77.83328,9.650408,2.302585,4.070506,1
-11,1,0,1,1,127245,0,15527.12,16.33402,0,12,1,70.67138,7.21437,23.11543,0,0,101.0012,0,0,0,3,3,10,80,4.3,0,,0,0,1,0,2.302585,0,0,0,0,0,0,0,80.35947,9.650408,2.302585,4.615132,1
-11,1,0,1,2,127245,0,15527.12,17.33402,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,80,4.3,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,80.35947,9.650408,2.079442,,0
-11,1,0,1,3,127245,0,15527.12,18.33402,0,12,1,28.34889,2.211302,28.24079,0,0,58.80098,0,0,0,2,1,8,80,4.3,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,80.35947,9.650408,2.079442,4.074159,1
-11,1,0,1,4,127245,0,15527.12,19.33402,0,12,1,19.59891,7.201458,0,0,0,26.80037,0,0,0,2,0,8,80,4.3,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,80.35947,9.650408,2.079442,3.288415,1
-11,1,0,1,5,127245,0,15527.12,20.33402,0,12,1,50.43768,6.71113,25.70238,0,0,82.85119,0,0,0,2,1,8,80,4.3,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,80.35947,9.650408,2.079442,4.417046,1
-11,1,0,1,1,127246,0,15527.12,14.9514,0,12,1,49.46996,60.03534,92.66785,0,0,202.1731,0,0,0,5,2,10,82.1,13,0,,0,0,1,0,2.302585,0,0,0,0,0,0,0,75.09638,9.650408,2.302585,5.309124,1
-11,1,0,1,2,127246,0,15527.12,15.9514,0,12,1,45.8221,48.95957,69.77898,0,0,164.5607,0,0,0,7,0,8,82.1,13,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.09638,9.650408,2.079442,5.103279,1
-11,1,0,1,3,127246,0,15527.12,16.9514,0,12,1,28.00983,50.78133,98.86978,0,0,177.6609,0,0,0,3,1,8,82.1,13,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.09638,9.650408,2.079442,5.179877,1
-11,1,0,1,4,127246,0,15527.12,17.9514,0,12,1,25.97995,34.50775,54.37101,0,0,114.8587,0,0,0,1,0,8,82.1,13,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,75.09638,9.650408,2.079442,4.743703,1
-11,1,0,1,5,127246,0,15527.12,18.9514,0,12,1,1684.869,69.70821,95.03543,0,8297.091,10146.7,2,0,0,14,0,8,82.1,13,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,75.09638,9.650408,2.079442,9.224904,1
-11,1,0,1,1,127247,0,15527.12,11.41136,0,12,1,22.37927,0,0,0,0,22.37927,0,0,0,0,1,10,74.36826,13.73189,0,,0,0,1,0,2.302585,0,0,0,0,0,0,0,84.97813,9.650408,2.302585,3.108135,1
-11,1,0,1,2,127247,0,15527.12,12.41136,0,12,1,7.54717,7.061995,0,0,0,14.60916,0,0,0,2,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,2.681649,1
-11,1,0,1,3,127247,0,15527.12,13.41136,0,12,1,23.9312,5.724816,0,0,0,29.65602,0,0,0,3,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,3.389665,1
-11,1,0,1,4,127247,0,15527.12,14.41136,0,12,1,77.25616,29.46673,0,0,0,106.7229,0,0,0,6,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,4.670236,1
-11,1,0,1,5,127247,0,15527.12,15.41136,0,12,1,18.34097,3.939141,0,0,0,22.28012,0,0,0,2,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,3.103695,1
-11,1,0,1,1,127248,0,15527.12,13.37988,0,12,1,8.244994,10.24735,0,0,0,18.49234,0,0,0,1,0,10,74.36826,13.73189,0,,0,0,1,0,2.302585,0,0,0,0,0,0,0,84.97813,9.650408,2.302585,2.917357,1
-11,1,0,1,2,127248,0,15527.12,14.37988,0,12,1,60.37736,21.67116,12.93801,0,0,94.98653,0,0,0,5,1,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,4.553735,1
-11,1,0,1,3,127248,0,15527.12,15.37988,0,12,1,52.08845,0,0,0,0,52.08845,0,0,0,3,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,3.952943,1
-11,1,0,1,4,127248,0,15527.12,16.37988,0,12,1,21.87785,13.53692,0,0,0,35.41477,0,0,0,4,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,3.567129,1
-11,1,0,1,5,127248,0,15527.12,17.37988,0,12,1,31.67987,10.29596,0,0,0,41.97582,0,0,0,3,1,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,0,0,0,0,0,0,84.97813,9.650408,2.079442,3.737094,1
-11,1,0,1,1,127249,0,15527.12,43.93977,1,12,1,59.48174,2.226148,37.53828,0,0,99.24617,0,0,0,3,2,10,89.5,26.1,0,,0,0,0,0,2.302585,0,0,0,0,0,0,0,77.41725,9.650408,2.302585,4.597603,1
-11,1,0,1,2,127249,0,15527.12,44.93977,1,12,1,24.79784,2.264151,0,0,0,27.06199,0,0,0,3,0,8,89.5,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.41725,9.650408,2.079442,3.29813,1
-11,1,0,1,3,127249,0,15527.12,45.93977,1,12,1,76.65848,2.407862,42.32433,0,0,121.3907,0,0,0,6,1,8,89.5,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.41725,9.650408,2.079442,4.799014,1
-11,1,0,1,4,127249,0,15527.12,46.93977,1,12,1,75.68369,24.49863,0,0,0,100.1823,0,0,0,8,1,8,89.5,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.41725,9.650408,2.079442,4.606992,1
-11,1,0,1,5,127249,0,15527.12,47.93977,1,12,1,50.85452,0,41.10046,0,0,91.95498,0,0,0,5,1,8,89.5,26.1,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,77.41725,9.650408,2.079442,4.521299,1
-11,1,0,1,1,127250,0,15527.12,46.24504,0,12,1,26.50177,10.36514,28.41578,0,0,65.28268,0,0,0,1,2,10,87.4,21.7,0,,0,0,0,0,2.302585,0,0,0,0,0,0,0,76.73125,9.650408,2.302585,4.178727,1
-11,1,0,1,2,127250,0,15527.12,47.24504,0,12,1,79.24529,12.18329,0,0,0,91.42857,0,0,0,3,0,8,87.4,21.7,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,76.73125,9.650408,2.079442,4.515558,1
-11,1,0,1,3,127250,0,15527.12,48.24504,0,12,1,124.8157,51.03194,0,0,0,175.8477,0,0,0,9,0,8,87.4,21.7,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,76.73125,9.650408,2.079442,5.169618,1
-11,1,0,1,4,127250,0,15527.12,49.24504,0,12,1,31.9052,70.98906,0,0,0,102.8943,0,0,0,4,0,8,87.4,21.7,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,76.73125,9.650408,2.079442,4.633702,1
-11,1,0,1,5,127250,0,15527.12,50.24504,0,12,1,52.10505,60.40017,39.57899,0,0,152.0842,0,0,0,6,1,8,87.4,21.7,0,,0,0,0,0,2.079442,0,0,0,0,0,0,0,76.73125,9.650408,2.079442,5.024434,1
-11,1,0,1,1,127251,0,15527.12,3.915127,1,12,1,5.889281,27.53239,0,0,0,33.42167,0,0,0,1,0,10,74.36826,13.73189,0,,0,0,1,1,2.302585,0,0,0,0,0,0,0,81.03252,9.650408,2.302585,3.509205,1
-11,1,0,1,2,127251,0,15527.12,4.915127,1,12,1,17.78976,13.45014,0,0,353.0728,384.3127,1,0,0,3,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,5.951457,1
-11,1,0,1,3,127251,0,15527.12,5.915127,1,12,1,6.879607,0,0,0,0,6.879607,0,0,0,1,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,1.928561,1
-11,1,0,1,4,127251,0,15527.12,6.915127,1,12,1,5.925251,14.15223,0,0,0,20.07748,0,0,0,1,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,2.999599,1
-11,1,0,1,5,127251,0,15527.12,7.915127,1,12,1,51.47978,17.15298,0,0,0,68.63277,0,0,0,6,1,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,4.22877,1
-11,1,0,1,1,127252,0,15527.12,19.70157,1,13,1,20.31802,2.120141,11.69611,0,0,34.13428,0,0,0,1,2,10,84.2,13,0,,0,0,0,0,2.302585,0,0,0,0,0,0,0,78.72446,9.650408,2.302585,3.530302,1
-11,1,0,1,1,127253,0,15527.12,.881588,1,12,1,23.85159,25.17668,0,0,0,49.02827,0,0,0,3,0,10,74.36826,13.73189,0,,0,0,1,1,2.302585,0,0,0,0,0,0,0,81.03252,9.650408,2.302585,3.892397,1
-11,1,0,1,2,127253,0,15527.12,1.881588,1,12,1,27.7628,22.74933,0,0,0,50.51213,0,0,0,5,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,3.922214,1
-11,1,0,1,3,127253,0,15527.12,2.881588,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,,0
-11,1,0,1,4,127253,0,15527.12,3.881588,1,12,1,51.95989,52.66636,0,0,0,104.6263,0,0,0,10,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,4.650394,1
-11,1,0,1,5,127253,0,15527.12,4.881588,1,12,1,254.2726,122.9054,0,0,0,377.178,0,0,0,51,1,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,0,0,0,0,0,0,81.03252,9.650408,2.079442,5.932717,1
-3,1,100,1,1,127297,0,2896.791,6.773443,0,14,1,20.02356,0,0,0,0,20.02356,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,2.996909,1
-3,1,100,1,2,127297,0,2896.791,7.773443,0,14,1,44.12399,2.668464,30.98652,0,0,77.77898,0,0,0,4,2,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,4.353871,1
-3,1,100,1,3,127297,0,2896.791,8.773443,0,14,1,9.82801,2.447175,15.40541,0,0,27.68059,0,0,0,0,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,3.320731,1
-3,1,100,1,4,127297,0,2896.791,9.773443,0,14,1,95.71559,15.01823,0,0,0,110.7338,0,0,0,6,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.386294,4.707129,1
-3,1,100,1,5,127297,0,2896.791,10.77344,0,14,1,81.70071,46.26928,28.49104,0,0,156.461,0,0,0,23,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.386294,5.052807,1
-3,1,100,1,1,127298,0,2896.791,41.39631,0,14,1,54.77032,90.02945,0,0,0,144.7998,0,0,0,23,0,5,62.1,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,73.19926,7.971704,1.609438,4.975352,1
-3,1,100,1,2,127298,0,2896.791,42.39631,0,14,1,68.46362,0,0,0,0,68.46362,0,0,0,12,2,5,62.1,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,73.19926,7.971704,1.609438,4.226303,1
-3,1,100,1,3,127298,0,2896.791,43.39631,0,14,1,61.42506,66.82064,0,0,0,128.2457,0,0,0,17,0,5,62.1,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,73.19926,7.971704,1.609438,4.853948,1
-3,1,100,1,4,127298,0,2896.791,44.39631,0,14,1,72.47038,40,38.10392,0,0,150.5743,0,0,0,11,1,4,62.1,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.19926,7.971704,1.386294,5.014457,1
-3,1,100,1,5,127298,0,2896.791,45.39631,0,14,1,98.79116,68.77866,12.08837,0,0,179.6582,0,0,0,13,0,4,62.1,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,73.19926,7.971704,1.386294,5.191056,1
-3,1,100,1,1,127299,0,2896.791,36.58316,1,14,1,34.15783,4.652533,25.47703,0,0,64.2874,0,0,0,2,1,5,92.6,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.37424,7.971704,1.609438,4.163363,1
-3,1,100,1,2,127299,0,2896.791,37.58316,1,14,1,12.39892,0,0,0,0,12.39892,0,0,0,2,0,5,92.6,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.37424,7.971704,1.609438,2.51761,1
-3,1,100,1,3,127299,0,2896.791,38.58316,1,14,1,6.388206,0,0,0,0,6.388206,0,0,0,1,0,5,92.6,13,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,69.37424,7.971704,1.609438,1.854454,1
-3,1,100,1,4,127299,0,2896.791,39.58316,1,14,1,345.0319,0,27.62534,0,0,372.6573,0,0,0,5,1,4,92.6,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,69.37424,7.971704,1.386294,5.920659,1
-3,1,100,1,5,127299,0,2896.791,40.58316,1,14,1,16.67361,4.614423,0,0,0,21.28804,0,0,0,2,0,4,92.6,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,69.37424,7.971704,1.386294,3.058145,1
-3,1,100,1,1,127300,0,2896.791,11.66324,0,14,1,9.422851,0,0,0,0,9.422851,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,2.243138,1
-3,1,100,1,2,127300,0,2896.791,12.66324,0,14,1,13.47709,0,15.21294,0,0,28.69003,0,0,0,2,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,3.35655,1
-3,1,100,1,3,127300,0,2896.791,13.66324,0,14,1,64.71745,2.432432,32.86486,0,0,100.0147,0,0,0,2,2,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.609438,4.605318,1
-3,1,100,1,4,127300,0,2896.791,14.66324,0,14,1,27.34731,4.512306,0,0,0,31.85962,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.386294,3.461339,1
-3,1,100,1,5,127300,0,2896.791,15.66324,0,14,1,47.10296,9.349729,29.62068,0,0,86.07336,0,0,0,5,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.37522,7.971704,1.386294,4.4552,1
-3,1,100,1,1,127301,0,2896.791,14.59822,0,14,1,45.9364,13.69258,36.9258,0,0,96.55477,0,0,0,4,1,5,78.9,4.3,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,76.82748,7.971704,1.609438,4.57011,1
-3,1,100,1,2,127301,0,2896.791,15.59822,0,14,1,18.32884,28.93262,0,0,0,47.26146,0,0,0,3,0,5,78.9,4.3,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,76.82748,7.971704,1.609438,3.855695,1
-3,1,100,1,3,127301,0,2896.791,16.59822,0,14,1,63.88206,26.3145,31.32678,0,0,121.5233,0,0,0,5,1,5,78.9,4.3,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,76.82748,7.971704,1.609438,4.800107,1
-5,1,25,1,1,127311,0,14820.32,42.91034,0,14,1,0,71.58273,0,0,0,71.58273,0,0,0,0,0,4,73.7,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,64.57561,9.603822,1.386294,4.270854,1
-5,1,25,1,2,127311,0,14820.32,43.91034,0,14,1,13.69113,100.4107,39.32092,0,0,153.4228,0,0,0,0,1,4,73.7,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,64.57561,9.603822,1.386294,5.033197,1
-5,1,25,1,3,127311,0,14820.32,44.91034,0,14,1,94.56359,112.9077,0,0,0,207.4713,0,0,0,5,0,4,73.7,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,64.57561,9.603822,1.386294,5.334993,1
-5,1,25,1,4,127311,0,14820.32,45.91034,0,14,1,10.14292,77.39511,0,0,0,87.53803,0,0,0,1,0,4,73.7,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,64.57561,9.603822,1.386294,4.472074,1
-5,1,25,1,5,127311,0,14820.32,46.91034,0,14,1,35.97122,47.20694,0,0,0,83.17816,0,0,0,5,0,4,73.7,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,64.57561,9.603822,1.386294,4.420985,1
-5,1,25,1,1,127312,0,14820.32,17.10062,0,15,1,26.3789,1.798561,25.28177,0,0,53.45923,0,0,0,1,1,4,78.9,17.4,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.97823,9.603822,1.386294,3.978919,1
-5,1,25,1,2,127312,0,14820.32,18.10062,0,15,1,41.07338,2.190581,0,0,0,43.26397,0,0,0,5,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.97823,9.603822,1.386294,3.76732,1
-5,1,25,1,3,127312,0,14820.32,19.10062,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.97823,9.603822,1.386294,,0
-5,1,25,1,4,127312,0,14820.32,20.10062,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.97823,9.603822,1.386294,,0
-5,1,25,1,5,127312,0,14820.32,21.10062,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.97823,9.603822,1.386294,,0
-5,1,25,1,1,127313,0,14820.32,7.244353,1,15,1,11.99041,0,0,0,0,11.99041,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.31068,9.603822,1.386294,2.484107,1
-5,1,25,1,2,127313,0,14820.32,8.244353,1,15,1,24.09639,1.09529,31.68675,0,0,56.87842,0,0,0,2,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.31068,9.603822,1.386294,4.040916,1
-5,1,25,1,3,127313,0,14820.32,9.244353,1,15,1,7.481297,0,0,0,0,7.481297,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.31068,9.603822,1.386294,2.012406,1
-5,1,25,1,4,127313,0,14820.32,10.24435,1,15,1,25.81835,5.855233,31.51222,0,0,63.1858,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.31068,9.603822,1.386294,4.14608,1
-5,1,25,1,5,127313,0,14820.32,11.24435,1,15,1,26.23783,0,3.377063,0,0,29.6149,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.31068,9.603822,1.386294,3.388278,1
-5,1,25,1,1,127314,0,14820.32,42.61191,1,15,1,13.18945,0,0,0,0,13.18945,0,0,0,1,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.97667,9.603822,1.386294,2.579417,1
-5,1,25,1,2,127314,0,14820.32,43.61191,1,15,1,72.8368,0,36.98248,0,0,109.8193,0,0,0,4,1,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.97667,9.603822,1.386294,4.698836,1
-5,1,25,1,3,127314,0,14820.32,44.61191,1,15,1,128.5287,0,0,0,116.0898,244.6185,1,0,0,1,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.97667,9.603822,1.386294,5.4997,1
-5,1,25,1,4,127314,0,14820.32,45.61191,1,15,1,87.59797,5.60166,0,0,0,93.19963,0,0,0,5,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.97667,9.603822,1.386294,4.534744,1
-5,1,25,1,5,127314,0,14820.32,46.61191,1,15,1,135.8697,0,0,0,979.3737,1115.243,1,0,0,2,0,4,82.1,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.97667,9.603822,1.386294,7.016828,1
-7,1,25,0,1,127315,0,9408.188,44.71458,0,16,1,8.833922,0,36.9258,0,0,45.75972,0,0,0,0,1,5,78.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.6989,9.149442,1.609438,3.823404,1
-7,1,25,0,2,127315,0,9408.188,45.71458,0,16,1,6.469003,0,0,0,0,6.469003,0,0,0,1,0,5,78.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.6989,9.149442,1.609438,1.867022,1
-7,1,25,0,3,127315,0,9408.188,46.71458,0,16,1,0,5.356266,0,0,0,5.356266,0,0,0,0,0,5,78.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.6989,9.149442,1.609438,1.678267,1
-7,1,25,0,4,127315,0,9408.188,47.71458,0,16,1,9.11577,0,51.85506,0,0,60.97083,0,0,0,0,1,5,78.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.6989,9.149442,1.609438,4.110395,1
-7,1,25,0,5,127315,0,9408.188,48.71458,0,16,1,5.418924,2.163401,0,0,0,7.582326,0,0,0,1,0,5,78.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.6989,9.149442,1.609438,2.02582,1
-7,1,25,0,1,127316,0,9408.188,17.31143,0,12,1,24.14605,0,1.177856,0,0,25.32391,0,0,0,5,0,5,87.5,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,3.231749,1
-7,1,25,0,2,127316,0,9408.188,18.31143,0,12,1,54.44744,6.134771,0,0,0,60.58221,0,0,0,3,3,5,87.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,4.104002,1
-7,1,25,0,3,127316,0,9408.188,19.31143,0,12,1,168.7617,3.70516,0,0,0,172.4668,0,0,0,5,0,5,87.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,5.150205,1
-7,1,25,0,4,127316,0,9408.188,20.31143,0,12,1,50.59253,0,0,0,0,50.59253,0,0,0,3,0,5,87.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,3.923804,1
-7,1,25,0,5,127316,0,9408.188,21.31143,0,12,1,18.75782,.8336807,0,0,0,19.5915,0,0,0,2,0,5,87.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,2.975096,1
-7,1,25,0,1,127317,0,9408.188,15.33744,0,12,1,32.39105,0,0,0,0,32.39105,0,0,0,3,0,5,76.3,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,3.477882,1
-7,1,25,0,2,127317,0,9408.188,16.33744,0,12,1,29.11051,0,0,0,0,29.11051,0,0,0,1,2,5,76.3,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,3.371099,1
-7,1,25,0,3,127317,0,9408.188,17.33744,0,12,1,30.95823,8.643735,0,0,0,39.60197,0,0,0,5,0,5,76.3,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,3.678879,1
-7,1,25,0,4,127317,0,9408.188,18.33744,0,12,1,123.5187,2.39289,0,0,0,125.9116,0,0,0,2,13,5,76.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,4.83558,1
-7,1,25,0,5,127317,0,9408.188,19.33744,0,12,1,265.5273,6.335973,32.23426,0,0,304.0975,0,0,0,33,3,5,76.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,72.956,9.149442,1.609438,5.717349,1
-7,1,25,0,1,127318,0,9408.188,44.18617,1,12,1,24.14605,0,0,0,0,24.14605,0,0,0,3,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.91996,9.149442,1.609438,3.184121,1
-7,1,25,0,2,127318,0,9408.188,45.18617,1,12,1,339.0836,0,0,0,0,339.0836,0,0,0,5,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.91996,9.149442,1.609438,5.826247,1
-7,1,25,0,3,127318,0,9408.188,46.18617,1,12,1,16.21622,3.734644,0,0,0,19.95086,0,0,0,2,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.91996,9.149442,1.609438,2.993272,1
-7,1,25,0,4,127318,0,9408.188,47.18617,1,12,1,76.11668,9.52598,33.16773,0,0,118.8104,0,0,0,8,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.91996,9.149442,1.609438,4.777529,1
-7,1,25,0,5,127318,0,9408.188,48.18617,1,12,1,179.5248,30.37932,42.51772,0,0,252.4218,0,0,0,10,2,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.91996,9.149442,1.609438,5.531102,1
-7,1,25,0,1,127319,0,9408.188,14.46133,1,12,1,30.3298,10.13545,0,0,0,40.46525,0,0,0,4,0,5,62.5,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.63226,9.149442,1.609438,3.700444,1
-7,1,25,0,2,127319,0,9408.188,15.46133,1,12,1,361.3154,1.185984,0,0,0,362.5013,0,0,0,5,0,5,62.5,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.63226,9.149442,1.609438,5.893028,1
-7,1,25,0,3,127319,0,9408.188,16.46133,1,12,1,76.90417,5.710074,0,0,0,82.61425,0,0,0,5,0,5,62.5,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.63226,9.149442,1.609438,4.414182,1
-7,1,25,0,4,127319,0,9408.188,17.46133,1,12,1,36.46308,6.020966,0,0,667.0146,709.4987,1,0,0,5,0,5,62.5,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.63226,9.149442,1.609438,6.564559,1
-7,1,25,0,5,127319,0,9408.188,18.46133,1,12,1,46.18591,23.84744,0,0,0,70.03335,0,0,0,4,0,5,62.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,67.63226,9.149442,1.609438,4.248971,1
-5,1,25,0,1,127345,0,9044.045,13.45927,0,12,1,29.59364,0,0,0,0,29.59364,0,0,0,0,1,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,3.387559,1
-5,1,25,0,2,127345,0,9044.045,14.45927,0,12,1,26.95418,0,0,0,0,26.95418,0,0,0,2,0,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,3.294138,1
-5,1,25,0,3,127345,0,9044.045,15.45927,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,,0
-5,1,25,0,1,127346,0,9044.045,11.54552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,,0
-5,1,25,0,2,127346,0,9044.045,12.54552,0,12,1,72.2372,0,0,0,0,72.2372,0,0,0,4,0,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,4.279955,1
-5,1,25,0,3,127346,0,9044.045,13.54552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.87675,9.109972,1.94591,,0
-5,1,25,0,1,127347,0,9044.045,14.51608,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.8,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,73.47551,9.109972,1.94591,,0
-5,1,25,0,2,127347,0,9044.045,15.51608,0,12,1,13.47709,0,0,0,0,13.47709,0,0,0,1,0,7,78.8,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,73.47551,9.109972,1.94591,2.600991,1
-5,1,25,0,3,127347,0,9044.045,16.51608,0,12,1,17.51843,5.061425,0,0,0,22.57985,0,0,0,1,0,7,78.8,13.73189,0,,515,515,1,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,73.47551,9.109972,1.94591,3.117058,1
-5,1,25,0,1,127348,0,9044.045,6.55989,1,12,1,8.244994,0,0,0,0,8.244994,0,0,0,1,0,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,2.109606,1
-5,1,25,0,2,127348,0,9044.045,7.55989,1,12,1,3.773585,0,15.77359,0,0,19.54717,0,0,0,0,1,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,2.972831,1
-5,1,25,0,3,127348,0,9044.045,8.559891,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,,0
-5,1,25,0,1,127349,0,9044.045,10.0835,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,,0
-5,1,25,0,2,127349,0,9044.045,11.0835,1,12,1,5.390836,1.078167,0,0,0,6.469003,0,0,0,1,0,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,1.867022,1
-5,1,25,0,3,127349,0,9044.045,12.0835,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,515,515,1,1,1.94591,6.244167,0,3.258096,7.630461,1,0,0,77.36277,9.109972,1.94591,,0
-5,1,25,0,1,127350,0,9044.045,32.64887,1,12,1,25.32391,12.04947,0,0,0,37.37338,0,0,0,3,0,7,73.8,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,71.59294,9.109972,1.94591,3.620959,1
-5,1,25,0,2,127350,0,9044.045,33.64887,1,12,1,17.25067,12.02695,16.33962,16.17251,0,45.61725,0,0,2,0,1,7,73.8,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,71.59294,9.109972,1.94591,3.820286,1
-5,1,25,0,3,127350,0,9044.045,34.64887,1,12,1,4.914005,4.732187,0,0,0,9.646192,0,0,0,1,0,7,73.8,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,71.59294,9.109972,1.94591,2.266563,1
-5,1,25,0,1,127351,0,9044.045,41.00479,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,72.5,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,68.90664,9.109972,1.94591,,0
-5,1,25,0,2,127351,0,9044.045,42.00479,0,12,1,8.086253,3.962264,0,0,0,12.04852,0,0,0,1,0,7,72.5,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,68.90664,9.109972,1.94591,2.488942,1
-5,1,25,0,3,127351,0,9044.045,43.00479,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,72.5,13.73189,0,,515,515,0,0,1.94591,6.244167,0,3.258096,7.630461,1,0,0,68.90664,9.109972,1.94591,,0
-3,1,100,0,1,127361,0,9542.002,8.287475,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,1,0,0,73.43399,9.163564,1.791759,,0
-3,1,100,0,2,127361,0,9542.002,9.287475,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,1,0,0,73.43399,9.163564,1.791759,,0
-3,1,100,0,3,127361,0,9542.002,10.28747,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,1,0,0,73.43399,9.163564,1.791759,,0
-3,1,100,0,1,127362,0,9542.002,7.074606,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,72.92001,9.163564,1.791759,,0
-3,1,100,0,2,127362,0,9542.002,8.074607,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,72.92001,9.163564,1.791759,,0
-3,1,100,0,3,127362,0,9542.002,9.074607,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,72.92001,9.163564,1.791759,,0
-3,1,100,0,1,127363,0,9542.002,9.166325,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.64929,9.163564,1.791759,,0
-3,1,100,0,2,127363,0,9542.002,10.16632,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.64929,9.163564,1.791759,,0
-3,1,100,0,3,127363,0,9542.002,11.16632,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.64929,9.163564,1.791759,,0
-3,1,100,0,1,127364,0,9542.002,27.91239,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,82.1,0,0,,283,283,0,0,1.791759,5.645447,1,0,0,1,0,0,63.48573,9.163564,1.791759,,0
-3,1,100,0,2,127364,0,9542.002,28.91239,1,10,1,8.086253,6.134771,0,0,0,14.22102,0,0,0,0,0,6,82.1,0,0,,283,283,0,0,1.791759,5.645447,1,0,0,1,0,0,63.48573,9.163564,1.791759,2.654721,1
-3,1,100,0,3,127364,0,9542.002,29.91239,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,82.1,0,0,,283,283,0,0,1.791759,5.645447,1,0,0,1,0,0,63.48573,9.163564,1.791759,,0
-3,1,100,0,1,127365,0,9542.002,4.43258,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.4884,9.163564,1.791759,,0
-3,1,100,0,2,127365,0,9542.002,5.43258,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.4884,9.163564,1.791759,,0
-3,1,100,0,3,127365,0,9542.002,6.43258,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,1,1.791759,5.645447,1,0,0,1,0,0,69.4884,9.163564,1.791759,,0
-9,1,50,0,1,127368,0,9542.002,25.28131,0,15,1,46.94935,1.319199,0,0,0,48.26855,0,0,0,2,1,1,54.7,17.4,1,,550,550,0,0,0,6.309918,0,3.931826,7.003066,0,0,1,52.34806,9.163564,0,3.87678,1
-9,1,50,0,2,127368,0,9542.002,26.28131,0,15,1,72.50674,0,459.6981,0,38649.81,39182.02,2,0,0,0,0,1,54.7,17.4,1,,550,550,0,0,0,6.309918,0,3.931826,7.003066,0,0,1,52.34806,9.163564,0,10.57597,1
-9,1,50,0,1,127369,0,1524.194,22.71321,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,81.1,4.3,0,,760,760,0,0,0,6.633318,0,3.931826,7.326466,1,0,0,69.06231,7.329876,0,,0
-9,1,50,0,2,127369,0,1524.194,23.71321,0,14,1,17.25067,9.299191,0,0,0,26.54987,0,0,0,3,0,1,81.1,4.3,0,,760,760,0,0,0,6.633318,0,3.931826,7.326466,1,0,0,69.06231,7.329876,0,3.279025,1
-9,1,50,0,3,127369,0,1524.194,24.71321,0,14,1,0,3.710074,0,0,0,3.710074,0,0,0,0,0,1,81.1,4.3,0,,760,760,0,0,0,6.633318,0,3.931826,7.326466,1,0,0,69.06231,7.329876,0,1.311052,1
-9,1,50,0,4,127369,0,1524.194,25.71321,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,81.1,4.3,0,,760,760,0,0,0,6.633318,0,3.931826,7.326466,1,0,0,69.06231,7.329876,0,,0
-9,1,50,0,5,127369,0,1524.194,26.71321,0,14,1,72.94706,6.969571,0,0,0,79.91663,0,0,0,5,0,1,81.1,4.3,0,,760,760,0,0,0,6.633318,0,3.931826,7.326466,1,0,0,69.06231,7.329876,0,4.380984,1
-11,1,0,0,1,127370,0,7700.372,25.62354,1,8,1,59.71049,30.5187,31.51387,0,505.4765,627.2195,1,0,0,4,1,4,22.7,13.73189,1,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.49265,8.949154,1.386294,6.441297,1
-11,1,0,0,2,127370,0,7700.372,26.62354,1,8,1,25.88106,10.40749,0,11.01322,0,36.28855,0,0,1,3,0,4,22.7,13.73189,1,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.49265,8.949154,1.386294,3.591502,1
-11,1,0,0,3,127370,0,7700.372,27.62354,1,8,1,14.06328,1.25565,0,0,0,15.31894,0,0,0,1,0,4,22.7,13.73189,1,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.49265,8.949154,1.386294,2.72909,1
-11,1,0,0,1,127371,0,7700.372,5.587954,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.6293,8.949154,1.386294,,0
-11,1,0,0,2,127371,0,7700.372,6.587954,1,8,1,20.09912,2.257709,0,0,696.5253,718.8821,1,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.6293,8.949154,1.386294,6.577697,1
-11,1,0,0,3,127371,0,7700.372,7.587954,1,8,1,41.43646,14.23908,0,0,0,55.67554,0,0,0,5,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.6293,8.949154,1.386294,4.019541,1
-11,1,0,0,1,127372,0,7700.372,4.388775,1,8,1,13.87214,0,0,0,0,13.87214,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.19768,8.949154,1.386294,2.629882,1
-11,1,0,0,2,127372,0,7700.372,5.388775,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.19768,8.949154,1.386294,,0
-11,1,0,0,3,127372,0,7700.372,6.388775,1,8,1,28.65394,2.009041,0,0,0,30.66298,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.19768,8.949154,1.386294,3.423056,1
-11,1,0,0,1,127373,0,7700.372,29.94935,0,11,1,26.13993,2.050663,0,0,0,28.19059,0,0,0,1,0,4,61.3,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.60146,8.949154,1.386294,3.338988,1
-11,1,0,0,2,127373,0,7700.372,30.94935,0,11,1,83.70044,0,0,0,0,83.70044,0,0,0,0,10,4,61.3,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.60146,8.949154,1.386294,4.427244,1
-11,1,0,0,3,127373,0,7700.372,31.94935,0,11,1,96.93621,.5022601,0,0,0,97.43848,0,0,0,1,18,4,61.3,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.60146,8.949154,1.386294,4.579221,1
-6,1,25,1,1,127378,0,3809.553,36.846,0,3,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,0,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,74.64081,8.24553,1.386294,,0
-6,1,25,1,2,127378,0,3809.553,37.846,0,3,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,0,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,74.64081,8.24553,1.386294,,0
-6,1,25,1,3,127378,0,3809.553,38.846,0,3,1,37.666,0,0,0,0,37.666,0,0,0,1,0,4,96.8,0,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,74.64081,8.24553,1.386294,3.628758,1
-6,1,25,1,1,127379,0,3809.553,8.64887,0,7,1,13.68233,0,0,0,0,13.68233,0,0,0,0,1,4,74.36826,13.73189,0,,700,700,1,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,82.16232,8.24553,1.386294,2.616105,1
-6,1,25,1,2,127379,0,3809.553,9.64887,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,700,700,1,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,82.16232,8.24553,1.386294,,0
-6,1,25,1,3,127379,0,3809.553,10.64887,0,7,1,36.91774,0,0,0,0,36.91774,0,0,0,1,0,4,74.36826,13.73189,0,,700,700,1,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,82.16232,8.24553,1.386294,3.608692,1
-6,1,25,1,1,127380,0,3809.553,24.06297,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,75.53199,8.24553,1.386294,,0
-6,1,25,1,2,127380,0,3809.553,25.06297,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,75.53199,8.24553,1.386294,,0
-6,1,25,1,3,127380,0,3809.553,26.06297,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,700,700,0,0,1.386294,6.55108,0,3.258096,7.937375,0,0,0,75.53199,8.24553,1.386294,,0
-6,1,25,1,1,127381,0,3809.553,9.500342,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,700,700,1,1,1.386294,6.55108,0,3.258096,7.937375,0,0,0,81.64835,8.24553,1.386294,,0
-6,1,25,1,2,127381,0,3809.553,10.50034,1,7,1,16.98421,6.303756,0,0,0,23.28797,0,0,0,1,0,4,74.36826,13.73189,0,,700,700,1,1,1.386294,6.55108,0,3.258096,7.937375,0,0,0,81.64835,8.24553,1.386294,3.147937,1
-6,1,25,1,3,127381,0,3809.553,11.50034,1,7,1,19.32607,0,0,0,0,19.32607,0,0,0,1,0,4,74.36826,13.73189,0,,700,700,1,1,1.386294,6.55108,0,3.258096,7.937375,0,0,0,81.64835,8.24553,1.386294,2.961455,1
-11,1,0,1,1,127385,0,9658.188,13.39357,1,12,1,16.35931,0,0,0,0,16.35931,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,83.986,9.175665,1.609438,2.794797,1
-11,1,0,1,2,127385,0,9658.188,14.39357,1,12,1,29.94012,6.614045,0,0,0,36.55416,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,83.986,9.175665,1.609438,3.598795,1
-11,1,0,1,3,127385,0,9658.188,15.39357,1,12,1,15.85728,2.006938,0,0,0,17.86422,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,83.986,9.175665,1.609438,2.8828,1
-11,1,0,1,4,127385,0,9658.188,16.39357,1,12,1,11.01423,0,0,0,0,11.01423,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,83.986,9.175665,1.609438,2.399188,1
-11,1,0,1,5,127385,0,9658.188,17.39357,1,12,1,32.94068,11.63231,0,0,0,44.57299,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,83.986,9.175665,1.609438,3.797128,1
-11,1,0,1,1,127386,0,9658.188,15.04449,1,12,1,43.18858,6.543724,0,0,0,49.7323,0,0,0,3,0,5,83.2,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,74.88091,9.175665,1.609438,3.906655,1
-11,1,0,1,2,127386,0,9658.188,16.04449,1,12,1,34.83941,13.60915,0,0,0,48.44856,0,0,0,2,0,5,83.2,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,74.88091,9.175665,1.609438,3.880503,1
-11,1,0,1,3,127386,0,9658.188,17.04449,1,12,1,24.0337,13.00793,0,0,0,37.04163,0,0,0,1,2,5,83.2,4.3,0,,0,0,1,1,1.609438,0,0,0,0,0,0,0,74.88091,9.175665,1.609438,3.612042,1
-11,1,0,1,4,127386,0,9658.188,18.04449,1,12,1,34.41946,4.841671,0,0,323.2675,362.5287,1,0,0,3,0,5,83.2,4.3,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.88091,9.175665,1.609438,5.893104,1
-11,1,0,1,5,127386,0,9658.188,19.04449,1,12,1,72.60413,24.63189,0,0,1328.132,1425.368,1,0,0,2,0,5,83.2,4.3,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,74.88091,9.175665,1.609438,7.262186,1
-11,1,0,1,1,127387,0,9658.188,39.80835,0,7,1,67.22189,104.4319,0,0,522.4688,694.1226,1,0,0,9,0,5,63.2,0,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.22207,9.175665,1.609438,6.542648,1
-11,1,0,1,2,127387,0,9658.188,40.80835,0,7,1,319.5427,70.20686,29.0147,8.165487,0,418.7643,0,0,1,17,15,5,63.2,0,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.22207,9.175665,1.609438,6.037308,1
-11,1,0,1,3,127387,0,9658.188,41.80835,0,7,1,109.2666,77.84936,0,22.29931,0,187.116,0,0,2,31,0,5,63.2,0,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.22207,9.175665,1.609438,5.231729,1
-11,1,0,1,4,127387,0,9658.188,42.80835,0,7,1,315.7412,127.3107,19.66498,0,978.4855,1441.202,1,0,0,13,1,5,63.2,0,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.22207,9.175665,1.609438,7.273233,1
-11,1,0,1,5,127387,0,9658.188,43.80835,0,7,1,146.8237,111.9899,0,0,0,258.8136,0,0,0,6,0,5,63.2,0,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,75.22207,9.175665,1.609438,5.556108,1
-11,1,0,1,1,127388,0,9658.188,6.220397,0,12,1,103.8251,18.35217,0,0,0,122.1773,0,0,0,8,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,84.49998,9.175665,1.609438,4.805473,1
-11,1,0,1,2,127388,0,9658.188,7.220397,0,12,1,11.97605,1.796407,0,0,0,13.77246,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,84.49998,9.175665,1.609438,2.622671,1
-11,1,0,1,3,127388,0,9658.188,8.220397,0,12,1,4.955401,4.058474,0,0,0,9.013875,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,84.49998,9.175665,1.609438,2.198765,1
-11,1,0,1,4,127388,0,9658.188,9.220397,0,12,1,39.05461,8.210188,0,0,0,47.2648,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,84.49998,9.175665,1.609438,3.855766,1
-11,1,0,1,5,127388,0,9658.188,10.2204,0,12,1,75.58266,1.867901,1.262095,0,0,78.71266,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,84.49998,9.175665,1.609438,4.365804,1
-11,1,0,1,1,127389,0,9658.188,34.05886,1,12,1,148.6496,78.35812,27.97739,0,0,254.9851,0,0,0,15,1,5,71.6,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.32207,9.175665,1.609438,5.541205,1
-11,1,0,1,2,127389,0,9658.188,35.05886,1,12,1,361.1486,125.9499,0,0,780.7022,1267.801,1,0,0,28,1,5,71.6,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.32207,9.175665,1.609438,7.145039,1
-11,1,0,1,3,127389,0,9658.188,36.05886,1,12,1,100.5947,119.108,22.78493,29.73241,397.2547,639.7423,1,0,2,10,1,5,71.6,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.32207,9.175665,1.609438,6.461065,1
-11,1,0,1,4,127389,0,9658.188,37.05886,1,12,1,301.3768,82.1799,12.46902,0,793.4282,1189.454,1,0,0,20,1,5,71.6,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.32207,9.175665,1.609438,7.08125,1
-11,1,0,1,5,127389,0,9658.188,38.05886,1,12,1,182.5831,145.4186,.1051746,0,2992.705,3320.812,2,0,0,16,0,5,71.6,13,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.32207,9.175665,1.609438,8.107965,1
-10,1,50,0,1,127395,0,2235.732,46.56263,1,10,1,18.69723,14.06514,0,0,0,32.76236,0,0,0,6,0,2,60,13.73189,0,,342,0,0,0,.6931472,0,0,3.931826,6.527958,0,0,0,74.09964,7.712771,.6931472,3.48928,1
-10,1,50,0,2,127395,0,2235.732,47.56263,1,10,1,23.67841,9.036344,0,0,0,32.71476,0,0,0,2,0,2,60,13.73189,0,,342,0,0,0,.6931472,0,0,3.931826,6.527958,0,0,0,74.09964,7.712771,.6931472,3.487826,1
-10,1,50,0,3,127395,0,2235.732,48.56263,1,10,1,13.05876,9.648417,37.2677,0,0,59.97489,0,0,0,3,1,2,60,13.73189,0,,342,0,0,0,.6931472,0,0,3.931826,6.527958,0,0,0,74.09964,7.712771,.6931472,4.093926,1
-10,1,50,0,1,127396,0,2235.732,11.92608,0,10,1,4.82509,3.618818,0,0,0,8.443909,0,0,0,1,0,2,74.36826,13.73189,0,,342,0,1,0,.6931472,0,0,3.931826,6.527958,0,0,0,81.16636,7.712771,.6931472,2.133445,1
-10,1,50,0,2,127396,0,2235.732,12.92608,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,342,0,1,0,.6931472,0,0,3.931826,6.527958,0,0,0,81.16636,7.712771,.6931472,,0
-10,1,50,0,3,127396,0,2235.732,13.92608,0,10,1,4.520341,3.013561,0,0,0,7.533903,0,0,0,1,0,2,74.36826,13.73189,0,,342,0,1,0,.6931472,0,0,3.931826,6.527958,0,0,0,81.16636,7.712771,.6931472,2.019413,1
-8,1,50,0,1,127400,0,9542.002,16.15606,0,12,1,6.478209,0,0,0,0,6.478209,0,0,0,1,0,3,70,13.73189,0,,415,415,1,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,80.34551,9.163564,1.098612,1.868444,1
-8,1,50,0,2,127400,0,9542.002,17.15606,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70,13.73189,0,,415,415,1,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,80.34551,9.163564,1.098612,,0
-8,1,50,0,3,127400,0,9542.002,18.15606,0,12,1,41.27764,0,0,0,0,41.27764,0,0,0,2,0,3,70,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,80.34551,9.163564,1.098612,3.720321,1
-8,1,50,0,4,127400,0,9542.002,19.15606,0,12,1,13.67366,0,0,0,0,13.67366,0,0,0,0,1,3,70,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,80.34551,9.163564,1.098612,2.615471,1
-8,1,50,0,5,127400,0,9542.002,20.15606,0,12,1,8.336807,0,0,0,0,8.336807,0,0,0,0,1,3,70,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,80.34551,9.163564,1.098612,2.12068,1
-8,1,50,0,1,127401,0,9542.002,52.89801,0,12,1,97.76207,4.581861,0,0,0,102.3439,0,0,0,0,0,3,71.3,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,73.66986,9.163564,1.098612,4.628339,1
-8,1,50,0,2,127401,0,9542.002,53.89801,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,73.66986,9.163564,1.098612,,0
-8,1,50,0,3,127401,0,9542.002,54.89801,0,12,1,95.3317,6.280098,0,0,0,101.6118,0,0,0,1,0,3,71.3,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,73.66986,9.163564,1.098612,4.62116,1
-8,1,50,0,4,127401,0,9542.002,55.89801,0,12,1,106.6545,8.395624,55.19143,0,0,170.2416,0,0,0,1,1,3,71.3,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,73.66986,9.163564,1.098612,5.137218,1
-8,1,50,0,5,127401,0,9542.002,56.89801,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,0,0,0,73.66986,9.163564,1.098612,,0
-8,1,50,0,1,127402,0,9542.002,21.61533,1,14,1,12.95642,4.829211,0,0,0,17.78563,0,0,0,2,0,1,78.8,13.73189,0,,335,335,0,0,0,5.81413,0,3.931826,6.507277,0,0,0,79.63555,9.163564,0,2.878391,1
-8,1,50,0,2,127402,0,9542.002,22.61533,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,78.8,13.73189,0,,335,335,0,0,0,5.81413,0,3.931826,6.507277,0,0,0,79.63555,9.163564,0,,0
-8,1,50,0,3,127402,0,9542.002,23.61533,1,14,1,364.3735,4.712531,0,0,57.49386,426.5799,0,0,0,4,0,1,78.8,13.73189,0,,335,335,0,0,0,5.81413,0,3.931826,6.507277,0,0,0,79.63555,9.163564,0,6.055799,1
-8,1,50,0,4,127402,0,9542.002,24.61533,1,14,1,6.381039,12.35187,0,0,0,18.73291,0,0,0,1,0,1,78.8,13.73189,0,,335,335,0,0,0,5.81413,0,3.931826,6.507277,0,0,0,79.63555,9.163564,0,2.930282,1
-8,1,50,0,5,127402,0,9542.002,25.61533,1,14,1,7.503126,0,0,0,0,7.503126,0,0,0,1,0,1,78.8,13.73189,0,,335,335,0,0,0,5.81413,0,3.931826,6.507277,0,0,0,79.63555,9.163564,0,2.01532,1
-8,1,50,0,1,127403,0,9542.002,47.87406,1,12,1,32.39105,51.19552,0,0,0,83.58657,0,0,0,4,0,3,82.5,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,1,0,0,70.90492,9.163564,1.098612,4.425883,1
-8,1,50,0,2,127403,0,9542.002,48.87406,1,12,1,15.63342,30.26415,0,0,0,45.89758,0,0,0,1,0,3,82.5,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,1,0,0,70.90492,9.163564,1.098612,3.826412,1
-8,1,50,0,3,127403,0,9542.002,49.87406,1,12,1,28.99263,22.4226,29.27273,0,0,80.68796,0,0,0,1,1,3,82.5,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,1,0,0,70.90492,9.163564,1.098612,4.390589,1
-8,1,50,0,4,127403,0,9542.002,50.87406,1,12,1,13.67366,25.82953,0,0,0,39.50319,0,0,0,1,1,3,82.5,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,1,0,0,70.90492,9.163564,1.098612,3.676381,1
-8,1,50,0,5,127403,0,9542.002,51.87406,1,12,1,17.92414,24.4852,42.68862,0,0,85.09795,0,0,0,1,1,3,82.5,13.73189,0,,415,415,0,0,1.098612,6.028278,0,3.931826,6.721426,1,0,0,70.90492,9.163564,1.098612,4.443803,1
-11,1,0,0,1,127409,0,13933.62,6.105407,1,12,1,9.518144,4.497323,0,0,0,14.01547,0,0,0,1,0,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,2.640162,1
-11,1,0,0,2,127409,0,13933.62,7.105407,1,12,1,18.50844,2.874252,0,0,1257.104,1278.487,1,0,0,2,0,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,7.153432,1
-11,1,0,0,3,127409,0,13933.62,8.105408,1,12,1,53.51833,2.973241,0,0,0,56.49158,0,0,0,5,2,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,4.034091,1
-11,1,0,0,1,127410,0,13933.62,45.1143,0,21,1,81.49911,11.96907,54.08685,0,0,147.555,0,0,0,8,1,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,1,0,0,68.91296,9.542131,1.609438,4.994201,1
-11,1,0,0,2,127410,0,13933.62,46.1143,0,21,1,20.41372,6.886228,0,0,0,27.29995,0,0,0,3,0,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,1,0,0,68.91296,9.542131,1.609438,3.306885,1
-11,1,0,0,3,127410,0,13933.62,47.1143,0,21,1,29.23687,3.389495,0,0,100.7284,133.3548,1,0,0,4,1,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,1,0,0,68.91296,9.542131,1.609438,4.893013,1
-11,1,0,0,1,127411,0,13933.62,30.17112,1,12,1,65.43724,20.73171,34.81261,0,0,120.9816,0,0,0,5,1,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,0,0,0,78.83035,9.542131,1.609438,4.795638,1
-11,1,0,0,2,127411,0,13933.62,31.17112,1,12,1,81.1105,8.579206,0,0,0,89.68971,0,0,0,11,0,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,0,0,0,78.83035,9.542131,1.609438,4.496356,1
-11,1,0,0,3,127411,0,13933.62,32.17112,1,12,1,86.22398,6.526264,46.08523,0,0,138.8355,0,0,0,7,1,5,78.8,13.73189,0,,0,65,0,0,1.609438,4.174387,0,0,0,0,0,0,78.83035,9.542131,1.609438,4.93329,1
-11,1,0,0,1,127412,0,13933.62,7.148529,1,12,1,14.8721,2.629387,0,0,0,17.50149,0,0,0,1,1,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,2.862286,1
-11,1,0,0,2,127412,0,13933.62,8.148528,1,12,1,13.50027,1.317365,0,14.26238,0,14.81764,0,0,1,0,0,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,2.695818,1
-11,1,0,0,3,127412,0,13933.62,9.148528,1,12,1,10.90188,3.409316,0,0,0,14.3112,0,0,0,2,0,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,85.02243,9.542131,1.609438,2.661042,1
-11,1,0,0,1,127413,0,13933.62,1.566051,1,12,1,156.4545,6.650803,0,0,0,163.1053,0,0,0,6,2,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,81.59081,9.542131,1.609438,5.094396,1
-11,1,0,0,2,127413,0,13933.62,2.566051,1,12,1,133.914,7.958628,0,0,0,141.8726,0,0,0,5,0,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,81.59081,9.542131,1.609438,4.95493,1
-11,1,0,0,3,127413,0,13933.62,3.566051,1,12,1,220.5154,14.75718,0,0,0,235.2726,0,0,0,12,29,5,74.36826,13.73189,0,,0,65,1,1,1.609438,4.174387,0,0,0,0,0,0,81.59081,9.542131,1.609438,5.460745,1
-11,1,0,1,1,127425,0,11437.34,17.36345,0,16,1,44.24461,9.262589,0,0,0,53.50719,0,0,0,3,0,4,86.3,4.3,0,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,3.979816,1
-11,1,0,1,2,127425,0,11437.34,18.36345,0,16,1,17.52464,8.910186,28.04491,0,0,54.47974,0,0,0,1,1,4,86.3,4.3,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,3.997829,1
-11,1,0,1,3,127425,0,11437.34,19.36345,0,16,1,13.46633,0,0,0,0,13.46633,0,0,0,1,0,4,86.3,4.3,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,2.600193,1
-11,1,0,1,4,127425,0,11437.34,20.36345,0,16,1,11.52605,0,26.98018,0,0,38.50623,0,0,0,0,1,4,86.3,4.3,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,3.65082,1
-11,1,0,1,5,127425,0,11437.34,21.36345,0,16,1,109.0986,1.468472,0,0,0,110.5671,0,0,0,5,0,4,86.3,4.3,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,4.705622,1
-11,1,0,1,1,127426,0,11437.34,12.5859,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,84.24542,9.344727,1.386294,,0
-11,1,0,1,2,127426,0,11437.34,13.5859,1,16,1,13.14348,4.819277,0,0,0,17.96276,0,0,0,2,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,84.24542,9.344727,1.386294,2.888301,1
-11,1,0,1,3,127426,0,11437.34,14.5859,1,16,1,29.42643,7.945137,0,0,0,37.37157,0,0,0,3,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,84.24542,9.344727,1.386294,3.62091,1
-11,1,0,1,4,127426,0,11437.34,15.5859,1,16,1,11.52605,0,21.15722,0,0,32.68327,0,0,0,0,1,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,84.24542,9.344727,1.386294,3.486863,1
-11,1,0,1,5,127426,0,11437.34,16.5859,1,16,1,12.69573,0,13.69022,0,0,26.38595,0,0,0,0,1,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,84.24542,9.344727,1.386294,3.272832,1
-11,1,0,1,1,127427,0,11437.34,14.5462,0,16,1,19.78417,0,30.01799,0,0,49.80216,0,0,0,1,1,4,94.4,8.7,0,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,3.908058,1
-11,1,0,1,2,127427,0,11437.34,15.5462,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,94.4,8.7,0,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,,0
-11,1,0,1,3,127427,0,11437.34,16.5462,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,94.4,8.7,0,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,,0
-11,1,0,1,4,127427,0,11437.34,17.5462,0,16,1,11.52605,0,22.12079,0,0,33.64684,0,0,0,0,1,4,94.4,8.7,0,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,3.515919,1
-11,1,0,1,5,127427,0,11437.34,18.5462,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,94.4,8.7,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.55583,9.344727,1.386294,,0
-11,1,0,1,1,127428,0,11437.34,40.88159,1,16,1,50.95923,115,0,0,0,165.9592,0,0,0,6,0,4,60,13,1,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39796,9.344727,1.386294,5.111742,1
-11,1,0,1,2,127428,0,11437.34,41.88159,1,16,1,40.52574,118.3516,0,0,0,158.8773,0,0,0,3,0,4,60,13,1,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39796,9.344727,1.386294,5.068132,1
-11,1,0,1,3,127428,0,11437.34,42.88159,1,16,1,48.8778,105.1421,23.45636,0,0,177.4763,0,0,0,4,1,4,60,13,1,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39796,9.344727,1.386294,5.178837,1
-11,1,0,1,4,127428,0,11437.34,43.88159,1,16,1,20.74689,117.9852,0,0,0,138.7321,0,0,0,2,0,4,60,13,1,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39796,9.344727,1.386294,4.932545,1
-11,1,0,1,5,127428,0,11437.34,44.88159,1,16,1,35.54803,117.7613,41.95514,0,0,195.2645,0,0,0,1,1,4,60,13,1,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39796,9.344727,1.386294,5.274355,1
-7,1,25,0,1,127437,0,7905.087,57.11978,0,9,1,50.35971,44.80216,36.8825,0,0,132.0444,0,0,0,6,1,2,91.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,1,0,57.70329,8.975389,.6931472,4.883138,1
-7,1,25,0,2,127437,0,7905.087,58.11978,0,9,1,54.76451,55.5586,25.73932,0,0,136.0624,0,0,0,6,1,2,91.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,1,0,57.70329,8.975389,.6931472,4.913114,1
-7,1,25,0,3,127437,0,7905.087,59.11978,0,9,1,68.82793,84.18454,0,0,0,153.0125,0,0,0,8,0,2,91.3,13.73189,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,1,0,57.70329,8.975389,.6931472,5.030519,1
-7,1,25,0,1,127438,0,7905.087,53.74675,1,11,1,62.35012,76.32494,31.8705,0,0,170.5456,0,0,0,6,1,2,70,13.73189,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,62.17246,8.975389,.6931472,5.139002,1
-7,1,25,0,2,127438,0,7905.087,54.74675,1,11,1,40.52574,80.31216,0,0,0,120.8379,0,0,0,5,0,2,70,13.73189,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,62.17246,8.975389,.6931472,4.79445,1
-7,1,25,0,3,127438,0,7905.087,55.74675,1,11,1,38.40399,20.89775,36.93766,0,0,96.2394,0,0,0,3,1,2,70,13.73189,1,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,62.17246,8.975389,.6931472,4.566839,1
-11,1,0,1,1,127439,0,6820.72,52.74469,0,10,1,173.2005,41.15408,53.15289,0,0,267.5074,0,0,0,5,0,2,86.3,21.7,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.48558,8.827867,.6931472,5.589148,1
-11,1,0,1,2,127439,0,6820.72,53.74469,0,10,1,77.29994,28.0675,29.58084,0,0,134.9483,0,0,0,5,0,2,86.3,21.7,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.48558,8.827867,.6931472,4.904891,1
-11,1,0,1,3,127439,0,6820.72,54.74469,0,10,1,22.79485,15.14371,0,0,0,37.93855,0,0,0,3,0,2,86.3,21.7,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.48558,8.827867,.6931472,3.635968,1
-11,1,0,1,1,127440,0,6820.72,52.90623,1,11,1,226.3534,46.1511,50.66627,0,0,323.1707,0,0,0,2,23,2,69.5,47.8,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.57277,8.827867,.6931472,5.778181,1
-11,1,0,1,2,127440,0,6820.72,53.90623,1,11,1,247.1421,28.79695,0,0,0,275.939,0,0,0,1,21,2,69.5,47.8,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.57277,8.827867,.6931472,5.62018,1
-11,1,0,1,3,127440,0,6820.72,54.90623,1,11,1,389.1229,42.81467,0,0,81.76412,513.7017,0,0,0,4,17,2,69.5,47.8,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,52.57277,8.827867,.6931472,6.241642,1
-6,1,25,1,1,127470,0,9668.734,40.4846,0,13,1,10.79137,0,37.41007,0,0,48.20144,0,0,0,0,1,5,58.9,13,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,70.47347,9.176756,1.609438,3.875389,1
-6,1,25,1,2,127470,0,9668.734,41.4846,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,58.9,13,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,70.47347,9.176756,1.609438,,0
-6,1,25,1,3,127470,0,9668.734,42.4846,0,13,1,17.45636,7.256858,32.83292,0,0,57.54613,0,0,0,2,1,5,58.9,13,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,70.47347,9.176756,1.609438,4.052587,1
-6,1,25,1,4,127470,0,9668.734,43.4846,0,13,1,6.915629,3.457815,0,0,0,10.37344,0,0,0,1,0,5,58.9,13,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,70.47347,9.176756,1.609438,2.339249,1
-6,1,25,1,5,127470,0,9668.734,44.4846,0,13,1,25.81464,0,24.32501,0,0,50.13965,0,0,0,1,1,5,58.9,13,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,70.47347,9.176756,1.609438,3.914812,1
-6,1,25,1,1,127471,0,9668.734,7.422314,0,13,1,0,13.09352,0,0,0,13.09352,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,2.572118,1
-6,1,25,1,2,127471,0,9668.734,8.422314,0,13,1,9.309967,0,0,0,0,9.309967,0,0,0,0,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,2.231086,1
-6,1,25,1,3,127471,0,9668.734,9.422314,0,13,1,11.47132,1.820449,0,0,0,13.29177,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,2.587145,1
-6,1,25,1,4,127471,0,9668.734,10.42231,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,,0
-6,1,25,1,5,127471,0,9668.734,11.42231,0,13,1,26.66102,3.787558,0,0,0,30.44858,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,3.416039,1
-6,1,25,1,1,127472,0,9668.734,12.29295,0,13,1,38.3693,13.78897,37.58993,0,0,89.7482,0,0,0,3,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,4.497008,1
-6,1,25,1,2,127472,0,9668.734,13.29295,0,13,1,19.71523,6.818182,17.16867,0,0,43.70208,0,0,0,2,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,3.777396,1
-6,1,25,1,3,127472,0,9668.734,14.29295,0,13,1,34.41396,2.119701,28.84289,14.96259,0,65.37656,0,0,1,3,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,4.180164,1
-6,1,25,1,4,127472,0,9668.734,15.29295,0,13,1,25.35731,2.581835,0,0,0,27.93914,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,3.330029,1
-6,1,25,1,5,127472,0,9668.734,16.29295,0,13,1,14.81168,0,23.7537,0,0,38.56538,0,0,0,1,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,78.55493,9.176756,1.609438,3.652355,1
-6,1,25,1,1,127473,0,9668.734,38.16564,1,13,1,31.77458,20.44365,34.27458,0,0,86.49281,0,0,0,2,1,5,58.9,26.1,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.59937,9.176756,1.609438,4.460061,1
-6,1,25,1,2,127473,0,9668.734,39.16564,1,13,1,101.862,40.36145,0,0,0,142.2234,0,0,0,3,0,5,58.9,26.1,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.59937,9.176756,1.609438,4.957399,1
-6,1,25,1,3,127473,0,9668.734,40.16564,1,13,1,49.87531,32.49377,43.78055,0,0,126.1496,0,0,0,2,1,5,58.9,26.1,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.59937,9.176756,1.609438,4.837469,1
-6,1,25,1,4,127473,0,9668.734,41.16564,1,13,1,47.02628,4.702628,0,0,0,51.72891,0,0,0,3,0,5,58.9,26.1,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.59937,9.176756,1.609438,3.946017,1
-6,1,25,1,5,127473,0,9668.734,42.16564,1,13,1,42.31908,10.77021,25.6496,0,0,78.73889,0,0,0,4,1,5,58.9,26.1,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,56.59937,9.176756,1.609438,4.366137,1
-6,1,25,1,1,127474,0,9668.734,14.28884,1,13,1,107.9137,82.73381,0,0,0,190.6475,0,0,0,34,0,5,74.7,4.3,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.77795,9.176756,1.609438,5.250426,1
-6,1,25,1,2,127474,0,9668.734,15.28884,1,13,1,75.02738,95.0712,0,0,0,170.0986,0,0,0,24,1,5,74.7,4.3,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.77795,9.176756,1.609438,5.136378,1
-6,1,25,1,3,127474,0,9668.734,16.28884,1,13,1,182.2943,45.40648,0,0,0,227.7007,0,0,0,28,1,5,74.7,4.3,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.77795,9.176756,1.609438,5.428032,1
-6,1,25,1,4,127474,0,9668.734,17.28884,1,13,1,108.1143,4.495159,24.09405,0,0,136.7036,0,0,0,22,1,5,74.7,4.3,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.77795,9.176756,1.609438,4.917815,1
-6,1,25,1,5,127474,0,9668.734,18.28884,1,13,1,94.79475,6.749894,0,0,535.1968,636.7415,1,0,0,24,0,5,74.7,4.3,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.77795,9.176756,1.609438,6.456364,1
-1,1,0,0,1,127486,0,10792.37,5.193703,1,12,1,7.733492,0,0,0,0,7.733492,0,0,0,1,0,5,74.36826,13.73189,0,,450,450,1,1,1.609438,6.109248,1,0,0,0,0,0,81.95454,9.286687,1.609438,2.045561,1
-1,1,0,0,2,127486,0,10792.37,6.193703,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,450,450,1,1,1.609438,6.109248,1,0,0,0,0,0,81.95454,9.286687,1.609438,,0
-1,1,0,0,3,127486,0,10792.37,7.193703,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,450,450,1,1,1.609438,6.109248,1,0,0,0,0,0,81.95454,9.286687,1.609438,,0
-1,1,0,0,1,127487,0,10792.37,18.14374,0,12.32507,1,45.21119,0,0,0,0,45.21119,0,0,0,2,0,5,81.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.01041,9.286687,1.609438,3.811345,1
-1,1,0,0,2,127487,0,10792.37,19.14374,0,12.32507,1,37.56124,0,0,0,0,37.56124,0,0,0,1,0,5,81.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.01041,9.286687,1.609438,3.625973,1
-1,1,0,0,3,127487,0,10792.37,20.14374,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,5,81.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.01041,9.286687,1.609438,,0
-1,1,0,0,1,127488,0,10792.37,50.19849,1,12,1,33.3135,88.65556,2.379536,0,0,124.3486,0,0,0,2,0,5,55,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,77.65372,9.286687,1.609438,4.823089,1
-1,1,0,0,2,127488,0,10792.37,51.19849,1,12,1,42.46053,63.02667,20.14153,0,0,125.6287,0,0,0,2,1,5,55,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,77.65372,9.286687,1.609438,4.833331,1
-1,1,0,0,3,127488,0,10792.37,52.19849,1,12,1,20.81269,38.45887,0,0,0,59.27156,0,0,0,2,0,5,55,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,77.65372,9.286687,1.609438,4.082129,1
-1,1,0,0,1,127489,0,10792.37,24.3039,1,12,1,48.1856,20.65437,0,0,0,68.83997,0,0,0,3,0,5,66.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.64108,9.286687,1.609438,4.231785,1
-1,1,0,0,2,127489,0,10792.37,25.3039,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,66.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.64108,9.286687,1.609438,,0
-1,1,0,0,3,127489,0,10792.37,26.3039,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,66.3,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,79.64108,9.286687,1.609438,,0
-1,1,0,0,1,127490,0,10792.37,49.90281,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,68.8,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,73.81825,9.286687,1.609438,,0
-1,1,0,0,2,127490,0,10792.37,50.90281,0,10,1,8.709853,0,20.14153,0,0,28.85139,0,0,0,0,1,5,68.8,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,73.81825,9.286687,1.609438,3.362158,1
-1,1,0,0,3,127490,0,10792.37,51.90281,0,10,1,120.664,34.2666,0,0,0,154.9306,0,0,0,8,6,5,68.8,13.73189,0,,450,450,0,0,1.609438,6.109248,1,0,0,0,0,0,73.81825,9.286687,1.609438,5.042977,1
-2,1,100,0,1,127496,0,4168.734,57.92471,0,12,1,0,2.255595,0,0,0,2.255595,0,0,0,0,0,1,74.7,17.4,0,,170,170,0,0,0,5.135798,1,0,0,0,1,0,65.84276,8.335608,0,.8134137,1
-2,1,100,0,2,127496,0,4168.734,58.92471,0,12,1,57.68194,7.563342,0,0,0,65.24529,0,0,0,3,0,1,74.7,17.4,0,,170,170,0,0,0,5.135798,1,0,0,0,1,0,65.84276,8.335608,0,4.178154,1
-2,1,100,0,3,127496,0,4168.734,59.92471,0,12,1,22.85012,32.3489,0,0,0,55.19902,0,0,0,2,0,1,74.7,17.4,0,,170,170,0,0,0,5.135798,1,0,0,0,1,0,65.84276,8.335608,0,4.010945,1
-2,1,100,0,4,127496,0,4168.734,60.92471,0,12,1,0,22.1103,0,0,0,22.1103,0,0,0,0,0,1,74.7,17.4,0,,170,170,0,0,0,5.135798,1,0,0,0,1,0,65.84276,8.335608,0,3.096044,1
-2,1,100,0,5,127496,0,4168.734,61.92471,0,12,1,93.58066,67.77824,27.44477,0,1607.753,1796.557,2,0,0,4,6,1,74.7,17.4,0,,170,170,0,0,0,5.135798,1,0,0,0,1,0,65.84276,8.335608,0,7.493627,1
-5,1,25,1,1,127511,0,1191.067,53.73032,1,3,1,9.592326,0,34.77218,0,0,44.36451,0,0,0,0,1,1,71.6,30.4,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,52.28558,7.083444,0,3.79244,1
-5,1,25,1,2,127511,0,1191.067,54.73032,1,3,1,0,0,0,0,0,0,0,0,0,0,0,1,71.6,30.4,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,52.28558,7.083444,0,,0
-5,1,25,1,3,127511,0,1191.067,55.73032,1,3,1,0,0,0,0,0,0,0,0,0,0,0,1,71.6,30.4,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,52.28558,7.083444,0,,0
-1,1,0,0,1,127513,0,7029.777,3.879534,1,9,1,0,14.46643,0,0,0,14.46643,0,0,0,0,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,0,1,0,57.77286,8.858052,1.386294,2.671831,1
-1,1,0,0,2,127513,0,7029.777,4.879535,1,9,1,11.50055,8.209201,0,0,0,19.70975,0,0,0,2,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,0,1,0,57.77286,8.858052,1.386294,2.981113,1
-1,1,0,0,3,127513,0,7029.777,5.879535,1,9,1,76.30923,11.42145,0,0,0,87.73067,0,0,0,4,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,0,1,0,57.77286,8.858052,1.386294,4.474272,1
-1,1,0,0,4,127513,0,7029.777,6.879535,1,9,1,27.20148,20.72845,0,0,0,47.92992,0,0,0,4,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,0,1,0,57.77286,8.858052,1.386294,3.86974,1
-1,1,0,0,5,127513,0,7029.777,7.879535,1,9,1,83.03004,9.983072,0,0,0,93.01312,0,0,0,5,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,0,1,0,57.77286,8.858052,1.386294,4.532741,1
-1,1,0,0,1,127514,0,7029.777,27.0527,0,10,1,25.17986,27.96763,0,0,0,53.14748,0,0,0,0,2,4,73.8,13.73189,1,,450,0,0,0,1.386294,0,1,0,0,1,0,0,64.24998,8.858052,1.386294,3.973071,1
-1,1,0,0,2,127514,0,7029.777,28.0527,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.8,13.73189,1,,450,0,0,0,1.386294,0,1,0,0,1,0,0,64.24998,8.858052,1.386294,,0
-1,1,0,0,3,127514,0,7029.777,29.0527,0,10,1,4.488778,6.284289,0,0,0,10.77307,0,0,0,1,0,4,73.8,13.73189,1,,450,0,0,0,1.386294,0,1,0,0,1,0,0,64.24998,8.858052,1.386294,2.377049,1
-1,1,0,0,4,127514,0,7029.777,30.0527,0,10,1,4.61042,4.633471,0,0,0,9.243891,0,0,0,1,0,4,73.8,13.73189,1,,450,0,0,0,1.386294,0,1,0,0,1,0,0,64.24998,8.858052,1.386294,2.223963,1
-1,1,0,0,5,127514,0,7029.777,31.0527,0,10,1,5.924672,2.598392,0,0,0,8.523064,0,0,0,1,0,4,73.8,13.73189,1,,450,0,0,0,1.386294,0,1,0,0,1,0,0,64.24998,8.858052,1.386294,2.142776,1
-1,1,0,0,1,127515,0,7029.777,2.767967,1,9,1,4.196643,10.71343,0,0,0,14.91007,0,0,0,1,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,1,0,0,69.64755,8.858052,1.386294,2.702037,1
-1,1,0,0,2,127515,0,7029.777,3.767967,1,9,1,4.381161,8.187295,0,0,0,12.56846,0,0,0,1,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,1,0,0,69.64755,8.858052,1.386294,2.53119,1
-1,1,0,0,3,127515,0,7029.777,4.767967,1,9,1,16.45885,9.002494,0,0,0,25.46135,0,0,0,3,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,1,0,0,69.64755,8.858052,1.386294,3.237162,1
-1,1,0,0,4,127515,0,7029.777,5.767967,1,9,1,0,6.219456,0,0,0,6.219456,0,0,0,0,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,1,0,0,69.64755,8.858052,1.386294,1.827682,1
-1,1,0,0,5,127515,0,7029.777,6.767967,1,9,1,19.04359,14.78206,0,0,0,33.82565,0,0,0,3,0,4,74.36826,13.73189,0,,450,0,1,1,1.386294,0,1,0,0,1,0,0,69.64755,8.858052,1.386294,3.521219,1
-1,1,0,0,1,127516,0,7029.777,25.68652,1,9,1,16.18705,13.26739,0,0,0,29.45444,0,0,0,2,1,4,68.8,13.73189,0,,450,0,0,0,1.386294,0,1,0,0,1,0,0,65.15411,8.858052,1.386294,3.382845,1
-1,1,0,0,2,127516,0,7029.777,26.68652,1,9,1,8.762322,2.245345,0,0,0,11.00767,0,0,0,1,0,4,68.8,13.73189,0,,450,0,0,0,1.386294,0,1,0,0,1,0,0,65.15411,8.858052,1.386294,2.398592,1
-1,1,0,0,3,127516,0,7029.777,27.68652,1,9,1,18.95262,0,0,0,0,18.95262,0,0,0,3,0,4,68.8,13.73189,0,,450,0,0,0,1.386294,0,1,0,0,1,0,0,65.15411,8.858052,1.386294,2.941942,1
-1,1,0,0,4,127516,0,7029.777,28.68652,1,9,1,26.27939,19.2485,0,0,0,45.52789,0,0,0,2,0,4,68.8,13.73189,0,,450,0,0,0,1.386294,0,1,0,0,1,0,0,65.15411,8.858052,1.386294,3.818325,1
-1,1,0,0,5,127516,0,7029.777,29.68652,1,9,1,58.18874,17.43546,0,0,0,75.62421,0,0,0,2,0,4,68.8,13.73189,0,,450,0,0,0,1.386294,0,1,0,0,1,0,0,65.15411,8.858052,1.386294,4.325777,1
-6,1,25,1,1,127517,0,2530.464,20.85969,0,12,1,13.18945,3.597122,0,0,978.8969,995.6835,1,0,0,2,0,2,26.3,26.1,0,,343,343,0,0,.6931472,5.83773,0,3.258096,7.224025,1,0,0,64.05187,7.836553,.6931472,6.90343,1
-6,1,25,1,2,127517,0,2530.464,21.85969,0,12,1,0,5.531216,0,0,0,5.531216,0,0,0,0,0,1,26.3,26.1,0,,343,343,0,0,0,5.83773,0,3.258096,7.224025,1,0,0,64.05187,7.836553,0,1.710408,1
-6,1,25,1,3,127517,0,2530.464,22.85969,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,26.3,26.1,0,,343,343,0,0,0,5.83773,0,3.258096,7.224025,1,0,0,64.05187,7.836553,0,,0
-6,1,25,1,4,127517,0,2530.464,23.85969,0,12,1,88.52006,0,0,0,0,88.52006,0,0,0,2,0,1,26.3,26.1,0,,343,343,0,0,0,5.83773,0,3.258096,7.224025,1,0,0,64.05187,7.836553,0,4.483229,1
-6,1,25,1,5,127517,0,2530.464,24.85969,0,12,1,331.57,2.539145,12.69573,0,2180.301,2527.105,2,0,0,26,10,1,26.3,26.1,0,,343,343,0,0,0,5.83773,0,3.258096,7.224025,1,0,0,64.05187,7.836553,0,7.83483,1
-6,1,25,1,1,127518,0,2530.464,20.67351,1,12,1,15.28777,0,33.8729,0,456.205,505.3657,1,0,0,0,1,2,47.4,17.4,1,,343,343,0,0,.6931472,5.83773,0,3.258096,7.224025,1,0,0,64.956,7.836553,.6931472,6.225282,1
-4,1,100,0,1,127545,0,17136.48,6.485969,0,15,1,2.355713,0,0,0,0,2.355713,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,75.91927,9.749022,1.386294,.8568433,1
-4,1,100,0,2,127545,0,17136.48,7.485969,0,15,1,8.625337,0,0,0,0,8.625337,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,75.91927,9.749022,1.386294,2.154704,1
-4,1,100,0,3,127545,0,17136.48,8.485969,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,75.91927,9.749022,1.386294,,0
-4,1,100,0,1,127546,0,17136.48,35.30458,0,12,1,85.39458,60.39458,0,0,0,145.7892,0,0,0,7,0,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.61796,9.749022,1.386294,4.982162,1
-4,1,100,0,2,127546,0,17136.48,36.30458,0,12,1,94.87871,87.51482,0,0,0,182.3935,0,0,0,6,1,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.61796,9.749022,1.386294,5.206167,1
-4,1,100,0,3,127546,0,17136.48,37.30458,0,12,1,82.06388,54.50123,0,0,0,136.5651,0,0,0,8,0,4,83.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.61796,9.749022,1.386294,4.916801,1
-4,1,100,0,1,127547,0,17136.48,34.63929,1,15,1,69.49352,11.27797,0,0,0,80.7715,0,0,0,1,0,4,85,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.76966,9.749022,1.386294,4.391624,1
-4,1,100,0,2,127547,0,17136.48,35.63929,1,15,1,115.4986,36.28032,34.28571,0,0,186.0647,0,0,0,3,2,4,85,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.76966,9.749022,1.386294,5.226094,1
-4,1,100,0,3,127547,0,17136.48,36.63929,1,15,1,29.97543,67.48895,0,0,0,97.46437,0,0,0,1,0,4,85,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.76966,9.749022,1.386294,4.579487,1
-4,1,100,0,1,127548,0,17136.48,10.01506,1,15,1,21.20141,1.325088,0,0,0,22.5265,0,0,0,2,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.4053,9.749022,1.386294,3.114692,1
-4,1,100,0,2,127548,0,17136.48,11.01506,1,15,1,53.90836,21.40162,0,0,0,75.30997,0,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.4053,9.749022,1.386294,4.321612,1
-4,1,100,0,3,127548,0,17136.48,12.01506,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,75.4053,9.749022,1.386294,,0
-11,1,0,1,1,127549,0,7982.012,14.22861,1,12,1,27.95955,0,0,0,0,27.95955,0,0,0,2,0,4,85.3,4.3,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,3.330759,1
-11,1,0,1,2,127549,0,7982.012,15.22861,1,12,1,32.11758,3.097441,0,0,0,35.21502,0,0,0,4,0,4,85.3,4.3,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,3.561473,1
-11,1,0,1,3,127549,0,7982.012,16.22861,1,12,1,110.2577,33.3003,0,0,0,143.558,0,0,0,10,0,4,85.3,4.3,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,4.966739,1
-11,1,0,1,1,127550,0,7982.012,10.66119,1,12,1,11.89768,0,0,232.0048,0,11.89768,0,0,9,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,84.93909,8.985071,1.386294,2.476343,1
-11,1,0,1,2,127550,0,7982.012,11.66119,1,12,1,214.3277,3.24442,0,0,0,217.5721,0,0,0,7,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,84.93909,8.985071,1.386294,5.38253,1
-11,1,0,1,3,127550,0,7982.012,12.66119,1,12,1,197.3736,0,6.214073,0,0,203.5877,0,0,0,7,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,84.93909,8.985071,1.386294,5.316097,1
-11,1,0,1,1,127551,0,7982.012,16.76386,1,12,1,154.075,12.73647,0,0,0,166.8114,0,0,0,6,1,4,83.2,13,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,5.116864,1
-11,1,0,1,2,127551,0,7982.012,17.76386,1,12,1,28.85139,6.015242,0,0,0,34.86663,0,0,0,4,0,4,83.2,13,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,3.55153,1
-11,1,0,1,3,127551,0,7982.012,18.76386,1,12,1,14.8662,27.9336,11.4222,0,0,54.222,0,0,0,2,0,4,83.2,13,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.7188,8.985071,1.386294,3.993087,1
-11,1,0,1,1,127552,0,7982.012,45.88091,1,12,1,78.52469,7.001785,32.95063,0,0,118.4771,0,0,0,4,0,4,53.7,26.1,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.9501,8.985071,1.386294,4.77472,1
-11,1,0,1,2,127552,0,7982.012,46.88091,1,12,1,95.26402,7.065868,28.85139,0,0,131.1813,0,0,0,2,0,4,53.7,26.1,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.9501,8.985071,1.386294,4.87658,1
-11,1,0,1,3,127552,0,7982.012,47.88091,1,12,1,220.5401,2.031715,51.78394,0,0,274.3558,0,0,0,5,2,4,53.7,26.1,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.9501,8.985071,1.386294,5.614426,1
-4,1,100,1,1,127566,0,7645.161,51.09925,0,7,1,84.53237,26.52278,0,0,0,111.0552,0,0,0,18,0,2,97.9,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,73.07475,8.941959,.6931472,4.710027,1
-4,1,100,1,2,127566,0,7645.161,52.09925,0,7,1,99.12376,20.46002,0,0,0,119.5838,0,0,0,21,0,2,97.9,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,73.07475,8.941959,.6931472,4.784017,1
-4,1,100,1,3,127566,0,7645.161,53.09925,0,7,1,52.1197,24.53865,0,0,0,76.65836,0,0,0,14,0,2,97.9,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,73.07475,8.941959,.6931472,4.339359,1
-4,1,100,1,4,127566,0,7645.161,54.09925,0,7,1,37.3444,20.74689,0,0,0,58.09129,0,0,0,10,0,2,97.9,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,73.07475,8.941959,.6931472,4.062016,1
-4,1,100,1,5,127566,0,7645.161,55.09925,0,7,1,48.66695,19.04359,0,0,0,67.71054,0,0,0,14,0,2,97.9,0,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,73.07475,8.941959,.6931472,4.215242,1
-4,1,100,1,1,127567,0,7645.161,46.09446,1,11,1,99.52039,83.85492,0,0,0,183.3753,0,0,0,11,0,2,64.2,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,61.68202,8.941959,.6931472,5.211535,1
-4,1,100,1,2,127567,0,7645.161,47.09446,1,11,1,54.76451,63.74589,0,0,0,118.5104,0,0,0,8,0,2,64.2,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,61.68202,8.941959,.6931472,4.775001,1
-4,1,100,1,3,127567,0,7645.161,48.09446,1,11,1,181.6708,100.788,0,0,780.0798,1062.539,1,0,0,16,0,2,64.2,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,61.68202,8.941959,.6931472,6.968416,1
-4,1,100,1,4,127567,0,7645.161,49.09446,1,11,1,18.90272,44.93315,0,0,0,63.83587,0,0,0,3,0,2,64.2,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,61.68202,8.941959,.6931472,4.156315,1
-4,1,100,1,5,127567,0,7645.161,50.09446,1,11,1,33.43208,38.23952,0,0,0,71.6716,0,0,0,4,0,2,64.2,17.4,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,61.68202,8.941959,.6931472,4.272095,1
-4,1,100,1,1,127568,0,6055.831,20.10678,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,91.6,13,0,,374,374,0,0,0,5.924256,1,0,0,0,0,0,76.94312,8.708942,0,,0
-4,1,100,1,2,127568,0,6055.831,21.10678,0,12,1,19.16758,2.201533,0,0,537.7218,559.0909,1,0,0,3,0,1,91.6,13,0,,374,374,0,0,0,5.924256,1,0,0,0,0,0,76.94312,8.708942,0,6.326312,1
-4,1,100,1,3,127568,0,6055.831,22.10678,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,91.6,13,0,,374,374,0,0,0,5.924256,1,0,0,0,0,0,76.94312,8.708942,0,,0
-4,1,100,1,4,127568,0,6055.831,23.10678,0,12,1,7.376671,0,0,0,0,7.376671,0,0,0,1,0,1,91.6,13,0,,374,374,0,0,0,5.924256,1,0,0,0,0,0,76.94312,8.708942,0,1.998322,1
-4,1,100,1,5,127568,0,6055.831,24.10678,0,12,1,0,0,0,0,666.5975,666.5975,1,0,0,0,0,2,91.6,13,0,,374,374,0,0,.6931472,5.924256,1,0,0,0,0,0,76.94312,8.708942,.6931472,6.502186,1
-11,1,0,1,1,127595,0,10902.61,2.45859,0,9,1,67.14629,29.10072,0,0,0,96.247,0,0,0,6,2,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,72.88785,9.296849,1.609438,4.566918,1
-11,1,0,1,2,127595,0,10902.61,3.45859,0,9,1,32.31106,15.36145,0,0,0,47.67251,0,0,0,5,0,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,72.88785,9.296849,1.609438,3.864355,1
-11,1,0,1,3,127595,0,10902.61,4.45859,0,9,1,93.46633,59.89526,0,0,0,153.3616,0,0,0,14,0,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,72.88785,9.296849,1.609438,5.032799,1
-11,1,0,1,1,127596,0,10902.61,11.19507,0,9,1,24.58034,2.002398,23.80696,0,0,50.38969,0,0,0,2,1,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,74.00797,9.296849,1.609438,3.919786,1
-11,1,0,1,2,127596,0,10902.61,12.19507,0,9,1,65.71741,5.750274,14.30449,0,0,85.77218,0,0,0,5,1,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,74.00797,9.296849,1.609438,4.451694,1
-11,1,0,1,3,127596,0,10902.61,13.19507,0,9,1,262.2494,5.955112,24.49875,0,0,292.7032,0,0,0,5,1,5,74.36826,13.73189,0,,0,291,1,0,1.609438,5.673323,0,0,0,1,0,0,74.00797,9.296849,1.609438,5.679159,1
-11,1,0,1,1,127597,0,10902.61,32.24915,1,9,1,80.33573,17.48801,31.32494,0,0,129.1487,0,0,0,5,2,5,78.9,34.8,0,,0,291,0,0,1.609438,5.673323,0,0,0,1,0,0,65.76151,9.296849,1.609438,4.860964,1
-11,1,0,1,2,127597,0,10902.61,33.24915,1,9,1,349.0854,28.63089,0,0,0,377.7163,0,0,0,11,1,5,78.9,34.8,0,,0,291,0,0,1.609438,5.673323,0,0,0,1,0,0,65.76151,9.296849,1.609438,5.934144,1
-11,1,0,1,3,127597,0,10902.61,34.24915,1,9,1,228.7581,46.49377,36.48379,0,394.8678,706.6035,1,0,0,11,1,5,78.9,34.8,0,,0,291,0,0,1.609438,5.673323,0,0,0,1,0,0,65.76151,9.296849,1.609438,6.56047,1
-11,1,0,1,1,127598,0,10902.61,31.96441,0,12,1,74.34053,38.81894,31.32494,0,720.2338,864.7182,2,0,0,6,1,5,82.1,17.4,0,,0,291,0,0,1.609438,5.673323,0,0,0,0,0,1,53.44062,9.296849,1.609438,6.762403,1
-11,1,0,1,2,127598,0,10902.61,32.96441,0,12,1,215.2245,33.61446,38.33516,0,0,287.1742,0,0,0,11,7,5,82.1,17.4,0,,0,291,0,0,1.609438,5.673323,0,0,0,0,0,1,53.44062,9.296849,1.609438,5.660089,1
-11,1,0,1,3,127598,0,10902.61,33.96441,0,12,1,175.3865,88.24937,34.399,0,0,298.0349,0,0,0,11,1,5,82.1,17.4,0,,0,291,0,0,1.609438,5.673323,0,0,0,0,0,1,53.44062,9.296849,1.609438,5.697211,1
-11,1,0,1,1,127599,0,10902.61,10.11088,1,9,1,34.17266,0,0,0,0,34.17266,0,0,0,3,1,5,74.36826,13.73189,0,,0,291,1,1,1.609438,5.673323,0,0,0,1,0,0,75.8055,9.296849,1.609438,3.531426,1
-11,1,0,1,2,127599,0,10902.61,11.11088,1,9,1,49.28806,6.440307,30.33406,0,0,86.06243,0,0,0,6,1,5,74.36826,13.73189,0,,0,291,1,1,1.609438,5.673323,0,0,0,1,0,0,75.8055,9.296849,1.609438,4.455073,1
-11,1,0,1,3,127599,0,10902.61,12.11088,1,9,1,17.45636,4.82793,31.79551,0,0,54.0798,0,0,0,2,1,5,74.36826,13.73189,0,,0,291,1,1,1.609438,5.673323,0,0,0,1,0,0,75.8055,9.296849,1.609438,3.990461,1
-6,1,25,1,1,127600,0,7676.799,21.86995,1,15,1,23.98082,6.294964,31.95444,0,0,62.23022,0,0,0,2,0,4,84.2,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.52619,8.946088,1.386294,4.130841,1
-6,1,25,1,2,127600,0,7676.799,22.86995,1,15,1,38.8828,13.36254,0,0,0,52.24535,0,0,0,4,0,4,84.2,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.52619,8.946088,1.386294,3.955951,1
-6,1,25,1,3,127600,0,7676.799,23.86995,1,15,1,23.4414,2.319202,38.04988,0,0,63.81047,0,0,0,2,0,4,84.2,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.52619,8.946088,1.386294,4.155917,1
-6,1,25,1,1,127601,0,7676.799,17.16906,1,12,1,13.18945,11.1211,0,0,0,24.31055,0,0,0,2,0,4,78.9,0,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.88385,8.946088,1.386294,3.19091,1
-6,1,25,1,2,127601,0,7676.799,18.16906,1,12,1,33.954,0,31.47864,0,0,65.43264,0,0,0,3,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.88385,8.946088,1.386294,4.181021,1
-6,1,25,1,3,127601,0,7676.799,19.16906,1,12,1,50.87282,7.082294,0,0,0,57.95511,0,0,0,4,0,4,78.9,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.88385,8.946088,1.386294,4.059669,1
-6,1,25,1,1,127602,0,7676.799,53.17728,0,12,1,19.78417,49.43045,0,0,0,69.21463,0,0,0,2,0,4,85.3,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,63.87726,8.946088,1.386294,4.237212,1
-6,1,25,1,2,127602,0,7676.799,54.17728,0,12,1,57.41512,31.06791,33.19277,0,0,121.6758,0,0,0,5,0,4,85.3,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,63.87726,8.946088,1.386294,4.80136,1
-6,1,25,1,3,127602,0,7676.799,55.17728,0,12,1,75.5611,48.17955,0,0,0,123.7406,0,0,0,5,0,4,85.3,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,63.87726,8.946088,1.386294,4.818188,1
-6,1,25,1,1,127603,0,7676.799,53.577,1,12,1,68.95084,51.25899,230.8154,0,1179.568,1530.594,1,0,0,2,0,4,71.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,65.51687,8.946088,1.386294,7.333411,1
-6,1,25,1,2,127603,0,7676.799,54.577,1,12,1,62.43155,65.4436,42.91895,0,0,170.7941,0,0,0,5,0,4,71.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,65.51687,8.946088,1.386294,5.140459,1
-6,1,25,1,3,127603,0,7676.799,55.577,1,12,1,22.44389,51.94514,0,0,0,74.38903,0,0,0,2,0,4,71.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,65.51687,8.946088,1.386294,4.309309,1
-4,1,100,1,1,127611,0,11610.42,11.06639,0,13,1,113.6631,22.9682,0,0,0,136.6313,0,0,0,10,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,79.12157,9.359744,1.609438,4.917286,1
-4,1,100,1,2,127611,0,11610.42,12.06639,0,13,1,8.086253,0,0,0,0,8.086253,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,79.12157,9.359744,1.609438,2.090165,1
-4,1,100,1,3,127611,0,11610.42,13.06639,0,13,1,123.8329,13.2973,0,71.04177,1380.973,1518.103,1,0,13,13,8,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,79.12157,9.359744,1.609438,7.325217,1
-4,1,100,1,1,127612,0,11610.42,8.689939,0,13,1,50.05889,63.03298,0,0,887.8975,1000.989,1,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,74.88016,9.359744,1.609438,6.908744,1
-4,1,100,1,2,127612,0,11610.42,9.689939,0,13,1,105.4771,32.70081,0,182.2102,0,138.1779,0,0,21,7,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,74.88016,9.359744,1.609438,4.928542,1
-4,1,100,1,3,127612,0,11610.42,10.68994,0,13,1,55.03685,17.09091,0,194.5209,0,72.12776,0,0,21,4,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,1,0,0,74.88016,9.359744,1.609438,4.278439,1
-4,1,100,1,1,127613,0,11610.42,34.77618,0,12,1,106.0071,48.20966,0,0,204.9764,359.1932,1,0,0,8,1,5,53.7,17.4,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.79161,9.359744,1.609438,5.88386,1
-4,1,100,1,2,127613,0,11610.42,35.77618,0,12,1,30.18868,22.73854,0,75.47169,0,52.92722,0,0,4,3,0,5,53.7,17.4,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.79161,9.359744,1.609438,3.968918,1
-4,1,100,1,3,127613,0,11610.42,36.77618,0,12,1,74.69287,10.05405,0,171.9902,0,84.74693,0,0,7,5,1,5,53.7,17.4,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.79161,9.359744,1.609438,4.43967,1
-4,1,100,1,1,127614,0,11610.42,35.45517,1,13,1,148.4099,50.30035,0,0,0,198.7103,0,0,0,15,0,5,38.9,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,67.10754,9.359744,1.609438,5.291848,1
-4,1,100,1,2,127614,0,11610.42,36.45517,1,13,1,67.16982,43.47709,0,16.17251,0,110.6469,0,0,1,4,0,5,38.9,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,67.10754,9.359744,1.609438,4.706344,1
-4,1,100,1,3,127614,0,11610.42,37.45517,1,13,1,187.715,87.88698,0,243.0319,0,275.602,0,0,24,9,4,5,38.9,21.7,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,67.10754,9.359744,1.609438,5.618958,1
-4,1,100,1,1,127615,0,11610.42,12.72005,1,13,1,130.7421,41.56655,30.62426,0,0,202.9329,0,0,0,22,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,78.60759,9.359744,1.609438,5.312875,1
-4,1,100,1,2,127615,0,11610.42,13.72005,1,13,1,140.1617,31.34232,0,0,0,171.504,0,0,0,23,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,78.60759,9.359744,1.609438,5.144607,1
-4,1,100,1,3,127615,0,11610.42,14.72005,1,13,1,110.5651,15.47912,26.04423,74.72236,0,152.0885,0,0,13,13,7,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,1,0,0,78.60759,9.359744,1.609438,5.024462,1
-2,1,100,0,1,127628,0,8910.67,15.91786,0,12,1,0,4.640095,14.30101,0,0,18.94111,0,0,0,0,0,6,76.3,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,2.941334,1
-2,1,100,0,2,127628,0,8910.67,16.91786,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,76.3,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,3,127628,0,8910.67,17.91786,0,12,1,12.3885,0,0,0,0,12.3885,0,0,0,1,0,6,76.3,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,2.516769,1
-2,1,100,0,4,127628,0,8910.67,18.91786,0,12,1,3.212483,2.349702,0,0,0,5.562184,0,0,0,1,0,6,76.3,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,1.715991,1
-2,1,100,0,5,127628,0,8910.67,19.91786,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,76.3,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,1,127629,0,8910.67,17.71389,0,12,1,19.54194,0,0,0,0,19.54194,0,0,0,0,0,6,92.5,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,2.972563,1
-2,1,100,0,2,127629,0,8910.67,18.71389,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,3,127629,0,8910.67,19.71389,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,4,127629,0,8910.67,20.71389,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,5,127629,0,8910.67,21.71389,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,80.20427,9.095117,1.791759,,0
-2,1,100,0,1,127630,0,8910.67,47.63039,0,12,1,10.70791,0,43.27781,0,0,53.98572,0,0,0,0,1,6,90,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,66.07664,9.095117,1.791759,3.98872,1
-2,1,100,0,2,127630,0,8910.67,48.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,66.07664,9.095117,1.791759,,0
-2,1,100,0,3,127630,0,8910.67,49.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,66.07664,9.095117,1.791759,,0
-2,1,100,0,4,127630,0,8910.67,50.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,66.07664,9.095117,1.791759,,0
-2,1,100,0,5,127630,0,8910.67,51.63039,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,66.07664,9.095117,1.791759,,0
-2,1,100,0,1,127631,0,8910.67,9.270363,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,84.45741,9.095117,1.791759,,0
-2,1,100,0,2,127631,0,8910.67,10.27036,0,12,1,26.12956,4.082744,0,0,0,30.2123,0,0,0,1,1,6,74.36826,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,84.45741,9.095117,1.791759,3.408249,1
-2,1,100,0,3,127631,0,8910.67,11.27036,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,84.45741,9.095117,1.791759,,0
-2,1,100,0,4,127631,0,8910.67,12.27036,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,84.45741,9.095117,1.791759,,0
-2,1,100,0,5,127631,0,8910.67,13.27036,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,624,624,1,0,1.791759,6.436151,1,0,0,0,0,0,84.45741,9.095117,1.791759,,0
-2,1,100,0,1,127632,0,8910.67,47.85216,1,12,1,19.63117,0,39.78584,0,0,59.41702,0,0,0,1,1,6,82.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,70.76368,9.095117,1.791759,4.08458,1
-2,1,100,0,2,127632,0,8910.67,48.85216,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,82.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,70.76368,9.095117,1.791759,,0
-2,1,100,0,3,127632,0,8910.67,49.85216,1,12,1,29.23687,11.11497,33.45391,0,0,73.80575,0,0,0,2,1,6,82.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,70.76368,9.095117,1.791759,4.301436,1
-2,1,100,0,4,127632,0,8910.67,50.85216,1,12,1,0,11.7531,0,0,0,11.7531,0,0,0,0,0,6,82.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,70.76368,9.095117,1.791759,2.464117,1
-2,1,100,0,5,127632,0,8910.67,51.85216,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,82.5,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,1,0,0,70.76368,9.095117,1.791759,,0
-2,1,100,0,1,127633,0,8910.67,14.77071,1,12,1,41.19572,2.40928,0,0,0,43.605,0,0,0,1,1,6,85,13.73189,0,,624,624,1,1,1.791759,6.436151,1,0,0,0,0,0,74.86757,9.095117,1.791759,3.775172,1
-2,1,100,0,2,127633,0,8910.67,15.77071,1,12,1,13.06478,4.082744,26.12956,0,0,43.27708,0,0,0,0,1,6,85,13.73189,0,,624,624,1,1,1.791759,6.436151,1,0,0,0,0,0,74.86757,9.095117,1.791759,3.767623,1
-2,1,100,0,3,127633,0,8910.67,16.7707,1,12,1,3.468781,0,0,0,0,3.468781,0,0,0,1,0,6,85,13.73189,0,,624,624,1,1,1.791759,6.436151,1,0,0,0,0,0,74.86757,9.095117,1.791759,1.243803,1
-2,1,100,0,4,127633,0,8910.67,17.7707,1,12,1,22.48738,0,0,0,0,22.48738,0,0,0,3,0,6,85,13.73189,0,,624,624,1,1,1.791759,6.436151,1,0,0,0,0,0,74.86757,9.095117,1.791759,3.112954,1
-2,1,100,0,5,127633,0,8910.67,18.7707,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,85,13.73189,0,,624,624,0,0,1.791759,6.436151,1,0,0,0,0,0,74.86757,9.095117,1.791759,,0
-4,1,100,1,1,127637,0,2199.752,48.90623,1,13,1,21.10977,0,43.80579,0,0,64.91556,0,0,0,2,0,1,61.1,21.7,0,,403,403,0,0,0,5.998937,1,0,0,1,0,0,69.50401,7.696554,0,4.173087,1
-4,1,100,1,2,127637,0,2199.752,49.90623,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,61.1,21.7,0,,403,403,0,0,0,5.998937,1,0,0,1,0,0,69.50401,7.696554,0,,0
-4,1,100,1,3,127637,0,2199.752,50.90623,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,61.1,21.7,0,,403,403,0,0,0,5.998937,1,0,0,1,0,0,69.50401,7.696554,0,,0
-4,1,100,1,4,127637,0,2199.752,51.90623,1,13,1,23.18034,0,25.656,0,0,48.83635,0,0,0,3,0,1,61.1,21.7,0,,403,403,0,0,0,5.998937,1,0,0,1,0,0,69.50401,7.696554,0,3.888475,1
-4,1,100,1,5,127637,0,2199.752,52.90623,1,13,1,380.5827,0,55.08294,0,1714.241,2149.906,1,0,0,2,0,1,61.1,21.7,0,,403,403,0,0,0,5.998937,1,0,0,1,0,0,69.50401,7.696554,0,7.67318,1
-11,1,0,1,1,127641,0,9150.124,.6872005,0,12,1,101.3189,18.94484,0,0,0,120.2638,0,0,0,6,1,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.789688,1
-11,1,0,1,2,127641,0,9150.124,1.687201,0,12,1,79.68237,23.05586,0,0,0,102.7382,0,0,0,6,1,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.632185,1
-11,1,0,1,3,127641,0,9150.124,2.687201,0,12,1,57.4813,22.81796,0,0,236.813,317.1122,1,0,0,6,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,5.759256,1
-11,1,0,1,4,127641,0,9150.124,3.687201,0,12,1,89.5574,10.23513,0,0,0,99.79253,0,0,0,8,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.603093,1
-11,1,0,1,5,127641,0,9150.124,4.687201,0,12,1,45.70461,15.88235,0,0,0,61.58697,0,0,0,6,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.12045,1
-11,1,0,1,1,127642,0,9150.124,25.93566,1,12,1,98.32134,53.5012,0,0,0,151.8225,0,0,0,7,0,4,42.1,21.7,1,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.19587,9.121632,1.386294,5.022712,1
-11,1,0,1,2,127642,0,9150.124,26.93566,1,12,1,63.52684,23.7678,0,0,0,87.29463,0,0,0,7,0,4,42.1,21.7,1,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.19587,9.121632,1.386294,4.469289,1
-11,1,0,1,3,127642,0,9150.124,27.93566,1,12,1,44.88778,30.44888,0,0,0,75.33665,0,0,0,6,0,4,42.1,21.7,1,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.19587,9.121632,1.386294,4.321967,1
-11,1,0,1,4,127642,0,9150.124,28.93566,1,12,1,117.1047,57.42278,0,0,0,174.5274,0,0,0,9,0,4,42.1,21.7,1,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.19587,9.121632,1.386294,5.162082,1
-11,1,0,1,5,127642,0,9150.124,29.93566,1,12,1,118.2818,46.21244,0,0,724.4604,888.9547,1,0,0,6,0,4,42.1,21.7,1,,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.19587,9.121632,1.386294,6.790046,1
-11,1,0,1,1,127643,0,9150.124,4.982888,0,12,1,34.77218,1.199041,0,0,0,35.97122,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,3.582719,1
-11,1,0,1,2,127643,0,9150.124,5.982888,0,12,1,83.7897,1.09529,0,0,0,84.88499,0,0,0,5,1,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.441298,1
-11,1,0,1,3,127643,0,9150.124,6.982888,0,12,1,67.98504,0,0,0,0,67.98504,0,0,0,4,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,4.219288,1
-11,1,0,1,4,127643,0,9150.124,7.982888,0,12,1,26.74043,7.076994,0,0,0,33.81743,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,3.520976,1
-11,1,0,1,5,127643,0,9150.124,8.982888,0,12,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.24259,9.121632,1.386294,2.358944,1
-11,1,0,1,1,127644,0,9150.124,26.34908,0,14,1,57.40408,6.792566,0,0,299.7602,363.9568,1,1,0,1,0,4,70.5,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.81533,9.121632,1.386294,5.897035,1
-11,1,0,1,2,127644,0,9150.124,27.34908,0,14,1,107.667,2.88609,20.60241,0,0,131.1555,0,0,0,6,2,4,70.5,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.81533,9.121632,1.386294,4.876384,1
-11,1,0,1,3,127644,0,9150.124,28.34908,0,14,1,0,4.927681,0,0,0,4.927681,0,0,0,0,0,4,70.5,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.81533,9.121632,1.386294,1.594869,1
-11,1,0,1,4,127644,0,9150.124,29.34908,0,14,1,0,0,0,0,822.2914,822.2914,1,0,0,0,0,4,70.5,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.81533,9.121632,1.386294,6.712095,1
-11,1,0,1,5,127644,0,9150.124,30.34908,0,14,1,11.00296,0,0,0,0,11.00296,0,0,0,1,0,4,70.5,8.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.81533,9.121632,1.386294,2.398165,1
-6,1,25,0,1,127645,0,13521.71,39.54826,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.64024,9.512126,1.386294,,0
-6,1,25,0,2,127645,0,13521.71,40.54826,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.64024,9.512126,1.386294,,0
-6,1,25,0,3,127645,0,13521.71,41.54826,0,12,1,16.70762,0,0,0,0,16.70762,0,0,0,2,0,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.64024,9.512126,1.386294,2.815865,1
-6,1,25,0,4,127645,0,13521.71,42.54826,0,12,1,30.08204,0,0,0,0,30.08204,0,0,0,1,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.64024,9.512126,1.098612,3.403929,1
-6,1,25,0,5,127645,0,13521.71,43.54826,0,12,1,118.1117,3.980825,0,0,0,122.0925,0,0,0,3,0,3,76.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.64024,9.512126,1.098612,4.804779,1
-6,1,25,0,1,127646,0,13521.71,36.74469,1,12,1,35.92462,15.04711,0,0,0,50.97173,0,0,0,4,0,4,78.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.53143,9.512126,1.386294,3.931271,1
-6,1,25,0,2,127646,0,13521.71,37.74469,1,12,1,98.65229,17.70889,8.528302,0,1512.577,1637.466,1,0,0,6,0,4,78.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.53143,9.512126,1.386294,7.400906,1
-6,1,25,0,3,127646,0,13521.71,38.74469,1,12,1,41.03194,0,0,0,0,41.03194,0,0,0,1,1,4,78.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.53143,9.512126,1.386294,3.714351,1
-6,1,25,0,4,127646,0,13521.71,39.74469,1,12,1,164.0839,0,0,0,0,164.0839,0,0,0,5,0,3,78.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.53143,9.512126,1.098612,5.100378,1
-6,1,25,0,5,127646,0,13521.71,40.74469,1,12,1,51.27136,1.538141,0,0,1592.955,1645.765,2,0,0,8,0,3,78.8,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.53143,9.512126,1.098612,7.405961,1
-6,1,25,0,1,127647,0,13521.71,3.367557,0,12,1,34.15783,13.10365,0,0,0,47.26148,0,0,0,2,3,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.0187,9.512126,1.386294,3.855696,1
-6,1,25,0,2,127647,0,13521.71,4.367557,0,12,1,57.14286,20.96496,0,0,0,78.10782,0,0,0,9,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.0187,9.512126,1.386294,4.35809,1
-6,1,25,0,3,127647,0,13521.71,5.367557,0,12,1,75.18427,14.38329,0,0,0,89.56757,0,0,0,10,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.0187,9.512126,1.386294,4.494993,1
-6,1,25,0,4,127647,0,13521.71,6.367557,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,82.0187,9.512126,1.098612,,0
-6,1,25,0,5,127647,0,13521.71,7.367557,0,12,1,20.42518,0,0,0,0,20.42518,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,82.0187,9.512126,1.098612,3.016768,1
-6,1,25,0,1,127648,0,13521.71,14.33812,0,12,1,42.99176,9.422851,0,0,0,52.4146,0,0,0,5,0,4,76.3,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.4863,9.512126,1.386294,3.959185,1
-6,1,25,0,2,127648,0,13521.71,15.33812,0,12,1,99.19138,0,4.285714,0,0,103.4771,0,0,0,8,0,4,76.3,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.4863,9.512126,1.386294,4.63935,1
-6,1,25,0,3,127648,0,13521.71,16.33813,0,12,1,70.34398,2.088452,11.63145,0,0,84.06388,0,0,0,8,0,4,76.3,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.4863,9.512126,1.386294,4.431577,1
-1,1,0,1,1,127650,0,1594.661,9.355236,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,1,0,0,1,0,0,73.40184,7.375044,.6931472,,0
-1,1,0,1,2,127650,0,1594.661,10.35524,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,1,0,0,1,0,0,73.40184,7.375044,.6931472,,0
-1,1,0,1,3,127650,0,1594.661,11.35524,1,12,1,23.4414,0,0,0,0,23.4414,0,0,0,1,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,1,0,0,1,0,0,73.40184,7.375044,.6931472,3.154504,1
-1,1,0,1,4,127650,0,1594.661,12.35524,1,12,1,19.8248,0,0,0,0,19.8248,0,0,0,1,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,1,0,0,1,0,0,73.40184,7.375044,.6931472,2.986934,1
-1,1,0,1,5,127650,0,1594.661,13.35524,1,12,1,33.43208,0,0,0,0,33.43208,0,0,0,0,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,1,0,0,1,0,0,73.40184,7.375044,.6931472,3.509516,1
-1,1,0,1,1,127651,0,1594.661,35.21971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,64.2,17.4,0,,0,0,0,0,.6931472,0,1,0,0,1,0,0,64.5417,7.375044,.6931472,,0
-1,1,0,1,2,127651,0,1594.661,36.21971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,64.2,17.4,0,,0,0,0,0,.6931472,0,1,0,0,1,0,0,64.5417,7.375044,.6931472,,0
-1,1,0,1,3,127651,0,1594.661,37.21971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,64.2,17.4,0,,0,0,0,0,.6931472,0,1,0,0,1,0,0,64.5417,7.375044,.6931472,,0
-1,1,0,1,4,127651,0,1594.661,38.21971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,64.2,17.4,0,,0,0,0,0,.6931472,0,1,0,0,1,0,0,64.5417,7.375044,.6931472,,0
-1,1,0,1,5,127651,0,1594.661,39.21971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,64.2,17.4,0,,0,0,0,0,.6931472,0,1,0,0,1,0,0,64.5417,7.375044,.6931472,,0
-5,1,25,0,1,127660,0,8630.273,28.58864,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,64.77914,9.063148,1.386294,,0
-5,1,25,0,2,127660,0,8630.273,29.58864,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,64.77914,9.063148,1.386294,,0
-5,1,25,0,3,127660,0,8630.273,30.58864,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,4.3,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,64.77914,9.063148,1.386294,,0
-5,1,25,0,4,127660,0,8630.273,31.58864,0,16,1,160.2552,7.976299,0,0,0,168.2315,0,0,0,2,0,4,84.2,4.3,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,64.77914,9.063148,1.386294,5.125341,1
-5,1,25,0,5,127660,0,8630.273,32.58864,0,16,1,263.7557,8.962068,0,0,0,272.7178,0,0,0,2,0,4,84.2,4.3,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,64.77914,9.063148,1.386294,5.608438,1
-5,1,25,0,1,127661,0,8630.273,1.582478,0,12,1,32.39105,13.30978,0,0,0,45.70082,0,0,0,4,0,4,74.36826,13.73189,0,,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.69028,9.063148,1.386294,3.822116,1
-5,1,25,0,2,127661,0,8630.273,2.582478,0,12,1,23.98922,15.2345,0,0,0,39.22372,0,0,0,3,0,4,74.36826,13.73189,0,,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.69028,9.063148,1.386294,3.669282,1
-5,1,25,0,3,127661,0,8630.273,3.582478,0,12,1,17.19902,4.968059,0,0,0,22.16708,0,0,0,2,0,4,74.36826,13.73189,0,,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.69028,9.063148,1.386294,3.098608,1
-5,1,25,0,4,127661,0,8630.273,4.582478,0,12,1,29.17047,0,0,0,0,29.17047,0,0,0,1,1,4,74.36826,13.73189,0,,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.69028,9.063148,1.386294,3.373157,1
-5,1,25,0,5,127661,0,8630.273,5.582478,0,12,1,40.85035,2.705294,0,0,0,43.55565,0,0,0,6,0,4,74.36826,13.73189,0,,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.69028,9.063148,1.386294,3.77404,1
-5,1,25,0,1,127662,0,8630.273,27.45243,1,12,1,21.20141,15.95995,30.62426,0,0,67.78563,0,0,0,1,1,4,86.3,8.7,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,72.61974,9.063148,1.386294,4.21635,1
-5,1,25,0,2,127662,0,8630.273,28.45243,1,12,1,31.53639,20.26415,14.55526,0,0,66.3558,0,0,0,2,1,4,86.3,8.7,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,72.61974,9.063148,1.386294,4.195031,1
-5,1,25,0,3,127662,0,8630.273,29.45243,1,12,1,5.896806,29.30221,0,0,0,35.19902,0,0,0,1,0,4,86.3,8.7,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,72.61974,9.063148,1.386294,3.561018,1
-5,1,25,0,4,127662,0,8630.273,30.45243,1,12,1,13.67366,0,0,0,0,13.67366,0,0,0,1,0,4,86.3,8.7,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,72.61974,9.063148,1.386294,2.615471,1
-5,1,25,0,5,127662,0,8630.273,31.45243,1,12,1,23.7599,0,22.92622,0,0,46.68612,0,0,0,1,1,4,86.3,8.7,0,,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,1,0,0,72.61974,9.063148,1.386294,3.843447,1
-5,1,25,0,1,127663,0,8630.273,4.635181,1,12,1,20.02356,12.26737,0,0,0,32.29093,0,0,0,2,0,4,74.36826,13.73189,0,,560,560,1,1,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.1763,9.063148,1.386294,3.474787,1
-5,1,25,0,2,127663,0,8630.273,5.635181,1,12,1,63.8814,6.210243,3.180593,0,0,73.27224,0,0,0,6,0,4,74.36826,13.73189,0,,560,560,1,1,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.1763,9.063148,1.386294,4.294182,1
-5,1,25,0,3,127663,0,8630.273,6.635181,1,12,1,27.51843,8.737101,0,0,0,36.25553,0,0,0,4,0,4,74.36826,13.73189,0,,560,560,1,1,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.1763,9.063148,1.386294,3.590592,1
-5,1,25,0,4,127663,0,8630.273,7.635181,1,12,1,21.87785,0,0,0,0,21.87785,0,0,0,1,1,4,74.36826,13.73189,0,,560,560,1,1,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.1763,9.063148,1.386294,3.085475,1
-5,1,25,0,5,127663,0,8630.273,8.635181,1,12,1,14.58941,2.709462,0,0,0,17.29887,0,0,0,2,0,4,74.36826,13.73189,0,,560,560,1,1,1.386294,6.327937,0,3.258096,7.714231,1,0,0,74.1763,9.063148,1.386294,2.850641,1
-1,1,0,1,1,127686,0,15181.76,48.29295,1,12,1,93.24807,93.99762,0,0,0,187.2457,0,0,0,6,0,2,71.6,30.4,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,66.75724,9.627916,.6931472,5.232421,1
-1,1,0,1,2,127686,0,15181.76,49.29295,1,12,1,149.7006,82.13391,0,0,0,231.8345,0,0,0,13,0,2,71.6,30.4,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,66.75724,9.627916,.6931472,5.446024,1
-1,1,0,1,3,127686,0,15181.76,50.29295,1,12,1,173.9346,110.1586,47.64123,0,0,331.7344,0,0,0,19,0,2,71.6,30.4,0,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,66.75724,9.627916,.6931472,5.804335,1
-1,1,0,1,1,127688,0,15181.76,22.06708,1,15,1,82.09399,62.52231,0,0,0,144.6163,0,0,0,14,0,2,62.1,26.1,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,74.26819,9.627916,.6931472,4.974084,1
-1,1,0,1,2,127688,0,15181.76,23.06708,1,15,1,230.8111,111.644,0,0,0,342.4551,0,0,0,30,0,2,62.1,26.1,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,74.26819,9.627916,.6931472,5.836141,1
-1,1,0,1,3,127688,0,15181.76,24.06708,1,15,1,311.6947,94.99009,4.142715,0,0,410.8275,0,0,0,38,0,2,62.1,26.1,1,,300,398,0,0,.6931472,5.986452,1,0,0,1,0,0,74.26819,9.627916,.6931472,6.018174,1
-10,1,50,0,1,127696,0,7948.511,24.49008,1,13,1,68.31567,13.37456,26.79623,0,0,108.4865,0,0,0,4,1,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.86204,8.980865,1.098612,4.686625,1
-10,1,50,0,2,127696,0,7948.511,25.49008,1,13,1,33.42318,21.54178,0,0,0,54.96496,0,0,0,4,0,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.86204,8.980865,1.098612,4.006696,1
-10,1,50,0,3,127696,0,7948.511,26.49008,1,13,1,52.57985,6.216216,24.90909,0,0,83.70516,0,0,0,4,1,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.86204,8.980865,1.098612,4.4273,1
-10,1,50,0,1,127697,0,7948.511,25.50856,0,13,1,91.28387,54.00471,0,0,2267.821,2413.11,3,0,0,10,1,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.89945,8.980865,1.098612,7.788671,1
-10,1,50,0,2,127697,0,7948.511,26.50856,0,13,1,50.53909,28.07008,0,0,0,78.60916,0,0,0,4,0,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.89945,8.980865,1.098612,4.364488,1
-10,1,50,0,3,127697,0,7948.511,27.50856,0,13,1,103.1941,49.69533,14.31941,0,0,167.2088,0,0,0,9,1,3,80,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,61.89945,8.980865,1.098612,5.119244,1
-6,1,25,0,1,127717,0,4333.747,26.02875,1,13,1,222.0259,22.81508,13.93993,0,0,258.7809,0,0,0,11,0,1,83.8,13.73189,0,,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,72.50717,8.374418,0,5.555982,1
-6,1,25,0,2,127717,0,4333.747,27.02875,1,13,1,120.9704,45.28841,0,0,0,166.2588,0,0,0,18,0,1,83.8,13.73189,0,,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,72.50717,8.374418,0,5.113545,1
-6,1,25,0,3,127717,0,4333.747,28.02875,1,13,1,24.57002,9.764128,0,0,0,34.33415,0,0,0,2,0,1,83.8,13.73189,0,,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,72.50717,8.374418,0,3.53614,1
-6,1,25,0,4,127717,0,4333.747,29.02875,1,13,1,14.58523,5.989061,0,0,0,20.57429,0,0,0,2,0,1,83.8,13.73189,0,,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,72.50717,8.374418,0,3.024042,1
-6,1,25,0,5,127717,0,4333.747,30.02875,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,83.8,13.73189,0,,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,72.50717,8.374418,0,,0
-2,1,100,0,1,127737,0,9179.9,17.77413,0,12,1,23.20048,14.53302,0,0,0,37.73349,0,0,0,4,0,3,94.7,8.7,0,,632,632,1,0,1.098612,6.448889,1,0,0,0,0,0,80.22991,9.124881,1.098612,3.630548,1
-2,1,100,0,2,127737,0,9179.9,18.77413,0,12,1,6.53239,5.900926,0,0,0,12.43332,0,0,0,1,0,3,94.7,8.7,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,80.22991,9.124881,1.098612,2.52038,1
-2,1,100,0,3,127737,0,9179.9,19.77413,0,12,1,14.37066,.9365709,0,0,0,15.30723,0,0,0,2,0,3,94.7,8.7,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,80.22991,9.124881,1.098612,2.728326,1
-2,1,100,1,1,127738,0,9179.9,53.68378,0,13,1,24.39024,6.234384,0,0,0,30.62463,0,0,0,4,0,3,94.7,8.7,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,76.86221,9.124881,1.098612,3.421804,1
-2,1,100,1,2,127738,0,9179.9,54.68378,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,94.7,8.7,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,76.86221,9.124881,1.098612,,0
-2,1,100,1,3,127738,0,9179.9,55.68378,0,13,1,17.83945,0,0,0,0,17.83945,0,0,0,1,0,3,94.7,8.7,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,76.86221,9.124881,1.098612,2.881412,1
-2,1,100,1,1,127739,0,9179.9,51.95893,1,12,1,19.03629,19.03034,35.43724,0,0,73.50387,0,0,0,1,1,3,95.8,17.4,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,77.2877,9.124881,1.098612,4.297338,1
-2,1,100,1,2,127739,0,9179.9,52.95893,1,12,1,6.53239,0,0,0,0,6.53239,0,0,0,1,0,3,95.8,17.4,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,77.2877,9.124881,1.098612,1.876773,1
-2,1,100,1,3,127739,0,9179.9,53.95893,1,12,1,656.5907,3.899901,52.03172,0,0,712.5223,0,0,0,0,5,3,95.8,17.4,0,,632,632,0,0,1.098612,6.448889,1,0,0,0,0,0,77.2877,9.124881,1.098612,6.568811,1
-1,1,0,0,1,127751,0,3132.623,22.38193,1,12,1,8.244994,0,36.9258,0,0,45.17079,0,0,0,0,1,1,68.8,13.73189,0,,150,78,0,0,0,4.356709,1,0,0,0,0,0,78.20497,8.049945,0,3.810451,1
-1,1,0,0,2,127751,0,3132.623,23.38193,1,12,1,30.18868,4.06469,19.15364,0,0,53.40701,0,0,0,4,1,1,68.8,13.73189,0,,150,78,0,0,0,4.356709,1,0,0,0,0,0,78.20497,8.049945,0,3.977942,1
-1,1,0,0,3,127751,0,3132.623,24.38193,1,12,1,57.98526,6.117936,0,0,0,64.1032,0,0,0,9,0,1,68.8,13.73189,0,,150,78,0,0,0,4.356709,1,0,0,0,0,0,78.20497,8.049945,0,4.160494,1
-1,1,0,0,4,127751,0,3132.623,25.38193,1,12,1,20.0547,0,20.96627,0,0,41.02097,0,0,0,2,1,1,68.8,13.73189,0,,150,78,0,0,0,4.356709,1,0,0,0,0,0,78.20497,8.049945,0,3.714083,1
-1,1,0,0,5,127751,0,3132.623,26.38193,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,68.8,13.73189,0,,150,78,0,0,0,4.356709,1,0,0,0,0,0,78.20497,8.049945,0,,0
-7,1,25,0,1,127759,0,10660.67,45.97673,1,12,1,43.87515,13.1331,22.46172,0,0,79.46996,0,0,0,3,1,2,84.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.24699,9.27441,.6931472,4.375379,1
-7,1,25,0,2,127759,0,10660.67,46.97673,1,12,1,69.54178,6.96496,27.97844,0,0,104.4852,0,0,0,3,1,2,84.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.24699,9.27441,.6931472,4.649045,1
-7,1,25,0,3,127759,0,10660.67,47.97673,1,12,1,623.0958,33.79853,0,0,876.4619,1533.356,1,0,0,7,0,2,84.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.24699,9.27441,.6931472,7.335214,1
-7,1,25,0,4,127759,0,10660.67,48.97673,1,12,1,190.9754,7.921604,40.33728,0,0,239.2343,0,0,0,2,1,2,84.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.24699,9.27441,.6931472,5.477443,1
-7,1,25,0,5,127759,0,10660.67,49.97673,1,12,1,10.42101,3.192997,36.15673,0,0,49.77074,0,0,0,0,1,2,84.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.24699,9.27441,.6931472,3.907427,1
-7,1,25,0,1,127760,0,10660.67,45.71937,0,11,1,176.6785,81.1543,44.31096,0,0,302.1437,0,0,0,15,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.73394,9.27441,.6931472,5.710903,1
-7,1,25,0,2,127760,0,10660.67,46.71937,0,11,1,24.25876,36.79245,0,0,0,61.05121,0,0,0,5,0,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.73394,9.27441,.6931472,4.111713,1
-7,1,25,0,3,127760,0,10660.67,47.71937,0,11,1,133.1695,84.23587,57.13022,0,3313.268,3587.803,2,0,0,16,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.73394,9.27441,.6931472,8.185295,1
-7,1,25,0,4,127760,0,10660.67,48.71937,0,11,1,41.02097,60.74749,0,0,0,101.7685,0,0,0,8,0,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.73394,9.27441,.6931472,4.6227,1
-7,1,25,0,5,127760,0,10660.67,49.71937,0,11,1,56.69029,78.99958,0,0,0,135.6899,0,0,0,6,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,73.73394,9.27441,.6931472,4.910372,1
-6,1,25,1,1,127764,0,14575.68,10.83915,1,14,1,1.798561,0,0,0,0,1.798561,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,85.55971,9.587178,1.94591,.586987,1
-6,1,25,1,2,127764,0,14575.68,11.83915,1,14,1,21.90581,3.47207,0,0,941.6429,967.0208,1,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,85.55971,9.587178,1.94591,6.87422,1
-6,1,25,1,3,127764,0,14575.68,12.83915,1,14,1,24.28928,1.630923,0,0,0,25.9202,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,85.55971,9.587178,1.94591,3.255023,1
-6,1,25,1,1,127765,0,14575.68,2.757016,1,14,1,39.56834,20.22782,0,0,0,59.79616,0,0,0,5,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,82.12809,9.587178,1.94591,4.090941,1
-6,1,25,1,2,127765,0,14575.68,3.757016,1,14,1,24.09639,12.13582,0,0,0,36.2322,0,0,0,3,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,82.12809,9.587178,1.94591,3.589948,1
-6,1,25,1,3,127765,0,14575.68,4.757016,1,14,1,85.78554,17.75561,0,0,0,103.5411,0,0,0,5,1,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,0,0,0,82.12809,9.587178,1.94591,4.639969,1
-6,1,25,1,1,127766,0,14575.68,6.004107,0,14,1,130.3957,1.672662,0,0,0,132.0683,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,4.883319,1
-6,1,25,1,2,127766,0,14575.68,7.004107,0,14,1,15.33406,0,0,0,0,15.33406,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,2.730077,1
-6,1,25,1,3,127766,0,14575.68,8.004107,0,14,1,21.44638,5.955112,0,59.85037,0,27.4015,0,0,1,3,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,3.310598,1
-6,1,25,1,1,127767,0,14575.68,40.69815,0,16,1,0,0,0,0,0,0,0,0,0,0,0,7,75.8,0,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,77.52456,9.587178,1.94591,,0
-6,1,25,1,2,127767,0,14575.68,41.69815,0,16,1,0,0,0,0,0,0,0,0,0,0,0,7,75.8,0,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,77.52456,9.587178,1.94591,,0
-6,1,25,1,3,127767,0,14575.68,42.69815,0,16,1,0,1.261845,0,0,0,1.261845,0,0,0,0,0,7,75.8,0,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,77.52456,9.587178,1.94591,.2325752,1
-6,1,25,1,1,127768,0,14575.68,40.62149,1,14,1,22.18225,0,28.19544,0,0,50.3777,0,0,0,2,0,7,75.8,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,78.99319,9.587178,1.94591,3.919549,1
-6,1,25,1,2,127768,0,14575.68,41.62149,1,14,1,15.33406,0,13.73494,0,0,29.069,0,0,0,1,0,7,75.8,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,78.99319,9.587178,1.94591,3.369673,1
-6,1,25,1,3,127768,0,14575.68,42.62149,1,14,1,0,0,0,0,0,0,0,0,0,0,0,7,75.8,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,78.99319,9.587178,1.94591,,0
-6,1,25,1,1,127769,0,14575.68,9.401779,0,14,1,29.97602,5.413669,24.1247,0,0,59.51439,0,0,0,4,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,4.086218,1
-6,1,25,1,2,127769,0,14575.68,10.40178,0,14,1,15.33406,0,13.73494,0,0,29.069,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,3.369673,1
-6,1,25,1,3,127769,0,14575.68,11.40178,0,14,1,75.31172,0,16.6783,0,0,91.99003,0,0,0,5,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,86.07368,9.587178,1.94591,4.52168,1
-6,1,25,1,1,127770,0,14575.68,14.89938,0,14,1,16.78657,0,0,204.5863,0,16.78657,0,0,10,3,0,7,66.3,8.7,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,80.99475,9.587178,1.94591,2.820579,1
-6,1,25,1,2,127770,0,14575.68,15.89938,0,14,1,147.0427,7.984666,0,0,0,155.0274,0,0,0,2,0,7,66.3,8.7,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,80.99475,9.587178,1.94591,5.043602,1
-6,1,25,1,3,127770,0,14575.68,16.89938,0,14,1,53.36658,2.693267,0,0,0,56.05985,0,0,1,2,0,7,66.3,8.7,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,0,0,0,80.99475,9.587178,1.94591,4.02642,1
-4,1,100,0,1,127779,0,9723.945,26.0397,1,12,1,40.63604,7.067138,0,0,914.9058,962.6089,1,0,0,3,0,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,65.72105,9.182449,.6931472,6.869647,1
-4,1,100,0,2,127779,0,9723.945,27.0397,1,12,1,66.84636,9.622642,0,0,868.5714,945.0404,1,0,0,3,0,3,64.2,21.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,65.72105,9.182449,1.098612,6.851228,1
-4,1,100,0,3,127779,0,9723.945,28.0397,1,12,1,60.56511,17.91155,16.21622,0,0,94.69287,0,0,0,5,3,4,64.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.72105,9.182449,1.386294,4.550639,1
-4,1,100,0,4,127779,0,9723.945,29.0397,1,12,1,546.7867,30.42388,0,254.1021,0,577.2106,0,0,12,11,7,4,64.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.72105,9.182449,1.386294,6.358207,1
-4,1,100,0,5,127779,0,9723.945,30.0397,1,12,1,14.58941,3.272197,0,0,0,17.86161,0,0,0,2,0,4,64.2,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,65.72105,9.182449,1.386294,2.882654,1
-4,1,100,0,1,127780,0,9723.945,25.99315,0,12,1,234.9823,14.69376,0,0,0,249.6761,0,0,0,7,6,2,60,13,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,71.23127,9.182449,.6931472,5.520164,1
-4,1,100,0,2,127780,0,9723.945,26.99315,0,12,1,218.3288,0,0,0,0,218.3288,0,0,0,6,3,3,60,13,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,1,0,0,71.23127,9.182449,1.098612,5.386003,1
-4,1,100,0,3,127780,0,9723.945,27.99315,0,12,1,74.20148,2.432432,0,0,590.9484,667.5823,1,0,0,2,2,4,60,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.23127,9.182449,1.386294,6.503663,1
-4,1,100,0,4,127780,0,9723.945,28.99315,0,12,1,15.49681,0,0,0,0,15.49681,0,0,0,2,1,4,60,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.23127,9.182449,1.386294,2.740634,1
-4,1,100,0,5,127780,0,9723.945,29.99315,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,60,13,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,71.23127,9.182449,1.386294,,0
-2,1,100,1,1,127844,0,7080.025,54.13005,1,7,1,56.51398,68.73885,0,0,0,125.2528,0,0,0,5,1,2,71.6,21.7,0,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,54.37621,8.865174,.6931472,4.830334,1
-2,1,100,1,2,127844,0,7080.025,55.13005,1,7,1,66.95699,46.81546,0,0,0,113.7725,0,0,0,8,0,2,71.6,21.7,0,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,54.37621,8.865174,.6931472,4.7342,1
-2,1,100,1,3,127844,0,7080.025,56.13005,1,7,1,88.8008,49.57384,0,0,1069.876,1208.251,1,0,0,6,0,2,71.6,21.7,0,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,54.37621,8.865174,.6931472,7.096929,1
-2,1,100,1,4,127844,0,7080.025,57.13005,1,7,1,256.7692,95.79623,40.28453,0,0,392.8499,0,0,0,9,0,2,71.6,21.7,0,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,54.37621,8.865174,.6931472,5.973428,1
-2,1,100,1,5,127844,0,7080.025,58.13005,1,7,1,24.8212,97.3496,0,0,0,122.1708,0,0,0,4,0,2,71.6,21.7,0,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,54.37621,8.865174,.6931472,4.80542,1
-2,1,100,1,1,127845,0,7080.025,59.80014,0,10,1,4.759072,0,0,0,0,4.759072,0,0,0,1,0,2,56.8,30.4,1,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,58.17178,8.865174,.6931472,1.560053,1
-2,1,100,1,2,127845,0,7080.025,60.80014,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,56.8,30.4,1,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,58.17178,8.865174,.6931472,,0
-2,1,100,1,3,127845,0,7080.025,61.80014,0,10,1,0,2.428147,0,0,0,2.428147,0,0,0,0,0,2,56.8,30.4,1,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,58.17178,8.865174,.6931472,.8871282,1
-2,1,100,1,4,127845,0,7080.025,62.80014,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,56.8,30.4,1,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,58.17178,8.865174,.6931472,,0
-2,1,100,1,5,127845,0,7080.025,63.80014,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,56.8,30.4,1,,897,897,0,0,.6931472,6.799056,1,0,0,0,1,0,58.17178,8.865174,.6931472,,0
-2,1,100,1,1,127853,0,10884.62,52.2245,1,10,1,5.94884,8.76859,0,0,0,14.71743,0,0,0,1,0,1,83.2,13,0,,678,678,0,0,0,6.519147,1,0,0,1,0,0,69.8115,9.295197,0,2.689033,1
-2,1,100,1,2,127853,0,10884.62,53.2245,1,10,1,22.86336,8.43767,31.81274,0,0,63.11377,0,0,0,1,1,1,83.2,13,0,,678,678,0,0,0,6.519147,1,0,0,1,0,0,69.8115,9.295197,0,4.144939,1
-2,1,100,1,3,127853,0,10884.62,54.2245,1,10,1,12.88404,11.52131,0,0,0,24.40535,0,0,0,0,1,1,83.2,13,0,,678,678,0,0,0,6.519147,1,0,0,1,0,0,69.8115,9.295197,0,3.194803,1
-2,1,100,1,4,127853,0,10884.62,55.2245,1,10,1,11.47315,11.15649,0,0,0,22.62965,0,0,0,1,0,1,83.2,13,0,,678,678,0,0,0,6.519147,1,0,0,1,0,0,69.8115,9.295197,0,3.119261,1
-2,1,100,1,5,127853,0,10884.62,56.2245,1,10,1,0,7.421119,0,0,0,7.421119,0,0,0,0,0,1,83.2,13,0,,678,678,0,0,0,6.519147,1,0,0,1,0,0,69.8115,9.295197,0,2.00433,1
-11,1,0,0,1,127859,0,8602.978,28.0794,0,16,1,8.833922,0,32.39105,0,0,41.22497,0,0,0,0,1,1,49.5,21.7,0,,0,247,0,0,0,5.509388,0,0,0,0,0,0,76.30257,9.059979,0,3.719044,1
-11,1,0,0,2,127859,0,8602.978,29.0794,0,16,1,5.929919,5.660378,0,0,0,11.5903,0,0,0,1,0,1,49.5,21.7,0,,0,247,0,0,0,5.509388,0,0,0,0,0,0,76.30257,9.059979,0,2.450168,1
-11,1,0,0,3,127859,0,8602.978,30.0794,0,16,1,12.77641,8.968059,0,0,0,21.74447,0,0,0,2,0,1,49.5,21.7,0,,0,247,0,0,0,5.509388,0,0,0,0,0,0,76.30257,9.059979,0,3.07936,1
-11,1,0,0,4,127859,0,8602.978,31.0794,0,16,1,15.49681,3.19052,28.91522,0,0,47.60255,0,0,0,1,1,1,49.5,21.7,0,,0,247,0,0,0,5.509388,0,0,0,0,0,0,76.30257,9.059979,0,3.862886,1
-11,1,0,0,5,127859,0,8602.978,32.0794,0,16,1,5.002084,2.396832,0,0,0,7.398916,0,0,0,1,0,1,49.5,21.7,0,,0,247,0,0,0,5.509388,0,0,0,0,0,0,76.30257,9.059979,0,2.001333,1
-10,1,50,1,1,127869,0,9542.002,22.37919,1,13,1,34.88995,19.98215,0,0,0,54.8721,0,0,0,2,0,3,73.7,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.05471,9.163564,1.098612,4.005005,1
-10,1,50,1,1,127870,0,9542.002,23.25257,0,12,1,4.759072,9.417014,0,0,0,14.17609,0,0,0,1,0,3,88.4,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.10675,9.163564,1.098612,2.651556,1
-10,1,50,1,1,127871,0,9542.002,1.650924,1,13,1,120.4878,25.66924,0,0,0,146.157,0,0,0,9,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,76.42117,9.163564,1.098612,4.984682,1
-1,1,0,0,1,127908,1,9542.002,52.4846,0,7,1,52.62073,1.766784,0,0,0,54.38752,0,0,0,0,0,2,75.8,30.4,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,60.18914,9.163564,.6931472,3.996135,1
-1,1,0,0,2,127908,1,9542.002,53.4846,0,7,.3142076,76.79784,0,0,0,2641.412,2718.21,1,0,0,2,1,2,75.8,30.4,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,60.18914,9.163564,.6931472,7.907729,1
-1,1,0,0,1,127909,1,9542.002,46.8063,1,9,1,159.4818,586.1484,43.79859,23.55713,0,789.4287,0,0,2,13,3,2,55.8,26.1,1,,300,300,0,0,.6931472,5.703783,1,0,0,0,1,0,59.73195,9.163564,.6931472,6.671309,1
-1,1,0,0,2,127909,1,9542.002,47.8063,1,9,.5382513,130.8356,233.6765,32.51752,21.56334,1045.892,1442.922,1,0,2,12,1,2,55.8,26.1,1,,300,300,0,0,.6931472,5.703783,1,0,0,0,1,0,59.73195,9.163564,.6931472,7.274426,1
-11,1,0,1,1,127920,1,5730.991,38.30527,0,10,1,155.6092,42.2497,47.25573,0,0,245.1146,0,0,0,7,0,3,69.5,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.38857,8.653818,1.098612,5.501726,1
-11,1,0,1,2,127920,1,5730.991,39.30527,0,10,1,343.0617,60.80397,0,0,640.9141,1044.78,1,0,0,11,2,3,69.5,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.38857,8.653818,1.098612,6.951561,1
-11,1,0,1,3,127920,1,5730.991,40.30527,0,10,1,115.0176,63.27473,48.81467,0,0,227.107,0,0,0,11,0,3,69.5,17.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.38857,8.653818,1.098612,5.425421,1
-11,1,0,1,1,127921,1,5730.991,41.85626,1,10,1,22.31604,0,49.16767,0,0,71.48372,0,0,0,2,0,3,78.9,30.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.65693,8.653818,1.098612,4.26947,1
-11,1,0,1,2,127921,1,5730.991,42.85626,1,10,1,37.44493,12.47247,0,0,0,49.9174,0,0,0,2,0,3,78.9,30.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.65693,8.653818,1.098612,3.91037,1
-11,1,0,1,3,127921,1,5730.991,43.85626,1,10,1,30.63787,8.864892,0,0,0,39.50276,0,0,0,2,0,3,78.9,30.4,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.65693,8.653818,1.098612,3.676371,1
-11,1,0,1,1,127922,1,5730.991,15.37851,0,10,1,6.031363,0,0,0,0,6.031363,0,0,0,1,0,3,81.1,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,69.89707,8.653818,1.098612,1.796973,1
-11,1,0,1,2,127922,1,5730.991,16.37851,0,10,1,27.53304,3.221366,0,0,0,30.75441,0,0,0,0,1,3,81.1,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,69.89707,8.653818,1.098612,3.426033,1
-11,1,0,1,3,127922,1,5730.991,17.37851,0,10,1,53.91763,13.2898,0,0,0,67.20744,0,0,0,4,0,3,81.1,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,69.89707,8.653818,1.098612,4.207784,1
-5,1,25,1,1,127923,1,10909.43,26.94319,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.9,4.3,0,,399,399,0,0,0,5.988961,0,3.258096,7.375256,0,0,0,71.59248,9.297475,0,,0
-5,1,25,1,2,127923,1,10909.43,27.94319,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.9,4.3,0,,399,399,0,0,0,5.988961,0,3.258096,7.375256,0,0,0,71.59248,9.297475,0,,0
-5,1,25,1,3,127923,1,10909.43,28.94319,0,12,1,22.44389,0,0,0,0,22.44389,0,0,0,2,0,2,78.9,4.3,0,,399,399,0,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,71.59248,9.297475,.6931472,3.111018,1
-5,1,25,1,4,127923,1,10909.43,29.94319,0,12,1,67.31213,6.897188,37.50576,0,0,111.7151,0,0,0,1,0,2,78.9,4.3,0,,399,399,0,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,71.59248,9.297475,.6931472,4.715951,1
-5,1,25,1,5,127923,1,10909.43,30.94319,0,12,1,9.73339,7.685146,0,0,0,17.41854,0,0,0,1,0,2,78.9,4.3,0,,399,399,0,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,71.59248,9.297475,.6931472,2.857535,1
-3,1,100,0,1,127949,0,4003.102,52.83778,1,10,1,0,0,0,0,0,0,0,0,0,0,0,1,86.3,13.73189,0,,546,546,0,0,0,6.302619,1,0,0,0,1,0,54.90957,8.295074,0,,0
-3,1,100,0,2,127949,0,4003.102,53.83778,1,10,1,0,0,0,0,0,0,0,0,0,0,0,1,86.3,13.73189,0,,546,546,0,0,0,6.302619,1,0,0,0,1,0,54.90957,8.295074,0,,0
-3,1,100,0,3,127949,0,4003.102,54.83778,1,10,1,80.58968,0,0,0,0,80.58968,0,0,0,0,0,1,86.3,13.73189,0,,546,546,0,0,0,6.302619,1,0,0,0,1,0,54.90957,8.295074,0,4.38937,1
-4,1,100,0,1,127950,0,8390.819,6.863792,0,13,1,35.97122,9.148681,0,0,0,45.1199,0,0,0,6,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.86884,9.035012,1.609438,3.809324,1
-4,1,100,0,2,127950,0,8390.819,7.863792,0,13,1,30.66813,1.949617,0,32.85871,503.9266,536.5444,1,0,4,4,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,1,0,0,0,0,0,82.86884,9.035012,1.609438,6.285149,1
-4,1,100,0,3,127950,0,8390.819,8.863791,0,13,1,0,3.591022,0,0,0,3.591022,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.86884,9.035012,1.386294,1.278437,1
-4,1,100,0,4,127950,0,8390.819,9.863791,0,13,1,6.915629,2.065468,0,0,0,8.981097,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.86884,9.035012,1.386294,2.195122,1
-4,1,100,0,5,127950,0,8390.819,10.86379,0,13,1,13.11892,11.8832,0,0,0,25.00212,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.86884,9.035012,1.386294,3.218961,1
-4,1,100,0,1,127951,0,8390.819,27.94524,1,13,1,10.19185,12.1223,0,0,0,22.31415,0,0,0,1,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.51599,9.035012,1.609438,3.105221,1
-4,1,100,0,2,127951,0,8390.819,28.94524,1,13,1,100.2191,28.94852,30.31216,167.0318,0,159.4797,0,0,9,5,0,5,82.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,0,0,0,78.51599,9.035012,1.609438,5.071917,1
-4,1,100,0,3,127951,0,8390.819,29.94524,1,13,1,48.92768,17.64589,0,0,267.0075,333.5811,1,0,0,4,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.51599,9.035012,1.386294,5.809886,1
-4,1,100,0,4,127951,0,8390.819,30.94524,1,13,1,109.728,7.722453,33.88659,0,474.0526,625.3896,1,0,0,5,3,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.51599,9.035012,1.386294,6.438375,1
-4,1,100,0,5,127951,0,8390.819,31.94524,1,13,1,17.47778,17.16885,13.54211,0,746.8895,795.0783,1,0,0,1,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.51599,9.035012,1.386294,6.678441,1
-4,1,100,0,1,127952,0,8390.819,29.28405,0,12,1,40.16787,180.1559,0,17.98561,0,220.3237,0,0,3,6,0,5,57.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.43861,9.035012,1.609438,5.395098,1
-4,1,100,0,2,127952,0,8390.819,30.28405,0,12,.2076503,0,31.61555,0,49.28806,3129.995,3161.61,1,0,3,0,0,5,57.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,1,0,0,1,0,0,64.43861,9.035012,1.609438,8.058837,1
-4,1,100,0,1,127953,0,8390.819,8.440794,1,13,1,51.25899,9.742207,0,0,0,61.0012,0,0,0,8,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,82.35487,9.035012,1.609438,4.110894,1
-4,1,100,0,2,127953,0,8390.819,9.440794,1,13,1,24.64403,2.146769,0,0,0,26.7908,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,82.35487,9.035012,1.609438,3.288059,1
-4,1,100,0,3,127953,0,8390.819,10.44079,1,13,1,13.46633,6.408978,0,0,0,19.87531,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,82.35487,9.035012,1.386294,2.989478,1
-4,1,100,0,4,127953,0,8390.819,11.44079,1,13,1,25.81835,8.805902,0,0,0,34.62425,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,82.35487,9.035012,1.386294,3.544554,1
-4,1,100,0,5,127953,0,8390.819,12.44079,1,13,1,0,3.719848,0,0,0,3.719848,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,82.35487,9.035012,1.386294,1.313683,1
-4,1,100,0,1,127954,0,8390.819,3.290897,1,13,1,29.07674,11.39089,0,0,0,40.46762,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,78.92324,9.035012,1.609438,3.700502,1
-4,1,100,0,2,127954,0,8390.819,4.290896,1,13,1,87.62322,22.10843,0,0,295.356,405.0876,1,0,0,13,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,1,0,0,0,0,0,78.92324,9.035012,1.609438,6.004103,1
-4,1,100,0,3,127954,0,8390.819,5.290896,1,13,1,11.97007,6.32419,0,0,0,18.29426,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,78.92324,9.035012,1.386294,2.906588,1
-4,1,100,0,4,127954,0,8390.819,6.290896,1,13,1,8.298756,2.065468,0,0,349.9078,360.272,1,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,78.92324,9.035012,1.386294,5.886859,1
-4,1,100,0,5,127954,0,8390.819,7.290896,1,13,1,12.69573,0,10.15658,0,0,22.85231,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,78.92324,9.035012,1.386294,3.129052,1
-1,1,0,0,1,127955,0,2800.868,35.57837,0,12,1,7.138608,4.033313,0,0,0,11.17192,0,0,0,1,0,2,83.8,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,77.12907,7.938042,.6931472,2.413404,1
-1,1,0,0,1,127956,0,2800.868,21.32238,1,13,1,5.353956,9.69066,0,0,0,15.04462,0,0,0,1,0,2,67.5,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,65.36804,7.938042,.6931472,2.71102,1
-1,1,0,0,2,127956,0,2800.868,22.32238,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,67.5,13.73189,0,,300,300,0,0,0,5.703783,1,0,0,1,0,0,65.36804,7.938042,0,,0
-1,1,0,0,3,127956,0,2800.868,23.32238,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,67.5,13.73189,0,,300,300,0,0,0,5.703783,1,0,0,1,0,0,65.36804,7.938042,0,,0
-11,1,0,1,1,127957,0,9542.002,4.867898,0,10,1,67.83274,5.647821,0,0,0,73.48057,0,0,0,4,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.7345,9.163564,1.386294,4.297021,1
-11,1,0,1,2,127957,0,9542.002,5.867898,0,10,1,114.7439,24.42048,0,0,898.6685,1037.833,2,0,0,8,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.7345,9.163564,1.386294,6.94489,1
-11,1,0,1,3,127957,0,9542.002,6.867898,0,10,1,35.87223,14.05405,0,0,0,49.92629,0,0,0,4,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.7345,9.163564,1.386294,3.910548,1
-11,1,0,1,4,127957,0,9542.002,7.867898,0,10,1,37.16955,0,0,0,0,37.16955,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.7345,9.163564,1.386294,3.61549,1
-11,1,0,1,5,127957,0,9542.002,8.867899,0,10,1,40.20425,3.376407,0,0,0,43.58066,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.7345,9.163564,1.386294,3.774613,1
-11,1,0,1,1,127958,0,9542.002,7.126626,1,10,1,44.16961,8.486455,0,50.05889,0,52.65607,0,0,1,5,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,1,0,0,78.85278,9.163564,1.386294,3.963781,1
-11,1,0,1,2,127958,0,9542.002,8.126626,1,10,1,22.10243,2.598383,0,0,478.2857,502.9865,2,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,1,0,0,78.85278,9.163564,1.386294,6.220563,1
-11,1,0,1,3,127958,0,9542.002,9.126626,1,10,1,60.75676,14.42752,0,0,0,75.18427,0,0,0,6,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,1,0,0,78.85278,9.163564,1.386294,4.319942,1
-11,1,0,1,4,127958,0,9542.002,10.12663,1,10,1,23.24521,5.651778,21.47676,0,0,50.37374,0,0,0,2,1,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,1,0,0,78.85278,9.163564,1.386294,3.91947,1
-11,1,0,1,5,127958,0,9542.002,11.12663,1,10,1,219.1538,14.92288,16.11922,0,0,250.1959,0,0,0,7,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,1,0,0,78.85278,9.163564,1.386294,5.522244,1
-11,1,0,1,1,127959,0,9542.002,25.80424,1,10,1,55.35925,46.18375,0,0,0,101.543,0,0,0,5,0,4,77.9,21.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.82829,9.163564,1.386294,4.620482,1
-11,1,0,1,2,127959,0,9542.002,26.80424,1,10,1,83.07278,58.10242,0,0,0,141.1752,0,0,0,5,0,4,77.9,21.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.82829,9.163564,1.386294,4.950002,1
-11,1,0,1,3,127959,0,9542.002,27.80424,1,10,1,66.83047,57.67567,0,0,0,124.5061,0,0,0,7,0,4,77.9,21.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.82829,9.163564,1.386294,4.824355,1
-11,1,0,1,4,127959,0,9542.002,28.80424,1,10,1,49.68095,56.92799,0,0,0,106.6089,0,0,0,5,0,4,77.9,21.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.82829,9.163564,1.386294,4.669168,1
-11,1,0,1,5,127959,0,9542.002,29.80424,1,10,1,106.3568,63.28887,0,0,498.2576,667.9033,1,0,0,9,0,4,77.9,21.7,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.82829,9.163564,1.386294,6.504143,1
-11,1,0,0,1,127960,0,9542.002,26.92402,0,10,1,26.55477,8.763251,0,0,0,35.31802,0,0,0,2,0,4,44.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.18724,9.163564,1.386294,3.564393,1
-11,1,0,0,2,127960,0,9542.002,27.92402,0,10,1,43.87062,13.4124,0,0,0,57.28302,0,0,0,3,0,4,44.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.18724,9.163564,1.386294,4.048004,1
-11,1,0,0,3,127960,0,9542.002,28.92402,0,10,1,41.52334,16.60442,0,0,0,58.12777,0,0,0,3,0,4,44.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.18724,9.163564,1.386294,4.062644,1
-11,1,0,0,4,127960,0,9542.002,29.92402,0,10,1,99.97721,6.768459,0,0,0,106.7457,0,0,0,1,3,4,44.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.18724,9.163564,1.386294,4.670449,1
-11,1,0,0,5,127960,0,9542.002,30.92402,0,10,1,143.4556,8.149229,0,0,0,151.6048,0,0,0,3,0,4,44.2,17.4,0,,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.18724,9.163564,1.386294,5.021277,1
-8,1,50,0,1,127974,0,1579.404,19.08008,0,12,1,38.28033,1.766784,18.9576,0,0,59.00471,0,0,0,3,0,1,70,4.3,0,,0,90,0,0,0,4.49981,0,3.931826,0,1,0,0,64.78301,7.365436,0,4.077617,1
-8,1,50,0,2,127974,0,1579.404,20.08008,0,12,1,210.2426,2.625337,0,0,0,212.8679,0,0,0,6,0,1,70,4.3,0,,0,90,0,0,0,4.49981,0,3.931826,0,1,0,0,64.78301,7.365436,0,5.360672,1
-8,1,50,0,3,127974,0,1579.404,21.08008,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70,4.3,0,,0,90,0,0,0,4.49981,0,3.931826,0,1,0,0,64.78301,7.365436,0,,0
-11,1,0,1,1,127986,1,8864.541,56.85968,0,5,1,130.577,36.85901,51.60024,0,1243.319,1462.356,1,0,0,13,1,2,85.3,26.1,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,66.48095,9.089928,.6931472,7.287804,1
-11,1,0,1,2,127986,1,8864.541,57.85968,0,5,1,6.53239,10.4736,0,0,0,17.00599,0,0,0,1,0,2,85.3,26.1,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,66.48095,9.089928,.6931472,2.833565,1
-11,1,0,1,3,127986,1,8864.541,58.85968,0,5,1,19.32607,11.94252,47.15064,0,0,78.41923,0,0,0,2,1,2,85.3,26.1,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,66.48095,9.089928,.6931472,4.362069,1
-11,1,0,1,1,127987,1,8864.541,50.64476,1,10,1,50.56514,165.1814,0,0,0,215.7466,0,0,0,9,0,2,57.9,43.5,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.03077,9.089928,.6931472,5.374104,1
-11,1,0,1,2,127987,1,8864.541,51.64476,1,10,1,58.79151,127.436,0,0,962.0033,1148.231,1,0,0,7,0,2,57.9,43.5,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.03077,9.089928,.6931472,7.045978,1
-11,1,0,1,3,127987,1,8864.541,52.64476,1,10,1,505.773,128.553,0,0,0,634.326,0,0,0,13,0,2,57.9,43.5,1,,0,0,0,0,.6931472,0,0,0,0,0,1,0,55.03077,9.089928,.6931472,6.452563,1
-7,1,25,0,1,128034,0,9542.002,25.62902,0,12,1,93.10954,12.96231,0,0,628.1508,734.2226,1,0,1,4,1,1,82.7,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.75751,9.163564,0,6.598812,1
-7,1,25,0,2,128034,0,9542.002,26.62902,0,12,1,42.04852,12.01078,0,0,0,54.0593,0,0,0,2,0,1,82.7,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.75751,9.163564,0,3.990082,1
-7,1,25,0,3,128034,0,9542.002,27.62902,0,12,1,50.9828,8.14742,0,0,1144.295,1203.425,1,0,0,3,0,1,82.7,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.75751,9.163564,0,7.092927,1
-7,1,25,0,4,128034,0,9542.002,28.62902,0,12,1,88.87876,0,0,0,0,88.87876,0,0,0,2,2,1,82.7,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.75751,9.163564,0,4.487273,1
-7,1,25,0,5,128034,0,9542.002,29.62902,0,12,1,185.494,13.6807,0,0,0,199.1747,0,0,0,11,1,1,82.7,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.75751,9.163564,0,5.294182,1
-3,1,100,1,1,128040,0,6588.709,31.33196,1,16,1,19.72909,24.92933,0,0,880.689,925.3475,1,0,0,4,0,2,75.8,0,0,,900,900,0,0,.6931472,6.802395,1,0,0,0,0,0,79.34842,8.793264,.6931472,6.830169,1
-3,1,100,1,2,128040,0,6588.709,32.33196,1,16,1,22.64151,0,0,0,0,22.64151,0,0,0,2,0,3,75.8,0,0,,900,900,0,0,1.098612,6.802395,1,0,0,0,0,0,79.34842,8.793264,1.098612,3.119785,1
-3,1,100,1,3,128040,0,6588.709,33.33196,1,16,1,112.5307,22.2113,33.89189,0,771.5283,940.1622,1,0,0,5,1,3,75.8,0,0,,900,900,0,0,1.098612,6.802395,1,0,0,0,0,0,79.34842,8.793264,1.098612,6.846052,1
-3,1,100,1,1,128041,0,6588.709,27.48802,0,16,1,103.6514,4.475854,0,0,0,108.1272,0,0,0,5,0,2,70.5,8.7,0,,900,900,0,0,.6931472,6.802395,1,0,0,0,0,0,78.45724,8.793264,.6931472,4.683308,1
-3,1,100,1,2,128041,0,6588.709,28.48802,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,70.5,8.7,0,,900,900,0,0,1.098612,6.802395,1,0,0,0,0,0,78.45724,8.793264,1.098612,,0
-3,1,100,1,3,128041,0,6588.709,29.48802,0,16,1,7.371007,1.719902,0,0,0,9.090909,0,0,0,1,0,3,70.5,8.7,0,,900,900,0,0,1.098612,6.802395,1,0,0,0,0,0,78.45724,8.793264,1.098612,2.207275,1
-7,1,25,1,1,128051,0,5192.928,26.49966,1,16,1,85.73141,10.31175,0,0,0,96.04317,0,0,0,9,0,1,84.2,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,80.17492,8.555245,0,4.564798,1
-7,1,25,1,2,128051,0,5192.928,27.49966,1,16,1,95.29025,6.106243,24.5126,0,0,125.9091,0,0,0,8,1,1,84.2,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,80.17492,8.555245,0,4.83556,1
-7,1,25,1,3,128051,0,5192.928,28.49966,1,16,1,43.39152,6.433915,0,0,0,49.82544,0,0,0,4,0,1,84.2,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,80.17492,8.555245,0,3.908526,1
-7,1,25,1,4,128051,0,5192.928,29.49966,1,16,1,43.10742,27.85616,31.16644,0,0,102.13,0,0,0,3,1,1,84.2,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,80.17492,8.555245,0,4.626246,1
-7,1,25,1,5,128051,0,5192.928,30.49966,1,16,1,28.35379,8.760051,0,0,0,37.11384,0,0,0,1,1,1,84.2,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,80.17492,8.555245,0,3.61399,1
-7,1,25,1,1,128052,0,5367.866,28.48186,1,16,1,53.35732,8.723022,29.04077,0,0,91.1211,0,0,0,5,1,1,76.8,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,67.53278,8.588372,0,4.512189,1
-7,1,25,1,3,128052,0,5367.866,30.48186,1,16,1,9.476309,19.38653,3.102244,0,0,31.96509,0,0,0,1,0,1,76.8,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,67.53278,8.588372,0,3.464644,1
-7,1,25,1,4,128052,0,5367.866,31.48186,1,16,1,41.49377,16.48225,0,0,0,57.97602,0,0,0,4,0,1,76.8,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,67.53278,8.588372,0,4.06003,1
-7,1,25,1,5,128052,0,5367.866,32.48186,1,16,1,129.0732,4.0584,0,0,648.4977,781.6293,1,0,0,5,0,1,76.8,8.7,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,67.53278,8.588372,0,6.661381,1
-6,1,25,0,1,128057,0,6310.174,23.30185,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.5,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,0,0,0,78.89305,8.750077,.6931472,,0
-6,1,25,0,2,128057,0,6310.174,24.30185,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.5,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,0,0,0,78.89305,8.750077,.6931472,,0
-6,1,25,0,3,128057,0,6310.174,25.30185,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.5,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,0,0,0,78.89305,8.750077,.6931472,,0
-6,1,25,0,4,128057,0,6310.174,26.30185,1,12,1,13.83126,0,0,0,0,13.83126,0,0,0,1,0,2,87.5,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,0,0,0,78.89305,8.750077,.6931472,2.626931,1
-6,1,25,0,5,128057,0,6310.174,27.30185,1,12,1,21.79433,12.5603,0,0,0,34.35463,0,0,0,2,0,2,87.5,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,0,0,0,78.89305,8.750077,.6931472,3.536737,1
-6,1,25,0,1,128058,0,6310.174,41.29774,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,1,0,0,69.96889,8.750077,.6931472,,0
-6,1,25,0,2,128058,0,6310.174,42.29774,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,1,0,0,69.96889,8.750077,.6931472,,0
-6,1,25,0,3,128058,0,6310.174,43.29774,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,1,0,0,69.96889,8.750077,.6931472,,0
-6,1,25,0,4,128058,0,6310.174,44.29774,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,1,0,0,69.96889,8.750077,.6931472,,0
-6,1,25,0,5,128058,0,6310.174,45.29774,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,873,873,0,0,.6931472,6.771935,0,3.258096,8.15823,1,0,0,69.96889,8.750077,.6931472,,0
-11,1,0,0,1,128062,0,8689.826,30.39836,0,18,1,66.54676,15.61751,35.40168,58.45324,0,117.5659,0,0,3,2,0,2,67.5,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,75.15482,9.070024,.6931472,4.766999,1
-11,1,0,0,2,128062,0,8689.826,31.39836,0,18,1,24.64403,30.83242,0,470.9748,0,55.47645,0,0,16,4,0,3,67.5,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,75.15482,9.070024,1.098612,4.015959,1
-11,1,0,0,3,128062,0,8689.826,32.39836,0,18,1,64.83791,20.64838,29.45137,226.9327,0,114.9377,0,0,7,4,0,3,67.5,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,75.15482,9.070024,1.098612,4.74439,1
-11,1,0,0,1,128063,0,8689.826,30.00958,1,17,1,210.4317,193.9089,8.363309,112.4101,780.0359,1192.74,1,0,6,31,0,2,73.8,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.18069,9.070024,.6931472,7.084008,1
-11,1,0,0,2,128063,0,8689.826,31.00958,1,17,1,127.6013,83.72398,0,676.3417,0,211.3253,0,0,23,17,0,3,73.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,66.18069,9.070024,1.098612,5.353399,1
-11,1,0,0,3,128063,0,8689.826,32.00958,1,17,1,130.4239,61.48629,0,226.9327,0,191.9102,0,0,7,9,1,3,73.8,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,66.18069,9.070024,1.098612,5.257028,1
-3,1,100,0,1,128070,0,13029.78,1.667351,0,16,1,13.18945,0,0,0,0,13.18945,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,77.90071,9.475069,1.098612,2.579417,1
-3,1,100,0,2,128070,0,13029.78,2.667351,0,16,1,34.50164,2.152245,0,0,0,36.65389,0,0,0,3,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,77.90071,9.475069,1.098612,3.60152,1
-3,1,100,0,3,128070,0,13029.78,3.667351,0,16,1,6.48379,2.259352,0,0,0,8.743142,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,77.90071,9.475069,1.098612,2.16827,1
-3,1,100,0,4,128070,0,13029.78,4.667351,0,16,1,13.37022,0,0,0,0,13.37022,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,77.90071,9.475069,1.098612,2.593029,1
-3,1,100,0,5,128070,0,13029.78,5.667351,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,77.90071,9.475069,1.098612,,0
-3,1,100,0,1,128071,0,13029.78,26.96235,0,18,1,0,10.48561,0,0,0,10.48561,0,0,0,0,0,3,83.2,8.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,78.19019,9.475069,1.098612,2.350004,1
-3,1,100,0,2,128071,0,13029.78,27.96235,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,83.2,8.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,78.19019,9.475069,1.098612,,0
-3,1,100,0,3,128071,0,13029.78,28.96235,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,83.2,8.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,78.19019,9.475069,1.098612,,0
-3,1,100,0,4,128071,0,13029.78,29.96235,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,83.2,8.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,78.19019,9.475069,1.098612,,0
-3,1,100,0,5,128071,0,13029.78,30.96235,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,83.2,8.7,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,78.19019,9.475069,1.098612,,0
-3,1,100,0,1,128072,0,13029.78,29.17454,1,16,1,7.793765,7.152278,30.98321,0,797.1523,843.0815,1,0,0,0,1,3,86.3,4.3,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,79.08138,9.475069,1.098612,6.737064,1
-3,1,100,0,2,128072,0,13029.78,30.17454,1,16,1,32.85871,0,0,0,0,32.85871,0,0,0,1,0,3,86.3,4.3,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,79.08138,9.475069,1.098612,3.492217,1
-3,1,100,0,3,128072,0,13029.78,31.17454,1,16,1,7.481297,2.438903,0,0,0,9.920199,0,0,0,1,0,3,86.3,4.3,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,79.08138,9.475069,1.098612,2.294573,1
-3,1,100,0,4,128072,0,13029.78,32.17454,1,16,1,6.915629,0,0,0,0,6.915629,0,0,0,1,0,3,86.3,4.3,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,79.08138,9.475069,1.098612,1.933784,1
-3,1,100,0,5,128072,0,13029.78,33.17454,1,16,1,8.463818,0,0,0,0,8.463818,0,0,0,2,0,3,86.3,4.3,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,79.08138,9.475069,1.098612,2.1358,1
-5,1,25,0,1,128076,0,12376.42,15.24709,1,17,1,11.89768,0,30.18441,0,0,42.08209,0,0,0,0,1,4,63.8,13.73189,0,,762,762,1,1,1.386294,6.635947,0,3.258096,8.022241,0,0,0,72.40894,9.423629,1.386294,3.739622,1
-5,1,25,0,2,128076,0,12376.42,16.24709,1,17,1,21.23027,6.069679,0,0,0,27.29995,0,0,0,1,0,4,63.8,13.73189,0,,762,762,1,1,1.386294,6.635947,0,3.258096,8.022241,0,0,0,72.40894,9.423629,1.386294,3.306885,1
-5,1,25,0,3,128076,0,12376.42,17.24709,1,17,1,101.338,3.414272,0,0,9.910803,114.663,0,0,0,6,0,4,63.8,13.73189,0,,762,762,1,1,1.386294,6.635947,0,3.258096,8.022241,0,0,0,72.40894,9.423629,1.386294,4.741998,1
-5,1,25,0,1,128077,0,12376.42,42.25051,1,17,1,86.85307,101.6776,0,0,0,188.5306,0,0,0,8,0,4,78.8,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.74407,9.423629,1.386294,5.239261,1
-5,1,25,0,2,128077,0,12376.42,43.25051,1,17,1,178.6064,75.40011,0,0,0,254.0065,0,0,0,6,0,4,78.8,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.74407,9.423629,1.386294,5.53736,1
-5,1,25,0,3,128077,0,12376.42,44.25051,1,17,1,69.87116,54.74232,0,0,0,124.6135,0,0,0,8,0,4,78.8,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.74407,9.423629,1.386294,4.825217,1
-5,1,25,0,1,128078,0,12376.42,17.92197,0,17,1,88.10232,3.866746,32.69482,0,0,124.6639,0,0,0,3,1,4,82.5,13.73189,0,,762,762,1,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,77.74564,9.423629,1.386294,4.825621,1
-5,1,25,0,2,128078,0,12376.42,18.92197,0,17,1,14.15351,3.756124,0,0,0,17.90964,0,0,0,2,0,4,82.5,13.73189,0,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,77.74564,9.423629,1.386294,2.885339,1
-5,1,25,0,3,128078,0,12376.42,19.92197,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,0,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,77.74564,9.423629,1.386294,,0
-5,1,25,0,1,128079,0,12376.42,19.00616,0,12,1,41.047,0,33.28971,0,0,74.33671,0,0,0,3,1,4,35,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.48103,9.423629,1.386294,4.308605,1
-5,1,25,0,2,128079,0,12376.42,20.00616,0,12,1,70.76756,8.633642,14.62167,0,0,94.02287,0,0,0,2,1,4,35,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.48103,9.423629,1.386294,4.543538,1
-5,1,25,0,3,128079,0,12376.42,21.00616,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,35,13.73189,1,,762,762,0,0,1.386294,6.635947,0,3.258096,8.022241,0,0,0,75.48103,9.423629,1.386294,,0
-11,1,0,0,1,128084,0,8041.563,4.835044,0,12,1,31.80212,5.57126,0,0,0,37.37338,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,3.620959,1
-11,1,0,0,2,128084,0,8041.563,5.835044,0,12,1,46.36119,11.26146,0,0,0,57.62264,0,0,0,5,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,4.053916,1
-11,1,0,0,3,128084,0,8041.563,6.835044,0,12,1,227.2727,82.0344,0,0,0,309.3071,0,0,0,23,2,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,5.734335,1
-11,1,0,0,1,128085,0,8041.563,1.716632,0,12,1,22.9682,7.043581,0,0,0,30.01178,0,0,0,4,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,3.40159,1
-11,1,0,0,2,128085,0,8041.563,2.716632,0,12,1,19.40701,0,0,0,0,19.40701,0,0,0,3,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,2.965634,1
-11,1,0,0,3,128085,0,8041.563,3.716632,0,12,1,19.16462,2.815725,0,0,0,21.98034,0,0,0,2,0,4,74.36826,13.73189,0,,0,0,1,0,1.386294,0,0,0,0,0,0,0,78.92502,8.992503,1.386294,3.090149,1
-11,1,0,0,1,128086,0,8041.563,36.61602,0,9,1,88.33923,0,0,0,0,88.33923,0,0,0,1,0,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.86172,8.992503,1.386294,4.481184,1
-11,1,0,0,2,128086,0,8041.563,37.61602,0,9,1,53.36927,0,0,0,0,53.36927,0,0,0,1,0,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.86172,8.992503,1.386294,3.977235,1
-11,1,0,0,3,128086,0,8041.563,38.61602,0,9,1,20.63882,0,0,0,0,20.63882,0,0,0,2,1,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.86172,8.992503,1.386294,3.027174,1
-11,1,0,0,1,128087,0,8041.563,28.39699,1,12,1,146.7903,45.18846,0,0,0,191.9788,0,0,0,5,0,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.90237,8.992503,1.386294,5.257385,1
-11,1,0,0,2,128087,0,8041.563,29.39699,1,12,1,56.60378,7.202157,0,0,0,63.80593,0,0,0,1,0,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.90237,8.992503,1.386294,4.155846,1
-11,1,0,0,3,128087,0,8041.563,30.39699,1,12,1,62.89926,5.110565,0,0,0,68.00983,0,0,0,4,0,4,78.8,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.90237,8.992503,1.386294,4.219652,1
-11,1,0,0,1,128088,0,9542.002,27.37851,1,15,1,151.6786,141.9364,0,0,0,293.6151,0,0,0,11,0,3,28.8,13.73189,0,,0,258,0,0,1.098612,5.552959,0,0,0,1,0,0,73.3112,9.163564,1.098612,5.68227,1
-11,1,0,0,2,128088,0,9542.002,28.37851,1,15,1,116.1008,116.5663,0,0,460.1259,692.793,1,0,0,3,0,3,28.8,13.73189,0,,0,258,0,0,1.098612,5.552959,0,0,0,1,0,0,73.3112,9.163564,1.098612,6.540731,1
-11,1,0,0,3,128088,0,9542.002,29.37851,1,15,1,65.83541,142.0199,0,0,0,207.8554,0,0,0,6,0,3,28.8,13.73189,0,,0,258,0,0,1.098612,5.552959,0,0,0,1,0,0,73.3112,9.163564,1.098612,5.336843,1
-11,1,0,0,4,128088,0,9542.002,30.37851,1,15,1,75.8414,85.0023,0,0,745.0945,905.9382,1,0,0,6,0,3,28.8,13.73189,0,,0,258,0,0,1.098612,5.552959,0,0,0,1,0,0,73.3112,9.163564,1.098612,6.808971,1
-11,1,0,0,5,128088,0,9542.002,31.37851,1,15,1,410.8422,155.5438,24.41388,0,0,590.7998,0,0,0,2,1,4,28.8,13.73189,0,,0,258,0,0,1.386294,5.552959,0,0,0,1,0,0,73.3112,9.163564,1.386294,6.381477,1
-11,1,0,0,1,128089,0,9542.002,3.017112,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,69.03037,9.163564,1.098612,,0
-11,1,0,0,2,128089,0,9542.002,4.017112,0,15,1,9.857613,0,0,0,0,9.857613,0,0,0,1,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,69.03037,9.163564,1.098612,2.288244,1
-11,1,0,0,3,128089,0,9542.002,5.017112,0,15,1,136.2095,15.18703,.798005,0,0,152.1945,0,0,0,5,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,69.03037,9.163564,1.098612,5.025159,1
-11,1,0,0,4,128089,0,9542.002,6.017112,0,15,1,43.79898,18.55694,0,0,287.953,350.3089,1,0,0,6,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,69.03037,9.163564,1.098612,5.858815,1
-11,1,0,0,5,128089,0,9542.002,7.017112,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,258,1,0,1.386294,5.552959,0,0,0,1,0,0,69.03037,9.163564,1.386294,,0
-11,1,0,0,1,128090,0,9542.002,5.481177,0,15,1,35.97122,11.90048,0,0,0,47.8717,0,0,0,1,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,72.462,9.163564,1.098612,3.868525,1
-11,1,0,0,2,128090,0,9542.002,6.481177,0,15,1,21.35816,14.23877,0,0,0,35.59693,0,0,0,1,1,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,72.462,9.163564,1.098612,3.572259,1
-11,1,0,0,3,128090,0,9542.002,7.481177,0,15,1,9.476309,40.52369,0,0,0,50,0,0,0,2,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,72.462,9.163564,1.098612,3.912023,1
-11,1,0,0,4,128090,0,9542.002,8.481177,0,15,1,261.2494,57.51498,7.607192,0,0,326.3716,0,0,0,11,0,3,74.36826,13.73189,0,,0,258,1,0,1.098612,5.552959,0,0,0,1,0,0,72.462,9.163564,1.098612,5.788037,1
-11,1,0,0,5,128090,0,9542.002,9.481177,0,15,1,90.56284,34.84977,32.69996,410.4951,0,158.1126,0,0,26,5,1,4,74.36826,13.73189,0,,0,258,1,0,1.386294,5.552959,0,0,0,1,0,0,72.462,9.163564,1.386294,5.063307,1
-4,1,100,0,1,128091,0,10933.62,27.28268,1,16,1,29.7442,10.61868,0,0,0,40.36288,0,0,0,4,0,1,70,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,72.76367,9.299689,0,3.697911,1
-4,1,100,0,2,128091,0,10933.62,28.28268,1,16,1,50.62602,11.66032,0,0,0,62.28633,0,0,0,2,1,1,70,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,72.76367,9.299689,0,4.131742,1
-4,1,100,0,3,128091,0,10933.62,29.28268,1,16,1,37.66105,11.61546,14.8662,0,0,64.14272,0,0,0,3,1,1,70,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,72.76367,9.299689,0,4.16111,1
-4,1,100,0,4,128091,0,10933.62,30.28268,1,16,1,20.19275,22.69849,0,0,0,42.89124,0,0,0,3,0,1,70,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,72.76367,9.299689,0,3.758667,1
-4,1,100,0,5,128091,0,10933.62,31.28268,1,16,1,10.93816,11.76693,0,0,0,22.70509,0,0,0,2,0,1,70,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,1,0,0,72.76367,9.299689,0,3.122589,1
-4,1,100,0,1,128092,0,5406.948,27.50445,1,16,1,24.98513,76.14515,0,0,0,101.1303,0,0,0,3,0,1,76.3,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.18845,8.595625,0,4.61641,1
-4,1,100,0,2,128092,0,5406.948,28.50445,1,16,1,29.94012,37.01688,0,0,0,66.95699,0,0,0,5,0,1,76.3,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.18845,8.595625,0,4.204051,1
-4,1,100,0,3,128092,0,5406.948,29.50445,1,16,1,23.98414,40.51041,0,0,0,64.49455,0,0,0,2,2,1,76.3,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.18845,8.595625,0,4.166581,1
-4,1,100,0,4,128092,0,5406.948,30.50445,1,16,1,11.47315,29.42175,0,0,0,40.89491,0,0,0,1,0,1,76.3,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.18845,8.595625,0,3.711005,1
-4,1,100,0,5,128092,0,5406.948,31.50445,1,16,1,7.57257,0,0,0,0,7.57257,0,0,0,1,0,1,76.3,13.73189,0,,1000,1000,0,0,0,6.907755,1,0,0,0,0,0,76.18845,8.595625,0,2.024533,1
-3,1,100,0,1,128093,0,6576.303,24.33676,1,13,1,17.66784,15.23557,0,0,0,32.90342,0,0,0,2,0,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,79.71188,8.79138,.6931472,3.493577,1
-3,1,100,0,2,128093,0,6576.303,25.33676,1,13,1,18.86792,16.08086,0,0,0,34.94879,0,0,0,2,0,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,79.71188,8.79138,.6931472,3.553884,1
-3,1,100,0,3,128093,0,6576.303,26.33676,1,13,1,19.16462,21.88698,0,0,0,41.0516,0,0,0,2,0,2,92.5,13.73189,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,79.71188,8.79138,.6931472,3.71483,1
-3,1,100,0,1,128094,0,6576.303,37.62902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.8207,8.79138,.6931472,,0
-3,1,100,0,2,128094,0,6576.303,38.62902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.8207,8.79138,.6931472,,0
-3,1,100,0,3,128094,0,6576.303,39.62902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.8207,8.79138,.6931472,,0
-6,1,25,0,1,128097,0,4321.96,26.02601,1,13,1,25.61837,18.10954,0,0,0,43.72792,0,0,0,2,0,1,65,13.73189,0,,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,78.92638,8.371696,0,3.777987,1
-6,1,25,0,2,128097,0,4321.96,27.02601,1,13,1,25.33693,19.94609,0,0,0,45.28302,0,0,0,3,0,1,65,13.73189,0,,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,78.92638,8.371696,0,3.812932,1
-6,1,25,0,3,128097,0,4321.96,28.02601,1,13,1,72.60442,19.31204,0,0,0,91.91646,0,0,0,3,1,1,65,13.73189,0,,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,78.92638,8.371696,0,4.52088,1
-6,1,25,0,4,128097,0,4321.96,29.02601,1,13,1,16.86418,14.75387,0,0,0,31.61805,0,0,0,2,0,1,65,13.73189,0,,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,78.92638,8.371696,0,3.453728,1
-6,1,25,0,5,128097,0,4321.96,30.02601,1,13,1,32.93039,0,0,0,0,32.93039,0,0,0,4,0,1,65,13.73189,0,,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,78.92638,8.371696,0,3.494396,1
-2,1,100,1,1,128103,0,7545.561,10.15195,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,82.314,8.928847,1.609438,,0
-2,1,100,1,2,128103,0,7545.561,11.15195,1,13,1,138.0066,14.50712,29.02519,0,0,181.5389,0,0,0,6,0,5,74.36826,13.73189,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,82.314,8.928847,1.609438,5.20147,1
-2,1,100,1,3,128103,0,7545.561,12.15195,1,13,1,127.4314,3.266833,11.63092,0,0,142.3292,0,0,0,6,0,5,74.36826,13.73189,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,82.314,8.928847,1.609438,4.958143,1
-2,1,100,1,1,128104,0,7545.561,37.71115,0,18,1,68.94485,33.4952,0,0,0,102.44,0,0,0,3,0,5,62.1,21.7,0,,399,399,0,0,1.609438,5.988961,1,0,0,0,0,0,78.36037,8.928847,1.609438,4.629278,1
-2,1,100,1,2,128104,0,7545.561,38.71115,0,18,1,26.28697,33.16539,9.56736,0,0,69.01971,0,0,0,1,0,5,62.1,21.7,0,,399,399,0,0,1.609438,5.988961,1,0,0,0,0,0,78.36037,8.928847,1.609438,4.234392,1
-2,1,100,1,3,128104,0,7545.561,39.71115,0,18,1,89.2818,47.7606,33.46634,0,4.488778,174.9975,0,0,0,2,0,5,62.1,21.7,0,,399,399,0,0,1.609438,5.988961,1,0,0,0,0,0,78.36037,8.928847,1.609438,5.164772,1
-2,1,100,1,1,128105,0,7545.561,36.46544,1,13,1,119.3046,8.051558,0,0,0,127.3561,0,0,0,2,0,5,63.2,17.4,0,,399,399,0,0,1.609438,5.988961,1,0,0,1,0,0,72.59515,8.928847,1.609438,4.846987,1
-2,1,100,1,2,128105,0,7545.561,37.46544,1,13,1,68.45564,14.81928,0,0,229.6112,312.8861,1,0,0,2,0,5,63.2,17.4,0,,399,399,0,0,1.609438,5.988961,1,0,0,1,0,0,72.59515,8.928847,1.609438,5.745839,1
-2,1,100,1,3,128105,0,7545.561,38.46544,1,13,1,31.9202,29.04239,26.59352,0,0,87.55611,0,0,0,3,0,5,63.2,17.4,0,,399,399,0,0,1.609438,5.988961,1,0,0,1,0,0,72.59515,8.928847,1.609438,4.47228,1
-2,1,100,1,1,128106,0,7545.561,13.4757,0,13,1,86.03117,27.79976,93.04556,0,0,206.8765,0,0,0,8,1,5,74.36826,13.73189,0,,399,399,1,0,1.609438,5.988961,1,0,0,1,0,0,72.65098,8.928847,1.609438,5.332122,1
-2,1,100,1,2,128106,0,7545.561,14.4757,0,13,1,37.23987,66.91676,62.15772,0,2215.767,2382.081,2,0,0,3,0,5,74.36826,13.73189,0,,399,399,1,0,1.609438,5.988961,1,0,0,1,0,0,72.65098,8.928847,1.609438,7.77573,1
-2,1,100,1,3,128106,0,7545.561,15.4757,0,13,1,320.6384,147.2618,127.2668,0,1133.676,1728.843,3,0,0,20,0,5,74.36826,13.73189,0,,399,399,1,0,1.609438,5.988961,1,0,0,1,0,0,72.65098,8.928847,1.609438,7.455208,1
-2,1,100,1,1,128107,0,7545.561,15.72074,1,13,1,139.6882,0,19.70024,0,0,159.3885,0,0,0,7,0,5,71.6,8.7,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,74.71169,8.928847,1.609438,5.071344,1
-2,1,100,1,2,128107,0,7545.561,16.72074,1,13,1,4.928806,2.749179,36.3253,0,0,44.00328,0,0,0,1,0,5,71.6,8.7,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,74.71169,8.928847,1.609438,3.784264,1
-2,1,100,1,3,128107,0,7545.561,17.72074,1,13,1,75.31172,12.41895,13.74564,0,210.8778,312.3541,1,0,0,5,0,5,71.6,8.7,0,,399,399,1,1,1.609438,5.988961,1,0,0,0,0,0,74.71169,8.928847,1.609438,5.744138,1
-10,1,50,1,1,128124,0,8723.945,23.91786,1,16,1,153.777,66.43285,0,0,0,220.2098,0,0,0,15,1,1,75.8,8.7,0,,200,200,0,0,0,5.298317,0,3.931826,5.991465,1,0,0,67.59779,9.073941,0,5.394581,1
-10,1,50,1,2,128124,0,8723.945,24.91786,1,16,1,56.65389,20.18072,11.24863,0,788.3351,876.4184,1,0,0,2,1,1,75.8,8.7,0,,200,200,0,0,0,5.298317,0,3.931826,5.991465,1,0,0,67.59779,9.073941,0,6.775844,1
-10,1,50,1,3,128124,0,8723.945,25.91786,1,16,1,29.42643,13.62095,0,0,0,43.04738,0,0,0,1,2,2,75.8,8.7,0,,200,200,0,0,.6931472,5.298317,0,3.931826,5.991465,1,0,0,67.59779,9.073941,.6931472,3.762301,1
-10,1,50,1,4,128124,0,8723.945,26.91786,1,16,1,418.7736,18.03596,0,0,0,436.8096,0,0,0,4,1,2,75.8,8.7,0,,200,200,0,0,.6931472,5.298317,0,3.931826,5.991465,1,0,0,67.59779,9.073941,.6931472,6.079497,1
-10,1,50,1,5,128124,0,8723.945,27.91786,1,16,1,71.94244,49.97461,0,0,0,121.9171,0,0,0,2,1,2,75.8,8.7,0,,200,200,0,0,.6931472,5.298317,0,3.931826,5.991465,1,0,0,67.59779,9.073941,.6931472,4.803341,1
-8,1,50,1,1,128125,0,4032.878,24.02738,1,16,1,9.422851,1.766784,0,0,0,11.18964,0,0,0,2,0,1,89.5,8.7,0,,115,115,0,0,0,4.744932,0,3.931826,5.438079,1,0,0,71.18497,8.302484,0,2.414988,1
-8,1,50,1,2,128125,0,4032.878,25.02738,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,89.5,8.7,0,,115,115,0,0,0,4.744932,0,3.931826,5.438079,1,0,0,71.18497,8.302484,0,,0
-8,1,50,1,3,128125,0,4032.878,26.02738,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,89.5,8.7,0,,115,115,0,0,0,4.744932,0,3.931826,5.438079,1,0,0,71.18497,8.302484,0,,0
-8,1,50,1,4,128125,0,4032.878,27.02738,1,16,1,9.571559,1.458523,0,0,0,11.03008,0,0,0,2,0,1,89.5,8.7,0,,115,115,0,0,0,4.744932,0,3.931826,5.438079,1,0,0,71.18497,8.302484,0,2.400626,1
-8,1,50,1,5,128125,0,4032.878,28.02738,1,16,1,130.9712,6.490204,0,0,0,137.4614,0,0,0,5,0,1,89.5,8.7,0,,115,115,0,0,0,4.744932,0,3.931826,5.438079,1,0,0,71.18497,8.302484,0,4.923344,1
-9,1,50,0,1,128127,0,9204.095,31.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,79.2669,9.127512,0,,0
-9,1,50,0,2,128127,0,9204.095,32.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,79.2669,9.127512,0,,0
-9,1,50,0,3,128127,0,9204.095,33.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,79.2669,9.127512,0,,0
-9,1,50,0,4,128127,0,9204.095,34.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,79.2669,9.127512,0,,0
-9,1,50,0,5,128127,0,9204.095,35.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,95,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,79.2669,9.127512,0,,0
-11,1,0,1,1,128129,0,11576.82,4.668036,0,12,1,26.1749,4.544914,0,0,0,30.71981,0,0,0,2,0,4,74.36826,13.73189,0,,0,291,1,0,1.386294,5.673323,0,0,0,0,0,0,82.35892,9.356847,1.386294,3.424908,1
-11,1,0,1,2,128129,0,11576.82,5.668036,0,12,1,7.621121,3.162765,0,0,0,10.78389,0,0,0,1,0,4,74.36826,13.73189,0,,0,291,1,0,1.386294,5.673323,0,0,0,0,0,0,82.35892,9.356847,1.386294,2.378053,1
-11,1,0,1,3,128129,0,11576.82,6.668036,0,12,1,90.68385,4.44004,0,0,0,95.12389,0,0,0,1,1,4,74.36826,13.73189,0,,0,291,1,0,1.386294,5.673323,0,0,0,0,0,0,82.35892,9.356847,1.386294,4.55518,1
-11,1,0,1,4,128129,0,11576.82,7.668036,0,12,1,35.33731,6.883892,0,0,0,42.2212,0,0,0,3,0,4,74.36826,13.73189,0,,0,291,1,0,1.386294,5.673323,0,0,0,0,0,0,82.35892,9.356847,1.386294,3.742923,1
-11,1,0,1,5,128129,0,11576.82,8.668036,0,12,1,12.62095,0,25.94026,0,0,38.56121,0,0,0,1,0,4,74.36826,13.73189,0,,0,291,1,0,1.386294,5.673323,0,0,0,0,0,0,82.35892,9.356847,1.386294,3.652247,1
-11,1,0,1,1,128130,0,11576.82,26.73511,1,12,1,51.75491,17.40036,44.14039,0,0,113.2957,0,0,0,6,1,4,69.5,17.4,0,,0,291,0,0,1.386294,5.673323,0,0,0,1,0,0,66.9132,9.356847,1.386294,4.730001,1
-11,1,0,1,2,128130,0,11576.82,27.73511,1,12,1,56.06968,3.511159,0,0,0,59.58084,0,0,0,3,0,4,69.5,17.4,0,,0,291,0,0,1.386294,5.673323,0,0,0,1,0,0,66.9132,9.356847,1.386294,4.087334,1
-11,1,0,1,3,128130,0,11576.82,28.73511,1,12,1,258.3251,15.58969,0,0,0,273.9148,0,0,0,7,0,4,69.5,17.4,0,,0,291,0,0,1.386294,5.673323,0,0,0,1,0,0,66.9132,9.356847,1.386294,5.612817,1
-11,1,0,1,4,128130,0,11576.82,29.73511,1,12,1,106.0119,6.810463,37.88894,0,837.9532,988.6646,1,0,0,8,1,4,69.5,17.4,0,,0,291,0,0,1.386294,5.673323,0,0,0,1,0,0,66.9132,9.356847,1.386294,6.896355,1
-11,1,0,1,5,128130,0,11576.82,30.73511,1,12,1,21.03492,4.299537,0,0,0,25.33446,0,0,0,2,0,4,69.5,17.4,0,,0,291,0,0,1.386294,5.673323,0,0,0,1,0,0,66.9132,9.356847,1.386294,3.232165,1
-11,1,0,1,1,128131,0,11576.82,9.839836,1,12,1,32.71862,6.061868,0,0,0,38.78049,0,0,0,1,2,4,74.36826,13.73189,0,,0,291,1,1,1.386294,5.673323,0,0,0,0,0,0,85.27657,9.356847,1.386294,3.657917,1
-11,1,0,1,2,128131,0,11576.82,10.83984,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,291,1,1,1.386294,5.673323,0,0,0,0,0,0,85.27657,9.356847,1.386294,,0
-11,1,0,1,3,128131,0,11576.82,11.83984,1,12,1,111.4965,1.655104,0,0,0,113.1516,0,0,0,3,2,4,74.36826,13.73189,0,,0,291,1,1,1.386294,5.673323,0,0,0,0,0,0,85.27657,9.356847,1.386294,4.728729,1
-11,1,0,1,4,128131,0,11576.82,12.83984,1,12,1,61.95502,5.392382,0,0,0,67.3474,0,0,0,6,0,4,74.36826,13.73189,0,,0,291,1,1,1.386294,5.673323,0,0,0,0,0,0,85.27657,9.356847,1.386294,4.209864,1
-11,1,0,1,5,128131,0,11576.82,13.83984,1,12,1,12.62095,0,0,0,0,12.62095,0,0,0,1,0,4,74.36826,13.73189,0,,0,291,1,1,1.386294,5.673323,0,0,0,0,0,0,85.27657,9.356847,1.386294,2.535358,1
-11,1,0,1,1,128132,0,11576.82,30.79261,0,12,1,12.49256,2.325996,0,0,0,14.81856,0,0,0,2,0,4,100,8.7,0,,0,291,0,0,1.386294,5.673323,0,0,0,0,0,0,78.72413,9.356847,1.386294,2.69588,1
-11,1,0,1,2,128132,0,11576.82,31.79261,0,12,1,10.88732,8.21448,0,0,143.3587,162.4605,1,0,0,2,0,4,100,8.7,0,,0,291,0,0,1.386294,5.673323,0,0,0,0,0,0,78.72413,9.356847,1.386294,5.090435,1
-11,1,0,1,3,128132,0,11576.82,32.79261,0,12,1,393.9544,9.187314,0,0,0,403.1417,0,0,0,5,4,4,100,8.7,0,,0,291,0,0,1.386294,5.673323,0,0,0,0,0,0,78.72413,9.356847,1.386294,5.999288,1
-11,1,0,1,4,128132,0,11576.82,33.79261,0,12,1,31.98715,0,43.64388,0,0,75.63102,0,0,0,3,0,4,100,8.7,0,,0,291,0,0,1.386294,5.673323,0,0,0,0,0,0,78.72413,9.356847,1.386294,4.325867,1
-11,1,0,1,5,128132,0,11576.82,34.79261,0,12,1,33.44552,2.309634,0,0,0,35.75515,0,0,0,2,0,4,100,8.7,0,,0,291,0,0,1.386294,5.673323,0,0,0,0,0,0,78.72413,9.356847,1.386294,3.576694,1
-2,1,100,0,1,128137,0,13813.28,5.229295,1,12,1,4.82509,4.282268,0,0,0,9.107358,0,0,0,1,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.12564,9.533458,1.386294,2.209083,1
-2,1,100,0,2,128137,0,13813.28,6.229295,1,12,1,40.7489,0,0,0,0,40.7489,0,0,0,3,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.12564,9.533458,1.386294,3.707429,1
-2,1,100,0,3,128137,0,13813.28,7.229295,1,12,1,7.533903,0,0,0,0,7.533903,0,0,0,1,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.12564,9.533458,1.386294,2.019413,1
-2,1,100,0,1,128138,0,13813.28,4.262834,1,12,1,14.47527,4.101327,0,0,0,18.5766,0,0,0,2,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.93543,9.533458,1.386294,2.921903,1
-2,1,100,0,2,128138,0,13813.28,5.262834,1,12,1,5.506608,0,0,0,0,5.506608,0,0,0,1,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.93543,9.533458,1.386294,1.705949,1
-2,1,100,0,3,128138,0,13813.28,6.262834,1,12,1,20.09041,0,0,0,0,20.09041,0,0,0,2,0,4,74.36826,13.73189,0,,978,978,1,1,1.386294,6.885509,1,0,0,0,0,0,80.93543,9.533458,1.386294,3.000242,1
-2,1,100,0,1,128139,0,13813.28,34.96783,0,20,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,0,0,0,79.15443,9.533458,1.386294,,0
-2,1,100,0,2,128139,0,13813.28,35.96783,0,20,1,90.80396,0,.5506608,0,0,91.35462,0,0,0,3,1,4,82.5,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,0,0,0,79.15443,9.533458,1.386294,4.514749,1
-2,1,100,0,3,128139,0,13813.28,36.96783,0,20,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,0,0,0,79.15443,9.533458,1.386294,,0
-2,1,100,0,1,128140,0,13813.28,24.83778,1,12,1,219.3004,28.75754,0,0,0,248.0579,0,0,0,22,0,4,68.8,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,1,0,0,66.92496,9.533458,1.386294,5.513662,1
-2,1,100,0,2,128140,0,13813.28,25.83778,1,12,1,152.533,16.68502,36.82819,0,0,206.0462,0,0,0,19,0,4,68.8,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,1,0,0,66.92496,9.533458,1.386294,5.328101,1
-2,1,100,0,3,128140,0,13813.28,26.83778,1,12,1,89.40231,14.68106,0,0,0,104.0834,0,0,0,14,0,4,68.8,13.73189,0,,978,978,0,0,1.386294,6.885509,1,0,0,1,0,0,66.92496,9.533458,1.386294,4.645192,1
-2,1,100,1,1,128155,0,8172.457,16.1232,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,52.6,0,0,,0,0,1,1,1.94591,0,1,0,0,1,0,0,68.42788,9.008647,1.94591,,0
-2,1,100,1,2,128155,0,8172.457,17.1232,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,52.6,0,0,,0,0,1,1,2.079442,0,1,0,0,1,0,0,68.42788,9.008647,2.079442,,0
-2,1,100,1,3,128155,0,8172.457,18.1232,1,12,1,13.62735,8.657086,0,0,0,22.28444,0,0,0,1,0,8,52.6,0,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,68.42788,9.008647,2.079442,3.103889,1
-2,1,100,1,4,128155,0,8172.457,19.1232,1,12,1,0,6.929784,0,0,340.1331,347.0629,1,0,0,0,0,8,52.6,0,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,68.42788,9.008647,2.079442,5.849506,1
-2,1,100,1,5,128155,0,8172.457,20.1232,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,52.6,0,0,,0,0,0,0,2.197225,0,1,0,0,1,0,0,68.42788,9.008647,2.197225,,0
-2,1,100,1,1,128156,0,8172.457,10.89938,1,12,1,4.759072,0,0,0,0,4.759072,0,0,0,1,0,7,74.36826,13.73189,0,,0,0,1,1,1.94591,0,1,0,0,1,0,0,78.19813,9.008647,1.94591,1.560053,1
-2,1,100,1,2,128156,0,8172.457,11.89938,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,1,0,0,1,0,0,78.19813,9.008647,2.079442,,0
-2,1,100,1,3,128156,0,8172.457,12.89938,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,1,0,0,1,0,0,78.19813,9.008647,2.079442,,0
-2,1,100,1,4,128156,0,8172.457,13.89938,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,1,2.079442,0,1,0,0,1,0,0,78.19813,9.008647,2.079442,,0
-2,1,100,1,5,128156,0,8172.457,14.89938,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,74.36826,13.73189,0,,0,0,1,1,2.197225,0,1,0,0,1,0,0,78.19813,9.008647,2.197225,,0
-2,1,100,1,1,128157,0,8172.457,46.67214,0,9,1,9.518144,20.93992,0,0,0,30.45806,0,0,0,2,0,7,38.9,21.7,0,,0,0,0,0,1.94591,0,1,0,0,1,0,0,60.7702,9.008647,1.94591,3.416351,1
-2,1,100,1,2,128157,0,8172.457,47.67214,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,38.9,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,60.7702,9.008647,2.079442,,0
-2,1,100,1,3,128157,0,8172.457,48.67214,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,38.9,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,60.7702,9.008647,2.079442,,0
-2,1,100,1,4,128157,0,8172.457,49.67214,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,38.9,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,60.7702,9.008647,2.079442,,0
-2,1,100,1,5,128157,0,8172.457,50.67214,0,9,1,16.40724,0,0,0,350.0841,366.4914,1,0,0,1,0,9,38.9,21.7,0,,0,0,0,0,2.197225,0,1,0,0,1,0,0,60.7702,9.008647,2.197225,5.903975,1
-2,1,100,1,1,128158,0,8172.457,14.77071,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,81.1,0,0,,0,0,1,0,1.94591,0,1,0,0,1,0,0,73.75163,9.008647,1.94591,,0
-2,1,100,1,2,128158,0,8172.457,15.77071,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,81.1,0,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,73.75163,9.008647,2.079442,,0
-2,1,100,1,3,128158,0,8172.457,16.7707,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,81.1,0,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,73.75163,9.008647,2.079442,,0
-2,1,100,1,4,128158,0,8172.457,17.7707,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,81.1,0,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,73.75163,9.008647,2.079442,,0
-2,1,100,1,5,128158,0,8172.457,18.7707,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,81.1,0,0,,0,0,0,0,2.197225,0,1,0,0,1,0,0,73.75163,9.008647,2.197225,,0
-2,1,100,1,1,128159,0,8172.457,8.919918,0,12,1,4.759072,0,0,0,0,4.759072,0,0,0,1,0,7,74.36826,13.73189,0,,0,0,1,0,1.94591,0,1,0,0,1,0,0,78.7121,9.008647,1.94591,1.560053,1
-2,1,100,1,2,128159,0,8172.457,9.919918,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,3,128159,0,8172.457,10.91992,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,4,128159,0,8172.457,11.91992,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,5,128159,0,8172.457,12.91992,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,74.36826,13.73189,0,,0,0,1,0,2.197225,0,1,0,0,1,0,0,78.7121,9.008647,2.197225,,0
-2,1,100,1,1,128160,0,8172.457,40.27652,1,12,1,198.0964,6.30577,0,0,351.398,555.8001,1,1,0,5,0,7,44.2,21.7,0,,0,0,0,0,1.94591,0,1,0,0,1,0,0,65.55928,9.008647,1.94591,6.320409,1
-2,1,100,1,2,128160,0,8172.457,41.27652,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,44.2,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,65.55928,9.008647,2.079442,,0
-2,1,100,1,3,128160,0,8172.457,42.27652,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,44.2,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,65.55928,9.008647,2.079442,,0
-2,1,100,1,4,128160,0,8172.457,43.27652,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,44.2,21.7,0,,0,0,0,0,2.079442,0,1,0,0,1,0,0,65.55928,9.008647,2.079442,,0
-2,1,100,1,5,128160,0,8172.457,44.27652,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,44.2,21.7,0,,0,0,0,0,2.197225,0,1,0,0,1,0,0,65.55928,9.008647,2.197225,,0
-2,1,100,1,1,128161,0,8172.457,12.79398,0,12,1,5.353956,0,0,0,0,5.353956,0,0,0,1,0,7,74.36826,13.73189,0,,0,0,1,0,1.94591,0,1,0,0,1,0,0,78.7121,9.008647,1.94591,1.677836,1
-2,1,100,1,2,128161,0,8172.457,13.79398,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,3,128161,0,8172.457,14.79398,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,4,128161,0,8172.457,15.79398,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,0,1,0,2.079442,0,1,0,0,1,0,0,78.7121,9.008647,2.079442,,0
-2,1,100,1,5,128161,0,8172.457,16.79398,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,74.36826,13.73189,0,,0,0,1,0,2.197225,0,1,0,0,1,0,0,78.7121,9.008647,2.197225,,0
-11,1,0,0,1,128190,0,13406.87,19.57837,1,13,1,61.83746,23.351,36.00118,0,0,121.1896,0,0,0,3,0,5,82.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,79.76627,9.503597,1.609438,4.797357,1
-11,1,0,0,2,128190,0,13406.87,20.57837,1,13,1,41.50943,20.78167,14.92722,0,0,77.21833,0,0,0,4,0,5,82.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,79.76627,9.503597,1.609438,4.346637,1
-11,1,0,0,3,128190,0,13406.87,21.57837,1,13,1,10.81081,12.93366,0,0,0,23.74447,0,0,0,1,0,5,82.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,79.76627,9.503597,1.609438,3.16735,1
-11,1,0,0,4,128190,0,13406.87,22.57837,1,13,1,59.25251,7.233364,0,0,0,66.48587,0,0,0,3,0,5,82.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,79.76627,9.503597,1.609438,4.19699,1
-11,1,0,0,5,128190,0,13406.87,23.57837,1,13,1,77.11546,2.667778,27.22801,0,0,107.0113,0,0,0,9,0,5,82.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,79.76627,9.503597,1.609438,4.672934,1
-11,1,0,0,1,128191,0,13406.87,50.16016,0,11,1,38.28033,30.21201,51.08363,0,0,119.576,0,0,0,4,0,5,96.3,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,1,0,0,66.23094,9.503597,1.609438,4.783952,1
-11,1,0,0,2,128191,0,13406.87,51.16016,0,11,1,285.4447,81.02426,0,0,448.0809,814.5499,1,0,0,11,0,5,96.3,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,1,0,0,66.23094,9.503597,1.609438,6.702636,1
-11,1,0,0,3,128191,0,13406.87,52.16016,0,11,1,80.58968,89.90172,45.44472,0,0,215.9361,0,0,0,7,0,5,96.3,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,1,0,0,66.23094,9.503597,1.609438,5.374982,1
-11,1,0,0,4,128191,0,13406.87,53.16016,0,11,1,67.50228,53.71468,0,0,331.0848,452.3017,1,0,0,6,0,5,96.3,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,1,0,0,66.23094,9.503597,1.609438,6.114349,1
-11,1,0,0,5,128191,0,13406.87,54.16016,0,11,1,33.76407,153.6765,43.1263,0,1068.424,1298.991,1,0,0,4,0,5,96.3,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,1,0,0,66.23094,9.503597,1.609438,7.169343,1
-11,1,0,0,1,128192,0,13406.87,48.0438,1,12,1,56.89046,0,27.38516,0,0,84.27562,0,0,0,2,0,5,92.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,77.5184,9.503597,1.609438,4.434093,1
-11,1,0,0,2,128192,0,13406.87,49.0438,1,12,1,0,8.490566,0,0,0,8.490566,0,0,0,0,0,5,92.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,77.5184,9.503597,1.609438,2.138956,1
-11,1,0,0,3,128192,0,13406.87,50.0438,1,12,1,54.79115,21.49877,0,0,0,76.28992,0,0,0,4,0,5,92.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,77.5184,9.503597,1.609438,4.334541,1
-11,1,0,0,4,128192,0,13406.87,51.0438,1,12,1,185.278,87.7165,22.38833,0,1501.436,1796.819,1,0,0,7,0,5,92.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,77.5184,9.503597,1.609438,7.493773,1
-11,1,0,0,5,128192,0,13406.87,52.0438,1,12,1,131.7216,32.9679,25.91913,0,0,190.6086,0,0,0,11,0,5,92.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,77.5184,9.503597,1.609438,5.250222,1
-11,1,0,0,1,128193,0,13406.87,17.10335,1,12,1,73.91048,22.67373,0,0,0,96.58421,0,0,0,4,1,5,78.8,13.73189,0,,0,165,1,1,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.570415,1
-11,1,0,0,2,128193,0,13406.87,18.10335,1,12,1,106.7385,11.21294,0,0,0,117.9515,0,0,0,5,0,5,78.8,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.770273,1
-11,1,0,0,3,128193,0,13406.87,19.10335,1,12,1,98.7715,31.27764,0,0,0,130.0491,0,0,0,7,0,5,78.8,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.867912,1
-11,1,0,0,4,128193,0,13406.87,20.10335,1,12,1,53.64631,9.252507,5.287147,0,0,68.18596,0,0,0,4,0,5,78.8,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.222239,1
-11,1,0,0,5,128193,0,13406.87,21.10335,1,12,1,57.10713,19.07045,0,0,0,76.17757,0,0,0,5,0,5,78.8,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.333067,1
-11,1,0,0,1,128194,0,13406.87,14.54894,1,12,1,0,1.531213,0,0,0,1.531213,0,0,0,0,0,5,62.5,13.73189,0,,0,165,1,1,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,.4260603,1
-11,1,0,0,2,128194,0,13406.87,15.54894,1,12,1,180.4367,11.67116,24.78706,0,0,216.8949,0,0,0,8,0,5,62.5,13.73189,0,,0,165,1,1,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,5.379413,1
-11,1,0,0,3,128194,0,13406.87,16.54894,1,12,1,85.84766,24.64373,0,0,0,110.4914,0,0,0,4,0,5,62.5,13.73189,0,,0,165,1,1,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.704938,1
-11,1,0,0,4,128194,0,13406.87,17.54894,1,12,1,11.8505,2.164995,0,0,0,14.0155,0,0,0,1,0,5,62.5,13.73189,0,,0,165,1,1,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,2.640164,1
-11,1,0,0,5,128194,0,13406.87,18.54894,1,12,1,59.19133,7.419758,0,0,0,66.61109,0,0,0,4,0,5,62.5,13.73189,0,,0,165,0,0,1.609438,5.105946,0,0,0,0,0,0,75.12392,9.503597,1.609438,4.198871,1
-4,1,100,0,1,128204,1,476.4268,41.74401,1,10,1,41.4311,101.9965,1.277974,0,1356.243,1500.948,1,0,0,1,1,1,61.3,13.73189,1,,211,211,0,0,0,5.351858,1,0,0,0,0,1,60.9457,6.168411,0,7.313852,1
-4,1,100,0,2,128204,1,476.4268,42.74401,1,10,1,140.6199,16.84636,0,0,789.3746,946.8409,1,0,0,11,0,1,61.3,13.73189,1,,211,211,0,0,0,5.351858,1,0,0,0,0,1,60.9457,6.168411,0,6.853131,1
-4,1,100,0,3,128204,1,476.4268,43.74401,1,10,1,39.65602,1.474201,0,0,0,41.13022,0,0,0,1,1,1,61.3,13.73189,1,,211,211,0,0,0,5.351858,1,0,0,0,0,1,60.9457,6.168411,0,3.716743,1
-4,1,100,0,1,128205,1,445.4094,19.66872,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,73.8,13.73189,0,,75,75,0,0,0,4.317488,1,0,0,1,0,0,57.70424,6.101236,0,,0
-4,1,100,0,2,128205,1,445.4094,20.66872,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,73.8,13.73189,0,,75,75,0,0,0,4.317488,1,0,0,1,0,0,57.70424,6.101236,0,,0
-4,1,100,0,3,128205,1,445.4094,21.66872,0,11,1,30.46683,0,0,0,783.7444,814.2113,1,0,0,2,0,1,73.8,13.73189,0,,75,75,0,0,0,4.317488,1,0,0,1,0,0,57.70424,6.101236,0,6.70222,1
-7,1,25,1,1,128214,1,9542.002,24.85969,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,56.8,17.4,0,,169,169,0,0,.6931472,5.129899,0,3.258096,6.516193,1,0,0,64.19868,9.163564,.6931472,,0
-7,1,25,1,2,128214,1,9542.002,25.85969,1,12,1,13.60915,0,25.58519,0,0,39.19434,0,0,0,1,0,2,56.8,17.4,0,,169,169,0,0,.6931472,5.129899,0,3.258096,6.516193,1,0,0,64.19868,9.163564,.6931472,3.668532,1
-7,1,25,1,3,128214,1,9542.002,26.85969,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,56.8,17.4,0,,169,169,0,0,.6931472,5.129899,0,3.258096,6.516193,1,0,0,64.19868,9.163564,.6931472,,0
-7,1,25,1,1,128215,1,9542.002,6.078029,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,169,169,1,1,.6931472,5.129899,0,3.258096,6.516193,1,0,0,82.36971,9.163564,.6931472,,0
-7,1,25,1,2,128215,1,9542.002,7.078029,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,169,169,1,1,.6931472,5.129899,0,3.258096,6.516193,1,0,0,82.36971,9.163564,.6931472,,0
-7,1,25,1,3,128215,1,9542.002,8.078029,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,169,169,1,1,.6931472,5.129899,0,3.258096,6.516193,1,0,0,82.36971,9.163564,.6931472,,0
-3,1,100,0,1,128224,1,9542.002,4.750171,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.0327869,,137,137,1,1,.6931472,4.919981,1,0,0,0,0,0,74.08566,9.163564,.6931472,,0
-3,1,100,0,1,128225,1,9542.002,23.82478,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,137,137,0,0,.6931472,4.919981,1,0,0,1,0,0,62.46246,9.163564,.6931472,,0
-10,1,50,0,1,128227,1,9542.002,47.39767,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.93108,9.163564,.6931472,,0
-10,1,50,0,2,128227,1,9542.002,48.39767,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.93108,9.163564,.6931472,,0
-10,1,50,0,3,128227,1,9542.002,49.39767,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,.12982,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.93108,9.163564,.6931472,,0
-10,1,50,0,1,128228,1,9542.002,18.73511,0,11,1,9.422851,0,0,0,0,9.422851,0,0,0,1,0,2,85.3,8.7,0,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.33361,9.163564,.6931472,2.243138,1
-10,1,50,0,2,128228,1,9542.002,19.73511,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.3,8.7,0,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.33361,9.163564,.6931472,,0
-10,1,50,0,3,128228,1,9542.002,20.73511,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.3,8.7,0,,179,179,0,0,.6931472,5.187386,0,3.931826,5.880533,1,0,0,60.33361,9.163564,.6931472,,0
-11,1,0,0,1,128239,1,1191.067,4.043806,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,0,0,0,1,0,70.64633,7.083444,.6931472,,0
-11,1,0,0,2,128239,1,1191.067,5.043806,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,0,0,0,1,0,70.64633,7.083444,.6931472,,0
-11,1,0,0,1,128240,1,1191.067,32.15606,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,90,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,69.84738,7.083444,.6931472,,0
-11,1,0,0,2,128240,1,1191.067,33.15606,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,90,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,69.84738,7.083444,.6931472,,0
-6,1,25,0,1,128248,0,14105.46,11.19507,0,12,1,77.59129,2.679623,33.54535,0,0,113.8163,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.27783,9.554388,1.386294,4.734585,1
-6,1,25,0,2,128248,0,14105.46,12.19507,0,12,1,24.79784,1.078167,35.49326,0,0,61.36927,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.27783,9.554388,1.386294,4.11691,1
-6,1,25,0,3,128248,0,14105.46,13.19507,0,12,1,61.91646,3.906634,16.68305,0,0,82.50614,0,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.27783,9.554388,1.386294,4.412873,1
-6,1,25,0,4,128248,0,14105.46,14.19507,0,12,1,65.63354,38.49134,0,0,0,104.1249,0,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.27783,9.554388,1.386294,4.645591,1
-6,1,25,0,5,128248,0,14105.46,15.19507,0,12,1,39.59983,26.2401,0,0,0,65.83994,0,0,0,7,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.27783,9.554388,1.386294,4.187227,1
-6,1,25,0,1,128249,0,14105.46,44.66804,0,17,1,79.5053,0,0,0,0,79.5053,0,0,0,2,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.57204,9.554388,1.386294,4.375823,1
-6,1,25,0,2,128249,0,14105.46,45.66804,0,17,1,120.7547,6.738544,32.95957,0,0,160.4528,0,0,0,5,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.57204,9.554388,1.386294,5.078,1
-6,1,25,0,3,128249,0,14105.46,46.66804,0,17,1,83.78378,0,28.75676,0,0,112.5405,0,0,0,4,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.57204,9.554388,1.386294,4.723313,1
-6,1,25,0,4,128249,0,14105.46,47.66804,0,17,1,91.3856,14.17502,0,0,0,105.5606,0,0,0,3,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.57204,9.554388,1.386294,4.659286,1
-6,1,25,0,5,128249,0,14105.46,48.66804,0,17,1,12.50521,7.169654,23.95998,0,0,43.63485,0,0,0,1,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.57204,9.554388,1.386294,3.775856,1
-6,1,25,0,1,128250,0,14105.46,14.05886,0,12,1,35.92462,15.34158,0,0,0,51.2662,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.23705,9.554388,1.386294,3.937032,1
-6,1,25,0,2,128250,0,14105.46,15.05886,0,12,1,88.40971,15.06739,0,0,0,103.4771,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.23705,9.554388,1.386294,4.63935,1
-6,1,25,0,3,128250,0,14105.46,16.05886,0,12,1,63.88206,18.69779,0,0,0,82.57985,0,0,0,8,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.23705,9.554388,1.386294,4.413766,1
-6,1,25,0,4,128250,0,14105.46,17.05886,0,12,1,109.2753,16.45397,0,0,0,125.7293,0,0,0,6,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.23705,9.554388,1.386294,4.834131,1
-6,1,25,0,5,128250,0,14105.46,18.05886,0,12,1,22.92622,3.480617,0,0,0,26.40684,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.23705,9.554388,1.386294,3.273623,1
-6,1,25,0,1,128251,0,14105.46,40.33675,1,12,1,107.7738,49.08716,0,0,0,156.861,0,0,0,8,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78014,9.554388,1.386294,5.05536,1
-6,1,25,0,2,128251,0,14105.46,41.33675,1,12,1,191.1051,40.67385,0,0,0,231.779,0,0,0,11,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78014,9.554388,1.386294,5.445784,1
-6,1,25,0,3,128251,0,14105.46,42.33675,1,12,1,206.8796,28.74693,0,0,0,235.6265,0,0,0,12,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78014,9.554388,1.386294,5.462248,1
-6,1,25,0,4,128251,0,14105.46,43.33675,1,12,1,112.3519,91.53601,0,0,0,203.8879,0,0,0,9,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78014,9.554388,1.386294,5.31757,1
-6,1,25,0,5,128251,0,14105.46,44.33675,1,12,1,66.27762,101.5006,24.55606,0,0,192.3343,0,0,0,8,0,4,82.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.78014,9.554388,1.386294,5.259235,1
-7,1,25,0,1,128265,0,9542.002,53.15263,0,3,1,204.9529,40.71849,290.3416,0,2527.833,3063.846,2,0,0,2,1,1,63.8,13.73189,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,54.80615,9.163564,0,8.027426,1
-7,1,25,0,2,128265,0,9542.002,54.15263,0,3,1,221.4286,32.41509,0,56.60378,640.6469,894.4905,1,0,3,2,1,1,63.8,13.73189,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,54.80615,9.163564,0,6.796254,1
-7,1,25,0,3,128265,0,9542.002,55.15263,0,3,1,128.6978,18.28993,0,0,761.2678,908.2556,1,0,0,4,0,1,63.8,13.73189,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,54.80615,9.163564,0,6.811526,1
-7,1,25,0,4,128265,0,9542.002,56.15263,0,3,1,373.6372,38.15406,0,0,1635.72,2047.511,1,0,0,4,0,1,63.8,13.73189,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,54.80615,9.163564,0,7.624381,1
-7,1,25,0,5,128265,0,9542.002,57.15263,0,3,1,307.0488,142.8095,0,0,1835.511,2285.369,3,0,0,7,0,1,63.8,13.73189,1,,0,0,0,0,0,0,0,3.258096,0,0,1,0,54.80615,9.163564,0,7.734283,1
-6,1,25,0,1,128267,1,9542.002,55.04996,1,13,1,333.3333,198.828,0,0,0,532.1614,0,0,0,20,0,1,81.3,13.73189,1,,182,259,0,0,0,5.556828,0,3.258096,6.590301,0,1,0,63.87963,9.163564,0,6.276947,1
-3,1,100,0,1,128268,0,1094.293,59.8193,1,12,1,22.9682,0,22.50883,0,0,45.47703,0,0,0,2,0,1,92.5,13.73189,0,,127,127,0,0,0,4.844187,1,0,0,1,0,0,68.38589,6.998777,0,3.817207,1
-3,1,100,0,2,128268,0,1094.293,60.8193,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,92.5,13.73189,0,,127,127,0,0,0,4.844187,1,0,0,1,0,0,68.38589,6.998777,0,,0
-2,1,100,1,1,128302,1,9276.055,35.74812,0,12,1,0,5.936942,0,0,0,5.936942,0,0,0,0,0,5,75.8,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.78603,9.1353,1.609438,1.781194,1
-2,1,100,1,2,128302,1,9276.055,36.74812,0,12,1,87.6429,24.61622,0,0,0,112.2591,0,0,0,4,1,5,75.8,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.78603,9.1353,1.609438,4.72081,1
-2,1,100,1,3,128302,1,9276.055,37.74812,0,12,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,5,75.8,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.78603,9.1353,1.609438,1.600478,1
-2,1,100,1,4,128302,1,9276.055,38.74812,0,12,1,11.93208,9.325378,0,0,0,21.25746,0,0,0,2,0,5,75.8,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.78603,9.1353,1.609438,3.056708,1
-2,1,100,1,5,128302,1,9276.055,39.74812,0,12,1,126.7985,0,0,0,0,126.7985,0,0,0,3,0,5,75.8,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.78603,9.1353,1.609438,4.842599,1
-2,1,100,1,1,128303,1,9276.055,34.69131,1,12,1,57.10886,8.120167,0,0,0,65.22903,0,0,0,8,0,5,87.4,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.93718,9.1353,1.609438,4.177905,1
-2,1,100,1,2,128303,1,9276.055,35.69131,1,12,1,34.29505,15.73217,0,0,0,50.02722,0,0,0,5,0,5,87.4,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.93718,9.1353,1.609438,3.912567,1
-2,1,100,1,3,128303,1,9276.055,36.69131,1,12,1,81.88801,8.369673,0,0,0,90.25768,0,0,0,4,0,5,87.4,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.93718,9.1353,1.609438,4.502669,1
-2,1,100,1,4,128303,1,9276.055,37.69131,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,87.4,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.93718,9.1353,1.609438,,0
-2,1,100,1,5,128303,1,9276.055,38.69131,1,12,1,16.82793,5.982331,0,0,0,22.81026,0,0,0,2,0,5,87.4,8.7,0,,650,650,0,0,1.609438,6.476973,1,0,0,0,0,0,73.93718,9.1353,1.609438,3.127211,1
-2,1,100,1,1,128304,1,9276.055,4.062971,0,12,1,53.21237,6.20464,0,0,0,59.41702,0,0,0,3,1,5,74.36826,13.73189,0,,650,650,1,0,1.609438,6.476973,1,0,0,0,0,0,76.88281,9.1353,1.609438,4.08458,1
-2,1,100,1,2,128304,1,9276.055,5.062971,0,12,1,4.899292,0,0,0,222.4551,227.3544,1,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,0,1.609438,6.476973,1,0,0,0,0,0,76.88281,9.1353,1.609438,5.42651,1
-2,1,100,1,3,128304,1,9276.055,6.062971,0,12,1,6.442022,0,0,0,0,6.442022,0,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,0,1.609438,6.476973,1,0,0,0,0,0,76.88281,9.1353,1.609438,1.862842,1
-2,1,100,1,4,128304,1,9276.055,7.062971,0,12,1,0,3.822855,0,0,0,3.822855,0,0,0,0,0,5,74.36826,13.73189,0,,650,650,1,0,1.609438,6.476973,1,0,0,0,0,0,76.88281,9.1353,1.609438,1.340997,1
-2,1,100,1,5,128304,1,9276.055,8.06297,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,650,650,1,0,1.609438,6.476973,1,0,0,0,0,0,76.88281,9.1353,1.609438,,0
-2,1,100,1,1,128305,1,9276.055,11.26899,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,,0
-2,1,100,1,2,128305,1,9276.055,12.26899,1,12,1,14.15351,3.369624,0,0,0,17.52314,0,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,2.863522,1
-2,1,100,1,3,128305,1,9276.055,13.26899,1,12,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,1.600478,1
-2,1,100,1,4,128305,1,9276.055,14.26899,1,12,1,41.50987,0,0,0,0,41.50987,0,0,0,2,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,3.725931,1
-2,1,100,1,5,128305,1,9276.055,15.26899,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,,0
-2,1,100,1,1,128306,1,9276.055,8.125941,1,12,1,23.20048,0,13.68233,0,0,36.88281,0,0,0,3,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,3.607746,1
-2,1,100,1,2,128306,1,9276.055,9.125941,1,12,1,14.69788,0,32.99401,0,0,47.69189,0,0,0,2,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,3.864761,1
-2,1,100,1,3,128306,1,9276.055,10.12594,1,12,1,7.928642,0,0,0,0,7.928642,0,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,2.070482,1
-2,1,100,1,4,128306,1,9276.055,11.12594,1,12,1,37.76962,2.134007,28.75172,0,0,68.65535,0,0,0,4,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,4.229099,1
-2,1,100,1,5,128306,1,9276.055,12.12594,1,12,1,5.04838,.8960875,0,0,0,5.944468,0,0,0,1,0,5,74.36826,13.73189,0,,650,650,1,1,1.609438,6.476973,1,0,0,0,0,0,78.84123,9.1353,1.609438,1.782461,1
-1,1,0,1,1,128326,0,11965.26,35.28542,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,83.2,21.7,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,78.30748,9.389847,1.386294,,0
-1,1,0,1,2,128326,0,11965.26,36.28542,0,16,1,13.60915,0,0,0,0,13.60915,0,0,0,1,0,4,83.2,21.7,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,78.30748,9.389847,1.386294,2.610742,1
-1,1,0,1,3,128326,0,11965.26,37.28542,0,16,1,29.23687,0,0,0,0,29.23687,0,0,0,1,0,4,83.2,21.7,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,78.30748,9.389847,1.386294,3.375431,1
-1,1,0,1,4,128326,0,11965.26,38.28542,0,16,1,0,0,22.00551,0,0,22.00551,0,0,0,0,0,4,83.2,21.7,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,78.30748,9.389847,1.386294,3.091293,1
-1,1,0,1,5,128326,0,11965.26,39.28542,0,16,1,69.83593,5.107278,0,0,0,74.94321,0,0,0,2,0,5,83.2,21.7,0,,450,120,0,0,1.609438,4.787492,1,0,0,0,0,0,78.30748,9.389847,1.609438,4.31673,1
-1,1,0,1,1,128327,0,11965.26,33.0924,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,72.6,0,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,79.98129,9.389847,1.386294,,0
-1,1,0,1,2,128327,0,11965.26,34.0924,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,72.6,0,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,79.98129,9.389847,1.386294,,0
-1,1,0,1,3,128327,0,11965.26,35.0924,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,72.6,0,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,79.98129,9.389847,1.386294,,0
-1,1,0,1,4,128327,0,11965.26,36.0924,1,15,1,17.66866,20.21569,0,0,1247.728,1285.613,1,0,0,0,0,4,72.6,0,0,,450,120,0,0,1.386294,4.787492,1,0,0,0,0,0,79.98129,9.389847,1.386294,7.158991,1
-1,1,0,1,5,128327,0,11965.26,37.0924,1,15,1,9.570888,3.819941,0,0,0,13.39083,0,0,0,1,0,5,72.6,0,0,,450,120,0,0,1.609438,4.787492,1,0,0,0,0,0,79.98129,9.389847,1.609438,2.59457,1
-1,1,0,1,1,128328,0,11965.26,3.115674,1,15,1,9.518144,0,0,0,0,9.518144,0,0,0,1,0,4,74.36826,13.73189,0,,450,120,1,1,1.386294,4.787492,1,0,0,0,0,0,81.84772,9.389847,1.386294,2.2532,1
-1,1,0,1,2,128328,0,11965.26,4.115674,1,15,1,9.798585,0,0,0,0,9.798585,0,0,0,1,0,4,74.36826,13.73189,0,,450,120,1,1,1.386294,4.787492,1,0,0,0,0,0,81.84772,9.389847,1.386294,2.282238,1
-1,1,0,1,3,128328,0,11965.26,5.115674,1,15,1,13.37958,0,0,0,0,13.37958,0,0,0,1,0,4,74.36826,13.73189,0,,450,120,1,1,1.386294,4.787492,1,0,0,0,0,0,81.84772,9.389847,1.386294,2.59373,1
-1,1,0,1,4,128328,0,11965.26,6.115674,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,450,120,1,1,1.386294,4.787492,1,0,0,0,0,0,81.84772,9.389847,1.386294,,0
-1,1,0,1,5,128328,0,11965.26,7.115674,1,15,1,55.88978,0,0,0,0,55.88978,0,0,0,3,0,5,74.36826,13.73189,0,,450,120,1,1,1.609438,4.787492,1,0,0,0,0,0,81.84772,9.389847,1.609438,4.023382,1
-1,1,0,1,1,128329,0,11965.26,9.319644,0,15,1,50.2677,0,0,0,0,50.2677,0,0,0,2,1,4,74.36826,13.73189,0,,450,120,1,0,1.386294,4.787492,1,0,0,0,0,0,85.79333,9.389847,1.386294,3.917363,1
-1,1,0,1,2,128329,0,11965.26,10.31964,0,15,1,14.15351,0,0,0,0,14.15351,0,0,0,1,0,4,74.36826,13.73189,0,,450,120,1,0,1.386294,4.787492,1,0,0,0,0,0,85.79333,9.389847,1.386294,2.649963,1
-1,1,0,1,3,128329,0,11965.26,11.31964,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,450,120,1,0,1.386294,4.787492,1,0,0,0,0,0,85.79333,9.389847,1.386294,,0
-1,1,0,1,4,128329,0,11965.26,12.31964,0,15,1,22.3497,0,1.032584,0,0,23.38229,0,0,0,1,0,4,74.36826,13.73189,0,,450,120,1,0,1.386294,4.787492,1,0,0,0,0,0,85.79333,9.389847,1.386294,3.151979,1
-1,1,0,1,5,128329,0,11965.26,13.31964,0,15,1,99.01556,0,3.828355,0,0,102.8439,0,0,0,4,0,5,74.36826,13.73189,0,,450,120,1,0,1.609438,4.787492,1,0,0,0,0,0,85.79333,9.389847,1.609438,4.633213,1
-5,1,25,1,1,128360,0,13322.58,33.62628,0,16,1,11.89768,0,15.27662,0,0,27.1743,0,0,0,0,1,7,89.5,4.3,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,79.16077,9.497291,1.94591,3.302272,1
-5,1,25,1,2,128360,0,13322.58,34.62628,0,16,1,0,0,0,0,0,0,0,0,0,0,0,7,89.5,4.3,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,79.16077,9.497291,1.94591,,0
-5,1,25,1,3,128360,0,13322.58,35.62628,0,16,1,47.57185,30.00496,0,0,0,77.57681,0,0,0,5,1,7,89.5,4.3,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,79.16077,9.497291,1.94591,4.351268,1
-5,1,25,1,1,128361,0,13322.58,7.008898,0,16,1,22.60559,8.774539,0,0,0,31.38013,0,0,0,4,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,3.446175,1
-5,1,25,1,2,128361,0,13322.58,8.008898,0,16,1,9.254219,0,0,0,0,9.254219,0,0,0,2,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,2.22508,1
-5,1,25,1,3,128361,0,13322.58,9.008898,0,16,1,11.39742,0,0,0,0,11.39742,0,0,0,1,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,2.433387,1
-5,1,25,1,1,128362,0,13322.58,5.713894,0,16,1,14.8721,3.997621,0,0,0,18.86972,0,0,0,2,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,2.937559,1
-5,1,25,1,2,128362,0,13322.58,6.713894,0,16,1,43.0049,0,0,0,0,43.0049,0,0,0,1,4,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,3.761314,1
-5,1,25,1,3,128362,0,13322.58,7.713894,0,16,1,30.72349,3.528246,0,0,0,34.25174,0,0,0,2,3,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,86.65917,9.497291,1.94591,3.533737,1
-5,1,25,1,1,128363,0,13322.58,4.654346,0,16,1,35.99048,5.48483,0,0,293.8132,335.2885,1,0,0,1,1,7,74.36826,13.73189,1,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,5.814991,1
-5,1,25,1,2,128363,0,13322.58,5.654346,0,16,1,13.06478,1.475231,0,0,0,14.54001,0,0,0,2,0,7,74.36826,13.73189,1,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,2.676904,1
-5,1,25,1,3,128363,0,13322.58,6.654346,0,16,1,6.442022,0,0,0,0,6.442022,0,0,0,1,0,7,74.36826,13.73189,1,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,1.862842,1
-5,1,25,1,1,128364,0,13322.58,30.62286,1,16,1,39.55978,5.841761,0,0,0,45.40155,0,0,0,2,0,7,87.4,13,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,76.06387,9.497291,1.94591,3.815546,1
-5,1,25,1,2,128364,0,13322.58,31.62286,1,16,1,13.60915,0,0,0,0,13.60915,0,0,0,1,0,7,87.4,13,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,76.06387,9.497291,1.94591,2.610742,1
-5,1,25,1,3,128364,0,13322.58,32.62286,1,16,1,12.3885,0,0,0,0,12.3885,0,0,0,1,0,7,87.4,13,0,,964,964,0,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,76.06387,9.497291,1.94591,2.516769,1
-5,1,25,1,1,128365,0,13322.58,.9117043,1,16,1,39.85723,0,0,0,0,39.85723,0,0,0,6,0,7,74.36826,13.73189,0,,964,964,1,1,1.94591,6.871091,0,3.258096,8.257385,0,0,0,82.71357,9.497291,1.94591,3.685304,1
-5,1,25,1,2,128365,0,13322.58,1.911704,1,16,1,9.254219,0,0,0,0,9.254219,0,0,0,1,0,7,74.36826,13.73189,0,,964,964,1,1,1.94591,6.871091,0,3.258096,8.257385,0,0,0,82.71357,9.497291,1.94591,2.22508,1
-5,1,25,1,3,128365,0,13322.58,2.911704,1,16,1,7.928642,0,0,0,0,7.928642,0,0,0,1,0,7,74.36826,13.73189,0,,964,964,1,1,1.94591,6.871091,0,3.258096,8.257385,0,0,0,82.71357,9.497291,1.94591,2.070482,1
-5,1,25,1,1,128366,0,13322.58,3.389459,0,16,1,116.2998,2.082094,0,0,143.0696,261.4515,1,0,0,4,1,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,5.566249,1
-5,1,25,1,2,128366,0,13322.58,4.389459,0,16,1,7.076756,0,0,0,0,7.076756,0,0,0,1,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,1.956816,1
-5,1,25,1,3,128366,0,13322.58,5.389459,0,16,1,8.424182,0,0,0,0,8.424182,0,0,0,1,0,7,74.36826,13.73189,0,,964,964,1,0,1.94591,6.871091,0,3.258096,8.257385,0,0,0,83.22755,9.497291,1.94591,2.131106,1
-5,1,25,0,1,128383,0,16140.09,46.6256,1,13,1,7.067138,17.55006,0,0,0,24.6172,0,0,0,1,0,3,85.3,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67.22846,9.689123,1.098612,3.203445,1
-5,1,25,0,2,128383,0,16140.09,47.6256,1,13,1,6.469003,9.757412,0,0,0,16.22642,0,0,0,1,0,3,85.3,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67.22846,9.689123,1.098612,2.78664,1
-5,1,25,0,3,128383,0,16140.09,48.6256,1,13,1,21.62162,15.74939,33.89189,0,0,71.2629,0,0,0,2,0,3,85.3,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67.22846,9.689123,1.098612,4.266376,1
-5,1,25,0,1,128384,0,16140.09,18.68309,0,12,1,0,5.182568,30.59482,0,0,35.77739,0,0,0,0,0,3,73.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.88491,9.689123,1.098612,3.577316,1
-5,1,25,0,2,128384,0,16140.09,19.68309,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,73.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.88491,9.689123,1.098612,,0
-5,1,25,0,3,128384,0,16140.09,20.68309,0,12,1,22.11302,0,25.16462,0,0,47.27764,0,0,0,1,0,3,73.7,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.88491,9.689123,1.098612,3.856037,1
-5,1,25,0,1,128385,0,16140.09,52.03012,0,12,1,51.23675,73.16843,0,0,0,124.4052,0,0,0,4,0,3,87.4,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.23641,9.689123,1.098612,4.823544,1
-5,1,25,0,2,128385,0,16140.09,53.03012,0,12,1,45.8221,73.8814,39.40701,0,0,159.1105,0,0,0,3,0,3,87.4,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.23641,9.689123,1.098612,5.069599,1
-5,1,25,0,3,128385,0,16140.09,54.03012,0,12,1,43.24324,103.0713,22.08354,0,0,168.398,0,0,0,2,0,3,87.4,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.23641,9.689123,1.098612,5.12633,1
-11,1,0,1,1,128411,0,9645.161,10.0178,0,12,1,76.14515,9.613325,0,0,0,85.75848,0,0,0,3,1,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,85.65124,9.174315,1.386294,4.451535,1
-11,1,0,1,2,128411,0,9645.161,11.0178,0,12,1,44.638,3.135547,0,0,0,47.77354,0,0,0,6,1,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,85.65124,9.174315,1.386294,3.866472,1
-11,1,0,1,3,128411,0,9645.161,12.0178,0,12,1,27.75025,5.673934,0,0,0,33.42418,0,0,0,3,0,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,85.65124,9.174315,1.386294,3.50928,1
-11,1,0,1,4,128411,0,9645.161,13.0178,0,12,1,56.67738,0,0,0,0,56.67738,0,0,0,4,1,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,85.65124,9.174315,1.386294,4.037375,1
-11,1,0,1,5,128411,0,9645.161,14.0178,0,12,1,75.72571,12.25494,0,0,0,87.98064,0,0,0,6,0,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,85.65124,9.174315,1.386294,4.477117,1
-11,1,0,1,1,128412,0,9645.161,45.86448,1,12,1,75.49078,74.17014,11.8144,0,0,161.4753,0,0,0,4,0,4,76.8,13,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.59435,9.174315,1.386294,5.084352,1
-11,1,0,1,2,128412,0,9645.161,46.86448,1,12,1,109.4175,106.0425,31.29015,0,0,246.7501,0,0,0,10,1,4,76.8,13,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.59435,9.174315,1.386294,5.508376,1
-11,1,0,1,3,128412,0,9645.161,47.86448,1,12,1,103.0723,32.41328,0,0,0,135.4856,0,0,0,3,0,4,76.8,13,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.59435,9.174315,1.386294,4.908865,1
-11,1,0,1,4,128412,0,9645.161,48.86448,1,12,1,83.98348,39.02249,47.47591,0,0,170.4819,0,0,0,7,1,4,76.8,13,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.59435,9.174315,1.386294,5.138629,1
-11,1,0,1,5,128412,0,9645.161,49.86448,1,12,1,53.84939,105.7089,0,0,414.6992,574.2574,1,0,0,5,0,4,76.8,13,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.59435,9.174315,1.386294,6.353078,1
-11,1,0,1,1,128413,0,9645.161,8.123203,0,12,1,49.97026,49.26829,0,0,0,99.23855,0,0,0,5,0,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,84.69201,9.174315,1.386294,4.597527,1
-11,1,0,1,2,128413,0,9645.161,9.123203,0,12,1,53.34785,60.31573,28.44311,0,0,142.1067,0,0,0,3,4,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,84.69201,9.174315,1.386294,4.956578,1
-11,1,0,1,3,128413,0,9645.161,10.1232,0,12,1,58.47374,63.35976,0,0,0,121.8335,0,0,0,5,3,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,84.69201,9.174315,1.386294,4.802655,1
-11,1,0,1,4,128413,0,9645.161,11.1232,0,12,1,21.1106,29.25195,0,0,0,50.36255,0,0,0,2,1,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,84.69201,9.174315,1.386294,3.919248,1
-11,1,0,1,5,128413,0,9645.161,12.1232,0,12,1,34.91796,30.53008,0,0,0,65.44804,0,0,0,4,1,4,74.36826,13.73189,0,,0,233,1,0,1.386294,5.451038,0,0,0,0,0,0,84.69201,9.174315,1.386294,4.181257,1
-11,1,0,1,1,128414,0,9645.161,43.7755,0,16,1,137.4182,34.33076,0,0,0,171.749,0,0,0,4,0,4,94.7,4.3,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.32689,9.174315,1.386294,5.146034,1
-11,1,0,1,2,128414,0,9645.161,44.7755,0,16,1,188.8949,33.78879,0,0,0,222.6837,0,0,0,7,0,4,94.7,4.3,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.32689,9.174315,1.386294,5.405753,1
-11,1,0,1,3,128414,0,9645.161,45.7755,0,16,1,282.4579,30.66402,21.23389,0,0,334.3558,0,0,0,6,1,4,94.7,4.3,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.32689,9.174315,1.386294,5.812206,1
-11,1,0,1,4,128414,0,9645.161,46.7755,0,16,1,293.2538,49.88527,0,0,0,343.1391,0,0,0,12,0,4,94.7,4.3,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.32689,9.174315,1.386294,5.838136,1
-11,1,0,1,5,128414,0,9645.161,47.7755,0,16,1,21.87631,31.66597,0,0,0,53.54228,0,0,0,1,0,4,94.7,4.3,0,,0,233,0,0,1.386294,5.451038,0,0,0,0,0,0,77.32689,9.174315,1.386294,3.980472,1
-2,1,100,1,1,128431,0,5694.789,27.08008,1,7,1,92.92566,50.67746,32.57794,0,306.1631,482.3441,1,0,0,13,1,5,66.3,34.8,1,,594,594,0,0,1.609438,6.386879,1,0,0,0,1,0,52.32401,8.647483,1.609438,6.178658,1
-2,1,100,1,2,128431,0,5694.789,28.08008,1,7,1,117.1961,28.75137,0,0,0,145.9474,0,0,0,5,0,5,66.3,34.8,1,,594,594,0,0,1.609438,6.386879,1,0,0,0,1,0,52.32401,8.647483,1.609438,4.983246,1
-2,1,100,1,3,128431,0,5694.789,29.08008,1,7,1,17.45636,9.900249,26.58354,0,0,53.94015,0,0,0,1,1,5,66.3,34.8,1,,594,594,0,0,1.609438,6.386879,1,0,0,0,1,0,52.32401,8.647483,1.609438,3.987875,1
-2,1,100,1,1,128432,0,5694.789,7.937029,0,7,1,10.79137,7.847722,0,0,0,18.63909,0,0,0,1,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,59.21023,8.647483,1.609438,2.925261,1
-2,1,100,1,2,128432,0,5694.789,8.93703,0,7,1,60.24096,4.156627,0,0,2155.75,2220.148,2,0,0,6,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,59.21023,8.647483,1.609438,7.705329,1
-2,1,100,1,3,128432,0,5694.789,9.93703,0,7,1,555.3616,7.845387,0,0,2160.798,2724.005,2,0,0,7,2,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,59.21023,8.647483,1.609438,7.909858,1
-2,1,100,1,1,128433,0,5694.789,10.80356,0,7,1,20.38369,1.193046,26.97842,0,0,48.55516,0,0,0,1,2,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,63.0433,8.647483,1.609438,3.8827,1
-2,1,100,1,2,128433,0,5694.789,11.80356,0,7,1,50.38335,3.214677,0,0,0,53.59803,0,0,0,3,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,63.0433,8.647483,1.609438,3.981512,1
-2,1,100,1,3,128433,0,5694.789,12.80356,0,7,1,30.1995,8.249376,0,0,358.9526,397.4015,1,0,0,2,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,1,0,63.0433,8.647483,1.609438,5.984947,1
-2,1,100,1,1,128434,0,5694.789,4.172484,0,7,1,49.46043,12.11031,0,0,0,61.57074,0,0,0,4,1,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,0,0,75.11046,8.647483,1.609438,4.120187,1
-2,1,100,1,2,128434,0,5694.789,5.172484,0,7,1,98.35706,5.219058,0,0,0,103.5761,0,0,0,6,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,0,0,75.11046,8.647483,1.609438,4.640307,1
-2,1,100,1,3,128434,0,5694.789,6.172484,0,7,1,20.94763,7.246883,0,0,0,28.19451,0,0,0,2,0,5,74.36826,13.73189,0,,594,594,1,0,1.609438,6.386879,1,0,0,0,0,0,75.11046,8.647483,1.609438,3.339127,1
-2,1,100,1,1,128435,0,5694.789,32.46544,0,12,1,185.7014,3.219424,0,0,0,188.9209,0,0,0,2,0,5,65.3,17.4,0,,594,594,0,0,1.609438,6.386879,1,0,0,1,0,0,70.86124,8.647483,1.609438,5.241328,1
-2,1,100,1,2,128435,0,5694.789,33.46544,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,65.3,17.4,0,,594,594,0,0,1.609438,6.386879,1,0,0,1,0,0,70.86124,8.647483,1.609438,,0
-2,1,100,1,3,128435,0,5694.789,34.46544,0,12,1,18.95262,2.049875,0,0,0,21.00249,0,0,0,1,0,5,65.3,17.4,0,,594,594,0,0,1.609438,6.386879,1,0,0,1,0,0,70.86124,8.647483,1.609438,3.044641,1
-11,1,0,1,1,128438,0,14655.34,47.23614,1,12,1,89.32854,307.9616,39.47842,0,0,436.7686,0,0,0,6,1,3,46.3,13,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,78.72062,9.592628,1.098612,6.079403,1
-11,1,0,1,2,128438,0,14655.34,48.23614,1,12,1,0,304.2169,0,0,0,304.2169,0,0,0,0,0,3,46.3,13,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,78.72062,9.592628,1.098612,5.717741,1
-11,1,0,1,3,128438,0,14655.34,49.23614,1,12,1,14.96259,64.68828,16.6783,0,0,96.32918,0,0,0,1,1,3,46.3,13,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,78.72062,9.592628,1.098612,4.567771,1
-11,1,0,1,4,128438,0,14655.34,50.23614,1,12,1,51.6367,44.92854,0,0,0,96.56524,0,0,0,3,1,3,46.3,13,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,78.72062,9.592628,1.098612,4.570219,1
-11,1,0,1,5,128438,0,14655.34,51.23614,1,12,1,101.1426,62.95387,25.20525,0,451.3161,640.6179,1,0,0,2,0,3,46.3,13,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,78.72062,9.592628,1.098612,6.462433,1
-11,1,0,1,1,128439,0,14655.34,18.45311,1,12,1,11.99041,0,29.73022,0,0,41.72062,0,0,0,0,1,3,65.3,4.3,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,79.76731,9.592628,1.098612,3.730996,1
-11,1,0,1,2,128439,0,14655.34,19.45311,1,12,1,31.21577,5.969332,0,0,0,37.1851,0,0,0,4,0,3,65.3,4.3,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,79.76731,9.592628,1.098612,3.615908,1
-11,1,0,1,3,128439,0,14655.34,20.45311,1,12,1,40.399,15.12219,24.0798,0,0,79.601,0,0,0,3,1,3,65.3,4.3,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,79.76731,9.592628,1.098612,4.377027,1
-11,1,0,1,4,128439,0,14655.34,21.45311,1,12,1,22.59105,57.13232,0,0,0,79.72337,0,0,0,3,0,3,65.3,4.3,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,79.76731,9.592628,1.098612,4.378563,1
-11,1,0,1,5,128439,0,14655.34,22.45311,1,12,1,28.35379,37.93906,27.08845,0,0,93.38129,0,0,0,2,1,3,65.3,4.3,0,,0,329,0,0,1.098612,5.796058,0,0,0,0,0,0,79.76731,9.592628,1.098612,4.536691,1
-11,1,0,1,1,128440,0,14655.34,52.82409,0,12,1,39.56834,67.91367,16.91846,0,0,124.4005,0,0,0,4,1,3,66.3,17.4,0,,0,329,0,0,1.098612,5.796058,0,0,0,1,0,0,64.3789,9.592628,1.098612,4.823506,1
-11,1,0,1,2,128440,0,14655.34,53.82409,0,12,1,83.24206,58.61446,0,0,3381.911,3523.768,1,0,0,11,0,3,66.3,17.4,0,,0,329,0,0,1.098612,5.796058,0,0,0,1,0,0,64.3789,9.592628,1.098612,8.167286,1
-11,1,0,1,3,128440,0,14655.34,54.82409,0,12,1,70.07481,24.01496,18.95262,0,938.4589,1051.501,1,0,0,7,1,3,66.3,17.4,0,,0,329,0,0,1.098612,5.796058,0,0,0,1,0,0,64.3789,9.592628,1.098612,6.957974,1
-11,1,0,1,4,128440,0,14655.34,55.82409,0,12,1,38.72752,27.70862,0,0,0,66.43614,0,0,0,3,0,3,66.3,17.4,0,,0,329,0,0,1.098612,5.796058,0,0,0,1,0,0,64.3789,9.592628,1.098612,4.196241,1
-11,1,0,1,5,128440,0,14655.34,56.82409,0,12,1,69.4033,34.40542,0,0,0,103.8087,0,0,0,5,1,3,66.3,17.4,0,,0,329,0,0,1.098612,5.796058,0,0,0,1,0,0,64.3789,9.592628,1.098612,4.64255,1
-2,1,100,0,1,128443,0,9138.338,3.674196,1,13,1,7.656066,0,0,0,0,7.656066,0,0,0,1,0,3,74.36826,13.73189,0,,890,890,1,1,1.098612,6.791222,1,0,0,0,0,0,78.11302,9.120343,1.098612,2.035498,1
-2,1,100,0,2,128443,0,9138.338,4.674196,1,13,1,15.63342,2.12938,0,0,0,17.7628,0,0,0,2,0,4,74.36826,13.73189,0,,890,890,1,1,1.386294,6.791222,1,0,0,0,0,0,78.11302,9.120343,1.386294,2.877107,1
-2,1,100,0,3,128443,0,9138.338,5.674196,1,13,1,13.26781,.982801,0,0,0,14.25061,0,0,0,1,0,4,74.36826,13.73189,0,,890,890,1,1,1.386294,6.791222,1,0,0,0,0,0,78.11302,9.120343,1.386294,2.6568,1
-2,1,100,0,4,128443,0,9138.338,6.674196,1,13,1,15.04102,0,0,0,0,15.04102,0,0,0,1,0,4,74.36826,13.73189,0,,890,890,1,1,1.386294,6.791222,1,0,0,0,0,0,78.11302,9.120343,1.386294,2.710781,1
-2,1,100,0,5,128443,0,9138.338,7.674196,1,13,1,22.50938,0,0,0,0,22.50938,0,0,0,3,0,4,74.36826,13.73189,0,,890,890,1,1,1.386294,6.791222,1,0,0,0,0,0,78.11302,9.120343,1.386294,3.113932,1
-2,1,100,0,1,128444,0,9138.338,28.71184,0,14,1,337.1614,5.276796,21.66667,0,0,364.1048,0,0,0,4,1,3,50.5,0,0,,890,890,0,0,1.098612,6.791222,1,0,0,0,0,0,77.94995,9.120343,1.098612,5.897442,1
-2,1,100,0,2,128444,0,9138.338,29.71184,0,14,1,41.53639,4.204852,0,0,0,45.74124,0,0,0,3,0,4,50.5,0,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,77.94995,9.120343,1.386294,3.823,1
-2,1,100,0,3,128444,0,9138.338,30.71184,0,14,1,9.82801,5.174447,0,0,0,15.00246,0,0,0,2,0,4,50.5,0,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,77.94995,9.120343,1.386294,2.708214,1
-2,1,100,0,4,128444,0,9138.338,31.71184,0,14,1,5.469462,0,0,0,0,5.469462,0,0,0,1,0,4,50.5,0,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,77.94995,9.120343,1.386294,1.69918,1
-2,1,100,0,5,128444,0,9138.338,32.71184,0,14,1,77.2822,2.917882,0,0,0,80.20008,0,0,0,4,0,4,50.5,0,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,77.94995,9.120343,1.386294,4.384524,1
-2,1,100,0,1,128445,0,9138.338,25.40452,1,13,1,85.39458,11.40754,0,0,665.3121,762.1143,1,0,0,2,0,3,84.2,8.7,0,,890,890,0,0,1.098612,6.791222,1,0,0,0,0,0,73.57805,9.120343,1.098612,6.636096,1
-2,1,100,0,2,128445,0,9138.338,26.40452,1,13,1,21.02426,6.091644,0,0,0,27.1159,0,0,0,3,0,4,84.2,8.7,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,73.57805,9.120343,1.386294,3.30012,1
-2,1,100,0,3,128445,0,9138.338,27.40452,1,13,1,43.24324,3.439803,0,0,0,46.68305,0,0,0,6,0,4,84.2,8.7,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,73.57805,9.120343,1.386294,3.843381,1
-2,1,100,0,4,128445,0,9138.338,28.40452,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,8.7,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,73.57805,9.120343,1.386294,,0
-2,1,100,0,5,128445,0,9138.338,29.40452,1,13,1,19.17466,0,0,0,0,19.17466,0,0,0,2,0,4,84.2,8.7,0,,890,890,0,0,1.386294,6.791222,1,0,0,0,0,0,73.57805,9.120343,1.386294,2.953589,1
-11,1,0,0,1,128468,0,10325.68,19.80561,0,12,1,32.97998,9.140165,41.54299,0,0,83.66313,0,0,0,2,1,4,78.9,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.46669,9.242486,1.386294,4.426798,1
-11,1,0,0,2,128468,0,10325.68,20.80561,0,12,1,57.68194,0,0,0,0,57.68194,0,0,0,3,0,4,78.9,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.46669,9.242486,1.386294,4.054944,1
-11,1,0,0,3,128468,0,10325.68,21.80561,0,12,1,253.0713,5.479115,0,0,0,258.5504,0,0,0,1,22,4,78.9,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.46669,9.242486,1.386294,5.55509,1
-11,1,0,0,4,128468,0,10325.68,22.80561,0,12,.2684931,260.711,0,0,0,0,260.711,0,0,0,0,21,4,78.9,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.46669,9.242486,1.386294,5.563413,1
-11,1,0,0,1,128469,0,10325.68,40.51472,1,12,1,11.77856,0,0,0,0,11.77856,0,0,0,0,0,4,84.2,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.31118,9.242486,1.386294,2.466281,1
-11,1,0,0,2,128469,0,10325.68,41.51472,1,12,1,43.66577,2.156334,366.5768,0,0,412.3989,0,0,0,4,0,4,84.2,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.31118,9.242486,1.386294,6.021991,1
-11,1,0,0,3,128469,0,10325.68,42.51472,1,12,1,14.74201,0,0,0,271.9754,286.7174,1,0,0,2,0,4,84.2,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.31118,9.242486,1.386294,5.658497,1
-11,1,0,0,4,128469,0,10325.68,43.51472,1,12,1,15.9526,0,15.9526,0,0,31.9052,0,0,0,1,0,4,84.2,4.3,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,78.31118,9.242486,1.386294,3.462769,1
-11,1,0,0,5,128469,0,10325.68,44.51472,1,12,1,45.85244,5.814923,0,0,0,51.66736,0,0,0,2,0,3,84.2,4.3,0,,0,195,0,0,1.098612,5.273,0,0,0,0,0,0,78.31118,9.242486,1.098612,3.944826,1
-11,1,0,0,1,128470,0,10325.68,40.4627,0,11,1,98.0742,16.16608,0,0,0,114.2403,0,0,0,7,1,4,83.2,0,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,73.53505,9.242486,1.386294,4.738304,1
-11,1,0,0,2,128470,0,10325.68,41.4627,0,11,1,5.390836,0,0,0,0,5.390836,0,0,0,1,0,4,83.2,0,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,73.53505,9.242486,1.386294,1.6847,1
-11,1,0,0,3,128470,0,10325.68,42.4627,0,11,1,269.7789,1.891892,29.27273,0,0,300.9435,0,0,0,2,13,4,83.2,0,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,73.53505,9.242486,1.386294,5.706923,1
-11,1,0,0,4,128470,0,10325.68,43.4627,0,11,1,209.6627,0,0,0,0,209.6627,0,0,0,1,18,4,83.2,0,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,73.53505,9.242486,1.386294,5.3455,1
-11,1,0,0,5,128470,0,10325.68,44.4627,0,11,1,125.2188,.2084202,0,0,0,125.4273,0,0,0,4,0,3,83.2,0,0,,0,195,0,0,1.098612,5.273,0,0,0,0,0,0,73.53505,9.242486,1.098612,4.831726,1
-11,1,0,0,1,128471,0,10325.68,15.37851,0,12,1,14.13428,4.240283,0,0,0,18.37456,0,0,0,2,0,4,83.2,0,0,,0,195,1,0,1.386294,5.273,0,0,0,0,0,0,80.31274,9.242486,1.386294,2.910967,1
-11,1,0,0,2,128471,0,10325.68,16.37851,0,12,1,33.42318,2.156334,0,0,0,35.57951,0,0,0,3,0,4,83.2,0,0,,0,195,1,0,1.386294,5.273,0,0,0,0,0,0,80.31274,9.242486,1.386294,3.57177,1
-11,1,0,0,3,128471,0,10325.68,17.37851,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.2,0,0,,0,195,1,0,1.386294,5.273,0,0,0,0,0,0,80.31274,9.242486,1.386294,,0
-11,1,0,0,4,128471,0,10325.68,18.37851,0,12,1,25.06837,0,0,0,0,25.06837,0,0,0,4,0,4,83.2,0,0,,0,195,0,0,1.386294,5.273,0,0,0,0,0,0,80.31274,9.242486,1.386294,3.221607,1
-11,1,0,0,5,128471,0,10325.68,19.37851,0,12,1,31.26303,0,0,0,0,31.26303,0,0,0,1,0,3,83.2,0,0,,0,195,0,0,1.098612,5.273,0,0,0,0,0,0,80.31274,9.242486,1.098612,3.442436,1
-7,1,25,0,1,128493,0,11517.37,12.82957,1,12,1,17.07892,1.177856,0,0,0,18.25677,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.87948,9.351699,1.386294,2.904536,1
-7,1,25,0,2,128493,0,11517.37,13.82957,1,12,1,33.96227,0,0,0,0,33.96227,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.87948,9.351699,1.386294,3.52525,1
-7,1,25,0,3,128493,0,11517.37,14.82957,1,12,1,21.62162,.982801,0,0,0,22.60442,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.87948,9.351699,1.386294,3.118146,1
-7,1,25,0,4,128493,0,11517.37,15.82957,1,12,1,37.60255,0,32.38833,0,0,69.99088,0,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.87948,9.351699,1.386294,4.248365,1
-7,1,25,0,5,128493,0,11517.37,16.82957,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.87948,9.351699,1.386294,,0
-7,1,25,0,1,128494,0,11517.37,38.95414,0,10,1,50.05889,1.177856,0,0,0,51.23675,0,0,0,2,0,4,82.5,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,71.52279,9.351699,1.386294,3.936457,1
-7,1,25,0,2,128494,0,11517.37,39.95414,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,71.52279,9.351699,1.386294,,0
-7,1,25,0,3,128494,0,11517.37,40.95414,0,10,1,12.28501,0,28.99263,0,0,41.27764,0,0,0,1,0,4,82.5,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,71.52279,9.351699,1.386294,3.720321,1
-7,1,25,0,4,128494,0,11517.37,41.95414,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,82.5,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,71.52279,9.351699,1.386294,,0
-7,1,25,0,5,128494,0,11517.37,42.95414,0,10,1,172.5719,0,37.09879,0,0,209.6707,0,0,0,4,4,4,82.5,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,71.52279,9.351699,1.386294,5.345538,1
-7,1,25,0,1,128495,0,11517.37,10.46133,1,12,1,9.422851,6.919906,0,0,0,16.34276,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.19097,9.351699,1.386294,2.793785,1
-7,1,25,0,2,128495,0,11517.37,11.46133,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.19097,9.351699,1.386294,,0
-7,1,25,0,3,128495,0,11517.37,12.46133,1,12,1,8.845209,0,0,0,0,8.845209,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.19097,9.351699,1.386294,2.179876,1
-7,1,25,0,4,128495,0,11517.37,13.46133,1,12,1,10.25524,0,0,0,0,10.25524,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.19097,9.351699,1.386294,2.327789,1
-7,1,25,0,5,128495,0,11517.37,14.46133,1,12,1,8.336807,0,0,0,0,8.336807,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.19097,9.351699,1.386294,2.12068,1
-7,1,25,0,1,128496,0,11517.37,34.08624,1,12,1,283.2744,67.55595,27.67962,0,0,378.51,0,0,0,19,0,4,80,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.49276,9.351699,1.386294,5.936243,1
-7,1,25,0,2,128496,0,11517.37,35.08624,1,12,1,76.54987,32.19946,0,0,0,108.7493,0,0,0,11,0,4,80,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.49276,9.351699,1.386294,4.689045,1
-7,1,25,0,3,128496,0,11517.37,36.08624,1,12,1,40.29484,20.93366,0,0,0,61.2285,0,0,0,8,0,4,80,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.49276,9.351699,1.386294,4.114613,1
-7,1,25,0,4,128496,0,11517.37,37.08624,1,12,1,20.96627,0,0,0,0,20.96627,0,0,0,1,1,4,80,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.49276,9.351699,1.386294,3.042915,1
-7,1,25,0,5,128496,0,11517.37,38.08624,1,12,1,32.51355,4.997916,26.5694,0,0,64.08086,0,0,0,3,0,4,80,13.73189,1,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,1,0,56.49276,9.351699,1.386294,4.160146,1
-10,1,50,0,1,128497,0,10301.49,7.545517,0,9,1,8.833922,0,0,0,0,8.833922,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,84.4333,9.240141,1.791759,2.178599,1
-10,1,50,0,2,128497,0,10301.49,8.545517,0,9,1,90.02695,0,0,0,173.5094,263.5364,1,0,0,2,2,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,84.4333,9.240141,1.791759,5.574192,1
-10,1,50,0,1,128498,0,10301.49,27.53183,1,9,1,30.03534,5.300354,0,0,0,35.33569,0,0,0,4,0,6,65,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,63.61448,9.240141,1.791759,3.564893,1
-10,1,50,0,2,128498,0,10301.49,28.53183,1,9,1,14.01617,1.617251,29.6496,0,0,45.28302,0,0,0,1,0,6,65,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,63.61448,9.240141,1.791759,3.812932,1
-10,1,50,0,1,128499,0,10301.49,10.04517,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,83.91933,9.240141,1.791759,,0
-10,1,50,0,2,128499,0,10301.49,11.04517,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,83.91933,9.240141,1.791759,,0
-10,1,50,0,1,128500,0,10301.49,11.32101,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,84.4333,9.240141,1.791759,,0
-10,1,50,0,2,128500,0,10301.49,12.32101,0,9,1,7.008086,0,0,0,0,7.008086,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,84.4333,9.240141,1.791759,1.947065,1
-10,1,50,0,1,128501,0,10301.49,4.911705,1,9,1,101.2956,0,0,0,0,101.2956,0,0,0,4,2,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.4877,9.240141,1.791759,4.618043,1
-10,1,50,0,2,128501,0,10301.49,5.911705,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.4877,9.240141,1.791759,,0
-10,1,50,0,1,128502,0,10301.49,31.90417,0,8,1,8.462897,16.66078,0,0,0,25.12367,0,0,0,0,0,6,90,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,61.55907,9.240141,1.791759,3.223811,1
-10,1,50,0,2,128502,0,10301.49,32.90417,0,8,1,229.3801,2.32345,0,0,0,231.7035,0,0,0,2,1,6,90,13.73189,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,1,0,0,61.55907,9.240141,1.791759,5.445458,1
-11,1,0,1,1,128520,0,9861.166,15.50171,0,12,1,19.63117,0,36.68055,0,0,56.31172,0,0,0,1,1,6,98.9,13,0,,0,196,1,0,1.791759,5.278115,0,0,0,0,0,0,80.40273,9.196461,1.791759,4.030903,1
-11,1,0,1,2,128520,0,9861.166,16.50171,0,12,1,9.798585,1.633097,0,0,0,11.43168,0,0,0,2,0,6,98.9,13,0,,0,196,1,0,1.791759,5.278115,0,0,0,0,0,0,80.40273,9.196461,1.791759,2.436388,1
-11,1,0,1,3,128520,0,9861.166,17.50171,0,12,1,53.51833,14.49455,0,0,0,68.01289,0,0,0,5,0,6,98.9,13,0,,0,196,1,0,1.791759,5.278115,0,0,0,0,0,0,80.40273,9.196461,1.791759,4.219697,1
-11,1,0,1,4,128520,0,9861.166,18.50171,0,12,1,219.0225,36.85177,19.66498,0,0,275.5392,0,0,0,3,1,6,98.9,13,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,80.40273,9.196461,1.791759,5.61873,1
-11,1,0,1,5,128520,0,9861.166,19.50171,0,12,1,33.65587,27.34539,0,0,0,61.00126,0,0,0,0,0,6,98.9,13,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,80.40273,9.196461,1.791759,4.110895,1
-11,1,0,1,1,128521,0,9861.166,8.960985,1,12,1,27.95955,7.346817,0,0,0,35.30637,0,0,0,4,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,3.564063,1
-11,1,0,1,2,128521,0,9861.166,9.960985,1,12,1,16.33097,3.701688,0,0,0,20.03266,0,0,0,3,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,2.997364,1
-11,1,0,1,3,128521,0,9861.166,10.96099,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,,0
-11,1,0,1,4,128521,0,9861.166,11.96099,1,12,1,11.93208,0,0,0,0,11.93208,0,0,0,1,1,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,2.47923,1
-11,1,0,1,5,128521,0,9861.166,12.96099,1,12,1,18.93143,0,0,0,0,18.93143,0,0,0,2,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,2.940823,1
-11,1,0,1,1,128522,0,9861.166,11.76454,1,12,1,224.0631,213.028,51.08864,0,0,488.1797,0,0,0,20,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,1,0,0,74.44305,9.196461,1.791759,6.190683,1
-11,1,0,1,2,128522,0,9861.166,12.76454,1,12,1,44.09363,98.44855,0,0,319.4883,462.0305,1,0,0,9,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,1,0,0,74.44305,9.196461,1.791759,6.135631,1
-11,1,0,1,3,128522,0,9861.166,13.76454,1,12,1,127.8494,71.67988,0,0,0,199.5292,0,0,0,26,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,1,0,0,74.44305,9.196461,1.791759,5.295961,1
-11,1,0,1,4,128522,0,9861.166,14.76454,1,12,1,114.5021,82.07893,.6883892,0,407.8476,605.117,1,0,0,28,1,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,1,0,0,74.44305,9.196461,1.791759,6.405422,1
-11,1,0,1,5,128522,0,9861.166,15.76454,1,12,1,225.6458,82.06563,0,0,0,307.7114,0,0,0,33,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,1,0,0,74.44305,9.196461,1.791759,5.729162,1
-11,1,0,1,1,128523,0,9861.166,41.42368,0,12,1,151.6954,39.64902,36.68055,0,1444.325,1672.35,2,0,0,13,1,6,100,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,76.77452,9.196461,1.791759,7.421985,1
-11,1,0,1,2,128523,0,9861.166,42.42368,0,12,1,91.99783,33.043,0,0,0,125.0408,0,0,0,11,0,6,100,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,76.77452,9.196461,1.791759,4.82864,1
-11,1,0,1,3,128523,0,9861.166,43.42368,0,12,1,95.14371,26.53617,0,0,0,121.6799,0,0,0,12,0,6,100,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,76.77452,9.196461,1.791759,4.801394,1
-11,1,0,1,4,128523,0,9861.166,44.42368,0,12,1,55.98899,34.69481,0,0,0,90.6838,0,0,0,7,0,6,100,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,76.77452,9.196461,1.791759,4.507379,1
-11,1,0,1,5,128523,0,9861.166,45.42368,0,12,1,147.1435,32.96172,36.04544,0,0,216.1506,0,0,0,16,0,6,100,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,76.77452,9.196461,1.791759,5.375976,1
-11,1,0,1,1,128524,0,9861.166,39.96167,1,12,1,42.23676,22.57585,24.98513,0,0,89.79774,0,0,0,6,0,6,77.9,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,79.44787,9.196461,1.791759,4.49756,1
-11,1,0,1,2,128524,0,9861.166,40.96167,1,12,1,193.5493,5.770278,21.62221,0,0,220.9418,0,0,0,3,1,6,77.9,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,79.44787,9.196461,1.791759,5.397899,1
-11,1,0,1,3,128524,0,9861.166,41.96167,1,12,1,48.06739,8.671952,0,0,0,56.73935,0,0,0,6,0,6,77.9,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,79.44787,9.196461,1.791759,4.038468,1
-11,1,0,1,4,128524,0,9861.166,42.96167,1,12,1,64.70858,17.37035,53.7173,0,0,135.7962,0,0,0,7,1,6,77.9,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,79.44787,9.196461,1.791759,4.911156,1
-11,1,0,1,5,128524,0,9861.166,43.96167,1,12,1,251.6702,37.54733,31.15692,0,0,320.3744,0,0,0,6,0,6,77.9,8.7,0,,0,196,0,0,1.791759,5.278115,0,0,0,0,0,0,79.44787,9.196461,1.791759,5.76949,1
-11,1,0,1,1,128525,0,9861.166,10.65571,1,12,1,19.63117,1.784652,0,0,0,21.41582,0,0,0,2,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,3.06413,1
-11,1,0,1,2,128525,0,9861.166,11.65571,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,,0
-11,1,0,1,3,128525,0,9861.166,12.65571,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,,0
-11,1,0,1,4,128525,0,9861.166,13.65571,1,12,1,35.79624,.9178522,0,0,0,36.71409,0,0,0,3,1,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,3.603161,1
-11,1,0,1,5,128525,0,9861.166,14.65571,1,12,1,22.71771,0,0,0,0,22.71771,0,0,0,3,0,6,74.36826,13.73189,0,,0,196,1,1,1.791759,5.278115,0,0,0,0,0,0,84.62004,9.196461,1.791759,3.123145,1
-5,1,25,0,1,128550,1,5445.176,5.004791,1,14,1,100.2698,0,0,0,464.0707,564.3405,1,0,0,2,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,76.07727,8.602669,1.098612,6.335658,1
-5,1,25,0,2,128550,1,5445.176,6.004791,1,14,1,13.30778,6.818182,0,0,0,20.12596,0,0,0,1,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,76.07727,8.602669,1.098612,3.00201,1
-5,1,25,0,3,128550,1,5445.176,7.004791,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,76.07727,8.602669,1.098612,,0
-5,1,25,0,1,128551,1,5445.176,27.5154,1,14,1,18.58513,0,0,0,0,18.58513,0,0,0,2,0,3,80,13.73189,0,,359,359,0,0,1.098612,5.883322,0,3.258096,7.269617,1,0,0,68.25694,8.602669,1.098612,2.922362,1
-5,1,25,0,2,128551,1,5445.176,28.5154,1,14,1,378.0285,0,0,0,0,378.0285,0,0,0,3,0,3,80,13.73189,0,,359,359,0,0,1.098612,5.883322,0,3.258096,7.269617,1,0,0,68.25694,8.602669,1.098612,5.934969,1
-5,1,25,0,3,128551,1,5445.176,29.5154,1,14,1,33.41646,0,0,0,0,33.41646,0,0,0,4,0,3,80,13.73189,0,,359,359,0,0,1.098612,5.883322,0,3.258096,7.269617,1,0,0,68.25694,8.602669,1.098612,3.509048,1
-5,1,25,0,1,128552,1,5445.176,5.965777,1,14,1,22.93165,0,0,0,0,22.93165,0,0,0,1,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,79.50889,8.602669,1.098612,3.132518,1
-5,1,25,0,2,128552,1,5445.176,6.965777,1,14,1,5.476451,0,0,0,0,5.476451,0,0,0,1,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,79.50889,8.602669,1.098612,1.700457,1
-5,1,25,0,3,128552,1,5445.176,7.965777,1,14,1,4.987531,0,0,0,0,4.987531,0,0,0,1,0,3,74.36826,13.73189,0,,359,359,1,1,1.098612,5.883322,0,3.258096,7.269617,1,0,0,79.50889,8.602669,1.098612,1.606941,1
-1,1,0,1,1,128569,1,15095.53,24.39973,1,16,1,54.72933,0,0,0,0,54.72933,0,0,0,2,0,2,73.7,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,65.77286,9.62222,.6931472,4.0024,1
-1,1,0,1,2,128569,1,15095.53,25.39973,1,16,1,117.583,0,29.1399,0,0,146.7229,0,0,0,6,1,2,73.7,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,65.77286,9.62222,.6931472,4.988546,1
-1,1,0,1,3,128569,1,15095.53,26.39973,1,16,1,24.77701,0,0,0,865.4361,890.2131,1,0,0,1,0,2,73.7,8.7,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,65.77286,9.62222,.6931472,6.791461,1
-1,1,0,1,1,128570,1,15095.53,28.9473,0,18,1,25.25282,0,0,0,346.3712,371.624,1,0,0,0,0,2,68.4,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,67.4578,9.62222,.6931472,5.917882,1
-1,1,0,1,2,128570,1,15095.53,29.9473,0,18,1,121.3936,0,0,0,0,121.3936,0,0,0,7,0,2,68.4,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,67.4578,9.62222,.6931472,4.799038,1
-1,1,0,1,3,128570,1,15095.53,30.9473,0,18,1,601.4371,20.48067,0,0,45.09415,667.0119,0,0,0,6,1,2,68.4,4.3,0,,300,300,0,0,.6931472,5.703783,1,0,0,1,0,0,67.4578,9.62222,.6931472,6.502808,1
-7,1,25,0,1,128581,1,14949.13,36.22724,0,18,1,65.84217,38.27444,24.73498,106.0071,1154.152,1283.004,2,0,14,1,1,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,65.67462,9.612475,1.609438,7.156959,1
-7,1,25,0,2,128581,1,14949.13,37.22724,0,18,1,29.6496,0,0,75.47169,1867.17,1896.819,1,0,14,0,0,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,65.67462,9.612475,1.609438,7.547934,1
-7,1,25,0,3,128581,1,14949.13,38.22724,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,73.8,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,65.67462,9.612475,1.609438,,0
-7,1,25,0,1,128582,1,14949.13,35.23888,1,16,1,310.6596,165.689,0,0,0,476.3486,0,0,0,37,1,5,47.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.22718,9.612475,1.609438,6.16615,1
-7,1,25,0,2,128582,1,14949.13,36.23888,1,16,1,53.36927,164.3666,0,0,0,217.7359,0,0,0,6,0,5,47.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.22718,9.612475,1.609438,5.383283,1
-7,1,25,0,3,128582,1,14949.13,37.23888,1,16,1,228.6241,155.8673,0,0,0,384.4914,0,0,0,11,1,5,47.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,68.22718,9.612475,1.609438,5.951921,1
-7,1,25,0,1,128583,1,14949.13,8.536619,1,16,1,145.1708,13.39812,0,0,0,158.5689,0,0,0,6,1,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,88.60927,9.612475,1.609438,5.066189,1
-7,1,25,0,2,128583,1,14949.13,9.536619,1,16,1,41.50943,21.45553,0,0,0,62.96496,0,0,0,8,0,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,88.60927,9.612475,1.609438,4.142578,1
-7,1,25,0,3,128583,1,14949.13,10.53662,1,16,1,122.344,17.62162,0,0,403.6265,543.5922,1,0,0,5,0,5,74.36826,13.73189,1,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,88.60927,9.612475,1.609438,6.298199,1
-7,1,25,0,1,128584,1,14949.13,11.48528,1,16,1,80.38869,7.714959,20.17668,0,0,108.2803,0,0,0,4,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,83.93784,9.612475,1.609438,4.684723,1
-7,1,25,0,2,128584,1,14949.13,12.48528,1,16,1,0,0,28,0,0,28,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,83.93784,9.612475,1.609438,3.332205,1
-7,1,25,0,3,128584,1,14949.13,13.48528,1,16,1,14.25061,0,0,0,0,14.25061,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,83.93784,9.612475,1.609438,2.6568,1
-7,1,25,0,1,128585,1,14949.13,10.31348,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,82.66042,9.612475,1.609438,,0
-7,1,25,0,2,128585,1,14949.13,11.31348,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,82.66042,9.612475,1.609438,,0
-7,1,25,0,3,128585,1,14949.13,12.31348,0,16,1,149.8772,0,0,0,1039.926,1189.803,1,0,0,6,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,82.66042,9.612475,1.609438,7.081543,1
-5,1,25,1,1,128596,1,11635.86,39.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,98.9,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,74.38396,9.361933,1.098612,,0
-5,1,25,1,2,128596,1,11635.86,40.49897,0,12,1,67.22918,4.001089,0,0,1182.967,1254.197,1,0,0,3,0,2,98.9,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,74.38396,9.361933,.6931472,7.134251,1
-5,1,25,1,3,128596,1,11635.86,41.49897,0,12,1,29.73241,0,0,0,185.8275,215.56,1,1,0,2,0,2,98.9,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,74.38396,9.361933,.6931472,5.373239,1
-5,1,25,1,1,128597,1,11635.86,4.405202,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.82845,9.361933,1.098612,,0
-5,1,25,1,1,128598,1,11635.86,39.54826,1,12,1,273.7359,71.98096,0,0,858.2927,1204.01,3,0,0,5,0,3,82.1,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,74.3345,9.361933,1.098612,7.093412,1
-5,1,25,1,2,128598,1,11635.86,40.54826,1,12,1,377.6538,10.07077,48.35057,0,0,436.0751,0,0,0,3,0,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,74.3345,9.361933,.6931472,6.077815,1
-5,1,25,1,3,128598,1,11635.86,41.54826,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,82.1,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,74.3345,9.361933,.6931472,,0
-11,1,0,1,1,128616,0,10317.62,42.92676,1,12,1,4.759072,2.528257,0,0,0,7.287329,0,0,0,1,0,4,92.6,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52303,9.241705,1.386294,1.986137,1
-11,1,0,1,2,128616,0,10317.62,43.92676,1,12,1,60.42461,0,0,0,827.5177,887.9423,1,0,0,4,0,4,92.6,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52303,9.241705,1.386294,6.788907,1
-11,1,0,1,3,128616,0,10317.62,44.92676,1,12,1,13.87512,0,37.39346,0,0,51.26858,0,0,0,1,0,4,92.6,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52303,9.241705,1.386294,3.937078,1
-11,1,0,1,4,128616,0,10317.62,45.92676,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,92.6,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52303,9.241705,1.386294,,0
-11,1,0,1,5,128616,0,10317.62,46.92676,1,12,1,12.62095,0,40.6647,0,0,53.28566,0,0,0,1,0,4,92.6,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.52303,9.241705,1.386294,3.975667,1
-11,1,0,1,1,128617,0,10317.62,16.9692,1,12,1,26.1749,14.03926,10.57109,0,0,50.78525,0,0,0,3,0,4,75.8,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,3.927606,1
-11,1,0,1,2,128617,0,10317.62,17.9692,1,12,1,24.49646,9.145346,18.76973,0,25.91181,78.32336,1,0,0,2,0,4,75.8,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,4.360846,1
-11,1,0,1,3,128617,0,10317.62,18.9692,1,12,1,57.9782,2.700694,0,0,0,60.67889,0,0,0,3,0,4,75.8,8.7,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,4.105596,1
-11,1,0,1,4,128617,0,10317.62,19.9692,1,12,1,12.84993,1.376778,0,0,0,14.22671,0,0,0,1,0,4,75.8,8.7,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,2.655121,1
-11,1,0,1,5,128617,0,10317.62,20.9692,1,12,1,29.44888,3.618006,0,0,0,33.06689,0,0,0,3,0,4,75.8,8.7,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,3.498533,1
-11,1,0,1,1,128618,0,10317.62,14.19849,1,12,1,38.07257,17.1624,0,0,0,55.23498,0,0,0,6,0,4,77.9,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,4.011596,1
-11,1,0,1,2,128618,0,10317.62,15.19849,1,12,1,47.35983,18.86228,36.40718,0,0,102.6293,0,0,0,7,0,4,77.9,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,4.631124,1
-11,1,0,1,3,128618,0,10317.62,16.19849,1,12,1,87.21507,31.83845,13.9445,0,0,132.998,0,0,0,8,0,4,77.9,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,4.890334,1
-11,1,0,1,4,128618,0,10317.62,17.19849,1,12,1,26.61771,6.975677,0,0,0,33.59339,0,0,0,2,0,4,77.9,8.7,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,3.514329,1
-11,1,0,1,5,128618,0,10317.62,18.19849,1,12,1,20.19352,2.633572,22.22129,0,0,45.04838,0,0,0,2,0,4,77.9,8.7,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,75.1879,9.241705,1.386294,3.807737,1
-11,1,0,1,1,128619,0,10317.62,48.24641,0,18,1,33.3135,3.242118,46.00833,0,0,82.56395,0,0,0,2,0,4,89.5,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.31493,9.241705,1.386294,4.413573,1
-11,1,0,1,2,128619,0,10317.62,49.24641,0,18,1,0,2.776266,0,0,0,2.776266,0,0,0,0,0,4,89.5,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.31493,9.241705,1.386294,1.021107,1
-11,1,0,1,3,128619,0,10317.62,50.24641,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,89.5,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.31493,9.241705,1.386294,,0
-11,1,0,1,4,128619,0,10317.62,51.24641,0,18,1,11.01423,1.376778,0,0,0,12.39101,0,0,0,2,0,4,89.5,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.31493,9.241705,1.386294,2.516971,1
-11,1,0,1,5,128619,0,10317.62,52.24641,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,89.5,17.4,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.31493,9.241705,1.386294,,0
-1,1,0,0,1,128631,0,5385.856,60.2026,0,12,.8219178,211.6313,497.0259,50.57715,0,2080.018,2839.252,4,0,0,12,0,2,65.3,47.8,1,,0,0,0,0,.6931472,0,1,0,0,0,0,1,57.29132,8.591717,.6931472,7.951296,1
-1,1,0,0,1,128632,0,5385.856,57.78234,1,12,1,492.9329,464.0283,40.61837,0,0,997.5795,0,0,0,38,0,2,58.9,30.4,1,,0,0,0,0,.6931472,0,1,0,0,1,0,0,71.7804,8.591717,.6931472,6.905332,1
-1,1,0,0,2,128632,0,5385.856,58.78234,1,12,1,207.3585,312.6146,0,0,0,519.973,0,0,0,11,0,1,58.9,30.4,1,,0,0,0,0,0,0,1,0,0,1,0,0,71.7804,8.591717,0,6.253777,1
-1,1,0,0,3,128632,0,5385.856,59.78234,1,12,1,92.13759,361.5086,44.41769,0,0,498.0639,0,0,0,6,0,1,58.9,30.4,1,,0,0,0,0,0,0,1,0,0,1,0,0,71.7804,8.591717,0,6.210728,1
-1,1,0,0,4,128632,0,5385.856,60.78234,1,12,1,113.7192,259.6171,0,0,0,373.3364,0,0,0,9,7,1,58.9,30.4,1,,0,0,0,0,0,0,1,0,0,1,0,0,71.7804,8.591717,0,5.92248,1
-1,1,0,0,5,128632,0,5385.856,61.78234,1,12,1,73.05127,178.3243,0,0,0,251.3756,0,0,0,7,0,1,58.9,30.4,1,,0,0,0,0,0,0,1,0,0,1,0,0,71.7804,8.591717,0,5.526948,1
-8,1,50,0,1,128649,0,7208.437,58.62012,1,10,1,317.3706,70.70197,0,0,0,388.0726,0,0,0,27,0,2,72.5,13.73189,1,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,0,0,1,38.15974,8.883146,.6931472,5.961192,1
-8,1,50,0,2,128649,0,7208.437,59.62012,1,10,1,10.88732,0,22.86336,0,0,33.75068,0,0,0,0,1,2,72.5,13.73189,1,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,0,0,1,38.15974,8.883146,.6931472,3.519001,1
-8,1,50,0,3,128649,0,7208.437,60.62012,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,72.5,13.73189,1,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,0,0,1,38.15974,8.883146,.6931472,,0
-8,1,50,0,1,128650,0,7208.437,56.95825,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90,13.73189,0,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,1,0,0,67.03755,8.883146,.6931472,,0
-8,1,50,0,2,128650,0,7208.437,57.95825,0,12,1,59.88024,20.0871,30.83832,0,0,110.8057,0,0,0,9,1,2,90,13.73189,0,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,1,0,0,67.03755,8.883146,.6931472,4.707778,1
-8,1,50,0,3,128650,0,7208.437,58.95825,0,12,1,54.50941,19.57384,0,0,0,74.08325,0,0,0,11,0,2,90,13.73189,0,,607,607,0,0,.6931472,6.408529,0,3.931826,7.101676,1,0,0,67.03755,8.883146,.6931472,4.30519,1
-10,1,50,1,1,128652,0,10080.02,58.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.7,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,76.83472,9.21841,.6931472,,0
-10,1,50,1,2,128652,0,10080.02,59.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.7,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,76.83472,9.21841,.6931472,,0
-10,1,50,1,3,128652,0,10080.02,60.64476,0,12,1,8.424182,0,33.66204,0,0,42.08622,0,0,0,0,1,2,93.7,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,76.83472,9.21841,.6931472,3.73972,1
-10,1,50,1,4,128652,0,10080.02,61.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.7,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,76.83472,9.21841,.6931472,,0
-10,1,50,1,5,128652,0,10080.02,62.64476,0,12,1,7.57257,0,35.27556,0,0,42.84813,0,0,0,0,1,2,93.7,4.3,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,76.83472,9.21841,.6931472,3.757662,1
-10,1,50,1,1,128653,0,10080.02,56.42437,1,12,1,12.49256,0,44.13445,0,0,56.62701,0,0,0,2,0,2,86.3,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.46137,9.21841,.6931472,4.036486,1
-10,1,50,1,2,128653,0,10080.02,57.42437,1,12,1,17.41971,6.472509,0,0,0,23.89222,0,0,0,3,0,2,86.3,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.46137,9.21841,.6931472,3.173553,1
-10,1,50,1,3,128653,0,10080.02,58.42437,1,12,1,20.31715,4.68781,45.56491,0,0,70.56987,0,0,0,1,2,2,86.3,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.46137,9.21841,.6931472,4.256603,1
-10,1,50,1,4,128653,0,10080.02,59.42437,1,12,1,7.801744,4.520422,0,0,0,12.32217,0,0,0,1,0,2,86.3,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.46137,9.21841,.6931472,2.5114,1
-10,1,50,1,5,128653,0,10080.02,60.42437,1,12,1,63.10476,0,38.68742,0,0,101.7922,0,0,0,1,0,2,86.3,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,78.46137,9.21841,.6931472,4.622933,1
-10,1,50,1,1,128660,0,5170.596,57.07324,1,8,1,9.518144,15.52647,0,0,0,25.04462,0,0,0,2,0,1,81.1,17.4,0,,666,666,0,0,0,6.50129,0,3.931826,7.194437,1,0,0,69.13512,8.550937,0,3.220659,1
-10,1,50,1,2,128660,0,5170.596,58.07324,1,8,1,20.6859,28.64453,0,0,0,49.33043,0,0,0,3,0,1,81.1,17.4,0,,666,666,0,0,0,6.50129,0,3.931826,7.194437,1,0,0,69.13512,8.550937,0,3.898541,1
-10,1,50,1,3,128660,0,5170.596,59.07324,1,8,1,22.29931,21.556,0,0,0,43.8553,0,0,0,2,1,1,81.1,17.4,0,,666,666,0,0,0,6.50129,0,3.931826,7.194437,1,0,0,69.13512,8.550937,0,3.780896,1
-6,1,25,1,1,128665,0,7717.122,3.863107,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.57796,8.951326,1.386294,,0
-6,1,25,1,2,128665,0,7717.122,4.863108,0,16,1,10.40526,0,0,0,0,10.40526,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.57796,8.951326,1.386294,2.342311,1
-6,1,25,1,3,128665,0,7717.122,5.863108,0,16,1,11.47132,0,0,0,0,11.47132,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.57796,8.951326,1.386294,2.43985,1
-6,1,25,1,4,128665,0,7717.122,6.863108,0,16,1,5.532504,0,0,0,0,5.532504,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.57796,8.951326,1.386294,1.71064,1
-6,1,25,1,5,128665,0,7717.122,7.863108,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,76.57796,8.951326,1.386294,,0
-6,1,25,1,1,128666,0,7717.122,32.76112,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.46915,8.951326,1.386294,,0
-6,1,25,1,2,128666,0,7717.122,33.76112,0,18,1,36.4184,0,0,0,0,36.4184,0,0,0,1,0,4,84.2,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.46915,8.951326,1.386294,3.595074,1
-6,1,25,1,3,128666,0,7717.122,34.76112,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.46915,8.951326,1.386294,,0
-6,1,25,1,4,128666,0,7717.122,35.76112,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.46915,8.951326,1.386294,,0
-6,1,25,1,5,128666,0,7717.122,36.76112,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,72.46915,8.951326,1.386294,,0
-6,1,25,1,1,128667,0,7717.122,31.86311,1,16,1,5.995204,4.256595,0,0,0,10.2518,0,0,0,1,0,4,85.3,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.37328,8.951326,1.386294,2.327453,1
-6,1,25,1,2,128667,0,7717.122,32.86311,1,16,1,9.58379,0,0,0,0,9.58379,0,0,0,1,0,4,85.3,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.37328,8.951326,1.386294,2.260073,1
-6,1,25,1,3,128667,0,7717.122,33.86311,1,16,1,38.65337,0,0,0,0,38.65337,0,0,0,2,0,4,85.3,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.37328,8.951326,1.386294,3.654634,1
-6,1,25,1,4,128667,0,7717.122,34.86311,1,16,1,9.22084,0,0,0,0,9.22084,0,0,0,1,0,4,85.3,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.37328,8.951326,1.386294,2.221466,1
-6,1,25,1,5,128667,0,7717.122,35.86311,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85.3,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,73.37328,8.951326,1.386294,,0
-2,1,100,1,1,128670,0,14238.83,32.47091,0,17,1,11.3028,2.968471,21.13623,0,0,35.4075,0,0,0,1,1,2,83.2,8.7,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.08279,9.563799,.6931472,3.566924,1
-2,1,100,1,2,128670,0,14238.83,33.47091,0,17,1,0,5.225912,0,0,0,5.225912,0,0,0,0,0,2,83.2,8.7,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.08279,9.563799,.6931472,1.653629,1
-2,1,100,1,3,128670,0,14238.83,34.47091,0,17,1,0,0,0,0,0,0,0,0,0,0,0,2,83.2,8.7,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.08279,9.563799,.6931472,,0
-2,1,100,1,1,128671,0,14238.83,28.13963,1,12,1,105.8894,84.21178,0,0,0,190.1011,0,0,0,13,0,2,80,30.4,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.55543,9.563799,.6931472,5.247556,1
-2,1,100,1,2,128671,0,14238.83,29.13963,1,12,1,144.2569,68.38868,27.3816,0,0,240.0272,0,0,0,8,0,2,80,30.4,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.55543,9.563799,.6931472,5.480752,1
-2,1,100,1,3,128671,0,14238.83,30.13963,1,12,1,129.9554,83.04757,9.737364,0,0,222.7403,0,0,0,11,0,2,80,30.4,0,,949,949,0,0,.6931472,6.855409,1,0,0,0,0,0,76.55543,9.563799,.6931472,5.406007,1
-3,1,100,1,1,128686,0,16350.5,53.42094,0,12,1,14.8721,4.312909,0,0,0,19.18501,0,0,0,1,0,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,64.33474,9.702075,.6931472,2.954129,1
-3,1,100,1,2,128686,0,16350.5,54.42094,0,12,1,61.78552,6.303756,0,0,0,68.08928,0,0,0,4,0,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,64.33474,9.702075,.6931472,4.22082,1
-3,1,100,1,3,128686,0,16350.5,55.42094,0,12,1,4.459861,0,0,0,0,4.459861,0,0,0,1,0,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,64.33474,9.702075,.6931472,1.495118,1
-3,1,100,1,4,128686,0,16350.5,56.42094,0,12,1,69.29784,13.24461,0,0,0,82.54245,0,0,0,2,0,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,64.33474,9.702075,.6931472,4.413313,1
-3,1,100,1,5,128686,0,16350.5,57.42094,0,12,1,31.13168,4.106016,0,0,0,35.23769,0,0,0,3,1,2,64.2,21.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,64.33474,9.702075,.6931472,3.562116,1
-3,1,100,1,1,128687,0,16350.5,51.39767,1,13,1,73.17073,95.03271,0,0,0,168.2034,0,0,0,5,0,2,51.6,30.4,1,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,1,0,55.8782,9.702075,.6931472,5.125174,1
-3,1,100,1,2,128687,0,16350.5,52.39767,1,13,1,20.6859,57.24551,31.30103,0,0,109.2324,0,0,0,2,0,2,51.6,30.4,1,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,1,0,55.8782,9.702075,.6931472,4.693478,1
-3,1,100,1,3,128687,0,16350.5,53.39767,1,13,1,36.17443,35.51041,0,0,0,71.68484,0,0,0,3,0,2,51.6,30.4,1,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,1,0,55.8782,9.702075,.6931472,4.272279,1
-3,1,100,1,4,128687,0,16350.5,54.39767,1,13,1,109.9862,111.8862,0,0,3041.831,3263.704,1,0,0,13,1,2,51.6,30.4,1,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,1,0,55.8782,9.702075,.6931472,8.090618,1
-3,1,100,1,5,128687,0,16350.5,55.39767,1,13,1,201.9352,116.3147,0,86.66386,5679.966,5998.216,3,0,5,6,0,2,51.6,30.4,1,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,1,0,55.8782,9.702075,.6931472,8.699218,1
-8,1,50,0,1,128705,0,11037.84,11.20055,0,12,1,5.94884,0,0,0,0,5.94884,0,0,0,1,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,1.783196,1
-8,1,50,0,2,128705,0,11037.84,12.20055,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,,0
-8,1,50,0,3,128705,0,11037.84,13.20055,0,12,1,5.946482,2.948464,0,0,0,8.894945,0,0,0,1,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,2.185483,1
-8,1,50,0,1,128706,0,11037.84,13.28679,0,12,1,20.22606,3.271862,27.97739,0,0,51.47531,0,0,0,2,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,3.941102,1
-8,1,50,0,2,128706,0,11037.84,14.28679,0,12,1,10.88732,2.504083,0,0,0,13.3914,0,0,0,2,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,2.594613,1
-8,1,50,0,3,128706,0,11037.84,15.28679,0,12,1,26.75917,1.783944,22.29931,0,0,50.84242,0,0,0,3,0,4,74.36826,13.73189,0,,690,690,1,0,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.56511,9.309175,1.386294,3.928731,1
-8,1,50,0,1,128708,0,11037.84,36.48186,1,12,1,125.5205,122.9209,0,0,0,248.4414,0,0,0,9,0,4,57.5,13.73189,1,,690,690,0,0,1.386294,6.536692,0,3.931826,7.229839,1,0,0,69.93219,9.309175,1.386294,5.515207,1
-8,1,50,0,2,128708,0,11037.84,37.48186,1,12,1,75.12248,135.89,0,0,0,211.0125,0,0,0,7,0,4,57.5,13.73189,1,,690,690,0,0,1.386294,6.536692,0,3.931826,7.229839,1,0,0,69.93219,9.309175,1.386294,5.351917,1
-8,1,50,0,3,128708,0,11037.84,38.48186,1,12,1,74.33102,123.2656,0,0,0,197.5966,0,0,0,5,0,4,57.5,13.73189,1,,690,690,0,0,1.386294,6.536692,0,3.931826,7.229839,1,0,0,69.93219,9.309175,1.386294,5.286228,1
-8,1,50,0,1,128709,0,11037.84,12.20534,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,690,690,1,1,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.05113,9.309175,1.386294,,0
-8,1,50,0,2,128709,0,11037.84,13.20534,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,690,690,1,1,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.05113,9.309175,1.386294,,0
-8,1,50,0,3,128709,0,11037.84,14.20534,1,12,1,3.468781,2.452924,0,0,0,5.921705,0,0,0,1,0,4,74.36826,13.73189,0,,690,690,1,1,1.386294,6.536692,0,3.931826,7.229839,0,0,0,86.05113,9.309175,1.386294,1.778624,1
-10,1,50,0,1,128723,0,7967.122,37.25667,1,12,1,63.95003,4.134444,0,0,0,68.08447,0,0,0,2,0,5,81.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,71.8062,8.983204,1.609438,4.220749,1
-10,1,50,0,2,128723,0,7967.122,38.25667,1,12,1,12.52041,0,0,0,0,12.52041,0,0,0,1,0,5,81.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,71.8062,8.983204,1.609438,2.52736,1
-10,1,50,0,3,128723,0,7967.122,39.25667,1,12,1,48.56293,0,27.25471,0,0,75.81764,0,0,0,4,0,5,81.3,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,71.8062,8.983204,1.609438,4.328331,1
-10,1,50,0,1,128724,0,7967.122,41.35524,0,18,1,62.46282,6.216538,30.93397,0,0,99.61333,0,0,0,3,0,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,72.91832,8.983204,1.609438,4.601296,1
-10,1,50,0,2,128724,0,7967.122,42.35524,0,18,1,88.73163,5.715841,29.94012,0,0,124.3876,0,0,0,2,10,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,72.91832,8.983204,1.609438,4.823402,1
-10,1,50,0,3,128724,0,7967.122,43.35524,0,18,1,274.777,2.973241,38.65213,0,0,316.4024,0,0,0,6,14,5,77.5,13.73189,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,72.91832,8.983204,1.609438,5.757015,1
-10,1,50,0,1,128725,0,7967.122,9.141684,1,12,1,72.57585,.892326,0,0,0,73.46817,0,0,0,2,1,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,82.71185,8.983204,1.609438,4.296852,1
-10,1,50,0,2,128725,0,7967.122,10.14168,1,12,1,1.633097,0,0,0,0,1.633097,0,0,0,1,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,82.71185,8.983204,1.609438,.4904785,1
-10,1,50,0,3,128725,0,7967.122,11.14168,1,12,1,20.81269,4.905848,0,0,0,25.71853,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,82.71185,8.983204,1.609438,3.247212,1
-10,1,50,0,1,128726,0,7967.122,11.54552,0,12,1,34.50327,9.351577,0,0,0,43.85485,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,78.24947,8.983204,1.609438,3.780885,1
-10,1,50,0,2,128726,0,7967.122,12.54552,0,12,1,23.40773,0,0,0,0,23.40773,0,0,0,2,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,78.24947,8.983204,1.609438,3.153066,1
-10,1,50,0,3,128726,0,7967.122,13.54552,0,12,1,62.68583,1.73439,29.23687,0,0,93.65709,0,0,0,3,1,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,78.24947,8.983204,1.609438,4.53964,1
-10,1,50,0,1,128727,0,7967.122,6.004107,0,12,1,42.23676,10.79714,24.24747,0,0,77.28138,0,0,0,5,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,76.31956,8.983204,1.609438,4.347453,1
-10,1,50,0,2,128727,0,7967.122,7.004107,0,12,1,81.65487,2.150245,22.59118,0,350.92,457.3163,1,0,0,8,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,76.31956,8.983204,1.609438,6.125375,1
-10,1,50,0,3,128727,0,7967.122,8.004107,0,12,1,24.77701,6.119921,7.680872,0,0,38.5778,0,0,0,3,0,5,74.36826,13.73189,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,76.31956,8.983204,1.609438,3.652677,1
-9,1,50,1,1,128757,0,11526.05,15.73443,0,12,1,23.53118,0,31.95444,0,0,55.48561,0,0,0,2,0,5,94.4,0,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.609438,4.016124,1
-9,1,50,1,2,128757,0,11526.05,16.73443,0,12,1,20.81051,12.51369,0,0,0,33.32421,0,0,0,3,0,6,94.4,0,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,3.506284,1
-9,1,50,1,3,128757,0,11526.05,17.73443,0,12,1,205.8105,2.917706,27.62593,0,0,236.3541,0,0,0,4,0,6,94.4,0,0,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,5.465331,1
-9,1,50,1,4,128757,0,11526.05,18.73443,0,12,1,11.52605,0,12.44813,0,0,23.97418,0,0,0,0,1,6,94.4,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,3.176977,1
-9,1,50,1,5,128757,0,11526.05,19.73443,0,12,1,7.617435,2.877698,0,0,0,10.49513,0,0,0,1,0,6,94.4,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,2.350912,1
-9,1,50,1,1,128758,0,11526.05,17.26763,0,12,1,25.77938,0,31.95444,0,0,57.73381,0,0,0,2,0,5,66.3,8.7,0,,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.609438,4.055843,1
-9,1,50,1,2,128758,0,11526.05,18.26763,0,12,1,6.845564,0,0,0,0,6.845564,0,0,0,1,0,6,66.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,1.923601,1
-9,1,50,1,3,128758,0,11526.05,19.26763,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,66.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,,0
-9,1,50,1,4,128758,0,11526.05,20.26763,0,12,1,24.89627,.9220839,0,0,0,25.81835,0,0,0,1,0,6,66.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,3.251086,1
-9,1,50,1,5,128758,0,11526.05,21.26763,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,66.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,80.43655,9.352452,1.791759,,0
-9,1,50,1,1,128759,0,11526.05,37.77139,1,12,1,11.99041,4.376499,27.56595,0,961.0971,1005.03,1,0,0,1,0,5,80,8.7,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,78.54103,9.352452,1.609438,6.912773,1
-9,1,50,1,2,128759,0,11526.05,38.77139,1,12,1,10.9529,0,0,0,0,10.9529,0,0,0,1,0,6,80,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.54103,9.352452,1.791759,2.393605,1
-9,1,50,1,3,128759,0,11526.05,39.77139,1,12,1,18.70324,0,0,0,0,18.70324,0,0,0,2,0,6,80,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.54103,9.352452,1.791759,2.928697,1
-9,1,50,1,4,128759,0,11526.05,40.77139,1,12,1,7.837713,0,0,0,0,7.837713,0,0,0,0,0,6,80,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.54103,9.352452,1.791759,2.058947,1
-9,1,50,1,5,128759,0,11526.05,41.77139,1,12,1,194.2023,11.91282,35.01904,0,0,241.1342,0,0,0,4,9,6,80,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.54103,9.352452,1.791759,5.485353,1
-9,1,50,1,1,128760,0,11526.05,14.78713,1,12,1,35.3717,7.284173,0,0,0,42.65588,0,0,0,1,0,5,73.3,8.7,0,,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,75.09985,9.352452,1.609438,3.753165,1
-9,1,50,1,2,128760,0,11526.05,15.78713,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.3,8.7,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.09985,9.352452,1.791759,,0
-9,1,50,1,3,128760,0,11526.05,16.78713,1,12,1,38.52868,1.745636,0,0,0,40.27431,0,0,0,2,0,6,73.3,8.7,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.09985,9.352452,1.791759,3.695714,1
-9,1,50,1,4,128760,0,11526.05,17.78713,1,12,1,42.41586,33.3656,.9220839,0,431.3278,508.0313,1,0,0,4,0,6,73.3,8.7,0,,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.09985,9.352452,1.791759,6.230543,1
-9,1,50,1,5,128760,0,11526.05,18.78713,1,12,1,0,1.967837,0,0,0,1.967837,0,0,0,0,0,6,73.3,8.7,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,75.09985,9.352452,1.791759,.6769352,1
-9,1,50,1,1,128761,0,11526.05,36.88706,0,18,1,57.85372,8.033573,38.21943,0,0,104.1067,0,0,0,3,0,5,71.6,0,0,,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,79.00905,9.352452,1.609438,4.645416,1
-9,1,50,1,2,128761,0,11526.05,37.88706,0,18,1,41.07338,7.420591,0,0,0,48.49398,0,0,0,0,3,6,71.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,79.00905,9.352452,1.791759,3.88144,1
-9,1,50,1,3,128761,0,11526.05,38.88706,0,18,1,47.38155,0,0,0,257.6559,305.0374,1,0,0,2,0,6,71.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,79.00905,9.352452,1.791759,5.720435,1
-9,1,50,1,4,128761,0,11526.05,39.88706,0,18,1,0,0,0,0,0,0,0,0,0,0,0,6,71.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,79.00905,9.352452,1.791759,,0
-9,1,50,1,5,128761,0,11526.05,40.88706,0,18,1,13.11892,0,27.74016,0,0,40.85908,0,0,0,1,0,6,71.6,0,0,,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,79.00905,9.352452,1.791759,3.710129,1
-2,1,100,1,1,128767,0,9549.008,32.92539,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,77.67306,9.164297,1.386294,,0
-2,1,100,1,2,128767,0,9549.008,33.92539,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,77.67306,9.164297,1.386294,,0
-2,1,100,1,3,128767,0,9549.008,34.92539,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,77.67306,9.164297,1.386294,,0
-2,1,100,1,1,128768,0,9549.008,29.96852,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,79.50489,9.164297,1.386294,,0
-2,1,100,1,2,128768,0,9549.008,30.96852,1,12,1,24.49646,0,0,0,0,24.49646,0,0,0,1,0,4,84.2,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,79.50489,9.164297,1.386294,3.198529,1
-2,1,100,1,3,128768,0,9549.008,31.96852,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.2,13,0,,900,900,0,0,1.386294,6.802395,1,0,0,0,0,0,79.50489,9.164297,1.386294,,0
-2,1,100,1,1,128769,0,9549.008,9.245722,0,12,1,35.69304,6.71624,0,0,0,42.40928,0,0,0,3,0,4,74.36826,13.73189,0,,900,900,1,0,1.386294,6.802395,1,0,0,0,0,0,85.34759,9.164297,1.386294,3.747367,1
-2,1,100,1,2,128769,0,9549.008,10.24572,0,12,1,4.899292,1.061513,0,0,0,5.960806,0,0,0,1,0,4,74.36826,13.73189,0,,900,900,1,0,1.386294,6.802395,1,0,0,0,0,0,85.34759,9.164297,1.386294,1.785206,1
-2,1,100,1,3,128769,0,9549.008,11.24572,0,12,1,7.433102,4.658077,0,0,0,12.09118,0,0,0,1,0,4,74.36826,13.73189,0,,900,900,1,0,1.386294,6.802395,1,0,0,0,0,0,85.34759,9.164297,1.386294,2.492476,1
-2,1,100,1,1,128770,0,9549.008,12.4052,1,12,1,16.65675,.9518144,0,0,0,17.60857,0,0,0,1,0,4,74.36826,13.73189,0,,900,900,1,1,1.386294,6.802395,1,0,0,0,0,0,84.83361,9.164297,1.386294,2.868386,1
-2,1,100,1,2,128770,0,9549.008,13.4052,1,12,1,6.53239,0,0,0,0,6.53239,0,0,0,1,0,4,74.36826,13.73189,0,,900,900,1,1,1.386294,6.802395,1,0,0,0,0,0,84.83361,9.164297,1.386294,1.876773,1
-2,1,100,1,3,128770,0,9549.008,14.4052,1,12,1,22.29931,0,0,0,0,22.29931,0,0,0,1,0,4,74.36826,13.73189,0,,900,900,1,1,1.386294,6.802395,1,0,0,0,0,0,84.83361,9.164297,1.386294,3.104556,1
-6,1,25,1,1,128771,0,17027.92,30.54346,0,17,1,35.09816,0,34.19393,0,0,69.29209,0,0,0,2,0,3,90.5,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.23241,9.742668,1.098612,4.238331,1
-6,1,25,1,2,128771,0,17027.92,31.54346,0,17,1,6.53239,4.654328,0,0,0,11.18672,0,0,0,1,0,4,90.5,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.23241,9.742668,1.386294,2.414727,1
-6,1,25,1,3,128771,0,17027.92,32.54346,0,17,1,19.32607,8.414271,28.99901,0,0,56.73935,0,0,0,2,0,4,90.5,8.7,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.23241,9.742668,1.386294,4.038468,1
-6,1,25,1,1,128772,0,17027.92,3.126626,1,15,1,42.23676,34.17609,0,0,0,76.41285,0,0,0,5,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.77524,9.742668,1.098612,4.336151,1
-6,1,25,1,2,128772,0,17027.92,4.126626,1,15,1,268.6445,10.96897,0,0,0,279.6135,0,0,0,22,41,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77524,9.742668,1.386294,5.633408,1
-6,1,25,1,3,128772,0,17027.92,5.126626,1,15,1,280.9713,40.88206,0,0,0,321.8533,0,0,0,41,32,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.77524,9.742668,1.386294,5.774096,1
-6,1,25,1,1,128773,0,17027.92,28.36413,1,15,1,48.1856,19.36347,0,0,731.7133,799.2623,1,0,0,2,0,3,96.8,4.3,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.96555,9.742668,1.098612,6.683689,1
-6,1,25,1,2,128773,0,17027.92,29.36413,1,15,1,263.2009,17.17474,0,0,2118.759,2399.135,1,0,0,22,0,4,96.8,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.96555,9.742668,1.386294,7.782863,1
-6,1,25,1,3,128773,0,17027.92,30.36413,1,15,1,622.3984,220.7978,0,0,0,843.1962,0,0,0,65,0,4,96.8,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.96555,9.742668,1.386294,6.7372,1
-11,1,0,1,1,128808,0,9253.722,31.62218,0,17,1,0,29.71823,0,0,0,29.71823,0,0,0,0,0,3,55.8,8.7,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,65.66811,9.132889,1.098612,3.391761,1
-11,1,0,1,2,128808,0,9253.722,32.62218,0,17,1,113.6364,6.544359,0,21.90581,1063.527,1183.708,1,0,1,2,0,3,55.8,8.7,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,65.66811,9.132889,1.098612,7.076407,1
-11,1,0,1,3,128808,0,9253.722,33.62218,0,17,1,0,0,0,0,0,0,0,0,0,0,0,3,55.8,8.7,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,65.66811,9.132889,1.098612,,0
-11,1,0,1,1,128809,0,9253.722,28.39425,1,12,1,40.76739,3.657074,0,0,0,44.42446,0,0,0,2,1,3,71.6,17.4,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,71.41678,9.132889,1.098612,3.79379,1
-11,1,0,1,2,128809,0,9253.722,29.39425,1,12,1,127.5192,2.135816,0,0,950.0547,1079.71,1,0,0,3,1,3,71.6,17.4,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,71.41678,9.132889,1.098612,6.984447,1
-11,1,0,1,3,128809,0,9253.722,30.39425,1,12,1,29.92519,0,0,0,0,29.92519,0,0,0,1,0,3,71.6,17.4,0,,0,192,0,0,1.098612,5.257495,0,0,0,1,0,0,71.41678,9.132889,1.098612,3.3987,1
-11,1,0,1,1,128810,0,9253.722,4.202601,1,12,1,44.96403,3.597122,0,0,0,48.56115,0,0,0,4,0,3,74.36826,13.73189,0,,0,192,1,1,1.098612,5.257495,0,0,0,0,0,0,79.40221,9.132889,1.098612,3.882824,1
-11,1,0,1,2,128810,0,9253.722,5.202601,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,0,192,1,1,1.098612,5.257495,0,0,0,0,0,0,79.40221,9.132889,1.098612,,0
-11,1,0,1,3,128810,0,9253.722,6.202601,1,12,1,18.95262,3.990025,0,0,0,22.94264,0,0,0,3,0,3,74.36826,13.73189,0,,0,192,1,1,1.098612,5.257495,0,0,0,0,0,0,79.40221,9.132889,1.098612,3.132997,1
-11,1,0,1,1,128812,0,13159.43,13.07598,1,12,1,20.98321,3.357314,24.43645,0,0,48.77698,0,0,0,1,1,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,83.29486,9.48497,1.386294,3.887259,1
-11,1,0,1,2,128812,0,13159.43,14.07598,1,12,1,33.40635,8.871851,0,0,0,42.2782,0,0,0,2,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,83.29486,9.48497,1.386294,3.744272,1
-11,1,0,1,3,128812,0,13159.43,15.07598,1,12,1,12.46883,12.06983,23.69077,0,0,48.22943,0,0,0,1,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,83.29486,9.48497,1.386294,3.875969,1
-11,1,0,1,4,128812,0,13159.43,16.07598,1,12,1,46.10419,7.100046,0,0,0,53.20424,0,0,0,4,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,83.29486,9.48497,1.386294,3.974138,1
-11,1,0,1,5,128812,0,13159.43,17.07598,1,12,1,21.37114,6.157427,26.23783,0,0,53.7664,0,0,0,2,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,83.29486,9.48497,1.386294,3.984649,1
-11,1,0,1,1,128813,0,13159.43,9.453798,0,12,1,178.0576,62.73981,23.4952,0,534.982,799.2746,1,0,0,34,0,4,74.36826,13.73189,0,,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,74.60253,9.48497,1.386294,6.683704,1
-11,1,0,1,2,128813,0,13159.43,10.4538,0,12,1,94.74261,19.27711,14.23877,0,0,128.2585,0,0,0,22,0,4,74.36826,13.73189,0,,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,74.60253,9.48497,1.386294,4.854048,1
-11,1,0,1,3,128813,0,13159.43,11.4538,0,12,1,157.8554,16.68329,14.46384,0,0,189.0025,0,0,0,31,0,4,74.36826,13.73189,0,,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,74.60253,9.48497,1.386294,5.24176,1
-11,1,0,1,4,128813,0,13159.43,12.4538,0,12,1,59.47441,5.532504,32.9645,0,0,97.97141,0,0,0,4,0,4,74.36826,13.73189,0,,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,74.60253,9.48497,1.386294,4.584676,1
-11,1,0,1,5,128813,0,13159.43,13.4538,0,12,1,116.1659,9.331359,24.65087,0,0,150.1481,0,0,0,7,0,4,74.36826,13.73189,0,,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,74.60253,9.48497,1.386294,5.011622,1
-11,1,0,1,1,128814,0,13159.43,37.65366,1,12,1,32.67386,216.0791,0,119.9041,0,248.753,0,0,5,2,0,4,36.8,17.4,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39919,9.48497,1.386294,5.51646,1
-11,1,0,1,2,128814,0,13159.43,38.65366,1,12,1,48.19277,181.4841,30.66813,150.6024,0,260.345,0,0,6,4,0,4,36.8,17.4,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39919,9.48497,1.386294,5.562008,1
-11,1,0,1,3,128814,0,13159.43,39.65366,1,12,1,48.37905,227.1571,38.65337,256.8578,0,314.1895,0,0,12,2,0,4,36.8,17.4,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39919,9.48497,1.386294,5.749996,1
-11,1,0,1,4,128814,0,13159.43,40.65366,1,12,1,107.8838,207.2845,0,228.2158,2219.751,2534.919,1,0,10,10,0,4,36.8,17.4,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39919,9.48497,1.386294,7.837917,1
-11,1,0,1,5,128814,0,13159.43,41.65366,1,12,1,178.375,130.1523,29.83496,152.3487,0,338.3622,0,0,6,12,0,4,36.8,17.4,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.39919,9.48497,1.386294,5.824117,1
-11,1,0,1,1,128815,0,13159.43,40.26831,0,16,1,189.7482,37.33213,31.17506,0,0,258.2554,0,0,0,28,0,4,66.3,13,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.36005,9.48497,1.386294,5.553949,1
-11,1,0,1,2,128815,0,13159.43,41.26831,0,16,1,47.64513,26.58817,18.07229,54.76451,0,92.30559,0,0,2,9,0,4,66.3,13,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.36005,9.48497,1.386294,4.525105,1
-11,1,0,1,3,128815,0,13159.43,42.26831,0,16,1,14.96259,7.306733,34.16459,296.7581,0,56.43391,0,0,13,1,0,4,66.3,13,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.36005,9.48497,1.386294,4.03307,1
-11,1,0,1,4,128815,0,13159.43,43.26831,0,16,1,65.00691,16.41309,23.0521,0,0,104.4721,0,0,0,9,0,4,66.3,13,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.36005,9.48497,1.386294,4.64892,1
-11,1,0,1,5,128815,0,13159.43,44.26831,0,16,1,139.5472,27.06306,45.28142,0,0,211.8917,0,0,0,24,0,4,66.3,13,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,73.36005,9.48497,1.386294,5.356075,1
-11,1,0,1,1,128840,0,4372.829,58.75154,1,16,1,46.76259,107.7998,0,0,0,154.5623,0,0,0,6,0,1,68.4,17.4,0,,0,258,0,0,0,5.552959,0,0,0,1,0,0,66.1049,8.383394,0,5.040597,1
-11,1,0,1,2,128840,0,4372.829,59.75154,1,16,1,36.14458,49.2333,52.65608,0,0,138.034,0,0,0,5,0,1,68.4,17.4,0,,0,258,0,0,0,5.552959,0,0,0,1,0,0,66.1049,8.383394,0,4.9275,1
-11,1,0,1,3,128840,0,4372.829,60.75154,1,16,1,68.82793,63.85536,0,0,0,132.6833,0,0,0,6,0,1,68.4,17.4,0,,0,258,0,0,0,5.552959,0,0,0,1,0,0,66.1049,8.383394,0,4.887965,1
-11,1,0,1,4,128840,0,4372.829,61.75154,1,16,1,95.43568,64.47672,0,0,0,159.9124,0,0,0,11,0,1,68.4,17.4,0,,0,258,0,0,0,5.552959,0,0,0,1,0,0,66.1049,8.383394,0,5.074626,1
-11,1,0,1,5,128840,0,4372.829,62.75154,1,16,1,477.8671,66.08125,4.159966,0,0,548.1083,0,0,0,10,0,1,68.4,17.4,0,,0,258,0,0,0,5.552959,0,0,0,1,0,0,66.1049,8.383394,0,6.306473,1
-11,1,0,0,1,128865,0,15260.55,36.5421,1,17,1,38.57479,40.97173,0,0,0,79.54652,0,0,0,4,0,4,57.9,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,79.29243,9.633092,1.386294,4.376342,1
-11,1,0,0,2,128865,0,15260.55,37.5421,1,17,1,63.34232,40.48518,26.95418,0,0,130.7817,0,0,0,4,0,4,57.9,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,79.29243,9.633092,1.386294,4.873529,1
-11,1,0,0,3,128865,0,15260.55,38.5421,1,17,1,244.5946,27.64128,12.77641,0,0,285.0123,0,0,0,5,0,4,57.9,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,79.29243,9.633092,1.386294,5.652532,1
-11,1,0,0,4,128865,0,15260.55,39.5421,1,17,1,34.41203,18.79216,26.89152,0,0,80.09572,0,0,0,4,0,4,57.9,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,79.29243,9.633092,1.386294,4.383223,1
-11,1,0,0,5,128865,0,15260.55,40.5421,1,17,1,142.9762,77.84493,0,0,0,220.8212,0,0,0,10,0,4,57.9,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,79.29243,9.633092,1.386294,5.397353,1
-11,1,0,0,1,128866,0,15260.55,14.86379,0,17,1,135.8952,65.41814,30.62426,0,0,231.9376,0,0,0,16,0,4,49.5,13,0,,0,84,1,0,1.386294,4.430817,0,0,0,0,0,0,72.45129,9.633092,1.386294,5.446468,1
-11,1,0,0,2,128866,0,15260.55,15.86379,0,17,1,38.81401,54.28571,0,0,0,93.09973,0,0,0,8,0,4,49.5,13,0,,0,84,1,0,1.386294,4.430817,0,0,0,0,0,0,72.45129,9.633092,1.386294,4.533671,1
-11,1,0,0,3,128866,0,15260.55,16.86379,0,17,1,30.95823,73.34152,0,0,0,104.2998,0,0,0,7,0,4,49.5,13,0,,0,84,1,0,1.386294,4.430817,0,0,0,0,0,0,72.45129,9.633092,1.386294,4.647269,1
-11,1,0,0,4,128866,0,15260.55,17.86379,0,17,1,26.89152,36.98724,0,0,0,63.87876,0,0,0,5,0,4,49.5,13,0,,0,84,1,0,1.386294,4.430817,0,0,0,0,0,0,72.45129,9.633092,1.386294,4.156987,1
-11,1,0,0,5,128866,0,15260.55,18.86379,0,17,1,81.86327,33.38891,12.50521,0,0,127.7574,0,0,0,7,1,4,49.5,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,72.45129,9.633092,1.386294,4.850133,1
-11,1,0,0,1,128867,0,15260.55,42.35455,0,17,1,35.48292,13.82803,0,0,0,49.31096,0,0,0,4,0,4,71.6,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,76.61908,9.633092,1.386294,3.898146,1
-11,1,0,0,2,128867,0,15260.55,43.35455,0,17,1,13.47709,0,29.11051,0,0,42.5876,0,0,0,1,0,4,71.6,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,76.61908,9.633092,1.386294,3.751563,1
-11,1,0,0,3,128867,0,15260.55,44.35455,0,17,1,30.58968,24.00491,0,0,0,54.59459,0,0,0,4,0,4,71.6,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,76.61908,9.633092,1.386294,3.999935,1
-11,1,0,0,4,128867,0,15260.55,45.35455,0,17,1,55.6062,31.95078,36.00729,0,0,123.5643,0,0,0,4,0,4,71.6,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,76.61908,9.633092,1.386294,4.816761,1
-11,1,0,0,5,128867,0,15260.55,46.35455,0,17,1,87.11964,7.23218,0,0,0,94.35181,0,0,0,2,0,4,71.6,13,0,,0,84,0,0,1.386294,4.430817,0,0,0,0,0,0,76.61908,9.633092,1.386294,4.54703,1
-11,1,0,0,1,128868,0,15260.55,11.75633,1,17,1,50.05889,5.65371,31.38987,0,0,87.10247,0,0,0,4,0,4,74.36826,13.73189,0,,0,84,1,1,1.386294,4.430817,0,0,0,1,0,0,80.09667,9.633092,1.386294,4.467085,1
-11,1,0,0,2,128868,0,15260.55,12.75633,1,17,1,71.15903,83.95148,12.93801,0,0,168.0485,0,0,0,11,0,4,74.36826,13.73189,0,,0,84,1,1,1.386294,4.430817,0,0,0,1,0,0,80.09667,9.633092,1.386294,5.124253,1
-11,1,0,0,3,128868,0,15260.55,13.75633,1,17,1,88.57494,168.7568,12.77641,0,0,270.1081,0,0,0,13,0,4,74.36826,13.73189,0,,0,84,1,1,1.386294,4.430817,0,0,0,1,0,0,80.09667,9.633092,1.386294,5.598822,1
-11,1,0,0,4,128868,0,15260.55,14.75633,1,17,1,34.82224,135.8022,0,0,0,170.6244,0,0,0,6,0,4,74.36826,13.73189,0,,0,84,1,1,1.386294,4.430817,0,0,0,1,0,0,80.09667,9.633092,1.386294,5.139465,1
-11,1,0,0,5,128868,0,15260.55,15.75633,1,17,1,57.31555,188.1617,23.34306,0,0,268.8203,0,0,0,9,0,4,74.36826,13.73189,0,,0,84,1,1,1.386294,4.430817,0,0,0,1,0,0,80.09667,9.633092,1.386294,5.594043,1
-11,1,0,0,1,128869,0,18811.16,11.55647,0,12,1,57.71496,2.944641,0,0,0,60.6596,0,0,0,5,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.46126,9.842258,1.609438,4.105278,1
-11,1,0,0,2,128869,0,18811.16,12.55647,0,12,1,37.19677,2.156334,0,0,0,39.3531,0,0,0,2,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.46126,9.842258,1.609438,3.672575,1
-11,1,0,0,3,128869,0,18811.16,13.55647,0,12,1,95.15971,15.70025,0,0,0,110.8599,0,0,0,9,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.46126,9.842258,1.609438,4.708268,1
-11,1,0,0,1,128870,0,18811.16,50.33812,1,12,1,247.3498,30.50648,0,0,0,277.8563,0,0,0,5,1,5,61.3,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.26979,9.842258,1.609438,5.627104,1
-11,1,0,0,2,128870,0,18811.16,51.33812,1,12,1,28.57143,28.32884,52.39353,0,0,109.2938,0,0,0,2,0,5,61.3,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.26979,9.842258,1.609438,4.69404,1
-11,1,0,0,3,128870,0,18811.16,52.33812,1,12,1,420.4423,83.63636,28.97789,0,0,533.0565,0,0,0,12,0,5,61.3,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.26979,9.842258,1.609438,6.278627,1
-11,1,0,0,1,128872,0,18811.16,16.14511,0,12,1,50.64782,14.28151,0,0,0,64.92933,0,0,0,3,0,5,66.3,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.76973,9.842258,1.609438,4.173299,1
-11,1,0,0,2,128872,0,18811.16,17.14511,0,12,1,53.63881,8.247978,30.42048,0,0,92.30727,0,0,0,8,0,5,66.3,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.76973,9.842258,1.609438,4.525123,1
-11,1,0,0,3,128872,0,18811.16,18.14511,0,12,1,66.09337,38.13268,12.32432,0,0,116.5504,0,0,0,18,0,5,66.3,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,79.76973,9.842258,1.609438,4.758324,1
-11,1,0,0,1,128873,0,18811.16,50.37098,0,16,1,14.7232,0,22.15548,0,0,36.87868,0,0,0,1,0,5,83.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.56006,9.842258,1.609438,3.607634,1
-11,1,0,0,2,128873,0,18811.16,51.37098,0,16,1,18.86792,2.803235,0,0,0,21.67116,0,0,0,1,0,5,83.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.56006,9.842258,1.609438,3.075982,1
-11,1,0,0,3,128873,0,18811.16,52.37098,0,16,1,228.5012,4.692875,37.32678,0,0,270.5209,0,0,0,4,0,5,83.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.56006,9.842258,1.609438,5.600349,1
-11,1,0,0,1,128874,0,18811.16,22.14647,0,13,1,117.7856,40.10601,38.15665,0,0,196.0483,0,0,0,6,0,5,78.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.67287,9.842258,1.609438,5.278361,1
-11,1,0,0,2,128874,0,18811.16,23.14647,0,13,1,94.87871,22.37736,0,0,0,117.2561,0,0,0,5,2,5,78.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.67287,9.842258,1.609438,4.76436,1
-11,1,0,0,3,128874,0,18811.16,24.14647,0,13,1,46.68305,45.38084,30.29976,0,0,122.3636,0,0,0,6,0,5,78.8,13.73189,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,71.67287,9.842258,1.609438,4.806997,1
-9,1,50,1,1,128875,0,12632.75,18.35729,1,11,1,40.15467,1.784652,0,0,0,41.93932,0,0,0,2,0,2,76.8,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.05626,9.444127,.6931472,3.736224,1
-9,1,50,1,2,128875,0,12632.75,19.35729,1,11,1,13.60915,0,27.76266,0,0,41.3718,0,0,0,0,1,2,76.8,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.05626,9.444127,.6931472,3.7226,1
-9,1,50,1,3,128875,0,12632.75,20.35729,1,11,1,30.72349,14.81665,3.349851,0,0,48.88999,0,0,0,4,0,2,76.8,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.05626,9.444127,.6931472,3.889573,1
-9,1,50,1,4,128875,0,12632.75,21.35729,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,76.8,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.05626,9.444127,.6931472,,0
-9,1,50,1,5,128875,0,12632.75,22.35729,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,76.8,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.05626,9.444127,.6931472,,0
-9,1,50,1,1,128876,0,12632.75,53.1499,1,15,1,0,0,0,0,0,0,0,0,0,0,0,2,71.6,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.41956,9.444127,.6931472,,0
-9,1,50,1,2,128876,0,12632.75,54.1499,1,15,1,8.165487,0,20.47904,0,0,28.64453,0,0,0,0,1,2,71.6,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.41956,9.444127,.6931472,3.354963,1
-9,1,50,1,3,128876,0,12632.75,55.1499,1,15,1,8.424182,0,39.14767,0,0,47.57185,0,0,0,0,1,2,71.6,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.41956,9.444127,.6931472,3.862241,1
-9,1,50,1,4,128876,0,12632.75,56.1499,1,15,1,8.26067,0,39.46765,0,0,47.72832,0,0,0,0,1,2,71.6,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.41956,9.444127,.6931472,3.865525,1
-9,1,50,1,5,128876,0,12632.75,57.1499,1,15,1,13.46235,0,14.06815,0,0,27.5305,0,0,0,1,0,2,71.6,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,72.41956,9.444127,.6931472,3.315295,1
-1,1,0,1,1,128883,0,16769.85,8.788501,1,15,1,7.194244,7.20024,0,0,0,14.39448,0,0,0,1,0,5,74.36826,13.73189,0,,450,0,1,1,1.609438,0,1,0,0,0,0,0,84.27559,9.727398,1.609438,2.666845,1
-1,1,0,1,2,128883,0,16769.85,9.788501,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,450,0,1,1,1.609438,0,1,0,0,0,0,0,84.27559,9.727398,1.609438,,0
-1,1,0,1,3,128883,0,16769.85,10.7885,1,15,1,12.96758,5.63591,0,0,0,18.60349,0,0,0,2,0,5,74.36826,13.73189,0,,450,0,1,1,1.609438,0,1,0,0,0,0,0,84.27559,9.727398,1.609438,2.923349,1
-1,1,0,1,4,128883,0,16769.85,11.7885,1,15,1,46.56524,.8068234,27.46427,0,0,74.83633,0,0,0,2,0,5,74.36826,13.73189,0,,450,0,1,1,1.609438,0,1,0,0,0,0,0,84.27559,9.727398,1.609438,4.315303,1
-1,1,0,1,5,128883,0,16769.85,12.7885,1,15,1,11.42615,0,0,0,0,11.42615,0,0,0,1,0,5,74.36826,13.73189,0,,450,0,1,1,1.609438,0,1,0,0,0,0,0,84.27559,9.727398,1.609438,2.435905,1
-1,1,0,1,1,128884,0,16769.85,31.46612,1,15,1,489.1187,13.57314,0,0,0,502.6918,0,0,0,10,0,5,81.1,30.4,1,,450,0,0,0,1.609438,0,1,0,0,1,0,0,69.4852,9.727398,1.609438,6.219977,1
-1,1,0,1,2,128884,0,16769.85,32.46612,1,15,1,38.8828,11.96605,0,0,0,50.84885,0,0,0,3,0,5,81.1,30.4,1,,450,0,0,0,1.609438,0,1,0,0,1,0,0,69.4852,9.727398,1.609438,3.928858,1
-1,1,0,1,3,128884,0,16769.85,33.46612,1,15,1,15.46135,0,0,0,0,15.46135,0,0,0,1,0,5,81.1,30.4,1,,450,0,0,0,1.609438,0,1,0,0,1,0,0,69.4852,9.727398,1.609438,2.738343,1
-1,1,0,1,4,128884,0,16769.85,34.46612,1,15,1,29.96773,4.656524,0,0,0,34.62425,0,0,0,2,0,5,81.1,30.4,1,,450,0,0,0,1.609438,0,1,0,0,1,0,0,69.4852,9.727398,1.609438,3.544554,1
-1,1,0,1,5,128884,0,16769.85,35.46612,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,81.1,30.4,1,,450,0,0,0,1.609438,0,1,0,0,1,0,0,69.4852,9.727398,1.609438,,0
-1,1,0,1,1,128885,0,16769.85,32.3039,0,20,1,86.93046,1.372902,31.17506,0,0,119.4784,0,0,0,3,0,5,85.3,0,0,,450,0,0,0,1.609438,0,1,0,0,0,0,0,78.29784,9.727398,1.609438,4.783136,1
-1,1,0,1,2,128885,0,16769.85,33.3039,0,20,1,0,0,0,0,0,0,0,0,0,0,0,5,85.3,0,0,,450,0,0,0,1.609438,0,1,0,0,0,0,0,78.29784,9.727398,1.609438,,0
-1,1,0,1,3,128885,0,16769.85,34.3039,0,20,1,0,0,0,0,0,0,0,0,0,0,0,5,85.3,0,0,,450,0,0,0,1.609438,0,1,0,0,0,0,0,78.29784,9.727398,1.609438,,0
-1,1,0,1,4,128885,0,16769.85,35.3039,0,20,1,0,.8068234,0,0,0,.8068234,0,0,0,0,0,5,85.3,0,0,,450,0,0,0,1.609438,0,1,0,0,0,0,0,78.29784,9.727398,1.609438,-.2146504,1
-1,1,0,1,5,128885,0,16769.85,36.3039,0,20,1,55.01481,0,29.62336,0,0,84.63817,0,0,0,3,0,5,85.3,0,0,,450,0,0,0,1.609438,0,1,0,0,0,0,0,78.29784,9.727398,1.609438,4.438385,1
-1,1,0,1,1,128886,0,16769.85,6.757016,0,15,1,11.39089,.9292566,0,0,0,12.32014,0,0,0,2,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,84.78957,9.727398,1.609438,2.511236,1
-1,1,0,1,2,128886,0,16769.85,7.757016,0,15,1,4.381161,0,0,0,0,4.381161,0,0,0,0,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,84.78957,9.727398,1.609438,1.477314,1
-1,1,0,1,3,128886,0,16769.85,8.757016,0,15,1,21.94514,0,.9975063,0,0,22.94264,0,0,0,2,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,84.78957,9.727398,1.609438,3.132997,1
-1,1,0,1,4,128886,0,16769.85,9.757016,0,15,1,9.22084,2.259106,0,0,0,11.47994,0,0,0,1,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,84.78957,9.727398,1.609438,2.440602,1
-1,1,0,1,5,128886,0,16769.85,10.75702,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,84.78957,9.727398,1.609438,,0
-1,1,0,1,1,128887,0,16769.85,4.459959,0,15,1,55.15588,3.243405,0,0,0,58.39928,0,0,0,6,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,81.35795,9.727398,1.609438,4.067304,1
-1,1,0,1,2,128887,0,16769.85,5.459959,0,15,1,0,3.822563,0,0,0,3.822563,0,0,0,0,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,81.35795,9.727398,1.609438,1.340921,1
-1,1,0,1,3,128887,0,16769.85,6.459959,0,15,1,7.98005,5.605985,0,0,0,13.58603,0,0,0,1,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,81.35795,9.727398,1.609438,2.609042,1
-1,1,0,1,4,128887,0,16769.85,7.459959,0,15,1,203.8958,6.210235,0,0,0,210.106,0,0,0,4,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,81.35795,9.727398,1.609438,5.347612,1
-1,1,0,1,5,128887,0,16769.85,8.459959,0,15,1,12.69573,1.836648,0,0,0,14.53237,0,0,0,1,0,5,74.36826,13.73189,0,,450,0,1,0,1.609438,0,1,0,0,0,0,0,81.35795,9.727398,1.609438,2.676379,1
-8,1,50,1,1,128894,0,14080.65,2.302532,0,16,1,427.1267,24.13444,12.48662,0,0,463.7478,0,0,0,11,0,4,74.36826,13.73189,0,,999,999,1,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,72.31981,9.552628,1.386294,6.139341,1
-8,1,50,1,2,128894,0,14080.65,3.302532,0,16,1,99.07458,22.04682,24.48557,0,0,145.607,0,0,0,7,0,4,74.36826,13.73189,0,,999,999,1,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,72.31981,9.552628,1.386294,4.980911,1
-8,1,50,1,3,128894,0,14080.65,4.302533,0,16,1,84.24182,26.84836,24.64321,0,0,135.7334,0,0,0,9,0,4,74.36826,13.73189,0,,999,999,1,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,72.31981,9.552628,1.386294,4.910693,1
-8,1,50,1,4,128894,0,14080.65,5.302533,0,16,1,44.51583,28.91693,25.46122,0,0,98.89399,0,0,0,6,0,4,74.36826,13.73189,0,,999,999,1,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,72.31981,9.552628,1.386294,4.594049,1
-8,1,50,1,5,128894,0,14080.65,6.302533,0,16,1,129.1544,19.44888,27.43795,0,0,176.0412,0,0,0,4,8,4,74.36826,13.73189,0,,999,999,1,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,72.31981,9.552628,1.386294,5.170718,1
-8,1,50,1,1,128895,0,14080.65,33.29227,1,16,1,102.9149,31.21951,50.20821,0,0,184.3427,0,0,0,8,0,4,32.6,17.4,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,67.40203,9.552628,1.386294,5.216796,1
-8,1,50,1,2,128895,0,14080.65,34.29227,1,16,1,132.5531,64.05553,10.61513,0,0,207.2237,0,0,0,6,6,4,32.6,17.4,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,67.40203,9.552628,1.386294,5.333799,1
-8,1,50,1,3,128895,0,14080.65,35.29227,1,16,1,294.8464,48.10704,0,0,0,342.9534,0,0,0,6,5,4,32.6,17.4,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,67.40203,9.552628,1.386294,5.837595,1
-8,1,50,1,4,128895,0,14080.65,36.29227,1,16,1,91.32629,58.972,0,0,0,150.2983,0,0,0,6,0,4,32.6,17.4,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,67.40203,9.552628,1.386294,5.012622,1
-8,1,50,1,5,128895,0,14080.65,37.29227,1,16,1,358.8557,66.47034,0,0,0,425.326,0,0,0,12,20,4,32.6,17.4,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,67.40203,9.552628,1.386294,6.052856,1
-8,1,50,1,1,128896,0,14080.65,4.383299,1,16,1,32.12374,24.47353,0,0,0,56.59726,0,0,0,3,0,4,74.36826,13.73189,0,,999,999,1,1,1.386294,6.906755,0,3.931826,7.599902,1,0,0,71.80583,9.552628,1.386294,4.035961,1
-8,1,50,1,2,128896,0,14080.65,5.383299,1,16,1,63.14643,21.50245,0,0,313.5547,398.2036,1,0,0,7,0,4,74.36826,13.73189,0,,999,999,1,1,1.386294,6.906755,0,3.931826,7.599902,1,0,0,71.80583,9.552628,1.386294,5.986963,1
-8,1,50,1,3,128896,0,14080.65,6.383299,1,16,1,132.3092,103.0377,0,0,0,235.3469,0,0,0,13,0,4,74.36826,13.73189,0,,999,999,1,1,1.386294,6.906755,0,3.931826,7.599902,1,0,0,71.80583,9.552628,1.386294,5.461061,1
-8,1,50,1,4,128896,0,14080.65,7.383299,1,16,1,34.41946,34.53878,10.22946,0,0,79.1877,0,0,0,10,0,4,74.36826,13.73189,0,,999,999,1,1,1.386294,6.906755,0,3.931826,7.599902,1,0,0,71.80583,9.552628,1.386294,4.371821,1
-8,1,50,1,5,128896,0,14080.65,8.383299,1,16,1,158.7085,110.5385,0,0,0,269.2469,0,0,0,2,21,4,74.36826,13.73189,0,,999,999,1,1,1.386294,6.906755,0,3.931826,7.599902,1,0,0,71.80583,9.552628,1.386294,5.595629,1
-8,1,50,1,1,128897,0,14080.65,37.89459,0,18,1,282.4212,92.15943,0,0,0,374.5806,0,0,0,2,1,4,65.3,26.1,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,66.49789,9.552628,1.386294,5.925807,1
-8,1,50,1,2,128897,0,14080.65,38.89459,0,18,1,24.49646,122.7545,0,0,816.086,963.337,1,0,0,2,0,4,65.3,26.1,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,66.49789,9.552628,1.386294,6.870403,1
-8,1,50,1,3,128897,0,14080.65,39.89459,0,18,1,33.69673,86.93261,0,0,0,120.6293,0,0,0,4,0,4,65.3,26.1,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,66.49789,9.552628,1.386294,4.792723,1
-8,1,50,1,4,128897,0,14080.65,40.89459,0,18,1,61.4961,34.57549,0,0,0,96.07159,0,0,0,3,0,4,65.3,26.1,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,66.49789,9.552628,1.386294,4.565094,1
-8,1,50,1,5,128897,0,14080.65,41.89459,0,18,1,88.76736,115.406,0,0,0,204.1733,0,0,0,4,0,4,65.3,26.1,0,,999,999,0,0,1.386294,6.906755,0,3.931826,7.599902,1,0,0,66.49789,9.552628,1.386294,5.318969,1
-11,1,0,0,1,128948,0,5863.523,60.92539,1,12,1,499.7644,19.37574,0,0,889.3993,1408.539,1,0,0,8,28,1,56.3,13.73189,1,,0,24,0,0,0,3.178054,0,0,0,1,0,0,63.60422,8.676677,0,7.250309,1
-11,1,0,0,2,128948,0,5863.523,61.92539,1,12,1,301.3477,0,42.25337,0,0,343.6011,0,0,0,1,50,1,56.3,13.73189,1,,0,24,0,0,0,3.178054,0,0,0,1,0,0,63.60422,8.676677,0,5.839481,1
-11,1,0,0,3,128948,0,5863.523,62.92539,1,12,1,153.8083,0,4.914005,0,0,158.7224,0,0,0,0,26,1,56.3,13.73189,1,,0,24,0,0,0,3.178054,0,0,0,1,0,0,63.60422,8.676677,0,5.067156,1
-8,1,50,0,1,128955,0,8527.916,19.69336,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.8,8.7,1,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,71.63822,9.051217,1.098612,,0
-8,1,50,0,2,128955,0,8527.916,20.69336,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.8,8.7,1,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,71.63822,9.051217,1.098612,,0
-8,1,50,0,3,128955,0,8527.916,21.69336,0,12,1,0,3.194103,0,0,0,3.194103,0,0,0,0,0,3,55.8,8.7,1,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,71.63822,9.051217,1.098612,1.161306,1
-8,1,50,0,4,128955,0,8527.916,22.69336,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.8,8.7,1,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,71.63822,9.051217,1.098612,,0
-8,1,50,0,5,128955,0,8527.916,23.69336,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.8,8.7,1,,550,550,0,0,.6931472,6.309918,0,3.931826,7.003066,1,0,0,71.63822,9.051217,.6931472,,0
-8,1,50,0,1,128956,0,8527.916,57.79055,0,12,1,20.02356,0,0,0,0,20.02356,0,0,0,1,0,3,81.1,8.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,64.59297,9.051217,1.098612,2.996909,1
-8,1,50,0,2,128956,0,8527.916,58.79055,0,12,1,24.25876,40.97035,0,0,1705.515,1770.744,2,0,0,0,0,3,81.1,8.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,64.59297,9.051217,1.098612,7.479155,1
-8,1,50,0,3,128956,0,8527.916,59.79055,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,8.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,64.59297,9.051217,1.098612,,0
-8,1,50,0,4,128956,0,8527.916,60.79055,0,12,.5945206,33.27256,2.848678,0,0,1163.974,1200.096,1,0,0,4,0,3,81.1,8.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,64.59297,9.051217,1.098612,7.090157,1
-8,1,50,0,1,128957,0,8527.916,48.32033,1,11,1,53.00353,49.60542,0,0,632.1143,734.7232,1,0,0,10,0,3,75.8,21.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,68.34619,9.051217,1.098612,6.599494,1
-8,1,50,0,2,128957,0,8527.916,49.32033,1,11,1,122.911,68.54447,0,0,0,191.4555,0,0,0,22,0,3,75.8,21.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,68.34619,9.051217,1.098612,5.254655,1
-8,1,50,0,3,128957,0,8527.916,50.32033,1,11,1,60.44226,40.81081,0,0,0,101.2531,0,0,0,8,0,3,75.8,21.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,68.34619,9.051217,1.098612,4.617623,1
-8,1,50,0,4,128957,0,8527.916,51.32033,1,11,1,223.7922,28.4959,35.24612,0,0,287.5342,0,0,0,22,6,3,75.8,21.7,0,,550,550,0,0,1.098612,6.309918,0,3.931826,7.003066,1,0,0,68.34619,9.051217,1.098612,5.661342,1
-8,1,50,0,5,128957,0,8527.916,52.32033,1,11,1,108.7953,58.06586,0,0,1546.052,1712.914,2,0,0,18,0,2,75.8,21.7,0,,550,550,0,0,.6931472,6.309918,0,3.931826,7.003066,1,0,0,68.34619,9.051217,.6931472,7.445951,1
-2,1,100,1,1,128962,0,18413.77,15.1102,1,14,1,81.79655,6.781678,16.163,0,0,104.7412,0,0,0,7,0,5,83.2,4.3,0,,900,900,1,1,1.609438,6.802395,1,0,0,0,0,0,75.43546,9.820909,1.609438,4.651493,1
-2,1,100,1,2,128962,0,18413.77,16.1102,1,14,1,84.13174,2.286336,30.15242,0,0,116.5705,0,0,0,7,0,5,83.2,4.3,0,,900,900,1,1,1.609438,6.802395,1,0,0,0,0,0,75.43546,9.820909,1.609438,4.758496,1
-2,1,100,1,3,128962,0,18413.77,17.1102,1,14,1,26.26363,9.985134,0,0,0,36.24876,0,0,0,2,0,5,83.2,4.3,0,,900,900,1,1,1.609438,6.802395,1,0,0,0,0,0,75.43546,9.820909,1.609438,3.590405,1
-2,1,100,1,1,128963,0,18413.77,42.02601,0,9,1,16.77573,0,0,0,0,16.77573,0,0,0,0,0,5,88.4,4.3,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,73.73394,9.820909,1.609438,2.819933,1
-2,1,100,1,2,128963,0,18413.77,43.02601,0,9,1,105.9336,4.708764,31.2847,0,0,141.927,0,0,0,3,0,5,88.4,4.3,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,73.73394,9.820909,1.609438,4.955313,1
-2,1,100,1,3,128963,0,18413.77,44.02601,0,9,1,0,0,22.52725,0,0,22.52725,0,0,0,0,0,5,88.4,4.3,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,73.73394,9.820909,1.609438,3.114726,1
-2,1,100,1,1,128964,0,18413.77,18.02601,1,12.32507,1,71.74301,37.50743,0,0,0,109.2504,0,0,0,6,0,5,64.2,0,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,79.81728,9.820909,1.609438,4.693643,1
-2,1,100,1,2,128964,0,18413.77,19.02601,1,12.32507,1,45.8356,36.56505,0,0,0,82.40065,0,0,0,5,0,5,64.2,0,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,79.81728,9.820909,1.609438,4.411593,1
-2,1,100,1,3,128964,0,18413.77,20.02601,1,12.32507,1,161.9425,77.03667,0,0,0,238.9792,0,0,0,7,0,5,64.2,0,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,79.81728,9.820909,1.609438,5.476377,1
-2,1,100,1,1,128965,0,18413.77,40.57221,1,14,1,26.76978,0,0,0,0,26.76978,0,0,0,2,0,5,81.1,17.4,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,78.77059,9.820909,1.609438,3.287274,1
-2,1,100,1,2,128965,0,18413.77,41.57221,1,14,1,157.6483,19.12357,32.92324,0,335.0027,544.6979,1,0,0,8,0,5,81.1,17.4,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,78.77059,9.820909,1.609438,6.300231,1
-2,1,100,1,3,128965,0,18413.77,42.57221,1,14,1,27.25471,35.72844,0,0,0,62.98315,0,0,0,3,0,5,81.1,17.4,0,,900,900,0,0,1.609438,6.802395,1,0,0,0,0,0,78.77059,9.820909,1.609438,4.142867,1
-2,1,100,1,1,128966,0,18413.77,4.128679,0,14,1,34.74123,16.32957,0,0,0,51.07079,0,0,0,3,0,5,74.36826,13.73189,0,,900,900,1,0,1.609438,6.802395,1,0,0,0,0,0,81.65595,9.820909,1.609438,3.933213,1
-2,1,100,1,2,128966,0,18413.77,5.128679,0,14,1,35.27491,15.59608,0,0,0,50.87099,0,0,0,4,0,5,74.36826,13.73189,0,,900,900,1,0,1.609438,6.802395,1,0,0,0,0,0,81.65595,9.820909,1.609438,3.929293,1
-2,1,100,1,3,128966,0,18413.77,6.128679,0,14,1,10.40634,24.05847,0,0,0,34.46482,0,0,0,2,0,5,74.36826,13.73189,0,,900,900,1,0,1.609438,6.802395,1,0,0,0,0,0,81.65595,9.820909,1.609438,3.539939,1
-10,1,50,0,1,128967,0,10415.01,58.88843,0,13,1,68.31567,38.03298,229.5583,0,0,335.907,0,0,0,4,0,2,65.3,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,64.26467,9.2511,.6931472,5.816834,1
-10,1,50,0,2,128967,0,10415.01,59.88843,0,13,1,14.55526,34.469,42.81401,0,0,91.83827,0,0,0,2,0,2,65.3,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,64.26467,9.2511,.6931472,4.520029,1
-10,1,50,0,3,128967,0,10415.01,60.88843,0,13,1,17.69042,21.71007,2.029484,0,0,41.42997,0,0,0,1,0,2,65.3,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,64.26467,9.2511,.6931472,3.724005,1
-10,1,50,0,4,128967,0,10415.01,61.88843,0,13,1,38.74202,49.95442,0,0,0,88.69644,0,0,0,3,0,2,65.3,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,64.26467,9.2511,.6931472,4.48522,1
-10,1,50,0,5,128967,0,10415.01,62.88843,0,13,1,25.42726,35.83993,0,0,0,61.26719,0,0,0,1,0,2,65.3,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,64.26467,9.2511,.6931472,4.115244,1
-10,1,50,0,1,128968,0,10415.01,56.03559,1,12,1,56.09541,27.56184,0,0,0,83.65724,0,0,0,2,0,2,80,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.90685,9.2511,.6931472,4.426728,1
-10,1,50,0,2,128968,0,10415.01,57.03559,1,12,1,48.84097,4.474393,43.66577,0,0,96.98113,0,0,0,2,0,2,80,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.90685,9.2511,.6931472,4.574516,1
-10,1,50,0,3,128968,0,10415.01,58.03559,1,12,1,27.02703,0,0,0,0,27.02703,0,0,0,1,0,2,80,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.90685,9.2511,.6931472,3.296837,1
-10,1,50,0,4,128968,0,10415.01,59.03559,1,12,1,13.74202,30.19599,0,0,0,43.93801,0,0,0,1,0,2,80,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.90685,9.2511,.6931472,3.78278,1
-10,1,50,0,5,128968,0,10415.01,60.03559,1,12,1,39.18299,7.899125,0,0,0,47.08212,0,0,0,2,1,2,80,17.4,0,,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,70.90685,9.2511,.6931472,3.851893,1
-11,1,0,1,1,128969,0,28065.76,56.89254,1,16,1,53.88692,0,0,0,0,53.88692,0,0,0,1,0,2,85.3,13,0,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,68.57099,10.24234,.6931472,3.986888,1
-11,1,0,1,2,128969,0,28065.76,57.89254,1,16,1,83.82749,0,0,0,0,83.82749,0,0,0,2,0,2,85.3,13,0,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,68.57099,10.24234,.6931472,4.428761,1
-11,1,0,1,3,128969,0,28065.76,58.89254,1,16,1,48.89435,3.857494,0,0,0,52.75184,0,0,0,1,4,2,85.3,13,0,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,68.57099,10.24234,.6931472,3.965599,1
-11,1,0,1,1,128970,0,28065.76,58.22587,0,16,1,102.768,141.4723,28.48645,0,0,272.7267,0,0,0,5,0,2,83.2,34.8,1,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,67.87204,10.24234,.6931472,5.60847,1
-11,1,0,1,2,128970,0,28065.76,59.22587,0,16,1,194.7439,122.9326,48.51752,0,0,366.1941,0,0,0,9,0,2,83.2,34.8,1,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,67.87204,10.24234,.6931472,5.903163,1
-11,1,0,1,3,128970,0,28065.76,60.22587,0,16,1,289.1892,117.2727,76.16708,0,646.1032,1128.732,1,0,0,11,5,2,83.2,34.8,1,,0,607,0,0,.6931472,6.408529,0,0,0,1,0,0,67.87204,10.24234,.6931472,7.02885,1
-6,1,25,1,1,128971,0,14011.17,32.66804,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.59959,9.547681,1.098612,,0
-6,1,25,1,2,128971,0,14011.17,33.66804,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.59959,9.547681,1.098612,,0
-6,1,25,1,3,128971,0,14011.17,34.66804,0,12,1,7.433102,2.96333,0,0,0,10.39643,0,0,0,1,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.59959,9.547681,1.098612,2.341463,1
-6,1,25,1,4,128971,0,14011.17,35.66804,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.59959,9.547681,1.098612,,0
-6,1,25,1,5,128971,0,14011.17,36.66804,0,12,1,10.51746,0,26.0833,0,0,36.60076,0,0,0,0,1,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.59959,9.547681,1.098612,3.600069,1
-6,1,25,1,1,128972,0,14011.17,32.12868,1,16,1,31.52885,12.19512,0,0,0,43.72397,0,0,0,3,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.90932,9.547681,1.098612,3.777896,1
-6,1,25,1,2,128972,0,14011.17,33.12868,1,16,1,26.12956,0,0,0,0,26.12956,0,0,0,1,1,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.90932,9.547681,1.098612,3.263067,1
-6,1,25,1,3,128972,0,14011.17,34.12868,1,16,1,26.75917,0,0,0,0,26.75917,0,0,0,2,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.90932,9.547681,1.098612,3.286877,1
-6,1,25,1,4,128972,0,14011.17,35.12868,1,16,1,31.89536,0,25.24094,0,0,57.1363,0,0,0,0,1,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.90932,9.547681,1.098612,4.04544,1
-6,1,25,1,5,128972,0,14011.17,36.12868,1,16,1,34.91796,0,0,0,0,34.91796,0,0,0,2,0,3,81.1,13,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.90932,9.547681,1.098612,3.553001,1
-6,1,25,1,1,128973,0,14011.17,6.009583,0,16,1,10.70791,5.710886,0,0,0,16.4188,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,84.90688,9.547681,1.098612,2.798427,1
-6,1,25,1,2,128973,0,14011.17,7.009583,0,16,1,54.98095,0,0,0,0,54.98095,0,0,0,5,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,84.90688,9.547681,1.098612,4.006987,1
-6,1,25,1,3,128973,0,14011.17,8.009583,0,16,1,9.910803,0,0,0,0,9.910803,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,84.90688,9.547681,1.098612,2.293625,1
-6,1,25,1,4,128973,0,14011.17,9.009583,0,16,1,14.34144,0,0,0,0,14.34144,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,84.90688,9.547681,1.098612,2.663153,1
-6,1,25,1,5,128973,0,14011.17,10.00958,0,16,1,1.262095,0,0,0,0,1.262095,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,84.90688,9.547681,1.098612,.2327731,1
-10,1,50,1,1,128998,0,12082.51,60.35866,1,12,1,32.42118,7.63831,38.4414,0,0,78.50089,0,0,0,1,2,1,92.6,8.7,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,73.20397,9.399596,0,4.36311,1
-10,1,50,1,2,128998,0,12082.51,61.35866,1,12,1,13.06478,0,0,0,0,13.06478,0,0,0,1,0,1,92.6,8.7,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,73.20397,9.399596,0,2.56992,1
-10,1,50,1,3,128998,0,12082.51,62.35866,1,12,1,87.21507,0,43.89495,0,0,131.11,0,0,0,2,1,1,92.6,8.7,0,,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,73.20397,9.399596,0,4.876037,1
-8,1,50,0,1,129005,0,10670.6,31.42779,1,16,1,84.80566,29.5053,21.5371,0,0,135.8481,0,0,0,5,0,4,46.3,17.4,0,,149,149,0,0,1.386294,5.003946,0,3.931826,5.697093,0,0,0,72.45773,9.275341,1.386294,4.911537,1
-8,1,50,0,2,129005,0,10670.6,32.42779,1,16,1,34.77089,19.03504,7.816711,0,0,61.62264,0,0,0,3,0,4,46.3,17.4,0,,149,149,0,0,1.386294,5.003946,0,3.931826,5.697093,0,0,0,72.45773,9.275341,1.386294,4.121029,1
-8,1,50,0,3,129005,0,10670.6,33.42779,1,16,1,44.22604,19.46437,0,0,0,63.69042,0,0,0,2,0,4,46.3,17.4,0,,149,149,0,0,1.386294,5.003946,0,3.931826,5.697093,0,0,0,72.45773,9.275341,1.386294,4.154034,1
-8,1,50,0,4,129005,0,10670.6,34.42779,1,16,1,72.69827,29.25706,0,0,0,101.9553,0,0,0,5,0,4,46.3,17.4,0,,149,149,0,0,1.386294,5.003946,0,3.931826,5.697093,0,0,0,72.45773,9.275341,1.386294,4.624535,1
-8,1,50,0,5,129005,0,10670.6,35.42779,1,16,1,47.72822,15.71488,0,0,0,63.4431,0,0,0,4,0,4,46.3,17.4,0,,149,149,0,0,1.386294,5.003946,0,3.931826,5.697093,0,0,0,72.45773,9.275341,1.386294,4.150144,1
-8,1,50,0,1,129006,0,10670.6,8.29295,1,16,1,26.79623,12.73852,0,0,0,39.53475,0,0,0,3,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,81.14014,9.275341,1.386294,3.67718,1
-8,1,50,0,2,129006,0,10670.6,9.29295,1,16,1,22.91105,5.498652,6.469003,0,0,34.87871,0,0,0,2,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,81.14014,9.275341,1.386294,3.551877,1
-8,1,50,0,3,129006,0,10670.6,10.29295,1,16,1,54.29976,11.4398,29.41032,0,0,95.14988,0,0,0,6,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,81.14014,9.275341,1.386294,4.555453,1
-8,1,50,0,4,129006,0,10670.6,11.29295,1,16,1,44.66727,15.81586,.2051048,0,0,60.68824,0,0,0,4,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,81.14014,9.275341,1.386294,4.10575,1
-8,1,50,0,5,129006,0,10670.6,12.29295,1,16,1,21.05044,23.78908,0,0,0,44.83952,0,0,0,3,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,81.14014,9.275341,1.386294,3.80309,1
-8,1,50,0,1,129007,0,10670.6,6.354552,0,16,1,33.5689,10.44759,0,0,0,44.01649,0,0,0,4,0,4,74.36826,13.73189,0,,149,149,1,0,1.386294,5.003946,0,3.931826,5.697093,1,0,0,73.78861,9.275341,1.386294,3.784564,1
-8,1,50,0,2,129007,0,10670.6,7.354552,0,16,1,28.30189,2.727763,0,0,0,31.02965,0,0,0,3,0,4,74.36826,13.73189,0,,149,149,1,0,1.386294,5.003946,0,3.931826,5.697093,1,0,0,73.78861,9.275341,1.386294,3.434943,1
-8,1,50,0,3,129007,0,10670.6,8.354551,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,149,149,1,0,1.386294,5.003946,0,3.931826,5.697093,1,0,0,73.78861,9.275341,1.386294,,0
-8,1,50,0,4,129007,0,10670.6,9.354551,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,149,149,1,0,1.386294,5.003946,0,3.931826,5.697093,1,0,0,73.78861,9.275341,1.386294,,0
-8,1,50,0,5,129007,0,10670.6,10.35455,0,16,1,25.42726,2.125886,0,0,0,27.55315,0,0,0,3,0,4,74.36826,13.73189,0,,149,149,1,0,1.386294,5.003946,0,3.931826,5.697093,1,0,0,73.78861,9.275341,1.386294,3.316117,1
-8,1,50,0,1,129008,0,10670.6,3.52909,1,16,1,40.63604,24.98233,0,0,0,65.61838,0,0,0,4,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,77.70851,9.275341,1.386294,4.183856,1
-8,1,50,0,2,129008,0,10670.6,4.529089,1,16,1,24.79784,3.396226,0,0,0,28.19407,0,0,0,2,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,77.70851,9.275341,1.386294,3.339112,1
-8,1,50,0,3,129008,0,10670.6,5.529089,1,16,1,115.2334,27.2285,3.931204,0,0,146.3931,0,0,0,6,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,77.70851,9.275341,1.386294,4.986296,1
-8,1,50,0,4,129008,0,10670.6,6.529089,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,77.70851,9.275341,1.386294,,0
-8,1,50,0,5,129008,0,10670.6,7.529089,1,16,1,144.1184,4.126719,0,0,0,148.2451,0,0,0,5,0,4,74.36826,13.73189,0,,149,149,1,1,1.386294,5.003946,0,3.931826,5.697093,0,0,0,77.70851,9.275341,1.386294,4.998867,1
-2,1,100,0,1,129011,0,9756.203,52.13963,0,12,1,145.7597,26.73734,0,0,0,172.4971,0,0,0,3,0,2,70,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,76.06852,9.185761,.6931472,5.15038,1
-2,1,100,0,2,129011,0,9756.203,53.13963,0,12,1,0,2.830189,0,0,0,2.830189,0,0,0,0,0,2,70,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,76.06852,9.185761,.6931472,1.040343,1
-2,1,100,0,3,129011,0,9756.203,54.13963,0,12,1,14.98771,2.063882,186.8747,0,0,203.9263,0,0,0,1,1,2,70,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,76.06852,9.185761,.6931472,5.317759,1
-2,1,100,0,4,129011,0,9756.203,55.13963,0,12,1,39.19781,1.203282,0,0,0,40.40109,0,0,0,2,0,2,70,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,76.06852,9.185761,.6931472,3.698857,1
-2,1,100,0,5,129011,0,9756.203,56.13963,0,12,1,7.919967,0,32.47186,0,0,40.39183,0,0,0,0,1,2,70,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,76.06852,9.185761,.6931472,3.698627,1
-2,1,100,0,1,129012,0,9756.203,49.43737,1,12,1,233.5395,11.27797,23.55713,0,0,268.3746,0,0,0,6,1,2,67.5,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,77.69517,9.185761,.6931472,5.592384,1
-2,1,100,0,2,129012,0,9756.203,50.43737,1,12,1,0,5.283019,0,0,0,5.283019,0,0,0,0,0,2,67.5,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,77.69517,9.185761,.6931472,1.664498,1
-2,1,100,0,3,129012,0,9756.203,51.43737,1,12,1,83.78378,7.542997,30.41769,0,0,121.7445,0,0,0,3,1,2,67.5,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,77.69517,9.185761,.6931472,4.801924,1
-2,1,100,0,4,129012,0,9756.203,52.43737,1,12,1,5.469462,1.326345,0,0,0,6.795807,0,0,0,1,0,2,67.5,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,77.69517,9.185761,.6931472,1.916306,1
-2,1,100,0,5,129012,0,9756.203,53.43737,1,12,1,7.503126,0,20.82117,0,0,28.3243,0,0,0,0,1,2,67.5,13.73189,0,,856,856,0,0,.6931472,6.75227,1,0,0,0,0,0,77.69517,9.185761,.6931472,3.34372,1
-3,1,100,0,1,129024,0,14846.15,31.03901,1,16,1,11.99041,3.639089,0,0,0,15.6295,0,0,0,2,0,4,73.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97472,9.605563,1.386294,2.74916,1
-3,1,100,0,2,129024,0,14846.15,32.03901,1,16,1,462.1851,3.828039,0,0,0,466.0132,0,0,0,4,0,4,73.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97472,9.605563,1.386294,6.144214,1
-3,1,100,0,3,129024,0,14846.15,33.03901,1,16,1,397.5561,9.750624,0,0,1006.828,1414.135,1,0,0,1,0,4,73.8,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97472,9.605563,1.386294,7.254273,1
-3,1,100,0,1,129025,0,14846.15,28.62697,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,92.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.02419,9.605563,1.386294,,0
-3,1,100,0,2,129025,0,14846.15,29.62697,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,92.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.02419,9.605563,1.386294,,0
-3,1,100,0,3,129025,0,14846.15,30.62697,0,17,1,12.46883,0,31.27182,0,0,43.74065,0,0,0,1,0,4,92.5,13.73189,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,79.02419,9.605563,1.386294,3.778278,1
-3,1,100,0,1,129026,0,14846.15,6.718686,0,16,1,0,2.368105,0,0,0,2.368105,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,86.10872,9.605563,1.386294,.8620902,1
-3,1,100,0,2,129026,0,14846.15,7.718686,0,16,1,0,3.231106,0,0,0,3.231106,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,86.10872,9.605563,1.386294,1.172825,1
-3,1,100,0,3,129026,0,14846.15,8.718686,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,86.10872,9.605563,1.386294,,0
-3,1,100,0,1,129027,0,14846.15,1.61807,0,16,1,114.2086,14.53837,0,0,0,128.747,0,0,0,7,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,77.47646,9.605563,1.386294,4.857849,1
-3,1,100,0,2,129027,0,14846.15,2.61807,0,16,1,76.39649,3.285871,0,0,266.9222,346.6046,1,0,0,4,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,77.47646,9.605563,1.386294,5.848185,1
-3,1,100,0,3,129027,0,14846.15,3.61807,0,16,1,0,.7481297,0,0,0,.7481297,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,77.47646,9.605563,1.386294,-.290179,1
-8,1,50,1,1,129038,0,1081.886,12.05202,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,244,348,1,0,.6931472,5.852202,0,3.931826,6.190315,1,0,0,77.12702,6.987385,.6931472,,0
-8,1,50,1,2,129038,0,1081.886,13.05202,0,8,1,18.23626,3.783342,0,0,0,22.0196,0,0,0,0,1,2,74.36826,13.73189,0,,244,348,1,0,.6931472,5.852202,0,3.931826,6.190315,1,0,0,77.12702,6.987385,.6931472,3.091933,1
-8,1,50,1,3,129038,0,1081.886,14.05202,0,8,1,16.35283,0,0,0,0,16.35283,0,0,0,1,0,2,74.36826,13.73189,0,,244,348,1,0,.6931472,5.852202,0,3.931826,6.190315,1,0,0,77.12702,6.987385,.6931472,2.794401,1
-8,1,50,1,1,129039,0,1081.886,56.62697,1,8,1,14.27722,119.3754,0,0,0,133.6526,0,0,0,2,0,2,67.4,30.4,1,,244,348,0,0,.6931472,5.852202,0,3.931826,6.190315,0,1,0,53.3388,6.987385,.6931472,4.895244,1
-8,1,50,1,2,129039,0,1081.886,57.62697,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,67.4,30.4,1,,244,348,0,0,.6931472,5.852202,0,3.931826,6.190315,0,1,0,53.3388,6.987385,.6931472,,0
-8,1,50,1,3,129039,0,1081.886,58.62697,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,67.4,30.4,1,,244,348,0,0,.6931472,5.852202,0,3.931826,6.190315,0,1,0,53.3388,6.987385,.6931472,,0
-3,1,100,1,1,129061,1,7638.337,51.37577,0,12,1,42.21954,21.79735,81.79735,0,0,145.8142,0,0,0,4,1,2,86.3,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,59.68835,8.941066,.6931472,4.982334,1
-3,1,100,1,2,129061,1,7638.337,52.37577,0,12,1,11.56388,52.84141,42.2467,0,0,106.652,0,0,0,1,0,2,86.3,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,59.68835,8.941066,.6931472,4.669571,1
-3,1,100,1,3,129061,1,7638.337,53.37577,0,12,1,8.036162,28.71924,51.92366,0,0,88.67905,0,0,0,1,0,2,86.3,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,59.68835,8.941066,.6931472,4.485023,1
-3,1,100,1,1,129062,1,7638.337,48.92813,1,12,1,85.64536,9.589868,17.02051,0,0,112.2557,0,0,0,3,1,2,74.7,13,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,65.70995,8.941066,.6931472,4.720779,1
-3,1,100,1,2,129062,1,7638.337,49.92813,1,12,1,119.7687,2.17511,18.99229,0,0,140.9361,0,0,0,3,1,2,74.7,13,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,65.70995,8.941066,.6931472,4.948307,1
-3,1,100,1,3,129062,1,7638.337,50.92813,1,12,1,18.08137,0,0,0,0,18.08137,0,0,0,1,0,2,74.7,13,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,1,0,0,65.70995,8.941066,.6931472,2.894882,1
-11,1,0,1,1,129071,1,9542.002,18.72416,1,11,1,0,1.013189,0,0,0,1.013189,0,0,0,0,0,8,58.8,13.73189,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,72.29684,9.163564,2.079442,.0131032,1
-11,1,0,1,2,129071,1,9542.002,19.72416,1,11,1,7.119387,0,34.50164,0,0,41.62103,0,0,0,0,1,8,58.8,13.73189,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,72.29684,9.163564,2.079442,3.728606,1
-11,1,0,1,3,129071,1,9542.002,20.72416,1,11,1,185.0374,15.17706,0,0,1599.815,1800.03,1,0,0,3,0,9,58.8,13.73189,0,,0,325,0,0,2.197225,5.783825,0,0,0,0,0,0,72.29684,9.163564,2.197225,7.495559,1
-11,1,0,1,4,129071,1,9542.002,21.72416,1,11,1,300.5533,6.874135,0,0,0,307.4274,0,0,0,6,0,10,58.8,13.73189,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,72.29684,9.163564,2.302585,5.728239,1
-11,1,0,1,5,129071,1,9542.002,22.72416,1,11,1,499.598,1.39653,0,0,2491.697,2992.691,2,0,0,5,0,10,58.8,13.73189,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,72.29684,9.163564,2.302585,8.003928,1
-11,1,0,1,1,129072,1,9542.002,9.234771,1,13,1,18.58513,0,0,0,0,18.58513,0,0,0,1,1,8,74.36826,13.73189,0,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.079442,2.922362,1
-11,1,0,1,2,129072,1,9542.002,10.23477,1,13,1,3.833516,0,0,0,0,3.833516,0,0,0,1,0,8,74.36826,13.73189,0,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.079442,1.343782,1
-11,1,0,1,3,129072,1,9542.002,11.23477,1,13,1,47.38155,0,0,0,0,47.38155,0,0,0,4,0,9,74.36826,13.73189,0,,0,325,1,1,2.197225,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.197225,3.858233,1
-11,1,0,1,4,129072,1,9542.002,12.23477,1,13,1,0,0,0,0,0,0,0,0,0,0,0,10,74.36826,13.73189,0,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.302585,,0
-11,1,0,1,5,129072,1,9542.002,13.23477,1,13,1,5.924672,0,0,0,0,5.924672,0,0,0,1,0,10,74.36826,13.73189,0,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.302585,1.779125,1
-11,1,0,1,1,129073,1,9542.002,35.2909,1,13,1,140.1379,24.02878,0,0,329.3525,493.5192,1,0,0,5,0,8,75.8,8.7,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,75.5062,9.163564,2.079442,6.201562,1
-11,1,0,1,2,129073,1,9542.002,36.2909,1,13,1,559.874,9.884995,28.91566,0,939.9124,1538.587,1,0,0,8,0,8,75.8,8.7,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,75.5062,9.163564,2.079442,7.33862,1
-11,1,0,1,3,129073,1,9542.002,37.2909,1,13,1,52.36908,10.32419,0,0,0,62.69327,0,0,0,1,0,9,75.8,8.7,0,,0,325,0,0,2.197225,5.783825,0,0,0,0,0,0,75.5062,9.163564,2.197225,4.138254,1
-11,1,0,1,4,129073,1,9542.002,38.2909,1,13,1,19.36376,0,0,0,0,19.36376,0,0,0,1,0,10,75.8,8.7,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,75.5062,9.163564,2.302585,2.963403,1
-11,1,0,1,5,129073,1,9542.002,39.2909,1,13,1,0,0,0,0,0,0,0,0,0,0,0,10,75.8,8.7,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,75.5062,9.163564,2.302585,,0
-11,1,0,1,1,129074,1,9542.002,10.78987,0,13,1,14.98801,0,30.70144,0,0,45.68945,0,0,0,1,0,8,74.36826,13.73189,0,,0,325,1,0,2.079442,5.783825,0,0,0,0,0,0,81.08335,9.163564,2.079442,3.821867,1
-11,1,0,1,2,129074,1,9542.002,11.78987,0,13,1,3.833516,0,0,0,0,3.833516,0,0,0,1,0,8,74.36826,13.73189,0,,0,325,1,0,2.079442,5.783825,0,0,0,0,0,0,81.08335,9.163564,2.079442,1.343782,1
-11,1,0,1,3,129074,1,9542.002,12.78987,0,13,1,24.93766,0,33.91521,0,0,58.85287,0,0,0,2,0,9,74.36826,13.73189,0,,0,325,1,0,2.197225,5.783825,0,0,0,0,0,0,81.08335,9.163564,2.197225,4.07504,1
-11,1,0,1,4,129074,1,9542.002,13.78987,0,13,1,5.993546,0,0,0,0,5.993546,0,0,0,1,0,10,74.36826,13.73189,0,,0,325,1,0,2.302585,5.783825,0,0,0,0,0,0,81.08335,9.163564,2.302585,1.790683,1
-11,1,0,1,5,129074,1,9542.002,14.78987,0,13,1,0,0,0,0,0,0,0,0,0,0,0,10,74.36826,13.73189,0,,0,325,1,0,2.302585,5.783825,0,0,0,0,0,0,81.08335,9.163564,2.302585,,0
-11,1,0,1,1,129075,1,9542.002,20.62149,1,13,1,32.97362,28.34532,0,0,0,61.31894,0,0,0,4,0,8,67.4,0,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,72.91712,9.163564,2.079442,4.116089,1
-11,1,0,1,2,129075,1,9542.002,21.62149,1,13,1,37.73275,6.900329,0,0,0,44.63308,0,0,0,4,1,8,67.4,0,0,,0,325,0,0,2.079442,5.783825,0,0,0,0,0,0,72.91712,9.163564,2.079442,3.798475,1
-11,1,0,1,3,129075,1,9542.002,22.62149,1,13,1,499.7756,17.60599,0,0,0,517.3815,0,0,0,9,0,9,67.4,0,0,,0,325,0,0,2.197225,5.783825,0,0,0,0,0,0,72.91712,9.163564,2.197225,6.248781,1
-11,1,0,1,4,129075,1,9542.002,23.62149,1,13,1,151.2218,14.56893,0,0,0,165.7907,0,0,0,4,0,10,67.4,0,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,72.91712,9.163564,2.302585,5.110726,1
-11,1,0,1,5,129075,1,9542.002,24.62149,1,13,1,52.05247,0,0,0,0,52.05247,0,0,0,7,0,10,67.4,0,0,,0,325,0,0,2.302585,5.783825,0,0,0,0,0,0,72.91712,9.163564,2.302585,3.952252,1
-11,1,0,1,1,129076,1,9542.002,46.31348,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8,57.9,0,0,,0,325,0,0,2.079442,5.783825,0,0,0,1,0,0,60.2207,9.163564,2.079442,,0
-11,1,0,1,2,129076,1,9542.002,47.31348,0,3,1,24.91785,.8214677,49.28806,0,0,75.02738,0,0,0,2,0,8,57.9,0,0,,0,325,0,0,2.079442,5.783825,0,0,0,1,0,0,60.2207,9.163564,2.079442,4.317853,1
-11,1,0,1,3,129076,1,9542.002,48.31348,0,3,1,0,0,0,0,0,0,0,0,0,0,0,9,57.9,0,0,,0,325,0,0,2.197225,5.783825,0,0,0,1,0,0,60.2207,9.163564,2.197225,,0
-11,1,0,1,4,129076,1,9542.002,49.31348,0,3,1,55.78608,7.330567,0,0,0,63.11664,0,0,0,4,0,10,57.9,0,0,,0,325,0,0,2.302585,5.783825,0,0,0,1,0,0,60.2207,9.163564,2.302585,4.144984,1
-11,1,0,1,5,129076,1,9542.002,50.31348,0,3,1,0,0,0,0,0,0,0,0,0,0,0,10,57.9,0,0,,0,325,0,0,2.302585,5.783825,0,0,0,1,0,0,60.2207,9.163564,2.302585,,0
-11,1,0,1,1,129077,1,9542.002,9.492128,1,13,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,0,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.079442,,0
-11,1,0,1,2,129077,1,9542.002,10.49213,1,13,1,3.833516,0,0,0,0,3.833516,0,0,0,1,0,8,74.36826,13.73189,0,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.079442,1.343782,1
-11,1,0,1,3,129077,1,9542.002,11.49213,1,13,1,9.975062,0,0,0,0,9.975062,0,0,0,1,0,9,74.36826,13.73189,0,,0,325,1,1,2.197225,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.197225,2.300088,1
-11,1,0,1,4,129077,1,9542.002,12.49213,1,13,1,0,0,0,0,0,0,0,0,0,0,0,10,74.36826,13.73189,0,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.302585,,0
-11,1,0,1,5,129077,1,9542.002,13.49213,1,13,1,0,0,0,0,0,0,0,0,0,0,0,10,74.36826,13.73189,0,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,80.56938,9.163564,2.302585,,0
-11,1,0,1,1,129082,1,5959.057,50.58453,1,9,1,27.95955,31.66568,0,0,0,59.62522,0,0,0,3,1,3,84.2,26.1,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,52.06449,8.692836,1.098612,4.088078,1
-11,1,0,1,2,129082,1,5959.057,51.58453,1,9,1,228.0893,26.40174,0,0,0,254.491,0,0,0,7,10,3,84.2,26.1,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,52.06449,8.692836,1.098612,5.539266,1
-11,1,0,1,3,129082,1,5959.057,52.58453,1,9,1,122.3984,40.05946,26.92765,0,0,189.3855,0,0,0,6,6,3,84.2,26.1,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,52.06449,8.692836,1.098612,5.243785,1
-11,1,0,1,1,129083,1,5959.057,18.05613,1,12.32507,1,35.09816,.594884,0,0,0,35.69304,0,0,0,3,0,3,83.2,17.4,0,,0,313,0,0,1.098612,5.746203,0,0,0,0,1,0,62.13012,8.692836,1.098612,3.574956,1
-11,1,0,1,2,129083,1,5959.057,19.05613,1,12.32507,1,69.67883,13.62003,0,0,0,83.29886,0,0,0,8,0,3,83.2,17.4,0,,0,313,0,0,1.098612,5.746203,0,0,0,0,1,0,62.13012,8.692836,1.098612,4.422435,1
-11,1,0,1,3,129083,1,5959.057,20.05613,1,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,3,83.2,17.4,0,,0,313,0,0,1.098612,5.746203,0,0,0,0,1,0,62.13012,8.692836,1.098612,,0
-11,1,0,1,1,129084,1,5959.057,56,0,2,1,131.1719,67.55502,21.76086,0,1095.604,1316.092,1,0,0,9,1,3,75.8,34.8,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,60.90429,8.692836,1.098612,7.182422,1
-11,1,0,1,2,129084,1,5959.057,57,0,2,1,136.6358,50.28851,0,0,0,186.9243,0,0,0,8,6,3,75.8,34.8,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,60.90429,8.692836,1.098612,5.230704,1
-11,1,0,1,3,129084,1,5959.057,58,0,2,1,66.40238,43.68186,21.74926,0,0,131.8335,0,0,0,6,3,3,75.8,34.8,1,,0,313,0,0,1.098612,5.746203,0,0,0,0,0,1,60.90429,8.692836,1.098612,4.88154,1
-11,1,0,0,1,129090,0,4912.531,49.28679,1,11,1,23.55713,55.73027,0,0,0,79.2874,0,0,0,2,0,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,75.54311,8.499748,0,4.373079,1
-11,1,0,0,2,129090,0,4912.531,50.28679,1,11,1,80.86253,58.14016,0,0,0,139.0027,0,0,0,9,0,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,75.54311,8.499748,0,4.934494,1
-11,1,0,0,3,129090,0,4912.531,51.28679,1,11,1,28.99263,28.7027,48.78624,0,0,106.4816,0,0,0,2,1,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,75.54311,8.499748,0,4.667972,1
-11,1,0,0,4,129090,0,4912.531,52.28679,1,11,1,11.8505,29.98177,0,0,0,41.83227,0,0,0,1,0,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,75.54311,8.499748,0,3.733668,1
-11,1,0,0,5,129090,0,4912.531,53.28679,1,11,1,27.09462,24.73948,45.30221,0,0,97.13631,0,0,0,4,1,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,0,0,0,75.54311,8.499748,0,4.576115,1
-11,1,0,0,1,129091,0,7755.583,21.3963,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,83.8,13.73189,0,,0,204,0,0,0,5.31812,0,0,0,0,0,0,69.5586,8.956297,0,,0
-11,1,0,0,2,129091,0,7755.583,22.3963,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,83.8,13.73189,0,,0,204,0,0,0,5.31812,0,0,0,0,0,0,69.5586,8.956297,0,,0
-11,1,0,0,3,129091,0,7755.583,23.3963,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,0,204,0,0,.6931472,5.31812,0,0,0,0,0,0,69.5586,8.956297,.6931472,,0
-11,1,0,0,4,129091,0,7755.583,24.3963,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,0,204,0,0,.6931472,5.31812,0,0,0,0,0,0,69.5586,8.956297,.6931472,,0
-11,1,0,0,5,129091,0,7755.583,25.3963,0,11,1,14.58941,0,0,0,0,14.58941,0,0,0,1,0,2,83.8,13.73189,0,,0,204,0,0,.6931472,5.31812,0,0,0,0,0,0,69.5586,8.956297,.6931472,2.680296,1
-7,1,25,1,1,129103,0,6910.05,5.472964,1,12,1,222.7218,12.71583,0,0,0,235.4377,0,0,0,12,1,4,74.36826,13.73189,0,,224,398,1,1,1.386294,5.986452,0,3.258096,6.79794,0,0,0,76.40307,8.840877,1.386294,5.461446,1
-7,1,25,1,2,129103,0,6910.05,6.472964,1,12,1,127.0537,4.742607,0,0,0,131.7963,0,0,0,12,1,4,74.36826,13.73189,0,,224,398,1,1,1.386294,5.986452,0,3.258096,6.79794,0,0,0,76.40307,8.840877,1.386294,4.881258,1
-7,1,25,1,3,129103,0,6910.05,7.472964,1,12,1,68.32918,14.43392,0,0,0,82.76309,0,0,0,7,1,4,74.36826,13.73189,0,,224,398,1,1,1.386294,5.986452,0,3.258096,6.79794,0,0,0,76.40307,8.840877,1.386294,4.415982,1
-7,1,25,1,1,129104,0,6910.05,38.43943,0,8,1,329.7362,135.4736,28.19544,0,0,493.4053,0,0,0,21,1,4,87.4,30.4,1,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,0,0,1,47.57713,8.840877,1.386294,6.201331,1
-7,1,25,1,2,129104,0,6910.05,39.43943,0,8,1,134.7207,65.96385,0,0,2631.38,2832.065,1,0,0,10,0,4,87.4,30.4,1,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,0,0,1,47.57713,8.840877,1.386294,7.948761,1
-7,1,25,1,3,129104,0,6910.05,40.43943,0,8,1,143.8903,14.93766,0,0,0,158.8279,0,0,0,12,0,4,87.4,30.4,1,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,0,0,1,47.57713,8.840877,1.386294,5.067822,1
-7,1,25,1,1,129105,0,6910.05,33.98768,1,12,1,508.3933,79.76619,41.03717,0,0,629.1967,0,0,0,38,1,4,78.9,26.1,0,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,1,0,0,70.62605,8.840877,1.386294,6.444444,1
-7,1,25,1,2,129105,0,6910.05,34.98768,1,12,1,277.1084,22.51369,0,0,0,299.6221,0,0,0,13,1,4,78.9,26.1,0,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,1,0,0,70.62605,8.840877,1.386294,5.702522,1
-7,1,25,1,3,129105,0,6910.05,35.98768,1,12,1,261.3466,23.19701,34.00998,0,538.4988,857.0524,1,0,0,15,0,4,78.9,26.1,0,,224,398,0,0,1.386294,5.986452,0,3.258096,6.79794,1,0,0,70.62605,8.840877,1.386294,6.753499,1
-7,1,25,1,1,129106,0,6910.05,8.221766,0,12,1,345.024,44.55635,0,0,210.3777,599.958,1,0,0,35,3,4,74.36826,13.73189,0,,224,398,1,0,1.386294,5.986452,0,3.258096,6.79794,0,0,0,81.70934,8.840877,1.386294,6.39686,1
-7,1,25,1,2,129106,0,6910.05,9.221766,0,12,1,289.1566,50.91457,0,0,0,340.0712,0,0,0,46,0,4,74.36826,13.73189,0,,224,398,1,0,1.386294,5.986452,0,3.258096,6.79794,0,0,0,81.70934,8.840877,1.386294,5.829155,1
-7,1,25,1,3,129106,0,6910.05,10.22177,0,12,1,253.4414,20.40898,4.912718,0,0,278.7631,0,0,0,31,0,4,74.36826,13.73189,0,,224,398,1,0,1.386294,5.986452,0,3.258096,6.79794,0,0,0,81.70934,8.840877,1.386294,5.630363,1
-5,1,25,0,1,129128,0,9542.002,54.53799,1,13,1,79.13669,172.6859,0,0,0,251.8225,0,0,0,13,0,1,53.8,13.73189,1,,278,278,0,0,0,5.627621,0,3.258096,7.013916,0,0,0,71.19215,9.163564,0,5.528725,1
-11,1,0,1,1,129131,0,7450.372,20.3039,0,11,1,5.353956,0,0,0,0,5.353956,0,0,0,1,0,3,61.1,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.49515,8.916154,1.098612,1.677836,1
-11,1,0,1,2,129131,0,7450.372,21.3039,0,11,1,22.86336,.7185629,0,0,0,23.58193,0,0,0,2,0,3,61.1,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.49515,8.916154,1.098612,3.16048,1
-11,1,0,1,3,129131,0,7450.372,22.3039,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,61.1,8.7,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.49515,8.916154,1.098612,,0
-11,1,0,1,1,129132,0,7450.372,45.63723,0,8,1,6.543724,3.926234,0,0,0,10.46996,0,0,0,1,0,3,62.1,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,55.14676,8.916154,1.098612,2.34851,1
-11,1,0,1,2,129132,0,7450.372,46.63723,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,62.1,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,55.14676,8.916154,1.098612,,0
-11,1,0,1,3,129132,0,7450.372,47.63723,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,62.1,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,55.14676,8.916154,1.098612,,0
-11,1,0,1,1,129133,0,7450.372,45.59617,1,7,1,34.20583,16.38905,0,0,0,50.59488,0,0,0,1,0,3,43.2,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,51.12005,8.916154,1.098612,3.923851,1
-11,1,0,1,2,129133,0,7450.372,46.59617,1,7,1,5.988024,12.87969,0,0,0,18.86772,0,0,0,1,0,3,43.2,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,51.12005,8.916154,1.098612,2.937453,1
-11,1,0,1,3,129133,0,7450.372,47.59617,1,7,1,73.33994,22.3439,0,0,0,95.68385,0,0,0,3,0,3,43.2,13,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,51.12005,8.916154,1.098612,4.561049,1
-4,1,100,1,1,129134,0,5577.543,13.45654,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,,0
-4,1,100,1,2,129134,0,5577.543,14.45654,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,,0
-4,1,100,1,3,129134,0,5577.543,15.45654,0,10,1,8.478803,0,0,0,0,8.478803,0,0,0,1,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,2.137569,1
-4,1,100,1,1,129135,0,5577.543,15.76728,1,10,1,8.992805,29.1247,0,0,0,38.1175,0,0,0,1,0,5,64.2,17.4,1,,0,0,1,1,1.609438,0,1,0,0,0,0,0,70.25932,8.626683,1.609438,3.640674,1
-4,1,100,1,2,129135,0,5577.543,16.76728,1,10,1,19.71523,6.369113,0,0,0,26.08434,0,0,0,3,0,5,64.2,17.4,1,,0,0,1,1,1.609438,0,1,0,0,0,0,0,70.25932,8.626683,1.609438,3.261335,1
-4,1,100,1,3,129135,0,5577.543,17.76728,1,10,1,36.90773,2.513716,0,0,0,39.42145,0,0,0,2,0,5,64.2,17.4,1,,0,0,1,1,1.609438,0,1,0,0,0,0,0,70.25932,8.626683,1.609438,3.67431,1
-4,1,100,1,1,129136,0,5577.543,10.36277,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,,0
-4,1,100,1,2,129136,0,5577.543,11.36277,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,,0
-4,1,100,1,3,129136,0,5577.543,12.36277,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,1,0,0,0,0,0,81.31855,8.626683,1.609438,,0
-4,1,100,1,1,129137,0,5577.543,50.59548,1,10,1,13.18945,0,0,0,0,13.18945,0,0,0,2,0,5,94.7,8.7,0,,0,0,0,0,1.609438,0,1,0,0,0,0,0,74.53511,8.626683,1.609438,2.579417,1
-4,1,100,1,2,129137,0,5577.543,51.59548,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,94.7,8.7,0,,0,0,0,0,1.609438,0,1,0,0,0,0,0,74.53511,8.626683,1.609438,,0
-4,1,100,1,3,129137,0,5577.543,52.59548,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,94.7,8.7,0,,0,0,0,0,1.609438,0,1,0,0,0,0,0,74.53511,8.626683,1.609438,,0
-4,1,100,1,1,129138,0,5577.543,49.30048,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,71.6,13,1,,0,0,0,0,1.609438,0,1,0,0,1,0,0,63.3497,8.626683,1.609438,,0
-4,1,100,1,2,129138,0,5577.543,50.30048,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,71.6,13,1,,0,0,0,0,1.609438,0,1,0,0,1,0,0,63.3497,8.626683,1.609438,,0
-4,1,100,1,3,129138,0,5577.543,51.30048,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,71.6,13,1,,0,0,0,0,1.609438,0,1,0,0,1,0,0,63.3497,8.626683,1.609438,,0
-2,1,100,0,1,129147,0,5788.461,24.89254,0,12,1,4.196643,3.477218,0,0,0,7.673861,0,0,0,0,1,1,88.8,13.73189,0,,261,261,0,0,0,5.56452,1,0,0,1,0,0,68.8223,8.663795,0,2.03782,1
-2,1,100,0,2,129147,0,5788.461,25.89254,0,12,1,218.5104,13.15991,0,0,1205.619,1437.289,1,0,0,13,0,1,88.8,13.73189,0,,261,261,0,0,0,5.56452,1,0,0,1,0,0,68.8223,8.663795,0,7.270514,1
-2,1,100,0,3,129147,0,5788.461,26.89254,0,12,1,80.54863,3.261845,0,0,0,83.81047,0,0,0,6,0,1,88.8,13.73189,0,,261,261,0,0,0,5.56452,1,0,0,1,0,0,68.8223,8.663795,0,4.428558,1
-2,1,100,0,4,129147,0,5788.461,27.89254,0,12,1,5.532504,0,0,0,0,5.532504,0,0,0,1,0,1,88.8,13.73189,0,,261,261,0,0,0,5.56452,1,0,0,1,0,0,68.8223,8.663795,0,1.71064,1
-2,1,100,0,5,129147,0,5788.461,28.89254,0,12,1,39.35675,3.385527,0,0,0,42.74228,0,0,0,4,1,1,88.8,13.73189,0,,261,261,0,0,0,5.56452,1,0,0,1,0,0,68.8223,8.663795,0,3.755188,1
-11,1,0,0,1,129179,0,3657.568,60.11225,1,12,1,48.29211,66.19553,46.77267,35.33569,0,161.2603,0,0,4,3,1,1,53.7,39.1,1,,0,259,0,0,0,5.556828,0,0,0,1,0,0,71.72364,8.204827,0,5.08302,1
-11,1,0,0,2,129179,0,3657.568,61.11225,1,12,1,71.15903,95.90836,0,32.34501,0,167.0674,0,0,4,7,0,1,53.7,39.1,1,,0,259,0,0,0,5.556828,0,0,0,1,0,0,71.72364,8.204827,0,5.118397,1
-11,1,0,0,3,129179,0,3657.568,62.11225,1,12,1,95.8231,102.113,38,44.22604,0,235.9361,0,0,6,10,2,1,53.7,39.1,1,,0,259,0,0,0,5.556828,0,0,0,1,0,0,71.72364,8.204827,0,5.463561,1
-2,1,100,1,1,129203,1,5182.125,27.6386,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,75.8,21.7,0,,149,0,0,0,.6931472,0,1,0,0,1,0,0,67.06125,8.553164,.6931472,,0
-2,1,100,1,2,129203,1,5182.125,28.6386,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,75.8,21.7,0,,149,0,0,0,.6931472,0,1,0,0,1,0,0,67.06125,8.553164,.6931472,,0
-2,1,100,1,3,129203,1,5182.125,29.6386,1,16,1,0,6.359102,0,0,0,6.359102,0,0,0,0,0,2,75.8,21.7,0,,149,0,0,0,.6931472,0,1,0,0,1,0,0,67.06125,8.553164,.6931472,1.849887,1
-2,1,100,1,1,129204,1,5182.125,2.201232,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,149,0,1,1,.6931472,0,1,0,0,1,0,0,82.66727,8.553164,.6931472,,0
-2,1,100,1,2,129204,1,5182.125,3.201232,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,149,0,1,1,.6931472,0,1,0,0,1,0,0,82.66727,8.553164,.6931472,,0
-2,1,100,1,3,129204,1,5182.125,4.201232,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,149,0,1,1,.6931472,0,1,0,0,1,0,0,82.66727,8.553164,.6931472,,0
-7,1,25,0,1,129210,0,4188.585,20.94182,1,12,1,148.9988,68.49235,0,0,529.4464,746.9376,1,0,0,9,0,1,41.1,17.4,0,,600,600,0,0,0,6.39693,0,3.258096,7.783224,1,0,0,65.09395,8.340357,0,6.615982,1
-7,1,25,0,2,129210,0,4188.585,21.94182,1,12,1,171.3208,81.22372,0,0,0,252.5445,0,0,0,15,1,1,41.1,17.4,0,,600,600,0,0,0,6.39693,0,3.258096,7.783224,1,0,0,65.09395,8.340357,0,5.531588,1
-7,1,25,0,3,129210,0,4188.585,22.94182,1,12,1,211.769,46.82555,27.02703,0,756.0393,1041.661,2,0,0,19,2,1,41.1,17.4,0,,600,600,0,0,0,6.39693,0,3.258096,7.783224,1,0,0,65.09395,8.340357,0,6.948572,1
-7,1,25,0,4,129210,0,4188.585,23.94182,1,12,1,87.4886,0,.7520511,0,836.4585,924.6992,1,0,0,2,0,1,41.1,17.4,0,,600,600,0,0,0,6.39693,0,3.258096,7.783224,1,0,0,65.09395,8.340357,0,6.829468,1
-7,1,25,0,5,129210,0,4188.585,24.94182,1,12,1,75.4481,0,0,0,0,75.4481,0,0,0,3,1,2,41.1,17.4,0,,600,600,0,0,.6931472,6.39693,0,3.258096,7.783224,1,0,0,65.09395,8.340357,.6931472,4.323445,1
-7,1,25,0,1,129211,0,246.8983,23.35113,1,12,1,159.894,34.2874,0,0,0,194.1814,0,0,0,9,1,2,53.7,30.4,0,,0,0,0,0,.6931472,0,0,3.258096,0,0,1,0,55.25999,5.513019,.6931472,5.268793,1
-7,1,25,0,2,129211,0,246.8983,24.35113,1,12,1,249.0566,109.8976,0,0,0,358.9542,0,0,0,12,2,2,53.7,30.4,0,,0,0,0,0,.6931472,0,0,3.258096,0,0,1,0,55.25999,5.513019,.6931472,5.883195,1
-7,1,25,0,3,129211,0,246.8983,25.35113,1,12,1,188.5012,94.82555,0,0,0,283.3268,0,0,0,9,2,2,53.7,30.4,0,,0,0,0,0,.6931472,0,0,3.258096,0,0,1,0,55.25999,5.513019,.6931472,5.646601,1
-7,1,25,0,4,129211,0,246.8983,26.35113,1,12,1,368.7329,112.1422,0,0,1234.48,1715.355,1,0,0,8,1,2,53.7,30.4,0,,0,0,0,0,.6931472,0,0,3.258096,0,0,1,0,55.25999,5.513019,.6931472,7.447376,1
-7,1,25,0,5,129211,0,246.8983,27.35113,1,12,1,306.1693,209.7541,0,449.1455,0,515.9233,0,0,24,12,0,3,53.7,30.4,0,,0,0,0,0,1.098612,0,0,3.258096,0,0,1,0,55.25999,5.513019,1.098612,6.245958,1
-7,1,25,0,1,129212,0,246.8983,4.741958,0,12,1,45.78917,1.914016,0,0,0,47.70318,0,0,0,2,1,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,3.258096,0,1,0,0,72.59683,5.513019,.6931472,3.864998,1
-7,1,25,0,2,129212,0,246.8983,5.741958,0,12,1,6.469003,1.886792,0,0,0,8.355795,0,0,0,1,0,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,3.258096,0,1,0,0,72.59683,5.513019,.6931472,2.122955,1
-7,1,25,0,3,129212,0,246.8983,6.741958,0,12,1,19.16462,2.211302,0,0,0,21.37592,0,0,0,2,0,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,3.258096,0,1,0,0,72.59683,5.513019,.6931472,3.062265,1
-7,1,25,0,4,129212,0,246.8983,7.741958,0,12,1,16.86418,5.350957,0,0,0,22.21513,0,0,0,1,1,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,3.258096,0,1,0,0,72.59683,5.513019,.6931472,3.100774,1
-7,1,25,0,5,129212,0,246.8983,8.741958,0,12,1,61.69237,0,0,151.1046,0,61.69237,0,0,9,2,1,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,3.258096,0,1,0,0,72.59683,5.513019,1.098612,4.12216,1
-7,1,25,0,1,129214,0,945.2643,19.68515,1,12,1,21.20141,27.88575,0,0,0,49.08716,0,0,0,2,0,1,58.9,8.7,0,,0,0,0,0,0,0,0,3.258096,0,1,0,0,62.32022,6.852522,0,3.893598,1
-7,1,25,0,2,129214,0,945.2643,20.68515,1,12,1,29.6496,0,31.69811,0,0,61.34771,0,0,0,2,0,1,58.9,8.7,0,,0,0,0,0,0,0,0,3.258096,0,1,0,0,62.32022,6.852522,0,4.116558,1
-7,1,25,0,3,129214,0,945.2643,21.68515,1,12,1,73.21867,24.15725,0,0,0,97.37592,0,0,0,5,0,1,58.9,8.7,0,,0,0,0,0,0,0,0,3.258096,0,1,0,0,62.32022,6.852522,0,4.578579,1
-7,1,25,0,4,129214,0,945.2643,22.68515,1,12,1,39.19781,18.03555,0,0,0,57.23336,0,0,0,4,0,1,58.9,8.7,0,,0,0,0,0,0,0,0,3.258096,0,1,0,0,62.32022,6.852522,0,4.047137,1
-7,1,25,0,5,129214,0,945.2643,23.68515,1,12,1,161.7341,4.114214,23.07211,0,0,188.9204,0,0,0,8,0,1,58.9,8.7,0,,0,0,0,0,0,0,0,3.258096,0,1,0,0,62.32022,6.852522,0,5.241326,1
-11,1,0,1,1,129223,0,8825.683,5.314168,0,10,1,123.6749,23.89281,0,0,0,147.5677,0,0,0,11,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,73.78497,9.085534,1.609438,4.994287,1
-11,1,0,1,2,129223,0,8825.683,6.314168,0,10,1,93.90836,13.64421,0,0,0,107.5526,0,0,0,2,1,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,73.78497,9.085534,1.609438,4.677979,1
-11,1,0,1,3,129223,0,8825.683,7.314168,0,10,1,16.21622,3.341523,0,0,0,19.55774,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,0,1.609438,0,0,0,0,1,0,0,73.78497,9.085534,1.609438,2.973371,1
-11,1,0,1,1,129224,0,8825.683,6.707735,1,10,1,18.25677,15.10601,0,0,0,33.36278,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,3.507441,1
-11,1,0,1,2,129224,0,8825.683,7.707735,1,10,1,53.18059,2.070081,0,0,0,55.25068,0,0,0,2,2,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,4.01188,1
-11,1,0,1,3,129224,0,8825.683,8.707734,1,10,1,38.82064,5.380836,0,0,0,44.20147,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,3.788758,1
-11,1,0,1,1,129225,0,8825.683,8.67625,1,10,1,25.91284,9.228504,0,0,0,35.14134,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,3.559378,1
-11,1,0,1,2,129225,0,8825.683,9.67625,1,10,1,16.17251,2.695418,0,0,0,18.86792,0,0,0,3,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,2.937463,1
-11,1,0,1,3,129225,0,8825.683,10.67625,1,10,1,42.26044,3.439803,0,0,0,45.70024,0,0,0,4,0,5,74.36826,13.73189,0,,0,0,1,1,1.609438,0,0,0,0,1,0,0,76.70262,9.085534,1.609438,3.822104,1
-11,1,0,1,1,129226,0,8825.683,24.72553,1,10,1,582.2438,26.8139,0,0,0,609.0577,0,0,0,13,0,5,76.8,26.1,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,69.42252,9.085534,1.609438,6.411913,1
-11,1,0,1,2,129226,0,8825.683,25.72553,1,10,1,221.1429,28.06469,22.2372,0,1094.771,1366.216,1,0,0,14,1,5,76.8,26.1,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,69.42252,9.085534,1.609438,7.2198,1
-11,1,0,1,3,129226,0,8825.683,26.72553,1,10,1,27.02703,9.68059,0,0,0,36.70761,0,0,0,2,0,5,76.8,26.1,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,69.42252,9.085534,1.609438,3.602984,1
-11,1,0,1,1,129227,0,8825.683,29.88912,0,10,1,122.4971,38.404,0,0,0,160.9011,0,0,0,10,0,5,86.3,13,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.37903,9.085534,1.609438,5.08079,1
-11,1,0,1,2,129227,0,8825.683,30.88912,0,10,1,101.8868,13.16981,0,0,0,115.0566,0,0,0,4,0,5,86.3,13,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.37903,9.085534,1.609438,4.745424,1
-11,1,0,1,3,129227,0,8825.683,31.88912,0,10,1,36.85504,12.35872,0,0,0,49.21376,0,0,0,3,0,5,86.3,13,0,,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.37903,9.085534,1.609438,3.896173,1
-8,1,50,0,1,129232,0,1,19.39767,0,6,1,6.031363,0,33.1725,0,0,39.20386,0,0,0,0,1,2,83.8,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,71.22549,.6931472,.6931472,3.668775,1
-8,1,50,0,2,129232,0,1,20.39767,0,6,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,71.22549,.6931472,.6931472,,0
-8,1,50,0,3,129232,0,1,21.39767,0,6,1,0,0,0,0,0,0,0,0,0,0,0,2,83.8,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,71.22549,.6931472,.6931472,,0
-8,1,50,0,1,129233,0,1,19.07461,1,12,1,65.24728,1.960193,0,0,0,67.20748,0,0,0,3,0,2,97.5,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,75.26614,.6931472,.6931472,4.207785,1
-8,1,50,0,2,129233,0,1,20.07461,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,97.5,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,75.26614,.6931472,.6931472,,0
-8,1,50,0,3,129233,0,1,21.07461,1,12,1,150.9292,26.25816,0,0,457.1371,634.3245,1,0,0,6,1,2,97.5,13.73189,0,,83,0,0,0,.6931472,0,0,3.931826,5.111988,0,0,0,75.26614,.6931472,.6931472,6.45256,1
-8,1,50,0,4,129233,0,1,22.07461,1,12,1,67.79787,12.23922,0,0,0,80.03709,0,0,0,8,0,1,97.5,13.73189,0,,83,0,0,0,0,0,0,3.931826,5.111988,0,0,0,75.26614,.6931472,0,4.38249,1
-8,1,50,0,5,129233,0,1,23.07461,1,12,1,143.3433,19.77882,0,37.2182,1318.609,1481.731,1,0,2,17,0,1,97.5,13.73189,0,,83,0,0,0,0,0,0,3.931826,5.111988,0,0,0,75.26614,.6931472,0,7.300966,1
-6,1,25,1,1,129245,0,5303.97,23.75633,1,14,1,0,49.74668,7.237636,0,1212.581,1269.566,1,0,0,0,0,2,93.7,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,79.52284,8.5764,.6931472,7.14643,1
-6,1,25,1,2,129245,0,5303.97,24.75633,1,14,1,26.43172,19.10793,18.99229,0,0,64.53194,0,0,0,2,1,3,93.7,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.52284,8.5764,1.098612,4.16716,1
-6,1,25,1,3,129245,0,5303.97,25.75633,1,14,1,22.60171,3.360121,28.34254,0,0,54.30437,0,0,0,1,1,3,93.7,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.52284,8.5764,1.098612,3.994605,1
-6,1,25,1,4,129245,0,5303.97,26.75633,1,14,1,28.28002,53.84794,0,0,0,82.12795,0,0,0,2,1,3,93.7,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.52284,8.5764,1.098612,4.408278,1
-6,1,25,1,5,129245,0,5303.97,27.75633,1,14,1,30.62527,49.87239,0,0,0,80.49766,0,0,0,3,0,3,93.7,8.7,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,79.52284,8.5764,1.098612,4.388228,1
-6,1,25,1,1,129246,0,5303.97,24.59411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.5,0,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,78.37115,8.5764,.6931472,,0
-6,1,25,1,2,129246,0,5303.97,25.59411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.5,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.37115,8.5764,1.098612,,0
-6,1,25,1,3,129246,0,5303.97,26.59411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.5,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.37115,8.5764,1.098612,,0
-6,1,25,1,4,129246,0,5303.97,27.59411,0,12,1,7.881317,0,0,0,0,7.881317,0,0,0,1,0,3,89.5,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.37115,8.5764,1.098612,2.064495,1
-6,1,25,1,5,129246,0,5303.97,28.59411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.5,0,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.37115,8.5764,1.098612,,0
-11,1,0,1,1,129252,1,1004.963,3.156742,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,1,0,77.77277,6.9137,1.098612,,0
-11,1,0,1,2,129252,1,1004.963,4.156742,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,1,0,77.77277,6.9137,1.386294,,0
-11,1,0,1,3,129252,1,1004.963,5.156742,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,1,0,77.77277,6.9137,1.386294,,0
-11,1,0,1,1,129253,1,1004.963,25.50582,1,12,1,0,0,0,0,0,0,1,1,0,0,0,3,76.8,26.1,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,63.3701,6.9137,1.098612,,0
-11,1,0,1,2,129253,1,1004.963,26.50582,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,26.1,0,,0,0,0,0,1.386294,0,0,0,0,0,1,0,63.3701,6.9137,1.386294,,0
-11,1,0,1,3,129253,1,1004.963,27.50582,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,26.1,0,,0,0,0,0,1.386294,0,0,0,0,0,1,0,63.3701,6.9137,1.386294,,0
-11,1,0,1,1,129254,1,1004.963,1.683778,1,12,1,4.796163,0,0,0,0,4.796163,0,0,0,0,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,1,0,77.77277,6.9137,1.098612,1.567816,1
-11,1,0,1,2,129254,1,1004.963,2.683778,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,1,0,77.77277,6.9137,1.386294,,0
-11,1,0,1,3,129254,1,1004.963,3.683778,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,1,0,77.77277,6.9137,1.386294,,0
-11,1,0,1,1,129255,0,6108.39,21.74675,0,12,1,14.98801,0,32.94365,0,0,47.93166,0,0,0,1,0,2,80,4.3,0,,0,146,0,0,.6931472,4.983607,0,0,0,0,0,0,71.70338,8.717582,.6931472,3.869776,1
-11,1,0,1,2,129255,0,6108.39,22.74675,0,12,1,46.00219,1.09529,0,0,0,47.09748,0,0,0,6,0,2,80,4.3,0,,0,146,0,0,.6931472,4.983607,0,0,0,0,0,0,71.70338,8.717582,.6931472,3.85222,1
-11,1,0,1,3,129255,0,6108.39,23.74675,0,12,1,19.45137,.9975063,0,0,0,20.44888,0,0,0,2,0,3,80,4.3,0,,0,146,0,0,1.098612,4.983607,0,0,0,0,0,0,71.70338,8.717582,1.098612,3.017928,1
-11,1,0,1,1,129256,0,6108.39,20.68446,1,12,1,167.6859,0,0,0,0,167.6859,0,0,0,9,0,2,73.7,8.7,0,,0,146,0,0,.6931472,4.983607,0,0,0,0,0,0,72.59457,8.717582,.6931472,5.122092,1
-11,1,0,1,2,129256,0,6108.39,21.68446,1,12,1,34.50164,4.107338,31.47317,0,828.5597,898.6418,1,0,0,3,0,2,73.7,8.7,0,,0,146,0,0,.6931472,4.983607,0,0,0,0,0,0,72.59457,8.717582,.6931472,6.800885,1
-11,1,0,1,3,129256,0,6108.39,22.68446,1,12,1,24.93766,0,0,0,0,24.93766,0,0,0,3,0,3,73.7,8.7,0,,0,146,0,0,1.098612,4.983607,0,0,0,0,0,0,72.59457,8.717582,1.098612,3.216379,1
-11,1,0,1,1,129270,0,12332.6,35.96714,1,12,1,59.95204,18.57914,19.76019,0,646.7866,745.0779,1,0,0,5,1,5,77.9,8.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,1,0,0,69.12635,9.420083,1.609438,6.613489,1
-11,1,0,1,2,129270,0,12332.6,36.96714,1,12,1,20.04381,10.02191,0,0,0,30.06572,0,0,0,2,1,5,77.9,8.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,1,0,0,69.12635,9.420083,1.609438,3.403386,1
-11,1,0,1,3,129270,0,12332.6,37.96714,1,12,1,30.52369,6.80798,0,0,0,37.33167,0,0,0,3,0,5,77.9,8.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,1,0,0,69.12635,9.420083,1.609438,3.619842,1
-11,1,0,0,1,129271,0,12332.6,15.54825,0,12,1,27.81775,15.25779,30.54556,14.98801,1601.679,1675.3,1,0,1,2,1,5,74.36826,13.73189,.12982,,0,195.84,1,0,1.609438,5.277298,0,0,0,0,0,0,76.5796,9.420083,1.609438,7.423748,1
-11,1,0,0,2,129271,0,12332.6,16.54825,0,12,1,74.56188,15.03286,2.601314,13.69113,0,92.19606,0,0,1,6,0,5,74.36826,13.73189,.12982,,0,195.84,1,0,1.609438,5.277298,0,0,0,0,0,0,76.5796,9.420083,1.609438,4.523917,1
-11,1,0,0,3,129271,0,12332.6,17.54825,0,12,1,10.17456,6.932668,0,0,0,17.10723,0,0,0,2,0,5,74.36826,13.73189,.12982,,0,195.84,1,0,1.609438,5.277298,0,0,0,0,0,0,76.5796,9.420083,1.609438,2.839501,1
-11,1,0,1,1,129272,0,12332.6,12.54757,1,12,1,95.80336,3.776978,21.7506,0,0,121.3309,0,0,0,3,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,84.30681,9.420083,1.609438,4.798522,1
-11,1,0,1,2,129272,0,12332.6,13.54757,1,12,1,28.03943,0,19.59474,0,0,47.63417,0,0,0,2,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,84.30681,9.420083,1.609438,3.86355,1
-11,1,0,1,3,129272,0,12332.6,14.54757,1,12,1,59.75062,1.995013,10.97257,0,0,72.7182,0,0,0,4,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,84.30681,9.420083,1.609438,4.286592,1
-11,1,0,1,1,129273,0,12332.6,9.667351,1,12,1,42.20623,5.845324,14.64628,0,0,62.69784,0,0,0,3,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,85.26604,9.420083,1.609438,4.138327,1
-11,1,0,1,2,129273,0,12332.6,10.66735,1,12,1,54.70975,10.21358,9.364732,0,0,74.28806,0,0,0,5,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,85.26604,9.420083,1.609438,4.30795,1
-11,1,0,1,3,129273,0,12332.6,11.66735,1,12,1,37.30673,3.915212,21.10225,0,0,62.32419,0,0,0,4,1,5,74.36826,13.73189,0,,0,195.84,1,1,1.609438,5.277298,0,0,0,0,0,0,85.26604,9.420083,1.609438,4.132349,1
-11,1,0,1,1,129274,0,12332.6,37.24846,0,13,1,127.0983,42.68585,30.04796,0,0,199.8321,0,0,0,8,2,5,69.5,21.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,0,0,0,78.98214,9.420083,1.609438,5.297478,1
-11,1,0,1,2,129274,0,12332.6,38.24846,0,13,1,219.7152,63.19825,0,0,162.8149,445.7284,1,0,0,10,1,5,69.5,21.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,0,0,0,78.98214,9.420083,1.609438,6.09971,1
-11,1,0,1,3,129274,0,12332.6,39.24846,0,13,1,74.71322,97.00748,24.5187,0,366.5636,562.803,1,0,0,10,1,5,69.5,21.7,0,,0,195.84,0,0,1.609438,5.277298,0,0,0,0,0,0,78.98214,9.420083,1.609438,6.33293,1
-8,1,50,1,1,129300,1,7050.248,8.64887,1,16,1,9.592326,0,0,0,0,9.592326,0,0,0,0,1,2,74.36826,13.73189,0,,399,399,1,1,.6931472,5.988961,0,3.931826,6.682108,1,0,0,87.67074,8.86096,.6931472,2.260963,1
-8,1,50,1,2,129300,1,7050.248,9.64887,1,16,1,20.28477,0,20.78313,0,0,41.06791,0,0,0,1,1,2,74.36826,13.73189,0,,399,399,1,1,.6931472,5.988961,0,3.931826,6.682108,1,0,0,87.67074,8.86096,.6931472,3.715227,1
-8,1,50,1,3,129300,1,7050.248,10.64887,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,399,399,1,1,.6931472,5.988961,0,3.931826,6.682108,1,0,0,87.67074,8.86096,.6931472,,0
-8,1,50,1,4,129300,1,7050.248,11.64887,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,74.36826,13.73189,0,,399,399,1,1,.6931472,5.988961,0,3.931826,6.682108,1,0,0,87.67074,8.86096,.6931472,,0
-8,1,50,1,5,129300,1,7050.248,12.64887,1,16,1,26.66102,0,0,0,0,26.66102,0,0,0,1,0,2,74.36826,13.73189,0,,399,399,1,1,.6931472,5.988961,0,3.931826,6.682108,1,0,0,87.67074,8.86096,.6931472,3.283203,1
-8,1,50,1,1,129301,1,7050.248,24.47912,1,16,1,113.783,12.94964,0,0,0,126.7326,0,0,0,7,1,2,73.7,8.7,0,,399,399,0,0,.6931472,5.988961,0,3.931826,6.682108,1,0,0,69.04362,8.86096,.6931472,4.84208,1
-8,1,50,1,2,129301,1,7050.248,25.47912,1,16,1,280.8488,24.04162,.5476452,0,0,305.4381,0,0,0,10,3,2,73.7,8.7,0,,399,399,0,0,.6931472,5.988961,0,3.931826,6.682108,1,0,0,69.04362,8.86096,.6931472,5.721747,1
-8,1,50,1,3,129301,1,7050.248,26.47912,1,16,1,97.75561,21.98005,0,0,0,119.7357,0,0,0,4,0,2,73.7,8.7,0,,399,399,0,0,.6931472,5.988961,0,3.931826,6.682108,1,0,0,69.04362,8.86096,.6931472,4.785286,1
-8,1,50,1,4,129301,1,7050.248,27.47912,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,73.7,8.7,0,,399,399,0,0,.6931472,5.988961,0,3.931826,6.682108,1,0,0,69.04362,8.86096,.6931472,,0
-8,1,50,1,5,129301,1,7050.248,28.47912,1,16,1,37.2408,0,0,0,0,37.2408,0,0,0,1,0,2,73.7,8.7,0,,399,399,0,0,.6931472,5.988961,0,3.931826,6.682108,1,0,0,69.04362,8.86096,.6931472,3.617405,1
-9,1,50,0,1,129302,0,4777.916,1.330595,1,12,1,90.47044,12.8468,0,0,594.7527,698.0699,1,0,0,9,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,6.548319,1
-9,1,50,0,2,129302,0,4777.916,2.330595,1,12,1,66.35462,8.001101,0,0,0,74.35573,0,0,0,1,7,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,4.308861,1
-9,1,50,0,3,129302,0,4777.916,3.330595,1,12,1,208.9402,0,0,0,0,208.9402,0,0,0,2,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,5.342048,1
-9,1,50,0,4,129302,0,4777.916,4.330595,1,12,1,44.04265,0,0,0,0,44.04265,0,0,0,4,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,3.785159,1
-9,1,50,0,5,129302,0,4777.916,5.330595,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,,0
-9,1,50,0,1,129303,0,4777.916,28.73922,0,13,1,5.428227,0,0,0,0,5.428227,0,0,0,1,0,4,80,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,0,0,0,78.1277,8.471969,1.386294,1.691613,1
-9,1,50,0,2,129303,0,4777.916,29.73922,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,0,0,0,78.1277,8.471969,1.386294,,0
-9,1,50,0,3,129303,0,4777.916,30.73922,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,0,0,0,78.1277,8.471969,1.386294,,0
-9,1,50,0,4,129303,0,4777.916,31.73922,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,0,0,0,78.1277,8.471969,1.386294,,0
-9,1,50,0,5,129303,0,4777.916,32.73922,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,0,0,0,78.1277,8.471969,1.386294,,0
-9,1,50,0,1,129304,0,4777.916,25.1718,1,12,1,105.5489,0,0,0,0,105.5489,0,0,0,8,0,4,57.5,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,1,0,0,72.25999,8.471969,1.386294,4.659174,1
-9,1,50,0,2,129304,0,4777.916,26.1718,1,12,1,31.38766,5.286344,0,0,0,36.67401,0,0,0,5,0,4,57.5,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,1,0,0,72.25999,8.471969,1.386294,3.602068,1
-9,1,50,0,3,129304,0,4777.916,27.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,57.5,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,1,0,0,72.25999,8.471969,1.386294,,0
-9,1,50,0,4,129304,0,4777.916,28.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,57.5,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,1,0,0,72.25999,8.471969,1.386294,,0
-9,1,50,0,5,129304,0,4777.916,29.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,57.5,13.73189,0,,970,0,0,0,1.386294,0,0,3.931826,7.570443,1,0,0,72.25999,8.471969,1.386294,,0
-9,1,50,0,1,129305,0,4777.916,4.134155,1,12,1,22.91918,2.237636,0,0,0,25.15681,0,0,0,3,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,3.225129,1
-9,1,50,0,2,129305,0,4777.916,5.134155,1,12,1,12.6652,0,0,0,0,12.6652,0,0,0,1,2,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,2.538858,1
-9,1,50,0,3,129305,0,4777.916,6.134155,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,,0
-9,1,50,0,4,129305,0,4777.916,7.134155,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,,0
-9,1,50,0,5,129305,0,4777.916,8.134154,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,970,0,1,1,1.386294,0,0,3.931826,7.570443,0,0,0,79.16405,8.471969,1.386294,,0
-7,1,25,0,1,129306,0,4133.375,26.90212,1,12,1,61.83746,86.71967,0,0,0,148.5571,0,0,0,9,0,1,72.6,13,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,71.01371,8.327091,0,5.000969,1
-7,1,25,0,2,129306,0,4133.375,27.90212,1,12,1,26.95418,83.71967,22.53369,0,0,133.2076,0,0,0,4,0,1,72.6,13,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,71.01371,8.327091,0,4.891909,1
-7,1,25,0,3,129306,0,4133.375,28.90212,1,12,1,68.30466,41.7199,0,0,0,110.0246,0,0,0,8,0,1,72.6,13,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,71.01371,8.327091,0,4.700704,1
-11,1,0,0,1,129307,1,1,21.62081,0,13,1,15.07841,1.718938,0,0,0,16.79735,0,0,0,1,0,2,81.3,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,0,1,0,71.36481,.6931472,.6931472,2.821221,1
-11,1,0,0,2,129307,1,1,22.62081,0,13,1,63.32599,0,0,0,0,63.32599,0,0,0,3,0,3,81.3,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,71.36481,.6931472,1.098612,4.148296,1
-11,1,0,0,3,129307,1,1,23.62081,0,13,1,51.7328,0,33.06881,0,0,84.80161,0,0,0,4,2,3,81.3,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,1,0,71.36481,.6931472,1.098612,4.440314,1
-11,1,0,0,1,129308,1,1,21.13895,1,14,1,0,0,0,0,0,0,1,1,0,0,0,2,96.3,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.04893,.6931472,.6931472,,0
-11,1,0,0,2,129308,1,1,22.13895,1,14,1,9.911894,0,35.10463,0,0,45.01652,0,0,0,0,1,3,96.3,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.04893,.6931472,1.098612,3.807029,1
-11,1,0,0,3,129308,1,1,23.13895,1,14,1,82.37067,0,0,0,0,82.37067,0,0,0,7,0,3,96.3,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.04893,.6931472,1.098612,4.41123,1
-1,1,0,0,1,129310,0,9542.002,21.45106,1,12,1,40.04712,15.63604,17.85041,0,0,73.53357,0,0,0,3,1,2,76.8,13,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,78.30641,9.163564,.6931472,4.297742,1
-1,1,0,0,2,129310,0,9542.002,22.45106,1,12,1,53.90836,37.7089,0,0,0,91.61725,0,0,0,6,0,2,76.8,13,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,78.30641,9.163564,.6931472,4.51762,1
-1,1,0,0,3,129310,0,9542.002,23.45106,1,12,1,38.82064,15.87224,0,0,0,54.69287,0,0,0,3,1,2,76.8,13,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,78.30641,9.163564,.6931472,4.001733,1
-1,1,0,0,1,129311,0,9542.002,24.15058,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,74.7,0,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,77.41523,9.163564,.6931472,,0
-1,1,0,0,2,129311,0,9542.002,25.15058,0,12,1,353.3154,19.86523,0,0,0,373.1806,0,0,0,9,0,2,74.7,0,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,77.41523,9.163564,.6931472,5.922062,1
-1,1,0,0,3,129311,0,9542.002,26.15058,0,12,1,3.685504,2.653563,0,0,0,6.339067,0,0,0,0,0,2,74.7,0,0,,300,649,0,0,.6931472,6.475433,1,0,0,0,0,0,77.41523,9.163564,.6931472,1.846732,1
-11,1,0,1,1,129314,0,9542.002,.9390828,0,12,1,97.46761,27.73852,0,0,0,125.2061,0,0,0,5,7,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,0,0,0,0,0,81.70645,9.163564,.6931472,4.829961,1
-11,1,0,1,2,129314,0,9542.002,1.939083,0,12,1,73.31536,34.93261,0,0,0,108.248,0,0,0,12,0,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,0,0,0,0,0,81.70645,9.163564,.6931472,4.684425,1
-11,1,0,1,3,129314,0,9542.002,2.939083,0,12,1,282.5061,58.91892,0,0,0,341.425,0,0,0,44,1,2,74.36826,13.73189,0,,0,0,1,0,.6931472,0,0,0,0,0,0,0,81.70645,9.163564,.6931472,5.833128,1
-11,1,0,1,4,129314,0,9542.002,3.939083,0,12,1,292.753,91.9918,0,0,835.6199,1220.365,1,0,0,56,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.70645,9.163564,1.098612,7.106905,1
-11,1,0,1,5,129314,0,9542.002,4.939083,0,12,1,244.8729,115.6899,0,0,0,360.5627,0,0,0,38,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.70645,9.163564,1.098612,5.887666,1
-11,1,0,1,1,129316,0,9542.002,27.58932,1,12,1,149.5878,36.21908,0,0,0,185.8068,0,0,0,10,0,2,35.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.3485,9.163564,.6931472,5.224708,1
-11,1,0,1,2,129316,0,9542.002,28.58932,1,12,1,29.11051,26.76011,0,0,0,55.87062,0,0,0,4,0,2,35.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.3485,9.163564,.6931472,4.023039,1
-11,1,0,1,3,129316,0,9542.002,29.58932,1,12,1,33.90664,17.88206,0,0,1251.101,1302.889,1,0,0,4,0,2,35.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.3485,9.163564,.6931472,7.17234,1
-11,1,0,1,4,129316,0,9542.002,30.58932,1,12,1,15.04102,1.873291,0,0,0,16.91431,0,0,0,1,0,3,35.8,8.7,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.3485,9.163564,1.098612,2.82816,1
-11,1,0,1,5,129316,0,9542.002,31.58932,1,12,1,83.36807,0,16.25677,0,0,99.62485,0,0,0,3,2,3,35.8,8.7,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.3485,9.163564,1.098612,4.601412,1
-11,1,0,0,1,129337,0,8508.685,27.55373,0,17,1,8.833922,0,33.245,0,0,42.07891,0,0,0,0,1,3,86.3,13.73189,0,,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,78.16702,9.04896,1.098612,3.739547,1
-11,1,0,0,2,129337,0,8508.685,28.55373,0,17,1,66.84636,3.121294,0,0,0,69.96765,0,0,0,5,0,4,86.3,13.73189,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.16702,9.04896,1.386294,4.248033,1
-11,1,0,0,3,129337,0,8508.685,29.55373,0,17,1,9.82801,0,31.83784,0,0,41.66585,0,0,0,0,1,4,86.3,13.73189,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,78.16702,9.04896,1.386294,3.729682,1
-11,1,0,0,1,129338,0,8508.685,4.062971,1,15,1,43.58068,10.5477,24.00471,0,0,78.13309,0,0,0,7,1,3,74.36826,13.73189,0,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,78.34785,9.04896,1.098612,4.358414,1
-11,1,0,0,2,129338,0,8508.685,5.062971,1,15,1,68.46362,11.22372,20.28032,0,0,99.96765,0,0,0,7,1,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,78.34785,9.04896,1.386294,4.604846,1
-11,1,0,0,3,129338,0,8508.685,6.062971,1,15,1,56.26536,18.88452,0,0,0,75.14988,0,0,0,9,0,4,74.36826,13.73189,0,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,78.34785,9.04896,1.386294,4.319485,1
-11,1,0,0,1,129339,0,8508.685,24.99658,1,15,1,84.21673,29.6172,0,0,679.0047,792.8386,1,0,0,3,0,3,87.5,13.73189,0,,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,75.85274,9.04896,1.098612,6.67562,1
-11,1,0,0,2,129339,0,8508.685,25.99658,1,15,1,187.0296,41.81671,0,0,0,228.8464,0,0,0,7,0,4,87.5,13.73189,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,75.85274,9.04896,1.386294,5.433051,1
-11,1,0,0,3,129339,0,8508.685,26.99658,1,15,1,48.40295,19.54791,31.32678,0,0,99.27764,0,0,0,4,1,4,87.5,13.73189,0,,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,75.85274,9.04896,1.386294,4.59792,1
-3,1,100,1,1,129357,0,9579.404,23.82478,0,17,1,5.035971,2.278177,0,0,0,7.314149,0,0,0,1,0,2,64.2,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.02597,9.167475,.6931472,1.989811,1
-3,1,100,1,2,129357,0,9579.404,24.82478,0,17,1,80.83242,16.92223,0,0,0,97.75465,0,0,0,5,0,2,64.2,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.02597,9.167475,.6931472,4.582461,1
-3,1,100,1,3,129357,0,9579.404,25.82478,0,17,1,22.59352,4.538653,0,0,0,27.13217,0,0,0,3,0,2,64.2,4.3,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,78.02597,9.167475,.6931472,3.30072,1
-3,1,100,1,1,129358,0,9579.404,23.46064,1,16,1,31.17506,8.303357,0,0,0,39.47842,0,0,0,3,0,2,68.4,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.9765,9.167475,.6931472,3.675754,1
-3,1,100,1,2,129358,0,9579.404,24.46064,1,16,1,55.42169,9.611172,0,0,0,65.03286,0,0,0,5,0,2,68.4,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.9765,9.167475,.6931472,4.174893,1
-3,1,100,1,3,129358,0,9579.404,25.46064,1,16,1,9.975062,10.84788,0,0,0,20.82294,0,0,0,1,0,2,68.4,8.7,0,,1000,1000,0,0,.6931472,6.907755,1,0,0,0,0,0,77.9765,9.167475,.6931472,3.036055,1
-4,1,100,0,1,129373,1,248.139,21.90554,0,11,1,23.98082,0,0,0,0,23.98082,0,0,0,1,0,1,93.7,0,0,,1000,0,0,0,0,0,1,0,0,0,0,0,71.14789,5.518011,0,3.177254,1
-4,1,100,0,2,129373,1,248.139,22.90554,0,11,1,29.02519,33.43373,0,0,0,62.45893,0,0,0,2,0,1,93.7,0,0,,1000,0,0,0,0,0,1,0,0,0,0,0,71.14789,5.518011,0,4.134509,1
-4,1,100,0,3,129373,1,248.139,23.90554,0,11,1,0,10.22444,0,0,0,10.22444,0,0,0,0,0,1,93.7,0,0,,1000,0,0,0,0,0,1,0,0,0,0,0,71.14789,5.518011,0,2.324781,1
-4,1,100,0,5,129373,1,248.139,25.90554,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,93.7,0,0,,1000,0,0,0,0,0,1,0,0,0,0,0,71.14789,5.518011,0,,0
-11,1,0,1,1,129383,0,14693.55,16.08761,0,12,1,118.9635,44.58186,36.51355,0,574.6407,774.6996,1,0,0,4,0,3,81.1,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,79.81767,9.595232,1.098612,6.652475,1
-11,1,0,1,2,129383,0,14693.55,17.08761,0,12,1,30.18868,27.22372,0,0,0,57.4124,0,0,0,5,0,3,81.1,4.3,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,79.81767,9.595232,1.098612,4.05026,1
-11,1,0,1,3,129383,0,14693.55,18.08761,0,12,1,44.22604,20.33907,28.75676,0,0,93.32187,0,0,0,3,1,3,81.1,4.3,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.81767,9.595232,1.098612,4.536055,1
-11,1,0,1,1,129384,0,14693.55,61.52772,0,12,1,107.1849,105.477,48.00353,0,0,260.6655,0,0,0,8,1,3,85.3,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.92638,9.595232,1.098612,5.563238,1
-11,1,0,1,2,129384,0,14693.55,62.52772,0,12,1,161.7251,29.73046,0,0,1735.822,1927.278,1,0,0,10,0,3,85.3,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.92638,9.595232,1.098612,7.563864,1
-11,1,0,1,3,129384,0,14693.55,63.52772,0,12,1,846.8452,26.43735,58.57985,0,0,931.8624,0,0,0,7,0,3,85.3,0,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.92638,9.595232,1.098612,6.837185,1
-11,1,0,0,1,129385,0,14693.55,47.38672,1,12,1,151.9435,206.6843,53.23322,0,1282.951,1694.812,1,0,0,13,0,3,58.9,39.1,1,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.81611,9.595232,1.098612,7.435327,1
-11,1,0,0,2,129385,0,14693.55,48.38672,1,12,1,119.3261,122.4528,0,0,0,241.779,0,0,0,10,1,3,58.9,39.1,1,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.81611,9.595232,1.098612,5.488024,1
-11,1,0,0,3,129385,0,14693.55,49.38672,1,12,1,726.0344,135.6658,37.83784,0,0,899.5381,0,0,0,11,1,3,58.9,39.1,1,,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.81611,9.595232,1.098612,6.801881,1
-5,1,25,1,1,129404,0,14198.51,50.51609,1,12,1,73.76562,0,35.93694,0,0,109.7026,0,0,0,5,0,2,90.5,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,78.70685,9.560963,.6931472,4.697773,1
-5,1,25,1,2,129404,0,14198.51,51.51609,1,12,1,77.29994,2.302667,65.84104,0,0,145.4437,0,0,0,3,0,2,90.5,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,78.70685,9.560963,.6931472,4.979789,1
-5,1,25,1,3,129404,0,14198.51,52.51609,1,12,1,33.20119,6.23885,49.27156,0,0,88.71159,0,0,0,2,2,2,90.5,8.7,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,78.70685,9.560963,.6931472,4.485391,1
-5,1,25,1,1,129405,0,14198.51,56.66256,0,21,1,154.6698,49.63117,47.59072,0,0,251.8917,0,0,0,13,0,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,68.89549,9.560963,.6931472,5.528999,1
-5,1,25,1,2,129405,0,14198.51,57.66256,0,21,1,201.4153,74.33315,0,0,0,275.7485,0,0,0,16,0,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,68.89549,9.560963,.6931472,5.619489,1
-5,1,25,1,3,129405,0,14198.51,58.66256,0,21,1,111.2488,70.43607,64.45986,0,0,246.1447,0,0,0,7,1,2,87.4,13,0,,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,68.89549,9.560963,.6931472,5.505919,1
-8,1,50,0,1,129412,0,8082.506,20.66256,0,12,1,28.17746,9.820144,0,0,0,37.9976,0,0,0,4,0,1,91.3,13.73189,0,,399,399,0,0,0,5.988961,0,3.931826,6.682108,1,0,0,67.90727,8.997581,0,3.637523,1
-8,1,50,0,2,129412,0,8082.506,21.66256,0,12,1,19.16758,5.312158,0,0,0,24.47974,0,0,0,3,0,1,91.3,13.73189,0,,399,399,0,0,0,5.988961,0,3.931826,6.682108,1,0,0,67.90727,8.997581,0,3.197846,1
-8,1,50,0,3,129412,0,8082.506,22.66256,0,12,1,12.46883,0,0,0,0,12.46883,0,0,0,0,1,1,91.3,13.73189,0,,399,399,0,0,0,5.988961,0,3.931826,6.682108,1,0,0,67.90727,8.997581,0,2.523232,1
-2,1,100,0,1,129417,0,5361.663,19.10198,1,11,1,0,1.193046,0,0,0,1.193046,0,0,0,0,0,3,63.2,13,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,74.09004,8.587215,1.098612,.1765094,1
-2,1,100,0,2,129417,0,5361.663,20.10198,1,11,1,13.69113,0,0,0,0,13.69113,0,0,0,0,0,3,63.2,13,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,74.09004,8.587215,1.098612,2.616748,1
-2,1,100,0,3,129417,0,5361.663,21.10198,1,11,1,20.82294,8.468828,0,0,879.4514,908.7432,3,0,0,0,0,3,63.2,13,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,74.09004,8.587215,1.098612,6.812063,1
-2,1,100,0,4,129417,0,5361.663,22.10198,1,11,1,49.51591,0,0,0,0,49.51591,0,0,0,1,0,4,63.2,13,0,,409,0,0,0,1.386294,0,1,0,0,0,0,0,74.09004,8.587215,1.386294,3.902294,1
-2,1,100,0,5,129417,0,5361.663,23.10198,1,11,1,19.04359,2.391028,0,0,614.2192,635.6538,1,0,0,1,1,4,63.2,13,0,,409,0,0,0,1.386294,0,1,0,0,0,0,0,74.09004,8.587215,1.386294,6.454654,1
-2,1,100,0,1,129418,0,5361.663,2.16564,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,409,0,1,1,1.098612,0,1,0,0,0,0,0,76.23925,8.587215,1.098612,,0
-2,1,100,0,2,129418,0,5361.663,3.16564,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,409,0,1,1,1.098612,0,1,0,0,0,0,0,76.23925,8.587215,1.098612,,0
-2,1,100,0,3,129418,0,5361.663,4.16564,1,11,1,6.48379,0,0,0,0,6.48379,0,0,0,1,0,3,74.36826,13.73189,0,,409,0,1,1,1.098612,0,1,0,0,0,0,0,76.23925,8.587215,1.098612,1.869305,1
-2,1,100,0,4,129418,0,5361.663,5.16564,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,409,0,1,1,1.386294,0,1,0,0,0,0,0,76.23925,8.587215,1.386294,,0
-2,1,100,0,5,129418,0,5361.663,6.16564,1,11,1,10.57977,0,0,0,0,10.57977,0,0,0,0,1,4,74.36826,13.73189,0,,409,0,1,1,1.386294,0,1,0,0,0,0,0,76.23925,8.587215,1.386294,2.358944,1
-2,1,100,0,1,129419,0,5361.663,20.16153,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,69.5,8.7,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,73.19886,8.587215,1.098612,,0
-2,1,100,0,2,129419,0,5361.663,21.16153,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,69.5,8.7,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,73.19886,8.587215,1.098612,,0
-2,1,100,0,3,129419,0,5361.663,22.16153,0,11,1,134.8379,4.528678,24.97257,0,0,164.3392,0,0,0,7,1,3,69.5,8.7,0,,409,0,0,0,1.098612,0,1,0,0,0,0,0,73.19886,8.587215,1.098612,5.101933,1
-2,1,100,0,4,129419,0,5361.663,23.16153,0,11,1,7.376671,0,0,0,0,7.376671,0,0,0,1,0,4,69.5,8.7,0,,409,0,0,0,1.386294,0,1,0,0,0,0,0,73.19886,8.587215,1.386294,1.998322,1
-2,1,100,0,5,129419,0,5361.663,24.16153,0,11,1,116.8007,0,30.40626,0,0,147.2069,0,0,0,3,1,4,69.5,8.7,0,,409,0,0,0,1.386294,0,1,0,0,0,0,0,73.19886,8.587215,1.386294,4.991839,1
-10,1,50,0,1,129425,0,13275.43,1.938398,0,17,1,32.97998,21.76678,0,0,0,54.74676,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.00792,9.493746,1.386294,4.002718,1
-10,1,50,0,2,129425,0,13275.43,2.938398,0,17,1,61.2938,15.55256,0,0,0,76.84636,0,0,0,8,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.00792,9.493746,1.386294,4.341808,1
-10,1,50,0,3,129425,0,13275.43,3.938398,0,17,1,78.86978,11.86732,0,0,0,90.7371,0,0,0,6,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.00792,9.493746,1.386294,4.507967,1
-10,1,50,0,4,129425,0,13275.43,4.938398,0,17,1,100.7293,42.83956,0,0,393.938,537.5068,1,0,0,11,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.00792,9.493746,1.386294,6.286942,1
-10,1,50,0,5,129425,0,13275.43,5.938398,0,17,1,33.76407,7.899125,0,0,0,41.66319,0,0,0,5,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.00792,9.493746,1.386294,3.729618,1
-10,1,50,0,1,129426,0,13275.43,34.79261,0,20,1,7.067138,14.25206,0,0,0,21.3192,0,0,0,1,0,4,51.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75.16824,9.493746,1.386294,3.059608,1
-10,1,50,0,2,129426,0,13275.43,35.79261,0,20,1,11.32076,16.06469,0,0,0,27.38544,0,0,0,1,0,4,51.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75.16824,9.493746,1.386294,3.310012,1
-10,1,50,0,3,129426,0,13275.43,36.79261,0,20,1,7.862408,6.142506,0,0,0,14.00491,0,0,0,1,0,4,51.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75.16824,9.493746,1.386294,2.639408,1
-10,1,50,0,4,129426,0,13275.43,37.79261,0,20,1,95.03191,20.03191,0,0,0,115.0638,0,0,0,6,0,4,51.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75.16824,9.493746,1.386294,4.745487,1
-10,1,50,0,5,129426,0,13275.43,38.79261,0,20,1,48.77032,9.866611,0,0,0,58.63693,0,0,0,3,0,4,51.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75.16824,9.493746,1.386294,4.071365,1
-10,1,50,0,1,129427,0,13275.43,34.05339,1,17,1,230.2709,15.95995,0,0,0,246.2309,0,0,0,6,1,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.05943,9.493746,1.386294,5.506269,1
-10,1,50,0,2,129427,0,13275.43,35.05339,1,17,1,243.6658,7.843666,0,0,0,251.5094,0,0,0,4,3,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.05943,9.493746,1.386294,5.527481,1
-10,1,50,0,3,129427,0,13275.43,36.05339,1,17,1,31.94103,2.407862,16.21622,0,0,50.56511,0,0,0,2,1,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.05943,9.493746,1.386294,3.923262,1
-10,1,50,0,4,129427,0,13275.43,37.05339,1,17,1,59.4804,21.28532,0,0,0,80.76572,0,0,0,3,1,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.05943,9.493746,1.386294,4.391552,1
-10,1,50,0,5,129427,0,13275.43,38.05339,1,17,1,181.1171,16.87786,8.336807,0,0,206.3318,0,0,0,10,0,4,76.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.05943,9.493746,1.386294,5.329485,1
-10,1,50,0,1,129428,0,13275.43,6.009583,1,17,1,162.2497,27.67962,0,0,0,189.9293,0,0,0,30,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.16698,9.493746,1.386294,5.246652,1
-10,1,50,0,2,129428,0,13275.43,7.009583,1,17,1,97.57413,20.61995,0,0,0,118.1941,0,0,0,18,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.16698,9.493746,1.386294,4.772328,1
-10,1,50,0,3,129428,0,13275.43,8.009583,1,17,1,96.21622,12.72727,1.228501,0,0,110.172,0,0,0,18,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.16698,9.493746,1.386294,4.702043,1
-10,1,50,0,4,129428,0,13275.43,9.009583,1,17,1,123.0629,22.21969,0,0,0,145.2826,0,0,0,17,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.16698,9.493746,1.386294,4.978681,1
-10,1,50,0,5,129428,0,13275.43,10.00958,1,17,1,89.9333,14.8812,20.03752,0,0,124.852,0,0,0,14,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,85.16698,9.493746,1.386294,4.827129,1
-7,1,25,0,1,129436,0,15786.6,36.2026,0,20,1,173.7338,27.31449,43.69847,0,0,244.7468,0,0,0,19,0,7,44.2,26.1,1,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,68.73036,9.66698,1.94591,5.500224,1
-7,1,25,0,2,129436,0,15786.6,37.2026,0,20,1,167.1159,49.062,67.38544,261.4555,0,283.5634,0,0,20,23,0,7,44.2,26.1,1,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,68.73036,9.66698,1.94591,5.647436,1
-7,1,25,0,3,129436,0,15786.6,38.2026,0,20,1,223.5627,62.92875,37.06142,0,0,323.5528,0,0,0,29,0,7,44.2,26.1,1,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,68.73036,9.66698,1.94591,5.779362,1
-7,1,25,0,4,129436,0,15786.6,39.2026,0,20,1,208.5232,36.45396,1.189608,0,0,246.1668,0,0,0,27,0,7,44.2,26.1,1,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,68.73036,9.66698,1.94591,5.50601,1
-7,1,25,0,5,129436,0,15786.6,40.2026,0,20,1,127.97,55.42309,34.74364,0,0,218.1367,0,0,0,25,0,7,44.2,26.1,1,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,68.73036,9.66698,1.94591,5.385122,1
-7,1,25,0,1,129437,0,15786.6,12.64066,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,,0
-7,1,25,0,2,129437,0,15786.6,13.64066,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,,0
-7,1,25,0,3,129437,0,15786.6,14.64066,0,10,1,16.21622,.982801,0,0,0,17.19902,0,0,0,3,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,2.844852,1
-7,1,25,0,4,129437,0,15786.6,15.64066,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,,0
-7,1,25,0,5,129437,0,15786.6,16.64066,0,10,1,13.75573,2.551063,0,0,0,16.3068,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,2.791582,1
-7,1,25,0,1,129438,0,15786.6,7.772758,0,10,1,5.300354,0,0,0,0,5.300354,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,1.667773,1
-7,1,25,0,2,129438,0,15786.6,8.772758,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,,0
-7,1,25,0,3,129438,0,15786.6,9.772758,0,10,1,20.14742,2.457002,0,0,0,22.60442,0,0,0,3,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,3.118146,1
-7,1,25,0,4,129438,0,15786.6,10.77276,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,,0
-7,1,25,0,5,129438,0,15786.6,11.77276,0,10,1,17.5073,8.520217,0,0,0,26.02751,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,3.259154,1
-7,1,25,0,1,129439,0,15786.6,10.02327,0,10,1,9.422851,9.729093,0,0,0,19.15194,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,2.952404,1
-7,1,25,0,2,129439,0,15786.6,11.02327,0,10,1,43.39622,8.25876,0,0,0,51.65499,0,0,0,6,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,3.944587,1
-7,1,25,0,3,129439,0,15786.6,12.02327,0,10,1,44.22604,4.157248,0,0,0,48.38329,0,0,0,4,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,3.879155,1
-7,1,25,0,4,129439,0,15786.6,13.02327,0,10,1,101.6408,3.646308,5.528715,0,0,110.8159,0,0,0,3,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,4.70787,1
-7,1,25,0,5,129439,0,15786.6,14.02327,0,10,1,83.47228,4.172572,0,0,0,87.64485,0,0,0,7,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,4.473293,1
-7,1,25,0,1,129440,0,15786.6,13.55784,1,10,1,20.02356,1.177856,41.23675,0,0,62.43816,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.06523,9.66698,1.94591,4.134177,1
-7,1,25,0,2,129440,0,15786.6,14.55784,1,10,1,45.8221,8.334231,0,0,0,54.15633,0,0,0,4,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.06523,9.66698,1.94591,3.991875,1
-7,1,25,0,3,129440,0,15786.6,15.55784,1,10,1,33.41523,6.914005,0,0,0,40.32924,0,0,0,5,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.06523,9.66698,1.94591,3.697077,1
-7,1,25,0,4,129440,0,15786.6,16.55784,1,10,1,27.34731,1.823154,0,0,0,29.17047,0,0,0,4,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.06523,9.66698,1.94591,3.373157,1
-7,1,25,0,5,129440,0,15786.6,17.55784,1,10,1,31.88829,5.060442,0,0,0,36.94873,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,1,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.06523,9.66698,1.94591,3.609531,1
-7,1,25,0,1,129441,0,15786.6,33.65914,1,10,1,99.52885,47.54417,0,0,0,147.073,0,0,0,4,0,7,24.2,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,63.85081,9.66698,1.94591,4.990929,1
-7,1,25,0,2,129441,0,15786.6,34.65914,1,10,1,115.903,50.22102,0,318.0593,0,166.124,0,0,23,6,0,7,24.2,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,63.85081,9.66698,1.94591,5.112734,1
-7,1,25,0,3,129441,0,15786.6,35.65914,1,10,1,56.01966,17.88206,0,0,0,73.90172,0,0,0,2,0,7,24.2,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,63.85081,9.66698,1.94591,4.302736,1
-7,1,25,0,4,129441,0,15786.6,36.65914,1,10,1,295.8067,4.922516,0,0,0,300.7292,0,0,0,1,0,7,24.2,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,63.85081,9.66698,1.94591,5.70621,1
-7,1,25,0,5,129441,0,15786.6,37.65914,1,10,1,75.4481,5.939975,0,0,0,81.38808,0,0,0,6,0,7,24.2,21.7,0,,1000,1000,0,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,63.85081,9.66698,1.94591,4.399229,1
-7,1,25,0,1,129442,0,15786.6,11.68515,0,10,1,41.22497,4.658422,0,0,0,45.88339,0,0,0,5,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,3.826103,1
-7,1,25,0,2,129442,0,15786.6,12.68515,0,10,1,17.25067,0,0,0,0,17.25067,0,0,0,2,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,2.847851,1
-7,1,25,0,3,129442,0,15786.6,13.68515,0,10,1,12.28501,.982801,0,0,0,13.26781,0,0,0,3,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,2.585341,1
-7,1,25,0,4,129442,0,15786.6,14.68515,0,10,1,33.52325,2.461258,0,0,641.6135,677.598,1,0,0,4,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,6.518554,1
-7,1,25,0,5,129442,0,15786.6,15.68515,0,10,1,6.252605,0,0,0,0,6.252605,0,0,0,1,0,7,74.36826,13.73189,0,,1000,1000,1,0,1.94591,6.907755,0,3.258096,8.294049,1,0,0,76.57921,9.66698,1.94591,1.832998,1
-2,1,100,0,1,129446,0,2588.71,4.533881,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,400,405.56,1,0,1.386294,6.005269,1,0,0,0,0,0,79.54541,7.859301,1.386294,,0
-2,1,100,0,2,129446,0,2588.71,5.533881,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,400,405.56,1,0,1.386294,6.005269,1,0,0,0,0,0,79.54541,7.859301,1.386294,,0
-2,1,100,0,3,129446,0,2588.71,6.533881,0,12,1,12.46883,0,31.27182,0,0,43.74065,0,0,0,0,1,4,74.36826,13.73189,0,,400,405.56,1,0,1.386294,6.005269,1,0,0,0,0,0,79.54541,7.859301,1.386294,3.778278,1
-2,1,100,0,1,129447,0,2588.71,2.469541,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,400,405.56,1,1,1.386294,6.005269,1,0,0,0,0,0,79.03143,7.859301,1.386294,,0
-2,1,100,0,2,129447,0,2588.71,3.469541,1,12,1,2.738226,4.441402,0,0,0,7.179627,0,0,0,1,0,4,74.36826,13.73189,0,,400,405.56,1,1,1.386294,6.005269,1,0,0,0,0,0,79.03143,7.859301,1.386294,1.971247,1
-2,1,100,0,3,129447,0,2588.71,4.469542,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,400,405.56,1,1,1.386294,6.005269,1,0,0,0,0,0,79.03143,7.859301,1.386294,,0
-2,1,100,0,1,129448,0,2588.71,24.95004,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.3,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.70184,7.859301,1.386294,,0
-2,1,100,0,2,129448,0,2588.71,25.95004,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.3,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.70184,7.859301,1.386294,,0
-2,1,100,0,3,129448,0,2588.71,26.95004,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.3,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.70184,7.859301,1.386294,,0
-2,1,100,0,1,129449,0,2588.71,27.07734,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,77.5,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.07117,7.859301,1.386294,,0
-2,1,100,0,2,129449,0,2588.71,28.07734,0,15,1,5.476451,7.738225,0,0,0,13.21468,0,0,0,0,1,4,77.5,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.07117,7.859301,1.386294,2.581328,1
-2,1,100,0,3,129449,0,2588.71,29.07734,0,15,1,7.481297,2.523691,22.06983,0,0,32.07481,0,0,0,1,0,4,77.5,13.73189,0,,400,405.56,0,0,1.386294,6.005269,1,0,0,0,0,0,78.07117,7.859301,1.386294,3.468071,1
-4,1,100,1,1,129458,0,8129.032,27.72622,0,12,1,14.98801,0,0,0,0,14.98801,0,0,0,1,0,4,76.8,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.82298,9.00332,1.386294,2.707251,1
-4,1,100,1,2,129458,0,8129.032,28.72622,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.82298,9.00332,1.386294,,0
-4,1,100,1,3,129458,0,8129.032,29.72622,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,77.82298,9.00332,1.386294,,0
-4,1,100,1,1,129459,0,8129.032,7.104723,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,84.02346,9.00332,1.386294,,0
-4,1,100,1,2,129459,0,8129.032,8.104723,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,84.02346,9.00332,1.386294,,0
-4,1,100,1,3,129459,0,8129.032,9.104723,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,84.02346,9.00332,1.386294,,0
-4,1,100,1,1,129460,0,8129.032,26.54894,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97468,9.00332,1.386294,,0
-4,1,100,1,2,129460,0,8129.032,27.54894,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97468,9.00332,1.386294,,0
-4,1,100,1,3,129460,0,8129.032,28.54894,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,8.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,0,0,0,78.97468,9.00332,1.386294,,0
-4,1,100,1,1,129461,0,8129.032,6.162902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,84.53744,9.00332,1.386294,,0
-4,1,100,1,2,129461,0,8129.032,7.162902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,84.53744,9.00332,1.386294,,0
-4,1,100,1,3,129461,0,8129.032,8.162902,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,84.53744,9.00332,1.386294,,0
-10,1,50,0,1,129466,0,4528.536,20.27105,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.3,4.3,0,,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,77.9943,8.418375,0,,0
-10,1,50,0,2,129466,0,4528.536,21.27105,0,12,1,33.82749,0,0,0,0,33.82749,0,0,0,0,1,1,85.3,4.3,0,,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,77.9943,8.418375,0,3.521274,1
-10,1,50,0,3,129466,0,4528.536,22.27105,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.3,4.3,0,,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,77.9943,8.418375,0,,0
-4,1,100,1,1,129467,1,7848.96,32.72827,0,16,1,5.94884,0,0,0,0,5.94884,0,0,0,1,0,4,91.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.55058,8.968264,1.386294,1.783196,1
-4,1,100,1,2,129467,1,7848.96,33.72827,0,16,1,154.8775,1.796407,0,0,0,156.6739,0,0,0,5,0,4,91.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.55058,8.968264,1.386294,5.054167,1
-4,1,100,1,3,129467,1,7848.96,34.72827,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,91.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.55058,8.968264,1.386294,,0
-4,1,100,1,4,129467,1,7848.96,35.72827,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,91.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.55058,8.968264,1.386294,,0
-4,1,100,1,5,129467,1,7848.96,36.72827,0,16,1,96.33151,1.262095,0,0,0,97.59361,0,0,0,6,0,4,91.6,17.4,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,66.55058,8.968264,1.386294,4.580812,1
-4,1,100,1,1,129468,1,7848.96,30.68583,1,16,1,23.79536,3.569304,0,0,0,27.36466,0,0,0,3,0,4,92.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.45471,8.968264,1.386294,3.309253,1
-4,1,100,1,2,129468,1,7848.96,31.68583,1,16,1,90.36472,4.899292,0,0,791.3609,886.6249,2,0,0,5,0,4,92.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.45471,8.968264,1.386294,6.787422,1
-4,1,100,1,3,129468,1,7848.96,32.68583,1,16,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,4,92.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.45471,8.968264,1.386294,1.600478,1
-4,1,100,1,4,129468,1,7848.96,33.68583,1,16,1,303.1804,.9178522,0,0,0,304.0982,0,0,0,4,0,4,92.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.45471,8.968264,1.386294,5.71735,1
-4,1,100,1,5,129468,1,7848.96,34.68583,1,16,1,71.51872,10.53849,14.50989,0,1084.666,1181.233,1,0,0,1,1,4,92.6,21.7,0,,1000,1000,0,0,1.386294,6.907755,1,0,0,1,0,0,67.45471,8.968264,1.386294,7.074314,1
-4,1,100,1,1,129469,1,7848.96,9.437371,0,16,1,21.41582,0,0,0,0,21.41582,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,3.06413,1
-4,1,100,1,2,129469,1,7848.96,10.43737,0,16,1,13.60915,0,0,0,0,13.60915,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,2.610742,1
-4,1,100,1,3,129469,1,7848.96,11.43737,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,,0
-4,1,100,1,4,129469,1,7848.96,12.43737,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,,0
-4,1,100,1,5,129469,1,7848.96,13.43737,0,16,1,49.81068,0,0,0,0,49.81068,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,3.90823,1
-4,1,100,1,1,129470,1,7848.96,7.318275,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,,0
-4,1,100,1,2,129470,1,7848.96,8.318275,0,16,1,13.60915,0,0,0,0,13.60915,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,2.610742,1
-4,1,100,1,3,129470,1,7848.96,9.318275,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,,0
-4,1,100,1,4,129470,1,7848.96,10.31828,0,16,1,17.89812,0,0,0,0,17.89812,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,2.884696,1
-4,1,100,1,5,129470,1,7848.96,11.31828,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,1,0,0,1,0,0,82.78881,8.968264,1.386294,,0
-6,1,25,0,1,129474,0,10085.61,1.708419,0,14,1,48.78049,6.472338,0,0,0,55.25283,0,0,0,10,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,4.011919,1
-6,1,25,0,2,129474,0,10085.61,2.708419,0,14,1,16.33097,4.30049,0,0,0,20.63146,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,3.026817,1
-6,1,25,0,3,129474,0,10085.61,3.708419,0,14,1,8.424182,1.367691,0,0,0,9.791873,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,2.281553,1
-6,1,25,0,1,129475,0,10085.61,29.94114,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.78748,9.218964,1.386294,,0
-6,1,25,0,2,129475,0,10085.61,30.94114,0,16,1,204.1372,16.46707,0,0,0,220.6042,0,0,0,6,0,4,86.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.78748,9.218964,1.386294,5.39637,1
-6,1,25,0,3,129475,0,10085.61,31.94114,0,16,1,41.3776,11.12488,0,0,0,52.50248,0,0,0,3,0,4,86.3,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,74.78748,9.218964,1.386294,3.96086,1
-6,1,25,0,1,129476,0,10085.61,29.64819,1,14,1,29.7442,7.911957,0,0,0,37.65616,0,0,0,3,0,4,80,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.56806,9.218964,1.386294,3.628496,1
-6,1,25,0,2,129476,0,10085.61,30.64819,1,14,1,28.30702,8.628199,33.20631,0,0,70.14153,0,0,0,1,1,4,80,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.56806,9.218964,1.386294,4.250515,1
-6,1,25,0,3,129476,0,10085.61,31.64819,1,14,1,165.3865,13.18137,12.42815,0,0,190.996,0,0,0,8,1,4,80,13.73189,0,,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,78.56806,9.218964,1.386294,5.252253,1
-6,1,25,0,1,129477,0,10085.61,2.833676,0,14,1,45.80607,21.47531,0,0,0,67.28138,0,0,0,8,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,4.208883,1
-6,1,25,0,2,129477,0,10085.61,3.833676,0,14,1,14.15351,55.44366,0,0,0,69.59717,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,4.242724,1
-6,1,25,0,3,129477,0,10085.61,4.833675,0,14,1,81.26859,41.65015,0,0,0,122.9187,0,0,0,9,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,75.35837,9.218964,1.386294,4.811523,1
-11,1,0,0,1,129481,0,1518.61,24.78576,1,11,1,31.6247,18.07554,0,0,0,49.70024,1,1,0,3,0,2,97.5,13.73189,0,,0,0,0,0,.6931472,0,0,0,0,0,0,0,74.46398,7.32621,.6931472,3.90601,1
-11,1,0,0,2,129481,0,1518.61,25.78576,1,11,1,183.5433,12.49726,0,0,69.1402,265.1807,1,0,0,8,1,3,97.5,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.46398,7.32621,1.098612,5.580411,1
-11,1,0,0,3,129481,0,1518.61,26.78576,1,11,1,33.04239,12.74314,0,0,0,45.78554,0,0,0,0,0,3,97.5,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.46398,7.32621,1.098612,3.823968,1
-11,1,0,0,4,129481,0,1518.61,27.78576,1,11,1,120.2397,30.54403,0,0,633.4025,784.1863,1,0,0,1,2,3,97.5,13.73189,0,,0,0,0,0,1.098612,0,0,0,0,0,0,0,74.46398,7.32621,1.098612,6.664647,1
-11,1,0,0,5,129481,0,1518.61,28.78576,1,11,1,36.56369,18.42996,.2539145,0,712.7592,768.0068,1,0,0,2,0,4,97.5,13.73189,0,,0,0,0,0,1.386294,0,0,0,0,0,0,0,74.46398,7.32621,1.386294,6.643798,1
-11,1,0,0,1,129482,0,1518.61,3.811088,1,11,1,46.76259,7.07434,0,0,0,53.83693,0,0,0,8,0,2,74.36826,13.73189,0,,0,0,1,1,.6931472,0,0,0,0,0,0,0,76.44289,7.32621,.6931472,3.98596,1
-11,1,0,0,2,129482,0,1518.61,4.811088,1,11,1,6.571742,2.628697,0,0,0,9.200438,0,0,0,1,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.44289,7.32621,1.098612,2.219251,1
-11,1,0,0,3,129482,0,1518.61,5.811088,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.44289,7.32621,1.098612,,0
-11,1,0,0,4,129482,0,1518.61,6.811088,1,11,1,8.298756,0,0,0,0,8.298756,0,0,0,2,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.44289,7.32621,1.098612,2.116106,1
-11,1,0,0,5,129482,0,1518.61,7.811088,1,11,1,4.655099,2.010157,0,0,0,6.665256,0,0,0,1,0,4,74.36826,13.73189,0,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.44289,7.32621,1.386294,1.896908,1
-11,1,0,1,1,129489,0,7368.771,24.77207,0,14,1,14.8721,0,16.35931,0,0,31.23141,0,0,0,1,0,2,75.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.63726,8.905142,.6931472,3.441424,1
-11,1,0,1,2,129489,0,7368.771,25.77207,0,14,1,16.33097,0,0,0,0,16.33097,0,0,0,0,0,2,75.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.63726,8.905142,.6931472,2.793064,1
-11,1,0,1,3,129489,0,7368.771,26.77207,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,75.8,8.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,66.63726,8.905142,.6931472,,0
-11,1,0,1,1,129490,0,7368.771,24.8898,1,13,1,26.76978,0,0,0,0,26.76978,0,0,0,2,0,2,67.4,21.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.8164,8.905142,.6931472,3.287274,1
-11,1,0,1,2,129490,0,7368.771,25.8898,1,13,1,22.86336,0,0,0,0,22.86336,0,0,0,2,0,2,67.4,21.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.8164,8.905142,.6931472,3.129536,1
-11,1,0,1,3,129490,0,7368.771,26.8898,1,13,1,27.75025,0,0,0,0,27.75025,0,0,0,1,0,2,67.4,21.7,0,,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.8164,8.905142,.6931472,3.323245,1
-5,1,25,0,1,129498,0,13740.69,27.41684,1,12,1,20.82094,4.521118,33.79536,0,0,59.13742,0,0,0,1,1,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,69.22522,9.52819,1.098612,4.079864,1
-5,1,25,0,2,129498,0,13740.69,28.41684,1,12,1,43.54927,1.137725,14.62167,0,0,59.30865,0,0,0,2,1,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,69.22522,9.52819,1.098612,4.082755,1
-5,1,25,0,3,129498,0,13740.69,29.41684,1,12,1,122.3984,3.409316,0,138.7512,1198.622,1324.43,1,0,8,2,2,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,69.22522,9.52819,1.098612,7.188737,1
-5,1,25,0,4,129498,0,13740.69,30.41684,1,12,1,27.53557,0,0,13.76778,0,27.53557,0,0,1,3,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,69.22522,9.52819,1.098612,3.315479,1
-5,1,25,0,5,129498,0,13740.69,31.41684,1,12,1,181.7417,3.878839,0,0,0,185.6205,0,0,0,6,0,3,71.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,69.22522,9.52819,1.098612,5.223704,1
-5,1,25,0,1,129499,0,13740.69,7.29911,0,12,1,15.46698,0,0,0,0,15.46698,0,0,0,1,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,77.38953,9.52819,1.098612,2.738708,1
-5,1,25,0,2,129499,0,13740.69,8.29911,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,77.38953,9.52819,1.098612,,0
-5,1,25,0,3,129499,0,13740.69,9.29911,0,12,1,51.53617,6.818632,0,0,0,58.3548,0,0,0,3,1,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,77.38953,9.52819,1.098612,4.066542,1
-5,1,25,0,4,129499,0,13740.69,10.29911,0,12,1,54.15328,4.708582,0,0,0,58.86186,0,0,0,6,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,77.38953,9.52819,1.098612,4.075193,1
-5,1,25,0,5,129499,0,13740.69,11.29911,0,12,1,17.66933,0,0,0,0,17.66933,0,0,0,2,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,77.38953,9.52819,1.098612,2.87183,1
-5,1,25,0,1,129500,0,13740.69,30.81177,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.10543,9.52819,1.098612,,0
-5,1,25,0,2,129500,0,13740.69,31.81177,0,12,1,139.902,11.17039,0,0,0,151.0724,0,0,0,2,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.10543,9.52819,1.098612,5.017759,1
-5,1,25,0,3,129500,0,13740.69,32.81177,0,12,1,22.79485,3.944499,0,0,0,26.73935,0,0,0,1,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.10543,9.52819,1.098612,3.286136,1
-5,1,25,0,4,129500,0,13740.69,33.81177,0,12,1,22.48738,0,0,0,0,22.48738,0,0,0,2,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.10543,9.52819,1.098612,3.112954,1
-5,1,25,0,5,129500,0,13740.69,34.81177,0,12,1,15.14514,5.961296,0,0,0,21.10644,0,0,0,2,0,3,77.5,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.10543,9.52819,1.098612,3.049578,1
-11,1,0,0,1,129521,0,10726.43,30.55441,0,19,1,121.6538,141.743,29.2207,0,0,292.6175,0,0,0,8,0,3,83.8,13.73189,1,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,75.44648,9.280559,1.098612,5.678866,1
-11,1,0,0,2,129521,0,10726.43,31.55441,0,19,1,76.4834,78.68808,0,0,0,155.1715,0,0,0,2,0,3,83.8,13.73189,1,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,75.44648,9.280559,1.098612,5.044531,1
-11,1,0,0,3,129521,0,10726.43,32.55442,0,19,1,77.7998,150.7929,0,0,0,228.5927,0,0,0,6,0,3,83.8,13.73189,1,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,75.44648,9.280559,1.098612,5.431942,1
-11,1,0,0,4,129521,0,10726.43,33.55442,0,19,1,39.46765,137.6549,96.37448,0,0,273.497,0,0,0,4,0,4,83.8,13.73189,1,,0,101,0,0,1.386294,4.61512,0,0,0,0,0,0,75.44648,9.280559,1.386294,5.61129,1
-11,1,0,0,5,129521,0,10726.43,34.55442,0,19,1,62.68406,185.7804,32.5873,0,0,281.0518,0,0,0,3,0,4,83.8,13.73189,1,,0,101,0,0,1.386294,4.61512,0,0,0,0,0,0,75.44648,9.280559,1.386294,5.638539,1
-11,1,0,0,1,129522,0,10726.43,27.24162,1,13,1,201.6657,25.49673,0,0,0,227.1624,0,0,0,7,0,3,56.3,13.73189,0,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,77.56129,9.280559,1.098612,5.425665,1
-11,1,0,0,2,129522,0,10726.43,28.24162,1,13,1,320.577,8.747958,0,0,0,329.325,0,0,0,6,3,3,56.3,13.73189,0,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,77.56129,9.280559,1.098612,5.797045,1
-11,1,0,0,3,129522,0,10726.43,29.24162,1,13,1,40.95639,17.46779,2.973241,0,955.8077,1017.205,1,0,0,0,0,3,56.3,13.73189,0,,0,101,0,0,1.098612,4.61512,0,0,0,0,0,0,77.56129,9.280559,1.098612,6.924814,1
-11,1,0,0,4,129522,0,10726.43,30.24162,1,13,1,13.76778,6.815053,0,0,0,20.58284,0,0,0,0,0,4,56.3,13.73189,0,,0,101,0,0,1.386294,4.61512,0,0,0,0,0,0,77.56129,9.280559,1.386294,3.024457,1
-11,1,0,0,5,129522,0,10726.43,31.24162,1,13,1,426.2726,29.44888,0,0,2364.295,2820.017,2,0,0,10,0,4,56.3,13.73189,0,,0,101,0,0,1.386294,4.61512,0,0,0,0,0,0,77.56129,9.280559,1.386294,7.944498,1
-11,1,0,0,1,129523,0,10726.43,3.789186,1,13,1,58.89352,39.68471,0,0,0,98.57822,0,0,0,9,0,3,74.36826,13.73189,1,,0,101,1,1,1.098612,4.61512,0,0,0,0,0,0,80.52754,9.280559,1.098612,4.59085,1
-11,1,0,0,2,129523,0,10726.43,4.789186,1,13,1,54.70876,21.38269,0,0,0,76.09145,0,0,0,6,0,3,74.36826,13.73189,1,,0,101,1,1,1.098612,4.61512,0,0,0,0,0,0,80.52754,9.280559,1.098612,4.331936,1
-11,1,0,0,3,129523,0,10726.43,5.789186,1,13,1,110.5104,24.52924,0,0,0,135.0396,0,0,0,9,0,3,74.36826,13.73189,1,,0,101,1,1,1.098612,4.61512,0,0,0,0,0,0,80.52754,9.280559,1.098612,4.905569,1
-11,1,0,0,4,129523,0,10726.43,6.789186,1,13,1,145.0206,28.61404,0,0,0,173.6347,0,0,0,12,0,4,74.36826,13.73189,1,,0,101,1,1,1.386294,4.61512,0,0,0,0,0,0,80.52754,9.280559,1.386294,5.156954,1
-11,1,0,0,5,129523,0,10726.43,7.789186,1,13,1,4.206984,2.166597,0,0,0,6.37358,0,0,0,0,0,4,74.36826,13.73189,1,,0,101,1,1,1.386294,4.61512,0,0,0,0,0,0,80.52754,9.280559,1.386294,1.852161,1
-8,1,50,1,1,129524,0,5722.705,27.61944,1,12,1,309.7762,42.4735,0,0,0,352.2497,0,0,0,15,1,1,60,8.7,0,,400,400,0,0,0,5.991465,0,3.931826,6.684612,1,0,0,66.98128,8.652371,0,5.86434,1
-8,1,50,1,2,129524,0,5722.705,28.61944,1,12,1,316.7116,32.77628,0,0,0,349.4879,0,0,0,4,0,1,60,8.7,0,,400,400,0,0,0,5.991465,0,3.931826,6.684612,1,0,0,66.98128,8.652371,0,5.856469,1
-8,1,50,1,3,129524,0,5722.705,29.61944,1,12,1,58.23096,3.036855,0,0,0,61.26781,0,0,0,2,0,1,60,8.7,0,,400,400,0,0,0,5.991465,0,3.931826,6.684612,1,0,0,66.98128,8.652371,0,4.115255,1
-8,1,50,1,1,129525,0,4029.156,28.14237,1,10,1,46.52533,11.96113,0,0,0,58.48645,0,0,0,2,1,1,69.5,13,0,,200,219,0,0,0,5.389072,0,3.931826,5.991465,0,0,0,75.91062,8.30156,0,4.068795,1
-8,1,50,1,2,129525,0,4029.156,29.14237,1,10,1,17.52022,1.590297,0,0,0,19.11051,0,0,0,1,0,1,69.5,13,0,,200,219,0,0,0,5.389072,0,3.931826,5.991465,0,0,0,75.91062,8.30156,0,2.950238,1
-8,1,50,1,3,129525,0,4029.156,30.14237,1,10,1,12.53071,0,0,0,0,12.53071,0,0,0,1,0,1,69.5,13,0,,200,219,0,0,0,5.389072,0,3.931826,5.991465,0,0,0,75.91062,8.30156,0,2.528183,1
-11,1,0,1,1,129533,0,5911.911,25.68378,0,13,1,56.09756,24.71743,0,0,0,80.81499,0,0,0,7,2,3,67.4,0,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.15562,8.684894,1.098612,4.392162,1
-11,1,0,1,2,129533,0,5911.911,26.68378,0,13,1,13.3914,12.24823,0,0,0,25.63963,0,0,0,2,0,3,67.4,0,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.15562,8.684894,1.098612,3.244139,1
-11,1,0,1,3,129533,0,5911.911,27.68378,0,13,1,125.0743,18.45887,0,0,0,143.5332,0,0,0,4,0,3,67.4,0,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.15562,8.684894,1.098612,4.966567,1
-11,1,0,1,4,129533,0,5911.911,28.68378,0,13,1,2.294631,0,0,20.65167,0,2.294631,0,0,1,1,0,3,67.4,0,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.15562,8.684894,1.098612,.8305718,1
-11,1,0,1,5,129533,0,5911.911,29.68378,0,13,1,14.72444,4.375263,0,0,0,19.0997,0,0,0,2,0,3,67.4,0,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.15562,8.684894,1.098612,2.949673,1
-11,1,0,1,1,129534,0,5911.911,25.44011,1,12,1,82.80785,70.07733,0,0,0,152.8852,0,0,0,4,1,3,73.7,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.79924,8.684894,1.098612,5.029687,1
-11,1,0,1,2,129534,0,5911.911,26.44011,1,12,1,31.95427,37.39793,0,0,0,69.3522,0,0,0,4,0,3,73.7,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.79924,8.684894,1.098612,4.239198,1
-11,1,0,1,3,129534,0,5911.911,27.44011,1,12,1,74.28146,31.20912,0,0,0,105.4906,0,0,0,8,0,3,73.7,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.79924,8.684894,1.098612,4.658622,1
-11,1,0,1,4,129534,0,5911.911,28.44011,1,12,1,39.37586,40.22028,0,362.5516,0,79.59615,0,0,14,4,0,3,73.7,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.79924,8.684894,1.098612,4.376966,1
-11,1,0,1,5,129534,0,5911.911,29.44011,1,12,1,47.95961,37.48422,0,63.10476,0,85.44384,0,0,3,4,1,3,73.7,13,0,,0,0,0,0,1.098612,0,0,0,0,1,0,0,68.79924,8.684894,1.098612,4.447859,1
-11,1,0,1,1,129535,0,5911.911,.3723477,0,12,1,71.86198,32.0345,0,0,0,103.8965,0,0,0,7,3,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.14257,8.684894,1.098612,4.643395,1
-11,1,0,1,2,129535,0,5911.911,1.372348,0,12,1,90.36472,26.3963,0,0,0,116.761,0,0,0,9,1,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.14257,8.684894,1.098612,4.760129,1
-11,1,0,1,3,129535,0,5911.911,2.372348,0,12,1,105.5996,32.54212,0,0,283.5728,421.7146,1,0,0,12,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.14257,8.684894,1.098612,6.044329,1
-11,1,0,1,4,129535,0,5911.911,3.372348,0,12,1,23.68059,7.631941,0,0,0,31.31253,0,0,0,4,0,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.14257,8.684894,1.098612,3.444018,1
-11,1,0,1,5,129535,0,5911.911,4.372348,0,12,1,101.3883,20.63946,0,0,0,122.0278,0,0,0,9,1,3,74.36826,13.73189,0,,0,0,1,0,1.098612,0,0,0,0,0,0,0,81.14257,8.684894,1.098612,4.804249,1
-1,1,0,0,1,129541,0,10361.66,25.53046,0,16,1,16.48999,2.355713,0,0,0,18.8457,0,0,0,1,1,2,76.3,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,74.89308,9.245964,.6931472,2.936285,1
-1,1,0,0,2,129541,0,10361.66,26.53046,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,76.3,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,74.89308,9.245964,.6931472,,0
-1,1,0,0,3,129541,0,10361.66,27.53046,0,16,1,11.79361,6.742015,0,0,0,18.53563,0,0,0,2,0,2,76.3,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,74.89308,9.245964,.6931472,2.919695,1
-1,1,0,0,1,129542,0,10361.66,24.38604,1,16,1,23.55713,0,18.25677,0,0,41.8139,0,0,0,2,0,2,95,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,73.56861,9.245964,.6931472,3.733229,1
-1,1,0,0,2,129542,0,10361.66,25.38604,1,16,1,10.78167,0,33.20216,0,0,43.98383,0,0,0,1,0,2,95,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,73.56861,9.245964,.6931472,3.783822,1
-1,1,0,0,3,129542,0,10361.66,26.38604,1,16,1,83.53809,10.25553,13.26781,0,0,107.0614,0,0,0,4,1,2,95,13.73189,0,,300,300,0,0,.6931472,5.703783,1,0,0,0,0,0,73.56861,9.245964,.6931472,4.673403,1
-6,1,25,0,1,129564,1,13351.74,55.32649,0,18,1,198.9887,83.31945,49.72635,0,0,332.0345,0,0,0,3,13,1,85,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.70229,9.499476,0,5.805239,1
-6,1,25,0,2,129564,1,13351.74,56.32649,0,18,1,168.6718,85.98802,0,0,0,254.6598,0,0,0,2,12,1,85,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.70229,9.499476,0,5.539928,1
-6,1,25,0,3,129564,1,13351.74,57.32649,0,18,1,183.8454,82.14569,53.04757,0,0,319.0387,0,0,0,4,12,1,85,13.73189,0,,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,1,0,69.70229,9.499476,0,5.765312,1
-8,1,50,0,1,129584,0,9925.559,24.28747,1,17,1,56.5371,28.72791,0,0,0,85.26501,0,0,0,2,0,2,76.3,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,57.52052,9.20297,.6931472,4.445764,1
-8,1,50,0,2,129584,0,9925.559,25.28747,1,17,1,34.50135,19.36927,0,0,0,53.87062,0,0,0,5,0,2,76.3,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,57.52052,9.20297,.6931472,3.986585,1
-8,1,50,0,3,129584,0,9925.559,26.28747,1,17,1,35.50368,36.91892,0,0,0,72.42261,0,0,0,4,0,2,76.3,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,57.52052,9.20297,.6931472,4.282518,1
-8,1,50,0,1,129585,0,9925.559,25.295,0,17,1,26.50177,0,0,0,0,26.50177,0,0,0,4,0,2,77.5,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,0,0,77.59619,9.20297,.6931472,3.277211,1
-8,1,50,0,2,129585,0,9925.559,26.295,0,17,1,5.929919,2.145553,0,0,0,8.075472,0,0,0,1,0,2,77.5,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,0,0,77.59619,9.20297,.6931472,2.088831,1
-8,1,50,0,3,129585,0,9925.559,27.295,0,17,1,5.896806,0,0,0,0,5.896806,0,0,0,0,0,2,77.5,13.73189,0,,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,0,0,0,77.59619,9.20297,.6931472,1.774411,1
-11,1,0,0,1,129590,0,6960.298,2.247776,0,12,1,31.80212,31.12485,0,0,0,62.92697,0,0,0,5,0,3,74.36826,13.73189,0,,0,120,1,0,1.098612,4.787492,0,0,0,0,0,0,74.35735,8.848122,1.098612,4.141975,1
-11,1,0,0,2,129590,0,6960.298,3.247776,0,12,1,131.5364,33.14286,0,0,0,164.6792,0,0,0,11,1,3,74.36826,13.73189,0,,0,120,1,0,1.098612,4.787492,0,0,0,0,0,0,74.35735,8.848122,1.098612,5.104,1
-11,1,0,0,3,129590,0,6960.298,4.247776,0,12,1,261.8673,91.94595,0,0,0,353.8133,0,0,0,41,1,3,74.36826,13.73189,0,,0,120,1,0,1.098612,4.787492,0,0,0,0,0,0,74.35735,8.848122,1.098612,5.868769,1
-11,1,0,0,1,129591,0,6960.298,25.54689,0,12,1,20.02356,6.289752,38.15665,0,0,64.46996,0,0,0,2,1,3,67.5,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,0,0,0,76.87543,8.848122,1.098612,4.166199,1
-11,1,0,0,2,129591,0,6960.298,26.54689,0,12,1,28.03234,11.51482,20.28032,0,0,59.82749,0,0,0,3,1,3,67.5,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,0,0,0,76.87543,8.848122,1.098612,4.091465,1
-11,1,0,0,3,129591,0,6960.298,27.54689,0,12,1,27.02703,10.32924,34.11302,0,0,71.46928,0,0,0,3,1,3,67.5,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,0,0,0,76.87543,8.848122,1.098612,4.269268,1
-11,1,0,0,1,129592,0,6960.298,24.89254,1,12,1,104.2403,10.76561,1.766784,0,0,116.7727,0,0,0,7,1,3,73.8,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,1,0,0,66.00516,8.848122,1.098612,4.760229,1
-11,1,0,0,2,129592,0,6960.298,25.89254,1,12,1,86.79245,34.80323,0,0,0,121.5957,0,0,0,10,0,3,73.8,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,1,0,0,66.00516,8.848122,1.098612,4.800702,1
-11,1,0,0,3,129592,0,6960.298,26.89254,1,12,1,77.64128,43.24324,0,0,0,120.8845,0,0,0,10,1,3,73.8,13.73189,0,,0,120,0,0,1.098612,4.787492,0,0,0,1,0,0,66.00516,8.848122,1.098612,4.794836,1
-1,1,0,0,1,129681,0,9542.002,61.9384,1,4,1,63.01531,91.47232,41.84924,0,409.9293,606.2662,1,0,0,7,0,3,68.8,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,40.99886,9.163564,1.098612,6.407319,1
-1,1,0,0,2,129681,0,9542.002,62.9384,1,4,1,51.21294,80.469,0,0,0,131.6819,0,0,0,6,0,3,68.8,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,40.99886,9.163564,1.098612,4.88039,1
-1,1,0,0,3,129681,0,9542.002,63.9384,1,4,1,387.3956,172.4619,0,0,15062.12,15621.98,3,0,0,11,2,3,68.8,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,0,1,40.99886,9.163564,1.098612,9.656434,1
-1,1,0,0,1,129682,0,9542.002,14.48597,1,4,1,71.26031,12.50294,0,0,0,83.76325,0,0,0,4,0,3,52.5,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,1,0,0,63.93338,9.163564,1.098612,4.427994,1
-1,1,0,0,2,129682,0,9542.002,15.48597,1,4,1,53.47709,27.09434,29.85984,0,1364.836,1475.267,2,0,0,7,0,3,52.5,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,1,0,0,63.93338,9.163564,1.098612,7.296594,1
-1,1,0,0,3,129682,0,9542.002,16.48597,1,4,1,49.45946,18.36364,0,0,0,67.8231,0,0,0,6,1,3,52.5,13.73189,0,,450,0,1,1,1.098612,0,1,0,0,1,0,0,63.93338,9.163564,1.098612,4.216903,1
-1,1,0,0,1,129683,0,9542.002,61.5332,0,4,1,19.43463,11.1543,41.84924,0,0,72.43816,0,0,0,2,0,3,35,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,1,0,55.00333,9.163564,1.098612,4.282733,1
-1,1,0,0,2,129683,0,9542.002,62.5332,0,4,1,8.625337,13.19137,0,0,0,21.81671,0,0,0,2,0,3,35,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,1,0,55.00333,9.163564,1.098612,3.082676,1
-1,1,0,0,3,129683,0,9542.002,63.5332,0,4,1,134.8894,23.32187,0,0,0,158.2113,0,0,0,4,0,3,35,13.73189,1,,450,0,0,0,1.098612,0,1,0,0,0,1,0,55.00333,9.163564,1.098612,5.063931,1
-10,1,50,1,1,129684,0,6771.712,4.120465,1,13,1,45.50863,3.491969,0,0,0,49.0006,0,0,0,2,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,3.891832,1
-10,1,50,1,2,129684,0,6771.712,5.120465,1,13,1,39.7387,3.739793,0,0,0,43.4785,0,0,0,4,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,3.772266,1
-10,1,50,1,3,129684,0,6771.712,6.120465,1,13,1,9.910803,0,23.20119,0,0,33.11199,0,0,0,0,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,3.499896,1
-10,1,50,1,1,129685,0,6771.712,5.207392,1,13,1,22.60559,10.5235,0,0,0,33.12909,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,3.500412,1
-10,1,50,1,2,129685,0,6771.712,6.207392,1,13,1,49.53729,1.62221,20.37017,0,0,71.52967,0,0,0,1,1,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,4.270113,1
-10,1,50,1,3,129685,0,6771.712,7.207392,1,13,1,27.25471,2.477701,36.43211,0,0,66.16452,0,0,0,1,2,4,74.36826,13.73189,0,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.02408,8.820657,1.386294,4.192144,1
-10,1,50,1,1,129686,0,6771.712,24.282,1,13,1,39.26234,13.38489,0,0,0,52.64723,0,0,0,3,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,67.72769,8.820657,1.386294,3.963614,1
-10,1,50,1,2,129686,0,6771.712,25.282,1,13,1,95.80838,29.86391,0,0,0,125.6723,0,0,0,6,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,67.72769,8.820657,1.386294,4.833678,1
-10,1,50,1,3,129686,0,6771.712,26.282,1,13,1,164.668,36.86819,13.46383,0,0,215,0,0,0,13,0,4,78.9,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,67.72769,8.820657,1.386294,5.370638,1
-10,1,50,1,1,129687,0,6771.712,26.52704,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.59797,8.820657,1.386294,,0
-10,1,50,1,2,129687,0,6771.712,27.52704,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.59797,8.820657,1.386294,,0
-10,1,50,1,3,129687,0,6771.712,28.52704,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,76.8,0,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.59797,8.820657,1.386294,,0
-10,1,50,0,1,129693,0,4394.988,27.54552,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,61.37853,8.388448,1.386294,,0
-10,1,50,0,2,129693,0,4394.988,28.54552,0,10,1,5.390836,0,0,0,453.6604,459.0512,1,0,0,1,0,4,78.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,61.37853,8.388448,1.386294,6.129162,1
-10,1,50,0,3,129693,0,4394.988,29.54552,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,61.37853,8.388448,1.386294,,0
-10,1,50,0,4,129693,0,4394.988,30.54552,0,10,1,53.6691,0,6.836828,0,0,60.50592,0,0,0,2,0,4,78.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,61.37853,8.388448,1.386294,4.102741,1
-10,1,50,0,5,129693,0,4394.988,31.54552,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,78.9,4.3,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,61.37853,8.388448,1.386294,,0
-10,1,50,0,1,129694,0,4394.988,25.69199,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,68.15965,8.388448,1.386294,,0
-10,1,50,0,2,129694,0,4394.988,26.69199,1,11,1,0,0,7.719676,0,0,7.719676,0,0,0,0,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,68.15965,8.388448,1.386294,2.043772,1
-10,1,50,0,3,129694,0,4394.988,27.69199,1,11,1,0,5.208845,0,0,0,5.208845,0,0,0,0,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,68.15965,8.388448,1.386294,1.650358,1
-10,1,50,0,4,129694,0,4394.988,28.69199,1,11,1,68.82407,11.54512,0,0,0,80.36919,0,0,0,6,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,68.15965,8.388448,1.386294,4.386631,1
-10,1,50,0,5,129694,0,4394.988,29.69199,1,11,1,65.23551,0,0,0,0,65.23551,0,0,0,2,0,4,74.7,17.4,0,,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,68.15965,8.388448,1.386294,4.178004,1
-10,1,50,0,1,129695,0,4394.988,4.676249,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.88596,8.388448,1.386294,,0
-10,1,50,0,2,129695,0,4394.988,5.676249,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.88596,8.388448,1.386294,,0
-10,1,50,0,3,129695,0,4394.988,6.676249,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.88596,8.388448,1.386294,,0
-10,1,50,0,4,129695,0,4394.988,7.676249,0,11,1,5.925251,1.937101,0,0,0,7.862352,0,0,0,1,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.88596,8.388448,1.386294,2.062086,1
-10,1,50,0,5,129695,0,4394.988,8.67625,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.88596,8.388448,1.386294,,0
-2,1,100,0,1,129696,0,7392.06,21.99589,0,12,1,5.94884,0,0,0,0,5.94884,0,0,0,1,0,3,71.6,8.7,0,,599,599,0,0,1.098612,6.395262,1,0,0,1,0,0,68.6146,8.908297,1.098612,1.783196,1
-2,1,100,0,2,129696,0,7392.06,22.99589,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.6,8.7,0,,599,599,0,0,1.098612,6.395262,1,0,0,1,0,0,68.6146,8.908297,1.098612,,0
-2,1,100,0,3,129696,0,7392.06,23.99589,0,12,1,9.910803,0,0,0,0,9.910803,0,0,0,2,0,3,71.6,8.7,0,,599,599,0,0,1.098612,6.395262,1,0,0,1,0,0,68.6146,8.908297,1.098612,2.293625,1
-2,1,100,0,1,129697,0,7392.06,20.45996,1,11,1,5.94884,0,0,0,0,5.94884,0,0,0,1,0,3,31.6,17.4,1,,599,599,0,0,1.098612,6.395262,1,0,0,0,1,0,54.00756,8.908297,1.098612,1.783196,1
-2,1,100,0,2,129697,0,7392.06,21.45996,1,11,1,40.82743,11.5841,0,0,0,52.41154,0,0,0,0,0,3,31.6,17.4,1,,599,599,0,0,1.098612,6.395262,1,0,0,0,1,0,54.00756,8.908297,1.098612,3.959127,1
-2,1,100,0,3,129697,0,7392.06,22.45996,1,11,1,15.36174,15.66898,0,0,762.1853,793.2161,1,0,0,2,0,3,31.6,17.4,1,,599,599,0,0,1.098612,6.395262,1,0,0,0,1,0,54.00756,8.908297,1.098612,6.676095,1
-2,1,100,0,1,129698,0,7392.06,.991102,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,599,599,1,1,1.098612,6.395262,1,0,0,1,0,0,69.01308,8.908297,1.098612,,0
-2,1,100,0,2,129698,0,7392.06,1.991102,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,599,599,1,1,1.098612,6.395262,1,0,0,1,0,0,69.01308,8.908297,1.098612,,0
-2,1,100,0,3,129698,0,7392.06,2.991102,1,11,1,16.35283,0,0,0,0,16.35283,0,0,0,2,0,3,74.36826,13.73189,0,,599,599,1,1,1.098612,6.395262,1,0,0,1,0,0,69.01308,8.908297,1.098612,2.794401,1
-3,1,100,1,1,129699,0,4174.593,18.51061,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,17.4,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,63.95783,8.337011,1.386294,,0
-3,1,100,1,2,129699,0,4174.593,19.51061,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,17.4,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,63.95783,8.337011,1.386294,,0
-3,1,100,1,3,129699,0,4174.593,20.51061,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,17.4,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,63.95783,8.337011,1.386294,,0
-3,1,100,1,4,129699,0,4174.593,21.51061,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.7,17.4,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,63.95783,8.337011,1.386294,,0
-3,1,100,1,1,129700,0,4174.593,16.45448,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,8.7,0,,513,0,1,1,1.386294,0,1,0,0,1,0,0,60.48014,8.337011,1.386294,,0
-3,1,100,1,2,129700,0,4174.593,17.45448,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,8.7,0,,513,0,1,1,1.386294,0,1,0,0,1,0,0,60.48014,8.337011,1.386294,,0
-3,1,100,1,3,129700,0,4174.593,18.45448,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,8.7,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,60.48014,8.337011,1.386294,,0
-3,1,100,1,4,129700,0,4174.593,19.45448,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.1,8.7,0,,513,0,0,0,1.386294,0,1,0,0,1,0,0,60.48014,8.337011,1.386294,,0
-3,1,100,1,5,129700,0,4174.593,20.45448,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,61.1,8.7,0,,513,0,0,0,1.098612,0,1,0,0,1,0,0,60.48014,8.337011,1.098612,,0
-3,1,100,1,1,129701,0,4174.593,51.77823,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,42.1,34.8,0,,513,0,0,0,1.386294,0,1,0,0,0,1,0,48.03789,8.337011,1.386294,,0
-3,1,100,1,2,129701,0,4174.593,52.77823,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,42.1,34.8,0,,513,0,0,0,1.386294,0,1,0,0,0,1,0,48.03789,8.337011,1.386294,,0
-3,1,100,1,3,129701,0,4174.593,53.77823,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,42.1,34.8,0,,513,0,0,0,1.386294,0,1,0,0,0,1,0,48.03789,8.337011,1.386294,,0
-3,1,100,1,4,129701,0,4174.593,54.77823,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,42.1,34.8,0,,513,0,0,0,1.386294,0,1,0,0,0,1,0,48.03789,8.337011,1.386294,,0
-3,1,100,1,5,129701,0,4174.593,55.77823,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,42.1,34.8,0,,513,0,0,0,1.098612,0,1,0,0,0,1,0,48.03789,8.337011,1.098612,,0
-3,1,100,1,1,129702,0,4174.593,55.30732,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,4.3,0,,513,0,0,0,1.386294,0,1,0,0,0,0,0,72.67507,8.337011,1.386294,,0
-3,1,100,1,2,129702,0,4174.593,56.30732,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,4.3,0,,513,0,0,0,1.386294,0,1,0,0,0,0,0,72.67507,8.337011,1.386294,,0
-3,1,100,1,3,129702,0,4174.593,57.30732,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,4.3,0,,513,0,0,0,1.386294,0,1,0,0,0,0,0,72.67507,8.337011,1.386294,,0
-3,1,100,1,4,129702,0,4174.593,58.30732,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,4.3,0,,513,0,0,0,1.386294,0,1,0,0,0,0,0,72.67507,8.337011,1.386294,,0
-3,1,100,1,5,129702,0,4174.593,59.30732,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,96.8,4.3,0,,513,0,0,0,1.098612,0,1,0,0,0,0,0,72.67507,8.337011,1.098612,,0
-4,1,100,0,1,129703,0,9542.002,21.23751,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,87.4,13,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,72.72614,9.163564,1.098612,,0
-4,1,100,0,1,129704,0,9542.002,23.34292,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,76.8,13,0,,1000,1000,0,0,1.098612,6.907755,1,0,0,0,0,0,72.09547,9.163564,1.098612,,0
-4,1,100,0,1,129705,0,9542.002,.6652977,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,0,,1000,1000,1,1,1.098612,6.907755,1,0,0,1,0,0,69.41489,9.163564,1.098612,,0
-5,1,25,1,1,129706,0,13354.84,54.72964,1,13,1,191.8917,231.4515,71.64188,0,0,494.9851,0,0,0,7,1,3,86.3,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.29183,9.499709,1.098612,6.204528,1
-5,1,25,1,2,129706,0,13354.84,55.72964,1,13,1,313.865,226.3963,18.50844,0,0,558.7697,0,0,0,5,21,3,86.3,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.29183,9.499709,1.098612,6.325737,1
-5,1,25,1,3,129706,0,13354.84,56.72964,1,13,1,183.3499,280.3023,50.54509,0,0,514.1972,0,0,0,4,25,3,86.3,17.4,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,66.29183,9.499709,1.098612,6.242607,1
-5,1,25,1,1,129707,0,13354.84,53.22108,0,18,1,67.22189,3.099346,0,0,0,70.32124,0,0,0,2,7,3,71.6,26.1,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.58466,9.499709,1.098612,4.253074,1
-5,1,25,1,2,129707,0,13354.84,54.22108,0,18,1,158.9548,27.13119,22.75449,0,0,208.8405,0,0,0,2,11,3,71.6,26.1,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.58466,9.499709,1.098612,5.341571,1
-5,1,25,1,3,129707,0,13354.84,55.22108,0,18,1,220.2428,30.00496,34.1774,0,0,284.4252,0,0,0,15,15,3,71.6,26.1,0,,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,76.58466,9.499709,1.098612,5.65047,1
-5,1,25,1,1,129708,0,13354.84,14.42574,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,63.2,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.99551,9.499709,1.098612,,0
-5,1,25,1,2,129708,0,13354.84,15.42574,0,13,1,22.319,10.37017,13.08655,0,0,45.77572,0,0,0,2,1,3,63.2,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.99551,9.499709,1.098612,3.823754,1
-5,1,25,1,3,129708,0,13354.84,16.42574,0,13,1,15.85728,0,25.46085,0,0,41.31814,0,0,0,1,1,3,63.2,4.3,0,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.99551,9.499709,1.098612,3.721302,1
-3,1,100,1,1,129711,0,6417.494,20.31759,1,13,1,39.85723,7.311124,41.12433,0,0,88.29269,0,0,0,3,0,2,86.3,8.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,74.39403,8.766939,.6931472,4.480657,1
-3,1,100,1,2,129711,0,6417.494,21.31759,1,13,1,12.52041,14.8503,12.1448,0,0,39.51551,0,0,0,1,0,2,86.3,8.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,74.39403,8.766939,.6931472,3.676693,1
-3,1,100,1,3,129711,0,6417.494,22.31759,1,13,1,39.39544,2.106045,1.555996,0,0,43.05748,0,0,0,3,0,2,86.3,8.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,74.39403,8.766939,.6931472,3.762536,1
-3,1,100,1,1,129712,0,6417.494,20.5859,0,12,1,33.3135,0,33.56931,0,0,66.8828,0,0,0,4,0,2,78.9,21.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,76.28976,8.766939,.6931472,4.202942,1
-3,1,100,1,2,129712,0,6417.494,21.5859,0,12,1,14.69788,9.031029,0,0,0,23.72891,0,0,0,3,0,2,78.9,21.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,76.28976,8.766939,.6931472,3.166694,1
-3,1,100,1,3,129712,0,6417.494,22.5859,0,12,1,0,2.725471,0,0,0,2.725471,0,0,0,0,0,2,78.9,21.7,0,,549,549,0,0,.6931472,6.308098,1,0,0,0,0,0,76.28976,8.766939,.6931472,1.002641,1
-4,1,100,0,1,129720,0,20.47146,57.06229,1,12,1,62.42638,174.9234,0,0,0,237.3498,0,0,0,7,0,1,73.7,8.7,1,,1000,1000,0,0,0,6.907755,1,0,0,0,1,0,55.02307,3.066725,0,5.469535,1
-4,1,100,0,2,129720,0,20.47146,58.06229,1,12,1,112.1294,84.61456,42.04852,0,0,238.7924,0,0,0,8,0,1,73.7,8.7,1,,1000,1000,0,0,0,6.907755,1,0,0,0,1,0,55.02307,3.066725,0,5.475595,1
-4,1,100,0,3,129720,0,20.47146,59.06229,1,12,1,69.28747,128.0393,0,0,5207.415,5404.742,3,0,0,9,0,1,73.7,8.7,1,,1000,1000,0,0,0,6.907755,1,0,0,0,1,0,55.02307,3.066725,0,8.595032,1
-4,1,100,0,4,129720,0,20.47146,60.06229,1,12,1,59.93619,105.9572,41.16226,0,0,207.0556,0,0,0,8,0,1,73.7,8.7,1,,1000,1000,0,0,0,6.907755,1,0,0,0,1,0,55.02307,3.066725,0,5.332987,1
-4,1,100,0,5,129720,0,20.47146,61.06229,1,12,1,73.3639,125.173,0,0,0,198.5369,0,0,0,7,0,1,73.7,8.7,1,,1000,1000,0,0,0,6.907755,1,0,0,0,1,0,55.02307,3.066725,0,5.290975,1
-11,1,0,0,1,129721,0,14764.89,53.44832,1,9,1,52.23082,15.77038,31.70732,0,0,99.7085,0,0,0,1,1,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,1,0,0,69.5894,9.600075,0,4.602251,1
-11,1,0,0,2,129721,0,14764.89,54.44832,1,9,1,281.3609,10.74034,0,0,403.3043,695.4056,1,0,0,1,0,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,1,0,0,69.5894,9.600075,0,6.544495,1
-11,1,0,0,3,129721,0,14764.89,55.44832,1,9,1,53.96432,51.11496,43.49851,0,0,148.5778,0,0,0,5,2,1,87.5,13.73189,0,,0,0,0,0,0,0,0,0,0,1,0,0,69.5894,9.600075,0,5.001109,1
-11,1,0,0,1,129723,0,4022.953,24.11225,1,12,1,149.4646,48.34622,0,0,0,197.8108,0,0,0,5,1,1,78.8,13.73189,0,,0,72,0,0,0,4.276666,0,0,0,0,0,0,79.25463,8.30002,0,5.287311,1
-11,1,0,0,2,129723,0,4022.953,25.11225,1,12,1,56.34186,31.72564,18.20359,0,0,106.2711,0,0,0,3,1,1,78.8,13.73189,0,,0,72,0,0,0,4.276666,0,0,0,0,0,0,79.25463,8.30002,0,4.665993,1
-11,1,0,0,3,129723,0,4022.953,26.11225,1,12,1,20.81269,47.72052,0,0,1215.03,1283.563,1,0,0,2,1,1,78.8,13.73189,0,,0,72,0,0,0,4.276666,0,0,0,0,0,0,79.25463,8.30002,0,7.157395,1
-3,1,100,0,1,129724,1,9542.002,50.97057,0,12,1,7.656066,0,35.33569,0,0,42.99176,0,0,0,0,1,1,75,13.73189,0,,0,0,0,0,0,0,1,0,0,0,1,0,69.46405,9.163564,0,3.761009,1
-3,1,100,0,2,129724,1,9542.002,51.97057,0,12,1,52.04313,0,0,0,0,52.04313,0,0,0,1,0,1,75,13.73189,0,,0,0,0,0,0,0,1,0,0,0,1,0,69.46405,9.163564,0,3.952073,1
-3,1,100,0,3,129724,1,9542.002,52.97057,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75,13.73189,0,,0,0,0,0,0,0,1,0,0,0,1,0,69.46405,9.163564,0,,0
-3,1,100,0,4,129724,1,9542.002,53.97057,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75,13.73189,0,,0,0,0,0,0,0,1,0,0,0,1,0,69.46405,9.163564,0,,0
-3,1,100,0,5,129724,1,9542.002,54.97057,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75,13.73189,0,,0,0,0,0,0,0,1,0,0,0,1,0,69.46405,9.163564,0,,0
-11,1,0,0,1,129727,1,9055.211,.3367556,0,12,1,32.3741,6.90048,0,0,0,39.27458,0,0,0,1,2,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,0,1,0,79.11517,9.111206,2.079442,3.670578,1
-11,1,0,0,2,129727,1,9055.211,1.336756,0,12,1,4.381161,0,0,0,0,4.381161,0,0,0,1,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,0,1,0,79.11517,9.111206,2.079442,1.477314,1
-11,1,0,0,3,129727,1,9055.211,2.336756,0,12,1,16.20948,0,0,0,0,16.20948,0,0,0,1,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,0,1,0,79.11517,9.111206,2.079442,2.785596,1
-11,1,0,0,4,129727,1,9055.211,3.336756,0,12,1,82.1208,14.52743,0,0,0,96.64822,0,0,0,7,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,0,1,0,79.11517,9.111206,2.079442,4.571078,1
-11,1,0,0,5,129727,1,9055.211,4.336756,0,12,1,6.347863,2.179433,0,0,0,8.527296,0,0,0,1,0,8,74.36826,13.73189,1,,0,0,1,0,2.079442,0,0,0,0,0,1,0,79.11517,9.111206,2.079442,2.143272,1
-6,1,25,1,1,129730,0,9542.002,.5201917,0,12,1,59.33451,6.448763,0,0,0,65.78327,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.2646,9.163564,1.791759,4.186366,1
-6,1,25,1,2,129730,0,9542.002,1.520192,0,12,1,98.62534,2.12938,0,0,0,100.7547,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.2646,9.163564,1.791759,4.612689,1
-6,1,25,1,3,129730,0,9542.002,2.520192,0,12,1,50.95823,2.432432,0,0,300.5651,353.9558,1,0,0,4,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.2646,9.163564,1.791759,5.869172,1
-6,1,25,1,4,129730,0,9542.002,3.520192,0,12,1,14.58523,0,0,0,0,14.58523,0,0,0,1,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.2646,9.163564,1.791759,2.68001,1
-6,1,25,1,5,129730,0,9542.002,4.520192,0,12,1,45.85244,0,0,0,0,45.85244,0,0,0,3,0,6,74.36826,13.73189,0,,1000,1000,1,0,1.791759,6.907755,0,3.258096,8.294049,1,0,0,69.2646,9.163564,1.791759,3.825428,1
-7,1,25,1,1,129732,1,1176.179,.4079398,0,5,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,340,340,1,0,1.791759,5.828946,0,3.258096,7.21524,0,1,0,76.96879,7.070876,1.791759,,0
-7,1,25,1,2,129732,1,1176.179,1.40794,0,5,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,340,340,1,0,1.791759,5.828946,0,3.258096,7.21524,0,1,0,76.96879,7.070876,1.791759,,0
-9,1,50,0,1,129733,0,9542.002,.3477071,1,10,1,20.82094,0,0,0,0,20.82094,0,0,0,3,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,0,0,0,78.49355,9.163564,1.609438,3.035959,1
-9,1,50,0,2,129733,0,9542.002,1.347707,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,0,0,0,78.49355,9.163564,1.609438,,0
-9,1,50,0,3,129733,0,9542.002,2.347707,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.36826,13.73189,0,,799,799,1,1,1.609438,6.683361,0,3.931826,7.376508,0,0,0,78.49355,9.163564,1.609438,,0
-11,1,0,0,1,129734,0,7262.407,.2628337,1,18,1,64.19317,6.990577,0,0,0,71.18375,0,0,0,8,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,79.03451,8.890604,1.098612,4.265265,1
-11,1,0,0,2,129734,0,7262.407,1.262834,1,18,1,80.6469,14.57682,0,0,0,95.22372,0,0,0,9,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,79.03451,8.890604,1.098612,4.556229,1
-11,1,0,0,3,129734,0,7262.407,2.262834,1,18,1,23.58722,14.57494,0,0,0,38.16216,0,0,0,3,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,79.03451,8.890604,1.098612,3.641845,1
-11,1,0,0,4,129734,0,7262.407,3.262834,1,18,1,18.68733,14.7402,0,0,0,33.42753,0,0,0,2,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,79.03451,8.890604,1.098612,3.50938,1
-11,1,0,0,5,129734,0,7262.407,4.262834,1,18,1,45.01876,11.32138,0,0,0,56.34014,0,0,0,6,0,3,74.36826,13.73189,0,,0,0,1,1,1.098612,0,0,0,0,0,0,0,79.03451,8.890604,1.098612,4.031407,1
-9,1,50,0,1,129736,0,84.36725,20.80493,0,12.32507,1,19.43463,0,33.23911,0,0,52.67373,0,0,0,2,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.6664,4.446962,1.098612,3.964117,1
-9,1,50,0,2,129736,0,84.36725,21.80493,0,12.32507,1,56.87331,3.22911,0,0,0,60.10242,0,0,0,4,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.6664,4.446962,1.098612,4.09605,1
-9,1,50,0,3,129736,0,84.36725,22.80493,0,12.32507,1,45.70024,.972973,30.46683,0,0,77.14005,0,0,0,3,1,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.6664,4.446962,1.098612,4.345623,1
-9,1,50,0,4,129736,0,84.36725,23.80493,0,12.32507,1,12.76208,0,26.67274,0,0,39.43482,0,0,0,1,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.6664,4.446962,1.098612,3.674649,1
-9,1,50,0,5,129736,0,84.36725,24.80493,0,12.32507,1,0,0,0,0,0,0,0,0,0,0,0,3,86.3,13.73189,0,,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,78.6664,4.446962,1.098612,,0
-1,1,0,1,1,129738,0,10474.57,.1451061,0,11,1,10.88638,2.314099,0,0,429.655,442.8554,1,0,0,1,0,8,74.36826,13.73189,1,,450,0,1,0,2.079442,0,1,0,0,0,0,0,79.9105,9.256801,2.079442,6.093244,1
-1,1,0,1,2,129738,0,10474.57,1.145106,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,1,,450,0,1,0,2.079442,0,1,0,0,0,0,0,79.9105,9.256801,2.079442,,0
-1,1,0,1,3,129738,0,10474.57,2.145106,0,11,1,13.37958,0,0,0,71.35778,84.73737,0,0,0,3,0,8,74.36826,13.73189,1,,450,0,1,0,2.079442,0,1,0,0,0,0,0,79.9105,9.256801,2.079442,4.439557,1
-1,1,0,1,4,129738,0,10474.57,3.145106,0,11,1,55.98899,16.12207,0,0,0,72.11106,0,0,0,9,0,8,74.36826,13.73189,1,,450,0,1,0,2.079442,0,1,0,0,0,0,0,79.9105,9.256801,2.079442,4.278207,1
-1,1,0,1,5,129738,0,10474.57,4.145106,0,11,1,7.57257,2.141355,0,0,0,9.713925,0,0,0,1,0,8,74.36826,13.73189,1,,450,0,1,0,2.079442,0,1,0,0,0,0,0,79.9105,9.256801,2.079442,2.273561,1
-3,1,100,0,1,129740,0,9542.002,.1670089,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,0,0,0,76.84648,9.163564,1.791759,,0
-3,1,100,0,2,129740,0,9542.002,1.167009,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,0,0,0,76.84648,9.163564,1.791759,,0
-3,1,100,0,3,129740,0,9542.002,2.167009,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,74.36826,13.73189,0,,283,283,1,0,1.791759,5.645447,1,0,0,0,0,0,76.84648,9.163564,1.791759,,0
-10,1,50,0,1,129741,0,7948.511,.1560575,0,13,1,97.46761,54.91755,0,0,0,152.3852,0,0,0,16,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,71.92097,8.980865,1.098612,5.026411,1
-10,1,50,0,2,129741,0,7948.511,1.156057,0,13,1,44.74393,20.91105,0,0,0,65.65498,0,0,0,6,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,71.92097,8.980865,1.098612,4.184413,1
-10,1,50,0,3,129741,0,7948.511,2.156058,0,13,1,43.73464,23.56757,0,0,271.7445,339.0467,1,0,0,9,0,3,74.36826,13.73189,0,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,71.92097,8.980865,1.098612,5.826138,1
-6,1,25,1,1,129742,0,7717.122,.2956879,0,16,1,29.97602,0,0,0,0,29.97602,0,0,0,3,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.4164,8.951326,1.386294,3.400398,1
-6,1,25,1,2,129742,0,7717.122,1.295688,0,16,1,22.45345,0,0,0,0,22.45345,0,0,0,2,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.4164,8.951326,1.386294,3.111444,1
-6,1,25,1,3,129742,0,7717.122,2.295688,0,16,1,4.987531,0,0,0,0,4.987531,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.4164,8.951326,1.386294,1.606941,1
-6,1,25,1,4,129742,0,7717.122,3.295688,0,16,1,7.376671,0,0,0,0,7.376671,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.4164,8.951326,1.386294,1.998322,1
-6,1,25,1,5,129742,0,7717.122,4.295688,0,16,1,43.90605,0,0,0,0,43.90605,0,0,0,1,0,4,74.36826,13.73189,0,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,82.4164,8.951326,1.386294,3.782052,1
-11,1,0,0,1,129743,1,9542.002,.0903491,1,13,1,135.5216,6.18705,0,0,1714.658,1856.367,3,0,0,9,6,8,74.36826,13.73189,.0327869,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.079442,7.526377,1
-11,1,0,0,2,129743,1,9542.002,1.090349,1,13,1,174.2881,18.34611,0,0,2025.767,2218.401,2,0,0,23,1,8,74.36826,13.73189,.0327869,,0,325,1,1,2.079442,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.079442,7.704542,1
-11,1,0,0,3,129743,1,9542.002,2.090349,1,13,1,183.9152,10.09975,0,0,654.5885,848.6035,1,0,0,41,0,9,74.36826,13.73189,.0327869,,0,325,1,1,2.197225,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.197225,6.743592,1
-11,1,0,0,4,129743,1,9542.002,3.090349,1,13,1,81.92715,0,0,0,1009.106,1091.033,1,1,0,20,0,10,74.36826,13.73189,.0327869,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.302585,6.99488,1
-11,1,0,0,5,129743,1,9542.002,4.090349,1,13,1,122.7888,16.29285,0,0,924.3419,1063.424,1,0,0,21,0,10,74.36826,13.73189,.0327869,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.302585,6.969249,1
-10,1,50,0,1,129744,0,4394.988,.5475702,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.57345,8.388448,1.386294,,0
-10,1,50,0,2,129744,0,4394.988,1.54757,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.57345,8.388448,1.386294,,0
-10,1,50,0,3,129744,0,4394.988,2.54757,0,11,1,13.75921,5.208845,0,0,0,18.96806,0,0,0,1,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.57345,8.388448,1.386294,2.942756,1
-10,1,50,0,4,129744,0,4394.988,3.54757,0,11,1,38.74202,9.380128,0,0,0,48.12215,0,0,0,4,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.57345,8.388448,1.386294,3.873743,1
-10,1,50,0,5,129744,0,4394.988,4.54757,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.57345,8.388448,1.386294,,0
-11,1,0,0,2,129746,0,5583.747,.5017111,1,11,1,94.71365,33.18282,0,0,354.3447,482.2412,1,0,0,15,0,6,74.36826,13.73189,.0327869,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.6601,8.627794,1.791759,6.178444,1
-11,1,0,0,3,129746,0,5583.747,1.501711,1,11,1,39.17629,6.805625,0,0,0,45.98192,0,0,0,7,0,6,74.36826,13.73189,.0327869,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.6601,8.627794,1.791759,3.828248,1
-11,1,0,0,4,129746,0,5583.747,2.501711,1,11,1,23.64395,20.48679,0,0,0,44.13074,0,0,0,5,0,6,74.36826,13.73189,.0327869,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.6601,8.627794,1.791759,3.787157,1
-11,1,0,0,5,129746,0,5583.747,3.501711,1,11,1,0,3.913229,0,0,0,3.913229,0,0,0,0,0,6,74.36826,13.73189,.0327869,,0,458,1,1,1.791759,6.126869,0,0,0,0,0,0,78.6601,8.627794,1.791759,1.364363,1
-1,1,0,0,2,129747,0,9542.002,.5126626,0,16,1,39.89218,2.792453,0,0,0,42.68464,0,0,0,5,0,4,74.36826,13.73189,.0327869,,450,145,1,0,1.386294,4.976734,1,0,0,0,0,0,80.89316,9.163564,1.386294,3.753839,1
-1,1,0,0,3,129747,0,9542.002,1.512663,0,16,1,60.44226,17.37101,0,0,0,77.81327,0,0,0,8,0,4,74.36826,13.73189,.0327869,,450,145,1,0,1.386294,4.976734,1,0,0,0,0,0,80.89316,9.163564,1.386294,4.354312,1
-4,1,100,0,2,129748,0,9723.945,.5017111,0,12,1,158.8679,20,0,0,0,178.8679,0,0,0,13,0,3,74.36826,13.73189,.0327869,,1000,1000,1,0,1.098612,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.098612,5.186648,1
-4,1,100,0,3,129748,0,9723.945,1.501711,0,12,1,41.76904,16.69779,0,0,0,58.46683,0,0,0,7,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,4.06846,1
-4,1,100,0,4,129748,0,9723.945,2.501711,0,12,1,30.99362,9.52598,0,0,0,40.5196,0,0,0,5,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,3.701786,1
-4,1,100,0,5,129748,0,9723.945,3.501711,0,12,1,42.51772,14.65194,0,0,0,57.16965,0,0,0,8,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,4.046023,1
-2,1,100,0,2,129750,0,8172.457,.4934976,0,12,1,38.64997,7.174741,0,0,0,45.82471,0,0,0,5,0,8,74.36826,13.73189,.0327869,,0,0,1,0,2.079442,0,1,0,0,0,0,0,81.06033,9.008647,2.079442,3.824824,1
-2,1,100,0,3,129750,0,8172.457,1.493498,0,12,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,8,74.36826,13.73189,.0327869,,0,0,1,0,2.079442,0,1,0,0,0,0,0,81.06033,9.008647,2.079442,1.600478,1
-2,1,100,0,4,129750,0,8172.457,2.493498,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,74.36826,13.73189,.0327869,,0,0,1,0,2.079442,0,1,0,0,0,0,0,81.06033,9.008647,2.079442,,0
-2,1,100,0,5,129750,0,8172.457,3.493498,0,12,1,10.93816,0,0,0,0,10.93816,0,0,0,2,0,9,74.36826,13.73189,.0327869,,0,0,1,0,2.197225,0,1,0,0,0,0,0,81.06033,9.008647,2.197225,2.392257,1
-11,1,0,0,2,129756,1,1,.8795345,0,14,1,51.56938,0,0,0,0,51.56938,0,0,0,1,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,73.85006,.6931472,1.098612,3.942928,1
-11,1,0,0,3,129756,1,1,1.879535,0,14,1,30.13561,0,0,0,0,30.13561,0,0,0,2,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,73.85006,.6931472,1.098612,3.405708,1
-8,1,50,0,2,129773,0,1728.908,.247091,1,11,1,106.9679,5.764834,0,2.721829,0,112.7327,0,0,1,13,0,4,74.36826,13.73189,.0327869,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,0,0,0,78.02865,7.455823,1.386294,4.72502,1
-8,1,50,0,3,129773,0,1728.908,1.247091,1,11,1,44.59861,8.002974,0,0,0,52.60159,0,0,0,6,0,4,74.36826,13.73189,.0327869,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,0,0,0,78.02865,7.455823,1.386294,3.962746,1
-8,1,50,0,4,129773,0,1728.908,2.247091,1,11,1,26.61771,10.94539,0,0,0,37.5631,0,0,0,3,0,4,74.36826,13.73189,.0327869,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,0,0,0,78.02865,7.455823,1.386294,3.626022,1
-8,1,50,0,5,129773,0,1728.908,3.247091,1,11,1,10.51746,2.103492,0,0,0,12.62095,0,0,0,0,0,4,74.36826,13.73189,.0327869,,163,450,1,1,1.386294,6.109248,0,3.931826,5.786897,0,0,0,78.02865,7.455823,1.386294,2.535358,1
-7,1,25,0,3,129793,0,8393.3,.8610541,0,13,1,34.68781,5.450942,0,0,0,40.13875,0,0,0,4,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.74842,9.035308,1.386294,3.692342,1
-11,1,0,0,3,129803,1,9542.002,.9869952,1,13,1,130.4239,3.117207,0,0,2036.983,2170.524,3,0,0,13,0,9,74.36826,13.73189,.0327869,,0,325,1,1,2.197225,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.197225,7.682724,1
-11,1,0,0,4,129803,1,9542.002,1.986995,1,13,1,31.44306,3.250346,0,0,0,34.69341,0,0,0,2,0,10,74.36826,13.73189,.0327869,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.302585,3.54655,1
-11,1,0,0,5,129803,1,9542.002,2.986995,1,13,1,8.887008,0,0,0,0,8.887008,0,0,0,1,0,10,74.36826,13.73189,.0327869,,0,325,1,1,2.302585,5.783825,0,0,0,0,0,0,77.93793,9.163564,2.302585,2.18459,1
-11,1,0,0,2,129811,1,1004.963,.4880219,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,0,0,1,1,1.386294,0,0,0,0,0,0,0,73.3017,6.9137,1.386294,,0
-11,1,0,0,3,129811,1,1004.963,1.488022,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,0,0,1,1,1.386294,0,0,0,0,0,0,0,73.3017,6.9137,1.386294,,0
-9,1,50,0,2,129812,0,11526.05,.6769336,0,12,1,81.59912,15.03286,8.214677,0,0,104.8467,0,0,0,10,0,6,74.36826,13.73189,.0327869,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.83923,9.352452,1.791759,4.652499,1
-9,1,50,0,3,129812,0,11526.05,1.676934,0,12,1,63.71571,.8728179,0,0,0,64.58853,0,0,0,5,0,6,74.36826,13.73189,.0327869,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.83923,9.352452,1.791759,4.168037,1
-9,1,50,0,4,129812,0,11526.05,2.676934,0,12,1,16.59751,4.550484,0,0,0,21.14799,0,0,0,2,0,6,74.36826,13.73189,.0327869,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.83923,9.352452,1.791759,3.051545,1
-9,1,50,0,5,129812,0,11526.05,3.676934,0,12,1,17.77402,0,0,0,0,17.77402,0,0,0,2,0,6,74.36826,13.73189,.0327869,,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,81.83923,9.352452,1.791759,2.877738,1
-6,1,25,0,2,129813,0,7893.92,.8877481,0,12,1,51.47864,16.54436,0,0,0,68.023,0,0,0,8,0,3,74.36826,13.73189,.0327869,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.94308,8.973975,1.098612,4.219846,1
-6,1,25,0,3,129813,0,7893.92,1.887748,0,12,1,23.4414,25.13217,0,0,0,48.57357,0,0,0,4,0,3,74.36826,13.73189,.0327869,,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.94308,8.973975,1.098612,3.88308,1
-3,1,100,0,2,129814,0,6588.709,.8795345,1,16,1,26.41509,0,0,0,0,26.41509,0,0,0,4,0,3,74.36826,13.73189,.0327869,,900,900,1,1,1.098612,6.802395,1,0,0,0,0,0,80.37918,8.793264,1.098612,3.273936,1
-3,1,100,0,3,129814,0,6588.709,1.879535,1,16,1,14.74201,10.95823,0,0,0,25.70024,0,0,0,2,0,3,74.36826,13.73189,.0327869,,900,900,1,1,1.098612,6.802395,1,0,0,0,0,0,80.37918,8.793264,1.098612,3.2465,1
-11,1,0,0,2,129815,0,7975.186,.8384668,1,12,1,45.70485,12.27423,0,0,0,57.97908,0,0,0,6,0,5,74.36826,13.73189,.0327869,,0,323,1,1,1.609438,5.777652,0,0,0,0,0,0,80.7588,8.984216,1.609438,4.060082,1
-11,1,0,0,3,129815,0,7975.186,1.838467,1,12,1,23.10397,5.273732,0,0,0,28.3777,0,0,0,3,0,5,74.36826,13.73189,.0327869,,0,323,1,1,1.609438,5.777652,0,0,0,0,0,0,80.7588,8.984216,1.609438,3.345604,1
-11,1,0,0,4,129815,0,7975.186,2.838467,1,12,1,11.59017,2.012054,0,0,0,13.60223,0,0,0,2,0,5,74.36826,13.73189,.0327869,,0,323,1,1,1.609438,5.777652,0,0,0,0,0,0,80.7588,8.984216,1.609438,2.610233,1
-11,1,0,0,5,129815,0,7975.186,3.838467,1,12,1,49.55338,10.6678,0,0,0,60.22118,0,0,0,5,1,5,74.36826,13.73189,.0327869,,0,323,1,1,1.609438,5.777652,0,0,0,0,0,0,80.7588,8.984216,1.609438,4.098024,1
-11,1,0,0,2,129816,0,8689.826,.6632444,1,17,1,79.13472,23.78423,0,0,0,102.9189,0,0,0,9,1,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,0,0,0,0,0,82.75417,9.070024,1.098612,4.633942,1
-11,1,0,0,3,129816,0,8689.826,1.663244,1,17,1,49.37656,5.820449,6.254364,0,0,61.45137,0,0,0,7,0,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,0,0,0,0,0,82.75417,9.070024,1.098612,4.118246,1
-6,1,25,0,2,129817,0,17027.92,.7015743,1,15,1,77.84431,28.03484,0,0,0,105.8792,0,0,0,9,0,4,74.36826,13.73189,.0327869,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.92996,9.742668,1.386294,4.662298,1
-6,1,25,0,3,129817,0,17027.92,1.701574,1,15,1,88.70168,35.85233,0,0,0,124.554,0,0,0,22,0,4,74.36826,13.73189,.0327869,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,81.92996,9.742668,1.386294,4.824739,1
-6,1,25,0,2,129818,0,5303.97,.5756331,1,14,1,39.64758,16.16189,0,0,0,55.80947,0,0,0,5,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.03653,8.5764,1.098612,4.021944,1
-6,1,25,0,3,129818,0,5303.97,1.575633,1,14,1,16.07232,10.77348,0,0,0,26.84581,0,0,0,2,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.03653,8.5764,1.098612,3.29011,1
-6,1,25,0,4,129818,0,5303.97,2.575633,1,14,1,216.319,17.16273,0,0,0,233.4817,0,0,0,8,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.03653,8.5764,1.098612,5.453104,1
-6,1,25,0,5,129818,0,5303.97,3.575633,1,14,1,7.656316,8.906848,0,0,0,16.56316,0,0,0,1,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.03653,8.5764,1.098612,2.807181,1
-11,1,0,0,2,129819,0,8508.685,.9069131,0,15,1,20.48518,10.48518,0,0,0,30.97035,0,0,0,2,0,4,74.36826,13.73189,.0327869,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,81.83858,9.04896,1.386294,3.43303,1
-11,1,0,0,3,129819,0,8508.685,1.906913,0,15,1,19.41032,1.174447,0,0,0,20.58477,0,0,0,3,0,4,74.36826,13.73189,.0327869,,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,81.83858,9.04896,1.386294,3.024551,1
-11,1,0,0,2,129820,0,1518.61,.9370294,1,11,1,44.35926,15.7448,0,0,0,60.10405,0,0,0,7,0,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.39096,7.32621,1.098612,4.096077,1
-11,1,0,0,3,129820,0,1518.61,1.937029,1,11,1,11.47132,4.114713,0,0,0,15.58603,0,0,1,1,0,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.39096,7.32621,1.098612,2.746375,1
-11,1,0,0,4,129820,0,1518.61,2.937029,1,11,1,14.2923,10.4426,0,0,0,24.7349,0,0,0,3,0,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.39096,7.32621,1.098612,3.208215,1
-11,1,0,0,5,129820,0,1518.61,3.937029,1,11,1,11.84934,3.470165,0,0,0,15.31951,0,0,0,2,0,4,74.36826,13.73189,.0327869,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.39096,7.32621,1.386294,2.729127,1
-2,1,100,0,2,129821,0,9138.338,.8329911,0,13,1,26.95418,1.428571,0,0,0,28.38275,0,0,0,3,0,4,74.36826,13.73189,.0327869,,890,890,1,0,1.386294,6.791222,1,0,0,0,0,0,81.7118,9.120343,1.386294,3.345782,1
-2,1,100,0,3,129821,0,9138.338,1.832991,0,13,1,9.336609,.982801,0,0,0,10.31941,0,0,0,1,0,4,74.36826,13.73189,.0327869,,890,890,1,0,1.386294,6.791222,1,0,0,0,0,0,81.7118,9.120343,1.386294,2.334027,1
-2,1,100,0,4,129821,0,9138.338,2.832991,0,13,1,15.04102,4.922516,0,0,0,19.96354,0,0,0,2,0,4,74.36826,13.73189,.0327869,,890,890,1,0,1.386294,6.791222,1,0,0,0,0,0,81.7118,9.120343,1.386294,2.993907,1
-2,1,100,0,5,129821,0,9138.338,3.832991,0,13,1,325.7857,7.419758,0,0,0,333.2055,0,0,0,6,56,4,74.36826,13.73189,.0327869,,890,890,1,0,1.386294,6.791222,1,0,0,0,0,0,81.7118,9.120343,1.386294,5.808759,1
-11,1,0,0,3,129842,0,22318.24,.7296372,1,12,1,117.9551,27.73067,0,0,0,145.6858,0,0,0,13,0,9,74.36826,13.73189,.0327869,,0,0,1,1,2.197225,0,0,0,0,0,0,0,81.69742,10.0132,2.197225,4.981452,1
-9,1,50,0,3,129846,0,17723.95,.8391513,1,12,1,32.70565,6.471754,0,0,0,39.1774,0,0,0,4,0,7,74.36826,13.73189,.0327869,,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,0,0,0,82.52234,9.782728,1.94591,3.6681,1
-5,1,25,0,3,129847,1,10909.43,.7926078,0,12,1,24.93766,0,0,0,0,24.93766,0,0,0,5,0,2,74.36826,13.73189,.0327869,,399,399,1,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,77.02913,9.297475,.6931472,3.216379,1
-5,1,25,0,4,129847,1,10909.43,1.792608,0,12,1,40.91747,2.807745,0,0,0,43.72522,0,0,0,5,0,2,74.36826,13.73189,.0327869,,399,399,1,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,77.02913,9.297475,.6931472,3.777925,1
-5,1,25,0,5,129847,1,10909.43,2.792608,0,12,1,7.194244,0,0,0,0,7.194244,0,0,0,1,0,2,74.36826,13.73189,.0327869,,399,399,1,0,.6931472,5.988961,0,3.258096,7.375256,0,0,0,77.02913,9.297475,.6931472,1.973281,1
-4,1,100,0,3,129851,0,5982.63,.715948,1,13,1,15.97052,2.599509,0,0,0,18.57002,0,0,0,3,0,3,74.36826,13.73189,.0327869,,1000,1000,1,1,1.098612,6.907755,1,0,0,0,0,0,80.58455,8.696783,1.098612,2.921549,1
-4,1,100,0,4,129851,0,5982.63,1.715948,1,13,1,1.709207,9.913401,0,0,0,11.62261,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,80.58455,8.696783,1.386294,2.452952,1
-4,1,100,0,5,129851,0,5982.63,2.715948,1,13,1,0,6.673614,0,0,0,6.673614,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,1,1.386294,6.907755,1,0,0,0,0,0,80.58455,8.696783,1.386294,1.898162,1
-11,1,0,0,3,129854,0,7755.583,.6447639,1,11,1,77.64128,8.594595,0,0,0,86.23587,0,0,0,6,0,2,74.36826,13.73189,.0327869,,0,204,1,1,.6931472,5.31812,0,0,0,0,0,0,80.04872,8.956297,.6931472,4.457086,1
-11,1,0,0,4,129854,0,7755.583,1.644764,1,11,1,23.24521,2.274385,0,0,0,25.5196,0,0,0,1,0,2,74.36826,13.73189,.0327869,,0,204,1,1,.6931472,5.31812,0,0,0,0,0,0,80.04872,8.956297,.6931472,3.239447,1
-11,1,0,0,5,129854,0,7755.583,2.644764,1,11,1,57.25302,0,0,0,0,57.25302,0,0,0,2,0,2,74.36826,13.73189,.0327869,,0,204,1,1,.6931472,5.31812,0,0,0,0,0,0,80.04872,8.956297,.6931472,4.047481,1
-11,1,0,0,3,129856,1,9542.002,.9568788,0,8,1,70.3667,7.081269,0,0,0,77.44797,0,0,0,6,0,4,74.36826,13.73189,.0327869,,0,0,1,0,1.386294,0,0,0,0,0,0,0,75.50523,9.163564,1.386294,4.349607,1
-11,1,0,0,4,129856,1,9542.002,1.956879,0,8,1,19.2749,11.00046,0,0,0,30.27536,0,0,0,4,0,4,74.36826,13.73189,.0327869,,0,0,1,0,1.386294,0,0,0,0,0,0,0,75.50523,9.163564,1.386294,3.410334,1
-11,1,0,0,5,129856,1,9542.002,2.956879,0,8,1,114.8507,10.58898,0,0,0,125.4396,0,0,0,7,0,5,74.36826,13.73189,.0327869,,0,0,1,0,1.609438,0,0,0,0,0,0,0,75.50523,9.163564,1.609438,4.831825,1
-10,1,50,0,3,129859,0,8723.945,.4339494,0,16,1,83.29177,18.89775,19.54613,0,0,121.7357,0,0,0,7,0,2,74.36826,13.73189,.0327869,,200,200,1,0,.6931472,5.298317,0,3.931826,5.991465,0,0,0,78.04851,9.073941,.6931472,4.801852,1
-10,1,50,0,4,129859,0,8723.945,1.433949,0,16,1,18.90272,21.1941,33.72983,0,0,73.82664,0,0,0,2,0,2,74.36826,13.73189,.0327869,,200,200,1,0,.6931472,5.298317,0,3.931826,5.991465,0,0,0,78.04851,9.073941,.6931472,4.30172,1
-10,1,50,0,5,129859,0,8723.945,2.433949,0,16,1,21.15954,8.556919,28.73889,0,0,58.45535,0,0,0,3,0,2,74.36826,13.73189,.0327869,,200,200,1,0,.6931472,5.298317,0,3.931826,5.991465,0,0,0,78.04851,9.073941,.6931472,4.068263,1
-9,1,50,0,3,129866,0,12300.87,.4941821,1,11,1,60.93366,7.361179,0,0,0,68.29484,0,0,0,7,0,7,74.36826,13.73189,.0327869,,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,0,0,0,81.108,9.417506,1.94591,4.223834,1
-4,1,100,0,3,129867,0,8857.32,.3983573,1,12,1,30.42394,6.503741,0,0,0,36.92768,0,0,0,4,0,6,74.36826,13.73189,.0327869,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,80.58329,9.089112,1.791759,3.608961,1
-4,1,100,0,4,129867,0,8857.32,1.398357,1,12,1,29.04564,9.460581,0,0,0,38.50623,0,0,0,1,3,6,74.36826,13.73189,.0327869,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,80.58329,9.089112,1.791759,3.65082,1
-4,1,100,0,5,129867,0,8857.32,2.398357,1,12,1,36.9234,6.068557,0,0,0,42.99196,0,0,0,0,6,6,74.36826,13.73189,.0327869,,1000,1000,1,1,1.791759,6.907755,1,0,0,0,0,0,80.58329,9.089112,1.791759,3.761013,1
-6,1,25,0,3,129868,0,9743.176,.4640657,1,12,1,127.1499,10.00491,0,0,0,137.1548,0,0,0,11,1,5,74.36826,13.73189,.0327869,,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,81.11051,9.184425,1.609438,4.92111,1
-11,1,0,0,3,129870,0,6108.39,.3080082,1,12,1,85.28678,5.23192,0,0,0,90.5187,0,0,0,11,0,3,74.36826,13.73189,.0327869,,0,146,1,1,1.098612,4.983607,0,0,0,0,0,0,80.16436,8.717582,1.098612,4.505557,1
-4,1,100,0,3,129871,0,4392.68,.5407255,0,11,1,8.845209,3.528255,0,0,0,12.37346,0,0,0,1,0,3,74.36826,13.73189,.0327869,,75,75,1,0,1.098612,4.317488,1,0,0,0,0,0,75.84013,8.387922,1.098612,2.515554,1
-4,1,100,0,4,129871,0,4392.68,1.540726,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,.0327869,,75,75,1,0,1.098612,4.317488,1,0,0,0,0,0,75.84013,8.387922,1.098612,,0
-4,1,100,0,5,129871,0,4392.68,2.540725,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,74.36826,13.73189,.0327869,,75,75,1,0,1.098612,4.317488,1,0,0,0,0,0,75.84013,8.387922,1.098612,,0
-4,1,100,0,3,129872,0,9723.945,.3408624,0,12,1,117.4447,22.62899,10.01474,0,0,150.0885,0,0,0,18,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,5.011225,1
-4,1,100,0,4,129872,0,9723.945,1.340862,0,12,1,32.81677,1.98268,0,0,0,34.79945,0,0,0,5,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,3.549602,1
-4,1,100,0,5,129872,0,9723.945,2.340863,0,12,1,18.34097,0,0,0,0,18.34097,0,0,0,2,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,82.17735,9.182449,1.386294,2.909138,1
-11,1,0,0,4,129889,0,9542.002,.779603,0,12,1,262.7165,26.75934,0,0,0,289.4758,0,0,0,12,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,82.56407,9.163564,1.098612,5.668072,1
-11,1,0,0,5,129889,0,9542.002,1.779603,0,12,1,47.93664,0,0,0,0,47.93664,0,0,0,8,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,82.56407,9.163564,1.098612,3.86988,1
-1,1,0,0,3,129892,0,8401.985,.3819302,1,16,1,81.57248,10.7027,0,0,930.2949,1022.57,1,0,0,8,0,4,74.36826,13.73189,.0327869,,450,450,1,1,1.386294,6.109248,1,0,0,0,0,0,80.21985,9.036343,1.386294,6.930074,1
-11,1,0,0,4,129905,0,5075.062,.4291581,0,13,1,163.4855,7.833103,0,0,0,171.3186,0,0,0,15,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,79.02892,8.532291,1.098612,5.143525,1
-11,1,0,0,5,129905,0,5075.062,1.429158,0,13,1,30.46974,13.96107,0,0,0,44.43081,0,0,0,6,0,3,74.36826,13.73189,.0327869,,0,0,1,0,1.098612,0,0,0,0,0,0,0,79.02892,8.532291,1.098612,3.793933,1
-8,1,50,0,4,129908,0,8419.976,.8480493,1,12,1,50.25357,6.860304,0,0,0,57.11388,0,0,0,6,0,5,74.36826,13.73189,.0327869,,599,599,1,1,1.609438,6.395262,0,3.931826,7.088409,0,0,0,80.42316,9.038481,1.609438,4.045047,1
-8,1,50,0,5,129908,0,8419.976,1.848049,1,12,1,28.77698,8.451121,0,0,0,37.2281,0,0,0,6,0,5,74.36826,13.73189,.0327869,,599,599,1,1,1.609438,6.395262,0,3.931826,7.088409,0,0,0,80.42316,9.038481,1.609438,3.617064,1
-11,1,0,0,4,129910,1,9542.002,.3880903,0,13,1,59.01337,0,0,0,0,59.01337,0,0,0,4,0,10,74.36826,13.73189,.0327869,,0,325,1,0,2.302585,5.783825,0,0,0,0,0,0,78.4519,9.163564,2.302585,4.077764,1
-11,1,0,0,5,129910,1,9542.002,1.38809,0,13,1,25.81464,0,0,0,0,25.81464,0,0,0,3,0,10,74.36826,13.73189,.0327869,,0,325,1,0,2.302585,5.783825,0,0,0,0,0,0,78.4519,9.163564,2.302585,3.250942,1
-11,1,0,0,4,129914,0,6586.849,.3004791,0,12,1,66.39005,26.83725,0,0,0,93.22729,0,0,0,8,0,2,74.36826,13.73189,.0327869,,0,0,1,0,.6931472,0,0,0,0,0,0,0,79.42117,8.792982,.6931472,4.53504,1
-11,1,0,0,5,129914,0,6586.849,1.300479,0,12,1,47.04613,2.323318,0,0,0,49.36945,0,0,0,6,0,2,74.36826,13.73189,.0327869,,0,0,1,0,.6931472,0,0,0,0,0,0,0,79.42117,8.792982,.6931472,3.899332,1
-11,1,0,0,4,129932,0,10726.43,.4236824,1,13,1,269.1602,21.43185,0,0,215.1675,505.7595,1,0,0,20,0,4,74.36826,13.73189,.0327869,,0,101,1,1,1.386294,4.61512,0,0,0,0,0,0,80.68107,9.280559,1.386294,6.226061,1
-11,1,0,0,5,129932,0,10726.43,1.423682,1,13,1,179.0913,33.68953,0,0,0,212.7808,0,0,0,14,0,4,74.36826,13.73189,.0327869,,0,101,1,1,1.386294,4.61512,0,0,0,0,0,0,80.68107,9.280559,1.386294,5.360263,1
-4,1,100,0,4,129933,0,5982.63,.2046544,0,13,1,29.96809,5.542388,0,0,0,35.51048,0,0,0,2,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.09853,8.696783,1.386294,3.569828,1
-4,1,100,0,5,129933,0,5982.63,1.204654,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,1000,1000,1,0,1.386294,6.907755,1,0,0,0,0,0,81.09853,8.696783,1.386294,,0
-2,1,100,0,4,129937,0,5361.663,.2758385,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.36826,13.73189,.0327869,,409,0,1,1,1.386294,0,1,0,0,0,0,0,78.56108,8.587215,1.386294,,0
-2,1,100,0,5,129937,0,5361.663,1.275838,1,11,1,85.06136,1.269573,0,0,0,86.33093,0,0,0,5,0,4,74.36826,13.73189,.0327869,,409,0,1,1,1.386294,0,1,0,0,0,0,0,78.56108,8.587215,1.386294,4.458188,1
-11,1,0,0,5,129942,0,1518.61,.8596851,1,11,1,44.01185,6.191282,0,0,0,50.20313,0,0,0,7,0,4,74.36826,13.73189,.0327869,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.39096,7.32621,1.386294,3.916077,1
-7,1,25,0,5,129946,0,246.8983,.9253936,1,12,1,77.71989,9.028762,0,0,0,86.74864,0,0,0,6,0,3,74.36826,13.73189,.0327869,,0,0,1,1,1.098612,0,0,3.258096,0,0,0,0,76.69736,5.513019,1.098612,4.463015,1
-1,1,0,0,3,129951,0,1,.45859,0,9,1,12.28501,4.422605,0,0,0,16.70762,0,0,0,2,0,2,74.36826,13.73189,.0327869,,150,0,1,0,.6931472,0,1,0,0,0,0,0,78.54263,.6931472,.6931472,2.815865,1
-11,1,0,0,5,129974,1,9542.002,.4544832,1,8,1,36.60076,5.115692,0,0,0,41.71645,0,0,0,7,0,5,74.36826,13.73189,.0327869,,0,0,1,1,1.609438,0,0,0,0,0,0,0,74.99126,9.163564,1.609438,3.730896,1
-11,1,0,0,5,129978,0,9542.002,.2217659,1,15,1,38.93356,29.64452,0,0,0,68.57808,0,0,0,5,0,4,74.36826,13.73189,.0327869,,0,258,1,1,1.386294,5.552959,0,0,0,0,0,0,80.92299,9.163564,1.386294,4.227973,1
-2,1,100,0,5,129979,0,4534.119,.3832991,1,16,1,0,2.634431,0,0,0,2.634431,0,0,0,0,0,2,74.36826,13.73189,.0327869,,345,345,1,1,.6931472,5.843544,1,0,0,0,0,0,80.91808,8.419606,.6931472,.9686673,1
-2,1,100,0,5,129984,0,8172.457,.4435318,1,12,1,11.35886,3.188894,0,0,0,14.54775,0,0,0,2,0,9,74.36826,13.73189,.0327869,,0,0,1,1,2.197225,0,1,0,0,0,0,0,80.54636,9.008647,2.197225,2.677436,1
-7,1,25,0,5,129987,0,4188.585,.2491444,1,12,1,33.76407,0,0,0,0,33.76407,0,0,0,4,0,2,74.36826,13.73189,.0327869,,600,600,1,1,.6931472,6.39693,0,3.258096,7.783224,0,0,0,78.79649,8.340357,.6931472,3.519397,1
-1,1,0,0,5,129989,0,11965.26,.0657084,1,15,1,45.85612,6.705932,0,0,0,52.56205,0,0,0,7,0,5,74.36826,13.73189,.0327869,,450,120,1,1,1.609438,4.787492,1,0,0,0,0,0,81.90672,9.389847,1.609438,3.961994,1
-4,1,100,0,5,129992,0,6055.831,.0848734,0,12,1,104.7397,0,0,0,0,104.7397,0,0,0,13,0,2,74.36826,13.73189,.0327869,,374,374,1,0,.6931472,5.924256,1,0,0,0,0,0,78.3275,8.708942,.6931472,4.651479,1
-13,2,0,0,1,225019,0,6242.815,23.78645,0,12,1,82.6833,0,36.72387,0,0,119.4072,0,0,0,2,0,2,49.5,13.8,0,59.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,59.1,8.739347,.6931472,4.782539,1
-13,2,0,0,2,225019,0,6242.815,24.78645,0,12,1,5.255614,0,0,0,0,5.255614,0,0,0,1,0,3,49.5,13.8,0,59.1,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,59.1,8.739347,1.098612,1.659297,1
-13,2,0,0,3,225019,0,6242.815,25.78645,0,12,1,19.75417,0,0,0,0,19.75417,0,0,0,0,1,3,49.5,13.8,0,59.1,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,59.1,8.739347,1.098612,2.983365,1
-15,2,95,1,1,225020,0,4848.094,25.6564,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,55.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,55.7,8.486547,.6931472,,0
-15,2,95,1,2,225020,0,4848.094,26.6564,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,55.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,55.7,8.486547,.6931472,,0
-15,2,95,1,3,225020,0,4848.094,27.6564,0,16,1,30.60072,0,0,0,0,30.60072,0,0,0,3,0,2,75,6.9,0,55.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,55.7,8.486547,.6931472,3.421024,1
-15,2,95,1,4,225020,0,4848.094,28.6564,0,16,1,127.9694,0,0,0,0,127.9694,0,0,0,3,0,2,75,6.9,0,55.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,55.7,8.486547,.6931472,4.851791,1
-15,2,95,1,5,225020,0,4848.094,29.6564,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,55.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,55.7,8.486547,.6931472,,0
-15,2,95,1,1,225021,0,4848.094,23.3347,1,16,1,19.80728,6.183084,0,0,0,25.99036,0,0,0,1,1,2,79.3,10.3,0,80.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,80.7,8.486547,.6931472,3.257726,1
-15,2,95,1,2,225021,0,4848.094,24.3347,1,16,1,41.48365,32.75744,0,0,0,74.2411,0,0,0,3,1,2,79.3,10.3,0,80.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,80.7,8.486547,.6931472,4.307318,1
-15,2,95,1,3,225021,0,4848.094,25.3347,1,16,1,6.775068,.9530262,0,0,0,7.728094,0,0,0,0,0,2,79.3,10.3,0,80.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,80.7,8.486547,.6931472,2.044862,1
-15,2,95,1,4,225021,0,4848.094,26.3347,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,79.3,10.3,0,80.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,80.7,8.486547,.6931472,,0
-15,2,95,1,5,225021,0,4848.094,27.3347,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,79.3,10.3,0,80.7,550,550,0,0,.6931472,6.309918,0,4.564348,6.361212,1,0,0,80.7,8.486547,.6931472,,0
-11,2,0,1,1,225022,0,9751.906,36.1807,0,13,1,75.57211,0,0,0,0,75.57211,0,0,0,1,6,2,85.6,10.3,0,68.2,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,68.2,9.185321,.6931472,4.325088,1
-11,2,0,1,2,225022,0,9751.906,37.1807,0,13,1,34.90063,0,0,0,0,34.90063,0,0,0,0,6,2,85.6,10.3,0,68.2,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,68.2,9.185321,.6931472,3.552505,1
-11,2,0,1,3,225022,0,9751.906,38.1807,0,13,1,104.7844,0,35.30099,0,0,140.0854,0,0,0,2,7,2,85.6,10.3,0,68.2,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,68.2,9.185321,.6931472,4.942252,1
-11,2,0,1,1,225023,0,9751.906,28.04381,1,12,1,101.8095,15.65194,0,0,0,117.4614,0,0,0,2,7,2,80.9,27.6,0,70.5,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,70.5,9.185321,.6931472,4.76611,1
-11,2,0,1,2,225023,0,9751.906,29.04381,1,12,1,104.096,0,0,0,0,104.096,0,0,0,3,4,2,80.9,27.6,0,70.5,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,70.5,9.185321,.6931472,4.645313,1
-11,2,0,1,3,225023,0,9751.906,30.04381,1,12,1,404.1779,17.99191,0,0,0,422.1698,0,0,0,6,13,2,80.9,27.6,0,70.5,0,179.04,0,0,.6931472,5.187609,0,0,0,1,0,0,70.5,9.185321,.6931472,6.045408,1
-13,2,0,1,1,225032,0,8263.93,7.603012,1,12,1,260.3504,18.10243,0,0,56.95418,335.407,1,0,0,3,1,5,85,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,5.815345,1
-13,2,0,1,2,225032,0,8263.93,8.603012,1,12,1,24.32432,0,0,0,0,24.32432,0,0,0,1,1,5,85,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,3.191477,1
-13,2,0,1,3,225032,0,8263.93,9.603012,1,12,1,33.27256,10.82954,0,0,0,44.1021,0,0,0,2,1,5,85,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,3.786507,1
-13,2,0,1,1,225033,0,8263.93,30.30801,0,9,1,13.47709,0,31.36927,0,0,44.84636,0,0,0,0,1,5,85.6,6.9,0,72.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.019776,1.609438,3.803242,1
-13,2,0,1,2,225033,0,8263.93,31.30801,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,6.9,0,72.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.019776,1.609438,,0
-13,2,0,1,3,225033,0,8263.93,32.30801,0,9,1,85.5743,20.10483,0,0,0,105.6791,0,0,0,9,1,5,85.6,6.9,0,72.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.019776,1.609438,4.660408,1
-13,2,0,1,1,225034,0,8263.93,.8596851,1,12,1,157.0081,34.58221,0,0,0,191.5903,0,0,0,19,0,5,81.35272,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,5.255359,1
-13,2,0,1,2,225034,0,8263.93,1.859685,1,12,1,69.04177,35.71008,0,0,0,104.7518,0,0,0,6,0,5,81.35272,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,4.651594,1
-13,2,0,1,3,225034,0,8263.93,2.859685,1,12,1,70.64722,39.45305,0,0,283.2726,393.3728,1,0,0,7,0,5,81.35272,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,5.974758,1
-13,2,0,1,1,225035,0,8263.93,9.500342,0,12,1,13.47709,0,25.83288,0,0,39.30997,0,0,0,0,1,5,85,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,3.671478,1
-13,2,0,1,2,225035,0,8263.93,10.50034,0,12,1,116.4619,0,14.74201,0,0,131.2039,0,0,0,5,1,5,85,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,4.876753,1
-13,2,0,1,3,225035,0,8263.93,11.50034,0,12,1,105.0592,22.79398,28.08569,0,0,155.9389,0,0,0,6,1,5,85,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.019776,1.609438,5.049464,1
-13,2,0,1,1,225036,0,8263.93,31.04996,1,12,1,72.938,3.374663,34.63073,0,0,110.9434,0,0,0,4,2,5,65.4,24.1,0,43.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.019776,1.609438,4.70902,1
-13,2,0,1,2,225036,0,8263.93,32.04996,1,12,1,52.33415,16.69287,0,0,1866.167,1935.194,2,0,0,5,0,5,65.4,24.1,0,43.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.019776,1.609438,7.567963,1
-13,2,0,1,3,225036,0,8263.93,33.04996,1,12,1,39.6536,0,0,0,0,39.6536,0,0,0,2,2,5,65.4,24.1,0,43.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.019776,1.609438,3.680182,1
-7,2,25,1,1,225040,0,8288.563,54.02875,1,10,1,14.04056,15.39262,0,0,0,29.43318,0,0,0,2,0,2,92,20.7,0,84.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.022753,.6931472,3.382123,1
-7,2,25,1,2,225040,0,8288.563,55.02875,1,10,1,16.72241,0,35.57573,0,0,52.29814,0,0,0,0,1,2,92,20.7,0,84.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.022753,.6931472,3.956961,1
-7,2,25,1,3,225040,0,8288.563,56.02875,1,10,1,72.10272,2.589991,307.2871,0,0,381.9798,0,0,0,2,0,2,92,20.7,0,84.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.022753,.6931472,5.945368,1
-7,2,25,1,4,225040,0,8288.563,57.02875,1,10,1,12.76426,0,35.81173,0,0,48.57599,0,0,0,0,1,2,92,20.7,0,84.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.022753,.6931472,3.883129,1
-7,2,25,1,5,225040,0,8288.563,58.02875,1,10,1,18.12908,0,0,0,0,18.12908,0,0,0,2,0,2,92,20.7,0,84.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.022753,.6931472,2.897517,1
-7,2,25,1,1,225041,0,8288.563,59.32101,0,12,1,18.72075,4.550182,0,0,0,23.27093,0,0,0,1,0,2,93.1,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.022753,.6931472,3.147205,1
-7,2,25,1,2,225041,0,8288.563,60.32101,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.022753,.6931472,,0
-7,2,25,1,3,225041,0,8288.563,61.32101,0,12,1,13.16945,0,49.50834,0,0,62.67779,0,0,0,0,1,2,93.1,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.022753,.6931472,4.138007,1
-7,2,25,1,4,225041,0,8288.563,62.32101,0,12,1,7.179896,5.540487,0,0,0,12.72038,0,0,0,1,0,2,93.1,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.022753,.6931472,2.543206,1
-7,2,25,1,5,225041,0,8288.563,63.32101,0,12,1,85.71429,2.751994,0,0,0,88.46628,0,0,0,3,0,2,93.1,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.022753,.6931472,4.482622,1
-11,2,0,0,1,225060,0,9883.284,24.21903,0,12,1,37.64289,0,0,0,0,37.64289,0,0,0,1,0,2,73.4,6.9,0,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,9.198701,.6931472,3.628144,1
-11,2,0,0,2,225060,0,9883.284,25.21903,0,12,1,60.20813,9.395441,0,0,0,69.60357,0,0,0,3,0,2,73.4,6.9,0,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,9.198701,.6931472,4.242816,1
-11,2,0,0,3,225060,0,9883.284,26.21903,0,12,1,16.06241,0,42.02386,0,0,58.08628,0,0,0,0,1,3,73.4,6.9,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.198701,1.098612,4.061929,1
-11,2,0,0,1,225061,0,9883.284,21.54141,1,12,1,128.4703,9.49374,0,0,70.76756,208.7316,1,1,0,6,3,2,71.3,6.9,0,64.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,64.8,9.198701,.6931472,5.341049,1
-11,2,0,0,2,225061,0,9883.284,22.54141,1,12,1,24.0337,55.37165,2.953419,0,715.6343,797.993,1,0,0,1,0,2,71.3,6.9,0,64.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,64.8,9.198701,.6931472,6.6821,1
-11,2,0,0,3,225061,0,9883.284,23.54141,1,12,1,0,15.14915,0,0,0,15.14915,0,0,0,0,0,3,71.3,6.9,0,64.8,0,0,0,0,1.098612,0,0,0,0,0,0,0,64.8,9.198701,1.098612,2.717944,1
-14,2,95,1,1,225062,0,5547.801,26.0616,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,97.7,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,0,0,0,97.7,8.621337,.6931472,,0
-14,2,95,1,2,225062,0,5547.801,27.0616,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,97.7,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,0,0,0,97.7,8.621337,.6931472,,0
-14,2,95,1,3,225062,0,5547.801,28.0616,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,97.7,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,0,0,0,97.7,8.621337,.6931472,,0
-14,2,95,1,1,225063,0,5547.801,22.34634,1,16,1,19.40701,9.865229,0,0,0,29.27224,0,0,0,1,0,2,73.4,20.7,1,46.6,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,1,0,0,46.6,8.621337,.6931472,3.37664,1
-14,2,95,1,2,225063,0,5547.801,23.34634,1,16,1,8.353808,11.58722,22.11302,0,0,42.05405,0,0,0,1,0,2,73.4,20.7,1,46.6,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,1,0,0,46.6,8.621337,.6931472,3.738956,1
-14,2,95,1,3,225063,0,5547.801,24.34634,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,73.4,20.7,1,46.6,205.1,81.93,0,0,.6931472,4.405865,0,4.564348,5.374791,1,0,0,46.6,8.621337,.6931472,,0
-11,2,0,1,1,225064,0,6253.373,24.05202,0,13,1,32.25375,0,0,0,0,32.25375,0,0,0,2,0,2,70.2,6.9,0,44.3,0,0,0,0,.6931472,0,0,0,0,1,0,0,44.3,8.741036,.6931472,3.473634,1
-11,2,0,1,2,225064,0,6253.373,25.05202,0,13,1,17.32553,1.756955,0,0,0,19.08248,0,0,0,2,0,2,70.2,6.9,0,44.3,0,0,0,0,.6931472,0,0,0,0,1,0,0,44.3,8.741036,.6931472,2.948771,1
-11,2,0,1,3,225064,0,6253.373,26.05202,0,13,1,39.29539,5.140018,0,18.06685,0,44.43541,0,0,2,4,0,2,70.2,6.9,0,44.3,0,0,0,0,.6931472,0,0,0,0,1,0,0,44.3,8.741036,.6931472,3.794037,1
-11,2,0,1,1,225065,0,6253.373,20.69815,1,12,1,151.2313,11.31692,0,0,0,162.5482,0,0,0,14,0,2,84,13.8,0,60.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,60.2,8.741036,.6931472,5.090974,1
-11,2,0,1,2,225065,0,6253.373,21.69815,1,12,1,107.7355,4.636408,0,0,0,112.3719,0,0,0,10,0,2,84,13.8,0,60.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,60.2,8.741036,.6931472,4.721814,1
-11,2,0,1,3,225065,0,6253.373,22.69815,1,12,1,233.9657,45.98916,0,31.61698,797.3758,1077.331,1,0,3,22,0,2,84,13.8,0,60.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,60.2,8.741036,.6931472,6.982242,1
-13,2,0,1,1,225066,0,4092.669,20.21355,1,13,1,43.40921,3.54685,19.0577,0,643.7692,709.783,1,0,0,1,1,3,66.5,10.3,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,85.2,8.317197,1.098612,6.564959,1
-13,2,0,1,2,225066,0,4092.669,21.21355,1,13,1,12.54826,0,0,0,0,12.54826,0,0,0,1,0,4,66.5,10.3,0,85.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,85.2,8.317197,1.386294,2.529582,1
-13,2,0,1,3,225066,0,4092.669,22.21355,1,13,1,4.450378,4.650645,0,0,593.5024,602.6035,1,0,0,0,0,4,66.5,10.3,0,85.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,85.2,8.317197,1.386294,6.401259,1
-13,2,0,1,1,225067,0,4092.669,27.29911,0,13,1,40.23293,0,35.0397,0,0,75.27263,0,0,0,3,0,3,73.4,0,0,60.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,60.2,8.317197,1.098612,4.321116,1
-13,2,0,1,2,225067,0,4092.669,28.29911,0,13,1,22.6834,3.875483,0,0,0,26.55888,0,0,0,2,0,4,73.4,0,0,60.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,60.2,8.317197,1.386294,3.279364,1
-13,2,0,1,3,225067,0,4092.669,29.29911,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,0,0,60.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,60.2,8.317197,1.386294,,0
-15,2,95,1,1,225068,0,12639.3,27.2334,0,15,1,16.71159,0,0,0,0,16.71159,0,0,0,1,0,2,80.9,3.4,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,53.4,9.444645,.6931472,2.816103,1
-15,2,95,1,2,225068,0,12639.3,28.2334,0,15,1,86.97789,0,0,0,0,86.97789,0,0,0,3,0,2,80.9,3.4,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,53.4,9.444645,.6931472,4.465654,1
-15,2,95,1,3,225068,0,12639.3,29.2334,0,15,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,3.4,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,53.4,9.444645,.6931472,,0
-15,2,95,1,1,225069,0,12639.3,24.9473,1,14,1,33.42318,2.932615,19.40701,0,0,55.7628,0,0,0,3,0,2,72.9,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.444645,.6931472,4.021107,1
-15,2,95,1,2,225069,0,12639.3,25.9473,1,14,1,12.28501,0,0,0,0,12.28501,0,0,0,1,0,2,72.9,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.444645,.6931472,2.50838,1
-15,2,95,1,3,225069,0,12639.3,26.9473,1,14,1,9.11577,0,0,0,0,9.11577,0,0,0,1,0,2,72.9,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.444645,.6931472,2.210006,1
-13,2,0,0,1,225075,0,3851.026,50.31896,1,12,1,95.31169,12.39052,36.56878,0,0,144.271,0,0,0,3,0,1,64.9,10.3,0,75,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,75,8.256354,0,4.971694,1
-13,2,0,0,2,225075,0,3851.026,51.31896,1,12,1,75.99432,21.30208,0,0,0,97.2964,0,0,0,7,0,1,64.9,10.3,0,75,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,75,8.256354,0,4.577762,1
-13,2,0,0,3,225075,0,3851.026,52.31896,1,12,1,163.6324,23.03858,0,0,0,186.671,0,0,0,13,0,1,64.9,10.3,0,75,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,75,8.256354,0,5.229348,1
-11,2,0,0,1,225076,0,6874.487,57.01027,1,12,1,85.49251,33.51178,57.27516,0,0,176.2794,0,0,0,4,0,1,87.4,13.8,0,100,0,481.92,0,0,0,6.177778,0,0,0,0,0,0,100,8.835718,0,5.172071,1
-11,2,0,0,2,225076,0,6874.487,58.01027,1,12,1,125.3538,30.55149,0,0,0,155.9053,0,0,0,3,0,1,87.4,13.8,0,100,0,481.92,0,0,0,6.177778,0,0,0,0,0,0,100,8.835718,0,5.049249,1
-11,2,0,0,3,225076,0,6874.487,59.01027,1,12,1,86.72087,25.75881,14.81481,0,0,127.2945,0,0,0,3,0,1,87.4,13.8,0,100,0,481.92,0,0,0,6.177778,0,0,0,0,0,0,100,8.835718,0,4.846503,1
-11,2,0,0,4,225076,0,6874.487,60.01027,1,12,1,60.38048,63.32093,49.33002,0,0,173.0314,0,0,0,4,0,1,87.4,13.8,0,100,0,481.92,0,0,0,6.177778,0,0,0,0,0,0,100,8.835718,0,5.153473,1
-11,2,0,0,5,225076,0,6874.487,61.01027,1,12,1,290.5365,63.49106,46.68406,0,0,400.7116,0,0,0,8,0,1,87.4,13.8,0,100,0,481.92,0,0,0,6.177778,0,0,0,0,0,0,100,8.835718,0,5.993242,1
-15,2,95,1,1,225077,0,5484.751,3.964408,1,10,1,14.69788,1.769189,0,0,0,16.46707,0,0,0,2,0,5,81.35272,11.84267,0,63,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,2.801362,1
-15,2,95,1,2,225077,0,5484.751,4.964408,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,63,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,,0
-15,2,95,1,3,225077,0,5484.751,5.964408,1,10,1,12.62047,3.373107,0,0,0,15.99358,0,0,0,1,0,5,81.35272,11.84267,0,63,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,2.772187,1
-15,2,95,1,1,225078,0,5484.751,35.30458,0,12,1,16.33097,1.143168,0,0,0,17.47414,0,0,0,2,0,5,85.6,10.3,0,62.5,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,62.5,8.609909,1.609438,2.860722,1
-15,2,95,1,2,225078,0,5484.751,36.30458,0,12,1,69.37562,0,25.39148,0,0,94.7671,0,0,0,8,1,5,85.6,10.3,0,62.5,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,62.5,8.609909,1.609438,4.551422,1
-15,2,95,1,3,225078,0,5484.751,37.30458,0,12,1,16.98027,8.733364,0,0,0,25.71363,0,0,0,2,0,5,85.6,10.3,0,62.5,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,62.5,8.609909,1.609438,3.247021,1
-15,2,95,1,1,225079,0,5484.751,31.72895,1,10,1,0,7.512248,0,0,0,7.512248,0,0,0,0,0,5,70.2,27.6,1,60.2,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,60.2,8.609909,1.609438,2.016535,1
-15,2,95,1,2,225079,0,5484.751,32.72895,1,10,1,68.88008,0,0,0,0,68.88008,0,0,0,3,0,5,70.2,27.6,1,60.2,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,60.2,8.609909,1.609438,4.232367,1
-15,2,95,1,3,225079,0,5484.751,33.72895,1,10,1,132.1707,16.99403,0,0,0,149.1647,0,0,0,6,0,5,70.2,27.6,1,60.2,552.5,396.19,0,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,60.2,8.609909,1.609438,5.005052,1
-15,2,95,1,1,225080,0,5484.751,8.366872,0,10,1,31.30103,1.137725,0,0,161.8672,194.3059,1,0,0,3,0,5,60,11.84267,0,63,552.5,396.19,1,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,5.269434,1
-15,2,95,1,2,225080,0,5484.751,9.366872,0,10,1,87.33895,12.72052,0,0,0,100.0595,0,0,0,6,0,5,60,11.84267,0,63,552.5,396.19,1,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,4.605765,1
-15,2,95,1,3,225080,0,5484.751,10.36687,0,10,1,66.29188,0,0,0,0,66.29188,0,0,0,1,0,5,60,11.84267,0,63,552.5,396.19,1,0,1.609438,5.981894,0,4.564348,6.365746,1,0,0,63,8.609909,1.609438,4.194067,1
-15,2,95,1,1,225081,0,5484.751,6.893909,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,60,11.84267,0,55.6,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,55.6,8.609909,1.609438,,0
-15,2,95,1,2,225081,0,5484.751,7.893909,1,10,1,14.8662,2.725471,0,0,0,17.59167,0,0,0,2,0,5,60,11.84267,0,55.6,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,55.6,8.609909,1.609438,2.867426,1
-15,2,95,1,3,225081,0,5484.751,8.893909,1,10,1,131.62,0,0,0,0,131.62,0,0,0,3,0,5,60,11.84267,0,55.6,552.5,396.19,1,1,1.609438,5.981894,0,4.564348,6.365746,1,0,0,55.6,8.609909,1.609438,4.879919,1
-13,2,0,1,1,225099,0,13923.17,12.64613,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,11.84267,0,66.7,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,66.7,9.541381,1.609438,,0
-13,2,0,1,2,225099,0,13923.17,13.64613,0,17,1,19.38924,1.33301,20.77072,0,0,41.49297,0,0,0,1,0,5,93.3,11.84267,0,66.7,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,66.7,9.541381,1.609438,3.725524,1
-13,2,0,1,3,225099,0,13923.17,14.64613,0,17,1,30.9973,13.2345,53.43666,0,0,97.66846,0,0,0,3,0,5,93.3,11.84267,0,66.7,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,66.7,9.541381,1.609438,4.581579,1
-13,2,0,1,4,225099,0,13923.17,15.64613,0,17,1,60.73041,55.85556,1.148954,0,0,117.7349,0,0,0,8,0,5,93.3,11.84267,0,66.7,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,66.7,9.541381,1.609438,4.768435,1
-13,2,0,1,5,225099,0,13923.17,16.64613,0,17,1,16.62971,27.12491,0,0,0,43.75462,0,0,0,3,0,5,93.3,11.84267,0,66.7,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,66.7,9.541381,1.609438,3.778597,1
-13,2,0,1,1,225100,0,13923.17,7.811088,0,17,1,4.789782,0,0,0,0,4.789782,0,0,0,1,0,5,86.7,11.84267,0,63,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,63,9.541381,1.609438,1.566485,1
-13,2,0,1,2,225100,0,13923.17,8.811089,0,17,1,38.17257,6.034901,0,0,0,44.20747,0,0,0,3,0,5,86.7,11.84267,0,63,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,63,9.541381,1.609438,3.788894,1
-13,2,0,1,3,225100,0,13923.17,9.811089,0,17,1,15.27403,2.4708,0,0,0,17.74483,0,0,0,2,0,5,86.7,11.84267,0,63,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,63,9.541381,1.609438,2.876094,1
-13,2,0,1,4,225100,0,13923.17,10.81109,0,17,1,7.38613,2.872384,0,0,0,10.25851,0,0,0,1,0,5,86.7,11.84267,0,63,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,63,9.541381,1.609438,2.328108,1
-13,2,0,1,5,225100,0,13923.17,11.81109,0,17,1,24.02069,1.459719,30.14782,0,0,55.62823,0,0,0,2,0,5,86.7,11.84267,0,63,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,63,9.541381,1.609438,4.018691,1
-13,2,0,1,1,225101,0,13923.17,45.81793,0,16,1,13.30495,0,30.49494,0,0,43.79989,0,0,0,1,0,5,88.3,3.4,0,80.7,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,80.7,9.541381,1.609438,3.779631,1
-13,2,0,1,2,225101,0,13923.17,46.81793,0,16,1,37.32428,0,0,0,0,37.32428,0,0,0,1,0,5,88.3,3.4,0,80.7,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,80.7,9.541381,1.609438,3.619644,1
-13,2,0,1,3,225101,0,13923.17,47.81793,0,16,1,0,2.672956,0,0,0,2.672956,0,0,0,0,0,5,88.3,3.4,0,80.7,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,80.7,9.541381,1.609438,.983185,1
-13,2,0,1,4,225101,0,13923.17,48.81793,0,16,1,8.206812,2.769799,0,0,0,10.97661,0,0,0,1,0,5,88.3,3.4,0,80.7,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,80.7,9.541381,1.609438,2.395767,1
-13,2,0,1,5,225101,0,13923.17,49.81793,0,16,1,20.3252,0,0,0,0,20.3252,0,0,0,1,0,5,88.3,3.4,0,80.7,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,80.7,9.541381,1.609438,3.011862,1
-13,2,0,1,1,225102,0,13923.17,10.69131,0,17,1,61.17616,7.317722,0,0,0,68.49388,0,0,0,4,0,5,93.3,11.84267,0,77.8,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.8,9.541381,1.609438,4.226745,1
-13,2,0,1,2,225102,0,13923.17,11.69131,0,17,1,30.41687,1.33301,0,0,0,31.74988,0,0,0,2,0,5,93.3,11.84267,0,77.8,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.8,9.541381,1.609438,3.457889,1
-13,2,0,1,3,225102,0,13923.17,12.69131,0,17,1,33.69272,5.952381,0,0,0,39.6451,0,0,0,3,0,5,93.3,11.84267,0,77.8,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.8,9.541381,1.609438,3.679967,1
-13,2,0,1,4,225102,0,13923.17,13.69131,0,17,1,7.38613,0,0,0,0,7.38613,0,0,0,1,0,5,93.3,11.84267,0,77.8,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.8,9.541381,1.609438,1.999604,1
-13,2,0,1,5,225102,0,13923.17,14.69131,0,17,1,39.54176,2.494457,34.45307,0,0,76.48928,0,0,0,4,0,5,93.3,11.84267,0,77.8,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.8,9.541381,1.609438,4.337151,1
-13,2,0,1,1,225103,0,13923.17,41.29227,1,17,1,6.386376,2.261841,0,0,0,8.648217,0,0,0,1,0,5,87.2,3.4,0,77.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.3,9.541381,1.609438,2.157353,1
-13,2,0,1,2,225103,0,13923.17,42.29227,1,17,1,12.11827,0,0,0,0,12.11827,0,0,0,1,0,5,87.2,3.4,0,77.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.3,9.541381,1.609438,2.494715,1
-13,2,0,1,3,225103,0,13923.17,43.29227,1,17,1,0,2.628032,0,0,0,2.628032,0,0,0,0,0,5,87.2,3.4,0,77.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.3,9.541381,1.609438,.9662355,1
-13,2,0,1,4,225103,0,13923.17,44.29227,1,17,1,17.02913,3.631514,0,0,0,20.66065,0,0,0,1,0,5,87.2,3.4,0,77.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.3,9.541381,1.609438,3.028231,1
-13,2,0,1,5,225103,0,13923.17,45.29227,1,17,1,7.390983,1.940133,0,0,0,9.331116,0,0,0,1,0,5,87.2,3.4,0,77.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,0,0,0,77.3,9.541381,1.609438,2.233355,1
-7,2,25,0,1,225114,0,6836.364,5.467488,0,12,1,21.77463,4.354927,0,0,0,26.12956,0,0,0,3,0,3,93.3,11.84267,0,88.9,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.830157,1.098612,3.263067,1
-7,2,25,0,2,225114,0,6836.364,6.467488,0,12,1,46.58077,2.552032,0,0,0,49.1328,0,0,0,2,3,3,93.3,11.84267,0,88.9,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.830157,1.098612,3.894527,1
-7,2,25,0,3,225114,0,6836.364,7.467488,0,12,1,25.58513,9.798073,0,0,0,35.3832,0,0,0,1,0,3,93.3,11.84267,0,88.9,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.830157,1.098612,3.566237,1
-7,2,25,0,1,225115,0,6836.364,29.32512,1,12,1,51.71475,1.72564,0,0,0,53.44039,0,0,0,1,1,3,63.8,13.8,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,80.7,8.830157,1.098612,3.978567,1
-7,2,25,0,2,225115,0,6836.364,30.32512,1,12,1,4.955401,2.725471,0,0,0,7.680872,0,0,0,1,0,3,63.8,13.8,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,80.7,8.830157,1.098612,2.038733,1
-7,2,25,0,3,225115,0,6836.364,31.32512,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.8,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,80.7,8.830157,1.098612,,0
-7,2,25,0,1,225116,0,6836.364,30.00685,0,12,1,250.4083,51.82362,0,0,0,302.2319,0,0,0,8,1,3,70.7,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,8.830157,1.098612,5.711195,1
-7,2,25,0,2,225116,0,6836.364,31.00685,0,12,1,25.52032,5.302279,0,0,0,30.8226,0,0,0,2,0,3,70.7,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,8.830157,1.098612,3.428248,1
-7,2,25,0,3,225116,0,6836.364,32.00684,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,8.830157,1.098612,,0
-13,2,0,1,1,225117,0,4512.023,38.2642,1,16,1,212.0849,11.58955,9.798585,0,0,233.4731,0,0,0,12,0,1,54.8,27.6,1,70.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,70.5,8.414722,0,5.453067,1
-13,2,0,1,2,225117,0,4512.023,39.2642,1,16,1,5.946482,3.444004,0,0,0,9.390486,0,0,0,1,0,1,54.8,27.6,1,70.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,70.5,8.414722,0,2.239697,1
-13,2,0,1,3,225117,0,4512.023,40.2642,1,16,1,122.8775,16.26893,0,0,0,139.1464,0,0,0,5,0,1,54.8,27.6,1,70.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,70.5,8.414722,0,4.935526,1
-13,2,0,1,1,225129,0,2858.064,2.067077,0,12,1,13.30495,0,0,0,0,13.30495,0,0,0,1,0,4,81.35272,11.84267,0,63,450,600,1,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,63,7.95825,1.386294,2.588136,1
-13,2,0,1,2,225129,0,2858.064,3.067077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,63,450,600,1,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,63,7.95825,1.386294,,0
-13,2,0,1,1,225130,0,2858.064,26.36824,0,14,1,117.6158,6.865354,0,0,0,124.4811,0,0,0,2,1,4,73.4,10.3,1,73.9,450,600,0,0,1.386294,6.39693,1,4.564348,6.160541,1,0,0,73.9,7.95825,1.386294,4.824154,1
-13,2,0,1,2,225130,0,2858.064,27.36824,0,14,1,5.332041,0,0,0,0,5.332041,0,0,0,1,0,4,73.4,10.3,1,73.9,450,600,0,0,1.386294,6.39693,1,4.564348,6.160541,1,0,0,73.9,7.95825,1.386294,1.673734,1
-13,2,0,1,1,225131,0,2858.064,21.7796,1,12,1,282.8632,14.61948,0,0,0,297.4827,0,0,0,7,0,4,53.2,34.5,1,73.9,450,600,0,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,73.9,7.95825,1.386294,5.695356,1
-13,2,0,1,2,225131,0,2858.064,22.7796,1,12,1,18.41978,17.76054,0,0,0,36.18032,0,0,0,2,0,4,53.2,34.5,1,73.9,450,600,0,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,73.9,7.95825,1.386294,3.588515,1
-11,2,0,1,1,225143,0,10517.89,38.423,0,15,1,81.1105,51.50245,41.14861,0,0,173.7616,0,0,0,9,1,4,56.9,10.3,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.260928,1.386294,5.157684,1
-11,2,0,1,2,225143,0,10517.89,39.423,0,15,1,26.06541,7.680872,0,0,0,33.74628,0,0,0,3,0,4,56.9,10.3,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.260928,1.386294,3.51887,1
-11,2,0,1,3,225143,0,10517.89,40.423,0,15,1,18.35704,30.19734,22.02845,0,0,70.58284,0,0,0,1,0,4,56.9,10.3,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.260928,1.386294,4.256787,1
-11,2,0,1,1,225144,0,10517.89,7.463381,1,14,1,6.53239,0,0,0,0,6.53239,0,0,0,1,0,4,96.7,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.260928,1.386294,1.876773,1
-11,2,0,1,2,225144,0,10517.89,8.463381,1,14,1,42.2448,2.1556,0,0,0,44.4004,0,0,0,1,0,4,96.7,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.260928,1.386294,3.793248,1
-11,2,0,1,3,225144,0,10517.89,9.463381,1,14,1,20.88114,0,0,0,0,20.88114,0,0,0,1,0,4,96.7,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.260928,1.386294,3.038846,1
-11,2,0,1,1,225145,0,10517.89,30.59001,1,14,1,10.88732,0,0,0,0,10.88732,0,0,0,1,0,4,73.4,6.9,0,88.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,88.6,9.260928,1.386294,2.387599,1
-11,2,0,1,2,225145,0,10517.89,31.59001,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,6.9,0,88.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,88.6,9.260928,1.386294,,0
-11,2,0,1,3,225145,0,10517.89,32.59001,1,14,1,43.94218,0,0,0,960.0184,1003.961,1,0,0,3,0,4,73.4,6.9,0,88.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,88.6,9.260928,1.386294,6.911708,1
-11,2,0,1,1,225146,0,10517.89,6.401095,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,11.84267,0,59.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,59.3,9.260928,1.386294,,0
-11,2,0,1,2,225146,0,10517.89,7.401095,0,14,1,18.83052,0,0,0,0,18.83052,0,0,0,1,0,4,86.7,11.84267,0,59.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,59.3,9.260928,1.386294,2.935479,1
-11,2,0,1,3,225146,0,10517.89,8.401095,0,14,1,18.35704,0,0,0,0,18.35704,0,0,0,1,0,4,86.7,11.84267,0,59.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,59.3,9.260928,1.386294,2.910013,1
-19,2,25,0,1,225150,0,8428.739,14.81725,1,12,1,16.87534,0,0,0,0,16.87534,0,0,0,0,2,3,86.2,6.9,0,77.3,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.039521,1.098612,2.825853,1
-19,2,25,0,2,225150,0,8428.739,15.81725,1,12,1,19.82161,2.675917,0,0,0,22.49752,0,0,0,2,0,3,86.2,6.9,0,77.3,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.039521,1.098612,3.113405,1
-19,2,25,0,3,225150,0,8428.739,16.81725,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,6.9,0,77.3,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.039521,1.098612,,0
-19,2,25,0,1,225151,0,8428.739,39.07734,0,12,1,38.10561,4.082744,0,0,0,42.18835,0,0,0,3,0,3,93.1,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,81.8,9.039521,1.098612,3.742144,1
-19,2,25,0,2,225151,0,8428.739,40.07734,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.1,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,81.8,9.039521,1.098612,,0
-19,2,25,0,3,225151,0,8428.739,41.07734,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.1,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,81.8,9.039521,1.098612,,0
-19,2,25,0,1,225152,0,8428.739,38.10267,1,12,1,19.86935,1.829069,0,0,0,21.69842,0,0,0,1,0,3,85.6,10.3,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67,9.039521,1.098612,3.07724,1
-19,2,25,0,2,225152,0,8428.739,39.10267,1,12,1,67.889,0,0,0,0,67.889,0,0,0,3,0,3,85.6,10.3,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67,9.039521,1.098612,4.217874,1
-19,2,25,0,3,225152,0,8428.739,40.10267,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,10.3,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,67,9.039521,1.098612,,0
-11,2,0,1,1,225170,0,7399.414,37.64271,0,15,1,70.39615,13.07816,0,319.8608,0,83.4743,0,0,18,3,0,1,75.5,3.4,0,69.3,0,113.36,0,0,0,4.730568,0,0,0,0,0,0,69.3,8.909291,0,4.424539,1
-11,2,0,1,2,225170,0,7399.414,38.64271,0,15,1,15.61737,56.89605,32.79161,700.3416,0,105.305,0,0,41,1,0,1,75.5,3.4,0,69.3,0,113.36,0,0,0,4.730568,0,0,0,0,0,0,69.3,8.909291,0,4.656861,1
-11,2,0,1,3,225170,0,7399.414,39.64271,0,15,1,2.710027,0,0,785.9078,0,2.710027,0,0,45,1,0,1,75.5,3.4,0,69.3,0,113.36,0,0,0,4.730568,0,0,0,0,0,0,69.3,8.909291,0,.9969587,1
-11,2,0,1,1,225171,0,10711.44,1.711157,1,16,1,56.06469,27.71428,0,0,0,83.77898,0,0,0,7,1,3,81.35272,11.84267,0,92.6,0,206.64,1,1,1.098612,5.330978,0,0,0,0,0,0,92.6,9.27916,1.098612,4.428182,1
-11,2,0,1,2,225171,0,10711.44,2.711157,1,16,1,52.57985,17.22359,0,0,0,69.80344,0,0,0,7,0,4,81.35272,11.84267,0,92.6,0,206.64,1,1,1.386294,5.330978,0,0,0,0,0,0,92.6,9.27916,1.386294,4.245683,1
-11,2,0,1,3,225171,0,10711.44,3.711157,1,16,1,114.4029,11.73655,0,0,0,126.1395,0,0,0,7,2,4,81.35272,11.84267,0,92.6,0,206.64,1,1,1.386294,5.330978,0,0,0,0,0,0,92.6,9.27916,1.386294,4.837388,1
-11,2,0,1,4,225171,0,10711.44,4.711157,1,16,1,185.9942,14.46436,0,0,0,200.4585,0,0,0,11,0,4,81.35272,11.84267,0,92.6,0,206.64,1,1,1.386294,5.330978,0,0,0,0,0,0,92.6,9.27916,1.386294,5.300607,1
-11,2,0,1,5,225171,0,10711.44,5.711157,1,16,1,93.86722,20.1988,0,0,0,114.066,0,0,0,6,2,4,81.35272,11.84267,0,92.6,0,206.64,1,1,1.386294,5.330978,0,0,0,0,0,0,92.6,9.27916,1.386294,4.736777,1
-11,2,0,1,1,225172,0,10711.44,31.50992,0,18,1,33.42318,0,23.18059,0,0,56.60378,0,0,0,2,1,3,83.5,0,0,79.5,0,206.64,0,0,1.098612,5.330978,0,0,0,0,0,0,79.5,9.27916,1.098612,4.036076,1
-11,2,0,1,2,225172,0,10711.44,32.50993,0,18,1,15.23342,12.62899,25.64619,0,0,53.5086,0,0,0,2,0,4,83.5,0,0,79.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,79.5,9.27916,1.386294,3.979842,1
-11,2,0,1,3,225172,0,10711.44,33.50993,0,18,1,56.40383,6.198724,0,0,0,62.60255,0,0,0,4,0,4,83.5,0,0,79.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,79.5,9.27916,1.386294,4.136806,1
-11,2,0,1,4,225172,0,10711.44,34.50993,0,18,1,13.96415,2.959567,21.7549,0,0,38.67862,0,0,0,1,0,4,83.5,0,0,79.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,79.5,9.27916,1.386294,3.655287,1
-11,2,0,1,5,225172,0,10711.44,35.50993,0,18,1,44.16729,3.694674,12.997,0,0,60.85896,0,0,0,4,0,4,83.5,0,0,79.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,79.5,9.27916,1.386294,4.108559,1
-11,2,0,1,1,225173,0,10711.44,29.97125,1,16,1,19.40701,16.14555,2.695418,0,1264.987,1303.234,1,0,0,1,0,3,88.8,3.4,0,87.5,0,206.64,0,0,1.098612,5.330978,0,0,0,0,0,0,87.5,9.27916,1.098612,7.172605,1
-11,2,0,1,2,225173,0,10711.44,30.97125,1,16,1,19.90172,21.13022,0,0,0,41.03194,0,0,0,2,0,4,88.8,3.4,0,87.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,87.5,9.27916,1.386294,3.714351,1
-11,2,0,1,3,225173,0,10711.44,31.97125,1,16,1,239.5169,35.64266,0,0,0,275.1595,0,0,0,7,1,4,88.8,3.4,0,87.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,87.5,9.27916,1.386294,5.617351,1
-11,2,0,1,4,225173,0,10711.44,32.97125,1,16,1,88.99541,45.76907,4.793664,0,0,139.5582,0,0,0,5,0,4,88.8,3.4,0,87.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,87.5,9.27916,1.386294,4.938481,1
-11,2,0,1,5,225173,0,10711.44,33.97125,1,16,1,234.9287,60.64891,0,0,0,295.5776,0,0,0,7,10,4,88.8,3.4,0,87.5,0,206.64,0,0,1.386294,5.330978,0,0,0,0,0,0,87.5,9.27916,1.386294,5.688931,1
-11,2,0,1,1,225176,0,15780.65,49.68104,1,11,1,548.9828,45.53533,0,0,0,594.5182,0,0,0,12,2,2,86.2,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,0,0,67,9.666603,.6931472,6.387751,1
-11,2,0,1,2,225176,0,15780.65,50.68104,1,11,1,95.65642,24.48023,51.67887,0,0,171.8155,0,0,0,6,0,2,86.2,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,0,0,67,9.666603,.6931472,5.146421,1
-11,2,0,1,3,225176,0,15780.65,51.68104,1,11,1,201.897,28.91599,0,0,0,230.813,0,0,0,7,1,2,86.2,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,0,0,67,9.666603,.6931472,5.441608,1
-11,2,0,1,4,225176,0,15780.65,52.68104,1,11,1,148.5732,33.66005,.4135649,0,723.6146,906.2614,1,0,0,7,0,2,86.2,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,0,0,67,9.666603,.6931472,6.809328,1
-11,2,0,1,5,225176,0,15780.65,53.68104,1,11,1,147.7273,31.16617,35.9538,0,0,214.8472,0,0,0,8,0,2,86.2,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,0,0,67,9.666603,.6931472,5.369927,1
-11,2,0,1,1,225177,0,15780.65,51.67419,0,16,1,113.4904,5.883297,0,0,0,119.3737,0,0,0,7,0,2,93.6,31,1,73.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,73.9,9.666603,.6931472,4.782259,1
-11,2,0,1,2,225177,0,15780.65,52.67419,0,16,1,112.4939,0,64.01659,0,0,176.5105,0,0,0,7,0,2,93.6,31,1,73.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,73.9,9.666603,.6931472,5.17338,1
-11,2,0,1,3,225177,0,15780.65,53.67419,0,16,1,171.1834,24.81482,6.874435,0,0,202.8726,0,0,0,5,2,2,93.6,31,1,73.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,73.9,9.666603,.6931472,5.312578,1
-11,2,0,1,4,225177,0,15780.65,54.67419,0,16,1,75.06203,12.75021,2.593052,0,0,90.4053,0,0,0,5,0,2,93.6,31,1,73.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,73.9,9.666603,.6931472,4.504303,1
-11,2,0,1,5,225177,0,15780.65,55.67419,0,16,1,138.2265,20.26826,44.06855,0,0,202.5633,0,0,0,6,3,2,93.6,31,1,73.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,73.9,9.666603,.6931472,5.311053,1
-11,2,0,1,1,225188,0,8269.208,27.73717,0,11,1,73.82749,6.938005,0,0,0,80.7655,0,0,0,2,0,4,57.4,3.4,0,76.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.2,9.020415,1.386294,4.39155,1
-11,2,0,1,2,225188,0,8269.208,28.73717,0,11,1,11.54791,0,0,0,0,11.54791,0,0,0,1,0,4,57.4,3.4,0,76.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.2,9.020415,1.386294,2.446505,1
-11,2,0,1,3,225188,0,8269.208,29.73717,0,11,1,82.04193,2.256153,31.34913,0,0,115.6472,0,0,0,1,1,4,57.4,3.4,0,76.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.2,9.020415,1.386294,4.750545,1
-11,2,0,1,1,225189,0,8269.208,29.2293,1,12,1,59.56873,37.60108,35.83828,0,0,133.0081,0,0,0,6,1,4,67.6,0,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,9.020415,1.386294,4.89041,1
-11,2,0,1,2,225189,0,8269.208,30.2293,1,12,1,101.9656,42.18673,32.08845,0,0,176.2408,0,0,0,7,1,4,67.6,0,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,9.020415,1.386294,5.171851,1
-11,2,0,1,3,225189,0,8269.208,31.2293,1,12,1,171.6044,20.21422,28.94713,0,0,220.7657,0,0,0,8,1,4,67.6,0,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,9.020415,1.386294,5.397102,1
-11,2,0,1,1,225190,0,8269.208,4.328542,1,12,1,16.17251,6.285714,0,0,0,22.45822,0,0,0,3,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,9.020415,1.386294,3.111657,1
-11,2,0,1,2,225190,0,8269.208,5.328542,1,12,1,36.16708,0,0,0,0,36.16708,0,0,0,4,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,9.020415,1.386294,3.588149,1
-11,2,0,1,3,225190,0,8269.208,6.328542,1,12,1,19.8268,2.620784,0,0,0,22.44758,0,0,0,3,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,9.020415,1.386294,3.111183,1
-11,2,0,1,1,225191,0,8269.208,7.485284,0,12,1,67.00809,25.531,0,0,0,92.53909,0,0,0,8,0,4,83.3,11.84267,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.020415,1.386294,4.527631,1
-11,2,0,1,2,225191,0,8269.208,8.485284,0,12,1,37.83784,6.535626,0,0,0,44.37346,0,0,0,4,0,4,83.3,11.84267,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.020415,1.386294,3.792642,1
-11,2,0,1,3,225191,0,8269.208,9.485284,0,12,1,74.93163,11.32634,0,0,0,86.25797,0,0,0,4,0,4,83.3,11.84267,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.020415,1.386294,4.457343,1
-11,2,0,1,1,225223,1,12310.85,38.20123,0,18,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,6.9,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,9.418318,0,,0
-11,2,0,1,2,225223,1,12310.85,39.20123,0,18,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,6.9,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,9.418318,0,,0
-11,2,0,1,3,225223,1,12310.85,40.20123,0,18,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,6.9,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,9.418318,0,,0
-11,2,0,0,1,225227,0,13358.94,12.84326,1,12,1,10.30514,0,0,0,0,10.30514,0,0,0,1,0,3,80,11.84267,0,59.3,0,282,1,1,1.098612,5.641907,0,0,0,0,0,0,59.3,9.500016,1.098612,2.332643,1
-11,2,0,0,2,225227,0,13358.94,13.84326,1,12,1,125.427,18.96047,0,0,0,144.3875,0,0,0,12,0,3,80,11.84267,0,59.3,0,282,1,1,1.098612,5.641907,0,0,0,0,0,0,59.3,9.500016,1.098612,4.972501,1
-11,2,0,0,3,225227,0,13358.94,14.84326,1,12,1,128.5005,20.93496,0,0,0,149.4354,0,0,0,14,0,3,80,11.84267,0,59.3,0,282,1,1,1.098612,5.641907,0,0,0,0,0,0,59.3,9.500016,1.098612,5.006864,1
-11,2,0,0,1,225228,0,13358.94,31.46064,1,12,1,68.92398,13.35653,0,0,0,82.28052,0,0,0,3,0,3,87.2,17.2,1,67,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,67,9.500016,1.098612,4.410134,1
-11,2,0,0,2,225228,0,13358.94,32.46064,1,12,1,51.73255,15.37335,0,0,0,67.1059,0,0,0,3,0,3,87.2,17.2,1,67,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,67,9.500016,1.098612,4.206272,1
-11,2,0,0,3,225228,0,13358.94,33.46064,1,12,1,28.45528,13.70822,0,0,0,42.16351,0,0,0,2,0,3,87.2,17.2,1,67,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,67,9.500016,1.098612,3.741555,1
-11,2,0,0,1,225229,0,13358.94,28.7666,0,16,1,122.9925,0,0,0,0,122.9925,0,0,0,3,0,3,78.2,13.8,0,76.1,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,76.1,9.500016,1.098612,4.812123,1
-11,2,0,0,2,225229,0,13358.94,29.7666,0,16,1,34.65105,4.367984,0,0,0,39.01904,0,0,0,3,0,3,78.2,13.8,0,76.1,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,76.1,9.500016,1.098612,3.66405,1
-11,2,0,0,3,225229,0,13358.94,30.7666,0,16,1,14.45348,8.988256,0,0,0,23.44173,0,0,0,1,0,3,78.2,13.8,0,76.1,0,282,0,0,1.098612,5.641907,0,0,0,0,0,0,76.1,9.500016,1.098612,3.154518,1
-11,2,0,1,1,225235,0,9003.52,1.303217,0,13,1,38.00539,5.3531,0,0,0,43.35849,0,0,0,4,0,4,81.35272,11.84267,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.105482,1.386294,3.769503,1
-11,2,0,1,2,225235,0,9003.52,2.303217,0,13,1,36.60934,10.28993,0,0,0,46.89926,0,0,0,4,0,4,81.35272,11.84267,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.105482,1.386294,3.848002,1
-11,2,0,1,3,225235,0,9003.52,3.303217,0,13,1,39.4257,13.86964,12.01003,0,0,65.30538,0,0,0,5,0,4,81.35272,11.84267,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.105482,1.386294,4.179074,1
-11,2,0,1,1,225236,0,9003.52,34.85284,0,14,1,13.47709,0,33.95687,0,0,47.43396,0,0,0,1,0,4,73.9,6.9,0,69.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.3,9.105482,1.386294,3.859339,1
-11,2,0,1,2,225236,0,9003.52,35.85284,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,6.9,0,69.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.3,9.105482,1.386294,,0
-11,2,0,1,3,225236,0,9003.52,36.85284,0,14,1,0,7.657247,0,0,0,7.657247,0,0,0,0,0,4,73.9,6.9,0,69.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.3,9.105482,1.386294,2.035653,1
-11,2,0,1,1,225237,0,9003.52,29.54962,1,13,1,25.87601,21.4124,0,0,0,47.28841,0,0,0,1,0,4,78.2,3.4,0,97.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,97.7,9.105482,1.386294,3.856265,1
-11,2,0,1,2,225237,0,9003.52,30.54962,1,13,1,25.55283,23.20885,0,0,0,48.76167,0,0,0,1,0,4,78.2,3.4,0,97.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,97.7,9.105482,1.386294,3.886945,1
-11,2,0,1,3,225237,0,9003.52,31.54962,1,13,1,42.38833,39.04284,0,0,0,81.43118,0,0,0,3,0,4,78.2,3.4,0,97.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,97.7,9.105482,1.386294,4.399758,1
-11,2,0,1,1,225238,0,9003.52,5.182752,1,13,1,38.81401,1.590297,12.50135,0,0,52.90566,0,0,0,3,0,4,71.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.105482,1.386294,3.96851,1
-11,2,0,1,2,225238,0,9003.52,6.182752,1,13,1,20.63882,0,0,0,0,20.63882,0,0,0,3,0,4,71.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.105482,1.386294,3.027174,1
-11,2,0,1,3,225238,0,9003.52,7.182752,1,13,1,44.43938,11.43118,22.4248,0,0,78.29535,0,0,0,5,0,4,71.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.105482,1.386294,4.360488,1
-13,2,0,1,1,225242,0,8665.641,6.255989,1,12,1,86.06469,0,0,0,0,86.06469,0,0,0,4,1,4,90,11.84267,0,100,450,275.27,1,1,1.386294,5.617753,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,4.455099,1
-13,2,0,1,2,225242,0,8665.641,7.255989,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,11.84267,0,100,450,275.27,1,1,1.386294,5.617753,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,,0
-13,2,0,1,3,225242,0,8665.641,8.255989,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90,11.84267,0,100,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,100,9.067237,1.609438,,0
-13,2,0,1,4,225242,0,8665.641,9.255989,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90,11.84267,0,100,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,100,9.067237,1.609438,,0
-13,2,0,1,5,225242,0,8665.641,10.25599,1,12,1,59.1898,0,0,0,0,59.1898,0,0,0,5,0,5,90,11.84267,0,100,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,100,9.067237,1.609438,4.080749,1
-13,2,0,1,1,225243,0,8665.641,30.04791,0,16,1,267.7628,2.021563,0,0,0,269.7844,0,0,0,2,0,4,88.3,6.9,0,65.9,450,275.27,0,0,1.386294,5.617753,1,4.564348,6.160541,0,0,0,65.9,9.067237,1.386294,5.597623,1
-13,2,0,1,2,225243,0,8665.641,31.04791,0,16,1,116.5553,0,11.43489,0,0,127.9902,0,0,0,3,0,4,88.3,6.9,0,65.9,450,275.27,0,0,1.386294,5.617753,1,4.564348,6.160541,0,0,0,65.9,9.067237,1.386294,4.851954,1
-13,2,0,1,3,225243,0,8665.641,32.04791,0,16,1,27.34731,8.181404,8.204193,0,0,43.73291,0,0,0,1,0,5,88.3,6.9,0,65.9,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,65.9,9.067237,1.609438,3.778101,1
-13,2,0,1,4,225243,0,8665.641,33.04791,0,16,1,33.34723,0,52.10505,0,0,85.45227,0,0,0,2,0,5,88.3,6.9,0,65.9,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,65.9,9.067237,1.609438,4.447958,1
-13,2,0,1,5,225243,0,8665.641,34.04791,0,16,1,0,0,43.03451,0,0,43.03451,0,0,0,0,0,5,88.3,6.9,0,65.9,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,65.9,9.067237,1.609438,3.762002,1
-13,2,0,1,1,225244,0,8665.641,27.93703,1,12,1,179.8383,6.522911,33.07278,0,0,219.434,0,0,0,8,1,4,79.3,10.3,1,68.2,450,275.27,0,0,1.386294,5.617753,1,4.564348,6.160541,0,0,0,68.2,9.067237,1.386294,5.391051,1
-13,2,0,1,2,225244,0,8665.641,28.93703,1,12,1,250.4668,0,0,928.7469,776.683,1027.15,1,0,42,3,1,4,79.3,10.3,1,68.2,450,275.27,0,0,1.386294,5.617753,1,4.564348,6.160541,0,0,0,68.2,9.067237,1.386294,6.934543,1
-13,2,0,1,3,225244,0,8665.641,29.93703,1,12,1,16.45397,0,0,0,0,16.45397,0,0,0,1,0,5,79.3,10.3,1,68.2,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,68.2,9.067237,1.609438,2.800566,1
-13,2,0,1,4,225244,0,8665.641,30.93703,1,12,1,25.42726,3.705711,0,0,0,29.13297,0,0,0,1,0,5,79.3,10.3,1,68.2,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,68.2,9.067237,1.609438,3.371871,1
-13,2,0,1,5,225244,0,8665.641,31.93703,1,12,1,62.26557,9.433608,16.07652,0,0,87.7757,0,0,0,3,0,5,79.3,10.3,1,68.2,450,275.27,0,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,68.2,9.067237,1.609438,4.474785,1
-11,2,0,1,1,225266,0,13228.15,17.31964,1,12,1,27.30193,13.35653,0,0,0,40.65846,0,0,0,5,0,3,78.7,6.9,0,81.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.8,9.490178,1.098612,3.705207,1
-11,2,0,1,2,225266,0,13228.15,18.31964,1,12,1,35.13909,27.03758,0,0,0,62.17667,0,0,0,6,0,3,78.7,6.9,0,81.8,0,0,0,0,1.098612,0,0,0,0,0,0,0,81.8,9.490178,1.098612,4.12998,1
-11,2,0,1,3,225266,0,13228.15,19.31964,1,12,1,47.99006,15.05872,0,0,0,63.04878,0,0,0,5,0,3,78.7,6.9,0,81.8,0,0,0,0,1.098612,0,0,0,0,0,0,0,81.8,9.490178,1.098612,4.143909,1
-11,2,0,1,1,225268,0,13228.15,45.7796,1,12,1,126.606,89.27731,0,13.3833,0,215.8833,0,0,2,6,0,3,61.2,17.2,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.490178,1.098612,5.374738,1
-11,2,0,1,2,225268,0,13228.15,46.7796,1,12,1,236.7984,144.3143,43.77257,48.80429,0,424.8853,0,0,4,27,0,3,61.2,17.2,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.490178,1.098612,6.051819,1
-11,2,0,1,3,225268,0,13228.15,47.7796,1,12,1,214.1373,114.6251,51.84282,65.49232,0,380.6052,0,0,5,15,0,3,61.2,17.2,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.490178,1.098612,5.941762,1
-11,2,0,1,1,225270,0,13228.15,46.12183,0,16,1,16.05996,0,38.394,0,0,54.45396,0,0,0,1,0,3,83,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.490178,1.098612,3.997356,1
-11,2,0,1,2,225270,0,13228.15,47.12183,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,83,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.490178,1.098612,,0
-11,2,0,1,3,225270,0,13228.15,48.12183,0,16,1,160.2303,0,40.03162,0,201.8293,402.0912,1,0,0,4,0,3,83,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.490178,1.098612,5.996679,1
-11,2,0,1,1,225277,0,6885.044,6.091718,0,12,1,8.165487,7.893304,0,0,0,16.05879,0,0,0,2,0,4,80,11.84267,0,81.5,0,357.36,1,0,1.386294,5.878744,0,0,0,1,0,0,81.5,8.837252,1.386294,2.776257,1
-11,2,0,1,2,225277,0,6885.044,7.091718,0,12,1,104.8067,16.08028,21.34787,0,0,142.2349,0,0,0,10,0,4,80,11.84267,0,81.5,0,357.36,1,0,1.386294,5.878744,0,0,0,1,0,0,81.5,8.837252,1.386294,4.95748,1
-11,2,0,1,3,225277,0,6885.044,8.091718,0,12,1,75.63102,16.57182,0,0,0,92.20284,0,0,0,6,0,4,80,11.84267,0,81.5,0,357.36,1,0,1.386294,5.878744,0,0,0,1,0,0,81.5,8.837252,1.386294,4.523991,1
-11,2,0,1,1,225278,0,6885.044,25.80972,1,12,1,26.12956,8.301579,0,21.50245,0,34.43114,0,0,2,3,0,4,58,13.8,0,67,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,67,8.837252,1.386294,3.538961,1
-11,2,0,1,2,225278,0,6885.044,26.80972,1,12,1,107.2844,19.82161,0,304.7572,0,127.106,0,0,41,7,0,4,58,13.8,0,67,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,67,8.837252,1.386294,4.845022,1
-11,2,0,1,3,225278,0,6885.044,27.80972,1,12,1,50.9408,6.516751,0,215.6953,0,57.45755,0,0,31,3,0,4,58,13.8,0,67,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,67,8.837252,1.386294,4.051046,1
-11,2,0,1,1,225279,0,6885.044,29.12252,0,12,1,10.34295,11.81274,0,37.83342,0,22.15569,0,0,3,1,0,4,64.9,6.9,0,77.3,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,77.3,8.837252,1.386294,3.098094,1
-11,2,0,1,2,225279,0,6885.044,30.12252,0,12,1,79.16254,2.527255,0,304.7572,0,81.68979,0,0,41,5,0,4,64.9,6.9,0,77.3,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,77.3,8.837252,1.386294,4.402929,1
-11,2,0,1,3,225279,0,6885.044,31.12252,0,12,1,52.89124,9.224415,0,215.6953,0,62.11565,0,0,31,5,0,4,64.9,6.9,0,77.3,0,357.36,0,0,1.386294,5.878744,0,0,0,1,0,0,77.3,8.837252,1.386294,4.128998,1
-11,2,0,1,1,225280,0,6885.044,4.569473,1,12,1,59.88024,6.096897,0,0,0,65.97713,0,0,0,9,0,4,81.35272,11.84267,0,70.4,0,357.36,1,1,1.386294,5.878744,0,0,0,1,0,0,70.4,8.837252,1.386294,4.189308,1
-11,2,0,1,2,225280,0,6885.044,5.569473,1,12,1,75.3221,4.905848,0,0,277.8494,358.0773,1,0,0,8,0,4,81.35272,11.84267,0,70.4,0,357.36,1,1,1.386294,5.878744,0,0,0,1,0,0,70.4,8.837252,1.386294,5.880749,1
-11,2,0,1,3,225280,0,6885.044,6.569473,1,12,1,22.02845,6.723268,0,0,0,28.75172,0,0,0,4,0,4,81.35272,11.84267,0,70.4,0,357.36,1,1,1.386294,5.878744,0,0,0,1,0,0,70.4,8.837252,1.386294,3.358698,1
-15,2,95,0,1,225281,0,10362.61,26.36003,0,15,1,0,0,0,0,0,0,0,0,0,0,0,2,75,0,0,73.9,984.8,697.48,0,0,.6931472,6.547474,0,4.564348,6.943732,0,0,0,73.9,9.246056,.6931472,,0
-15,2,95,0,2,225281,0,10362.61,27.36003,0,15,1,126.7692,4.119082,0,0,0,130.8882,0,0,0,3,0,2,75,0,0,73.9,984.8,697.48,0,0,.6931472,6.547474,0,4.564348,6.943732,0,0,0,73.9,9.246056,.6931472,4.874344,1
-15,2,95,0,3,225281,0,10362.61,28.36003,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,75,0,0,73.9,984.8,697.48,0,0,1.098612,6.547474,0,4.564348,6.943732,0,0,0,73.9,9.246056,1.098612,,0
-15,2,95,0,4,225281,0,10362.61,29.36003,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,75,0,0,73.9,984.8,697.48,0,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,73.9,9.246056,1.386294,,0
-15,2,95,0,5,225281,0,10362.61,30.36003,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,75,0,0,73.9,984.8,697.48,0,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,73.9,9.246056,1.386294,,0
-15,2,95,0,1,225282,0,10362.61,23.77276,1,12,1,0,3.74197,0,0,0,3.74197,0,0,0,0,0,2,54.3,17.2,0,56.8,984.8,697.48,0,0,.6931472,6.547474,0,4.564348,6.943732,0,0,0,56.8,9.246056,.6931472,1.319612,1
-15,2,95,0,2,225282,0,10362.61,24.77276,1,12,1,42.94778,6.82284,44.34358,0,656.9839,751.0981,1,0,0,2,1,2,54.3,17.2,0,56.8,984.8,697.48,0,0,.6931472,6.547474,0,4.564348,6.943732,0,0,0,56.8,9.246056,.6931472,6.621536,1
-15,2,95,0,3,225282,0,10362.61,25.77276,1,12,1,0,15.13098,0,0,614.4761,629.6071,1,0,0,0,0,3,54.3,17.2,0,56.8,984.8,697.48,0,0,1.098612,6.547474,0,4.564348,6.943732,0,0,0,56.8,9.246056,1.098612,6.445096,1
-15,2,95,0,4,225282,0,10362.61,26.77276,1,12,1,114.0199,0,2.336642,0,0,116.3565,0,0,0,4,0,4,54.3,17.2,0,56.8,984.8,697.48,0,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,56.8,9.246056,1.386294,4.756659,1
-15,2,95,0,5,225282,0,10362.61,27.77276,1,12,1,9.314456,0,0,0,0,9.314456,0,0,0,1,0,4,54.3,17.2,0,56.8,984.8,697.48,0,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,56.8,9.246056,1.386294,2.231568,1
-6,2,25,1,1,225286,0,6382.991,25.86448,1,13,1,18.38865,20.55675,0,0,596.7612,635.7067,1,0,0,1,0,2,77.7,10.3,0,63.6,902.1,902.1,0,0,.6931472,6.804725,0,3.258096,8.19102,1,0,0,63.6,8.761549,.6931472,6.454737,1
-6,2,25,1,2,225286,0,6382.991,26.86448,1,13,1,23.23084,23.51391,0,0,0,46.74475,0,0,0,1,0,3,77.7,10.3,0,63.6,902.1,902.1,0,0,1.098612,6.804725,0,3.258096,8.19102,1,0,0,63.6,8.761549,1.098612,3.844702,1
-6,2,25,1,3,225286,0,6382.991,27.86448,1,13,1,17.38934,16.80217,0,0,723.0352,757.2267,1,0,0,1,0,3,77.7,10.3,0,63.6,902.1,902.1,0,0,1.098612,6.804725,0,3.258096,8.19102,1,0,0,63.6,8.761549,1.098612,6.629663,1
-6,2,25,1,1,225287,0,6382.991,24.72827,0,16,1,34.79657,2.45182,34.04176,0,0,71.29015,0,0,0,4,0,2,88.3,6.9,0,76.1,902.1,902.1,0,0,.6931472,6.804725,0,3.258096,8.19102,0,0,0,76.1,8.761549,.6931472,4.266758,1
-6,2,25,1,2,225287,0,6382.991,25.72827,0,16,1,17.20351,1.512933,0,0,0,18.71645,0,0,0,2,0,3,88.3,6.9,0,76.1,902.1,902.1,0,0,1.098612,6.804725,0,3.258096,8.19102,0,0,0,76.1,8.761549,1.098612,2.929403,1
-6,2,25,1,3,225287,0,6382.991,26.72827,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,6.9,0,76.1,902.1,902.1,0,0,1.098612,6.804725,0,3.258096,8.19102,0,0,0,76.1,8.761549,1.098612,,0
-13,2,0,0,1,225299,0,10360.12,4,1,16,1,10.24259,0,0,0,0,10.24259,0,0,0,1,0,4,81.35272,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,2.326554,1
-13,2,0,0,2,225299,0,10360.12,5,1,16,1,14.25061,0,0,0,0,14.25061,0,0,0,1,0,4,81.35272,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,2.6568,1
-13,2,0,0,3,225299,0,10360.12,6,1,16,1,5.469462,0,0,0,0,5.469462,0,0,0,0,1,4,81.35272,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,1.69918,1
-13,2,0,0,1,225300,0,10360.12,6.368241,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,80,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,,0
-13,2,0,0,2,225300,0,10360.12,7.368241,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,80,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,,0
-13,2,0,0,3,225300,0,10360.12,8.368241,1,16,1,23.701,1.800365,0,0,0,25.50137,0,0,0,3,1,4,80,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.245815,1.386294,3.238732,1
-13,2,0,0,1,225301,0,10360.12,36.89528,1,16,1,369.3261,11.26146,0,0,0,380.5876,0,0,0,5,0,4,76.6,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.245815,1.386294,5.941716,1
-13,2,0,0,2,225301,0,10360.12,37.89528,1,16,1,15.72482,4.34398,0,0,0,20.0688,0,0,0,0,2,4,76.6,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.245815,1.386294,2.999166,1
-13,2,0,0,3,225301,0,10360.12,38.89528,1,16,1,25.97995,0,0,0,0,25.97995,0,0,0,1,1,4,76.6,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.245815,1.386294,3.257325,1
-13,2,0,0,1,225302,0,10360.12,34.00411,0,20,1,0,0,0,0,0,0,0,0,0,0,0,4,83,3.4,0,84.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,84.1,9.245815,1.386294,,0
-13,2,0,0,2,225302,0,10360.12,35.00411,0,20,1,65.8231,4.914005,36.85504,0,0,107.5921,0,0,0,6,0,4,83,3.4,0,84.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,84.1,9.245815,1.386294,4.678348,1
-13,2,0,0,3,225302,0,10360.12,36.00411,0,20,1,0,3.245214,0,0,0,3.245214,0,0,0,0,0,4,83,3.4,0,84.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,84.1,9.245815,1.386294,1.177181,1
-17,2,25,1,1,225309,0,4666.276,59.61944,1,12,1,57.43059,0,0,0,0,57.43059,0,0,0,1,0,1,78.7,27.6,0,81.8,200,200,0,0,0,5.298317,0,3.258096,6.684612,0,0,0,81.8,8.448331,0,4.050577,1
-17,2,25,1,2,225309,0,4666.276,60.61944,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.7,27.6,0,81.8,200,200,0,0,0,5.298317,0,3.258096,6.684612,0,0,0,81.8,8.448331,0,,0
-17,2,25,1,3,225309,0,4666.276,61.61944,1,12,1,272.1432,0,48.88022,0,0,321.0234,0,0,0,19,3,1,78.7,27.6,0,81.8,200,200,0,0,0,5.298317,0,3.258096,6.684612,0,0,0,81.8,8.448331,0,5.771514,1
-17,2,25,1,4,225309,0,4666.276,62.61944,1,12,1,511.3589,0,0,0,0,511.3589,0,0,0,30,0,1,78.7,27.6,0,81.8,200,200,0,0,0,5.298317,0,3.258096,6.684612,0,0,0,81.8,8.448331,0,6.237072,1
-17,2,25,1,5,225309,0,4666.276,63.61944,1,12,1,276.1617,0,0,0,0,276.1617,0,0,0,18,0,1,78.7,27.6,0,81.8,200,200,0,0,0,5.298317,0,3.258096,6.684612,0,0,0,81.8,8.448331,0,5.620986,1
-11,2,0,0,1,225316,0,4458.622,3.227926,0,10,1,28.57143,.8571429,0,0,0,29.42857,0,0,0,1,0,5,81.35272,11.84267,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.40282,1.609438,3.381966,1
-11,2,0,0,2,225316,0,4458.622,4.227926,0,10,1,8.353808,0,0,0,0,8.353808,0,0,0,1,0,6,81.35272,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,2.122718,1
-11,2,0,0,3,225316,0,4458.622,5.227926,0,10,1,17.77575,14.33455,0,71.78669,0,32.1103,0,0,5,1,0,6,81.35272,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,3.469177,1
-11,2,0,0,4,225316,0,4458.622,6.227926,0,10,1,6.669446,17.38224,0,68.77866,0,24.05169,0,0,4,1,0,6,81.35272,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,3.180205,1
-11,2,0,0,1,225317,0,4458.622,26.13826,1,10,1,511.2668,185.6658,0,0,1898.038,2594.97,4,0,0,28,1,5,76.6,17.2,1,59.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,59.1,8.40282,1.609438,7.861331,1
-11,2,0,0,2,225317,0,4458.622,27.13826,1,10,1,377.6658,144.4275,31.95577,307.0909,2690.865,3244.914,2,0,37,20,1,6,76.6,17.2,1,59.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,59.1,8.40282,1.791759,8.084845,1
-11,2,0,0,3,225317,0,4458.622,28.13826,1,10,1,32.47493,128.9471,0,789.6536,543.5734,704.9954,1,0,39,2,0,6,76.6,17.2,1,59.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,59.1,8.40282,1.791759,6.558191,1
-11,2,0,0,4,225317,0,4458.622,29.13826,1,10,1,53.14714,75.47311,0,673.1971,0,128.6203,0,0,35,0,0,6,76.6,17.2,1,59.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,59.1,8.40282,1.791759,4.856864,1
-11,2,0,0,5,225317,0,4458.622,30.13826,1,10,1,0,54.5949,0,720.1801,1144.111,1198.706,1,0,34,0,0,4,76.6,17.2,1,59.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,59.1,8.40282,1.386294,7.088998,1
-11,2,0,0,1,225318,0,4458.622,26.49966,0,13,1,124.3935,13.84906,30.18868,129.3801,0,168.4313,0,0,2,4,1,5,75.5,10.3,0,69.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,69.3,8.40282,1.609438,5.126528,1
-11,2,0,0,2,225318,0,4458.622,27.49966,0,13,1,17.69042,30.41769,0,341.5577,1179.238,1227.346,1,0,39,1,0,6,75.5,10.3,0,69.3,0,0,0,0,1.791759,0,0,0,0,0,0,0,69.3,8.40282,1.791759,7.11261,1
-11,2,0,0,3,225318,0,4458.622,28.49966,0,13,1,56.74567,8.773929,27.7165,881.9507,0,93.2361,0,0,44,3,1,6,75.5,10.3,0,69.3,0,0,0,0,1.791759,0,0,0,0,0,0,0,69.3,8.40282,1.791759,4.535135,1
-11,2,0,0,4,225318,0,4458.622,29.49966,0,13,1,15.00625,1.229679,31.17132,216.757,0,47.40725,0,0,11,0,1,6,75.5,10.3,0,69.3,0,0,0,0,1.791759,0,0,0,0,0,0,0,69.3,8.40282,1.791759,3.858775,1
-11,2,0,0,5,225318,0,4458.622,30.49966,0,13,1,36.03151,5.915229,18.75469,96.58665,0,60.70142,0,0,5,2,0,4,75.5,10.3,0,69.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.3,8.40282,1.386294,4.105967,1
-11,2,0,0,1,225319,0,4458.622,7.986311,0,10,1,6.738544,2.12938,0,0,0,8.867925,0,0,0,1,0,5,83.3,11.84267,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.40282,1.609438,2.182441,1
-11,2,0,0,2,225319,0,4458.622,8.986311,0,10,1,135.4889,3.882064,6.358722,0,0,145.7297,0,0,0,7,0,6,83.3,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,4.981754,1
-11,2,0,0,3,225319,0,4458.622,9.986311,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,,0
-11,2,0,0,4,225319,0,4458.622,10.98631,0,10,1,6.461025,0,0,22.92622,0,6.461025,0,0,1,1,0,6,83.3,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,8.40282,1.791759,1.865788,1
-11,2,0,0,5,225319,0,4458.622,11.98631,0,10,1,20.25131,0,0,0,0,20.25131,0,0,0,1,0,4,83.3,11.84267,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.40282,1.386294,3.008219,1
-11,2,0,0,1,225320,0,4458.622,6.954141,1,10,1,0,1.28841,0,0,0,1.28841,0,0,0,0,0,5,83.3,11.84267,0,92.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,92.6,8.40282,1.609438,.2534087,1
-11,2,0,0,2,225320,0,4458.622,7.954141,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,11.84267,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,8.40282,1.791759,,0
-11,2,0,0,3,225320,0,4458.622,8.954141,1,10,1,8.659982,0,0,0,0,8.659982,0,0,0,1,0,6,83.3,11.84267,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,8.40282,1.791759,2.158713,1
-11,2,0,0,4,225320,0,4458.622,9.954141,1,10,1,23.13464,0,0,0,0,23.13464,0,0,0,2,0,6,83.3,11.84267,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,8.40282,1.791759,3.141331,1
-13,2,0,1,1,225331,0,9689.149,61.01574,0,14,1,156.233,168.7534,0,0,0,324.9864,0,0,0,11,0,2,88.3,3.4,0,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,9.178865,.6931472,5.783783,1
-13,2,0,1,2,225331,0,9689.149,62.01574,0,14,1,79.41031,49.57879,0,0,0,128.9891,0,0,0,7,0,2,88.3,3.4,0,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,9.178865,.6931472,4.859728,1
-13,2,0,1,3,225331,0,9689.149,63.01574,0,14,1,112.7811,23.82744,43.63469,0,0,180.2432,0,0,0,7,0,2,88.3,3.4,0,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,9.178865,.6931472,5.194307,1
-13,2,0,1,1,225332,0,9689.149,54.63107,1,15,1,36.47251,0,43.22809,0,0,79.7006,0,0,0,3,0,2,82.4,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.178865,.6931472,4.378277,1
-13,2,0,1,2,225332,0,9689.149,55.63107,1,15,1,9.910803,5.896928,0,0,0,15.80773,0,0,0,1,0,2,82.4,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.178865,.6931472,2.760499,1
-13,2,0,1,3,225332,0,9689.149,56.63107,1,15,1,148.6921,12.39101,45.69986,0,0,206.7829,0,0,0,8,0,2,82.4,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.178865,.6931472,5.33167,1
-6,2,25,1,1,225333,0,5103.226,30.43121,0,17,1,57.95148,0,46.84636,0,0,104.7978,0,0,0,4,0,1,87.2,6.9,0,85.2,950,950,0,0,0,6.856462,0,3.258096,8.242756,0,0,0,85.2,8.537824,0,4.652033,1
-6,2,25,1,2,225333,0,5103.226,31.43121,0,17,1,26.04423,0,0,0,0,26.04423,0,0,0,2,0,1,87.2,6.9,0,85.2,950,950,0,0,0,6.856462,0,3.258096,8.242756,0,0,0,85.2,8.537824,0,3.259796,1
-6,2,25,1,3,225333,0,5103.226,32.43121,0,17,1,64.72197,0,0,0,0,64.72197,0,0,0,2,0,1,87.2,6.9,0,85.2,950,950,0,0,0,6.856462,0,3.258096,8.242756,0,0,0,85.2,8.537824,0,4.170101,1
-6,2,25,1,4,225333,0,5103.226,33.43121,0,17,1,28.76198,0,36.1734,0,0,64.93539,0,0,0,2,0,1,87.2,6.9,0,85.2,950,950,0,0,0,6.856462,0,3.258096,8.242756,0,0,0,85.2,8.537824,0,4.173393,1
-6,2,25,1,5,225333,0,5103.226,34.43121,0,17,1,77.08177,0,0,0,300.3526,377.4344,1,0,0,5,0,1,87.2,6.9,0,85.2,950,950,0,0,0,6.856462,0,3.258096,8.242756,0,0,0,85.2,8.537824,0,5.933397,1
-18,2,25,1,1,225341,0,9695.602,41.34702,1,12,1,19.80728,16.73983,0,0,0,36.54711,0,0,0,3,0,5,60.6,24.1,0,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,58,9.179531,1.609438,3.598602,1
-18,2,25,1,2,225341,0,9695.602,42.34702,1,12,1,13.6652,16.59346,0,0,0,30.25866,0,0,0,1,0,5,60.6,24.1,0,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,58,9.179531,1.609438,3.409783,1
-18,2,25,1,3,225341,0,9695.602,43.34702,1,12,1,0,11.42728,0,0,0,11.42728,0,0,0,0,0,5,60.6,24.1,0,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,58,9.179531,1.609438,2.436004,1
-18,2,25,1,1,225342,0,9695.602,5.620808,1,12,1,21.41328,2.623126,0,0,0,24.0364,0,0,0,2,0,5,73.3,11.84267,0,66.7,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.7,9.179531,1.609438,3.179569,1
-18,2,25,1,2,225342,0,9695.602,6.620808,1,12,1,17.0815,0,0,0,0,17.0815,0,0,0,1,0,5,73.3,11.84267,0,66.7,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.7,9.179531,1.609438,2.837996,1
-18,2,25,1,3,225342,0,9695.602,7.620808,1,12,1,6.775068,0,0,0,0,6.775068,0,0,0,1,0,5,73.3,11.84267,0,66.7,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,66.7,9.179531,1.609438,1.913249,1
-18,2,25,1,1,225343,0,9695.602,40.88433,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,45.2,17.2,0,46.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,46.6,9.179531,1.609438,,0
-18,2,25,1,2,225343,0,9695.602,41.88433,0,14,1,0,1.903368,0,0,0,1.903368,0,0,0,0,0,5,45.2,17.2,0,46.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,46.6,9.179531,1.609438,.6436247,1
-18,2,25,1,3,225343,0,9695.602,42.88433,0,14,1,49.23216,1.124661,28.73532,0,0,79.09214,0,0,0,2,1,5,45.2,17.2,0,46.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,46.6,9.179531,1.609438,4.370614,1
-18,2,25,1,1,225344,0,9695.602,8.183436,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,70,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,70.4,9.179531,1.609438,,0
-18,2,25,1,2,225344,0,9695.602,9.183436,1,12,1,17.0815,0,0,0,0,17.0815,0,0,0,1,0,5,70,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,70.4,9.179531,1.609438,2.837996,1
-18,2,25,1,3,225344,0,9695.602,10.18344,1,12,1,9.485095,2.66486,0,0,0,12.14995,0,0,0,1,0,5,70,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,70.4,9.179531,1.609438,2.497325,1
-18,2,25,1,1,225345,0,9695.602,3.370294,0,12,1,9.635974,4.175589,0,0,0,13.81156,0,0,0,1,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,9.179531,1.609438,2.625506,1
-18,2,25,1,2,225345,0,9695.602,4.370294,0,12,1,30.25866,12.9429,0,5.856515,0,43.20156,0,0,1,5,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,9.179531,1.609438,3.765877,1
-18,2,25,1,3,225345,0,9695.602,5.370294,0,12,1,27.43902,4.042457,0,0,0,31.48148,0,0,0,2,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,9.179531,1.609438,3.449399,1
-11,2,0,0,1,225349,0,3643.402,28.30116,1,18,1,39.90899,3.752677,28.1531,0,0,71.81477,0,0,0,1,1,3,79.8,6.9,0,88.6,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,88.6,8.200948,1.098612,4.27409,1
-11,2,0,0,2,225349,0,3643.402,29.30116,1,18,1,38.55539,0,0,0,0,38.55539,0,0,0,2,0,3,79.8,6.9,0,88.6,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,88.6,8.200948,1.098612,3.652096,1
-11,2,0,0,3,225349,0,3643.402,30.30116,1,18,1,114.7245,27.63324,33.23397,0,964.2954,1139.887,2,0,0,2,0,3,79.8,6.9,0,88.6,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,88.6,8.200948,1.098612,7.038684,1
-11,2,0,0,1,225350,0,3643.402,29.57974,0,20,1,10.70664,0,30.29443,0,0,41.00107,0,0,0,0,1,3,70.7,0,0,92,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,92,8.200948,1.098612,3.713598,1
-11,2,0,0,2,225350,0,3643.402,30.57974,0,20,1,28.30649,4.367984,0,0,0,32.67448,0,0,0,2,1,3,70.7,0,0,92,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,92,8.200948,1.098612,3.486594,1
-11,2,0,0,3,225350,0,3643.402,31.57974,0,20,1,56.00723,0,35.04065,0,0,91.04787,0,0,0,2,0,3,70.7,0,0,92,0,864.48,0,0,1.098612,6.762128,0,0,0,0,0,0,92,8.200948,1.098612,4.511385,1
-5,2,25,1,1,225353,0,8343.108,58.00411,1,17,1,56.33423,0,32.53909,0,0,88.87331,0,0,0,3,0,1,91.5,13.8,0,93.2,333.12,333.12,0,0,0,5.808503,0,3.258096,7.194797,0,0,0,93.2,9.029311,0,4.487212,1
-5,2,25,1,2,225353,0,8343.108,59.00411,1,17,1,25.55283,2.353808,0,0,0,27.90663,0,0,0,3,0,1,91.5,13.8,0,93.2,333.12,333.12,0,0,0,5.808503,0,3.258096,7.194797,0,0,0,93.2,9.029311,0,3.328864,1
-5,2,25,1,3,225353,0,8343.108,60.00411,1,17,1,131.0392,18.0082,0,0,991.0665,1140.114,1,0,0,3,0,1,91.5,13.8,0,93.2,333.12,333.12,0,0,0,5.808503,0,3.258096,7.194797,0,0,0,93.2,9.029311,0,7.038883,1
-11,2,0,1,1,225362,0,12487.39,11.57016,1,12,1,69.32615,0,0,0,0,69.32615,0,0,0,2,0,6,93.3,11.84267,0,100,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,100,9.432554,1.791759,4.238822,1
-11,2,0,1,2,225362,0,12487.39,12.57016,1,12,1,14.25061,1.769042,0,0,0,16.01966,0,0,0,2,0,6,93.3,11.84267,0,100,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,100,9.432554,1.791759,2.773816,1
-11,2,0,1,3,225362,0,12487.39,13.57016,1,12,1,54.69462,0,0,0,0,54.69462,0,0,0,5,0,6,93.3,11.84267,0,100,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,100,9.432554,1.791759,4.001765,1
-11,2,0,1,1,225363,0,12487.39,12.71458,1,12,1,147.4933,6.592992,0,0,0,154.0863,0,0,0,7,0,6,88.3,11.84267,0,85.2,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,85.2,9.432554,1.791759,5.037513,1
-11,2,0,1,2,225363,0,12487.39,13.71458,1,12,1,102.7027,3.464373,0,0,0,106.1671,0,0,0,12,0,6,88.3,11.84267,0,85.2,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,85.2,9.432554,1.791759,4.665014,1
-11,2,0,1,3,225363,0,12487.39,14.71458,1,12,1,73.701,2.119416,32.16955,0,0,107.99,0,0,0,6,0,6,88.3,11.84267,0,85.2,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,85.2,9.432554,1.791759,4.682038,1
-11,2,0,1,1,225364,0,12487.39,9.730322,0,12,1,33.42318,6.7062,0,0,0,40.12938,0,0,0,4,0,6,80,11.84267,0,88.9,0,445.56,1,0,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.692109,1
-11,2,0,1,2,225364,0,12487.39,10.73032,0,12,1,27.51843,1.090909,0,0,0,28.60934,0,0,0,3,0,6,80,11.84267,0,88.9,0,445.56,1,0,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.353733,1
-11,2,0,1,3,225364,0,12487.39,11.73032,0,12,1,36.00729,6.736554,0,0,0,42.74385,0,0,0,4,0,6,80,11.84267,0,88.9,0,445.56,1,0,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.755225,1
-11,2,0,1,1,225365,0,12487.39,30.71595,1,12,1,175.7412,29.02426,0,0,0,204.7655,0,0,0,11,0,6,83,10.3,0,78.4,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,78.4,9.432554,1.791759,5.321866,1
-11,2,0,1,2,225365,0,12487.39,31.71595,1,12,1,122.8501,28.13268,34.93366,0,0,185.9165,0,0,0,9,0,6,83,10.3,0,78.4,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,78.4,9.432554,1.791759,5.225297,1
-11,2,0,1,3,225365,0,12487.39,32.71595,1,12,1,112.124,15.71103,0,0,0,127.835,0,0,0,5,0,6,83,10.3,0,78.4,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,78.4,9.432554,1.791759,4.85074,1
-11,2,0,1,1,225366,0,12487.39,3.638604,1,12,1,25.33693,0,0,0,0,25.33693,0,0,0,2,0,6,81.35272,11.84267,0,88.9,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.232263,1
-11,2,0,1,2,225366,0,12487.39,4.638604,1,12,1,31.44963,2.039312,0,0,0,33.48895,0,0,0,2,0,6,81.35272,11.84267,0,88.9,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.511215,1
-11,2,0,1,3,225366,0,12487.39,5.638604,1,12,1,21.87785,1.891522,0,0,0,23.76937,0,0,0,1,0,6,81.35272,11.84267,0,88.9,0,445.56,1,1,1.791759,6.099332,0,0,0,0,0,0,88.9,9.432554,1.791759,3.168398,1
-11,2,0,1,1,225367,0,12487.39,32.24093,0,13,1,115.5795,10.84636,32.28571,0,583.7305,742.4421,1,0,0,3,0,6,78.7,20.7,0,88.6,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,88.6,9.432554,1.791759,6.609945,1
-11,2,0,1,2,225367,0,12487.39,33.24093,0,13,1,126.0442,3.759214,0,0,0,129.8034,0,0,0,3,0,6,78.7,20.7,0,88.6,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,88.6,9.432554,1.791759,4.866021,1
-11,2,0,1,3,225367,0,12487.39,34.24093,0,13,1,249.3163,12.33364,0,0,0,261.65,0,0,0,6,0,6,78.7,20.7,0,88.6,0,445.56,0,0,1.791759,6.099332,0,0,0,0,0,0,88.6,9.432554,1.791759,5.567008,1
-11,2,0,1,1,225371,0,3402.933,61.54415,1,14,1,193.8005,150.3181,0,0,0,344.1186,0,0,0,8,0,1,87.2,41.4,1,48.9,0,293,0,0,0,5.680172,0,0,0,0,1,0,48.9,8.132687,0,5.840986,1
-11,2,0,1,2,225371,0,3402.933,62.54415,1,14,1,571.2531,183.9017,34.64865,0,0,789.8035,0,0,0,8,1,1,87.2,41.4,1,48.9,0,293,0,0,0,5.680172,0,0,0,0,1,0,48.9,8.132687,0,6.671784,1
-11,2,0,1,3,225371,0,3402.933,63.54415,1,14,1,438.9243,193.7967,23.24521,0,0,655.9662,0,0,0,13,1,1,87.2,41.4,1,48.9,0,293,0,0,0,5.680172,0,0,0,0,1,0,48.9,8.132687,0,6.486109,1
-11,2,0,1,1,225382,0,5023.46,23.34839,1,17,1,294.4326,45.63705,0,0,0,340.0696,0,0,0,31,0,1,73.9,3.4,0,87.5,0,0,0,0,0,0,0,0,0,0,0,0,87.5,8.522074,0,5.82915,1
-11,2,0,1,2,225382,0,5023.46,24.34839,1,17,1,258.1747,67.49634,0,0,0,325.6711,0,0,0,33,1,1,73.9,3.4,0,87.5,0,0,0,0,0,0,0,0,0,0,0,0,87.5,8.522074,0,5.785888,1
-11,2,0,1,3,225382,0,5023.46,25.34839,1,17,1,98.91599,73.17073,0,0,0,172.0867,0,0,0,11,0,1,73.9,3.4,0,87.5,0,0,0,0,0,0,0,0,0,0,0,0,87.5,8.522074,0,5.147998,1
-11,2,0,1,1,225383,0,2118.475,19.60301,1,12,1,65.84583,16.83619,34.04176,0,0,116.7238,0,0,0,3,0,1,66.5,3.4,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.658924,0,4.75981,1
-11,2,0,1,2,225383,0,2118.475,20.60301,1,12,1,142.7526,31.64959,0,21.96193,0,174.4021,0,0,1,11,0,1,66.5,3.4,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.658924,0,5.161364,1
-11,2,0,1,3,225383,0,2118.475,21.60301,1,12,1,44.48961,0,30.271,0,0,74.76061,0,0,0,3,0,1,66.5,3.4,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.658924,0,4.314291,1
-11,2,0,0,1,225388,0,3725.806,49.5989,1,25,1,61.51334,13.82689,0,0,0,75.34023,0,0,0,1,3,1,79.8,17.2,0,65.5,0,0,0,0,0,0,0,0,0,1,0,0,65.5,8.223307,0,4.322014,1
-11,2,0,0,2,225388,0,3725.806,50.5989,1,25,1,331.5164,12.68583,48.6224,0,0,392.8246,0,0,0,3,22,1,79.8,17.2,0,65.5,0,0,0,0,0,0,0,0,0,1,0,0,65.5,8.223307,0,5.973363,1
-11,2,0,0,3,225388,0,3725.806,51.5989,1,25,1,192.1524,7.732905,0,0,0,199.8853,0,0,0,2,24,1,79.8,17.2,0,65.5,0,0,0,0,0,0,0,0,0,1,0,0,65.5,8.223307,0,5.297743,1
-13,2,0,1,1,225389,0,8138.417,53.24025,0,12,1,73.85445,11.80593,20.91644,0,0,106.5768,0,0,0,3,0,2,80.3,13.8,0,79.5,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,79.5,9.004474,.6931472,4.668866,1
-13,2,0,1,2,225389,0,8138.417,54.24025,0,12,1,0,6.855037,0,0,0,6.855037,0,0,0,0,0,2,80.3,13.8,0,79.5,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,79.5,9.004474,.6931472,1.924984,1
-13,2,0,1,3,225389,0,8138.417,55.24025,0,12,1,100.0456,27.68004,32.36098,0,0,160.0866,0,0,0,3,0,2,80.3,13.8,0,79.5,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,79.5,9.004474,.6931472,5.075715,1
-13,2,0,1,1,225390,0,8138.417,51.93155,1,13,1,74.39353,66.53909,29.0027,0,0,169.9353,0,0,0,10,0,2,83,31,1,85.2,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,85.2,9.004474,.6931472,5.135418,1
-13,2,0,1,2,225390,0,8138.417,52.93155,1,13,1,31.94103,69.28747,0,51.59705,0,101.2285,0,0,7,3,0,2,83,31,1,85.2,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,85.2,9.004474,.6931472,4.61738,1
-13,2,0,1,3,225390,0,8138.417,53.93155,1,13,1,116.6819,95.53327,0,0,0,212.2151,0,0,0,9,0,2,83,31,1,85.2,300,400.32,0,0,.6931472,5.992264,1,4.564348,5.755076,1,0,0,85.2,9.004474,.6931472,5.357601,1
-11,2,0,1,1,225391,0,5517.889,31.5154,1,13,1,101.159,16.2372,0,0,0,117.3962,0,0,0,5,0,1,71.8,34.5,1,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.615932,0,4.765555,1
-11,2,0,1,2,225391,0,5517.889,32.5154,1,13,1,208.3538,21.49386,0,19.65602,0,229.8477,0,0,1,8,0,1,71.8,34.5,1,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.615932,0,5.437417,1
-11,2,0,1,3,225391,0,5517.889,33.5154,1,13,1,319.7357,42.14676,0,102.5524,0,361.8824,0,0,5,16,0,1,71.8,34.5,1,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.615932,0,5.891319,1
-14,2,95,0,1,225392,0,9703.226,53.95209,1,13,1,18.86792,2.156334,0,0,0,21.02426,0,0,0,2,0,2,70.2,13.8,1,83,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,1,0,0,83,9.180317,.6931472,3.045677,1
-14,2,95,0,2,225392,0,9703.226,54.95209,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,13.8,1,83,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,1,0,0,83,9.180317,.6931472,,0
-14,2,95,0,3,225392,0,9703.226,55.95209,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,13.8,1,83,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,1,0,0,83,9.180317,.6931472,,0
-14,2,95,1,1,225393,0,9703.226,18.02327,0,11,1,26.68464,4.25876,0,0,0,30.9434,0,0,0,1,0,2,79.3,10.3,0,84.1,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,0,0,0,84.1,9.180317,.6931472,3.43216,1
-14,2,95,1,2,225393,0,9703.226,19.02327,0,11,1,12.28501,0,0,0,0,12.28501,0,0,0,1,0,2,79.3,10.3,0,84.1,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,0,0,0,84.1,9.180317,.6931472,2.50838,1
-14,2,95,1,3,225393,0,9703.226,20.02327,0,11,1,75.63811,11.16682,0,0,444.7721,531.577,1,0,0,3,0,2,79.3,10.3,0,84.1,598.1,598,0,0,.6931472,6.393591,0,4.564348,6.445051,0,0,0,84.1,9.180317,.6931472,6.275848,1
-7,2,25,1,1,225394,0,8015.836,1.700205,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,,0
-7,2,25,1,2,225394,0,8015.836,2.700205,1,10,1,48.40295,0,0,0,0,48.40295,0,0,0,3,0,5,81.35272,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,3.879561,1
-7,2,25,1,3,225394,0,8015.836,3.700205,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,,0
-7,2,25,1,1,225395,0,8015.836,26.63381,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,79.5,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.5,8.989299,1.609438,,0
-7,2,25,1,2,225395,0,8015.836,27.63381,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,79.5,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.5,8.989299,1.609438,,0
-7,2,25,1,3,225395,0,8015.836,28.63381,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,79.5,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,79.5,8.989299,1.609438,,0
-7,2,25,1,1,225396,0,8015.836,23.75633,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,62.2,3.4,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,60.2,8.989299,1.609438,,0
-7,2,25,1,2,225396,0,8015.836,24.75633,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,62.2,3.4,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,60.2,8.989299,1.609438,,0
-7,2,25,1,3,225396,0,8015.836,25.75633,1,10,1,65.24612,9.024612,0,0,0,74.27074,0,0,0,1,0,5,62.2,3.4,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,60.2,8.989299,1.609438,4.307717,1
-7,2,25,1,1,225397,0,8015.836,5.519507,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,,0
-7,2,25,1,2,225397,0,8015.836,6.519507,1,10,1,20.63882,0,35.31204,0,0,55.95086,0,0,0,1,1,5,86.7,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,4.024474,1
-7,2,25,1,3,225397,0,8015.836,7.519507,1,10,1,16.40839,11.32634,0,0,0,27.73473,0,0,0,3,0,5,86.7,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,8.989299,1.609438,3.322685,1
-7,2,25,1,1,225398,0,8015.836,3.638604,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,8.989299,1.609438,,0
-7,2,25,1,2,225398,0,8015.836,4.638604,0,10,1,44.71745,0,0,0,0,44.71745,0,0,0,2,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,8.989299,1.609438,3.800364,1
-7,2,25,1,3,225398,0,8015.836,5.638604,0,10,1,15.9526,0,0,0,0,15.9526,0,0,0,1,0,5,81.35272,11.84267,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,77.8,8.989299,1.609438,2.769622,1
-13,2,0,0,1,225399,0,5174.193,23.74264,1,16,1,34.59287,4.390633,0,0,0,38.9835,0,0,0,2,0,1,87.8,0,0,84.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,84.1,8.551632,0,3.663139,1
-13,2,0,0,2,225399,0,5174.193,24.74264,1,16,1,58.65245,3.611246,0,0,0,62.26369,0,0,0,8,0,1,87.8,0,0,84.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,84.1,8.551632,0,4.131379,1
-13,2,0,0,3,225399,0,5174.193,25.74264,1,16,1,106.9182,3.360287,0,0,0,110.2785,0,0,0,2,3,1,87.8,0,0,84.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,84.1,8.551632,0,4.703009,1
-16,2,95,1,1,225400,0,5232.563,6.231349,1,12,1,15.52462,3.185225,0,0,0,18.70985,0,0,0,2,0,3,83.3,11.84267,0,85.2,375,375,1,1,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,2.92905,1
-16,2,95,1,2,225400,0,5232.563,7.231349,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,11.84267,0,85.2,375,375,1,1,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,3,225400,0,5232.563,8.231348,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,11.84267,0,85.2,375,375,1,1,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,4,225400,0,5232.563,9.231348,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,11.84267,0,85.2,375,375,1,1,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,5,225400,0,5232.563,10.23135,1,12,1,14.15797,0,0,0,0,14.15797,0,0,0,1,0,3,83.3,11.84267,0,85.2,375,375,1,1,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,2.650278,1
-16,2,95,1,1,225401,0,5232.563,4.251882,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,85.2,375,375,1,0,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,2,225401,0,5232.563,5.251882,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,85.2,375,375,1,0,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,3,225401,0,5232.563,6.251882,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,85.2,375,375,1,0,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,4,225401,0,5232.563,7.251882,0,12,1,0,2.229115,0,0,0,2.229115,0,0,0,0,0,3,81.35272,11.84267,0,85.2,375,375,1,0,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,.8016046,1
-16,2,95,1,5,225401,0,5232.563,8.251883,0,12,1,6.706409,0,0,0,0,6.706409,0,0,0,1,0,3,81.35272,11.84267,0,85.2,375,375,1,0,1.098612,5.926926,0,4.564348,5.97822,0,0,0,85.2,8.562847,1.098612,1.903064,1
-16,2,95,1,1,225403,0,5232.563,25.54141,1,12,1,9.635974,18.06745,0,0,0,27.70343,0,0,0,1,0,3,89.9,0,0,85.2,375,375,0,0,1.098612,5.926926,0,4.564348,5.97822,1,0,0,85.2,8.562847,1.098612,3.321556,1
-16,2,95,1,2,225403,0,5232.563,26.54141,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,0,0,85.2,375,375,0,0,1.098612,5.926926,0,4.564348,5.97822,1,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,3,225403,0,5232.563,27.54141,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,0,0,85.2,375,375,0,0,1.098612,5.926926,0,4.564348,5.97822,1,0,0,85.2,8.562847,1.098612,,0
-16,2,95,1,4,225403,0,5232.563,28.54141,1,12,1,45.07858,0,0,0,417.5972,462.6758,1,0,0,5,0,3,89.9,0,0,85.2,375,375,0,0,1.098612,5.926926,0,4.564348,5.97822,1,0,0,85.2,8.562847,1.098612,6.137026,1
-16,2,95,1,5,225403,0,5232.563,29.54141,1,12,1,28.68852,2.514903,0,0,731.1848,762.3882,1,0,0,2,1,3,89.9,0,0,85.2,375,375,0,0,1.098612,5.926926,0,4.564348,5.97822,1,0,0,85.2,8.562847,1.098612,6.636456,1
-5,2,25,1,1,225405,0,10753.08,58.67762,0,8,1,289.4609,51.72507,0,0,0,341.186,0,0,0,14,0,2,84.6,20.7,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.28304,.6931472,5.832428,1
-5,2,25,1,2,225405,0,10753.08,59.67762,0,8,1,68.79607,15.55283,0,0,0,84.34889,0,0,0,3,0,2,84.6,20.7,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.28304,.6931472,4.434962,1
-5,2,25,1,3,225405,0,10753.08,60.67762,0,8,1,141.1805,21.18049,32.64357,0,0,195.0046,0,0,0,6,1,2,84.6,20.7,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.28304,.6931472,5.273023,1
-5,2,25,1,1,225406,0,10753.08,58.07803,1,12,1,48.51752,14.25876,0,0,0,62.77628,0,0,0,2,1,2,85.1,20.7,0,65.9,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.28304,.6931472,4.139577,1
-5,2,25,1,2,225406,0,10753.08,59.07803,1,12,1,52.7027,13.46437,0,0,0,66.16708,0,0,0,2,0,2,85.1,20.7,0,65.9,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.28304,.6931472,4.192183,1
-5,2,25,1,3,225406,0,10753.08,60.07803,1,12,1,84.54877,18.76481,40.84777,0,0,144.1613,0,0,0,4,1,2,85.1,20.7,0,65.9,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.28304,.6931472,4.970933,1
-11,2,0,1,1,225408,0,1006.452,44.25736,0,12,1,186.1995,8.285714,0,59.29919,0,194.4852,0,0,1,5,0,2,87.8,10.3,0,70.5,0,634.8,0,0,.6931472,6.45331,0,0,0,1,0,0,70.5,6.915179,.6931472,5.270356,1
-11,2,0,1,2,225408,0,1006.452,45.25736,0,12,1,267.027,34.00491,37.53808,0,0,338.57,0,0,0,14,0,2,87.8,10.3,0,70.5,0,634.8,0,0,.6931472,6.45331,0,0,0,1,0,0,70.5,6.915179,.6931472,5.824731,1
-11,2,0,1,3,225408,0,1006.452,46.25736,0,12,1,210.9389,40.01823,0,0,0,250.9572,0,0,0,13,0,2,87.8,10.3,0,70.5,0,634.8,0,0,.6931472,6.45331,0,0,0,1,0,0,70.5,6.915179,.6931472,5.525282,1
-11,2,0,1,4,225408,0,1006.452,47.25736,0,12,1,83.57649,43.78908,0,0,1256.482,1383.847,1,0,0,9,0,2,87.8,10.3,0,70.5,0,634.8,0,0,.6931472,6.45331,0,0,0,1,0,0,70.5,6.915179,.6931472,7.232623,1
-11,2,0,1,5,225408,0,1006.452,48.25736,0,12,1,104.201,45.38634,0,0,432.6519,582.2393,1,0,0,13,0,2,87.8,10.3,0,70.5,0,634.8,0,0,.6931472,6.45331,0,0,0,1,0,0,70.5,6.915179,.6931472,6.366881,1
-11,2,0,1,1,225410,0,1006.452,31.82204,1,12,1,132.2102,3.207547,38.05391,0,475.089,648.5607,1,0,0,9,3,2,71.3,13.8,1,37.5,0,634.8,0,0,.6931472,6.45331,0,0,0,0,0,1,37.5,6.915179,.6931472,6.474756,1
-11,2,0,1,2,225410,0,1006.452,32.82204,1,12,1,98.13268,31.13022,33.85258,0,2303.907,2467.022,4,0,0,10,0,2,71.3,13.8,1,37.5,0,634.8,0,0,.6931472,6.45331,0,0,0,0,0,1,37.5,6.915179,.6931472,7.810767,1
-11,2,0,1,3,225410,0,1006.452,33.82204,1,12,1,298.5871,46.53601,33.62808,0,1944.439,2323.19,3,0,0,19,0,2,71.3,13.8,1,37.5,0,634.8,0,0,.6931472,6.45331,0,0,0,0,0,1,37.5,6.915179,.6931472,7.750697,1
-11,2,0,1,4,225410,0,1006.452,34.82204,1,12,1,117.9658,34.03502,0,0,0,152.0008,0,0,0,13,0,2,71.3,13.8,1,37.5,0,634.8,0,0,.6931472,6.45331,0,0,0,0,0,1,37.5,6.915179,.6931472,5.023886,1
-11,2,0,1,5,225410,0,1006.452,35.82204,1,12,1,172.3556,36.72168,21.41785,0,0,230.4951,0,0,0,19,0,2,71.3,13.8,1,37.5,0,634.8,0,0,.6931472,6.45331,0,0,0,0,0,1,37.5,6.915179,.6931472,5.44023,1
-13,2,0,1,1,225411,1,8665.641,3.734428,1,12,1,4.851752,0,0,0,0,4.851752,0,0,0,1,0,4,81.35272,11.84267,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.067237,1.386294,1.57934,1
-13,2,0,1,2,225411,1,8665.641,4.734428,1,12,1,20.63882,0,0,0,0,20.63882,0,0,0,3,0,4,81.35272,11.84267,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.067237,1.386294,3.027174,1
-13,2,0,1,3,225411,1,8665.641,5.734428,1,12,1,6.381039,0,0,0,0,6.381039,0,0,0,1,0,5,81.35272,11.84267,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.067237,1.609438,1.853331,1
-13,2,0,1,1,225412,1,8665.641,1.199179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.067237,1.386294,,0
-13,2,0,1,2,225412,1,8665.641,2.199179,0,12,1,13.75921,0,0,0,0,13.75921,0,0,0,2,0,4,81.35272,11.84267,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.067237,1.386294,2.621709,1
-13,2,0,1,3,225412,1,8665.641,3.199179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,81.5,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.067237,1.609438,,0
-13,2,0,1,1,225413,1,8665.641,31.54004,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,89.9,0,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.067237,1.386294,,0
-13,2,0,1,2,225413,1,8665.641,32.54004,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,89.9,0,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.067237,1.386294,,0
-13,2,0,1,3,225413,1,8665.641,33.54004,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,89.9,0,0,83,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83,9.067237,1.609438,,0
-13,2,0,1,1,225414,1,8665.641,23.67146,1,12,1,42.85714,0,0,0,0,42.85714,0,0,0,6,0,4,62.8,24.1,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.067237,1.386294,3.757872,1
-13,2,0,1,2,225414,1,8665.641,24.67146,1,12,1,0,10.54054,0,0,813.0467,823.5872,1,0,0,0,0,4,62.8,24.1,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.067237,1.386294,6.713669,1
-13,2,0,1,3,225414,1,8665.641,25.67146,1,12,1,18.23154,0,0,0,0,18.23154,0,0,0,1,0,5,62.8,24.1,0,64.8,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.067237,1.609438,2.903153,1
-16,2,95,0,1,225415,0,10419.94,47.75633,1,12,1,91.50944,3.61186,32.50674,0,0,127.628,0,0,0,5,1,2,93.1,10.3,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.251573,.6931472,4.84912,1
-16,2,95,0,2,225415,0,10419.94,48.75633,1,12,1,51.9656,29.76904,0,0,0,81.73464,0,0,0,4,0,2,93.1,10.3,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.251573,.6931472,4.403478,1
-16,2,95,0,3,225415,0,10419.94,49.75633,1,12,1,97.76664,23.38195,45.47858,0,0,166.6272,0,0,0,4,2,2,93.1,10.3,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.251573,.6931472,5.115759,1
-16,2,95,0,1,225416,0,10419.94,60.16975,0,12,1,74.93262,22.64151,0,0,1262.421,1359.995,2,0,0,2,0,2,95.2,17.2,0,89.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.251573,.6931472,7.215236,1
-16,2,95,0,2,225416,0,10419.94,61.16975,0,12,1,19.65602,6.378378,0,0,0,26.0344,0,0,0,2,0,2,95.2,17.2,0,89.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.251573,.6931472,3.259419,1
-16,2,95,0,3,225416,0,10419.94,62.16975,0,12,1,17.77575,4.024612,33.85141,0,0,55.65178,0,0,0,1,0,2,95.2,17.2,0,89.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.251573,.6931472,4.019114,1
-13,2,0,0,1,225425,0,7472.141,26.17385,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,54.3,13.8,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.91907,0,,0
-13,2,0,0,2,225425,0,7472.141,27.17385,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,54.3,13.8,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.91907,0,,0
-13,2,0,0,3,225425,0,7472.141,28.17385,1,16,1,59.4804,0,0,0,0,59.4804,0,0,0,2,0,1,54.3,13.8,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.91907,0,4.085647,1
-13,2,0,0,4,225425,0,7472.141,29.17385,1,16,1,47.5198,0,0,0,0,47.5198,0,0,0,2,0,1,54.3,13.8,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.91907,0,3.861146,1
-13,2,0,0,5,225425,0,7472.141,30.17385,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,54.3,13.8,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.91907,0,,0
-19,2,25,1,1,225426,0,2614.076,25.48665,1,17,1,72.40065,7.550354,31.88895,0,0,111.84,0,0,0,4,0,1,63.3,24.1,0,55.7,195,195,0,0,0,5.273,0,3.258096,6.659294,1,0,0,55.7,7.869049,0,4.717069,1
-19,2,25,1,2,225426,0,2614.076,26.48665,1,17,1,24.77701,7.641229,21.65015,0,0,54.06839,0,0,0,3,1,1,63.3,24.1,0,55.7,195,195,0,0,0,5.273,0,3.258096,6.659294,1,0,0,55.7,7.869049,0,3.99025,1
-19,2,25,1,3,225426,0,2614.076,27.48665,1,17,1,301.0739,0,45.47499,0,0,346.5489,0,0,0,7,0,1,63.3,24.1,0,55.7,195,195,0,0,0,5.273,0,3.258096,6.659294,1,0,0,55.7,7.869049,0,5.848024,1
-11,2,0,1,1,225466,0,11262.76,38.6475,0,17,1,79.38005,0,0,26.95418,0,79.38005,0,0,1,4,0,1,93.6,3.4,0,84.1,0,0,0,0,0,0,0,0,0,0,0,0,84.1,9.329346,0,4.374247,1
-11,2,0,1,2,225466,0,11262.76,39.6475,0,17,1,153.1253,12.95823,0,49.14005,0,166.0835,0,0,2,5,0,1,93.6,3.4,0,84.1,0,0,0,0,0,0,0,0,0,0,0,0,84.1,9.329346,0,5.112491,1
-11,2,0,1,3,225466,0,11262.76,40.6475,0,17,1,77.73929,0,0,0,0,77.73929,0,0,0,4,0,1,93.6,3.4,0,84.1,0,0,0,0,0,0,0,0,0,0,0,0,84.1,9.329346,0,4.353361,1
-13,2,0,0,1,225473,0,6472.141,34.34086,0,16,1,169.407,57.65499,0,0,0,227.062,0,0,0,11,0,1,75,20.7,0,73.9,150,40,0,0,0,3.688879,1,4.564348,5.061929,0,0,0,73.9,8.775416,0,5.425223,1
-13,2,0,0,2,225473,0,6472.141,35.34086,0,16,1,17.19902,51.52334,0,0,0,68.72236,0,0,0,1,0,1,75,20.7,0,73.9,150,40,0,0,0,3.688879,1,4.564348,5.061929,0,0,0,73.9,8.775416,0,4.230074,1
-13,2,0,0,3,225473,0,6472.141,36.34086,0,16,1,6.836828,27.48405,40.07293,0,0,74.3938,0,0,0,1,0,1,75,20.7,0,73.9,150,40,0,0,0,3.688879,1,4.564348,5.061929,0,0,0,73.9,8.775416,0,4.309372,1
-14,2,95,1,1,225474,0,9421.701,59.30458,1,8,1,79.38005,36.59838,0,0,0,115.9784,0,0,0,2,1,2,88.8,24.1,0,62.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,62.5,9.150877,.6931472,4.753404,1
-14,2,95,1,2,225474,0,9421.701,60.30458,1,8,1,74.07862,47.76413,0,0,0,121.8428,0,0,0,4,0,2,88.8,24.1,0,62.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,62.5,9.150877,.6931472,4.802732,1
-14,2,95,1,3,225474,0,9421.701,61.30458,1,8,1,250,87.49772,11.59982,0,0,349.0975,0,0,0,13,0,2,88.8,24.1,0,62.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,62.5,9.150877,.6931472,5.855351,1
-14,2,95,1,4,225474,0,9421.701,62.30458,1,8,1,298.02,74.31013,5.060442,0,5573.372,5950.763,2,0,0,12,0,2,88.8,24.1,0,62.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,62.5,9.150877,.6931472,8.691275,1
-14,2,95,1,5,225474,0,9421.701,63.30458,1,8,1,123.2183,121.1965,5.903976,0,0,250.3188,0,0,0,4,3,2,88.8,24.1,0,62.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,62.5,9.150877,.6931472,5.522736,1
-14,2,95,1,1,225475,0,9421.701,55.65777,0,12,1,19.13747,0,0,0,0,19.13747,0,0,0,1,0,2,93.1,3.4,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.150877,.6931472,2.951648,1
-14,2,95,1,2,225475,0,9421.701,56.65777,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,3.4,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.150877,.6931472,,0
-14,2,95,1,3,225475,0,9421.701,57.65777,0,12,1,83.63719,0,35.56518,0,0,119.2024,0,0,0,1,1,2,93.1,3.4,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.150877,.6931472,4.780823,1
-14,2,95,1,4,225475,0,9421.701,58.65777,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,3.4,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.150877,.6931472,,0
-14,2,95,1,5,225475,0,9421.701,59.65777,0,12,1,17.44186,31.42911,0,0,0,48.87097,0,0,0,2,0,2,93.1,3.4,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.150877,.6931472,3.889184,1
-11,2,0,0,1,225493,0,9946.041,53.73032,1,12,1,62.32989,92.61295,43.54382,0,0,198.4867,0,0,0,4,0,3,63.3,31,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,9.20503,1.098612,5.290722,1
-11,2,0,0,2,225493,0,9946.041,54.73032,1,12,1,58.72151,49.52428,0,0,0,108.2458,0,0,0,1,0,3,63.3,31,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,9.20503,1.098612,4.684404,1
-11,2,0,0,3,225493,0,9946.041,55.73032,1,12,1,57.54934,21.72556,0,0,0,79.27489,0,0,0,2,0,3,63.3,31,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,9.20503,1.098612,4.372921,1
-11,2,0,0,4,225493,0,9946.041,56.73032,1,12,1,289.4994,43.50442,69.30164,0,0,402.3054,0,0,0,8,0,3,63.3,31,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,9.20503,1.098612,5.997211,1
-11,2,0,0,5,225493,0,9946.041,57.73032,1,12,1,38.00529,47.10616,0,0,0,85.11145,0,0,0,3,0,3,63.3,31,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,9.20503,1.098612,4.443962,1
-11,2,0,0,1,225494,0,9946.041,15.25804,0,12,1,34.56723,22.72727,2.776266,0,0,60.07077,0,0,0,2,0,3,72.9,3.4,0,75,0,0,1,0,1.098612,0,0,0,0,1,0,0,75,9.20503,1.098612,4.095523,1
-11,2,0,0,2,225494,0,9946.041,16.25804,0,12,1,296.9276,32.55699,7.859267,0,0,337.3439,0,0,0,11,1,3,72.9,3.4,0,75,0,0,1,0,1.098612,0,0,0,0,1,0,0,75,9.20503,1.098612,5.821103,1
-11,2,0,0,3,225494,0,9946.041,17.25804,0,12,1,35.33731,42.12942,0,0,0,77.46673,0,0,0,3,0,3,72.9,3.4,0,75,0,0,1,0,1.098612,0,0,0,0,1,0,0,75,9.20503,1.098612,4.349849,1
-11,2,0,0,4,225494,0,9946.041,18.25804,0,12,1,234.7497,40.36601,0,0,0,275.1157,0,0,0,10,1,3,72.9,3.4,0,75,0,0,0,0,1.098612,0,0,0,0,1,0,0,75,9.20503,1.098612,5.617192,1
-11,2,0,0,5,225494,0,9946.041,19.25804,0,12,1,126.9362,32.3725,0,0,0,159.3087,0,0,0,8,0,3,72.9,3.4,0,75,0,0,0,0,1.098612,0,0,0,0,1,0,0,75,9.20503,1.098612,5.070844,1
-11,2,0,0,1,225495,0,9946.041,57.96578,0,10,1,101.5787,0,0,0,0,101.5787,0,0,0,7,0,3,75,13.8,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,9.20503,1.098612,4.620833,1
-11,2,0,0,2,225495,0,9946.041,58.96578,0,10,1,19.82161,2.725471,0,0,0,22.54708,0,0,0,2,0,3,75,13.8,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,9.20503,1.098612,3.115605,1
-11,2,0,0,3,225495,0,9946.041,59.96578,0,10,1,231.2988,32.23038,41.30335,0,0,304.8325,0,0,0,5,1,3,75,13.8,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,9.20503,1.098612,5.719762,1
-11,2,0,0,4,225495,0,9946.041,60.96578,0,10,1,208.0353,35.59529,0,0,0,243.6306,0,0,0,7,0,3,75,13.8,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,9.20503,1.098612,5.495653,1
-11,2,0,0,5,225495,0,9946.041,61.96578,0,10,1,370.7404,26.16925,47.14016,0,1751.53,2195.58,1,0,0,9,4,3,75,13.8,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,9.20503,1.098612,7.694201,1
-11,2,0,1,1,225500,0,15980.06,10.47502,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,95,11.84267,0,96.3,0,99.36,1,0,1.386294,4.59875,0,0,0,0,0,0,96.3,9.679159,1.386294,,0
-11,2,0,1,2,225500,0,15980.06,11.47502,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,95,11.84267,0,96.3,0,99.36,1,0,1.386294,4.59875,0,0,0,0,0,0,96.3,9.679159,1.386294,,0
-11,2,0,1,3,225500,0,15980.06,12.47502,0,16,1,11.39471,0,0,0,0,11.39471,0,0,0,1,0,4,95,11.84267,0,96.3,0,99.36,1,0,1.386294,4.59875,0,0,0,0,0,0,96.3,9.679159,1.386294,2.433149,1
-11,2,0,1,1,225501,0,15980.06,41.01848,0,14,1,228.0323,8.409703,0,0,589.6496,826.0916,1,0,0,4,0,4,85.6,3.4,0,78.4,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,78.4,9.679159,1.386294,6.716706,1
-11,2,0,1,2,225501,0,15980.06,42.01848,0,14,1,45.70024,0,0,0,718.7469,764.4472,1,0,0,1,0,4,85.6,3.4,0,78.4,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,78.4,9.679159,1.386294,6.639153,1
-11,2,0,1,3,225501,0,15980.06,43.01848,0,14,1,112.8077,0,29.95898,9.726527,0,142.7666,0,0,2,3,0,4,85.6,3.4,0,78.4,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,78.4,9.679159,1.386294,4.961211,1
-11,2,0,1,1,225502,0,15980.06,41.25941,1,16,1,68.46362,14.17251,35.27763,0,0,117.9137,0,0,0,5,0,4,82.4,10.3,0,92,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,92,9.679159,1.386294,4.769953,1
-11,2,0,1,2,225502,0,15980.06,42.25941,1,16,1,8.845209,2.948403,0,0,0,11.79361,0,0,0,1,0,4,82.4,10.3,0,92,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,92,9.679159,1.386294,2.467558,1
-11,2,0,1,3,225502,0,15980.06,43.25941,1,16,1,7.748405,15.2917,0,9.721969,0,23.04011,0,0,2,1,0,4,82.4,10.3,0,92,0,99.36,0,0,1.386294,4.59875,0,0,0,0,0,0,92,9.679159,1.386294,3.137237,1
-11,2,0,1,1,225503,0,15980.06,13.16906,0,16,1,8.625337,0,0,0,0,8.625337,0,0,0,1,0,4,90,11.84267,0,88.9,0,99.36,1,0,1.386294,4.59875,0,0,0,1,0,0,88.9,9.679159,1.386294,2.154704,1
-11,2,0,1,2,225503,0,15980.06,14.16906,0,16,1,10.81081,0,0,0,0,10.81081,0,0,0,1,0,4,90,11.84267,0,88.9,0,99.36,1,0,1.386294,4.59875,0,0,0,1,0,0,88.9,9.679159,1.386294,2.380547,1
-11,2,0,1,3,225503,0,15980.06,15.16906,0,16,1,12.76208,1.823154,0,140.9891,0,14.58523,0,0,11,1,0,4,90,11.84267,0,88.9,0,99.36,1,0,1.386294,4.59875,0,0,0,1,0,0,88.9,9.679159,1.386294,2.68001,1
-13,2,0,1,1,225518,0,4309.091,22.78166,1,12,1,82.47142,11.14317,0,0,0,93.61459,0,0,0,0,13,1,42.6,20.7,1,38.6,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,38.6,8.368714,0,4.539186,1
-13,2,0,1,2,225518,0,4309.091,23.78166,1,12,1,55.99604,3.612488,0,0,615.7483,675.3568,1,0,0,0,11,1,42.6,20.7,1,38.6,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,38.6,8.368714,0,6.515241,1
-13,2,0,1,3,225518,0,4309.091,24.78166,1,12,1,25.24094,3.441946,0,0,0,28.68288,0,0,0,0,5,2,42.6,20.7,1,38.6,150,0,0,0,.6931472,0,1,4.564348,5.061929,0,0,0,38.6,8.368714,.6931472,3.356301,1
-13,2,0,1,4,225518,0,4309.091,25.78166,1,12,1,12.62095,0,0,0,0,12.62095,0,0,0,1,1,2,42.6,20.7,1,38.6,150,0,0,0,.6931472,0,1,4.564348,5.061929,0,0,0,38.6,8.368714,.6931472,2.535358,1
-13,2,0,1,5,225518,0,4309.091,26.78166,1,12,1,73.6683,1.922932,0,0,0,75.59123,0,0,0,2,8,2,42.6,20.7,1,38.6,150,0,0,0,.6931472,0,1,4.564348,5.061929,0,0,0,38.6,8.368714,.6931472,4.32534,1
-13,2,0,0,1,225528,0,6106.745,3.017112,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,,0
-13,2,0,0,2,225528,0,6106.745,4.017112,1,12,1,10.56511,0,0,0,0,10.56511,0,0,0,1,0,5,81.35272,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,2.357557,1
-13,2,0,0,3,225528,0,6106.745,5.017112,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,,0
-13,2,0,0,1,225529,0,6106.745,30.79261,1,12,1,27.7628,1.450135,16.17251,0,0,45.38544,0,0,0,1,1,5,65.4,13.8,0,98.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,98.9,8.717313,1.609438,3.815192,1
-13,2,0,0,2,225529,0,6106.745,31.79261,1,12,1,17.69042,0,0,0,0,17.69042,0,0,0,2,0,5,65.4,13.8,0,98.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,98.9,8.717313,1.609438,2.873023,1
-13,2,0,0,3,225529,0,6106.745,32.79261,1,12,1,31.6773,0,0,0,0,31.6773,0,0,0,2,0,5,65.4,13.8,0,98.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,98.9,8.717313,1.609438,3.4556,1
-13,2,0,0,1,225530,0,6106.745,11.66598,0,12,1,11.05121,0,0,0,0,11.05121,0,0,0,1,0,5,98.3,11.84267,0,100,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,2.40254,1
-13,2,0,0,2,225530,0,6106.745,12.66598,0,12,1,29.23833,0,0,0,0,29.23833,0,0,0,2,0,5,98.3,11.84267,0,100,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,3.37548,1
-13,2,0,0,3,225530,0,6106.745,13.66598,0,12,1,45.21422,0,0,0,0,45.21422,0,0,0,2,0,5,98.3,11.84267,0,100,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,3.811412,1
-13,2,0,0,1,225531,0,6106.745,6.581793,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,,0
-13,2,0,0,2,225531,0,6106.745,7.581793,1,12,1,10.56511,0,0,0,0,10.56511,0,0,0,1,0,5,95,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,2.357557,1
-13,2,0,0,3,225531,0,6106.745,8.581793,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,11.84267,0,100,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,100,8.717313,1.609438,,0
-13,2,0,0,1,225532,0,6106.745,31.66598,0,16,1,69.81132,7.660378,31.04582,0,0,108.5175,0,0,0,1,1,5,53.2,10.3,0,79.5,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,79.5,8.717313,1.609438,4.686912,1
-13,2,0,0,2,225532,0,6106.745,32.66598,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,53.2,10.3,0,79.5,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,79.5,8.717313,1.609438,,0
-13,2,0,0,3,225532,0,6106.745,33.66598,0,16,1,34.32087,0,0,0,0,34.32087,0,0,0,1,0,5,53.2,10.3,0,79.5,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,79.5,8.717313,1.609438,3.535754,1
-17,2,25,1,1,225533,0,14851.03,49.88091,0,12,1,151.5364,5.121294,36.43666,0,0,193.0943,0,0,0,4,11,3,77.1,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.605891,1.098612,5.263179,1
-17,2,25,1,2,225533,0,14851.03,50.88091,0,12,1,75.42998,3.002457,0,0,0,78.43243,0,0,0,1,0,3,77.1,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.605891,1.098612,4.362237,1
-17,2,25,1,3,225533,0,14851.03,51.88091,0,12,1,29.39836,5.733819,0,0,0,35.13218,0,0,0,3,0,2,77.1,0,0,85.2,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.605891,.6931472,3.559118,1
-17,2,25,1,1,225534,0,14851.03,44.69542,1,12,1,148.7871,0,56.60378,0,1284.302,1489.693,1,0,0,6,0,3,78.2,13.8,0,78.4,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.605891,1.098612,7.306325,1
-17,2,25,1,2,225534,0,14851.03,45.69542,1,12,1,0,12.51597,0,0,0,12.51597,0,0,0,0,0,3,78.2,13.8,0,78.4,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.605891,1.098612,2.527005,1
-17,2,25,1,3,225534,0,14851.03,46.69542,1,12,1,172.7439,25.70191,0,0,0,198.4458,0,0,0,5,0,2,78.2,13.8,0,78.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.605891,.6931472,5.290516,1
-17,2,25,1,1,225535,0,14851.03,15.50445,0,12,1,162.5337,40.31267,0,0,0,202.8464,0,0,0,35,0,3,62.8,13.8,0,51.1,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,51.1,9.605891,1.098612,5.312449,1
-17,2,25,1,2,225535,0,14851.03,16.50445,0,12,1,218.5504,43.03194,0,0,0,261.5823,0,0,0,25,0,3,62.8,13.8,0,51.1,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,51.1,9.605891,1.098612,5.566749,1
-16,2,95,1,1,225544,0,5000,3.690623,0,13,1,89.16442,13.531,0,0,0,102.6954,0,0,0,37,0,5,81.35272,11.84267,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,66.7,8.517393,1.609438,4.631768,1
-16,2,95,1,2,225544,0,5000,4.690623,0,13,1,96.02457,34.00983,0,0,0,130.0344,0,0,0,23,0,5,81.35272,11.84267,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,66.7,8.517393,1.609438,4.867799,1
-16,2,95,1,3,225544,0,5000,5.690623,0,13,1,60.61987,3.176846,0,0,0,63.79672,0,0,0,15,0,5,81.35272,11.84267,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,66.7,8.517393,1.609438,4.155702,1
-16,2,95,1,1,225545,0,5000,6.631074,1,13,1,1.886792,0,0,0,0,1.886792,0,0,0,0,0,5,60,11.84267,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,8.517393,1.609438,.6348783,1
-16,2,95,1,2,225545,0,5000,7.631074,1,13,1,6.879607,0,0,0,0,6.879607,0,0,0,0,0,5,60,11.84267,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,8.517393,1.609438,1.928561,1
-16,2,95,1,3,225545,0,5000,8.631075,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,60,11.84267,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,8.517393,1.609438,,0
-16,2,95,1,1,225546,0,5000,28.63244,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,75.5,3.4,1,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,78.4,8.517393,1.609438,,0
-16,2,95,1,2,225546,0,5000,29.63244,0,16,1,28.50123,0,27.22359,0,0,55.72482,0,0,0,1,1,5,75.5,3.4,1,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,78.4,8.517393,1.609438,4.020426,1
-16,2,95,1,3,225546,0,5000,30.63244,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,75.5,3.4,1,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,78.4,8.517393,1.609438,,0
-16,2,95,1,1,225547,0,5000,28.46817,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,63.8,17.2,0,77.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.517393,1.609438,,0
-16,2,95,1,2,225547,0,5000,29.46817,1,13,1,20.88452,0,20.7027,0,0,41.58722,0,0,0,1,1,5,63.8,17.2,0,77.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.517393,1.609438,3.727793,1
-16,2,95,1,3,225547,0,5000,30.46817,1,13,1,25.06837,0,0,0,0,25.06837,0,0,0,1,0,5,63.8,17.2,0,77.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.517393,1.609438,3.221607,1
-14,2,95,1,1,225553,0,3848.68,60.98563,0,17,1,0,16.90566,0,0,0,16.90566,0,0,0,0,0,1,92,6.9,0,79.5,800,378.6,0,0,0,5.93648,0,4.564348,6.735905,0,0,0,79.5,8.255746,0,2.827648,1
-14,2,95,1,2,225553,0,3848.68,61.98563,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,79.5,800,378.6,0,0,0,5.93648,0,4.564348,6.735905,0,0,0,79.5,8.255746,0,,0
-14,2,95,1,3,225553,0,3848.68,62.98563,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,79.5,800,378.6,0,0,0,5.93648,0,4.564348,6.735905,0,0,0,79.5,8.255746,0,,0
-6,2,25,0,1,225554,0,8512.023,56.2245,1,9,1,67.84367,62.02156,0,0,0,129.8652,0,0,0,2,0,1,92,10.3,0,80.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.049353,0,4.866497,1
-6,2,25,0,2,225554,0,8512.023,57.2245,1,9,1,159.7052,4.275184,37.40049,0,0,201.3808,0,0,0,6,0,1,92,10.3,0,80.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.049353,0,5.305198,1
-6,2,25,0,3,225554,0,8512.023,58.2245,1,9,1,0,2.853236,0,0,0,2.853236,0,0,0,0,0,1,92,10.3,0,80.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.049353,0,1.048454,1
-6,2,25,0,4,225554,0,8512.023,59.2245,1,9,1,79.19967,8.153398,43.46811,0,0,130.8212,0,0,0,4,0,1,92,10.3,0,80.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.049353,0,4.873831,1
-6,2,25,0,5,225554,0,8512.023,60.2245,1,9,1,59.67742,5.228807,0,0,0,64.90623,0,0,0,1,0,1,92,10.3,0,80.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.049353,0,4.172944,1
-13,2,0,1,1,225558,0,8664.517,1.221081,1,12,1,6.423983,5.208779,0,0,0,11.63276,0,0,0,1,0,3,81.35272,11.84267,0,74.1,450,300,1,1,1.098612,5.703783,1,4.564348,6.160541,0,0,0,74.1,9.067107,1.098612,2.453825,1
-13,2,0,1,2,225558,0,8664.517,2.221081,1,12,1,7.320644,9.350903,0,0,0,16.67155,0,0,0,1,0,3,81.35272,11.84267,0,74.1,450,300,1,1,1.098612,5.703783,1,4.564348,6.160541,0,0,0,74.1,9.067107,1.098612,2.813704,1
-13,2,0,1,3,225558,0,8664.517,3.221081,1,12,1,26.6486,2.172538,0,0,0,28.82114,0,0,0,1,0,4,81.35272,11.84267,0,74.1,450,300,1,1,1.386294,5.703783,1,4.564348,6.160541,0,0,0,74.1,9.067107,1.386294,3.361109,1
-13,2,0,1,1,225559,0,8664.517,26.97057,1,12,1,16.32762,17.76767,0,0,0,34.09529,0,0,0,0,0,3,76.1,6.9,0,72.7,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,72.7,9.067107,1.098612,3.529159,1
-13,2,0,1,2,225559,0,8664.517,27.97057,1,12,1,31.23475,33.66032,0,0,519.8145,584.7096,1,0,0,2,0,3,76.1,6.9,0,72.7,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,72.7,9.067107,1.098612,6.371115,1
-13,2,0,1,3,225559,0,8664.517,28.97057,1,12,1,18.29268,26.19241,0,0,0,44.4851,0,0,0,1,0,4,76.1,6.9,0,72.7,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,72.7,9.067107,1.386294,3.795154,1
-13,2,0,1,1,225560,0,8664.517,29.56058,0,14,1,6.423983,3.340471,0,0,0,9.764454,0,0,0,1,0,3,73.9,6.9,0,67,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,67,9.067107,1.098612,2.278749,1
-13,2,0,1,2,225560,0,8664.517,30.56058,0,14,1,44.65593,7.120547,35.89068,0,0,87.66715,0,0,0,2,0,3,73.9,6.9,0,67,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,67,9.067107,1.098612,4.473547,1
-13,2,0,1,3,225560,0,8664.517,31.56058,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,6.9,0,67,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,67,9.067107,1.386294,,0
-13,2,0,0,1,225573,0,5214.123,23.27173,1,15,1,270.0539,76.68464,0,0,0,346.7386,0,0,0,10,22,2,54.3,10.3,0,43.2,300,156.85,0,0,.6931472,5.05529,1,4.564348,5.755076,0,1,0,43.2,8.559318,.6931472,5.848571,1
-13,2,0,0,2,225573,0,5214.123,24.27173,1,15,1,62.48157,37.34644,0,0,0,99.82801,0,0,0,3,5,2,54.3,10.3,0,43.2,300,156.85,0,0,.6931472,5.05529,1,4.564348,5.755076,0,1,0,43.2,8.559318,.6931472,4.603449,1
-13,2,0,0,1,225574,0,5214.123,26.0397,0,10,1,37.87062,9.541779,0,0,0,47.4124,0,0,0,2,0,2,56.4,17.2,0,65.9,300,156.85,0,0,.6931472,5.05529,1,4.564348,5.755076,0,0,0,65.9,8.559318,.6931472,3.858884,1
-13,2,0,0,2,225574,0,5214.123,27.0397,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,56.4,17.2,0,65.9,300,156.85,0,0,.6931472,5.05529,1,4.564348,5.755076,0,0,0,65.9,8.559318,.6931472,,0
-6,2,25,0,1,225583,0,10636.36,29.02669,1,19,1,40.70081,24.39353,35.30458,0,0,100.3989,0,0,0,3,0,3,76.1,17.2,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.272128,1.098612,4.609151,1
-6,2,25,0,2,225583,0,10636.36,30.02669,1,19,1,61.05651,9.557739,0,0,0,70.61425,0,0,0,5,0,3,76.1,17.2,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.272128,1.098612,4.257232,1
-6,2,25,0,3,225583,0,10636.36,31.02669,1,19,1,40.33728,24.97721,0,0,0,65.31449,0,0,0,3,0,3,76.1,17.2,0,80.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.272128,1.098612,4.179214,1
-6,2,25,0,1,225584,0,10636.36,31.11841,0,18,1,175.0404,0,0,0,0,175.0404,0,0,0,2,0,3,70.2,6.9,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,9.272128,1.098612,5.165017,1
-6,2,25,0,2,225584,0,10636.36,32.11841,0,18,1,46.06879,0,0,0,0,46.06879,0,0,0,1,0,3,70.2,6.9,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,9.272128,1.098612,3.830136,1
-6,2,25,0,3,225584,0,10636.36,33.11841,0,18,1,164.0383,0,43.17685,0,0,207.2151,0,0,0,3,0,3,70.2,6.9,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,63.6,9.272128,1.098612,5.333757,1
-6,2,25,0,1,225585,0,10636.36,.6187543,1,19,1,128.5714,6.571429,0,0,0,135.1429,0,0,0,11,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,1,0,0,92.6,9.272128,1.098612,4.906332,1
-6,2,25,0,2,225585,0,10636.36,1.618754,1,19,1,58.47666,5.82801,0,0,0,64.30466,0,0,0,6,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,1,0,0,92.6,9.272128,1.098612,4.163632,1
-6,2,25,0,3,225585,0,10636.36,2.618754,1,19,1,15.49681,8.363719,0,0,0,23.86053,0,0,0,2,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,1,0,0,92.6,9.272128,1.098612,3.172225,1
-18,2,25,0,1,225586,0,8665.641,2.217659,0,12,1,26.95418,0,3.234501,0,0,30.18868,0,0,0,3,0,3,81.35272,11.84267,0,88.9,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,88.9,9.067237,1.098612,3.407467,1
-18,2,25,0,2,225586,0,8665.641,3.217659,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,88.9,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,88.9,9.067237,1.098612,,0
-18,2,25,0,3,225586,0,8665.641,4.217659,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,88.9,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,88.9,9.067237,1.098612,,0
-18,2,25,0,4,225586,0,8665.641,5.217659,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,88.9,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,88.9,9.067237,1.098612,,0
-18,2,25,0,5,225586,0,8665.641,6.217659,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,88.9,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,88.9,9.067237,1.098612,,0
-18,2,25,0,1,225587,0,8665.641,31.14031,1,12,1,99.73046,30.44744,0,0,0,130.1779,0,0,0,11,0,3,75.5,10.3,1,71.6,716.68,716.68,0,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,71.6,9.067237,1.098612,4.868902,1
-18,2,25,0,2,225587,0,8665.641,32.14032,1,12,1,6.756757,5.808354,0,0,0,12.56511,0,0,0,1,0,3,75.5,10.3,1,71.6,716.68,716.68,0,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,71.6,9.067237,1.098612,2.530924,1
-18,2,25,0,3,225587,0,8665.641,33.14032,1,12,1,0,7.155879,0,0,0,7.155879,0,0,0,0,0,3,75.5,10.3,1,71.6,716.68,716.68,0,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,71.6,9.067237,1.098612,1.967934,1
-18,2,25,0,4,225587,0,8665.641,34.14032,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,1,71.6,716.68,716.68,0,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,71.6,9.067237,1.098612,,0
-18,2,25,0,5,225587,0,8665.641,35.14032,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,1,71.6,716.68,716.68,0,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,71.6,9.067237,1.098612,,0
-18,2,25,0,1,225589,0,8665.641,4.046544,0,12,1,7.681941,0,0,0,0,7.681941,0,0,0,1,0,3,81.35272,11.84267,0,92.6,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,92.6,9.067237,1.098612,2.038872,1
-18,2,25,0,2,225589,0,8665.641,5.046544,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,92.6,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,92.6,9.067237,1.098612,,0
-18,2,25,0,3,225589,0,8665.641,6.046544,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,92.6,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,92.6,9.067237,1.098612,,0
-18,2,25,0,4,225589,0,8665.641,7.046544,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,92.6,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,92.6,9.067237,1.098612,,0
-18,2,25,0,5,225589,0,8665.641,8.046543,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,92.6,716.68,716.68,1,0,1.098612,6.574629,0,3.258096,7.960924,0,0,0,92.6,9.067237,1.098612,,0
-11,2,0,0,1,225592,0,8038.709,52.14237,1,9,1,448.787,157.8167,58,0,0,664.6038,0,0,0,24,0,2,88.3,10.3,0,64.8,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,64.8,8.992148,.6931472,6.499191,1
-11,2,0,0,2,225592,0,8038.709,53.14237,1,9,1,381.5725,160.4668,0,0,384.5651,926.6044,1,0,0,11,3,2,88.3,10.3,0,64.8,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,64.8,8.992148,.6931472,6.831527,1
-11,2,0,0,3,225592,0,8038.709,54.14237,1,9,1,82.95351,309.412,42.84412,0,0,435.2097,0,0,0,4,4,2,88.3,10.3,0,64.8,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,64.8,8.992148,.6931472,6.075828,1
-11,2,0,1,1,225593,0,8038.709,57.013,0,4.5,1,193.531,18.22102,47.75741,0,0,259.5094,0,0,0,6,0,2,100,13.8,0,70.5,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,70.5,8.992148,.6931472,5.558793,1
-11,2,0,1,2,225593,0,8038.709,58.013,0,4.5,1,117.7641,9.95086,0,0,0,127.715,0,0,0,4,2,2,100,13.8,0,70.5,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,70.5,8.992148,.6931472,4.849801,1
-11,2,0,1,3,225593,0,8038.709,59.013,0,4.5,1,161.4768,9.822243,53.78304,0,544.0748,769.1568,1,0,0,3,4,2,100,13.8,0,70.5,0,40.32,0,0,.6931472,3.696848,0,0,0,0,1,0,70.5,8.992148,.6931472,6.645295,1
-5,2,25,0,1,225594,0,5115.542,4.66256,1,14,1,98.38275,9.380054,0,0,0,107.7628,0,0,0,7,0,4,81.35272,11.84267,0,74.1,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,1,0,0,74.1,8.540235,1.386294,4.679933,1
-5,2,25,0,2,225594,0,5115.542,5.66256,1,14,1,66.09337,10.90909,0,0,0,77.00246,0,0,0,8,0,4,81.35272,11.84267,0,74.1,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,1,0,0,74.1,8.540235,1.386294,4.343837,1
-5,2,25,0,3,225594,0,5115.542,6.66256,1,14,1,18.23154,5.546946,0,0,0,23.77849,0,0,0,3,0,4,81.35272,11.84267,0,74.1,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,1,0,0,74.1,8.540235,1.386294,3.168781,1
-5,2,25,0,1,225595,0,5115.542,30.75428,1,14,1,24.74393,10.10782,0,0,793.7466,828.5984,1,0,0,2,0,4,50,27.6,0,42,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,42,8.540235,1.386294,6.719736,1
-5,2,25,0,2,225595,0,5115.542,31.75428,1,14,1,102.7027,3.316953,0,0,0,106.0197,0,0,1,3,0,4,50,27.6,0,42,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,42,8.540235,1.386294,4.663624,1
-5,2,25,0,3,225595,0,5115.542,32.75428,1,14,1,16.40839,2.269827,0,0,0,18.67821,0,0,0,1,0,4,50,27.6,0,42,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,42,8.540235,1.386294,2.927358,1
-5,2,25,0,1,225596,0,5115.542,29.79603,0,13,1,14.55526,2.830189,0,0,0,17.38544,0,0,0,2,0,4,44.7,10.3,0,72.7,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,72.7,8.540235,1.386294,2.855633,1
-5,2,25,0,2,225596,0,5115.542,30.79603,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,44.7,10.3,0,72.7,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,72.7,8.540235,1.386294,,0
-5,2,25,0,3,225596,0,5115.542,31.79603,0,13,1,16.86418,3.833181,0,0,0,20.69736,0,0,0,1,0,4,44.7,10.3,0,72.7,452.9,452.9,0,0,1.386294,6.115671,0,3.258096,7.501966,1,0,0,72.7,8.540235,1.386294,3.030006,1
-11,2,0,0,1,225609,0,9254.546,13.4538,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,11.84267,0,92.6,0,0,1,1,1.098612,0,0,0,0,0,0,0,92.6,9.132978,1.098612,,0
-11,2,0,0,2,225609,0,9254.546,14.4538,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,11.84267,0,92.6,0,0,1,1,1.098612,0,0,0,0,0,0,0,92.6,9.132978,1.098612,,0
-11,2,0,0,3,225609,0,9254.546,15.4538,1,12,1,35.33731,6.567233,0,0,0,41.90454,0,0,0,3,0,3,75,11.84267,0,92.6,0,0,1,1,1.098612,0,0,0,0,0,0,0,92.6,9.132978,1.098612,3.735394,1
-11,2,0,0,1,225610,0,9254.546,32.56673,1,12,1,26.94611,7.974959,0,0,0,34.92107,0,0,0,2,0,3,75,0,0,93.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,93.2,9.132978,1.098612,3.55309,1
-11,2,0,0,2,225610,0,9254.546,33.56673,1,12,1,28.74133,0,0,0,0,28.74133,0,0,0,2,0,3,75,0,0,93.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,93.2,9.132978,1.098612,3.358336,1
-11,2,0,0,3,225610,0,9254.546,34.56673,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,0,0,93.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,93.2,9.132978,1.098612,,0
-11,2,0,0,1,225611,0,9254.546,36.06845,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,78.7,3.4,0,92,0,0,0,0,1.098612,0,0,0,0,0,0,0,92,9.132978,1.098612,,0
-11,2,0,0,2,225611,0,9254.546,37.06845,0,13,1,11.24876,0,0,0,0,11.24876,0,0,0,1,0,3,78.7,3.4,0,92,0,0,0,0,1.098612,0,0,0,0,0,0,0,92,9.132978,1.098612,2.420258,1
-11,2,0,0,3,225611,0,9254.546,38.06845,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,78.7,3.4,0,92,0,0,0,0,1.098612,0,0,0,0,0,0,0,92,9.132978,1.098612,,0
-16,2,95,1,1,225612,0,8665.641,22.10541,1,12,1,47.08764,0,0,0,0,47.08764,0,0,0,3,0,1,71.8,27.6,1,55.7,382.8,382.8,0,0,0,5.947513,0,4.564348,5.998806,0,1,0,55.7,9.067237,0,3.85201,1
-13,2,0,1,1,225613,0,8665.641,37.31964,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.9,6.9,0,62.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,62.5,9.067237,0,,0
-13,2,0,1,2,225613,0,8665.641,38.31964,0,12,1,124.8157,0,0,0,0,124.8157,0,0,0,0,10,1,73.9,6.9,0,62.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,62.5,9.067237,0,4.826838,1
-13,2,0,1,3,225613,0,8665.641,39.31964,0,12,1,85.7794,24.20237,0,0,432.4521,542.4339,1,0,0,3,0,1,73.9,6.9,0,62.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,62.5,9.067237,0,6.296066,1
-13,2,0,1,1,225619,0,9371.848,4.246407,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,,0
-13,2,0,1,2,225619,0,9371.848,5.246407,1,11,1,11.22499,0,0,0,0,11.22499,0,0,0,1,0,5,81.35272,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,2.418142,1
-13,2,0,1,3,225619,0,9371.848,6.246407,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,,0
-13,2,0,1,1,225620,0,9371.848,30.65024,0,7,1,18.46895,0,2.67666,0,0,21.14561,0,0,0,1,0,5,77.1,6.9,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.145573,1.609438,3.051432,1
-13,2,0,1,2,225620,0,9371.848,31.65024,0,7,1,17.0815,0,29.09712,19.52172,982.6013,1028.78,1,0,2,1,0,5,77.1,6.9,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.145573,1.609438,6.936129,1
-13,2,0,1,3,225620,0,9371.848,32.65024,0,7,1,44.39928,0,0,56.68473,134.5483,178.9476,1,0,3,1,0,5,77.1,6.9,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.145573,1.609438,5.187093,1
-13,2,0,1,1,225621,0,9371.848,10.83368,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,11.84267,0,88.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.9,9.145573,1.609438,,0
-13,2,0,1,2,225621,0,9371.848,11.83368,0,11,1,26.84236,2.284041,33.48951,0,0,62.61591,0,0,0,2,0,5,98.3,11.84267,0,88.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.9,9.145573,1.609438,4.137019,1
-13,2,0,1,3,225621,0,9371.848,12.83368,0,11,1,45.0542,0,0,0,0,45.0542,0,0,0,2,0,5,98.3,11.84267,0,88.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.9,9.145573,1.609438,3.807866,1
-13,2,0,1,1,225622,0,9371.848,28.52019,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,17.2,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.145573,1.609438,,0
-13,2,0,1,2,225622,0,9371.848,29.52019,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,17.2,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.145573,1.609438,,0
-13,2,0,1,3,225622,0,9371.848,30.52019,1,11,1,0,0,0,112.9178,0,0,0,0,5,0,0,5,64.4,17.2,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.145573,1.609438,,0
-13,2,0,1,1,225623,0,9371.848,8.621492,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,100,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,,0
-13,2,0,1,2,225623,0,9371.848,9.621492,1,11,1,5.856515,0,0,0,0,5.856515,0,0,0,1,0,5,100,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,1.767555,1
-13,2,0,1,3,225623,0,9371.848,10.62149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,100,11.84267,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.145573,1.609438,,0
-11,2,0,0,1,225636,0,4135.484,2.105407,1,12,1,39.19434,3.973871,0,0,0,43.16821,0,0,0,2,1,3,81.35272,11.84267,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.327601,1.098612,3.765104,1
-11,2,0,0,2,225636,0,4135.484,3.105407,1,12,1,138.1318,41.26858,0,0,362.7602,542.1606,1,0,0,9,0,3,81.35272,11.84267,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.327601,1.098612,6.295562,1
-11,2,0,0,3,225636,0,4135.484,4.105407,1,12,1,159.0179,38.25149,0,0,381.2988,578.5682,1,0,0,14,0,3,81.35272,11.84267,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.327601,1.098612,6.360557,1
-11,2,0,0,1,225637,0,4135.484,25.90007,0,12,1,362.0033,19.89113,30.51715,462.7109,0,412.4115,0,0,32,9,1,3,70.7,10.3,0,55.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,55.7,8.327601,1.098612,6.022022,1
-11,2,0,0,2,225637,0,4135.484,26.90007,0,12,1,158.7711,12.26957,0,676.4123,0,171.0406,0,0,30,6,1,3,70.7,10.3,0,55.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,55.7,8.327601,1.098612,5.141901,1
-11,2,0,0,3,225637,0,4135.484,27.90007,0,12,1,22.94631,0,32.40936,0,0,55.35567,0,0,0,1,1,3,70.7,10.3,0,55.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,55.7,8.327601,1.098612,4.013779,1
-11,2,0,0,1,225638,0,4135.484,24.74743,1,12,1,34.24061,9.199782,28.91127,1012.52,0,72.35166,0,0,47,1,1,3,75,3.4,0,88.6,0,0,0,0,1.098612,0,0,0,0,0,0,0,88.6,8.327601,1.098612,4.281538,1
-11,2,0,0,2,225638,0,4135.484,25.74743,1,12,1,374.4054,51.72943,1.48662,237.8593,0,427.6214,0,0,12,7,16,3,75,3.4,0,88.6,0,0,0,0,1.098612,0,0,0,0,0,0,0,88.6,8.327601,1.098612,6.058238,1
-11,2,0,0,3,225638,0,4135.484,26.74743,1,12,1,114.8004,44.27719,39.00872,0,0,198.0863,0,0,0,8,1,3,75,3.4,0,88.6,0,0,0,0,1.098612,0,0,0,0,0,0,0,88.6,8.327601,1.098612,5.288702,1
-13,2,0,0,1,225642,0,5781.231,22.63381,1,13,1,14.82266,5.812599,0,0,658.9465,679.5818,1,0,0,1,0,2,81.9,10.3,0,83,300,76.85,0,0,.6931472,4.341856,1,4.564348,5.755076,0,0,0,83,8.662545,.6931472,6.521478,1
-13,2,0,0,2,225642,0,5781.231,23.63381,1,13,1,9.893823,19.45946,0,0,0,29.35328,0,0,0,1,0,3,81.9,10.3,0,83,300,76.85,0,0,1.098612,4.341856,1,4.564348,5.755076,0,0,0,83,8.662545,1.098612,3.379404,1
-13,2,0,0,3,225642,0,5781.231,24.63381,1,13,1,26.25723,3.093013,0,0,332.7325,362.0828,1,0,0,2,0,3,81.9,10.3,0,83,300,76.85,0,0,1.098612,4.341856,1,4.564348,5.755076,0,0,0,83,8.662545,1.098612,5.891873,1
-13,2,0,0,1,225643,0,5781.231,26.83641,0,15,1,6.881948,23.90154,0,0,0,30.78348,0,0,0,1,0,2,84,6.9,0,72.7,300,76.85,0,0,.6931472,4.341856,1,4.564348,5.755076,1,0,0,72.7,8.662545,.6931472,3.426978,1
-13,2,0,0,2,225643,0,5781.231,27.83641,0,15,1,0,27.33591,0,0,0,27.33591,0,0,0,0,0,3,84,6.9,0,72.7,300,76.85,0,0,1.098612,4.341856,1,4.564348,5.755076,1,0,0,72.7,8.662545,1.098612,3.308201,1
-13,2,0,0,3,225643,0,5781.231,28.83641,0,15,1,0,26.45305,0,0,0,26.45305,0,0,0,0,0,3,84,6.9,0,72.7,300,76.85,0,0,1.098612,4.341856,1,4.564348,5.755076,1,0,0,72.7,8.662545,1.098612,3.275371,1
-11,2,0,0,1,225652,0,7661.583,13.82888,0,12,1,99.24529,4.770889,0,0,0,104.0162,0,0,0,5,0,7,83.6,11.84267,0,92.6,0,0,1,0,1.94591,0,0,0,0,0,0,0,92.6,8.944104,1.94591,4.644547,1
-11,2,0,0,2,225652,0,7661.583,14.82888,0,12,1,16.85504,0,0,0,0,16.85504,0,0,0,2,0,7,83.6,11.84267,0,92.6,0,0,1,0,1.94591,0,0,0,0,0,0,0,92.6,8.944104,1.94591,2.82465,1
-11,2,0,0,3,225652,0,7661.583,15.82888,0,12,1,25.06837,9.042844,0,0,0,34.11121,0,0,0,2,0,7,83.6,11.84267,0,92.6,0,0,1,0,1.94591,0,0,0,0,0,0,0,92.6,8.944104,1.94591,3.529626,1
-11,2,0,0,1,225653,0,7661.583,15.95072,1,12,1,40.97035,12.14016,35.35849,0,0,88.469,0,0,0,5,0,7,88.3,6.9,0,69.3,0,0,1,1,1.94591,0,0,0,0,0,0,0,69.3,8.944104,1.94591,4.482652,1
-11,2,0,0,2,225653,0,7661.583,16.95072,1,12,1,46.41278,15.00737,0,0,0,61.42015,0,0,0,4,0,7,88.3,6.9,0,69.3,0,0,1,1,1.94591,0,0,0,0,0,0,0,69.3,8.944104,1.94591,4.117738,1
-11,2,0,0,3,225653,0,7661.583,17.95072,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,88.3,6.9,0,69.3,0,0,1,1,1.94591,0,0,0,0,0,0,0,69.3,8.944104,1.94591,,0
-11,2,0,0,1,225654,0,7661.583,18.22313,0,11,1,40.05391,3.126685,0,0,0,43.18059,0,0,0,4,0,7,63.8,13.8,0,60.2,0,0,0,0,1.94591,0,0,0,0,0,0,0,60.2,8.944104,1.94591,3.765391,1
-11,2,0,0,2,225654,0,7661.583,19.22313,0,11,1,6.879607,0,0,0,0,6.879607,0,0,0,1,0,7,63.8,13.8,0,60.2,0,0,0,0,1.94591,0,0,0,0,0,0,0,60.2,8.944104,1.94591,1.928561,1
-11,2,0,0,3,225654,0,7661.583,20.22313,0,11,1,17.06928,0,0,0,0,17.06928,0,0,0,1,0,7,63.8,13.8,0,60.2,0,0,0,0,1.94591,0,0,0,0,0,0,0,60.2,8.944104,1.94591,2.837281,1
-11,2,0,0,1,225655,0,7661.583,40.07392,1,12,1,212.372,21.18598,4.312668,0,1328.76,1566.631,1,0,0,10,0,7,80.3,24.1,1,68.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,68.2,8.944104,1.94591,7.356683,1
-11,2,0,0,2,225655,0,7661.583,41.07392,1,12,1,75.13513,25.88698,0,0,0,101.0221,0,0,0,4,2,7,80.3,24.1,1,68.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,68.2,8.944104,1.94591,4.615339,1
-11,2,0,0,3,225655,0,7661.583,42.07392,1,12,1,42.95807,14.43482,0,0,0,57.39289,0,0,0,3,0,7,80.3,24.1,1,68.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,68.2,8.944104,1.94591,4.049921,1
-11,2,0,0,1,225656,0,7661.583,11.9781,1,12,1,38.94879,1.051213,0,0,0,40,0,0,0,2,0,7,85,11.84267,0,63,0,0,1,1,1.94591,0,0,0,0,0,0,0,63,8.944104,1.94591,3.688879,1
-11,2,0,0,2,225656,0,7661.583,12.9781,1,12,1,23.83292,0,30.75676,0,0,54.58968,0,0,0,2,0,7,85,11.84267,0,63,0,0,1,1,1.94591,0,0,0,0,0,0,0,63,8.944104,1.94591,3.999845,1
-11,2,0,0,3,225656,0,7661.583,13.9781,1,12,1,25.06837,2.256153,15.9526,0,0,43.27712,0,0,0,1,1,7,85,11.84267,0,63,0,0,1,1,1.94591,0,0,0,0,0,0,0,63,8.944104,1.94591,3.767624,1
-11,2,0,0,1,225657,0,7661.583,42.01232,0,12,1,82.88409,8.544475,33.69272,0,0,125.1213,0,0,0,7,0,7,77.1,17.2,1,61.4,0,0,0,0,1.94591,0,0,0,0,0,1,0,61.4,8.944104,1.94591,4.829284,1
-11,2,0,0,2,225657,0,7661.583,43.01232,0,12,1,87.32187,16.27027,20.09828,0,250,373.6904,1,0,0,7,0,7,77.1,17.2,1,61.4,0,0,0,0,1.94591,0,0,0,0,0,1,0,61.4,8.944104,1.94591,5.923428,1
-11,2,0,0,3,225657,0,7661.583,44.01232,0,12,1,25.13674,0,0,0,0,25.13674,0,0,0,0,0,7,77.1,17.2,1,61.4,0,0,0,0,1.94591,0,0,0,0,0,1,0,61.4,8.944104,1.94591,3.22433,1
-11,2,0,0,1,225658,0,7661.583,5.048597,1,12,1,17.97844,5.175202,0,0,0,23.15364,0,0,0,2,0,7,85,11.84267,0,85.2,0,0,1,1,1.94591,0,0,0,0,0,0,0,85.2,8.944104,1.94591,3.142152,1
-11,2,0,0,2,225658,0,7661.583,6.048597,1,12,1,36.24079,8.083538,0,0,0,44.32433,0,0,0,2,0,7,85,11.84267,0,85.2,0,0,1,1,1.94591,0,0,0,0,0,0,0,85.2,8.944104,1.94591,3.791534,1
-11,2,0,0,3,225658,0,7661.583,7.048597,1,12,1,112.124,28.46399,0,0,0,140.588,0,0,0,1,1,7,85,11.84267,0,85.2,0,0,1,1,1.94591,0,0,0,0,0,0,0,85.2,8.944104,1.94591,4.945833,1
-13,2,0,1,1,225672,0,11346.63,.7255304,0,12,1,183.0728,50.03773,14.18868,0,0,247.2992,0,0,0,15,0,5,81.35272,11.84267,1,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.336764,1.609438,5.510599,1
-13,2,0,1,2,225672,0,11346.63,1.725531,0,12,1,258.5258,22.64865,0,0,0,281.1744,0,0,0,9,0,5,81.35272,11.84267,1,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.336764,1.609438,5.638975,1
-13,2,0,1,3,225672,0,11346.63,2.72553,0,12,1,14.81313,0,0,0,0,14.81313,0,0,0,2,0,5,81.35272,11.84267,1,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.336764,1.609438,2.695514,1
-13,2,0,1,4,225672,0,11346.63,3.72553,0,12,1,144.4352,7.044602,0,0,0,151.4798,0,0,0,5,0,5,81.35272,11.84267,1,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.336764,1.609438,5.020452,1
-13,2,0,1,5,225672,0,11346.63,4.725531,0,12,1,15.00375,1.980495,0,0,741.1215,758.1058,1,0,0,2,0,5,81.35272,11.84267,1,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.336764,1.609438,6.630823,1
-13,2,0,1,1,225673,0,11346.63,28.73648,0,13,1,114,5.784367,0,175.2022,0,119.7844,0,0,8,5,0,5,77.7,17.2,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.336764,1.609438,4.785693,1
-13,2,0,1,2,225673,0,11346.63,29.73648,0,13,1,24.44717,1.995086,0,0,0,26.44226,0,0,0,2,0,5,77.7,17.2,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.336764,1.609438,3.274964,1
-13,2,0,1,3,225673,0,11346.63,30.73648,0,13,1,131.3582,4.416591,0,0,0,135.7748,0,0,0,5,0,5,77.7,17.2,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.336764,1.609438,4.910998,1
-13,2,0,1,4,225673,0,11346.63,31.73648,0,13,1,111.609,19.21634,11.25469,0,0,142.08,0,0,0,6,0,5,77.7,17.2,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.336764,1.609438,4.95639,1
-13,2,0,1,5,225673,0,11346.63,32.73648,0,13,1,96.3991,2.205551,0,0,0,98.60465,0,0,0,4,5,5,77.7,17.2,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.336764,1.609438,4.591118,1
-13,2,0,1,1,225674,0,11346.63,7.66872,1,12,1,14.98652,3.401617,0,0,0,18.38814,0,0,0,1,0,5,80,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.336764,1.609438,2.911706,1
-13,2,0,1,2,225674,0,11346.63,8.66872,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.336764,1.609438,,0
-13,2,0,1,3,225674,0,11346.63,9.66872,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.336764,1.609438,,0
-13,2,0,1,4,225674,0,11346.63,10.66872,1,12,1,23.7599,2.621926,0,0,0,26.38183,0,0,0,2,0,5,80,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.336764,1.609438,3.272675,1
-13,2,0,1,5,225674,0,11346.63,11.66872,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.336764,1.609438,,0
-13,2,0,1,1,225675,0,11346.63,30.09446,1,12,1,82.45283,44.70081,0,481.1321,0,127.1536,0,0,45,3,0,5,56.4,20.7,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.336764,1.609438,4.845396,1
-13,2,0,1,2,225675,0,11346.63,31.09446,1,12,1,8.648648,24.13268,0,0,0,32.78133,0,0,0,1,0,5,56.4,20.7,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.336764,1.609438,3.489859,1
-13,2,0,1,3,225675,0,11346.63,32.09446,1,12,1,25.97995,3.828624,0,0,0,29.80857,0,0,0,2,0,5,56.4,20.7,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.336764,1.609438,3.394796,1
-13,2,0,1,4,225675,0,11346.63,33.09446,1,12,1,44.18508,6.2401,0,0,0,50.42518,0,0,0,3,0,5,56.4,20.7,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.336764,1.609438,3.920491,1
-13,2,0,1,5,225675,0,11346.63,34.09446,1,12,1,48.012,16.11028,0,0,0,64.12228,0,0,0,3,0,5,56.4,20.7,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.336764,1.609438,4.160792,1
-13,2,0,1,1,225676,0,11346.63,10.54346,0,12,1,3.180593,0,0,0,0,3.180593,0,0,0,0,0,5,73.3,11.84267,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.336764,1.609438,1.157068,1
-13,2,0,1,2,225676,0,11346.63,11.54346,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.336764,1.609438,,0
-13,2,0,1,3,225676,0,11346.63,12.54346,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.336764,1.609438,,0
-13,2,0,1,4,225676,0,11346.63,13.54346,0,12,1,7.503126,0,0,0,0,7.503126,0,0,0,1,0,5,73.3,11.84267,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.336764,1.609438,2.01532,1
-13,2,0,1,5,225676,0,11346.63,14.54346,0,12,1,9.377344,0,0,0,0,9.377344,0,0,0,1,0,5,73.3,11.84267,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.336764,1.609438,2.238297,1
-13,2,0,1,1,225679,0,17232.26,17.91923,1,16,1,65.57816,24.49143,8.029979,0,0,98.09957,0,0,0,6,2,4,57.4,3.4,0,31.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,31.8,9.754597,1.386294,4.585983,1
-13,2,0,1,2,225679,0,17232.26,18.91923,1,16,1,8.784773,9.32162,0,0,0,18.10639,0,0,0,1,0,4,57.4,3.4,0,31.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,31.8,9.754597,1.386294,2.896265,1
-13,2,0,1,3,225679,0,17232.26,19.91923,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,57.4,3.4,0,31.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,31.8,9.754597,1.386294,,0
-13,2,0,1,1,225680,0,17232.26,22.03148,0,12,1,5.353319,0,0,0,0,5.353319,0,0,0,1,0,4,76.1,3.4,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.754597,1.386294,1.677717,1
-13,2,0,1,2,225680,0,17232.26,23.03148,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,3.4,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.754597,1.386294,,0
-13,2,0,1,3,225680,0,17232.26,24.03148,0,12,1,9.372177,0,0,0,0,9.372177,0,0,0,1,0,4,76.1,3.4,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,9.754597,1.386294,2.237746,1
-13,2,0,1,1,225682,0,17232.26,43.19507,1,16,1,28.37259,11.56852,32.97109,0,0,72.91221,0,0,0,3,0,4,80.3,13.8,1,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.754597,1.386294,4.289256,1
-13,2,0,1,2,225682,0,17232.26,44.19507,1,16,1,27.3304,0,0,97.60859,0,27.3304,0,0,5,4,0,4,80.3,13.8,1,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.754597,1.386294,3.308,1
-13,2,0,1,3,225682,0,17232.26,45.19507,1,16,1,8.807588,0,0,505.8717,0,8.807588,0,0,28,1,0,4,80.3,13.8,1,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.754597,1.386294,2.175614,1
-13,2,0,1,1,225683,0,17232.26,47.53456,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,72.9,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.754597,1.386294,,0
-13,2,0,1,2,225683,0,17232.26,48.53456,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,72.9,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.754597,1.386294,,0
-13,2,0,1,3,225683,0,17232.26,49.53456,0,13,1,47.42548,0,0,0,0,47.42548,0,0,0,5,0,4,72.9,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.754597,1.386294,3.859159,1
-11,2,0,1,1,225686,0,8224.634,6.521561,1,12,1,67.90846,3.672166,0,0,0,71.58063,0,0,0,5,0,3,90,11.84267,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,9.015011,1.098612,4.270824,1
-11,2,0,1,2,225686,0,8224.634,7.521561,1,12,1,131.9195,8.119244,0,0,0,140.0388,0,0,0,6,0,3,90,11.84267,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,9.015011,1.098612,4.941919,1
-11,2,0,1,3,225686,0,8224.634,8.521561,1,12,1,31.89578,1.72956,0,0,0,33.62534,0,0,0,3,0,4,90,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,9.015011,1.386294,3.51528,1
-11,2,0,1,1,225687,0,8224.634,2.507871,1,12,1,29.5636,0,0,0,0,29.5636,0,0,0,2,0,3,81.35272,11.84267,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,9.015011,1.098612,3.386544,1
-11,2,0,1,2,225687,0,8224.634,3.507871,1,12,1,19.14687,5.113912,0,0,0,24.26079,0,0,0,2,0,3,81.35272,11.84267,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,9.015011,1.098612,3.188861,1
-11,2,0,1,3,225687,0,8224.634,4.507871,1,12,1,23.13567,0,0,0,0,23.13567,0,0,0,1,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,9.015011,1.386294,3.141376,1
-11,2,0,1,1,225688,0,8224.634,25.8809,1,12,1,134.1671,41.93188,0,0,0,176.099,0,0,0,8,0,3,73.4,13.8,0,70.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.5,9.015011,1.098612,5.171046,1
-11,2,0,1,2,225688,0,8224.634,26.8809,1,12,1,80.10179,58.07077,0,0,746.2191,884.3917,1,0,0,5,0,3,73.4,13.8,0,70.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.5,9.015011,1.098612,6.7849,1
-11,2,0,1,3,225688,0,8224.634,27.8809,1,12,1,110.1752,15.04492,0,0,0,125.2201,0,0,0,3,0,4,73.4,13.8,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,9.015011,1.386294,4.830073,1
-11,2,0,1,1,225691,0,4414.076,43.50445,0,12,1,321.2017,8.189518,48.41186,0,0,377.8031,0,0,0,6,11,1,63.8,20.7,1,46.6,0,0,0,0,0,0,0,0,0,0,1,0,46.6,8.39278,0,5.934373,1
-11,2,0,1,2,225691,0,4414.076,44.50445,0,12,1,0,2.051158,0,0,0,2.051158,0,0,0,0,0,1,63.8,20.7,1,46.6,0,0,0,0,0,0,0,0,0,0,1,0,46.6,8.39278,0,.7184046,1
-11,2,0,1,3,225691,0,4414.076,45.50445,0,12,1,8.077436,0,0,0,0,8.077436,0,0,0,0,0,1,63.8,20.7,1,46.6,0,0,0,0,0,0,0,0,0,0,1,0,46.6,8.39278,0,2.089075,1
-11,2,0,1,4,225691,0,4414.076,46.50445,0,12,1,24.80683,5.673038,34.47743,0,0,64.9573,0,0,0,1,1,1,63.8,20.7,1,46.6,0,0,0,0,0,0,0,0,0,0,1,0,46.6,8.39278,0,4.17373,1
-11,2,0,1,5,225691,0,4414.076,47.50445,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,20.7,1,46.6,0,0,0,0,0,0,0,0,0,0,1,0,46.6,8.39278,0,,0
-5,2,25,1,1,225703,1,10402.35,32.52567,1,12,1,112.938,40.68464,0,0,0,153.6226,0,0,0,4,0,4,82.5,3.4,0,61.4,966.45,966.45,0,0,1.386294,6.87363,0,3.258096,8.259924,1,0,0,61.4,9.249883,1.386294,5.034499,1
-5,2,25,1,2,225703,1,10402.35,33.52567,1,12,1,0,29.42015,0,0,696.8059,726.2261,1,0,0,0,0,4,82.5,3.4,0,61.4,966.45,966.45,0,0,1.386294,6.87363,0,3.258096,8.259924,1,0,0,61.4,9.249883,1.386294,6.587862,1
-5,2,25,1,3,225703,1,10402.35,34.52567,1,12,1,116.9553,27.5752,0,0,0,144.5305,0,0,0,2,0,5,82.5,3.4,0,61.4,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,1,0,0,61.4,9.249883,1.609438,4.973491,1
-5,2,25,1,4,225703,1,10402.35,35.52567,1,12,1,60.02501,2.250938,0,0,0,62.27595,0,0,0,3,0,5,82.5,3.4,0,61.4,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,1,0,0,61.4,9.249883,1.609438,4.131575,1
-5,2,25,1,5,225703,1,10402.35,36.52567,1,12,1,132.9707,0,40.82146,0,0,173.7922,0,0,0,11,0,5,82.5,3.4,0,61.4,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,1,0,0,61.4,9.249883,1.609438,5.15786,1
-5,2,25,1,1,225704,1,10402.35,36.05476,0,12,1,18.86792,0,0,0,0,18.86792,0,0,0,1,0,4,89.4,0,0,95.5,966.45,966.45,0,0,1.386294,6.87363,0,3.258096,8.259924,0,0,0,95.5,9.249883,1.386294,2.937463,1
-5,2,25,1,2,225704,1,10402.35,37.05476,0,12,1,8.599508,7.277641,0,0,0,15.87715,0,0,0,1,0,4,89.4,0,0,95.5,966.45,966.45,0,0,1.386294,6.87363,0,3.258096,8.259924,0,0,0,95.5,9.249883,1.386294,2.764881,1
-5,2,25,1,3,225704,1,10402.35,38.05476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,89.4,0,0,95.5,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,95.5,9.249883,1.609438,,0
-5,2,25,1,4,225704,1,10402.35,39.05476,0,12,1,11.67153,0,0,0,0,11.67153,0,0,0,1,0,5,89.4,0,0,95.5,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,95.5,9.249883,1.609438,2.457153,1
-5,2,25,1,5,225704,1,10402.35,40.05476,0,12,1,6.751688,4.354839,0,0,0,11.10653,0,0,0,1,0,5,89.4,0,0,95.5,966.45,966.45,0,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,95.5,9.249883,1.609438,2.407533,1
-5,2,25,1,1,225705,1,10402.35,10.59822,0,12,1,31.80593,0,0,0,0,31.80593,0,0,0,3,0,4,85,11.84267,0,48.1,966.45,966.45,1,0,1.386294,6.87363,0,3.258096,8.259924,0,0,0,48.1,9.249883,1.386294,3.459653,1
-5,2,25,1,2,225705,1,10402.35,11.59822,0,12,1,17.19902,0,0,0,0,17.19902,0,0,0,1,0,4,85,11.84267,0,48.1,966.45,966.45,1,0,1.386294,6.87363,0,3.258096,8.259924,0,0,0,48.1,9.249883,1.386294,2.844852,1
-5,2,25,1,3,225705,1,10402.35,12.59822,0,12,1,9.11577,0,0,0,0,9.11577,0,0,0,1,0,5,85,11.84267,0,48.1,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,48.1,9.249883,1.609438,2.210006,1
-5,2,25,1,4,225705,1,10402.35,13.59822,0,12,1,19.5915,0,36.88203,0,0,56.47353,0,0,0,1,0,5,85,11.84267,0,48.1,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,48.1,9.249883,1.609438,4.033772,1
-5,2,25,1,5,225705,1,10402.35,14.59822,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,11.84267,0,48.1,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,48.1,9.249883,1.609438,,0
-5,2,25,1,1,225706,1,10402.35,7.022587,1,12,1,83.55795,0,0,0,0,83.55795,0,0,0,3,0,4,93.3,11.84267,0,81.5,966.45,966.45,1,1,1.386294,6.87363,0,3.258096,8.259924,0,0,0,81.5,9.249883,1.386294,4.42554,1
-5,2,25,1,2,225706,1,10402.35,8.022587,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,11.84267,0,81.5,966.45,966.45,1,1,1.386294,6.87363,0,3.258096,8.259924,0,0,0,81.5,9.249883,1.386294,,0
-5,2,25,1,3,225706,1,10402.35,9.022587,1,12,1,6.836828,0,0,0,0,6.836828,0,0,0,1,0,5,93.3,11.84267,0,81.5,966.45,966.45,1,1,1.609438,6.87363,0,3.258096,8.259924,0,0,0,81.5,9.249883,1.609438,1.922324,1
-5,2,25,1,4,225706,1,10402.35,10.02259,1,12,1,15.83993,0,0,0,0,15.83993,0,0,0,1,0,5,93.3,11.84267,0,81.5,966.45,966.45,1,1,1.609438,6.87363,0,3.258096,8.259924,0,0,0,81.5,9.249883,1.609438,2.762534,1
-5,2,25,1,5,225706,1,10402.35,11.02259,1,12,1,38.25956,0,0,0,0,38.25956,0,0,0,3,0,5,93.3,11.84267,0,81.5,966.45,966.45,1,1,1.609438,6.87363,0,3.258096,8.259924,0,0,0,81.5,9.249883,1.609438,3.644393,1
-11,2,0,0,1,225707,0,10331.38,44.77481,0,12,1,0,5.432771,0,0,0,5.432771,0,0,0,0,0,1,89.9,3.4,0,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,9.243038,0,1.692449,1
-11,2,0,0,2,225707,0,10331.38,45.77481,0,12,1,65.65907,4.241824,0,0,0,69.90089,0,0,0,2,0,1,89.9,3.4,0,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,9.243038,0,4.247078,1
-11,2,0,0,3,225707,0,10331.38,46.77481,0,12,1,0,0,38.24231,0,0,38.24231,0,0,0,0,0,1,89.9,3.4,0,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,9.243038,0,3.643943,1
-13,2,0,0,1,225737,0,7747.214,51.85489,0,12,1,16.98113,0,0,0,0,16.98113,0,0,0,1,0,2,92,10.3,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,8.955217,.6931472,2.832103,1
-13,2,0,0,2,225737,0,7747.214,52.85489,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92,10.3,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,8.955217,.6931472,,0
-13,2,0,0,3,225737,0,7747.214,53.85489,0,12,1,30.53783,0,40.84777,0,0,71.3856,0,0,0,1,1,2,92,10.3,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,8.955217,.6931472,4.268096,1
-13,2,0,0,4,225737,0,7747.214,54.85489,0,12,1,13.33889,0,0,0,0,13.33889,0,0,0,0,0,2,92,10.3,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,8.955217,.6931472,2.590684,1
-13,2,0,0,5,225737,0,7747.214,55.85489,0,12,1,21.1928,0,33.67592,0,0,54.86872,0,0,0,0,3,2,92,10.3,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,8.955217,.6931472,4.004943,1
-13,2,0,0,1,225738,0,7747.214,49.16906,1,12,1,9.218328,21.00809,0,0,0,30.22642,0,0,0,1,0,2,79.3,10.3,0,67,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,67,8.955217,.6931472,3.408716,1
-13,2,0,0,2,225738,0,7747.214,50.16906,1,12,1,149.0909,30.17199,0,0,0,179.2629,0,0,0,7,5,2,79.3,10.3,0,67,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,67,8.955217,.6931472,5.188853,1
-13,2,0,0,3,225738,0,7747.214,51.16906,1,12,1,32.81677,8.021878,23.701,0,0,64.53965,0,0,0,1,1,2,79.3,10.3,0,67,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,67,8.955217,.6931472,4.16728,1
-13,2,0,0,4,225738,0,7747.214,52.16906,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,79.3,10.3,0,67,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,67,8.955217,.6931472,,0
-13,2,0,0,5,225738,0,7747.214,53.16906,1,12,1,385.9715,13.84846,28.11328,0,0,427.9332,0,0,0,1,1,2,79.3,10.3,0,67,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,67,8.955217,.6931472,6.058967,1
-16,2,95,1,1,225743,0,7975.953,2.841889,1,13,1,32.66195,7.719107,0,0,0,40.38106,0,0,0,5,0,5,81.35272,11.84267,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.984312,1.609438,3.698361,1
-16,2,95,1,2,225743,0,7975.953,3.841889,1,13,1,28.24579,16.60555,0,0,0,44.85134,0,0,0,4,0,5,81.35272,11.84267,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.984312,1.609438,3.803353,1
-16,2,95,1,3,225743,0,7975.953,4.841889,1,13,1,34.41946,6.002754,0,0,0,40.42221,0,0,0,3,0,5,81.35272,11.84267,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.984312,1.609438,3.699379,1
-16,2,95,1,1,225744,0,7975.953,1.820671,0,13,1,13.06478,3.685357,0,0,0,16.75014,0,0,0,2,0,5,81.35272,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.984312,1.609438,2.818406,1
-16,2,95,1,2,225744,0,7975.953,2.820671,0,13,1,30.22795,20.52527,0,0,0,50.75322,0,0,0,3,0,5,81.35272,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.984312,1.609438,3.926975,1
-16,2,95,1,3,225744,0,7975.953,3.820671,0,13,1,69.52731,25.84672,0,0,0,95.37402,0,0,0,8,0,5,81.35272,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.984312,1.609438,4.557806,1
-16,2,95,1,1,225745,0,7975.953,30.56263,1,13,1,83.28797,30.57703,0,0,0,113.865,0,0,0,12,0,5,78.7,13.8,0,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.984312,1.609438,4.735013,1
-16,2,95,1,2,225745,0,7975.953,31.56263,1,13,1,404.0387,16.2438,0,0,0,420.2825,0,0,0,6,0,5,78.7,13.8,0,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.984312,1.609438,6.040927,1
-16,2,95,1,3,225745,0,7975.953,32.56263,1,13,1,66.54429,8.926113,0,0,0,75.4704,0,0,0,3,0,5,78.7,13.8,0,78.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.984312,1.609438,4.32374,1
-16,2,95,1,1,225746,0,7975.953,37.03217,0,12,1,10.88732,7.583016,0,0,0,18.47033,0,0,0,1,0,5,88.3,6.9,0,72.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,72.7,8.984312,1.609438,2.916166,1
-16,2,95,1,2,225746,0,7975.953,38.03217,0,12,1,32.21011,10.12389,0,0,0,42.334,0,0,0,2,0,5,88.3,6.9,0,72.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,72.7,8.984312,1.609438,3.74559,1
-16,2,95,1,3,225746,0,7975.953,39.03217,0,12,1,0,4.176228,0,0,0,4.176228,0,0,0,0,0,5,88.3,6.9,0,72.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,72.7,8.984312,1.609438,1.429408,1
-16,2,95,1,1,225747,0,7975.953,5.629021,1,13,1,64.23517,14.34404,0,0,0,78.57921,0,0,0,6,0,5,83.3,11.84267,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.984312,1.609438,4.364107,1
-16,2,95,1,2,225747,0,7975.953,6.629021,1,13,1,90.68385,46.87314,0,0,312.8345,450.3915,1,0,0,7,0,5,83.3,11.84267,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.984312,1.609438,6.110117,1
-16,2,95,1,3,225747,0,7975.953,7.629021,1,13,1,67.25562,19.98164,0,0,0,87.23727,0,0,0,3,0,5,83.3,11.84267,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.984312,1.609438,4.468632,1
-16,2,95,0,1,225754,0,2260.997,26.81177,1,16,1,33.20631,18.69897,2.003266,0,0,53.90855,0,0,0,2,1,1,88.8,27.6,0,56.8,1000,0,0,0,0,0,0,4.564348,6.959049,1,0,0,56.8,7.724003,0,3.987289,1
-16,2,95,0,2,225754,0,2260.997,27.81177,1,16,1,60.4559,44.82161,1.828543,0,0,107.106,0,0,0,1,4,1,88.8,27.6,0,56.8,1000,0,0,0,0,0,0,4.564348,6.959049,1,0,0,56.8,7.724003,0,4.67382,1
-16,2,95,0,3,225754,0,2260.997,28.81177,1,16,1,60.57825,35.22258,0,0,0,95.80083,0,0,0,5,0,1,88.8,27.6,0,56.8,1000,0,0,0,0,0,0,4.564348,6.959049,1,0,0,56.8,7.724003,0,4.562271,1
-6,2,25,1,1,225792,0,14826.98,11.96167,0,12,1,31.31692,5.519272,0,0,0,36.83619,0,0,0,3,0,4,83.3,11.84267,0,85.2,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.604271,1.386294,3.606481,1
-6,2,25,1,2,225792,0,14826.98,12.96167,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,11.84267,0,85.2,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.604271,1.386294,,0
-6,2,25,1,3,225792,0,14826.98,13.96167,0,12,1,197.8772,14.25926,0,0,0,212.1364,0,0,0,11,0,4,83.3,11.84267,0,85.2,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.604271,1.386294,5.357229,1
-6,2,25,1,1,225793,0,14826.98,36.82135,1,12,1,52.46253,282.3233,0,0,0,334.7859,0,0,0,4,0,4,85.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.604271,1.386294,5.813491,1
-6,2,25,1,2,225793,0,14826.98,37.82135,1,12,1,24.89019,42.73304,0,0,0,67.62323,0,0,0,2,0,4,85.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.604271,1.386294,4.213952,1
-6,2,25,1,3,225793,0,14826.98,38.82135,1,12,1,36.58537,29.91418,0,0,0,66.49955,0,0,0,2,0,4,85.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,78.4,9.604271,1.386294,4.197195,1
-6,2,25,1,1,225794,0,14826.98,41.27036,0,19,1,50.05353,57.4197,0,0,828.7206,936.1938,1,0,0,3,0,4,83.5,0,0,70.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,70.5,9.604271,1.386294,6.841823,1
-6,2,25,1,2,225794,0,14826.98,42.27036,0,19,1,25.86628,40.40508,33.62128,0,0,99.89263,0,0,0,3,0,4,83.5,0,0,70.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,70.5,9.604271,1.386294,4.604096,1
-6,2,25,1,3,225794,0,14826.98,43.27036,0,19,1,32.06865,55.44264,0,0,0,87.51129,0,0,0,4,0,4,83.5,0,0,70.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,70.5,9.604271,1.386294,4.471768,1
-6,2,25,1,1,225795,0,14826.98,9.785079,1,12,1,206.9058,190.0964,0,0,0,397.0021,0,0,0,11,0,4,76.7,11.84267,1,38.9,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,1,0,38.9,9.604271,1.386294,5.983942,1
-6,2,25,1,2,225795,0,14826.98,10.78508,1,12,1,268.1796,116.7204,0,0,3344.676,3729.575,1,0,0,11,0,4,76.7,11.84267,1,38.9,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,1,0,38.9,9.604271,1.386294,8.22405,1
-6,2,25,1,3,225795,0,14826.98,11.78508,1,12,1,424.1192,88.64499,0,0,0,512.7642,0,0,0,11,0,4,76.7,11.84267,1,38.9,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,1,0,38.9,9.604271,1.386294,6.239816,1
-11,2,0,1,1,225803,0,22723.17,39.06366,0,12,1,80.65114,15.61673,0,0,0,96.26787,0,0,0,2,0,4,61.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,10.03118,1.386294,4.567134,1
-11,2,0,1,2,225803,0,22723.17,40.06366,0,12,1,56.46718,0,0,0,0,56.46718,0,0,0,0,7,4,61.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,10.03118,1.386294,4.033659,1
-11,2,0,1,3,225803,0,22723.17,41.06366,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,10.03118,1.386294,,0
-11,2,0,1,1,225804,0,22723.17,36.29843,1,12,1,211.6993,7.411329,28.17364,0,0,247.2843,0,0,0,3,22,4,67.6,17.2,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,10.03118,1.386294,5.510539,1
-11,2,0,1,2,225804,0,22723.17,37.29843,1,12,1,133.1081,3.257722,33.38321,0,0,169.749,0,0,0,3,20,4,67.6,17.2,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,10.03118,1.386294,5.134321,1
-11,2,0,1,3,225804,0,22723.17,38.29843,1,12,1,36.71562,0,0,0,0,36.71562,0,0,0,1,4,4,67.6,17.2,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,10.03118,1.386294,3.603202,1
-11,2,0,1,1,225805,0,22723.17,12.64613,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,10.03118,1.386294,,0
-11,2,0,1,2,225805,0,22723.17,13.64613,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,10.03118,1.386294,,0
-11,2,0,1,3,225805,0,22723.17,14.64613,0,12,1,25.81219,7.29862,0,0,0,33.11081,0,0,0,3,0,4,78.3,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,10.03118,1.386294,3.49986,1
-11,2,0,1,1,225806,0,22723.17,17.4319,1,12,1,17.46956,9.311805,0,0,0,26.78137,0,0,0,1,1,4,58.5,6.9,0,83,0,0,1,1,1.386294,0,0,0,0,0,0,0,83,10.03118,1.386294,3.287706,1
-11,2,0,1,2,225806,0,22723.17,18.4319,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,6.9,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,10.03118,1.386294,,0
-11,2,0,1,3,225806,0,22723.17,19.4319,1,12,1,77.88162,0,0,0,0,77.88162,0,0,0,3,0,4,58.5,6.9,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,10.03118,1.386294,4.35519,1
-13,2,0,1,1,225807,0,10788.27,30.68583,0,16,1,23.01927,0,32.69807,0,732.2484,787.9658,1,0,0,2,1,5,83.5,10.3,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.286307,1.609438,6.669455,1
-13,2,0,1,2,225807,0,10788.27,31.68583,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,10.3,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.286307,1.609438,,0
-13,2,0,1,3,225807,0,10788.27,32.68583,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,10.3,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.286307,1.609438,,0
-13,2,0,1,1,225808,0,10788.27,10.97878,1,12,1,11.7773,4.416488,0,0,0,16.19379,0,0,0,1,0,5,73.3,11.84267,0,77.8,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.286307,1.609438,2.784628,1
-13,2,0,1,2,225808,0,10788.27,11.97878,1,12,1,16.10542,0,16.12982,0,0,32.23524,0,0,0,1,0,5,73.3,11.84267,0,77.8,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.286307,1.609438,3.47306,1
-13,2,0,1,3,225808,0,10788.27,12.97878,1,12,1,45.16712,4.855465,0,0,0,50.02258,0,0,0,4,0,5,73.3,11.84267,0,77.8,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.286307,1.609438,3.912475,1
-13,2,0,1,1,225809,0,10788.27,5.111567,0,12,1,20.87794,0,0,0,0,20.87794,0,0,0,2,0,5,78.3,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.286307,1.609438,3.038693,1
-13,2,0,1,2,225809,0,10788.27,6.111567,0,12,1,10.73695,2.171791,0,0,0,12.90874,0,0,0,1,0,5,78.3,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.286307,1.609438,2.557904,1
-13,2,0,1,3,225809,0,10788.27,7.111567,0,12,1,16.71183,3.68112,0,0,0,20.39295,0,0,0,2,0,5,78.3,11.84267,0,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.286307,1.609438,3.015189,1
-13,2,0,1,1,225810,0,10788.27,30.23409,1,12,1,87.36617,1.472163,0,0,425.4283,514.2666,1,0,0,6,0,5,79.3,10.3,0,69.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.286307,1.609438,6.242742,1
-13,2,0,1,2,225810,0,10788.27,31.23409,1,12,1,38.31137,4.807223,0,0,0,43.1186,0,0,0,2,0,5,79.3,10.3,0,69.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.286307,1.609438,3.763954,1
-13,2,0,1,3,225810,0,10788.27,32.23409,1,12,1,70.23487,5.691057,1.242096,0,0,77.16802,0,0,0,4,0,5,79.3,10.3,0,69.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.286307,1.609438,4.345985,1
-13,2,0,1,1,225811,0,10788.27,9.127995,1,12,1,19.80728,3.929336,0,0,0,23.73662,0,0,0,3,0,5,73.3,11.84267,0,70.4,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.286307,1.609438,3.167019,1
-13,2,0,1,2,225811,0,10788.27,10.12799,1,12,1,5.856515,1.898487,0,0,0,7.755002,0,0,0,1,0,5,73.3,11.84267,0,70.4,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.286307,1.609438,2.048338,1
-13,2,0,1,3,225811,0,10788.27,11.12799,1,12,1,31.61698,4.476061,0,0,0,36.09304,0,0,0,3,0,5,73.3,11.84267,0,70.4,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.286307,1.609438,3.5861,1
-13,2,0,1,1,225814,0,8665.641,60.76112,1,13,1,151.9322,100.3176,0,0,0,252.2499,0,0,0,7,0,1,31.9,24.1,0,35.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,1,0,35.2,9.067237,0,5.53042,1
-13,2,0,1,2,225814,0,8665.641,61.76112,1,13,1,265.1786,45.94595,0,0,0,311.1245,0,0,0,16,0,1,31.9,24.1,0,35.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,1,0,35.2,9.067237,0,5.740193,1
-13,2,0,1,3,225814,0,8665.641,62.76112,1,13,1,205.385,0,0,0,0,205.385,0,0,0,10,2,1,31.9,24.1,0,35.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,1,0,35.2,9.067237,0,5.324886,1
-13,2,0,1,1,225838,0,7184.751,23.92608,0,12,1,26.3438,0,0,0,0,26.3438,0,0,0,2,0,1,79.8,10.3,0,67,150,78.43,0,0,0,4.362206,1,4.564348,5.061929,1,0,0,67,8.879855,0,3.271233,1
-13,2,0,1,2,225838,0,7184.751,24.92608,0,12,1,36.79108,0,0,0,0,36.79108,0,0,0,2,0,1,79.8,10.3,0,67,150,78.43,0,0,0,4.362206,1,4.564348,5.061929,1,0,0,67,8.879855,0,3.605255,1
-13,2,0,1,3,225838,0,7184.751,25.92608,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,10.3,0,67,150,78.43,0,0,0,4.362206,1,4.564348,5.061929,1,0,0,67,8.879855,0,,0
-18,2,25,1,1,225853,0,3585.337,20.89528,1,13,1,34.26124,7.537473,0,0,0,41.79871,0,0,0,2,0,1,63.8,6.9,1,44.3,469.5,469.5,0,0,0,6.151668,0,3.258096,7.537962,0,0,0,44.3,8.184887,0,3.732866,1
-18,2,25,1,2,225853,0,3585.337,21.89528,1,13,1,17.0815,2.376769,0,0,0,19.45827,0,0,0,1,0,1,63.8,6.9,1,44.3,469.5,469.5,0,0,0,6.151668,0,3.258096,7.537962,0,0,0,44.3,8.184887,0,2.968272,1
-18,2,25,1,3,225853,0,3585.337,22.89528,1,13,1,110.8401,84.98193,0,0,0,195.822,0,0,0,12,0,1,63.8,6.9,1,44.3,469.5,469.5,0,0,0,6.151668,0,3.258096,7.537962,0,0,0,44.3,8.184887,0,5.277206,1
-18,2,25,1,4,225853,0,3585.337,23.89528,1,13,1,70.51282,98.1555,0,682.3821,295.6824,464.3507,1,0,34,3,1,1,63.8,6.9,1,44.3,469.5,469.5,0,0,0,6.151668,0,3.258096,7.537962,0,0,0,44.3,8.184887,0,6.14064,1
-18,2,25,1,5,225853,0,3585.337,24.89528,1,13,1,73.21162,5.391207,0,409.8361,0,78.60283,0,0,22,4,0,1,63.8,6.9,1,44.3,469.5,469.5,0,0,0,6.151668,0,3.258096,7.537962,0,0,0,44.3,8.184887,0,4.364408,1
-18,2,25,1,1,225854,0,3491.496,54.9076,1,12,1,36.38814,11.15903,35.68733,0,0,83.2345,0,0,0,2,1,1,83,17.2,0,79.5,472.5,472.5,0,0,0,6.158038,0,3.258096,7.544332,1,0,0,79.5,8.158372,0,4.421662,1
-18,2,25,1,2,225854,0,3491.496,55.9076,1,12,1,86.85503,12.82555,0,0,0,99.68059,0,0,0,7,0,1,83,17.2,0,79.5,472.5,472.5,0,0,0,6.158038,0,3.258096,7.544332,1,0,0,79.5,8.158372,0,4.601971,1
-18,2,25,1,3,225854,0,3491.496,56.9076,1,12,1,41.02097,12.32908,0,0,0,53.35004,0,0,0,5,0,1,83,17.2,0,79.5,472.5,472.5,0,0,0,6.158038,0,3.258096,7.544332,1,0,0,79.5,8.158372,0,3.976875,1
-18,2,25,1,4,225854,0,3491.496,57.9076,1,12,1,42.51772,8.232597,0,0,0,50.75031,0,0,0,5,0,1,83,17.2,0,79.5,472.5,472.5,0,0,0,6.158038,0,3.258096,7.544332,1,0,0,79.5,8.158372,0,3.926918,1
-18,2,25,1,5,225854,0,3491.496,58.9076,1,12,1,75.76894,8.552138,34.05101,0,0,118.3721,0,0,0,6,1,1,83,17.2,0,79.5,472.5,472.5,0,0,0,6.158038,0,3.258096,7.544332,1,0,0,79.5,8.158372,0,4.773833,1
-13,2,0,0,1,225873,0,11360.7,51.54552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,6.9,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.338004,.6931472,,0
-13,2,0,0,2,225873,0,11360.7,52.54552,0,12,1,90.64469,1.20698,50.34416,0,982.4042,1124.6,1,0,0,4,1,2,91.5,6.9,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.338004,.6931472,7.025183,1
-13,2,0,0,3,225873,0,11360.7,53.54552,0,12,1,134.7709,0,0,0,0,134.7709,0,0,0,9,0,2,91.5,6.9,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.338004,.6931472,4.903576,1
-13,2,0,0,1,225874,0,11360.7,51.90417,1,12,1,137.8393,14.65673,51.19212,0,0,203.6881,0,0,0,3,14,2,89.9,6.9,1,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,67,9.338004,.6931472,5.31659,1
-13,2,0,0,2,225874,0,11360.7,52.90417,1,12,1,33.44644,15.3175,0,0,0,48.76394,0,0,0,1,3,2,89.9,6.9,1,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,67,9.338004,.6931472,3.886991,1
-13,2,0,0,3,225874,0,11360.7,53.90417,1,12,1,50.65139,0,0,0,0,50.65139,0,0,0,1,2,2,89.9,6.9,1,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,67,9.338004,.6931472,3.924967,1
-15,2,95,0,1,225996,0,3843.402,24.70089,0,16,1,48.61474,0,0,0,0,48.61474,0,0,0,2,1,1,76.6,17.2,1,62.5,267,267,0,0,0,5.587249,0,4.564348,5.638542,1,0,0,62.5,8.254374,0,3.883927,1
-15,2,95,0,2,225996,0,3843.402,25.70089,0,16,1,362.7583,7.568477,54.54108,36.04036,0,424.8679,0,0,3,14,0,1,76.6,17.2,1,62.5,267,267,0,0,0,5.587249,0,4.564348,5.638542,1,0,0,62.5,8.254374,0,6.051778,1
-15,2,95,0,3,225996,0,3843.402,26.70089,0,16,1,42.95154,0,0,99.11894,0,42.95154,0,0,9,2,0,1,76.6,17.2,1,62.5,267,267,0,0,0,5.587249,0,4.564348,5.638542,1,0,0,62.5,8.254374,0,3.760072,1
-11,2,0,1,1,226016,0,7989.443,59.98083,1,12,1,325.7052,65.10378,55.58808,0,0,446.397,0,0,0,0,52,1,93.1,13.8,0,78.4,0,76.91,0,0,0,4.342636,0,0,0,1,0,0,78.4,8.986001,0,6.101209,1
-11,2,0,1,2,226016,0,7989.443,60.98083,1,12,1,205.5259,77.68298,0,0,0,283.2089,0,0,0,3,27,1,93.1,13.8,0,78.4,0,76.91,0,0,0,4.342636,0,0,0,1,0,0,78.4,8.986001,0,5.646185,1
-11,2,0,1,3,226016,0,7989.443,61.98083,1,12,1,238.0952,64.83827,59.13747,0,249.1689,611.2399,1,0,0,3,29,1,93.1,13.8,0,78.4,0,76.91,0,0,0,4.342636,0,0,0,1,0,0,78.4,8.986001,0,6.41549,1
-16,2,95,0,1,226019,0,11106.75,31.05818,0,21,1,27.30551,0,0,0,0,27.30551,0,0,0,1,0,2,72.9,13.8,0,80.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.315398,.6931472,3.307089,1
-16,2,95,0,1,226020,0,11106.75,28.26831,1,16,1,33.48789,.7727975,0,0,0,34.26069,0,0,0,2,0,2,84.6,27.6,0,97.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.315398,.6931472,3.533998,1
-16,2,95,0,1,226029,0,7957.771,28.73648,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,13.8,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.98203,.6931472,,0
-16,2,95,0,2,226029,0,7957.771,29.73648,1,12,1,52.82555,3.906634,0,0,0,56.73219,0,0,0,3,0,2,78.2,13.8,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.98203,.6931472,4.038342,1
-16,2,95,0,3,226029,0,7957.771,30.73648,1,12,1,43.7557,19.16591,0,0,611.0301,673.9517,1,0,0,3,0,2,78.2,13.8,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,77.3,8.98203,.6931472,6.513158,1
-16,2,95,0,1,226030,0,7957.771,27.30459,0,12,1,8.086253,5.380054,0,0,0,13.46631,0,0,0,1,0,2,68.6,3.4,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,8.98203,.6931472,2.600191,1
-16,2,95,0,2,226030,0,7957.771,28.30459,0,12,1,91.74447,2.432432,0,0,0,94.1769,0,0,0,1,0,2,68.6,3.4,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,8.98203,.6931472,4.545175,1
-16,2,95,0,3,226030,0,7957.771,29.30459,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.6,3.4,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,8.98203,.6931472,,0
-11,2,0,0,1,226042,0,8665.641,25.70842,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,20.7,0,85.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,85.2,9.067237,.6931472,,0
-11,2,0,0,2,226042,0,8665.641,26.70842,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,20.7,0,85.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,85.2,9.067237,.6931472,,0
-11,2,0,0,3,226042,0,8665.641,27.70842,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,20.7,0,85.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,85.2,9.067237,.6931472,,0
-11,2,0,0,4,226042,0,8665.641,28.70842,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,20.7,0,85.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,85.2,9.067237,.6931472,,0
-11,2,0,0,5,226042,0,8665.641,29.70842,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,20.7,0,85.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,85.2,9.067237,.6931472,,0
-11,2,0,0,1,226043,0,8665.641,24.95004,1,12,1,110.572,62.89581,0,0,0,173.4678,0,0,0,11,0,2,85.6,6.9,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,9.067237,.6931472,5.155992,1
-11,2,0,0,2,226043,0,8665.641,25.95004,1,12,1,109.9391,127.0792,0,0,0,237.0183,0,0,0,16,1,2,85.6,6.9,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,9.067237,.6931472,5.468137,1
-11,2,0,0,3,226043,0,8665.641,26.95004,1,12,1,97.59243,103.3104,0,0,0,200.9028,0,0,0,16,0,2,85.6,6.9,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,9.067237,.6931472,5.302821,1
-11,2,0,0,4,226043,0,8665.641,27.95004,1,12,1,24.42807,39.55021,0,0,0,63.97829,0,0,0,6,0,2,85.6,6.9,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,9.067237,.6931472,4.158544,1
-11,2,0,0,5,226043,0,8665.641,28.95004,1,12,1,234.4834,29.7523,0,0,0,264.2357,0,0,0,11,0,2,85.6,6.9,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,9.067237,.6931472,5.576841,1
-5,2,25,0,1,226069,0,13229.91,8.492813,1,18,1,11.5903,0,0,0,0,11.5903,0,0,0,1,0,4,88.3,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.490312,1.386294,2.450168,1
-5,2,25,0,2,226069,0,13229.91,9.492813,1,18,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.490312,1.386294,,0
-5,2,25,0,3,226069,0,13229.91,10.49281,1,18,1,24.15679,0,0,0,0,24.15679,0,0,0,2,0,4,88.3,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.490312,1.386294,3.184566,1
-5,2,25,0,1,226070,0,13229.91,39.92608,0,18,1,198.5175,2.12938,0,0,0,200.6469,0,0,0,8,0,4,81.9,6.9,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.490312,1.386294,5.301547,1
-5,2,25,0,2,226070,0,13229.91,40.92608,0,18,1,102.5061,10.14742,0,88.45209,0,112.6536,0,0,4,3,9,4,81.9,6.9,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.490312,1.386294,4.724317,1
-5,2,25,0,3,226070,0,13229.91,41.92608,0,18,1,15.04102,0,0,0,0,15.04102,0,0,0,1,0,4,81.9,6.9,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.490312,1.386294,2.710781,1
-5,2,25,0,1,226071,0,13229.91,35.47433,1,18,1,45.8221,6.954178,0,0,0,52.77628,0,0,0,4,0,4,86.2,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.490312,1.386294,3.966062,1
-5,2,25,0,2,226071,0,13229.91,36.47433,1,18,1,276.7322,3.105651,0,0,0,279.8378,0,0,0,6,0,4,86.2,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.490312,1.386294,5.63421,1
-5,2,25,0,3,226071,0,13229.91,37.47433,1,18,1,73.38195,3.509572,0,0,0,76.89153,0,0,0,5,0,4,86.2,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.490312,1.386294,4.342396,1
-5,2,25,0,1,226072,0,13229.91,6.212183,1,18,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,66.7,9.490312,1.386294,,0
-5,2,25,0,2,226072,0,13229.91,7.212183,1,18,1,12.89926,0,0,0,0,12.89926,0,0,0,1,0,4,88.3,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,66.7,9.490312,1.386294,2.55717,1
-5,2,25,0,3,226072,0,13229.91,8.212183,1,18,1,15.04102,0,0,0,0,15.04102,0,0,0,1,0,4,88.3,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,66.7,9.490312,1.386294,2.710781,1
-7,2,25,0,1,226087,0,13652.2,55.14305,0,14,1,32.64506,0,45.52535,0,0,78.17041,0,0,0,1,1,5,89.9,27.6,1,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,58,9.521729,1.609438,4.358891,1
-7,2,25,0,2,226087,0,13652.2,56.14305,0,14,1,224.6997,30.96588,0,0,0,255.6655,0,0,0,7,0,5,89.9,27.6,1,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,58,9.521729,1.609438,5.54387,1
-7,2,25,0,3,226087,0,13652.2,57.14305,0,14,1,71.69604,36.01762,41.7533,0,0,149.467,0,0,0,3,1,5,89.9,27.6,1,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,58,9.521729,1.609438,5.007075,1
-7,2,25,0,4,226087,0,13652.2,58.14305,0,14,1,11.59274,31.97581,0,0,0,43.56855,0,0,0,1,0,5,89.9,27.6,1,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,58,9.521729,1.609438,3.774336,1
-7,2,25,0,5,226087,0,13652.2,59.14305,0,14,1,45.17304,48.6521,33.79964,0,0,127.6248,0,0,0,1,1,5,89.9,27.6,1,58,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,58,9.521729,1.609438,4.849094,1
-7,2,25,0,1,226088,0,13652.2,13.08145,1,12,1,18.29587,0,18.29587,0,0,36.59174,0,0,0,1,0,5,93.3,11.84267,1,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.521729,1.609438,3.599823,1
-7,2,25,0,2,226088,0,13652.2,14.08145,1,12,1,64.99279,7.063911,3.925997,0,0,75.9827,0,0,0,3,0,5,93.3,11.84267,1,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.521729,1.609438,4.330506,1
-7,2,25,0,3,226088,0,13652.2,15.08145,1,12,1,42.07048,0,14.44053,0,0,56.51101,0,0,0,2,0,5,93.3,11.84267,1,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.521729,1.609438,4.034436,1
-7,2,25,0,4,226088,0,13652.2,16.08145,1,12,1,25,7.66129,0,0,0,32.66129,0,0,0,2,0,5,93.3,11.84267,1,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.521729,1.609438,3.486191,1
-7,2,25,0,5,226088,0,13652.2,17.08145,1,12,1,66.68488,8.608378,15.61384,0,0,90.9071,0,0,0,4,0,5,93.3,11.84267,1,88.9,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.521729,1.609438,4.509838,1
-7,2,25,0,1,226089,0,13652.2,48.99384,1,12,1,230.3973,112.07,58.69838,0,0,401.1657,0,0,0,9,0,5,83,31,1,63.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,63.6,9.521729,1.609438,5.994375,1
-7,2,25,0,2,226089,0,13652.2,49.99384,1,12,1,106.9197,105.1081,15.75204,0,0,227.7799,0,0,0,4,0,5,83,31,1,63.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,63.6,9.521729,1.609438,5.42838,1
-7,2,25,0,3,226089,0,13652.2,50.99384,1,12,1,39.64758,53.68723,45.59472,0,0,138.9295,0,0,0,3,0,5,83,31,1,63.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,63.6,9.521729,1.609438,4.933967,1
-7,2,25,0,4,226089,0,13652.2,51.99384,1,12,1,42.74194,74.81855,0,0,0,117.5605,0,0,0,2,0,5,83,31,1,63.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,63.6,9.521729,1.609438,4.766953,1
-7,2,25,0,5,226089,0,13652.2,52.99384,1,12,1,51.73042,89.10747,15.61384,0,0,156.4517,0,0,0,2,0,5,83,31,1,63.6,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,63.6,9.521729,1.609438,5.052748,1
-7,2,25,0,1,226090,0,13652.2,10.49692,0,12,1,40.25092,30.73706,32.97961,0,0,103.9676,0,0,0,3,0,5,88.3,11.84267,1,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,92.6,9.521729,1.609438,4.644079,1
-7,2,25,0,2,226090,0,13652.2,11.49692,0,12,1,55.74243,14.89668,0,0,0,70.63911,0,0,0,4,0,5,88.3,11.84267,1,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,92.6,9.521729,1.609438,4.257584,1
-7,2,25,0,3,226090,0,13652.2,12.49692,0,12,1,40.52863,11.06167,39.02203,0,0,90.61234,0,0,0,2,0,5,88.3,11.84267,1,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,92.6,9.521729,1.609438,4.50659,1
-7,2,25,0,4,226090,0,13652.2,13.49692,0,12,1,80.84677,45.19355,0,0,0,126.0403,0,0,0,7,0,5,88.3,11.84267,1,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,92.6,9.521729,1.609438,4.836602,1
-7,2,25,0,5,226090,0,13652.2,14.49692,0,12,1,42.98725,44.62659,33.83607,0,0,121.4499,0,0,0,3,0,5,88.3,11.84267,1,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,1,0,92.6,9.521729,1.609438,4.799502,1
-7,2,25,0,1,226091,0,13652.2,14.15469,1,12,1,25.61422,20.77888,33.24621,0,0,79.63931,0,0,0,2,0,5,88.3,13.8,1,56,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,56,9.521729,1.609438,4.377508,1
-7,2,25,0,2,226091,0,13652.2,15.15469,1,12,1,41.32629,14.36809,0,0,0,55.69438,0,0,0,2,0,5,88.3,13.8,1,56,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,56,9.521729,1.609438,4.019879,1
-7,2,25,0,3,226091,0,13652.2,16.15469,1,12,1,17.62115,12.00441,14.44053,0,0,44.06608,0,0,0,1,0,5,88.3,13.8,1,56,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,56,9.521729,1.609438,3.78569,1
-7,2,25,0,4,226091,0,13652.2,17.15469,1,12,1,18.14516,14.91935,0,0,0,33.06452,0,0,0,1,0,5,88.3,13.8,1,56,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,56,9.521729,1.609438,3.498461,1
-7,2,25,0,5,226091,0,13652.2,18.15469,1,12,1,26.95811,28.29508,29.35519,0,0,84.60838,0,0,0,3,0,5,88.3,13.8,1,56,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,56,9.521729,1.609438,4.438033,1
-18,2,25,1,1,226098,0,7165.396,36.45996,0,12,1,0,2.600104,0,0,0,2.600104,0,0,0,0,0,2,76.6,3.4,0,76.1,744,744,0,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.1,8.877158,.6931472,.9555515,1
-18,2,25,1,2,226098,0,7165.396,37.45996,0,12,1,89.58433,0,0,0,0,89.58433,0,0,0,2,0,2,76.6,3.4,0,76.1,744,744,0,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.1,8.877158,.6931472,4.495181,1
-18,2,25,1,3,226098,0,7165.396,38.45996,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,76.6,3.4,0,76.1,744,744,0,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.1,8.877158,.6931472,,0
-15,2,95,1,1,226099,0,4052.463,22.55989,1,12,1,13.3833,3.035332,0,0,626.0974,642.5161,1,0,0,1,0,1,83.5,17.2,1,65.9,297.5,154.88,0,0,0,5.042651,0,4.564348,5.746707,0,0,0,65.9,8.307327,0,6.465392,1
-15,2,95,1,2,226099,0,4052.463,23.55989,1,12,1,8.784773,12.25964,0,0,0,21.04441,0,0,0,1,0,1,83.5,17.2,1,65.9,297.5,154.88,0,0,0,5.042651,0,4.564348,5.746707,0,0,0,65.9,8.307327,0,3.046635,1
-15,2,95,1,3,226099,0,4052.463,24.55989,1,12,1,15.80849,0,38.74435,0,0,54.55285,0,0,0,1,1,1,83.5,17.2,1,65.9,297.5,154.88,0,0,0,5.042651,0,4.564348,5.746707,0,0,0,65.9,8.307327,0,3.99917,1
-15,2,95,1,1,226100,0,8665.641,23.18686,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,64.4,10.3,0,62.5,249.5,249.5,0,0,0,5.519459,0,4.564348,5.570752,0,0,0,62.5,9.067237,0,,0
-15,2,95,1,2,226100,0,8665.641,24.18686,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,62.5,249.5,249.5,0,0,.6931472,5.519459,0,4.564348,5.570752,0,0,0,62.5,9.067237,.6931472,,0
-15,2,95,1,3,226100,0,8665.641,25.18686,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,62.5,249.5,249.5,0,0,.6931472,5.519459,0,4.564348,5.570752,0,0,0,62.5,9.067237,.6931472,,0
-7,2,25,1,1,226121,0,6541.349,22.28611,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,6.9,0,90.9,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,90.9,8.786052,1.098612,,0
-7,2,25,1,2,226121,0,6541.349,23.28611,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,90.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,90.9,8.786052,1.386294,,0
-7,2,25,1,3,226121,0,6541.349,24.28611,0,12,1,30.08204,6.144029,0,0,0,36.22607,0,0,0,3,0,4,78.2,6.9,0,90.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,90.9,8.786052,1.386294,3.589779,1
-7,2,25,1,1,226122,0,6541.349,20.63518,1,12,1,10.24259,5.09434,0,0,584.2048,599.5418,1,0,0,0,0,3,77.7,6.9,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,79.5,8.786052,1.098612,6.396166,1
-7,2,25,1,2,226122,0,6541.349,21.63518,1,12,1,57.98526,16.69287,52.83047,0,0,127.5086,0,0,0,3,0,4,77.7,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,79.5,8.786052,1.386294,4.848184,1
-7,2,25,1,3,226122,0,6541.349,22.63518,1,12,1,53.21331,5.259799,0,0,0,58.47311,0,0,0,2,0,4,77.7,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,79.5,8.786052,1.386294,4.068567,1
-7,2,25,1,1,226123,0,6541.349,.678987,1,12,1,37.19677,0,0,0,0,37.19677,0,0,0,3,0,3,81.35272,11.84267,0,100,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,8.786052,1.098612,3.616222,1
-7,2,25,1,2,226123,0,6541.349,1.678987,1,12,1,22.60442,0,0,0,0,22.60442,0,0,0,3,0,4,81.35272,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,8.786052,1.386294,3.118146,1
-7,2,25,1,3,226123,0,6541.349,2.678987,1,12,1,10.02735,0,0,0,0,10.02735,0,0,0,1,0,4,81.35272,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,8.786052,1.386294,2.305316,1
-13,2,0,1,1,226128,0,6354.252,16.25188,1,14,1,74.94646,11.8576,0,0,0,86.80407,0,0,0,5,0,3,68.6,3.4,0,84.1,450,0,1,1,1.098612,0,1,4.564348,6.160541,0,0,1,84.1,8.757037,1.098612,4.463654,1
-13,2,0,1,2,226128,0,6354.252,17.25188,1,14,1,114.6901,27.19863,0,0,756.1494,898.0381,1,0,0,4,0,2,68.6,3.4,0,84.1,450,0,1,1,.6931472,0,1,4.564348,6.160541,0,0,1,84.1,8.757037,.6931472,6.800212,1
-13,2,0,1,3,226128,0,6354.252,18.25188,1,14,1,64.09214,3.477868,0,0,0,67.57001,0,0,0,3,0,2,68.6,3.4,0,84.1,450,0,0,0,.6931472,0,1,4.564348,6.160541,0,0,1,84.1,8.757037,.6931472,4.213164,1
-13,2,0,1,1,226129,0,6354.252,16.25188,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,64.9,6.9,0,75,450,0,1,0,1.098612,0,1,4.564348,6.160541,0,0,0,75,8.757037,1.098612,,0
-13,2,0,1,1,226130,0,6354.252,45.89185,1,14,1,303.8008,36.16167,0,0,0,339.9625,0,0,0,8,0,3,79.3,13.8,0,98.9,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,98.9,8.757037,1.098612,5.828835,1
-13,2,0,1,2,226130,0,6354.252,46.89185,1,14,1,338.2528,35.87115,45.67594,0,0,419.7999,0,0,0,8,1,2,79.3,13.8,0,98.9,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,98.9,8.757037,.6931472,6.039778,1
-13,2,0,1,3,226130,0,6354.252,47.89185,1,14,1,153.5682,52.37127,0,0,0,205.9395,0,0,0,5,0,2,79.3,13.8,0,98.9,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,98.9,8.757037,.6931472,5.327582,1
-11,2,0,0,1,226189,0,8665.641,55.83025,0,16,1,221.3597,16.0439,43.01392,0,0,280.4176,0,0,0,2,11,3,74.5,17.2,1,69.3,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,69.3,9.067237,1.098612,5.63628,1
-11,2,0,0,2,226189,0,8665.641,56.83025,0,16,1,235.7247,41.88385,0,0,0,277.6086,0,0,0,6,0,3,74.5,17.2,1,69.3,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,69.3,9.067237,1.098612,5.626212,1
-11,2,0,0,3,226189,0,8665.641,57.83025,0,16,1,308.0397,173.9115,41.88347,0,0,523.8347,0,0,0,13,6,3,74.5,17.2,1,69.3,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,69.3,9.067237,1.098612,6.261176,1
-11,2,0,0,1,226190,0,8665.641,53.15811,1,12,1,31.58458,0,46.16702,0,0,77.75161,0,0,0,2,0,3,77.1,20.7,1,64.8,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,64.8,9.067237,1.098612,4.353519,1
-11,2,0,0,2,226190,0,8665.641,54.15811,1,12,1,10.73695,0,0,0,0,10.73695,0,0,0,1,0,3,77.1,20.7,1,64.8,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,64.8,9.067237,1.098612,2.373691,1
-11,2,0,0,3,226190,0,8665.641,55.15811,1,12,1,148.1481,14.28184,42.35772,0,0,204.7877,0,0,0,5,0,3,77.1,20.7,1,64.8,0,649.2,0,0,1.098612,6.475741,0,0,0,1,0,0,64.8,9.067237,1.098612,5.321974,1
-11,2,0,0,1,226191,0,8665.641,12.04107,1,12,1,47.64454,4.116703,0,0,0,51.76124,0,0,0,6,0,3,88.3,11.84267,0,96.3,0,649.2,1,1,1.098612,6.475741,0,0,0,0,0,0,96.3,9.067237,1.098612,3.946642,1
-11,2,0,0,2,226191,0,8665.641,13.04107,1,12,1,125.427,24.21181,0,0,0,149.6389,0,0,0,8,0,3,88.3,11.84267,0,96.3,0,649.2,1,1,1.098612,6.475741,0,0,0,0,0,0,96.3,9.067237,1.098612,5.008225,1
-11,2,0,0,3,226191,0,8665.641,14.04107,1,12,1,96.88347,7.439024,33.77597,0,0,138.0985,0,0,0,6,0,3,88.3,11.84267,0,96.3,0,649.2,1,1,1.098612,6.475741,0,0,0,0,0,0,96.3,9.067237,1.098612,4.927967,1
-11,2,0,0,1,226211,0,21330.21,45.39357,1,12,1,84.35338,185.0772,56.67376,0,0,326.1043,0,0,0,6,0,5,90.4,13.8,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,1,0,0,77.3,9.967926,1.609438,5.787217,1
-11,2,0,0,2,226211,0,21330.21,46.39357,1,12,1,83.37373,162.9859,0,0,0,246.3597,0,0,0,7,0,5,90.4,13.8,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,1,0,0,77.3,9.967926,1.609438,5.506793,1
-11,2,0,0,3,226211,0,21330.21,47.39357,1,12,1,37.96047,80.39084,0,0,0,118.3513,0,0,0,5,0,5,90.4,13.8,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,1,0,0,77.3,9.967926,1.609438,4.773657,1
-11,2,0,0,4,226211,0,21330.21,48.39357,1,12,1,91.34181,63.86951,75.59705,0,0,230.8084,0,0,0,10,0,5,90.4,13.8,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,1,0,0,77.3,9.967926,1.609438,5.441588,1
-11,2,0,0,5,226211,0,21330.21,49.39357,1,12,1,80.54324,90.13304,.9238729,0,0,171.6001,0,0,0,10,0,5,90.4,13.8,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,1,0,0,77.3,9.967926,1.609438,5.145167,1
-11,2,0,0,1,226212,0,21330.21,11.29363,0,12,1,6.120277,.798297,0,0,0,6.918574,0,0,0,1,0,5,86.7,11.84267,0,85.2,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,85.2,9.967926,1.609438,1.93421,1
-11,2,0,0,2,226212,0,21330.21,12.29363,0,12,1,6.059137,2.326709,0,0,0,8.385846,0,0,0,1,0,5,86.7,11.84267,0,85.2,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,85.2,9.967926,1.609438,2.126545,1
-11,2,0,0,3,226212,0,21330.21,13.29363,0,12,1,6.513927,0,0,0,0,6.513927,0,0,0,1,0,5,86.7,11.84267,0,85.2,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,85.2,9.967926,1.609438,1.873942,1
-11,2,0,0,4,226212,0,21330.21,14.29363,0,12,1,22.97907,4.883053,0,0,0,27.86213,0,0,0,2,0,5,86.7,11.84267,0,85.2,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,85.2,9.967926,1.609438,3.327268,1
-11,2,0,0,5,226212,0,21330.21,15.29363,0,12,1,25.49889,22.30229,0,0,0,47.80118,0,0,0,3,0,5,86.7,11.84267,0,85.2,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,85.2,9.967926,1.609438,3.86705,1
-11,2,0,0,1,226213,0,21330.21,16.53662,0,12,1,17.56253,3.991485,0,0,0,21.55402,0,0,0,1,0,5,91.5,0,0,72.7,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,72.7,9.967926,1.609438,3.070562,1
-11,2,0,0,2,226213,0,21330.21,17.53662,0,12,1,0,1.357247,0,0,0,1.357247,0,0,0,0,0,5,91.5,0,0,72.7,0,27,1,0,1.609438,3.295837,0,0,0,0,0,0,72.7,9.967926,1.609438,.3054582,1
-11,2,0,0,3,226213,0,21330.21,18.53662,0,12,1,15.94789,0,0,0,0,15.94789,0,0,0,1,0,5,91.5,0,0,72.7,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,72.7,9.967926,1.609438,2.769326,1
-11,2,0,0,4,226213,0,21330.21,19.53662,0,12,1,111.6537,4.123923,.4103406,0,0,116.1879,0,0,0,4,0,5,91.5,0,0,72.7,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,72.7,9.967926,1.609438,4.755209,1
-11,2,0,0,5,226213,0,21330.21,20.53662,0,12,1,36.95491,4.748706,.3880266,0,0,42.09165,0,0,0,4,0,5,91.5,0,0,72.7,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,72.7,9.967926,1.609438,3.739849,1
-11,2,0,0,1,226214,0,21330.21,48.30116,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,6.9,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,77.3,9.967926,1.609438,,0
-11,2,0,0,2,226214,0,21330.21,49.30116,0,12,1,16.96558,0,44.3238,0,0,61.28938,0,0,0,1,0,5,90.4,6.9,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,77.3,9.967926,1.609438,4.115607,1
-11,2,0,0,3,226214,0,21330.21,50.30116,0,12,1,14.37556,7.884097,0,0,0,22.25966,0,0,0,0,2,5,90.4,6.9,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,77.3,9.967926,1.609438,3.102776,1
-11,2,0,0,4,226214,0,21330.21,51.30116,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,6.9,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,77.3,9.967926,1.609438,,0
-11,2,0,0,5,226214,0,21330.21,52.30116,0,12,1,84.88544,11.32668,46.09386,0,0,142.306,0,0,0,5,0,5,90.4,6.9,0,77.3,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,77.3,9.967926,1.609438,4.95798,1
-11,2,0,0,1,226215,0,21330.21,20.13963,1,13,1,58.54178,27.73816,40.57478,0,0,126.8547,0,0,0,6,0,5,89.9,6.9,0,70.5,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,70.5,9.967926,1.609438,4.843042,1
-11,2,0,0,2,226215,0,21330.21,21.13963,1,13,1,226.5148,42.18614,5.681047,0,0,274.382,0,0,0,17,0,5,89.9,6.9,0,70.5,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,70.5,9.967926,1.609438,5.614521,1
-11,2,0,0,3,226215,0,21330.21,22.13963,1,13,1,118.1491,11.37916,0,67.38544,0,129.5283,0,0,3,7,0,5,89.9,6.9,0,70.5,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,70.5,9.967926,1.609438,4.863899,1
-11,2,0,0,4,226215,0,21330.21,23.13963,1,13,1,90.7263,13.91055,36.67624,0,0,141.3131,0,0,0,6,0,5,89.9,6.9,0,70.5,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,70.5,9.967926,1.609438,4.950978,1
-11,2,0,0,5,226215,0,21330.21,24.13963,1,13,1,171.7664,19.7524,28.78788,0,0,220.3067,0,0,0,7,0,5,89.9,6.9,0,70.5,0,27,0,0,1.609438,3.295837,0,0,0,0,0,0,70.5,9.967926,1.609438,5.395021,1
-14,2,95,1,1,226220,0,8665.641,32.87885,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,13.8,0,83,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,83,9.067237,1.386294,,0
-14,2,95,1,2,226220,0,8665.641,33.87885,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,13.8,0,83,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,83,9.067237,1.386294,,0
-14,2,95,1,3,226220,0,8665.641,34.87885,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,13.8,0,83,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,83,9.067237,1.386294,,0
-14,2,95,1,4,226220,0,8665.641,35.87885,0,14,1,32.93039,0,0,0,0,32.93039,0,0,0,2,0,4,72.3,13.8,0,83,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,83,9.067237,1.386294,3.494396,1
-14,2,95,1,5,226220,0,8665.641,36.87885,0,14,1,5.20255,2.483121,0,0,0,7.685671,0,0,0,0,1,4,72.3,13.8,0,83,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,83,9.067237,1.386294,2.039358,1
-14,2,95,1,1,226221,0,8665.641,6.551677,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,2,226221,0,8665.641,7.551677,1,13,1,262.3096,0,0,0,0,262.3096,0,0,0,3,0,4,73.3,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,5.569525,1
-14,2,95,1,3,226221,0,8665.641,8.551677,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,4,226221,0,8665.641,9.551677,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,5,226221,0,8665.641,10.55168,1,13,1,7.501875,0,0,0,0,7.501875,0,0,0,1,0,4,73.3,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,2.015153,1
-14,2,95,1,1,226222,0,8665.641,4.232718,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,2,226222,0,8665.641,5.232718,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,3,226222,0,8665.641,6.232718,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,4,226222,0,8665.641,7.232718,1,13,1,20.42518,3.167987,0,0,0,23.59316,0,0,0,2,0,4,81.35272,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,3.160957,1
-14,2,95,1,5,226222,0,8665.641,8.232718,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,100,426,0,1,1,1.386294,0,0,4.564348,6.105732,0,0,0,100,9.067237,1.386294,,0
-14,2,95,1,1,226223,0,8665.641,32.36687,1,13,1,8.894878,0,0,0,0,8.894878,0,0,0,1,0,4,84,13.8,0,75,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,75,9.067237,1.386294,2.185476,1
-14,2,95,1,2,226223,0,8665.641,33.36687,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84,13.8,0,75,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,75,9.067237,1.386294,,0
-14,2,95,1,3,226223,0,8665.641,34.36687,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84,13.8,0,75,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,75,9.067237,1.386294,,0
-14,2,95,1,4,226223,0,8665.641,35.36687,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84,13.8,0,75,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,75,9.067237,1.386294,,0
-14,2,95,1,5,226223,0,8665.641,36.36687,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84,13.8,0,75,426,0,0,0,1.386294,0,0,4.564348,6.105732,0,0,0,75,9.067237,1.386294,,0
-11,2,0,0,1,226239,0,11449.27,24.27926,1,15,1,25.43906,20.64928,0,0,0,46.08834,0,0,0,2,0,2,86.2,6.9,0,83,0,0,0,0,.6931472,0,0,0,0,1,0,0,83,9.345768,.6931472,3.83056,1
-11,2,0,0,2,226239,0,11449.27,25.27926,1,15,1,60.59137,15.11876,0,0,0,75.71013,0,0,0,1,8,2,86.2,6.9,0,83,0,0,0,0,.6931472,0,0,0,0,1,0,0,83,9.345768,.6931472,4.326912,1
-11,2,0,0,3,226239,0,11449.27,26.27926,1,15,1,200.1348,2.511231,36.60826,0,1019.16,1258.414,1,0,0,4,15,2,86.2,6.9,0,83,0,0,0,0,.6931472,0,0,0,0,1,0,0,83,9.345768,.6931472,7.137608,1
-11,2,0,0,4,226239,0,11449.27,27.27926,1,15,1,142.7985,6.877308,0,0,0,149.6758,0,0,0,3,16,3,86.2,6.9,0,83,0,0,0,0,1.098612,0,0,0,0,1,0,0,83,9.345768,1.098612,5.008472,1
-11,2,0,0,5,226239,0,11449.27,28.27926,1,15,1,76.68145,3.252033,0,0,1115.484,1195.418,1,0,0,0,9,3,86.2,6.9,0,83,0,0,0,0,1.098612,0,0,0,0,1,0,0,83,9.345768,1.098612,7.086251,1
-11,2,0,0,1,226240,0,11449.27,27.6167,0,17,1,54.81639,0,0,0,0,54.81639,0,0,0,2,0,2,79.3,3.4,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.345768,.6931472,4.003989,1
-11,2,0,0,2,226240,0,11449.27,28.6167,0,17,1,101.3088,7.523025,0,0,0,108.8318,0,0,0,3,7,2,79.3,3.4,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.345768,.6931472,4.689804,1
-11,2,0,0,3,226240,0,11449.27,29.6167,0,17,1,102.9874,0,0,0,0,102.9874,0,0,0,1,7,2,79.3,3.4,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.345768,.6931472,4.634607,1
-11,2,0,0,4,226240,0,11449.27,30.6167,0,17,1,108.7403,0,0,0,0,108.7403,0,0,0,1,15,3,79.3,3.4,0,65.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,65.9,9.345768,1.098612,4.688962,1
-11,2,0,0,5,226240,0,11449.27,31.6167,0,17,1,109.2018,0,0,0,0,109.2018,0,0,0,2,6,3,79.3,3.4,0,65.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,65.9,9.345768,1.098612,4.693197,1
-13,2,0,1,1,226248,0,9796.48,24.50924,1,15,1,14.29328,0,0,0,0,14.29328,0,0,0,1,0,2,79.8,20.7,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.18988,.6931472,2.659789,1
-13,2,0,1,2,226248,0,9796.48,25.50924,1,15,1,21.23552,11.3417,35.71429,0,0,68.2915,0,0,0,1,1,2,79.8,20.7,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.18988,.6931472,4.223785,1
-13,2,0,1,3,226248,0,9796.48,26.50924,1,15,1,40.94348,6.987094,0,0,521.6733,569.6039,1,0,0,1,0,2,79.8,20.7,0,90.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.18988,.6931472,6.344941,1
-13,2,0,1,4,226248,0,9796.48,27.50924,1,15,1,15.98211,16.02277,0,0,0,32.00488,0,0,0,1,0,3,79.8,20.7,0,90.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.18988,1.098612,3.465888,1
-13,2,0,1,5,226248,0,9796.48,28.50924,1,15,1,73.68035,23.75,30.05865,0,9379.772,9507.262,2,0,0,6,1,3,79.8,20.7,0,90.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,90.9,9.18988,1.098612,9.159811,1
-13,2,0,1,1,226249,0,9796.48,25.51129,0,15,1,5.293806,2.038116,0,0,0,7.331922,0,0,0,1,0,2,86.7,3.4,0,70.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.5,9.18988,.6931472,1.992238,1
-13,2,0,1,2,226249,0,9796.48,26.51129,0,15,1,46.33205,0,0,0,0,46.33205,0,0,0,4,0,2,86.7,3.4,0,70.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.5,9.18988,.6931472,3.835834,1
-13,2,0,1,3,226249,0,9796.48,27.51129,0,15,1,58.96751,2.00267,0,0,0,60.97018,0,0,0,2,0,2,86.7,3.4,0,70.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.5,9.18988,.6931472,4.110385,1
-13,2,0,1,4,226249,0,9796.48,28.51129,0,15,1,6.10004,0,0,0,0,6.10004,0,0,0,1,0,3,86.7,3.4,0,70.5,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.5,9.18988,1.098612,1.808295,1
-13,2,0,1,5,226249,0,9796.48,29.51129,0,15,1,56.26833,0,0,0,0,56.26833,0,0,0,3,0,3,86.7,3.4,0,70.5,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.5,9.18988,1.098612,4.030132,1
-13,2,0,1,1,226261,0,5978.299,27.49897,0,12,1,13.83715,2.751464,0,0,0,16.58861,0,0,0,1,0,2,73.4,3.4,0,77.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,77.4,8.696058,.6931472,2.808716,1
-13,2,0,1,2,226261,0,5978.299,28.49897,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.4,3.4,0,77.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,77.4,8.696058,.6931472,,0
-13,2,0,1,3,226261,0,5978.299,29.49897,0,12,1,20.21563,1.334232,0,0,0,21.54987,0,0,0,1,0,2,73.4,3.4,0,77.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,77.4,8.696058,.6931472,3.070369,1
-13,2,0,1,1,226262,0,5978.299,27.34018,1,12,1,43.90633,15.70516,0,0,0,59.6115,0,0,0,2,0,2,78.2,17.2,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,64.8,8.696058,.6931472,4.087849,1
-13,2,0,1,2,226262,0,5978.299,28.34018,1,12,1,92.09888,3.829375,0,0,0,95.92826,0,0,0,5,0,2,78.2,17.2,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,64.8,8.696058,.6931472,4.563601,1
-13,2,0,1,3,226262,0,5978.299,29.34018,1,12,1,142.1833,0,0,0,0,142.1833,0,0,0,8,0,2,78.2,17.2,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,64.8,8.696058,.6931472,4.957117,1
-13,2,0,1,1,226281,0,11672.14,52.04928,1,12,1,81.42629,23.38478,60.42576,0,0,165.2368,0,0,0,16,0,2,81.9,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,93.2,9.365046,.6931472,5.10738,1
-13,2,0,1,2,226281,0,11672.14,53.04928,1,12,1,11.63354,5.487154,0,0,0,17.1207,0,0,0,3,0,2,81.9,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,93.2,9.365046,.6931472,2.840288,1
-13,2,0,1,3,226281,0,11672.14,54.04928,1,12,1,122.3046,3.993711,69.51033,0,0,195.8086,0,0,0,6,0,2,81.9,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,93.2,9.365046,.6931472,5.277138,1
-13,2,0,1,1,226282,0,11672.14,48.86516,0,14,1,57.74348,27.38159,0,0,0,85.12507,0,0,0,12,0,2,92.6,10.3,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.365046,.6931472,4.444121,1
-13,2,0,1,2,226282,0,11672.14,49.86516,0,14,1,37.80902,30.77557,0,0,0,68.58459,0,0,0,6,0,2,92.6,10.3,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.365046,.6931472,4.228068,1
-13,2,0,1,3,226282,0,11672.14,50.86516,0,14,1,10.78167,3.324349,0,0,0,14.10602,0,0,0,3,0,2,92.6,10.3,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.365046,.6931472,2.646602,1
-11,2,0,1,1,226326,0,1,3.19781,0,13,1,55.88079,32.82065,0,0,0,88.70144,0,0,0,7,0,4,81.35272,11.84267,0,63,0,0,1,0,1.386294,0,0,0,0,0,0,0,63,.6931472,1.386294,4.485276,1
-11,2,0,1,2,226326,0,1,4.19781,0,13,1,55.28357,16.81047,0,0,0,72.09404,0,0,0,5,1,5,81.35272,11.84267,0,63,0,0,1,0,1.609438,0,0,0,0,0,0,0,63,.6931472,1.609438,4.277971,1
-11,2,0,1,3,226326,0,1,5.19781,0,13,1,60.87152,4.725966,0,0,0,65.59748,0,0,0,4,1,5,81.35272,11.84267,0,63,0,0,1,0,1.609438,0,0,0,0,0,0,0,63,.6931472,1.609438,4.183537,1
-11,2,0,1,1,226327,0,1,25.16906,0,14,1,22.83129,11.90527,0,0,0,34.73656,0,0,0,3,0,4,44.7,6.9,0,63.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,63.6,.6931472,1.386294,3.547793,1
-11,2,0,1,2,226327,0,1,26.16906,0,14,1,13.3301,6.325739,0,0,0,19.65584,0,0,0,2,0,5,44.7,6.9,0,63.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.6,.6931472,1.609438,2.978374,1
-11,2,0,1,3,226327,0,1,27.16906,0,14,1,0,2.35849,0,0,0,2.35849,0,0,0,0,0,5,44.7,6.9,0,63.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.6,.6931472,1.609438,.8580218,1
-11,2,0,1,1,226328,0,1,1.793292,1,13,1,71.84673,8.610963,0,0,0,80.45769,0,0,0,8,0,4,81.35272,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,.6931472,1.386294,4.387732,1
-11,2,0,1,2,226328,0,1,2.793292,1,13,1,97.30975,15.10422,0,0,0,112.414,0,0,0,9,1,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,.6931472,1.609438,4.722188,1
-11,2,0,1,3,226328,0,1,3.793292,1,13,1,58.71518,9.950584,0,0,0,68.66577,0,0,0,7,1,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,.6931472,1.609438,4.229251,1
-11,2,0,1,1,226329,0,1,23.74264,1,13,1,196.8866,109.7126,15.96594,0,742.0969,1064.662,1,0,0,8,6,4,50,17.2,0,44.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,44.3,.6931472,1.386294,6.970413,1
-11,2,0,1,2,226329,0,1,24.74264,1,13,1,165.681,25.54532,0,9.694619,0,191.2264,0,0,1,11,9,5,50,17.2,0,44.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,44.3,.6931472,1.609438,5.253458,1
-11,2,0,1,3,226329,0,1,25.74264,1,13,1,127.7628,54.35759,17.96945,67.38544,670.6199,870.7098,1,0,4,7,11,5,50,17.2,0,44.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,44.3,.6931472,1.609438,6.769309,1
-11,2,0,1,1,226330,0,10835.19,32.96099,1,12,1,69.35225,34.41114,0,0,0,103.7634,0,0,0,4,0,4,77.1,17.2,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,9.290647,1.386294,4.642113,1
-11,2,0,1,2,226330,0,10835.19,33.96099,1,12,1,168.7164,7.115666,0,0,0,175.8321,0,0,0,5,0,4,77.1,17.2,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,9.290647,1.386294,5.169529,1
-11,2,0,1,3,226330,0,10835.19,34.96099,1,12,1,242.1635,46.01626,0,0,0,288.1798,0,0,0,14,1,4,77.1,17.2,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,9.290647,1.386294,5.663585,1
-11,2,0,1,4,226330,0,10835.19,35.96099,1,12,1,23.5732,13.68486,0,0,0,37.25806,0,0,0,2,0,4,77.1,17.2,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,9.290647,1.386294,3.617868,1
-11,2,0,1,5,226330,0,10835.19,36.96099,1,12,1,38.37556,26.97839,0,0,0,65.35395,0,0,0,5,0,4,77.1,17.2,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,9.290647,1.386294,4.179818,1
-11,2,0,1,1,226331,0,10835.19,33.16085,0,10,1,102.7837,0,36.18308,0,525.9368,664.9036,1,0,0,8,1,4,70.7,6.9,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.290647,1.386294,6.499642,1
-11,2,0,1,2,226331,0,10835.19,34.16085,0,10,1,172.4012,1.70327,.9760859,0,0,175.0805,0,0,0,4,0,4,70.7,6.9,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.290647,1.386294,5.165246,1
-11,2,0,1,3,226331,0,10835.19,35.16085,0,10,1,54.90063,8.888889,62.58356,0,0,126.3731,0,0,0,3,2,4,70.7,6.9,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.290647,1.386294,4.839239,1
-11,2,0,1,4,226331,0,10835.19,36.16085,0,10,1,54.17701,0,0,0,0,54.17701,0,0,0,0,4,4,70.7,6.9,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.290647,1.386294,3.992257,1
-11,2,0,1,5,226331,0,10835.19,37.16085,0,10,1,181.0209,6.71386,0,0,0,187.7347,0,0,0,3,6,4,70.7,6.9,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.290647,1.386294,5.23503,1
-11,2,0,1,1,226332,0,10835.19,6.822724,1,12,1,47.10921,3.297645,0,0,0,50.40685,0,0,0,5,0,4,70,11.84267,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.290647,1.386294,3.920127,1
-11,2,0,1,2,226332,0,10835.19,7.822724,1,12,1,92.97218,15.78819,0,0,0,108.7604,0,0,0,7,1,4,70,11.84267,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.290647,1.386294,4.689147,1
-11,2,0,1,3,226332,0,10835.19,8.822724,1,12,1,42.00542,3.292683,0,0,0,45.2981,0,0,0,3,1,4,70,11.84267,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.290647,1.386294,3.813265,1
-11,2,0,1,4,226332,0,10835.19,9.822724,1,12,1,35.77337,1.393714,0,0,0,37.16708,0,0,0,2,1,4,70,11.84267,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.290647,1.386294,3.615423,1
-11,2,0,1,5,226332,0,10835.19,10.82272,1,12,1,30.36513,0,0,0,0,30.36513,0,0,0,4,0,4,70,11.84267,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.290647,1.386294,3.413295,1
-11,2,0,1,1,226333,0,10835.19,3.047228,1,12,1,49.25053,4.85546,0,0,0,54.106,0,0,0,5,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,9.290647,1.386294,3.990945,1
-11,2,0,1,2,226333,0,10835.19,4.047228,1,12,1,144.2167,5.998048,0,0,0,150.2147,0,0,0,6,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,9.290647,1.386294,5.012066,1
-11,2,0,1,3,226333,0,10835.19,5.047228,1,12,1,149.6161,31.57633,0,0,0,181.1924,0,0,0,11,1,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,9.290647,1.386294,5.19956,1
-11,2,0,1,4,226333,0,10835.19,6.047228,1,12,1,119.7271,0,30.14061,0,0,149.8677,0,0,0,5,2,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,9.290647,1.386294,5.009753,1
-11,2,0,1,5,226333,0,10835.19,7.047228,1,12,1,124.6088,9.418778,0,0,0,134.0276,0,0,0,9,1,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,9.290647,1.386294,4.898046,1
-13,2,0,1,1,226349,0,10812.9,54.65845,1,12,1,5.227392,5.723994,0,0,0,10.95139,0,0,0,1,0,2,74.5,13.8,0,79.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,79.5,9.288588,.6931472,2.393466,1
-13,2,0,1,2,226349,0,10812.9,55.65845,1,12,1,22.58529,0,0,0,0,22.58529,0,0,0,2,0,2,74.5,13.8,0,79.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,79.5,9.288588,.6931472,3.117299,1
-13,2,0,1,3,226349,0,10812.9,56.65845,1,12,1,0,5.264317,0,0,0,5.264317,0,0,0,0,0,2,74.5,13.8,0,79.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,79.5,9.288588,.6931472,1.660951,1
-13,2,0,1,1,226350,0,10812.9,54.40657,0,12,1,134.344,0,0,0,0,134.344,0,0,0,3,0,2,89.4,10.3,0,87.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,87.5,9.288588,.6931472,4.900403,1
-13,2,0,1,2,226350,0,10812.9,55.40657,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.4,10.3,0,87.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,87.5,9.288588,.6931472,,0
-13,2,0,1,3,226350,0,10812.9,56.40657,0,12,1,332.4229,1.85022,0,0,0,334.2731,0,0,0,3,0,2,89.4,10.3,0,87.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,87.5,9.288588,.6931472,5.811958,1
-19,2,25,1,1,226362,0,14273.9,31.54278,1,13,1,16.17251,0,0,0,0,16.17251,0,0,0,1,0,2,84,17.2,1,87.5,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,87.5,9.566258,.6931472,2.783313,1
-19,2,25,1,2,226362,0,14273.9,32.54278,1,13,1,18.67322,0,0,0,0,18.67322,0,0,0,2,0,2,84,17.2,1,87.5,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,87.5,9.566258,.6931472,2.92709,1
-19,2,25,1,3,226362,0,14273.9,33.54278,1,13,1,21.42206,0,193.7101,22.78942,0,215.1322,0,0,1,1,0,2,84,17.2,1,87.5,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,87.5,9.566258,.6931472,5.371253,1
-19,2,25,1,1,226363,0,14273.9,32.34223,0,13,1,66.469,4.447439,0,0,0,70.91644,0,0,0,3,0,2,91,10.3,1,76.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,76.1,9.566258,.6931472,4.261502,1
-19,2,25,1,2,226363,0,14273.9,33.34223,0,13,1,407.1253,0,0,0,0,407.1253,0,0,0,3,44,2,91,10.3,1,76.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,76.1,9.566258,.6931472,6.009121,1
-19,2,25,1,3,226363,0,14273.9,34.34223,0,13,1,120.784,0,0,0,444.371,565.155,1,0,0,15,0,2,91,10.3,1,76.1,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,76.1,9.566258,.6931472,6.3371,1
-5,2,25,1,1,226406,0,8234.604,53.5113,0,16,1,92.07709,4.443255,166.6542,0,0,263.1745,0,0,0,6,0,4,71.8,24.1,1,73.9,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,73.9,9.016222,1.386294,5.572817,1
-5,2,25,1,2,226406,0,8234.604,54.5113,0,16,1,23.42606,9.292337,15.50512,0,0,48.22352,0,0,0,2,0,4,71.8,24.1,1,73.9,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,73.9,9.016222,1.386294,3.875847,1
-5,2,25,1,3,226406,0,8234.604,55.5113,0,16,1,139.5664,19.06052,0,0,0,158.6269,0,0,0,5,0,4,71.8,24.1,1,73.9,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,73.9,9.016222,1.386294,5.066555,1
-5,2,25,1,1,226407,0,8234.604,50.46407,1,12,1,26.23126,30.25696,3.238758,0,0,59.72698,0,0,0,2,0,4,66,24.1,1,78.4,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,78.4,9.016222,1.386294,4.089784,1
-5,2,25,1,2,226407,0,8234.604,51.46407,1,12,1,37.45729,33.8897,42.9673,0,0,114.3143,0,0,0,3,0,4,66,24.1,1,78.4,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,78.4,9.016222,1.386294,4.738952,1
-5,2,25,1,3,226407,0,8234.604,52.46407,1,12,1,189.1373,34.19151,0,0,0,223.3288,0,0,0,5,0,4,66,24.1,1,78.4,701.4,701.4,0,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,78.4,9.016222,1.386294,5.408645,1
-5,2,25,1,1,226408,0,8234.604,11.99179,0,12,1,38.5439,0,0,0,0,38.5439,0,0,0,3,0,4,73.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,3.651798,1
-5,2,25,1,2,226408,0,8234.604,12.99179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,,0
-5,2,25,1,3,226408,0,8234.604,13.99179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,,0
-5,2,25,1,1,226409,0,8234.604,10.53251,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,,0
-5,2,25,1,2,226409,0,8234.604,11.53251,0,12,1,17.32553,1.752074,0,0,0,19.0776,0,0,0,1,0,4,78.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,2.948515,1
-5,2,25,1,3,226409,0,8234.604,12.53251,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,11.84267,0,77.8,701.4,701.4,1,0,1.386294,6.553078,0,3.258096,7.939373,0,0,0,77.8,9.016222,1.386294,,0
-11,2,0,1,1,226420,0,8005.279,51.96988,1,12,1,70.51624,74.06599,49.26557,0,0,193.8478,0,0,0,5,1,2,80.3,34.5,1,70.5,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,70.5,8.987982,.6931472,5.267073,1
-11,2,0,1,2,226420,0,8005.279,52.96988,1,12,1,257.0528,67.14494,19.38924,0,0,343.587,0,0,0,7,6,2,80.3,34.5,1,70.5,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,70.5,8.987982,.6931472,5.83944,1
-11,2,0,1,3,226420,0,8005.279,53.96988,1,12,1,97.25966,75.24708,36.66667,0,0,209.1734,0,0,0,8,6,2,80.3,34.5,1,70.5,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,70.5,8.987982,.6931472,5.343163,1
-11,2,0,1,1,226421,0,8005.279,55.30185,0,12,1,190.3938,6.546035,38.87706,0,0,235.8169,0,0,0,5,0,2,80.9,6.9,1,60.2,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,60.2,8.987982,.6931472,5.463056,1
-11,2,0,1,2,226421,0,8005.279,56.30185,0,12,1,239.5783,16.15124,2.985943,0,1630.296,1889.011,2,0,0,9,1,2,80.9,6.9,1,60.2,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,60.2,8.987982,.6931472,7.543809,1
-11,2,0,1,3,226421,0,8005.279,57.30185,0,12,1,42.22821,11.48697,47.22372,0,0,100.9389,0,0,0,3,1,2,80.9,6.9,1,60.2,0,398.64,0,0,.6931472,5.988059,0,0,0,1,0,0,60.2,8.987982,.6931472,4.614515,1
-14,2,95,0,1,226422,0,10179.47,38.19028,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,0,0,78.4,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,78.4,9.228227,1.609438,,0
-14,2,95,0,2,226422,0,10179.47,39.19028,0,12,1,21.13022,0,8.457003,0,0,29.58722,0,0,0,1,1,5,86.2,0,0,78.4,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,78.4,9.228227,1.609438,3.387343,1
-14,2,95,0,3,226422,0,10179.47,40.19028,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,0,0,78.4,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,78.4,9.228227,1.609438,,0
-14,2,95,0,4,226422,0,10179.47,41.19028,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,86.2,0,0,78.4,835.7,835.7,0,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,78.4,9.228227,1.791759,,0
-14,2,95,0,5,226422,0,10179.47,42.19028,0,12,1,132.4081,0,35.10503,0,0,167.5131,0,0,0,1,19,6,86.2,0,0,78.4,835.7,835.7,0,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,78.4,9.228227,1.791759,5.121062,1
-14,2,95,0,1,226423,0,10179.47,9.848049,0,12,1,17.78976,0,0,0,0,17.78976,0,0,0,1,0,5,86.7,11.84267,0,63,835.7,835.7,1,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63,9.228227,1.609438,2.878623,1
-14,2,95,0,2,226423,0,10179.47,10.84805,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,63,835.7,835.7,1,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63,9.228227,1.609438,,0
-14,2,95,0,3,226423,0,10179.47,11.84805,0,12,1,24.63537,0,0,0,0,24.63537,0,0,0,1,0,5,86.7,11.84267,0,63,835.7,835.7,1,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63,9.228227,1.609438,3.204183,1
-14,2,95,0,4,226423,0,10179.47,12.84805,0,12,1,8.336807,1.621509,0,0,0,9.958316,0,0,0,1,0,6,86.7,11.84267,0,63,835.7,835.7,1,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,63,9.228227,1.791759,2.298408,1
-14,2,95,0,5,226423,0,10179.47,13.84805,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,11.84267,0,63,835.7,835.7,1,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,63,9.228227,1.791759,,0
-14,2,95,0,1,226424,0,10179.47,12.82683,1,12,1,16.17251,0,0,0,0,16.17251,0,0,0,2,0,5,68.3,11.84267,0,66.7,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,66.7,9.228227,1.609438,2.783313,1
-14,2,95,0,2,226424,0,10179.47,13.82683,1,12,1,69.70516,0,0,0,0,69.70516,0,0,0,3,0,5,68.3,11.84267,0,66.7,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,66.7,9.228227,1.609438,4.244274,1
-14,2,95,0,3,226424,0,10179.47,14.82683,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,68.3,11.84267,0,66.7,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,66.7,9.228227,1.609438,,0
-14,2,95,0,4,226424,0,10179.47,15.82683,1,12,1,22.50938,0,0,0,0,22.50938,0,0,0,1,0,6,68.3,11.84267,0,66.7,835.7,835.7,1,1,1.791759,6.72827,0,4.564348,6.779563,0,0,0,66.7,9.228227,1.791759,3.113932,1
-14,2,95,0,5,226424,0,10179.47,16.82683,1,12,1,67.81696,2.044261,0,0,0,69.86121,0,0,0,4,0,6,68.3,11.84267,0,66.7,835.7,835.7,1,1,1.791759,6.72827,0,4.564348,6.779563,0,0,0,66.7,9.228227,1.791759,4.246511,1
-14,2,95,0,1,226425,0,10179.47,11.04723,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,53.3,11.84267,0,59.3,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,59.3,9.228227,1.609438,,0
-14,2,95,0,2,226425,0,10179.47,12.04723,1,12,1,14.1769,0,0,0,0,14.1769,0,0,0,1,0,5,53.3,11.84267,0,59.3,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,59.3,9.228227,1.609438,2.651614,1
-14,2,95,0,3,226425,0,10179.47,13.04723,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,53.3,11.84267,0,59.3,835.7,835.7,1,1,1.609438,6.72827,0,4.564348,6.779563,0,0,0,59.3,9.228227,1.609438,,0
-14,2,95,0,4,226425,0,10179.47,14.04723,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,53.3,11.84267,0,59.3,835.7,835.7,1,1,1.791759,6.72827,0,4.564348,6.779563,0,0,0,59.3,9.228227,1.791759,,0
-14,2,95,0,5,226425,0,10179.47,15.04723,1,12,1,110.6527,0,0,0,0,110.6527,0,0,0,0,16,6,53.3,11.84267,0,59.3,835.7,835.7,1,1,1.791759,6.72827,0,4.564348,6.779563,0,0,0,59.3,9.228227,1.791759,4.706396,1
-14,2,95,0,1,226426,0,10179.47,35.66872,1,12,1,90.56604,24.92183,0,0,0,115.4879,0,0,0,6,1,5,76.1,10.3,1,63.6,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63.6,9.228227,1.609438,4.749166,1
-14,2,95,0,2,226426,0,10179.47,36.66872,1,12,1,48.64865,11.5774,0,0,0,60.22604,0,0,0,2,0,5,76.1,10.3,1,63.6,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63.6,9.228227,1.609438,4.098105,1
-14,2,95,0,3,226426,0,10179.47,37.66872,1,12,1,121.5816,11.35825,0,0,626.495,759.4348,1,0,0,1,0,5,76.1,10.3,1,63.6,835.7,835.7,0,0,1.609438,6.72827,0,4.564348,6.779563,0,0,0,63.6,9.228227,1.609438,6.632575,1
-14,2,95,0,4,226426,0,10179.47,38.66872,1,12,1,252.0842,15.49396,0,0,1586.094,1853.672,1,0,0,4,29,6,76.1,10.3,1,63.6,835.7,835.7,0,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,63.6,9.228227,1.791759,7.524924,1
-14,2,95,0,5,226426,0,10179.47,39.66872,1,12,1,363.3721,45.65266,.6564141,0,0,409.6812,0,0,0,8,12,6,76.1,10.3,1,63.6,835.7,835.7,0,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,63.6,9.228227,1.791759,6.015379,1
-11,2,0,1,1,226428,0,12289.74,30.61465,1,13,1,93.80054,15.23989,29.22911,0,0,138.2695,0,0,0,5,1,1,84,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,9.416601,0,4.929205,1
-11,2,0,1,2,226428,0,12289.74,31.61465,1,13,1,13.26781,9.43489,0,0,1058.305,1081.007,1,0,0,2,0,1,84,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,9.416601,0,6.985649,1
-11,2,0,1,3,226428,0,12289.74,32.61465,1,13,1,11.39471,0,35.90702,0,0,47.30173,0,0,0,0,1,1,84,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,9.416601,0,3.856547,1
-11,2,0,1,4,226428,0,12289.74,33.61465,1,13,1,113.3806,0,0,0,0,113.3806,0,0,0,5,0,1,84,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,9.416601,0,4.73075,1
-11,2,0,1,5,226428,0,12289.74,34.61465,1,13,1,145.1613,0,0,0,0,145.1613,0,0,0,2,19,1,84,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,9.416601,0,4.977846,1
-13,2,0,1,1,226432,0,13241.06,40.78302,0,12,1,134.7698,0,2.67666,0,282.3608,419.8073,1,0,0,7,0,3,79.8,6.9,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,67,9.491153,1.098612,6.039796,1
-13,2,0,1,2,226432,0,13241.06,41.78302,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,6.9,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,67,9.491153,1.098612,,0
-13,2,0,1,3,226432,0,13241.06,42.78302,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,6.9,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,67,9.491153,1.098612,,0
-13,2,0,1,1,226433,0,13241.06,11.5729,1,12,1,13.65096,0,0,0,0,13.65096,0,0,0,1,0,3,93.3,11.84267,0,100,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,9.491153,1.098612,2.61381,1
-13,2,0,1,2,226433,0,13241.06,12.5729,1,12,1,13.17716,0,0,0,0,13.17716,0,0,0,1,0,3,93.3,11.84267,0,100,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,9.491153,1.098612,2.578485,1
-13,2,0,1,3,226433,0,13241.06,13.5729,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.3,11.84267,0,100,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,9.491153,1.098612,,0
-13,2,0,1,1,226434,0,13241.06,39.13758,1,12,1,16.05996,0,38.27088,0,0,54.33083,0,0,0,1,0,3,87.8,3.4,0,96.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.491153,1.098612,3.995092,1
-13,2,0,1,2,226434,0,13241.06,40.13758,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,87.8,3.4,0,96.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.491153,1.098612,,0
-13,2,0,1,3,226434,0,13241.06,41.13758,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,87.8,3.4,0,96.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.491153,1.098612,,0
-13,2,0,1,1,226456,0,12642.23,21.99863,1,14,1,47.97844,41.94609,0,51.21294,0,89.92453,0,0,2,2,0,3,70.7,3.4,0,60.2,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,1,0,0,60.2,9.444877,1.098612,4.498971,1
-13,2,0,1,2,226456,0,12642.23,22.99863,1,14,1,51.52334,12.23096,0,0,0,63.7543,0,0,0,3,0,3,70.7,3.4,0,60.2,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,1,0,0,60.2,9.444877,1.098612,4.155036,1
-13,2,0,1,1,226457,0,12642.23,47.48528,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.1,6.9,0,97.7,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,0,0,0,97.7,9.444877,1.098612,,0
-13,2,0,1,2,226457,0,12642.23,48.48528,0,12,1,24.07862,0,0,0,0,24.07862,0,0,0,0,1,3,93.1,6.9,0,97.7,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,0,0,0,97.7,9.444877,1.098612,3.181324,1
-13,2,0,1,3,226457,0,12642.23,49.48528,0,12,1,24.15679,0,40.22789,0,0,64.38468,0,0,0,2,0,2,93.1,6.9,0,97.7,450,437,0,0,.6931472,6.079933,1,4.564348,6.160541,0,0,0,97.7,9.444877,.6931472,4.164876,1
-13,2,0,1,1,226458,0,12642.23,47.87406,1,13,1,12.39892,0,31.71968,0,0,44.1186,0,0,0,0,1,3,91.5,3.4,0,96.6,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,0,0,0,96.6,9.444877,1.098612,3.786881,1
-13,2,0,1,2,226458,0,12642.23,48.87406,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,91.5,3.4,0,96.6,450,437,0,0,1.098612,6.079933,1,4.564348,6.160541,0,0,0,96.6,9.444877,1.098612,,0
-13,2,0,1,3,226458,0,12642.23,49.87406,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,3.4,0,96.6,450,437,0,0,.6931472,6.079933,1,4.564348,6.160541,0,0,0,96.6,9.444877,.6931472,,0
-16,2,95,1,1,226459,0,6233.138,29.96304,1,9,1,197.6713,16.01178,0,0,539.4807,753.1638,1,0,0,4,0,2,74.3,10.3,1,85.2,796.8,796.8,0,0,.6931472,6.680604,0,4.564348,6.731897,1,0,0,85.2,8.737796,.6931472,6.624283,1
-16,2,95,1,2,226459,0,6233.138,30.96304,1,9,1,108.5407,9.297218,0,0,1767.472,1885.31,1,0,0,4,0,2,74.3,10.3,1,85.2,796.8,796.8,0,0,.6931472,6.680604,0,4.564348,6.731897,1,0,0,85.2,8.737796,.6931472,7.541848,1
-16,2,95,1,3,226459,0,6233.138,31.96304,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,74.3,10.3,1,85.2,796.8,796.8,0,0,.6931472,6.680604,0,4.564348,6.731897,1,0,0,85.2,8.737796,.6931472,,0
-16,2,95,1,1,226461,0,6233.138,12.20808,0,9,1,58.43148,3.61349,0,82.36082,0,62.04497,0,0,2,2,0,2,76.7,11.84267,0,88.9,796.8,796.8,1,0,.6931472,6.680604,0,4.564348,6.731897,0,0,0,88.9,8.737796,.6931472,4.12786,1
-16,2,95,1,2,226461,0,6233.138,13.20808,0,9,1,35.01708,5.583211,0,0,0,40.60029,0,0,0,1,0,2,76.7,11.84267,0,88.9,796.8,796.8,1,0,.6931472,6.680604,0,4.564348,6.731897,0,0,0,88.9,8.737796,.6931472,3.703775,1
-16,2,95,1,3,226461,0,6233.138,14.20808,0,9,1,22.7823,0,0,0,0,22.7823,0,0,0,1,0,2,76.7,11.84267,0,88.9,796.8,796.8,1,0,.6931472,6.680604,0,4.564348,6.731897,0,0,0,88.9,8.737796,.6931472,3.125984,1
-11,2,0,0,1,226476,0,197.654,21.94935,0,14,1,269.8518,35.8073,0,0,608.7348,914.3939,1,0,0,13,1,1,73.9,6.9,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,5.291564,0,6.818262,1
-11,2,0,0,2,226476,0,197.654,22.94935,0,14,1,55.26062,5.733591,0,0,0,60.99421,0,0,0,7,0,1,73.9,6.9,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,5.291564,0,4.110779,1
-11,2,0,0,3,226476,0,197.654,23.94935,0,14,1,86.11482,2.12283,35.3271,0,0,123.5648,0,0,0,5,1,1,73.9,6.9,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,5.291564,0,4.816765,1
-16,2,95,0,1,226520,0,10697.95,4.566735,1,13,1,31.26685,15.05121,0,0,0,46.31806,0,0,0,4,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,3.835532,1
-16,2,95,0,2,226520,0,10697.95,5.566735,1,13,1,61.91646,2.334152,0,0,0,64.25062,0,0,0,2,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,4.162791,1
-16,2,95,0,3,226520,0,10697.95,6.566735,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,,0
-16,2,95,0,1,226521,0,10697.95,36.08487,1,13,1,6.469003,6.026954,0,0,0,12.49596,0,0,0,1,0,4,91,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.277901,1.386294,2.525405,1
-16,2,95,0,2,226521,0,10697.95,37.08487,1,13,1,147.9115,27.39558,7.764128,0,0,183.0713,0,0,0,6,0,4,91,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.277901,1.386294,5.209876,1
-16,2,95,0,3,226521,0,10697.95,38.08487,1,13,1,29.85415,9.106654,0,0,0,38.9608,0,0,0,2,0,4,91,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.277901,1.386294,3.662556,1
-16,2,95,0,1,226522,0,10697.95,30.57906,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,92,6.9,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.277901,1.386294,,0
-16,2,95,0,2,226522,0,10697.95,31.57906,0,11,1,36.85504,12.77641,0,0,0,49.63145,0,0,0,2,0,4,92,6.9,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.277901,1.386294,3.904625,1
-16,2,95,0,3,226522,0,10697.95,32.57906,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,92,6.9,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.277901,1.386294,,0
-16,2,95,0,1,226523,0,10697.95,3.15948,1,13,1,12.85714,0,0,0,0,12.85714,0,0,0,1,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,2.5539,1
-16,2,95,0,2,226523,0,10697.95,4.15948,1,13,1,6.879607,1.371007,0,0,0,8.250614,0,0,0,1,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,2.110288,1
-16,2,95,0,3,226523,0,10697.95,5.15948,1,13,1,18.23154,4.412033,0,0,0,22.64357,0,0,0,2,0,4,81.35272,11.84267,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.277901,1.386294,3.119876,1
-14,2,95,1,1,226530,0,8665.641,1.089665,0,16,1,33.19058,1.445396,0,0,0,34.63597,0,0,0,1,0,4,81.35272,11.84267,0,81.5,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,81.5,9.067237,1.386294,3.544893,1
-14,2,95,1,2,226530,0,8665.641,2.089665,0,16,1,34.16301,0,0,0,0,34.16301,0,0,0,2,0,4,81.35272,11.84267,0,81.5,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,81.5,9.067237,1.386294,3.531143,1
-14,2,95,1,3,226530,0,8665.641,3.089665,0,16,1,9.936766,0,0,0,0,9.936766,0,0,0,1,0,4,81.35272,11.84267,0,81.5,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,81.5,9.067237,1.386294,2.296242,1
-14,2,95,1,1,226531,0,8665.641,30.43942,1,16,1,98.50107,0,0,0,0,98.50107,0,0,0,3,0,4,87.2,20.7,0,88.6,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.6,9.067237,1.386294,4.590067,1
-14,2,95,1,2,226531,0,8665.641,31.43942,1,16,1,3.416301,0,0,0,0,3.416301,0,0,0,0,0,4,87.2,20.7,0,88.6,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.6,9.067237,1.386294,1.228558,1
-14,2,95,1,3,226531,0,8665.641,32.43943,1,16,1,27.10027,0,0,0,0,27.10027,0,0,0,1,0,4,87.2,20.7,0,88.6,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.6,9.067237,1.386294,3.299544,1
-14,2,95,1,1,226532,0,8665.641,33.71389,0,22,1,97.4304,21.54711,3.211992,0,0,122.1895,0,0,0,6,0,4,87.2,6.9,0,68.2,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,68.2,9.067237,1.386294,4.805573,1
-14,2,95,1,2,226532,0,8665.641,34.71389,0,22,1,8.29673,0,0,0,0,8.29673,0,0,0,1,0,4,87.2,6.9,0,68.2,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,68.2,9.067237,1.386294,2.115861,1
-14,2,95,1,3,226532,0,8665.641,35.71389,0,22,1,0,0,0,0,0,0,0,0,0,0,0,4,87.2,6.9,0,68.2,999.95,216,0,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,68.2,9.067237,1.386294,,0
-14,2,95,1,1,226533,0,8665.641,5.80972,0,16,1,146.4668,3.185225,0,0,0,149.652,0,0,0,3,0,4,83.3,11.84267,0,88.9,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.9,9.067237,1.386294,5.008313,1
-14,2,95,1,2,226533,0,8665.641,6.80972,0,16,1,8.29673,0,0,0,0,8.29673,0,0,0,1,0,4,83.3,11.84267,0,88.9,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.9,9.067237,1.386294,2.115861,1
-14,2,95,1,3,226533,0,8665.641,7.80972,0,16,1,9.936766,0,0,0,0,9.936766,0,0,0,1,0,4,83.3,11.84267,0,88.9,999.95,216,1,0,1.386294,5.375278,0,4.564348,6.958999,0,0,0,88.9,9.067237,1.386294,2.296242,1
-11,2,0,0,1,226551,0,8807.625,17.23477,1,10,1,37.60948,0,31.73107,0,0,69.34055,0,0,0,4,1,4,81.9,6.9,0,61.4,0,58.2,1,1,1.386294,4.063885,0,0,0,1,0,0,61.4,9.083487,1.386294,4.23903,1
-11,2,0,0,2,226551,0,8807.625,18.23477,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,6.9,0,61.4,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,61.4,9.083487,1.386294,,0
-11,2,0,0,3,226551,0,8807.625,19.23477,1,10,1,82.57478,0,0,0,0,82.57478,0,0,0,4,1,4,81.9,6.9,0,61.4,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,61.4,9.083487,1.386294,4.413704,1
-11,2,0,0,1,226552,0,8807.625,41.84805,0,3,1,193.1994,8.799588,45.12622,0,0,247.1252,0,0,0,8,2,4,86.2,17.2,0,50,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,50,9.083487,1.386294,5.509895,1
-11,2,0,0,2,226552,0,8807.625,42.84805,0,3,1,13.73106,0,0,0,257.5757,271.3068,1,0,0,1,1,4,86.2,17.2,0,50,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,50,9.083487,1.386294,5.603251,1
-11,2,0,0,3,226552,0,8807.625,43.84805,0,3,1,55.91677,0,51.92024,0,0,107.837,0,0,0,2,1,4,86.2,17.2,0,50,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,50,9.083487,1.386294,4.680621,1
-11,2,0,0,1,226553,0,8807.625,35.0527,1,10,1,124.9356,25.69294,35.33746,0,0,185.966,0,0,0,10,2,4,93.1,13.8,0,83,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,83,9.083487,1.386294,5.225564,1
-11,2,0,0,2,226553,0,8807.625,36.0527,1,10,1,295.2178,3.101326,0,0,0,298.3191,0,0,0,7,1,4,93.1,13.8,0,83,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,83,9.083487,1.386294,5.698164,1
-11,2,0,0,3,226553,0,8807.625,37.0527,1,10,1,84.95882,7.498916,33.28132,0,0,125.7391,0,0,0,7,1,4,93.1,13.8,0,83,0,58.2,0,0,1.386294,4.063885,0,0,0,1,0,0,83,9.083487,1.386294,4.834209,1
-11,2,0,1,1,226554,0,13850.44,14.44216,0,10,1,32.02753,10.50291,0,0,279.6718,322.2022,1,0,0,3,0,6,72.9,6.9,0,79.5,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,79.5,9.536144,1.791759,5.775179,1
-11,2,0,1,2,226554,0,13850.44,15.44216,0,10,1,92.18147,0,0,0,0,92.18147,0,0,0,1,6,6,72.9,6.9,0,79.5,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,79.5,9.536144,1.791759,4.523759,1
-11,2,0,1,3,226554,0,13850.44,16.44216,0,10,1,261.571,11.59324,0,40.05341,0,273.1642,0,0,2,4,2,6,72.9,6.9,0,79.5,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,79.5,9.536144,1.791759,5.610073,1
-11,2,0,1,1,226555,0,13850.44,45.03217,1,10,1,211.2229,63.34039,0,0,0,274.5633,0,0,0,2,0,6,67,24.1,0,72.7,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,72.7,9.536144,1.791759,5.615182,1
-11,2,0,1,2,226555,0,13850.44,46.03217,1,10,1,30.64672,59.43533,40.63224,0,0,130.7143,0,0,0,2,0,6,67,24.1,0,72.7,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,72.7,9.536144,1.791759,4.873014,1
-11,2,0,1,3,226555,0,13850.44,47.03217,1,10,1,86.55986,51.40187,0,0,0,137.9617,0,0,0,3,0,6,67,24.1,0,72.7,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,72.7,9.536144,1.791759,4.926976,1
-11,2,0,1,1,226556,0,13850.44,12.3614,1,10,1,41.82107,1.561673,0,0,0,43.38274,0,0,0,2,0,6,71.7,11.84267,0,74.1,0,935.4,1,1,1.791759,6.840974,0,0,0,0,0,0,74.1,9.536144,1.791759,3.770062,1
-11,2,0,1,2,226556,0,13850.44,13.3614,1,10,1,58.39768,0,36.4334,0,0,94.83108,0,0,0,4,0,6,71.7,11.84267,0,74.1,0,935.4,1,1,1.791759,6.840974,0,0,0,0,0,0,74.1,9.536144,1.791759,4.552097,1
-11,2,0,1,3,226556,0,13850.44,14.3614,1,10,1,66.31064,3.18202,0,0,0,69.49266,0,0,0,4,0,6,71.7,11.84267,0,74.1,0,935.4,1,1,1.791759,6.840974,0,0,0,0,0,0,74.1,9.536144,1.791759,4.241221,1
-11,2,0,1,1,226558,0,13850.44,4.377823,0,10,1,0,1.900476,0,0,0,1.900476,0,0,0,0,0,6,81.35272,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,.6421046,1
-11,2,0,1,2,226558,0,13850.44,5.377823,0,10,1,27.50965,5.067567,0,0,0,32.57722,0,0,0,3,0,6,81.35272,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,3.483613,1
-11,2,0,1,3,226558,0,13850.44,6.377823,0,10,1,8.010681,0,0,0,0,8.010681,0,0,0,1,0,6,81.35272,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,2.080776,1
-11,2,0,1,1,226559,0,13850.44,10.28884,0,10,1,17.46956,11.30228,0,0,0,28.77184,0,0,0,2,0,6,86.7,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,3.359397,1
-11,2,0,1,2,226559,0,13850.44,11.28884,0,10,1,100.0241,0,31.18726,0,0,131.2114,0,0,0,4,0,6,86.7,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,4.87681,1
-11,2,0,1,3,226559,0,13850.44,12.28884,0,10,1,14.24121,1.624388,0,0,0,15.8656,0,0,0,1,0,6,86.7,11.84267,0,96.3,0,935.4,1,0,1.791759,6.840974,0,0,0,0,0,0,96.3,9.536144,1.791759,2.764153,1
-11,2,0,1,1,226560,0,13850.44,46.20671,0,8,1,84.30386,21.32345,0,0,0,105.6273,0,0,0,2,0,6,56.9,13.8,.1981873,65.9,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,65.9,9.536144,1.791759,4.659917,1
-11,2,0,1,2,226560,0,13850.44,47.20671,0,8,1,54.05405,4.295367,57.76545,0,0,116.1149,0,0,0,2,0,6,56.9,13.8,.1981873,65.9,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,65.9,9.536144,1.791759,4.75458,1
-11,2,0,1,3,226560,0,13850.44,48.20671,0,8,1,24.47708,8.077436,0,0,0,32.55452,0,0,0,1,0,6,56.9,13.8,.1981873,65.9,0,935.4,0,0,1.791759,6.840974,0,0,0,0,0,0,65.9,9.536144,1.791759,3.482916,1
-11,2,0,1,1,226563,0,4079.179,37.61259,0,13,1,111.0814,119.4593,0,0,570.7977,801.3383,1,0,0,11,0,1,78.2,10.3,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.313896,0,6.686283,1
-11,2,0,1,2,226563,0,4079.179,38.61259,0,13,1,165.4466,96.19327,0,0,0,261.6398,0,0,0,9,0,1,78.2,10.3,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.313896,0,5.566969,1
-11,2,0,1,3,226563,0,4079.179,39.61259,0,13,1,62.7823,37.60163,1.878952,0,429.7426,532.0054,1,0,0,6,0,1,78.2,10.3,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.313896,0,6.276654,1
-18,2,25,0,1,226572,0,4642.815,26.31622,1,12,1,96.78801,152.8854,0,0,0,249.6734,0,0,0,7,0,1,43.1,24.1,0,51.1,715.1,715.1,0,0,0,6.572423,0,3.258096,7.958717,1,0,0,51.1,8.443292,0,5.520154,1
-18,2,25,0,2,226572,0,4642.815,27.31622,1,12,1,298.3895,158.1113,0,0,0,456.5007,0,0,0,9,0,1,43.1,24.1,0,51.1,715.1,715.1,0,0,0,6.572423,0,3.258096,7.958717,1,0,0,51.1,8.443292,0,6.12359,1
-18,2,25,0,3,226572,0,4642.815,28.31622,1,12,1,165.6052,221.0795,0,0,0,386.6847,0,0,0,9,0,1,43.1,24.1,0,51.1,715.1,715.1,0,0,0,6.572423,0,3.258096,7.958717,1,0,0,51.1,8.443292,0,5.95761,1
-13,2,0,1,1,226573,0,2107.918,19.75359,1,12,1,90.8728,5.497605,35.97126,0,0,132.3417,0,0,0,5,1,2,85.6,3.4,0,85.2,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,85.2,7.65393,.6931472,4.885387,1
-13,2,0,1,2,226573,0,2107.918,20.75359,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,3.4,0,85.2,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,85.2,7.65393,.6931472,,0
-13,2,0,1,3,226573,0,2107.918,21.75359,1,12,1,48.51752,0,38.08625,0,0,86.60378,0,0,0,3,1,2,85.6,3.4,0,85.2,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,85.2,7.65393,.6931472,4.461343,1
-13,2,0,1,1,226574,0,2107.918,23.09925,0,11,1,11.97445,0,0,0,0,11.97445,0,0,0,1,0,2,82.4,3.4,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,7.65393,.6931472,2.482776,1
-13,2,0,1,2,226574,0,2107.918,24.09925,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,82.4,3.4,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,7.65393,.6931472,,0
-13,2,0,1,3,226574,0,2107.918,25.09925,0,11,1,11.23091,0,0,0,0,11.23091,0,0,0,1,0,2,82.4,3.4,0,81.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,81.8,7.65393,.6931472,2.418669,1
-17,2,25,0,1,226575,0,2067.449,20.94182,1,12,1,28.81402,9.2938,40.56065,0,505.3154,583.9838,1,0,0,2,0,2,80.9,10.3,0,81.8,324.3,0,0,0,.6931472,0,0,3.258096,7.167964,1,0,0,81.8,7.634554,.6931472,6.369874,1
-17,2,25,0,2,226575,0,2067.449,21.94182,1,12,1,17.98526,15.62162,0,0,0,33.60688,0,0,0,3,0,3,80.9,10.3,0,81.8,324.3,0,0,0,1.098612,0,0,3.258096,7.167964,1,0,0,81.8,7.634554,1.098612,3.514731,1
-17,2,25,0,3,226575,0,2067.449,22.94182,1,12,1,39.53965,12.46582,30.94804,0,483.8149,566.7684,1,0,0,2,0,3,80.9,10.3,0,81.8,324.3,0,0,0,1.098612,0,0,3.258096,7.167964,1,0,0,81.8,7.634554,1.098612,6.339951,1
-17,2,25,0,1,226576,0,2067.449,22.02875,0,12,1,5.390836,3.202156,0,0,0,8.592992,0,0,0,1,0,2,81.9,3.4,0,85.2,324.3,0,0,0,.6931472,0,0,3.258096,7.167964,0,0,0,85.2,7.634554,.6931472,2.150947,1
-17,2,25,0,2,226576,0,2067.449,23.02875,0,12,1,26.33907,18.25553,0,0,0,44.59459,0,0,0,3,0,3,81.9,3.4,0,85.2,324.3,0,0,0,1.098612,0,0,3.258096,7.167964,0,0,0,85.2,7.634554,1.098612,3.797613,1
-17,2,25,0,3,226576,0,2067.449,24.02875,0,12,1,147.7165,5.209663,0,0,0,152.9262,0,0,0,4,0,3,81.9,3.4,0,85.2,324.3,0,0,0,1.098612,0,0,3.258096,7.167964,0,0,0,85.2,7.634554,1.098612,5.029955,1
-11,2,0,1,1,226580,0,9224.634,44.89801,0,16,1,33.71968,21.04582,0,0,167.8652,222.6307,1,0,0,3,0,4,98.4,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.129741,1.386294,5.405514,1
-11,2,0,1,2,226580,0,9224.634,45.89801,0,16,1,70.83538,9.390663,42.39312,0,0,122.6192,0,0,0,5,0,4,98.4,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.129741,1.386294,4.809083,1
-11,2,0,1,3,226580,0,9224.634,46.89801,0,16,1,10.71103,4.680948,0,0,0,15.39198,0,0,0,1,0,4,98.4,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.129741,1.386294,2.733846,1
-11,2,0,1,4,226580,0,9224.634,47.89801,0,16,1,55.43977,20.15423,0,0,0,75.59399,0,0,0,6,0,4,98.4,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.129741,1.386294,4.325377,1
-11,2,0,1,5,226580,0,9224.634,48.89801,0,16,1,185.6714,14.22731,43.61591,0,0,243.5146,0,0,0,23,0,4,98.4,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.129741,1.386294,5.495177,1
-11,2,0,1,1,226581,0,9224.634,13.61533,0,12,1,11.75202,0,0,0,0,11.75202,0,0,0,1,0,4,93.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.129741,1.386294,2.464025,1
-11,2,0,1,2,226581,0,9224.634,14.61533,0,12,1,26.04423,0,33.98526,0,0,60.02948,0,0,0,2,0,4,93.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.129741,1.386294,4.094836,1
-11,2,0,1,3,226581,0,9224.634,15.61533,0,12,1,54.01094,17.75752,0,0,0,71.76846,0,0,0,9,0,4,93.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.129741,1.386294,4.273445,1
-11,2,0,1,4,226581,0,9224.634,16.61533,0,12,1,85.55648,13.62234,0,0,0,99.17883,0,0,0,6,0,4,93.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.129741,1.386294,4.596924,1
-11,2,0,1,5,226581,0,9224.634,17.61533,0,12,1,30.3826,11.86047,33.67592,0,0,75.91898,0,0,0,3,0,4,93.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.129741,1.386294,4.329667,1
-11,2,0,1,1,226582,0,9224.634,9.634497,0,12,1,0,1.827493,0,0,0,1.827493,0,0,0,0,0,4,87.3,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.129741,1.386294,.6029453,1
-11,2,0,1,2,226582,0,9224.634,10.6345,0,12,1,5.896806,4.732187,0,0,0,10.62899,0,0,0,1,0,4,87.3,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.129741,1.386294,2.363585,1
-11,2,0,1,3,226582,0,9224.634,11.6345,0,12,1,52.87147,7.092069,0,0,0,59.96354,0,0,0,3,0,4,87.3,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.129741,1.386294,4.093737,1
-11,2,0,1,4,226582,0,9224.634,12.6345,0,12,1,60.52939,5.081284,0,0,0,65.61067,0,0,0,6,0,4,87.3,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.129741,1.386294,4.183738,1
-11,2,0,1,5,226582,0,9224.634,13.6345,0,12,1,111.9655,52.5919,30.30008,0,0,194.8575,0,0,0,11,0,4,87.3,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.129741,1.386294,5.272268,1
-11,2,0,1,1,226583,0,9224.634,45.73854,1,12,1,104.8787,51.93531,28.7062,0,0,185.5202,0,0,0,11,0,4,97.3,20.7,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.129741,1.386294,5.223164,1
-11,2,0,1,2,226583,0,9224.634,46.73854,1,12,1,26.04423,50.04423,0,0,0,76.08846,0,0,0,2,0,4,97.3,20.7,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.129741,1.386294,4.331897,1
-11,2,0,1,3,226583,0,9224.634,47.73854,1,12,1,54.23883,34.92707,29.45305,0,0,118.619,0,0,0,4,0,4,97.3,20.7,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.129741,1.386294,4.775916,1
-11,2,0,1,4,226583,0,9224.634,48.73854,1,12,1,179.4498,45.45644,.5669029,0,0,225.4731,0,0,0,13,0,4,97.3,20.7,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.129741,1.386294,5.418201,1
-11,2,0,1,5,226583,0,9224.634,49.73854,1,12,1,124.5311,42.06676,37.05176,0,82.55814,286.2078,1,0,0,18,0,4,97.3,20.7,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.129741,1.386294,5.656718,1
-11,2,0,0,1,226589,0,3387.097,47.10472,1,9,1,105.455,16.52475,0,0,0,121.9798,0,0,0,4,1,3,67,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.128023,1.098612,4.803855,1
-11,2,0,0,2,226589,0,3387.097,48.10472,1,9,1,64.46922,0,40.19389,0,0,104.6631,0,0,0,2,1,3,67,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.128023,1.098612,4.650747,1
-11,2,0,0,3,226589,0,3387.097,49.10472,1,9,1,43.80054,0,23.36029,0,0,67.16083,0,0,0,1,1,3,67,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.128023,1.098612,4.20709,1
-11,2,0,0,1,226590,0,3387.097,16.45175,0,9,1,37.78606,14.31613,0,0,0,52.10218,0,0,0,4,0,3,81.4,0,0,67,0,0,1,0,1.098612,0,0,0,0,0,1,0,67,8.128023,1.098612,3.953207,1
-11,2,0,0,2,226590,0,3387.097,17.45175,0,9,1,65.92342,7.275812,0,0,0,73.19923,0,0,0,3,0,3,81.4,0,0,67,0,0,1,0,1.098612,0,0,0,0,0,1,0,67,8.128023,1.098612,4.293185,1
-11,2,0,0,3,226590,0,3387.097,18.45175,0,9,1,77.26865,13.86792,0,0,0,91.13657,0,0,0,4,0,3,81.4,0,0,67,0,0,0,0,1.098612,0,0,0,0,0,1,0,67,8.128023,1.098612,4.512359,1
-11,2,0,0,1,226597,0,3651.613,23.3128,0,10,1,147.2326,0,0,0,0,147.2326,0,0,0,4,0,3,81.9,17.2,0,67.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,67.9,8.203198,1.098612,4.992013,1
-11,2,0,0,2,226597,0,3651.613,24.3128,0,10,1,41.20213,2.787203,0,0,0,43.98933,0,0,0,2,0,4,81.9,17.2,0,67.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.9,8.203198,1.386294,3.783947,1
-11,2,0,0,3,226597,0,3651.613,25.3128,0,10,1,147.929,0,0,0,0,147.929,0,0,0,5,0,4,81.9,17.2,0,67.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,67.9,8.203198,1.386294,4.996733,1
-11,2,0,0,1,226598,0,3651.613,24.18617,1,12,1,18.41405,0,41.07504,0,286.5088,345.9979,1,0,0,1,0,3,76.1,10.3,0,86.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,86.4,8.203198,1.098612,5.846433,1
-11,2,0,0,2,226598,0,3651.613,25.18617,1,12,1,16.96558,0,0,0,0,16.96558,0,0,0,1,0,4,76.1,10.3,0,86.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,86.4,8.203198,1.386294,2.831187,1
-11,2,0,0,3,226598,0,3651.613,26.18617,1,12,1,45.59748,0,0,0,0,45.59748,0,0,0,2,0,4,76.1,10.3,0,86.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,86.4,8.203198,1.386294,3.819853,1
-11,2,0,1,1,226608,0,8465.103,25.99042,0,8,1,171.4286,33.48248,33.20216,0,0,238.1132,0,0,0,8,1,4,59.6,6.9,1,43.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,43.2,9.043825,1.386294,5.472746,1
-11,2,0,1,2,226608,0,8465.103,26.99042,0,8,1,20.14742,23.10074,0,0,0,43.24816,0,0,0,3,0,4,59.6,6.9,1,43.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,43.2,9.043825,1.386294,3.766955,1
-11,2,0,1,3,226608,0,8465.103,27.99042,0,8,1,112.124,30.30994,0,0,0,142.4339,0,0,0,5,0,4,59.6,6.9,1,43.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,43.2,9.043825,1.386294,4.958878,1
-11,2,0,1,1,226609,0,8465.103,5.144422,1,11,1,30.72776,11.44474,0,0,0,42.17251,0,0,0,3,0,4,51.7,11.84267,0,40.7,0,0,1,1,1.386294,0,0,0,0,1,0,0,40.7,9.043825,1.386294,3.741769,1
-11,2,0,1,2,226609,0,8465.103,6.144422,1,11,1,72.35872,8.948403,0,0,1045.479,1126.786,1,0,0,4,0,4,51.7,11.84267,0,40.7,0,0,1,1,1.386294,0,0,0,0,1,0,0,40.7,9.043825,1.386294,7.027125,1
-11,2,0,1,3,226609,0,8465.103,7.144422,1,11,1,5.469462,0,0,0,0,5.469462,0,0,0,1,0,4,51.7,11.84267,0,40.7,0,0,1,1,1.386294,0,0,0,0,1,0,0,40.7,9.043825,1.386294,1.69918,1
-11,2,0,1,1,226610,0,8465.103,2.160164,1,11,1,135.31,27.20216,0,0,0,162.5121,0,0,0,10,0,4,81.35272,11.84267,0,3.7,0,0,1,1,1.386294,0,0,0,0,0,1,0,3.7,9.043825,1.386294,5.090753,1
-11,2,0,1,2,226610,0,8465.103,3.160164,1,11,1,64.37347,30.63391,0,0,0,95.00737,0,0,0,7,0,4,81.35272,11.84267,0,3.7,0,0,1,1,1.386294,0,0,0,0,0,1,0,3.7,9.043825,1.386294,4.553955,1
-11,2,0,1,3,226610,0,8465.103,4.160164,1,11,1,109.6171,13.55971,0,0,0,123.1768,0,0,0,6,0,4,81.35272,11.84267,0,3.7,0,0,1,1,1.386294,0,0,0,0,0,1,0,3.7,9.043825,1.386294,4.813621,1
-11,2,0,1,1,226611,0,8465.103,24.04381,1,11,1,324.1509,172.4043,43.98383,0,1084.34,1624.879,2,0,0,17,2,4,41.5,34.5,1,30.7,0,0,0,0,1.386294,0,0,0,0,0,1,0,30.7,9.043825,1.386294,7.393188,1
-11,2,0,1,2,226611,0,8465.103,25.04381,1,11,1,165.8477,230.2998,0,0,0,396.1474,0,0,0,19,0,4,41.5,34.5,1,30.7,0,0,0,0,1.386294,0,0,0,0,0,1,0,30.7,9.043825,1.386294,5.981786,1
-11,2,0,1,3,226611,0,8465.103,26.04381,1,11,1,151.9827,178.7283,0,0,0,330.711,0,0,0,13,0,4,41.5,34.5,1,30.7,0,0,0,0,1.386294,0,0,0,0,0,1,0,30.7,9.043825,1.386294,5.801245,1
-11,2,0,1,1,226634,0,12231.67,53.73854,0,16,1,134.4627,100.5294,0,37.05664,0,234.9921,0,0,2,6,8,2,83,10.3,0,55.7,0,99.4,0,0,.6931472,4.599152,0,0,0,0,0,0,55.7,9.411865,.6931472,5.459552,1
-11,2,0,1,2,226634,0,12231.67,54.73854,0,16,1,54.53668,0,58.67278,392.1332,0,113.2095,0,0,32,2,7,2,83,10.3,0,55.7,0,99.4,0,0,.6931472,4.599152,0,0,0,0,0,0,55.7,9.411865,.6931472,4.72924,1
-11,2,0,1,3,226634,0,12231.67,55.73854,0,16,1,233.6226,23.32443,0,240.3204,484.9355,741.8825,1,0,24,7,2,2,83,10.3,0,55.7,0,99.4,0,0,.6931472,4.599152,0,0,0,0,0,0,55.7,9.411865,.6931472,6.609191,1
-11,2,0,1,1,226635,0,12231.67,48.32581,1,12,1,79.4071,86.87136,54.52091,63.52568,0,220.7994,0,0,3,4,0,2,72.9,17.2,1,63.6,0,99.4,0,0,.6931472,4.599152,0,0,0,0,1,0,63.6,9.411865,.6931472,5.397254,1
-11,2,0,1,2,226635,0,12231.67,49.32581,1,12,1,114.3822,92.49517,0,361.9691,0,206.8774,0,0,30,6,0,2,72.9,17.2,1,63.6,0,99.4,0,0,.6931472,4.599152,0,0,0,0,1,0,63.6,9.411865,.6931472,5.332127,1
-11,2,0,1,3,226635,0,12231.67,50.32581,1,12,1,91.23276,39.55496,0,300.4005,0,130.7877,0,0,27,4,0,2,72.9,17.2,1,63.6,0,99.4,0,0,.6931472,4.599152,0,0,0,0,1,0,63.6,9.411865,.6931472,4.873576,1
-13,2,0,1,1,226654,0,7791.202,43.89322,1,10,1,5.32198,25.76903,0,0,0,31.09101,0,0,0,1,0,2,71.8,27.6,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,8.960878,.6931472,3.436918,1
-13,2,0,1,2,226654,0,7791.202,44.89322,1,10,1,64.46922,22.56423,49.41832,0,0,136.4518,0,0,0,8,0,2,71.8,27.6,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,8.960878,.6931472,4.915971,1
-13,2,0,1,3,226654,0,7791.202,45.89322,1,10,1,16.84636,3.063792,0,0,0,19.91015,0,0,0,2,0,2,71.8,27.6,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,8.960878,.6931472,2.99123,1
-13,2,0,1,1,226655,0,7791.202,49.58795,0,11,1,0,45.9074,0,0,0,45.9074,0,0,0,0,0,2,83,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,8.960878,.6931472,3.826626,1
-13,2,0,1,2,226655,0,7791.202,50.58795,0,11,1,88.4634,53.61609,0,0,0,142.0795,0,0,0,4,0,2,83,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,8.960878,.6931472,4.956387,1
-13,2,0,1,3,226655,0,7791.202,51.58795,0,11,1,26.05571,86.48697,47.10242,0,0,159.6451,0,0,0,3,0,2,83,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,8.960878,.6931472,5.072953,1
-14,2,95,1,1,226665,0,10747.8,10.54073,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,77.8,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,77.8,9.28255,1.609438,,0
-14,2,95,1,2,226665,0,10747.8,11.54073,0,12,1,15.99612,0,37.11585,0,0,53.11197,0,0,0,1,0,5,73.3,11.84267,0,77.8,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,77.8,9.28255,1.609438,3.972402,1
-14,2,95,1,3,226665,0,10747.8,12.54073,0,12,1,17.07098,0,0,0,0,17.07098,0,0,0,1,0,5,73.3,11.84267,0,77.8,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,77.8,9.28255,1.609438,2.83738,1
-14,2,95,1,4,226665,0,10747.8,13.54073,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,77.8,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,77.8,9.28255,1.609438,,0
-14,2,95,1,5,226665,0,10747.8,14.54073,0,12,1,14.78197,0,21.0643,0,0,35.84627,0,0,0,1,0,5,73.3,11.84267,0,77.8,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,77.8,9.28255,1.609438,3.579239,1
-14,2,95,1,1,226666,0,10747.8,11.95893,1,12,1,81.95849,0,16.76424,0,0,98.72272,0,0,0,13,0,5,71.7,11.84267,0,85.2,725.25,452.58,1,1,1.609438,6.114964,0,4.564348,6.63781,0,0,0,85.2,9.28255,1.609438,4.592315,1
-14,2,95,1,2,226666,0,10747.8,12.95893,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,11.84267,0,85.2,725.25,452.58,1,1,1.609438,6.114964,0,4.564348,6.63781,0,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,3,226666,0,10747.8,13.95893,1,12,1,17.07098,0,14.72597,0,0,31.79695,0,0,0,1,0,5,71.7,11.84267,0,85.2,725.25,452.58,1,1,1.609438,6.114964,0,4.564348,6.63781,0,0,0,85.2,9.28255,1.609438,3.45937,1
-14,2,95,1,4,226666,0,10747.8,14.95893,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,11.84267,0,85.2,725.25,452.58,1,1,1.609438,6.114964,0,4.564348,6.63781,0,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,5,226666,0,10747.8,15.95893,1,12,1,0,0,15.83888,0,0,15.83888,0,0,0,0,0,5,71.7,11.84267,0,85.2,725.25,452.58,1,1,1.609438,6.114964,0,4.564348,6.63781,0,0,0,85.2,9.28255,1.609438,2.762467,1
-14,2,95,1,1,226667,0,10747.8,34.52703,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,3.4,0,85.2,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,1,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,2,226667,0,10747.8,35.52703,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,3.4,0,85.2,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,1,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,3,226667,0,10747.8,36.52703,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,3.4,0,85.2,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,1,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,4,226667,0,10747.8,37.52703,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,3.4,0,85.2,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,1,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,5,226667,0,10747.8,38.52703,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,3.4,0,85.2,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,1,0,0,85.2,9.28255,1.609438,,0
-14,2,95,1,1,226668,0,10747.8,30.80082,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,10.3,0,72.7,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,72.7,9.28255,1.609438,,0
-14,2,95,1,2,226668,0,10747.8,31.80082,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,10.3,0,72.7,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,72.7,9.28255,1.609438,,0
-14,2,95,1,3,226668,0,10747.8,32.80082,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,10.3,0,72.7,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,72.7,9.28255,1.609438,,0
-14,2,95,1,4,226668,0,10747.8,33.80082,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,10.3,0,72.7,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,72.7,9.28255,1.609438,,0
-14,2,95,1,5,226668,0,10747.8,34.80082,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,10.3,0,72.7,725.25,452.58,0,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,72.7,9.28255,1.609438,,0
-14,2,95,1,1,226669,0,10747.8,13.00205,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,11.84267,0,88.9,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,88.9,9.28255,1.609438,,0
-14,2,95,1,2,226669,0,10747.8,14.00205,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,11.84267,0,88.9,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,88.9,9.28255,1.609438,,0
-14,2,95,1,3,226669,0,10747.8,15.00205,0,12,1,30.54807,0,34.39802,0,0,64.94609,0,0,0,2,0,5,76.7,11.84267,0,88.9,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,88.9,9.28255,1.609438,4.173558,1
-14,2,95,1,4,226669,0,10747.8,16.00205,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,11.84267,0,88.9,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,88.9,9.28255,1.609438,,0
-14,2,95,1,5,226669,0,10747.8,17.00205,0,12,1,16.62971,0,36.19734,0,0,52.82705,0,0,0,1,0,5,76.7,11.84267,0,88.9,725.25,452.58,1,0,1.609438,6.114964,0,4.564348,6.63781,0,0,0,88.9,9.28255,1.609438,3.967023,1
-11,2,0,1,1,226677,0,13673.9,16.39699,0,15,1,6.881948,2.964531,0,0,0,9.846479,0,0,0,1,0,5,77.1,0,0,95.5,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,95.5,9.523317,1.609438,2.287114,1
-11,2,0,1,2,226677,0,13673.9,17.39699,0,15,1,6.756757,0,0,0,0,6.756757,0,0,0,1,0,5,77.1,0,0,95.5,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,95.5,9.523317,1.609438,1.910543,1
-11,2,0,1,3,226677,0,13673.9,18.39699,0,15,1,6.675568,0,0,0,0,6.675568,0,0,0,1,0,5,77.1,0,0,95.5,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,95.5,9.523317,1.609438,1.898454,1
-11,2,0,1,4,226677,0,13673.9,19.39699,0,15,1,17.48678,0,15.1281,0,0,32.61488,0,0,0,1,0,5,77.1,0,0,95.5,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,95.5,9.523317,1.609438,3.484769,1
-11,2,0,1,5,226677,0,13673.9,20.39699,0,15,1,41.55059,0,0,0,0,41.55059,0,0,0,3,0,5,77.1,0,0,95.5,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,95.5,9.523317,1.609438,3.726912,1
-11,2,0,1,1,226678,0,13673.9,14.59001,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,0,0,72.7,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,72.7,9.523317,1.609438,,0
-11,2,0,1,2,226678,0,13673.9,15.59001,0,15,1,103.5232,0,3.378378,0,0,106.9015,0,0,0,8,0,5,60.6,0,0,72.7,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,72.7,9.523317,1.609438,4.671908,1
-11,2,0,1,3,226678,0,13673.9,16.59001,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,0,0,72.7,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,72.7,9.523317,1.609438,,0
-11,2,0,1,4,226678,0,13673.9,17.59001,0,15,1,41.78934,1.606344,0,0,0,43.39569,0,0,0,1,0,5,60.6,0,0,72.7,0,96,1,0,1.609438,4.564348,0,0,0,0,0,0,72.7,9.523317,1.609438,3.77036,1
-11,2,0,1,5,226678,0,13673.9,18.59001,0,15,1,66.8805,0,10.35557,0,0,77.23607,0,0,0,4,0,5,60.6,0,0,72.7,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,72.7,9.523317,1.609438,4.346867,1
-11,2,0,1,1,226679,0,13673.9,54.53525,0,12,1,96.45315,21.9693,48.48597,0,0,166.9084,0,0,0,10,0,5,54.3,31,1,36.4,0,96,0,0,1.609438,4.564348,0,0,0,1,0,0,36.4,9.523317,1.609438,5.117445,1
-11,2,0,1,2,226679,0,13673.9,55.53525,0,12,1,56.94981,16.38514,23.64865,0,0,96.98359,0,0,0,6,0,5,54.3,31,1,36.4,0,96,0,0,1.609438,4.564348,0,0,0,1,0,0,36.4,9.523317,1.609438,4.574542,1
-11,2,0,1,3,226679,0,13673.9,56.53525,0,12,1,20.0267,72.06943,0,0,0,92.09613,0,0,0,3,0,5,54.3,31,1,36.4,0,96,0,0,1.609438,4.564348,0,0,0,1,0,0,36.4,9.523317,1.609438,4.522833,1
-11,2,0,1,4,226679,0,13673.9,57.53525,0,12,1,34.97357,54.40016,16.99878,0,0,106.3725,0,0,0,3,0,5,54.3,31,1,36.4,0,96,0,0,1.609438,4.564348,0,0,0,1,0,0,36.4,9.523317,1.609438,4.666947,1
-11,2,0,1,5,226679,0,13673.9,58.53525,0,12,1,75.87977,83.64369,27.30938,0,0,186.8328,0,0,0,8,0,5,54.3,31,1,36.4,0,96,0,0,1.609438,4.564348,0,0,0,1,0,0,36.4,9.523317,1.609438,5.230214,1
-11,2,0,1,1,226680,0,13673.9,11.99726,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,85,11.84267,0,96.3,0,96,1,1,1.609438,4.564348,0,0,0,0,0,0,96.3,9.523317,1.609438,,0
-11,2,0,1,2,226680,0,13673.9,12.99726,1,15,1,39.57529,2.123552,0,0,0,41.69884,0,0,0,5,0,5,85,11.84267,0,96.3,0,96,1,1,1.609438,4.564348,0,0,0,0,0,0,96.3,9.523317,1.609438,3.730473,1
-11,2,0,1,3,226680,0,13673.9,13.99726,1,15,1,40.49844,2.180685,0,0,0,42.67913,0,0,0,4,0,5,85,11.84267,0,96.3,0,96,1,1,1.609438,4.564348,0,0,0,0,0,0,96.3,9.523317,1.609438,3.75371,1
-11,2,0,1,4,226680,0,13673.9,14.99726,1,15,1,53.88369,0,0,0,0,53.88369,0,0,0,6,0,5,85,11.84267,0,96.3,0,96,1,1,1.609438,4.564348,0,0,0,0,0,0,96.3,9.523317,1.609438,3.986828,1
-11,2,0,1,5,226680,0,13673.9,15.99726,1,15,1,87.97654,8.467742,0,0,0,96.44428,0,0,0,4,0,5,85,11.84267,0,96.3,0,96,1,1,1.609438,4.564348,0,0,0,0,0,0,96.3,9.523317,1.609438,4.568965,1
-11,2,0,1,1,226681,0,13673.9,47.07734,1,15,1,118.6871,47.98835,51.21228,0,0,217.8878,0,0,0,9,0,5,70.2,10.3,0,93.2,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,93.2,9.523317,1.609438,5.38398,1
-11,2,0,1,2,226681,0,13673.9,48.07734,1,15,1,0,7.504826,0,0,0,7.504826,0,0,0,0,0,5,70.2,10.3,0,93.2,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,93.2,9.523317,1.609438,2.015546,1
-11,2,0,1,3,226681,0,13673.9,49.07734,1,15,1,11.12595,0,43.96084,0,0,55.08678,0,0,0,0,1,5,70.2,10.3,0,93.2,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,93.2,9.523317,1.609438,4.00891,1
-11,2,0,1,4,226681,0,13673.9,50.07734,1,15,1,7.726718,0,0,0,0,7.726718,0,0,0,1,0,5,70.2,10.3,0,93.2,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,93.2,9.523317,1.609438,2.044684,1
-11,2,0,1,5,226681,0,13673.9,51.07734,1,15,1,21.99413,6.799853,0,0,0,28.79399,0,0,0,3,0,5,70.2,10.3,0,93.2,0,96,0,0,1.609438,4.564348,0,0,0,0,0,0,93.2,9.523317,1.609438,3.360167,1
-13,2,0,1,1,226697,0,11253.96,47.55099,0,12,1,85.09794,13.26098,38.83536,222.3399,0,137.1943,0,0,12,5,0,3,59,13.8,1,38.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,38.6,9.328564,1.098612,4.921398,1
-13,2,0,1,2,226697,0,11253.96,48.55099,0,12,1,0,9.942085,0,33.78378,0,9.942085,0,0,2,0,0,3,59,13.8,1,38.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,38.6,9.328564,1.098612,2.296777,1
-13,2,0,1,3,226697,0,11253.96,49.55099,0,12,1,159.101,0,0,0,0,159.101,0,0,0,6,0,3,59,13.8,1,38.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,38.6,9.328564,1.098612,5.06954,1
-13,2,0,1,1,226698,0,11253.96,52.63792,1,15,1,98.99418,95.84436,42.35045,1101.112,0,237.189,0,0,52,3,2,3,91.5,20.7,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.328564,1.098612,5.468857,1
-13,2,0,1,2,226698,0,11253.96,53.63792,1,15,1,194.1361,46.35618,0,926.6409,0,240.4923,0,0,47,6,2,3,91.5,20.7,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.328564,1.098612,5.482688,1
-13,2,0,1,3,226698,0,11253.96,54.63792,1,15,1,107.9217,117.4232,0,907.8772,0,225.3449,0,0,49,3,2,3,91.5,20.7,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.328564,1.098612,5.417632,1
-13,2,0,1,1,226699,0,11253.96,6.850103,0,15,1,52.6469,5.399683,0,0,0,58.04659,0,0,0,4,0,3,93.3,11.84267,0,77.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.328564,1.098612,4.061246,1
-13,2,0,1,2,226699,0,11253.96,7.850103,0,15,1,13.51351,2.871622,0,0,0,16.38514,0,0,0,1,0,3,93.3,11.84267,0,77.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.328564,1.098612,2.796375,1
-13,2,0,1,3,226699,0,11253.96,8.850102,0,15,1,28.48242,3.004005,0,0,0,31.48643,0,0,0,2,0,3,93.3,11.84267,0,77.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.328564,1.098612,3.449557,1
-16,2,95,0,1,226709,0,9902.053,40.31485,1,12,1,24.89293,0,0,0,0,24.89293,0,0,0,2,0,1,70.2,27.6,0,85.2,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.200599,0,3.214584,1
-16,2,95,0,2,226709,0,9902.053,41.31485,1,12,1,101.4153,0,0,0,0,101.4153,0,0,0,3,0,1,70.2,27.6,0,85.2,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.200599,0,4.619224,1
-16,2,95,0,3,226709,0,9902.053,42.31485,1,12,1,23.14815,0,0,0,0,23.14815,0,0,0,2,0,1,70.2,27.6,0,85.2,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.200599,0,3.141915,1
-16,2,95,0,4,226709,0,9902.053,43.31485,1,12,1,76.30273,0,0,0,0,76.30273,0,0,0,2,0,1,70.2,27.6,0,85.2,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.200599,0,4.334709,1
-16,2,95,0,5,226709,0,9902.053,44.31485,1,12,1,68.92697,0,0,0,0,68.92697,0,0,0,2,2,1,70.2,27.6,0,85.2,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.200599,0,4.233047,1
-13,2,0,1,1,226714,0,8665.641,1.0705,0,12,1,12.31263,0,0,0,0,12.31263,0,0,0,1,0,3,81.35272,11.84267,0,77.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.067237,1.098612,2.510626,1
-13,2,0,1,1,226715,0,8665.641,26.11088,0,14,1,0,3.329764,0,0,0,3.329764,0,0,0,0,0,3,80.3,13.8,0,70.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.067237,1.098612,1.202901,1
-13,2,0,1,1,226716,0,8665.641,22.25599,1,12,1,13.3833,0,19.05782,0,0,32.44111,0,0,0,0,1,3,59,6.9,0,84.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,84.1,9.067237,1.098612,3.479427,1
-19,2,25,1,1,226727,0,16639.88,57.39083,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,13.8,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.719618,1.609438,,0
-19,2,25,1,2,226727,0,16639.88,58.39083,1,12,1,5.332041,2.544838,0,0,0,7.876878,0,0,0,1,0,5,82.4,13.8,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.719618,1.609438,2.063932,1
-19,2,25,1,3,226727,0,16639.88,59.39083,1,12,1,20.21563,0,30.8266,0,0,51.04223,0,0,0,1,0,4,82.4,13.8,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,84.1,9.719618,1.386294,3.932653,1
-19,2,25,1,1,226728,0,16639.88,20.04107,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.2,3.4,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,77.3,9.719618,1.609438,,0
-19,2,25,1,2,226728,0,16639.88,21.04107,1,12,1,46.53417,0,0,0,0,46.53417,0,0,0,1,1,5,62.2,3.4,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,77.3,9.719618,1.609438,3.840187,1
-19,2,25,1,3,226728,0,16639.88,22.04107,1,12,1,148.4726,0,0,0,5523.145,5671.617,1,0,0,5,0,4,62.2,3.4,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,77.3,9.719618,1.386294,8.643229,1
-19,2,25,1,1,226729,0,16639.88,55.65229,0,13,1,199.4678,12.54391,36.2959,0,6307.914,6556.221,2,0,0,12,0,5,80.3,13.8,0,69.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.719618,1.609438,8.78817,1
-19,2,25,1,2,226729,0,16639.88,56.65229,0,13,1,989.3844,245.7925,291.6093,0,0,1526.786,0,0,0,62,0,5,80.3,13.8,0,69.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.719618,1.609438,7.33092,1
-19,2,25,1,3,226729,0,16639.88,57.65229,0,13,1,1613.073,519.4654,325.9164,0,4942.969,7401.424,1,0,0,74,3,4,80.3,13.8,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.719618,1.386294,8.909428,1
-19,2,25,0,1,226730,0,16639.88,18.30527,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,3.4,0,65.9,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.719618,1.609438,,0
-19,2,25,0,2,226730,0,16639.88,19.30527,0,10,1,170.7222,10.61561,0,0,0,181.3379,0,0,0,3,0,5,64.9,3.4,0,65.9,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.719618,1.609438,5.200362,1
-19,2,25,1,1,226731,0,16639.88,15.66051,1,12,1,27.54124,0,27.35498,0,0,54.89622,0,0,0,2,0,5,74.5,3.4,1,80.7,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.719618,1.609438,4.005445,1
-19,2,25,1,2,226731,0,16639.88,16.66051,1,12,1,53.87785,3.756665,0,0,0,57.63451,0,0,0,1,0,5,74.5,3.4,1,80.7,1000,1000,1,1,1.609438,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.719618,1.609438,4.054121,1
-19,2,25,1,3,226731,0,16639.88,17.66051,1,12,1,92.09344,0,0,0,0,92.09344,0,0,0,3,0,4,74.5,3.4,1,80.7,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,80.7,9.719618,1.386294,4.522804,1
-16,2,95,1,1,226753,0,17438.12,31.40315,1,17,1,79.4071,52.63631,0,0,0,132.0434,0,0,0,11,1,1,85.6,6.9,0,79.5,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.766472,0,4.883131,1
-16,2,95,1,2,226753,0,17438.12,32.40315,1,17,1,110.1593,123.5666,0,0,726.1824,959.9083,1,0,0,16,0,1,85.6,6.9,0,79.5,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.766472,0,6.866838,1
-16,2,95,1,3,226753,0,17438.12,33.40315,1,17,1,146.1949,92.3053,0,0,0,238.5002,0,0,0,26,0,2,85.6,6.9,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.766472,.6931472,5.47437,1
-19,2,25,0,1,226778,0,6173.021,1.037645,0,13,1,75.96612,4.547379,0,0,0,80.5135,0,0,0,7,0,4,81.35272,11.84267,0,100,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,100,8.728106,1.386294,4.388425,1
-19,2,25,0,2,226778,0,6173.021,2.037645,0,13,1,50.43436,4.430502,0,0,0,54.86486,0,0,0,3,3,4,81.35272,11.84267,0,100,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,100,8.728106,1.386294,4.004873,1
-19,2,25,0,3,226778,0,6173.021,3.037645,0,13,1,79.87984,2.403204,0,0,0,82.28304,0,0,0,4,0,4,81.35272,11.84267,0,100,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,100,8.728106,1.386294,4.410165,1
-19,2,25,0,4,226778,0,6173.021,4.037645,0,13,1,4.880033,0,0,0,0,4.880033,0,0,0,1,0,4,81.35272,11.84267,0,100,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,100,8.728106,1.386294,1.585152,1
-19,2,25,0,5,226778,0,6173.021,5.037645,0,13,1,33.21481,0,0,0,0,33.21481,0,0,0,2,0,4,81.35272,11.84267,0,100,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,100,8.728106,1.386294,3.502996,1
-19,2,25,0,1,226779,0,6173.021,3.493498,0,13,1,23.29275,4.547379,0,0,0,27.84013,0,0,0,3,0,4,81.35272,11.84267,0,63,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,63,8.728106,1.386294,3.326478,1
-19,2,25,0,2,226779,0,6173.021,4.493497,0,13,1,16.89189,0,0,0,0,16.89189,0,0,0,2,0,4,81.35272,11.84267,0,63,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,63,8.728106,1.386294,2.826834,1
-19,2,25,0,3,226779,0,6173.021,5.493497,0,13,1,12.01602,0,0,0,0,12.01602,0,0,0,1,0,4,81.35272,11.84267,0,63,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,63,8.728106,1.386294,2.486241,1
-19,2,25,0,4,226779,0,6173.021,6.493497,0,13,1,25.41277,0,0,0,0,25.41277,0,0,0,2,0,4,81.35272,11.84267,0,63,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,63,8.728106,1.386294,3.235252,1
-19,2,25,0,5,226779,0,6173.021,7.493497,0,13,1,54.2522,0,2.199414,0,0,56.45161,0,0,0,4,0,4,81.35272,11.84267,0,63,1000,0,1,0,1.386294,0,0,3.258096,8.294049,0,0,0,63,8.728106,1.386294,4.033384,1
-19,2,25,0,1,226780,0,6173.021,27.05544,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,68.6,10.3,0,54.5,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,54.5,8.728106,1.386294,,0
-19,2,25,0,2,226780,0,6173.021,28.05544,0,12,1,262.3069,0,0,259.4112,0,262.3069,0,0,25,1,34,4,68.6,10.3,0,54.5,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,54.5,8.728106,1.386294,5.569515,1
-19,2,25,0,3,226780,0,6173.021,29.05544,0,12,1,87.22742,0,0,278.1487,0,87.22742,0,0,29,0,14,4,68.6,10.3,0,54.5,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,54.5,8.728106,1.386294,4.468519,1
-19,2,25,0,4,226780,0,6173.021,30.05544,0,12,1,24.40016,0,0,0,0,24.40016,0,0,0,0,4,4,68.6,10.3,0,54.5,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,54.5,8.728106,1.386294,3.19459,1
-19,2,25,0,5,226780,0,6173.021,31.05544,0,12,1,71.48094,0,0,0,0,71.48094,0,0,0,2,10,4,68.6,10.3,0,54.5,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,54.5,8.728106,1.386294,4.269431,1
-19,2,25,0,1,226781,0,6173.021,25.98768,1,13,1,28.32186,6.352568,0,0,0,34.67443,0,0,0,3,0,4,62.2,13.8,0,90.9,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,90.9,8.728106,1.386294,3.546003,1
-19,2,25,0,2,226781,0,6173.021,26.98768,1,13,1,197.3793,2.171815,33.98649,639.4788,0,233.5376,0,0,56,4,2,4,62.2,13.8,0,90.9,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,90.9,8.728106,1.386294,5.453343,1
-19,2,25,0,3,226781,0,6173.021,27.98768,1,13,1,71.53983,29.00757,0,333.7784,1728.781,1829.328,1,0,34,6,0,4,62.2,13.8,0,90.9,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,90.9,8.728106,1.386294,7.511704,1
-19,2,25,0,4,226781,0,6173.021,28.98768,1,13,1,36.49858,0,0,445.303,0,36.49858,0,0,29,1,0,4,62.2,13.8,0,90.9,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,90.9,8.728106,1.386294,3.597273,1
-19,2,25,0,5,226781,0,6173.021,29.98768,1,13,1,38.8563,8.614369,36.20968,0,0,83.68035,0,0,0,2,1,4,62.2,13.8,0,90.9,1000,0,0,0,1.386294,0,0,3.258096,8.294049,0,0,0,90.9,8.728106,1.386294,4.427004,1
-5,2,25,0,1,226782,0,3041.642,28.73922,0,12,1,195.6058,4.274571,0,0,0,199.8804,0,0,1,4,0,1,83,6.9,0,87.5,188.35,0,0,0,0,0,0,3.258096,6.624596,0,0,0,87.5,8.020482,0,5.297719,1
-5,2,25,0,2,226782,0,3041.642,29.73922,0,12,1,121.7296,1.944577,0,0,0,123.6741,0,0,0,4,0,1,83,6.9,0,87.5,188.35,0,0,0,0,0,0,3.258096,6.624596,0,0,0,87.5,8.020482,0,4.81765,1
-5,2,25,0,3,226782,0,3041.642,30.73922,0,12,1,205.4434,0,0,0,0,205.4434,0,0,0,2,11,1,83,6.9,0,87.5,188.35,0,0,0,0,0,0,3.258096,6.624596,0,0,0,87.5,8.020482,0,5.325171,1
-15,2,95,0,1,226790,0,8771.261,26.0397,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,77.7,6.9,0,81.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.07935,.6931472,,0
-15,2,95,0,2,226790,0,8771.261,27.0397,0,14,1,81.01513,6.573938,0,0,0,87.58907,0,0,0,11,0,3,77.7,6.9,0,81.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.07935,1.098612,4.472656,1
-15,2,95,0,3,226790,0,8771.261,28.0397,0,14,1,99.36766,0,0,0,0,99.36766,0,0,0,19,0,3,77.7,6.9,0,81.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.07935,1.098612,4.598827,1
-15,2,95,0,4,226790,0,8771.261,29.0397,0,14,1,83.12655,0,0,0,0,83.12655,0,0,0,19,0,4,77.7,6.9,0,81.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.07935,1.386294,4.420364,1
-15,2,95,0,5,226790,0,8771.261,30.0397,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,6.9,0,81.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.07935,1.386294,,0
-15,2,95,0,1,226791,0,8771.261,25.08966,1,12,1,163.2762,25.87794,0,0,460.7066,649.8608,1,0,0,8,0,2,84,10.3,0,65.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.07935,.6931472,6.476758,1
-15,2,95,0,2,226791,0,8771.261,26.08966,1,12,1,12.4451,19.05808,0,0,0,31.50317,0,0,0,4,0,3,84,10.3,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.07935,1.098612,3.450088,1
-15,2,95,0,3,226791,0,8771.261,27.08966,1,12,1,56.23306,7.289973,0,0,942.963,1006.486,1,0,0,0,0,3,84,10.3,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.07935,1.098612,6.91422,1
-15,2,95,0,4,226791,0,8771.261,28.08966,1,12,1,5.583127,0,0,0,0,5.583127,0,0,0,3,0,4,84,10.3,0,65.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.07935,1.386294,1.719749,1
-15,2,95,0,5,226791,0,8771.261,29.08966,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84,10.3,0,65.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.07935,1.386294,,0
-18,2,25,1,1,226798,0,10598.83,31.01164,0,11,1,8.56531,2.189507,0,0,0,10.75482,0,0,0,1,0,5,79.8,3.4,0,67,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,67,9.268593,1.609438,2.375354,1
-18,2,25,1,2,226798,0,10598.83,32.01163,0,11,1,38.5798,0,0,0,0,38.5798,0,0,0,1,0,5,79.8,3.4,0,67,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,67,9.268593,1.609438,3.652729,1
-18,2,25,1,3,226798,0,10598.83,33.01163,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,3.4,0,67,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,67,9.268593,1.609438,,0
-18,2,25,1,1,226799,0,10598.83,10.32991,0,12,1,101.0439,6.466809,0,0,0,107.5107,0,0,0,4,0,5,71.7,11.84267,0,93.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,93.3,9.268593,1.609438,4.67759,1
-18,2,25,1,2,226799,0,10598.83,11.32991,0,12,1,34.65105,0,35.27086,0,0,69.92191,0,0,0,2,0,5,71.7,11.84267,0,93.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,93.3,9.268593,1.609438,4.247379,1
-18,2,25,1,3,226799,0,10598.83,12.32991,0,12,1,116.2602,0,15.33875,0,0,131.5989,0,0,0,5,0,5,71.7,11.84267,0,93.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,93.3,9.268593,1.609438,4.879759,1
-18,2,25,1,1,226800,0,10598.83,5.691992,1,12,1,31.31692,0,27.40364,0,0,58.72056,0,0,0,3,1,5,98.3,11.84267,0,92.6,1000,1076.54,1,1,1.609438,6.981507,0,3.258096,8.294049,1,0,0,92.6,9.268593,1.609438,4.07279,1
-18,2,25,1,2,226800,0,10598.83,6.691992,1,12,1,7.320644,4.519278,0,0,0,11.83992,0,0,0,1,0,5,98.3,11.84267,0,92.6,1000,1076.54,1,1,1.609438,6.981507,0,3.258096,8.294049,1,0,0,92.6,9.268593,1.609438,2.471477,1
-18,2,25,1,3,226800,0,10598.83,7.691992,1,12,1,13.55014,0,26.92864,0,0,40.47877,0,0,0,1,0,5,98.3,11.84267,0,92.6,1000,1076.54,1,1,1.609438,6.981507,0,3.258096,8.294049,1,0,0,92.6,9.268593,1.609438,3.700778,1
-18,2,25,1,1,226801,0,10598.83,7.540041,0,12,1,10.70664,0,0,0,0,10.70664,0,0,0,1,0,5,88.3,11.84267,0,96.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,96.3,9.268593,1.609438,2.370864,1
-18,2,25,1,2,226801,0,10598.83,8.540041,0,12,1,41.50805,0,0,0,0,41.50805,0,0,0,2,0,5,88.3,11.84267,0,96.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,96.3,9.268593,1.609438,3.725888,1
-18,2,25,1,3,226801,0,10598.83,9.540041,0,12,1,261.2692,0,0,0,0,261.2692,0,0,0,3,0,5,88.3,11.84267,0,96.3,1000,1076.54,1,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,96.3,9.268593,1.609438,5.565551,1
-18,2,25,1,1,226802,0,10598.83,29.10335,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,10.3,1,77.3,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,77.3,9.268593,1.609438,,0
-18,2,25,1,2,226802,0,10598.83,30.10335,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,10.3,1,77.3,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,77.3,9.268593,1.609438,,0
-18,2,25,1,3,226802,0,10598.83,31.10335,1,12,1,55.78139,0,31.44535,0,0,87.22674,0,0,0,2,0,5,72.3,10.3,1,77.3,1000,1076.54,0,0,1.609438,6.981507,0,3.258096,8.294049,1,0,0,77.3,9.268593,1.609438,4.468511,1
-11,2,0,1,1,226825,0,4219.355,58.09446,0,8,1,244.0445,8.125993,1.810482,0,1778.481,2032.462,2,0,0,10,0,1,48.9,6.9,1,73.9,0,0,0,0,0,0,0,0,0,0,0,0,73.9,8.347674,0,7.617003,1
-11,2,0,1,2,226825,0,4219.355,59.09446,0,8,1,42.51931,1.954633,591.4913,0,0,635.9653,0,0,0,4,1,1,48.9,6.9,1,73.9,0,0,0,0,0,0,0,0,0,0,0,0,73.9,8.347674,0,6.455144,1
-11,2,0,1,3,226825,0,4219.355,60.09446,0,8,1,0,17.73921,14.0721,0,0,31.8113,0,0,0,0,0,1,48.9,6.9,1,73.9,0,0,0,0,0,0,0,0,0,0,0,0,73.9,8.347674,0,3.459822,1
-6,2,25,0,1,226831,0,12080.35,25.4319,0,14,1,53.84213,0,0,0,0,53.84213,0,0,0,2,0,1,86.2,6.9,0,77.3,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.399418,0,3.986056,1
-6,2,25,0,2,226831,0,12080.35,26.4319,0,14,1,62.9505,5.305142,0,0,0,68.25565,0,0,0,6,0,1,86.2,6.9,0,77.3,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.399418,0,4.22326,1
-6,2,25,0,3,226831,0,12080.35,27.4319,0,14,1,48.23788,0,33.97357,0,0,82.21146,0,0,0,3,0,2,86.2,6.9,0,77.3,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.399418,.6931472,4.409295,1
-18,2,25,1,1,226834,1,222.8739,37.48939,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.3,17.2,0,64.8,416.4,416.4,0,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,64.8,5.411083,1.609438,,0
-18,2,25,1,2,226834,1,222.8739,38.48939,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.3,17.2,0,64.8,416.4,416.4,0,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,64.8,5.411083,1.609438,,0
-18,2,25,1,3,226834,1,222.8739,39.48939,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.3,17.2,0,64.8,416.4,416.4,0,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,64.8,5.411083,1.609438,,0
-18,2,25,1,1,226835,1,222.8739,2.069815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,66.7,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,66.7,5.411083,1.609438,,0
-18,2,25,1,2,226835,1,222.8739,3.069815,0,12,1,35.81081,1.858108,0,0,0,37.66892,0,0,0,2,0,5,81.35272,11.84267,0,66.7,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,66.7,5.411083,1.609438,3.628835,1
-18,2,25,1,3,226835,1,222.8739,4.069815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,66.7,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,66.7,5.411083,1.609438,,0
-18,2,25,1,1,226836,1,222.8739,14.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,0,0,65.9,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,65.9,5.411083,1.609438,,0
-18,2,25,1,2,226836,1,222.8739,15.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,0,0,65.9,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,65.9,5.411083,1.609438,,0
-18,2,25,1,3,226836,1,222.8739,16.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,0,0,65.9,416.4,416.4,1,0,1.609438,6.031646,0,3.258096,7.417941,0,1,0,65.9,5.411083,1.609438,,0
-18,2,25,1,1,226837,1,222.8739,15.85216,1,12,1,30.9423,0,0,0,318.5813,349.5236,1,0,0,2,0,5,70.2,0,0,56.8,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,56.8,5.411083,1.609438,5.856571,1
-18,2,25,1,2,226837,1,222.8739,16.85216,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,0,0,56.8,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,56.8,5.411083,1.609438,,0
-18,2,25,1,3,226837,1,222.8739,17.85216,1,12,1,30.04005,0,0,0,0,30.04005,0,0,0,3,0,5,70.2,0,0,56.8,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,56.8,5.411083,1.609438,3.402532,1
-18,2,25,1,1,226838,1,222.8739,4.372348,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,11.84267,0,81.5,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,81.5,5.411083,1.609438,,0
-18,2,25,1,2,226838,1,222.8739,5.372348,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,11.84267,0,81.5,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,81.5,5.411083,1.609438,,0
-18,2,25,1,3,226838,1,222.8739,6.372348,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,11.84267,0,81.5,416.4,416.4,1,1,1.609438,6.031646,0,3.258096,7.417941,0,1,0,81.5,5.411083,1.609438,,0
-11,2,0,0,1,226867,0,9482.698,59.85216,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,10.3,0,55.7,0,0,0,0,0,0,0,0,0,0,1,0,55.7,9.15733,0,,0
-11,2,0,0,2,226867,0,9482.698,60.85216,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,10.3,0,55.7,0,0,0,0,0,0,0,0,0,0,1,0,55.7,9.15733,0,,0
-11,2,0,0,3,226867,0,9482.698,61.85216,0,12,1,6.738544,0,0,0,0,6.738544,0,0,0,1,0,1,78.2,10.3,0,55.7,0,0,0,0,0,0,0,0,0,0,1,0,55.7,9.15733,0,1.907844,1
-11,2,0,1,1,226868,0,6939.589,53.89185,0,12,1,43.40921,0,0,0,0,43.40921,0,0,0,1,0,2,91,6.9,0,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.845142,.6931472,3.770672,1
-11,2,0,1,2,226868,0,6939.589,54.89185,0,12,1,125.9652,2.968147,44.56564,0,0,173.499,0,0,0,4,5,2,91,6.9,0,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.845142,.6931472,5.156172,1
-11,2,0,1,3,226868,0,6939.589,55.89185,0,12,1,257.0093,4.080997,0,0,0,261.0903,0,0,0,4,6,2,91,6.9,0,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.845142,.6931472,5.564867,1
-11,2,0,1,1,226869,0,6939.589,52.29843,1,8,1,19.58708,3.493912,0,0,0,23.081,0,0,0,1,0,2,89.4,34.5,1,58,0,0,0,0,.6931472,0,0,0,0,1,0,0,58,8.845142,.6931472,3.139009,1
-11,2,0,1,2,226869,0,6939.589,53.29843,1,8,1,0,3.006757,0,0,0,3.006757,0,0,0,0,0,2,89.4,34.5,1,58,0,0,0,0,.6931472,0,0,0,0,1,0,0,58,8.845142,.6931472,1.100862,1
-11,2,0,1,3,226869,0,6939.589,54.29843,1,8,1,257.6769,5.313752,25.81219,0,0,288.8029,0,0,0,3,7,2,89.4,34.5,1,58,0,0,0,0,.6931472,0,0,0,0,1,0,0,58,8.845142,.6931472,5.665744,1
-14,2,95,1,1,226870,0,12958.94,29.13347,0,14,1,47.90895,4.976178,0,0,0,52.88512,0,0,0,5,0,3,79.3,6.9,0,75,815,815,0,0,1.098612,6.703188,0,4.564348,6.754481,0,0,0,75,9.469619,1.098612,3.968122,1
-14,2,95,1,2,226870,0,12958.94,30.13347,0,14,1,22.92471,2.8861,0,0,0,25.81081,0,0,0,2,0,4,79.3,6.9,0,75,815,815,0,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,75,9.469619,1.386294,3.250793,1
-14,2,95,1,3,226870,0,12958.94,31.13347,0,14,1,114.8198,0,0,0,0,114.8198,0,0,0,2,0,4,79.3,6.9,0,75,815,815,0,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,75,9.469619,1.386294,4.743364,1
-14,2,95,1,1,226871,0,12958.94,2.078029,0,17,1,24.08682,2.41927,0,0,0,26.50609,0,0,0,3,0,3,81.35272,11.84267,0,85.2,815,815,1,0,1.098612,6.703188,0,4.564348,6.754481,0,0,0,85.2,9.469619,1.098612,3.277375,1
-14,2,95,1,2,226871,0,12958.94,3.078029,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,85.2,815,815,1,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,85.2,9.469619,1.386294,,0
-14,2,95,1,3,226871,0,12958.94,4.078029,0,17,1,28.08189,0,0,0,0,28.08189,0,0,0,2,0,4,81.35272,11.84267,0,85.2,815,815,1,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,85.2,9.469619,1.386294,3.335125,1
-14,2,95,1,1,226872,0,12958.94,28.282,1,17,1,93.96506,30.37586,35.6432,0,626.2043,786.1885,1,0,0,2,0,3,67.6,6.9,0,80.7,815,815,0,0,1.098612,6.703188,0,4.564348,6.754481,0,0,0,80.7,9.469619,1.098612,6.667197,1
-14,2,95,1,2,226872,0,12958.94,29.282,1,17,1,14.96139,13.5666,0,0,0,28.52799,0,0,0,1,0,4,67.6,6.9,0,80.7,815,815,0,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,80.7,9.469619,1.386294,3.350886,1
-14,2,95,1,3,226872,0,12958.94,30.282,1,17,1,51.84691,9.341344,24.47708,0,0,85.66533,0,0,0,3,0,4,67.6,6.9,0,80.7,815,815,0,0,1.386294,6.703188,0,4.564348,6.754481,0,0,0,80.7,9.469619,1.386294,4.450448,1
-15,2,95,0,1,226873,0,11890.32,7.720739,0,12,1,80.78349,2.218105,0,0,0,83.00159,0,0,0,6,0,4,78.3,11.84267,1,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,77.8,9.383564,1.386294,4.41886,1
-15,2,95,0,2,226873,0,11890.32,8.720739,0,12,1,0,1.761583,0,0,0,1.761583,0,0,0,0,0,4,78.3,11.84267,1,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,77.8,9.383564,1.386294,.5662128,1
-15,2,95,0,3,226873,0,11890.32,9.720739,0,12,1,4.450378,0,0,0,0,4.450378,0,0,0,1,0,4,78.3,11.84267,1,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,77.8,9.383564,1.386294,1.492989,1
-15,2,95,0,1,226874,0,11890.32,42.13826,0,12,1,33.35098,0,0,0,0,33.35098,0,0,0,3,0,4,86.2,13.8,0,88.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.383564,1.386294,3.507087,1
-15,2,95,0,2,226874,0,11890.32,43.13826,0,12,1,10.61776,0,0,0,0,10.61776,0,0,0,1,0,4,86.2,13.8,0,88.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.383564,1.386294,2.362528,1
-15,2,95,0,3,226874,0,11890.32,44.13826,0,12,1,26.70227,0,0,0,0,26.70227,0,0,0,2,0,4,86.2,13.8,0,88.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.383564,1.386294,3.284749,1
-15,2,95,0,1,226875,0,11890.32,41.56057,1,12,1,6.352568,30.82054,0,0,0,37.17311,0,0,0,1,0,4,60.1,20.7,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.383564,1.386294,3.615586,1
-15,2,95,0,2,226875,0,11890.32,42.56057,1,12,1,0,18.67278,0,0,0,18.67278,0,0,0,0,0,4,60.1,20.7,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.383564,1.386294,2.927067,1
-15,2,95,0,3,226875,0,11890.32,43.56057,1,12,1,6.675568,30.16021,0,0,0,36.83578,0,0,0,1,0,4,60.1,20.7,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.383564,1.386294,3.60647,1
-15,2,95,0,1,226876,0,11890.32,15.25804,1,12,1,248.2795,44.76443,0,0,0,293.0439,0,0,0,45,0,4,77.1,6.9,0,83,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,83,9.383564,1.386294,5.680323,1
-15,2,95,0,2,226876,0,11890.32,16.25804,1,12,1,112.9344,48.62452,0,0,0,161.5589,0,0,0,37,0,4,77.1,6.9,0,83,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,83,9.383564,1.386294,5.08487,1
-15,2,95,0,3,226876,0,11890.32,17.25804,1,12,1,24.03204,0,0,0,0,24.03204,0,0,0,2,0,4,77.1,6.9,0,83,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,83,9.383564,1.386294,3.179388,1
-14,2,95,0,1,226884,0,3374.194,14.36277,0,10,1,6.697578,6.434827,0,0,0,13.13241,0,0,0,1,0,2,81.9,6.9,0,72.7,200,200,1,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,72.7,8.124207,.6931472,2.575083,1
-14,2,95,0,2,226884,0,3374.194,15.36277,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,6.9,0,72.7,200,200,1,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,72.7,8.124207,.6931472,,0
-14,2,95,0,3,226884,0,3374.194,16.36276,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,6.9,0,72.7,200,200,1,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,72.7,8.124207,.6931472,,0
-14,2,95,0,1,226885,0,3374.194,34.39836,1,10,1,220.2473,29.25811,0,0,0,249.5054,0,0,0,4,7,2,80.9,17.2,1,19.3,200,200,0,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,19.3,8.124207,.6931472,5.519481,1
-14,2,95,0,2,226885,0,3374.194,35.39836,1,10,1,29.20455,85.98485,0,0,0,115.1894,0,0,0,2,0,2,80.9,17.2,1,19.3,200,200,0,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,19.3,8.124207,.6931472,4.746578,1
-14,2,95,0,3,226885,0,3374.194,36.39836,1,10,1,224.1873,6.311227,0,0,0,230.4985,0,0,0,4,5,2,80.9,17.2,1,19.3,200,200,0,0,.6931472,5.298317,0,4.564348,5.349611,1,0,0,19.3,8.124207,.6931472,5.440244,1
-13,2,0,0,1,226912,0,6392.962,29.05955,0,14,1,180.0054,4.737688,32.16809,107.0664,0,216.9111,0,0,5,4,2,1,82.4,6.9,0,85.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,85.2,8.763109,0,5.379488,1
-13,2,0,0,2,226912,0,6392.962,30.05955,0,14,1,106.6374,32.06442,1.220107,0,0,139.9219,0,0,0,7,0,1,82.4,6.9,0,85.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,85.2,8.763109,0,4.941084,1
-13,2,0,0,3,226912,0,6392.962,31.05955,0,14,1,93.04427,15.56459,0,0,0,108.6089,0,0,0,7,1,1,82.4,6.9,0,85.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,85.2,8.763109,0,4.687753,1
-13,2,0,0,1,226913,0,5351.32,22.2642,0,12,1,14.28571,3.773585,0,0,0,18.0593,0,0,0,1,0,1,58.5,3.4,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,79.5,8.585285,0,2.893661,1
-13,2,0,0,2,226913,0,5351.32,23.2642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,58.5,3.4,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,79.5,8.585285,0,,0
-13,2,0,0,3,226913,0,5351.32,24.2642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,58.5,3.4,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,79.5,8.585285,0,,0
-13,2,0,0,1,226914,0,6853.959,22.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,13.8,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,68.2,8.832727,0,,0
-13,2,0,0,2,226914,0,6853.959,23.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,13.8,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,68.2,8.832727,0,,0
-13,2,0,0,3,226914,0,6853.959,24.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,13.8,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,68.2,8.832727,0,,0
-13,2,0,0,1,226915,0,5033.431,24.43258,0,12,1,3.640146,3.463339,0,0,0,7.103484,0,0,0,1,0,1,85.6,0,0,85.2,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,85.2,8.524055,0,1.960585,1
-13,2,0,0,2,226915,0,5033.431,25.43258,0,12,1,25.20306,0,0,0,0,25.20306,0,0,0,3,0,1,85.6,0,0,85.2,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,85.2,8.524055,0,3.226965,1
-13,2,0,0,3,226915,0,5033.431,26.43258,0,12,1,25.46093,0,0,0,0,25.46093,0,0,0,2,0,1,85.6,0,0,85.2,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,85.2,8.524055,0,3.237145,1
-13,2,0,0,1,226916,0,3809.677,33.50034,0,12,1,8.320333,2.199688,0,0,0,10.52002,0,0,0,1,0,1,65.4,3.4,0,78.4,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,78.4,8.245563,0,2.35328,1
-13,2,0,0,2,226916,0,3809.677,34.50034,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,65.4,3.4,0,78.4,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,78.4,8.245563,0,,0
-13,2,0,0,3,226916,0,3809.677,35.50034,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,65.4,3.4,0,78.4,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,78.4,8.245563,0,,0
-11,2,0,1,1,226944,0,11005.87,30.47228,1,12,1,64.92815,0,11.70836,0,0,76.63651,0,0,0,4,1,4,80.9,10.3,0,80.7,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,80.7,9.306274,1.386294,4.339074,1
-11,2,0,1,2,226944,0,11005.87,31.47228,1,12,1,86.76685,0,0,29.08386,0,86.76685,0,0,2,3,0,4,80.9,10.3,0,80.7,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,80.7,9.306274,1.386294,4.463224,1
-11,2,0,1,3,226944,0,11005.87,32.47228,1,12,1,40.31896,0,30.89847,0,0,71.21743,0,0,0,2,1,4,80.9,10.3,0,80.7,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,80.7,9.306274,1.386294,4.265738,1
-11,2,0,1,1,226945,0,11005.87,5.240246,1,12,1,42.57584,0,0,0,0,42.57584,0,0,0,4,0,4,81.7,11.84267,0,96.3,0,455,1,1,1.386294,6.120297,0,0,0,0,0,0,96.3,9.306274,1.386294,3.751287,1
-11,2,0,1,2,226945,0,11005.87,6.240246,1,12,1,16.48085,0,0,0,0,16.48085,0,0,0,1,0,4,81.7,11.84267,0,96.3,0,455,1,1,1.386294,6.120297,0,0,0,0,0,0,96.3,9.306274,1.386294,2.802199,1
-11,2,0,1,3,226945,0,11005.87,7.240246,1,12,1,17.52022,0,0,0,0,17.52022,0,0,0,2,0,4,81.7,11.84267,0,96.3,0,455,1,1,1.386294,6.120297,0,0,0,0,0,0,96.3,9.306274,1.386294,2.863355,1
-11,2,0,1,1,226946,0,11005.87,8.876112,0,12,1,90.47366,0,31.6711,0,356.86,479.0048,1,0,0,2,1,4,78.3,11.84267,0,100,0,455,1,0,1.386294,6.120297,0,0,0,0,0,0,100,9.306274,1.386294,6.17171,1
-11,2,0,1,2,226946,0,11005.87,9.876112,0,12,1,47.01891,0,0,0,0,47.01891,0,0,0,5,0,4,78.3,11.84267,0,100,0,455,1,0,1.386294,6.120297,0,0,0,0,0,0,100,9.306274,1.386294,3.85055,1
-11,2,0,1,3,226946,0,11005.87,10.87611,0,12,1,26.50494,0,15.27403,0,0,41.77898,0,0,0,2,1,4,78.3,11.84267,0,100,0,455,1,0,1.386294,6.120297,0,0,0,0,0,0,100,9.306274,1.386294,3.732393,1
-11,2,0,1,1,226947,0,11005.87,31.64408,0,16,1,75.83821,0,27.98829,0,0,103.8265,0,0,0,1,1,4,81.4,10.3,0,75,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,75,9.306274,1.386294,4.642721,1
-11,2,0,1,2,226947,0,11005.87,32.64408,0,16,1,157.2952,0,0,0,0,157.2952,0,0,0,2,14,4,81.4,10.3,0,75,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,75,9.306274,1.386294,5.058124,1
-11,2,0,1,3,226947,0,11005.87,33.64408,0,16,1,31.89578,0,30.42677,0,0,62.32255,0,0,0,1,3,4,81.4,10.3,0,75,0,455,0,0,1.386294,6.120297,0,0,0,0,0,0,75,9.306274,1.386294,4.132323,1
-11,2,0,0,1,226957,0,8312.61,32.01643,1,12,1,30.72776,23.25607,35.89758,0,0,89.8814,0,0,0,1,1,4,78.2,6.9,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.025649,1.386294,4.498491,1
-11,2,0,0,2,226957,0,8312.61,33.01643,1,12,1,173.3661,10.07371,31.94103,0,0,215.3808,0,0,0,2,6,4,78.2,6.9,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.025649,1.386294,5.372408,1
-11,2,0,0,3,226957,0,8312.61,34.01643,1,12,1,135.3692,50.50592,37.18323,0,0,223.0583,0,0,0,4,0,4,78.2,6.9,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.025649,1.386294,5.407434,1
-11,2,0,0,1,226958,0,8312.61,30.41205,0,15,1,30.72776,0,35.89758,0,0,66.62534,0,0,0,2,1,4,92.6,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.025649,1.386294,4.199085,1
-11,2,0,0,2,226958,0,8312.61,31.41205,0,15,1,71.00737,0,18.32924,0,0,89.33661,0,0,0,2,0,4,92.6,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.025649,1.386294,4.492411,1
-11,2,0,0,3,226958,0,8312.61,32.41205,0,15,1,0,4.484959,40.73838,0,0,45.22334,0,0,0,0,0,4,92.6,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.025649,1.386294,3.811613,1
-11,2,0,0,1,226959,0,8312.61,3.140315,0,12,1,21.83288,1.342318,0,0,0,23.1752,0,0,0,3,0,4,81.35272,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.025649,1.386294,3.143083,1
-11,2,0,0,2,226959,0,8312.61,4.140315,0,12,1,126.2899,15.11548,0,0,414.4226,555.828,1,0,0,7,0,4,81.35272,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.025649,1.386294,6.320459,1
-11,2,0,0,3,226959,0,8312.61,5.140315,0,12,1,15.9526,0,0,0,0,15.9526,0,0,0,1,0,4,81.35272,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.025649,1.386294,2.769622,1
-15,2,95,1,1,226961,0,10456.12,60.88433,1,12,1,220.2223,11.5405,0,0,0,231.7628,0,0,0,7,7,2,64.4,37.9,0,64.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,64.8,9.255038,.6931472,5.445714,1
-15,2,95,1,2,226961,0,10456.12,61.88433,1,12,1,27.02703,14.02992,66.92567,0,0,107.9826,0,0,0,1,3,2,64.4,37.9,0,64.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,64.8,9.255038,.6931472,4.681971,1
-15,2,95,1,3,226961,0,10456.12,62.88433,1,12,1,48.50912,5.358255,0,0,0,53.86738,0,0,0,2,4,2,64.4,37.9,0,64.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,64.8,9.255038,.6931472,3.986525,1
-15,2,95,1,1,226962,0,10456.12,58.45585,0,7,1,75.70143,0,0,0,0,75.70143,0,0,0,2,0,2,81.9,24.1,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.255038,.6931472,4.326797,1
-15,2,95,1,2,226962,0,10456.12,59.45585,0,7,1,304.5125,11.80985,0,0,606.2741,922.5965,1,0,0,10,0,2,81.9,24.1,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.255038,.6931472,6.827192,1
-15,2,95,1,3,226962,0,10456.12,60.45585,0,7,1,323.231,12.74588,37.16511,0,0,373.142,0,0,0,5,7,2,81.9,24.1,0,53.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.255038,.6931472,5.921959,1
-13,2,0,1,1,226969,1,5347.801,27.73443,0,12,1,0,1.165514,0,0,0,1.165514,0,0,0,0,0,1,68.1,10.3,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,8.584628,0,.1531618,1
-13,2,0,1,2,226969,1,5347.801,28.73443,0,12,1,70.04362,7.489094,41.64324,38.77848,0,119.176,0,0,2,3,1,1,68.1,10.3,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,8.584628,0,4.780601,1
-13,2,0,1,3,226969,1,5347.801,29.73443,0,12,1,184.5238,5.287511,0,0,0,189.8113,0,0,0,4,0,1,68.1,10.3,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,8.584628,0,5.24603,1
-13,2,0,1,4,226969,1,5347.801,30.73443,0,12,1,25.44112,0,0,0,0,25.44112,0,0,0,0,2,1,68.1,10.3,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,8.584628,0,3.236367,1
-13,2,0,1,5,226969,1,5347.801,31.73443,0,12,1,49.15004,7.390983,44.81892,207.0288,0,101.3599,0,0,10,0,1,1,68.1,10.3,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,8.584628,0,4.618678,1
-16,2,95,0,1,226972,0,1605.865,54.76797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,40.4,20.7,1,50,750,0,0,0,0,0,0,4.564348,6.671367,0,0,0,50,7.382041,0,,0
-16,2,95,0,2,226972,0,1605.865,55.76797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,40.4,20.7,1,50,750,0,0,0,0,0,0,4.564348,6.671367,0,0,0,50,7.382041,0,,0
-16,2,95,0,3,226972,0,1605.865,56.76797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,40.4,20.7,1,50,750,0,0,0,0,0,0,4.564348,6.671367,0,0,0,50,7.382041,0,,0
-16,2,95,0,4,226972,0,1605.865,57.76797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,40.4,20.7,1,50,750,0,0,0,0,0,0,4.564348,6.671367,0,0,0,50,7.382041,0,,0
-16,2,95,0,5,226972,0,1605.865,58.76797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,40.4,20.7,1,50,750,0,0,0,0,0,0,4.564348,6.671367,0,0,0,50,7.382041,0,,0
-19,2,25,1,1,226973,0,10369.5,61.31964,1,12,1,184.4892,49.51826,42.35045,0,0,276.3578,0,0,0,5,1,1,72.3,24.1,1,58,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,58,9.24672,0,5.621696,1
-19,2,25,1,2,226973,0,10369.5,62.31964,1,12,1,7.239382,60.5695,0,0,0,67.80888,0,0,0,1,0,1,72.3,24.1,1,58,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,58,9.24672,0,4.216693,1
-19,2,25,1,3,226973,0,10369.5,63.31964,1,12,1,188.0285,75.81219,51.93591,0,0,315.7766,0,0,0,5,0,1,72.3,24.1,1,58,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,58,9.24672,0,5.755035,1
-5,2,25,0,1,226980,0,11900.88,51.0089,0,9,1,58.99021,4.095827,59.19114,0,0,122.2772,0,0,0,4,1,3,87.2,3.4,0,92,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92,9.384452,1.098612,4.806291,1
-5,2,25,0,2,226980,0,11900.88,52.0089,0,9,1,45.45454,4.640152,33.14394,0,0,83.23864,0,0,0,4,1,3,87.2,3.4,0,92,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92,9.384452,1.098612,4.421711,1
-5,2,25,0,3,226980,0,11900.88,53.0089,0,9,1,24.70741,0,0,0,0,24.70741,0,0,0,1,0,3,87.2,3.4,0,92,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92,9.384452,1.098612,3.207103,1
-5,2,25,0,1,226981,0,11900.88,16.70363,1,12,1,15.45595,0,0,0,0,15.45595,0,0,0,1,0,3,91.5,6.9,0,68.2,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.384452,1.098612,2.737994,1
-5,2,25,0,2,226981,0,11900.88,17.70363,1,12,1,14.20455,0,36.42992,0,0,50.63447,0,0,0,1,0,3,91.5,6.9,0,68.2,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.384452,1.098612,3.924633,1
-5,2,25,0,3,226981,0,11900.88,18.70363,1,12,1,9.969658,0,0,0,0,9.969658,0,0,0,1,0,3,91.5,6.9,0,68.2,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.384452,1.098612,2.299546,1
-5,2,25,0,1,226982,0,11900.88,45.77687,1,12,1,167.8259,15.37867,0,0,0,183.2045,0,0,0,4,17,3,73.4,17.2,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,67,9.384452,1.098612,5.210603,1
-5,2,25,0,2,226982,0,11900.88,46.77687,1,12,1,92.32954,13.84943,0,0,0,106.179,0,0,0,8,5,3,73.4,17.2,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,67,9.384452,1.098612,4.665126,1
-5,2,25,0,3,226982,0,11900.88,47.77687,1,12,1,185.0889,32.18465,22.61378,0,1655.878,1895.765,1,0,0,8,10,3,73.4,17.2,0,67,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,67,9.384452,1.098612,7.547378,1
-17,2,25,0,1,227002,0,8139.003,8.123203,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,,0
-17,2,25,0,2,227002,0,8139.003,9.123203,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,,0
-17,2,25,0,3,227002,0,8139.003,10.1232,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,,0
-17,2,25,0,1,227003,0,8139.003,37.45927,0,17,1,0,74.75819,0,0,0,74.75819,0,0,0,0,0,5,92.6,3.4,0,85.2,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,85.2,9.004546,1.609438,4.314259,1
-17,2,25,0,2,227003,0,8139.003,38.45927,0,17,1,84.08982,89.93789,34.68227,0,0,208.71,0,0,0,21,0,5,92.6,3.4,0,85.2,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,85.2,9.004546,1.609438,5.340946,1
-17,2,25,0,3,227003,0,8139.003,39.45927,0,17,1,26.1633,97.90166,0,0,0,124.065,0,0,0,6,0,5,92.6,3.4,0,85.2,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,85.2,9.004546,1.609438,4.820806,1
-17,2,25,0,1,227004,0,8139.003,12.52293,0,12,1,50.44202,3.146126,0,0,0,53.58814,0,0,0,4,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,3.981328,1
-17,2,25,0,2,227004,0,8139.003,13.52293,0,12,1,31.53368,0,.6306736,0,0,32.16436,0,0,0,3,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,3.470859,1
-17,2,25,0,3,227004,0,8139.003,14.52293,0,12,1,97.01492,8.406497,0,0,0,105.4214,0,0,0,5,0,5,93.3,11.84267,0,96.3,595,599,1,0,1.609438,6.395262,0,3.258096,7.774856,0,0,0,96.3,9.004546,1.609438,4.657966,1
-17,2,25,0,1,227005,0,8139.003,9.946612,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,11.84267,0,100,595,599,1,1,1.609438,6.395262,0,3.258096,7.774856,0,0,0,100,9.004546,1.609438,,0
-17,2,25,0,2,227005,0,8139.003,10.94661,1,12,1,12.90014,0,0,0,0,12.90014,0,0,0,1,0,5,98.3,11.84267,0,100,595,599,1,1,1.609438,6.395262,0,3.258096,7.774856,0,0,0,100,9.004546,1.609438,2.557238,1
-17,2,25,0,3,227005,0,8139.003,11.94661,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,11.84267,0,100,595,599,1,1,1.609438,6.395262,0,3.258096,7.774856,0,0,0,100,9.004546,1.609438,,0
-17,2,25,0,1,227006,0,8139.003,36.85421,1,12,1,11.96048,0,36.18825,0,0,48.14873,0,0,0,0,1,5,76.1,3.4,0,73.9,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,73.9,9.004546,1.609438,3.874295,1
-17,2,25,0,2,227006,0,8139.003,37.85421,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,76.1,3.4,0,73.9,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,73.9,9.004546,1.609438,,0
-17,2,25,0,3,227006,0,8139.003,38.85421,1,12,1,13.16945,0,21.29061,0,0,34.46005,0,0,0,0,1,5,76.1,3.4,0,73.9,595,599,0,0,1.609438,6.395262,0,3.258096,7.774856,1,0,0,73.9,9.004546,1.609438,3.539801,1
-13,2,0,1,1,227007,0,1173.021,26.98152,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,57.4,3.4,0,51.1,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,51.1,7.06819,0,,0
-13,2,0,1,2,227007,0,1173.021,27.98152,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,57.4,3.4,0,51.1,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,51.1,7.06819,0,,0
-13,2,0,1,3,227007,0,1173.021,28.98152,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,57.4,3.4,0,51.1,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,51.1,7.06819,0,,0
-11,2,0,1,1,227008,0,15428.15,38.26694,0,18,1,97.08841,7.993648,0,0,50.82054,155.9026,1,1,0,5,1,3,77.7,6.9,0,76.1,0,354.72,0,0,1.098612,5.871329,0,0,0,1,0,0,76.1,9.644014,1.098612,5.049232,1
-11,2,0,1,2,227008,0,15428.15,39.26694,0,18,1,138.4218,3.257722,0,0,0,141.6795,0,0,0,5,0,4,77.7,6.9,0,76.1,0,354.72,0,0,1.386294,5.871329,0,0,0,1,0,0,76.1,9.644014,1.386294,4.953568,1
-11,2,0,1,3,227008,0,15428.15,40.26694,0,18,1,70.98354,9.870939,0,0,0,80.85447,0,0,0,4,0,4,77.7,6.9,0,76.1,0,354.72,0,0,1.386294,5.871329,0,0,0,1,0,0,76.1,9.644014,1.386294,4.392651,1
-11,2,0,1,1,227009,0,15428.15,31.33744,1,16,1,70.67231,24.58973,0,0,831.3923,926.6543,1,0,0,5,0,3,63.8,10.3,1,86.4,0,354.72,0,0,1.098612,5.871329,0,0,0,1,0,0,86.4,9.644014,1.098612,6.831581,1
-11,2,0,1,2,227009,0,15428.15,32.33744,1,16,1,139.7201,49.63803,0,0,0,189.3581,0,0,0,14,2,4,63.8,10.3,1,86.4,0,354.72,0,0,1.386294,5.871329,0,0,0,1,0,0,86.4,9.644014,1.386294,5.24364,1
-11,2,0,1,3,227009,0,15428.15,33.33744,1,16,1,617.0449,17.21851,0,0,804.3836,1438.647,1,0,0,6,0,4,63.8,10.3,1,86.4,0,354.72,0,0,1.386294,5.871329,0,0,0,1,0,0,86.4,9.644014,1.386294,7.271459,1
-13,2,0,1,1,227025,0,9795.895,28.69268,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,77.7,0,0,77.3,300,312,0,0,.6931472,5.743003,1,4.564348,5.755076,0,1,0,77.3,9.18982,.6931472,,0
-13,2,0,1,2,227025,0,9795.895,29.69268,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,0,0,77.3,300,312,0,0,1.098612,5.743003,1,4.564348,5.755076,0,1,0,77.3,9.18982,1.098612,,0
-13,2,0,1,3,227025,0,9795.895,30.69268,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,0,0,77.3,300,312,0,0,1.098612,5.743003,1,4.564348,5.755076,0,1,0,77.3,9.18982,1.098612,,0
-13,2,0,1,1,227027,0,9795.895,23.14579,1,12,1,55.41035,26.25196,0,0,785.1804,866.8427,1,0,0,4,0,2,25,10.3,0,37.5,300,312,0,0,.6931472,5.743003,1,4.564348,5.755076,0,1,0,37.5,9.18982,.6931472,6.764857,1
-13,2,0,1,2,227027,0,9795.895,24.14579,1,12,1,12.97453,9.673234,0,0,0,22.64777,0,0,0,2,0,3,25,10.3,0,37.5,300,312,0,0,1.098612,5.743003,1,4.564348,5.755076,0,1,0,37.5,9.18982,1.098612,3.120061,1
-13,2,0,1,3,227027,0,9795.895,25.14579,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,25,10.3,0,37.5,300,312,0,0,1.098612,5.743003,1,4.564348,5.755076,0,1,0,37.5,9.18982,1.098612,,0
-11,2,0,0,1,227032,0,11667.45,29.50856,1,16,1,133.1657,6.087877,0,0,0,139.2536,0,0,0,3,1,3,84.6,10.3,0,87.5,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,87.5,9.364644,1.098612,4.936296,1
-11,2,0,0,2,227032,0,11667.45,30.50856,1,16,1,189.9131,28.28185,0,0,0,218.195,0,0,0,34,0,3,84.6,10.3,0,87.5,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,87.5,9.364644,1.098612,5.385389,1
-11,2,0,0,3,227032,0,11667.45,31.50856,1,16,1,134.2012,6.94259,0,0,0,141.1438,0,0,0,18,1,3,84.6,10.3,0,87.5,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,87.5,9.364644,1.098612,4.949779,1
-11,2,0,0,1,227033,0,11667.45,33.0267,0,22,1,0,0,0,0,0,0,0,0,0,0,0,3,75,17.2,0,69.3,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,69.3,9.364644,1.098612,,0
-11,2,0,0,2,227033,0,11667.45,34.0267,0,22,1,164.6525,18.23842,31.37066,0,128.6631,342.9247,1,0,0,1,1,3,75,17.2,0,69.3,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,69.3,9.364644,1.098612,5.837511,1
-11,2,0,0,3,227033,0,11667.45,35.0267,0,22,1,187.3209,10.45394,0,0,0,197.7748,0,0,0,3,0,3,75,17.2,0,69.3,0,332.28,0,0,1.098612,5.805978,0,0,0,0,0,0,69.3,9.364644,1.098612,5.287129,1
-11,2,0,0,1,227034,0,11667.45,1.026694,1,16,1,61.14346,13.01747,0,0,0,74.16093,0,0,0,7,0,3,81.35272,11.84267,0,92.6,0,332.28,1,1,1.098612,5.805978,0,0,0,0,0,0,92.6,9.364644,1.098612,4.306238,1
-11,2,0,0,2,227034,0,11667.45,2.026694,1,16,1,7.722008,0,0,0,0,7.722008,0,0,0,1,0,3,81.35272,11.84267,0,92.6,0,332.28,1,1,1.098612,5.805978,0,0,0,0,0,0,92.6,9.364644,1.098612,2.044074,1
-11,2,0,0,3,227034,0,11667.45,3.026694,1,16,1,20.69426,0,0,0,0,20.69426,0,0,0,2,0,3,81.35272,11.84267,0,92.6,0,332.28,1,1,1.098612,5.805978,0,0,0,0,0,0,92.6,9.364644,1.098612,3.029856,1
-11,2,0,0,1,227058,0,10673.9,20.26557,0,12,1,0,1.615264,0,0,0,1.615264,0,0,0,0,0,3,73.7,13.8,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,.4794984,1
-11,2,0,0,2,227058,0,10673.9,21.26557,0,12,1,16.81884,3.382989,0,0,0,20.20183,0,0,0,1,0,3,73.7,13.8,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,3.005773,1
-11,2,0,0,3,227058,0,10673.9,22.26557,0,12,1,8.810573,0,0,0,0,8.810573,0,0,0,1,0,3,73.7,13.8,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,2.175952,1
-11,2,0,0,1,227059,0,10673.9,46.47502,0,12,1,234.4485,7.867224,57.28698,0,0,299.6027,0,0,0,7,1,3,73.2,3.4,0,64.3,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,64.3,9.275651,1.098612,5.702457,1
-11,2,0,0,2,227059,0,10673.9,47.47502,0,12,1,107.6406,0,0,0,0,107.6406,0,0,0,4,1,3,73.2,3.4,0,64.3,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,64.3,9.275651,1.098612,4.678798,1
-11,2,0,0,3,227059,0,10673.9,48.47502,0,12,1,163.1057,8.792952,0,0,0,171.8987,0,0,0,2,19,3,73.2,3.4,0,64.3,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,64.3,9.275651,1.098612,5.146905,1
-11,2,0,0,1,227060,0,10673.9,45.82341,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,17.2,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,,0
-11,2,0,0,2,227060,0,10673.9,46.82341,1,12,1,16.81884,8.24123,0,0,0,25.06007,0,0,0,1,1,3,89.4,17.2,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,3.221276,1
-11,2,0,0,3,227060,0,10673.9,47.82341,1,12,1,151.5419,16.20264,30.96916,0,0,198.7137,0,0,0,3,16,3,89.4,17.2,0,72.7,0,246.24,0,0,1.098612,5.506307,0,0,0,1,0,0,72.7,9.275651,1.098612,5.291865,1
-5,2,25,1,1,227084,0,9892.669,28.27652,1,12,1,76.63651,34.50772,0,0,0,111.1442,0,0,0,8,0,5,81.9,10.3,0,75,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,75,9.199651,1.609438,4.710829,1
-5,2,25,1,2,227084,0,9892.669,29.27652,1,12,1,89.91759,68.4828,17.93505,0,0,176.3354,0,0,0,10,0,5,81.9,10.3,0,75,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,75,9.199651,1.609438,5.172388,1
-5,2,25,1,3,227084,0,9892.669,30.27652,1,12,1,113.6568,96.34322,0,0,0,210,0,0,0,12,0,5,81.9,10.3,0,75,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,75,9.199651,1.609438,5.347107,1
-5,2,25,1,1,227085,0,9892.669,6.75154,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,,0
-5,2,25,1,2,227085,0,9892.669,7.75154,0,12,1,58.03684,2.443044,0,0,0,60.47989,0,0,0,3,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,4.102311,1
-5,2,25,1,3,227085,0,9892.669,8.75154,0,12,1,21.11411,0,0,0,0,21.11411,0,0,0,2,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,3.049941,1
-5,2,25,1,1,227086,0,9892.669,9.377139,0,12,1,76.05109,3.459287,0,0,0,79.51038,0,0,0,8,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,4.375887,1
-5,2,25,1,2,227086,0,9892.669,10.37714,0,12,1,40.01454,11.63354,0,0,0,51.64809,0,0,0,6,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,3.944453,1
-5,2,25,1,3,227086,0,9892.669,11.37714,0,12,1,46.72057,7.353998,0,0,0,54.07457,0,0,0,7,0,5,91.7,11.84267,0,100,722.1,0,1,0,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,3.990364,1
-5,2,25,1,1,227087,0,9892.669,31.66324,0,12,1,124.8004,24.0447,0,0,0,148.8451,0,0,0,11,0,5,72.3,10.3,1,58,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,58,9.199651,1.609438,5.002906,1
-5,2,25,1,2,227087,0,9892.669,32.66325,0,12,1,11.87591,3.11682,0,0,0,14.99273,0,0,0,2,0,5,72.3,10.3,1,58,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,58,9.199651,1.609438,2.707565,1
-5,2,25,1,3,227087,0,9892.669,33.66325,0,12,1,79.84726,7.237197,0,0,0,87.08446,0,0,0,7,0,5,72.3,10.3,1,58,722.1,0,0,0,1.609438,0,0,3.258096,7.968458,0,1,0,58,9.199651,1.609438,4.466878,1
-5,2,25,1,1,227088,0,9892.669,8.394251,1,12,1,79.0314,6.88132,0,0,0,85.91272,0,0,0,6,0,5,91.7,11.84267,0,100,722.1,0,1,1,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,4.453332,1
-5,2,25,1,2,227088,0,9892.669,9.394251,1,12,1,22.17644,5.647116,0,0,0,27.82356,0,0,0,3,0,5,91.7,11.84267,0,100,722.1,0,1,1,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,3.325883,1
-5,2,25,1,3,227088,0,9892.669,10.39425,1,12,1,57.74932,4.173405,0,0,0,61.92273,0,0,0,6,0,5,91.7,11.84267,0,100,722.1,0,1,1,1.609438,0,0,3.258096,7.968458,1,0,0,100,9.199651,1.609438,4.125887,1
-13,2,0,1,1,227098,0,8665.641,47.05818,0,9,1,68.68713,28.67655,54.83854,21.17522,0,152.2022,0,0,2,2,1,4,77.7,6.9,0,93.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.067237,1.386294,5.02521,1
-13,2,0,1,2,227098,0,8665.641,48.05818,0,9,1,413.972,30.57915,0,19.30502,0,444.5511,0,0,1,13,0,4,77.7,6.9,0,93.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.067237,1.386294,6.097065,1
-13,2,0,1,3,227098,0,8665.641,49.05818,0,9,1,108.0329,5.594125,0,0,0,113.6271,0,0,0,0,13,4,77.7,6.9,0,93.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.067237,1.386294,4.732922,1
-13,2,0,1,1,227099,0,8665.641,46.61739,1,8,1,167.549,10.26998,0,0,264.1186,441.9375,1,0,0,10,0,4,91.5,13.8,0,97.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,97.7,9.067237,1.386294,6.091168,1
-13,2,0,1,2,227099,0,8665.641,47.61739,1,8,1,19.78765,0,0,0,1281.559,1301.347,1,0,0,4,0,4,91.5,13.8,0,97.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,97.7,9.067237,1.386294,7.171155,1
-13,2,0,1,3,227099,0,8665.641,48.61739,1,8,1,52.51447,2.527815,32.9595,0,0,88.00178,0,0,0,3,0,4,91.5,13.8,0,97.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,97.7,9.067237,1.386294,4.477357,1
-13,2,0,1,1,227100,0,8665.641,12.96646,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,100,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,,0
-13,2,0,1,2,227100,0,8665.641,13.96646,1,8,1,7.239382,1.737452,0,0,0,8.976834,0,0,0,1,0,4,100,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,2.194647,1
-13,2,0,1,3,227100,0,8665.641,14.96646,1,8,1,13.79617,0,0,0,0,13.79617,0,0,0,1,0,4,100,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,2.624391,1
-13,2,0,1,1,227101,0,8665.641,14.17933,0,8,1,7.94071,0,0,0,0,7.94071,0,0,0,1,0,4,91.5,0,1,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,2.072003,1
-13,2,0,1,2,227101,0,8665.641,15.17933,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,91.5,0,1,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,,0
-13,2,0,1,3,227101,0,8665.641,16.17933,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,91.5,0,1,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.067237,1.386294,,0
-11,2,0,1,1,227117,0,2940.281,36.69815,0,12,1,9.845662,0,0,0,0,9.845662,0,0,0,2,0,1,59,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.986601,0,2.287031,1
-11,2,0,1,2,227117,0,2940.281,37.69815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,59,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.986601,0,,0
-11,2,0,1,3,227117,0,2940.281,38.69815,0,12,1,201.2579,53.4142,0,0,0,254.6721,0,0,0,7,0,1,59,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.986601,0,5.539977,1
-11,2,0,1,1,227170,0,8665.641,20.61875,1,11,1,189.4004,32.25375,42.80514,0,0,264.4593,0,0,0,8,1,2,62.8,17.2,1,34.1,0,0,0,0,.6931472,0,0,0,0,0,1,0,34.1,9.067237,.6931472,5.577687,1
-11,2,0,1,2,227170,0,8665.641,21.61875,1,11,1,113.47,16.6325,35.69058,0,0,165.7931,0,0,0,4,2,2,62.8,17.2,1,34.1,0,0,0,0,.6931472,0,0,0,0,0,1,0,34.1,9.067237,.6931472,5.110741,1
-11,2,0,1,3,227170,0,8665.641,22.61875,1,11,1,228.8482,4.322493,0,9.485095,0,233.1707,0,0,1,5,1,2,62.8,17.2,1,34.1,0,0,0,0,.6931472,0,0,0,0,0,1,0,34.1,9.067237,.6931472,5.451771,1
-11,2,0,1,4,227170,0,8665.641,23.61875,1,11,1,115.1778,12.30356,30.3019,0,0,157.7833,0,0,0,7,2,2,62.8,17.2,1,34.1,0,0,0,0,.6931472,0,0,0,0,0,1,0,34.1,9.067237,.6931472,5.061223,1
-11,2,0,1,5,227170,0,8665.641,24.61875,1,11,1,49.92548,7.816691,0,0,658.588,716.3301,1,0,0,3,0,2,62.8,17.2,1,34.1,0,0,0,0,.6931472,0,0,0,0,0,1,0,34.1,9.067237,.6931472,6.574141,1
-11,2,0,1,1,227171,0,8665.641,3.18412,1,11,1,38.81156,17.26445,0,0,0,56.07602,0,0,0,5,0,2,81.35272,11.84267,0,92.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,92.6,9.067237,.6931472,4.026708,1
-11,2,0,1,2,227171,0,8665.641,4.184121,1,11,1,35.38311,0,0,0,201.3128,236.696,1,0,0,2,0,2,81.35272,11.84267,0,92.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,92.6,9.067237,.6931472,5.466776,1
-11,2,0,1,3,227171,0,8665.641,5.184121,1,11,1,66.6215,7.673893,0,38.39205,0,74.29539,0,0,3,7,0,2,81.35272,11.84267,0,92.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,92.6,9.067237,.6931472,4.308049,1
-11,2,0,1,4,227171,0,8665.641,6.184121,1,11,1,36.39371,12.29942,0,0,0,48.69313,0,0,0,5,0,2,81.35272,11.84267,0,92.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,92.6,9.067237,.6931472,3.885538,1
-11,2,0,1,5,227171,0,8665.641,7.184121,1,11,1,238.0216,0,0,0,0,238.0216,0,0,0,6,0,2,81.35272,11.84267,0,92.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,92.6,9.067237,.6931472,5.472362,1
-19,2,25,0,1,227172,0,2217.009,22.53799,1,12,1,105.5056,40.56644,0,7.411329,0,146.072,0,0,1,10,0,3,46.8,10.3,0,68.2,514.8,514.8,0,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,68.2,7.704365,1.098612,4.984099,1
-19,2,25,0,2,227172,0,2217.009,23.53799,1,12,1,84.26641,36.28378,0,0,0,120.5502,0,0,0,7,0,3,46.8,10.3,0,68.2,514.8,514.8,0,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,68.2,7.704365,1.098612,4.792066,1
-19,2,25,0,3,227172,0,2217.009,24.53799,1,12,1,533.6226,10.83667,0,0,293.6805,838.1398,1,0,0,7,1,3,46.8,10.3,0,68.2,514.8,514.8,0,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,68.2,7.704365,1.098612,6.731185,1
-19,2,25,0,1,227173,0,2217.009,2.069815,1,12,1,24.88089,3.05982,0,0,0,27.94071,0,0,0,3,0,3,81.35272,11.84267,0,66.7,514.8,514.8,1,1,1.098612,6.243779,0,3.258096,7.630073,0,1,0,66.7,7.704365,1.098612,3.330085,1
-19,2,25,0,2,227173,0,2217.009,3.069815,1,12,1,0,5.173745,0,0,0,5.173745,0,0,0,0,0,3,81.35272,11.84267,0,66.7,514.8,514.8,1,1,1.098612,6.243779,0,3.258096,7.630073,0,1,0,66.7,7.704365,1.098612,1.643597,1
-19,2,25,0,3,227173,0,2217.009,4.069815,1,12,1,21.91811,2.242991,0,0,0,24.1611,0,0,0,1,0,3,81.35272,11.84267,0,66.7,514.8,514.8,1,1,1.098612,6.243779,0,3.258096,7.630073,0,1,0,66.7,7.704365,1.098612,3.184744,1
-19,2,25,0,1,227174,0,2217.009,3.627652,0,12,1,39.70355,0,0,0,0,39.70355,0,0,0,3,0,3,81.35272,11.84267,0,51.9,514.8,514.8,1,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,51.9,7.704365,1.098612,3.681441,1
-19,2,25,0,2,227174,0,2217.009,4.627652,0,12,1,33.78378,4.937259,0,0,0,38.72104,0,0,0,3,0,3,81.35272,11.84267,0,51.9,514.8,514.8,1,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,51.9,7.704365,1.098612,3.656383,1
-19,2,25,0,3,227174,0,2217.009,5.627652,0,12,1,13.57365,3.377837,0,0,0,16.95149,0,0,0,1,0,3,81.35272,11.84267,0,51.9,514.8,514.8,1,0,1.098612,6.243779,0,3.258096,7.630073,0,0,0,51.9,7.704365,1.098612,2.830356,1
-11,2,0,1,1,227178,0,19315.54,22.39836,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,13.8,0,62.5,0,0,0,0,0,0,0,0,0,1,0,0,62.5,9.868717,0,,0
-11,2,0,1,2,227178,0,19315.54,23.39836,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,13.8,0,62.5,0,0,0,0,0,0,0,0,0,1,0,0,62.5,9.868717,0,,0
-11,2,0,1,3,227178,0,19315.54,24.39836,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,13.8,0,62.5,0,0,0,0,0,0,0,0,0,1,0,0,62.5,9.868717,0,,0
-11,2,0,1,4,227178,0,19315.54,25.39836,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,13.8,0,62.5,0,0,0,0,0,0,0,0,0,1,0,0,62.5,9.868717,0,,0
-11,2,0,1,5,227178,0,19315.54,26.39836,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,13.8,0,62.5,0,0,0,0,0,0,0,0,0,1,0,0,62.5,9.868717,0,,0
-13,2,0,0,1,227182,0,4913.196,53.57426,1,12,1,200.2141,49.00964,53.7152,0,993.8704,1296.809,1,0,0,19,12,2,64.9,31,1,73.9,300,500.4,0,0,.6931472,6.215408,1,4.564348,5.755076,0,0,0,73.9,8.499884,.6931472,7.167662,1
-13,2,0,0,2,227182,0,4913.196,54.57426,1,12,1,236.9449,74.97316,0,0,0,311.918,0,0,0,19,17,1,64.9,31,1,73.9,300,500.4,0,0,0,6.215408,1,4.564348,5.755076,0,0,0,73.9,8.499884,0,5.74274,1
-13,2,0,0,3,227182,0,4913.196,55.57426,1,12,1,216.1247,58.21138,0,0,0,274.336,0,0,0,12,10,1,64.9,31,1,73.9,300,500.4,0,0,0,6.215408,1,4.564348,5.755076,0,0,0,73.9,8.499884,0,5.614354,1
-13,2,0,0,1,227183,0,4913.196,18.2642,1,11,1,92.07709,7.200214,0,0,0,99.27731,0,0,0,2,14,2,68.1,3.4,0,84.1,300,500.4,0,0,.6931472,6.215408,1,4.564348,5.755076,0,0,0,84.1,8.499884,.6931472,4.597917,1
-11,2,0,1,1,227195,0,8665.641,16.58864,1,12,1,128.6395,8.17893,0,0,100,236.8184,1,0,0,5,12,4,39.9,10.3,1,46.6,0,48,1,1,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,5.467294,1
-11,2,0,1,2,227195,0,8665.641,17.58864,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,39.9,10.3,1,46.6,0,48,1,1,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,,0
-11,2,0,1,3,227195,0,8665.641,18.58864,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,39.9,10.3,1,46.6,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,,0
-11,2,0,1,1,227196,0,8665.641,19.38946,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,26.6,13.8,1,46.6,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,,0
-11,2,0,1,2,227196,0,8665.641,20.38946,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,26.6,13.8,1,46.6,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,,0
-11,2,0,1,3,227196,0,8665.641,21.38946,0,12,1,0,0,33.27993,0,0,33.27993,0,0,0,0,0,4,26.6,13.8,1,46.6,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,46.6,9.067237,1.386294,3.504955,1
-11,2,0,1,1,227197,0,8665.641,20.34771,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,55.9,3.4,0,70.5,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,70.5,9.067237,1.386294,,0
-11,2,0,1,2,227197,0,8665.641,21.34771,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,55.9,3.4,0,70.5,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,70.5,9.067237,1.386294,,0
-11,2,0,1,3,227197,0,8665.641,22.34771,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,55.9,3.4,0,70.5,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,70.5,9.067237,1.386294,,0
-11,2,0,1,1,227199,0,8665.641,39.69336,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,17.2,0,68.2,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,68.2,9.067237,1.386294,,0
-11,2,0,1,2,227199,0,8665.641,40.69336,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,17.2,0,68.2,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,68.2,9.067237,1.386294,,0
-11,2,0,1,3,227199,0,8665.641,41.69336,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,17.2,0,68.2,0,48,0,0,1.386294,3.871201,0,0,0,0,0,0,68.2,9.067237,1.386294,,0
-5,2,25,0,1,227226,0,7191.202,37.80424,1,14,1,81.80593,21.30997,0,0,0,103.1159,0,0,0,9,0,3,72.9,17.2,0,70.5,539.85,539.85,0,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,70.5,8.880753,1.098612,4.635854,1
-5,2,25,0,2,227226,0,7191.202,38.80424,1,14,1,60.07371,7.82801,0,0,0,67.90172,0,0,0,12,0,3,72.9,17.2,0,70.5,539.85,539.85,0,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,70.5,8.880753,1.098612,4.218061,1
-5,2,25,0,3,227226,0,7191.202,39.80424,1,14,1,57.20146,13.268,0,0,0,70.46946,0,0,0,10,0,1,72.9,17.2,0,70.5,539.85,539.85,0,0,0,6.291291,0,3.258096,7.677586,0,0,0,70.5,8.880753,0,4.255179,1
-5,2,25,0,1,227227,0,7191.202,15.55099,0,14,1,26.95418,0,0,0,0,26.95418,0,0,0,1,0,3,64.9,10.3,0,73.9,539.85,539.85,1,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,73.9,8.880753,1.098612,3.294138,1
-5,2,25,0,2,227227,0,7191.202,16.55099,0,14,1,40.29484,9.38575,0,0,0,49.68059,0,0,0,5,0,3,64.9,10.3,0,73.9,539.85,539.85,1,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,73.9,8.880753,1.098612,3.905614,1
-5,2,25,0,1,227228,0,7191.202,12.75291,0,14,1,18.32884,0,0,0,0,18.32884,0,0,0,1,0,3,66.7,11.84267,0,74.1,539.85,539.85,1,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,74.1,8.880753,1.098612,2.908476,1
-5,2,25,0,2,227228,0,7191.202,13.75291,0,14,.4684932,17.69042,7.257985,0,0,0,24.9484,0,0,0,3,0,3,66.7,11.84267,0,74.1,539.85,539.85,1,0,1.098612,6.291291,0,3.258096,7.677586,0,0,0,74.1,8.880753,1.098612,3.21681,1
-11,2,0,0,1,227231,0,3516.129,8.506502,1,12,1,0,.7494647,0,0,0,.7494647,0,0,0,0,0,6,88.3,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,-.2883961,1
-11,2,0,0,2,227231,0,3516.129,9.506502,1,12,1,10.00488,4.880429,0,0,0,14.88531,0,0,0,1,0,6,88.3,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,2.700375,1
-11,2,0,0,3,227231,0,3516.129,10.5065,1,12,1,15.58266,28.55917,0,0,0,44.14183,0,0,0,2,0,6,88.3,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,3.787408,1
-11,2,0,0,1,227232,0,3516.129,9.338809,1,12,1,0,.7494647,0,0,0,.7494647,0,0,0,0,0,6,85,11.84267,1,51.9,0,0,1,1,1.791759,0,0,0,0,0,1,0,51.9,8.165401,1.791759,-.2883961,1
-11,2,0,0,2,227232,0,3516.129,10.33881,1,12,1,6.100537,6.564178,0,0,0,12.66471,0,0,0,1,0,6,85,11.84267,1,51.9,0,0,1,1,1.791759,0,0,0,0,0,1,0,51.9,8.165401,1.791759,2.53882,1
-11,2,0,0,3,227232,0,3516.129,11.33881,1,12,1,44.30894,7.859078,0,0,0,52.16802,0,0,0,2,0,6,85,11.84267,1,51.9,0,0,1,1,1.791759,0,0,0,0,0,1,0,51.9,8.165401,1.791759,3.95447,1
-11,2,0,0,1,227233,0,3516.129,4.982888,1,12,1,13.3833,.7494647,0,0,0,14.13276,0,0,0,1,0,6,81.35272,11.84267,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,1,0,59.3,8.165401,1.791759,2.648496,1
-11,2,0,0,2,227233,0,3516.129,5.982888,1,12,1,0,4.148365,0,0,0,4.148365,0,0,0,0,0,6,81.35272,11.84267,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,1,0,59.3,8.165401,1.791759,1.422714,1
-11,2,0,0,3,227233,0,3516.129,6.982888,1,12,1,0,1.535682,0,0,0,1.535682,0,0,0,0,0,6,81.35272,11.84267,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,1,0,59.3,8.165401,1.791759,.4289746,1
-11,2,0,0,1,227234,0,3516.129,27.69336,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,27.6,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,8.165401,1.791759,,0
-11,2,0,0,2,227234,0,3516.129,28.69336,1,12,1,76.37872,80.8492,0,0,1139.932,1297.16,2,0,0,6,0,6,81.9,27.6,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,8.165401,1.791759,7.167932,1
-11,2,0,0,3,227234,0,3516.129,29.69336,1,12,1,15.80849,33.34688,0,0,0,49.15538,0,0,0,2,0,6,81.9,27.6,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,8.165401,1.791759,3.894986,1
-11,2,0,0,1,227235,0,3516.129,7.438741,0,12,1,330.1338,132.8747,0,0,0,463.0086,0,0,0,14,0,6,88.3,11.84267,1,33.3,0,0,1,0,1.791759,0,0,0,0,0,1,0,33.3,8.165401,1.791759,6.137745,1
-11,2,0,0,2,227235,0,3516.129,8.438741,0,12,1,138.9409,117.2523,0,0,0,256.1933,0,0,0,8,0,6,88.3,11.84267,1,33.3,0,0,1,0,1.791759,0,0,0,0,0,1,0,33.3,8.165401,1.791759,5.545932,1
-11,2,0,0,3,227235,0,3516.129,9.438741,0,12,1,36.01626,125.1807,0,0,0,161.1969,0,0,0,3,0,6,88.3,11.84267,1,33.3,0,0,1,0,1.791759,0,0,0,0,0,1,0,33.3,8.165401,1.791759,5.082627,1
-11,2,0,0,1,227236,0,3516.129,5.927447,1,12,1,14.1863,.7494647,0,0,0,14.93576,0,0,0,3,0,6,86.7,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,2.703758,1
-11,2,0,0,2,227236,0,3516.129,6.927447,1,12,1,5.856515,9.004393,0,0,0,14.86091,0,0,0,1,0,6,86.7,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,2.698734,1
-11,2,0,0,3,227236,0,3516.129,7.927447,1,12,1,6.775068,1.535682,0,0,0,8.31075,0,0,0,1,0,6,86.7,11.84267,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,8.165401,1.791759,2.11755,1
-18,2,25,1,1,227245,0,2105.572,26.26147,1,14,1,160.6469,148.0916,21.56334,1261.725,1564.555,1894.857,1,0,47,4,0,2,42,20.7,0,71.6,320,320,0,0,.6931472,5.768321,0,3.258096,7.154615,1,0,0,71.6,7.652817,.6931472,7.546899,1
-18,2,25,1,2,227245,0,2105.572,27.26147,1,14,1,65.84766,106.1622,0,1086.978,0,172.0098,0,0,41,4,0,2,42,20.7,0,71.6,320,320,0,0,.6931472,5.768321,0,3.258096,7.154615,1,0,0,71.6,7.652817,.6931472,5.147552,1
-18,2,25,1,3,227245,0,2105.572,28.26147,1,14,1,67.22881,96.57247,0,1071.103,0,163.8013,0,0,40,7,0,2,42,20.7,0,71.6,320,320,0,0,.6931472,5.768321,0,3.258096,7.154615,1,0,0,71.6,7.652817,.6931472,5.098654,1
-18,2,25,1,1,227246,0,2105.572,6.091718,0,14,1,20.48518,0,0,0,296.9811,317.4663,1,0,0,3,0,2,88.3,11.84267,0,88.9,320,320,1,0,.6931472,5.768321,0,3.258096,7.154615,0,0,0,88.9,7.652817,.6931472,5.760372,1
-18,2,25,1,2,227246,0,2105.572,7.091718,0,14,1,20.63882,0,0,0,0,20.63882,0,0,0,3,0,2,88.3,11.84267,0,88.9,320,320,1,0,.6931472,5.768321,0,3.258096,7.154615,0,0,0,88.9,7.652817,.6931472,3.027174,1
-18,2,25,1,3,227246,0,2105.572,8.091718,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,11.84267,0,88.9,320,320,1,0,.6931472,5.768321,0,3.258096,7.154615,0,0,0,88.9,7.652817,.6931472,,0
-17,2,25,0,1,227258,0,10679.77,10.81177,1,10,1,47.55281,2.210201,0,0,0,49.76301,0,0,0,6,1,5,83.3,11.84267,0,85.2,780,780,1,1,1.609438,6.659294,0,3.258096,8.045588,0,0,0,85.2,9.276199,1.609438,3.907272,1
-17,2,25,0,2,227258,0,10679.77,11.81177,1,10,1,109.6117,0,0,0,0,109.6117,0,0,0,7,0,5,83.3,11.84267,0,85.2,780,780,1,1,1.609438,6.659294,0,3.258096,8.045588,0,0,0,85.2,9.276199,1.609438,4.696945,1
-17,2,25,0,3,227258,0,10679.77,12.81177,1,10,1,63.93585,0,0,0,0,63.93585,0,0,0,4,0,5,83.3,11.84267,0,85.2,780,780,1,1,1.609438,6.659294,0,3.258096,8.045588,0,0,0,85.2,9.276199,1.609438,4.15788,1
-17,2,25,0,1,227259,0,10679.77,31.70431,1,10,1,43.79186,4.739825,0,0,0,48.53168,0,0,0,3,0,5,74.5,17.2,0,81.8,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,1,0,0,81.8,9.276199,1.609438,3.882217,1
-17,2,25,0,2,227259,0,10679.77,32.70431,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,74.5,17.2,0,81.8,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,1,0,0,81.8,9.276199,1.609438,,0
-17,2,25,0,3,227259,0,10679.77,33.70431,1,10,1,54.65973,10.99263,30.68054,0,0,96.3329,0,0,0,3,0,5,74.5,17.2,0,81.8,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,1,0,0,81.8,9.276199,1.609438,4.56781,1
-17,2,25,0,1,227260,0,10679.77,12.67351,0,10,1,12.36476,0,0,0,0,12.36476,0,0,0,1,0,5,88.3,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,2.514851,1
-17,2,25,0,2,227260,0,10679.77,13.67351,0,10,1,32.55208,0,.4734848,0,0,33.02557,0,0,0,4,0,5,88.3,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,3.497282,1
-17,2,25,0,3,227260,0,10679.77,14.67351,0,10,1,16.47161,0,0,0,0,16.47161,0,0,0,1,0,5,88.3,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,2.801638,1
-17,2,25,0,1,227261,0,10679.77,1.50308,0,10,1,29.35085,0,0,0,0,29.35085,0,0,0,3,0,5,81.35272,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,3.379322,1
-17,2,25,0,2,227261,0,10679.77,2.50308,0,10,1,62.00284,0,0,0,0,62.00284,0,0,0,5,0,5,81.35272,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,4.12718,1
-17,2,25,0,3,227261,0,10679.77,3.50308,0,10,1,35.54399,0,0,0,0,35.54399,0,0,0,3,0,5,81.35272,11.84267,0,92.6,780,780,1,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,92.6,9.276199,1.609438,3.570771,1
-17,2,25,0,1,227262,0,10679.77,29.03217,0,16,1,95.43019,0,33.27666,0,0,128.7068,0,0,0,6,0,5,70.2,0,0,79.5,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,79.5,9.276199,1.609438,4.857537,1
-17,2,25,0,2,227262,0,10679.77,30.03217,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,0,0,79.5,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,79.5,9.276199,1.609438,,0
-17,2,25,0,3,227262,0,10679.77,31.03217,0,16,1,0,4.291287,51.25271,0,0,55.54399,0,0,0,0,0,5,70.2,0,0,79.5,780,780,0,0,1.609438,6.659294,0,3.258096,8.045588,0,0,0,79.5,9.276199,1.609438,4.017175,1
-11,2,0,1,1,227275,0,29237.54,34.95688,1,14,1,300,96.7802,0,1128.26,0,396.7802,0,0,53,5,3,3,51.6,6.9,0,56.8,0,114,0,0,1.098612,4.736198,0,0,0,0,0,0,56.8,10.28324,1.098612,5.983383,1
-11,2,0,1,2,227275,0,29237.54,35.95688,1,14,1,220.1648,49.2729,0,1008.24,868.3422,1137.78,1,0,52,8,3,3,51.6,6.9,0,56.8,0,114,0,0,1.098612,4.736198,0,0,0,0,0,0,56.8,10.28324,1.098612,7.036834,1
-11,2,0,1,3,227275,0,29237.54,36.95688,1,14,1,93.44115,39.71249,0,909.7035,34.36658,167.5202,0,0,45,7,0,3,51.6,6.9,0,56.8,0,114,0,0,1.098612,4.736198,0,0,0,0,0,0,56.8,10.28324,1.098612,5.121104,1
-11,2,0,1,1,227276,0,29237.54,10.93224,0,14,1,65.99255,8.142629,0,0,0,74.13518,0,0,0,4,0,3,78.3,11.84267,0,59.3,0,114,1,0,1.098612,4.736198,0,0,0,1,0,0,59.3,10.28324,1.098612,4.30589,1
-11,2,0,1,2,227276,0,29237.54,11.93224,0,14,1,21.81289,27.72661,0,213.2816,0,49.53951,0,0,10,1,1,3,78.3,11.84267,0,59.3,0,114,1,0,1.098612,4.736198,0,0,0,1,0,0,59.3,10.28324,1.098612,3.902771,1
-11,2,0,1,3,227276,0,29237.54,12.93224,0,14,1,38.18509,8.580413,0,220.1258,0,46.7655,0,0,11,4,1,3,78.3,11.84267,0,59.3,0,114,1,0,1.098612,4.736198,0,0,0,1,0,0,59.3,10.28324,1.098612,3.845146,1
-11,2,0,1,1,227277,0,29237.54,6.220397,1,14,1,36.18946,10.11176,55.65194,0,0,101.9532,0,0,0,2,2,3,73.3,11.84267,0,81.5,0,114,1,1,1.098612,4.736198,0,0,0,1,0,0,81.5,10.28324,1.098612,4.624514,1
-11,2,0,1,2,227277,0,29237.54,7.220397,1,14,1,35.38536,0,0,0,0,35.38536,0,0,0,3,1,3,73.3,11.84267,0,81.5,0,114,1,1,1.098612,4.736198,0,0,0,1,0,0,81.5,10.28324,1.098612,3.566298,1
-11,2,0,1,3,227277,0,29237.54,8.220397,1,14,1,28.75112,0,20.84007,0,0,49.59119,0,0,0,2,1,3,73.3,11.84267,0,81.5,0,114,1,1,1.098612,4.736198,0,0,0,1,0,0,81.5,10.28324,1.098612,3.903813,1
-14,2,95,1,1,227288,0,5181.818,53.84531,1,8,1,70.39615,51.8576,37.78908,0,0,160.0428,0,0,0,8,1,1,96.8,17.2,0,75,35.78,266.4,0,0,0,5.584999,0,4.564348,3.628682,0,0,0,75,8.553104,0,5.075441,1
-14,2,95,1,2,227288,0,5181.818,54.84531,1,8,1,82.23524,25.16349,0,0,0,107.3987,0,0,0,2,0,1,96.8,17.2,0,75,35.78,266.4,0,0,0,5.584999,0,4.564348,3.628682,0,0,0,75,8.553104,0,4.676548,1
-14,2,95,1,3,227288,0,5181.818,55.84531,1,8,1,228.3198,20.2439,39.19603,0,4271.522,4559.282,2,0,0,3,1,1,96.8,17.2,0,75,35.78,266.4,0,0,0,5.584999,0,4.564348,3.628682,0,0,0,75,8.553104,0,8.42492,1
-14,2,95,1,1,227300,1,1710.85,48.85695,1,5,1,308.6456,59.50214,31.90043,0,0,400.0482,0,0,0,12,0,5,55.9,24.1,1,47.6,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,47.6,7.44533,1.609438,5.991585,1
-14,2,95,1,2,227300,1,1710.85,49.85695,1,5,1,49.80478,41.33724,0,0,0,91.14202,0,0,0,4,0,5,55.9,24.1,1,47.6,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,47.6,7.44533,1.609438,4.512419,1
-14,2,95,1,3,227300,1,1710.85,50.85695,1,5,1,653.0714,104.2457,49.90063,0,0,807.2177,0,0,0,15,0,5,55.9,24.1,1,47.6,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,47.6,7.44533,1.609438,6.693594,1
-14,2,95,1,1,227301,1,1710.85,15.56194,0,5,1,51.5257,0,0,0,0,51.5257,0,0,0,3,0,5,76.1,3.4,1,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,3.942081,1
-14,2,95,1,2,227301,1,1710.85,16.56194,0,5,1,9.272816,2.415812,0,0,0,11.68863,0,0,0,1,0,5,76.1,3.4,1,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,2.458616,1
-14,2,95,1,3,227301,1,1710.85,17.56194,0,5,1,68.94761,2.687443,0,0,0,71.63505,0,0,0,2,0,5,76.1,3.4,1,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,4.271585,1
-14,2,95,1,1,227302,1,1710.85,17.58795,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,79.2,6.9,0,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,,0
-14,2,95,1,2,227302,1,1710.85,18.58795,0,5,1,8.29673,0,0,0,0,8.29673,0,0,0,1,0,5,79.2,6.9,0,72.7,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,2.115861,1
-14,2,95,1,3,227302,1,1710.85,19.58795,0,5,1,16.71183,0,0,0,0,16.71183,0,0,0,1,0,5,79.2,6.9,0,72.7,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,0,1,0,72.7,7.44533,1.609438,2.816117,1
-14,2,95,1,1,227303,1,1710.85,16.67625,0,5,1,111.7077,31.3758,5.888651,0,775.4443,924.4165,1,0,0,8,0,5,76.6,0,0,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,1,0,0,72.7,7.44533,1.609438,6.829163,1
-14,2,95,1,2,227303,1,1710.85,17.67625,0,5,1,53.68472,10.78575,0,0,0,64.47047,0,0,0,5,0,5,76.6,0,0,72.7,291.6,291.6,1,0,1.609438,5.675383,0,4.564348,5.726676,1,0,0,72.7,7.44533,1.609438,4.166207,1
-14,2,95,1,3,227303,1,1710.85,18.67625,0,5,.9589041,0,1.784101,0,0,0,1.784101,0,0,0,0,0,5,76.6,0,0,72.7,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,1,0,0,72.7,7.44533,1.609438,.5789147,1
-14,2,95,1,1,227304,1,1710.85,17.58795,1,5,1,24.62527,12.95503,0,0,0,37.5803,0,0,0,2,0,5,47.3,6.9,1,52.4,291.6,291.6,1,1,1.609438,5.675383,0,4.564348,5.726676,1,0,0,52.4,7.44533,1.609438,3.62648,1
-14,2,95,1,2,227304,1,1710.85,18.58795,1,5,1,75.76867,33.94827,0,0,0,109.7169,0,0,0,5,0,5,47.3,6.9,1,52.4,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,1,0,0,52.4,7.44533,1.609438,4.697904,1
-14,2,95,1,3,227304,1,1710.85,19.58795,1,5,1,81.82024,39.37669,0,0,0,121.1969,0,0,0,5,0,5,47.3,6.9,1,52.4,291.6,291.6,0,0,1.609438,5.675383,0,4.564348,5.726676,1,0,0,52.4,7.44533,1.609438,4.797417,1
-19,2,25,1,1,227305,0,3580.645,26.71869,0,11,1,27.80734,0,0,0,0,27.80734,0,0,0,1,0,1,90.4,10.3,0,79.8,450,0,0,0,0,0,0,3.258096,7.495542,0,1,0,79.8,8.183578,0,3.3253,1
-19,2,25,1,2,227305,0,3580.645,27.71869,0,11,1,11.14881,2.399418,0,0,0,13.54823,0,0,0,1,0,1,90.4,10.3,0,79.8,450,0,0,0,0,0,0,3.258096,7.495542,0,1,0,79.8,8.183578,0,2.606256,1
-19,2,25,1,3,227305,0,3580.645,28.71869,0,11,1,44.69901,0,0,0,0,44.69901,0,0,0,1,0,1,90.4,10.3,0,79.8,450,0,0,0,0,0,0,3.258096,7.495542,0,1,0,79.8,8.183578,0,3.799951,1
-19,2,25,1,4,227305,0,3580.645,29.71869,0,11,1,12.00246,0,0,0,0,12.00246,0,0,0,1,0,1,90.4,10.3,0,79.8,450,0,0,0,0,0,0,3.258096,7.495542,0,1,0,79.8,8.183578,0,2.485112,1
-19,2,25,1,5,227305,0,3580.645,30.71869,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,90.4,10.3,0,79.8,450,0,0,0,0,0,0,3.258096,7.495542,0,1,0,79.8,8.183578,0,,0
-14,2,95,1,1,227317,0,8665.641,2.316222,1,9,1,63.79037,7.12017,0,0,0,70.91054,0,0,0,19,0,2,81.35272,11.84267,0,56.2,127.5,127.5,1,1,.6931472,4.848116,0,4.564348,4.89941,0,0,0,56.2,9.067237,.6931472,4.261419,1
-14,2,95,1,1,227318,0,8665.641,22.80356,1,9,1,5.823187,4.986765,0,0,0,10.80995,0,0,0,1,0,2,86.2,13.8,0,62.5,127.5,127.5,0,0,.6931472,4.848116,0,4.564348,4.89941,0,0,0,62.5,9.067237,.6931472,2.380467,1
-16,2,95,1,1,227329,0,12489.74,55.14032,1,8,1,300,80.01617,0,0,0,380.0162,0,0,0,15,2,2,66,20.7,1,42,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,42,9.432742,.6931472,5.940214,1
-16,2,95,1,2,227329,0,12489.74,56.14032,1,8,1,1515.577,97.49386,19.0172,0,1049.032,2681.12,2,0,0,26,0,2,66,20.7,1,42,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,42,9.432742,.6931472,7.89399,1
-16,2,95,1,3,227329,0,12489.74,57.14032,1,8,.5616438,1302.256,237.8532,1.367366,0,5012.101,6561.326,2,0,0,40,0,2,66,20.7,1,42,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,42,9.432742,.6931472,8.788948,1
-16,2,95,1,1,227330,0,12489.74,56.41341,0,12,1,17.25067,0,13.80593,0,0,31.0566,0,0,0,1,0,2,84.6,10.3,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.432742,.6931472,3.435812,1
-16,2,95,1,2,227330,0,12489.74,57.41341,0,12,1,11.79361,5.886978,0,0,0,17.68059,0,0,0,2,0,2,84.6,10.3,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.432742,.6931472,2.872468,1
-16,2,95,1,3,227330,0,12489.74,58.41341,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,10.3,0,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.432742,.6931472,,0
-11,2,0,1,1,227346,0,9813.489,53.42642,1,12,1,519.1325,69.41991,19.9042,0,6006.69,6615.146,2,0,0,10,0,1,59,17.2,1,50,0,200.72,0,0,0,5.301911,0,0,0,1,0,0,50,9.191615,0,8.797117,1
-11,2,0,1,2,227346,0,9813.489,54.42642,1,12,1,115.5356,31.82259,277.0383,0,1281.289,1705.686,2,0,0,10,0,1,59,17.2,1,50,0,200.72,0,0,0,5.301911,0,0,0,1,0,0,50,9.191615,0,7.441722,1
-11,2,0,1,3,227346,0,9813.489,55.42642,1,12,1,60.53459,12.08446,313.0099,0,275.2246,660.8536,1,0,0,3,1,1,59,17.2,1,50,0,200.72,0,0,0,5.301911,0,0,0,1,0,0,50,9.191615,0,6.493532,1
-11,2,0,1,4,227346,0,9813.489,56.42642,1,12,1,140.3734,64.40295,244.2183,0,0,448.9947,0,0,0,3,0,1,59,17.2,1,50,0,200.72,0,0,0,5.301911,0,0,0,1,0,0,50,9.191615,0,6.107011,1
-11,2,0,1,5,227346,0,9813.489,57.42642,1,12,1,6.651885,92.60902,260.1663,0,886.0273,1245.455,1,0,0,1,0,1,59,17.2,1,50,0,200.72,0,0,0,5.301911,0,0,0,1,0,0,50,9.191615,0,7.127256,1
-16,2,95,1,1,227351,.0220994,8665.641,4.071184,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,675,0,1,0,.6931472,0,0,4.564348,6.566006,0,0,0,55.6,9.067237,.6931472,,0
-16,2,95,1,2,227351,.0220994,8665.641,5.071184,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,675,0,1,0,.6931472,0,0,4.564348,6.566006,0,0,0,55.6,9.067237,.6931472,,0
-16,2,95,1,3,227351,.0220994,8665.641,6.071184,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,675,0,1,0,.6931472,0,0,4.564348,6.566006,0,0,0,55.6,9.067237,.6931472,,0
-16,2,95,0,1,227352,0,8665.641,57.67556,0,16,1,32.38758,0,22.48394,0,0,54.87152,0,0,0,2,1,2,73.9,17.2,0,75,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,75,9.067237,.6931472,4.004994,1
-16,2,95,0,2,227352,0,8665.641,58.67556,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,17.2,0,75,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,75,9.067237,.6931472,,0
-16,2,95,0,3,227352,0,8665.641,59.67556,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,17.2,0,75,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,75,9.067237,.6931472,,0
-16,2,95,0,1,227353,0,8665.641,50.5024,1,16,1,179.9518,0,222.6124,0,0,402.5642,0,0,0,8,1,2,71.3,13.8,0,70.5,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,70.5,9.067237,.6931472,5.997855,1
-16,2,95,0,2,227353,0,8665.641,51.5024,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,13.8,0,70.5,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,70.5,9.067237,.6931472,,0
-16,2,95,0,3,227353,0,8665.641,52.5024,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,13.8,0,70.5,150,162,0,0,.6931472,5.087596,0,4.564348,5.061929,1,0,0,70.5,9.067237,.6931472,,0
-13,2,0,1,1,227382,0,8212.316,.9746749,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,55.6,9.013512,.6931472,,0
-13,2,0,1,2,227382,0,8212.316,1.974675,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,55.6,9.013512,.6931472,,0
-13,2,0,1,3,227382,0,8212.316,2.974675,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,0,55.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,55.6,9.013512,.6931472,,0
-13,2,0,1,1,227383,0,8212.316,31.25804,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.3,10.3,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,9.013512,.6931472,,0
-13,2,0,1,2,227383,0,8212.316,32.25804,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.3,10.3,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,9.013512,.6931472,,0
-13,2,0,1,3,227383,0,8212.316,33.25804,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.3,10.3,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,9.013512,.6931472,,0
-7,2,25,1,1,227425,0,12811.14,51.0527,1,13,1,285.6573,24.02874,46.80149,0,0,356.4875,0,0,0,13,1,1,67,27.6,0,72.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.458149,0,5.876299,1
-7,2,25,1,2,227425,0,12811.14,52.0527,1,13,1,436.1367,47.7557,0,0,459.0402,942.9326,1,0,0,7,32,1,67,27.6,0,72.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.458149,0,6.848995,1
-7,2,25,1,3,227425,0,12811.14,53.0527,1,13,1,594.4294,60.79964,56.54987,0,0,711.779,0,0,0,15,17,1,67,27.6,0,72.7,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.458149,0,6.567768,1
-13,2,0,1,1,227515,0,8665.641,56.64339,1,15,1,54.60386,0,0,0,0,54.60386,0,0,0,2,0,1,71.8,17.2,0,68.2,150,466.8,0,0,0,6.145901,1,4.564348,5.061929,0,0,0,68.2,9.067237,0,4.000104,1
-11,2,0,1,1,227521,0,5299.707,60.17522,1,13,1,44.99735,0,0,0,0,44.99735,0,0,0,2,0,1,74.5,6.9,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.575596,0,3.806604,1
-11,2,0,1,2,227521,0,5299.707,61.17522,1,13,1,54.77799,17.81853,0,0,0,72.59653,0,0,0,2,5,1,74.5,6.9,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.575596,0,4.284917,1
-11,2,0,1,3,227521,0,5299.707,62.17522,1,13,1,13.35114,0,33.37784,0,0,46.72897,0,0,0,0,1,1,74.5,6.9,0,95.5,0,0,0,0,0,0,0,0,0,0,0,0,95.5,8.575596,0,3.844364,1
-11,2,0,0,1,227526,0,5668.035,10.41752,1,17,1,17.13062,0,0,0,0,17.13062,0,0,0,1,0,3,76.7,11.84267,0,48.1,0,380.52,1,1,1.098612,5.941539,0,0,0,0,0,0,48.1,8.642775,1.098612,2.840868,1
-11,2,0,0,2,227526,0,5668.035,11.41752,1,17,1,17.0815,2.733041,0,0,0,19.81454,0,0,0,3,0,3,76.7,11.84267,0,48.1,0,380.52,1,1,1.098612,5.941539,0,0,0,0,0,0,48.1,8.642775,1.098612,2.986416,1
-11,2,0,0,3,227526,0,5668.035,12.41752,1,17,1,21.22855,0,28.73532,0,0,49.96387,0,0,0,2,0,3,76.7,11.84267,0,48.1,0,380.52,1,1,1.098612,5.941539,0,0,0,0,0,0,48.1,8.642775,1.098612,3.9113,1
-11,2,0,0,1,227527,0,5668.035,5.804244,1,17,1,31.34368,3.131692,0,0,0,34.47538,0,0,0,3,0,3,76.7,11.84267,0,77.8,0,380.52,1,1,1.098612,5.941539,0,0,0,1,0,0,77.8,8.642775,1.098612,3.540245,1
-11,2,0,0,2,227527,0,5668.035,6.804244,1,17,1,65.17814,8.369937,0,0,0,73.54807,0,0,0,7,0,3,76.7,11.84267,0,77.8,0,380.52,1,1,1.098612,5.941539,0,0,0,1,0,0,77.8,8.642775,1.098612,4.297939,1
-11,2,0,0,3,227527,0,5668.035,7.804244,1,17,1,19.87353,0,0,0,0,19.87353,0,0,0,2,0,3,76.7,11.84267,0,77.8,0,380.52,1,1,1.098612,5.941539,0,0,0,1,0,0,77.8,8.642775,1.098612,2.989389,1
-11,2,0,0,1,227528,0,5668.035,32.59959,1,17,1,50.85653,13.16916,33.61349,0,0,97.63918,0,0,0,6,0,3,47.9,34.5,0,54.5,0,380.52,0,0,1.098612,5.941539,0,0,0,0,0,0,54.5,8.642775,1.098612,4.581279,1
-11,2,0,0,2,227528,0,5668.035,33.59959,1,17,1,61.3226,29.47779,0,0,0,90.80039,0,0,0,7,0,3,47.9,34.5,0,54.5,0,380.52,0,0,1.098612,5.941539,0,0,0,0,0,0,54.5,8.642775,1.098612,4.508664,1
-11,2,0,0,3,227528,0,5668.035,34.59959,1,17,1,19.87353,9.214092,0,0,0,29.08762,0,0,0,3,0,3,47.9,34.5,0,54.5,0,380.52,0,0,1.098612,5.941539,0,0,0,0,0,0,54.5,8.642775,1.098612,3.370313,1
-11,2,0,1,1,227539,0,22434.02,32.56947,1,16,1,152.5696,5.663812,0,0,0,158.2334,0,0,0,2,5,4,39.9,17.2,1,55.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,55.7,10.01838,1.386294,5.064071,1
-11,2,0,1,2,227539,0,22434.02,33.56947,1,16,1,25.0366,22.81601,28.94095,0,0,76.79356,0,0,0,0,1,4,39.9,17.2,1,55.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,55.7,10.01838,1.386294,4.341121,1
-11,2,0,1,3,227539,0,22434.02,34.56947,1,16,1,63.23397,18.65402,30.49232,0,0,112.3803,0,0,0,4,0,4,39.9,17.2,1,55.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,55.7,10.01838,1.386294,4.721889,1
-11,2,0,1,1,227540,0,22434.02,34.56263,0,16,1,7.226981,0,0,0,0,7.226981,0,0,0,1,0,4,81.4,3.4,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,10.01838,1.386294,1.977821,1
-11,2,0,1,2,227540,0,22434.02,35.56263,0,16,1,33.35773,9.136164,29.18497,0,1023.719,1095.398,1,0,0,2,0,4,81.4,3.4,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,10.01838,1.386294,6.998873,1
-11,2,0,1,3,227540,0,22434.02,36.56263,0,16,1,0,0,31.44535,0,2560.176,2591.622,2,0,0,0,0,4,81.4,3.4,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,10.01838,1.386294,7.860039,1
-11,2,0,1,1,227541,0,22434.02,1.382615,0,16,1,162.5535,21.10278,0,0,0,183.6563,0,0,0,8,0,4,81.35272,11.84267,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,51.9,10.01838,1.386294,5.213066,1
-11,2,0,1,2,227541,0,22434.02,2.382615,0,16,1,97.90141,3.001464,0,0,0,100.9029,0,0,0,2,0,4,81.35272,11.84267,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,51.9,10.01838,1.386294,4.614159,1
-11,2,0,1,3,227541,0,22434.02,3.382615,0,16,1,55.32972,0,0,0,0,55.32972,0,0,0,4,1,4,81.35272,11.84267,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,51.9,10.01838,1.386294,4.01331,1
-11,2,0,1,1,227549,0,10646.33,59.22245,1,14,1,112.152,86.38116,61.34368,0,0,259.8769,0,0,0,4,1,1,91.5,34.5,0,84.1,0,0,0,0,0,0,0,0,0,1,0,0,84.1,9.273065,0,5.560208,1
-11,2,0,1,2,227549,0,10646.33,60.22245,1,14,1,403.1235,78.52123,0,0,71.35188,552.9966,1,0,0,13,0,1,91.5,34.5,0,84.1,0,0,0,0,0,0,0,0,0,1,0,0,84.1,9.273065,0,6.315352,1
-11,2,0,1,3,227549,0,10646.33,61.22245,1,14,1,283.5366,125.009,0,0,0,408.5456,0,0,0,10,0,1,91.5,34.5,0,84.1,0,0,0,0,0,0,0,0,0,1,0,0,84.1,9.273065,0,6.012604,1
-11,2,0,1,1,227588,0,11380.06,.9965777,0,14,1,126.5257,12.9818,0,0,0,139.5075,0,0,0,16,0,3,81.35272,11.84267,0,92.6,0,0,1,0,1.098612,0,0,0,0,1,0,0,92.6,9.339705,1.098612,4.938118,1
-11,2,0,1,2,227588,0,11380.06,1.996578,0,14,1,75.32943,16.25183,0,0,0,91.58126,0,0,0,5,0,3,81.35272,11.84267,0,92.6,0,0,1,0,1.098612,0,0,0,0,1,0,0,92.6,9.339705,1.098612,4.517227,1
-11,2,0,1,3,227588,0,11380.06,2.996578,0,14,1,34.10117,4.471545,0,0,0,38.57272,0,0,0,2,0,3,81.35272,11.84267,0,92.6,0,0,1,0,1.098612,0,0,0,0,1,0,0,92.6,9.339705,1.098612,3.652545,1
-11,2,0,1,1,227589,0,11380.06,30.68036,1,14,1,95.12848,109.4272,0,0,0,204.5557,0,0,0,6,0,3,69.7,3.4,0,90.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,90.5,9.339705,1.098612,5.32084,1
-11,2,0,1,2,227589,0,11380.06,31.68036,1,14,1,84.30942,134.6364,0,0,0,218.9458,0,0,0,6,0,3,69.7,3.4,0,90.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,90.5,9.339705,1.098612,5.388824,1
-11,2,0,1,3,227589,0,11380.06,32.68036,1,14,1,108.0623,233.3966,0,0,0,341.4589,0,0,0,7,0,3,69.7,3.4,0,90.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,90.5,9.339705,1.098612,5.833227,1
-11,2,0,1,1,227590,0,11380.06,33.63176,0,16,1,5.353319,4.577088,0,0,1120.905,1130.835,1,0,0,1,0,3,73.9,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.339705,1.098612,7.030712,1
-11,2,0,1,2,227590,0,11380.06,34.63176,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,73.9,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.339705,1.098612,,0
-11,2,0,1,3,227590,0,11380.06,35.63176,0,16,1,7.226739,5.465221,0,0,0,12.69196,0,0,0,1,0,3,73.9,0,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,9.339705,1.098612,2.540969,1
-18,2,25,0,1,227604,0,4313.196,44.86516,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,75,3.4,0,64.8,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,64.8,8.369666,1.386294,,0
-18,2,25,0,2,227604,0,4313.196,45.86516,1,16,1,98.72159,13.92519,0,337.3579,0,112.6468,0,0,22,10,0,4,75,3.4,0,64.8,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,64.8,8.369666,1.386294,4.724257,1
-18,2,25,0,3,227604,0,4313.196,46.86516,1,16,1,10.40312,0,0,0,0,10.40312,0,0,0,4,0,4,75,3.4,0,64.8,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,64.8,8.369666,1.386294,2.342106,1
-18,2,25,0,4,227604,0,4313.196,47.86516,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,75,3.4,0,64.8,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,64.8,8.369666,1.386294,,0
-18,2,25,0,5,227604,0,4313.196,48.86516,1,16,1,75.67084,0,33.91055,171.7352,0,109.5814,0,0,12,4,0,4,75,3.4,0,64.8,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,64.8,8.369666,1.386294,4.696668,1
-18,2,25,0,1,227605,0,4313.196,44.47091,0,16,1,26.50696,0,0,0,0,26.50696,0,0,0,1,0,4,68.6,10.3,1,63.6,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,63.6,8.369666,1.386294,3.277407,1
-18,2,25,0,2,227605,0,4313.196,45.47091,0,16,1,0,0,0,443.8921,0,0,0,0,27,0,0,4,68.6,10.3,1,63.6,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,63.6,8.369666,1.386294,,0
-18,2,25,0,3,227605,0,4313.196,46.47091,0,16,1,119.4192,0,0,10.83658,0,119.4192,0,0,1,5,0,4,68.6,10.3,1,63.6,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,63.6,8.369666,1.386294,4.78264,1
-18,2,25,0,4,227605,0,4313.196,47.47091,0,16,1,40.33084,0,.7089405,0,0,41.03978,0,0,0,2,0,4,68.6,10.3,1,63.6,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,63.6,8.369666,1.386294,3.714542,1
-18,2,25,0,5,227605,0,4313.196,48.47091,0,16,1,67.95349,2.715564,0,0,0,70.66905,0,0,0,4,0,4,68.6,10.3,1,63.6,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,63.6,8.369666,1.386294,4.258008,1
-18,2,25,0,1,227606,0,4313.196,15.72074,0,16,1,201.4941,12.48326,0,0,0,213.9773,0,0,0,24,0,4,86.2,10.3,0,75,48,48,1,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,75,8.369666,1.386294,5.36587,1
-18,2,25,0,2,227606,0,4313.196,16.72074,0,16,1,68.18182,32.83144,0,106.5341,8939.611,9040.625,1,0,7,16,0,4,86.2,10.3,0,75,48,48,1,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,75,8.369666,1.386294,9.109484,1
-18,2,25,0,3,227606,0,4313.196,17.72074,0,16,1,216.6667,24.39098,0,65.01951,4609.623,4850.681,1,0,6,9,0,4,86.2,10.3,0,75,48,48,1,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,75,8.369666,1.386294,8.486875,1
-18,2,25,0,4,227606,0,4313.196,18.72074,0,16,1,55.74636,98.79874,0,452.9342,3489.854,3644.399,1,0,53,4,0,4,86.2,10.3,0,75,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,75,8.369666,1.386294,8.200947,1
-18,2,25,0,5,227606,0,4313.196,19.72074,0,16,1,40.78712,10.08587,0,0,0,50.87299,0,0,0,4,0,4,86.2,10.3,0,75,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,75,8.369666,1.386294,3.929332,1
-18,2,25,0,1,227607,0,4313.196,17.78782,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,86.4,48,48,1,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,86.4,8.369666,1.386294,,0
-18,2,25,0,2,227607,0,4313.196,18.78782,0,16,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,84,3.4,0,86.4,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,86.4,8.369666,1.386294,1.737271,1
-18,2,25,0,3,227607,0,4313.196,19.78782,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,86.4,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,86.4,8.369666,1.386294,,0
-18,2,25,0,4,227607,0,4313.196,20.78782,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,86.4,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,86.4,8.369666,1.386294,,0
-18,2,25,0,5,227607,0,4313.196,21.78782,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,86.4,48,48,0,0,1.386294,3.871201,0,3.258096,5.257495,1,0,0,86.4,8.369666,1.386294,,0
-11,2,0,0,1,227614,0,14107.92,32.32854,1,17,1,423.7858,4.810193,31.61726,0,0,460.2132,0,0,0,10,1,2,72.9,13.8,0,70.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,70.5,9.554563,.6931472,6.13169,1
-11,2,0,0,2,227614,0,14107.92,33.32854,1,17,1,152.5323,2.718586,0,0,231.3904,386.6412,1,0,0,9,0,2,72.9,13.8,0,70.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,70.5,9.554563,.6931472,5.957497,1
-11,2,0,0,3,227614,0,14107.92,34.32854,1,17,1,16.6813,3.248464,0,0,732.7041,752.6339,1,0,0,1,0,2,72.9,13.8,0,70.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,70.5,9.554563,.6931472,6.623579,1
-11,2,0,0,1,227615,0,14107.92,30.13005,0,18,1,76.96308,0,0,0,0,76.96308,0,0,0,2,0,2,87.2,3.4,0,95.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,95.5,9.554563,.6931472,4.343326,1
-11,2,0,0,2,227615,0,14107.92,31.13005,0,18,1,46.58385,0,0,0,0,46.58385,0,0,0,3,0,2,87.2,3.4,0,95.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,95.5,9.554563,.6931472,3.841254,1
-11,2,0,0,3,227615,0,14107.92,32.13005,0,18,1,24.67076,0,0,0,0,24.67076,0,0,0,1,0,2,87.2,3.4,0,95.5,0,276.6,0,0,.6931472,5.622572,0,0,0,0,0,0,95.5,9.554563,.6931472,3.205619,1
-13,2,0,1,1,227616,0,11551.91,29.50308,1,12,1,13.06848,0,0,0,0,13.06848,0,0,0,1,0,4,80.3,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,90.9,9.354692,1.386294,2.570203,1
-13,2,0,1,2,227616,0,11551.91,30.50308,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,90.9,9.354692,1.386294,,0
-13,2,0,1,3,227616,0,11551.91,31.50308,1,12,1,56.47577,0,0,0,322.6212,379.0969,1,0,0,2,0,4,80.3,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,90.9,9.354692,1.386294,5.937792,1
-13,2,0,1,1,227617,0,11551.91,5.166325,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-13,2,0,1,2,227617,0,11551.91,6.166325,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-13,2,0,1,3,227617,0,11551.91,7.166325,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-13,2,0,1,1,227618,0,11551.91,30.28337,0,7,1,8.886565,0,0,0,0,8.886565,0,0,0,1,0,4,63.3,10.3,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.354692,1.386294,2.184541,1
-13,2,0,1,2,227618,0,11551.91,31.28337,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,63.3,10.3,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.354692,1.386294,,0
-13,2,0,1,3,227618,0,11551.91,32.28337,0,7,1,182.8194,0,0,0,0,182.8194,0,0,0,16,0,4,63.3,10.3,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.354692,1.386294,5.208498,1
-13,2,0,1,1,227619,0,11551.91,10.53251,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-13,2,0,1,2,227619,0,11551.91,11.53251,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-13,2,0,1,3,227619,0,11551.91,12.53251,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.354692,1.386294,,0
-15,2,95,1,1,227620,0,9891.495,12.68994,0,16,1,20.87794,4.336188,0,0,0,25.21413,0,0,0,2,0,3,83.3,11.84267,0,88.9,545,545,1,0,1.098612,6.300786,0,4.564348,6.352079,0,0,0,88.9,9.199532,1.098612,3.227405,1
-15,2,95,1,1,227621,0,9891.495,13.94661,0,16,1,5.353319,0,0,0,0,5.353319,0,0,0,1,0,3,91.7,11.84267,0,100,545,545,1,0,1.098612,6.300786,0,4.564348,6.352079,0,0,0,100,9.199532,1.098612,1.677717,1
-15,2,95,1,1,227622,0,9891.495,33.31691,1,16,1,51.39186,46.11349,0,0,0,97.50536,0,0,0,4,0,3,58,17.2,0,95.5,545,545,0,0,1.098612,6.300786,0,4.564348,6.352079,0,0,0,95.5,9.199532,1.098612,4.579907,1
-11,2,0,1,1,227626,0,3479.179,20.82683,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,13.8,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,8.154839,0,,0
-11,2,0,1,2,227626,0,3479.179,21.82683,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,13.8,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,8.154839,0,,0
-11,2,0,1,3,227626,0,3479.179,22.82683,0,12,1,112.7621,0,0,0,0,112.7621,0,0,0,2,0,1,71.3,13.8,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,8.154839,0,4.72528,1
-16,2,95,1,1,227643,0,6992.962,35.63313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,64.4,6.9,0,86.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.852802,0,,0
-16,2,95,1,2,227643,0,6992.962,36.63313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,64.4,6.9,0,86.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.852802,0,,0
-16,2,95,1,3,227643,0,6992.962,37.63313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,64.4,6.9,0,86.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.852802,0,,0
-16,2,95,0,1,227674,0,7612.317,53.56331,0,12,1,16.85393,88.48315,0,0,0,105.3371,0,0,0,2,0,5,82.4,10.3,0,68.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,1,0,68.2,8.937654,1.609438,4.657166,1
-16,2,95,0,2,227674,0,7612.317,54.56331,0,12,1,23.44116,109.8547,0,0,0,133.2958,0,0,0,2,0,4,82.4,10.3,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,68.2,8.937654,1.386294,4.892571,1
-16,2,95,0,3,227674,0,7612.317,55.56331,0,12,1,68.14273,123.9639,45.39123,773.8607,1028.899,1266.397,1,0,36,5,0,3,82.4,10.3,0,68.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,1,0,68.2,8.937654,1.098612,7.143931,1
-16,2,95,0,1,227675,0,7612.317,18.5243,0,11,1,14.30031,2.145046,0,0,0,16.44535,0,0,0,1,0,5,70.2,10.3,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,8.937654,1.609438,2.800043,1
-16,2,95,0,1,227676,0,7612.317,14.4011,1,12,1,18.38611,0,0,0,0,18.38611,0,0,0,2,0,5,78.7,10.3,0,63.6,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,1,0,0,63.6,8.937654,1.609438,2.911595,1
-16,2,95,0,2,227676,0,7612.317,15.4011,1,12,1,93.99906,5.110174,0,0,0,99.10924,0,0,0,6,1,4,78.7,10.3,0,63.6,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,63.6,8.937654,1.386294,4.596223,1
-16,2,95,0,1,227677,0,7612.317,12.85421,0,12,1,17.36466,5.26047,0,0,0,22.62513,0,0,0,2,0,5,90,11.84267,0,22.2,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,22.2,8.937654,1.609438,3.119061,1
-16,2,95,0,2,227677,0,7612.317,13.85421,0,12,1,23.44116,13.45523,0,0,0,36.89639,0,0,0,3,0,4,90,11.84267,0,22.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,22.2,8.937654,1.386294,3.608114,1
-16,2,95,0,3,227677,0,7612.317,14.85421,0,12,1,0,5.137575,0,0,0,5.137575,0,0,0,0,0,3,90,11.84267,0,22.2,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,22.2,8.937654,1.098612,1.636581,1
-16,2,95,0,1,227679,0,7612.317,50.19576,1,12,1,83.27375,153.8458,0,0,0,237.1195,0,0,0,8,0,5,76.1,37.9,1,29.5,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,1,0,29.5,8.937654,1.609438,5.468564,1
-16,2,95,0,2,227679,0,7612.317,51.19576,1,12,1,37.41209,131.3127,0,0,0,168.7248,0,0,0,5,0,4,76.1,37.9,1,29.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,29.5,8.937654,1.386294,5.128269,1
-16,2,95,0,3,227679,0,7612.317,52.19576,1,12,1,188.1685,176.5606,47.11092,0,0,411.8401,0,0,0,7,0,3,76.1,37.9,1,29.5,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,1,0,29.5,8.937654,1.098612,6.020635,1
-11,2,0,1,1,227711,0,6928.446,11.06639,0,11,1,115.3273,2.118148,32.77807,0,188.6642,338.8877,1,0,0,3,1,4,73.3,11.84267,1,85.2,0,573.3,1,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,5.825669,1
-11,2,0,1,2,227711,0,6928.446,12.06639,0,11,1,68.46825,0,0,0,0,68.46825,0,0,0,3,0,4,73.3,11.84267,1,85.2,0,573.3,1,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,4.22637,1
-11,2,0,1,3,227711,0,6928.446,13.06639,0,11,1,17.96945,0,29.02965,0,0,46.9991,0,0,0,0,1,4,73.3,11.84267,1,85.2,0,573.3,1,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,3.850128,1
-11,2,0,1,1,227712,0,6928.446,5.782341,1,11,1,88.34486,13.75732,31.18148,0,0,133.2837,0,0,0,3,1,4,88.3,11.84267,0,92.6,0,573.3,1,1,1.386294,6.351409,0,0,0,0,0,0,92.6,8.843535,1.386294,4.892479,1
-11,2,0,1,2,227712,0,6928.446,6.782341,1,11,1,31.99224,6.490548,26.03975,0,0,64.52254,0,0,0,1,1,4,88.3,11.84267,0,92.6,0,573.3,1,1,1.386294,6.351409,0,0,0,0,0,0,92.6,8.843535,1.386294,4.167015,1
-11,2,0,1,3,227712,0,6928.446,7.782341,1,11,1,30.54807,2.201258,0,0,0,32.74932,0,0,0,0,0,4,88.3,11.84267,0,92.6,0,573.3,1,1,1.386294,6.351409,0,0,0,0,0,0,92.6,8.843535,1.386294,3.488882,1
-11,2,0,1,1,227713,0,6928.446,32.44353,1,11,1,81.55934,0,36.50346,396.4875,0,118.0628,0,0,36,3,1,4,56.4,10.3,1,59.1,0,573.3,0,0,1.386294,6.351409,0,0,0,1,0,0,59.1,8.843535,1.386294,4.771217,1
-11,2,0,1,2,227713,0,6928.446,33.44353,1,11,1,68.51188,2.399418,0,36.35482,0,70.91129,0,0,3,2,0,4,56.4,10.3,1,59.1,0,573.3,0,0,1.386294,6.351409,0,0,0,1,0,0,59.1,8.843535,1.386294,4.26143,1
-11,2,0,1,3,227713,0,6928.446,34.44353,1,11,1,88.77808,12.48877,0,0,0,101.2668,0,0,0,3,0,4,56.4,10.3,1,59.1,0,573.3,0,0,1.386294,6.351409,0,0,0,1,0,0,59.1,8.843535,1.386294,4.617759,1
-11,2,0,1,1,227728,0,5501.466,58.74059,1,12,1,51.22844,1.751176,42.79665,0,0,95.77627,0,0,0,4,0,1,91,17.2,0,85.2,0,36,0,0,0,3.583519,0,0,0,1,0,0,85.2,8.612951,0,4.562015,1
-11,2,0,1,2,227728,0,5501.466,59.74059,1,12,1,17.29938,5.800096,0,0,0,23.09947,0,0,0,3,0,1,91,17.2,0,85.2,0,36,0,0,0,3.583519,0,0,0,1,0,0,85.2,8.612951,0,3.13981,1
-11,2,0,1,3,227728,0,5501.466,60.74059,1,12,1,192.4009,12.99559,51.99559,0,0,257.3921,0,0,0,9,9,1,91,17.2,0,85.2,0,36,0,0,0,3.583519,0,0,0,1,0,0,85.2,8.612951,0,5.550601,1
-11,2,0,1,1,227737,0,7643.402,31.61123,1,17,1,35.20381,21.01641,0,0,0,56.22022,0,0,0,2,0,1,84.6,20.7,1,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,8.941729,0,4.029276,1
-11,2,0,1,2,227737,0,7643.402,32.61123,1,17,1,107.1429,4.720077,0,0,0,111.8629,0,0,0,3,0,1,84.6,20.7,1,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,8.941729,0,4.717274,1
-11,2,0,1,3,227737,0,7643.402,33.61123,1,17,1,26.70227,12.22964,42.9773,0,0,81.90921,0,0,0,2,0,1,84.6,20.7,1,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,8.941729,0,4.405612,1
-11,2,0,1,1,227739,0,5029.912,27.93977,1,16,1,84.08728,18.58968,0,0,0,102.677,0,0,0,7,1,1,41,10.3,1,61.4,0,0,0,0,0,0,0,0,0,1,0,0,61.4,8.523356,0,4.631588,1
-11,2,0,1,2,227739,0,5029.912,28.93977,1,16,1,107.3679,61.68202,0,0,0,169.0499,0,0,0,11,0,1,41,10.3,1,61.4,0,0,0,0,0,0,0,0,0,1,0,0,61.4,8.523356,0,5.130194,1
-11,2,0,1,3,227739,0,5029.912,29.93977,1,16,1,234.389,51.67116,0,0,0,286.0602,0,0,0,4,40,1,41,10.3,1,61.4,0,0,0,0,0,0,0,0,0,1,0,0,61.4,8.523356,0,5.656202,1
-6,2,25,0,1,227752,0,1847.507,20.44353,1,12,1,197.459,65.00794,40.28057,0,0,302.7475,0,0,0,5,1,1,48.4,17.2,0,86.4,40,0,0,0,0,0,0,3.258096,5.075174,0,0,0,86.4,7.522134,0,5.712899,1
-6,2,25,0,2,227752,0,1847.507,21.44353,1,12,1,88.32047,49.48359,19.30502,212.3552,823.0116,980.1207,1,0,10,6,1,1,48.4,17.2,0,86.4,40,0,0,0,0,0,0,3.258096,5.075174,0,0,0,86.4,7.522134,0,6.887676,1
-6,2,25,0,3,227752,0,1847.507,22.44353,1,12,1,216.6444,67.41878,36.67112,111.2595,302.3587,623.093,1,0,5,13,0,2,48.4,17.2,0,86.4,40,0,0,0,.6931472,0,0,3.258096,5.075174,0,0,0,86.4,7.522134,.6931472,6.434696,1
-15,2,95,1,1,227757,0,5533.138,23.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,3.4,0,95.5,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,0,0,0,95.5,8.618691,1.098612,,0
-15,2,95,1,2,227757,0,5533.138,24.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,3.4,0,95.5,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,0,0,0,95.5,8.618691,1.098612,,0
-15,2,95,1,3,227757,0,5533.138,25.83573,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,3.4,0,95.5,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,0,0,0,95.5,8.618691,1.098612,,0
-15,2,95,1,1,227758,0,5533.138,22.68036,1,12,1,47.56926,0,0,0,0,47.56926,0,0,0,2,0,3,24.5,3.4,0,22.7,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,1,0,0,22.7,8.618691,1.098612,3.862187,1
-15,2,95,1,2,227758,0,5533.138,23.68036,1,12,1,33.63767,0,0,0,0,33.63767,0,0,0,2,0,3,24.5,3.4,0,22.7,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,1,0,0,22.7,8.618691,1.098612,3.515647,1
-15,2,95,1,3,227758,0,5533.138,24.68036,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,24.5,3.4,0,22.7,712.1,0,0,0,1.098612,0,0,4.564348,6.619512,1,0,0,22.7,8.618691,1.098612,,0
-15,2,95,1,1,227759,0,5533.138,3.238878,0,12,1,20.90957,0,0,0,0,20.90957,0,0,0,0,0,3,81.35272,11.84267,0,96.3,712.1,0,1,0,1.098612,0,0,4.564348,6.619512,0,0,0,96.3,8.618691,1.098612,3.040207,1
-15,2,95,1,2,227759,0,5533.138,4.238877,0,12,1,9.610765,0,0,0,0,9.610765,0,0,0,1,0,3,81.35272,11.84267,0,96.3,712.1,0,1,0,1.098612,0,0,4.564348,6.619512,0,0,0,96.3,8.618691,1.098612,2.262884,1
-15,2,95,1,3,227759,0,5533.138,5.238877,0,12,1,11.67401,4.38326,0,0,0,16.05727,0,0,0,1,0,3,81.35272,11.84267,0,96.3,712.1,0,1,0,1.098612,0,0,4.564348,6.619512,0,0,0,96.3,8.618691,1.098612,2.776162,1
-13,2,0,1,1,227761,0,9331.965,25.55236,0,16,1,8.73478,0,34.08682,0,0,42.8216,0,0,0,0,0,1,86.2,17.2,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,80.7,9.141308,0,3.757043,1
-16,2,95,1,1,227770,0,8265.103,44.17796,0,18,1,12.3736,0,0,0,0,12.3736,0,0,0,0,0,4,58.5,27.6,1,40.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,40.9,9.019918,1.386294,2.515565,1
-16,2,95,1,2,227770,0,8265.103,45.17796,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,27.6,1,40.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,40.9,9.019918,1.386294,,0
-16,2,95,1,3,227770,0,8265.103,46.17796,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,27.6,1,40.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,40.9,9.019918,1.386294,,0
-16,2,95,1,1,227771,0,8265.103,10.90212,1,14,1,26.3438,0,0,0,0,26.3438,0,0,0,2,0,4,66.7,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.019918,1.386294,3.271233,1
-16,2,95,1,2,227771,0,8265.103,11.90212,1,14,1,15.99612,0,0,0,0,15.99612,0,0,0,1,0,4,66.7,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.019918,1.386294,2.772346,1
-16,2,95,1,3,227771,0,8265.103,12.90212,1,14,1,21.11411,0,0,0,0,21.11411,0,0,0,1,0,4,66.7,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.019918,1.386294,3.049941,1
-16,2,95,1,1,227772,0,8265.103,39.7974,1,14,1,18.62693,22.32038,0,0,0,40.94731,0,0,0,1,0,4,83,31,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,9.019918,1.386294,3.712286,1
-16,2,95,1,2,227772,0,8265.103,40.7974,1,14,1,22.68541,15.71983,0,0,0,38.40524,0,0,0,2,0,4,83,31,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,9.019918,1.386294,3.648194,1
-16,2,95,1,3,227772,0,8265.103,41.7974,1,14,1,27.40341,0,0,0,0,27.40341,0,0,0,2,0,4,83,31,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,9.019918,1.386294,3.310668,1
-16,2,95,1,1,227773,0,8265.103,13.36345,0,14,1,18.22778,0,0,0,0,18.22778,0,0,0,1,0,4,50,11.84267,0,100,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.019918,1.386294,2.902947,1
-16,2,95,1,2,227773,0,8265.103,14.36345,0,14,1,45.51624,0,1.696558,0,0,47.2128,0,0,0,3,0,4,50,11.84267,0,100,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.019918,1.386294,3.854665,1
-16,2,95,1,3,227773,0,8265.103,15.36345,0,14,1,8.984726,0,0,0,0,8.984726,0,0,0,1,0,4,50,11.84267,0,100,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.019918,1.386294,2.195526,1
-11,2,0,0,1,227847,0,5767.155,59.65777,1,12,1,63.70255,14.76859,55.16901,0,0,133.6402,0,0,0,5,0,1,81.4,27.6,1,73.9,0,292.49,0,0,0,5.678431,0,0,0,1,0,0,73.9,8.660108,0,4.895151,1
-11,2,0,0,2,227847,0,5767.155,60.65777,1,12,1,67.20019,1.337793,0,0,0,68.53799,0,0,0,2,0,1,81.4,27.6,1,73.9,0,292.49,0,0,0,5.678431,0,0,0,1,0,0,73.9,8.660108,0,4.227388,1
-11,2,0,0,3,227847,0,5767.155,61.65777,1,12,1,49.60492,9.956101,0,0,0,59.56102,0,0,0,3,0,1,81.4,27.6,1,73.9,0,292.49,0,0,0,5.678431,0,0,0,1,0,0,73.9,8.660108,0,4.087001,1
-13,2,0,0,1,227889,0,7839.296,32.57769,1,18,1,0,3.735188,0,0,0,3.735188,0,0,0,0,0,1,54.8,17.2,1,79.5,150,340.8,0,0,0,5.831296,1,4.564348,5.061929,0,0,0,79.5,8.967031,0,1.317798,1
-13,2,0,0,2,227889,0,7839.296,33.57769,1,18,1,22.91667,1.931818,0,0,0,24.84848,0,0,0,1,0,1,54.8,17.2,1,79.5,150,340.8,0,0,0,5.831296,1,4.564348,5.061929,0,0,0,79.5,8.967031,0,3.212797,1
-13,2,0,0,3,227889,0,7839.296,34.57769,1,18,1,0,10.19506,1.603814,0,0,11.79887,0,0,0,0,0,1,54.8,17.2,1,79.5,150,340.8,0,0,0,5.831296,1,4.564348,5.061929,0,0,0,79.5,8.967031,0,2.468004,1
-13,2,0,0,1,227890,0,1700.88,26.88296,0,14,1,0,0,0,10.30397,0,0,0,0,1,0,0,1,86.7,0,0,79.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,79.5,7.439489,0,,0
-13,2,0,0,2,227890,0,1700.88,27.88296,0,14,1,11.36364,2.911932,0,0,0,14.27557,0,0,0,2,0,1,86.7,0,0,79.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,79.5,7.439489,0,2.65855,1
-13,2,0,0,3,227890,0,1700.88,28.88296,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,0,0,79.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,79.5,7.439489,0,,0
-13,2,0,1,1,227922,0,10902.05,4.33128,1,12,1,72.53748,9.98394,0,0,0,82.52142,0,0,0,7,0,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.296798,1.386294,4.413058,1
-13,2,0,1,2,227922,0,10902.05,5.33128,1,12,1,130.3075,26.11518,0,0,0,156.4226,0,0,0,11,3,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.296798,1.386294,5.052562,1
-13,2,0,1,3,227922,0,10902.05,6.33128,1,12,1,9.936766,3.252033,0,0,0,13.1888,0,0,0,1,1,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.296798,1.386294,2.579368,1
-13,2,0,1,1,227923,0,10902.05,27.35387,1,12,1,152.0343,44.5878,40.43897,1070.664,0,237.061,0,0,50,5,9,4,67.6,13.8,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.296798,1.386294,5.468318,1
-13,2,0,1,2,227923,0,10902.05,28.35387,1,12,1,365.0561,23.00146,33.60664,783.309,0,421.6642,0,0,40,10,16,4,67.6,13.8,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.296798,1.386294,6.044209,1
-13,2,0,1,3,227923,0,10902.05,29.35387,1,12,1,306.4137,15.83107,43.24752,307.1364,0,365.4923,0,0,17,6,11,4,67.6,13.8,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.296798,1.386294,5.901245,1
-13,2,0,1,1,227924,0,10902.05,7.181383,0,12,1,201.8201,76.52034,124.106,0,0,402.4465,0,0,0,24,5,4,70,11.84267,1,22.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,22.2,9.296798,1.386294,5.997562,1
-13,2,0,1,2,227924,0,10902.05,8.181382,0,12,1,355.0757,50.73206,0,0,0,405.8077,0,0,0,39,9,4,70,11.84267,1,22.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,22.2,9.296798,1.386294,6.005879,1
-13,2,0,1,3,227924,0,10902.05,9.181382,0,12,1,224.8193,35.85817,.6775068,0,0,261.355,0,0,0,12,7,4,70,11.84267,1,22.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,22.2,9.296798,1.386294,5.56588,1
-13,2,0,1,1,227925,0,10902.05,32.68172,0,12,1,166.4882,31.17238,0,0,0,197.6606,0,0,0,8,5,4,73.9,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.296798,1.386294,5.286551,1
-13,2,0,1,2,227925,0,10902.05,33.68172,0,12,1,79.06296,7.242558,38.54075,0,0,124.8463,0,0,0,6,1,4,73.9,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.296798,1.386294,4.827083,1
-13,2,0,1,3,227925,0,10902.05,34.68172,0,12,1,47.19964,2.190605,3.31075,0,0,52.70099,0,0,0,2,2,4,73.9,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.296798,1.386294,3.964634,1
-11,2,0,1,1,227926,0,8665.641,3.110198,1,11,1,29.53476,7.030842,0,0,0,36.56561,0,0,0,3,0,3,81.35272,11.84267,0,74.1,0,0,1,1,1.098612,0,0,0,0,0,0,0,74.1,9.067237,1.098612,3.599108,1
-11,2,0,1,1,227927,0,8665.641,23.80835,1,11,1,162.4935,34.39101,41.08207,0,520.6221,758.5886,1,0,0,4,1,3,41,20.7,1,43.2,0,0,0,0,1.098612,0,0,0,0,0,1,0,43.2,9.067237,1.098612,6.63146,1
-11,2,0,1,1,227928,0,8665.641,36.05202,0,10,1,109.2525,2.88552,0,0,0,112.138,0,0,0,5,0,3,76.6,17.2,1,14.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,14.8,9.067237,1.098612,4.71973,1
-17,2,25,0,1,227941,0,11326.69,13.54689,1,9,1,11.70836,8.461947,0,0,0,20.1703,0,0,0,2,0,3,93.3,11.84267,0,66.7,900.4,900.4,1,1,1.098612,6.802839,0,3.258096,8.189134,0,0,0,66.7,9.335005,1.098612,3.004211,1
-17,2,25,0,2,227941,0,11326.69,14.54689,1,9,1,26.10276,8.773631,0,0,0,34.87639,0,0,0,2,0,3,93.3,11.84267,0,66.7,900.4,900.4,1,1,1.098612,6.802839,0,3.258096,8.189134,0,0,0,66.7,9.335005,1.098612,3.55181,1
-17,2,25,0,3,227941,0,11326.69,15.54689,1,9,1,107.3675,27.86164,0,0,0,135.2291,0,0,0,11,0,3,93.3,11.84267,0,66.7,900.4,900.4,1,1,1.098612,6.802839,0,3.258096,8.189134,0,0,0,66.7,9.335005,1.098612,4.906971,1
-17,2,25,0,4,227941,0,11326.69,16.54689,1,9,1,180.9233,33.63972,0,0,0,214.563,0,0,0,12,0,3,93.3,11.84267,0,66.7,900.4,900.4,1,1,1.098612,6.802839,0,3.258096,8.189134,0,0,0,66.7,9.335005,1.098612,5.368603,1
-17,2,25,0,5,227941,0,11326.69,17.54689,1,9,1,66.33408,51.26756,37.98965,0,0,155.5913,0,0,0,5,1,2,93.3,11.84267,0,66.7,900.4,900.4,1,1,.6931472,6.802839,0,3.258096,8.189134,0,0,0,66.7,9.335005,.6931472,5.047233,1
-17,2,25,0,1,227942,0,11326.69,57.04038,0,12,1,18.62693,0,16.76424,0,0,35.39117,0,0,0,1,0,3,70.2,10.3,1,83,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,83,9.335005,1.098612,3.566462,1
-17,2,25,0,2,227942,0,11326.69,58.04038,0,12,1,109.7431,0,0,0,0,109.7431,0,0,0,4,0,3,70.2,10.3,1,83,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,83,9.335005,1.098612,4.698142,1
-17,2,25,0,3,227942,0,11326.69,59.04038,0,12,1,173.1357,16.32076,0,0,0,189.4564,0,0,0,5,0,3,70.2,10.3,1,83,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,83,9.335005,1.098612,5.244159,1
-17,2,25,0,4,227942,0,11326.69,60.04038,0,12,.6639344,2599.902,210.3898,0,0,1143.357,3953.648,2,0,0,29,1,3,70.2,10.3,1,83,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,83,9.335005,1.098612,8.282394,1
-17,2,25,0,1,227943,0,11326.69,55.06639,1,9,1,163.7573,63.25705,1.12826,0,445.9287,674.0713,1,0,0,11,0,3,96.8,20.7,1,51.1,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,51.1,9.335005,1.098612,6.513336,1
-17,2,25,0,2,227943,0,11326.69,56.06639,1,9,1,35.38536,45.73922,41.77896,0,0,122.9035,0,0,0,3,0,3,96.8,20.7,1,51.1,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,51.1,9.335005,1.098612,4.8114,1
-17,2,25,0,3,227943,0,11326.69,57.06639,1,9,1,273.1357,65.44923,14.28571,0,0,352.8706,0,0,0,14,0,3,96.8,20.7,1,51.1,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,51.1,9.335005,1.098612,5.866101,1
-17,2,25,0,4,227943,0,11326.69,58.06639,1,9,1,110.3611,85.60115,14.17727,0,0,210.1395,0,0,0,5,0,3,96.8,20.7,1,51.1,900.4,900.4,0,0,1.098612,6.802839,0,3.258096,8.189134,1,0,0,51.1,9.335005,1.098612,5.347772,1
-17,2,25,0,5,227943,0,11326.69,59.06639,1,9,1,79.12048,105.8906,0,0,0,185.0111,0,0,0,5,0,2,96.8,20.7,1,51.1,900.4,900.4,0,0,.6931472,6.802839,0,3.258096,8.189134,1,0,0,51.1,9.335005,.6931472,5.220416,1
-13,2,0,0,1,227951,0,73.31378,5.653662,1,8,1,15.19835,0,0,0,0,15.19835,0,0,0,2,0,5,88.3,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,4.308296,1.609438,2.721187,1
-13,2,0,0,2,227951,0,73.31378,6.653662,1,8,1,6.155303,0,0,0,0,6.155303,0,0,0,1,0,5,88.3,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,4.308296,1.609438,1.817314,1
-13,2,0,0,3,227951,0,73.31378,7.653662,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,4.308296,1.609438,,0
-13,2,0,0,1,227952,0,73.31378,37.29227,1,8,1,12.36476,0,0,0,0,12.36476,0,0,0,2,0,5,59.6,3.4,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,60.2,4.308296,1.609438,2.514851,1
-13,2,0,0,2,227952,0,73.31378,38.29227,1,8,1,13.25758,0,0,0,0,13.25758,0,0,0,1,0,5,59.6,3.4,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,60.2,4.308296,1.609438,2.584569,1
-13,2,0,0,3,227952,0,73.31378,39.29227,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,59.6,3.4,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,60.2,4.308296,1.609438,,0
-13,2,0,0,1,227953,0,73.31378,15.56468,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,69.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,69.3,4.308296,1.609438,,0
-13,2,0,0,2,227953,0,73.31378,16.56468,1,8,1,13.73106,0,0,0,0,13.73106,0,0,0,1,0,5,77.7,3.4,0,69.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,69.3,4.308296,1.609438,2.61966,1
-13,2,0,0,3,227953,0,73.31378,17.56468,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,69.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,69.3,4.308296,1.609438,,0
-13,2,0,0,1,227954,0,73.31378,17.58248,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,0,0,60.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,60.2,4.308296,1.609438,,0
-13,2,0,0,2,227954,0,73.31378,18.58248,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,60.2,4.308296,1.609438,,0
-13,2,0,0,3,227954,0,73.31378,19.58248,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,60.2,4.308296,1.609438,,0
-13,2,0,0,1,227955,0,73.31378,14.65298,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,68.6,6.9,0,68.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,68.2,4.308296,1.609438,,0
-13,2,0,0,2,227955,0,73.31378,15.65298,1,8,1,34.56439,0,0,0,0,34.56439,0,0,0,3,0,5,68.6,6.9,0,68.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,68.2,4.308296,1.609438,3.542824,1
-13,2,0,0,3,227955,0,73.31378,16.65298,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,68.6,6.9,0,68.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,68.2,4.308296,1.609438,,0
-13,2,0,0,1,227960,0,8756.599,20.81588,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,0,0,78.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,78.4,9.077677,0,,0
-13,2,0,0,2,227960,0,8756.599,21.81588,1,12,1,69.31653,0,0,0,282.9375,352.254,1,0,0,2,0,1,86.7,0,0,78.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,78.4,9.077677,0,5.864353,1
-13,2,0,0,3,227960,0,8756.599,22.81588,1,12,1,22.91105,0,0,0,829.9191,852.8302,2,0,0,0,0,1,86.7,0,0,78.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,78.4,9.077677,0,6.74856,1
-18,2,25,0,1,227961,0,13146.04,36.50924,1,12,1,50.23184,7.444616,30.83462,0,0,88.51108,0,0,0,3,0,4,81.4,13.8,0,90.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,90.9,9.483952,1.386294,4.483128,1
-18,2,25,0,2,227961,0,13146.04,37.50924,1,12,1,20.35985,0,0,0,0,20.35985,0,0,0,1,0,4,81.4,13.8,0,90.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,90.9,9.483952,1.386294,3.013565,1
-18,2,25,0,3,227961,0,13146.04,38.50924,1,12,1,0,3.857824,0,0,0,3.857824,0,0,0,0,0,4,81.4,13.8,0,90.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,90.9,9.483952,1.386294,1.350103,1
-18,2,25,0,1,227962,0,13146.04,17.21834,1,12,1,100.3349,12.27203,14.42555,0,0,127.0325,0,0,0,9,0,4,42.6,27.6,1,42,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,1,0,0,42,9.483952,1.386294,4.844443,1
-18,2,25,0,2,227962,0,13146.04,18.21834,1,12,1,121.875,19.55966,13.25758,0,323.5511,478.2434,1,0,0,7,0,4,42.6,27.6,1,42,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,42,9.483952,1.386294,6.17012,1
-18,2,25,0,3,227962,0,13146.04,19.21834,1,12,1,306.567,43.61509,13.0039,6.501951,267.4036,630.5895,1,0,1,19,0,4,42.6,27.6,1,42,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,1,0,0,42,9.483952,1.386294,6.446655,1
-18,2,25,0,1,227963,0,13146.04,40.25188,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,17.2,1,65.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.483952,1.386294,,0
-18,2,25,0,2,227963,0,13146.04,41.25188,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,17.2,1,65.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.483952,1.386294,,0
-18,2,25,0,3,227963,0,13146.04,42.25188,0,12,1,60.25141,12.52709,.8669267,0,0,73.64542,0,0,0,4,0,4,61.7,17.2,1,65.9,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,65.9,9.483952,1.386294,4.299262,1
-18,2,25,0,1,227965,0,13146.04,15.82478,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,51.1,3.4,0,76.1,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.483952,1.386294,,0
-18,2,25,0,2,227965,0,13146.04,16.82478,0,12,1,0,6.174242,0,0,0,6.174242,0,0,0,0,0,4,51.1,3.4,0,76.1,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.483952,1.386294,1.820386,1
-18,2,25,0,3,227965,0,13146.04,17.82478,0,12,1,16.03815,4.746424,0,0,0,20.78457,0,0,0,2,0,4,51.1,3.4,0,76.1,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.483952,1.386294,3.034211,1
-11,2,0,0,1,227980,0,7794.135,37.00479,1,8,1,65.8595,11.68707,0,0,0,77.54657,0,0,0,4,0,4,77.7,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,8.961255,1.386294,4.350879,1
-11,2,0,0,2,227980,0,7794.135,38.00479,1,8,1,34.4159,25.01212,0,0,0,59.42802,0,0,0,4,0,4,77.7,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,8.961255,1.386294,4.084766,1
-11,2,0,0,3,227980,0,7794.135,39.00479,1,8,1,37.73585,13.12668,0,0,2284.712,2335.575,2,0,0,12,0,4,77.7,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,8.961255,1.386294,7.756013,1
-11,2,0,0,4,227980,0,7794.135,40.00479,1,8,1,112.8437,51.2064,0,0,1990.501,2154.551,3,0,0,8,0,4,77.7,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,8.961255,1.386294,7.675337,1
-11,2,0,0,5,227980,0,7794.135,41.00479,1,8,1,199.9261,140.3252,27.24686,0,0,367.4981,0,0,0,52,0,4,77.7,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,8.961255,1.386294,5.906718,1
-11,2,0,0,1,227981,0,7794.135,2.173854,1,8,1,31.39968,23.48058,0,0,0,54.88026,0,0,0,4,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.961255,1.386294,4.005154,1
-11,2,0,0,2,227981,0,7794.135,3.173854,1,8,1,0,7.770237,0,0,0,7.770237,0,0,0,0,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.961255,1.386294,2.050301,1
-11,2,0,0,3,227981,0,7794.135,4.173853,1,8,1,95.2381,14.08356,0,0,0,109.3217,0,0,0,11,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.961255,1.386294,4.694294,1
-11,2,0,0,4,227981,0,7794.135,5.173853,1,8,1,73.65614,13.15962,0,0,0,86.81576,0,0,0,5,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.961255,1.386294,4.463788,1
-11,2,0,0,5,227981,0,7794.135,6.173853,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.961255,1.386294,,0
-11,2,0,0,1,227982,0,7794.135,12.63518,1,8,1,30.86748,8.861096,0,0,0,39.72858,0,0,0,3,0,4,66.7,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,8.961255,1.386294,3.682071,1
-11,2,0,0,2,227982,0,7794.135,13.63518,1,8,1,112.8211,11.8856,0,0,0,124.7067,0,0,0,6,0,4,66.7,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,8.961255,1.386294,4.825965,1
-11,2,0,0,3,227982,0,7794.135,14.63518,1,8,1,211.5903,15.01797,0,0,0,226.6083,0,0,0,11,0,4,66.7,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,8.961255,1.386294,5.423223,1
-11,2,0,0,4,227982,0,7794.135,15.63518,1,8,1,118.5064,32.8929,0,0,117.8908,269.2901,1,0,0,8,0,4,66.7,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,8.961255,1.386294,5.595789,1
-11,2,0,0,5,227982,0,7794.135,16.63518,1,8,1,241.5743,56.00148,0,0,0,297.5757,0,0,0,8,0,4,66.7,11.84267,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,55.6,8.961255,1.386294,5.695669,1
-11,2,0,0,1,227983,0,7794.135,45.88364,0,12,1,18.62693,0,40.20224,0,0,58.82916,0,0,0,1,0,4,69.7,10.3,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.961255,1.386294,4.074638,1
-11,2,0,0,2,227983,0,7794.135,46.88364,0,12,1,0,8.293747,18.61367,0,0,26.90742,0,0,0,0,0,4,69.7,10.3,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.961255,1.386294,3.292402,1
-11,2,0,0,3,227983,0,7794.135,47.88364,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,69.7,10.3,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.961255,1.386294,,0
-11,2,0,0,4,227983,0,7794.135,48.88364,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,69.7,10.3,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.961255,1.386294,,0
-11,2,0,0,5,227983,0,7794.135,49.88364,0,12,1,1039.634,0,0,0,581.1899,1620.824,1,0,0,6,0,4,69.7,10.3,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.961255,1.386294,7.39069,1
-11,2,0,0,1,227984,0,6380.059,59.93155,1,12,1,160.1376,92.35574,0,0,0,252.4934,0,0,0,11,0,1,83,10.3,1,70.5,0,396,0,0,0,5.981414,0,0,0,1,0,0,70.5,8.761089,0,5.531385,1
-11,2,0,0,2,227984,0,6380.059,60.93155,1,12,1,194.2568,111.5203,0,0,0,305.777,0,0,0,15,0,1,83,10.3,1,70.5,0,396,0,0,0,5.981414,0,0,0,1,0,0,70.5,8.761089,0,5.722856,1
-11,2,0,0,3,227984,0,6380.059,61.93155,1,12,1,168.6693,33.69827,51.97152,0,0,254.3391,0,0,0,13,0,1,83,10.3,1,70.5,0,396,0,0,0,5.981414,0,0,0,1,0,0,70.5,8.761089,0,5.538669,1
-11,2,0,0,4,227984,0,6380.059,62.93155,1,12,1,236.4782,64.88817,0,0,0,301.3664,0,0,0,13,0,1,83,10.3,1,70.5,0,396,0,0,0,5.981414,0,0,0,1,0,0,70.5,8.761089,0,5.708327,1
-11,2,0,0,5,227984,0,6380.059,63.93155,1,12,1,221.5909,31.97214,0,0,0,253.563,0,0,0,11,0,1,83,10.3,1,70.5,0,396,0,0,0,5.981414,0,0,0,1,0,0,70.5,8.761089,0,5.535613,1
-11,2,0,1,1,227998,0,12757,18.62012,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,3.4,0,96.6,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,96.6,9.453914,1.386294,,0
-11,2,0,1,2,227998,0,12757,19.62012,0,12,1,0,6.235521,0,0,0,6.235521,0,0,0,0,0,4,66.5,3.4,0,96.6,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,96.6,9.453914,1.386294,1.830262,1
-11,2,0,1,3,227998,0,12757,20.62012,0,12,1,2.447708,3.88073,0,0,0,6.328438,0,0,0,1,0,4,66.5,3.4,0,96.6,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,96.6,9.453914,1.386294,1.845053,1
-11,2,0,1,1,227999,0,12757,55.40589,0,11,1,67.01958,18.56538,45.26734,0,0,130.8523,0,0,0,3,0,4,70.7,6.9,0,70.5,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,70.5,9.453914,1.386294,4.874069,1
-11,2,0,1,2,227999,0,12757,56.40589,0,11,1,63.70656,35.66602,14.5029,0,0,113.8755,0,0,0,3,0,4,70.7,6.9,0,70.5,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,70.5,9.453914,1.386294,4.735106,1
-11,2,0,1,3,227999,0,12757,57.40589,0,11,1,62.75033,17.97953,0,0,0,80.72986,0,0,0,2,0,4,70.7,6.9,0,70.5,0,180,0,0,1.386294,5.192957,0,0,0,0,0,0,70.5,9.453914,1.386294,4.391109,1
-11,2,0,1,1,228000,0,12757,14.89665,0,12,1,16.94018,0,0,0,0,16.94018,0,0,0,1,0,4,80.3,0,0,72.7,0,180,1,0,1.386294,5.192957,0,0,0,0,0,0,72.7,9.453914,1.386294,2.829688,1
-11,2,0,1,2,228000,0,12757,15.89665,0,12,1,18.33977,2.84749,0,0,0,21.18726,0,0,0,2,0,4,80.3,0,0,72.7,0,180,1,0,1.386294,5.192957,0,0,0,0,0,0,72.7,9.453914,1.386294,3.0534,1
-11,2,0,1,3,228000,0,12757,16.89665,0,12,1,41.7223,2.069426,1.557632,0,0,45.34935,0,0,0,2,0,4,80.3,0,0,72.7,0,180,1,0,1.386294,5.192957,0,0,0,0,0,0,72.7,9.453914,1.386294,3.814396,1
-11,2,0,1,1,228001,0,12757,55.436,1,12,1,115.6697,28.50185,0,0,0,144.1715,0,0,0,5,0,4,81.4,13.8,1,35.2,0,180,0,0,1.386294,5.192957,0,0,0,0,0,1,35.2,9.453914,1.386294,4.971004,1
-11,2,0,1,2,228001,0,12757,56.436,1,12,1,23.40734,9.121622,0,0,0,32.52896,0,0,0,1,0,4,81.4,13.8,1,35.2,0,180,0,0,1.386294,5.192957,0,0,0,0,0,1,35.2,9.453914,1.386294,3.482131,1
-11,2,0,1,3,228001,0,12757,57.436,1,12,1,102.0472,12.87939,0,0,0,114.9266,0,0,0,3,0,4,81.4,13.8,1,35.2,0,180,0,0,1.386294,5.192957,0,0,0,0,0,1,35.2,9.453914,1.386294,4.744293,1
-14,2,95,0,1,228020,0,10168.92,43.00342,1,11,1,7.676019,3.28216,0,0,0,10.95818,0,0,0,1,0,8,82.4,17.2,0,80.7,829.6,829.6,0,0,2.079442,6.720943,0,4.564348,6.772237,1,0,0,80.7,9.227189,2.079442,2.394086,1
-14,2,95,0,2,228020,0,10168.92,44.00342,1,11,1,12.54826,0,0,0,0,12.54826,0,0,0,1,0,6,82.4,17.2,0,80.7,829.6,829.6,0,0,1.791759,6.720943,0,4.564348,6.772237,1,0,0,80.7,9.227189,1.791759,2.529582,1
-14,2,95,0,3,228020,0,10168.92,45.00342,1,11,1,203.1598,25.32265,0,0,0,228.4824,0,0,0,5,1,6,82.4,17.2,0,80.7,829.6,829.6,0,0,1.791759,6.720943,0,4.564348,6.772237,1,0,0,80.7,9.227189,1.791759,5.431459,1
-14,2,95,0,1,228021,0,10168.92,6.962355,1,11,1,37.05664,13.94918,0,0,344.1821,395.1879,1,0,0,4,0,8,83.3,11.84267,0,74.1,829.6,829.6,1,1,2.079442,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,2.079442,5.979362,1
-14,2,95,0,2,228021,0,10168.92,7.962355,1,11,1,32.09459,5.936294,0,0,0,38.03089,0,0,0,1,0,6,83.3,11.84267,0,74.1,829.6,829.6,1,1,1.791759,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,1.791759,3.638399,1
-14,2,95,0,3,228021,0,10168.92,8.962355,1,11,1,20.47174,0,0,0,0,20.47174,0,0,0,2,0,6,83.3,11.84267,0,74.1,829.6,829.6,1,1,1.791759,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,1.791759,3.019045,1
-14,2,95,0,1,228022,0,10168.92,15.68241,1,11,1,11.91106,3.92271,0,0,0,15.83377,0,0,0,1,0,8,59,13.8,0,48.8,829.6,829.6,1,1,2.079442,6.720943,0,4.564348,6.772237,1,0,0,48.8,9.227189,2.079442,2.762145,1
-14,2,95,0,2,228022,0,10168.92,16.68241,1,11,1,35.47297,0,0,0,0,35.47297,0,0,0,4,0,6,59,13.8,0,48.8,829.6,829.6,1,1,1.791759,6.720943,0,4.564348,6.772237,1,0,0,48.8,9.227189,1.791759,3.568771,1
-14,2,95,0,3,228022,0,10168.92,17.68241,1,11,1,11.12595,0,0,0,0,11.12595,0,0,0,0,1,6,59,13.8,0,48.8,829.6,829.6,1,1,1.791759,6.720943,0,4.564348,6.772237,1,0,0,48.8,9.227189,1.791759,2.40928,1
-14,2,95,0,1,228023,0,10168.92,1.002053,0,11,1,115.5903,12.49338,0,0,699.8571,827.9407,2,0,0,9,0,8,81.35272,11.84267,0,92.6,829.6,829.6,1,0,2.079442,6.720943,0,4.564348,6.772237,1,0,0,92.6,9.227189,2.079442,6.718942,1
-14,2,95,0,1,228024,0,10168.92,48.25736,0,13,1,7.676019,2.805717,0,0,0,10.48174,0,0,0,1,0,8,80.3,10.3,0,71.6,829.6,829.6,0,0,2.079442,6.720943,0,4.564348,6.772237,0,0,0,71.6,9.227189,2.079442,2.349634,1
-14,2,95,0,2,228024,0,10168.92,49.25736,0,13,1,7.239382,0,50.00965,0,0,57.24903,0,0,0,0,1,6,80.3,10.3,0,71.6,829.6,829.6,0,0,1.791759,6.720943,0,4.564348,6.772237,0,0,0,71.6,9.227189,1.791759,4.047411,1
-14,2,95,0,3,228024,0,10168.92,50.25736,0,13,1,12.23854,0,51.56208,0,0,63.80062,0,0,0,0,1,6,80.3,10.3,0,71.6,829.6,829.6,0,0,1.791759,6.720943,0,4.564348,6.772237,0,0,0,71.6,9.227189,1.791759,4.155763,1
-14,2,95,0,1,228025,0,10168.92,17.99863,1,11,1,27.2631,8.263632,0,0,0,35.52673,0,0,0,2,0,8,58,10.3,0,62.5,829.6,829.6,1,1,2.079442,6.720943,0,4.564348,6.772237,0,1,0,62.5,9.227189,2.079442,3.570286,1
-14,2,95,0,1,228026,0,10168.92,8.561259,0,11,1,69.61356,1.535204,0,0,0,71.14876,0,0,0,4,0,8,60,11.84267,0,40.7,829.6,829.6,1,0,2.079442,6.720943,0,4.564348,6.772237,0,1,0,40.7,9.227189,2.079442,4.264773,1
-14,2,95,0,2,228026,0,10168.92,9.561259,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,60,11.84267,0,40.7,829.6,829.6,1,0,1.791759,6.720943,0,4.564348,6.772237,0,1,0,40.7,9.227189,1.791759,,0
-14,2,95,0,3,228026,0,10168.92,10.56126,0,11,1,26.03471,0,0,0,0,26.03471,0,0,0,2,0,6,60,11.84267,0,40.7,829.6,829.6,1,0,1.791759,6.720943,0,4.564348,6.772237,0,1,0,40.7,9.227189,1.791759,3.259431,1
-14,2,95,0,1,228027,0,10168.92,13.26762,0,11,1,21.70461,0,0,0,0,21.70461,0,0,0,2,0,8,80,11.84267,0,74.1,829.6,829.6,1,0,2.079442,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,2.079442,3.077524,1
-14,2,95,0,2,228027,0,10168.92,14.26762,0,11,1,22.6834,0,0,0,0,22.6834,0,0,0,2,0,6,80,11.84267,0,74.1,829.6,829.6,1,0,1.791759,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,1.791759,3.121633,1
-14,2,95,0,3,228027,0,10168.92,15.26762,0,11,1,11.12595,0,39.9555,0,0,51.08144,0,0,0,0,1,6,80,11.84267,0,74.1,829.6,829.6,1,0,1.791759,6.720943,0,4.564348,6.772237,0,0,0,74.1,9.227189,1.791759,3.933421,1
-13,2,0,0,1,228105,0,17689.74,30.55989,0,12,1,10.92044,9.178367,0,0,0,20.0988,0,0,0,1,0,3,47.9,20.7,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,9.780796,1.098612,3.00066,1
-13,2,0,0,2,228105,0,17689.74,31.55989,0,12,1,21.50024,21.33302,0,23.88915,0,42.83325,0,0,1,3,0,3,47.9,20.7,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,9.780796,1.098612,3.757315,1
-13,2,0,0,3,228105,0,17689.74,32.55989,0,12,1,91.90079,21.90518,0,166.813,0,113.806,0,0,10,2,0,3,47.9,20.7,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,9.780796,1.098612,4.734495,1
-13,2,0,0,4,228105,0,17689.74,33.55989,0,12,1,121.6594,6.322298,0,0,0,127.9817,0,0,0,4,0,3,47.9,20.7,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,9.780796,1.098612,4.851887,1
-13,2,0,0,5,228105,0,17689.74,34.55989,0,12,1,143.1291,3.607687,0,119.6519,0,146.7368,0,0,6,8,0,3,47.9,20.7,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,9.780796,1.098612,4.98864,1
-13,2,0,0,1,228106,0,17689.74,8.991102,0,12,1,8.060323,0,0,0,0,8.060323,0,0,0,1,0,3,93.3,11.84267,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.780796,1.098612,2.086954,1
-13,2,0,0,2,228106,0,17689.74,9.991102,0,12,1,10.03344,0,0,0,0,10.03344,0,0,0,1,0,3,93.3,11.84267,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.780796,1.098612,2.305924,1
-13,2,0,0,3,228106,0,17689.74,10.9911,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.3,11.84267,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.780796,1.098612,,0
-13,2,0,0,4,228106,0,17689.74,11.9911,0,12,1,93.39848,13.76147,0,0,0,107.16,0,0,0,4,0,3,93.3,11.84267,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.780796,1.098612,4.674323,1
-13,2,0,0,5,228106,0,17689.74,12.9911,0,12,1,53.1182,9.408992,0,0,0,62.52719,0,0,0,6,0,3,93.3,11.84267,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.780796,1.098612,4.135602,1
-13,2,0,0,1,228107,0,17689.74,32.72553,1,12,1,29.9012,95.94384,39.25637,0,0,165.1014,0,0,0,2,0,3,37.8,17.2,1,28.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,28.4,9.780796,1.098612,5.10656,1
-13,2,0,0,2,228107,0,17689.74,33.72553,1,12,1,105.1123,97.72098,0,0,0,202.8333,0,0,0,9,0,3,37.8,17.2,1,28.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,28.4,9.780796,1.098612,5.312384,1
-13,2,0,0,3,228107,0,17689.74,34.72553,1,12,1,115.5619,75.26339,0,0,0,190.8253,0,0,0,6,0,3,37.8,17.2,1,28.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,28.4,9.780796,1.098612,5.251359,1
-13,2,0,0,4,228107,0,17689.74,35.72553,1,12,1,50.53849,57.47906,0,0,0,108.0175,0,0,0,5,0,3,37.8,17.2,1,28.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,28.4,9.780796,1.098612,4.682294,1
-13,2,0,0,5,228107,0,17689.74,36.72553,1,12,1,49.49239,52.01233,30.73967,0,0,132.2444,0,0,0,3,1,3,37.8,17.2,1,28.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,28.4,9.780796,1.098612,4.884652,1
-13,2,0,1,1,228112,0,6118.475,29.82615,1,13,1,118.4004,90.02614,46.8322,0,0,255.2588,0,0,0,19,1,1,61.7,31,0,48.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,48.9,8.719232,0,5.542278,1
-13,2,0,1,2,228112,0,6118.475,30.82615,1,13,1,339.6684,30.34118,44.98799,0,0,414.9976,0,0,0,32,1,1,61.7,31,0,48.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,48.9,8.719232,0,6.028273,1
-13,2,0,1,3,228112,0,6118.475,31.82615,1,13,1,188.0176,21.97797,29.95595,0,276.1234,516.0749,1,0,0,3,1,1,61.7,31,0,48.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,48.9,8.719232,0,6.246252,1
-15,2,95,0,1,228120,0,8665.641,28.53936,0,14,1,91.00364,3.406136,0,0,0,94.40977,0,0,0,3,0,3,70.7,6.9,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.067237,1.098612,4.547645,1
-15,2,95,0,2,228120,0,8665.641,29.53936,0,14,1,10.75012,0,0,0,0,10.75012,0,0,0,1,0,1,70.7,6.9,0,78.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.067237,0,2.374917,1
-15,2,95,0,3,228120,0,8665.641,30.53936,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,70.7,6.9,0,78.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.067237,0,,0
-16,2,95,1,1,228121,0,2739.589,22.1848,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,45.7,17.2,0,46.6,600,393.69,0,0,0,5.975564,0,4.564348,6.448223,1,0,0,46.6,7.915928,0,,0
-16,2,95,1,2,228121,0,2739.589,23.1848,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,45.7,17.2,0,46.6,600,393.69,0,0,0,5.975564,0,4.564348,6.448223,1,0,0,46.6,7.915928,0,,0
-16,2,95,1,3,228121,0,2739.589,24.1848,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,45.7,17.2,0,46.6,600,393.69,0,0,0,5.975564,0,4.564348,6.448223,1,0,0,46.6,7.915928,0,,0
-13,2,0,0,1,228122,0,12571.26,50.35455,1,12,1,112.7426,31.65475,0,0,0,144.3973,0,0,0,7,0,4,72.3,13.8,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.439248,1.386294,4.972569,1
-13,2,0,0,2,228122,0,12571.26,51.35455,1,12,1,77.82466,18.29348,40.66104,0,0,136.7792,0,0,0,2,0,3,72.3,13.8,0,62.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.439248,1.098612,4.918368,1
-13,2,0,0,3,228122,0,12571.26,52.35455,1,12,1,127.3861,21.90026,0,0,0,149.2863,0,0,0,10,0,3,72.3,13.8,0,62.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.439248,1.098612,5.005866,1
-13,2,0,0,1,228123,0,12571.26,52.85147,0,12,1,55.41369,1.731359,0,0,0,57.14505,0,0,0,2,0,4,92.6,20.7,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.439248,1.386294,4.045593,1
-13,2,0,0,2,228123,0,12571.26,53.85147,0,12,1,50.86732,0,0,0,0,50.86732,0,0,0,2,0,3,92.6,20.7,0,85.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.439248,1.098612,3.929221,1
-13,2,0,0,3,228123,0,12571.26,54.85147,0,12,1,201.6337,17.11522,1.573517,0,0,220.3224,0,0,0,6,9,3,92.6,20.7,0,85.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.439248,1.098612,5.395092,1
-13,2,0,0,1,228124,0,12571.26,20.44901,0,13,1,15.32176,0,21.96119,0,0,37.28294,0,0,0,1,0,4,66.5,10.3,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.439248,1.386294,3.618536,1
-13,2,0,0,1,228125,0,12571.26,16.95551,1,12,1,12.76813,0,0,0,0,12.76813,0,0,0,1,0,4,64.4,10.3,0,65.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.439248,1.386294,2.546952,1
-13,2,0,0,2,228125,0,12571.26,17.95551,1,12,1,14.0647,0,0,0,0,14.0647,0,0,0,1,0,3,64.4,10.3,0,65.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.439248,1.098612,2.643668,1
-13,2,0,0,3,228125,0,12571.26,18.95551,1,12,1,24.50559,0,0,0,0,24.50559,0,0,0,2,0,3,64.4,10.3,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.439248,1.098612,3.198901,1
-11,2,0,1,1,228136,1,2651.026,.8049281,0,12,1,56.37904,0,0,0,0,56.37904,0,0,0,7,0,4,81.35272,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,7.88308,1.386294,4.032097,1
-11,2,0,1,2,228136,1,2651.026,1.804928,0,12,1,19.78765,2.895753,0,0,0,22.6834,0,0,0,3,0,4,81.35272,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,7.88308,1.386294,3.121633,1
-11,2,0,1,3,228136,1,2651.026,2.804928,0,12,1,13.79617,0,0,0,0,13.79617,0,0,0,3,0,4,81.35272,11.84267,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,7.88308,1.386294,2.624391,1
-11,2,0,1,1,228137,1,2651.026,5.226557,0,12,1,52.93806,26.89254,0,0,0,79.8306,0,0,0,5,0,4,88.3,11.84267,0,73.5,0,0,1,0,1.386294,0,0,0,0,1,0,0,73.5,7.88308,1.386294,4.379907,1
-11,2,0,1,2,228137,1,2651.026,6.226557,0,12,1,5.791506,0,0,0,0,5.791506,0,0,0,1,0,4,88.3,11.84267,0,73.5,0,0,1,0,1.386294,0,0,0,0,1,0,0,73.5,7.88308,1.386294,1.756392,1
-11,2,0,1,3,228137,1,2651.026,7.226557,0,12,1,10.68091,0,0,0,0,10.68091,0,0,0,2,0,4,88.3,11.84267,0,73.5,0,0,1,0,1.386294,0,0,0,0,1,0,0,73.5,7.88308,1.386294,2.368458,1
-11,2,0,1,1,228138,1,2651.026,25.54415,1,12,1,7.411329,1.852832,0,0,0,9.264161,0,0,0,1,0,4,63.3,3.4,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,62.5,7.88308,1.386294,2.226153,1
-11,2,0,1,2,228138,1,2651.026,26.54415,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,63.3,3.4,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,62.5,7.88308,1.386294,,0
-11,2,0,1,3,228138,1,2651.026,27.54415,1,12,1,62.97285,0,0,0,0,62.97285,0,0,0,3,0,4,63.3,3.4,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,62.5,7.88308,1.386294,4.142704,1
-11,2,0,1,1,228139,1,2651.026,5.226557,0,12,1,19.58708,7.252514,0,0,0,26.8396,0,0,0,2,0,4,88.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,7.88308,1.386294,3.289878,1
-11,2,0,1,2,228139,1,2651.026,6.226557,0,12,1,35.71429,0,0,0,0,35.71429,0,0,0,1,1,4,88.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,7.88308,1.386294,3.575551,1
-11,2,0,1,3,228139,1,2651.026,7.226557,0,12,1,40.05341,0,0,22.25189,0,40.05341,0,0,1,2,0,4,88.3,11.84267,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,7.88308,1.386294,3.690214,1
-13,2,0,1,1,228141,0,8630.498,56.11773,1,14,1,69.61356,19.1477,0,0,0,88.76125,0,0,0,4,0,1,70.2,27.6,0,71.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,71.6,9.063173,0,4.48595,1
-13,2,0,1,2,228141,0,8630.498,57.11773,1,14,1,12.78958,3.016409,0,0,0,15.80598,0,0,0,1,0,1,70.2,27.6,0,71.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,71.6,9.063173,0,2.760389,1
-13,2,0,1,3,228141,0,8630.498,58.11773,1,14,1,18.69159,3.87628,47.08945,0,0,69.65732,0,0,0,2,0,1,70.2,27.6,0,71.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,71.6,9.063173,0,4.243588,1
-13,2,0,1,4,228141,0,8630.498,59.11773,1,14,1,131.8625,1.297275,0,0,0,133.1598,0,0,0,3,0,1,70.2,27.6,0,71.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,71.6,9.063173,0,4.89155,1
-13,2,0,1,5,228141,0,8630.498,60.11773,1,14,1,93.65836,3.56305,43.92595,0,0,141.1474,0,0,0,3,0,1,70.2,27.6,0,71.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,71.6,9.063173,0,4.949804,1
-11,2,0,0,1,228152,0,6836.95,32.53388,1,12,1,84.75253,1.942523,0,0,0,86.69505,0,0,0,3,0,4,83.5,0,0,84.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,84.1,8.830243,1.386294,4.462397,1
-11,2,0,0,2,228152,0,6836.95,33.53388,1,12,1,71.01308,0,0,0,0,71.01308,0,0,0,2,0,4,83.5,0,0,84.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,84.1,8.830243,1.386294,4.262864,1
-11,2,0,0,3,228152,0,6836.95,34.53388,1,12,1,56.60378,3.818509,34.37556,0,0,94.79784,0,0,0,2,0,4,83.5,0,0,84.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,84.1,8.830243,1.386294,4.551747,1
-11,2,0,0,1,228153,0,6836.95,11.40041,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,8.830243,1.386294,,0
-11,2,0,0,2,228153,0,6836.95,12.40041,1,12,1,15.75376,1.454193,0,0,0,17.20795,0,0,0,2,0,4,96.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,8.830243,1.386294,2.845371,1
-11,2,0,0,3,228153,0,6836.95,13.40041,1,12,1,22.86613,0,0,0,0,22.86613,0,0,0,1,0,4,96.7,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,8.830243,1.386294,3.129657,1
-11,2,0,0,1,228154,0,6836.95,8.80219,0,12,1,0,3.352847,0,0,0,3.352847,0,0,0,0,0,4,95,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,8.830243,1.386294,1.20981,1
-11,2,0,0,2,228154,0,6836.95,9.80219,0,12,1,17.54726,1.575376,0,0,0,19.12264,0,0,0,2,0,4,95,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,8.830243,1.386294,2.950873,1
-11,2,0,0,3,228154,0,6836.95,10.80219,0,12,1,88.94878,7.277628,0,0,194.991,291.2174,1,0,0,5,0,4,95,11.84267,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,8.830243,1.386294,5.67407,1
-11,2,0,0,1,228155,0,6836.95,32.19439,0,10,1,171.4742,21.04843,0,0,0,192.5226,0,0,0,7,0,4,76.6,17.2,0,64.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,64.8,8.830243,1.386294,5.260214,1
-11,2,0,0,2,228155,0,6836.95,33.19439,0,10,1,41.05671,14.83762,0,0,0,55.89433,0,0,0,4,0,4,76.6,17.2,0,64.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,64.8,8.830243,1.386294,4.023463,1
-11,2,0,0,3,228155,0,6836.95,34.19439,0,10,1,147.3495,5.525607,0,0,541.9138,694.7889,1,0,0,3,0,4,76.6,17.2,0,64.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,64.8,8.830243,1.386294,6.543608,1
-5,2,25,0,1,228159,0,8902.64,43.04723,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,61.4,467.05,467.05,0,0,0,6.146436,0,3.258096,7.532731,1,0,0,61.4,9.094215,0,,0
-5,2,25,0,2,228159,0,8902.64,44.04723,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,61.4,467.05,467.05,0,0,0,6.146436,0,3.258096,7.532731,1,0,0,61.4,9.094215,0,,0
-5,2,25,0,3,228159,0,8902.64,45.04723,0,12,1,77.88162,0,0,0,0,77.88162,0,0,0,1,0,1,92,6.9,0,61.4,467.05,467.05,0,0,0,6.146436,0,3.258096,7.532731,1,0,0,61.4,9.094215,0,4.35519,1
-15,2,95,1,1,228160,0,11349.56,11.69336,0,16,1,6.918574,5.614689,0,0,0,12.53326,0,0,0,1,0,5,66.7,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.337023,1.609438,2.528386,1
-15,2,95,1,2,228160,0,11349.56,12.69336,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,66.7,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.337023,1.609438,,0
-15,2,95,1,3,228160,0,11349.56,13.69336,0,16,1,56.60378,0,0,0,0,56.60378,0,0,0,4,0,5,66.7,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.337023,1.609438,4.036076,1
-15,2,95,1,4,228160,0,11349.56,14.69336,0,16,1,23.38941,1.641362,0,0,0,25.03078,0,0,0,2,0,5,66.7,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.337023,1.609438,3.220106,1
-15,2,95,1,5,228160,0,11349.56,15.69336,0,16,1,10.31042,4.43459,0,0,0,14.74501,0,0,0,1,0,5,66.7,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.337023,1.609438,2.690905,1
-15,2,95,1,1,228161,0,11349.56,44.90623,1,16,1,0,2.66099,0,0,0,2.66099,0,0,0,0,0,5,67.6,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,92,9.337023,1.609438,.9786983,1
-15,2,95,1,2,228161,0,11349.56,45.90623,1,16,1,19.87397,0,0,0,0,19.87397,0,0,0,1,0,5,67.6,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,92,9.337023,1.609438,2.989411,1
-15,2,95,1,3,228161,0,11349.56,46.90623,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,67.6,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,92,9.337023,1.609438,,0
-15,2,95,1,4,228161,0,11349.56,47.90623,1,16,1,16.41362,0,0,0,0,16.41362,0,0,0,1,0,5,67.6,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,92,9.337023,1.609438,2.798112,1
-15,2,95,1,5,228161,0,11349.56,48.90623,1,16,1,12.93422,0,0,0,0,12.93422,0,0,0,1,0,5,67.6,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,92,9.337023,1.609438,2.559876,1
-15,2,95,1,1,228162,0,11349.56,50.54073,0,16,1,15.96594,60.27142,0,0,0,76.23736,0,0,0,1,0,5,85.6,10.3,0,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,67,9.337023,1.609438,4.333852,1
-15,2,95,1,2,228162,0,11349.56,51.54073,0,16,1,150.509,79.71401,0,0,0,230.223,0,0,0,9,0,5,85.6,10.3,0,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,67,9.337023,1.609438,5.439048,1
-15,2,95,1,3,228162,0,11349.56,52.54073,0,16,1,39.75741,52.62803,0,0,0,92.38544,0,0,0,0,0,5,85.6,10.3,0,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,67,9.337023,1.609438,4.52597,1
-15,2,95,1,4,228162,0,11349.56,53.54073,0,16,1,16.41362,48.62536,0,0,0,65.03898,0,0,0,1,0,5,85.6,10.3,0,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,67,9.337023,1.609438,4.174987,1
-15,2,95,1,5,228162,0,11349.56,54.54073,0,16,1,78.99113,77.53141,0,0,0,156.5225,0,0,0,2,0,5,85.6,10.3,0,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,67,9.337023,1.609438,5.0532,1
-15,2,95,1,1,228163,0,11349.56,9.401779,1,16,1,23.94891,3.326237,0,0,0,27.27515,0,0,0,2,0,5,63.3,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.337023,1.609438,3.305976,1
-15,2,95,1,2,228163,0,11349.56,10.40178,1,16,1,36.35482,9.597673,0,0,0,45.9525,0,0,0,3,0,5,63.3,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.337023,1.609438,3.827608,1
-15,2,95,1,3,228163,0,11349.56,11.40178,1,16,1,13.02785,0,0,0,0,13.02785,0,0,0,2,0,5,63.3,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.337023,1.609438,2.56709,1
-15,2,95,1,4,228163,0,11349.56,12.40178,1,16,1,25.85146,2.62618,0,0,0,28.47764,0,0,0,3,0,5,63.3,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.337023,1.609438,3.349119,1
-15,2,95,1,5,228163,0,11349.56,13.40178,1,16,1,30.67258,1.773836,0,0,0,32.44641,0,0,0,2,0,5,63.3,11.84267,0,70.4,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.337023,1.609438,3.47959,1
-15,2,95,1,1,228164,0,11349.56,14.51882,1,16,1,41.51144,7.557211,0,0,0,49.06865,0,0,0,4,0,5,82.4,10.3,0,60.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.337023,1.609438,3.89322,1
-15,2,95,1,2,228164,0,11349.56,15.51882,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,10.3,0,60.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.337023,1.609438,,0
-15,2,95,1,3,228164,0,11349.56,16.51882,1,16,1,10.33243,2.35849,0,0,0,12.69093,0,0,0,2,0,5,82.4,10.3,0,60.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.337023,1.609438,2.540887,1
-15,2,95,1,4,228164,0,11349.56,17.51882,1,16,1,30.77554,4.329093,0,0,0,35.10464,0,0,0,2,0,5,82.4,10.3,0,60.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.337023,1.609438,3.558333,1
-15,2,95,1,5,228164,0,11349.56,18.51882,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.337023,1.609438,,0
-17,2,25,1,1,228173,0,5948.974,50.29979,1,12,1,450.2118,136.469,45.83907,0,1368.978,2001.498,1,0,0,34,8,2,79.8,31,1,47.7,535,535,0,0,.6931472,6.282267,0,3.258096,7.668561,0,1,0,47.7,8.691142,.6931472,7.601651,1
-17,2,25,1,1,228174,0,5948.974,53.80151,0,13,1,100.0529,12.08576,17.73425,0,0,129.873,0,0,0,13,0,2,85.6,10.3,0,70.5,535,535,0,0,.6931472,6.282267,0,3.258096,7.668561,0,1,0,70.5,8.691142,.6931472,4.866557,1
-13,2,0,0,1,228198,0,8665.641,29.45927,1,15,1,39.15508,6.414219,0,0,0,45.56929,0,0,0,2,0,4,37.8,24.1,0,68.2,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,1,0,0,68.2,9.067237,1.386294,3.819234,1
-13,2,0,0,2,228198,0,8665.641,30.45927,1,15,1,60.13258,5.743371,35.75284,0,0,101.6288,0,0,0,4,0,4,37.8,24.1,0,68.2,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,1,0,0,68.2,9.067237,1.386294,4.621327,1
-13,2,0,0,3,228198,0,8665.641,31.45927,1,15,1,22.5401,5.158214,0,0,0,27.69831,0,0,0,1,0,4,37.8,24.1,0,68.2,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,1,0,0,68.2,9.067237,1.386294,3.321371,1
-13,2,0,0,1,228199,0,8665.641,5.284052,0,15,1,87.58372,24.76043,0,0,0,112.3442,0,0,0,9,0,4,81.7,11.84267,0,77.8,450,769.56,1,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,77.8,9.067237,1.386294,4.721567,1
-13,2,0,0,2,228199,0,8665.641,6.284052,0,15,1,244.8674,70.68655,0,0,85.79072,401.3447,1,0,0,35,0,4,81.7,11.84267,0,77.8,450,769.56,1,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,77.8,9.067237,1.386294,5.994821,1
-13,2,0,0,3,228199,0,8665.641,7.284052,0,15,1,482.1847,196.1205,0,0,0,678.3052,0,0,0,30,0,4,81.7,11.84267,0,77.8,450,769.56,1,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,77.8,9.067237,1.386294,6.519598,1
-13,2,0,0,1,228200,0,8665.641,2.850103,1,15,1,44.82226,8.691396,0,0,0,53.51365,0,0,0,5,0,4,81.35272,11.84267,0,88.9,450,769.56,1,1,1.386294,6.645819,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.386294,3.979937,1
-13,2,0,0,2,228200,0,8665.641,3.850103,1,15,1,17.51894,8.011364,0,0,0,25.5303,0,0,0,2,0,4,81.35272,11.84267,0,88.9,450,769.56,1,1,1.386294,6.645819,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.386294,3.239866,1
-13,2,0,0,3,228200,0,8665.641,4.850103,1,15,1,26.15952,0,0,0,0,26.15952,0,0,0,1,0,4,81.35272,11.84267,0,88.9,450,769.56,1,1,1.386294,6.645819,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.386294,3.264213,1
-13,2,0,0,1,228201,0,8665.641,29.45106,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,17.2,0,76.1,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,76.1,9.067237,1.386294,,0
-13,2,0,0,2,228201,0,8665.641,30.45106,0,15,1,25.89962,0,0,0,0,25.89962,0,0,0,1,0,4,70.2,17.2,0,76.1,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,76.1,9.067237,1.386294,3.254228,1
-13,2,0,0,3,228201,0,8665.641,31.45106,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,17.2,0,76.1,450,769.56,0,0,1.386294,6.645819,1,4.564348,6.160541,0,0,0,76.1,9.067237,1.386294,,0
-11,2,0,1,1,228222,0,17144.49,39.41957,0,12,1,99.5034,9.121799,0,0,548.1965,656.8217,2,0,0,4,0,5,83,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.74949,1.609438,6.487412,1
-11,2,0,1,2,228222,0,17144.49,40.41957,0,12,1,45.41086,5.550216,0,0,0,50.96107,0,0,0,3,0,5,83,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.74949,1.609438,3.931062,1
-11,2,0,1,3,228222,0,17144.49,41.41957,0,12,1,43.39207,10.57269,0,0,0,53.96476,0,0,0,3,0,5,83,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.74949,1.609438,3.988331,1
-11,2,0,1,1,228223,0,17144.49,18.82546,0,11,1,49.13748,0,0,0,0,49.13748,0,0,0,3,0,5,77.1,6.9,0,78.4,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.4,9.74949,1.609438,3.894622,1
-11,2,0,1,2,228223,0,17144.49,19.82546,0,11,1,24.98799,12.90245,29.35608,0,0,67.24651,0,0,0,4,0,5,77.1,6.9,0,78.4,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.4,9.74949,1.609438,4.208365,1
-11,2,0,1,3,228223,0,17144.49,20.82546,0,11,1,501.7621,2.268723,7.797357,0,0,511.8282,0,0,0,1,30,5,77.1,6.9,0,78.4,0,0,0,0,1.609438,0,0,0,0,0,0,0,78.4,9.74949,1.609438,6.237989,1
-11,2,0,1,1,228224,0,17144.49,15.34292,0,11,1,15.68217,0,0,0,0,15.68217,0,0,0,1,0,5,68.6,0,1,60.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,60.2,9.74949,1.609438,2.752525,1
-11,2,0,1,2,228224,0,17144.49,16.34292,0,11,1,16.81884,3.027391,0,0,0,19.84623,0,0,0,2,0,5,68.6,0,1,60.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,60.2,9.74949,1.609438,2.988014,1
-11,2,0,1,3,228224,0,17144.49,17.34292,0,11,1,77.97357,9.581498,40.37004,0,0,127.9251,0,0,0,0,2,5,68.6,0,1,60.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,60.2,9.74949,1.609438,4.851445,1
-11,2,0,1,1,228225,0,17144.49,37.38261,1,11,1,117.3549,5.541035,0,0,0,122.896,0,0,0,7,0,5,61.2,34.5,1,60.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,60.2,9.74949,1.609438,4.811338,1
-11,2,0,1,2,228225,0,17144.49,38.38261,1,11,1,33.3974,6.823642,0,0,0,40.22105,0,0,0,2,0,5,61.2,34.5,1,60.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,60.2,9.74949,1.609438,3.69439,1
-11,2,0,1,3,228225,0,17144.49,39.38261,1,11,1,40.30837,0,35.24229,0,0,75.55066,0,0,0,1,1,5,61.2,34.5,1,60.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,60.2,9.74949,1.609438,4.324803,1
-13,2,0,1,1,228226,0,1759.531,4.985626,1,10,1,23.82213,6.537851,0,0,0,30.35998,0,0,0,2,0,2,81.35272,11.84267,0,77.8,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,77.8,7.473371,.6931472,3.413125,1
-13,2,0,1,2,228226,0,1759.531,5.985626,1,10,1,46.33205,0,0,0,0,46.33205,0,0,0,2,0,2,81.35272,11.84267,0,77.8,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,77.8,7.473371,.6931472,3.835834,1
-13,2,0,1,3,228226,0,1759.531,6.985626,1,10,1,50.40054,15.33155,0,0,0,65.73209,0,0,0,4,0,4,81.35272,11.84267,0,77.8,300,300,1,1,1.386294,5.703783,1,4.564348,5.755076,1,0,0,77.8,7.473371,1.386294,4.185587,1
-13,2,0,1,1,228227,0,1759.531,23.72348,1,10,1,48.96771,3.335098,0,0,0,52.30281,0,0,0,3,0,2,69.1,24.1,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,69.3,7.473371,.6931472,3.95705,1
-13,2,0,1,2,228227,0,1759.531,24.72348,1,10,1,64.55116,19.85521,0,0,1716.192,1800.599,1,0,0,1,0,2,69.1,24.1,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,69.3,7.473371,.6931472,7.495874,1
-13,2,0,1,3,228227,0,1759.531,25.72348,1,10,1,20.0267,26.4575,31.49978,0,0,77.98398,0,0,0,1,1,4,69.1,24.1,0,69.3,300,300,0,0,1.386294,5.703783,1,4.564348,5.755076,1,0,0,69.3,7.473371,1.386294,4.356503,1
-13,2,0,0,1,228230,0,15426.63,47.60575,1,8,1,23.29275,28.25834,0,0,1128.613,1180.164,1,0,0,5,0,2,88.8,13.8,0,62.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,62.5,9.643915,.6931472,7.073409,1
-13,2,0,0,2,228230,0,15426.63,48.60575,1,8,1,323.1178,5.859073,0,0,0,328.9768,0,0,0,11,13,2,88.8,13.8,0,62.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,62.5,9.643915,.6931472,5.795987,1
-13,2,0,0,3,228230,0,15426.63,49.60575,1,8,1,63.52915,0,53.95193,0,0,117.4811,0,0,0,1,1,2,88.8,13.8,0,62.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,62.5,9.643915,.6931472,4.766277,1
-13,2,0,0,1,228231,0,15426.63,45.24572,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,56.8,9.643915,.6931472,,0
-13,2,0,0,2,228231,0,15426.63,46.24572,0,12,1,24.85521,0,0,0,1238.151,1263.007,1,0,0,2,0,2,78.7,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,56.8,9.643915,.6931472,7.141251,1
-13,2,0,0,3,228231,0,15426.63,47.24572,0,12,1,64.97552,0,9.719626,0,0,74.69515,0,0,0,6,0,2,78.7,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,56.8,9.643915,.6931472,4.313415,1
-11,2,0,1,1,228232,0,4994.721,53.9165,1,14,1,261.2493,11.49285,15.62202,0,0,288.3642,0,0,0,4,20,1,79.8,10.3,0,79.5,0,64.2,0,0,0,4.162003,0,0,0,0,0,0,79.5,8.516337,0,5.664224,1
-11,2,0,1,2,228232,0,4994.721,54.9165,1,14,1,26.06178,10.05791,0,0,0,36.11969,0,0,0,1,0,1,79.8,10.3,0,79.5,0,64.2,0,0,0,4.162003,0,0,0,0,0,0,79.5,8.516337,0,3.586838,1
-11,2,0,1,3,228232,0,4994.721,55.9165,1,14,1,74.32132,10.57855,0,0,0,84.89986,0,0,0,5,0,1,79.8,10.3,0,79.5,0,64.2,0,0,0,4.162003,0,0,0,0,0,0,79.5,8.516337,0,4.441473,1
-11,2,0,1,4,228232,0,4994.721,56.9165,1,14,1,357.0964,1.285075,29.5974,0,1873.282,2261.261,2,0,0,8,0,1,79.8,10.3,0,79.5,0,64.2,0,0,0,4.162003,0,0,0,0,0,0,79.5,8.516337,0,7.723678,1
-11,2,0,1,5,228232,0,4994.721,57.9165,1,14,1,1232.863,14.22287,0,0,1636.602,2883.688,5,0,0,6,0,1,79.8,10.3,0,79.5,0,64.2,0,0,0,4.162003,0,0,0,0,0,0,79.5,8.516337,0,7.966825,1
-13,2,0,0,1,228235,0,3820.792,24.6872,0,16,1,125.5987,27.86056,38.70676,0,0,192.166,0,0,0,3,0,1,87.2,13.8,1,29.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,29.5,8.248475,0,5.25836,1
-13,2,0,0,2,228235,0,3820.792,25.6872,0,16,1,51.38148,19.81096,23.54823,0,0,94.74067,0,0,0,1,0,1,87.2,13.8,1,29.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,29.5,8.248475,0,4.551143,1
-13,2,0,0,3,228235,0,3820.792,26.6872,0,16,1,129.1554,37.12938,31.81042,0,0,198.0952,0,0,0,3,0,1,87.2,13.8,1,29.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,29.5,8.248475,0,5.288748,1
-13,2,0,0,4,228235,0,3820.792,27.6872,0,16,1,89.762,20.97251,50.85761,0,0,161.5921,0,0,0,2,0,1,87.2,13.8,1,29.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,29.5,8.248475,0,5.085075,1
-13,2,0,0,5,228235,0,3820.792,28.6872,0,16,1,85.82779,24.54545,29.97413,0,0,140.3474,0,0,0,3,0,1,87.2,13.8,1,29.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,29.5,8.248475,0,4.944121,1
-17,2,25,1,1,228252,0,5495.601,30.28063,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,58,6.9,0,68.2,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,68.2,8.611885,.6931472,,0
-17,2,25,1,2,228252,0,5495.601,31.28063,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,58,6.9,0,68.2,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,68.2,8.611885,.6931472,,0
-17,2,25,1,3,228252,0,5495.601,32.28063,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,58,6.9,0,68.2,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,68.2,8.611885,.6931472,,0
-17,2,25,1,1,228253,0,5495.601,29.45654,1,17,1,38.6827,11.33298,39.65499,0,0,89.67068,0,0,0,3,0,2,81.9,10.3,0,95.5,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,95.5,8.611885,.6931472,4.496144,1
-17,2,25,1,2,228253,0,5495.601,30.45654,1,17,1,33.63767,29.36569,0,0,0,63.00336,0,0,0,2,0,2,81.9,10.3,0,95.5,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,95.5,8.611885,.6931472,4.143188,1
-17,2,25,1,3,228253,0,5495.601,31.45654,1,17,1,272.5551,14.59031,39.55066,0,0,326.696,0,0,0,5,22,2,81.9,10.3,0,95.5,955,493,0,0,.6931472,6.200509,0,3.258096,8.248006,0,0,0,95.5,8.611885,.6931472,5.78903,1
-5,2,25,1,1,228254,0,12940.76,15.92882,0,12,1,22.88451,9.952102,0,0,0,32.83662,0,0,0,3,0,4,64.4,6.9,0,67,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,67,9.468215,1.386294,3.491544,1
-5,2,25,1,2,228254,0,12940.76,16.92882,0,12,1,6.786233,2.81144,0,0,0,9.597673,0,0,0,1,0,4,64.4,6.9,0,67,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,67,9.468215,1.386294,2.261521,1
-5,2,25,1,3,228254,0,12940.76,17.92882,0,12,1,35.48967,8.760108,0,0,743.239,787.4888,1,0,0,3,0,4,64.4,6.9,0,67,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,67,9.468215,1.386294,6.668849,1
-5,2,25,1,1,228255,0,12940.76,37.13895,1,12,1,31.93188,48.74934,34.68334,0,0,115.3646,0,0,0,2,0,4,79.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.468215,1.386294,4.748097,1
-5,2,25,1,2,228255,0,12940.76,38.13895,1,12,1,63.01503,15.14784,0,0,0,78.16287,0,0,0,2,0,4,79.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.468215,1.386294,4.358795,1
-5,2,25,1,3,228255,0,12940.76,39.13895,1,12,1,41.55436,11.47799,0,0,0,53.03234,0,0,0,3,0,4,79.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,80.7,9.468215,1.386294,3.970902,1
-5,2,25,1,1,228256,0,12940.76,38.69952,0,12,1,191.4582,0,0,0,0,191.4582,0,0,0,3,0,4,80.3,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,56.8,9.468215,1.386294,5.25467,1
-5,2,25,1,2,228256,0,12940.76,39.69952,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,56.8,9.468215,1.386294,,0
-5,2,25,1,3,228256,0,12940.76,40.69952,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,56.8,9.468215,1.386294,,0
-5,2,25,1,1,228257,0,12940.76,17.58795,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,6.9,0,76.1,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.468215,1.386294,,0
-5,2,25,1,2,228257,0,12940.76,18.58795,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,6.9,0,76.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.468215,1.386294,,0
-5,2,25,1,3,228257,0,12940.76,19.58795,0,12,1,17.96945,10.44025,0,0,0,28.4097,0,0,0,1,0,4,79.3,6.9,0,76.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.1,9.468215,1.386294,3.346731,1
-16,2,95,1,1,228278,0,7336.07,43.73443,1,12,1,98.5442,12.94336,0,0,786.1832,897.6707,2,0,0,5,0,4,26.6,13.8,1,39.8,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,0,39.8,8.900695,1.386294,6.799803,1
-16,2,95,1,2,228278,0,7336.07,44.73443,1,12,1,181.4672,5.936294,18.38803,0,0,205.7915,0,0,0,7,0,4,26.6,13.8,1,39.8,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,0,39.8,8.900695,1.386294,5.326864,1
-16,2,95,1,3,228278,0,7336.07,45.73443,1,12,1,145.9234,.2447708,0,0,0,146.1682,0,0,0,3,0,4,26.6,13.8,1,39.8,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,0,39.8,8.900695,1.386294,4.984758,1
-16,2,95,1,1,228279,0,7336.07,42.86927,0,13,1,116.7284,41.4505,47.30545,0,0,205.4844,0,0,0,4,1,4,56.9,17.2,0,34.1,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,1,34.1,8.900695,1.386294,5.32537,1
-16,2,95,1,2,228279,0,7336.07,43.86927,0,13,1,33.34942,31.62162,17.6834,0,0,82.65444,0,0,0,1,0,4,56.9,17.2,0,34.1,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,1,34.1,8.900695,1.386294,4.414669,1
-16,2,95,1,3,228279,0,7336.07,44.86927,0,13,1,0,19.77303,5.126836,0,0,24.89987,0,0,0,0,0,4,56.9,17.2,0,34.1,651,0,0,0,1.386294,0,0,4.564348,6.529803,0,0,1,34.1,8.900695,1.386294,3.214862,1
-16,2,95,1,1,228280,0,7336.07,9.886379,0,12,1,82.00106,0,0,489.6771,0,82.00106,0,0,24,6,0,4,41.7,11.84267,1,51.9,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,51.9,8.900695,1.386294,4.406732,1
-16,2,95,1,2,228280,0,7336.07,10.88638,0,12,1,17.13321,0,0,67.56757,0,17.13321,0,0,4,2,0,4,41.7,11.84267,1,51.9,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,51.9,8.900695,1.386294,2.841018,1
-16,2,95,1,3,228280,0,7336.07,11.88638,0,12,1,54.51714,0,0,0,0,54.51714,0,0,0,3,0,4,41.7,11.84267,1,51.9,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,51.9,8.900695,1.386294,3.998515,1
-16,2,95,1,1,228281,0,7336.07,6.045175,0,12,1,17.46956,0,0,0,0,17.46956,0,0,0,2,0,4,80,11.84267,0,70.4,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,70.4,8.900695,1.386294,2.86046,1
-16,2,95,1,2,228281,0,7336.07,7.045175,0,12,1,8.204633,0,0,0,0,8.204633,0,0,0,1,0,4,80,11.84267,0,70.4,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,70.4,8.900695,1.386294,2.104699,1
-16,2,95,1,3,228281,0,7336.07,8.045175,0,12,1,272.4521,0,5.117935,0,0,277.5701,0,0,0,6,0,4,80,11.84267,0,70.4,651,0,1,0,1.386294,0,0,4.564348,6.529803,0,0,0,70.4,8.900695,1.386294,5.626073,1
-11,2,0,1,1,228284,0,15661.58,28.14784,1,14,1,4.257584,26.53539,0,0,767.472,798.265,1,0,0,1,0,2,76.1,20.7,0,61.9,0,243.84,0,0,.6931472,5.496512,0,0,0,0,0,0,61.9,9.65903,.6931472,6.682441,1
-11,2,0,1,2,228284,0,15661.58,29.14784,1,14,1,54.53223,24.3238,0,0,0,78.85603,0,0,0,5,0,3,76.1,20.7,0,61.9,0,243.84,0,0,1.098612,5.496512,0,0,0,0,0,0,61.9,9.65903,1.098612,4.367624,1
-11,2,0,1,3,228284,0,15661.58,30.14784,1,14,1,9.119497,8.468104,0,0,0,17.5876,0,0,0,1,0,3,76.1,20.7,0,61.9,0,243.84,0,0,1.098612,5.496512,0,0,0,0,0,0,61.9,9.65903,1.098612,2.867194,1
-11,2,0,1,1,228285,0,15661.58,35.00616,0,14,1,22.35232,0,33.84247,0,0,56.19479,0,0,0,1,1,2,83,6.9,0,76.1,0,243.84,0,0,.6931472,5.496512,0,0,0,0,0,0,76.1,9.65903,.6931472,4.028824,1
-11,2,0,1,2,228285,0,15661.58,36.00616,0,14,1,18.29859,0,0,0,0,18.29859,0,0,0,4,0,3,83,6.9,0,76.1,0,243.84,0,0,1.098612,5.496512,0,0,0,0,0,0,76.1,9.65903,1.098612,2.906824,1
-11,2,0,1,3,228285,0,15661.58,37.00616,0,14,1,106.3567,36.44205,33.14465,0,0,175.9434,0,0,0,6,0,3,83,6.9,0,76.1,0,243.84,0,0,1.098612,5.496512,0,0,0,0,0,0,76.1,9.65903,1.098612,5.170162,1
-11,2,0,0,1,228294,0,6634.018,29.54415,0,11,1,359.4997,136.0937,30.02129,95.79564,0,525.6147,0,0,4,38,5,1,66,3.4,0,83,0,0,0,0,0,0,0,0,0,0,0,0,83,8.800117,0,6.264568,1
-11,2,0,0,2,228294,0,6634.018,30.54415,0,11,1,305.8652,136.2336,0,0,0,442.0989,0,0,0,26,19,1,66,3.4,0,83,0,0,0,0,0,0,0,0,0,0,0,0,83,8.800117,0,6.091534,1
-11,2,0,0,3,228294,0,6634.018,31.54415,0,11,1,443.3962,145.3279,38.89488,0,0,627.619,0,0,0,32,20,1,66,3.4,0,83,0,0,0,0,0,0,0,0,0,0,0,0,83,8.800117,0,6.441933,1
-15,2,95,0,1,228298,0,2996.481,51.38946,1,10,1,41.77754,36.03513,0,0,0,77.81267,0,0,0,2,2,1,75,24.1,0,79.5,815,815,0,0,0,6.703188,0,4.564348,6.754481,1,0,0,79.5,8.005527,0,4.354304,1
-15,2,95,0,2,228298,0,2996.481,52.38946,1,10,1,93.40766,51.42995,0,0,0,144.8376,0,0,0,8,1,1,75,24.1,0,79.5,815,815,0,0,0,6.703188,0,4.564348,6.754481,1,0,0,79.5,8.005527,0,4.975613,1
-15,2,95,0,3,228298,0,2996.481,53.38946,1,10,1,151.3926,57.79874,67.20126,0,0,276.3926,0,0,0,10,0,1,75,24.1,0,79.5,815,815,0,0,0,6.703188,0,4.564348,6.754481,1,0,0,79.5,8.005527,0,5.621822,1
-11,2,0,0,1,228342,0,8174.78,31.75633,0,13,1,9.579563,0,29.58488,0,0,39.16445,0,0,0,0,1,5,77.7,0,0,93.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,93.2,9.008931,1.609438,3.667769,1
-11,2,0,0,2,228342,0,8174.78,32.75633,0,13,1,11.63354,5.448376,0,0,0,17.08192,0,0,0,2,0,5,77.7,0,0,93.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,93.2,9.008931,1.609438,2.838021,1
-11,2,0,0,3,228342,0,8174.78,33.75633,0,13,1,17.07098,0,0,0,0,17.07098,0,0,0,1,0,5,77.7,0,0,93.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,93.2,9.008931,1.609438,2.83738,1
-11,2,0,0,4,228342,0,8174.78,34.75633,0,13,1,41.85474,0,0,0,0,41.85474,0,0,0,2,3,5,77.7,0,0,93.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,93.2,9.008931,1.609438,3.734205,1
-11,2,0,0,5,228342,0,8174.78,35.75633,0,13,1,72.30229,0,0,0,0,72.30229,0,0,0,3,2,5,77.7,0,0,93.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,93.2,9.008931,1.609438,4.280856,1
-11,2,0,0,1,228343,0,8174.78,1.976728,0,10,1,21.28792,6.061735,0,0,0,27.34965,0,0,0,4,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,9.008931,1.609438,3.308704,1
-11,2,0,0,2,228343,0,8174.78,2.976728,0,10,1,26.17547,0,0,0,0,26.17547,0,0,0,2,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,9.008931,1.609438,3.264823,1
-11,2,0,0,3,228343,0,8174.78,3.976728,0,10,1,168.1491,1.527403,0,0,0,169.6765,0,0,0,8,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,9.008931,1.609438,5.133894,1
-11,2,0,0,4,228343,0,8174.78,4.976728,0,10,1,69.34756,5.3016,0,0,550.5334,625.1826,2,0,0,4,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,9.008931,1.609438,6.438044,1
-11,2,0,0,5,228343,0,8174.78,5.976728,0,10,1,64.96674,6.688839,0,0,0,71.65558,0,0,0,4,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,9.008931,1.609438,4.271871,1
-11,2,0,0,1,228344,0,8174.78,4.720055,1,10,1,20.54284,0,0,0,0,20.54284,0,0,0,2,0,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.008931,1.609438,3.022513,1
-11,2,0,0,2,228344,0,8174.78,5.720055,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.008931,1.609438,,0
-11,2,0,0,3,228344,0,8174.78,6.720055,1,10,1,14.37556,0,0,0,0,14.37556,0,0,0,1,0,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.008931,1.609438,2.66553,1
-11,2,0,0,4,228344,0,8174.78,7.720055,1,10,1,81.16537,5.86787,0,0,361.2639,448.2971,1,0,0,6,0,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.008931,1.609438,6.105456,1
-11,2,0,0,5,228344,0,8174.78,8.720055,1,10,1,38.50702,4.951959,.8130081,0,0,44.27199,0,0,0,2,0,5,81.35272,11.84267,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.008931,1.609438,3.790352,1
-11,2,0,0,1,228345,0,8174.78,29.80972,1,10,1,27.1421,11.20277,0,0,0,38.34486,0,0,0,5,0,5,89.4,10.3,0,61.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.4,9.008931,1.609438,3.646621,1
-11,2,0,0,2,228345,0,8174.78,30.80972,1,10,1,31.79835,21.82259,0,0,0,53.62094,0,0,0,5,0,5,89.4,10.3,0,61.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.4,9.008931,1.609438,3.98194,1
-11,2,0,0,3,228345,0,8174.78,31.80972,1,10,1,39.53279,10.82659,23.13567,0,0,73.49506,0,0,0,4,0,5,89.4,10.3,0,61.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.4,9.008931,1.609438,4.297218,1
-11,2,0,0,4,228345,0,8174.78,32.80972,1,10,1,22.36356,11.65367,0,0,0,34.01723,0,0,0,2,0,5,89.4,10.3,0,61.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.4,9.008931,1.609438,3.526867,1
-11,2,0,0,5,228345,0,8174.78,33.80972,1,10,1,91.09386,16.94383,0,0,0,108.0377,0,0,0,5,0,5,89.4,10.3,0,61.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,61.4,9.008931,1.609438,4.68248,1
-11,2,0,0,1,228346,0,8174.78,6.160164,0,10,1,29.27089,6.998404,0,0,0,36.26929,0,0,0,3,0,5,95,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.008931,1.609438,3.590971,1
-11,2,0,0,2,228346,0,8174.78,7.160164,0,10,1,295.2739,14.7746,0,0,0,310.0485,0,0,0,6,0,5,95,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.008931,1.609438,5.736729,1
-11,2,0,0,3,228346,0,8174.78,8.160164,0,10,1,41.32974,0,0,0,0,41.32974,0,0,0,4,0,5,95,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.008931,1.609438,3.721582,1
-11,2,0,0,4,228346,0,8174.78,9.160164,0,10,1,101.149,5.231843,0,0,304.3907,410.7715,1,0,0,6,0,5,95,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.008931,1.609438,6.018037,1
-11,2,0,0,5,228346,0,8174.78,10.16016,0,10,1,69.84479,2.40207,0,0,0,72.24686,0,0,0,4,0,5,95,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.008931,1.609438,4.280089,1
-6,2,25,1,1,228354,0,4906.158,26.59001,0,13,1,27.52779,14.76972,42.39809,0,0,84.6956,0,0,0,3,0,1,65.4,24.1,0,64.8,445,445,0,0,0,6.098074,0,3.258096,7.484369,1,0,0,64.8,8.49845,0,4.439064,1
-6,2,25,1,2,228354,0,4906.158,27.59001,0,13,1,0,3.566602,0,0,0,3.566602,0,0,0,0,0,1,65.4,24.1,0,64.8,445,445,0,0,0,6.098074,0,3.258096,7.484369,1,0,0,64.8,8.49845,0,1.271613,1
-6,2,25,1,3,228354,0,4906.158,28.59001,0,13,1,18.69159,2.550067,41.73565,0,0,62.9773,0,0,0,1,1,1,65.4,24.1,0,64.8,445,445,0,0,0,6.098074,0,3.258096,7.484369,1,0,0,64.8,8.49845,0,4.142775,1
-13,2,0,1,1,228362,0,12263.34,61.07871,0,12,1,31.7099,16.8343,0,0,0,48.5442,0,0,0,3,0,2,80.9,17.2,0,73.9,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,1,0,0,73.9,9.414452,.6931472,3.882475,1
-13,2,0,1,2,228362,0,12263.34,62.07871,0,12,1,59.24228,8.098455,0,0,0,67.34074,0,0,0,1,0,2,80.9,17.2,0,73.9,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,1,0,0,73.9,9.414452,.6931472,4.209765,1
-13,2,0,1,3,228362,0,12263.34,63.07871,0,12,1,48.50912,13.76057,0,0,0,62.26969,0,0,0,1,0,2,80.9,17.2,0,73.9,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,1,0,0,73.9,9.414452,.6931472,4.131475,1
-13,2,0,1,1,228363,0,12263.34,55.13758,1,12,1,406.379,85.05559,0,0,0,491.4346,0,0,0,20,0,2,87.2,27.6,1,54.5,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,0,1,0,54.5,9.414452,.6931472,6.197329,1
-13,2,0,1,2,228363,0,12263.34,56.13758,1,12,1,468.6776,108.4266,39.47876,0,116.0473,732.6303,1,0,0,38,0,2,87.2,27.6,1,54.5,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,0,1,0,54.5,9.414452,.6931472,6.596641,1
-13,2,0,1,3,228363,0,12263.34,57.13758,1,12,1,802.2252,241.0058,0,0,82.02047,1125.251,1,0,0,26,0,2,87.2,27.6,1,54.5,300,348.16,0,0,.6931472,5.852662,1,4.564348,5.755076,0,1,0,54.5,9.414452,.6931472,7.025762,1
-7,2,25,1,1,228364,0,9759.531,30.64203,0,14,1,34.32677,2.60777,0,0,0,36.93454,0,0,0,4,0,3,79.3,10.3,0,77.3,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.186102,1.098612,3.609147,1
-7,2,25,1,2,228364,0,9759.531,31.64203,0,14,1,16.96558,0,33.28163,0,0,50.24721,0,0,0,1,0,4,79.3,10.3,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.186102,1.386294,3.916955,1
-7,2,25,1,3,228364,0,9759.531,32.64202,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,10.3,0,77.3,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,77.3,9.186102,1.386294,,0
-7,2,25,1,1,228365,0,9759.531,32.85421,1,16,1,20.75572,10.47366,35.43906,0,627.0623,693.7307,1,0,0,1,0,3,65.4,6.9,1,89.8,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,89.8,9.186102,1.098612,6.542084,1
-7,2,25,1,2,228365,0,9759.531,33.85421,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,65.4,6.9,1,89.8,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,89.8,9.186102,1.386294,,0
-7,2,25,1,3,228365,0,9759.531,34.85421,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,65.4,6.9,1,89.8,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,89.8,9.186102,1.386294,,0
-7,2,25,1,1,228366,0,9759.531,2.819986,0,16,1,15.99255,0,0,0,0,15.99255,0,0,0,1,0,3,81.35272,11.84267,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.186102,1.098612,2.772123,1
-7,2,25,1,2,228366,0,9759.531,3.819986,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.186102,1.386294,,0
-7,2,25,1,3,228366,0,9759.531,4.819986,0,16,1,20.66487,0,0,0,0,20.66487,0,0,0,1,0,4,81.35272,11.84267,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.186102,1.386294,3.028435,1
-6,2,25,0,1,228367,0,4692.082,25.94935,1,10,1,29.64532,28.69243,0,0,0,58.33775,0,0,0,2,0,5,63.3,27.6,1,47.7,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,47.7,8.453845,1.609438,4.066249,1
-6,2,25,0,2,228367,0,4692.082,26.94935,1,10,1,326.6168,14.55116,39.01545,0,0,380.1834,0,0,0,9,1,5,63.3,27.6,1,47.7,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,47.7,8.453845,1.609438,5.940654,1
-6,2,25,0,3,228367,0,4692.082,27.94935,1,10,1,233.0441,11.48643,0,0,648.0641,892.5945,1,0,0,3,0,5,63.3,27.6,1,47.7,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,47.7,8.453845,1.609438,6.794132,1
-6,2,25,0,4,228367,0,4692.082,28.94935,1,10,1,89.26393,16.36438,48.10085,0,419.9065,573.6356,1,0,0,6,1,5,63.3,27.6,1,47.7,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,47.7,8.453845,1.609438,6.351995,1
-6,2,25,0,5,228367,0,4692.082,29.94935,1,10,1,65.24927,0,0,0,0,65.24927,0,0,0,3,0,5,63.3,27.6,1,47.7,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,47.7,8.453845,1.609438,4.178215,1
-6,2,25,0,1,228368,0,4692.082,4.498289,0,10,1,160.9582,62.38751,0,0,0,223.3457,0,0,0,5,0,5,81.35272,11.84267,1,66.7,360,360,1,0,1.609438,5.886104,0,3.258096,7.272398,0,1,0,66.7,8.453845,1.609438,5.408721,1
-6,2,25,0,2,228368,0,4692.082,5.498289,0,10,1,350.3089,93.33977,0,0,508.2288,951.8774,1,0,0,12,0,5,81.35272,11.84267,1,66.7,360,360,1,0,1.609438,5.886104,0,3.258096,7.272398,0,1,0,66.7,8.453845,1.609438,6.858436,1
-6,2,25,0,3,228368,0,4692.082,6.498289,0,10,1,234.4014,82.55006,0,0,766.5554,1083.507,1,0,0,2,9,5,81.35272,11.84267,1,66.7,360,360,1,0,1.609438,5.886104,0,3.258096,7.272398,0,1,0,66.7,8.453845,1.609438,6.987958,1
-6,2,25,0,4,228368,0,4692.082,7.498289,0,10,1,197.133,59.5486,0,0,0,256.6816,0,0,0,2,10,5,81.35272,11.84267,1,66.7,360,360,1,0,1.609438,5.886104,0,3.258096,7.272398,0,1,0,66.7,8.453845,1.609438,5.547836,1
-6,2,25,0,5,228368,0,4692.082,8.498289,0,10,1,26.20968,10.67815,0,0,0,36.88783,0,0,0,2,0,5,81.35272,11.84267,1,66.7,360,360,1,0,1.609438,5.886104,0,3.258096,7.272398,0,1,0,66.7,8.453845,1.609438,3.607882,1
-6,2,25,0,1,228369,0,4692.082,25.05407,0,12,1,70.937,12.3081,0,0,0,83.2451,0,0,0,8,0,5,69.1,17.2,1,70.5,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,70.5,8.453845,1.609438,4.421789,1
-6,2,25,0,2,228369,0,4692.082,26.05407,0,12,1,309.8456,0,0,325.7722,0,309.8456,0,0,16,13,0,5,69.1,17.2,1,70.5,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,70.5,8.453845,1.609438,5.736074,1
-6,2,25,0,3,228369,0,4692.082,27.05407,0,12,1,114.3747,8.170895,0,440.5875,0,122.5456,0,0,22,8,0,5,69.1,17.2,1,70.5,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,70.5,8.453845,1.609438,4.808483,1
-6,2,25,0,4,228369,0,4692.082,28.05407,0,12,1,67.10045,0,0,0,0,67.10045,0,0,0,5,0,5,69.1,17.2,1,70.5,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,70.5,8.453845,1.609438,4.206191,1
-6,2,25,0,5,228369,0,4692.082,29.05407,0,12,1,17.22874,0,0,0,0,17.22874,0,0,0,1,0,5,69.1,17.2,1,70.5,360,360,0,0,1.609438,5.886104,0,3.258096,7.272398,0,0,0,70.5,8.453845,1.609438,2.846579,1
-6,2,25,0,1,228370,0,4692.082,1.577002,1,10,1,72.26045,11.22287,0,0,303.2028,386.6861,1,0,0,9,0,5,81.35272,11.84267,0,85.2,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,85.2,8.453845,1.609438,5.957613,1
-6,2,25,0,2,228370,0,4692.082,2.577002,1,10,1,54.29537,0,0,0,0,54.29537,0,0,0,11,0,5,81.35272,11.84267,0,85.2,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,85.2,8.453845,1.609438,3.994439,1
-6,2,25,0,3,228370,0,4692.082,3.577002,1,10,1,36.93814,7.089453,0,0,0,44.02759,0,0,0,5,0,5,81.35272,11.84267,0,85.2,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,85.2,8.453845,1.609438,3.784817,1
-6,2,25,0,4,228370,0,4692.082,4.577002,1,10,1,21.35014,2.179748,0,0,0,23.52989,0,0,0,3,0,5,81.35272,11.84267,0,85.2,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,85.2,8.453845,1.609438,3.158272,1
-6,2,25,0,5,228370,0,4692.082,5.577002,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,85.2,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,85.2,8.453845,1.609438,,0
-13,2,0,1,1,228377,0,3079.179,8.774812,0,16,1,123.8751,0,0,0,0,123.8751,0,0,0,5,1,4,80,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.032743,1.386294,4.819273,1
-13,2,0,1,2,228377,0,3079.179,9.774812,0,16,1,131.7568,0,0,0,0,131.7568,0,0,1,4,1,4,80,11.84267,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.032743,1.386294,4.880958,1
-13,2,0,1,3,228377,0,3079.179,10.77481,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,77.8,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.032743,1.609438,,0
-13,2,0,1,1,228378,0,3079.179,35.46886,1,16,1,328.216,16.98782,40.01588,566.4373,0,385.2197,0,0,25,9,5,4,77.7,13.8,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.032743,1.386294,5.953814,1
-13,2,0,1,2,228378,0,3079.179,36.46886,1,16,1,160.8349,18.14672,58.88031,562.2587,844.498,1082.36,1,0,33,3,5,4,77.7,13.8,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.032743,1.386294,6.986899,1
-13,2,0,1,3,228378,0,3079.179,37.46886,1,16,1,137.5167,0,31.39742,231.4197,0,168.9141,0,0,13,4,3,5,77.7,13.8,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.032743,1.609438,5.12939,1
-13,2,0,1,1,228379,0,3079.179,11.47159,1,16,1,166.6226,0,0,0,0,166.6226,0,0,0,7,1,4,81.7,11.84267,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.032743,1.386294,5.115731,1
-13,2,0,1,2,228379,0,3079.179,12.47159,1,16,1,129.4643,0,0,0,0,129.4643,0,0,1,3,0,4,81.7,11.84267,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.032743,1.386294,4.863405,1
-13,2,0,1,3,228379,0,3079.179,13.47159,1,16,1,27.6146,0,0,0,0,27.6146,0,0,0,2,0,5,81.7,11.84267,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.032743,1.609438,3.318345,1
-13,2,0,1,1,228380,0,3079.179,1.7577,1,16,1,256.4849,21.2811,0,0,0,277.766,0,0,0,9,1,4,81.35272,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.032743,1.386294,5.626779,1
-13,2,0,1,2,228380,0,3079.179,2.7577,1,16,1,27.26834,18.09846,0,0,0,45.36679,0,0,0,1,0,4,81.35272,11.84267,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.032743,1.386294,3.81478,1
-13,2,0,1,3,228380,0,3079.179,3.7577,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,96.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.032743,1.609438,,0
-11,2,0,0,1,228387,0,2519.648,24.91992,1,11,1,181.5966,251.0218,0,162.3204,180.6333,613.2517,1,1,12,9,0,5,44.1,31,1,39.8,0,0,0,0,1.609438,0,0,0,0,0,1,0,39.8,7.832272,1.609438,6.418776,1
-11,2,0,0,2,228387,0,2519.648,25.91992,1,11,1,75.8604,356.316,0,0,967.1255,1399.302,1,0,0,5,0,5,44.1,31,1,39.8,0,0,0,0,1.609438,0,0,0,0,0,1,0,39.8,7.832272,1.609438,7.243729,1
-11,2,0,0,3,228387,0,2519.648,26.91992,1,11,1,203.6163,91.15454,0,0,0,294.7709,0,0,0,24,0,6,44.1,31,1,39.8,0,0,0,0,1.791759,0,0,0,0,0,1,0,39.8,7.832272,1.791759,5.686198,1
-11,2,0,0,1,228388,0,2519.648,34.81451,0,11,1,117.4827,71.60724,0,0,0,189.0899,0,0,0,6,0,5,58.5,17.2,1,53.4,0,0,0,0,1.609438,0,0,0,0,0,1,0,53.4,7.832272,1.609438,5.242223,1
-11,2,0,0,2,228388,0,2519.648,35.81451,0,11,1,26.17547,92.29278,0,0,0,118.4682,0,0,0,4,0,5,58.5,17.2,1,53.4,0,0,0,0,1.609438,0,0,0,0,0,1,0,53.4,7.832272,1.609438,4.774645,1
-11,2,0,0,3,228388,0,2519.648,36.81451,0,11,1,100.6244,31.08266,.5615454,0,357.5696,489.8383,1,0,0,2,4,6,58.5,17.2,1,53.4,0,0,0,0,1.791759,0,0,0,0,0,1,0,53.4,7.832272,1.791759,6.194075,1
-11,2,0,0,1,228389,0,2519.648,5.672827,0,11,1,6.386376,1.915913,0,0,0,8.302288,0,0,0,1,0,5,91.7,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,7.832272,1.609438,2.116531,1
-11,2,0,0,2,228389,0,2519.648,6.672827,0,11,1,7.755696,4.934561,0,0,0,12.69026,0,0,0,0,0,5,91.7,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,7.832272,1.609438,2.540834,1
-11,2,0,0,3,228389,0,2519.648,7.672827,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,11.84267,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,7.832272,1.791759,,0
-11,2,0,0,1,228390,0,2519.648,6.694045,0,11,1,15.96594,2.55455,0,0,0,18.52049,0,0,0,1,0,5,91.7,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,7.832272,1.609438,2.918878,1
-11,2,0,0,2,228390,0,2519.648,7.694045,0,11,1,33.27678,0,0,0,0,33.27678,0,0,0,2,0,5,91.7,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,7.832272,1.609438,3.50486,1
-11,2,0,0,3,228390,0,2519.648,8.694045,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,11.84267,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,7.832272,1.791759,,0
-11,2,0,0,1,228391,0,2519.648,3.085558,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,7.832272,1.609438,,0
-11,2,0,0,2,228391,0,2519.648,4.085558,0,11,1,5.816772,0,0,0,0,5.816772,0,0,0,1,0,5,81.35272,11.84267,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,7.832272,1.609438,1.760745,1
-11,2,0,0,3,228391,0,2519.648,5.085558,0,11,1,34.83378,0,0,0,1052.201,1087.035,1,0,0,1,0,6,81.35272,11.84267,0,85.2,0,0,1,0,1.791759,0,0,0,0,0,0,0,85.2,7.832272,1.791759,6.991209,1
-11,2,0,0,1,228415,0,8665.641,61.36345,1,12,1,15.68217,5.075797,48.0345,0,0,68.79247,0,0,0,1,0,1,55.3,24.1,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,9.067237,0,4.231094,1
-11,2,0,0,2,228415,0,8665.641,62.36345,1,12,1,59.34647,0,0,0,0,59.34647,0,0,0,2,0,1,55.3,24.1,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,9.067237,0,4.083393,1
-11,2,0,0,3,228415,0,8665.641,63.36345,1,12,1,29.73568,0,52.36564,0,0,82.10132,0,0,0,2,0,1,55.3,24.1,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,9.067237,0,4.407954,1
-16,2,95,0,1,228420,0,5025.807,25.58795,1,13,1,459.6085,43.03452,44.50798,0,1863.333,2410.484,4,0,0,10,0,1,68.1,20.7,1,50,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,1,0,50,8.52254,0,7.787583,1
-16,2,95,0,2,228420,0,5025.807,26.58795,1,13,1,83.33334,17.2964,0,0,0,100.6297,0,0,0,6,0,2,68.1,20.7,1,50,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,50,8.52254,.6931472,4.611448,1
-16,2,95,0,3,228420,0,5025.807,27.58795,1,13,1,6.068487,29.02471,0,0,150.1517,185.2449,1,0,0,1,0,2,68.1,20.7,1,50,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,50,8.52254,.6931472,5.221679,1
-13,2,0,1,1,228429,0,8926.687,23.76181,1,12,1,245.6094,0,.798297,0,469.2762,715.6839,1,0,0,2,32,3,65.4,10.3,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.096912,1.098612,6.573238,1
-13,2,0,1,2,228429,0,8926.687,24.76181,1,12,1,16.96558,0,0,0,0,16.96558,0,0,0,0,3,4,65.4,10.3,0,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,67,9.096912,1.386294,2.831187,1
-13,2,0,1,3,228429,0,8926.687,25.76181,1,12,1,11.23091,0,0,0,0,11.23091,0,0,0,2,0,4,65.4,10.3,0,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,67,9.096912,1.386294,2.418669,1
-13,2,0,1,1,228430,0,8926.687,26.96783,0,12,1,71.84673,0,0,0,0,71.84673,0,0,0,1,0,3,73.4,3.4,0,73.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.096912,1.098612,4.274535,1
-13,2,0,1,2,228430,0,8926.687,27.96783,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,3.4,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.096912,1.386294,,0
-13,2,0,1,3,228430,0,8926.687,28.96783,0,12,1,17.07098,0,32.69542,0,0,49.7664,0,0,0,1,0,4,73.4,3.4,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.096912,1.386294,3.90734,1
-13,2,0,1,1,228431,0,8926.687,3.359343,1,12,1,16.23204,0,0,0,0,16.23204,0,0,0,1,2,3,81.35272,11.84267,0,88.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.096912,1.098612,2.786987,1
-13,2,0,1,2,228431,0,8926.687,4.359343,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.096912,1.386294,,0
-13,2,0,1,3,228431,0,8926.687,5.359343,1,12,1,32.79425,0,0,0,0,32.79425,0,0,0,2,0,4,81.35272,11.84267,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.096912,1.386294,3.490253,1
-11,2,0,1,1,228470,0,2823.097,44,1,19,1,47.89782,21.66578,37.51464,745.0771,0,107.0782,0,0,35,3,0,1,20.7,17.2,0,56.8,0,0,0,0,0,0,0,0,0,1,0,0,56.8,7.945944,0,4.67356,1
-11,2,0,1,2,228470,0,2823.097,45,1,19,1,0,17.37761,0,591.3718,0,17.37761,0,0,38,0,0,1,20.7,17.2,0,56.8,0,0,0,0,0,0,0,0,0,1,0,0,56.8,7.945944,0,2.855182,1
-11,2,0,1,3,228470,0,2823.097,46,1,19,1,139.2183,5.363882,33.53998,148.248,0,178.1222,0,0,15,5,0,1,20.7,17.2,0,56.8,0,0,0,0,0,0,0,0,0,1,0,0,56.8,7.945944,0,5.18247,1
-17,2,25,1,1,228514,0,4917.889,61.26762,1,12,1,206.7433,322.4517,26.13696,0,0,555.3319,0,0,0,19,0,1,78.7,34.5,1,39.8,468.21,468.21,0,0,0,6.148917,0,3.258096,7.535211,1,0,0,39.8,8.500838,0,6.319566,1
-17,2,25,1,2,228514,0,4917.889,62.26762,1,12,1,330.8506,377.631,0,0,3561.917,4270.399,2,0,0,32,0,1,78.7,34.5,1,39.8,468.21,468.21,0,0,0,6.148917,0,3.258096,7.535211,1,0,0,39.8,8.500838,0,8.359463,1
-17,2,25,1,3,228514,0,4917.889,63.26762,1,12,1,435.4185,328.8106,38.76652,11.01322,0,802.9956,0,0,1,27,1,1,78.7,34.5,1,39.8,468.21,468.21,0,0,0,6.148917,0,3.258096,7.535211,1,0,0,39.8,8.500838,0,6.688349,1
-17,2,25,0,1,228515,0,5075.66,22.72142,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,6.9,0,81.8,105,0,0,0,0,0,0,3.258096,6.040255,1,0,0,81.8,8.532409,0,,0
-17,2,25,0,2,228515,0,5075.66,23.72142,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,6.9,0,81.8,105,0,0,0,0,0,0,3.258096,6.040255,1,0,0,81.8,8.532409,0,,0
-17,2,25,0,3,228515,0,5075.66,24.72142,0,12,1,66.28622,15.53995,0,0,0,81.82616,0,0,0,6,0,1,88.3,6.9,0,81.8,105,0,0,0,0,0,0,3.258096,6.040255,1,0,0,81.8,8.532409,0,4.404597,1
-13,2,0,0,1,228535,0,5102.053,52.60233,1,13,1,264.3006,27.93032,63.13573,192.4077,336.7135,692.0801,1,0,11,11,1,1,40.4,10.3,0,23.9,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,23.9,8.537594,0,6.539701,1
-13,2,0,0,2,228535,0,5102.053,53.60233,1,13,1,135.571,22.87626,0,0,0,158.4472,0,0,0,2,0,1,40.4,10.3,0,23.9,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,23.9,8.537594,0,5.065422,1
-13,2,0,0,3,228535,0,5102.053,54.60233,1,13,1,185.1405,14.34153,64.63126,0,0,264.1133,0,0,0,9,0,1,40.4,10.3,0,23.9,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,23.9,8.537594,0,5.576378,1
-11,2,0,0,1,228573,0,8665.641,37.45654,1,10,1,60.14941,15.43534,0,0,0,75.58475,0,0,0,3,0,9,43.1,27.6,1,56,0,0,0,0,2.197225,0,0,0,0,1,0,0,56,9.067237,2.197225,4.325254,1
-11,2,0,0,2,228573,0,8665.641,38.45654,1,10,1,25.56818,15.28409,0,0,0,40.85227,0,0,0,2,0,11,43.1,27.6,1,56,0,0,0,0,2.397895,0,0,0,0,1,0,0,56,9.067237,2.397895,3.709962,1
-11,2,0,0,3,228573,0,8665.641,39.45654,1,10,1,57.3472,3.402688,0,0,0,60.74989,0,0,0,2,0,11,43.1,27.6,1,56,0,0,0,0,2.397895,0,0,0,0,1,0,0,56,9.067237,2.397895,4.106765,1
-11,2,0,0,1,228574,0,8665.641,10.08624,0,10,1,153.7867,0,0,0,0,153.7867,0,0,0,6,0,9,83.3,11.84267,0,59.3,0,0,1,0,2.197225,0,0,0,0,1,0,0,59.3,9.067237,2.197225,5.035567,1
-11,2,0,0,2,228574,0,8665.641,11.08624,0,10,1,12.31061,0,29.17614,0,0,41.48674,0,0,0,0,1,11,83.3,11.84267,0,59.3,0,0,1,0,2.397895,0,0,0,0,1,0,0,59.3,9.067237,2.397895,3.725374,1
-11,2,0,0,3,228574,0,8665.641,12.08624,0,10,1,14.73775,0,13.87083,0,0,28.60858,0,0,0,0,1,11,83.3,11.84267,0,59.3,0,0,1,0,2.397895,0,0,0,0,1,0,0,59.3,9.067237,2.397895,3.353707,1
-11,2,0,0,1,228575,0,8665.641,13.5551,0,10,1,23.05513,0,0,0,0,23.05513,0,0,0,1,0,9,88.3,11.84267,0,55.6,0,0,1,0,2.197225,0,0,0,0,0,0,0,55.6,9.067237,2.197225,3.137888,1
-11,2,0,0,2,228575,0,8665.641,14.5551,0,10,1,0,0,0,0,0,0,0,0,0,0,0,11,88.3,11.84267,0,55.6,0,0,1,0,2.397895,0,0,0,0,0,0,0,55.6,9.067237,2.397895,,0
-11,2,0,0,1,228576,0,8665.641,15.9206,1,10,1,69.80938,23.27666,.7727975,0,582.5605,676.4194,1,0,0,5,0,9,81.9,17.2,1,58,0,0,1,1,2.197225,0,0,0,0,1,0,0,58,9.067237,2.197225,6.516813,1
-11,2,0,0,2,228576,0,8665.641,16.9206,1,10,1,56.58144,28.19129,0,0,0,84.77273,0,0,0,6,0,11,81.9,17.2,1,58,0,0,1,1,2.397895,0,0,0,0,1,0,0,58,9.067237,2.397895,4.439974,1
-11,2,0,0,3,228576,0,8665.641,17.9206,1,10,1,178.3702,69.45817,1.257044,0,0,249.0854,0,0,0,5,0,11,81.9,17.2,1,58,0,0,1,1,2.397895,0,0,0,0,1,0,0,58,9.067237,2.397895,5.517796,1
-11,2,0,0,1,228577,0,8665.641,11.24435,0,10,1,0,0,0,0,0,0,0,0,0,0,0,9,70,11.84267,0,48.1,0,0,1,0,2.197225,0,0,0,0,1,0,0,48.1,9.067237,2.197225,,0
-11,2,0,0,2,228577,0,8665.641,12.24435,0,10,1,66.99811,9.360795,29.17614,0,0,105.535,0,0,0,2,1,11,70,11.84267,0,48.1,0,0,1,0,2.397895,0,0,0,0,1,0,0,48.1,9.067237,2.397895,4.659043,1
-11,2,0,0,3,228577,0,8665.641,13.24435,0,10,1,14.73775,0,0,0,0,14.73775,0,0,0,0,1,11,70,11.84267,0,48.1,0,0,1,0,2.397895,0,0,0,0,1,0,0,48.1,9.067237,2.397895,2.690413,1
-11,2,0,0,1,228580,0,8665.641,14.46407,0,10,1,11.33436,0,0,0,0,11.33436,0,0,0,0,1,9,78.7,10.3,0,55.7,0,0,1,0,2.197225,0,0,0,0,0,0,0,55.7,9.067237,2.197225,2.427839,1
-11,2,0,0,2,228580,0,8665.641,15.46407,0,10,1,14.08617,0,0,0,0,14.08617,0,0,0,2,0,11,78.7,10.3,0,55.7,0,0,1,0,2.397895,0,0,0,0,0,0,0,55.7,9.067237,2.397895,2.645194,1
-11,2,0,0,3,228580,0,8665.641,16.46407,0,10,1,28.17512,0,34.8938,0,0,63.06892,0,0,0,1,1,11,78.7,10.3,0,55.7,0,0,1,0,2.397895,0,0,0,0,0,0,0,55.7,9.067237,2.397895,4.144228,1
-11,2,0,0,1,228581,0,8665.641,18.88296,1,12.75671,1,19.57754,3.910356,0,0,813.3436,836.8315,1,0,0,3,0,9,61.2,6.9,0,51.1,0,0,0,0,2.197225,0,0,0,0,1,0,0,51.1,9.067237,2.197225,6.729623,1
-11,2,0,0,2,228581,0,8665.641,19.88296,1,12.75671,1,20.24148,0,0,0,388.3049,408.5464,1,0,0,1,0,11,61.2,6.9,0,51.1,0,0,0,0,2.397895,0,0,0,0,1,0,0,51.1,9.067237,2.397895,6.012606,1
-11,2,0,0,3,228581,0,8665.641,20.88296,1,12.75671,1,101.1053,0,0,0,0,101.1053,0,0,0,3,0,11,61.2,6.9,0,51.1,0,0,0,0,2.397895,0,0,0,0,1,0,0,51.1,9.067237,2.397895,4.616163,1
-11,2,0,0,1,228582,0,8665.641,3.477071,1,10,1,24.72952,0,0,0,0,24.72952,0,0,0,2,0,9,81.35272,11.84267,0,85.2,0,0,1,1,2.197225,0,0,0,0,0,0,0,85.2,9.067237,2.197225,3.207998,1
-11,2,0,0,2,228582,0,8665.641,4.47707,1,10,1,59.25663,0,0,0,0,59.25663,0,0,0,3,0,11,81.35272,11.84267,0,85.2,0,0,1,1,2.397895,0,0,0,0,0,0,0,85.2,9.067237,2.397895,4.081878,1
-11,2,0,0,3,228582,0,8665.641,5.47707,1,10,1,0,0,0,0,0,0,0,0,0,0,0,11,81.35272,11.84267,0,85.2,0,0,1,1,2.397895,0,0,0,0,0,0,0,85.2,9.067237,2.397895,,0
-11,2,0,0,1,228583,0,8665.641,8.317591,1,10,1,58.47501,3.755796,0,0,0,62.23081,0,0,0,3,0,9,85,11.84267,0,92.6,0,0,1,1,2.197225,0,0,0,0,1,0,0,92.6,9.067237,2.197225,4.13085,1
-11,2,0,0,2,228583,0,8665.641,9.317591,1,10,1,25.9233,10.07102,0,0,0,35.99432,0,0,0,3,0,11,85,11.84267,0,92.6,0,0,1,1,2.397895,0,0,0,0,1,0,0,92.6,9.067237,2.397895,3.583361,1
-11,2,0,0,3,228583,0,8665.641,10.31759,1,10,1,27.13481,3.207629,0,0,0,30.34244,0,0,0,2,0,11,85,11.84267,0,92.6,0,0,1,1,2.397895,0,0,0,0,1,0,0,92.6,9.067237,2.397895,3.412547,1
-15,2,95,0,1,228587,0,13960.7,58.53525,1,15,1,300,4.981968,82.57599,0,1173.395,1560.953,1,0,0,4,13,2,78.2,37.9,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.544073,.6931472,7.353052,1
-15,2,95,0,2,228587,0,13960.7,59.53525,1,15,1,184.4223,0,0,0,1129.01,1313.433,1,0,0,3,9,2,78.2,37.9,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.544073,.6931472,7.180399,1
-15,2,95,0,3,228587,0,13960.7,60.53525,1,15,1,197.4426,9.163416,0,0,0,206.606,0,0,0,4,18,2,78.2,37.9,0,77.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.544073,.6931472,5.330813,1
-15,2,95,0,1,228588,0,13960.7,60.17796,0,16,1,22.15353,10.97373,0,0,0,33.12725,0,0,0,1,0,2,95.7,13.8,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.544073,.6931472,3.500356,1
-15,2,95,0,2,228588,0,13960.7,61.17796,0,16,1,0,5.288826,0,0,0,5.288826,0,0,0,0,0,2,95.7,13.8,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.544073,.6931472,1.665596,1
-15,2,95,0,3,228588,0,13960.7,62.17796,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,95.7,13.8,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.544073,.6931472,,0
-13,2,0,0,1,228617,0,12144.87,3.649555,0,12,1,381.762,89.97939,0,0,345.1056,816.847,1,0,0,38,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.404744,1.386294,6.705452,1
-13,2,0,0,2,228617,0,12144.87,4.649555,0,12,1,291.6667,8.688447,0,0,0,300.3551,0,0,0,37,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.404744,1.386294,5.704966,1
-13,2,0,0,3,228617,0,12144.87,5.649555,0,12,1,163.8492,18.15345,0,0,0,182.0026,0,0,0,16,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.404744,1.386294,5.204021,1
-13,2,0,0,1,228618,0,12144.87,9.163587,1,12,1,11.33436,0,0,0,0,11.33436,0,0,0,1,0,4,80,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,2.427839,1
-13,2,0,0,2,228618,0,12144.87,10.16359,1,12,1,13.25758,0,0,0,0,13.25758,0,0,0,0,1,4,80,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,2.584569,1
-13,2,0,0,3,228618,0,12144.87,11.16359,1,12,1,40.31209,0,0,0,0,40.31209,0,0,0,1,0,4,80,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,3.696651,1
-13,2,0,0,1,228619,0,12144.87,11.29363,1,12,1,30.2679,7.614632,0,0,0,37.88253,0,0,0,2,0,4,76.7,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,3.63449,1
-13,2,0,0,2,228619,0,12144.87,12.29363,1,12,1,13.25758,0,0,0,0,13.25758,0,0,0,0,1,4,76.7,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,2.584569,1
-13,2,0,0,3,228619,0,12144.87,13.29363,1,12,1,27.74166,1.642826,35.82575,0,0,65.21023,0,0,0,1,1,4,76.7,11.84267,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.404744,1.386294,4.177616,1
-13,2,0,0,1,228620,0,12144.87,34.06434,1,12,1,64.91499,0,43.06543,0,0,107.9804,0,0,0,0,4,4,66.5,3.4,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.404744,1.386294,4.68195,1
-13,2,0,0,2,228620,0,12144.87,35.06434,1,12,1,19.41288,13.93466,0,0,0,33.34754,0,0,0,1,0,4,66.5,3.4,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.404744,1.386294,3.506984,1
-13,2,0,0,3,228620,0,12144.87,36.06434,1,12,1,124.0182,2.050282,37.03944,0,0,163.1079,0,0,0,1,14,4,66.5,3.4,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.404744,1.386294,5.094412,1
-18,2,25,1,1,228644,0,8665.641,10.64476,0,10,1,36.92148,1.346854,5.033802,0,0,43.30213,0,0,0,3,0,5,81.7,11.84267,0,88.9,1000,0,1,0,1.609438,0,0,3.258096,8.294049,0,0,0,88.9,9.067237,1.609438,3.768202,1
-18,2,25,1,1,228645,0,8665.641,13.86448,1,10,1,72.28289,0,1.040042,0,0,73.32293,0,0,0,3,0,5,76.7,11.84267,0,51.9,1000,0,1,1,1.609438,0,0,3.258096,8.294049,0,0,0,51.9,9.067237,1.609438,4.294873,1
-18,2,25,1,1,228646,0,8665.641,36.75838,0,10,1,30.68123,0,34.10817,0,0,64.78939,0,0,0,0,5,5,60.6,10.3,1,63.6,1000,0,0,0,1.609438,0,0,3.258096,8.294049,0,0,0,63.6,9.067237,1.609438,4.171142,1
-18,2,25,1,1,228647,0,8665.641,31.4141,1,10,1,68.90276,16.06344,43.46854,0,0,128.4347,0,0,0,4,2,5,64.9,31,1,67,1000,0,0,0,1.609438,0,0,3.258096,8.294049,0,1,0,67,9.067237,1.609438,4.855421,1
-18,2,25,1,1,228648,0,8665.641,12.39973,0,10,1,71.24285,3.374935,.7280291,0,0,75.34582,0,0,0,4,0,5,83.3,11.84267,0,88.9,1000,0,1,0,1.609438,0,0,3.258096,8.294049,0,0,0,88.9,9.067237,1.609438,4.322088,1
-11,2,0,1,1,228689,0,13626.98,15.3128,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,74.8,0,0,68.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,68.2,9.51988,1.098612,,0
-11,2,0,1,2,228689,0,13626.98,16.3128,1,16,1,29.9135,0,0,0,0,29.9135,0,0,0,2,0,3,74.8,0,0,68.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,68.2,9.51988,1.098612,3.39831,1
-11,2,0,1,3,228689,0,13626.98,17.3128,1,16,1,40.17621,5.709251,0,198.2379,0,45.88546,0,0,9,4,0,3,74.8,0,0,68.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,68.2,9.51988,1.098612,3.826148,1
-11,2,0,1,4,228689,0,13626.98,18.3128,1,16,1,23.3871,0,0,0,0,23.3871,0,0,0,2,0,3,74.8,0,0,68.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,68.2,9.51988,1.098612,3.152184,1
-11,2,0,1,5,228689,0,13626.98,19.3128,1,16,1,138.7067,1.038251,0,0,0,139.745,0,0,0,3,0,2,74.8,0,0,68.2,0,0,0,0,.6931472,0,0,0,0,0,0,0,68.2,9.51988,.6931472,4.939819,1
-11,2,0,1,1,228690,0,13626.98,52.14237,1,16,1,158.965,94.81966,66.52901,0,781.4951,1101.809,1,0,0,8,4,3,70.2,17.2,1,63.6,0,0,0,0,1.098612,0,0,0,0,0,1,0,63.6,9.51988,1.098612,7.004708,1
-11,2,0,1,2,228690,0,13626.98,53.14237,1,16,1,287.482,78.54397,0,480.5382,0,366.0259,0,0,21,8,7,3,70.2,17.2,1,63.6,0,0,0,0,1.098612,0,0,0,0,0,1,0,63.6,9.51988,1.098612,5.902704,1
-11,2,0,1,3,228690,0,13626.98,54.14237,1,16,1,1802.418,547.7181,0,352.4229,2429.485,4779.621,3,0,16,21,4,3,70.2,17.2,1,63.6,0,0,0,0,1.098612,0,0,0,0,0,1,0,63.6,9.51988,1.098612,8.472116,1
-11,2,0,1,4,228690,0,13626.98,55.14237,1,16,.2076503,136.254,87.5,0,0,2696.573,2920.327,6,0,0,2,0,3,70.2,17.2,1,63.6,0,0,0,0,1.098612,0,0,0,0,0,1,0,63.6,9.51988,1.098612,7.979451,1
-11,2,0,1,1,228691,0,13626.98,52.47912,0,12,1,146.1056,29.19498,113.1051,0,575.5724,863.978,1,0,0,11,0,3,67,20.7,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,9.51988,1.098612,6.761548,1
-11,2,0,1,2,228691,0,13626.98,53.47912,0,12,1,0,12.90245,0,0,0,12.90245,0,0,0,0,0,3,67,20.7,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,9.51988,1.098612,2.557417,1
-11,2,0,1,3,228691,0,13626.98,54.47912,0,12,1,39.20705,12.52863,43.07489,0,0,94.81057,0,0,0,2,0,3,67,20.7,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,9.51988,1.098612,4.551881,1
-11,2,0,1,4,228691,0,13626.98,55.47912,0,12,1,147.1774,25.40322,0,0,1058.093,1230.673,1,0,0,7,0,3,67,20.7,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,9.51988,1.098612,7.115317,1
-11,2,0,1,5,228691,0,13626.98,56.47912,0,12,1,37.52277,4.31694,43.45355,0,0,85.29326,0,0,0,3,0,2,67,20.7,0,76.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,76.1,9.51988,.6931472,4.446095,1
-19,2,25,0,1,228722,0,8665.641,26.85284,0,12,1,0,0,0,0,386.3988,386.3988,1,0,0,0,0,1,75,3.4,0,83,450,450,0,0,0,6.109248,0,3.258096,7.495542,0,0,0,83,9.067237,0,5.95687,1
-19,2,25,0,2,228722,0,8665.641,27.85284,0,12,1,51.49148,0,0,0,1789.702,1841.193,1,0,0,1,0,1,75,3.4,0,83,450,450,0,0,0,6.109248,0,3.258096,7.495542,0,0,0,83,9.067237,0,7.518169,1
-19,2,25,0,3,228722,0,8665.641,28.85284,0,12,1,17.772,0,0,0,0,17.772,0,0,0,1,0,1,75,3.4,0,83,450,450,0,0,0,6.109248,0,3.258096,7.495542,0,0,0,83,9.067237,0,2.877624,1
-19,2,25,0,4,228722,0,8665.641,29.85284,0,12,1,63.80465,0,0,0,0,63.80465,0,0,0,2,0,1,75,3.4,0,83,450,450,0,0,0,6.109248,0,3.258096,7.495542,0,0,0,83,9.067237,0,4.155826,1
-19,2,25,0,5,228722,0,8665.641,30.85284,0,12,1,95.70662,1.449016,0,0,0,97.15563,0,0,0,4,0,1,75,3.4,0,83,450,450,0,0,0,6.109248,0,3.258096,7.495542,0,0,0,83,9.067237,0,4.576314,1
-11,2,0,0,1,228733,0,6234.604,22.33813,1,14,1,72.26045,30.82583,0,0,0,103.0863,0,0,0,5,0,1,71.3,17.2,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.73803,0,4.635566,1
-11,2,0,0,2,228733,0,6234.604,23.33813,1,14,1,41.98842,0,0,0,0,41.98842,0,0,0,3,0,1,71.3,17.2,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.73803,0,3.737394,1
-11,2,0,0,3,228733,0,6234.604,24.33813,1,14,1,121.117,1.513129,0,0,237.3476,359.9778,1,0,0,2,0,1,71.3,17.2,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.73803,0,5.886042,1
-13,2,0,0,1,228749,0,9087.977,27.07734,1,13,1,34.65939,2.99012,0,0,0,37.64951,0,0,0,1,3,4,61.7,13.8,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.114818,1.386294,3.62832,1
-13,2,0,0,2,228749,0,9087.977,28.07734,1,13,1,4.777831,0,0,0,0,4.777831,0,0,0,0,1,4,61.7,13.8,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.114818,1.386294,1.563987,1
-13,2,0,0,3,228749,0,9087.977,29.07734,1,13,1,55.31168,0,0,118.525,0,55.31168,0,0,6,1,3,4,61.7,13.8,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.114818,1.386294,4.012984,1
-13,2,0,0,1,228750,0,9087.977,33.92745,0,16,1,41.08164,0,0,0,0,41.08164,0,0,0,1,0,4,79.8,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.114818,1.386294,3.715561,1
-13,2,0,0,2,228750,0,9087.977,34.92745,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.114818,1.386294,,0
-13,2,0,0,3,228750,0,9087.977,35.92745,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.114818,1.386294,,0
-13,2,0,0,1,228751,0,9087.977,5.002053,1,13,1,61.62246,0,0,0,0,61.62246,0,0,0,5,0,4,81.35272,11.84267,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.114818,1.386294,4.121027,1
-13,2,0,0,2,228751,0,9087.977,6.002053,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.114818,1.386294,,0
-13,2,0,0,3,228751,0,9087.977,7.002053,1,13,1,23.04653,0,0,0,0,23.04653,0,0,0,2,0,4,81.35272,11.84267,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.114818,1.386294,3.137515,1
-13,2,0,0,1,228752,0,9087.977,1.379877,0,13,1,8.320333,0,0,0,0,8.320333,0,0,0,1,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.114818,1.386294,2.118702,1
-13,2,0,0,2,228752,0,9087.977,2.379877,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.114818,1.386294,,0
-13,2,0,0,3,228752,0,9087.977,3.379877,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.114818,1.386294,,0
-16,2,95,0,1,228803,0,1849.853,19.62765,1,12,1,203.3745,53.86914,0,12.87996,0,257.2437,0,0,1,8,0,2,58,6.9,0,59.1,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,0,59.1,7.523402,.6931472,5.550024,1
-16,2,95,0,2,228803,0,1849.853,20.62765,1,12,1,123.3902,36.41098,0,158.6174,0,159.8011,0,0,14,5,0,2,58,6.9,0,59.1,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,0,59.1,7.523402,.6931472,5.07393,1
-16,2,95,0,3,228803,0,1849.853,21.62765,1,12,1,98.39619,33.14261,0,15.17122,0,131.5388,0,0,1,8,0,2,58,6.9,0,59.1,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,0,59.1,7.523402,.6931472,4.879302,1
-16,2,95,0,1,228804,0,1849.853,54.39014,1,12,1,109.4797,133.1273,41.41679,0,245.1571,529.1808,1,0,0,11,0,2,51.6,31,1,54.8,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,1,54.8,7.523402,.6931472,6.27133,1
-16,2,95,0,2,228804,0,1849.853,55.39014,1,12,1,197.3958,129.8438,0,153.8826,0,327.2396,0,0,13,10,0,2,51.6,31,1,54.8,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,1,54.8,7.523402,.6931472,5.790693,1
-16,2,95,0,3,228804,0,1849.853,56.39014,1,12,1,111.2917,175.5483,28.1101,182.0546,0,314.9502,0,0,12,7,0,2,51.6,31,1,54.8,750.15,750.15,0,0,.6931472,6.620273,0,4.564348,6.671566,0,0,1,54.8,7.523402,.6931472,5.752414,1
-11,2,0,0,1,228805,0,8621.701,39.24162,1,13,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,20.7,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,9.062154,1.791759,,0
-11,2,0,0,2,228805,0,8621.701,40.24162,1,13,1,83.38068,0,0,0,0,83.38068,0,0,0,4,0,6,86.7,20.7,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,9.062154,1.791759,4.423417,1
-11,2,0,0,3,228805,0,8621.701,41.24162,1,13,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,20.7,0,58,0,0,0,0,1.791759,0,0,0,0,1,0,0,58,9.062154,1.791759,,0
-11,2,0,0,1,228806,0,8621.701,7.991786,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,11.84267,0,63,0,0,1,0,1.791759,0,0,0,0,0,0,0,63,9.062154,1.791759,,0
-11,2,0,0,2,228806,0,8621.701,8.991786,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,11.84267,0,63,0,0,1,0,1.791759,0,0,0,0,0,0,0,63,9.062154,1.791759,,0
-11,2,0,0,3,228806,0,8621.701,9.991786,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,11.84267,0,63,0,0,1,0,1.791759,0,0,0,0,0,0,0,63,9.062154,1.791759,,0
-11,2,0,0,1,228807,0,8621.701,10.30801,0,13,1,30.43277,0,0,0,0,30.43277,0,0,0,1,0,6,90,11.84267,0,96.3,0,0,1,0,1.791759,0,0,0,0,0,0,0,96.3,9.062154,1.791759,3.41552,1
-11,2,0,0,2,228807,0,8621.701,11.30801,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,90,11.84267,0,96.3,0,0,1,0,1.791759,0,0,0,0,0,0,0,96.3,9.062154,1.791759,,0
-11,2,0,0,3,228807,0,8621.701,12.30801,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,90,11.84267,0,96.3,0,0,1,0,1.791759,0,0,0,0,0,0,0,96.3,9.062154,1.791759,,0
-11,2,0,0,1,228808,0,8621.701,13.1499,0,13,1,18.03194,0,0,0,0,18.03194,0,0,0,1,0,6,85,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,9.062154,1.791759,2.892145,1
-11,2,0,0,2,228808,0,8621.701,14.1499,0,13,1,17.51894,0,0,0,0,17.51894,0,0,0,1,0,6,85,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,9.062154,1.791759,2.863283,1
-11,2,0,0,3,228808,0,8621.701,15.1499,0,13,1,86.64933,0,0,0,0,86.64933,0,0,0,3,0,6,85,11.84267,0,100,0,0,1,0,1.791759,0,0,0,0,0,0,0,100,9.062154,1.791759,4.461869,1
-11,2,0,0,1,228809,0,8621.701,43.96714,0,10,1,51.8238,6.651211,0,0,0,58.47501,0,0,0,2,0,6,90.7,24.1,0,64.8,0,0,0,0,1.791759,0,0,0,0,1,0,0,64.8,9.062154,1.791759,4.0686,1
-11,2,0,0,2,228809,0,8621.701,44.96714,0,10,1,177.1828,0,0,0,0,177.1828,0,0,0,3,0,6,90.7,24.1,0,64.8,0,0,0,0,1.791759,0,0,0,0,1,0,0,64.8,9.062154,1.791759,5.177182,1
-11,2,0,0,3,228809,0,8621.701,45.96714,0,10,1,52.40572,0,0,0,0,52.40572,0,0,0,3,0,6,90.7,24.1,0,64.8,0,0,0,0,1.791759,0,0,0,0,1,0,0,64.8,9.062154,1.791759,3.959016,1
-11,2,0,0,1,228810,0,8621.701,11.45243,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,85,11.84267,0,59.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,59.3,9.062154,1.791759,,0
-11,2,0,0,2,228810,0,8621.701,12.45243,0,13,1,81.12216,0,0,0,0,81.12216,0,0,0,3,0,6,85,11.84267,0,59.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,59.3,9.062154,1.791759,4.395956,1
-11,2,0,0,3,228810,0,8621.701,13.45243,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,85,11.84267,0,59.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,59.3,9.062154,1.791759,,0
-18,2,25,0,1,228812,0,8026.95,43.9425,1,12,1,49.66022,7.579718,0,0,0,57.23994,0,0,0,3,0,2,89.4,13.8,0,72.7,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,72.7,8.990685,.6931472,4.047252,1
-18,2,25,0,2,228812,0,8026.95,44.9425,1,12,1,16.81884,0,40.16819,0,1087.66,1144.647,1,0,0,1,1,2,89.4,13.8,0,72.7,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,72.7,8.990685,.6931472,7.042851,1
-18,2,25,0,3,228812,0,8026.95,45.9425,1,12,1,53.96476,23.70044,33.9207,0,0,111.5859,0,0,0,2,1,2,89.4,13.8,0,72.7,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,72.7,8.990685,.6931472,4.714795,1
-18,2,25,0,1,228813,0,8026.95,46.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,3.4,0,67,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,67,8.990685,.6931472,,0
-18,2,25,0,2,228813,0,8026.95,47.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,3.4,0,67,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,67,8.990685,.6931472,,0
-18,2,25,0,3,228813,0,8026.95,48.64476,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,3.4,0,67,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,1,0,0,67,8.990685,.6931472,,0
-11,2,0,1,1,228866,0,7696.129,29.13347,1,15,1,43.2828,16.62311,36.90016,0,0,96.80606,0,0,0,3,0,3,63.8,0,0,98.9,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,98.9,8.948603,1.098612,4.57271,1
-11,2,0,1,2,228866,0,7696.129,30.13347,1,15,1,102.8352,0,4.324844,215.7617,0,107.16,0,0,37,2,9,3,63.8,0,0,98.9,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,98.9,8.948603,1.098612,4.674323,1
-11,2,0,1,3,228866,0,7696.129,31.13347,1,15,1,16.29956,19.82379,0,39.31718,0,36.12335,0,0,7,1,0,3,63.8,0,0,98.9,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,98.9,8.948603,1.098612,3.586939,1
-11,2,0,1,1,228867,0,7696.129,29.05133,0,16,1,57.86723,0,1.045478,0,0,58.9127,0,0,0,3,0,3,73.4,0,0,81.8,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,81.8,8.948603,1.098612,4.076057,1
-11,2,0,1,2,228867,0,7696.129,30.05133,0,16,1,279.0966,3.195579,.4805382,377.2225,0,282.7727,0,0,38,7,16,3,73.4,0,0,81.8,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,81.8,8.948603,1.098612,5.644643,1
-11,2,0,1,3,228867,0,7696.129,31.05133,0,16,1,243.2159,1.54185,21.14537,460.9031,0,265.9031,0,0,37,5,19,3,73.4,0,0,81.8,0,423,0,0,1.098612,6.047372,0,0,0,0,0,0,81.8,8.948603,1.098612,5.583132,1
-11,2,0,1,1,228868,0,7696.129,3.909651,0,15,1,32.93257,0,0,0,0,32.93257,0,0,0,3,0,3,81.35272,11.84267,0,92.6,0,423,1,0,1.098612,6.047372,0,0,0,0,0,0,92.6,8.948603,1.098612,3.494462,1
-11,2,0,1,2,228868,0,7696.129,4.909651,0,15,1,56.43921,14.80058,0,0,0,71.23979,0,0,0,6,0,3,81.35272,11.84267,0,92.6,0,423,1,0,1.098612,6.047372,0,0,0,0,0,0,92.6,8.948603,1.098612,4.266052,1
-11,2,0,1,3,228868,0,7696.129,5.909651,0,15,1,27.31277,2.444934,0,0,0,29.75771,0,0,0,3,0,3,81.35272,11.84267,0,92.6,0,423,1,0,1.098612,6.047372,0,0,0,0,0,0,92.6,8.948603,1.098612,3.393088,1
-15,2,95,0,1,228882,0,12744.28,26.03148,1,13,1,42.3493,14.89438,0,0,0,57.24369,0,0,0,3,0,4,72.9,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.452916,1.386294,4.047318,1
-15,2,95,0,2,228882,0,12744.28,27.03148,1,13,1,25.33144,8.380682,0,0,0,33.71212,0,0,0,2,0,4,72.9,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.452916,1.386294,3.517857,1
-15,2,95,0,3,228882,0,12744.28,28.03148,1,13,1,47.68097,2.254009,28.46987,0,372.0069,450.4118,1,0,0,3,0,4,72.9,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.452916,1.386294,6.110162,1
-15,2,95,0,1,228883,0,12744.28,1.71937,1,13,1,20.60793,0,0,0,0,20.60793,0,0,0,2,0,4,81.35272,11.84267,0,55.6,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,55.6,9.452916,1.386294,3.025676,1
-15,2,95,0,2,228883,0,12744.28,2.71937,1,13,1,25,5.776515,0,0,0,30.77652,0,0,0,3,0,4,81.35272,11.84267,0,55.6,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,55.6,9.452916,1.386294,3.426752,1
-15,2,95,0,3,228883,0,12744.28,3.71937,1,13,1,51.90724,2.384048,0,0,0,54.29129,0,0,0,4,0,4,81.35272,11.84267,0,55.6,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,55.6,9.452916,1.386294,3.994364,1
-15,2,95,0,1,228884,0,12744.28,28.70363,0,12,1,52.55023,0,0,0,0,52.55023,0,0,0,1,0,4,83.5,6.9,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.452916,1.386294,3.96177,1
-15,2,95,0,2,228884,0,12744.28,29.70363,0,12,1,37.4053,3.480114,0,0,0,40.88542,0,0,0,3,0,4,83.5,6.9,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.452916,1.386294,3.710773,1
-15,2,95,0,3,228884,0,12744.28,30.70363,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,6.9,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.452916,1.386294,,0
-15,2,95,0,1,228885,0,12744.28,3.720739,1,13,1,8.243174,0,0,0,0,8.243174,0,0,0,1,0,4,81.35272,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.452916,1.386294,2.109385,1
-15,2,95,0,2,228885,0,12744.28,4.720739,1,13,1,16.80871,7.305871,0,0,0,24.11458,0,0,0,1,0,4,81.35272,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.452916,1.386294,3.182817,1
-15,2,95,0,3,228885,0,12744.28,5.720739,1,13,1,18.96402,3.289987,0,0,0,22.25401,0,0,0,3,0,4,81.35272,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.452916,1.386294,3.102522,1
-5,2,25,0,1,228889,0,4344.868,48.30664,1,9,1,10.30397,0,0,0,0,10.30397,0,0,0,2,0,1,60.1,20.7,1,51.1,611.25,611.25,0,0,0,6.415506,0,3.258096,7.8018,0,1,0,51.1,8.376981,0,2.332529,1
-5,2,25,0,1,228890,0,3621.701,25.73853,1,12,1,89.90211,0,0,0,0,89.90211,0,0,0,1,0,1,73.4,3.4,0,83,299.05,299.05,0,0,0,5.700611,0,3.258096,7.086905,0,0,0,83,8.194975,0,4.498722,1
-5,2,25,0,2,228890,0,3621.701,26.73853,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,3.4,0,83,299.05,299.05,0,0,0,5.700611,0,3.258096,7.086905,0,0,0,83,8.194975,0,,0
-5,2,25,0,3,228890,0,3621.701,27.73853,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,3.4,0,83,299.05,299.05,0,0,0,5.700611,0,3.258096,7.086905,0,0,0,83,8.194975,0,,0
-13,2,0,0,1,228893,0,11755.42,21.72758,0,14,1,44.20177,3.884555,34.52418,0,0,82.6105,0,0,0,4,1,3,66,0,0,51.1,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,51.1,9.372155,1.098612,4.414137,1
-13,2,0,0,2,228893,0,11755.42,22.72758,0,14,1,7.166746,0,0,0,0,7.166746,0,0,0,1,0,3,66,0,0,51.1,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,51.1,9.372155,1.098612,1.969452,1
-13,2,0,0,3,228893,0,11755.42,23.72758,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,66,0,0,51.1,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,51.1,9.372155,1.098612,,0
-13,2,0,0,4,228893,0,11755.42,24.72758,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,66,0,0,51.1,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,51.1,9.372155,1.098612,,0
-13,2,0,0,1,228894,0,11755.42,48.66804,1,13,1,147.4259,8.689548,54.79459,0,1388.04,1598.95,1,0,0,10,1,3,88.3,20.7,0,77.3,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,1,0,0,77.3,9.372155,1.098612,7.377102,1
-13,2,0,0,2,228894,0,11755.42,49.66804,1,13,1,38.70043,6.741519,0,0,0,45.44195,0,0,0,5,0,3,88.3,20.7,0,77.3,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,1,0,0,77.3,9.372155,1.098612,3.816436,1
-13,2,0,0,3,228894,0,11755.42,50.66804,1,13,1,94.60052,0,45.82967,0,0,140.4302,0,0,0,2,1,3,88.3,20.7,0,77.3,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,1,0,0,77.3,9.372155,1.098612,4.944711,1
-13,2,0,0,4,228894,0,11755.42,51.66804,1,13,1,20.34304,5.480654,0,0,0,25.82369,0,0,0,3,0,3,88.3,20.7,0,77.3,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,1,0,0,77.3,9.372155,1.098612,3.251292,1
-13,2,0,0,5,228894,0,11755.42,52.66804,1,13,1,40.60914,10.22118,33.64032,0,0,84.47063,0,0,0,4,1,2,88.3,20.7,0,77.3,450,507,0,0,.6931472,6.228511,1,4.564348,6.160541,1,0,0,77.3,9.372155,.6931472,4.436404,1
-13,2,0,0,1,228895,0,11755.42,50.02875,0,11,1,100.624,35.43422,0,0,0,136.0582,0,0,0,9,0,3,79.3,6.9,0,70.5,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,70.5,9.372155,1.098612,4.913083,1
-13,2,0,0,2,228895,0,11755.42,51.02875,0,11,1,8.600096,12.47014,0,0,0,21.07023,0,0,0,1,0,3,79.3,6.9,0,70.5,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,70.5,9.372155,1.098612,3.047861,1
-13,2,0,0,3,228895,0,11755.42,52.02875,0,11,1,87.55927,0,43.07726,0,0,130.6365,0,0,0,2,1,3,79.3,6.9,0,70.5,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,70.5,9.372155,1.098612,4.872419,1
-13,2,0,0,4,228895,0,11755.42,53.02875,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,79.3,6.9,0,70.5,450,507,0,0,1.098612,6.228511,1,4.564348,6.160541,0,1,0,70.5,9.372155,1.098612,,0
-13,2,0,0,5,228895,0,11755.42,54.02875,0,11,1,231.5446,10.60551,43.82886,0,7978.72,8264.699,2,0,0,6,1,2,79.3,6.9,0,70.5,450,507,0,0,.6931472,6.228511,1,4.564348,6.160541,0,1,0,70.5,9.372155,.6931472,9.019749,1
-13,2,0,0,1,228898,0,2521.994,20.96099,1,12,1,299.8454,3.101494,0,0,0,302.9469,0,0,0,9,0,1,68.6,17.2,0,85.2,150,44.22,0,0,0,3.789177,1,4.564348,5.061929,0,0,0,85.2,7.833201,0,5.713558,1
-13,2,0,0,2,228898,0,2521.994,21.96099,1,12,1,11.36364,0,0,0,0,11.36364,0,0,0,1,0,1,68.6,17.2,0,85.2,150,44.22,0,0,0,3.789177,1,4.564348,5.061929,0,0,0,85.2,7.833201,0,2.430418,1
-13,2,0,0,3,228898,0,2521.994,22.96099,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,17.2,0,85.2,150,44.22,0,0,0,3.789177,1,4.564348,5.061929,0,0,0,85.2,7.833201,0,,0
-11,2,0,0,1,228932,0,8505.572,28.55852,1,13,1,112.3245,5.590224,0,0,284.6334,402.5481,1,0,0,5,0,2,88.3,10.3,0,88.6,0,211.8,0,0,.6931472,5.355642,0,0,0,0,0,0,88.6,9.048594,.6931472,5.997815,1
-11,2,0,0,2,228932,0,8505.572,29.55852,1,13,1,14.81128,17.23841,0,0,1206.756,1238.806,1,0,0,0,0,2,88.3,10.3,0,88.6,0,211.8,0,0,.6931472,5.355642,0,0,0,0,0,0,88.6,9.048594,.6931472,7.121903,1
-11,2,0,0,3,228932,0,8505.572,30.55852,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.3,0,88.6,0,211.8,0,0,1.098612,5.355642,0,0,0,0,0,0,88.6,9.048594,1.098612,,0
-11,2,0,0,4,228932,0,8505.572,31.55852,1,13,1,79.41763,9.79657,0,0,1381.611,1470.826,1,0,0,1,0,3,88.3,10.3,0,88.6,0,211.8,0,0,1.098612,5.355642,0,0,0,0,0,0,88.6,9.048594,1.098612,7.293579,1
-11,2,0,0,5,228932,0,8505.572,32.55852,1,13,1,9.06454,2.353154,0,106.9616,0,11.41769,0,0,9,1,0,4,88.3,10.3,0,88.6,0,211.8,0,0,1.386294,5.355642,0,0,0,0,0,0,88.6,9.048594,1.386294,2.435164,1
-11,2,0,1,1,228945,0,6363.636,23.26078,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,0,0,93.2,0,516,0,0,1.609438,6.246107,0,0,0,0,0,0,93.2,8.758512,1.609438,,0
-11,2,0,1,2,228945,0,6363.636,24.26078,0,12,1,7.208073,0,0,0,0,7.208073,0,0,0,1,0,5,90.4,0,0,93.2,0,516,0,0,1.609438,6.246107,0,0,0,0,0,0,93.2,8.758512,1.609438,1.975202,1
-11,2,0,1,3,228945,0,6363.636,25.26078,0,12,1,117.0925,12.66079,5.726872,0,0,135.4802,0,0,0,8,0,5,90.4,0,0,93.2,0,516,0,0,1.609438,6.246107,0,0,0,0,0,0,93.2,8.758512,1.609438,4.908825,1
-11,2,0,1,1,228946,0,6363.636,1.848049,1,12,1,47.83063,5.541035,0,0,0,53.37167,0,0,0,5,0,5,81.35272,11.84267,0,81.5,0,516,1,1,1.609438,6.246107,0,0,0,0,1,0,81.5,8.758512,1.609438,3.97728,1
-11,2,0,1,2,228946,0,6363.636,2.848049,1,12,1,14.05574,4.204709,0,0,224.2431,242.5036,1,0,0,2,0,5,81.35272,11.84267,0,81.5,0,516,1,1,1.609438,6.246107,0,0,0,0,1,0,81.5,8.758512,1.609438,5.491016,1
-11,2,0,1,3,228946,0,6363.636,3.848049,1,12,1,26.87225,8.973568,0,0,0,35.84581,0,0,0,4,0,5,81.35272,11.84267,0,81.5,0,516,1,1,1.609438,6.246107,0,0,0,0,1,0,81.5,8.758512,1.609438,3.579227,1
-11,2,0,1,1,228947,0,6363.636,6.324435,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,68.3,11.84267,0,85.2,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,85.2,8.758512,1.609438,,0
-11,2,0,1,2,228947,0,6363.636,7.324435,0,12,1,98.7506,1.753964,0,0,0,100.5046,0,0,0,5,0,5,68.3,11.84267,0,85.2,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,85.2,8.758512,1.609438,4.610203,1
-11,2,0,1,3,228947,0,6363.636,8.324435,0,12,1,42.95154,4.863436,0,0,0,47.81498,0,0,0,3,0,5,68.3,11.84267,0,85.2,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,85.2,8.758512,1.609438,3.867339,1
-11,2,0,1,1,228948,0,6363.636,22.96235,1,12,1,183.9519,7.239937,0,0,0,191.1918,0,0,0,2,16,5,64.9,10.3,0,68.2,0,516,0,0,1.609438,6.246107,0,0,0,1,0,0,68.2,8.758512,1.609438,5.253277,1
-11,2,0,1,2,228948,0,6363.636,23.96235,1,12,1,148.6881,16.70831,0,12.97453,271.5041,436.9005,1,0,1,7,3,5,64.9,10.3,0,68.2,0,516,0,0,1.609438,6.246107,0,0,0,1,0,0,68.2,8.758512,1.609438,6.079706,1
-11,2,0,1,3,228948,0,6363.636,24.96235,1,12,1,200.8811,10.23789,0,0,0,211.1189,0,0,0,7,0,5,64.9,10.3,0,68.2,0,516,0,0,1.609438,6.246107,0,0,0,1,0,0,68.2,8.758512,1.609438,5.352422,1
-11,2,0,0,1,228965,0,14764.22,20.3614,0,13,1,15.71355,11.695,0,0,0,27.40855,0,0,0,2,0,3,62.2,10.3,0,63.6,0,184.8,0,0,1.098612,5.219274,0,0,0,1,0,0,63.6,9.60003,1.098612,3.310855,1
-11,2,0,0,2,228965,0,14764.22,21.3614,0,13,1,16.57197,0,43.50852,0,0,60.08049,0,0,0,1,0,3,62.2,10.3,0,63.6,0,184.8,0,0,1.098612,5.219274,0,0,0,1,0,0,63.6,9.60003,1.098612,4.095685,1
-11,2,0,0,3,228965,0,14764.22,22.3614,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,62.2,10.3,0,63.6,0,184.8,0,0,1.098612,5.219274,0,0,0,1,0,0,63.6,9.60003,1.098612,,0
-11,2,0,0,1,228966,0,14764.22,53.91924,1,15,1,203.5033,7.856775,44.4204,0,223.493,479.2736,1,0,0,11,0,3,89.4,17.2,1,52.3,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,52.3,9.60003,1.098612,6.172272,1
-11,2,0,0,2,228966,0,14764.22,54.91924,1,15,1,359.7301,22.33902,137.8314,0,16946.08,17465.98,6,0,0,2,17,3,89.4,17.2,1,52.3,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,52.3,9.60003,1.098612,9.76801,1
-11,2,0,0,3,228966,0,14764.22,55.91924,1,15,1,1778.067,312.4187,165.5873,0,0,2256.073,0,0,0,1,109,3,89.4,17.2,1,52.3,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,52.3,9.60003,1.098612,7.721381,1
-11,2,0,0,1,228967,0,14764.22,52.77208,0,12,1,144.5131,1.545595,0,0,0,146.0587,0,0,0,1,0,3,75.5,13.8,0,60.2,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,60.2,9.60003,1.098612,4.984009,1
-11,2,0,0,2,228967,0,14764.22,53.77208,0,12,1,27.46212,47.96402,0,0,0,75.42614,0,0,0,0,0,3,75.5,13.8,0,60.2,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,60.2,9.60003,1.098612,4.323154,1
-11,2,0,0,3,228967,0,14764.22,54.77208,0,12,1,100.13,13.24231,36.66233,0,109.2328,259.2675,0,0,0,5,0,3,75.5,13.8,0,60.2,0,184.8,0,0,1.098612,5.219274,0,0,0,0,1,0,60.2,9.60003,1.098612,5.55786,1
-15,2,95,1,1,229034,0,5791.789,42.53251,0,10,1,9.360374,0,34.62819,0,0,43.98856,0,0,0,0,1,4,96.3,3.4,0,83.3,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,83.3,8.66437,1.386294,3.78393,1
-15,2,95,1,2,229034,0,5791.789,43.53251,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,3.4,0,83.3,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,83.3,8.66437,1.386294,,0
-15,2,95,1,3,229034,0,5791.789,44.53251,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,3.4,0,83.3,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,83.3,8.66437,1.386294,,0
-15,2,95,1,1,229035,0,5791.789,9.226557,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,95,11.84267,0,96.3,500,0,1,1,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,,0
-15,2,95,1,2,229035,0,5791.789,10.22656,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,95,11.84267,0,96.3,500,0,1,1,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,,0
-15,2,95,1,3,229035,0,5791.789,11.22656,1,13,1,60.6892,0,0,0,0,60.6892,0,0,0,4,0,4,95,11.84267,0,96.3,500,0,1,1,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,4.105766,1
-15,2,95,1,1,229036,0,5791.789,34.27242,1,13,1,20.80083,0,0,0,0,20.80083,0,0,0,1,0,4,94.7,10.3,0,92,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,92,8.66437,1.386294,3.034993,1
-15,2,95,1,2,229036,0,5791.789,35.27242,1,13,1,17.67797,0,0,0,0,17.67797,0,0,0,1,0,4,94.7,10.3,0,92,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,92,8.66437,1.386294,2.872319,1
-15,2,95,1,3,229036,0,5791.789,36.27242,1,13,1,45.2151,0,0,0,0,45.2151,0,0,0,5,0,4,94.7,10.3,0,92,500,0,0,0,1.386294,0,0,4.564348,6.265902,0,0,0,92,8.66437,1.386294,3.811431,1
-15,2,95,1,1,229037,0,5791.789,12.33676,0,13,1,61.88248,15.0806,0,0,0,76.96308,0,0,0,6,0,4,86.7,11.84267,0,96.3,500,0,1,0,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,4.343326,1
-15,2,95,1,2,229037,0,5791.789,13.33676,0,13,1,26.75585,10.8839,0,0,0,37.63975,0,0,0,3,0,4,86.7,11.84267,0,96.3,500,0,1,0,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,3.628061,1
-15,2,95,1,3,229037,0,5791.789,14.33676,0,13,1,18.65672,0,0,0,0,18.65672,0,0,0,2,0,4,86.7,11.84267,0,96.3,500,0,1,0,1.386294,0,0,4.564348,6.265902,0,0,0,96.3,8.66437,1.386294,2.926206,1
-13,2,0,0,1,229038,0,6634.604,49.02943,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92.6,10.3,0,76.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,76.1,8.800205,.6931472,,0
-13,2,0,0,2,229038,0,6634.604,50.02943,0,12,1,36.72241,1.839465,34.21883,0,272.322,345.1027,1,0,0,1,1,2,92.6,10.3,0,76.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,76.1,8.800205,.6931472,5.843842,1
-13,2,0,0,3,229038,0,6634.604,51.02943,0,12,1,116.4618,78.07287,0,0,1055.004,1249.539,2,0,0,2,0,2,92.6,10.3,0,76.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,76.1,8.800205,.6931472,7.13053,1
-13,2,0,0,1,229039,0,6634.604,53.24572,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,62.5,8.800205,.6931472,,0
-13,2,0,0,2,229039,0,6634.604,54.24572,1,10,1,51.9828,0,59.54133,0,0,111.5241,0,0,0,1,1,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,62.5,8.800205,.6931472,4.714241,1
-13,2,0,0,3,229039,0,6634.604,55.24572,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,62.5,8.800205,.6931472,,0
-19,2,25,0,1,229041,0,18542.52,34.8063,1,14,1,48.17105,4.688305,0,0,1432.844,1485.703,2,0,0,4,0,1,82.4,10.3,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.827876,0,7.303644,1
-19,2,25,0,2,229041,0,18542.52,35.8063,1,14,1,15.625,1.870265,0,0,0,17.49527,0,0,0,2,0,1,82.4,10.3,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.827876,0,2.86193,1
-19,2,25,0,3,229041,0,18542.52,36.8063,1,14,1,171.7815,7.81101,0,0,0,179.5925,0,0,0,10,0,1,82.4,10.3,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.827876,0,5.190691,1
-19,2,25,0,4,229041,0,18542.52,37.8063,1,14,1,71.68176,17.99133,0,0,0,89.6731,0,0,0,3,0,1,82.4,10.3,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.827876,0,4.496171,1
-19,2,25,0,5,229041,0,18542.52,38.8063,1,14,1,28.98032,8.515205,0,0,0,37.49553,0,0,0,1,0,1,82.4,10.3,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.827876,0,3.624222,1
-17,2,25,0,1,229047,0,7324.927,26.48871,0,13,1,0,6.578263,0,0,0,6.578263,0,0,0,0,0,2,87.2,3.4,0,84.1,568.05,568.05,0,0,.6931472,6.342209,0,3.258096,7.728504,0,0,0,84.1,8.899175,.6931472,1.883771,1
-17,2,25,0,2,229047,0,7324.927,27.48871,0,13,1,5.255614,3.774486,0,0,0,9.0301,0,0,0,1,0,2,87.2,3.4,0,84.1,568.05,568.05,0,0,.6931472,6.342209,0,3.258096,7.728504,0,0,0,84.1,8.899175,.6931472,2.200563,1
-17,2,25,0,3,229047,0,7324.927,28.48871,0,13,1,7.243196,1.646181,30.28973,0,0,39.1791,0,0,0,1,0,3,87.2,3.4,0,84.1,568.05,568.05,0,0,1.098612,6.342209,0,3.258096,7.728504,0,0,0,84.1,8.899175,1.098612,3.668144,1
-17,2,25,0,1,229048,0,7324.927,20.50103,1,12,1,207.9563,62.4025,.9100364,0,0,271.2689,0,0,0,15,0,2,79.3,27.6,1,67,568.05,568.05,0,0,.6931472,6.342209,0,3.258096,7.728504,1,0,0,67,8.899175,.6931472,5.60311,1
-17,2,25,0,2,229048,0,7324.927,21.50103,1,12,1,48.25609,15.91018,0,0,707.1429,771.3091,1,0,0,6,0,2,79.3,27.6,1,67,568.05,568.05,0,0,.6931472,6.342209,0,3.258096,7.728504,1,0,0,67,8.899175,.6931472,6.648089,1
-17,2,25,0,3,229048,0,7324.927,22.50103,1,12,1,127.5241,30.07902,0,0,0,157.6032,0,0,0,12,0,3,79.3,27.6,1,67,568.05,568.05,0,0,1.098612,6.342209,0,3.258096,7.728504,1,0,0,67,8.899175,1.098612,5.06008,1
-13,2,0,0,1,229060,0,7905.572,29.50856,0,12,1,119.7836,12.90572,0,0,0,132.6893,0,0,0,6,0,5,77.1,13.8,0,78.4,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,78.4,8.97545,1.609438,4.888011,1
-13,2,0,0,2,229060,0,7905.572,30.50856,0,12,1,22.25379,0,0,0,0,22.25379,0,0,0,1,0,5,77.1,13.8,0,78.4,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,78.4,8.97545,1.609438,3.102512,1
-13,2,0,0,3,229060,0,7905.572,31.50856,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,13.8,0,78.4,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,78.4,8.97545,1.609438,,0
-13,2,0,0,1,229061,0,7905.572,2.447639,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,96.3,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,,0
-13,2,0,0,2,229061,0,7905.572,3.447639,1,11,1,16.4536,0,0,0,0,16.4536,0,0,0,1,0,5,81.35272,11.84267,0,96.3,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,2.800544,1
-13,2,0,0,3,229061,0,7905.572,4.447639,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,96.3,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,,0
-13,2,0,0,1,229062,0,7905.572,28.2026,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,24.1,0,69.3,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,69.3,8.97545,1.609438,,0
-13,2,0,0,2,229062,0,7905.572,29.2026,1,11,1,15.625,0,0,0,0,15.625,0,0,0,1,0,5,63.3,24.1,0,69.3,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,69.3,8.97545,1.609438,2.748872,1
-13,2,0,0,3,229062,0,7905.572,30.2026,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,24.1,0,69.3,450,658.44,0,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,69.3,8.97545,1.609438,,0
-13,2,0,0,1,229063,0,7905.572,10.04517,0,11,1,0,2.756311,0,0,0,2.756311,0,0,0,0,0,5,56.7,11.84267,0,96.3,450,658.44,1,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,1.013893,1
-13,2,0,0,2,229063,0,7905.572,11.04517,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,56.7,11.84267,0,96.3,450,658.44,1,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,,0
-13,2,0,0,3,229063,0,7905.572,12.04517,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,56.7,11.84267,0,96.3,450,658.44,1,0,1.609438,6.489873,1,4.564348,6.160541,0,0,0,96.3,8.97545,1.609438,,0
-13,2,0,0,1,229064,0,7905.572,8.021903,1,11,1,155.5899,53.08089,0,0,0,208.6708,0,0,0,20,0,5,71.7,11.84267,1,81.5,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,81.5,8.97545,1.609438,5.340758,1
-13,2,0,0,2,229064,0,7905.572,9.021903,1,11,1,61.6714,81.73769,0,0,0,143.4091,0,0,0,18,0,5,71.7,11.84267,1,81.5,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,81.5,8.97545,1.609438,4.965701,1
-13,2,0,0,3,229064,0,7905.572,10.0219,1,11,1,87.12614,17.33854,.9752926,0,0,105.44,0,0,0,16,0,5,71.7,11.84267,1,81.5,450,658.44,1,1,1.609438,6.489873,1,4.564348,6.160541,0,0,0,81.5,8.97545,1.609438,4.658142,1
-11,2,0,1,1,229093,0,9953.079,11.12115,1,12,1,5.227392,1.777313,0,0,0,7.004704,0,0,0,1,0,4,61.7,11.84267,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,9.205738,1.386294,1.946582,1
-11,2,0,1,2,229093,0,9953.079,12.12115,1,12,1,29.12062,0,31.93176,0,0,61.05238,0,0,0,2,1,3,61.7,11.84267,0,70.4,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.4,9.205738,1.098612,4.111732,1
-11,2,0,1,3,229093,0,9953.079,13.12115,1,12,1,33.03965,6.449339,0,0,0,39.48899,0,0,0,5,0,3,61.7,11.84267,0,70.4,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.4,9.205738,1.098612,3.676022,1
-11,2,0,1,4,229093,0,9953.079,14.12115,1,12,1,43.46774,2.741935,0,0,0,46.20968,0,0,0,3,0,3,61.7,11.84267,0,70.4,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.4,9.205738,1.098612,3.833189,1
-11,2,0,1,5,229093,0,9953.079,15.12115,1,12,1,106.6485,13.34791,34.52823,0,0,154.5246,0,0,0,7,1,3,61.7,11.84267,0,70.4,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.4,9.205738,1.098612,5.040353,1
-11,2,0,1,1,229094,0,9953.079,35.71252,1,12,1,58.28542,9.179299,0,0,0,67.46471,0,0,0,4,0,4,77.7,6.9,1,56.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,56.8,9.205738,1.386294,4.211605,1
-11,2,0,1,2,229094,0,9953.079,36.71252,1,12,1,24.02691,9.634791,0,0,0,33.6617,0,0,0,5,0,3,77.7,6.9,1,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.205738,1.098612,3.516361,1
-11,2,0,1,3,229094,0,9953.079,37.71252,1,12,1,42.73128,8.440529,0,0,0,51.17181,0,0,0,6,1,3,77.7,6.9,1,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.205738,1.098612,3.935189,1
-11,2,0,1,4,229094,0,9953.079,38.71252,1,12,1,225.4032,27.64113,25.20161,0,0,278.246,0,0,0,15,1,3,77.7,6.9,1,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.205738,1.098612,5.628506,1
-11,2,0,1,5,229094,0,9953.079,39.71252,1,12,1,201.6393,22.9326,38.17122,0,0,262.7432,0,0,0,6,1,3,77.7,6.9,1,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.205738,1.098612,5.571177,1
-11,2,0,1,1,229096,0,9953.079,38.3217,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,13.8,0,85.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.7,9.205738,1.386294,,0
-11,2,0,1,2,229096,0,9953.079,39.3217,0,12,1,12.01346,0,30.58626,0,0,42.59971,0,0,0,0,1,3,77.1,13.8,0,85.7,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.7,9.205738,1.098612,3.751848,1
-11,2,0,1,3,229096,0,9953.079,40.3217,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,13.8,0,85.7,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.7,9.205738,1.098612,,0
-11,2,0,1,4,229096,0,9953.079,41.3217,0,12,1,20.96774,5.233871,0,0,0,26.20161,0,0,0,1,0,3,77.1,13.8,0,85.7,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.7,9.205738,1.098612,3.265821,1
-11,2,0,1,5,229096,0,9953.079,42.3217,0,12,1,21.85792,13.62477,46.49909,0,0,81.98179,0,0,0,1,1,3,77.1,13.8,0,85.7,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.7,9.205738,1.098612,4.406497,1
-11,2,0,1,1,229097,0,9953.079,15.31006,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,56.4,10.3,0,29.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,29.5,9.205738,1.386294,,0
-11,2,0,1,1,229105,0,6694.428,57.75496,1,12,1,6.24025,2.178887,7.654706,0,0,16.07384,0,0,0,1,0,1,86.7,44.8,0,69.3,0,0,0,0,0,0,0,0,0,0,1,0,69.3,8.80918,0,2.777193,1
-11,2,0,1,2,229105,0,6694.428,58.75496,1,12,1,93.40659,0,110.3297,0,0,203.7363,0,0,0,3,0,1,86.7,44.8,0,69.3,0,0,0,0,0,0,0,0,0,0,1,0,69.3,8.80918,0,5.316826,1
-11,2,0,1,3,229105,0,6694.428,59.75496,1,12,1,204.1001,7.295874,205.3336,0,0,416.7296,0,0,0,3,0,1,86.7,44.8,0,69.3,0,0,0,0,0,0,0,0,0,0,1,0,69.3,8.80918,0,6.032437,1
-7,2,25,0,1,229107,0,4496.188,25.12252,0,14,1,19.11076,0,0,0,0,19.11076,0,0,0,0,0,1,79.8,6.9,0,90.9,1000,0,0,0,0,0,0,3.258096,8.294049,0,0,0,90.9,8.411207,0,2.950252,1
-7,2,25,0,2,229107,0,4496.188,26.12252,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,90.9,1000,0,0,0,0,0,0,3.258096,8.294049,0,0,0,90.9,8.411207,0,,0
-7,2,25,0,3,229107,0,4496.188,27.12252,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,90.9,1000,0,0,0,0,0,0,3.258096,8.294049,0,0,0,90.9,8.411207,0,,0
-11,2,0,0,1,229151,0,3083.284,51.78097,1,9,1,141.3157,16.90068,43.26053,0,0,201.4769,0,0,0,9,0,4,60.1,20.7,1,54.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.8,8.034075,1.386294,5.305675,1
-11,2,0,0,2,229151,0,3083.284,52.78097,1,9,1,142.6183,31.70091,30.00478,0,0,204.3239,0,0,0,18,0,4,60.1,20.7,1,54.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.8,8.034075,1.386294,5.319707,1
-11,2,0,0,3,229151,0,3083.284,53.78097,1,9,1,30.28973,5.00439,43.27919,0,0,78.57331,0,0,0,3,0,3,60.1,20.7,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,8.034075,1.098612,4.364032,1
-11,2,0,0,4,229151,0,3083.284,54.78097,1,9,1,4.786598,2.094136,0,0,0,6.880734,0,0,0,0,1,3,60.1,20.7,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,8.034075,1.098612,1.928725,1
-11,2,0,0,5,229151,0,3083.284,55.78097,1,9,1,27.5562,0,37.81001,0,0,65.36621,0,0,0,1,1,3,60.1,20.7,1,54.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.8,8.034075,1.098612,4.180006,1
-11,2,0,0,1,229152,0,3083.284,13.07871,0,9,1,106.5523,10.73843,6.656266,0,0,123.947,0,0,0,9,0,4,55,11.84267,0,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,8.034075,1.386294,4.819854,1
-11,2,0,0,2,229152,0,3083.284,14.07871,0,9,1,28.66698,0,0,17.08075,0,28.66698,0,0,1,3,0,4,55,11.84267,0,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,8.034075,1.386294,3.355746,1
-11,2,0,0,1,229153,0,3083.284,15.46612,0,9,1,15.91264,3.380135,0,0,0,19.29277,0,0,0,2,0,4,68.1,6.9,0,59.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,59.1,8.034075,1.386294,2.959731,1
-11,2,0,0,2,229153,0,3083.284,16.46612,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,68.1,6.9,0,59.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,59.1,8.034075,1.386294,,0
-11,2,0,0,3,229153,0,3083.284,17.46612,0,9,1,6.584723,9.745391,0,0,0,16.33011,0,0,0,1,0,3,68.1,6.9,0,59.1,0,0,1,0,1.098612,0,0,0,0,1,0,0,59.1,8.034075,1.098612,2.793011,1
-11,2,0,0,4,229153,0,3083.284,18.46612,0,9,1,76.785,4.527324,.4188273,0,0,81.73116,0,0,0,4,0,3,68.1,6.9,0,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.034075,1.098612,4.403435,1
-11,2,0,0,5,229153,0,3083.284,19.46612,0,9,1,23.98477,4.496012,0,0,0,28.48078,0,0,0,2,0,3,68.1,6.9,0,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.034075,1.098612,3.34923,1
-11,2,0,0,1,229154,0,3083.284,17.85079,0,9,1,35.72543,3.900156,0,0,0,39.62558,0,0,0,4,0,4,70.7,6.9,1,58,0,0,1,0,1.386294,0,0,0,0,1,0,0,58,8.034075,1.386294,3.679475,1
-11,2,0,0,2,229154,0,3083.284,18.85079,0,9,1,17.67797,0,0,0,0,17.67797,0,0,0,2,0,4,70.7,6.9,1,58,0,0,0,0,1.386294,0,0,0,0,1,0,0,58,8.034075,1.386294,2.872319,1
-11,2,0,0,3,229154,0,3083.284,19.85079,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,6.9,1,58,0,0,0,0,1.098612,0,0,0,0,1,0,0,58,8.034075,1.098612,,0
-11,2,0,0,4,229154,0,3083.284,20.85079,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,6.9,1,58,0,0,0,0,1.098612,0,0,0,0,1,0,0,58,8.034075,1.098612,,0
-11,2,0,0,5,229154,0,3083.284,21.85079,0,9,1,0,2.628716,0,0,0,2.628716,0,0,0,0,0,3,70.7,6.9,1,58,0,0,0,0,1.098612,0,0,0,0,1,0,0,58,8.034075,1.098612,.9664957,1
-11,2,0,0,1,229163,0,12450.44,33.59069,0,19,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,6.9,1,60.2,0,141,0,0,0,4.94876,0,0,0,1,0,0,60.2,9.429591,0,,0
-11,2,0,0,2,229163,0,12450.44,34.59069,0,19,1,16.72241,0,32.00669,0,0,48.7291,0,0,0,1,0,1,68.6,6.9,1,60.2,0,141,0,0,0,4.94876,0,0,0,1,0,0,60.2,9.429591,0,3.886276,1
-11,2,0,0,3,229163,0,12450.44,35.59069,0,19,1,50.92186,0,0,0,0,50.92186,0,0,0,2,0,1,68.6,6.9,1,60.2,0,141,0,0,0,4.94876,0,0,0,1,0,0,60.2,9.429591,0,3.930292,1
-11,2,0,0,4,229163,0,12450.44,36.59069,0,19,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,6.9,1,60.2,0,141,0,0,0,4.94876,0,0,0,1,0,0,60.2,9.429591,0,,0
-11,2,0,0,5,229163,0,12450.44,37.59069,0,19,1,40.24656,0,19.5794,0,0,59.82596,0,0,0,1,1,1,68.6,6.9,1,60.2,0,141,0,0,0,4.94876,0,0,0,1,0,0,60.2,9.429591,0,4.09144,1
-11,2,0,1,1,229173,0,5309.091,28.44079,0,21,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,8.577364,1.386294,,0
-11,2,0,1,2,229173,0,5309.091,29.44079,0,21,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,8.577364,1.386294,,0
-11,2,0,1,3,229173,0,5309.091,30.44079,0,21,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,0,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,8.577364,1.609438,,0
-11,2,0,1,1,229174,0,5309.091,2.67488,1,16,1,32.02753,6.193753,0,0,0,38.22128,0,0,0,2,0,4,81.35272,11.84267,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.577364,1.386294,3.643393,1
-11,2,0,1,2,229174,0,5309.091,3.67488,1,16,1,8.204633,3.78861,0,0,0,11.99324,0,0,0,1,0,4,81.35272,11.84267,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.577364,1.386294,2.484344,1
-11,2,0,1,3,229174,0,5309.091,4.67488,1,16,1,25.36716,0,0,0,0,25.36716,0,0,0,1,0,5,81.35272,11.84267,0,63,0,0,1,1,1.609438,0,0,0,0,0,0,0,63,8.577364,1.609438,3.233455,1
-11,2,0,1,1,229175,0,5309.091,4.186174,1,16,1,15.88142,0,0,0,0,15.88142,0,0,0,1,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,8.577364,1.386294,2.76515,1
-11,2,0,1,2,229175,0,5309.091,5.186174,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,77.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,77.8,8.577364,1.386294,,0
-11,2,0,1,3,229175,0,5309.091,6.186174,1,16,1,23.14197,0,0,0,0,23.14197,0,0,0,1,0,5,81.35272,11.84267,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,8.577364,1.609438,3.141648,1
-11,2,0,1,1,229176,0,5309.091,30.32717,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,83,10.3,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.577364,1.386294,,0
-11,2,0,1,2,229176,0,5309.091,31.32717,1,16,1,0,0,0,0,796.6216,796.6216,1,0,0,0,0,4,83,10.3,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.577364,1.386294,6.68038,1
-11,2,0,1,3,229176,0,5309.091,32.32717,1,16,1,0,6.11927,0,0,0,6.11927,0,0,0,0,0,5,83,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.577364,1.609438,1.811443,1
-11,2,0,1,1,229201,0,4706.158,45.98768,1,18,1,16.95268,0,11.96048,0,0,28.91316,0,0,0,0,1,2,67.6,17.2,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.45684,.6931472,3.364297,1
-11,2,0,1,2,229201,0,4706.158,46.98768,1,18,1,0,0,0,0,0,0,0,0,0,0,0,2,67.6,17.2,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.45684,.6931472,,0
-11,2,0,1,3,229201,0,4706.158,47.98768,1,18,1,17.8885,2.721686,22.82704,0,0,43.43723,0,0,0,1,1,2,67.6,17.2,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.45684,.6931472,3.771317,1
-11,2,0,1,4,229201,0,4706.158,48.98768,1,18,1,0,0,0,0,0,0,0,0,0,0,0,2,67.6,17.2,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.45684,.6931472,,0
-11,2,0,1,5,229201,0,4706.158,49.98768,1,18,1,42.8934,0,0,377.0848,0,42.8934,0,0,20,2,0,2,67.6,17.2,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.45684,.6931472,3.758718,1
-11,2,0,1,1,229202,0,4706.158,14.86927,1,18,1,312.1165,2.704108,0,18.20073,1199.61,1514.431,1,0,2,9,1,2,62.2,6.9,1,63.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,63.6,8.45684,.6931472,7.322795,1
-11,2,0,1,2,229202,0,4706.158,15.86927,1,18,1,86.71763,16.48352,0,869.5652,0,103.2011,0,0,51,11,0,2,62.2,6.9,1,63.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,63.6,8.45684,.6931472,4.63668,1
-11,2,0,1,3,229202,0,4706.158,16.86927,1,18,1,57.94557,0,32.63828,190.957,0,90.58385,0,0,7,6,0,2,62.2,6.9,1,63.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,63.6,8.45684,.6931472,4.506276,1
-11,2,0,1,4,229202,0,4706.158,17.86927,1,18,1,113.6817,18.12924,0,111.6873,0,131.8109,0,0,8,10,1,2,62.2,6.9,1,63.6,0,0,1,1,.6931472,0,0,0,0,1,0,0,63.6,8.45684,.6931472,4.881369,1
-11,2,0,1,5,229202,0,4706.158,18.86927,1,18,1,34.26396,0,0,621.8274,0,34.26396,0,0,49,5,0,2,62.2,6.9,1,63.6,0,0,0,0,.6931472,0,0,0,0,1,0,0,63.6,8.45684,.6931472,3.534094,1
-13,2,0,1,1,229204,0,6144.868,32.66804,0,11,1,342.1328,40.3816,0,0,243.2305,625.7449,1,0,0,8,10,3,93.1,6.9,0,72.7,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,72.7,8.723536,1.098612,6.438943,1
-13,2,0,1,2,229204,0,6144.868,33.66804,0,11,1,89.86064,17.9481,0,0,0,107.8087,0,0,0,5,0,3,93.1,6.9,0,72.7,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,72.7,8.723536,1.098612,4.680359,1
-13,2,0,1,3,229204,0,6144.868,34.66804,0,11,1,24.6696,29.09692,0,0,0,53.76652,0,0,0,3,0,3,93.1,6.9,0,72.7,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,72.7,8.723536,1.098612,3.984651,1
-13,2,0,1,1,229205,0,6144.868,30.57632,1,12,1,79.45635,45.954,0,2.613696,0,125.4103,0,0,1,8,0,3,58.5,10.3,1,61.4,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,1,0,0,61.4,8.723536,1.098612,4.831591,1
-13,2,0,1,2,229205,0,6144.868,31.57632,1,12,1,43.96925,50.84575,0,0,0,94.81499,0,0,0,5,0,3,58.5,10.3,1,61.4,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,1,0,0,61.4,8.723536,1.098612,4.551928,1
-13,2,0,1,3,229205,0,6144.868,32.57632,1,12,1,80.79295,56.47137,0,0,0,137.2643,0,0,0,8,0,3,58.5,10.3,1,61.4,450,872.4,0,0,1.098612,6.771248,1,4.564348,6.160541,1,0,0,61.4,8.723536,1.098612,4.921908,1
-13,2,0,1,1,229206,0,6144.868,5.768651,0,12,1,6.27287,4.626242,0,0,0,10.89911,0,0,0,2,0,3,63.3,11.84267,0,85.2,450,872.4,1,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,85.2,8.723536,1.098612,2.388681,1
-13,2,0,1,2,229206,0,6144.868,6.768651,0,12,1,2.883229,5.372417,0,0,0,8.255647,0,0,0,1,0,3,63.3,11.84267,0,85.2,450,872.4,1,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,85.2,8.723536,1.098612,2.110897,1
-13,2,0,1,3,229206,0,6144.868,7.768651,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.3,11.84267,0,85.2,450,872.4,1,0,1.098612,6.771248,1,4.564348,6.160541,0,0,0,85.2,8.723536,1.098612,,0
-15,2,95,1,1,229221,0,12526.1,18.02601,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,76.1,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,76.1,9.43565,1.609438,,0
-15,2,95,1,2,229221,0,12526.1,19.02601,0,11,1,7.722008,0,0,0,0,7.722008,0,0,0,1,0,5,78.2,0,0,76.1,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,76.1,9.43565,1.609438,2.044074,1
-15,2,95,1,3,229221,0,12526.1,20.02601,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,76.1,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,76.1,9.43565,1.609438,,0
-15,2,95,1,4,229221,0,12526.1,21.02601,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,76.1,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,76.1,9.43565,1.609438,,0
-15,2,95,1,5,229221,0,12526.1,22.02601,0,11,1,10.26393,0,0,0,0,10.26393,0,0,0,1,0,5,78.2,0,0,76.1,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,76.1,9.43565,1.609438,2.328636,1
-15,2,95,1,1,229222,0,12526.1,43.34839,0,14,1,13.7639,0,0,0,0,13.7639,0,0,0,2,0,5,98.4,10.3,0,98.9,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,98.9,9.43565,1.609438,2.622049,1
-15,2,95,1,2,229222,0,12526.1,44.34839,0,14,1,16.40927,0,0,0,0,16.40927,0,0,0,1,0,5,98.4,10.3,0,98.9,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,98.9,9.43565,1.609438,2.797846,1
-15,2,95,1,3,229222,0,12526.1,45.34839,0,14,1,0,0,0,0,4374.909,4374.909,1,0,0,0,0,5,98.4,10.3,0,98.9,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,98.9,9.43565,1.609438,8.383641,1
-15,2,95,1,4,229222,0,12526.1,46.34839,0,14,1,47.17365,0,41.08987,0,30.5002,118.7637,0,0,0,0,1,5,98.4,10.3,0,98.9,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,98.9,9.43565,1.609438,4.777136,1
-15,2,95,1,5,229222,0,12526.1,47.34839,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,98.4,10.3,0,98.9,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,98.9,9.43565,1.609438,,0
-15,2,95,1,1,229223,0,12526.1,38.52156,1,12,1,14.02859,0,0,0,0,14.02859,0,0,0,1,0,5,90.1,6.9,0,81.8,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,81.8,9.43565,1.609438,2.641097,1
-15,2,95,1,2,229223,0,12526.1,39.52156,1,12,1,7.722008,0,0,0,0,7.722008,0,0,0,1,0,5,90.1,6.9,0,81.8,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,81.8,9.43565,1.609438,2.044074,1
-15,2,95,1,3,229223,0,12526.1,40.52156,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90.1,6.9,0,81.8,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,81.8,9.43565,1.609438,,0
-15,2,95,1,4,229223,0,12526.1,41.52156,1,12,1,87.43391,0,34.90443,0,0,122.3383,0,0,0,2,1,5,90.1,6.9,0,81.8,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,81.8,9.43565,1.609438,4.80679,1
-15,2,95,1,5,229223,0,12526.1,42.52156,1,12,1,11.18035,0,0,0,0,11.18035,0,0,0,1,0,5,90.1,6.9,0,81.8,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,81.8,9.43565,1.609438,2.414158,1
-15,2,95,1,1,229224,0,12526.1,13.21013,0,12,1,63.18158,13.34039,0,0,0,76.52197,0,0,0,8,0,5,86.7,11.84267,0,74.1,1000,0,1,0,1.609438,0,0,4.564348,6.959049,0,0,0,74.1,9.43565,1.609438,4.337578,1
-15,2,95,1,2,229224,0,12526.1,14.21013,0,12,1,50.57915,0,0,0,0,50.57915,0,0,0,2,0,5,86.7,11.84267,0,74.1,1000,0,1,0,1.609438,0,0,4.564348,6.959049,0,0,0,74.1,9.43565,1.609438,3.923539,1
-15,2,95,1,3,229224,0,12526.1,15.21013,0,12,1,61.41522,0,.6675568,0,0,62.08278,0,0,0,4,0,5,86.7,11.84267,0,74.1,1000,0,1,0,1.609438,0,0,4.564348,6.959049,0,0,0,74.1,9.43565,1.609438,4.128469,1
-15,2,95,1,4,229224,0,12526.1,16.21013,0,12,1,70.76048,0,10.06507,0,0,80.82554,0,0,0,6,0,5,86.7,11.84267,0,74.1,1000,0,1,0,1.609438,0,0,4.564348,6.959049,0,0,0,74.1,9.43565,1.609438,4.392293,1
-15,2,95,1,5,229224,0,12526.1,17.21013,0,12,1,34.27419,0,0,0,0,34.27419,0,0,0,3,0,5,86.7,11.84267,0,74.1,1000,0,1,0,1.609438,0,0,4.564348,6.959049,0,0,0,74.1,9.43565,1.609438,3.534393,1
-15,2,95,1,1,229225,0,12526.1,15.83573,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,0,0,69.3,1000,0,1,1,1.609438,0,0,4.564348,6.959049,0,0,0,69.3,9.43565,1.609438,,0
-15,2,95,1,2,229225,0,12526.1,16.83573,1,12,1,6.756757,1.906371,0,0,0,8.663127,0,0,0,1,0,5,83,0,0,69.3,1000,0,1,1,1.609438,0,0,4.564348,6.959049,0,0,0,69.3,9.43565,1.609438,2.159076,1
-15,2,95,1,3,229225,0,12526.1,17.83573,1,12,1,9.790833,0,0,0,0,9.790833,0,0,0,1,0,5,83,0,0,69.3,1000,0,1,1,1.609438,0,0,4.564348,6.959049,0,0,0,69.3,9.43565,1.609438,2.281446,1
-15,2,95,1,4,229225,0,12526.1,18.83573,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,0,0,69.3,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,69.3,9.43565,1.609438,,0
-15,2,95,1,5,229225,0,12526.1,19.83573,1,12,1,16.4956,0,0,0,0,16.4956,0,0,0,1,0,5,83,0,0,69.3,1000,0,0,0,1.609438,0,0,4.564348,6.959049,0,0,0,69.3,9.43565,1.609438,2.803094,1
-7,2,25,1,1,229226,0,5918.475,27.13484,1,16,1,71.50286,2.74051,39.77639,0,0,114.0198,0,0,0,5,0,1,62.8,13.8,0,93.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,93.2,8.686003,0,4.736372,1
-7,2,25,1,2,229226,0,5918.475,28.13484,1,16,1,59.34066,3.10559,0,0,0,62.44625,0,0,0,5,0,1,62.8,13.8,0,93.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,93.2,8.686003,0,4.134306,1
-7,2,25,1,3,229226,0,5918.475,29.13484,1,16,1,84.3942,18.51185,0,0,0,102.9061,0,0,0,5,0,1,62.8,13.8,0,93.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,0,0,0,93.2,8.686003,0,4.633817,1
-13,2,0,1,1,229230,0,8560.704,24.22998,1,11,1,380.1352,14.31097,0,0,0,394.4462,0,0,0,10,1,2,45.7,13.8,0,50,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,50,9.055055,.6931472,5.977483,1
-13,2,0,1,2,229230,0,8560.704,25.22998,1,11,1,21.61968,18.74821,0,0,844.6727,885.0406,1,0,0,0,0,3,45.7,13.8,0,50,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,50,9.055055,1.098612,6.785634,1
-13,2,0,1,3,229230,0,8560.704,26.22998,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,45.7,13.8,0,50,300,300,0,0,1.386294,5.703783,1,4.564348,5.755076,0,0,0,50,9.055055,1.386294,,0
-13,2,0,1,1,229231,0,8560.704,27.06366,0,10,1,74.10297,0,34.36818,0,0,108.4711,0,0,0,1,1,2,61.2,10.3,1,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.055055,.6931472,4.686484,1
-13,2,0,1,2,229231,0,8560.704,28.06366,0,10,1,5.733397,0,0,0,0,5.733397,0,0,0,0,1,3,61.2,10.3,1,76.1,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.055055,1.098612,1.746308,1
-13,2,0,1,3,229231,0,8560.704,29.06366,0,10,1,39.09131,0,0,0,0,39.09131,0,0,0,1,0,4,61.2,10.3,1,76.1,300,300,0,0,1.386294,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.055055,1.386294,3.6659,1
-7,2,25,1,1,229246,0,6148.974,29.84531,1,17,1,110.7729,19.53415,43.41451,0,0,173.7215,0,0,0,2,0,1,55.9,20.7,0,43.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,43.2,8.724203,0,5.157454,1
-7,2,25,1,2,229246,0,6148.974,30.84531,1,17,1,104.7297,11.70367,0,542.9537,0,116.4334,0,0,26,1,0,1,55.9,20.7,0,43.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,43.2,8.724203,0,4.757319,1
-7,2,25,1,3,229246,0,6148.974,31.84531,1,17,1,35.38051,27.17401,0,872.2742,0,62.55452,0,0,51,3,0,1,55.9,20.7,0,43.2,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,43.2,8.724203,0,4.136038,1
-5,2,25,0,1,229272,0,4540.176,53.82888,0,16,1,206.9878,0,43.19217,0,1410.386,1660.566,1,0,0,5,1,4,73.9,17.2,0,78.4,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,78.4,8.420941,1.386294,7.414914,1
-5,2,25,0,2,229272,0,4540.176,54.82888,0,16,1,84.94209,0,0,0,0,84.94209,0,0,0,1,0,4,73.9,17.2,0,78.4,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,78.4,8.420941,1.386294,4.44197,1
-5,2,25,0,3,229272,0,4540.176,55.82888,0,16,1,73.87628,6.653316,46.40855,0,0,126.9381,0,0,0,2,1,3,73.9,17.2,0,78.4,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,78.4,8.420941,1.098612,4.8437,1
-5,2,25,0,4,229272,0,4540.176,56.82888,0,16,1,49.939,0,0,0,0,49.939,0,0,0,2,0,3,73.9,17.2,0,78.4,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,78.4,8.420941,1.098612,3.910802,1
-5,2,25,0,5,229272,0,4540.176,57.82888,0,16,1,74.04692,36.6349,0,0,300.8798,411.5616,1,0,0,6,0,3,73.9,17.2,0,78.4,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,78.4,8.420941,1.098612,6.019958,1
-5,2,25,0,1,229273,0,4540.176,14.72964,1,12,1,10.58761,0,31.54579,0,0,42.1334,0,0,0,0,1,4,70.7,3.4,0,71.6,285,675.6,1,1,1.386294,6.515601,0,3.258096,7.038784,0,0,0,71.6,8.420941,1.386294,3.740841,1
-5,2,25,0,2,229273,0,4540.176,15.72964,1,12,1,26.30309,0,27.70753,0,0,54.01062,0,0,0,1,1,4,70.7,3.4,0,71.6,285,675.6,1,1,1.386294,6.515601,0,3.258096,7.038784,0,0,0,71.6,8.420941,1.386294,3.989181,1
-5,2,25,0,3,229273,0,4540.176,16.72964,1,12,1,15.57632,0,0,0,0,15.57632,0,0,0,0,1,3,70.7,3.4,0,71.6,285,675.6,1,1,1.098612,6.515601,0,3.258096,7.038784,0,0,0,71.6,8.420941,1.098612,2.745752,1
-5,2,25,0,4,229273,0,4540.176,17.72964,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,71.6,285,675.6,1,1,1.098612,6.515601,0,3.258096,7.038784,0,0,0,71.6,8.420941,1.098612,,0
-5,2,25,0,5,229273,0,4540.176,18.72964,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,71.6,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,71.6,8.420941,1.098612,,0
-5,2,25,0,1,229274,0,4540.176,50.71321,1,12,1,265.6167,61.49815,45.83907,0,488.4066,861.3605,1,0,0,11,1,4,80.9,10.3,0,54.5,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,54.5,8.420941,1.386294,6.758513,1
-5,2,25,0,2,229274,0,4540.176,51.71321,1,12,.8739726,809.9421,113.6052,14.6139,0,3745.27,4683.432,3,0,0,18,7,4,80.9,10.3,0,54.5,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,54.5,8.420941,1.386294,8.451786,1
-5,2,25,0,1,229275,0,4540.176,19.15674,0,12,1,5.293806,3.541556,0,0,0,8.835362,0,0,0,1,0,4,57.4,10.3,0,72.7,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,72.7,8.420941,1.386294,2.178762,1
-5,2,25,0,2,229275,0,4540.176,20.15674,0,12,1,102.7992,3.185328,0,0,840.3861,946.3707,1,0,0,8,0,4,57.4,10.3,0,72.7,285,675.6,0,0,1.386294,6.515601,0,3.258096,7.038784,0,0,0,72.7,8.420941,1.386294,6.852634,1
-5,2,25,0,3,229275,0,4540.176,21.15674,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,57.4,10.3,0,72.7,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,72.7,8.420941,1.098612,,0
-5,2,25,0,4,229275,0,4540.176,22.15674,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,57.4,10.3,0,72.7,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,72.7,8.420941,1.098612,,0
-5,2,25,0,5,229275,0,4540.176,23.15674,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,57.4,10.3,0,72.7,285,675.6,0,0,1.098612,6.515601,0,3.258096,7.038784,0,0,0,72.7,8.420941,1.098612,,0
-6,2,25,1,1,229302,0,7550.146,5.494866,0,11,1,13.59122,0,0,0,0,13.59122,0,0,0,1,0,5,91.7,11.84267,0,70.4,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,70.4,8.929455,1.609438,2.609424,1
-6,2,25,1,2,229302,0,7550.146,6.494866,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,11.84267,0,70.4,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,70.4,8.929455,1.609438,,0
-6,2,25,1,3,229302,0,7550.146,7.494866,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,11.84267,0,70.4,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,70.4,8.929455,1.609438,,0
-6,2,25,1,1,229303,0,7550.146,7.227926,1,11,1,14.6367,0,0,0,0,14.6367,0,0,0,1,0,5,86.7,11.84267,0,66.7,911.1,911.1,1,1,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,2.683532,1
-6,2,25,1,2,229303,0,7550.146,8.227926,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,66.7,911.1,911.1,1,1,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,,0
-6,2,25,1,3,229303,0,7550.146,9.227926,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,66.7,911.1,911.1,1,1,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,,0
-6,2,25,1,1,229304,0,7550.146,35.63586,0,8,1,69.00157,5.096707,0,0,0,74.09827,0,0,0,3,0,5,83.5,17.2,0,78.4,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,78.4,8.929455,1.609438,4.305392,1
-6,2,25,1,2,229304,0,7550.146,36.63586,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,17.2,0,78.4,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,78.4,8.929455,1.609438,,0
-6,2,25,1,3,229304,0,7550.146,37.63586,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,17.2,0,78.4,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,78.4,8.929455,1.609438,,0
-6,2,25,1,1,229305,0,7550.146,35.63039,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85.1,10.3,0,72.7,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,72.7,8.929455,1.609438,,0
-6,2,25,1,2,229305,0,7550.146,36.63039,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85.1,10.3,0,72.7,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,72.7,8.929455,1.609438,,0
-6,2,25,1,3,229305,0,7550.146,37.63039,1,11,1,11.01322,0,0,0,0,11.01322,0,0,0,0,1,5,85.1,10.3,0,72.7,911.1,911.1,0,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,72.7,8.929455,1.609438,2.399096,1
-6,2,25,1,1,229306,0,7550.146,10.13279,0,11,1,24.046,0,0,0,0,24.046,0,0,0,2,0,5,80,11.84267,0,66.7,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,3.179969,1
-6,2,25,1,2,229306,0,7550.146,11.13279,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,66.7,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,,0
-6,2,25,1,3,229306,0,7550.146,12.13279,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,80,11.84267,0,66.7,911.1,911.1,1,0,1.609438,6.814652,0,3.258096,8.200947,1,0,0,66.7,8.929455,1.609438,,0
-5,2,25,1,1,229311,0,6978.299,27.78645,1,16,1,29.79613,7.966545,0,0,0,37.76268,0,0,0,1,0,4,73.4,13.8,0,81.8,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,1,0,0,81.8,8.850704,1.386294,3.631321,1
-5,2,25,1,2,229311,0,6978.299,28.78645,1,16,1,0,5.992311,0,0,0,5.992311,0,0,0,0,0,4,73.4,13.8,0,81.8,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,1,0,0,81.8,8.850704,1.386294,1.790477,1
-5,2,25,1,3,229311,0,6978.299,29.78645,1,16,1,27.7533,11.34802,0,0,843.0176,882.119,1,0,0,2,0,4,73.4,13.8,0,81.8,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,1,0,0,81.8,8.850704,1.386294,6.782327,1
-5,2,25,1,1,229312,0,6978.299,27.23066,0,16,1,99.58181,40.1725,0,0,481.1814,620.9357,1,0,0,8,0,4,94,0,0,76.2,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,76.2,8.850704,1.386294,6.431228,1
-5,2,25,1,2,229312,0,6978.299,28.23066,0,16,1,62.9505,11.19654,0,0,0,74.14704,0,0,0,4,0,4,94,0,0,76.2,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,76.2,8.850704,1.386294,4.30605,1
-5,2,25,1,3,229312,0,6978.299,29.23066,0,16,1,98.78854,1.762115,0,0,0,100.5507,0,0,0,4,0,4,94,0,0,76.2,527.5,722.16,0,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,76.2,8.850704,1.386294,4.610662,1
-5,2,25,1,1,229313,0,6978.299,3.912389,0,16,1,94.35442,14.30737,0,0,259.0695,367.7313,1,0,0,8,0,4,81.35272,11.84267,0,48.1,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,48.1,8.850704,1.386294,5.907352,1
-5,2,25,1,2,229313,0,6978.299,4.912389,0,16,1,72.56127,15.46372,0,0,0,88.02499,0,0,0,7,0,4,81.35272,11.84267,0,48.1,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,48.1,8.850704,1.386294,4.477621,1
-5,2,25,1,3,229313,0,6978.299,5.912389,0,16,1,147.2467,39.36123,0,0,245.7489,432.3568,1,0,0,10,0,4,81.35272,11.84267,0,48.1,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,48.1,8.850704,1.386294,6.069251,1
-5,2,25,1,1,229314,0,6978.299,.843258,0,16,1,155.2535,23.86304,0,5.227392,0,179.1166,0,0,1,11,0,4,81.35272,11.84267,0,51.9,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,51.9,8.850704,1.386294,5.188037,1
-5,2,25,1,2,229314,0,6978.299,1.843258,0,16,1,88.2989,36.21816,0,0,0,124.5171,0,0,0,10,0,4,81.35272,11.84267,0,51.9,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,51.9,8.850704,1.386294,4.824443,1
-5,2,25,1,3,229314,0,6978.299,2.843258,0,16,1,151.2996,31.36564,0,0,556.5198,739.185,2,0,0,7,0,4,81.35272,11.84267,0,51.9,527.5,722.16,1,0,1.386294,6.582247,0,3.258096,7.654443,0,0,0,51.9,8.850704,1.386294,6.605548,1
-14,2,95,1,1,229331,0,8818.769,39.96988,0,16,1,7.318348,0,0,0,0,7.318348,0,0,0,1,0,6,78.2,3.4,0,70.5,825.95,532.08,0,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.791759,1.990385,1
-14,2,95,1,2,229331,0,8818.769,40.96988,0,16,1,7.208073,0,0,0,0,7.208073,0,0,0,1,0,6,78.2,3.4,0,70.5,825.95,532.08,0,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.791759,1.975202,1
-14,2,95,1,3,229331,0,8818.769,41.96988,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,3.4,0,70.5,825.95,532.08,0,0,1.609438,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.609438,,0
-14,2,95,1,1,229332,0,8818.769,13.74401,1,12,1,7.841087,0,0,0,0,7.841087,0,0,0,1,0,6,88.3,11.84267,0,88.9,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.791759,2.059377,1
-14,2,95,1,2,229332,0,8818.769,14.74401,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,11.84267,0,88.9,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.791759,,0
-14,2,95,1,3,229332,0,8818.769,15.74401,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,11.84267,0,88.9,825.95,532.08,1,1,1.609438,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.609438,,0
-14,2,95,1,1,229333,0,8818.769,34.61191,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,20.7,0,75,825.95,532.08,0,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,75,9.084751,1.791759,,0
-14,2,95,1,2,229333,0,8818.769,35.61191,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,20.7,0,75,825.95,532.08,0,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,75,9.084751,1.791759,,0
-14,2,95,1,3,229333,0,8818.769,36.61191,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.3,20.7,0,75,825.95,532.08,0,0,1.609438,6.276794,0,4.564348,6.767828,1,0,0,75,9.084751,1.609438,,0
-14,2,95,1,1,229334,0,8818.769,16.29569,1,12,1,8.75588,0,0,0,0,8.75588,0,0,0,1,0,6,84,3.4,0,72.7,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,72.7,9.084751,1.791759,2.169725,1
-14,2,95,1,2,229334,0,8818.769,17.29569,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,84,3.4,0,72.7,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,72.7,9.084751,1.791759,,0
-14,2,95,1,1,229335,0,8818.769,10.98973,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,11.84267,0,88.9,825.95,532.08,1,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.791759,,0
-14,2,95,1,2,229335,0,8818.769,11.98973,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,11.84267,0,88.9,825.95,532.08,1,0,1.791759,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.791759,,0
-14,2,95,1,3,229335,0,8818.769,12.98973,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90,11.84267,0,88.9,825.95,532.08,1,0,1.609438,6.276794,0,4.564348,6.767828,1,0,0,88.9,9.084751,1.609438,,0
-14,2,95,1,1,229336,0,8818.769,15.18686,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,72.3,10.3,0,70.5,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.791759,,0
-14,2,95,1,2,229336,0,8818.769,16.18686,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,72.3,10.3,0,70.5,825.95,532.08,1,1,1.791759,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.791759,,0
-14,2,95,1,3,229336,0,8818.769,17.18686,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,10.3,0,70.5,825.95,532.08,1,1,1.609438,6.276794,0,4.564348,6.767828,1,0,0,70.5,9.084751,1.609438,,0
-11,2,0,0,1,229342,0,8124.927,23.62491,1,13,1,35.36142,8.008321,36.70827,0,669.8128,749.8908,1,0,0,2,1,2,91,20.7,1,54.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,54.5,9.002815,.6931472,6.619927,1
-11,2,0,0,2,229342,0,8124.927,24.62491,1,13,1,0,4.706163,0,0,0,4.706163,0,0,0,0,0,3,91,20.7,1,54.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.5,9.002815,1.098612,1.548873,1
-11,2,0,0,3,229342,0,8124.927,25.62491,1,13,1,0,27.54609,0,0,0,27.54609,0,0,0,0,0,3,91,20.7,1,54.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.5,9.002815,1.098612,3.315861,1
-11,2,0,0,4,229342,0,8124.927,26.62491,1,13,1,76.14679,9.018747,0,0,925.5804,1010.746,1,0,0,2,0,3,91,20.7,1,54.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,54.5,9.002815,1.098612,6.918444,1
-11,2,0,0,5,229342,0,8124.927,27.62491,1,13,1,113.9413,21.14213,14.50326,0,1114.13,1263.716,1,0,0,5,1,4,91,20.7,1,54.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.5,9.002815,1.386294,7.141812,1
-11,2,0,0,1,229343,0,8124.927,27.51266,0,14,1,26.00104,13.20853,0,0,0,39.20957,0,0,0,4,0,2,79.8,10.3,0,73.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,73.9,9.002815,.6931472,3.668921,1
-11,2,0,0,2,229343,0,8124.927,28.51266,0,14,1,41.61491,0,0,0,0,41.61491,0,0,0,2,0,3,79.8,10.3,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.002815,1.098612,3.728458,1
-11,2,0,0,3,229343,0,8124.927,29.51266,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,10.3,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.002815,1.098612,,0
-11,2,0,0,4,229343,0,8124.927,30.51266,0,14,1,60.78979,18.23694,0,0,0,79.02673,0,0,0,3,0,3,79.8,10.3,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.002815,1.098612,4.369786,1
-11,2,0,0,5,229343,0,8124.927,31.51266,0,14,1,61.63887,1.337926,0,0,0,62.9768,0,0,0,4,0,4,79.8,10.3,0,73.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,73.9,9.002815,1.386294,4.142766,1
-11,2,0,1,1,229369,0,6358.944,38.07803,1,10,1,58.02405,18.75065,0,0,111.908,188.6827,1,0,0,3,0,4,78.2,13.8,0,75,0,249.6,0,0,1.386294,5.51986,0,0,0,0,0,0,75,8.757775,1.386294,5.240067,1
-11,2,0,1,2,229369,0,6358.944,39.07803,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,13.8,0,75,0,249.6,0,0,1.098612,5.51986,0,0,0,0,0,0,75,8.757775,1.098612,,0
-11,2,0,1,3,229369,0,6358.944,40.07803,1,10,1,7.488987,0,0,0,862.8458,870.3348,1,0,0,1,0,3,78.2,13.8,0,75,0,249.6,0,0,1.098612,5.51986,0,0,0,0,0,0,75,8.757775,1.098612,6.768878,1
-11,2,0,1,1,229370,0,6358.944,11.09103,0,10,1,32.93257,0,0,0,0,32.93257,0,0,0,1,0,4,81.7,11.84267,0,96.3,0,249.6,1,0,1.386294,5.51986,0,0,0,0,0,0,96.3,8.757775,1.386294,3.494462,1
-11,2,0,1,2,229370,0,6358.944,12.09103,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,11.84267,0,96.3,0,249.6,1,0,1.098612,5.51986,0,0,0,0,0,0,96.3,8.757775,1.098612,,0
-11,2,0,1,3,229370,0,6358.944,13.09103,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,11.84267,0,96.3,0,249.6,1,0,1.098612,5.51986,0,0,0,0,0,0,96.3,8.757775,1.098612,,0
-11,2,0,1,1,229371,0,6358.944,13.40452,0,10,1,139.8066,0,0,0,635.2692,775.0758,1,0,0,8,0,4,80,11.84267,0,96.3,0,249.6,1,0,1.386294,5.51986,0,0,0,1,0,0,96.3,8.757775,1.386294,6.652961,1
-11,2,0,1,2,229371,0,6358.944,14.40452,0,10,1,145.8433,0,0,0,0,145.8433,0,0,0,4,0,3,80,11.84267,0,96.3,0,249.6,1,0,1.098612,5.51986,0,0,0,1,0,0,96.3,8.757775,1.098612,4.982533,1
-11,2,0,1,3,229371,0,6358.944,15.40452,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,80,11.84267,0,96.3,0,249.6,1,0,1.098612,5.51986,0,0,0,1,0,0,96.3,8.757775,1.098612,,0
-11,2,0,1,1,229372,0,6358.944,17.87817,1,10,1,44.17146,9.492943,32.1955,0,0,85.85991,0,0,0,4,0,4,78.7,10.3,0,62.5,0,249.6,1,1,1.386294,5.51986,0,0,0,1,0,0,62.5,8.757775,1.386294,4.452717,1
-11,2,0,0,1,229373,0,1951.32,45.13621,1,10,1,154.8171,19.62906,33.48789,0,0,207.9341,0,0,0,15,1,1,85.6,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,7.576774,0,5.337221,1
-11,2,0,0,2,229373,0,1951.32,46.13621,1,10,1,21.07008,2.50947,0,0,0,23.57955,0,0,0,2,0,1,85.6,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,7.576774,0,3.16038,1
-11,2,0,0,3,229373,0,1951.32,47.13621,1,10,1,168.4005,30.59385,32.41439,0,0,231.4088,0,0,0,17,1,1,85.6,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,7.576774,0,5.444186,1
-13,2,0,0,1,229390,0,8665.641,57.57153,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,60.1,17.2,1,65.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.067237,.6931472,,0
-13,2,0,0,1,229391,0,8665.641,57.36345,1,12,1,33.09932,19.59958,56.68227,0,0,109.3812,0,0,0,3,0,2,72.3,13.8,0,73.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,73.9,9.067237,.6931472,4.694839,1
-13,2,0,1,1,229396,0,11793.55,22.00137,0,13,1,26.26105,1.74207,0,0,0,28.00312,0,0,0,1,0,2,74.5,3.4,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,3.332316,1
-13,2,0,1,2,229396,0,11793.55,23.00137,0,13,1,12.90014,0,0,0,0,12.90014,0,0,0,1,0,2,74.5,3.4,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,2.557238,1
-13,2,0,1,3,229396,0,11793.55,24.00137,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.5,3.4,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,,0
-13,2,0,1,1,229397,0,11793.55,21.80151,1,13,1,0,10.36922,0,0,0,10.36922,0,0,0,0,0,2,78.7,6.9,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,2.338841,1
-13,2,0,1,2,229397,0,11793.55,22.80151,1,13,1,126.1347,8.52365,0,0,0,134.6584,0,0,0,5,0,2,78.7,6.9,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,4.902741,1
-13,2,0,1,3,229397,0,11793.55,23.80151,1,13,1,19.0957,0,0,0,0,19.0957,0,0,0,1,0,2,78.7,6.9,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,9.375393,.6931472,2.949463,1
-13,2,0,1,1,229451,0,10422.29,41.15811,0,16,1,0,0,35.66823,0,0,35.66823,0,0,0,0,0,5,72.3,24.1,0,65.9,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,65.9,9.251798,1.609438,3.57426,1
-13,2,0,1,2,229451,0,10422.29,42.15811,0,16,1,117.6541,4.419494,0,0,0,122.0736,0,0,0,3,0,5,72.3,24.1,0,65.9,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,65.9,9.251798,1.609438,4.804624,1
-13,2,0,1,3,229451,0,10422.29,43.15811,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,24.1,0,65.9,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,65.9,9.251798,1.609438,,0
-13,2,0,1,1,229452,0,10422.29,11.04449,1,18,1,67.60271,58.32553,0,0,0,125.9282,0,0,0,5,0,5,63.3,11.84267,0,66.7,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,66.7,9.251798,1.609438,4.835712,1
-13,2,0,1,2,229452,0,10422.29,12.04449,1,18,1,31.0559,72.74725,0,0,0,103.8032,0,0,0,2,0,5,63.3,11.84267,0,66.7,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,66.7,9.251798,1.609438,4.642497,1
-13,2,0,1,3,229452,0,10422.29,13.04449,1,18,1,57.50658,30.10975,0,0,0,87.61633,0,0,0,2,0,5,63.3,11.84267,0,66.7,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,66.7,9.251798,1.609438,4.472968,1
-13,2,0,1,1,229453,0,10422.29,8.84052,0,18,1,94.12376,52.70411,.8580343,0,0,147.6859,0,0,0,8,0,5,41.7,11.84267,0,59.3,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,59.3,9.251798,1.609438,4.995088,1
-13,2,0,1,2,229453,0,10422.29,9.84052,0,18,1,32.48925,41.30435,0,0,0,73.79359,0,0,0,2,0,5,41.7,11.84267,0,59.3,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,59.3,9.251798,1.609438,4.301272,1
-13,2,0,1,3,229453,0,10422.29,10.84052,0,18,1,70.23705,46.55838,0,362.1598,0,116.7954,0,0,18,4,0,5,41.7,11.84267,0,59.3,450,235.27,1,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,59.3,9.251798,1.609438,4.760424,1
-13,2,0,1,1,229454,0,10422.29,38.96235,1,18,1,182.3713,38.90796,0,0,0,221.2793,0,0,0,5,0,5,56.4,20.7,0,69.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,69.3,9.251798,1.609438,5.399426,1
-13,2,0,1,2,229454,0,10422.29,39.96235,1,18,1,0,5.136168,0,0,0,5.136168,0,0,0,0,0,5,56.4,20.7,0,69.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,69.3,9.251798,1.609438,1.636307,1
-13,2,0,1,3,229454,0,10422.29,40.96235,1,18,1,104.6971,2.541703,2.080773,0,0,109.3196,0,0,0,4,1,5,56.4,20.7,0,69.3,450,235.27,0,0,1.609438,5.460734,1,4.564348,6.160541,1,0,0,69.3,9.251798,1.609438,4.694275,1
-13,2,0,1,1,229455,0,10422.29,8.117727,1,18,1,97.24389,26.78107,0,0,0,124.025,0,0,0,11,0,5,70,11.84267,0,51.9,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,51.9,9.251798,1.609438,4.820483,1
-13,2,0,1,2,229455,0,10422.29,9.117727,1,18,1,57.33397,12.43192,0,0,0,69.76588,0,0,0,5,0,5,70,11.84267,0,51.9,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,51.9,9.251798,1.609438,4.245145,1
-13,2,0,1,3,229455,0,10422.29,10.11773,1,18,1,119.842,40.96576,.9262511,0,0,161.734,0,0,0,11,0,5,70,11.84267,0,51.9,450,235.27,1,1,1.609438,5.460734,1,4.564348,6.160541,1,0,0,51.9,9.251798,1.609438,5.085953,1
-19,2,25,0,1,229478,1,11017.6,29.07871,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,83,6.9,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.30734,.6931472,,0
-19,2,25,0,2,229478,1,11017.6,30.07871,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,83,6.9,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.30734,.6931472,,0
-19,2,25,0,3,229478,1,11017.6,31.07871,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,83,6.9,0,61.4,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,61.4,9.30734,.6931472,,0
-11,2,0,1,1,229501,0,6168.329,31.5154,0,16,1,83.72335,0,0,0,0,83.72335,0,0,0,2,0,4,85.1,3.4,0,67,0,538.08,0,0,1.386294,6.288007,0,0,0,0,0,0,67,8.727345,1.386294,4.427518,1
-11,2,0,1,2,229501,0,6168.329,32.5154,0,16,1,6.450072,0,0,0,0,6.450072,0,0,0,1,0,4,85.1,3.4,0,67,0,538.08,0,0,1.386294,6.288007,0,0,0,0,0,0,67,8.727345,1.386294,1.864091,1
-11,2,0,1,3,229501,0,6168.329,33.5154,0,16,1,0,5.662862,0,0,0,5.662862,0,0,0,0,0,4,85.1,3.4,0,67,0,538.08,0,0,1.386294,6.288007,0,0,0,0,0,0,67,8.727345,1.386294,1.73393,1
-11,2,0,1,1,229502,0,6168.329,5.546885,0,14,1,68.92876,20.38482,34.07696,0,0,123.3905,0,0,0,8,0,4,93.3,11.84267,0,96.3,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,96.3,8.727345,1.386294,4.815354,1
-11,2,0,1,2,229502,0,6168.329,6.546885,0,14,1,88.9871,15.16961,22.21691,0,0,126.3736,0,0,0,7,0,4,93.3,11.84267,0,96.3,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,96.3,8.727345,1.386294,4.839243,1
-11,2,0,1,3,229502,0,6168.329,7.546885,0,14,1,13.82792,0,28.964,0,0,42.79192,0,0,0,1,0,4,93.3,11.84267,0,96.3,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,96.3,8.727345,1.386294,3.756349,1
-11,2,0,1,1,229503,0,6168.329,2.015058,0,14,1,52.62611,7.982319,0,0,0,60.60843,0,0,0,4,0,4,81.35272,11.84267,0,88.9,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,88.9,8.727345,1.386294,4.104434,1
-11,2,0,1,2,229503,0,6168.329,3.015058,0,14,1,0,2.53225,0,0,0,2.53225,0,0,0,0,0,4,81.35272,11.84267,0,88.9,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,88.9,8.727345,1.386294,.9291084,1
-11,2,0,1,3,229503,0,6168.329,4.015058,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,88.9,0,538.08,1,0,1.386294,6.288007,0,0,0,0,0,0,88.9,8.727345,1.386294,,0
-11,2,0,1,1,229504,0,6168.329,27.98083,1,14,1,28.91316,1.820073,0,0,0,30.73323,0,0,0,1,0,4,78.2,13.8,0,64.8,0,538.08,0,0,1.386294,6.288007,0,0,0,1,0,0,64.8,8.727345,1.386294,3.425344,1
-11,2,0,1,2,229504,0,6168.329,28.98083,1,14,1,8.361204,4.180602,0,0,0,12.54181,0,0,0,1,0,4,78.2,13.8,0,64.8,0,538.08,0,0,1.386294,6.288007,0,0,0,1,0,0,64.8,8.727345,1.386294,2.529068,1
-11,2,0,1,3,229504,0,6168.329,29.98083,1,14,1,45.43459,6.826163,0,0,0,52.26075,0,0,0,2,0,4,78.2,13.8,0,64.8,0,538.08,0,0,1.386294,6.288007,0,0,0,1,0,0,64.8,8.727345,1.386294,3.956246,1
-17,2,25,1,1,229525,0,8954.252,53.83984,1,16,1,27.96655,26.04286,0,0,0,54.00941,0,0,0,2,0,2,81.9,10.3,0,84.1,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,84.1,9.099996,.6931472,3.989158,1
-17,2,25,1,2,229525,0,8954.252,54.83984,1,16,1,0,16.14128,0,0,0,16.14128,0,0,0,0,0,2,81.9,10.3,0,84.1,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,84.1,9.099996,.6931472,2.78138,1
-17,2,25,1,3,229525,0,8954.252,55.83984,1,16,1,54.18502,22.55066,0,0,0,76.73568,0,0,0,3,0,2,81.9,10.3,0,84.1,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,84.1,9.099996,.6931472,4.340367,1
-17,2,25,1,4,229525,0,8954.252,56.83984,1,16,1,20.96774,12.53629,0,0,0,33.50403,0,0,0,1,0,2,81.9,10.3,0,84.1,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,84.1,9.099996,.6931472,3.511666,1
-17,2,25,1,5,229525,0,8954.252,57.83984,1,16,1,0,4.728598,0,0,0,4.728598,0,0,0,0,0,2,81.9,10.3,0,84.1,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,84.1,9.099996,.6931472,1.553629,1
-17,2,25,1,1,229526,0,8954.252,50.86927,0,15,1,13.06848,0,26.75902,0,0,39.8275,0,0,0,0,1,2,79.3,0,0,100,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,100,9.099996,.6931472,3.684557,1
-17,2,25,1,2,229526,0,8954.252,51.86927,0,15,1,116.2902,0,0,0,0,116.2902,0,0,0,5,0,2,79.3,0,0,100,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,100,9.099996,.6931472,4.756089,1
-17,2,25,1,3,229526,0,8954.252,52.86927,0,15,1,0,0,35.14537,0,0,35.14537,0,0,0,0,0,2,79.3,0,0,100,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,100,9.099996,.6931472,3.559493,1
-17,2,25,1,4,229526,0,8954.252,53.86927,0,15,1,19.35484,2.298387,0,0,0,21.65322,0,0,0,1,0,2,79.3,0,0,100,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,100,9.099996,.6931472,3.075154,1
-17,2,25,1,5,229526,0,8954.252,54.86927,0,15,1,0,0,9.205829,0,0,9.205829,0,0,0,0,0,2,79.3,0,0,100,1000,520,0,0,.6931472,6.253829,0,3.258096,8.294049,1,0,0,100,9.099996,.6931472,2.219837,1
-11,2,0,1,1,229617,0,7644.575,35.1102,0,16,1,124.7778,3.894407,7.543126,0,737.4543,873.6696,1,0,0,6,1,3,56.4,24.1,1,40.9,0,318,0,0,1.098612,5.762052,0,0,0,0,1,0,40.9,8.941882,1.098612,6.772702,1
-11,2,0,1,2,229617,0,7644.575,36.1102,0,16,1,103.0754,4.584334,11.06199,0,0,118.7218,0,0,0,2,5,3,56.4,24.1,1,40.9,0,318,0,0,1.098612,5.762052,0,0,0,0,1,0,40.9,8.941882,1.098612,4.776783,1
-11,2,0,1,3,229617,0,7644.575,37.1102,0,16,1,140.0881,4.885463,20.27753,0,0,165.2511,0,0,0,3,5,3,56.4,24.1,1,40.9,0,318,0,0,1.098612,5.762052,0,0,0,0,1,0,40.9,8.941882,1.098612,5.107466,1
-11,2,0,1,1,229618,0,7644.575,9.776865,0,16,1,10.45478,0,28.22791,0,0,38.6827,0,0,0,0,1,3,86.7,11.84267,0,86.4,0,318,1,0,1.098612,5.762052,0,0,0,0,0,0,86.4,8.941882,1.098612,3.655392,1
-11,2,0,1,2,229618,0,7644.575,10.77687,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,11.84267,0,86.4,0,318,1,0,1.098612,5.762052,0,0,0,0,0,0,86.4,8.941882,1.098612,,0
-11,2,0,1,3,229618,0,7644.575,11.77687,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,11.84267,0,86.4,0,318,1,0,1.098612,5.762052,0,0,0,0,0,0,86.4,8.941882,1.098612,,0
-11,2,0,1,1,229619,0,7644.575,8.303902,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,11.84267,0,59.3,0,318,1,1,1.098612,5.762052,0,0,0,0,0,0,59.3,8.941882,1.098612,,0
-11,2,0,1,2,229619,0,7644.575,9.303902,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,11.84267,0,59.3,0,318,1,1,1.098612,5.762052,0,0,0,0,0,0,59.3,8.941882,1.098612,,0
-11,2,0,1,3,229619,0,7644.575,10.3039,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,11.84267,0,59.3,0,318,1,1,1.098612,5.762052,0,0,0,0,0,0,59.3,8.941882,1.098612,,0
-11,2,0,0,1,229620,0,568.915,38.70226,1,13,1,47.04652,25.77104,28.75065,0,0,101.5682,0,0,0,3,1,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,1,0,0,71.31672,6.345487,.6931472,4.62073,1
-11,2,0,0,2,229620,0,568.915,39.70226,1,13,1,171.8164,16.79,0,0,0,188.6064,0,0,0,4,0,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,1,0,0,71.31672,6.345487,.6931472,5.239663,1
-11,2,0,0,3,229620,0,568.915,40.70226,1,13,1,136.5639,3.784141,0,0,0,140.348,0,0,0,0,16,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,1,0,0,71.31672,6.345487,.6931472,4.944125,1
-11,2,0,0,1,229621,0,568.915,18.20945,1,11,1,88.99634,15.46262,0,0,0,104.459,0,0,0,6,2,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,0,1,0,71.31672,6.345487,.6931472,4.648794,1
-11,2,0,0,2,229621,0,568.915,19.20945,1,11,1,57.03989,37.89044,0,0,0,94.93032,0,0,0,6,0,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,0,1,0,71.31672,6.345487,.6931472,4.553143,1
-11,2,0,0,3,229621,0,568.915,20.20945,1,11,1,32.81938,20.79295,0,0,0,53.61234,0,0,0,1,1,2,74.29414,11.84267,.1981873,,0,216,0,0,.6931472,5.375278,0,0,0,0,1,0,71.31672,6.345487,.6931472,3.981779,1
-11,2,0,1,1,229691,0,6920.234,22.24778,1,12,1,72.52515,0,0,0,0,72.52515,0,0,0,2,1,3,68.6,3.4,0,73.9,0,325.68,0,0,1.098612,5.785915,0,0,0,1,0,0,73.9,8.842349,1.098612,4.283933,1
-11,2,0,1,2,229691,0,6920.234,23.24778,1,12,1,93.62934,35.94595,0,0,571.1149,700.6901,1,0,0,2,0,3,68.6,3.4,0,73.9,0,325.68,0,0,1.098612,5.785915,0,0,0,1,0,0,73.9,8.842349,1.098612,6.552066,1
-11,2,0,1,3,229691,0,6920.234,24.24778,1,12,1,49.3992,3.119715,0,0,0,52.51891,0,0,0,2,0,4,68.6,3.4,0,73.9,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,73.9,8.842349,1.386294,3.961173,1
-11,2,0,1,4,229691,0,6920.234,25.24778,1,12,1,120.9841,47.87312,0,0,0,168.8573,0,0,0,7,0,4,68.6,3.4,0,73.9,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,73.9,8.842349,1.386294,5.129054,1
-11,2,0,1,5,229691,0,6920.234,26.24778,1,12,1,187.2251,32.13343,0,0,880.5499,1099.908,1,0,0,5,0,4,68.6,3.4,0,73.9,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,73.9,8.842349,1.386294,7.002982,1
-11,2,0,1,1,229692,0,6920.234,20.28474,0,12,1,18.52832,0,0,0,0,18.52832,0,0,0,1,0,3,74.5,3.4,0,68.2,0,325.68,0,0,1.098612,5.785915,0,0,0,1,0,0,68.2,8.842349,1.098612,2.919301,1
-11,2,0,1,2,229692,0,6920.234,21.28474,0,12,1,19.30502,.719112,0,0,0,20.02413,0,0,0,2,0,3,74.5,3.4,0,68.2,0,325.68,0,0,1.098612,5.785915,0,0,0,1,0,0,68.2,8.842349,1.098612,2.996938,1
-11,2,0,1,3,229692,0,6920.234,22.28474,0,12,1,0,2.447708,0,0,0,2.447708,0,0,0,0,0,4,74.5,3.4,0,68.2,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,68.2,8.842349,1.386294,.8951522,1
-11,2,0,1,4,229692,0,6920.234,23.28474,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,3.4,0,68.2,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,68.2,8.842349,1.386294,,0
-11,2,0,1,5,229692,0,6920.234,24.28474,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,3.4,0,68.2,0,325.68,0,0,1.386294,5.785915,0,0,0,1,0,0,68.2,8.842349,1.386294,,0
-11,2,0,0,1,229696,0,11503.81,25.00205,0,12,1,62.54508,0,30.70067,0,0,93.24575,0,0,0,1,1,4,76.6,6.9,0,80.7,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,80.7,9.350521,1.386294,4.535238,1
-11,2,0,0,2,229696,0,11503.81,26.00205,0,12,1,69.36553,0,13.73106,0,0,83.09659,0,0,0,5,1,4,76.6,6.9,0,80.7,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,80.7,9.350521,1.386294,4.420003,1
-11,2,0,0,3,229696,0,11503.81,27.00205,0,12,1,166.4066,11.00564,34.43,0,0,211.8422,0,0,0,8,1,4,76.6,6.9,0,80.7,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,80.7,9.350521,1.386294,5.355842,1
-11,2,0,0,1,229697,0,11503.81,7.321013,0,11,1,39.97939,5.435343,0,0,275.3735,320.7882,1,0,0,4,0,4,58.3,11.84267,0,63,0,364.26,1,0,1.386294,5.897868,0,0,0,1,0,0,63,9.350521,1.386294,5.770781,1
-11,2,0,0,2,229697,0,11503.81,8.321013,0,11,1,12.26326,2.249053,0,0,0,14.51231,0,0,0,1,0,4,58.3,11.84267,0,63,0,364.26,1,0,1.386294,5.897868,0,0,0,1,0,0,63,9.350521,1.386294,2.674997,1
-11,2,0,0,3,229697,0,11503.81,9.321013,0,11,1,41.6775,0,0,0,0,41.6775,0,0,0,2,0,4,58.3,11.84267,0,63,0,364.26,1,0,1.386294,5.897868,0,0,0,1,0,0,63,9.350521,1.386294,3.729961,1
-11,2,0,0,1,229698,0,11503.81,4.145106,1,11,1,145.7238,22.65842,0,0,0,168.3823,0,0,0,11,0,4,81.35272,11.84267,0,70.4,0,364.26,1,1,1.386294,5.897868,0,0,0,1,0,0,70.4,9.350521,1.386294,5.126237,1
-11,2,0,0,2,229698,0,11503.81,5.145106,1,11,1,37.21591,5.326705,0,0,0,42.54261,0,0,0,3,0,4,81.35272,11.84267,0,70.4,0,364.26,1,1,1.386294,5.897868,0,0,0,1,0,0,70.4,9.350521,1.386294,3.750506,1
-11,2,0,0,3,229698,0,11503.81,6.145106,1,11,1,42.52276,1.647161,0,0,0,44.16992,0,0,0,3,0,4,81.35272,11.84267,0,70.4,0,364.26,1,1,1.386294,5.897868,0,0,0,1,0,0,70.4,9.350521,1.386294,3.788044,1
-11,2,0,0,1,229699,0,11503.81,26.00137,1,11,1,166.4451,5.255023,0,0,0,171.7001,0,0,0,6,5,4,77.6,3.4,0,81.8,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,81.8,9.350521,1.386294,5.14575,1
-11,2,0,0,2,229699,0,11503.81,27.00137,1,11,1,31.53409,0,0,0,0,31.53409,0,0,0,2,0,4,77.6,3.4,0,81.8,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,81.8,9.350521,1.386294,3.451069,1
-11,2,0,0,3,229699,0,11503.81,28.00137,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.6,3.4,0,81.8,0,364.26,0,0,1.386294,5.897868,0,0,0,1,0,0,81.8,9.350521,1.386294,,0
-11,2,0,0,1,229769,0,13434.02,54.31896,1,12,1,41.60167,87.2907,40.82683,0,0,169.7192,0,0,0,8,0,2,88.3,6.9,0,53.4,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,53.4,9.50562,.6931472,5.134145,1
-11,2,0,0,2,229769,0,13434.02,55.31896,1,12,1,70.23412,63.78882,34.16149,0,0,168.1844,0,0,0,4,0,2,88.3,6.9,0,53.4,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,53.4,9.50562,.6931472,5.125061,1
-11,2,0,0,3,229769,0,13434.02,56.31896,1,12,1,24.14399,52.41001,42.16418,0,0,118.7182,0,0,0,2,0,2,88.3,6.9,0,53.4,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,53.4,9.50562,.6931472,4.776752,1
-11,2,0,0,1,229770,0,13434.02,55.0089,0,14,1,122.3349,53.81695,75.59542,0,0,251.7473,0,0,0,10,0,2,93.6,10.3,0,80.7,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,80.7,9.50562,.6931472,5.528426,1
-11,2,0,0,2,229770,0,13434.02,56.0089,0,14,1,189.9666,57.0043,39.45533,0,0,286.4262,0,0,0,10,0,2,93.6,10.3,0,80.7,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,80.7,9.50562,.6931472,5.657481,1
-11,2,0,0,3,229770,0,13434.02,57.0089,0,14,1,79.12643,49.62687,66.71642,0,0,195.4697,0,0,0,4,0,2,93.6,10.3,0,80.7,0,514.54,0,0,.6931472,6.243273,0,0,0,1,0,0,80.7,9.50562,.6931472,5.275405,1
-11,2,0,1,1,229771,0,7369.501,48.01917,1,12,1,83.89964,29.03293,46.3356,0,0,159.2682,0,0,0,6,0,4,80.9,20.7,1,76.1,0,607.2,0,0,1.386294,6.408858,0,0,0,1,0,0,76.1,8.905241,1.386294,5.07059,1
-11,2,0,1,2,229771,0,7369.501,49.01917,1,12,1,71.60019,29.15425,0,0,0,100.7544,0,0,0,3,0,4,80.9,20.7,1,76.1,0,607.2,0,0,1.386294,6.408858,0,0,0,1,0,0,76.1,8.905241,1.386294,4.612686,1
-11,2,0,1,3,229771,0,7369.501,50.01917,1,12,1,94.49339,48.87225,44.44934,0,0,187.815,0,0,0,5,0,4,80.9,20.7,1,76.1,0,607.2,0,0,1.386294,6.408858,0,0,0,1,0,0,76.1,8.905241,1.386294,5.235457,1
-11,2,0,1,4,229771,0,7369.501,51.01917,1,12,1,24.79839,34.58468,0,0,0,59.38306,0,0,0,3,0,4,80.9,20.7,1,76.1,0,607.2,0,0,1.386294,6.408858,0,0,0,1,0,0,76.1,8.905241,1.386294,4.084009,1
-11,2,0,1,5,229771,0,7369.501,52.01917,1,12,1,40.25501,42.72495,32.60474,0,0,115.5847,0,0,0,3,0,4,80.9,20.7,1,76.1,0,607.2,0,0,1.386294,6.408858,0,0,0,1,0,0,76.1,8.905241,1.386294,4.750004,1
-11,2,0,1,1,229772,0,7369.501,50.09993,0,12,1,6.27287,0,0,0,0,6.27287,0,0,0,1,0,4,76.6,17.2,1,37.5,0,607.2,0,0,1.386294,6.408858,0,0,0,0,1,0,37.5,8.905241,1.386294,1.836234,1
-11,2,0,1,2,229772,0,7369.501,51.09993,0,12,1,117.2513,1.672273,46.15089,0,0,165.0745,0,0,0,2,6,4,76.6,17.2,1,37.5,0,607.2,0,0,1.386294,6.408858,0,0,0,0,1,0,37.5,8.905241,1.386294,5.106397,1
-11,2,0,1,3,229772,0,7369.501,52.09993,0,12,1,37.88546,0,0,0,0,37.88546,0,0,0,1,3,4,76.6,17.2,1,37.5,0,607.2,0,0,1.386294,6.408858,0,0,0,0,1,0,37.5,8.905241,1.386294,3.634567,1
-11,2,0,1,4,229772,0,7369.501,53.09993,0,12,1,547.0161,99.50404,0,0,0,646.5201,0,0,0,8,8,4,76.6,17.2,1,37.5,0,607.2,0,0,1.386294,6.408858,0,0,0,0,1,0,37.5,8.905241,1.386294,6.471604,1
-11,2,0,1,5,229772,0,7369.501,54.09993,0,12,1,210.1275,88.94717,24.33516,0,0,323.4099,0,0,0,4,5,4,76.6,17.2,1,37.5,0,607.2,0,0,1.386294,6.408858,0,0,0,0,1,0,37.5,8.905241,1.386294,5.77892,1
-11,2,0,1,1,229773,0,7369.501,10.38741,1,12,1,14.11396,0,0,0,0,14.11396,0,0,0,2,0,4,86.7,11.84267,0,100,0,607.2,1,1,1.386294,6.408858,0,0,0,0,0,0,100,8.905241,1.386294,2.647164,1
-11,2,0,1,2,229773,0,7369.501,11.38741,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,11.84267,0,100,0,607.2,1,1,1.386294,6.408858,0,0,0,0,0,0,100,8.905241,1.386294,,0
-11,2,0,1,3,229773,0,7369.501,12.38741,1,12,1,25.11013,2.035242,0,0,0,27.14537,0,0,0,3,0,4,86.7,11.84267,0,100,0,607.2,1,1,1.386294,6.408858,0,0,0,0,0,0,100,8.905241,1.386294,3.301207,1
-11,2,0,1,4,229773,0,7369.501,13.38741,1,12,1,15.12097,9.008064,0,0,0,24.12903,0,0,0,2,0,4,86.7,11.84267,0,100,0,607.2,1,1,1.386294,6.408858,0,0,0,0,0,0,100,8.905241,1.386294,3.183416,1
-11,2,0,1,5,229773,0,7369.501,14.38741,1,12,1,59.01639,12.28415,0,0,0,71.30054,0,0,0,6,0,4,86.7,11.84267,0,100,0,607.2,1,1,1.386294,6.408858,0,0,0,0,0,0,100,8.905241,1.386294,4.266904,1
-11,2,0,1,1,229774,0,7369.501,12.26831,0,12,1,10.45478,0,0,0,0,10.45478,0,0,0,1,0,4,83.3,11.84267,0,88.9,0,607.2,1,0,1.386294,6.408858,0,0,0,0,0,0,88.9,8.905241,1.386294,2.34706,1
-11,2,0,1,2,229774,0,7369.501,13.26831,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,11.84267,0,88.9,0,607.2,1,0,1.386294,6.408858,0,0,0,0,0,0,88.9,8.905241,1.386294,,0
-11,2,0,1,3,229774,0,7369.501,14.26831,0,12,1,6.60793,0,26.51982,0,0,33.12775,0,0,0,1,0,4,83.3,11.84267,0,88.9,0,607.2,1,0,1.386294,6.408858,0,0,0,0,0,0,88.9,8.905241,1.386294,3.500371,1
-11,2,0,1,4,229774,0,7369.501,15.26831,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,11.84267,0,88.9,0,607.2,1,0,1.386294,6.408858,0,0,0,0,0,0,88.9,8.905241,1.386294,,0
-11,2,0,1,5,229774,0,7369.501,16.26831,0,12,1,16.39344,0,0,0,0,16.39344,0,0,0,1,0,4,83.3,11.84267,0,88.9,0,607.2,1,0,1.386294,6.408858,0,0,0,0,0,0,88.9,8.905241,1.386294,2.796881,1
-13,2,0,1,1,229799,0,19802.93,1.451061,0,14,1,67.21269,18.44514,0,0,0,85.65783,0,0,0,9,0,4,81.35272,11.84267,1,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,4.450361,1
-13,2,0,1,2,229799,0,19802.93,2.451061,0,14,1,273.8892,14.2666,0,0,307.6684,595.8242,1,0,0,11,31,4,81.35272,11.84267,1,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,6.389946,1
-13,2,0,1,3,229799,0,19802.93,3.451061,0,14,1,565.8472,49.06058,0,0,0,614.9078,0,0,0,14,70,4,81.35272,11.84267,1,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,6.421473,1
-13,2,0,1,1,229800,0,19802.93,3.175907,1,14,1,121.8149,147.9043,32.19449,0,0,301.9137,0,0,0,14,0,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,5.710141,1
-13,2,0,1,2,229800,0,19802.93,4.175907,1,14,1,65.45628,77.77831,0,0,0,143.2346,0,0,0,8,0,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,4.964484,1
-13,2,0,1,3,229800,0,19802.93,5.175907,1,14,1,517.5593,83.55136,30.61018,0,0,631.7208,0,0,0,17,0,4,81.35272,11.84267,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.893636,1.386294,6.448448,1
-13,2,0,1,1,229801,0,19802.93,31.14031,1,14,1,29.38118,13.46334,0,0,0,42.84451,0,0,0,1,1,4,73.2,17.2,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.893636,1.386294,3.757578,1
-13,2,0,1,2,229801,0,19802.93,32.14032,1,14,1,75.48973,81.11324,0,0,206.2112,362.8141,1,0,0,5,0,4,73.2,17.2,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.893636,1.386294,5.893891,1
-13,2,0,1,3,229801,0,19802.93,33.14032,1,14,1,31.71642,21.30816,0,0,0,53.02458,0,0,0,2,0,4,73.2,17.2,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.893636,1.386294,3.970756,1
-13,2,0,1,1,229802,0,19802.93,32.65435,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,76.6,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,89.8,9.893636,1.386294,,0
-13,2,0,1,2,229802,0,19802.93,33.65435,0,16,1,40.37267,12.12136,34.73483,0,0,87.22886,0,0,0,3,0,4,76.6,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,89.8,9.893636,1.386294,4.468535,1
-13,2,0,1,3,229802,0,19802.93,34.65435,0,16,1,35.27217,41.47937,26.03161,0,0,102.7831,0,0,0,3,0,4,76.6,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,89.8,9.893636,1.386294,4.632621,1
-16,2,95,0,1,229812,0,10601.75,53.90007,0,14,1,8.243174,2.189593,0,0,0,10.43277,0,0,0,1,0,1,93.1,13.8,0,71.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.268869,0,2.344952,1
-16,2,95,0,2,229812,0,10601.75,54.90007,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,13.8,0,71.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.268869,0,,0
-16,2,95,0,3,229812,0,10601.75,55.90007,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,13.8,0,71.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.268869,0,,0
-16,2,95,0,4,229812,0,10601.75,56.90007,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,13.8,0,71.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.268869,0,,0
-16,2,95,0,5,229812,0,10601.75,57.90007,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,13.8,0,71.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.268869,0,,0
-6,2,25,0,1,229823,0,5543.108,27.29637,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,58,3.4,0,64.8,715.9,715.9,0,0,0,6.573541,0,3.258096,7.959835,1,0,0,64.8,8.620491,0,,0
-6,2,25,0,2,229823,0,5543.108,28.29637,0,16,1,35.35595,0,0,0,0,35.35595,0,0,0,3,1,1,58,3.4,0,64.8,715.9,715.9,0,0,0,6.573541,0,3.258096,7.959835,1,0,0,64.8,8.620491,0,3.565467,1
-6,2,25,0,3,229823,0,5543.108,29.29637,0,16,1,5.267779,0,0,0,0,5.267779,0,0,0,1,0,1,58,3.4,0,64.8,715.9,715.9,0,0,0,6.573541,0,3.258096,7.959835,1,0,0,64.8,8.620491,0,1.661609,1
-11,2,0,0,1,229826,0,17655.13,16.07666,0,10,1,12.4805,6.432657,0,0,0,18.91316,0,0,0,2,0,5,68.8,0,0,61.4,0,336.24,1,0,1.609438,5.817825,0,0,0,1,0,0,61.4,9.778838,1.609438,2.939858,1
-11,2,0,0,2,229826,0,17655.13,17.07666,0,10,1,61.63402,40.57334,0,0,0,102.2074,0,0,0,4,0,5,68.8,0,0,61.4,0,336.24,1,0,1.609438,5.817825,0,0,0,1,0,0,61.4,9.778838,1.609438,4.627004,1
-11,2,0,0,3,229826,0,17655.13,18.07666,0,10,1,61.8964,25.39508,0,0,0,87.29148,0,0,0,6,0,4,68.8,0,0,61.4,0,336.24,0,0,1.386294,5.817825,0,0,0,1,0,0,61.4,9.778838,1.386294,4.469253,1
-11,2,0,0,1,229827,0,17655.13,38.17112,1,10,1,87.6235,45.24181,33.79615,0,0,166.6615,0,0,0,10,0,5,80.3,27.6,0,65.9,0,336.24,0,0,1.609438,5.817825,0,0,0,1,0,0,65.9,9.778838,1.609438,5.115964,1
-11,2,0,0,2,229827,0,17655.13,39.17112,1,10,1,49.68944,33.41615,0,0,0,83.10559,0,0,0,8,0,5,80.3,27.6,0,65.9,0,336.24,0,0,1.609438,5.817825,0,0,0,1,0,0,65.9,9.778838,1.609438,4.420112,1
-11,2,0,0,3,229827,0,17655.13,40.17112,1,10,1,91.19842,93.3626,0,0,0,184.561,0,0,0,5,0,4,80.3,27.6,0,65.9,0,336.24,0,0,1.386294,5.817825,0,0,0,1,0,0,65.9,9.778838,1.386294,5.21798,1
-11,2,0,0,1,229828,0,17655.13,18.16564,0,11,1,65.0026,25.28861,0,0,0,90.29121,0,0,0,9,0,5,78.2,6.9,0,81.8,0,336.24,0,0,1.609438,5.817825,0,0,0,0,0,0,81.8,9.778838,1.609438,4.50304,1
-11,2,0,0,2,229828,0,17655.13,19.16564,0,11,1,26.75585,9.818442,0,0,0,36.5743,0,0,0,2,0,5,78.2,6.9,0,81.8,0,336.24,0,0,1.609438,5.817825,0,0,0,0,0,0,81.8,9.778838,1.609438,3.599346,1
-11,2,0,0,3,229828,0,17655.13,20.16564,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,81.8,0,336.24,0,0,1.386294,5.817825,0,0,0,0,0,0,81.8,9.778838,1.386294,,0
-11,2,0,0,1,229829,0,17655.13,19.54552,1,12,1,121.6849,41.99688,0,0,0,163.6817,0,0,0,9,0,5,73.4,3.4,0,62.5,0,336.24,0,0,1.609438,5.817825,0,0,0,0,0,0,62.5,9.778838,1.609438,5.097924,1
-11,2,0,0,2,229829,0,17655.13,20.54552,1,12,1,118.7291,31.23746,0,0,0,149.9666,0,0,0,11,0,5,73.4,3.4,0,62.5,0,336.24,0,0,1.609438,5.817825,0,0,0,0,0,0,62.5,9.778838,1.609438,5.010412,1
-11,2,0,0,1,229830,0,17655.13,30.0616,0,12,1,60.84243,0,0,0,0,60.84243,0,0,0,4,0,5,80.3,10.3,0,64.8,0,336.24,0,0,1.609438,5.817825,0,0,0,1,0,0,64.8,9.778838,1.609438,4.108287,1
-11,2,0,0,2,229830,0,17655.13,31.0616,0,12,1,14.33349,9.268991,0,0,0,23.60248,0,0,0,2,0,5,80.3,10.3,0,64.8,0,336.24,0,0,1.609438,5.817825,0,0,0,1,0,0,64.8,9.778838,1.609438,3.161352,1
-11,2,0,0,3,229830,0,17655.13,32.0616,0,12,1,9.657595,0,0,0,0,9.657595,0,0,0,1,0,4,80.3,10.3,0,64.8,0,336.24,0,0,1.386294,5.817825,0,0,0,1,0,0,64.8,9.778838,1.386294,2.267745,1
-11,2,0,0,1,229833,0,11348.97,3.381246,1,16,1,20.80083,3.884555,0,0,0,24.68539,0,0,0,3,0,5,81.35272,11.84267,0,70.4,0,0,1,1,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,3.206211,1
-11,2,0,0,2,229833,0,11348.97,4.381246,1,16,1,38.70043,5.475394,0,0,0,44.17582,0,0,0,5,0,5,81.35272,11.84267,0,70.4,0,0,1,1,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,3.788178,1
-11,2,0,0,3,229833,0,11348.97,5.381246,1,16,1,13.16945,0,0,0,0,13.16945,0,0,0,2,0,5,81.35272,11.84267,0,70.4,0,0,1,1,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,2.577899,1
-11,2,0,0,1,229834,0,11348.97,33.05133,1,16,1,40.0416,13.48414,21.84087,0,1760.208,1835.575,2,0,0,2,2,5,77.7,10.3,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.33697,1.609438,7.515113,1
-11,2,0,0,2,229834,0,11348.97,34.05133,1,16,1,102.2456,21.47635,0,0,0,123.7219,0,0,0,9,0,5,77.7,10.3,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.33697,1.609438,4.818037,1
-11,2,0,0,3,229834,0,11348.97,35.05133,1,16,1,65.84724,0,17.55926,0,0,83.40649,0,0,0,3,1,5,77.7,10.3,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.33697,1.609438,4.423726,1
-11,2,0,0,1,229835,0,11348.97,34.03422,0,16,1,15.60062,0,39.00156,0,0,54.60218,0,0,0,0,1,5,89.9,3.4,0,60.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,60.7,9.33697,1.609438,4.000074,1
-11,2,0,0,2,229835,0,11348.97,35.03422,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,89.9,3.4,0,60.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,60.7,9.33697,1.609438,,0
-11,2,0,0,3,229835,0,11348.97,36.03422,0,16,1,8.779632,0,26.77788,0,0,35.55751,0,0,0,0,1,5,89.9,3.4,0,60.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,60.7,9.33697,1.609438,3.571151,1
-11,2,0,0,1,229836,0,11348.97,9.38809,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,11.84267,0,81.5,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.5,9.33697,1.609438,,0
-11,2,0,0,2,229836,0,11348.97,10.38809,1,16,1,42.76159,0,0,0,0,42.76159,0,0,0,4,0,5,78.3,11.84267,0,81.5,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.5,9.33697,1.609438,3.75564,1
-11,2,0,0,3,229836,0,11348.97,11.38809,1,16,1,34.67954,0,0,0,0,34.67954,0,0,0,4,0,5,78.3,11.84267,0,81.5,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.5,9.33697,1.609438,3.54615,1
-11,2,0,0,1,229837,0,11348.97,1.587953,0,16,1,112.3245,17.60271,0,0,0,129.9272,0,0,0,12,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,4.866974,1
-11,2,0,0,2,229837,0,11348.97,2.587954,0,16,1,77.87865,14.32394,7.520306,0,0,99.72289,0,0,0,12,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,4.602395,1
-11,2,0,0,3,229837,0,11348.97,3.587954,0,16,1,59.70149,0,0,0,0,59.70149,0,0,0,6,0,5,81.35272,11.84267,0,70.4,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.4,9.33697,1.609438,4.089357,1
-13,2,0,1,1,229838,0,4183.578,27.92882,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,3.4,0,100,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,100,8.339161,0,,0
-13,2,0,1,2,229838,0,4183.578,28.92882,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,3.4,0,100,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,100,8.339161,0,,0
-13,2,0,1,3,229838,0,4183.578,29.92882,0,16,1,17.55926,0,0,0,0,17.55926,0,0,0,1,0,1,72.3,3.4,0,100,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,100,8.339161,0,2.865582,1
-13,2,0,1,4,229838,0,4183.578,30.92882,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,3.4,0,100,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,100,8.339161,0,,0
-13,2,0,1,5,229838,0,4183.578,31.92882,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,72.3,3.4,0,100,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,100,8.339161,0,,0
-15,2,95,0,1,229845,0,10120.16,46.5681,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,95.2,3.4,0,88.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.222383,.6931472,,0
-15,2,95,0,2,229845,0,10120.16,47.5681,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,95.2,3.4,0,88.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.222383,.6931472,,0
-15,2,95,0,3,229845,0,10120.16,48.5681,0,12,1,0,0,0,0,1203.783,1203.783,1,0,0,0,0,2,95.2,3.4,0,88.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.222383,.6931472,7.093225,1
-15,2,95,0,4,229845,0,10120.16,49.5681,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,95.2,3.4,0,88.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.222383,.6931472,,0
-15,2,95,0,5,229845,0,10120.16,50.5681,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,95.2,3.4,0,88.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.222383,.6931472,,0
-15,2,95,0,1,229846,0,10120.16,18.31075,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,38.8,10.3,1,60.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.222383,.6931472,,0
-15,2,95,0,2,229846,0,10120.16,19.31075,0,11,1,190.3422,0,0,14.0647,0,190.3422,0,0,1,5,0,2,38.8,10.3,1,60.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.222383,.6931472,5.248824,1
-15,2,95,0,3,229846,0,10120.16,20.31075,0,11,1,12.46776,0,0,0,1391.84,1404.308,2,0,0,2,0,2,38.8,10.3,1,60.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.222383,.6931472,7.2473,1
-15,2,95,0,4,229846,0,10120.16,21.31075,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,38.8,10.3,1,60.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.222383,.6931472,,0
-15,2,95,0,5,229846,0,10120.16,22.31075,0,11,1,70.62987,0,0,0,277.6504,348.2802,1,0,0,2,0,2,38.8,10.3,1,60.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.2,9.222383,.6931472,5.853007,1
-13,2,0,0,1,229847,0,8130.792,25.57153,0,17,1,47.84192,3.957358,17.4207,0,0,69.21997,0,0,0,3,1,2,80.9,13.8,0,86.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.4,9.003536,.6931472,4.237289,1
-13,2,0,0,2,229847,0,8130.792,26.57153,0,17,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,13.8,0,86.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.4,9.003536,.6931472,,0
-13,2,0,0,3,229847,0,8130.792,27.57153,0,17,1,57.85777,0,0,0,0,57.85777,0,0,0,0,2,2,80.9,13.8,0,86.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.4,9.003536,.6931472,4.057988,1
-13,2,0,0,4,229847,0,8130.792,28.57153,0,17,1,43.07938,0,29.4296,0,0,72.50897,0,0,0,1,1,2,80.9,13.8,0,86.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.4,9.003536,.6931472,4.28371,1
-13,2,0,0,5,229847,0,8130.792,29.57153,0,17,1,29.73169,0,28.56418,0,0,58.29587,0,0,0,0,1,2,80.9,13.8,0,86.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.4,9.003536,.6931472,4.065531,1
-13,2,0,0,1,229848,0,8130.792,23.47707,1,13,1,72.5429,19.39678,32.80811,0,0,124.7478,0,0,0,4,1,2,93.6,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,93.2,9.003536,.6931472,4.826294,1
-13,2,0,0,2,229848,0,8130.792,24.47707,1,13,1,0,11.42379,0,0,0,11.42379,0,0,0,0,0,2,93.6,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,93.2,9.003536,.6931472,2.435698,1
-13,2,0,0,3,229848,0,8130.792,25.47707,1,13,1,59.37226,30.0439,30.93064,0,0,120.3468,0,0,0,4,1,2,93.6,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,93.2,9.003536,.6931472,4.790378,1
-13,2,0,0,4,229848,0,8130.792,26.47707,1,13,1,145.6522,46.00319,0,0,0,191.6554,0,0,0,44,0,2,93.6,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,93.2,9.003536,.6931472,5.255699,1
-13,2,0,0,5,229848,0,8130.792,27.47707,1,13,1,195.0689,20.18492,27.47643,0,0,242.7302,0,0,0,57,3,2,93.6,3.4,0,93.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,93.2,9.003536,.6931472,5.491951,1
-13,2,0,1,1,229878,0,15204.69,12.13689,0,16,1,50.052,0,0,0,0,50.052,0,0,0,5,0,5,83.3,11.84267,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.629425,1.609438,3.913063,1
-13,2,0,1,2,229878,0,15204.69,13.13689,0,16,1,133.3015,7.35786,24.36694,137.6015,1287.74,1452.766,2,0,31,11,0,5,83.3,11.84267,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.629425,1.609438,7.281225,1
-13,2,0,1,3,229878,0,15204.69,14.13689,0,16,1,38.19139,0,7.023705,42.14223,0,45.2151,0,0,13,3,0,5,83.3,11.84267,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.629425,1.609438,3.811431,1
-13,2,0,1,1,229879,0,15204.69,16.33949,0,16,1,18.33073,5.200208,0,0,0,23.53094,0,0,0,2,0,5,58,10.3,0,69.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.629425,1.609438,3.158316,1
-13,2,0,1,2,229879,0,15204.69,17.33949,0,16,1,16.72241,2.293359,23.88915,137.6015,0,42.90492,0,0,31,1,0,5,58,10.3,0,69.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.629425,1.609438,3.758986,1
-13,2,0,1,3,229879,0,15204.69,18.33949,0,16,1,258.5382,12.48903,31.72959,42.14223,13776.92,14079.68,2,0,13,11,0,5,58,10.3,0,69.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.629425,1.609438,9.552488,1
-13,2,0,1,1,229880,0,15204.69,40.49281,1,16,1,135.5434,17.5403,0,371.8149,0,153.0837,0,0,15,4,0,5,28.2,17.2,0,46.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,46.6,9.629425,1.609438,5.030985,1
-13,2,0,1,2,229880,0,15204.69,41.49281,1,16,1,44.43383,97.94553,15.28906,730.0526,0,157.6684,0,0,45,5,0,5,28.2,17.2,0,46.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,46.6,9.629425,1.609438,5.060494,1
-13,2,0,1,3,229880,0,15204.69,42.49281,1,16,1,92.62511,124.6708,25.02195,937.0325,1393.064,1635.382,2,0,62,6,0,5,28.2,17.2,0,46.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,46.6,9.629425,1.609438,7.399632,1
-13,2,0,1,1,229881,0,15204.69,44.15332,0,19,1,25.48102,9.916797,0,0,0,35.39782,0,0,0,2,0,5,80.3,17.2,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.629425,1.609438,3.56665,1
-13,2,0,1,2,229881,0,15204.69,45.15332,0,19,1,29.14477,15.48017,16.72241,137.6015,0,61.34735,0,0,31,3,0,5,80.3,17.2,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.629425,1.609438,4.116552,1
-13,2,0,1,3,229881,0,15204.69,46.15332,0,19,1,37.31343,21.35645,9.218613,548.9728,606.6945,674.5829,1,0,54,3,0,5,80.3,17.2,0,73.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.629425,1.609438,6.514095,1
-13,2,0,1,1,229882,0,15204.69,15.03354,0,16,1,7.280291,0,0,45.50182,0,7.280291,0,0,4,1,0,5,77.6,10.3,0,75,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,75,9.629425,1.609438,1.985171,1
-13,2,0,1,2,229882,0,15204.69,16.03354,0,16,1,0,0,0,137.6015,0,0,0,0,31,0,0,5,77.6,10.3,0,75,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,75,9.629425,1.609438,,0
-13,2,0,1,3,229882,0,15204.69,17.03354,0,16,1,4.389816,0,0,804.324,0,4.389816,0,0,52,0,0,5,77.6,10.3,0,75,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,75,9.629425,1.609438,1.479287,1
-13,2,0,1,1,229888,0,8812.903,8.358659,0,15,1,28.34113,16.04264,0,0,0,44.38377,0,0,0,0,0,4,93.3,11.84267,0,85.2,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,85.2,9.084085,1.386294,3.792874,1
-13,2,0,1,2,229888,0,8812.903,9.358659,0,15,1,0,16.98519,0,0,0,16.98519,0,0,0,0,0,4,93.3,11.84267,0,85.2,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,85.2,9.084085,1.386294,2.832342,1
-13,2,0,1,3,229888,0,8812.903,10.35866,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,11.84267,0,85.2,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,85.2,9.084085,1.386294,,0
-13,2,0,1,1,229889,0,8812.903,34.27242,1,15,1,81.77327,23.73895,0,0,0,105.5122,0,0,0,3,0,4,78.7,10.3,0,86.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,86.4,9.084085,1.386294,4.658827,1
-13,2,0,1,2,229889,0,8812.903,35.27242,1,15,1,6.21118,6.765409,0,0,0,12.97659,0,0,0,0,0,4,78.7,10.3,0,86.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,86.4,9.084085,1.386294,2.563147,1
-13,2,0,1,3,229889,0,8812.903,36.27242,1,15,1,0,0,0,0,0,0,0,0,0,0,0,4,78.7,10.3,0,86.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,86.4,9.084085,1.386294,,0
-13,2,0,1,1,229890,0,8812.903,35.154,0,20,1,23.40094,0,30.49402,0,0,53.89495,0,0,0,1,1,4,82.4,0,0,78.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,78.4,9.084085,1.386294,3.987037,1
-13,2,0,1,2,229890,0,8812.903,36.154,0,20,1,89.82322,8.499762,0,0,0,98.32298,0,0,0,2,0,4,82.4,0,0,78.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,78.4,9.084085,1.386294,4.588258,1
-13,2,0,1,3,229890,0,8812.903,37.154,0,20,1,14.81563,0,0,0,0,14.81563,0,0,0,1,0,4,82.4,0,0,78.4,450,195.27,0,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,78.4,9.084085,1.386294,2.695683,1
-13,2,0,1,1,229891,0,8812.903,6.198494,0,15,1,13.00052,3.957358,0,0,0,16.95788,0,0,0,1,0,4,93.3,11.84267,0,96.3,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,96.3,9.084085,1.386294,2.830733,1
-13,2,0,1,2,229891,0,8812.903,7.198494,0,15,1,16.00573,0,0,0,0,16.00573,0,0,0,1,0,4,93.3,11.84267,0,96.3,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,96.3,9.084085,1.386294,2.772947,1
-13,2,0,1,3,229891,0,8812.903,8.198494,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,11.84267,0,96.3,450,195.27,1,0,1.386294,5.274383,1,4.564348,6.160541,0,0,0,96.3,9.084085,1.386294,,0
-16,2,95,0,1,229907,0,4181.818,24.69815,0,12,1,12.44204,0,0,0,0,12.44204,0,0,0,1,0,1,86.7,10.3,0,59.1,848.4,848.4,0,0,0,6.743352,0,4.564348,6.794645,1,0,0,59.1,8.33874,0,2.521081,1
-16,2,95,0,2,229907,0,4181.818,25.69815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.3,0,59.1,848.4,848.4,0,0,.6931472,6.743352,0,4.564348,6.794645,1,0,0,59.1,8.33874,.6931472,,0
-16,2,95,0,3,229907,0,4181.818,26.69815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.3,0,59.1,848.4,848.4,0,0,.6931472,6.743352,0,4.564348,6.794645,1,0,0,59.1,8.33874,.6931472,,0
-16,2,95,0,4,229907,0,4181.818,27.69815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.3,0,59.1,848.4,848.4,0,0,.6931472,6.743352,0,4.564348,6.794645,1,0,0,59.1,8.33874,.6931472,,0
-16,2,95,0,5,229907,0,4181.818,28.69815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.3,0,59.1,848.4,848.4,0,0,.6931472,6.743352,0,4.564348,6.794645,1,0,0,59.1,8.33874,.6931472,,0
-11,2,0,0,1,229910,0,8665.641,17.35797,0,11,1,59.82839,0,0,0,0,59.82839,0,0,0,2,0,3,58,6.9,0,52.3,0,0,1,0,1.098612,0,0,0,0,1,0,0,52.3,9.067237,1.098612,4.09148,1
-11,2,0,0,2,229910,0,8665.641,18.35797,0,11,1,33.9226,7.095079,0,0,0,41.01768,0,0,0,2,0,3,58,6.9,0,52.3,0,0,0,0,1.098612,0,0,0,0,1,0,0,52.3,9.067237,1.098612,3.714003,1
-11,2,0,0,1,229911,0,8665.641,14.51335,0,11,1,30.94124,0,0,0,0,30.94124,0,0,0,2,0,3,53.2,10.3,0,87.5,0,0,1,0,1.098612,0,0,0,0,1,0,0,87.5,9.067237,1.098612,3.43209,1
-11,2,0,0,2,229911,0,8665.641,15.51335,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,53.2,10.3,0,87.5,0,0,1,0,1.098612,0,0,0,0,1,0,0,87.5,9.067237,1.098612,,0
-11,2,0,0,3,229911,0,8665.641,16.51335,0,11,1,23.37577,2.172959,0,0,0,25.54873,0,0,0,1,0,2,53.2,10.3,0,87.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,87.5,9.067237,.6931472,3.240587,1
-11,2,0,0,1,229912,0,8665.641,35.45243,1,11,1,18.98076,11.90848,0,0,0,30.88924,0,0,0,1,0,3,43.6,27.6,1,70.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,70.5,9.067237,1.098612,3.430408,1
-11,2,0,0,2,229912,0,8665.641,36.45243,1,11,1,49.68944,12.18347,0,0,0,61.87291,0,0,0,4,0,3,43.6,27.6,1,70.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,70.5,9.067237,1.098612,4.125082,1
-11,2,0,0,3,229912,0,8665.641,37.45243,1,11,1,80.55312,19.20544,0,0,0,99.75856,0,0,0,4,0,2,43.6,27.6,1,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,9.067237,.6931472,4.602753,1
-5,2,25,1,1,229913,0,6803.519,2.395619,0,12,1,46.00105,13.01098,0,0,0,59.01202,0,0,0,3,0,4,81.35272,11.84267,0,81.5,304,304,1,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,81.5,8.825342,1.386294,4.077741,1
-5,2,25,1,2,229913,0,6803.519,3.395619,0,12,1,312.8544,19.06295,0,0,0,331.9174,0,0,0,33,0,4,81.35272,11.84267,0,81.5,304,304,1,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,81.5,8.825342,1.386294,5.804886,1
-5,2,25,1,3,229913,0,6803.519,4.395619,0,12,1,30.17621,0,0,0,315.3965,345.5727,1,0,0,3,0,4,81.35272,11.84267,0,81.5,304,304,1,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,81.5,8.825342,1.386294,5.845203,1
-5,2,25,1,4,229913,0,6803.519,5.395619,0,12,1,79.33064,1.915323,0,0,0,81.24596,0,0,0,6,0,4,81.35272,11.84267,0,81.5,304,304,1,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,81.5,8.825342,1.386294,4.397481,1
-5,2,25,1,5,229913,0,6803.519,6.395619,0,12,1,42.62295,19.31876,0,0,0,61.94171,0,0,0,5,0,4,81.35272,11.84267,0,81.5,304,304,1,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,81.5,8.825342,1.386294,4.126194,1
-5,2,25,1,1,229914,0,6803.519,22.62012,1,12,1,23.52326,1.641401,0,0,0,25.16466,0,0,0,3,0,4,91,3.4,0,89.8,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,89.8,8.825342,1.386294,3.225441,1
-5,2,25,1,2,229914,0,6803.519,23.62012,1,12,1,17.77991,4.906295,0,0,0,22.68621,0,0,0,1,0,4,91,3.4,0,89.8,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,89.8,8.825342,1.386294,3.121757,1
-5,2,25,1,3,229914,0,6803.519,24.62012,1,12,1,19.82379,0,0,0,0,19.82379,0,0,0,1,0,4,91,3.4,0,89.8,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,89.8,8.825342,1.386294,2.986883,1
-5,2,25,1,4,229914,0,6803.519,25.62012,1,12,1,4.435484,0,0,0,0,4.435484,0,0,0,1,0,4,91,3.4,0,89.8,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,89.8,8.825342,1.386294,1.489637,1
-5,2,25,1,5,229914,0,6803.519,26.62012,1,12,1,5.82878,9.763206,0,0,0,15.59199,0,0,0,1,0,4,91,3.4,0,89.8,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,89.8,8.825342,1.386294,2.746757,1
-5,2,25,1,1,229915,0,6803.519,23.40862,0,13,1,14.6367,0,0,0,0,14.6367,0,0,0,1,0,4,79.3,0,0,85.2,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.683532,1
-5,2,25,1,2,229915,0,6803.519,24.40862,0,13,1,7.92888,2.609323,0,0,0,10.5382,0,0,0,1,0,4,79.3,0,0,85.2,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.355007,1
-5,2,25,1,3,229915,0,6803.519,25.40862,0,13,1,0,1.872247,0,0,0,1.872247,0,0,0,0,0,4,79.3,0,0,85.2,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,.6271392,1
-5,2,25,1,4,229915,0,6803.519,26.40862,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,0,0,85.2,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,,0
-5,2,25,1,5,229915,0,6803.519,27.40862,0,13,1,52.64117,0,0,0,0,52.64117,0,0,0,1,4,4,79.3,0,0,85.2,304,304,0,0,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,3.963498,1
-11,2,0,0,1,229919,0,13936.07,30.1629,1,13,1,23.18393,13.41061,0,0,0,36.59454,0,0,0,2,0,4,76.1,3.4,1,80.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,80.7,9.542308,1.386294,3.599899,1
-11,2,0,0,2,229919,0,13936.07,31.1629,1,13,1,15.15152,0,28.22917,0,0,43.38068,0,0,0,1,0,4,76.1,3.4,1,80.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,80.7,9.542308,1.386294,3.770014,1
-11,2,0,0,3,229919,0,13936.07,32.1629,1,13,1,185.0022,11.41309,10.83658,0,0,207.2518,0,0,0,4,9,4,76.1,3.4,1,80.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,80.7,9.542308,1.386294,5.333935,1
-11,2,0,0,1,229920,0,13936.07,33.48118,0,16,1,171.5611,0,12.87996,0,0,184.441,0,0,0,1,4,4,72.9,6.9,0,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.542308,1.386294,5.21733,1
-11,2,0,0,2,229920,0,13936.07,34.48118,0,16,1,149.2898,8.148674,32.01704,0,0,189.4555,0,0,0,6,0,4,72.9,6.9,0,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.542308,1.386294,5.244154,1
-11,2,0,0,3,229920,0,13936.07,35.48118,0,16,1,70.65453,11.10533,0,0,0,81.75986,0,0,0,3,0,4,72.9,6.9,0,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.542308,1.386294,4.403787,1
-11,2,0,0,1,229921,0,13936.07,7.534565,1,13,1,18.03194,0,0,0,0,18.03194,0,0,0,1,1,4,80,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.542308,1.386294,2.892145,1
-11,2,0,0,2,229921,0,13936.07,8.534565,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.542308,1.386294,,0
-11,2,0,0,3,229921,0,13936.07,9.534565,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,80,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,9.542308,1.386294,,0
-11,2,0,0,1,229922,0,13936.07,5.360712,0,13,1,47.65585,11.61772,0,0,0,59.27357,0,0,0,7,1,4,91.7,11.84267,0,55.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,55.6,9.542308,1.386294,4.082163,1
-11,2,0,0,2,229922,0,13936.07,6.360712,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,11.84267,0,55.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,55.6,9.542308,1.386294,,0
-11,2,0,0,3,229922,0,13936.07,7.360712,0,13,1,7.585609,0,0,0,0,7.585609,0,0,0,1,0,4,91.7,11.84267,0,55.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,55.6,9.542308,1.386294,2.026253,1
-16,2,95,1,1,229938,0,14281.53,37.90007,1,16,1,25.09148,19.63408,0,0,0,44.72556,0,0,0,2,0,5,94.1,13.8,0,97.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.566792,1.609438,3.800545,1
-16,2,95,1,2,229938,0,14281.53,38.90007,1,16,1,78.23162,2.397886,35.70399,0,0,116.3335,0,0,0,5,1,5,94.1,13.8,0,97.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.566792,1.609438,4.756461,1
-16,2,95,1,3,229938,0,14281.53,39.90007,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,13.8,0,97.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.566792,1.609438,,0
-16,2,95,1,4,229938,0,14281.53,40.90007,1,16,1,11.29032,3.842742,0,0,0,15.13306,0,0,0,1,0,5,94.1,13.8,0,97.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.566792,1.609438,2.716882,1
-16,2,95,1,5,229938,0,14281.53,41.90007,1,16,1,111.1111,0,46.38251,0,0,157.4936,0,0,0,5,0,5,94.1,13.8,0,97.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.566792,1.609438,5.059385,1
-16,2,95,1,1,229939,0,14281.53,37.33333,0,16,1,0,20.26137,0,0,0,20.26137,0,0,0,0,0,5,98.4,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.566792,1.609438,3.008716,1
-16,2,95,1,2,229939,0,14281.53,38.33333,0,16,1,0,0,27.87122,0,0,27.87122,0,0,0,0,0,5,98.4,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.566792,1.609438,3.327595,1
-16,2,95,1,3,229939,0,14281.53,39.33333,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,98.4,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.566792,1.609438,,0
-16,2,95,1,4,229939,0,14281.53,40.33333,0,16,1,60.08065,0,0,0,0,60.08065,0,0,0,5,0,5,98.4,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.566792,1.609438,4.095688,1
-16,2,95,1,5,229939,0,14281.53,41.33333,0,16,1,329.6903,35.12933,38.61567,0,7858.652,8262.088,2,0,0,5,0,5,98.4,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.566792,1.609438,9.019433,1
-16,2,95,1,1,229940,0,14281.53,13.99589,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,96.7,11.84267,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,,0
-16,2,95,1,2,229940,0,14281.53,14.99589,1,16,1,27.15041,0,28.83229,0,0,55.9827,0,0,0,2,0,5,96.7,11.84267,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,4.025043,1
-16,2,95,1,3,229940,0,14281.53,15.99589,1,16,1,30.837,0,0,0,0,30.837,0,0,0,2,0,5,96.7,11.84267,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,3.428715,1
-16,2,95,1,4,229940,0,14281.53,16.99589,1,16,1,8.064516,0,0,0,0,8.064516,0,0,0,1,0,5,96.7,11.84267,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,2.087474,1
-16,2,95,1,5,229940,0,14281.53,17.99589,1,16,1,32.05829,0,21.98907,0,0,54.04736,0,0,0,3,0,5,96.7,11.84267,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,3.989861,1
-16,2,95,1,1,229941,0,14281.53,11.00068,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,100,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,,0
-16,2,95,1,2,229941,0,14281.53,12.00068,0,16,1,18.50072,0,0,0,0,18.50072,0,0,0,2,0,5,100,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,2.91781,1
-16,2,95,1,3,229941,0,14281.53,13.00068,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,100,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,,0
-16,2,95,1,4,229941,0,14281.53,14.00068,0,16,1,0,9.866936,0,0,0,9.866936,0,0,0,0,0,5,100,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,2.289189,1
-16,2,95,1,5,229941,0,14281.53,15.00068,0,16,1,29.5082,2.892532,5.464481,0,572.4772,610.3425,1,0,0,1,0,5,100,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,6.41402,1
-16,2,95,1,1,229942,0,14281.53,6.398357,0,16,1,36.069,25.53058,0,0,0,61.59958,0,0,0,8,0,5,96.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,4.120655,1
-16,2,95,1,2,229942,0,14281.53,7.398357,0,16,1,55.23787,33.3061,0,0,0,88.54397,0,0,0,6,0,5,96.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,4.483499,1
-16,2,95,1,3,229942,0,14281.53,8.398357,0,16,1,15.85903,1.832599,0,0,0,17.69163,0,0,0,2,0,5,96.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,2.873092,1
-16,2,95,1,4,229942,0,14281.53,9.398357,0,16,1,39.81855,3.701613,0,0,0,43.52016,0,0,0,2,0,5,96.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,3.773224,1
-16,2,95,1,5,229942,0,14281.53,10.39836,0,16,1,134.0619,0,0,0,0,134.0619,0,0,0,7,0,5,96.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.566792,1.609438,4.898302,1
-13,2,0,0,1,229993,0,6859.824,20.54757,0,13,1,126.0175,0,9.27357,0,0,135.2911,0,0,0,1,9,2,80.9,6.9,0,77.3,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,77.3,8.833583,.6931472,4.907429,1
-13,2,0,0,2,229993,0,6859.824,21.54757,0,13,1,34.09091,0,0,0,0,34.09091,0,0,0,0,6,2,80.9,6.9,0,77.3,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,77.3,8.833583,.6931472,3.529031,1
-13,2,0,0,3,229993,0,6859.824,22.54757,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,6.9,0,77.3,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,77.3,8.833583,.6931472,,0
-13,2,0,0,1,229994,0,6859.824,54.87201,1,12,1,18.54714,8.191654,0,0,0,26.73879,0,0,0,1,0,2,86.7,10.3,0,71.6,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,71.6,8.833583,.6931472,3.286115,1
-13,2,0,0,2,229994,0,6859.824,55.87201,1,12,1,173.2955,10.02367,0,0,0,183.3191,0,0,0,19,5,2,86.7,10.3,0,71.6,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,71.6,8.833583,.6931472,5.211228,1
-13,2,0,0,3,229994,0,6859.824,56.87201,1,12,1,19.93932,5.656697,0,0,0,25.59601,0,0,0,1,0,2,86.7,10.3,0,71.6,300,514.54,0,0,.6931472,6.243273,1,4.564348,5.755076,0,0,0,71.6,8.833583,.6931472,3.242437,1
-17,2,25,0,1,230004,0,3701.466,25.3963,1,16,1,203.864,24.38434,33.53426,128.7996,0,261.7826,0,0,20,14,1,1,54.8,27.6,0,55.7,75,198.6,0,0,0,5.291293,0,3.258096,5.703783,1,0,0,55.7,8.216755,0,5.567514,1
-17,2,25,0,2,230004,0,3701.466,26.3963,1,16,1,121.9223,47.95928,13.25758,0,0,183.1392,0,0,0,11,0,1,54.8,27.6,0,55.7,75,198.6,0,0,0,5.291293,0,3.258096,5.703783,1,0,0,55.7,8.216755,0,5.210247,1
-17,2,25,0,3,230004,0,3701.466,27.3963,1,16,1,523.4504,15.1062,23.6671,0,0,562.2237,0,0,0,10,32,1,54.8,27.6,0,55.7,75,198.6,0,0,0,5.291293,0,3.258096,5.703783,1,0,0,55.7,8.216755,0,6.3319,1
-17,2,25,0,1,230006,0,8221.701,25.06229,1,16,1,65.62819,12.97242,3.013279,0,0,81.61389,0,0,0,3,1,2,69.1,3.4,0,70.5,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,70.5,9.014654,.6931472,4.401999,1
-17,2,25,0,2,230006,0,8221.701,26.06229,1,16,1,61.41585,20.58603,0,0,0,82.00188,0,0,0,6,0,2,69.1,3.4,0,70.5,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,70.5,9.014654,.6931472,4.406742,1
-17,2,25,0,3,230006,0,8221.701,27.06229,1,16,1,62.33878,43.30181,0,0,0,105.6406,0,0,0,6,0,2,69.1,3.4,0,70.5,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,70.5,9.014654,.6931472,4.660043,1
-14,2,95,1,1,230021,0,7490.909,11.83573,1,12,1,86.19968,0,0,0,0,86.19968,0,0,0,7,0,3,80,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,4.456666,1
-14,2,95,1,2,230021,0,7490.909,12.83573,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,,0
-14,2,95,1,3,230021,0,7490.909,13.83573,1,12,1,58.48018,13.85463,0,0,0,72.3348,0,0,0,6,0,3,80,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,4.281305,1
-14,2,95,1,1,230022,0,7490.909,10.55168,1,12,1,64.57397,5.462624,0,0,0,70.03659,0,0,0,6,0,3,83.3,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,4.249018,1
-14,2,95,1,2,230022,0,7490.909,11.55168,1,12,1,30.75444,0,.4805382,0,0,31.23498,0,0,0,2,0,3,83.3,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,3.441539,1
-14,2,95,1,3,230022,0,7490.909,12.55168,1,12,1,18.5022,0,0,0,0,18.5022,0,0,0,2,0,3,83.3,11.84267,0,96.3,420,420,1,1,1.098612,6.040255,0,4.564348,6.091548,0,0,0,96.3,8.921579,1.098612,2.91789,1
-14,2,95,1,1,230023,0,7490.909,36.24641,1,12,1,31.36435,0,0,0,0,31.36435,0,0,0,2,0,3,68.1,6.9,0,86.4,420,420,0,0,1.098612,6.040255,0,4.564348,6.091548,0,0,0,86.4,8.921579,1.098612,3.445672,1
-14,2,95,1,2,230023,0,7490.909,37.24641,1,12,1,21.62422,0,0,0,0,21.62422,0,0,0,2,0,3,68.1,6.9,0,86.4,420,420,0,0,1.098612,6.040255,0,4.564348,6.091548,0,0,0,86.4,8.921579,1.098612,3.073814,1
-14,2,95,1,3,230023,0,7490.909,38.24641,1,12,1,43.8326,13.56828,0,0,0,57.40088,0,0,0,3,0,3,68.1,6.9,0,86.4,420,420,0,0,1.098612,6.040255,0,4.564348,6.091548,0,0,0,86.4,8.921579,1.098612,4.05006,1
-15,2,95,0,1,230024,0,8607.038,52.0794,1,14,1,105.6157,104.6059,0,0,0,210.2215,0,0,0,5,0,3,53.7,20.7,1,71.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.060452,1.098612,5.348162,1
-15,2,95,0,2,230024,0,8607.038,53.0794,1,14,1,43.08712,82.87405,0,0,0,125.9612,0,0,0,5,0,3,53.7,20.7,1,71.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.060452,1.098612,4.835974,1
-15,2,95,0,3,230024,0,8607.038,54.0794,1,14,1,74.77243,62.49241,0,0,0,137.2648,0,0,0,4,0,3,53.7,20.7,1,71.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.060452,1.098612,4.921912,1
-15,2,95,0,1,230025,0,8607.038,18.19302,0,11,1,32.97269,0,0,0,0,32.97269,0,0,0,2,0,3,80.3,6.9,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.060452,1.098612,3.49568,1
-15,2,95,0,2,230025,0,8607.038,19.19302,0,11,1,91.78503,1.302083,0,0,0,93.08712,0,0,0,5,0,3,80.3,6.9,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.060452,1.098612,4.533536,1
-15,2,95,0,3,230025,0,8607.038,20.19302,0,11,1,364.1092,1.972258,0,0,0,366.0815,0,0,0,1,0,3,80.3,6.9,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.060452,1.098612,5.902856,1
-15,2,95,0,1,230026,0,8607.038,22.74607,1,16,1,19.26842,58.67594,0,0,0,77.94436,0,0,0,3,0,3,61.2,17.2,1,51.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.060452,1.098612,4.355995,1
-15,2,95,0,2,230026,0,8607.038,23.74607,1,16,1,28.88258,34.80114,0,0,0,63.68371,0,0,0,3,0,3,61.2,17.2,1,51.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.060452,1.098612,4.153929,1
-15,2,95,0,3,230026,0,8607.038,24.74607,1,16,1,74.44733,47.36888,0,912.4404,0,121.8162,0,0,47,3,0,3,61.2,17.2,1,51.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.060452,1.098612,4.802514,1
-13,2,0,0,1,230030,0,9126.687,23.30732,1,14,1,0,4.250386,0,0,0,4.250386,0,0,0,0,0,2,81.4,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.119067,.6931472,1.44701,1
-13,2,0,0,2,230030,0,9126.687,24.30732,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.119067,.6931472,,0
-13,2,0,0,3,230030,0,9126.687,25.30732,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.119067,.6931472,,0
-13,2,0,0,4,230030,0,9126.687,26.30732,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.119067,.6931472,,0
-13,2,0,0,5,230030,0,9126.687,27.30732,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.119067,.6931472,,0
-13,2,0,0,1,230032,0,9126.687,58.57906,1,10,1,21.12313,1.803194,0,0,0,22.92633,0,0,0,1,0,2,69.7,24.1,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,9.119067,.6931472,3.132286,1
-13,2,0,0,2,230032,0,9126.687,59.57906,1,10,1,22.25379,5.066288,61.92235,0,0,89.24242,0,0,0,2,1,2,69.7,24.1,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,9.119067,.6931472,4.491356,1
-13,2,0,0,3,230032,0,9126.687,60.57906,1,10,1,6.501951,1.278717,0,0,0,7.780667,0,0,0,1,0,2,69.7,24.1,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,9.119067,.6931472,2.051642,1
-13,2,0,0,4,230032,0,9126.687,61.57906,1,10,1,19.69279,0,0,0,0,19.69279,0,0,0,1,0,2,69.7,24.1,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,9.119067,.6931472,2.980253,1
-13,2,0,0,5,230032,0,9126.687,62.57906,1,10,1,77.28086,5.191413,0,0,0,82.47227,0,0,0,5,0,2,69.7,24.1,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,9.119067,.6931472,4.412462,1
-16,2,95,0,1,230037,0,8665.641,55.75085,1,12,1,0,15.37867,0,0,0,15.37867,0,0,0,0,0,1,75.5,10.3,0,63.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.067237,0,2.732981,1
-16,2,95,0,2,230037,0,8665.641,56.75085,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.5,10.3,0,63.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.067237,0,,0
-16,2,95,0,3,230037,0,8665.641,57.75085,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.5,10.3,0,63.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.067237,0,,0
-16,2,95,0,4,230037,0,8665.641,58.75085,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.5,10.3,0,63.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.067237,0,,0
-16,2,95,0,5,230037,0,8665.641,59.75085,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.5,10.3,0,63.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.067237,0,,0
-13,2,0,0,1,230060,0,1290.323,22.13279,0,15,1,0,0,0,0,0,0,0,0,0,0,0,1,26.6,13.8,1,30.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,30.7,7.163422,0,,0
-13,2,0,0,2,230060,0,1290.323,23.13279,0,15,1,0,1.870605,0,0,0,1.870605,0,0,0,0,0,1,26.6,13.8,1,30.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,30.7,7.163422,0,.6262618,1
-13,2,0,0,3,230060,0,1290.323,24.13279,0,15,1,14.61737,0,0,0,0,14.61737,0,0,0,0,0,1,26.6,13.8,1,30.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,30.7,7.163422,0,2.68221,1
-15,2,95,0,1,230072,0,7283.285,58.60917,0,13,1,41.87947,1.292135,0,0,0,43.1716,0,0,0,3,0,4,79.8,10.3,0,67,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,67,8.893475,1.386294,3.765183,1
-15,2,95,0,1,230073,1,7283.285,20.48734,1,13,1,0,0,0,0,284.4331,284.4331,1,1,0,0,0,4,73.4,10.3,0,52.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,52.3,8.893475,1.386294,5.650498,1
-15,2,95,0,1,230074,1,7283.285,50.85558,1,11,1,62.30848,0,0,0,0,62.30848,0,0,0,1,0,4,75.5,20.7,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,73.9,8.893475,1.386294,4.132098,1
-14,2,95,0,1,230075,0,4346.627,24.75565,1,15,1,13.00052,0,42.94852,0,0,55.94904,0,0,0,0,1,1,75,17.2,0,64.8,350,350,0,0,0,5.857933,0,4.564348,5.909226,0,0,0,64.8,8.377385,0,4.024441,1
-14,2,95,0,2,230075,0,4346.627,25.75565,1,15,1,0,0,0,0,0,0,0,0,0,0,0,1,75,17.2,0,64.8,350,350,0,0,0,5.857933,0,4.564348,5.909226,0,0,0,64.8,8.377385,0,,0
-14,2,95,0,3,230075,0,4346.627,26.75565,1,15,1,0,0,0,0,0,0,0,0,0,0,0,1,75,17.2,0,64.8,350,350,0,0,0,5.857933,0,4.564348,5.909226,0,0,0,64.8,8.377385,0,,0
-14,2,95,1,1,230080,0,13221.11,29.99863,0,12,1,131.8158,19.24298,0,0,0,151.0588,0,0,0,14,0,4,79.8,17.2,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.489646,1.386294,5.017669,1
-14,2,95,1,2,230080,0,13221.11,30.99863,0,12,1,0,1.539575,0,0,0,1.539575,0,0,0,0,0,4,79.8,17.2,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.489646,1.386294,.4315066,1
-14,2,95,1,3,230080,0,13221.11,31.99863,0,12,1,49.97775,0,0,0,0,49.97775,0,0,0,4,0,4,79.8,17.2,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.489646,1.386294,3.911578,1
-14,2,95,1,4,230080,0,13221.11,32.99863,0,12,1,21.96015,.7726718,0,0,0,22.73282,0,0,0,1,0,4,79.8,17.2,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.489646,1.386294,3.12381,1
-14,2,95,1,5,230080,0,13221.11,33.99863,0,12,1,158.7243,6.840176,3.665689,0,0,169.2302,0,0,0,1,10,4,79.8,17.2,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.489646,1.386294,5.13126,1
-14,2,95,1,1,230081,0,13221.11,36.16427,1,13,1,361.8317,29.88354,.794071,0,0,392.5093,0,0,0,21,20,4,63.3,20.7,0,37.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,37.5,9.489646,1.386294,5.97256,1
-14,2,95,1,2,230081,0,13221.11,37.16427,1,13,1,330.8398,39.82143,86.61197,0,2627.596,3084.87,2,0,0,13,8,4,63.3,20.7,0,37.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,37.5,9.489646,1.386294,8.034265,1
-14,2,95,1,3,230081,0,13221.11,38.16427,1,13,1,470.405,41.44637,25.19804,0,876.1014,1413.151,1,0,0,20,22,4,63.3,20.7,0,37.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,37.5,9.489646,1.386294,7.253577,1
-14,2,95,1,4,230081,0,13221.11,39.16427,1,13,1,128.2229,29.09719,1.122407,0,0,158.4425,0,0,0,7,8,4,63.3,20.7,0,37.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,37.5,9.489646,1.386294,5.065392,1
-14,2,95,1,5,230081,0,13221.11,40.16427,1,13,1,118.2735,10.00733,3.152493,0,0,131.4333,0,0,0,3,6,4,63.3,20.7,0,37.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,37.5,9.489646,1.386294,4.8785,1
-14,2,95,1,1,230082,0,13221.11,14.93771,0,13,1,7.94071,0,0,0,0,7.94071,0,0,0,1,0,4,81.4,3.4,0,88.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.489646,1.386294,2.072003,1
-14,2,95,1,2,230082,0,13221.11,15.93771,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,88.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.489646,1.386294,,0
-14,2,95,1,3,230082,0,13221.11,16.93771,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,88.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.489646,1.386294,,0
-14,2,95,1,4,230082,0,13221.11,17.93771,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,88.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.489646,1.386294,,0
-14,2,95,1,5,230082,0,13221.11,18.93771,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,88.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.489646,1.386294,,0
-14,2,95,1,1,230083,0,13221.11,11.29911,1,13,1,156.1673,8.523028,0,0,0,164.6903,0,0,0,3,8,4,61.7,11.84267,0,48.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.489646,1.386294,5.104067,1
-14,2,95,1,2,230083,0,13221.11,12.29911,1,13,1,41.50579,3.026062,.7239382,0,273.4556,318.7114,1,0,0,2,1,4,61.7,11.84267,0,48.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.489646,1.386294,5.764286,1
-14,2,95,1,3,230083,0,13221.11,13.29911,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,11.84267,0,48.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.489646,1.386294,,0
-14,2,95,1,4,230083,0,13221.11,14.29911,1,13,1,60.59374,0,0,0,0,60.59374,0,0,0,2,3,4,61.7,11.84267,0,48.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.489646,1.386294,4.104192,1
-14,2,95,1,5,230083,0,13221.11,15.29911,1,13,1,364.2229,36.38563,0,0,0,400.6085,0,0,0,15,12,4,61.7,11.84267,0,48.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.489646,1.386294,5.992985,1
-11,2,0,1,1,230112,1,5907.332,28.59411,1,12,1,24.961,0,19.24077,0,299.61,343.8118,1,0,0,2,0,2,88.8,13.8,0,61.4,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.4,8.684119,.6931472,5.840094,1
-11,2,0,1,2,230112,1,5907.332,29.59411,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.8,13.8,0,61.4,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.4,8.684119,.6931472,,0
-11,2,0,1,3,230112,1,5907.332,30.59411,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.8,13.8,0,61.4,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.4,8.684119,.6931472,,0
-11,2,0,1,4,230112,1,5907.332,31.59411,1,12,1,18.34862,0,0,119.6649,0,18.34862,0,0,6,1,0,2,88.8,13.8,0,61.4,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.4,8.684119,.6931472,2.909554,1
-11,2,0,1,5,230112,1,5907.332,32.59411,1,12,1,37.87165,0,0,0,0,37.87165,0,0,0,1,0,2,88.8,13.8,0,61.4,0,0,0,0,.6931472,0,0,0,0,1,0,0,61.4,8.684119,.6931472,3.634203,1
-11,2,0,1,1,230113,1,5907.332,11.42505,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.3,11.84267,0,81.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,81.5,8.684119,.6931472,,0
-11,2,0,1,2,230113,1,5907.332,12.42505,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.3,11.84267,0,81.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,81.5,8.684119,.6931472,,0
-11,2,0,1,3,230113,1,5907.332,13.42505,0,12,1,8.230905,0,0,0,0,8.230905,0,0,0,1,0,2,73.3,11.84267,0,81.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,81.5,8.684119,.6931472,2.107896,1
-11,2,0,1,4,230113,1,5907.332,14.42505,0,12,1,66.61348,0,0,79.77663,0,66.61348,0,0,2,3,1,2,73.3,11.84267,0,81.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,81.5,8.684119,.6931472,4.198907,1
-11,2,0,1,5,230113,1,5907.332,15.42505,0,12,1,15.95359,0,0,0,0,15.95359,0,0,0,1,0,2,73.3,11.84267,0,81.5,0,0,1,0,.6931472,0,0,0,0,1,0,0,81.5,8.684119,.6931472,2.769684,1
-16,2,95,0,1,230120,0,14376.54,15.27721,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,10.3,0,77.3,1000,669.48,1,1,1.386294,6.506501,0,4.564348,6.959049,0,0,0,77.3,9.573422,1.386294,,0
-16,2,95,0,2,230120,0,14376.54,16.27721,1,14,1,32.01147,9.483994,0,0,0,41.49546,0,0,0,4,0,4,83.5,10.3,0,77.3,1000,669.48,1,1,1.386294,6.506501,0,4.564348,6.959049,0,0,0,77.3,9.573422,1.386294,3.725584,1
-16,2,95,0,3,230120,0,14376.54,17.27721,1,14,1,6.145742,2.61194,0,0,0,8.757682,0,0,0,1,0,4,83.5,10.3,0,77.3,1000,669.48,1,1,1.386294,6.506501,0,4.564348,6.959049,0,0,0,77.3,9.573422,1.386294,2.169931,1
-16,2,95,0,1,230121,0,14376.54,11.54278,0,14,1,114.6646,0,0,417.0827,0,114.6646,0,0,29,9,0,4,95,11.84267,1,70.4,1000,669.48,1,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,70.4,9.573422,1.386294,4.742011,1
-16,2,95,0,2,230121,0,14376.54,12.54278,0,14,1,16.00573,3.320592,0,0,0,19.32633,0,0,0,2,0,4,95,11.84267,1,70.4,1000,669.48,1,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,70.4,9.573422,1.386294,2.961468,1
-16,2,95,0,3,230121,0,14376.54,13.54278,0,14,1,28.09482,0,0,0,0,28.09482,0,0,0,4,0,4,95,11.84267,1,70.4,1000,669.48,1,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,70.4,9.573422,1.386294,3.335585,1
-16,2,95,0,1,230122,0,14376.54,44.41615,0,14,1,53.82215,0,0,32.68331,0,53.82215,0,0,5,1,0,4,72.3,17.2,0,69.3,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,69.3,9.573422,1.386294,3.985685,1
-16,2,95,0,2,230122,0,14376.54,45.41615,0,14,1,21.97802,7.90731,8.504539,0,786.4548,824.8447,1,0,0,3,0,4,72.3,17.2,0,69.3,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,69.3,9.573422,1.386294,6.715195,1
-16,2,95,0,3,230122,0,14376.54,46.41615,0,14,1,9.657595,0,0,0,0,9.657595,0,0,0,1,0,4,72.3,17.2,0,69.3,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,69.3,9.573422,1.386294,2.267745,1
-16,2,95,0,1,230123,0,14376.54,39.66598,1,14,1,151.326,46.30785,0,406.9683,468.6011,666.235,1,0,33,7,0,4,66,27.6,0,84.1,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,84.1,9.573422,1.386294,6.501643,1
-16,2,95,0,2,230123,0,14376.54,40.66598,1,14,1,246.8896,57.50119,0,102.7234,0,304.3908,0,0,8,55,19,4,66,27.6,0,84.1,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,84.1,9.573422,1.386294,5.718313,1
-16,2,95,0,3,230123,0,14376.54,41.66598,1,14,1,25.89991,31.58472,0,0,0,57.48463,0,0,0,3,0,4,66,27.6,0,84.1,1000,669.48,0,0,1.386294,6.506501,0,4.564348,6.959049,0,0,0,84.1,9.573422,1.386294,4.051517,1
-13,2,0,0,1,230127,0,3255.132,24.11773,0,12,1,6.24025,0,0,0,0,6.24025,0,0,0,1,0,1,71.8,0,0,77.3,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,77.3,8.088295,0,1.83102,1
-13,2,0,0,1,230128,0,1755.425,20.12047,0,12,1,213.9626,3.213729,14.56058,0,0,231.7369,0,0,0,14,0,1,64.9,24.1,1,79.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,79.5,7.471036,0,5.445602,1
-13,2,0,0,2,230128,0,1755.425,21.12047,0,12,1,332.0354,3.798376,1.433349,0,0,337.2671,0,0,0,2,0,1,64.9,24.1,1,79.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,79.5,7.471036,0,5.820875,1
-13,2,0,0,3,230128,0,1755.425,22.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,64.9,24.1,1,79.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,79.5,7.471036,0,,0
-13,2,0,1,1,230150,0,13334.31,4.150582,0,12,1,18.81861,21.61526,14.37533,0,258.6775,313.4867,1,0,0,2,0,4,81.35272,11.84267,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.498171,1.386294,5.747757,1
-13,2,0,1,2,230150,0,13334.31,5.150582,0,12,1,47.57328,0,0,0,187.0975,234.6708,1,0,0,4,0,4,81.35272,11.84267,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.498171,1.386294,5.458184,1
-13,2,0,1,3,230150,0,13334.31,6.150582,0,12,1,27.31277,0,0,0,0,27.31277,0,0,0,1,0,4,81.35272,11.84267,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.498171,1.386294,3.307354,1
-13,2,0,1,4,230150,0,13334.31,7.150582,0,12,1,30.64516,0,19.75806,0,0,50.40322,0,0,0,2,0,4,81.35272,11.84267,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.498171,1.386294,3.920055,1
-13,2,0,1,5,230150,0,13334.31,8.150581,0,12,1,16.39344,0,0,0,0,16.39344,0,0,0,1,0,4,81.35272,11.84267,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.498171,1.386294,2.796881,1
-13,2,0,1,1,230151,0,13334.31,7.088295,0,12,1,5.227392,0,0,0,0,5.227392,0,0,0,1,0,4,75,11.84267,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.498171,1.386294,1.653912,1
-13,2,0,1,2,230151,0,13334.31,8.088296,0,12,1,18.26045,0,0,0,0,18.26045,0,0,0,1,0,4,75,11.84267,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.498171,1.386294,2.904738,1
-13,2,0,1,3,230151,0,13334.31,9.088296,0,12,1,19.82379,0,0,0,0,19.82379,0,0,0,1,0,4,75,11.84267,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.498171,1.386294,2.986883,1
-13,2,0,1,4,230151,0,13334.31,10.0883,0,12,1,30.64516,0,27.71371,0,0,58.35887,0,0,0,2,0,4,75,11.84267,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.498171,1.386294,4.066611,1
-13,2,0,1,5,230151,0,13334.31,11.0883,0,12,1,237.8033,0,24.77231,0,0,262.5756,0,0,0,5,0,4,75,11.84267,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.498171,1.386294,5.570539,1
-13,2,0,1,1,230152,0,13334.31,27.40589,1,12,1,58.54678,20.59592,18.50497,0,0,97.64767,0,0,0,6,0,4,76.1,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,4.581366,1
-13,2,0,1,2,230152,0,13334.31,28.40589,1,12,1,129.5051,28.81307,27.87122,0,0,186.1893,0,0,0,9,0,4,76.1,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,5.226764,1
-13,2,0,1,3,230152,0,13334.31,29.40589,1,12,1,75.3304,20.36123,0,215.859,0,95.69163,0,0,10,5,0,4,76.1,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,4.561131,1
-13,2,0,1,4,230152,0,13334.31,30.40589,1,12,1,32.25806,7.16129,0,510.0807,0,39.41935,0,0,23,3,0,4,76.1,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,3.674257,1
-13,2,0,1,5,230152,0,13334.31,31.40589,1,12,1,101.8215,5.68306,12.75045,0,0,120.255,0,0,0,6,0,4,76.1,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,4.789615,1
-13,2,0,1,1,230153,0,13334.31,34.18754,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,,0
-13,2,0,1,2,230153,0,13334.31,35.18754,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,,0
-13,2,0,1,3,230153,0,13334.31,36.18754,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,,0
-13,2,0,1,4,230153,0,13334.31,37.18754,0,12,1,138.1048,0,0,0,0,138.1048,0,0,0,6,0,4,78.2,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,4.928013,1
-13,2,0,1,5,230153,0,13334.31,38.18754,0,12,1,71.03825,0,0,0,0,71.03825,0,0,0,3,0,4,78.2,3.4,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.498171,1.386294,4.263218,1
-16,2,95,0,1,230154,0,7921.408,11.35661,1,12,1,8.060323,0,0,0,0,8.060323,0,0,0,1,0,5,83.3,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.97745,1.609438,2.086954,1
-16,2,95,0,2,230154,0,7921.408,12.35661,1,12,1,9.555662,0,0,0,0,9.555662,0,0,0,1,0,5,83.3,11.84267,0,88.9,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.97745,1.609438,2.257134,1
-16,2,95,0,3,230154,0,7921.408,13.35661,1,12,1,16.46181,0,0,0,0,16.46181,0,0,0,1,0,6,83.3,11.84267,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.97745,1.791759,2.801043,1
-16,2,95,0,4,230154,0,7921.408,14.35661,1,12,1,11.96649,2.373355,0,0,0,14.33985,0,0,0,2,0,6,83.3,11.84267,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.97745,1.791759,2.663042,1
-16,2,95,0,5,230154,0,7921.408,15.35661,1,12,1,13.05294,3.071066,0,0,0,16.124,0,0,0,2,0,6,83.3,11.84267,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.9,8.97745,1.791759,2.780309,1
-16,2,95,0,1,230155,0,7921.408,37.7796,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,6.9,0,59.1,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,59.1,8.97745,1.609438,,0
-16,2,95,0,2,230155,0,7921.408,38.7796,0,14,1,43.00048,0,0,0,0,43.00048,0,0,0,1,0,5,79.8,6.9,0,59.1,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,59.1,8.97745,1.609438,3.761211,1
-16,2,95,0,3,230155,0,7921.408,39.7796,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,6.9,0,59.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.1,8.97745,1.791759,,0
-16,2,95,0,4,230155,0,7921.408,40.7796,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,6.9,0,59.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.1,8.97745,1.791759,,0
-16,2,95,0,5,230155,0,7921.408,41.7796,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,6.9,0,59.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.1,8.97745,1.791759,,0
-16,2,95,0,1,230156,0,7921.408,35.75633,1,12,1,10.40042,0,0,0,0,10.40042,0,0,0,1,0,5,73.9,10.3,0,89.8,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,89.8,8.97745,1.609438,2.341846,1
-16,2,95,0,2,230156,0,7921.408,36.75633,1,12,1,36.31152,12.90014,0,0,616.1252,665.3369,1,0,0,2,1,5,73.9,10.3,0,89.8,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,89.8,8.97745,1.609438,6.500293,1
-16,2,95,0,3,230156,0,7921.408,37.75633,1,12,1,186.4355,5.061458,0,0,0,191.4969,0,0,0,4,0,6,73.9,10.3,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,89.8,8.97745,1.791759,5.254872,1
-16,2,95,0,4,230156,0,7921.408,38.75633,1,12,1,17.35142,0,0,0,0,17.35142,0,0,0,1,0,6,73.9,10.3,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,89.8,8.97745,1.791759,2.853674,1
-16,2,95,0,5,230156,0,7921.408,39.75633,1,12,1,20.03263,0,0,0,0,20.03263,0,0,0,1,0,6,73.9,10.3,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,89.8,8.97745,1.791759,2.997363,1
-16,2,95,0,1,230157,0,7921.408,8.109514,0,12,1,14.82059,0,0,0,0,14.82059,0,0,0,2,0,5,81.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.97745,1.609438,2.696018,1
-16,2,95,0,2,230157,0,7921.408,9.109514,0,12,1,9.555662,2.197802,0,0,0,11.75346,0,0,0,1,0,5,81.7,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.97745,1.609438,2.464148,1
-16,2,95,0,3,230157,0,7921.408,10.10951,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.7,11.84267,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,8.97745,1.791759,,0
-16,2,95,0,4,230157,0,7921.408,11.10951,0,12,1,10.37096,0,0,0,0,10.37096,0,0,0,2,0,6,81.7,11.84267,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,8.97745,1.791759,2.33901,1
-16,2,95,0,5,230157,0,7921.408,12.10951,0,12,1,6.88905,0,0,0,0,6.88905,0,0,0,1,0,6,81.7,11.84267,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,8.97745,1.791759,1.929933,1
-16,2,95,0,1,230158,0,7921.408,1.960301,0,12,1,9.360374,0,0,0,0,9.360374,0,0,0,1,0,5,81.35272,11.84267,0,63,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,63,8.97745,1.609438,2.236485,1
-16,2,95,0,2,230158,0,7921.408,2.960301,0,12,1,25.3225,2.627807,0,0,603.4401,631.3903,1,0,0,3,0,5,81.35272,11.84267,0,63,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,63,8.97745,1.609438,6.447924,1
-16,2,95,0,3,230158,0,7921.408,3.960301,0,12,1,10.09658,1.294996,0,0,0,11.39157,0,0,0,2,0,6,81.35272,11.84267,0,63,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,63,8.97745,1.791759,2.432874,1
-16,2,95,0,4,230158,0,7921.408,4.960301,0,12,1,17.94974,5.544476,0,0,0,23.49422,0,0,0,3,0,6,81.35272,11.84267,0,63,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,63,8.97745,1.791759,3.156754,1
-16,2,95,0,5,230158,0,7921.408,5.960301,0,12,1,6.163887,4.314721,0,0,0,10.47861,0,0,0,1,0,6,81.35272,11.84267,0,63,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,63,8.97745,1.791759,2.349336,1
-11,2,0,0,1,230162,0,14051.03,7.216975,1,12,1,26.53271,7.496136,0,0,0,34.02885,0,0,0,3,0,4,86.7,11.84267,0,96.3,0,535.16,1,1,1.386294,6.282566,0,0,0,0,0,0,96.3,9.550522,1.386294,3.527209,1
-11,2,0,0,2,230162,0,14051.03,8.216974,1,12,1,27.46212,0,0,0,0,27.46212,0,0,0,2,0,4,86.7,11.84267,0,96.3,0,535.16,1,1,1.386294,6.282566,0,0,0,0,0,0,96.3,9.550522,1.386294,3.312808,1
-11,2,0,0,3,230162,0,14051.03,9.216974,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,11.84267,0,96.3,0,535.16,1,1,1.386294,6.282566,0,0,0,0,0,0,96.3,9.550522,1.386294,,0
-11,2,0,0,1,230163,0,14051.03,17.04038,0,12,1,10.69037,0,0,0,0,10.69037,0,0,0,1,0,4,80.3,6.9,0,78.4,0,535.16,1,0,1.386294,6.282566,0,0,0,0,0,0,78.4,9.550522,1.386294,2.369343,1
-11,2,0,0,2,230163,0,14051.03,18.04038,0,12,1,0,6.368371,0,0,0,6.368371,0,0,0,0,0,4,80.3,6.9,0,78.4,0,535.16,0,0,1.386294,6.282566,0,0,0,0,0,0,78.4,9.550522,1.386294,1.851344,1
-11,2,0,0,3,230163,0,14051.03,19.04038,0,12,1,67.05679,1.404421,0,0,0,68.4612,0,0,0,3,0,4,80.3,6.9,0,78.4,0,535.16,0,0,1.386294,6.282566,0,0,0,0,0,0,78.4,9.550522,1.386294,4.226267,1
-11,2,0,0,1,230164,0,14051.03,42.25873,0,12,1,17.51674,0,0,0,0,17.51674,0,0,0,1,0,4,51.1,6.9,0,46.6,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,46.6,9.550522,1.386294,2.863157,1
-11,2,0,0,2,230164,0,14051.03,43.25873,0,12,1,0,0,9.327652,0,0,9.327652,0,0,0,0,0,4,51.1,6.9,0,46.6,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,46.6,9.550522,1.386294,2.232983,1
-11,2,0,0,3,230164,0,14051.03,44.25873,0,12,1,21.52146,7.758995,24.91547,0,0,54.19593,0,0,0,1,1,4,51.1,6.9,0,46.6,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,46.6,9.550522,1.386294,3.992606,1
-11,2,0,0,1,230165,0,14051.03,40.2601,1,12,1,86.29572,18.4441,0,0,0,104.7398,0,0,0,7,0,4,75,3.4,0,89.8,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,89.8,9.550522,1.386294,4.651479,1
-11,2,0,0,2,230165,0,14051.03,41.2601,1,12,1,144.9337,21.90814,0,0,0,166.8419,0,0,0,7,0,4,75,3.4,0,89.8,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,89.8,9.550522,1.386294,5.117046,1
-11,2,0,0,3,230165,0,14051.03,42.2601,1,12,1,33.37668,6.675336,46.71868,0,0,86.7707,0,0,0,3,0,4,75,3.4,0,89.8,0,535.16,0,0,1.386294,6.282566,0,0,0,1,0,0,89.8,9.550522,1.386294,4.463269,1
-13,2,0,0,1,230221,0,12099.12,58.49418,0,13,1,277.6919,56.54302,49.90211,0,0,384.1371,0,0,0,14,10,1,80.9,13.8,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,9.40097,0,5.950999,1
-13,2,0,0,2,230221,0,12099.12,59.49418,0,13,1,97.06439,32.24432,0,0,0,129.3087,0,0,0,7,2,1,80.9,13.8,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,9.40097,0,4.862203,1
-13,2,0,0,3,230221,0,12099.12,60.49418,0,13,1,32.07629,4.096229,46.3199,0,0,82.49242,0,0,0,3,1,1,80.9,13.8,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,9.40097,0,4.412706,1
-14,2,95,1,1,230225,0,4199.414,19.64956,1,12,1,27.39545,13.98094,0,0,0,41.37639,0,0,0,3,0,1,79.8,6.9,0,93.2,175,175,0,0,0,5.164786,0,4.564348,5.216079,0,0,0,93.2,8.342938,0,3.72271,1
-14,2,95,1,2,230225,0,4199.414,20.64956,1,12,1,42.47104,0,0,0,0,42.47104,0,0,0,5,0,1,79.8,6.9,0,93.2,175,175,0,0,0,5.164786,0,4.564348,5.216079,0,0,0,93.2,8.342938,0,3.748822,1
-14,2,95,1,3,230225,0,4199.414,21.64956,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,93.2,175,175,0,0,0,5.164786,0,4.564348,5.216079,0,0,0,93.2,8.342938,0,,0
-14,2,95,1,4,230225,0,4199.414,22.64956,1,12,1,12.20008,0,0,0,0,12.20008,0,0,0,1,0,1,79.8,6.9,0,93.2,175,175,0,0,0,5.164786,0,4.564348,5.216079,0,0,0,93.2,8.342938,0,2.501443,1
-14,2,95,1,5,230225,0,4199.414,23.64956,1,12,1,16.4956,0,0,0,0,16.4956,0,0,0,1,0,1,79.8,6.9,0,93.2,175,175,0,0,0,5.164786,0,4.564348,5.216079,0,0,0,93.2,8.342938,0,2.803094,1
-16,2,95,1,1,230226,0,9771.848,29.36071,0,12,1,31.10298,8.07632,0,0,0,39.1793,0,0,0,2,0,4,86.2,17.2,0,64.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,64.8,9.187364,1.386294,3.668149,1
-16,2,95,1,2,230226,0,9771.848,30.36071,0,12,1,76.40557,20.91302,33.45507,0,0,130.7737,0,0,0,3,0,4,86.2,17.2,0,64.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,64.8,9.187364,1.386294,4.873468,1
-16,2,95,1,3,230226,0,9771.848,31.36071,0,12,1,80.30837,34.18502,0,0,0,114.4934,0,0,0,5,0,4,86.2,17.2,0,64.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,64.8,9.187364,1.386294,4.740517,1
-16,2,95,1,1,230227,0,9771.848,24.79124,1,8,1,222.9482,8.531103,0,0,0,231.4794,0,0,0,3,3,4,94.1,6.9,0,97.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.187364,1.386294,5.444491,1
-16,2,95,1,2,230227,0,9771.848,25.79124,1,8,1,72.22489,27.7655,0,0,367.5637,467.554,1,0,0,2,0,4,94.1,6.9,0,97.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.187364,1.386294,6.147515,1
-16,2,95,1,3,230227,0,9771.848,26.79124,1,8,1,143.3921,18.03965,0,0,825.9692,987.4009,1,0,0,3,2,4,94.1,6.9,0,97.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,97.7,9.187364,1.386294,6.895076,1
-16,2,95,1,1,230228,0,9771.848,6.551677,1,8,1,48.61474,0,0,0,0,48.61474,0,0,0,3,0,4,70,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.187364,1.386294,3.883927,1
-16,2,95,1,2,230228,0,9771.848,7.551677,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,70,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.187364,1.386294,,0
-16,2,95,1,3,230228,0,9771.848,8.551677,1,8,1,13.43612,0,0,0,0,13.43612,0,0,0,1,0,4,70,11.84267,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.187364,1.386294,2.597947,1
-16,2,95,1,1,230229,0,9771.848,2.223135,1,8,1,20.38683,10.40251,0,0,0,30.78934,0,0,0,2,0,4,81.35272,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.187364,1.386294,3.427168,1
-16,2,95,1,2,230229,0,9771.848,3.223135,1,8,1,12.97453,1.874099,0,0,0,14.84863,0,0,0,1,0,4,81.35272,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.187364,1.386294,2.697908,1
-16,2,95,1,3,230229,0,9771.848,4.223135,1,8,1,22.90749,24.03084,0,0,0,46.93833,0,0,0,2,1,4,81.35272,11.84267,0,77.8,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.187364,1.386294,3.848835,1
-13,2,0,1,1,230230,0,8665.641,52.3614,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,83.5,17.2,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,76.1,9.067237,.6931472,,0
-13,2,0,1,1,230231,0,8665.641,60.39699,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.8,13.8,0,72.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,72.7,9.067237,.6931472,,0
-6,2,25,1,1,230232,0,10397.07,29.50582,0,13,1,0,0,0,58.50234,0,0,0,0,4,0,0,3,87.8,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,63.6,9.249375,1.098612,,0
-6,2,25,1,2,230232,0,10397.07,30.50582,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,87.8,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,63.6,9.249375,1.098612,,0
-6,2,25,1,3,230232,0,10397.07,31.50582,0,13,1,62.09394,20.29412,0,153.6435,0,82.38806,0,0,7,2,0,3,87.8,0,0,63.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,63.6,9.249375,1.098612,4.41144,1
-6,2,25,1,1,230233,0,10397.07,1.752224,1,14,1,34.84139,3.614145,0,0,0,38.45554,0,0,0,5,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.249375,1.098612,3.649503,1
-6,2,25,1,2,230233,0,10397.07,2.752224,1,14,1,21.02246,3.368371,0,0,0,24.39083,0,0,0,3,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.249375,1.098612,3.194207,1
-6,2,25,1,3,230233,0,10397.07,3.752224,1,14,1,108.1431,62.04126,0,0,0,170.1844,0,0,0,8,0,3,81.35272,11.84267,0,92.6,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.249375,1.098612,5.136882,1
-6,2,25,1,1,230234,0,10397.07,26.89665,1,14,1,98.17992,30.71763,0,50.70203,0,128.8976,0,0,4,9,0,3,52.1,24.1,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.249375,1.098612,4.859018,1
-6,2,25,1,2,230234,0,10397.07,27.89665,1,14,1,101.0511,32.37458,27.94076,0,0,161.3665,0,0,0,6,0,3,52.1,24.1,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.249375,1.098612,5.083678,1
-6,2,25,1,3,230234,0,10397.07,28.89665,1,14,1,201.2335,52.21247,76.82177,0,0,330.2678,0,0,0,7,4,3,52.1,24.1,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,1,0,0,72.7,9.249375,1.098612,5.799904,1
-6,2,25,0,1,230238,0,6097.361,42.86927,0,12,1,0,5.175117,0,0,0,5.175117,0,0,0,0,0,3,87.8,0,0,65.9,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65.9,8.715775,1.098612,1.643862,1
-6,2,25,0,2,230238,0,6097.361,43.86927,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,87.8,0,0,65.9,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65.9,8.715775,1.098612,,0
-6,2,25,0,3,230238,0,6097.361,44.86927,0,12,1,120.3084,8.612335,0,0,0,128.9207,0,0,0,3,0,3,87.8,0,0,65.9,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65.9,8.715775,1.098612,4.859198,1
-6,2,25,1,1,230239,0,6097.361,42.14648,1,10,1,87.03607,4.155777,30.92002,0,0,122.1119,0,0,0,4,1,3,87.4,13.8,1,56,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,1,0,56,8.715775,1.098612,4.804937,1
-6,2,25,1,2,230239,0,6097.361,43.14648,1,10,1,4.805382,0,0,0,0,4.805382,0,0,0,1,0,3,87.4,13.8,1,56,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,1,0,56,8.715775,1.098612,1.569737,1
-6,2,25,1,3,230239,0,6097.361,44.14648,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,87.4,13.8,1,56,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,1,0,56,8.715775,1.098612,,0
-6,2,25,0,1,230240,0,6097.361,15.74812,0,10,1,45.21694,7.292211,37.10925,0,0,89.6184,0,0,0,2,1,3,80.3,10.3,0,65,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65,8.715775,1.098612,4.495561,1
-6,2,25,0,2,230240,0,6097.361,16.74812,0,10,1,111.8933,.9610764,46.12686,0,607.8808,766.8621,1,0,0,4,0,3,80.3,10.3,0,65,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65,8.715775,1.098612,6.642307,1
-6,2,25,0,3,230240,0,6097.361,17.74812,0,10,1,9.69163,0,0,0,0,9.69163,0,0,0,0,0,3,80.3,10.3,0,65,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,65,8.715775,1.098612,2.271263,1
-6,2,25,1,1,230241,0,8665.641,20.6653,0,10,1,24.44098,1.040042,0,0,0,25.48102,0,0,0,2,0,1,62.2,13.8,0,55.7,630,0,0,0,0,0,0,3.258096,7.832014,1,0,0,55.7,9.067237,0,3.237934,1
-6,2,25,1,2,230241,0,8665.641,21.6653,0,10,1,46.72718,0,0,0,0,46.72718,0,0,0,1,0,1,62.2,13.8,0,55.7,630,0,0,0,0,0,0,3.258096,7.832014,1,0,0,55.7,9.067237,0,3.844326,1
-6,2,25,1,3,230241,0,8665.641,22.6653,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,62.2,13.8,0,55.7,630,0,0,0,0,0,0,3.258096,7.832014,1,0,0,55.7,9.067237,0,,0
-13,2,0,0,1,230243,0,3789.748,25.74675,0,17,1,12.4805,0,0,0,0,12.4805,0,0,0,1,0,1,78.7,17.2,0,68.2,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,68.2,8.240318,0,2.524167,1
-13,2,0,0,2,230243,0,3789.748,26.74675,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,78.7,17.2,0,68.2,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,68.2,8.240318,0,,0
-13,2,0,0,3,230243,0,3789.748,27.74675,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,78.7,17.2,0,68.2,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,68.2,8.240318,0,,0
-13,2,0,0,1,230244,0,3725.806,24.20808,0,12,1,40.82163,4.576183,0,0,0,45.39782,0,0,0,0,1,1,83,6.9,0,87.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,87.5,8.223307,0,3.815464,1
-13,2,0,0,2,230244,0,3725.806,25.20808,0,12,1,60.77401,0,0,0,0,60.77401,0,0,0,1,0,1,83,6.9,0,87.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,87.5,8.223307,0,4.107162,1
-13,2,0,0,3,230244,0,3725.806,26.20808,0,12,1,10.95698,0,0,0,0,10.95698,0,0,0,1,0,1,83,6.9,0,87.5,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,87.5,8.223307,0,2.393977,1
-13,2,0,0,1,230245,0,2689.443,24.93908,0,15,1,49.30837,205.5174,0,0,0,254.8258,0,0,0,2,0,1,75.5,13.8,1,40.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,40.5,7.897461,0,5.54058,1
-13,2,0,0,2,230245,0,2689.443,25.93908,0,15,1,0,178.7386,0,0,0,178.7386,0,0,0,0,0,1,75.5,13.8,1,40.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,40.5,7.897461,0,5.185925,1
-13,2,0,0,3,230245,0,2689.443,26.93908,0,15,1,11.41352,113.5865,0,0,0,125,0,0,0,2,0,1,75.5,13.8,1,40.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,40.5,7.897461,0,4.828314,1
-11,2,0,0,1,230266,0,7068.035,20.70089,1,14,1,33.67135,17.17109,0,0,0,50.84243,0,0,0,3,0,3,48.9,10.3,0,72.7,0,98.2,0,0,1.098612,4.587006,0,0,0,0,0,0,72.7,8.86348,1.098612,3.928731,1
-11,2,0,0,2,230266,0,7068.035,21.70089,1,14,1,65.05017,12.96703,0,0,0,78.0172,0,0,0,3,0,3,48.9,10.3,0,72.7,0,98.2,0,0,1.098612,4.587006,0,0,0,0,0,0,72.7,8.86348,1.098612,4.356929,1
-11,2,0,0,3,230266,0,7068.035,22.70089,1,14,1,94.44688,33.7928,0,0,0,128.2397,0,0,0,6,0,3,48.9,10.3,0,72.7,0,98.2,0,0,1.098612,4.587006,0,0,0,0,0,0,72.7,8.86348,1.098612,4.853901,1
-11,2,0,0,1,230267,0,7068.035,22.65024,0,14,1,5.720229,12.24129,0,0,0,17.96152,0,0,0,1,0,3,69.1,6.9,0,64.8,0,98.2,0,0,1.098612,4.587006,0,0,0,1,0,0,64.8,8.86348,1.098612,2.888232,1
-11,2,0,0,2,230267,0,7068.035,23.65024,0,14,1,0,6.340181,0,0,0,6.340181,0,0,0,0,0,3,69.1,6.9,0,64.8,0,98.2,0,0,1.098612,4.587006,0,0,0,1,0,0,64.8,8.86348,1.098612,1.846907,1
-11,2,0,0,3,230267,0,7068.035,24.65024,0,14,1,60.22827,43.45478,0,0,0,103.6831,0,0,0,5,0,3,69.1,6.9,0,64.8,0,98.2,0,0,1.098612,4.587006,0,0,0,1,0,0,64.8,8.86348,1.098612,4.641339,1
-14,2,95,0,1,230288,0,8665.641,26.28884,0,12,1,0,7.284904,0,0,0,7.284904,0,0,0,0,0,1,89.9,17.2,1,76.1,60,0,0,0,0,0,0,4.564348,4.145638,0,0,0,76.1,9.067237,0,1.985804,1
-14,2,95,0,2,230288,0,8665.641,27.28884,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,89.9,17.2,1,76.1,60,0,0,0,0,0,0,4.564348,4.145638,0,0,0,76.1,9.067237,0,,0
-11,2,0,0,1,230314,0,11768.33,29.02122,0,16,1,98.54395,19.64639,0,0,0,118.1903,0,0,0,5,0,3,86.2,13.8,0,76.1,0,388.64,0,0,1.098612,5.962654,0,0,0,0,0,0,76.1,9.373252,1.098612,4.772296,1
-11,2,0,0,2,230314,0,11768.33,30.02122,0,16,1,41.08934,6.215958,0,0,0,47.3053,0,0,0,6,0,4,86.2,13.8,0,76.1,0,388.64,0,0,1.386294,5.962654,0,0,0,0,0,0,76.1,9.373252,1.386294,3.856622,1
-11,2,0,0,3,230314,0,11768.33,31.02122,0,16,1,21.94908,4.126427,38.09482,0,0,64.17033,0,0,0,2,0,4,86.2,13.8,0,76.1,0,388.64,0,0,1.386294,5.962654,0,0,0,0,0,0,76.1,9.373252,1.386294,4.161541,1
-11,2,0,0,1,230315,0,11768.33,1.174538,1,17,1,72.02288,10.0104,0,0,0,82.03328,0,0,0,5,0,3,81.35272,11.84267,0,59.3,0,388.64,1,1,1.098612,5.962654,0,0,0,0,0,0,59.3,9.373252,1.098612,4.407125,1
-11,2,0,0,2,230315,0,11768.33,2.174538,1,17,1,24.46249,2.150024,0,0,0,26.61252,0,0,0,1,0,4,81.35272,11.84267,0,59.3,0,388.64,1,1,1.386294,5.962654,0,0,0,0,0,0,59.3,9.373252,1.386294,3.281382,1
-11,2,0,0,3,230315,0,11768.33,3.174538,1,17,1,34.67954,17.37489,0,0,0,52.05443,0,0,0,4,0,4,81.35272,11.84267,0,59.3,0,388.64,1,1,1.386294,5.962654,0,0,0,0,0,0,59.3,9.373252,1.386294,3.95229,1
-11,2,0,0,1,230316,0,11768.33,29.31691,1,17,1,22.3609,12.16849,0,0,718.8248,753.3541,1,0,0,1,0,3,88.3,3.4,0,81.8,0,388.64,0,0,1.098612,5.962654,0,0,0,0,0,0,81.8,9.373252,1.098612,6.624536,1
-11,2,0,0,2,230316,0,11768.33,30.31691,1,17,1,23.88915,0,0,0,0,23.88915,0,0,0,3,0,4,88.3,3.4,0,81.8,0,388.64,0,0,1.386294,5.962654,0,0,0,0,0,0,81.8,9.373252,1.386294,3.173424,1
-11,2,0,0,3,230316,0,11768.33,31.31691,1,17,1,61.8964,0,28.5338,0,0,90.4302,0,0,0,4,0,4,88.3,3.4,0,81.8,0,388.64,0,0,1.386294,5.962654,0,0,0,0,0,0,81.8,9.373252,1.386294,4.504578,1
-11,2,0,1,1,230373,0,15775.37,34.9733,1,12,1,25.09148,5.959226,0,0,0,31.0507,0,0,0,4,0,2,87.2,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.7,9.666268,.6931472,3.435622,1
-11,2,0,1,2,230373,0,15775.37,35.9733,1,12,1,76.64584,3.65209,16.81884,0,0,97.11677,0,0,0,6,1,2,87.2,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.7,9.666268,.6931472,4.575914,1
-11,2,0,1,3,230373,0,15775.37,36.9733,1,12,1,27.7533,9.678414,28.63436,0,929.2203,995.2863,1,0,0,2,1,2,87.2,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.7,9.666268,.6931472,6.90303,1
-11,2,0,1,1,230374,0,15775.37,31.8768,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,76.6,3.4,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,0,0,71.6,9.666268,.6931472,,0
-11,2,0,1,2,230374,0,15775.37,32.8768,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,76.6,3.4,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,0,0,71.6,9.666268,.6931472,,0
-11,2,0,1,3,230374,0,15775.37,33.8768,0,16,1,14.53745,0,34.34802,0,0,48.88546,0,0,0,1,0,2,76.6,3.4,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,0,0,71.6,9.666268,.6931472,3.88948,1
-7,2,25,0,1,230375,0,3528.886,20.89528,1,12,1,138.0732,4.971664,35.85265,0,0,178.8975,0,0,0,3,10,1,69.7,6.9,0,83,285.75,144,0,0,0,4.969813,0,3.258096,7.041412,1,0,0,83,8.169021,0,5.186813,1
-7,2,25,0,2,230375,0,3528.886,21.89528,1,12,1,289.6544,0,17.99242,0,0,307.6468,0,0,0,6,18,1,69.7,6.9,0,83,285.75,144,0,0,0,4.969813,0,3.258096,7.041412,1,0,0,83,8.169021,0,5.728952,1
-7,2,25,0,3,230375,0,3528.886,22.89528,1,12,1,175.531,12.72215,48.66927,0,294.7681,531.6905,1,0,0,9,0,1,69.7,6.9,0,83,285.75,144,0,0,0,4.969813,0,3.258096,7.041412,1,0,0,83,8.169021,0,6.276062,1
-7,2,25,0,1,230376,0,2003.519,22.97604,0,12,1,0,2.009274,0,0,0,2.009274,0,0,0,0,0,1,67,13.8,0,72.7,180,0,0,0,0,0,0,3.258096,6.579251,0,1,0,72.7,7.603159,0,.6977732,1
-7,2,25,0,2,230376,0,2003.519,23.97604,0,12,1,11.83712,2.831439,0,0,0,14.66856,0,0,0,1,0,1,67,13.8,0,72.7,180,0,0,0,0,0,0,3.258096,6.579251,0,1,0,72.7,7.603159,0,2.685706,1
-7,2,25,0,3,230376,0,2003.519,24.97604,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,67,13.8,0,72.7,180,0,0,0,0,0,0,3.258096,6.579251,0,1,0,72.7,7.603159,0,,0
-11,2,0,1,1,230409,0,8665.641,20.62149,0,12,1,72.12811,2.408682,45.57438,0,0,120.1112,0,0,0,5,1,1,63.3,3.4,0,51.1,0,0,0,0,0,0,0,0,0,0,0,0,51.1,9.067237,0,4.788418,1
-11,2,0,1,2,230409,0,8665.641,21.62149,0,12,1,64.18919,0,30.40541,0,0,94.5946,0,0,0,4,1,1,63.3,3.4,0,51.1,0,0,0,0,0,0,0,0,0,0,0,0,51.1,9.067237,0,4.5496,1
-11,2,0,1,3,230409,0,8665.641,22.62149,0,12,1,41.38852,6.519804,0,0,0,47.90832,0,0,0,4,0,1,63.3,3.4,0,51.1,0,0,0,0,0,0,0,0,0,0,0,0,51.1,9.067237,0,3.869289,1
-11,2,0,1,1,230410,0,8665.641,19.10472,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,77.7,0,0,73.9,0,0,0,0,0,0,0,0,0,0,0,0,73.9,9.067237,0,,0
-11,2,0,1,1,230447,0,12724.34,60.48186,1,17,1,122.8437,50.28751,36.25196,0,265.9435,475.3267,1,0,0,9,0,2,66,13.8,0,72.7,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,72.7,9.45135,.6931472,6.164002,1
-11,2,0,1,2,230447,0,12724.34,61.48186,1,17,1,323.4743,42.19125,31.13888,0,0,396.8044,0,0,0,12,6,2,66,13.8,0,72.7,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,72.7,9.45135,.6931472,5.983443,1
-11,2,0,1,3,230447,0,12724.34,62.48186,1,17,1,172.511,34.33921,37.15419,0,0,244.0044,0,0,0,10,0,2,66,13.8,0,72.7,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,72.7,9.45135,.6931472,5.497186,1
-11,2,0,1,1,230448,0,12724.34,60.92813,0,13,1,51.64663,14.2185,42.36801,0,0,108.2331,0,0,0,4,0,2,88.3,10.3,0,69.3,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,69.3,9.45135,.6931472,4.684288,1
-11,2,0,1,2,230448,0,12724.34,61.92813,0,13,1,426.1653,37.12157,0,0,411.7828,875.0697,1,0,0,11,0,2,88.3,10.3,0,69.3,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,69.3,9.45135,.6931472,6.774303,1
-11,2,0,1,3,230448,0,12724.34,62.92813,0,13,1,98.23788,69.82379,40.5815,0,0,208.6432,0,0,0,9,0,2,88.3,10.3,0,69.3,0,90.84,0,0,.6931472,4.509099,0,0,0,1,0,0,69.3,9.45135,.6931472,5.340625,1
-6,2,25,0,1,230480,0,351.3196,20.81862,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,32.4,6.9,0,61.4,90,90,0,0,0,4.49981,0,3.258096,5.886104,0,0,0,61.4,5.864539,0,,0
-6,2,25,0,2,230480,0,351.3196,21.81862,0,10,1,9.845288,12.4707,0,0,0,22.31599,0,0,0,1,0,1,32.4,6.9,0,61.4,90,90,0,0,0,4.49981,0,3.258096,5.886104,0,0,0,61.4,5.864539,0,3.105303,1
-6,2,25,0,3,230480,0,351.3196,22.81862,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,32.4,6.9,0,61.4,90,90,0,0,0,4.49981,0,3.258096,5.886104,0,0,0,61.4,5.864539,0,,0
-13,2,0,0,1,230492,0,4783.578,15.22519,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,0,0,85.2,450,450,1,1,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.473153,.6931472,,0
-13,2,0,0,2,230492,0,4783.578,16.22519,1,12,1,24.96417,0,0,0,0,24.96417,0,0,0,1,0,2,93.1,0,0,85.2,450,450,1,1,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.473153,.6931472,3.217442,1
-13,2,0,0,3,230492,0,4783.578,17.22519,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,0,0,85.2,450,450,1,1,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.473153,.6931472,,0
-13,2,0,0,4,230492,0,4783.578,18.22519,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,0,0,85.2,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.473153,.6931472,,0
-13,2,0,0,5,230492,0,4783.578,19.22519,1,12,1,26.46846,0,0,0,0,26.46846,0,0,0,1,0,2,93.1,0,0,85.2,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.473153,.6931472,3.275954,1
-13,2,0,0,1,230493,0,4783.578,38.71047,1,12,1,44.46178,23.41134,33.72335,0,0,101.5965,0,0,0,2,0,2,58.5,24.1,0,84.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.473153,.6931472,4.621009,1
-13,2,0,0,2,230493,0,4783.578,39.71047,1,12,1,148.3755,4.414716,0,0,0,152.7903,0,0,0,3,0,2,58.5,24.1,0,84.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.473153,.6931472,5.029066,1
-13,2,0,0,3,230493,0,4783.578,40.71047,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,58.5,24.1,0,84.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.473153,.6931472,,0
-13,2,0,0,4,230493,0,4783.578,41.71047,1,12,1,64.61906,4.858397,29.7487,0,0,99.22617,0,0,0,2,0,2,58.5,24.1,0,84.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.473153,.6931472,4.597402,1
-13,2,0,0,5,230493,0,4783.578,42.71047,1,12,1,32.26976,14.45613,0,0,0,46.72589,0,0,0,2,0,2,58.5,24.1,0,84.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.473153,.6931472,3.844298,1
-11,2,0,1,1,230517,0,7652.927,23.01437,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,76.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.942974,0,,0
-11,2,0,1,2,230517,0,7652.927,24.01437,0,12,1,27.50965,0,0,0,0,27.50965,0,0,0,2,0,1,76.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.942974,0,3.314537,1
-11,2,0,1,3,230517,0,7652.927,25.01437,0,12,1,24.1433,0,0,0,134.9577,159.101,1,0,0,2,0,1,76.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.942974,0,5.06954,1
-11,2,0,1,4,230517,0,7652.927,26.01437,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,76.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.942974,0,,0
-11,2,0,1,5,230517,0,7652.927,27.01437,0,12,1,7.148094,0,0,0,0,7.148094,0,0,0,1,0,1,76.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.942974,0,1.966846,1
-15,2,95,1,1,230561,0,8665.641,61.79877,1,12,1,37.96152,0,0,0,0,37.96152,0,0,0,1,0,1,81.4,13.8,0,65,452.05,0,0,0,0,0,0,4.564348,6.165086,1,0,0,65,9.067237,0,3.636573,1
-15,2,95,1,2,230561,0,8665.641,62.79877,1,12,1,257.8118,11.70569,80.77879,0,2469.613,2819.909,2,0,0,9,0,1,81.4,13.8,0,65,452.05,0,0,0,0,0,0,4.564348,6.165086,1,0,0,65,9.067237,0,7.94446,1
-15,2,95,1,3,230561,0,8665.641,63.79877,1,12,1,206.3652,155.8385,38.54258,0,1027.84,1428.586,1,0,0,11,0,1,81.4,13.8,0,65,452.05,0,0,0,0,0,0,4.564348,6.165086,1,0,0,65,9.067237,0,7.264441,1
-14,2,95,0,1,230575,0,8577.126,24.82136,0,14,1,82.74961,5.159435,0,0,0,87.90904,0,0,0,3,1,2,82.4,0,0,87.5,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,87.5,9.056971,.6931472,4.476303,1
-14,2,95,0,2,230575,0,8577.126,25.82136,0,14,1,13.69534,3.575204,0,0,0,17.27054,0,0,0,1,0,2,82.4,0,0,87.5,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,87.5,9.056971,.6931472,2.849002,1
-14,2,95,0,3,230575,0,8577.126,26.82136,0,14,1,168.8458,2.46696,0,0,0,171.3128,0,0,0,5,0,2,82.4,0,0,87.5,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,87.5,9.056971,.6931472,5.143491,1
-14,2,95,0,4,230575,0,8577.126,27.82136,0,14,1,32.52016,0,0,0,0,32.52016,0,0,0,2,0,2,82.4,0,0,87.5,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,87.5,9.056971,.6931472,3.48186,1
-14,2,95,0,5,230575,0,8577.126,28.82136,0,14,1,61.18397,0,0,0,0,61.18397,0,0,0,1,0,3,82.4,0,0,87.5,765,765,0,0,1.098612,6.639876,0,4.564348,6.691169,0,0,0,87.5,9.056971,1.098612,4.113885,1
-13,2,0,0,1,230581,0,14106.75,17.91923,0,12,1,163.2865,32.17369,18.20073,0,279.1368,492.7977,1,0,0,13,1,3,87.8,6.9,0,79.5,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.55448,1.098612,6.200099,1
-13,2,0,0,2,230581,0,14106.75,18.91923,0,12,1,21.50024,0,0,0,0,21.50024,0,0,0,2,0,3,87.8,6.9,0,79.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.55448,1.098612,3.068064,1
-13,2,0,0,3,230581,0,14106.75,19.91923,0,12,1,8.779632,8.981563,32.92362,0,0,50.68481,0,0,0,1,0,3,87.8,6.9,0,79.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.55448,1.098612,3.925626,1
-13,2,0,0,1,230582,0,14106.75,52.81041,0,12,1,152.6261,13.93136,0,0,0,166.5575,0,0,0,7,0,3,89.4,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.55448,1.098612,5.11534,1
-13,2,0,0,2,230582,0,14106.75,53.81041,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.55448,1.098612,,0
-13,2,0,0,3,230582,0,14106.75,54.81041,0,12,1,97.01492,0,34.24056,0,0,131.2555,0,0,0,2,0,3,89.4,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.55448,1.098612,4.877146,1
-13,2,0,0,1,230583,0,14106.75,51.24709,1,12,1,85.80343,59.02756,6.49506,0,0,151.326,0,0,0,7,0,3,77.7,17.2,0,75,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,75,9.55448,1.098612,5.019437,1
-13,2,0,0,2,230583,0,14106.75,52.24709,1,12,1,103.2011,20.23411,34.0086,0,0,157.4439,0,0,0,7,0,3,77.7,17.2,0,75,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,75,9.55448,1.098612,5.059069,1
-13,2,0,0,3,230583,0,14106.75,53.24709,1,12,1,67.60316,20.3863,0,0,673.9904,761.9798,1,0,0,3,0,3,77.7,17.2,0,75,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,75,9.55448,1.098612,6.63592,1
-17,2,25,1,1,230584,0,3818.182,24.45175,0,12,1,183.586,4.140094,28.37428,0,0,216.1004,0,0,0,11,0,1,93.6,3.4,0,86.4,146.8,146.8,0,0,0,4.989071,0,3.258096,6.375365,0,0,0,86.4,8.247791,0,5.375743,1
-17,2,25,1,2,230584,0,3818.182,25.45175,0,12,.3205479,0,0,0,0,0,0,0,0,0,0,0,1,93.6,3.4,0,86.4,146.8,146.8,0,0,0,4.989071,0,3.258096,6.375365,0,0,0,86.4,8.247791,0,,0
-11,2,0,0,1,230595,0,10527.27,14.85832,1,12,1,178.8872,4.664587,33.58814,0,0,217.1399,0,0,0,8,0,4,70.7,6.9,0,92,0,0,1,1,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,5.380542,1
-11,2,0,0,2,230595,0,10527.27,15.85832,1,12,1,132.107,15.54228,0,0,0,147.6493,0,0,0,6,5,4,70.7,6.9,0,92,0,0,1,1,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,4.99484,1
-11,2,0,0,3,230595,0,10527.27,16.85832,1,12,1,262.6207,1.975417,19.49078,0,0,284.0869,0,0,0,13,0,4,70.7,6.9,0,92,0,0,1,1,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,5.64928,1
-11,2,0,0,1,230596,0,10527.27,42.41205,1,12,1,378.5751,3.51014,65.82943,0,0,447.9147,0,0,0,7,0,4,88.3,10.3,1,68.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.2,9.26182,1.386294,6.104603,1
-11,2,0,0,2,230596,0,10527.27,43.41205,1,12,1,139.3932,0,0,0,0,139.3932,0,0,0,4,5,4,88.3,10.3,1,68.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.2,9.26182,1.386294,4.937299,1
-11,2,0,0,3,230596,0,10527.27,44.41205,1,12,1,62.33538,0,0,0,2530.509,2592.844,1,0,0,1,0,4,88.3,10.3,1,68.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,68.2,9.26182,1.386294,7.860511,1
-11,2,0,0,1,230597,0,10527.27,17.02122,0,12,1,45.37181,0,0,0,0,45.37181,0,0,0,2,0,4,67,6.9,0,67,0,0,1,0,1.386294,0,0,0,0,0,1,0,67,9.26182,1.386294,3.814891,1
-11,2,0,0,2,230597,0,10527.27,18.02122,0,12,1,31.53368,0,0,0,0,31.53368,0,0,0,1,0,4,67,6.9,0,67,0,0,0,0,1.386294,0,0,0,0,0,1,0,67,9.26182,1.386294,3.451056,1
-11,2,0,0,3,230597,0,10527.27,19.02122,0,12,1,6.584723,0,0,0,0,6.584723,0,0,0,1,0,4,67,6.9,0,67,0,0,0,0,1.386294,0,0,0,0,0,1,0,67,9.26182,1.386294,1.884752,1
-11,2,0,0,1,230598,0,10527.27,47.28268,0,12,1,0,4.940197,0,0,0,4.940197,0,0,0,0,0,4,89.9,6.9,1,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,1.597405,1
-11,2,0,0,2,230598,0,10527.27,48.28268,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,89.9,6.9,1,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,,0
-11,2,0,0,3,230598,0,10527.27,49.28268,0,12,1,63.98156,0,0,0,0,63.98156,0,0,0,3,0,4,89.9,6.9,1,92,0,0,0,0,1.386294,0,0,0,0,0,0,0,92,9.26182,1.386294,4.158595,1
-17,2,25,1,1,230620,0,14321.41,38.16838,1,12,1,32.24129,0,0,0,0,32.24129,0,0,0,2,0,5,83,10.3,0,73.9,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,73.9,9.56958,1.609438,3.473248,1
-17,2,25,1,2,230620,0,14321.41,39.16838,1,12,1,41.08934,2.197802,0,0,0,43.28715,0,0,0,3,0,5,83,10.3,0,73.9,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,73.9,9.56958,1.609438,3.767856,1
-17,2,25,1,3,230620,0,14321.41,40.16838,1,12,1,101.8437,2.414399,28.92888,0,0,133.187,0,0,0,6,0,5,83,10.3,0,73.9,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,1,0,0,73.9,9.56958,1.609438,4.891754,1
-17,2,25,1,1,230621,0,14321.41,8.161533,0,12,1,11.44046,0,0,0,0,11.44046,0,0,0,1,0,5,93.3,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.56958,1.609438,2.437156,1
-17,2,25,1,2,230621,0,14321.41,9.161533,0,12,1,10.51123,0,0,0,0,10.51123,0,0,0,1,0,5,93.3,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.56958,1.609438,2.352444,1
-17,2,25,1,3,230621,0,14321.41,10.16153,0,12,1,19.53468,0,0,0,0,19.53468,0,0,0,2,0,5,93.3,11.84267,0,88.9,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,88.9,9.56958,1.609438,2.972191,1
-17,2,25,1,1,230622,0,14321.41,13.16632,0,12,1,14.56058,0,25.94384,0,0,40.50442,0,0,0,1,0,5,98.3,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,100,9.56958,1.609438,3.701411,1
-17,2,25,1,2,230622,0,14321.41,14.16632,0,12,1,22.93359,0,0,0,0,22.93359,0,0,0,2,0,5,98.3,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,100,9.56958,1.609438,3.132602,1
-17,2,25,1,3,230622,0,14321.41,15.16632,0,12,1,16.46181,0,.8779631,0,0,17.33977,0,0,0,2,0,5,98.3,11.84267,0,100,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,100,9.56958,1.609438,2.853003,1
-17,2,25,1,1,230623,0,14321.41,39.32101,0,17,1,21.58086,2.844514,20.80083,0,0,45.22621,0,0,0,2,0,5,88.3,17.2,0,69.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.56958,1.609438,3.811677,1
-17,2,25,1,2,230623,0,14321.41,40.32101,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,17.2,0,69.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.56958,1.609438,,0
-17,2,25,1,3,230623,0,14321.41,41.32101,0,17,1,5.487269,0,0,0,0,5.487269,0,0,0,1,0,5,88.3,17.2,0,69.3,1000,1000,0,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,69.3,9.56958,1.609438,1.702431,1
-17,2,25,1,1,230624,0,14321.41,10.04517,0,12,1,37.5715,13.28653,0,0,0,50.85804,0,0,0,3,0,5,96.7,11.84267,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.56958,1.609438,3.929038,1
-17,2,25,1,2,230624,0,14321.41,11.04517,0,12,1,10.51123,0,0,0,0,10.51123,0,0,0,1,0,5,96.7,11.84267,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.56958,1.609438,2.352444,1
-17,2,25,1,3,230624,0,14321.41,12.04517,0,12,1,23.04653,0,0,0,0,23.04653,0,0,0,2,0,5,96.7,11.84267,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.258096,8.294049,0,0,0,92.6,9.56958,1.609438,3.137515,1
-15,2,95,1,1,230625,0,537.8299,37.54415,1,17,1,12.17575,17.12546,0,0,0,29.30122,0,0,0,1,0,1,55.9,37.9,1,31.8,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,31.8,6.2894,0,3.377629,1
-15,2,95,1,2,230625,0,537.8299,38.54415,1,17,1,79.15058,23.88996,33.10328,0,0,136.1438,0,0,0,4,0,1,55.9,37.9,1,31.8,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,31.8,6.2894,0,4.913712,1
-15,2,95,1,3,230625,0,537.8299,39.54415,1,17,1,40.49844,13.90743,0,0,0,54.40588,0,0,0,1,0,1,55.9,37.9,1,31.8,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,31.8,6.2894,0,3.996472,1
-15,2,95,1,4,230625,0,537.8299,40.54415,1,17,1,77.90972,6.807645,0,0,0,84.71736,0,0,0,2,0,1,55.9,37.9,1,31.8,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,31.8,6.2894,0,4.439321,1
-15,2,95,1,5,230625,0,537.8299,41.54415,1,17,1,0,7.580645,0,0,0,7.580645,0,0,0,0,0,1,55.9,37.9,1,31.8,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,31.8,6.2894,0,2.025598,1
-11,2,0,0,1,230640,0,392.9619,26.5024,0,16,1,69.45863,0,0,0,0,69.45863,0,0,0,2,0,1,50,6.9,0,45.5,0,0,0,0,0,0,0,0,0,1,0,0,45.5,5.976254,0,4.240731,1
-11,2,0,0,2,230640,0,392.9619,27.5024,0,16,1,11.25176,5.954055,0,0,0,17.20581,0,0,0,1,0,1,50,6.9,0,45.5,0,0,0,0,0,0,0,0,0,1,0,0,45.5,5.976254,0,2.845247,1
-11,2,0,0,3,230640,0,392.9619,28.5024,0,16,1,42.13242,0,37.30869,0,0,79.4411,0,0,0,2,1,1,50,6.9,0,45.5,0,0,0,0,0,0,0,0,0,1,0,0,45.5,5.976254,0,4.375016,1
-11,2,0,0,1,230641,0,751.3196,26.56263,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,66.5,6.9,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,6.623161,0,,0
-11,2,0,0,2,230641,0,751.3196,27.56263,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,66.5,6.9,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,6.623161,0,,0
-11,2,0,0,3,230641,0,751.3196,28.56263,0,16,1,21.67317,0,1.30039,0,0,22.97356,0,0,0,1,0,1,66.5,6.9,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,6.623161,0,3.134344,1
-13,2,0,0,1,230643,0,4081.525,49.08693,1,14,1,422.8809,123.0785,23.81175,120.6448,0,569.7712,0,0,7,9,28,2,80.3,10.3,1,86.4,300,538.92,0,0,.6931472,6.289567,1,4.564348,5.755076,0,0,0,86.4,8.314471,.6931472,6.345235,1
-13,2,0,0,2,230643,0,4081.525,50.08693,1,14,1,217.6541,125.2126,30.52556,7.644529,0,373.3923,0,0,1,8,13,2,80.3,10.3,1,86.4,300,538.92,0,0,.6931472,6.289567,1,4.564348,5.755076,0,0,0,86.4,8.314471,.6931472,5.922629,1
-13,2,0,0,3,230643,0,4081.525,51.08693,1,14,1,423.683,269.5039,36.55838,0,0,729.7454,0,0,1,10,9,2,80.3,10.3,1,86.4,300,538.92,0,0,.6931472,6.289567,1,4.564348,5.755076,0,0,0,86.4,8.314471,.6931472,6.592696,1
-13,2,0,0,1,230644,0,4081.525,15.09103,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,44.7,10.3,0,55.7,300,538.92,1,1,.6931472,6.289567,1,4.564348,5.755076,0,0,0,55.7,8.314471,.6931472,,0
-13,2,0,0,2,230644,0,4081.525,16.09103,1,14,1,16.72241,0,0,0,0,16.72241,0,0,0,1,0,2,44.7,10.3,0,55.7,300,538.92,1,1,.6931472,6.289567,1,4.564348,5.755076,0,0,0,55.7,8.314471,.6931472,2.81675,1
-13,2,0,0,3,230644,0,4081.525,17.09103,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,44.7,10.3,0,55.7,300,538.92,1,1,.6931472,6.289567,1,4.564348,5.755076,0,0,0,55.7,8.314471,.6931472,,0
-11,2,0,0,1,230645,0,8129.619,28.69268,1,12,1,19.86409,1.437533,0,0,0,21.30162,0,0,0,2,0,5,74.5,24.1,0,84.1,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,84.1,9.003392,1.609438,3.058783,1
-11,2,0,0,2,230645,0,8129.619,29.69268,1,12,1,66.31427,0,0,0,0,66.31427,0,0,0,5,0,5,74.5,24.1,0,84.1,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,84.1,9.003392,1.609438,4.194405,1
-11,2,0,0,3,230645,0,8129.619,30.69268,1,12,1,60.79295,0,28.07489,0,0,88.86784,0,0,0,3,0,5,74.5,24.1,0,84.1,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,84.1,9.003392,1.609438,4.48715,1
-11,2,0,0,1,230646,0,8129.619,4.720055,0,12,1,18.29587,4.103502,0,0,0,22.39937,0,0,0,2,0,5,81.35272,11.84267,0,81.5,0,383.64,1,0,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,3.109033,1
-11,2,0,0,2,230646,0,8129.619,5.720055,0,12,1,15.13695,2.691014,0,0,0,17.82797,0,0,0,1,0,5,81.35272,11.84267,0,81.5,0,383.64,1,0,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,2.880768,1
-11,2,0,0,3,230646,0,8129.619,6.720055,0,12,1,50.66079,0,0,0,0,50.66079,0,0,0,4,0,5,81.35272,11.84267,0,81.5,0,383.64,1,0,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,3.925152,1
-11,2,0,0,1,230647,0,8129.619,3.310062,1,12,1,105.5933,12.62415,0,0,0,118.2175,0,0,0,3,0,5,81.35272,11.84267,0,81.5,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,4.772526,1
-11,2,0,0,2,230647,0,8129.619,4.310061,1,12,1,19.94234,7.063911,0,0,0,27.00625,0,0,0,2,0,5,81.35272,11.84267,0,81.5,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,3.296068,1
-11,2,0,0,3,230647,0,8129.619,5.310061,1,12,1,11.01322,0,0,0,0,11.01322,0,0,0,1,0,5,81.35272,11.84267,0,81.5,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,81.5,9.003392,1.609438,2.399096,1
-11,2,0,0,1,230648,0,8129.619,3.310062,1,12,1,21.17094,2.06482,0,0,0,23.23576,0,0,0,2,0,5,81.35272,11.84267,0,59.3,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,59.3,9.003392,1.609438,3.145692,1
-11,2,0,0,2,230648,0,8129.619,4.310061,1,12,1,12.73426,0,0,0,0,12.73426,0,0,0,1,0,5,81.35272,11.84267,0,59.3,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,59.3,9.003392,1.609438,2.544296,1
-11,2,0,0,3,230648,0,8129.619,5.310061,1,12,1,11.01322,0,0,0,0,11.01322,0,0,0,1,0,5,81.35272,11.84267,0,59.3,0,383.64,1,1,1.609438,5.949705,0,0,0,0,0,0,59.3,9.003392,1.609438,2.399096,1
-11,2,0,0,1,230649,0,8129.619,28.26831,0,14,1,72.66074,0,0,0,0,72.66074,0,0,0,6,0,5,76.6,10.3,0,93.2,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,93.2,9.003392,1.609438,4.285801,1
-11,2,0,0,2,230649,0,8129.619,29.26831,0,14,1,71.84046,0,0,0,0,71.84046,0,0,0,7,0,5,76.6,10.3,0,93.2,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,93.2,9.003392,1.609438,4.274448,1
-11,2,0,0,3,230649,0,8129.619,30.26831,0,14,1,103.9648,5.563877,0,0,0,109.5286,0,0,0,6,0,5,76.6,10.3,0,93.2,0,383.64,0,0,1.609438,5.949705,0,0,0,0,0,0,93.2,9.003392,1.609438,4.696186,1
-11,2,0,0,1,230668,0,15134.31,37.26215,1,12,1,469.5788,6.619865,0,0,0,476.1986,0,0,0,3,0,5,78.7,10.3,0,93.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,93.2,9.624785,1.609438,6.165835,1
-11,2,0,0,2,230668,0,15134.31,38.26215,1,12,1,83.01481,0,0,0,0,83.01481,0,0,0,16,0,5,78.7,10.3,0,93.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,93.2,9.624785,1.609438,4.419019,1
-11,2,0,0,3,230668,0,15134.31,39.26215,1,12,1,201.0536,3.630378,0,0,0,204.6839,0,0,0,2,25,5,78.7,10.3,0,93.2,0,0,0,0,1.609438,0,0,0,0,1,0,0,93.2,9.624785,1.609438,5.321467,1
-11,2,0,0,1,230669,0,15134.31,7.657769,1,12,1,19.89079,21.39886,0,0,0,41.28965,0,0,0,2,0,5,73.3,11.84267,0,40.7,0,0,1,1,1.609438,0,0,0,0,1,0,0,40.7,9.624785,1.609438,3.720612,1
-11,2,0,0,2,230669,0,15134.31,8.657768,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,40.7,0,0,1,1,1.609438,0,0,0,0,1,0,0,40.7,9.624785,1.609438,,0
-11,2,0,0,3,230669,0,15134.31,9.657768,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,11.84267,0,40.7,0,0,1,1,1.609438,0,0,0,0,1,0,0,40.7,9.624785,1.609438,,0
-11,2,0,0,1,230670,0,15134.31,39.8768,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,6.9,0,81.8,0,0,0,0,1.609438,0,0,0,0,1,0,0,81.8,9.624785,1.609438,,0
-11,2,0,0,2,230670,0,15134.31,40.8768,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,6.9,0,81.8,0,0,0,0,1.609438,0,0,0,0,1,0,0,81.8,9.624785,1.609438,,0
-11,2,0,0,3,230670,0,15134.31,41.8768,0,12,1,119.0737,14.66198,0,0,0,133.7357,0,0,0,3,0,5,83,6.9,0,81.8,0,0,0,0,1.609438,0,0,0,0,1,0,0,81.8,9.624785,1.609438,4.895866,1
-11,2,0,0,1,230671,0,15134.31,18.91855,0,11,1,13.91056,6.422257,0,0,0,20.33281,0,0,0,1,0,5,63.8,10.3,0,69.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,69.3,9.624785,1.609438,3.012236,1
-11,2,0,0,2,230671,0,15134.31,19.91855,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.8,10.3,0,69.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,69.3,9.624785,1.609438,,0
-11,2,0,0,3,230671,0,15134.31,20.91855,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.8,10.3,0,69.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,69.3,9.624785,1.609438,,0
-11,2,0,0,1,230672,0,15134.31,12.43532,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.624785,1.609438,,0
-11,2,0,0,2,230672,0,15134.31,13.43532,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,11.84267,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.624785,1.609438,,0
-11,2,0,0,3,230672,0,15134.31,14.43532,0,12,1,8.779632,0,0,0,0,8.779632,0,0,0,1,0,5,86.7,11.84267,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.624785,1.609438,2.172435,1
-7,2,25,1,1,230678,0,8665.641,23.38398,1,12,1,35.4685,0,0,0,0,35.4685,0,0,0,1,0,2,85.6,13.8,0,87.5,600,600,0,0,.6931472,6.39693,0,3.258096,7.783224,0,0,0,87.5,9.067237,.6931472,3.568645,1
-7,2,25,1,2,230678,0,8665.641,24.38398,1,12,1,74.80695,0,0,0,0,74.80695,0,0,0,3,0,2,85.6,13.8,0,87.5,600,600,0,0,.6931472,6.39693,0,3.258096,7.783224,0,0,0,87.5,9.067237,.6931472,4.314911,1
-7,2,25,1,1,230679,0,8665.641,5.234771,1,12,1,0,3.123346,0,0,0,3.123346,0,0,0,0,0,2,85,11.84267,0,100,600,600,1,1,.6931472,6.39693,0,3.258096,7.783224,0,0,0,100,9.067237,.6931472,1.138905,1
-7,2,25,1,2,230679,0,8665.641,6.234771,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85,11.84267,0,100,600,600,1,1,.6931472,6.39693,0,3.258096,7.783224,0,0,0,100,9.067237,.6931472,,0
-7,2,25,0,1,230723,0,13557.77,14.77892,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,92.9,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.514789,1.098612,,0
-7,2,25,0,2,230723,0,13557.77,15.77892,1,12,1,16.87764,3.338022,0,0,0,20.21566,0,0,0,2,0,3,92.9,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.514789,1.098612,3.006458,1
-7,2,25,0,3,230723,0,13557.77,16.77892,1,12,1,3.439381,0,0,0,0,3.439381,0,0,0,0,0,3,92.9,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.514789,1.098612,1.235291,1
-7,2,25,0,4,230723,0,13557.77,17.77892,1,12,1,48.4684,0,0,0,0,48.4684,0,0,0,3,0,3,92.9,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.514789,1.098612,3.880912,1
-7,2,25,0,5,230723,0,13557.77,18.77892,1,12,1,5.573248,0,0,0,0,5.573248,0,0,0,1,0,3,92.9,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,81.8,9.514789,1.098612,1.717978,1
-7,2,25,0,1,230724,0,13557.77,36.98015,0,15,1,22.98264,2.757916,0,0,0,25.74055,0,0,0,1,0,3,89.9,6.9,0,95.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,95.5,9.514789,1.098612,3.248068,1
-7,2,25,0,2,230724,0,13557.77,37.98015,0,15,1,35.86498,5.344585,40.04688,0,0,81.25645,0,0,0,2,1,3,89.9,6.9,0,95.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,95.5,9.514789,1.098612,4.39761,1
-7,2,25,0,3,230724,0,13557.77,38.98015,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,6.9,0,95.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,95.5,9.514789,1.098612,,0
-7,2,25,0,4,230724,0,13557.77,39.98015,0,15,1,22.48934,2.927491,45.47499,0,0,70.89182,0,0,0,1,1,3,89.9,6.9,0,95.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,95.5,9.514789,1.098612,4.261155,1
-7,2,25,0,5,230724,0,13557.77,40.98015,0,15,1,45.138,2.388535,0,0,0,47.52654,0,0,0,3,0,3,89.9,6.9,0,95.5,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,95.5,9.514789,1.098612,3.861288,1
-7,2,25,0,1,230725,0,13557.77,34.78439,1,12,1,68.69254,17.23698,0,0,0,85.92952,0,0,0,2,0,3,90.4,3.4,0,88.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.6,9.514789,1.098612,4.453527,1
-7,2,25,0,2,230725,0,13557.77,35.78439,1,12,1,428.903,0,0,0,0,428.903,0,0,0,4,0,3,90.4,3.4,0,88.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.6,9.514789,1.098612,6.061231,1
-7,2,25,0,3,230725,0,13557.77,36.78439,1,12,1,51.16079,0,0,0,363.3233,414.4841,1,0,0,4,0,3,90.4,3.4,0,88.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.6,9.514789,1.098612,6.027035,1
-7,2,25,0,4,230725,0,13557.77,37.78439,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,90.4,3.4,0,88.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.6,9.514789,1.098612,,0
-7,2,25,0,5,230725,0,13557.77,38.78439,1,12,1,69.70984,8.280254,0,0,0,77.99009,0,0,0,2,0,3,90.4,3.4,0,88.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,88.6,9.514789,1.098612,4.356582,1
-13,2,0,0,1,230740,0,6634.604,32.19439,0,12,1,261.0504,30.41602,0,0,216.2767,507.7431,1,0,0,12,0,2,79.8,3.4,1,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,8.800205,.6931472,6.229976,1
-13,2,0,0,2,230740,0,6634.604,33.19439,0,12,1,82.65647,7.166746,0,301.0034,0,89.82322,0,0,9,3,0,2,79.8,3.4,1,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,8.800205,.6931472,4.497844,1
-13,2,0,0,3,230740,0,6634.604,34.19439,0,12,1,2.194908,6.584723,0,1290.606,0,8.779632,0,0,45,1,0,2,79.8,3.4,1,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,8.800205,.6931472,2.172435,1
-13,2,0,0,4,230740,0,6634.604,35.19439,0,12,1,31.11288,0,0,712.0064,0,31.11288,0,0,25,1,0,2,79.8,3.4,1,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,8.800205,.6931472,3.437622,1
-13,2,0,0,5,230740,0,6634.604,36.19439,0,12,1,126.1784,6.613488,9.06454,0,1587.353,1729.21,3,0,0,4,3,2,79.8,3.4,1,85.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,85.2,8.800205,.6931472,7.45542,1
-13,2,0,0,1,230741,0,6634.604,30.75975,1,14,1,55.51222,2.932917,0,0,0,58.44514,0,0,0,4,0,2,62.8,13.8,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,8.800205,.6931472,4.068089,1
-13,2,0,0,2,230741,0,6634.604,31.75975,1,14,1,20.54467,0,37.08552,150.5017,0,57.6302,0,0,9,1,1,2,62.8,13.8,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,8.800205,.6931472,4.054047,1
-13,2,0,0,3,230741,0,6634.604,32.75975,1,14,1,17.33977,.9657595,0,676.0316,0,18.30553,0,0,44,2,0,2,62.8,13.8,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,8.800205,.6931472,2.907203,1
-13,2,0,0,4,230741,0,6634.604,33.75975,1,14,1,29.91623,0,6.781013,656.1627,0,36.69725,0,0,47,3,0,2,62.8,13.8,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,8.800205,.6931472,3.602702,1
-13,2,0,0,5,230741,0,6634.604,34.75975,1,14,1,0,0,7.770123,0,0,7.770123,0,0,0,0,0,2,62.8,13.8,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,8.800205,.6931472,2.050286,1
-11,2,0,0,1,230771,0,13633.43,15.89322,1,11,1,9.620385,0,0,0,0,9.620385,0,0,0,1,0,6,92,0,0,98.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,98.9,9.520353,1.791759,2.263884,1
-11,2,0,0,2,230771,0,13633.43,16.89322,1,11,1,17.91687,0,0,0,0,17.91687,0,0,0,0,1,5,92,0,0,98.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,98.9,9.520353,1.609438,2.885742,1
-11,2,0,0,3,230771,0,13633.43,17.89322,1,11,1,12.73046,7.177349,0,0,591.2204,611.1282,1,0,0,0,0,5,92,0,0,98.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,98.9,9.520353,1.609438,6.415307,1
-11,2,0,0,1,230773,0,13633.43,37.32512,1,11,1,203.9002,8.367135,3.010921,0,0,215.2782,0,0,0,8,0,6,81.9,10.3,0,75,0,0,0,0,1.791759,0,0,0,0,1,0,0,75,9.520353,1.791759,5.371931,1
-11,2,0,0,2,230773,0,13633.43,38.32512,1,11,1,53.51171,41.08934,25.39417,0,0,119.9952,0,0,0,5,0,5,81.9,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,1,0,0,75,9.520353,1.609438,4.787452,1
-11,2,0,0,3,230773,0,13633.43,39.32512,1,11,1,56.62862,58.05092,64.87708,0,0,179.5566,0,0,0,4,0,5,81.9,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,1,0,0,75,9.520353,1.609438,5.190491,1
-11,2,0,0,1,230774,0,13633.43,14.40931,1,11,1,47.4779,4.118565,0,0,0,51.59646,0,0,0,6,0,6,89.4,3.4,0,93.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,93.2,9.520353,1.791759,3.943453,1
-11,2,0,0,2,230774,0,13633.43,15.40931,1,11,1,64.26183,4.171046,0,0,0,68.43287,0,0,0,4,1,5,89.4,3.4,0,93.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,93.2,9.520353,1.609438,4.225853,1
-11,2,0,0,3,230774,0,13633.43,16.40931,1,11,1,32.48463,11.39596,0,0,0,43.8806,0,0,0,4,0,5,89.4,3.4,0,93.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,93.2,9.520353,1.609438,3.781472,1
-11,2,0,0,1,230775,0,13633.43,38.75702,0,15,1,0,0,0,0,0,0,0,0,0,0,0,6,74.29414,6.9,0,96.6,0,0,0,0,1.791759,0,0,0,0,0,0,0,96.6,9.520353,1.791759,,0
-11,2,0,0,2,230775,0,13633.43,39.75702,0,15,1,12.42236,11.04634,0,0,0,23.46871,0,0,0,2,0,5,74.29414,6.9,0,96.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,96.6,9.520353,1.609438,3.155668,1
-11,2,0,0,3,230775,0,13633.43,40.75702,0,15,1,10.75505,1.097454,0,0,0,11.8525,0,0,0,1,0,5,74.29414,6.9,0,96.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,96.6,9.520353,1.609438,2.472539,1
-11,2,0,0,1,230776,0,13633.43,13.33881,0,11,1,21.32085,0,34.62819,0,0,55.94904,0,0,0,2,0,6,83.3,11.84267,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,9.520353,1.791759,4.024441,1
-11,2,0,0,2,230776,0,13633.43,14.33881,0,11,1,32.01147,0,11.13235,0,0,43.14381,0,0,0,1,1,5,83.3,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.520353,1.609438,3.764539,1
-11,2,0,0,3,230776,0,13633.43,15.33881,0,11,1,14.2669,0,0,0,0,14.2669,0,0,0,1,0,5,83.3,11.84267,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.520353,1.609438,2.657942,1
-11,2,0,0,1,230777,0,13633.43,8.536619,0,11,1,10.66043,0,191.8357,0,439.0796,641.5757,1,0,0,2,0,6,83.3,11.84267,1,55.6,0,0,1,0,1.791759,0,0,0,0,0,0,0,55.6,9.520353,1.791759,6.463927,1
-11,2,0,1,1,230778,0,2910.85,18.06981,1,8,1,153.4145,49.36474,32.07517,0,0,234.8544,0,0,0,5,1,3,46.3,24.1,0,43.2,0,234,0,0,1.098612,5.455321,0,0,0,0,1,0,43.2,7.976544,1.098612,5.458966,1
-11,2,0,1,2,230778,0,2910.85,19.06981,1,8,1,949.8069,34.96139,17.37452,0,0,1002.143,0,0,0,8,1,3,46.3,24.1,0,43.2,0,234,0,0,1.098612,5.455321,0,0,0,0,1,0,43.2,7.976544,1.098612,6.909896,1
-11,2,0,1,3,230778,0,2910.85,20.06981,1,8,1,98.48687,38.11749,0,0,0,136.6044,0,0,0,9,0,3,46.3,24.1,0,43.2,0,234,0,0,1.098612,5.455321,0,0,0,0,1,0,43.2,7.976544,1.098612,4.917089,1
-11,2,0,1,1,230779,0,2910.85,21.91102,0,9,1,310.2435,59.69296,0,0,1412.282,1782.218,2,0,0,11,1,3,35.1,20.7,1,59.1,0,234,0,0,1.098612,5.455321,0,0,0,0,0,0,59.1,7.976544,1.098612,7.485614,1
-11,2,0,1,2,230779,0,2910.85,22.91102,0,9,1,543.2432,15.34749,0,0,0,558.5908,0,0,0,9,0,3,35.1,20.7,1,59.1,0,234,0,0,1.098612,5.455321,0,0,0,0,0,0,59.1,7.976544,1.098612,6.325417,1
-11,2,0,1,3,230779,0,2910.85,23.91102,0,9,1,167.0004,0,0,0,0,167.0004,0,0,0,4,0,3,35.1,20.7,1,59.1,0,234,0,0,1.098612,5.455321,0,0,0,0,0,0,59.1,7.976544,1.098612,5.117997,1
-11,2,0,1,1,230780,0,2910.85,1.138946,0,8,1,202.0381,35.49497,0,0,308.2054,545.7385,1,0,0,6,0,3,81.35272,11.84267,0,37,0,234,1,0,1.098612,5.455321,0,0,0,0,0,0,37,7.976544,1.098612,6.30214,1
-11,2,0,1,2,230780,0,2910.85,2.138946,0,8,1,23.16602,4.416023,0,0,0,27.58205,0,0,0,2,0,3,81.35272,11.84267,0,37,0,234,1,0,1.098612,5.455321,0,0,0,0,0,0,37,7.976544,1.098612,3.317165,1
-11,2,0,1,3,230780,0,2910.85,3.138946,0,8,1,2.225189,1.869159,0,0,0,4.094348,0,0,0,1,0,3,81.35272,11.84267,0,37,0,234,1,0,1.098612,5.455321,0,0,0,0,0,0,37,7.976544,1.098612,1.409608,1
-11,2,0,1,1,230793,0,16585.92,54.94867,0,16,1,115.4446,0,30.60322,0,0,146.0478,0,0,0,4,1,2,89.9,0,0,84.1,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,84.1,9.71637,.6931472,4.983934,1
-11,2,0,1,2,230793,0,16585.92,55.94867,0,16,1,43.71715,0,0,0,0,43.71715,0,0,0,2,0,2,89.9,0,0,84.1,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,84.1,9.71637,.6931472,3.77774,1
-11,2,0,1,3,230793,0,16585.92,56.94867,0,16,1,134.1089,0,29.41176,0,0,163.5206,0,0,0,4,1,2,89.9,0,0,84.1,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,84.1,9.71637,.6931472,5.096939,1
-11,2,0,1,1,230794,0,16585.92,51.43053,1,12,1,63.18253,95.34582,0,0,0,158.5283,0,0,0,6,0,2,87.2,10.3,1,85.2,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,85.2,9.71637,.6931472,5.065933,1
-11,2,0,1,2,230794,0,16585.92,52.43053,1,12,1,54.94505,107.1046,0,0,1280.053,1442.102,1,0,0,2,2,2,87.2,10.3,1,85.2,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,85.2,9.71637,.6931472,7.273857,1
-11,2,0,1,3,230794,0,16585.92,53.43053,1,12,1,26.77788,155.6673,40.61457,0,0,223.0597,0,0,0,3,1,2,87.2,10.3,1,85.2,0,589.2,0,0,.6931472,6.378766,0,0,0,0,0,0,85.2,9.71637,.6931472,5.40744,1
-13,2,0,1,1,230796,0,8665.641,35.154,1,12,1,31.23366,59.27339,32.85416,0,0,123.3612,0,0,0,1,1,4,60.1,24.1,0,76.1,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,1,0,0,76.1,9.067237,1.386294,4.815117,1
-13,2,0,1,2,230796,0,8665.641,36.154,1,12,1,419.7501,44.86785,0,0,0,464.618,0,0,0,6,0,4,60.1,24.1,0,76.1,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,1,0,0,76.1,9.067237,1.386294,6.141215,1
-13,2,0,1,3,230796,0,8665.641,37.154,1,12,1,358.7004,77.4185,38.86784,0,0,474.9868,0,0,0,24,2,4,60.1,24.1,0,76.1,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,1,0,0,76.1,9.067237,1.386294,6.163287,1
-13,2,0,1,1,230797,0,8665.641,9.190965,1,12,1,33.19394,5.196027,26.44015,0,0,64.83011,0,0,0,2,1,4,80,11.84267,0,96.3,450,517.56,1,1,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,4.17177,1
-13,2,0,1,2,230797,0,8665.641,10.19096,1,12,1,9.25036,4.204709,0,0,0,13.45507,0,0,0,1,0,4,80,11.84267,0,96.3,450,517.56,1,1,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,2.599356,1
-13,2,0,1,3,230797,0,8665.641,11.19096,1,12,1,41.18943,5.837004,29.70485,0,0,76.73128,0,0,0,5,0,4,80,11.84267,0,96.3,450,517.56,1,1,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,4.34031,1
-13,2,0,1,1,230798,0,8665.641,33.48939,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,91,6.9,0,81.8,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,81.8,9.067237,1.386294,,0
-13,2,0,1,2,230798,0,8665.641,34.48939,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,91,6.9,0,81.8,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,81.8,9.067237,1.386294,,0
-13,2,0,1,3,230798,0,8665.641,35.48939,0,13,1,84.14097,26.34361,35.14537,0,590.9207,736.5507,1,0,0,3,0,4,91,6.9,0,81.8,450,517.56,0,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,81.8,9.067237,1.386294,6.601978,1
-13,2,0,1,1,230799,0,8665.641,7.353867,0,12,1,13.59122,0,0,0,0,13.59122,0,0,0,0,1,4,75,11.84267,0,96.3,450,517.56,1,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,2.609424,1
-13,2,0,1,2,230799,0,8665.641,8.353868,0,12,1,15.61749,6.621817,0,0,0,22.23931,0,0,0,2,0,4,75,11.84267,0,96.3,450,517.56,1,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,3.101861,1
-13,2,0,1,3,230799,0,8665.641,9.353868,0,12,1,13.87665,0,0,0,0,13.87665,0,0,0,1,0,4,75,11.84267,0,96.3,450,517.56,1,0,1.386294,6.249125,1,4.564348,6.160541,0,0,0,96.3,9.067237,1.386294,2.630208,1
-11,2,0,1,1,230803,0,7353.666,29.04312,0,12,1,40.30161,0,34.05616,0,0,74.35777,0,0,0,4,0,1,61.7,13.8,0,55.7,0,0,0,0,0,0,0,0,0,0,0,0,55.7,8.90309,0,4.308888,1
-11,2,0,1,2,230803,0,7353.666,30.04312,0,12,1,94.60105,5.059723,0,0,0,99.66077,0,0,0,4,0,1,61.7,13.8,0,55.7,0,0,0,0,0,0,0,0,0,0,0,0,55.7,8.90309,0,4.601772,1
-11,2,0,1,3,230803,0,7353.666,31.04312,0,12,1,48.50746,4.925373,27.12028,0,0,80.55312,0,0,0,3,0,1,61.7,13.8,0,55.7,0,0,0,0,0,0,0,0,0,0,0,0,55.7,8.90309,0,4.388917,1
-5,2,25,0,1,230804,0,8665.641,27.47707,1,16,1,13.00052,0,34.05616,0,568.7208,615.7774,1,0,0,1,0,3,74.5,24.1,1,69.3,548.75,623.75,0,0,1.098612,6.43575,0,3.258096,7.693937,1,0,0,69.3,9.067237,1.098612,6.422885,1
-5,2,25,0,2,230804,0,8665.641,28.47707,1,16,1,0,0,16.86574,0,0,16.86574,0,0,0,0,0,4,74.5,24.1,1,69.3,548.75,623.75,0,0,1.386294,6.43575,0,3.258096,7.693937,1,0,0,69.3,9.067237,1.386294,2.825284,1
-5,2,25,0,3,230804,0,8665.641,29.47707,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,24.1,1,69.3,548.75,623.75,0,0,1.386294,6.43575,0,3.258096,7.693937,1,0,0,69.3,9.067237,1.386294,,0
-5,2,25,0,1,230805,0,8665.641,29.16632,0,16,1,47.32189,0,2.979719,0,0,50.30161,0,0,0,2,0,3,67.6,13.8,1,47.7,548.75,623.75,0,0,1.098612,6.43575,0,3.258096,7.693937,1,0,0,47.7,9.067237,1.098612,3.918037,1
-5,2,25,0,2,230805,0,8665.641,30.16632,0,16,1,14.33349,0,0,0,0,14.33349,0,0,0,1,0,4,67.6,13.8,1,47.7,548.75,623.75,0,0,1.386294,6.43575,0,3.258096,7.693937,1,0,0,47.7,9.067237,1.386294,2.662599,1
-5,2,25,0,3,230805,0,8665.641,31.16632,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,67.6,13.8,1,47.7,548.75,623.75,0,0,1.386294,6.43575,0,3.258096,7.693937,1,0,0,47.7,9.067237,1.386294,,0
-5,2,25,0,1,230806,0,8665.641,2.01232,0,16,1,10.40042,1.606864,0,0,0,12.00728,0,0,0,1,0,3,81.35272,11.84267,0,77.8,548.75,623.75,1,0,1.098612,6.43575,0,3.258096,7.693937,0,0,0,77.8,9.067237,1.098612,2.485513,1
-5,2,25,0,2,230806,0,8665.641,3.01232,0,16,1,10.51123,0,0,0,0,10.51123,0,0,0,2,0,4,81.35272,11.84267,0,77.8,548.75,623.75,1,0,1.386294,6.43575,0,3.258096,7.693937,0,0,0,77.8,9.067237,1.386294,2.352444,1
-5,2,25,0,3,230806,0,8665.641,4.012321,0,16,1,7.023705,0,0,0,0,7.023705,0,0,0,1,0,4,81.35272,11.84267,0,77.8,548.75,623.75,1,0,1.386294,6.43575,0,3.258096,7.693937,0,0,0,77.8,9.067237,1.386294,1.949291,1
-14,2,95,0,1,230808,0,3993.548,41.71115,0,12,1,102.2881,3.010921,32.02808,0,1421.789,1559.116,1,0,0,3,0,1,87.8,13.8,0,79.5,386.2,386.2,0,0,0,5.956356,0,4.564348,6.007648,0,0,0,79.5,8.292686,0,7.351874,1
-14,2,95,0,2,230808,0,3993.548,42.71115,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,87.8,13.8,0,79.5,386.2,386.2,0,0,0,5.956356,0,4.564348,6.007648,0,0,0,79.5,8.292686,0,,0
-13,2,0,0,1,230849,0,7508.504,36.45722,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.1,0,0,80.7,150,38.43,0,0,0,3.648839,1,4.564348,5.061929,1,0,0,80.7,8.923924,0,,0
-13,2,0,0,2,230849,0,7508.504,37.45722,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.1,0,0,80.7,150,38.43,0,0,0,3.648839,1,4.564348,5.061929,1,0,0,80.7,8.923924,0,,0
-13,2,0,0,3,230849,0,7508.504,38.45722,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.1,0,0,80.7,150,38.43,0,0,0,3.648839,1,4.564348,5.061929,1,0,0,80.7,8.923924,0,,0
-13,2,0,0,4,230849,0,7508.504,39.45722,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,85.1,0,0,80.7,150,38.43,0,0,0,3.648839,1,4.564348,5.061929,1,0,0,80.7,8.923924,0,,0
-13,2,0,0,5,230849,0,7508.504,40.45722,0,12,1,24.5975,0,0,0,457.7639,482.3614,1,0,0,0,0,1,85.1,0,0,80.7,150,38.43,0,0,0,3.648839,1,4.564348,5.061929,1,0,0,80.7,8.923924,0,6.178694,1
-11,2,0,0,1,230877,0,1052.786,22.99247,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,24.1,0,70.5,0,189.6,0,0,0,5.244916,0,0,0,1,0,0,70.5,6.960145,0,,0
-11,2,0,0,2,230877,0,1052.786,23.99247,0,12,1,41.90341,0,0,0,0,41.90341,0,0,0,2,0,1,78.2,24.1,0,70.5,0,189.6,0,0,0,5.244916,0,0,0,1,0,0,70.5,6.960145,0,3.735367,1
-11,2,0,0,3,230877,0,1052.786,24.99247,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,24.1,0,70.5,0,189.6,0,0,0,5.244916,0,0,0,1,0,0,70.5,6.960145,0,,0
-11,2,0,0,4,230877,0,1052.786,25.99247,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,24.1,0,70.5,0,189.6,0,0,0,5.244916,0,0,0,1,0,0,70.5,6.960145,0,,0
-11,2,0,0,5,230877,0,1052.786,26.99247,0,12,1,39.78533,0,0,0,0,39.78533,0,0,0,1,0,1,78.2,24.1,0,70.5,0,189.6,0,0,0,5.244916,0,0,0,1,0,0,70.5,6.960145,0,3.683498,1
-11,2,0,0,1,230878,0,8665.641,21.65366,1,12,1,229.1087,21.71046,0,0,0,250.8192,0,0,0,6,0,1,58,17.2,0,51.2,0,133.8,0,0,0,4.896346,0,0,0,1,0,0,51.2,9.067237,0,5.524732,1
-11,2,0,0,2,230878,0,8665.641,22.65366,1,12,1,62.26326,23.48485,0,0,0,85.74811,0,0,0,2,1,1,58,17.2,0,51.2,0,133.8,0,0,0,4.896346,0,0,0,1,0,0,51.2,9.067237,0,4.451414,1
-11,2,0,0,3,230878,0,8665.641,23.65366,1,12,1,42.26268,11.09666,0,0,0,53.35934,0,0,0,1,0,1,58,17.2,0,51.2,0,133.8,0,0,0,4.896346,0,0,0,1,0,0,51.2,9.067237,0,3.977049,1
-11,2,0,0,4,230878,0,8665.641,24.65366,1,12,1,12.80031,9.275305,0,0,0,22.07562,0,0,0,1,0,1,58,17.2,0,51.2,0,133.8,0,0,0,4.896346,0,0,0,1,0,0,51.2,9.067237,0,3.094474,1
-11,2,0,0,5,230878,0,8665.641,25.65366,1,12,1,53.52415,21.43471,0,0,0,74.95885,0,0,0,3,0,1,58,17.2,0,51.2,0,133.8,0,0,0,4.896346,0,0,0,1,0,0,51.2,9.067237,0,4.316939,1
-11,2,0,0,1,230879,0,1,25.68925,0,13,1,20.80083,15.23661,33.28133,0,0,69.31877,0,0,0,0,1,1,77.1,10.3,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,.6931472,0,4.238716,1
-11,2,0,0,2,230879,0,1,26.68925,0,13,1,70.23412,1.428571,0,0,0,71.66268,0,0,0,1,2,1,77.1,10.3,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,.6931472,0,4.27197,1
-11,2,0,0,3,230879,0,1,27.68925,0,13,1,56.29939,9.76734,21.94908,0,0,88.0158,0,0,0,2,1,1,77.1,10.3,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,.6931472,0,4.477516,1
-11,2,0,0,4,230879,0,1,28.68925,0,13,1,9.872357,16.37415,0,0,0,26.24651,0,0,0,1,0,1,77.1,10.3,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,.6931472,0,3.267533,1
-11,2,0,0,5,230879,0,1,29.68925,0,13,1,14.50326,22.78825,29.28934,0,0,66.58086,0,0,0,0,1,1,77.1,10.3,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,.6931472,0,4.198417,1
-11,2,0,1,1,230880,0,400,22.72142,1,12,1,177.0256,50.00523,105.0706,0,0,332.1014,0,0,0,8,3,1,78.2,13.8,1,58.3,0,0,0,0,0,0,0,0,0,1,0,0,58.3,5.993961,0,5.80544,1
-11,2,0,1,2,230880,0,400,23.72142,1,12,1,165.7857,34.4642,0,0,0,200.2499,0,0,0,9,5,1,78.2,13.8,1,58.3,0,0,0,0,0,0,0,0,0,1,0,0,58.3,5.993961,0,5.299566,1
-11,2,0,1,3,230880,0,400,24.72142,1,12,1,193.5022,67.88546,0,0,0,261.3877,0,0,0,9,11,1,78.2,13.8,1,58.3,0,0,0,0,0,0,0,0,0,1,0,0,58.3,5.993961,0,5.566005,1
-11,2,0,1,4,230880,0,400,25.72142,1,12,1,296.2621,52.43952,17.28226,26.20968,0,365.9839,0,0,1,11,9,1,78.2,13.8,1,58.3,0,0,0,0,0,0,0,0,0,1,0,0,58.3,5.993961,0,5.902589,1
-11,2,0,1,5,230880,0,400,26.72142,1,12,1,1006.047,78.64117,36.40802,0,1270.31,2391.406,1,0,0,6,55,1,78.2,13.8,1,58.3,0,0,0,0,0,0,0,0,0,1,0,0,58.3,5.993961,0,7.779637,1
-5,2,25,0,1,230900,0,4070.381,54.91034,1,13,1,13.91056,3.120125,44.50858,0,0,61.53926,0,0,0,1,1,1,65.4,17.2,1,78.4,325,325,0,0,0,5.783825,0,3.258096,7.17012,1,0,0,78.4,8.311738,0,4.119675,1
-5,2,25,0,1,230901,0,1728.446,26.54894,1,14,1,31.46126,4.082163,0,0,0,35.54342,0,0,0,2,0,1,78.2,20.7,0,77.3,140.15,0,0,0,0,0,0,3.258096,6.329008,1,0,0,77.3,7.455556,0,3.570755,1
-5,2,25,0,2,230901,0,1728.446,27.54894,1,14,1,23.29193,0,0,0,0,23.29193,0,0,0,2,0,1,78.2,20.7,0,77.3,140.15,0,0,0,0,0,0,3.258096,6.329008,1,0,0,77.3,7.455556,0,3.148107,1
-5,2,25,0,3,230901,0,1728.446,28.54894,1,14,1,94.0518,3.050922,0,0,0,97.10272,0,0,0,5,0,1,78.2,20.7,0,77.3,140.15,0,0,0,0,0,0,3.258096,6.329008,1,0,0,77.3,7.455556,0,4.575769,1
-5,2,25,0,4,230901,0,1728.446,29.54894,1,14,1,288.0135,15.76785,0,0,0,303.7814,0,0,0,4,13,1,78.2,20.7,0,77.3,140.15,0,0,0,0,0,0,3.258096,6.329008,1,0,0,77.3,7.455556,0,5.716309,1
-5,2,25,0,5,230901,0,1728.446,30.54894,1,14,1,37.98042,2.824511,0,0,0,40.80493,0,0,0,1,4,1,78.2,20.7,0,77.3,140.15,0,0,0,0,0,0,3.258096,6.329008,1,0,0,77.3,7.455556,0,3.708803,1
-11,2,0,0,1,230923,0,2352.493,25.0486,0,15,1,45.96527,0,0,0,0,45.96527,0,0,0,2,0,1,78.2,3.4,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,7.763656,0,3.827886,1
-11,2,0,0,2,230923,0,2352.493,26.0486,0,15,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,3.4,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,7.763656,0,,0
-11,2,0,0,3,230923,0,2352.493,27.0486,0,15,1,29.01978,0,36.01892,0,0,65.0387,0,0,0,1,1,1,78.2,3.4,0,71.6,0,0,0,0,0,0,0,0,0,0,0,0,71.6,7.763656,0,4.174983,1
-13,2,0,0,1,230953,0,18432.84,15.80835,1,12,1,52.73238,11.41471,0,0,1190.347,1254.494,1,0,0,3,0,3,78.2,13.8,0,79.5,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.821943,1.098612,7.134488,1
-13,2,0,0,2,230953,0,18432.84,16.80835,1,12,1,101.7346,25.53211,33.57712,0,425.2227,586.0666,1,0,0,8,1,3,78.2,13.8,0,79.5,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.821943,1.098612,6.373434,1
-13,2,0,0,3,230953,0,18432.84,17.80835,1,12,1,59.54428,16.1006,0,0,0,75.64488,0,0,0,3,1,3,78.2,13.8,0,79.5,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.821943,1.098612,4.32605,1
-13,2,0,0,4,230953,0,18432.84,18.80835,1,12,1,171.3067,7.696782,21.3261,0,0,200.3296,0,0,0,10,0,3,78.2,13.8,0,79.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.821943,1.098612,5.299964,1
-13,2,0,0,5,230953,0,18432.84,19.80835,1,12,1,23.2661,0,0,0,0,23.2661,0,0,0,1,0,2,78.2,13.8,0,79.5,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.821943,.6931472,3.146997,1
-13,2,0,0,1,230956,0,8665.641,23.5373,0,12,1,32.40598,2.462648,0,0,0,34.86863,0,0,0,2,0,1,71.8,3.4,0,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67.5,9.067237,0,3.551587,1
-13,2,0,0,2,230956,0,8665.641,24.5373,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67.5,9.067237,0,,0
-13,2,0,0,3,230956,0,8665.641,25.5373,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67.5,9.067237,0,,0
-13,2,0,0,4,230956,0,8665.641,26.5373,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67.5,9.067237,0,,0
-14,2,95,0,1,230962,0,4582.405,22.13552,1,12,1,183.3504,55.21961,31.15424,0,0,269.7242,0,0,0,14,0,2,84,3.4,0,70.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,70.5,8.430198,.6931472,5.5974,1
-14,2,95,0,2,230962,0,4582.405,23.13552,1,12,1,220.933,57.50117,34.49601,0,0,312.9301,0,0,0,9,0,2,84,3.4,0,70.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,70.5,8.430198,.6931472,5.74598,1
-14,2,95,0,3,230962,0,4582.405,24.13552,1,12,1,574.0112,96.06621,0,0,939.7249,1609.802,1,0,0,23,0,2,84,3.4,0,70.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,70.5,8.430198,.6931472,7.383867,1
-13,2,0,0,1,230967,0,12936.07,42.37645,1,12,1,218.9593,23.23545,33.69397,0,0,275.8887,0,0,0,7,12,5,84,10.3,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,79.5,9.467853,1.609438,5.619998,1
-13,2,0,0,2,230967,0,12936.07,43.37645,1,12,1,107.4811,24.33712,0,0,0,131.8182,0,0,0,4,4,5,84,10.3,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,79.5,9.467853,1.609438,4.881423,1
-13,2,0,0,3,230967,0,12936.07,44.37645,1,12,1,124.6207,15.42263,50.0997,0,0,190.143,0,0,0,6,1,5,84,10.3,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,79.5,9.467853,1.609438,5.247777,1
-13,2,0,0,4,230967,0,12936.07,45.37645,1,12,1,100.3939,8.60575,11.21308,0,0,120.2127,0,0,0,3,0,5,84,10.3,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,79.5,9.467853,1.609438,4.789263,1
-13,2,0,0,5,230967,0,12936.07,46.37645,1,12,1,131.7531,9.101968,37.67442,0,1362.1,1540.63,1,0,0,3,4,6,84,10.3,0,79.5,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,79.5,9.467853,1.791759,7.339946,1
-13,2,0,0,1,230968,0,12936.07,14.93498,0,12,1,59.76301,26.84184,.618238,0,0,87.22308,0,0,0,5,0,5,82.4,10.3,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.467853,1.609438,4.468469,1
-13,2,0,0,2,230968,0,12936.07,15.93498,0,12,1,136.8371,16.99337,0,0,0,153.8305,0,0,0,4,4,5,82.4,10.3,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.467853,1.609438,5.035851,1
-13,2,0,0,3,230968,0,12936.07,16.93498,0,12,1,301.0836,32.62245,4.334634,0,0,338.0407,0,0,0,9,6,5,82.4,10.3,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.467853,1.609438,5.823166,1
-13,2,0,0,4,230968,0,12936.07,17.93498,0,12,1,96.51437,6.100827,0,0,0,102.6152,0,0,0,4,0,5,82.4,10.3,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.467853,1.609438,4.630986,1
-13,2,0,0,5,230968,0,12936.07,18.93498,0,12,1,69.94633,1.413238,0,0,0,71.35957,0,0,0,5,3,6,82.4,10.3,0,88.6,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.467853,1.791759,4.267732,1
-13,2,0,0,1,230969,0,12936.07,49.37988,0,12,1,82.94694,7.676455,49.84544,0,0,140.4688,0,0,0,2,1,5,86.7,6.9,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.467853,1.609438,4.944985,1
-13,2,0,0,2,230969,0,12936.07,50.37988,0,12,1,102.036,13.61269,0,0,0,115.6487,0,0,0,6,0,5,86.7,6.9,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.467853,1.609438,4.750557,1
-13,2,0,0,3,230969,0,12936.07,51.37988,0,12,1,89.51019,9.687906,0,0,0,99.19809,0,0,0,3,4,5,86.7,6.9,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.467853,1.609438,4.597119,1
-13,2,0,0,4,230969,0,12936.07,52.37988,0,12,1,124.5569,13.30445,0,0,1231.489,1369.35,1,0,0,3,7,5,86.7,6.9,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.467853,1.609438,7.222092,1
-13,2,0,0,5,230969,0,12936.07,53.37988,0,12,1,91.59213,14.39356,38.56887,0,0,144.5546,0,0,0,7,5,6,86.7,6.9,0,77.3,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.467853,1.791759,4.973657,1
-13,2,0,0,1,230970,0,12936.07,18.40931,0,11,1,40.95827,12.10716,0,0,0,53.06543,0,0,0,2,0,5,79.8,3.4,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.467853,1.609438,3.971526,1
-13,2,0,0,2,230970,0,12936.07,19.40931,0,11,1,127.8409,24.05303,0,0,0,151.8939,0,0,0,13,0,5,79.8,3.4,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.467853,1.609438,5.023182,1
-13,2,0,0,3,230970,0,12936.07,20.40931,0,11,1,137.8197,41.17902,0,0,0,178.9987,0,0,0,10,0,5,79.8,3.4,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.467853,1.609438,5.187378,1
-13,2,0,0,4,230970,0,12936.07,21.40931,0,11,1,75.8527,23.63135,0,0,0,99.48405,0,0,0,6,0,5,79.8,3.4,0,79.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.467853,1.609438,4.599998,1
-13,2,0,0,5,230970,0,12936.07,22.40931,0,11,1,196.1538,42.30412,0,0,0,238.458,0,0,0,14,0,6,79.8,3.4,0,79.5,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.467853,1.791759,5.474193,1
-17,2,25,0,1,230994,0,5780.645,32.07666,0,14,1,45.96527,47.22165,0,0,0,93.18693,0,0,0,5,0,1,70.2,17.2,0,75,452.5,452.5,0,0,0,6.114788,0,3.258096,7.501082,0,0,0,75,8.662443,0,4.534607,1
-17,2,25,0,2,230994,0,5780.645,33.07666,0,14,1,191.7487,66.68073,0,140.647,11785.68,12044.11,4,0,6,12,0,1,70.2,17.2,0,75,452.5,452.5,0,0,0,6.114788,0,3.258096,7.501082,0,0,0,75,8.662443,0,9.396331,1
-17,2,25,0,3,230994,0,5780.645,34.07666,0,14,1,349.0542,29.30783,0,0,0,378.362,0,0,0,21,15,1,70.2,17.2,0,75,452.5,452.5,0,0,0,6.114788,0,3.258096,7.501082,0,0,0,75,8.662443,0,5.935852,1
-11,2,0,1,1,231014,0,5622.874,4.281999,1,14,1,10.58761,0,0,0,0,10.58761,0,0,0,0,0,3,81.35272,11.84267,0,92.6,0,66,1,1,1.098612,4.189655,0,0,0,0,0,0,92.6,8.634776,1.098612,2.359685,1
-11,2,0,1,2,231014,0,5622.874,5.281999,1,14,1,8.735521,0,0,0,0,8.735521,0,0,0,1,0,3,81.35272,11.84267,0,92.6,0,66,1,1,1.098612,4.189655,0,0,0,0,0,0,92.6,8.634776,1.098612,2.167398,1
-11,2,0,1,3,231014,0,5622.874,6.281999,1,14,1,10.82332,2.225189,0,0,0,13.04851,0,0,0,1,0,3,81.35272,11.84267,0,92.6,0,66,1,1,1.098612,4.189655,0,0,0,0,0,0,92.6,8.634776,1.098612,2.568674,1
-11,2,0,1,1,231015,0,5622.874,7.397673,1,14,1,37.05664,0,0,0,0,37.05664,0,0,0,1,0,3,78.3,11.84267,0,88.9,0,66,1,1,1.098612,4.189655,0,0,0,1,0,0,88.9,8.634776,1.098612,3.612448,1
-11,2,0,1,2,231015,0,5622.874,8.397673,1,14,1,22.2973,3.590734,36.01351,0,0,61.90154,0,0,0,2,0,3,78.3,11.84267,0,88.9,0,66,1,1,1.098612,4.189655,0,0,0,1,0,0,88.9,8.634776,1.098612,4.125545,1
-11,2,0,1,3,231015,0,5622.874,9.397673,1,14,1,67.95283,7.721406,15.57632,0,0,91.25056,0,0,0,6,0,3,78.3,11.84267,0,88.9,0,66,1,1,1.098612,4.189655,0,0,0,1,0,0,88.9,8.634776,1.098612,4.513609,1
-11,2,0,1,1,231016,0,5622.874,29.56058,1,14,1,148.756,31.82636,0,0,0,180.5823,0,0,0,5,8,3,75,13.8,0,86.4,0,66,0,0,1.098612,4.189655,0,0,0,0,0,0,86.4,8.634776,1.098612,5.196187,1
-11,2,0,1,2,231016,0,5622.874,30.56058,1,14,1,27.74131,6.669884,0,0,314.6042,349.0154,1,0,0,2,0,3,75,13.8,0,86.4,0,66,0,0,1.098612,4.189655,0,0,0,0,0,0,86.4,8.634776,1.098612,5.855116,1
-11,2,0,1,3,231016,0,5622.874,31.56058,1,14,1,54.68625,9.279038,31.87361,0,0,95.8389,0,0,0,4,1,3,75,13.8,0,86.4,0,66,0,0,1.098612,4.189655,0,0,0,0,0,0,86.4,8.634776,1.098612,4.562669,1
-13,2,0,1,1,231025,0,8052.105,7.23614,0,12,1,20.90957,1.542081,2.587559,0,0,25.03921,0,0,0,0,1,3,90,11.84267,0,88.9,450,0,1,0,1.098612,0,1,4.564348,6.160541,1,0,0,88.9,8.993814,1.098612,3.220443,1
-13,2,0,1,2,231025,0,8052.105,8.236139,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90,11.84267,0,88.9,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,88.9,8.993814,.6931472,,0
-13,2,0,1,3,231025,0,8052.105,9.236139,0,12,1,5.726872,0,3.061674,0,0,8.788547,0,0,0,1,0,2,90,11.84267,0,88.9,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,88.9,8.993814,.6931472,2.173449,1
-13,2,0,1,4,231025,0,8052.105,10.23614,0,12,1,21.67339,0,0,0,0,21.67339,0,0,0,2,0,2,90,11.84267,0,88.9,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,88.9,8.993814,.6931472,3.076085,1
-13,2,0,1,5,231025,0,8052.105,11.23614,0,12,1,5.82878,4.28051,0,0,0,10.10929,0,0,0,1,0,2,90,11.84267,0,88.9,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,88.9,8.993814,.6931472,2.313455,1
-13,2,0,1,1,231026,0,8052.105,34.17112,1,12,1,39.885,48.90225,0,0,216.3095,305.0967,1,0,0,3,1,3,86.2,6.9,1,92,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,92,8.993814,1.098612,5.720629,1
-13,2,0,1,2,231026,0,8052.105,35.17112,1,12,1,60.11533,35.1754,0,0,509.0101,604.3008,2,0,0,5,0,2,86.2,6.9,1,92,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,92,8.993814,.6931472,6.404072,1
-13,2,0,1,3,231026,0,8052.105,36.17112,1,12,1,32.81938,31.10573,0,0,332.9075,396.8326,1,0,0,4,0,2,86.2,6.9,1,92,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,92,8.993814,.6931472,5.983515,1
-13,2,0,1,4,231026,0,8052.105,37.17112,1,12,1,27.82258,10.60484,27.78226,0,0,66.20968,0,0,0,0,1,2,86.2,6.9,1,92,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,92,8.993814,.6931472,4.192827,1
-13,2,0,1,5,231026,0,8052.105,38.17112,1,12,1,8.925319,4.298725,0,0,312.8524,326.0765,1,0,0,1,0,2,86.2,6.9,1,92,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,92,8.993814,.6931472,5.787132,1
-13,2,0,1,1,231027,0,8052.105,4.914442,1,12,.3369863,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,37,450,0,1,1,1.098612,0,1,4.564348,6.160541,1,0,0,37,8.993814,1.098612,,0
-11,2,0,0,1,231038,.0220994,8665.641,35.87406,1,7,1,138.0655,94.24337,32.01768,36.40145,0,264.3266,0,0,2,15,1,4,36.7,20.7,1,70.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,70.5,9.067237,1.386294,5.577185,1
-11,2,0,0,2,231038,.0220994,8665.641,36.87406,1,7,1,72.14525,83.63115,0,195.8911,0,155.7764,0,0,8,9,0,4,36.7,20.7,1,70.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,70.5,9.067237,1.386294,5.048422,1
-11,2,0,0,3,231038,.0220994,8665.641,37.87406,1,7,1,112.1598,135.2897,0,232.6602,1208.402,1455.852,3,0,11,1,0,4,36.7,20.7,1,70.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,70.5,9.067237,1.386294,7.283346,1
-11,2,0,0,1,231039,.0220994,8665.641,12.91718,1,7,1,6.50026,0,33.06812,0,0,39.56838,0,0,0,0,1,4,15,11.84267,1,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,9.067237,1.386294,3.67803,1
-11,2,0,0,2,231039,.0220994,8665.641,13.91718,1,7,1,7.166746,0,15.76684,0,0,22.93359,0,0,0,0,1,4,15,11.84267,1,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,9.067237,1.386294,3.132602,1
-11,2,0,0,3,231039,.0220994,8665.641,14.91718,1,7,1,15.36436,0,35.89991,0,0,51.26427,0,0,0,1,0,4,15,11.84267,1,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,9.067237,1.386294,3.936994,1
-11,2,0,0,1,231040,.0220994,8665.641,46.60643,0,16,1,8.840354,0,62.14769,0,0,70.98804,0,0,0,0,1,4,97.3,10.3,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,1,0,78.4,9.067237,1.386294,4.262511,1
-11,2,0,0,2,231040,.0220994,8665.641,47.60643,0,16,1,173.4353,0,0,0,0,173.4353,0,0,0,6,0,4,97.3,10.3,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,1,0,78.4,9.067237,1.386294,5.155804,1
-11,2,0,0,3,231040,.0220994,8665.641,48.60643,0,16,1,0,0,28.43723,0,0,28.43723,0,0,0,0,0,4,97.3,10.3,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,1,0,78.4,9.067237,1.386294,3.347699,1
-11,2,0,0,1,231041,.0220994,8665.641,14.41205,0,7,1,6.50026,3.380135,29.12116,0,0,39.00156,0,0,0,0,1,4,61.7,3.4,0,90.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,90.9,9.067237,1.386294,3.663602,1
-11,2,0,0,2,231041,.0220994,8665.641,15.41205,0,7,1,4.777831,0,0,0,0,4.777831,0,0,0,1,0,4,61.7,3.4,0,90.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,90.9,9.067237,1.386294,1.563987,1
-11,2,0,0,3,231041,.0220994,8665.641,16.41205,0,7,1,5.267779,0,0,0,0,5.267779,0,0,0,1,0,4,61.7,3.4,0,90.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,90.9,9.067237,1.386294,1.661609,1
-11,2,0,1,1,231060,0,8690.322,23.53456,0,9,1,56.11435,13.8433,0,0,0,69.95765,0,0,0,3,0,2,77.1,6.9,0,76.2,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.2,9.070081,.6931472,4.24789,1
-11,2,0,1,2,231060,0,8690.322,24.53456,0,9,1,9.169884,1.930502,0,0,0,11.10039,0,0,0,0,0,2,77.1,6.9,0,76.2,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.2,9.070081,.6931472,2.40698,1
-11,2,0,1,3,231060,0,8690.322,25.53456,0,9,1,19.75968,5.113485,0,0,0,24.87317,0,0,0,2,0,2,77.1,6.9,0,76.2,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.2,9.070081,.6931472,3.213789,1
-11,2,0,1,1,231061,0,8690.322,20.52567,1,12,1,55.05558,14.97088,0,0,682.001,752.0275,1,0,0,4,0,2,72.3,0,0,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,9.070081,.6931472,6.622773,1
-11,2,0,1,2,231061,0,8690.322,21.52567,1,12,1,32.57722,7.818533,32.15251,0,0,72.54826,0,0,0,2,0,2,72.3,0,0,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,9.070081,.6931472,4.284252,1
-11,2,0,1,3,231061,0,8690.322,22.52567,1,12,1,56.83133,15.27815,0,0,0,72.10948,0,0,0,3,0,2,72.3,0,0,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,9.070081,.6931472,4.278185,1
-13,2,0,0,1,231079,0,10666.86,61.66461,0,16,1,359.8661,155.796,60.74189,0,0,576.4039,0,0,0,21,0,2,80.9,20.7,1,46.6,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,1,0,46.6,9.274991,.6931472,6.356809,1
-13,2,0,0,2,231079,0,10666.86,62.66461,0,16,1,683.0019,447.3248,0,0,0,1130.327,0,0,0,41,0,2,80.9,20.7,1,46.6,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,1,0,46.6,9.274991,.6931472,7.030262,1
-13,2,0,0,3,231079,0,10666.86,63.66461,0,16,1,438.4482,193.368,49.75293,0,7132.323,7813.893,2,0,0,25,3,2,80.9,20.7,1,46.6,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,1,0,46.6,9.274991,.6931472,8.963658,1
-13,2,0,0,1,231080,0,10666.86,58.00137,1,13,1,24.72952,23.49304,13.57548,0,0,61.79804,0,0,0,1,0,2,81.9,17.2,1,64.8,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,0,0,64.8,9.274991,.6931472,4.123872,1
-13,2,0,0,2,231080,0,10666.86,59.00137,1,13,1,11.83712,18.27652,34.75379,0,0,64.86742,0,0,0,1,0,2,81.9,17.2,1,64.8,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,0,0,64.8,9.274991,.6931472,4.172346,1
-13,2,0,0,3,231080,0,10666.86,60.00137,1,13,1,13.0039,8.972692,31.80754,0,0,53.78413,0,0,0,1,0,2,81.9,17.2,1,64.8,300,962.4,0,0,.6931472,6.86943,1,4.564348,5.755076,0,0,0,64.8,9.274991,.6931472,3.984978,1
-13,2,0,0,1,231100,0,9123.167,8.936345,1,16,1,5.823187,0,0,0,0,5.823187,0,0,0,1,0,4,85,11.84267,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.118682,1.386294,1.761848,1
-13,2,0,0,2,231100,0,9123.167,9.936345,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85,11.84267,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.118682,1.386294,,0
-13,2,0,0,3,231100,0,9123.167,10.93635,1,16,1,8.010681,0,0,0,0,8.010681,0,0,0,1,0,4,85,11.84267,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.118682,1.386294,2.080776,1
-13,2,0,0,1,231101,0,9123.167,34.4887,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,84,0,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.118682,1.386294,,0
-13,2,0,0,2,231101,0,9123.167,35.4887,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,84,0,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.118682,1.386294,,0
-13,2,0,0,3,231101,0,9123.167,36.4887,0,17,1,22.25189,.1112595,0,0,0,22.36315,0,0,0,1,0,4,84,0,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.118682,1.386294,3.107414,1
-13,2,0,0,1,231102,0,9123.167,5.407255,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,11.84267,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.118682,1.386294,,0
-13,2,0,0,2,231102,0,9123.167,6.407255,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,11.84267,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.118682,1.386294,,0
-13,2,0,0,3,231102,0,9123.167,7.407255,0,16,1,57.14286,0,0,0,279.6618,336.8046,1,0,0,4,0,4,93.3,11.84267,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.118682,1.386294,5.819503,1
-13,2,0,0,1,231103,0,9123.167,34.34086,1,16,1,33.35098,0,21.88989,0,0,55.24087,0,0,0,1,1,4,86.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.118682,1.386294,4.011703,1
-13,2,0,0,2,231103,0,9123.167,35.34086,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.118682,1.386294,,0
-13,2,0,0,3,231103,0,9123.167,36.34086,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83,9.118682,1.386294,,0
-7,2,25,0,1,231121,0,14490.91,15.66598,0,16,1,0,0,25.83759,0,0,25.83759,0,0,0,0,0,3,83.5,6.9,0,72.7,1000,80,1,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,72.7,9.581346,1.098612,3.25183,1
-7,2,25,0,2,231121,0,14490.91,16.66598,0,16,1,30.66104,0,18.28411,0,0,48.94515,0,0,0,1,1,3,83.5,6.9,0,72.7,1000,80,1,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,72.7,9.581346,1.098612,3.8907,1
-7,2,25,0,3,231121,0,14490.91,17.66598,0,16,1,8.598453,0,0,0,0,8.598453,0,0,0,1,0,3,83.5,6.9,0,72.7,1000,80,1,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,72.7,9.581346,1.098612,2.151582,1
-7,2,25,0,4,231121,0,14490.91,18.66598,0,16,1,19.38736,0,12.71035,0,0,32.09771,0,0,0,0,2,3,83.5,6.9,0,72.7,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,72.7,9.581346,1.098612,3.468785,1
-7,2,25,0,5,231121,0,14490.91,19.66598,0,16,1,12.385,4.437367,26.99221,0,0,43.81458,0,0,0,0,1,3,83.5,6.9,0,72.7,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,72.7,9.581346,1.098612,3.779967,1
-7,2,25,0,1,231122,0,14490.91,49.69747,0,16,1,12.25741,0,37.28294,0,0,49.54035,0,0,0,0,2,3,73.9,3.4,0,69.3,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,69.3,9.581346,1.098612,3.902787,1
-7,2,25,0,2,231122,0,14490.91,50.69747,0,16,1,72.19878,0,0,0,0,72.19878,0,0,0,2,0,3,73.9,3.4,0,69.3,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,69.3,9.581346,1.098612,4.279423,1
-7,2,25,0,3,231122,0,14490.91,51.69747,0,16,1,164.6604,0,44.71195,0,0,209.3723,0,0,0,7,1,3,73.9,3.4,0,69.3,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,69.3,9.581346,1.098612,5.344114,1
-7,2,25,0,4,231122,0,14490.91,52.69747,0,16,1,61.34161,3.606049,25.59131,0,0,90.53897,0,0,0,3,1,3,73.9,3.4,0,69.3,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,69.3,9.581346,1.098612,4.50578,1
-7,2,25,0,5,231122,0,14490.91,53.69747,0,16,1,15.21585,0,23.35456,0,0,38.57042,0,0,0,0,1,3,73.9,3.4,0,69.3,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,69.3,9.581346,1.098612,3.652486,1
-7,2,25,0,1,231123,0,14490.91,48.98837,1,16,1,12.76813,0,32.23187,0,0,45,0,0,0,0,1,3,80.9,17.2,0,83,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,83,9.581346,1.098612,3.806663,1
-7,2,25,0,2,231123,0,14490.91,49.98837,1,16,1,37.50586,15.68214,2.808251,0,0,55.99625,0,0,0,5,0,3,80.9,17.2,0,83,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,83,9.581346,1.098612,4.025285,1
-7,2,25,0,3,231123,0,14490.91,50.98837,1,16,1,458.319,62.34738,74.06277,0,0,594.7291,0,0,0,8,1,3,80.9,17.2,0,83,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,83,9.581346,1.098612,6.388106,1
-7,2,25,0,4,231123,0,14490.91,51.98837,1,16,1,11.63242,20.65529,0,0,0,32.28771,0,0,0,2,0,3,80.9,17.2,0,83,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,83,9.581346,1.098612,3.474687,1
-7,2,25,0,5,231123,0,14490.91,52.98837,1,16,1,18.75442,4.561217,0,0,0,23.31564,0,0,0,1,0,3,80.9,17.2,0,83,1000,80,0,0,1.098612,4.382027,0,3.258096,8.294049,0,0,0,83,9.581346,1.098612,3.149124,1
-11,2,0,0,1,231126,0,2650.44,51.57016,1,12,1,173.3642,32.84389,53.5085,0,0,259.7166,0,0,0,9,1,2,89.9,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,7.882858,.6931472,5.559591,1
-11,2,0,0,2,231126,0,2650.44,52.57016,1,12,1,651.9413,38.84943,14.20455,97.06439,0,704.9952,0,0,4,13,42,2,89.9,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,7.882858,.6931472,6.558191,1
-11,2,0,0,3,231126,0,2650.44,53.57016,1,12,1,419.5925,41.94192,87.31253,0,958.0624,1506.909,2,0,0,14,1,2,89.9,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,7.882858,.6931472,7.317816,1
-13,2,0,0,1,231148,0,8665.641,20.90075,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,70.2,0,0,65.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,65.9,9.067237,0,,0
-13,2,0,0,1,231149,0,1207.625,20.73922,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,76.6,10.3,0,84.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,84.1,7.097239,0,,0
-13,2,0,0,2,231149,0,1207.625,21.73922,1,12,1,6.450072,0,0,0,0,6.450072,0,0,0,1,0,1,76.6,10.3,0,84.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,84.1,7.097239,0,1.864091,1
-13,2,0,0,3,231149,0,1207.625,22.73922,1,12,1,345.5882,74.62687,35.44776,0,0,455.6629,0,0,0,10,1,1,76.6,10.3,0,84.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,84.1,7.097239,0,6.121753,1
-13,2,0,0,4,231149,0,1207.625,23.73922,1,12,1,84.284,85.6083,34.81452,0,0,204.7068,0,0,0,4,0,1,76.6,10.3,0,84.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,84.1,7.097239,0,5.321579,1
-13,2,0,0,5,231149,0,1207.625,24.73922,1,12,1,56.21827,82.16461,2.175489,0,0,140.5584,0,0,0,4,0,1,76.6,10.3,0,84.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,84.1,7.097239,0,4.945623,1
-11,2,0,0,1,231164,0,10620.53,54.38467,0,12,1,224.2551,17.95609,0,0,0,242.2112,0,0,0,3,0,4,79.3,20.7,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,9.270638,1.386294,5.48981,1
-11,2,0,0,2,231164,0,10620.53,55.38467,0,12,1,0,0,0,0,828.2797,828.2797,1,0,0,0,0,4,79.3,20.7,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,9.270638,1.386294,6.719351,1
-11,2,0,0,3,231164,0,10620.53,56.38467,0,12,1,139.0529,56.42291,0,0,1015.264,1210.74,1,0,0,8,0,4,79.3,20.7,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,9.270638,1.386294,7.098987,1
-11,2,0,0,4,231164,0,10620.53,57.38467,0,12,1,104.4355,57.56855,0,0,321.6734,483.6774,1,0,0,7,0,4,79.3,20.7,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,9.270638,1.386294,6.181418,1
-11,2,0,0,1,231165,0,10620.53,11.34839,1,12,1,15.15944,6.445374,0,0,0,21.60481,0,0,0,1,0,4,75,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,1,0,0,100,9.270638,1.386294,3.072916,1
-11,2,0,0,2,231165,0,10620.53,12.34839,1,12,1,0,2.162422,0,0,0,2.162422,0,0,0,0,0,4,75,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,1,0,0,100,9.270638,1.386294,.7712288,1
-11,2,0,0,3,231165,0,10620.53,13.34839,1,12,1,19.38326,0,0,0,0,19.38326,0,0,0,1,0,4,75,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,1,0,0,100,9.270638,1.386294,2.96441,1
-11,2,0,0,4,231165,0,10620.53,14.34839,1,12,1,60.08065,7.665323,1.209677,0,0,68.95564,0,0,0,5,0,4,75,11.84267,0,100,0,0,1,1,1.386294,0,0,0,0,1,0,0,100,9.270638,1.386294,4.233463,1
-11,2,0,0,5,231165,0,10620.53,15.34839,1,12,1,12.75045,0,0,0,0,12.75045,0,0,0,1,1,3,75,11.84267,0,100,0,0,1,1,1.098612,0,0,0,0,1,0,0,100,9.270638,1.098612,2.545567,1
-11,2,0,0,1,231166,0,10620.53,47.2334,1,12,1,478.6722,84.14532,9.006796,0,823.9937,1395.818,1,0,0,19,11,4,75,24.1,0,29.5,0,0,0,0,1.386294,0,0,0,0,0,0,1,29.5,9.270638,1.386294,7.241236,1
-11,2,0,0,2,231166,0,10620.53,48.2334,1,12,1,402.5949,53.08506,0,0,488.0682,943.7482,1,0,0,14,3,4,75,24.1,0,29.5,0,0,0,0,1.386294,0,0,0,0,0,0,1,29.5,9.270638,1.386294,6.849859,1
-11,2,0,0,3,231166,0,10620.53,49.2334,1,12,1,696.652,104.0881,52.14978,0,1078.194,1931.084,1,0,0,23,38,4,75,24.1,0,29.5,0,0,0,0,1.386294,0,0,0,0,0,0,1,29.5,9.270638,1.386294,7.565836,1
-11,2,0,0,4,231166,0,10620.53,50.2334,1,12,1,604.6371,96.84274,0,0,755.8468,1457.327,2,0,0,23,32,4,75,24.1,0,29.5,0,0,0,0,1.386294,0,0,0,0,0,0,1,29.5,9.270638,1.386294,7.284359,1
-11,2,0,0,5,231166,0,10620.53,51.2334,1,12,1,326.4845,114.6885,0,0,1237.297,1678.47,2,0,0,14,20,3,75,24.1,0,29.5,0,0,0,0,1.098612,0,0,0,0,0,0,1,29.5,9.270638,1.098612,7.425638,1
-11,2,0,0,1,231179,0,8857.478,16.8104,1,13,1,43.7661,4.636785,35.98661,0,0,84.38949,0,0,0,4,1,4,78.2,13.8,1,69.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,4.435443,1
-11,2,0,0,2,231179,0,8857.478,17.8104,1,13,1,140.696,19.24716,20.24148,0,0,180.1847,0,0,0,9,1,4,78.2,13.8,1,69.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,5.193982,1
-11,2,0,0,3,231179,0,8857.478,18.8104,1,13,1,442.241,22.19766,32.41439,0,990.1387,1486.992,2,0,0,6,1,4,78.2,13.8,1,69.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,7.304511,1
-11,2,0,0,1,231180,0,8857.478,14.41205,0,13,1,75.47655,6.18238,0,0,0,81.65894,0,0,0,5,0,4,86.2,6.9,0,69.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,4.402551,1
-11,2,0,0,2,231180,0,8857.478,15.41205,0,13,1,85.69602,6.747159,0,0,0,92.44318,0,0,0,7,1,4,86.2,6.9,0,69.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,4.526594,1
-11,2,0,0,3,231180,0,8857.478,16.41205,0,13,1,123.2423,7.061118,0,0,0,130.3034,0,0,0,8,0,4,86.2,6.9,0,69.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,69.3,9.08913,1.386294,4.869866,1
-11,2,0,0,1,231181,0,8857.478,24.44079,0,12,1,16.20299,0,34.30706,0,0,50.51005,0,0,0,1,0,4,70.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,9.08913,1.386294,3.922172,1
-11,2,0,0,2,231181,0,8857.478,25.44079,0,12,1,16.69034,0,0,0,0,16.69034,0,0,0,2,0,4,70.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,9.08913,1.386294,2.81483,1
-11,2,0,0,3,231181,0,8857.478,26.44079,0,12,1,43.17295,.9796272,31.98093,0,0,76.13351,0,0,0,2,0,4,70.2,6.9,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,9.08913,1.386294,4.332489,1
-11,2,0,0,1,231182,0,8857.478,62.27515,1,13,1,0,0,57.65585,0,0,57.65585,0,0,0,0,0,4,61.7,13.8,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.08913,1.386294,4.054492,1
-11,2,0,0,2,231182,0,8857.478,63.27515,1,13,1,40.36458,2.642045,0,0,0,43.00663,0,0,0,3,0,4,61.7,13.8,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.08913,1.386294,3.761354,1
-11,2,0,0,3,231182,0,8857.478,64.27515,1,13,1,125.2709,5.309927,0,0,0,130.5808,0,0,0,3,1,4,61.7,13.8,0,78.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,78.4,9.08913,1.386294,4.871993,1
-11,2,0,0,1,231202,0,8182.405,50.66667,0,16,1,10.58761,0,0,0,0,10.58761,0,0,0,1,0,1,70.7,13.8,0,65.9,0,0,0,0,0,0,0,0,0,1,0,0,65.9,9.009864,0,2.359685,1
-11,2,0,0,2,231202,0,8182.405,51.66667,0,16,1,16.40927,0,49.0444,0,0,65.45367,0,0,0,0,1,1,70.7,13.8,0,65.9,0,0,0,0,0,0,0,0,0,1,0,0,65.9,9.009864,0,4.181343,1
-11,2,0,0,3,231202,0,8182.405,52.66667,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,70.7,13.8,0,65.9,0,0,0,0,0,0,0,0,0,1,0,0,65.9,9.009864,0,,0
-11,2,0,0,4,231202,0,8182.405,53.66667,0,16,1,80.11387,0,48.71086,0,0,128.8247,0,0,0,3,1,1,70.7,13.8,0,65.9,0,0,0,0,0,0,0,0,0,1,0,0,65.9,9.009864,0,4.858453,1
-11,2,0,0,5,231202,0,8182.405,54.66667,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,70.7,13.8,0,65.9,0,0,0,0,0,0,0,0,0,1,0,0,65.9,9.009864,0,,0
-15,2,95,0,1,231279,0,8665.641,19.27721,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,68.6,0,0,90.9,190,190,0,0,0,5.247024,0,4.564348,5.298317,0,0,0,90.9,9.067237,0,,0
-11,2,0,0,1,231284,0,8665.641,27.19233,0,16,1,58.21741,4.714065,0,0,0,62.93148,0,0,0,6,0,1,79.3,0,1,83,0,0,0,0,0,0,0,0,0,0,0,0,83,9.067237,0,4.142046,1
-11,2,0,0,2,231284,0,8665.641,28.19233,0,16,1,65.81439,19.18087,.7954546,0,0,85.79072,0,0,0,4,1,1,79.3,0,1,83,0,0,0,0,0,0,0,0,0,0,0,0,83,9.067237,0,4.451911,1
-11,2,0,0,3,231284,0,8665.641,29.19233,0,16,1,203.1209,16.93975,0,0,0,220.0607,0,0,0,9,3,1,79.3,0,1,83,0,0,0,0,0,0,0,0,0,0,0,0,83,9.067237,0,5.393903,1
-11,2,0,0,1,231286,0,4171.848,25.12252,1,14,1,33.19714,12.10929,0,0,0,45.30643,0,0,0,1,1,1,80.3,10.3,0,73.9,0,30,0,0,0,3.401197,0,0,0,0,0,0,73.9,8.336354,0,3.813449,1
-11,2,0,0,2,231286,0,4171.848,26.12252,1,14,1,62.61135,14.68823,0,0,0,77.29958,0,0,0,4,0,1,80.3,10.3,0,73.9,0,30,0,0,0,3.401197,0,0,0,0,0,0,73.9,8.336354,0,4.347689,1
-11,2,0,0,3,231286,0,4171.848,27.12252,1,14,1,23.21582,7.248495,2.265692,0,0,32.73001,0,0,0,2,0,1,80.3,10.3,0,73.9,0,30,0,0,0,3.401197,0,0,0,0,0,0,73.9,8.336354,0,3.488292,1
-18,2,25,0,1,231287,0,4421.701,55.83573,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,20.7,1,70.5,573.5,573.5,0,0,.6931472,6.351758,0,3.258096,7.738052,1,0,0,70.5,8.394506,.6931472,,0
-18,2,25,0,2,231287,0,4421.701,56.83573,1,8,1,90.10091,4.805382,34.47861,0,0,129.3849,0,0,0,6,0,2,52.1,20.7,1,70.5,573.5,573.5,0,0,.6931472,6.351758,0,3.258096,7.738052,1,0,0,70.5,8.394506,.6931472,4.862792,1
-18,2,25,0,3,231287,0,4421.701,57.83573,1,8,1,47.6652,10.26432,0,0,0,57.92952,0,0,0,4,0,2,52.1,20.7,1,70.5,573.5,573.5,0,0,.6931472,6.351758,0,3.258096,7.738052,1,0,0,70.5,8.394506,.6931472,4.059227,1
-18,2,25,0,1,231288,0,4421.701,6.321697,0,8,1,22.21641,9.283848,0,0,0,31.50026,0,0,0,2,0,2,56.7,11.84267,0,81.5,573.5,573.5,1,0,.6931472,6.351758,0,3.258096,7.738052,0,0,0,81.5,8.394506,.6931472,3.449996,1
-18,2,25,0,2,231288,0,4421.701,7.321697,0,8,1,30.27391,3.700144,0,0,0,33.97405,0,0,0,3,0,2,56.7,11.84267,0,81.5,573.5,573.5,1,0,.6931472,6.351758,0,3.258096,7.738052,0,0,0,81.5,8.394506,.6931472,3.525597,1
-18,2,25,0,3,231288,0,4421.701,8.321697,0,8,1,30.837,0,0,0,0,30.837,0,0,0,2,0,2,56.7,11.84267,0,81.5,573.5,573.5,1,0,.6931472,6.351758,0,3.258096,7.738052,0,0,0,81.5,8.394506,.6931472,3.428715,1
-11,2,0,1,1,231315,0,6947.214,28.03833,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70.7,13.8,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.84624,0,,0
-11,2,0,1,2,231315,0,6947.214,29.03833,0,12,1,38.12741,3.692085,0,0,0,41.8195,0,0,0,2,0,1,70.7,13.8,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.84624,0,3.733363,1
-11,2,0,1,3,231315,0,6947.214,30.03833,0,12,1,16.91144,0,28.11749,0,0,45.02893,0,0,0,1,0,1,70.7,13.8,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.84624,0,3.807305,1
-11,2,0,1,4,231315,0,6947.214,31.03833,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70.7,13.8,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.84624,0,,0
-11,2,0,1,5,231315,0,6947.214,32.03833,0,12,1,12.09677,0,0,0,0,12.09677,0,0,0,1,0,1,70.7,13.8,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.84624,0,2.492939,1
-19,2,25,0,1,231318,0,8665.641,25.76044,0,12,1,7.660879,2.911134,0,0,0,10.57201,0,0,0,1,0,1,42,10.3,0,62.5,1000,0,0,0,0,0,0,3.258096,8.294049,1,0,0,62.5,9.067237,0,2.35821,1
-13,2,0,0,1,231332,0,6123.754,24.39699,1,13,1,57.98232,0,0,0,0,57.98232,0,0,0,2,0,3,77.7,13.8,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,8.720094,1.098612,4.060138,1
-13,2,0,0,2,231332,0,6123.754,25.39699,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,13.8,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,8.720094,1.098612,,0
-13,2,0,0,3,231332,0,6123.754,26.39699,1,13,1,39.94732,0,0,0,705.9745,745.9219,2,1,0,4,0,3,77.7,13.8,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,8.720094,1.098612,6.614621,1
-13,2,0,0,1,231333,0,6123.754,25.35797,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.720094,1.098612,,0
-13,2,0,0,2,231333,0,6123.754,26.35797,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.720094,1.098612,,0
-13,2,0,0,3,231333,0,6123.754,27.35797,0,13,1,17.55926,0,0,0,0,17.55926,0,0,0,1,0,3,88.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.720094,1.098612,2.865582,1
-13,2,0,0,1,231334,0,6123.754,.6461328,0,13,1,44.9818,0,0,0,0,44.9818,0,0,0,5,0,3,81.35272,11.84267,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.720094,1.098612,3.806258,1
-13,2,0,0,2,231334,0,6123.754,1.646133,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.720094,1.098612,,0
-13,2,0,0,3,231334,0,6123.754,2.646133,0,13,1,17.55926,0,0,0,0,17.55926,0,0,0,1,0,3,81.35272,11.84267,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.720094,1.098612,2.865582,1
-11,2,0,0,1,231338,0,7339.003,14.423,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,0,0,69,0,0,1,0,1.386294,0,0,0,0,1,0,0,69,8.901094,1.386294,,0
-11,2,0,0,2,231338,0,7339.003,15.423,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,0,0,69,0,0,1,0,1.386294,0,0,0,0,1,0,0,69,8.901094,1.386294,,0
-11,2,0,0,1,231340,0,7339.003,16.99384,1,12,1,98.9696,0,0,0,0,98.9696,0,0,0,2,1,4,62.8,27.6,1,48.8,0,0,1,1,1.386294,0,0,0,0,1,0,0,48.8,8.901094,1.386294,4.594813,1
-11,2,0,0,2,231340,0,7339.003,17.99384,1,12,1,33.02557,2.192235,0,0,0,35.2178,0,0,0,0,2,4,62.8,27.6,1,48.8,0,0,1,1,1.386294,0,0,0,0,1,0,0,48.8,8.901094,1.386294,3.561552,1
-11,2,0,0,3,231340,0,7339.003,18.99384,1,12,1,29.47551,0,0,0,0,29.47551,0,0,0,0,0,3,62.8,27.6,1,48.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,48.8,8.901094,1.098612,3.38356,1
-11,2,0,0,1,231342,0,7339.003,39.17865,0,12,1,5.692942,0,0,0,0,5.692942,0,0,0,1,0,4,83,3.4,1,75,0,0,0,0,1.386294,0,0,0,0,0,0,1,75,8.901094,1.386294,1.739227,1
-11,2,0,0,2,231342,0,7339.003,40.17865,0,12,1,24.14773,0,0,0,0,24.14773,0,0,0,0,2,4,83,3.4,1,75,0,0,0,0,1.386294,0,0,0,0,0,0,1,75,8.901094,1.386294,3.18419,1
-11,2,0,0,3,231342,0,7339.003,41.17865,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83,3.4,1,75,0,0,0,0,1.098612,0,0,0,0,0,0,1,75,8.901094,1.098612,,0
-11,2,0,0,1,231344,0,7339.003,15.78645,0,12,1,15.71355,0,0,0,0,15.71355,0,0,0,1,0,4,80.9,3.4,0,59.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,59.1,8.901094,1.386294,2.754523,1
-11,2,0,0,2,231344,0,7339.003,16.78645,0,12,1,31.69508,.4734848,0,0,0,32.16856,0,0,0,1,0,4,80.9,3.4,0,59.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,59.1,8.901094,1.386294,3.470989,1
-11,2,0,0,3,231344,0,7339.003,17.78645,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.9,3.4,0,59.1,0,0,1,0,1.098612,0,0,0,0,1,0,0,59.1,8.901094,1.098612,,0
-16,2,95,1,1,231350,0,9090.322,11.58385,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,11.84267,0,70.4,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,,0
-16,2,95,1,2,231350,0,9090.322,12.58385,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,11.84267,0,70.4,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,,0
-16,2,95,1,3,231350,0,9090.322,13.58385,1,16,1,8.900757,6.497552,0,0,0,15.39831,0,0,0,1,0,4,86.7,11.84267,0,70.4,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,2.734258,1
-16,2,95,1,1,231351,0,9090.322,9.218344,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,90,11.84267,0,70.4,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,,0
-16,2,95,1,2,231351,0,9090.322,10.21834,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,90,11.84267,0,70.4,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,,0
-16,2,95,1,3,231351,0,9090.322,11.21834,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,90,11.84267,0,70.4,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.4,9.115076,1.386294,,0
-16,2,95,1,1,231352,0,9090.322,37.24846,1,16,1,8.999471,0,3.149815,0,0,12.14929,0,0,0,1,0,4,89.4,3.4,0,89.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.115076,1.386294,2.49727,1
-16,2,95,1,2,231352,0,9090.322,38.24846,1,16,1,26.06178,0,0,0,0,26.06178,0,0,0,0,4,4,89.4,3.4,0,89.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.115076,1.386294,3.26047,1
-16,2,95,1,3,231352,0,9090.322,39.24846,1,16,1,15.57632,0,0,0,0,15.57632,0,0,0,1,0,4,89.4,3.4,0,89.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,89.8,9.115076,1.386294,2.745752,1
-16,2,95,1,1,231353,0,9090.322,35.06366,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,90.4,10.3,0,95.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,95.5,9.115076,1.386294,,0
-16,2,95,1,2,231353,0,9090.322,36.06366,0,13,1,21.71815,3.257722,0,0,0,24.97587,0,0,0,2,0,4,90.4,10.3,0,95.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,95.5,9.115076,1.386294,3.21791,1
-16,2,95,1,3,231353,0,9090.322,37.06366,0,13,1,6.675568,2.736983,0,0,0,9.41255,0,0,0,1,0,4,90.4,10.3,0,95.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,95.5,9.115076,1.386294,2.242044,1
-14,2,95,0,1,231376,0,10604.69,31.09103,1,12,1,41.60167,6.469059,31.90328,0,359.0744,439.0484,1,0,0,3,0,5,89.9,13.8,0,88.6,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,88.6,9.269146,1.609438,6.08461,1
-14,2,95,0,2,231376,0,10604.69,32.09103,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,89.9,13.8,0,88.6,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,88.6,9.269146,1.609438,,0
-14,2,95,0,3,231376,0,10604.69,33.09103,1,12,1,3.072871,0,0,0,0,3.072871,0,0,0,0,0,5,89.9,13.8,0,88.6,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,88.6,9.269146,1.609438,1.122612,1
-14,2,95,0,1,231377,0,10604.69,16.44353,1,12,1,43.16173,1.128445,0,0,0,44.29017,0,0,0,3,0,5,78.2,6.9,0,75,769.5,769.5,1,1,1.609438,6.645741,0,4.564348,6.697034,0,0,0,75,9.269146,1.609438,3.790763,1
-14,2,95,0,2,231377,0,10604.69,17.44353,1,12,1,32.25036,0,0,0,0,32.25036,0,0,0,1,0,5,78.2,6.9,0,75,769.5,769.5,1,1,1.609438,6.645741,0,4.564348,6.697034,0,0,0,75,9.269146,1.609438,3.473529,1
-14,2,95,0,3,231377,0,10604.69,18.44353,1,12,1,3.072871,0,0,0,0,3.072871,0,0,0,0,0,5,78.2,6.9,0,75,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,75,9.269146,1.609438,1.122612,1
-14,2,95,0,1,231378,0,10604.69,38.2423,0,12,1,30.16121,2.054082,37.5767,0,0,69.79199,0,0,0,2,0,5,78.7,0,0,76.1,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,76.1,9.269146,1.609438,4.245519,1
-14,2,95,0,2,231378,0,10604.69,39.2423,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,0,0,76.1,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,76.1,9.269146,1.609438,,0
-14,2,95,0,3,231378,0,10604.69,40.2423,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,0,0,76.1,769.5,769.5,0,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,76.1,9.269146,1.609438,,0
-14,2,95,0,1,231379,0,10604.69,15.41684,1,12,1,40.56162,9.895996,0,0,311.5185,361.9761,1,0,0,3,0,5,69.7,17.2,0,50,769.5,769.5,1,1,1.609438,6.645741,0,4.564348,6.697034,0,0,0,50,9.269146,1.609438,5.891578,1
-14,2,95,0,2,231379,0,10604.69,16.41684,1,12,1,5.972289,0,0,0,0,5.972289,0,0,0,1,0,5,69.7,17.2,0,50,769.5,769.5,1,1,1.609438,6.645741,0,4.564348,6.697034,0,0,0,50,9.269146,1.609438,1.78713,1
-14,2,95,0,3,231379,0,10604.69,17.41684,1,12,1,60.57946,0,0,0,0,60.57946,0,0,0,1,0,5,69.7,17.2,0,50,769.5,769.5,1,1,1.609438,6.645741,0,4.564348,6.697034,0,0,0,50,9.269146,1.609438,4.103956,1
-14,2,95,0,1,231380,0,10604.69,13.52225,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,11.84267,0,96.3,769.5,769.5,1,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,96.3,9.269146,1.609438,,0
-14,2,95,0,2,231380,0,10604.69,14.52225,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,11.84267,0,96.3,769.5,769.5,1,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,96.3,9.269146,1.609438,,0
-14,2,95,0,3,231380,0,10604.69,15.52225,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,11.84267,0,96.3,769.5,769.5,1,0,1.609438,6.645741,0,4.564348,6.697034,0,0,0,96.3,9.269146,1.609438,,0
-13,2,0,1,1,231416,0,2594.721,35.70979,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,3.4,0,93.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,93.2,7.86162,0,,0
-13,2,0,1,2,231416,0,2594.721,36.70979,0,13,1,47.30053,0,0,0,0,47.30053,0,0,0,0,8,1,79.8,3.4,0,93.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,93.2,7.86162,0,3.856521,1
-13,2,0,1,3,231416,0,2594.721,37.70979,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,3.4,0,93.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,93.2,7.86162,0,,0
-16,2,95,0,1,231420,0,11916.72,21.99589,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,6.9,0,73.9,1000,0,0,0,1.386294,0,0,4.564348,6.959049,0,0,0,73.9,9.385781,1.386294,,0
-16,2,95,0,1,231421,0,11916.72,20.90075,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,50,17.2,0,72.7,1000,0,0,0,1.386294,0,0,4.564348,6.959049,0,0,0,72.7,9.385781,1.386294,,0
-16,2,95,0,1,231422,0,11916.72,19.70979,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,51.6,17.2,1,52.3,1000,0,0,0,1.386294,0,0,4.564348,6.959049,0,0,0,52.3,9.385781,1.386294,,0
-13,2,0,0,1,231440,0,8665.641,46.30253,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.9,10.3,0,73.9,150,258.48,0,0,0,5.554818,1,4.564348,5.061929,0,0,1,73.9,9.067237,0,,0
-13,2,0,0,2,231440,0,8665.641,47.30253,0,12,1,24.37881,1.875293,0,0,0,26.2541,0,0,0,2,0,1,73.9,10.3,0,73.9,150,258.48,0,0,0,5.554818,1,4.564348,5.061929,0,0,1,73.9,9.067237,0,3.267822,1
-13,2,0,0,3,231440,0,8665.641,48.30253,0,12,1,19.34652,9.11436,45.47721,0,986.8444,1060.782,1,0,0,1,1,1,73.9,10.3,0,73.9,150,258.48,0,0,0,5.554818,1,4.564348,5.061929,0,0,1,73.9,9.067237,0,6.966762,1
-14,2,95,0,1,231443,0,8665.641,25.79055,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,83,3.4,0,79.5,700,0,0,0,0,0,0,4.564348,6.602374,0,0,0,79.5,9.067237,0,,0
-14,2,95,0,2,231443,0,8665.641,26.79055,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,83,3.4,0,79.5,700,0,0,0,0,0,0,4.564348,6.602374,0,0,0,79.5,9.067237,0,,0
-14,2,95,0,3,231443,0,8665.641,27.79055,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,83,3.4,0,79.5,700,0,0,0,0,0,0,4.564348,6.602374,0,0,0,79.5,9.067237,0,,0
-11,2,0,0,1,231458,0,2084.458,20.58043,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,74.29414,11.84267,.1981873,,0,0,0,0,0,0,0,0,0,0,0,0,71.31672,7.642744,0,,0
-11,2,0,0,2,231458,0,2084.458,21.58043,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,74.29414,11.84267,.1981873,,0,0,0,0,0,0,0,0,0,0,0,0,71.31672,7.642744,0,,0
-11,2,0,0,3,231458,0,2084.458,22.58043,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,74.29414,11.84267,.1981873,,0,0,0,0,0,0,0,0,0,0,0,0,71.31672,7.642744,0,,0
-11,2,0,0,1,231459,0,3451.32,20.15058,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,0,1,72.7,0,0,0,0,0,0,0,0,0,0,1,0,72.7,8.146802,0,,0
-11,2,0,0,2,231459,0,3451.32,21.15058,0,13,1,7.239382,0,0,0,0,7.239382,0,0,0,0,1,1,79.8,0,1,72.7,0,0,0,0,0,0,0,0,0,0,1,0,72.7,8.146802,0,1.979536,1
-11,2,0,0,3,231459,0,3451.32,22.15058,0,13,1,107.3876,0,0,0,0,107.3876,0,0,0,0,9,1,79.8,0,1,72.7,0,0,0,0,0,0,0,0,0,0,1,0,72.7,8.146802,0,4.676445,1
-18,2,25,0,1,231504,0,1,24.46817,0,12,1,14.04056,0,10.66043,0,0,24.70099,0,0,0,0,1,1,37.2,6.9,0,83,450,0,0,0,0,0,0,3.258096,7.495542,1,0,0,83,.6931472,0,3.206843,1
-18,2,25,0,2,231504,0,1,25.46817,0,12,1,227.4247,3.449594,26.99475,0,0,257.8691,0,0,0,7,0,1,37.2,6.9,0,83,450,0,0,0,0,0,0,3.258096,7.495542,1,0,0,83,.6931472,0,5.552452,1
-18,2,25,0,3,231504,0,1,26.46817,0,12,1,32.1993,3.928885,13.93766,0,0,50.06585,0,0,0,2,0,1,37.2,6.9,0,83,450,0,0,0,0,0,0,3.258096,7.495542,1,0,0,83,.6931472,0,3.913339,1
-7,2,25,0,1,231505,0,8148.974,36.98563,0,16,1,127.9251,23.19293,0,0,0,151.118,0,0,0,5,0,1,77.1,24.1,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.00577,0,5.018061,1
-7,2,25,0,2,231505,0,8148.974,37.98563,0,16,1,113.2346,21.66746,0,0,0,134.9021,0,0,0,2,0,1,77.1,24.1,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.00577,0,4.904549,1
-7,2,25,0,3,231505,0,8148.974,38.98563,0,16,1,47.19052,15.27656,0,0,0,62.46708,0,0,0,1,0,1,77.1,24.1,0,75,1000,1000,0,0,0,6.907755,0,3.258096,8.294049,1,0,0,75,9.00577,0,4.13464,1
-14,2,95,0,1,231507,0,8665.641,19.8193,0,12,1,28.85111,0,35.46626,0,0,64.31736,0,0,0,1,3,1,65.4,6.9,0,55.7,116.25,0,0,0,0,0,0,4.564348,4.807036,1,0,0,55.7,9.067237,0,4.16383,1
-14,2,95,0,2,231507,0,8665.641,20.8193,0,12,1,301.7046,0,7.575758,0,0,309.2803,0,0,0,5,2,1,65.4,6.9,0,55.7,116.25,0,0,0,0,0,0,4.564348,4.807036,1,0,0,55.7,9.067237,0,5.734248,1
-14,2,95,0,3,231507,0,8665.641,21.8193,0,12,1,0,0,13.05158,0,0,13.05158,0,0,0,0,0,1,65.4,6.9,0,55.7,116.25,0,0,0,0,0,0,4.564348,4.807036,1,0,0,55.7,9.067237,0,2.568909,1
-18,2,25,1,1,231523,0,1642.229,34.72416,0,12,1,241.6017,6.682267,29.12116,0,724.4514,1001.856,1,0,0,7,5,1,31.4,6.9,1,56.8,476.3,0,0,0,0,0,0,3.258096,7.552342,1,0,0,56.8,7.404418,0,6.90961,1
-18,2,25,1,2,231523,0,1642.229,35.72416,0,12,1,51.95891,0,25.3225,0,0,77.28142,0,0,0,1,3,1,31.4,6.9,1,56.8,476.3,0,0,0,0,0,0,3.258096,7.552342,1,0,0,56.8,7.404418,0,4.347454,1
-18,2,25,1,3,231523,0,1642.229,36.72416,0,12,1,24.14399,7.199297,29.31519,0,0,60.65847,0,0,0,1,1,1,31.4,6.9,1,56.8,476.3,0,0,0,0,0,0,3.258096,7.552342,1,0,0,56.8,7.404418,0,4.105259,1
-14,2,95,1,1,231526,0,5577.712,18.67762,0,11,1,60.0624,15.70463,36.65627,0,0,112.4233,0,0,0,7,0,2,77.7,24.1,1,61.4,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,61.4,8.626714,.6931472,4.722271,1
-14,2,95,1,2,231526,0,5577.712,19.67762,0,11,1,99.97611,0,45.4754,0,0,145.4515,0,0,0,4,0,2,77.7,24.1,1,61.4,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,61.4,8.626714,.6931472,4.979843,1
-14,2,95,1,3,231526,0,5577.712,20.67762,0,11,1,184.3723,0,26.82177,0,0,211.194,0,0,0,3,17,2,77.7,24.1,1,61.4,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,61.4,8.626714,.6931472,5.352777,1
-14,2,95,1,1,231527,0,5577.712,54.02327,1,12,1,74.62299,0,45.86063,0,0,120.4836,0,0,0,2,0,2,72.7,27.6,1,55.7,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,55.7,8.626714,.6931472,4.791514,1
-14,2,95,1,2,231527,0,5577.712,55.02327,1,12,1,132.9431,21.04634,0,0,0,153.9895,0,0,0,6,0,2,72.7,27.6,1,55.7,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,55.7,8.626714,.6931472,5.036884,1
-14,2,95,1,3,231527,0,5577.712,56.02327,1,12,1,321.993,19.01229,52.86216,0,0,393.8674,0,0,0,11,16,2,72.7,27.6,1,55.7,276.75,326.52,0,0,.6931472,5.788491,0,4.564348,5.674408,1,0,0,55.7,8.626714,.6931472,5.976015,1
-11,2,0,1,1,231535,0,5601.173,20.68994,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,3.4,0,77.3,0,0,0,0,0,0,0,0,0,0,0,0,77.3,8.63091,0,,0
-11,2,0,1,2,231535,0,5601.173,21.68994,0,12,1,16.21622,0,0,0,0,16.21622,0,0,0,1,0,1,79.8,3.4,0,77.3,0,0,0,0,0,0,0,0,0,0,0,0,77.3,8.63091,0,2.786012,1
-11,2,0,1,3,231535,0,5601.173,22.68994,0,12,1,2.278943,0,0,0,0,2.278943,0,0,0,0,1,1,79.8,3.4,0,77.3,0,0,0,0,0,0,0,0,0,0,0,0,77.3,8.63091,0,.8237116,1
-13,2,0,1,1,231536,0,8665.641,.3340178,1,12,1,139.7844,10.70081,0,0,0,150.4852,0,0,0,12,0,4,81.35272,11.84267,0,88.9,450,275.27,1,1,1.386294,5.617753,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.386294,5.013865,1
-13,2,0,1,2,231536,0,8665.641,1.334018,1,12,1,105.0369,1.400491,0,0,0,106.4373,0,0,0,8,0,4,81.35272,11.84267,0,88.9,450,275.27,1,1,1.386294,5.617753,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.386294,4.667557,1
-13,2,0,1,3,231536,0,8665.641,2.334018,1,12,1,377.3929,5.788514,0,0,0,383.1814,0,0,0,6,0,5,81.35272,11.84267,0,88.9,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.609438,5.948508,1
-13,2,0,1,4,231536,0,8665.641,3.334018,1,12,1,56.99875,0,0,0,0,56.99875,0,0,0,3,0,5,81.35272,11.84267,0,88.9,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.609438,4.043029,1
-13,2,0,1,5,231536,0,8665.641,4.334018,1,12,1,34.47112,0,0,0,285.5364,320.0075,1,0,0,3,0,5,81.35272,11.84267,0,88.9,450,275.27,1,1,1.609438,5.617753,1,4.564348,6.160541,0,0,0,88.9,9.067237,1.609438,5.768344,1
-16,2,95,1,1,231537,0,5000,.3477071,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,40.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,40.7,8.517393,1.609438,,0
-16,2,95,1,2,231537,0,5000,1.347707,0,13,1,94.62408,8.216216,0,0,0,102.8403,0,0,0,4,0,5,81.35272,11.84267,0,40.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,40.7,8.517393,1.609438,4.633177,1
-16,2,95,1,3,231537,0,5000,2.347707,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,0,40.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,40.7,8.517393,1.609438,,0
-5,2,25,0,1,231538,0,5115.542,.3696099,1,14,1,63.8814,19.3531,0,0,0,83.2345,0,0,0,5,0,4,81.35272,11.84267,0,92.6,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,0,0,0,92.6,8.540235,1.386294,4.421662,1
-5,2,25,0,2,231538,0,5115.542,1.36961,1,14,1,42.99754,1.351351,0,0,423.145,467.4939,1,0,0,3,0,4,81.35272,11.84267,0,92.6,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,0,0,0,92.6,8.540235,1.386294,6.147386,1
-5,2,25,0,3,231538,0,5115.542,2.36961,1,14,1,84.77666,0,23.50957,0,659.4348,767.7211,1,0,0,9,0,4,81.35272,11.84267,0,92.6,452.9,452.9,1,1,1.386294,6.115671,0,3.258096,7.501966,0,0,0,92.6,8.540235,1.386294,6.643426,1
-14,2,95,0,1,231552,0,3713.783,23.68789,0,14,1,15.45595,0,28.99021,0,0,44.44616,0,0,0,1,0,1,54.8,10.3,1,78.4,132,132,0,0,0,4.882802,0,4.564348,4.934095,0,0,0,78.4,8.220076,0,3.794279,1
-14,2,95,0,2,231552,0,3713.783,24.68789,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,54.8,10.3,1,78.4,132,132,0,0,0,4.882802,0,4.564348,4.934095,0,0,0,78.4,8.220076,0,,0
-14,2,95,0,3,231552,0,3713.783,25.68789,0,14,1,43.34634,0,0,0,0,43.34634,0,0,0,0,1,1,54.8,10.3,1,78.4,132,132,0,0,0,4.882802,0,4.564348,4.934095,0,0,0,78.4,8.220076,0,3.769222,1
-16,2,95,1,1,231570,.0220994,8665.641,28.73922,1,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,76.1,13.8,0,69,675,0,0,0,.6931472,0,0,4.564348,6.566006,0,0,0,69,9.067237,.6931472,,0
-16,2,95,1,2,231570,.0220994,8665.641,29.73922,1,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,76.1,13.8,0,69,675,0,0,0,.6931472,0,0,4.564348,6.566006,0,0,0,69,9.067237,.6931472,,0
-16,2,95,1,3,231570,.0220994,8665.641,30.73922,1,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,76.1,13.8,0,69,675,0,0,0,.6931472,0,0,4.564348,6.566006,0,0,0,69,9.067237,.6931472,,0
-11,2,0,0,1,231572,0,3387.097,20.71732,0,12.75671,1,84.84832,5.055881,76.15753,0,364.8483,530.91,1,0,0,4,0,3,74.29414,11.84267,.1981873,,0,0,0,0,1.098612,0,0,0,0,0,0,0,71.31672,8.128023,1.098612,6.274592,1
-11,2,0,0,2,231572,0,3387.097,21.71732,0,12.75671,1,130.1503,0,0,169.6558,1413.694,1543.844,2,0,7,4,0,3,74.29414,11.84267,.1981873,,0,0,0,0,1.098612,0,0,0,0,0,0,0,71.31672,8.128023,1.098612,7.342031,1
-11,2,0,0,3,231572,0,3387.097,22.71732,0,12.75671,1,33.46811,0,0,0,0,33.46811,0,0,0,1,0,3,74.29414,11.84267,.1981873,,0,0,0,0,1.098612,0,0,0,0,0,0,0,71.31672,8.128023,1.098612,3.510593,1
-11,2,0,0,1,231573,0,3651.613,.4982888,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,.0221239,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.97035,8.203198,1.098612,,0
-11,2,0,0,2,231573,0,3651.613,1.498289,1,12,1,36.35482,2.66602,0,0,122.8793,161.9001,1,0,0,5,0,4,81.35272,11.84267,.0221239,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.97035,8.203198,1.386294,5.08698,1
-11,2,0,0,3,231573,0,3651.613,2.498289,1,12,1,72.10242,0,0,0,0,72.10242,0,0,0,4,0,4,81.35272,11.84267,.0221239,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.97035,8.203198,1.386294,4.278088,1
-13,2,0,0,1,231574,0,2858.064,.4736482,0,12,1,11.70836,4.039382,0,0,0,15.74774,0,0,0,2,0,4,81.35272,11.84267,.0221239,,450,600,1,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,76.97035,7.95825,1.386294,2.756697,1
-13,2,0,0,2,231574,0,2858.064,1.473648,0,12,1,42.1716,0,0,0,0,42.1716,0,0,0,1,0,4,81.35272,11.84267,.0221239,,450,600,1,0,1.386294,6.39693,1,4.564348,6.160541,0,0,0,76.97035,7.95825,1.386294,3.741747,1
-11,2,0,0,1,231575,0,3643.402,.0301164,1,18,1,63.16917,0,0,0,0,63.16917,0,0,0,6,0,3,81.35272,11.84267,.0221239,,0,864.48,1,1,1.098612,6.762128,0,0,0,0,0,0,76.97035,8.200948,1.098612,4.145816,1
-11,2,0,0,2,231575,0,3643.402,1.030116,1,18,1,65.25134,3.001464,0,0,0,68.25281,0,0,0,5,0,3,81.35272,11.84267,.0221239,,0,864.48,1,1,1.098612,6.762128,0,0,0,0,0,0,76.97035,8.200948,1.098612,4.223218,1
-11,2,0,0,3,231575,0,3643.402,2.030116,1,18,1,63.4598,0,0,0,0,63.4598,0,0,0,4,0,3,81.35272,11.84267,.0221239,,0,864.48,1,1,1.098612,6.762128,0,0,0,0,0,0,76.97035,8.200948,1.098612,4.150407,1
-11,2,0,1,1,231577,0,22434.02,.2874743,1,16,1,42.82655,7.54818,0,0,0,50.37473,0,0,0,4,0,4,81.35272,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,10.01838,1.386294,3.91949,1
-11,2,0,1,2,231577,0,22434.02,1.287474,1,16,1,14.20205,0,0,0,0,14.20205,0,0,0,1,0,4,81.35272,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,10.01838,1.386294,2.653386,1
-11,2,0,1,3,231577,0,22434.02,2.287474,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,10.01838,1.386294,,0
-11,2,0,1,1,231578,0,6928.446,32.8898,0,12.75671,1,58.54178,23.35285,40.22884,79.8297,0,122.1235,0,0,5,3,1,4,78.2,6.9,0,85.2,0,573.3,0,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,4.805033,1
-11,2,0,1,2,231578,0,6928.446,33.8898,0,12.75671,1,131.9438,.9452254,57.05284,0,0,189.9418,0,0,0,1,9,4,78.2,6.9,0,85.2,0,573.3,0,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,5.246718,1
-11,2,0,1,3,231578,0,6928.446,34.8898,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,85.2,0,573.3,0,0,1.386294,6.351409,0,0,0,0,0,0,85.2,8.843535,1.386294,,0
-11,2,0,1,1,231589,0,15428.15,.5995893,0,16,1,104.8174,20.26469,2.646903,0,217.226,344.955,1,0,0,7,0,3,81.35272,11.84267,0,100,0,354.72,1,0,1.098612,5.871329,0,0,0,0,0,0,100,9.644014,1.098612,5.843414,1
-11,2,0,1,2,231589,0,15428.15,1.599589,0,16,1,32.33591,6.611969,0,0,0,38.94788,0,0,0,2,0,4,81.35272,11.84267,0,100,0,354.72,1,0,1.386294,5.871329,0,0,0,0,0,0,100,9.644014,1.386294,3.662224,1
-11,2,0,1,3,231589,0,15428.15,2.599589,0,16,1,68.75835,21.76235,0,0,0,90.52069,0,0,0,6,0,4,81.35272,11.84267,0,100,0,354.72,1,0,1.386294,5.871329,0,0,0,0,0,0,100,9.644014,1.386294,4.505579,1
-13,2,0,1,1,231590,0,4092.669,.6297057,1,13,1,52.14399,0,0,0,0,52.14399,0,0,0,4,0,3,81.35272,11.84267,0,92.6,450,0,1,1,1.098612,0,1,4.564348,6.160541,0,0,0,92.6,8.317197,1.098612,3.954009,1
-13,2,0,1,2,231590,0,4092.669,1.629706,1,13,1,0,2.26834,0,0,0,2.26834,0,0,0,0,0,4,81.35272,11.84267,0,92.6,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,92.6,8.317197,1.386294,.8190482,1
-13,2,0,1,3,231590,0,4092.669,2.629706,1,13,1,127.9484,19.28349,0,0,0,147.2319,0,0,0,8,0,4,81.35272,11.84267,0,92.6,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,92.6,8.317197,1.386294,4.992009,1
-11,2,0,1,1,231591,0,6920.234,.3312799,0,12,1,96.34727,2.202223,0,0,0,98.5495,0,0,0,8,0,3,81.35272,11.84267,0,88.9,0,325.68,1,0,1.098612,5.785915,0,0,0,0,0,0,88.9,8.842349,1.098612,4.590559,1
-11,2,0,1,2,231591,0,6920.234,1.33128,0,12,1,77.94402,0,0,0,0,77.94402,0,0,0,6,0,3,81.35272,11.84267,0,88.9,0,325.68,1,0,1.098612,5.785915,0,0,0,0,0,0,88.9,8.842349,1.098612,4.355991,1
-11,2,0,1,3,231591,0,6920.234,2.33128,0,12,1,16.80018,0,0,0,0,16.80018,0,0,0,1,0,4,81.35272,11.84267,0,88.9,0,325.68,1,0,1.386294,5.785915,0,0,0,0,0,0,88.9,8.842349,1.386294,2.821389,1
-11,2,0,1,4,231591,0,6920.234,3.33128,0,12,1,232.3099,4.46523,0,0,692.0903,928.8654,1,0,0,3,0,4,81.35272,11.84267,0,88.9,0,325.68,1,0,1.386294,5.785915,0,0,0,0,0,0,88.9,8.842349,1.386294,6.833964,1
-11,2,0,1,5,231591,0,6920.234,4.33128,0,12,1,10.6305,5.674487,0,0,0,16.30499,0,0,0,2,0,4,81.35272,11.84267,0,88.9,0,325.68,1,0,1.386294,5.785915,0,0,0,0,0,0,88.9,8.842349,1.386294,2.791471,1
-17,2,25,0,2,231879,0,2067.449,.8795345,1,12,1,27.76413,8.766584,0,0,0,36.53071,0,0,0,3,0,3,81.35272,11.84267,.0221239,,324.3,0,1,1,1.098612,0,0,3.258096,7.167964,0,0,0,76.97035,7.634554,1.098612,3.598153,1
-17,2,25,0,3,231879,0,2067.449,1.879535,1,12,1,21.19417,11.16682,0,0,0,32.36098,0,0,0,2,0,3,81.35272,11.84267,.0221239,,324.3,0,1,1,1.098612,0,0,3.258096,7.167964,0,0,0,76.97035,7.634554,1.098612,3.476954,1
-11,2,0,0,1,231886,0,17144.49,19.9206,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,5,74.29414,11.84267,.1981873,,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.31672,9.74949,1.609438,,0
-11,2,0,0,2,231886,0,17144.49,20.9206,0,12.75671,1,24.02691,2.64296,0,0,0,26.66987,0,0,0,3,0,5,74.29414,11.84267,.1981873,,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.31672,9.74949,1.609438,3.283535,1
-11,2,0,0,3,231886,0,17144.49,21.9206,0,12.75671,1,9.251101,0,0,0,0,9.251101,0,0,0,1,0,5,74.29414,11.84267,.1981873,,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.31672,9.74949,1.609438,2.224743,1
-5,2,25,1,1,231888,0,6803.519,.6516085,1,12,1,18.81861,10.115,0,0,0,28.93361,0,0,0,3,0,4,81.35272,11.84267,0,85.2,304,304,1,1,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,3.365004,1
-5,2,25,1,2,231888,0,6803.519,1.651608,1,12,1,7.92888,4.632388,0,0,0,12.56127,0,0,0,1,0,4,81.35272,11.84267,0,85.2,304,304,1,1,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.530618,1
-5,2,25,1,3,231888,0,6803.519,2.651608,1,12,1,8.149779,3.651982,0,0,0,11.80176,0,0,0,1,0,4,81.35272,11.84267,0,85.2,304,304,1,1,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.468249,1
-5,2,25,1,4,231888,0,6803.519,3.651608,1,12,1,18.34678,0,0,0,0,18.34678,0,0,0,2,0,4,81.35272,11.84267,0,85.2,304,304,1,1,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.909454,1
-5,2,25,1,5,231888,0,6803.519,4.651608,1,12,1,16.39344,0,0,0,0,16.39344,0,0,0,2,0,4,81.35272,11.84267,0,85.2,304,304,1,1,1.386294,5.717028,0,3.258096,7.103322,0,0,0,85.2,8.825342,1.386294,2.796881,1
-11,2,0,1,1,231889,0,6363.636,.3477071,0,12,1,42.81234,12.10141,4.234187,0,260.4548,319.6027,1,0,0,4,0,5,81.35272,11.84267,0,74.1,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,74.1,8.758512,1.609438,5.767079,1
-11,2,0,1,2,231889,0,6363.636,1.347707,0,12,1,37.98655,6.22297,0,0,0,44.20951,0,0,0,4,0,5,81.35272,11.84267,0,74.1,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,74.1,8.758512,1.609438,3.78894,1
-11,2,0,1,3,231889,0,6363.636,2.347707,0,12,1,64.51542,3.255507,0,0,0,67.77093,0,0,0,5,0,5,81.35272,11.84267,0,74.1,0,516,1,0,1.609438,6.246107,0,0,0,0,0,0,74.1,8.758512,1.609438,4.216133,1
-14,2,95,0,1,231891,0,8577.126,21.48939,1,12.75671,1,158.1286,31.63095,39.51385,0,2213.356,2442.629,4,0,0,7,1,2,74.29414,11.84267,.1981873,,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,71.31672,9.056971,.6931472,7.80083,1
-14,2,95,0,2,231891,0,8577.126,22.48939,1,12.75671,1,115.4733,35.85776,0,0,302.4748,453.8059,1,0,0,8,0,2,74.29414,11.84267,.1981873,,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,71.31672,9.056971,.6931472,6.11767,1
-14,2,95,0,3,231891,0,8577.126,23.48939,1,12.75671,1,316.2996,12.04405,35.24229,0,0,363.5859,0,0,0,7,1,2,74.29414,11.84267,.1981873,,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,71.31672,9.056971,.6931472,5.896016,1
-14,2,95,0,4,231891,0,8577.126,24.48939,1,12.75671,1,184.375,0,2.822581,0,1226.452,1413.649,1,0,0,7,1,2,74.29414,11.84267,.1981873,,765,765,0,0,.6931472,6.639876,0,4.564348,6.691169,0,0,0,71.31672,9.056971,.6931472,7.25393,1
-14,2,95,0,5,231891,0,8577.126,25.48939,1,12.75671,1,502.2951,29.93443,0,0,0,532.2295,0,0,0,16,2,3,74.29414,11.84267,.1981873,,765,765,0,0,1.098612,6.639876,0,4.564348,6.691169,0,0,0,71.31672,9.056971,1.098612,6.277075,1
-11,2,0,0,1,231896,0,10620.53,14.97057,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,83.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.3,9.270638,1.386294,,0
-11,2,0,0,2,231896,0,10620.53,15.97057,0,12,1,13.93561,3.363767,0,0,0,17.29938,0,0,0,1,0,4,81.4,3.4,0,83.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.3,9.270638,1.386294,2.85067,1
-11,2,0,0,3,231896,0,10620.53,16.97057,0,12,1,33.70044,6.361234,0,0,0,40.06167,0,0,0,3,0,4,81.4,3.4,0,83.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.3,9.270638,1.386294,3.69042,1
-11,2,0,0,4,231896,0,10620.53,17.97057,0,12,1,88.97177,0,0,0,0,88.97177,0,0,0,5,0,4,81.4,3.4,0,83.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,83.3,9.270638,1.386294,4.488319,1
-11,2,0,0,5,231896,0,10620.53,18.97057,0,12,1,41.16576,0,0,0,0,41.16576,0,0,0,3,0,3,81.4,3.4,0,83.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,83.3,9.270638,1.098612,3.717607,1
-16,2,95,0,1,231897,0,11916.72,51.98083,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,56.9,27.6,1,53.4,1000,0,0,0,1.386294,0,0,4.564348,6.959049,0,0,0,53.4,9.385781,1.386294,,0
-17,2,25,0,1,231908,0,8665.641,3.071869,0,14,1,7.660879,0,0,0,0,7.660879,0,0,0,1,0,3,81.35272,11.84267,0,92.6,189,534.24,1,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,92.6,9.067237,1.098612,2.036127,1
-17,2,25,0,2,231908,0,8665.641,4.071868,0,14,1,54.85232,0,0,0,0,54.85232,0,0,0,4,0,3,81.35272,11.84267,0,92.6,189,534.24,1,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,92.6,9.067237,1.098612,4.004644,1
-17,2,25,0,3,231908,0,8665.641,5.071868,0,14,1,32.2442,11.50043,0,42.99226,0,43.74463,0,0,2,5,0,3,81.35272,11.84267,0,92.6,189,534.24,1,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,92.6,9.067237,1.098612,3.778369,1
-17,2,25,0,1,231909,0,8665.641,23.64408,0,12,1,93.97344,21.96119,0,0,0,115.9346,0,0,0,7,5,3,72.7,3.4,0,53.4,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,53.4,9.067237,1.098612,4.753026,1
-17,2,25,0,2,231909,0,8665.641,24.64408,0,12,1,460.9705,109.2124,0,295.3586,1172.686,1742.869,1,0,11,26,6,3,72.7,3.4,0,53.4,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,53.4,9.067237,1.098612,7.463288,1
-17,2,25,0,3,231909,0,8665.641,25.64408,0,12,1,250.7954,71.08771,0,47.29149,0,321.8831,0,0,2,11,0,3,72.7,3.4,0,53.4,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,1,0,0,53.4,9.067237,1.098612,5.774189,1
-6,2,25,0,1,231912,0,12931.96,7.184121,1,12,1,22.65066,0,0,0,0,22.65066,0,0,0,2,0,4,91.7,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.467535,1.386294,3.120189,1
-6,2,25,0,2,231912,0,12931.96,8.18412,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.467535,1.386294,,0
-6,2,25,0,3,231912,0,12931.96,9.18412,1,12,1,8.813414,0,0,0,0,8.813414,0,0,0,1,0,4,91.7,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.467535,1.386294,2.176275,1
-6,2,25,0,4,231912,0,12931.96,10.18412,1,12,1,26.75456,0,0,0,0,26.75456,0,0,0,2,0,4,91.7,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.467535,1.386294,3.286705,1
-6,2,25,0,5,231912,0,12931.96,11.18412,1,12,1,53.41472,4.539986,1.273885,0,0,59.22859,0,0,0,2,0,4,91.7,11.84267,0,100,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,100,9.467535,1.386294,4.081404,1
-6,2,25,0,1,231913,0,12931.96,36.53388,0,12,1,40.90909,9.039837,0,0,0,49.94893,0,0,0,2,0,4,94.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.1,9.467535,1.386294,3.911001,1
-6,2,25,0,2,231913,0,12931.96,37.53388,0,12,1,88.98265,0,0,0,0,88.98265,0,0,0,5,0,4,94.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.1,9.467535,1.386294,4.488441,1
-6,2,25,0,3,231913,0,12931.96,38.53388,0,12,1,16.33706,0,0,0,0,16.33706,0,0,0,1,0,4,94.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.1,9.467535,1.386294,2.793436,1
-6,2,25,0,4,231913,0,12931.96,39.53388,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,94.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.1,9.467535,1.386294,,0
-6,2,25,0,5,231913,0,12931.96,40.53388,0,12,1,0,.7678698,0,0,0,.7678698,0,0,0,0,0,4,94.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,84.1,9.467535,1.386294,-.2641351,1
-6,2,25,0,1,231914,0,12931.96,32.41889,1,12,1,0,4.075587,0,0,0,4.075587,0,0,0,0,0,4,81.9,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.5,9.467535,1.386294,1.405015,1
-6,2,25,0,2,231914,0,12931.96,33.41889,1,12,1,25.78528,0,0,0,0,25.78528,0,0,0,2,0,4,81.9,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.5,9.467535,1.386294,3.249804,1
-6,2,25,0,3,231914,0,12931.96,34.41889,1,12,1,43.63715,0,0,0,0,43.63715,0,0,0,2,0,4,81.9,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.5,9.467535,1.386294,3.775909,1
-6,2,25,0,4,231914,0,12931.96,35.41889,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.5,9.467535,1.386294,,0
-6,2,25,0,5,231914,0,12931.96,36.41889,1,12,1,0,.7714084,0,0,0,.7714084,0,0,0,0,0,4,81.9,6.9,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.258096,8.294049,0,0,0,79.5,9.467535,1.386294,-.2595374,1
-6,2,25,0,1,231915,0,12931.96,3.507187,1,12,1,11.51685,0,0,0,0,11.51685,0,0,0,1,0,4,81.35272,11.84267,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.467535,1.386294,2.443812,1
-6,2,25,0,2,231915,0,12931.96,4.507187,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.467535,1.386294,,0
-6,2,25,0,3,231915,0,12931.96,5.507187,1,12,1,13.75752,0,0,0,0,13.75752,0,0,0,1,0,4,81.35272,11.84267,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.467535,1.386294,2.621586,1
-6,2,25,0,4,231915,0,12931.96,6.507187,1,12,1,20.5506,0,0,0,0,20.5506,0,0,0,2,0,4,81.35272,11.84267,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.467535,1.386294,3.02289,1
-6,2,25,0,5,231915,0,12931.96,7.507187,1,12,1,22.82378,.7678698,0,0,0,23.59165,0,0,0,2,0,4,81.35272,11.84267,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,85.2,9.467535,1.386294,3.160893,1
-11,2,0,0,2,231922,0,4458.622,.652293,0,10,1,12.18673,0,0,0,0,12.18673,0,0,0,1,0,6,81.35272,11.84267,.0221239,,0,0,1,0,1.791759,0,0,0,0,0,0,0,76.97035,8.40282,1.791759,2.500348,1
-11,2,0,0,3,231922,0,4458.622,1.652293,0,10,1,21.87785,0,0,0,190.1413,212.0191,1,0,0,2,0,6,81.35272,11.84267,.0221239,,0,0,1,0,1.791759,0,0,0,0,0,0,0,76.97035,8.40282,1.791759,5.356677,1
-11,2,0,0,4,231922,0,4458.622,2.652293,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,81.35272,11.84267,.0221239,,0,0,1,0,1.791759,0,0,0,0,0,0,0,76.97035,8.40282,1.791759,,0
-11,2,0,0,5,231922,0,4458.622,3.652293,0,10,1,14.62866,0,0,0,0,14.62866,0,0,0,1,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,8.40282,1.386294,2.682982,1
-15,2,95,0,1,231925,0,8665.641,2.072553,1,11,1,49.66199,7.462298,0,0,0,57.12429,0,0,0,3,0,3,81.35272,11.84267,0,81.5,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.067237,1.098612,4.045229,1
-15,2,95,0,1,231926,0,8665.641,24.88706,1,11,1,52.00208,42.77171,0,0,741.6277,836.4014,1,0,0,2,0,3,58,20.7,1,68.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.067237,1.098612,6.729109,1
-11,2,0,0,1,231927,0,8505.572,24.22998,0,16,1,10.40042,0,0,0,0,10.40042,0,0,0,1,0,2,89.9,3.4,0,88.6,0,211.8,0,0,.6931472,5.355642,0,0,0,0,0,0,88.6,9.048594,.6931472,2.341846,1
-11,2,0,0,2,231927,0,8505.572,25.22998,0,16,1,16.72241,0,0,0,0,16.72241,0,0,0,1,0,2,89.9,3.4,0,88.6,0,211.8,0,0,.6931472,5.355642,0,0,0,0,0,0,88.6,9.048594,.6931472,2.81675,1
-11,2,0,0,3,231927,0,8505.572,26.22998,0,16,1,21.29061,0,0,0,0,21.29061,0,0,0,2,0,3,89.9,3.4,0,88.6,0,211.8,0,0,1.098612,5.355642,0,0,0,0,0,0,88.6,9.048594,1.098612,3.058266,1
-11,2,0,0,4,231927,0,8505.572,27.22998,0,16,1,124.0925,13.97686,14.77862,0,0,152.848,0,0,0,9,1,3,89.9,3.4,0,88.6,0,211.8,0,0,1.098612,5.355642,0,0,0,0,0,0,88.6,9.048594,1.098612,5.029444,1
-11,2,0,0,5,231927,0,8505.572,28.22998,0,16,1,32.63234,.6526468,0,5.438724,0,33.28499,0,0,1,3,0,4,89.9,3.4,0,88.6,0,211.8,0,0,1.386294,5.355642,0,0,0,0,0,0,88.6,9.048594,1.386294,3.505106,1
-11,2,0,0,1,231928,0,7068.035,.5886379,0,14,1,166.8227,13.31773,0,0,0,180.1404,0,0,0,15,0,3,81.35272,11.84267,0,85.2,0,98.2,1,0,1.098612,4.587006,0,0,0,0,0,0,85.2,8.86348,1.098612,5.193737,1
-11,2,0,0,2,231928,0,7068.035,1.588638,0,14,1,35.95318,6.349737,0,0,0,42.30291,0,0,0,4,0,3,81.35272,11.84267,0,85.2,0,98.2,1,0,1.098612,4.587006,0,0,0,0,0,0,85.2,8.86348,1.098612,3.744856,1
-11,2,0,0,3,231928,0,7068.035,2.588638,0,14,1,5.70676,4.192274,0,0,0,9.899035,0,0,0,1,0,3,81.35272,11.84267,0,85.2,0,98.2,1,0,1.098612,4.587006,0,0,0,0,0,0,85.2,8.86348,1.098612,2.292437,1
-13,2,0,0,1,231929,0,6242.815,22.20671,1,14,1,55.1222,0,35.94384,0,635.9334,726.9995,1,0,0,4,0,2,68.1,6.9,0,88.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.6,8.739347,.6931472,6.588926,1
-13,2,0,0,2,231929,0,6242.815,23.20671,1,14,1,10.03344,3.239369,0,0,0,13.27281,0,0,0,0,1,3,68.1,6.9,0,88.6,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,88.6,8.739347,1.098612,2.585718,1
-13,2,0,0,3,231929,0,6242.815,24.20671,1,14,1,55.31168,0,0,0,0,55.31168,0,0,0,5,1,3,68.1,6.9,0,88.6,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,88.6,8.739347,1.098612,4.012984,1
-18,2,25,0,1,231932,0,7165.396,.238193,0,12,1,20.80083,0,0,0,0,20.80083,0,0,0,3,0,2,81.35272,11.84267,.0221239,,744,744,1,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.97035,8.877158,.6931472,3.034993,1
-18,2,25,0,2,231932,0,7165.396,1.238193,0,12,1,36.31152,2.37936,0,0,0,38.69088,0,0,0,5,0,2,81.35272,11.84267,.0221239,,744,744,1,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.97035,8.877158,.6931472,3.655604,1
-18,2,25,0,3,231932,0,7165.396,2.238193,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,.0221239,,744,744,1,0,.6931472,6.612041,0,3.258096,7.998335,0,0,0,76.97035,8.877158,.6931472,,0
-13,2,0,0,1,231945,0,12936.07,20.67351,1,12,1,58.21741,16.15147,37.91345,0,0,112.2823,0,0,0,4,1,5,73.4,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,60.2,9.467853,1.609438,4.721016,1
-13,2,0,0,2,231945,0,12936.07,21.67351,1,12,1,35.03788,13.5464,0,0,0,48.58428,0,0,0,3,0,5,73.4,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,60.2,9.467853,1.609438,3.8833,1
-13,2,0,0,3,231945,0,12936.07,22.67351,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,60.2,9.467853,1.609438,,0
-13,2,0,0,4,231945,0,12936.07,23.67351,1,12,1,27.37298,0,39.81095,0,684.3836,751.5676,1,0,0,2,0,5,73.4,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,60.2,9.467853,1.609438,6.622161,1
-13,2,0,0,5,231945,0,12936.07,24.67351,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.4,0,0,60.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,60.2,9.467853,1.791759,,0
-11,2,0,0,1,231946,0,2650.44,15.17043,1,12,1,32.97269,0,35.47656,0,0,68.44925,0,0,0,1,1,2,84.6,0,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.882858,.6931472,4.226093,1
-11,2,0,0,2,231946,0,2650.44,16.17043,1,12,1,97.77462,6.107955,0,0,0,103.8826,0,0,0,3,6,2,84.6,0,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.882858,.6931472,4.643261,1
-11,2,0,0,3,231946,0,2650.44,17.17043,1,12,1,55.91677,0,0,0,0,55.91677,0,0,0,3,0,2,84.6,0,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.882858,.6931472,4.023864,1
-13,2,0,0,1,231947,.0220994,703.8123,58.84189,0,12.75671,1,209.0932,5.486863,0,0,0,214.5801,0,0,0,3,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,62.5,6.557931,.6931472,5.368683,1
-13,2,0,0,2,231947,.0220994,703.8123,59.84189,0,12.75671,1,158.3807,0,258.5227,0,0,416.9034,0,0,0,4,1,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,62.5,6.557931,.6931472,6.032855,1
-13,2,0,0,3,231947,.0220994,703.8123,60.84189,0,12.75671,1,6.068487,0,0,0,0,6.068487,0,0,0,0,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,62.5,6.557931,.6931472,1.803109,1
-13,2,0,0,4,231947,.0220994,703.8123,61.84189,0,12.75671,1,0,0,12.23316,0,0,12.23316,0,0,0,0,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,62.5,6.557931,.6931472,2.504151,1
-13,2,0,0,5,231947,.0220994,703.8123,62.84189,0,12.75671,1,0,0,0,0,0,0,0,0,0,0,0,2,75,10.3,0,62.5,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,62.5,6.557931,.6931472,,0
-13,2,0,0,1,231948,.0220994,703.8123,55.00342,1,12.75671,1,123.6321,12.80268,4.121587,0,0,140.5564,0,0,0,5,0,2,79.3,24.1,1,80.7,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,80.7,6.557931,.6931472,4.945609,1
-13,2,0,0,2,231948,.0220994,703.8123,56.00342,1,12.75671,1,46.75663,4.019886,38.09659,0,0,88.87311,0,0,0,2,1,2,79.3,24.1,1,80.7,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,80.7,6.557931,.6931472,4.48721,1
-13,2,0,0,3,231948,.0220994,703.8123,57.00342,1,12.75671,1,120.0694,9.133073,0,0,0,129.2024,0,0,0,4,0,2,79.3,24.1,1,80.7,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,80.7,6.557931,.6931472,4.861381,1
-13,2,0,0,4,231948,.0220994,703.8123,58.00342,1,12.75671,1,18.11737,1.69358,0,0,0,19.81095,0,0,0,1,0,2,79.3,24.1,1,80.7,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,80.7,6.557931,.6931472,2.986235,1
-13,2,0,0,5,231948,.0220994,703.8123,59.00342,1,12.75671,1,149.8927,10.58676,36.46511,0,319.2021,516.1467,1,0,0,7,5,2,79.3,24.1,1,80.7,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,80.7,6.557931,.6931472,6.246391,1
-19,2,25,0,1,231949,0,1759.531,15.1896,1,11,1,14.94075,6.295724,0,0,0,21.23648,0,0,0,3,0,3,93.4,0,0,86.4,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,86.4,7.473371,1.098612,3.05572,1
-19,2,25,0,2,231949,0,1759.531,16.1896,1,11,1,8.049242,0,0,0,0,8.049242,0,0,0,1,0,3,93.4,0,0,86.4,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,86.4,7.473371,1.098612,2.085578,1
-19,2,25,0,3,231949,0,1759.531,17.1896,1,11,1,25.57434,6.246207,0,0,0,31.82055,0,0,0,4,0,3,93.4,0,0,86.4,1000,1000,1,1,1.098612,6.907755,0,3.258096,8.294049,0,0,0,86.4,7.473371,1.098612,3.460112,1
-19,2,25,0,4,231949,0,1759.531,18.1896,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,93.4,0,0,86.4,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,86.4,7.473371,1.098612,,0
-19,2,25,0,5,231949,0,1759.531,19.1896,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,93.4,0,0,86.4,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,86.4,7.473371,1.098612,,0
-19,2,25,0,1,231950,0,1759.531,9.09514,0,11,1,22.66873,7.805255,30.65945,0,0,61.13344,0,0,0,2,1,3,98.3,11.84267,0,100,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,7.473371,1.098612,4.113059,1
-19,2,25,0,2,231950,0,1759.531,10.09514,0,11,1,15.15152,11.33523,0,0,0,26.48674,0,0,0,3,0,3,98.3,11.84267,0,100,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,7.473371,1.098612,3.276644,1
-19,2,25,0,3,231950,0,1759.531,11.09514,0,11,1,13.0039,0,0,0,0,13.0039,0,0,0,1,0,3,98.3,11.84267,0,100,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,7.473371,1.098612,2.565249,1
-19,2,25,0,4,231950,0,1759.531,12.09514,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,98.3,11.84267,0,100,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,7.473371,1.098612,,0
-19,2,25,0,5,231950,0,1759.531,13.09514,0,11,1,8.944544,0,0,0,0,8.944544,0,0,0,1,0,3,98.3,11.84267,0,100,1000,1000,1,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,100,7.473371,1.098612,2.191044,1
-19,2,25,0,1,231951,0,1759.531,32.43806,1,11,1,180.4482,56.84184,4.889232,0,499.2272,741.4065,1,0,0,20,0,3,95.6,17.2,0,78.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.6,7.473371,1.098612,6.608549,1
-19,2,25,0,2,231951,0,1759.531,33.43806,1,11,1,67.47159,33.2339,0,0,0,100.7055,0,0,0,10,0,3,95.6,17.2,0,78.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.6,7.473371,1.098612,4.6122,1
-19,2,25,0,3,231951,0,1759.531,34.43806,1,11,1,211.8336,12.16732,0,0,0,224.0009,0,0,0,23,1,3,95.6,17.2,0,78.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.6,7.473371,1.098612,5.41165,1
-19,2,25,0,4,231951,0,1759.531,35.43806,1,11,1,393.3635,72.53643,0,0,3730.465,4196.365,2,0,0,12,0,3,95.6,17.2,0,78.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.6,7.473371,1.098612,8.341974,1
-19,2,25,0,5,231951,0,1759.531,36.43806,1,11,1,102.9517,11.40608,211.8605,87.01252,68.6941,394.9124,0,0,5,9,0,3,95.6,17.2,0,78.6,1000,1000,0,0,1.098612,6.907755,0,3.258096,8.294049,0,0,0,78.6,7.473371,1.098612,5.978664,1
-11,2,0,0,1,231952,0,8312.61,.0136893,0,12,1,53.09973,23.32076,0,0,0,76.42049,0,0,0,7,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,9.025649,1.386294,4.336251,1
-11,2,0,0,2,231952,0,8312.61,1.013689,0,12,1,47.42015,8.407863,3.685504,0,0,59.51351,0,0,0,6,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,9.025649,1.386294,4.086204,1
-11,2,0,0,3,231952,0,8312.61,2.013689,0,12,1,27.34731,5.802188,0,0,0,33.1495,0,0,0,3,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,9.025649,1.386294,3.501028,1
-14,2,95,0,1,231963,0,4582.405,22.05886,0,16,1,88.61082,4.233912,24.53013,0,0,117.3749,0,0,0,4,2,2,86.7,10.3,0,54.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,54.5,8.430198,.6931472,4.765373,1
-14,2,95,0,2,231963,0,4582.405,23.05886,0,16,1,112.2832,4.439756,29.67651,0,0,146.3994,0,0,0,9,0,2,86.7,10.3,0,54.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,54.5,8.430198,.6931472,4.986339,1
-14,2,95,0,3,231963,0,4582.405,24.05886,0,16,1,105.4385,8.22442,30.0086,0,0,143.6715,0,0,0,5,0,2,86.7,10.3,0,54.5,218,0,0,0,.6931472,0,0,4.564348,5.435788,0,0,0,54.5,8.430198,.6931472,4.96753,1
-17,2,25,0,1,231965,0,8665.641,26.36276,1,14,1,213.2789,40.78141,11.23596,0,741.8795,1007.176,1,0,0,10,4,3,71.3,13.8,1,79.5,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,0,0,0,79.5,9.067237,1.098612,6.914906,1
-17,2,25,0,2,231965,0,8665.641,27.36276,1,14,1,158.4623,49.04829,38.24191,0,0,245.7525,0,0,0,8,5,3,71.3,13.8,1,79.5,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,0,0,0,79.5,9.067237,1.098612,5.504325,1
-17,2,25,0,3,231965,0,8665.641,28.36276,1,14,1,83.8994,41.71539,0,21.49613,844.54,970.1548,1,0,1,7,0,3,71.3,13.8,1,79.5,189,534.24,0,0,1.098612,6.280845,0,3.258096,6.628041,0,0,0,79.5,9.067237,1.098612,6.877456,1
-11,2,0,0,1,231967,0,8807.625,15.10746,0,10,1,25.24472,1.488923,30.70067,0,0,57.43431,0,0,0,2,1,4,94.1,3.4,0,93.2,0,58.2,1,0,1.386294,4.063885,0,0,0,0,0,0,93.2,9.083487,1.386294,4.050642,1
-11,2,0,0,2,231967,0,8807.625,16.10746,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,94.1,3.4,0,93.2,0,58.2,1,0,1.386294,4.063885,0,0,0,0,0,0,93.2,9.083487,1.386294,,0
-11,2,0,0,3,231967,0,8807.625,17.10746,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,94.1,3.4,0,93.2,0,58.2,1,0,1.386294,4.063885,0,0,0,0,0,0,93.2,9.083487,1.386294,,0
-15,2,95,0,1,231970,1,7283.285,6.327173,0,11,1,19.40756,0,0,0,0,19.40756,0,0,0,1,0,4,46.7,11.84267,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,8.893475,1.386294,2.965663,1
-19,2,25,0,1,231973,1,11017.6,21.06776,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,3.4,0,68.2,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.30734,.6931472,,0
-19,2,25,0,2,231973,1,11017.6,22.06776,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,3.4,0,68.2,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.30734,.6931472,,0
-19,2,25,0,3,231973,1,11017.6,23.06776,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,3.4,0,68.2,1000,1000,0,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,68.2,9.30734,.6931472,,0
-18,2,25,0,1,231974,1,1,25.34976,1,11,1,61.67007,0,0,0,0,61.67007,0,0,0,1,0,2,76.6,6.9,0,81.8,333,0,0,0,.6931472,0,0,3.258096,7.194437,0,0,0,81.8,.6931472,.6931472,4.121799,1
-18,2,25,0,2,231974,1,1,26.34976,1,11,1,0,0,0,0,0,0,1,1,0,0,0,2,76.6,6.9,0,81.8,333,0,0,0,.6931472,0,0,3.258096,7.194437,0,0,0,81.8,.6931472,.6931472,,0
-18,2,25,0,3,231974,1,1,27.34976,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,6.9,0,81.8,333,0,0,0,1.098612,0,0,3.258096,7.194437,0,0,0,81.8,.6931472,1.098612,,0
-18,2,25,0,1,231975,1,1,8.85421,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85,11.84267,0,90.7,333,0,1,1,.6931472,0,0,3.258096,7.194437,0,0,0,90.7,.6931472,.6931472,,0
-18,2,25,0,2,231975,1,1,9.85421,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85,11.84267,0,90.7,333,0,1,1,.6931472,0,0,3.258096,7.194437,0,0,0,90.7,.6931472,.6931472,,0
-18,2,25,0,3,231975,1,1,10.85421,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85,11.84267,0,90.7,333,0,1,1,1.098612,0,0,3.258096,7.194437,0,0,0,90.7,.6931472,1.098612,,0
-18,2,25,0,1,231976,1,144.2815,20.42984,1,12,1,0,11.1695,0,0,0,11.1695,0,0,0,0,0,1,66,3.4,0,81.8,240,0,0,0,0,0,0,3.258096,6.866933,0,0,0,81.8,4.978673,0,2.413187,1
-18,2,25,0,2,231976,1,144.2815,21.42984,1,12,1,16.57197,0,0,0,0,16.57197,0,0,0,1,0,1,66,3.4,0,81.8,240,0,0,0,0,0,0,3.258096,6.866933,0,0,0,81.8,4.978673,0,2.807713,1
-18,2,25,0,3,231976,1,144.2815,22.42984,1,12,1,18.20546,0,0,0,0,18.20546,0,0,0,1,0,1,66,3.4,0,81.8,240,0,0,0,0,0,0,3.258096,6.866933,0,0,0,81.8,4.978673,0,2.901722,1
-18,2,25,0,1,231977,1,1,35.61396,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.5,13.8,0,72.7,325,325,0,0,0,5.783825,0,3.258096,7.17012,0,0,0,72.7,.6931472,0,,0
-18,2,25,0,2,231977,1,1,36.61396,0,12,1,26.04167,0,0,0,0,26.04167,0,0,0,1,0,1,66.5,13.8,0,72.7,325,325,0,0,0,5.783825,0,3.258096,7.17012,0,0,0,72.7,.6931472,0,3.259698,1
-18,2,25,0,3,231977,1,1,37.61396,0,12,1,19.59254,0,0,0,0,19.59254,0,0,0,1,0,1,66.5,13.8,0,72.7,325,325,0,0,0,5.783825,0,3.258096,7.17012,0,0,0,72.7,.6931472,0,2.975149,1
-11,2,0,0,1,231980,0,7267.449,23.04175,0,12,1,78.82535,39.12931,0,0,0,117.9547,0,0,0,10,0,1,76.1,10.3,0,65.9,0,0,0,0,0,0,0,0,0,0,0,0,65.9,8.891298,0,4.7703,1
-11,2,0,0,2,231980,0,7267.449,24.04175,0,12,1,18.22917,0,0,0,0,18.22917,0,0,0,2,0,1,76.1,10.3,0,65.9,0,0,0,0,0,0,0,0,0,0,0,0,65.9,8.891298,0,2.903023,1
-11,2,0,0,3,231980,0,7267.449,25.04175,0,12,1,30.1257,1.729519,0,0,0,31.85522,0,0,0,4,0,1,76.1,10.3,0,65.9,0,0,0,0,0,0,0,0,0,0,0,0,65.9,8.891298,0,3.461201,1
-11,2,0,0,4,231980,0,7267.449,26.04175,0,12,1,5.907838,0,0,0,0,5.907838,0,0,0,1,0,2,76.1,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,8.891298,.6931472,1.77628,1
-11,2,0,0,5,231980,0,7267.449,27.04175,0,12,1,65.83184,7.084079,0,0,0,72.91592,0,0,0,4,0,2,76.1,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,8.891298,.6931472,4.289307,1
-17,2,25,0,1,231994,0,8221.701,30.10541,0,12.75671,1,60.01022,0,31.45557,68.94791,0,91.46578,0,0,6,1,1,2,76.6,13.8,1,69.3,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,69.3,9.014654,.6931472,4.515965,1
-17,2,25,0,2,231994,0,8221.701,31.10541,0,12.75671,1,69.47961,5.583685,0,14.0647,0,75.06329,0,0,1,4,0,2,76.6,13.8,1,69.3,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,69.3,9.014654,.6931472,4.318332,1
-17,2,25,0,3,231994,0,8221.701,32.10541,0,12.75671,1,38.69304,1.397249,37.73861,0,0,77.82889,0,0,0,2,1,2,76.6,13.8,1,69.3,250,250,0,0,.6931472,5.521461,0,3.258096,6.907755,0,0,0,69.3,9.014654,.6931472,4.354513,1
-6,2,25,0,1,232009,0,4692.082,.0136893,1,10,1,79.93648,8.073054,0,0,0,88.00953,0,0,0,11,0,5,81.35272,11.84267,.0221239,,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,76.97035,8.453845,1.609438,4.477445,1
-6,2,25,0,2,232009,0,4692.082,1.013689,1,10,1,82.64961,5.188224,0,0,253.668,341.5058,1,0,0,10,0,5,81.35272,11.84267,.0221239,,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,76.97035,8.453845,1.609438,5.833364,1
-6,2,25,0,3,232009,0,4692.082,2.013689,1,10,1,40.05341,7.098353,0,0,0,47.15176,0,0,0,7,0,5,81.35272,11.84267,.0221239,,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,76.97035,8.453845,1.609438,3.853371,1
-6,2,25,0,4,232009,0,4692.082,3.013689,1,10,1,30.90687,9.44693,0,0,0,40.3538,0,0,0,3,0,5,81.35272,11.84267,.0221239,,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,76.97035,8.453845,1.609438,3.697686,1
-6,2,25,0,5,232009,0,4692.082,4.013689,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,.0221239,,360,360,1,1,1.609438,5.886104,0,3.258096,7.272398,0,0,0,76.97035,8.453845,1.609438,,0
-13,2,0,0,2,232011,0,8926.687,.6632444,0,12,1,22.29762,0,0,0,0,22.29762,0,0,0,2,0,4,81.35272,11.84267,.0221239,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.97035,9.096912,1.386294,3.10448,1
-13,2,0,0,3,232011,0,8926.687,1.663244,0,12,1,7.637017,1.572327,0,0,0,9.209344,0,0,0,1,0,4,81.35272,11.84267,.0221239,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.97035,9.096912,1.386294,2.220219,1
-11,2,0,0,2,232013,0,8665.641,.8384668,0,10,1,61.19792,13.68371,0,0,0,74.88163,0,0,0,8,0,11,81.35272,11.84267,.0221239,,0,0,1,0,2.397895,0,0,0,0,0,0,0,76.97035,9.067237,2.397895,4.315908,1
-11,2,0,0,3,232013,0,8665.641,1.838467,0,10,1,84.3303,14.82445,0,0,388.925,488.0797,1,0,0,5,0,11,81.35272,11.84267,.0221239,,0,0,1,0,2.397895,0,0,0,0,0,0,0,76.97035,9.067237,2.397895,6.190479,1
-13,2,0,0,2,232016,0,6242.815,.8083504,0,14,1,122.7664,3.081701,0,29.86144,0,125.8481,0,0,2,7,0,3,81.35272,11.84267,.0221239,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,76.97035,8.739347,1.098612,4.835075,1
-13,2,0,0,3,232016,0,6242.815,1.80835,0,14,1,14.37665,0,0,17.55926,0,14.37665,0,0,1,2,0,3,81.35272,11.84267,.0221239,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,76.97035,8.739347,1.098612,2.665605,1
-15,2,95,0,2,232019,0,8665.641,.6002738,0,14,1,80.81992,0,0,0,0,80.81992,0,0,0,3,1,2,81.35272,11.84267,.0221239,,249.5,249.5,1,0,.6931472,5.519459,0,4.564348,5.570752,0,0,0,76.97035,9.067237,.6931472,4.392223,1
-15,2,95,0,3,232019,0,8665.641,1.600274,0,14,1,8.130081,3.206865,0,0,0,11.33695,0,0,0,1,0,2,81.35272,11.84267,.0221239,,249.5,249.5,1,0,.6931472,5.519459,0,4.564348,5.570752,0,0,0,76.97035,9.067237,.6931472,2.428067,1
-7,2,25,0,2,232022,0,6541.349,.3374401,1,12,1,32.18673,1.616708,0,0,0,33.80344,0,0,0,4,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.97035,8.786052,1.386294,3.520563,1
-7,2,25,0,3,232022,0,6541.349,1.33744,1,12,1,104.8314,1.412944,0,0,0,106.2443,0,0,0,5,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.97035,8.786052,1.386294,4.665741,1
-5,2,25,0,2,232028,0,8665.641,.7700205,0,16,1,19.11132,0,0,0,0,19.11132,0,0,0,2,0,4,81.35272,11.84267,.0221239,,548.75,623.75,1,0,1.386294,6.43575,0,3.258096,7.693937,0,0,0,76.97035,9.067237,1.386294,2.950281,1
-5,2,25,0,3,232028,0,8665.641,1.77002,0,16,1,11.41352,0,0,0,0,11.41352,0,0,0,1,0,4,81.35272,11.84267,.0221239,,548.75,623.75,1,0,1.386294,6.43575,0,3.258096,7.693937,0,0,0,76.97035,9.067237,1.386294,2.434799,1
-11,2,0,0,1,232031,0,1697.361,22.38741,0,16,1,93.84576,20.0715,0,0,0,113.9173,0,0,0,7,0,1,77.7,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.437419,0,4.735472,1
-11,2,0,0,2,232031,0,1697.361,23.38741,0,16,1,14.0647,0,15.00234,0,0,29.06704,0,0,0,0,1,1,77.7,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.437419,0,3.369605,1
-11,2,0,0,3,232031,0,1697.361,24.38741,0,16,1,10.74806,5.137575,15.04729,0,0,30.93293,0,0,0,1,0,1,77.7,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.437419,0,3.431821,1
-11,2,0,0,4,232031,0,1697.361,25.38741,0,16,1,11.63242,0,0,0,0,11.63242,0,0,0,1,0,1,77.7,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.437419,0,2.453796,1
-11,2,0,0,5,232031,0,1697.361,26.38741,0,16,1,12.73885,0,28.30856,0,0,41.04742,0,0,0,0,1,1,77.7,6.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.437419,0,3.714728,1
-11,2,0,0,2,232032,0,8124.927,.9507187,0,13,1,28.90588,2.603918,0,0,0,31.50979,0,0,0,2,1,3,81.35272,11.84267,.0221239,,0,0,1,0,1.098612,0,0,0,0,0,0,0,76.97035,9.002815,1.098612,3.450298,1
-11,2,0,0,3,232032,0,8124.927,1.950719,0,13,1,271.9666,0,0,0,0,271.9666,0,0,0,5,0,3,81.35272,11.84267,.0221239,,0,0,1,0,1.098612,0,0,0,0,0,0,0,76.97035,9.002815,1.098612,5.60568,1
-11,2,0,0,4,232032,0,8124.927,2.950719,0,13,1,22.5369,7.718389,0,0,0,30.25529,0,0,0,2,0,3,81.35272,11.84267,.0221239,,0,0,1,0,1.098612,0,0,0,0,0,0,0,76.97035,9.002815,1.098612,3.409671,1
-11,2,0,0,5,232032,0,8124.927,3.950719,0,13,1,69.97825,1.247281,0,0,0,71.22552,0,0,0,4,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,9.002815,1.386294,4.265851,1
-11,2,0,0,2,232034,0,3651.613,.4223135,1,12,1,32.23461,0,0,0,0,32.23461,0,0,0,3,1,4,81.35272,11.84267,.0221239,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.97035,8.203198,1.386294,3.473041,1
-11,2,0,0,3,232034,0,3651.613,1.422313,1,12,1,15.72327,0,0,0,0,15.72327,0,0,0,1,0,4,81.35272,11.84267,.0221239,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.97035,8.203198,1.386294,2.755142,1
-15,2,95,0,2,232035,0,8771.261,.3785079,1,12,1,131.4788,25.94924,0,0,0,157.428,0,0,0,15,0,3,81.35272,11.84267,.0221239,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.098612,5.058968,1
-15,2,95,0,3,232035,0,8771.261,1.378508,1,12,1,329.5077,13.26107,9.936766,0,0,352.7055,0,0,0,12,0,3,81.35272,11.84267,.0221239,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.098612,5.865633,1
-15,2,95,0,4,232035,0,8771.261,2.378508,1,12,1,262.0141,7.456576,0,0,0,269.4706,0,0,0,8,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.386294,5.596459,1
-15,2,95,0,5,232035,0,8771.261,3.378508,1,12,1,48.24888,8.129657,8.196721,0,0,64.57526,0,0,0,4,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.386294,4.167831,1
-11,2,0,0,2,232036,0,15428.15,.5674196,0,16,1,137.3069,23.09363,0,0,258.4652,418.8658,1,0,0,10,0,4,81.35272,11.84267,.0221239,,0,354.72,1,0,1.386294,5.871329,0,0,0,0,0,0,76.97035,9.644014,1.386294,6.037551,1
-11,2,0,0,3,232036,0,15428.15,1.56742,0,16,1,75.2114,10.85892,0,0,0,86.07031,0,0,0,6,0,4,81.35272,11.84267,.0221239,,0,354.72,1,0,1.386294,5.871329,0,0,0,0,0,0,76.97035,9.644014,1.386294,4.455164,1
-11,2,0,0,2,232041,0,10711.44,.1895962,0,16,1,72.23587,6.240786,0,0,0,78.47666,0,0,0,11,0,4,81.35272,11.84267,.0221239,,0,206.64,1,0,1.386294,5.330978,0,0,0,0,0,0,76.97035,9.27916,1.386294,4.362801,1
-11,2,0,0,3,232041,0,10711.44,1.189596,0,16,1,45.12306,26.36736,0,0,0,71.49043,0,0,0,6,0,4,81.35272,11.84267,.0221239,,0,206.64,1,0,1.386294,5.330978,0,0,0,0,0,0,76.97035,9.27916,1.386294,4.269564,1
-11,2,0,0,4,232041,0,10711.44,2.189596,0,16,1,27.71988,7.85744,0,0,0,35.57732,0,0,0,4,0,4,81.35272,11.84267,.0221239,,0,206.64,1,0,1.386294,5.330978,0,0,0,0,0,0,76.97035,9.27916,1.386294,3.571708,1
-11,2,0,0,5,232041,0,10711.44,3.189596,0,16,1,33.57089,2.993248,0,0,0,36.56414,0,0,0,3,0,4,81.35272,11.84267,.0221239,,0,206.64,1,0,1.386294,5.330978,0,0,0,0,0,0,76.97035,9.27916,1.386294,3.599068,1
-6,2,25,0,2,232042,0,6382.991,.4113621,1,13,1,78.4773,4.597364,0,0,0,83.07467,0,0,0,7,0,3,81.35272,11.84267,.0221239,,902.1,902.1,1,1,1.098612,6.804725,0,3.258096,8.19102,0,0,0,76.97035,8.761549,1.098612,4.41974,1
-6,2,25,0,3,232042,0,6382.991,1.411362,1,13,1,50.58717,0,0,0,0,50.58717,0,0,0,4,0,3,81.35272,11.84267,.0221239,,902.1,902.1,1,1,1.098612,6.804725,0,3.258096,8.19102,0,0,0,76.97035,8.761549,1.098612,3.923698,1
-13,2,0,0,1,232045,0,18432.84,45.26489,1,12,1,138.7385,14.09602,34.73953,0,0,187.5741,0,0,0,6,0,3,84.6,3.4,0,73.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.821943,1.098612,5.234174,1
-13,2,0,0,2,232045,0,18432.84,46.26489,1,12,1,68.23722,28.48101,0,0,0,96.71824,0,0,0,1,0,3,84.6,3.4,0,73.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.821943,1.098612,4.571802,1
-13,2,0,0,3,232045,0,18432.84,47.26489,1,12,1,121.4746,28.46088,.6448839,0,0,150.5804,0,0,0,5,0,3,84.6,3.4,0,73.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.821943,1.098612,5.014497,1
-13,2,0,0,4,232045,0,18432.84,48.26489,1,12,1,23.53625,16.45211,0,0,0,39.98837,0,0,0,1,0,3,84.6,3.4,0,73.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.821943,1.098612,3.688589,1
-13,2,0,0,5,232045,0,18432.84,49.26489,1,12,1,0,15.74664,0,0,0,15.74664,0,0,0,0,0,2,84.6,3.4,0,73.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.821943,.6931472,2.756627,1
-13,2,0,0,1,232046,0,18432.84,18.10267,0,11,1,27.14505,2.196119,0,0,0,29.34116,0,0,0,1,0,3,83,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.821943,1.098612,3.378991,1
-13,2,0,0,2,232046,0,18432.84,19.10267,0,11,1,13.59587,0,0,0,0,13.59587,0,0,0,1,0,3,83,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.821943,1.098612,2.609766,1
-13,2,0,0,3,232046,0,18432.84,20.10267,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,83,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.821943,1.098612,,0
-13,2,0,0,4,232046,0,18432.84,21.10267,0,11,1,32.57076,0,0,0,0,32.57076,0,0,0,2,0,3,83,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.821943,1.098612,3.483415,1
-11,2,0,0,2,232059,0,8665.641,.7043121,0,10,1,27.81723,0,0,0,0,27.81723,0,0,0,2,0,11,81.35272,11.84267,.0221239,,0,0,1,0,2.397895,0,0,0,0,0,0,0,76.97035,9.067237,2.397895,3.325656,1
-11,2,0,0,3,232059,0,8665.641,1.704312,0,10,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,11,81.35272,11.84267,.0221239,,0,0,1,0,2.397895,0,0,0,0,0,0,0,76.97035,9.067237,2.397895,2.159784,1
-13,2,0,0,2,232060,0,4092.669,.340178,1,13,1,42.95367,0,0,0,0,42.95367,0,0,0,4,0,4,81.35272,11.84267,.0221239,,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,76.97035,8.317197,1.386294,3.760122,1
-13,2,0,0,3,232060,0,4092.669,1.340178,1,13,1,23.92078,0,0,0,0,23.92078,0,0,0,1,0,4,81.35272,11.84267,.0221239,,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,76.97035,8.317197,1.386294,3.174748,1
-13,2,0,0,2,232065,0,9795.895,.4004107,0,12,1,48.53436,0,0,0,0,48.53436,0,0,0,3,0,3,81.35272,11.84267,.0221239,,300,312,1,0,1.098612,5.743003,1,4.564348,5.755076,0,0,0,76.97035,9.18982,1.098612,3.882272,1
-13,2,0,0,3,232065,0,9795.895,1.400411,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,.0221239,,300,312,1,0,1.098612,5.743003,1,4.564348,5.755076,0,0,0,76.97035,9.18982,1.098612,,0
-16,2,95,0,2,232075,0,5025.807,.8767967,1,13,1,44.03409,0,0,0,0,44.03409,0,0,0,4,0,2,81.35272,11.84267,.0221239,,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,0,0,76.97035,8.52254,.6931472,3.784964,1
-16,2,95,0,3,232075,0,5025.807,1.876797,1,13,1,51.36541,6.129172,0,0,0,57.49458,0,0,0,4,0,2,81.35272,11.84267,.0221239,,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,0,0,76.97035,8.52254,.6931472,4.051691,1
-14,2,95,0,2,232076,0,12958.94,.1594798,1,17,1,90.61294,14.34363,0,0,0,104.9566,0,0,0,9,0,4,81.35272,11.84267,.0221239,,815,815,1,1,1.386294,6.703188,0,4.564348,6.754481,0,0,0,76.97035,9.469619,1.386294,4.653547,1
-14,2,95,0,3,232076,0,12958.94,1.15948,1,17,1,303.2933,14.12995,0,0,0,317.4232,0,0,0,8,0,4,81.35272,11.84267,.0221239,,815,815,1,1,1.386294,6.703188,0,4.564348,6.754481,0,0,0,76.97035,9.469619,1.386294,5.760236,1
-11,2,0,0,2,232077,0,15661.58,.0253251,0,14,1,104.3626,17.13039,0,0,0,121.493,0,0,0,12,0,3,81.35272,11.84267,.0221239,,0,243.84,1,0,1.098612,5.496512,0,0,0,0,0,0,76.97035,9.65903,1.098612,4.799857,1
-11,2,0,0,3,232077,0,15661.58,1.025325,0,14,1,87.59659,14.19137,0,0,0,101.788,0,0,0,8,0,3,81.35272,11.84267,.0221239,,0,243.84,1,0,1.098612,5.496512,0,0,0,0,0,0,76.97035,9.65903,1.098612,4.622892,1
-7,2,25,0,2,232078,0,9759.531,.4852841,1,16,1,21.44935,0,0,0,0,21.44935,0,0,0,2,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.97035,9.186102,1.386294,3.065694,1
-7,2,25,0,3,232078,0,9759.531,1.485284,1,16,1,13.81402,0,0,0,0,13.81402,0,0,0,1,0,4,81.35272,11.84267,.0221239,,1000,1000,1,1,1.386294,6.907755,0,3.258096,8.294049,0,0,0,76.97035,9.186102,1.386294,2.625684,1
-5,2,25,0,3,232087,1,10402.35,.9240246,0,12,1,32.81677,0,0,0,0,32.81677,0,0,0,5,0,5,81.35272,11.84267,.0221239,,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,76.97035,9.249883,1.609438,3.49094,1
-5,2,25,0,4,232087,1,10402.35,1.924025,0,12,1,42.7053,0,0,0,504.9395,547.6448,1,0,0,2,0,5,81.35272,11.84267,.0221239,,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,76.97035,9.249883,1.609438,6.305627,1
-5,2,25,0,5,232087,1,10402.35,2.924025,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.35272,11.84267,.0221239,,966.45,966.45,1,0,1.609438,6.87363,0,3.258096,8.259924,0,0,0,76.97035,9.249883,1.609438,,0
-11,2,0,0,2,232100,0,1,.0253251,1,13,1,263.4998,28.4731,0,0,0,291.9729,0,0,0,14,1,5,81.35272,11.84267,.0221239,,0,0,1,1,1.609438,0,0,0,0,0,0,0,76.97035,.6931472,1.609438,5.676661,1
-11,2,0,0,3,232100,0,1,1.025325,1,13,1,414.9596,44.43845,0,0,0,459.398,0,0,0,12,1,5,81.35272,11.84267,.0221239,,0,0,1,1,1.609438,0,0,0,0,0,0,0,76.97035,.6931472,1.609438,6.129917,1
-15,2,95,0,3,232107,0,10362.61,.9075975,0,12,1,58.15266,4.539295,0,0,0,62.69196,0,0,0,5,0,3,81.35272,11.84267,.0221239,,984.8,697.48,1,0,1.098612,6.547474,0,4.564348,6.943732,0,0,0,76.97035,9.246056,1.098612,4.138233,1
-15,2,95,0,4,232107,0,10362.61,1.907598,0,12,1,59.57403,0,0,0,0,59.57403,0,0,0,6,0,4,81.35272,11.84267,.0221239,,984.8,697.48,1,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,76.97035,9.246056,1.386294,4.08722,1
-15,2,95,0,5,232107,0,10362.61,2.907598,0,12,1,49.08718,0,0,0,0,49.08718,0,0,0,2,0,4,81.35272,11.84267,.0221239,,984.8,697.48,1,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,76.97035,9.246056,1.386294,3.893598,1
-11,2,0,0,2,232110,0,11768.33,.559206,0,17,1,37.14764,0,0,0,0,37.14764,0,0,0,4,0,4,81.35272,11.84267,.0221239,,0,388.64,1,0,1.386294,5.962654,0,0,0,0,0,0,76.97035,9.373252,1.386294,3.6149,1
-11,2,0,0,3,232110,0,11768.33,1.559206,0,17,1,22.38806,15.29851,0,0,0,37.68657,0,0,0,3,0,4,81.35272,11.84267,.0221239,,0,388.64,1,0,1.386294,5.962654,0,0,0,0,0,0,76.97035,9.373252,1.386294,3.629304,1
-13,2,0,0,3,232113,0,4309.091,.6529774,1,12,1,36.0257,4.575493,0,0,0,40.60119,0,0,0,3,0,2,81.35272,11.84267,.0221239,,150,0,1,1,.6931472,0,1,4.564348,5.061929,0,0,0,76.97035,8.368714,.6931472,3.703797,1
-13,2,0,0,4,232113,0,4309.091,1.652977,1,12,1,26.12537,0,0,0,0,26.12537,0,0,0,2,0,2,81.35272,11.84267,.0221239,,150,0,1,1,.6931472,0,1,4.564348,5.061929,0,0,0,76.97035,8.368714,.6931472,3.262907,1
-13,2,0,0,5,232113,0,4309.091,2.652977,1,12,1,29.46732,3.014734,0,0,0,32.48206,0,0,0,3,0,2,81.35272,11.84267,.0221239,,150,0,1,1,.6931472,0,1,4.564348,5.061929,0,0,0,76.97035,8.368714,.6931472,3.480688,1
-13,2,0,0,2,232116,0,5781.231,.4332649,0,13,1,20.7529,14.10714,0,0,0,34.86004,0,0,0,3,0,3,81.35272,11.84267,.0221239,,300,76.85,1,0,1.098612,4.341856,1,4.564348,5.755076,0,0,0,76.97035,8.662545,1.098612,3.551341,1
-13,2,0,0,3,232116,0,5781.231,1.433265,0,13,1,42.27859,18.51802,22.85714,0,0,83.65376,0,0,0,5,0,3,81.35272,11.84267,.0221239,,300,76.85,1,0,1.098612,4.341856,1,4.564348,5.755076,0,0,0,76.97035,8.662545,1.098612,4.426686,1
-16,2,95,0,2,232142,0,4181.818,.4031485,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,.0221239,,848.4,848.4,1,1,.6931472,6.743352,0,4.564348,6.794645,0,0,0,76.97035,8.33874,.6931472,,0
-16,2,95,0,3,232142,0,4181.818,1.403149,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,.0221239,,848.4,848.4,1,1,.6931472,6.743352,0,4.564348,6.794645,0,0,0,76.97035,8.33874,.6931472,,0
-16,2,95,0,4,232142,0,4181.818,2.403148,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,.0221239,,848.4,848.4,1,1,.6931472,6.743352,0,4.564348,6.794645,0,0,0,76.97035,8.33874,.6931472,,0
-16,2,95,0,5,232142,0,4181.818,3.403148,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.35272,11.84267,.0221239,,848.4,848.4,1,1,.6931472,6.743352,0,4.564348,6.794645,0,0,0,76.97035,8.33874,.6931472,,0
-13,2,0,0,3,232147,0,8664.517,.6748802,1,12,1,18.97019,14.08762,0,0,0,33.05782,0,0,0,3,0,4,81.35272,11.84267,.0221239,,450,300,1,1,1.386294,5.703783,1,4.564348,6.160541,0,0,0,76.97035,9.067107,1.386294,3.498258,1
-13,2,0,0,3,232159,0,8665.641,.5982204,0,12,1,13.5825,0,0,0,0,13.5825,0,0,0,2,0,5,81.35272,11.84267,.0221239,,450,275.27,1,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,76.97035,9.067237,1.609438,2.608782,1
-13,2,0,0,4,232159,0,8665.641,1.59822,0,12,1,16.67361,0,0,0,0,16.67361,0,0,0,2,0,5,81.35272,11.84267,.0221239,,450,275.27,1,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,76.97035,9.067237,1.609438,2.813828,1
-13,2,0,0,5,232159,0,8665.641,2.59822,0,12,1,24.66242,4.51988,0,0,0,29.18229,0,0,0,2,0,5,81.35272,11.84267,.0221239,,450,275.27,1,0,1.609438,5.617753,1,4.564348,6.160541,0,0,0,76.97035,9.067237,1.609438,3.373562,1
-11,2,0,0,3,232184,0,9883.284,.2806297,1,12,1,105.6677,10.70216,15.14456,0,0,131.5145,0,0,0,10,0,3,81.35272,11.84267,.0221239,,0,0,1,1,1.098612,0,0,0,0,0,0,0,76.97035,9.198701,1.098612,4.879117,1
-11,2,0,0,3,232187,0,5309.091,.6310746,0,16,1,28.92746,2.202937,0,0,0,31.1304,0,0,0,2,0,5,81.35272,11.84267,.0221239,,0,0,1,0,1.609438,0,0,0,0,0,0,0,76.97035,8.577364,1.609438,3.438185,1
-13,2,0,0,2,232188,0,8560.704,.1211499,1,11,1,43.95604,0,0,0,0,43.95604,0,0,0,7,0,3,81.35272,11.84267,.0221239,,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,76.97035,9.055055,1.098612,3.78319,1
-13,2,0,0,3,232188,0,8560.704,1.12115,1,11,1,7.901668,0,0,0,0,7.901668,0,0,0,1,0,4,81.35272,11.84267,.0221239,,300,300,1,1,1.386294,5.703783,1,4.564348,5.755076,0,0,0,76.97035,9.055055,1.386294,2.067074,1
-17,2,25,0,3,232195,0,7324.927,.6557153,1,12,1,116.3301,15.41264,0,0,0,131.7428,0,0,0,12,0,3,81.35272,11.84267,.0221239,,568.05,568.05,1,1,1.098612,6.342209,0,3.258096,7.728504,0,0,0,76.97035,8.899175,1.098612,4.880851,1
-13,2,0,0,3,232204,0,3079.179,.4887064,0,16,1,57.18736,0,0,0,0,57.18736,0,0,0,1,0,5,81.35272,11.84267,.0221239,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.97035,8.032743,1.609438,4.046333,1
-6,2,25,0,3,232209,0,12080.35,.6721424,0,14,1,47.13656,0,0,0,0,47.13656,0,0,0,5,0,2,81.35272,11.84267,.0221239,,1000,1000,1,0,.6931472,6.907755,0,3.258096,8.294049,0,0,0,76.97035,9.399418,.6931472,3.853049,1
-16,2,95,0,3,232211,0,17438.12,.4339494,1,17,1,100.5786,1.958166,0,0,0,102.5367,0,0,0,12,1,2,81.35272,11.84267,.0221239,,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.766472,.6931472,4.630221,1
-6,2,25,0,3,232230,0,1847.507,.6173853,1,12,1,64.08545,31.94927,0,0,0,96.03471,0,0,0,6,0,2,81.35272,11.84267,.0221239,,40,0,1,1,.6931472,0,0,3.258096,5.075174,0,0,0,76.97035,7.522134,.6931472,4.56471,1
-11,2,0,0,3,232232,0,2519.648,.3381246,0,11,1,35.60647,1.581312,0,0,3282.367,3319.555,1,0,0,0,0,6,81.35272,11.84267,.0221239,,0,0,1,0,1.791759,0,0,0,0,0,0,0,76.97035,7.832272,1.791759,8.107586,1
-13,2,0,0,3,232239,1,8665.641,.1136208,0,12,1,25.20966,0,0,0,0,25.20966,0,0,0,3,0,5,81.35272,11.84267,.0221239,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.97035,9.067237,1.609438,3.227227,1
-18,2,25,0,3,232249,1,1,.5982204,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,81.35272,11.84267,.0221239,,333,0,1,1,1.098612,0,0,3.258096,7.194437,0,0,0,76.97035,.6931472,1.098612,,0
-16,2,95,0,3,232253,0,7921.408,.4531143,1,12,1,39.50834,4.367867,0,0,0,43.87621,0,0,0,6,0,6,81.35272,11.84267,.0221239,,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,76.97035,8.97745,1.791759,3.781372,1
-16,2,95,0,4,232253,0,7921.408,1.453114,1,12,1,8.775429,0,0,0,0,8.775429,0,0,0,1,0,6,81.35272,11.84267,.0221239,,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,76.97035,8.97745,1.791759,2.171956,1
-16,2,95,0,5,232253,0,7921.408,2.453114,1,12,1,21.02973,0,1.087745,0,0,22.11748,0,0,0,1,0,6,81.35272,11.84267,.0221239,,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,76.97035,8.97745,1.791759,3.096368,1
-11,2,0,0,3,232257,0,8224.634,.2587269,1,12,1,46.94519,10.26954,0,0,0,57.21473,0,0,0,4,0,4,81.35272,11.84267,.0221239,,0,0,1,1,1.386294,0,0,0,0,0,0,0,76.97035,9.015011,1.386294,4.046812,1
-11,2,0,0,3,232261,0,6920.234,.2258727,1,12,1,75.92345,7.948376,0,0,0,83.87183,0,0,0,7,1,4,81.35272,11.84267,.0221239,,0,325.68,1,1,1.386294,5.785915,0,0,0,0,0,0,76.97035,8.842349,1.386294,4.42929,1
-11,2,0,0,4,232261,0,6920.234,1.225873,1,12,1,132.6149,10.98821,17.98292,0,0,161.586,0,0,0,10,0,4,81.35272,11.84267,.0221239,,0,325.68,1,1,1.386294,5.785915,0,0,0,0,0,0,76.97035,8.842349,1.386294,5.085038,1
-11,2,0,0,5,232261,0,6920.234,2.225873,1,12,1,112.5916,8.955278,0,0,0,121.5469,0,0,0,6,0,4,81.35272,11.84267,.0221239,,0,325.68,1,1,1.386294,5.785915,0,0,0,0,0,0,76.97035,8.842349,1.386294,4.800301,1
-13,2,0,0,3,232279,0,8560.704,.3819302,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,81.35272,11.84267,.0221239,,300,300,1,1,1.386294,5.703783,1,4.564348,5.755076,0,0,0,76.97035,9.055055,1.386294,,0
-13,2,0,0,3,232290,0,1759.531,.0780287,1,10,1,62.3053,5.460614,0,0,0,67.76591,0,0,0,6,0,4,81.35272,11.84267,.0221239,,300,300,1,1,1.386294,5.703783,1,4.564348,5.755076,0,0,0,76.97035,7.473371,1.386294,4.216059,1
-13,2,0,0,3,232291,0,1759.531,.0780287,0,10,1,101.1348,17.74811,0,0,0,118.883,0,0,0,9,0,4,81.35272,11.84267,.0221239,,300,300,1,0,1.386294,5.703783,1,4.564348,5.755076,0,0,0,76.97035,7.473371,1.386294,4.77814,1
-11,2,0,0,3,232292,0,8505.572,.2067077,1,13,1,24.14399,0,0,0,0,24.14399,0,0,0,3,0,3,81.35272,11.84267,.0221239,,0,211.8,1,1,1.098612,5.355642,0,0,0,0,0,0,76.97035,9.048594,1.098612,3.184035,1
-11,2,0,0,4,232292,0,8505.572,1.206708,1,13,1,49.86039,0,0,0,0,49.86039,0,0,0,6,0,3,81.35272,11.84267,.0221239,,0,211.8,1,1,1.098612,5.355642,0,0,0,0,0,0,76.97035,9.048594,1.098612,3.909227,1
-11,2,0,0,5,232292,0,8505.572,2.206708,1,13,1,28.28136,4.002901,0,0,0,32.28426,0,0,0,3,0,4,81.35272,11.84267,.0221239,,0,211.8,1,1,1.386294,5.355642,0,0,0,0,0,0,76.97035,9.048594,1.386294,3.47458,1
-11,2,0,0,3,232325,0,8665.641,.1848049,0,10,1,5.20156,6.09016,0,0,0,11.29172,0,0,0,1,0,11,81.35272,11.84267,.0221239,,0,0,1,0,2.397895,0,0,0,0,0,0,0,76.97035,9.067237,2.397895,2.42407,1
-11,2,0,0,4,232339,0,11449.27,.7686516,0,15,1,126.1592,30.46779,0,0,0,156.627,0,0,0,7,15,3,81.35272,11.84267,.0221239,,0,0,1,0,1.098612,0,0,0,0,0,0,0,76.97035,9.345768,1.098612,5.053867,1
-11,2,0,0,5,232339,0,11449.27,1.768652,0,15,1,20.69475,7.22099,0,0,0,27.91574,0,0,0,2,1,3,81.35272,11.84267,.0221239,,0,0,1,0,1.098612,0,0,0,0,0,0,0,76.97035,9.345768,1.098612,3.329191,1
-15,2,95,0,4,232376,0,10362.61,.5304586,0,12,1,64.28867,0,0,0,0,64.28867,0,0,0,6,0,4,81.35272,11.84267,.0221239,,984.8,697.48,1,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,76.97035,9.246056,1.386294,4.163383,1
-15,2,95,0,5,232376,0,10362.61,1.530459,0,12,1,23.24888,0,0,0,0,23.24888,0,0,0,2,0,4,81.35272,11.84267,.0221239,,984.8,697.48,1,0,1.386294,6.547474,0,4.564348,6.943732,0,0,0,76.97035,9.246056,1.386294,3.146257,1
-14,2,95,0,4,232409,0,10179.47,.2758385,0,12,1,71.2797,15.3564,0,0,0,86.6361,0,0,0,8,0,6,81.35272,11.84267,.0221239,,835.7,835.7,1,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,76.97035,9.228227,1.791759,4.461717,1
-14,2,95,0,5,232409,0,10179.47,1.275838,0,12,1,101.0503,4.928732,0,0,0,105.979,0,0,0,6,0,6,81.35272,11.84267,.0221239,,835.7,835.7,1,0,1.791759,6.72827,0,4.564348,6.779563,0,0,0,76.97035,9.228227,1.791759,4.663241,1
-11,2,0,0,4,232412,0,7267.449,.7412731,1,12,1,80.74045,9.314691,0,0,0,90.05514,0,0,0,11,0,2,81.35272,11.84267,.0221239,,0,0,1,1,.6931472,0,0,0,0,0,0,0,76.97035,8.891298,.6931472,4.500422,1
-11,2,0,0,5,232412,0,7267.449,1.741273,1,12,1,13.59571,4.722719,0,0,0,18.31843,0,0,0,2,0,2,81.35272,11.84267,.0221239,,0,0,1,1,.6931472,0,0,0,0,0,0,0,76.97035,8.891298,.6931472,2.907907,1
-15,2,95,0,4,232421,0,8771.261,.2539357,0,12,1,21.71216,1.645988,0,0,0,23.35815,0,0,0,2,0,4,81.35272,11.84267,.0221239,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.386294,3.150946,1
-15,2,95,0,5,232421,0,8771.261,1.253936,0,12,1,22.54098,2.600596,0,0,0,25.14158,0,0,0,2,0,4,81.35272,11.84267,.0221239,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,76.97035,9.07935,1.386294,3.224523,1
-13,2,0,0,4,232451,0,9796.48,.2128679,0,15,1,111.3257,2.806019,0,0,0,114.1318,0,0,0,12,0,3,81.35272,11.84267,.0221239,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,76.97035,9.18988,1.098612,4.737354,1
-13,2,0,0,5,232451,0,9796.48,1.212868,0,15,1,301.5579,0,0,0,0,301.5579,0,0,0,8,0,3,81.35272,11.84267,.0221239,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,76.97035,9.18988,1.098612,5.708962,1
-13,2,0,0,5,232487,0,12936.07,.9993156,0,12,1,22.18247,6.862254,0,0,0,29.04472,0,0,0,3,0,6,81.35272,11.84267,.0221239,,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,76.97035,9.467853,1.791759,3.368837,1
-14,2,95,0,5,232489,0,8577.126,.8350445,1,12.75671,1,103.3515,3.041894,0,0,0,106.3934,0,0,0,8,0,3,81.35272,11.84267,.0221239,,765,765,1,1,1.098612,6.639876,0,4.564348,6.691169,0,0,0,76.97035,9.056971,1.098612,4.667144,1
-11,2,0,0,5,232504,0,8124.927,.9336071,0,13,1,59.46338,10.09065,0,0,561.3452,630.8992,1,0,0,7,0,4,81.35272,11.84267,.0221239,,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.97035,9.002815,1.386294,6.447146,1
-11,2,0,0,5,232596,0,8505.572,.0958248,0,13,1,48.94851,9.60116,0,0,153.2995,211.8492,1,0,0,7,0,4,81.35272,11.84267,.0221239,,0,211.8,1,0,1.386294,5.355642,0,0,0,0,0,0,76.97035,9.048594,1.386294,5.355875,1
-6,3,25,1,1,325007,0,10339.59,39.75907,0,8,1,70.58218,15.22411,127.254,0,0,213.0603,0,0,0,6,1,5,77.1,6.9,0,59.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.243833,1.609438,5.361575,1
-6,3,25,1,2,325007,0,10339.59,40.75907,0,8,1,14.20455,2.793561,10.41667,0,0,27.41477,0,0,0,1,0,5,77.1,6.9,0,59.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.243833,1.609438,3.311082,1
-6,3,25,1,3,325007,0,10339.59,41.75907,0,8,1,34.24361,7.98873,0,0,0,42.23234,0,0,0,2,0,5,77.1,6.9,0,59.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.243833,1.609438,3.743186,1
-6,3,25,1,1,325008,0,10339.59,16.51745,1,12,1,6.18238,1.262236,0,0,0,7.444616,0,0,0,1,0,5,86.2,3.4,0,73.9,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,73.9,9.243833,1.609438,2.007491,1
-6,3,25,1,2,325008,0,10339.59,17.51745,1,12,1,78.26704,12.92614,0,0,0,91.19318,0,0,0,3,0,5,86.2,3.4,0,73.9,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,73.9,9.243833,1.609438,4.51298,1
-6,3,25,1,3,325008,0,10339.59,18.51745,1,12,1,6.935414,0,0,0,0,6.935414,0,0,0,1,0,5,86.2,3.4,0,73.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,73.9,9.243833,1.609438,1.936641,1
-6,3,25,1,1,325009,0,10339.59,14.02327,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,0,0,84.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.243833,1.609438,,0
-6,3,25,1,2,325009,0,10339.59,15.02327,1,12,1,30.49242,0,0,0,0,30.49242,0,0,0,2,0,5,78.7,0,0,84.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.243833,1.609438,3.417478,1
-6,3,25,1,3,325009,0,10339.59,16.02327,1,12,1,262.4621,13.13394,0,0,2120.551,2396.146,1,0,0,9,1,5,78.7,0,0,84.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.243833,1.609438,7.781617,1
-6,3,25,1,1,325010,0,10339.59,7.378508,1,12,1,22.66873,2.189593,0,0,0,24.85832,0,0,0,2,0,5,80,9.967326,0,88.9,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.243833,1.609438,3.213192,1
-6,3,25,1,2,325010,0,10339.59,8.378508,1,12,1,62.31061,3.219697,.3314394,0,0,65.86174,0,0,0,5,0,5,80,9.967326,0,88.9,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.243833,1.609438,4.187558,1
-6,3,25,1,3,325010,0,10339.59,9.378508,1,12,1,84.91547,0,.8669267,0,0,85.7824,0,0,0,1,0,5,80,9.967326,0,88.9,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.243833,1.609438,4.451814,1
-6,3,25,1,1,325011,0,10339.59,37.56057,1,12,1,468.3874,9.53117,0,0,0,477.9186,0,0,0,2,0,5,56.4,17.2,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.243833,1.609438,6.16944,1
-6,3,25,1,2,325011,0,10339.59,38.56057,1,12,1,43.08712,18.13447,0,0,0,61.22159,0,0,0,1,8,5,56.4,17.2,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.243833,1.609438,4.1145,1
-6,3,25,1,3,325011,0,10339.59,39.56057,1,12,1,35.97746,22.28002,0,0,0,58.25748,0,0,0,2,6,5,56.4,17.2,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.243833,1.609438,4.064872,1
-13,3,0,0,1,325022,0,9470.381,23.85216,0,16,1,7.727975,0,0,0,0,7.727975,0,0,0,0,1,2,87.2,0,0,77.3,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,77.3,9.15603,.6931472,2.044847,1
-13,3,0,0,2,325022,0,9470.381,24.85216,0,16,1,66.28788,8.451705,4.024621,0,0,78.76421,0,0,0,3,0,2,87.2,0,0,77.3,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,77.3,9.15603,.6931472,4.366458,1
-13,3,0,0,3,325022,0,9470.381,25.85216,0,16,1,248.5479,0,0,0,0,248.5479,0,0,0,3,9,2,87.2,0,0,77.3,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,77.3,9.15603,.6931472,5.515635,1
-13,3,0,0,1,325023,0,9470.381,23.82204,1,16,1,62.13292,5.641422,0,0,0,67.77435,0,0,0,4,1,2,85.1,10.3,0,89.8,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,89.8,9.15603,.6931472,4.216184,1
-13,3,0,0,2,325023,0,9470.381,24.82204,1,16,1,53.97727,14.34659,0,0,0,68.32386,0,0,0,6,0,2,85.1,10.3,0,89.8,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,89.8,9.15603,.6931472,4.224259,1
-13,3,0,0,3,325023,0,9470.381,25.82204,1,16,1,282.1847,25.19723,0,0,566.8618,874.2436,1,1,0,1,0,2,85.1,10.3,0,89.8,300,465.96,0,0,.6931472,6.1441,1,4.564348,5.755076,0,0,0,89.8,9.15603,.6931472,6.773359,1
-11,3,0,1,1,325042,0,3679.765,8.071184,1,13,1,88.86619,48.381,28.08989,0,0,165.3371,0,0,0,6,1,5,83.3,9.967326,0,70.4,0,1047.24,1,1,1.609438,6.953913,0,0,0,0,0,0,70.4,8.210876,1.609438,5.107986,1
-11,3,0,1,2,325042,0,3679.765,9.071184,1,13,1,20.1594,46.4557,13.94749,0,0,80.56259,0,0,0,2,0,6,83.3,9.967326,0,70.4,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,70.4,8.210876,1.791759,4.389034,1
-11,3,0,1,3,325042,0,3679.765,10.07118,1,13,1,34.39381,69.88392,10.64058,0,0,114.9183,0,0,0,3,0,6,83.3,9.967326,0,70.4,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,70.4,8.210876,1.791759,4.744222,1
-11,3,0,1,1,325043,0,3679.765,31.99726,1,13,1,39.32584,17.36976,28.72829,0,710.1022,795.5261,1,0,0,2,1,5,75,6.9,1,55.7,0,1047.24,0,0,1.609438,6.953913,0,0,0,0,0,0,55.7,8.210876,1.609438,6.679004,1
-11,3,0,1,2,325043,0,3679.765,32.99726,1,13,1,14.53352,17.90436,11.72058,0,0,44.15846,0,0,0,1,1,6,75,6.9,1,55.7,0,1047.24,0,0,1.791759,6.953913,0,0,0,0,0,0,55.7,8.210876,1.791759,3.787785,1
-11,3,0,1,3,325043,0,3679.765,33.99726,1,13,1,696.5047,60.77386,36.02752,25.79536,515.5245,1308.831,1,0,1,37,0,6,75,6.9,1,55.7,0,1047.24,0,0,1.791759,6.953913,0,0,0,0,0,0,55.7,8.210876,1.791759,7.176889,1
-11,3,0,1,1,325044,0,3679.765,28.58043,0,8,1,23.36568,11.36364,26.04699,0,0,60.7763,0,0,0,1,1,5,86.2,6.9,0,78.6,0,1047.24,0,0,1.609438,6.953913,0,0,0,0,0,0,78.6,8.210876,1.609438,4.1072,1
-11,3,0,1,2,325044,0,3679.765,29.58043,0,8,1,135.068,6.04782,0,0,0,141.1158,0,0,0,3,1,6,86.2,6.9,0,78.6,0,1047.24,0,0,1.791759,6.953913,0,0,0,0,0,0,78.6,8.210876,1.791759,4.949581,1
-11,3,0,1,3,325044,0,3679.765,30.58043,0,8,1,98.8822,9.677558,23.64574,0,0,132.2055,0,0,0,1,1,6,86.2,6.9,0,78.6,0,1047.24,0,0,1.791759,6.953913,0,0,0,0,0,0,78.6,8.210876,1.791759,4.884357,1
-11,3,0,1,1,325045,0,3679.765,6.951403,1,13,1,46.98672,10.98059,0,0,0,57.96731,0,0,0,6,0,5,81.7,9.967326,1,63,0,1047.24,1,1,1.609438,6.953913,0,0,0,0,0,0,63,8.210876,1.609438,4.059879,1
-11,3,0,1,2,325045,0,3679.765,7.951403,1,13,1,48.75762,17.25738,0,0,0,66.015,0,0,0,7,1,6,81.7,9.967326,1,63,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,63,8.210876,1.791759,4.189882,1
-11,3,0,1,3,325045,0,3679.765,8.951404,1,13,1,229.8796,32.2012,0,0,0,262.0808,0,0,0,13,0,6,81.7,9.967326,1,63,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,63,8.210876,1.791759,5.568653,1
-10,3,50,1,1,325046,0,4042.229,14.2204,0,9,1,7.727975,4.121587,0,0,0,11.84956,0,0,0,1,0,7,70.7,0,0,79.5,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,79.5,8.304799,1.94591,2.472291,1
-10,3,50,1,2,325046,0,4042.229,15.2204,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,70.7,0,0,79.5,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,79.5,8.304799,1.94591,,0
-10,3,50,1,3,325046,0,4042.229,16.2204,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,70.7,0,0,79.5,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,79.5,8.304799,1.94591,,0
-10,3,50,1,1,325047,0,4042.229,8.804928,1,9,1,2.575992,3.19423,0,0,0,5.770222,0,0,0,1,0,7,91.7,9.967326,0,74.1,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.304799,1.94591,1.75271,1
-10,3,50,1,2,325047,0,4042.229,9.804928,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,9.967326,0,74.1,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.304799,1.94591,,0
-10,3,50,1,3,325047,0,4042.229,10.80493,1,9,1,6.501951,3.5544,0,0,0,10.05635,0,0,0,1,0,7,91.7,9.967326,0,74.1,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.304799,1.94591,2.308204,1
-10,3,50,1,1,325048,0,4042.229,44.73922,1,9,1,230.0155,28.46471,35.03349,0,0,293.5136,0,0,0,4,4,7,61.2,10.3,0,76.2,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,76.2,8.304799,1.94591,5.681924,1
-10,3,50,1,2,325048,0,4042.229,45.73922,1,9,1,14.20455,31.10795,0,0,0,45.3125,0,0,0,2,0,7,61.2,10.3,0,76.2,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,76.2,8.304799,1.94591,3.813583,1
-10,3,50,1,3,325048,0,4042.229,46.73922,1,9,1,8.669268,37.06112,0,0,0,45.73038,0,0,0,1,0,7,61.2,10.3,0,76.2,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,76.2,8.304799,1.94591,3.822763,1
-10,3,50,1,1,325049,0,4042.229,46.8501,0,7,1,10.30397,4.327666,0,0,0,14.63163,0,0,0,2,0,7,92.9,6.9,0,86.4,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,86.4,8.304799,1.94591,2.683186,1
-10,3,50,1,2,325049,0,4042.229,47.8501,0,7,1,31.25,0,0,0,0,31.25,0,0,0,1,0,7,92.9,6.9,0,86.4,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,86.4,8.304799,1.94591,3.442019,1
-10,3,50,1,3,325049,0,4042.229,48.8501,0,7,1,8.669268,11.66016,0,0,0,20.32943,0,0,0,1,0,7,92.9,6.9,0,86.4,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,86.4,8.304799,1.94591,3.01207,1
-10,3,50,1,1,325050,0,4042.229,10.05339,0,9,1,11.33436,1.803194,0,0,0,13.13756,0,0,0,0,0,7,83.3,9.967326,0,100,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,2.575475,1
-10,3,50,1,2,325050,0,4042.229,11.05339,0,9,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,7,83.3,9.967326,0,100,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,1.737271,1
-10,3,50,1,3,325050,0,4042.229,12.05339,0,9,1,5.20156,3.259645,0,0,0,8.461205,0,0,0,1,0,7,83.3,9.967326,0,100,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,2.135492,1
-10,3,50,1,1,325051,0,4042.229,18.09446,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,83.5,3.4,0,67,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,67,8.304799,1.94591,,0
-10,3,50,1,2,325051,0,4042.229,19.09446,0,11,1,0,6.155303,0,0,0,6.155303,0,0,0,0,0,7,83.5,3.4,0,67,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,67,8.304799,1.94591,1.817314,1
-10,3,50,1,3,325051,0,4042.229,20.09446,0,11,1,78.89034,16.59731,0,0,0,95.48765,0,0,0,5,0,7,83.5,3.4,0,67,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,67,8.304799,1.94591,4.558997,1
-10,3,50,1,1,325052,0,4042.229,7.063655,1,9,1,3.09119,0,0,0,0,3.09119,0,0,0,0,0,7,95,9.967326,0,100,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,1.128556,1
-10,3,50,1,2,325052,0,4042.229,8.063655,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,95,9.967326,0,100,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,,0
-10,3,50,1,3,325052,0,4042.229,9.063655,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,95,9.967326,0,100,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,100,8.304799,1.94591,,0
-18,3,25,1,1,325053,0,10218.18,15.19233,1,9,1,5.720229,3.536141,0,0,0,9.256371,0,0,0,1,0,3,77.7,6.9,0,60.2,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,9.232021,1.098612,2.225312,1
-18,3,25,1,2,325053,0,10218.18,16.19233,1,9,1,16.72241,0,24.36694,0,0,41.08934,0,0,0,1,1,3,77.7,6.9,0,60.2,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,9.232021,1.098612,3.715749,1
-18,3,25,1,3,325053,0,10218.18,17.19233,1,9,1,8.999122,0,0,0,0,8.999122,0,0,0,2,0,3,77.7,6.9,0,60.2,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,9.232021,1.098612,2.197127,1
-18,3,25,1,4,325053,0,10218.18,18.19233,1,9,1,64.22018,3.984843,0,0,0,68.20502,0,0,0,1,0,3,77.7,6.9,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,9.232021,1.098612,4.222518,1
-18,3,25,1,5,325053,0,10218.18,19.19233,1,9,1,59.1008,2.429296,21.75489,0,0,83.28499,0,0,0,2,1,3,77.7,6.9,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,9.232021,1.098612,4.422268,1
-18,3,25,1,1,325054,0,10218.18,37.88638,0,8,1,20.80083,0,22.88091,0,0,43.68175,0,0,0,1,1,3,73.2,6.9,0,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.232021,1.098612,3.77693,1
-18,3,25,1,2,325054,0,10218.18,38.88638,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,73.2,6.9,0,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.232021,1.098612,,0
-18,3,25,1,3,325054,0,10218.18,39.88638,0,8,1,8.779632,0,0,0,0,8.779632,0,0,0,1,0,3,73.2,6.9,0,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.232021,1.098612,2.172435,1
-18,3,25,1,4,325054,0,10218.18,40.88638,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,73.2,6.9,0,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.232021,1.098612,,0
-18,3,25,1,5,325054,0,10218.18,41.88638,0,8,1,16.31617,4.350979,10.15228,0,0,30.81944,0,0,0,1,1,3,73.2,6.9,0,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.232021,1.098612,3.428145,1
-18,3,25,1,1,325055,0,10218.18,34.93224,1,9,1,40.0416,19.9688,0,0,0,60.0104,0,0,0,3,0,3,70.2,27.6,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.232021,1.098612,4.094518,1
-18,3,25,1,2,325055,0,10218.18,35.93224,1,9,1,20.06689,29.14477,21.97802,0,0,71.18968,0,0,0,2,1,3,70.2,27.6,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.232021,1.098612,4.265348,1
-18,3,25,1,3,325055,0,10218.18,36.93224,1,9,1,8.779632,19.75417,0,0,0,28.5338,0,0,0,1,0,3,70.2,27.6,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.232021,1.098612,3.351089,1
-18,3,25,1,4,325055,0,10218.18,37.93224,1,9,1,191.2246,10.94934,22.33746,0,0,224.5114,0,0,0,6,2,3,70.2,27.6,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.232021,1.098612,5.413926,1
-18,3,25,1,5,325055,0,10218.18,38.93224,1,9,1,162.7266,12.43655,15.22843,0,0,190.3916,0,0,0,5,1,3,70.2,27.6,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.232021,1.098612,5.249083,1
-11,3,0,1,1,325088,0,5465.103,1.10883,0,12,1,24.72952,14.32251,0,0,0,39.05204,0,0,0,1,0,4,83.39137,9.967326,0,100,0,278.4,1,0,1.386294,5.629059,0,0,0,0,0,0,100,8.606321,1.386294,3.664895,1
-11,3,0,1,2,325088,0,5465.103,2.108829,0,12,1,17.99242,1.704545,0,0,0,19.69697,0,0,0,3,0,5,83.39137,9.967326,0,100,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,100,8.606321,1.609438,2.980465,1
-11,3,0,1,3,325088,0,5465.103,3.108829,0,12,1,70.52449,5.504985,0,0,0,76.02947,0,0,0,5,0,5,83.39137,9.967326,0,100,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,100,8.606321,1.609438,4.331121,1
-11,3,0,1,4,325088,0,5465.103,4.108829,0,12,1,58.29066,3.111461,0,0,0,61.40213,0,0,0,2,0,5,83.39137,9.967326,0,100,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,100,8.606321,1.609438,4.117445,1
-11,3,0,1,5,325088,0,5465.103,5.108829,0,12,1,39.92844,6.923077,0,0,0,46.85152,0,0,0,4,0,5,83.39137,9.967326,0,100,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,100,8.606321,1.609438,3.846983,1
-11,3,0,1,1,325089,0,5465.103,5.385353,0,12,1,5.667182,2.215353,0,0,0,7.882535,0,0,0,1,0,4,85,9.967326,0,77.8,0,278.4,1,0,1.386294,5.629059,0,0,0,0,0,0,77.8,8.606321,1.386294,2.06465,1
-11,3,0,1,2,325089,0,5465.103,6.385353,0,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,5,85,9.967326,0,77.8,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,77.8,8.606321,1.609438,1.737271,1
-11,3,0,1,3,325089,0,5465.103,7.385353,0,12,1,61.89857,13.8925,0,0,0,75.79107,0,0,0,5,0,5,85,9.967326,0,77.8,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,77.8,8.606321,1.609438,4.327981,1
-11,3,0,1,4,325089,0,5465.103,8.385352,0,12,1,13.78496,2.756991,0,0,0,16.54195,0,0,0,2,0,5,85,9.967326,0,77.8,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,77.8,8.606321,1.609438,2.805899,1
-11,3,0,1,5,325089,0,5465.103,9.385352,0,12,1,3.577817,4.454383,0,0,0,8.032201,0,0,0,1,0,5,85,9.967326,0,77.8,0,278.4,1,0,1.609438,5.629059,0,0,0,0,0,0,77.8,8.606321,1.609438,2.083459,1
-11,3,0,1,1,325090,0,5465.103,27.01711,1,12,1,19.57754,9.891809,20.60793,0,544.3792,594.4565,1,0,0,1,1,4,75,13.8,1,77.3,0,278.4,0,0,1.386294,5.629059,0,0,0,0,0,0,77.3,8.606321,1.386294,6.387648,1
-11,3,0,1,2,325090,0,5465.103,28.01711,1,12,1,15.15152,2.722538,0,0,0,17.87405,0,0,0,2,0,5,75,13.8,1,77.3,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,77.3,8.606321,1.609438,2.88335,1
-11,3,0,1,3,325090,0,5465.103,29.01711,1,12,1,148.6779,9.046381,23.84048,0,0,181.5648,0,0,0,1,15,5,75,13.8,1,77.3,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,77.3,8.606321,1.609438,5.201612,1
-11,3,0,1,4,325090,0,5465.103,30.01711,1,12,1,39.0705,8.842064,0,0,0,47.91256,0,0,0,2,0,5,75,13.8,1,77.3,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,77.3,8.606321,1.609438,3.869378,1
-11,3,0,1,5,325090,0,5465.103,31.01711,1,12,1,11.09123,0,28.62254,0,0,39.71378,0,0,0,2,0,5,75,13.8,1,77.3,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,77.3,8.606321,1.609438,3.681698,1
-11,3,0,1,1,325091,0,5465.103,23.19781,0,12,1,40.70067,7.367336,0,0,0,48.068,0,0,0,2,0,4,65.4,3.4,0,88.6,0,278.4,0,0,1.386294,5.629059,0,0,0,0,0,0,88.6,8.606321,1.386294,3.872617,1
-11,3,0,1,2,325091,0,5465.103,24.19781,0,12,1,96.11742,34.83902,0,0,0,130.9564,0,0,0,6,2,5,65.4,3.4,0,88.6,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,88.6,8.606321,1.609438,4.874865,1
-11,3,0,1,3,325091,0,5465.103,25.19781,0,12,1,127.4382,0,0,0,0,127.4382,0,0,0,0,15,5,65.4,3.4,0,88.6,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,88.6,8.606321,1.609438,4.847632,1
-11,3,0,1,4,325091,0,5465.103,26.19781,0,12,1,37.02245,2.028358,0,0,0,39.05081,0,0,0,1,3,5,65.4,3.4,0,88.6,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,88.6,8.606321,1.609438,3.664864,1
-11,3,0,1,5,325091,0,5465.103,27.19781,0,12,1,4.293381,1.9678,0,0,0,6.261181,0,0,0,1,0,5,65.4,3.4,0,88.6,0,278.4,0,0,1.609438,5.629059,0,0,0,0,0,0,88.6,8.606321,1.609438,1.834369,1
-11,3,0,1,1,325098,0,10845.16,32.34223,0,14,1,5.720229,5.954238,0,0,0,11.67447,0,0,0,1,0,4,66.5,3.4,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.291567,1.386294,2.457404,1
-11,3,0,1,2,325098,0,10845.16,33.34223,0,14,1,36.31152,12.3268,27.23364,0,0,75.87196,0,0,0,4,1,4,66.5,3.4,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.291567,1.386294,4.329047,1
-11,3,0,1,3,325098,0,10845.16,34.34223,0,14,1,29.85075,15.84723,0,0,0,45.69798,0,0,0,5,0,4,66.5,3.4,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,9.291567,1.386294,3.822054,1
-11,3,0,1,1,325099,0,10845.16,32.72827,1,12,1,86.06345,56.83827,0,0,0,142.9017,0,0,0,5,6,4,97.9,17.2,1,93.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,93.2,9.291567,1.386294,4.962157,1
-11,3,0,1,2,325099,0,10845.16,33.72827,1,12,1,54.94505,59.50788,25.80029,0,0,140.2532,0,0,0,3,5,4,97.9,17.2,1,93.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,93.2,9.291567,1.386294,4.943449,1
-11,3,0,1,3,325099,0,10845.16,34.72827,1,12,1,54.44249,64.30202,0,0,0,118.7445,0,0,0,5,2,4,97.9,17.2,1,93.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,93.2,9.291567,1.386294,4.776974,1
-11,3,0,1,1,325100,0,10845.16,8.859685,0,12,1,29.64119,23.79095,0,0,0,53.43214,0,0,0,1,0,4,96.7,9.967326,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.291567,1.386294,3.978412,1
-11,3,0,1,2,325100,0,10845.16,9.859685,0,12,1,11.94458,10.91734,0,0,0,22.86192,0,0,0,2,0,4,96.7,9.967326,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.291567,1.386294,3.129473,1
-11,3,0,1,3,325100,0,10845.16,10.85968,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,9.967326,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.291567,1.386294,,0
-11,3,0,1,1,325101,0,10845.16,11.28816,1,12,1,23.50494,0,0,0,0,23.50494,0,0,0,1,0,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.291567,1.386294,3.157211,1
-11,3,0,1,2,325101,0,10845.16,12.28816,1,12,1,6.21118,0,0,0,0,6.21118,0,0,0,1,0,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.291567,1.386294,1.826351,1
-11,3,0,1,3,325101,0,10845.16,13.28816,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.291567,1.386294,,0
-13,3,0,1,1,325104,0,7722.581,25.39357,1,14,1,23.53941,5.280783,0,0,0,28.8202,0,0,0,1,0,3,81.9,0,0,89.8,450,807.6,0,0,1.098612,6.694067,1,4.564348,6.160541,1,0,0,89.8,8.952033,1.098612,3.361076,1
-13,3,0,1,2,325104,0,7722.581,26.39357,1,14,1,21.7803,4.6875,0,0,541.714,568.1818,1,0,0,3,0,3,81.9,0,0,89.8,450,807.6,0,0,1.098612,6.694067,1,4.564348,6.160541,1,0,0,89.8,8.952033,1.098612,6.342442,1
-13,3,0,1,3,325104,0,7722.581,27.39357,1,14,1,17.772,0,25.57434,0,0,43.34634,0,0,0,2,0,4,81.9,0,0,89.8,450,807.6,0,0,1.386294,6.694067,1,4.564348,6.160541,1,0,0,89.8,8.952033,1.386294,3.769222,1
-13,3,0,1,1,325105,0,7722.581,24.85147,0,14,1,7.727975,12.93148,0,0,396.0536,416.713,1,0,0,1,0,3,62.2,24.1,0,34.1,450,807.6,0,0,1.098612,6.694067,1,4.564348,6.160541,1,0,0,34.1,8.952033,1.098612,6.032398,1
-13,3,0,1,2,325105,0,7722.581,25.85147,0,14,1,103.196,0,0,0,0,103.196,0,0,0,1,0,3,62.2,24.1,0,34.1,450,807.6,0,0,1.098612,6.694067,1,4.564348,6.160541,1,0,0,34.1,8.952033,1.098612,4.636631,1
-13,3,0,1,3,325105,0,7722.581,26.85147,0,14,1,5.635024,0,0,0,0,5.635024,0,0,0,1,0,4,62.2,24.1,0,34.1,450,807.6,0,0,1.386294,6.694067,1,4.564348,6.160541,1,0,0,34.1,8.952033,1.386294,1.729001,1
-13,3,0,1,1,325106,0,7722.581,1.853525,1,14,1,80.42246,4.662545,0,0,0,85.08501,0,0,0,5,0,3,83.39137,9.967326,0,96.3,450,807.6,1,1,1.098612,6.694067,1,4.564348,6.160541,1,0,0,96.3,8.952033,1.098612,4.443651,1
-13,3,0,1,2,325106,0,7722.581,2.853525,1,14,1,33.52273,2.367424,0,0,0,35.89015,0,0,0,4,0,3,83.39137,9.967326,0,96.3,450,807.6,1,1,1.098612,6.694067,1,4.564348,6.160541,1,0,0,96.3,8.952033,1.098612,3.580463,1
-13,3,0,1,3,325106,0,7722.581,3.853525,1,14,1,36.41092,0,0,0,0,36.41092,0,0,0,6,0,4,83.39137,9.967326,0,96.3,450,807.6,1,1,1.386294,6.694067,1,4.564348,6.160541,1,0,0,96.3,8.952033,1.386294,3.594869,1
-16,3,95,0,1,325107,1,6370.674,23.67146,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,0,0,59.1,1000,900,0,0,0,6.802395,0,4.564348,6.959049,0,0,0,59.1,8.759618,0,,0
-16,3,95,0,2,325107,1,6370.674,24.67146,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,0,0,59.1,1000,900,0,0,0,6.802395,0,4.564348,6.959049,0,0,0,59.1,8.759618,0,,0
-16,3,95,0,3,325107,1,6370.674,25.67146,0,13,1,23.51432,0,0,0,0,23.51432,0,0,0,2,0,1,74.5,0,0,59.1,1000,900,0,0,0,6.802395,0,4.564348,6.959049,0,0,0,59.1,8.759618,0,3.15761,1
-16,3,95,0,4,325107,1,6370.674,26.67146,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.5,0,0,59.1,1000,900,0,0,.6931472,6.802395,0,4.564348,6.959049,0,0,0,59.1,8.759618,.6931472,,0
-16,3,95,0,5,325107,1,6370.674,27.67146,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,74.5,0,0,59.1,1000,900,0,0,.6931472,6.802395,0,4.564348,6.959049,0,0,0,59.1,8.759618,.6931472,,0
-16,3,95,1,1,325110,0,7497.361,24.61602,0,16,1,25.24472,0,0,0,0,25.24472,0,0,0,1,0,4,92.6,3.4,0,94.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.92244,1.386294,3.228617,1
-16,3,95,1,2,325110,0,7497.361,25.61602,0,16,1,9.469697,.9375,0,0,0,10.4072,0,0,0,2,0,4,92.6,3.4,0,94.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.92244,1.386294,2.342498,1
-16,3,95,1,3,325110,0,7497.361,26.61602,0,16,1,63.24231,0,0,0,0,63.24231,0,0,0,4,0,4,92.6,3.4,0,94.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.92244,1.386294,4.146974,1
-16,3,95,1,4,325110,0,7497.361,27.61602,0,16,1,5.907838,12.17015,0,0,0,18.07798,0,0,0,1,0,5,92.6,3.4,0,94.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.92244,1.609438,2.894695,1
-16,3,95,1,5,325110,0,7497.361,28.61602,0,16,1,132.9875,0,0,0,0,132.9875,0,0,0,4,0,5,92.6,3.4,0,94.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.92244,1.609438,4.890255,1
-16,3,95,1,1,325111,0,7497.361,24.77481,1,14,1,46.88305,7.903143,26.79031,0,0,81.57651,0,0,0,3,1,4,73.9,10.3,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,8.92244,1.386294,4.401541,1
-16,3,95,1,2,325111,0,7497.361,25.77481,1,14,1,67.23485,18.04451,0,0,0,85.27936,0,0,0,9,0,4,73.9,10.3,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,8.92244,1.386294,4.445932,1
-16,3,95,1,3,325111,0,7497.361,26.77481,1,14,1,23.84048,2.72215,24.27395,0,477.6333,528.4698,1,0,0,2,1,4,73.9,10.3,0,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,75,8.92244,1.386294,6.269986,1
-16,3,95,1,4,325111,0,7497.361,27.77481,1,14,1,33.8716,3.513194,0,0,0,37.3848,0,0,0,2,0,5,73.9,10.3,0,75,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,75,8.92244,1.609438,3.621264,1
-16,3,95,1,5,325111,0,7497.361,28.77481,1,14,1,25.29517,9.824687,0,0,634.8265,669.9464,1,0,0,4,0,5,73.9,10.3,0,75,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,75,8.92244,1.609438,6.507198,1
-16,3,95,1,1,325112,0,7497.361,1.42642,0,14,1,47.39825,1.303452,0,0,437.5683,486.27,1,0,0,7,0,4,83.39137,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.92244,1.386294,6.186764,1
-16,3,95,1,2,325112,0,7497.361,2.42642,0,14,1,86.50568,.4640152,0,0,0,86.9697,0,0,0,5,0,4,83.39137,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.92244,1.386294,4.46556,1
-16,3,95,1,3,325112,0,7497.361,3.42642,0,14,1,180.6675,9.861292,0,0,0,190.5288,0,0,0,11,0,4,83.39137,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.92244,1.386294,5.249804,1
-16,3,95,1,4,325112,0,7497.361,4.42642,0,14,1,17.72351,0,0,0,0,17.72351,0,0,0,2,0,5,83.39137,9.967326,0,77.8,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.92244,1.609438,2.874892,1
-16,3,95,1,5,325112,0,7497.361,5.42642,0,14,1,16.45796,5.288014,0,0,0,21.74598,0,0,0,2,0,5,83.39137,9.967326,0,77.8,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,77.8,8.92244,1.609438,3.079429,1
-11,3,0,1,1,325116,0,4918.006,.8131417,0,13,1,68.69475,8.705148,0,0,199.0848,276.4846,1,0,0,6,0,4,83.39137,9.967326,0,85.2,0,0,1,0,1.386294,0,0,0,0,0,0,0,85.2,8.500862,1.386294,5.622155,1
-11,3,0,1,2,325116,0,4918.006,1.813142,0,13,1,474.7253,14.46727,0,0,480.172,969.3646,2,0,0,34,0,5,83.39137,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,8.500862,1.609438,6.876641,1
-11,3,0,1,1,325117,0,4918.006,22.89938,1,13,1,54.59698,24.11337,0,0,698.1903,776.9007,1,0,0,2,0,4,24.5,20.7,0,48.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,48.9,8.500862,1.386294,6.655313,1
-11,3,0,1,2,325117,0,4918.006,23.89938,1,13,1,153.3206,15.84807,0,0,0,169.1687,0,0,0,4,0,5,24.5,20.7,0,48.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,48.9,8.500862,1.609438,5.130896,1
-11,3,0,1,3,325117,0,4918.006,24.89938,1,13,1,76.03161,14.53029,0,0,1022.542,1113.104,2,0,0,5,0,3,24.5,20.7,0,48.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,48.9,8.500862,1.098612,7.014907,1
-11,3,0,1,1,325118,0,4918.006,1.629021,0,13,1,46.56786,0,0,0,0,46.56786,0,0,0,4,0,4,83.39137,9.967326,1,22.2,0,0,1,0,1.386294,0,0,0,0,0,0,0,22.2,8.500862,1.386294,3.840911,1
-11,3,0,1,2,325118,0,4918.006,2.629021,0,13,1,529.0492,14.04682,0,0,0,543.096,0,0,0,22,0,5,83.39137,9.967326,1,22.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,22.2,8.500862,1.609438,6.297286,1
-11,3,0,1,3,325118,0,4918.006,3.629021,0,13,1,403.9069,2.3705,0,0,0,406.2774,0,0,0,34,0,3,83.39137,9.967326,1,22.2,0,0,1,0,1.098612,0,0,0,0,0,0,0,22.2,8.500862,1.098612,6.007036,1
-11,3,0,1,1,325119,0,4918.006,22.39836,0,7,1,23.40094,0,0,0,0,23.40094,0,0,0,2,0,4,80.9,10.3,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.500862,1.386294,3.152776,1
-11,3,0,1,2,325119,0,4918.006,23.39836,0,7,1,209.0779,2.723364,0,0,0,211.8012,0,0,0,4,0,5,80.9,10.3,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,8.500862,1.609438,5.355649,1
-11,3,0,1,3,325119,0,4918.006,24.39836,0,7,1,36.96225,3.424056,0,0,0,40.3863,0,0,0,3,0,3,80.9,10.3,0,85.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.2,8.500862,1.098612,3.698491,1
-19,3,25,0,1,325120,0,5519.062,60.92813,0,11,1,54.08216,92.5377,32.24129,0,820.39,999.2512,1,0,0,5,1,2,79.8,13.8,1,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,61.4,8.616144,.6931472,6.907006,1
-19,3,25,0,2,325120,0,5519.062,61.92813,0,11,1,44.43383,58.02676,0,0,0,102.4606,0,0,0,5,0,2,79.8,13.8,1,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,61.4,8.616144,.6931472,4.629478,1
-19,3,25,0,3,325120,0,5519.062,62.92813,0,11,1,54.8727,82.85777,0,0,0,137.7305,0,0,0,4,0,2,79.8,13.8,1,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,61.4,8.616144,.6931472,4.925299,1
-19,3,25,0,1,325121,0,5519.062,59.00616,1,8,1,10.92044,0,37.96152,0,0,48.88195,0,0,0,0,1,2,83,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.616144,.6931472,3.889408,1
-19,3,25,0,2,325121,0,5519.062,60.00616,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,83,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.616144,.6931472,,0
-19,3,25,0,3,325121,0,5519.062,61.00616,1,8,1,32.79192,0,0,0,0,32.79192,0,0,0,1,0,2,83,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.616144,.6931472,3.490182,1
-11,3,0,1,1,325177,0,14874.49,17.577,1,13,1,13.66397,0,0,0,0,13.66397,0,0,0,2,0,6,76.6,3.4,0,77.3,0,580.8,1,1,1.791759,6.364407,0,0,0,0,0,0,77.3,9.60747,1.791759,2.614762,1
-11,3,0,1,2,325177,0,14874.49,18.577,1,13,1,185.0816,6.783217,6.993007,0,0,198.8578,0,0,0,1,6,6,76.6,3.4,0,77.3,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,77.3,9.60747,1.791759,5.29259,1
-11,3,0,1,3,325177,0,14874.49,19.577,1,13,1,77.68277,7.28944,0,0,240.4062,325.3784,1,0,0,3,0,6,76.6,3.4,0,77.3,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,77.3,9.60747,1.791759,5.784989,1
-11,3,0,1,4,325177,0,14874.49,20.577,1,13,1,28.82398,0,0,0,0,28.82398,0,0,0,1,0,6,76.6,3.4,0,77.3,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,77.3,9.60747,1.791759,3.361208,1
-11,3,0,1,5,325177,0,14874.49,21.577,1,13,1,17.56235,6.28732,0,0,0,23.84967,0,0,0,2,0,6,76.6,3.4,0,77.3,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,77.3,9.60747,1.791759,3.17177,1
-11,3,0,1,1,325178,0,14874.49,40.6872,0,13,1,105.1619,0,12.29757,0,0,117.4595,0,0,0,5,0,6,90.4,6.9,0,80.7,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,80.7,9.60747,1.791759,4.766094,1
-11,3,0,1,2,325178,0,14874.49,41.6872,0,13,1,86.24709,0,0,0,0,86.24709,0,0,0,2,7,6,90.4,6.9,0,80.7,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,80.7,9.60747,1.791759,4.457216,1
-11,3,0,1,3,325178,0,14874.49,42.6872,0,13,1,317.6571,3.142369,0,0,0,320.7995,0,0,0,2,4,6,90.4,6.9,0,80.7,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,80.7,9.60747,1.791759,5.770816,1
-11,3,0,1,4,325178,0,14874.49,43.6872,0,13,1,15.37279,1.691007,0,0,0,17.0638,0,0,0,0,0,6,90.4,6.9,0,80.7,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,80.7,9.60747,1.791759,2.836959,1
-11,3,0,1,5,325178,0,14874.49,44.6872,0,13,1,39.58553,4.109589,0,0,0,43.69512,0,0,0,2,1,6,90.4,6.9,0,80.7,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,80.7,9.60747,1.791759,3.777236,1
-11,3,0,1,1,325179,0,14874.49,15.14579,0,13,1,29.8583,0,0,0,0,29.8583,0,0,0,2,0,6,83.5,0,0,81.8,0,580.8,1,0,1.791759,6.364407,0,0,0,1,0,0,81.8,9.60747,1.791759,3.396463,1
-11,3,0,1,2,325179,0,14874.49,16.14579,0,13,1,33.10023,0,0,0,0,33.10023,0,0,0,0,0,6,83.5,0,0,81.8,0,580.8,1,0,1.791759,6.364407,0,0,0,1,0,0,81.8,9.60747,1.791759,3.49954,1
-11,3,0,1,3,325179,0,14874.49,17.14579,0,13,1,15.39119,1.154339,0,0,0,16.54553,0,0,0,3,0,6,83.5,0,0,81.8,0,580.8,1,0,1.791759,6.364407,0,0,0,1,0,0,81.8,9.60747,1.791759,2.806116,1
-11,3,0,1,4,325179,0,14874.49,18.14579,0,13,1,7.686395,0,23.82783,0,0,31.51422,0,0,0,1,0,6,83.5,0,0,81.8,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,81.8,9.60747,1.791759,3.450439,1
-11,3,0,1,5,325179,0,14874.49,19.14579,0,13,1,209.1359,4.741834,0,0,2571.408,2785.286,1,0,0,9,6,6,83.5,0,0,81.8,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,81.8,9.60747,1.791759,7.932106,1
-11,3,0,1,1,325180,0,14874.49,39.75633,1,13,1,22.9251,0,0,0,0,22.9251,0,0,0,1,0,6,79.8,6.9,0,79.5,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,79.5,9.60747,1.791759,3.132232,1
-11,3,0,1,2,325180,0,14874.49,40.75633,1,13,1,72.26107,3.379953,0,0,0,75.64103,0,0,0,2,0,6,79.8,6.9,0,79.5,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,79.5,9.60747,1.791759,4.325999,1
-11,3,0,1,3,325180,0,14874.49,41.75633,1,13,1,513.8606,0,0,0,0,513.8606,0,0,0,9,0,6,79.8,6.9,0,79.5,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,79.5,9.60747,1.791759,6.241952,1
-11,3,0,1,4,325180,0,14874.49,42.75633,1,13,1,26.09531,2.075327,27.67102,0,0,55.84166,0,0,0,3,0,6,79.8,6.9,0,79.5,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,79.5,9.60747,1.791759,4.02252,1
-11,3,0,1,5,325180,0,14874.49,43.75633,1,13,1,109.308,1.545486,0,0,0,110.8535,0,0,0,8,0,6,79.8,6.9,0,79.5,0,580.8,0,0,1.791759,6.364407,0,0,0,1,0,0,79.5,9.60747,1.791759,4.70821,1
-15,3,95,0,1,325234,0,1703.226,26.45311,1,9,1,815.7237,10.06579,3.415992,0,0,829.2054,0,0,0,11,0,2,64.4,0,0,96.6,0,0,0,0,.6931472,0,0,4.564348,0,1,0,0,96.6,7.440866,.6931472,6.720468,1
-15,3,95,0,2,325234,0,1703.226,27.45311,1,9,1,418.1911,31.9627,0,0,0,450.1538,0,0,0,6,1,2,64.4,0,0,96.6,0,0,0,0,.6931472,0,0,4.564348,0,1,0,0,96.6,7.440866,.6931472,6.10959,1
-15,3,95,0,3,325234,0,1703.226,28.45311,1,9,1,91.32108,5.173151,4.232578,0,0,100.7268,0,0,0,2,0,2,64.4,0,0,96.6,0,0,0,0,.6931472,0,0,4.564348,0,1,0,0,96.6,7.440866,.6931472,4.612412,1
-13,3,0,1,1,325249,0,6451.026,51.49076,1,12,1,21.71087,39.31357,0,0,0,61.02444,0,0,0,1,1,1,76.6,13.8,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,80.7,8.772149,0,4.111274,1
-13,3,0,1,2,325249,0,6451.026,52.49076,1,12,1,32.96703,36.88485,31.53368,0,0,101.3856,0,0,0,3,1,1,76.6,13.8,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,80.7,8.772149,0,4.618931,1
-13,3,0,1,3,325249,0,6451.026,53.49076,1,12,1,20.50044,39.99122,0,0,0,60.49166,0,0,0,2,0,1,76.6,13.8,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,80.7,8.772149,0,4.102506,1
-16,3,95,1,1,325285,0,10750.15,17.23477,0,10,1,28.85111,0,0,0,0,28.85111,0,0,0,2,0,3,67.6,0,0,78.4,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,3.362149,1
-16,3,95,1,2,325285,0,10750.15,18.23477,0,10,1,25.75758,0,0,0,0,25.75758,0,0,0,1,0,3,67.6,0,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,3.248729,1
-16,3,95,1,3,325285,0,10750.15,19.23477,0,10,1,3.467707,0,0,0,0,3.467707,0,0,0,1,0,3,67.6,0,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,1.243494,1
-16,3,95,1,1,325286,0,10750.15,49.27036,0,12,1,1264.379,107.5374,0,0,0,1371.917,0,0,0,52,0,3,67,13.8,0,63.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,63.6,9.282767,1.098612,7.223964,1
-16,3,95,1,2,325286,0,10750.15,50.27036,0,12,1,633.357,68.71212,18.93939,0,0,721.0085,0,0,0,18,1,3,67,13.8,0,63.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,63.6,9.282767,1.098612,6.580651,1
-16,3,95,1,3,325286,0,10750.15,51.27036,0,12,1,367.3602,0,0,0,0,367.3602,0,0,0,2,0,3,67,13.8,0,63.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,63.6,9.282767,1.098612,5.906343,1
-16,3,95,1,1,325287,0,10750.15,43.75359,1,10,1,12.87996,0,0,0,0,12.87996,0,0,0,2,0,3,73.4,10.3,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,2.555673,1
-16,3,95,1,2,325287,0,10750.15,44.75359,1,10,1,105.1136,0,21.30682,0,606.4631,732.8835,1,0,0,3,1,3,73.4,10.3,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,6.596987,1
-16,3,95,1,3,325287,0,10750.15,45.75359,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,10.3,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.282767,1.098612,,0
-11,3,0,0,1,325288,0,4713.196,32.7666,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.7,24.1,0,69.3,0,763.2,0,0,1.94591,6.63752,0,0,0,0,0,0,69.3,8.458334,1.94591,,0
-11,3,0,0,2,325288,0,4713.196,33.7666,1,12,1,52.03938,0,0,0,0,52.03938,0,0,0,1,2,7,77.7,24.1,0,69.3,0,763.2,0,0,1.94591,6.63752,0,0,0,0,0,0,69.3,8.458334,1.94591,3.952001,1
-11,3,0,0,3,325288,0,4713.196,34.7666,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.7,24.1,0,69.3,0,763.2,0,0,1.94591,6.63752,0,0,0,0,0,0,69.3,8.458334,1.94591,,0
-11,3,0,0,4,325288,0,4713.196,35.7666,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.7,24.1,0,69.3,0,763.2,0,0,1.94591,6.63752,0,0,0,0,0,0,69.3,8.458334,1.94591,,0
-11,3,0,0,5,325288,0,4713.196,36.7666,1,12,1,25.56617,7.342534,0,0,0,32.90871,0,0,0,2,0,7,77.7,24.1,0,69.3,0,763.2,0,0,1.94591,6.63752,0,0,0,0,0,0,69.3,8.458334,1.94591,3.493737,1
-11,3,0,0,1,325289,0,4713.196,12.91444,0,12,1,12.25741,0,0,0,0,12.25741,0,0,0,2,0,7,85,9.967326,1,81.5,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,81.5,8.458334,1.94591,2.50613,1
-11,3,0,0,2,325289,0,4713.196,13.91444,0,12,1,5.157056,0,0,0,0,5.157056,0,0,0,1,0,7,85,9.967326,1,81.5,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,81.5,8.458334,1.94591,1.640366,1
-11,3,0,0,3,325289,0,4713.196,14.91444,0,12,1,112.4678,0,0,0,0,112.4678,0,0,0,4,0,7,85,9.967326,1,81.5,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,81.5,8.458334,1.94591,4.722667,1
-11,3,0,0,4,325289,0,4713.196,15.91444,0,12,1,114.7732,0,0,0,0,114.7732,0,0,0,8,0,7,85,9.967326,1,81.5,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,81.5,8.458334,1.94591,4.742958,1
-11,3,0,0,5,325289,0,4713.196,16.91444,0,12,1,19.10828,6.620665,0,0,0,25.72894,0,0,0,3,0,7,85,9.967326,1,81.5,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,81.5,8.458334,1.94591,3.247617,1
-11,3,0,0,1,325290,0,4713.196,34.8282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.7,10.3,0,70.5,0,763.2,0,0,1.94591,6.63752,0,0,0,1,0,0,70.5,8.458334,1.94591,,0
-11,3,0,0,2,325290,0,4713.196,35.8282,0,12,1,16.12752,4.664792,0,0,0,20.79231,0,0,0,1,0,7,78.7,10.3,0,70.5,0,763.2,0,0,1.94591,6.63752,0,0,0,1,0,0,70.5,8.458334,1.94591,3.034583,1
-11,3,0,0,3,325290,0,4713.196,36.8282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.7,10.3,0,70.5,0,763.2,0,0,1.94591,6.63752,0,0,0,1,0,0,70.5,8.458334,1.94591,,0
-11,3,0,0,4,325290,0,4713.196,37.8282,0,12,1,0,19.23226,0,0,0,19.23226,0,0,0,0,0,7,78.7,10.3,0,70.5,0,763.2,0,0,1.94591,6.63752,0,0,0,1,0,0,70.5,8.458334,1.94591,2.956589,1
-11,3,0,0,5,325290,0,4713.196,38.8282,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.7,10.3,0,70.5,0,763.2,0,0,1.94591,6.63752,0,0,0,1,0,0,70.5,8.458334,1.94591,,0
-11,3,0,0,1,325291,0,4713.196,9.292266,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,83.3,9.967326,0,85.2,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,85.2,8.458334,1.94591,,0
-11,3,0,0,2,325291,0,4713.196,10.29227,0,12,1,5.157056,0,0,0,0,5.157056,0,0,0,1,0,7,83.3,9.967326,0,85.2,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,85.2,8.458334,1.94591,1.640366,1
-11,3,0,0,3,325291,0,4713.196,11.29227,0,12,1,21.79708,11.80138,0,0,330.9716,364.5701,1,0,0,2,0,7,83.3,9.967326,0,85.2,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,85.2,8.458334,1.94591,5.898719,1
-11,3,0,0,4,325291,0,4713.196,12.29227,0,12,1,0,6.746801,0,0,0,6.746801,0,0,0,0,0,7,83.3,9.967326,0,85.2,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,85.2,8.458334,1.94591,1.909068,1
-11,3,0,0,5,325291,0,4713.196,13.29227,0,12,1,0,7.430998,0,0,0,7.430998,0,0,0,0,0,7,83.3,9.967326,0,85.2,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,85.2,8.458334,1.94591,2.00566,1
-11,3,0,0,1,325292,0,4713.196,7.104723,0,12,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,7,91.7,9.967326,0,96.3,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,96.3,8.458334,1.94591,1.812983,1
-11,3,0,0,2,325292,0,4713.196,8.104723,0,12,1,5.157056,0,0,0,0,5.157056,0,0,0,1,0,7,91.7,9.967326,0,96.3,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,96.3,8.458334,1.94591,1.640366,1
-11,3,0,0,3,325292,0,4713.196,9.104723,0,12,1,0,2.042132,0,0,0,2.042132,0,0,0,0,0,7,91.7,9.967326,0,96.3,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,96.3,8.458334,1.94591,.7139946,1
-11,3,0,0,4,325292,0,4713.196,10.10472,0,12,1,5.816208,0,0,0,0,5.816208,0,0,0,1,0,7,91.7,9.967326,0,96.3,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,96.3,8.458334,1.94591,1.760648,1
-11,3,0,0,5,325292,0,4713.196,11.10472,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,9.967326,0,96.3,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,96.3,8.458334,1.94591,,0
-11,3,0,0,1,325293,0,4713.196,11.96715,0,12,1,47.26762,0,0,0,0,47.26762,0,0,0,3,0,7,86.7,9.967326,0,88.9,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,88.9,8.458334,1.94591,3.855825,1
-11,3,0,0,2,325293,0,4713.196,12.96715,0,12,1,5.157056,0,0,0,0,5.157056,0,0,0,1,0,7,86.7,9.967326,0,88.9,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,88.9,8.458334,1.94591,1.640366,1
-11,3,0,0,3,325293,0,4713.196,13.96715,0,12,1,141.0146,6.620808,0,0,0,147.6354,0,0,0,3,0,7,86.7,9.967326,0,88.9,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,88.9,8.458334,1.94591,4.994746,1
-11,3,0,0,4,325293,0,4713.196,14.96715,0,12,1,5.816208,0,0,0,0,5.816208,0,0,0,1,0,7,86.7,9.967326,0,88.9,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,88.9,8.458334,1.94591,1.760648,1
-11,3,0,0,5,325293,0,4713.196,15.96715,0,12,1,61.21727,0,0,0,0,61.21727,0,0,0,3,0,7,86.7,9.967326,0,88.9,0,763.2,1,0,1.94591,6.63752,0,0,0,0,0,0,88.9,8.458334,1.94591,4.114429,1
-11,3,0,0,1,325294,0,4713.196,2.956879,1,12,1,12.25741,8.19714,0,0,0,20.45455,0,0,0,2,0,7,83.39137,9.967326,0,100,0,763.2,1,1,1.94591,6.63752,0,0,0,0,0,0,100,8.458334,1.94591,3.018205,1
-11,3,0,0,2,325294,0,4713.196,3.956879,1,12,1,51.10173,6.071261,0,0,0,57.173,0,0,0,3,0,7,83.39137,9.967326,0,100,0,763.2,1,1,1.94591,6.63752,0,0,0,0,0,0,100,8.458334,1.94591,4.046082,1
-11,3,0,0,3,325294,0,4713.196,4.956879,1,12,1,0,1.827171,0,0,0,1.827171,0,0,0,0,0,7,83.39137,9.967326,0,100,0,763.2,1,1,1.94591,6.63752,0,0,0,0,0,0,100,8.458334,1.94591,.6027689,1
-11,3,0,0,4,325294,0,4713.196,5.956879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,83.39137,9.967326,0,100,0,763.2,1,1,1.94591,6.63752,0,0,0,0,0,0,100,8.458334,1.94591,,0
-11,3,0,0,5,325294,0,4713.196,6.956879,1,12,1,7.077141,1.751592,0,0,0,8.828733,0,0,0,2,0,7,83.39137,9.967326,0,100,0,763.2,1,1,1.94591,6.63752,0,0,0,0,0,0,100,8.458334,1.94591,2.178012,1
-10,3,50,1,1,325320,0,6108.082,1.448323,0,12,1,44.77379,9.417577,0,0,0,54.19137,0,0,0,4,0,3,83.39137,9.967326,0,96.3,1000,520,1,0,1.098612,6.253829,0,3.931826,7.600903,0,0,0,96.3,8.717532,1.098612,3.992522,1
-10,3,50,1,2,325320,0,6108.082,2.448323,0,12,1,37.41042,.9460105,0,0,0,38.35643,0,0,0,3,0,4,83.39137,9.967326,0,96.3,1000,520,1,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,96.3,8.717532,1.386294,3.646922,1
-10,3,50,1,3,325320,0,6108.082,3.448323,0,12,1,15.36436,0,0,0,0,15.36436,0,0,0,1,1,4,83.39137,9.967326,0,96.3,1000,520,1,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,96.3,8.717532,1.386294,2.73205,1
-10,3,50,1,1,325321,0,6108.082,28.44627,0,15,1,52.65211,3.74935,0,0,0,56.40145,0,0,0,2,0,3,79.3,3.4,0,73.9,1000,520,0,0,1.098612,6.253829,0,3.931826,7.600903,0,0,0,73.9,8.717532,1.098612,4.032495,1
-10,3,50,1,2,325321,0,6108.082,29.44627,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,3.4,0,73.9,1000,520,0,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,73.9,8.717532,1.386294,,0
-10,3,50,1,3,325321,0,6108.082,30.44627,0,15,1,0,4.012291,0,0,0,4.012291,0,0,0,0,0,4,79.3,3.4,0,73.9,1000,520,0,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,73.9,8.717532,1.386294,1.389362,1
-10,3,50,1,1,325322,0,6108.082,26.17659,1,12,1,2.75611,0,0,0,532.1893,534.9454,1,0,0,0,0,3,89.9,0,0,92,1000,520,0,0,1.098612,6.253829,0,3.931826,7.600903,0,0,0,92,8.717532,1.098612,6.282165,1
-10,3,50,1,2,325322,0,6108.082,27.17659,1,12,1,10.98901,13.76493,0,0,0,24.75394,0,0,0,1,0,4,89.9,0,0,92,1000,520,0,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,92,8.717532,1.386294,3.208985,1
-10,3,50,1,3,325322,0,6108.082,28.17659,1,12,1,130.9482,6.404741,0,0,0,137.3529,0,0,0,4,1,4,89.9,0,0,92,1000,520,0,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,92,8.717532,1.386294,4.922554,1
-11,3,0,1,1,325338,0,5849.267,27.73443,1,12,1,121.0716,11.72076,25.75992,0,0,158.5523,0,0,0,2,1,3,64.9,10.3,0,72.7,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,72.7,8.674243,1.098612,5.066084,1
-11,3,0,1,2,325338,0,5849.267,28.73443,1,12,1,97.91666,19.05777,13.73106,0,0,130.7055,0,0,0,5,1,3,64.9,10.3,0,72.7,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,72.7,8.674243,1.098612,4.872947,1
-11,3,0,1,3,325338,0,5849.267,29.73443,1,12,1,140.4421,27.2215,0,0,1250.884,1418.548,1,0,0,9,0,3,64.9,10.3,0,72.7,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,72.7,8.674243,1.098612,7.257389,1
-11,3,0,1,1,325339,0,5849.267,2.735113,1,12,1,104.8429,14.60587,0,0,0,119.4487,0,0,0,7,1,3,83.39137,9.967326,0,66.7,0,449.04,1,1,1.098612,6.107112,0,0,0,1,0,0,66.7,8.674243,1.098612,4.782887,1
-11,3,0,1,2,325339,0,5849.267,3.735113,1,12,1,49.24242,20.24148,0,0,0,69.4839,0,0,0,3,0,3,83.39137,9.967326,0,66.7,0,449.04,1,1,1.098612,6.107112,0,0,0,1,0,0,66.7,8.674243,1.098612,4.241095,1
-11,3,0,1,3,325339,0,5849.267,4.735113,1,12,1,25.57434,9.189424,0,0,0,34.76376,0,0,0,4,0,3,83.39137,9.967326,0,66.7,0,449.04,1,1,1.098612,6.107112,0,0,0,1,0,0,66.7,8.674243,1.098612,3.548576,1
-11,3,0,1,1,325340,0,5849.267,27.00616,0,12,1,87.58372,0,29.10871,0,0,116.6924,0,0,0,1,1,3,77.1,6.9,0,67,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,67,8.674243,1.098612,4.759542,1
-11,3,0,1,2,325340,0,5849.267,28.00616,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,6.9,0,67,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,67,8.674243,1.098612,,0
-11,3,0,1,3,325340,0,5849.267,29.00616,0,12,1,26.0078,.9752926,27.52492,0,0,54.50802,0,0,0,1,1,3,77.1,6.9,0,67,0,449.04,0,0,1.098612,6.107112,0,0,0,1,0,0,67,8.674243,1.098612,3.998348,1
-13,3,0,1,1,325366,0,6782.991,4.95551,0,12,1,16.48635,1.416795,0,0,0,17.90314,0,0,0,2,0,4,83.39137,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.822321,1.386294,2.884976,1
-13,3,0,1,2,325366,0,6782.991,5.95551,0,12,1,7.102273,0,0,0,0,7.102273,0,0,0,1,0,4,83.39137,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.822321,1.386294,1.960415,1
-13,3,0,1,3,325366,0,6782.991,6.95551,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.822321,1.386294,,0
-13,3,0,1,1,325367,0,6782.991,6.841889,1,12,1,28.23287,0,0,0,0,28.23287,0,0,0,0,0,4,81.7,9.967326,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.822321,1.386294,3.340487,1
-13,3,0,1,2,325367,0,6782.991,7.841889,1,12,1,6.155303,1.529356,0,0,0,7.684659,0,0,0,1,0,4,81.7,9.967326,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.822321,1.386294,2.039226,1
-13,3,0,1,3,325367,0,6782.991,8.841889,1,12,1,37.71132,0,0,0,0,37.71132,0,0,0,0,0,4,81.7,9.967326,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.822321,1.386294,3.62996,1
-13,3,0,1,1,325368,0,6782.991,30.423,1,12,1,10.30397,0,0,0,0,10.30397,0,0,0,2,0,4,59,20.7,0,53.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,53.4,8.822321,1.386294,2.332529,1
-13,3,0,1,2,325368,0,6782.991,31.423,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,59,20.7,0,53.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,53.4,8.822321,1.386294,,0
-13,3,0,1,3,325368,0,6782.991,32.423,1,12,1,46.81404,0,0,0,0,46.81404,0,0,0,3,0,4,59,20.7,0,53.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,53.4,8.822321,1.386294,3.846183,1
-13,3,0,1,1,325369,0,6782.991,29.10335,0,12,1,44.14219,4.574961,0,0,0,48.71716,0,0,0,3,0,4,51.6,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.822321,1.386294,3.886031,1
-13,3,0,1,2,325369,0,6782.991,30.10335,0,12,1,50.18939,0,0,0,0,50.18939,0,0,0,2,0,4,51.6,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.822321,1.386294,3.915804,1
-13,3,0,1,3,325369,0,6782.991,31.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,51.6,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.822321,1.386294,,0
-5,3,25,0,1,325393,0,14302.64,37.12252,0,9,1,13.91036,1.442555,0,0,0,15.35291,0,0,0,2,0,6,81.9,6.9,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,2.731305,1
-5,3,25,0,2,325393,0,14302.64,38.12252,0,9,1,0,2.225379,0,0,0,2.225379,0,0,0,0,0,6,81.9,6.9,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,.7999271,1
-5,3,25,0,3,325393,0,14302.64,39.12252,0,9,1,431.7902,4.291287,0,0,0,436.0815,0,0,0,1,0,6,81.9,6.9,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,6.077829,1
-5,3,25,0,1,325394,0,14302.64,15.41958,1,12,1,10.30397,0,0,0,0,10.30397,0,0,0,1,0,6,64.9,6.9,0,85.2,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,2.332529,1
-5,3,25,0,2,325394,0,14302.64,16.41957,1,12,1,7.102273,1.609848,0,0,0,8.712121,0,0,0,1,0,6,64.9,6.9,0,85.2,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,2.164715,1
-5,3,25,0,3,325394,0,14302.64,17.41957,1,12,1,6.501951,2.340702,0,0,0,8.842652,0,0,0,1,0,6,64.9,6.9,0,85.2,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,2.179587,1
-5,3,25,0,1,325395,0,14302.64,35.85763,1,12,1,23.18393,2.472952,28.85111,0,0,54.50798,0,0,0,3,0,6,71.8,10.3,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,3.998347,1
-5,3,25,0,2,325395,0,14302.64,36.85763,1,12,1,51.01799,2.272727,13.25758,0,0,66.54829,0,0,0,4,0,6,71.8,10.3,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,4.197928,1
-5,3,25,0,3,325395,0,14302.64,37.85763,1,12,1,65.6697,15.69137,33.15995,0,0,114.521,0,0,0,4,0,6,71.8,10.3,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.56827,1.791759,4.740758,1
-5,3,25,0,1,325396,0,14302.64,6.069815,0,12,1,48.42865,1.081917,0,0,0,49.51056,0,0,0,3,0,6,96.7,9.967326,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.56827,1.791759,3.902186,1
-5,3,25,0,2,325396,0,14302.64,7.069815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,96.7,9.967326,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.56827,1.791759,,0
-5,3,25,0,3,325396,0,14302.64,8.069816,0,12,1,7.802341,4.421326,0,0,0,12.22367,0,0,0,1,0,6,96.7,9.967326,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.56827,1.791759,2.503374,1
-5,3,25,0,1,325397,0,14302.64,4.73922,0,12,1,11.84956,6.697578,0,0,0,18.54714,0,0,0,2,0,6,83.39137,9.967326,0,85.2,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,2.920316,1
-5,3,25,0,2,325397,0,14302.64,5.73922,0,12,1,171.1884,0,7.575758,0,0,178.7642,0,0,0,3,1,6,83.39137,9.967326,0,85.2,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,5.186068,1
-5,3,25,0,3,325397,0,14302.64,6.73922,0,12,1,7.802341,0,0,0,0,7.802341,0,0,0,1,0,6,83.39137,9.967326,0,85.2,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.56827,1.791759,2.054424,1
-5,3,25,0,1,325398,0,14302.64,12.62149,0,12,1,23.10149,4.430706,28.33591,0,0,55.86811,0,0,0,2,0,6,81.7,9.967326,0,63,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,9.56827,1.791759,4.022994,1
-5,3,25,0,2,325398,0,14302.64,13.62149,0,12,1,9.469697,0,27.46212,0,0,36.93182,0,0,0,1,0,6,81.7,9.967326,0,63,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,9.56827,1.791759,3.609073,1
-5,3,25,0,3,325398,0,14302.64,14.62149,0,12,1,7.802341,0,0,0,0,7.802341,0,0,0,1,0,6,81.7,9.967326,0,63,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,9.56827,1.791759,2.054424,1
-10,3,50,1,1,325409,0,7415.836,55.00068,0,12,1,20.28081,0,0,0,0,20.28081,0,0,0,1,0,2,87.8,3.4,0,90.9,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,90.9,8.911508,.6931472,3.009675,1
-10,3,50,1,2,325409,0,7415.836,56.00068,0,12,1,42.23602,0,0,0,0,42.23602,0,0,0,3,0,2,87.8,3.4,0,90.9,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,90.9,8.911508,.6931472,3.743273,1
-10,3,50,1,3,325409,0,7415.836,57.00068,0,12,1,29.85075,0,29.41176,0,0,59.26251,0,0,0,1,1,2,87.8,3.4,0,90.9,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,90.9,8.911508,.6931472,4.081977,1
-10,3,50,1,1,325410,0,7415.836,50.88296,1,9,1,42.12169,0,0,0,0,42.12169,0,0,0,4,0,2,52.1,31,0,63.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.911508,.6931472,3.740563,1
-10,3,50,1,2,325410,0,7415.836,51.88296,1,9,1,78.35642,0,36.31152,0,0,114.6679,0,0,0,6,1,2,52.1,31,0,63.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.911508,.6931472,4.742041,1
-10,3,50,1,3,325410,0,7415.836,52.88296,1,9,1,59.70149,0,0,0,0,59.70149,0,0,0,5,0,2,52.1,31,0,63.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.911508,.6931472,4.089357,1
-14,3,95,0,1,325411,0,1652.199,60.13142,1,6,1,51.00464,8.114374,31.9423,0,0,91.06131,0,0,0,5,1,1,85.1,13.8,0,78.4,136.85,136.85,0,0,0,4.918885,0,4.564348,4.970179,1,0,0,78.4,7.410468,0,4.511533,1
-14,3,95,0,2,325411,0,1652.199,61.13142,1,6,1,33.61742,11.31629,0,0,0,44.93371,0,0,0,4,0,1,85.1,13.8,0,78.4,136.85,136.85,0,0,0,4.918885,0,4.564348,4.970179,1,0,0,78.4,7.410468,0,3.805188,1
-14,3,95,0,3,325411,0,1652.199,62.13142,1,6,1,26.44127,2.275683,0,0,0,28.71695,0,0,0,2,0,1,85.1,13.8,0,78.4,136.85,136.85,0,0,0,4.918885,0,4.564348,4.970179,1,0,0,78.4,7.410468,0,3.357487,1
-16,3,95,1,1,325415,0,9304.985,33.94661,0,18,1,31.4271,0,0,0,0,31.4271,0,0,0,1,1,4,69.1,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.138413,1.386294,3.44767,1
-16,3,95,1,2,325415,0,9304.985,34.94661,0,18,1,8.522727,0,0,0,0,8.522727,0,0,0,1,0,4,69.1,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.138413,1.386294,2.142736,1
-16,3,95,1,3,325415,0,9304.985,35.94661,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,69.1,13.8,0,56.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.138413,1.386294,,0
-16,3,95,1,1,325416,0,9304.985,7.74538,0,16,1,6.18238,10.38125,0,0,0,16.56363,0,0,0,1,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.138413,1.386294,2.807209,1
-16,3,95,1,2,325416,0,9304.985,8.745379,0,16,1,5.681818,13.35227,0,0,0,19.03409,0,0,0,1,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.138413,1.386294,2.946232,1
-16,3,95,1,3,325416,0,9304.985,9.745379,0,16,1,0,1.946251,0,0,0,1.946251,0,0,0,0,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.138413,1.386294,.6659048,1
-16,3,95,1,1,325417,0,9304.985,9.314168,0,16,1,0,4.070067,0,0,0,4.070067,0,0,0,0,0,4,85,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.138413,1.386294,1.403659,1
-16,3,95,1,2,325417,0,9304.985,10.31417,0,16,1,26.04167,2.34375,1.515152,0,0,29.90057,0,0,0,1,0,4,85,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.138413,1.386294,3.397877,1
-16,3,95,1,3,325417,0,9304.985,11.31417,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.138413,1.386294,,0
-16,3,95,1,1,325418,0,9304.985,33.02943,1,16,1,125.1932,0,0,0,0,125.1932,0,0,0,6,0,4,73.4,13.8,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.138413,1.386294,4.829858,1
-16,3,95,1,2,325418,0,9304.985,34.02943,1,16,1,9.469697,0,0,0,0,9.469697,0,0,0,0,1,4,73.4,13.8,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.138413,1.386294,2.248097,1
-16,3,95,1,3,325418,0,9304.985,35.02943,1,16,1,9.536194,0,0,0,0,9.536194,0,0,0,1,0,4,73.4,13.8,0,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.138413,1.386294,2.255095,1
-11,3,0,1,1,325446,0,10994.72,27.34565,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,68.6,6.9,0,62.5,0,125.58,0,0,.6931472,4.832943,0,0,0,0,0,0,62.5,9.305262,.6931472,,0
-11,3,0,1,2,325446,0,10994.72,28.34565,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,68.6,6.9,0,62.5,0,125.58,0,0,.6931472,4.832943,0,0,0,0,0,0,62.5,9.305262,.6931472,,0
-11,3,0,1,3,325446,0,10994.72,29.34565,0,16,1,53.31599,0,28.17512,0,0,81.49111,0,0,0,1,1,3,68.6,6.9,0,62.5,0,125.58,0,0,1.098612,4.832943,0,0,0,0,0,0,62.5,9.305262,1.098612,4.400494,1
-11,3,0,1,1,325447,0,10994.72,23.24435,1,16,1,100.9789,16.43483,0,0,0,117.4137,0,0,0,7,0,2,80.3,10.3,0,70.5,0,125.58,0,0,.6931472,4.832943,0,0,0,0,0,0,70.5,9.305262,.6931472,4.765704,1
-11,3,0,1,2,325447,0,10994.72,24.24435,1,16,1,10.65341,0,0,0,814.7727,825.4261,1,0,0,1,0,2,80.3,10.3,0,70.5,0,125.58,0,0,.6931472,4.832943,0,0,0,0,0,0,70.5,9.305262,.6931472,6.7159,1
-11,3,0,1,3,325447,0,10994.72,25.24435,1,16,1,58.62592,0,0,0,0,58.62592,0,0,0,4,1,3,80.3,10.3,0,70.5,0,125.58,0,0,1.098612,4.832943,0,0,0,0,0,0,70.5,9.305262,1.098612,4.071177,1
-11,3,0,1,1,325452,0,2639.296,49.295,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,6.9,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,7.878646,1.609438,,0
-11,3,0,1,2,325452,0,2639.296,50.295,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,6.9,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,7.878646,1.386294,,0
-11,3,0,1,3,325452,0,2639.296,51.295,0,12,1,10.2608,0,32.49252,0,0,42.75331,0,0,0,0,1,4,79.8,6.9,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,7.878646,1.386294,3.755447,1
-11,3,0,1,1,325453,0,2639.296,16.54757,0,12,1,46.10324,0,23.27935,0,0,69.38259,0,0,0,2,2,5,92,31,0,84.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,84.1,7.878646,1.609438,4.239636,1
-11,3,0,1,2,325453,0,2639.296,17.54757,0,12,1,26.57343,1.300699,0,0,0,27.87413,0,0,0,1,0,4,92,31,0,84.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,84.1,7.878646,1.386294,3.327699,1
-11,3,0,1,3,325453,0,2639.296,18.54757,0,12,1,75.75887,0,23.51432,0,0,99.27319,0,0,0,2,1,4,92,31,0,84.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,84.1,7.878646,1.386294,4.597876,1
-11,3,0,1,1,325454,0,2639.296,13.16085,1,12,1,96.25506,1.012146,23.27935,0,0,120.5466,0,0,0,3,1,5,85,9.967326,0,70.4,0,0,1,1,1.609438,0,0,0,0,1,0,0,70.4,7.878646,1.609438,4.792036,1
-11,3,0,1,2,325454,0,2639.296,14.16085,1,12,1,115.1515,8.811189,5.268065,0,0,129.2308,0,0,0,7,0,4,85,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,7.878646,1.386294,4.8616,1
-11,3,0,1,3,325454,0,2639.296,15.16085,1,12,1,67.50748,15.90423,0,0,0,83.41171,0,0,0,2,0,4,85,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,7.878646,1.386294,4.423789,1
-11,3,0,1,1,325455,0,2639.296,45.4319,1,12,1,10.62753,0,39.47368,0,0,50.10122,0,0,0,0,1,5,81.4,6.9,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,1,0,85.2,7.878646,1.609438,3.914045,1
-11,3,0,1,2,325455,0,2639.296,46.4319,1,12,1,72.26107,0,0,0,0,72.26107,0,0,0,2,0,4,81.4,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,1,0,85.2,7.878646,1.386294,4.280285,1
-11,3,0,1,3,325455,0,2639.296,47.4319,1,12,1,69.6879,0,34.63018,0,0,104.3181,0,0,0,0,1,4,81.4,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,1,0,85.2,7.878646,1.386294,4.647445,1
-13,3,0,0,1,325456,0,2691.496,57.40452,1,6,1,24.4204,11.97836,0,0,0,36.39876,0,0,0,1,0,1,81.9,17.2,0,78.4,150,161.4,0,0,0,5.083886,1,4.564348,5.061929,1,0,0,78.4,7.898224,0,3.594535,1
-13,3,0,0,2,325456,0,2691.496,58.40452,1,6,1,37.4053,6.155303,0,0,0,43.56061,0,0,0,2,0,1,81.9,17.2,0,78.4,150,161.4,0,0,0,5.083886,1,4.564348,5.061929,1,0,0,78.4,7.898224,0,3.774153,1
-13,3,0,0,3,325456,0,2691.496,59.40452,1,6,1,0,0,0,0,0,0,0,0,0,0,0,1,81.9,17.2,0,78.4,150,161.4,0,0,0,5.083886,1,4.564348,5.061929,1,0,0,78.4,7.898224,0,,0
-11,3,0,1,1,325457,0,11930.97,17.50582,1,9,1,96.01634,31.84372,0,0,0,127.8601,0,0,0,11,0,7,44.1,13.8,0,56.8,0,46.68,1,1,1.94591,3.843316,0,0,0,0,0,0,56.8,9.386976,1.94591,4.850936,1
-11,3,0,1,2,325457,0,11930.97,18.50582,1,9,1,424.9883,100.872,20.62822,0,1213.113,1759.601,2,0,0,20,1,7,44.1,13.8,0,56.8,0,46.68,0,0,1.94591,3.843316,0,0,0,0,0,0,56.8,9.386976,1.94591,7.472843,1
-11,3,0,1,1,325458,0,11930.97,13.48392,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,50,9.967326,1,51.9,0,46.68,1,0,1.94591,3.843316,0,0,0,1,0,0,51.9,9.386976,1.94591,,0
-11,3,0,1,2,325458,0,11930.97,14.48392,0,9,1,172.9958,25.99625,0,0,1205.279,1404.271,1,0,0,4,6,7,50,9.967326,1,51.9,0,46.68,1,0,1.94591,3.843316,0,0,0,1,0,0,51.9,9.386976,1.94591,7.247273,1
-11,3,0,1,3,325458,0,11930.97,15.48392,0,9,1,115.0903,1.504729,0,0,343.0997,459.6948,1,0,0,5,0,6,50,9.967326,1,51.9,0,46.68,1,0,1.791759,3.843316,0,0,0,1,0,0,51.9,9.386976,1.791759,6.130563,1
-11,3,0,1,1,325459,0,11930.97,43.76455,1,9,1,85.29111,0,21.45046,0,0,106.7416,0,0,0,1,13,7,69.7,3.4,1,60.2,0,46.68,0,0,1.94591,3.843316,0,0,0,1,0,0,60.2,9.386976,1.94591,4.670411,1
-11,3,0,1,2,325459,0,11930.97,44.76455,1,9,1,96.34318,3.914674,0,0,0,100.2579,0,0,0,2,14,7,69.7,3.4,1,60.2,0,46.68,0,0,1.94591,3.843316,0,0,0,1,0,0,60.2,9.386976,1.94591,4.607745,1
-11,3,0,1,3,325459,0,11930.97,45.76455,1,9,1,134.9957,22.97936,0,0,0,157.9751,0,0,0,15,17,6,69.7,3.4,1,60.2,0,46.68,0,0,1.791759,3.843316,0,0,0,1,0,0,60.2,9.386976,1.791759,5.062437,1
-11,3,0,1,1,325460,0,11930.97,18.45859,0,11,1,29.11134,2.911134,43.41164,0,0,75.43412,0,0,0,1,2,7,89.9,3.4,0,78.4,0,46.68,0,0,1.94591,3.843316,0,0,0,0,0,0,78.4,9.386976,1.94591,4.32326,1
-11,3,0,1,2,325460,0,11930.97,19.45859,0,11,1,5.625879,4.866385,0,0,0,10.49226,0,0,0,1,0,7,89.9,3.4,0,78.4,0,46.68,0,0,1.94591,3.843316,0,0,0,0,0,0,78.4,9.386976,1.94591,2.350638,1
-11,3,0,1,3,325460,0,11930.97,20.45859,0,11,1,25.79536,45.34394,0,0,0,71.1393,0,0,0,3,0,6,89.9,3.4,0,78.4,0,46.68,0,0,1.791759,3.843316,0,0,0,0,0,0,78.4,9.386976,1.791759,4.26464,1
-11,3,0,1,1,325461,0,11930.97,51.83025,0,6,1,83.24821,0,0,0,0,83.24821,0,0,0,2,7,7,53.7,13.8,0,43.2,0,46.68,0,0,1.94591,3.843316,0,0,0,1,0,0,43.2,9.386976,1.94591,4.421827,1
-11,3,0,1,2,325461,0,11930.97,52.83025,0,6,1,0,0,0,0,0,0,0,0,0,0,0,7,53.7,13.8,0,43.2,0,46.68,0,0,1.94591,3.843316,0,0,0,1,0,0,43.2,9.386976,1.94591,,0
-11,3,0,1,3,325461,0,11930.97,53.83025,0,6,1,26.22528,5.717971,0,0,0,31.94325,0,0,0,1,0,6,53.7,13.8,0,43.2,0,46.68,0,0,1.791759,3.843316,0,0,0,1,0,0,43.2,9.386976,1.791759,3.463961,1
-11,3,0,1,1,325462,0,11930.97,14.76523,0,9,1,50.2809,0,0,0,0,50.2809,0,0,0,3,0,7,78.7,6.9,1,67,0,46.68,1,0,1.94591,3.843316,0,0,0,0,0,0,67,9.386976,1.94591,3.917625,1
-11,3,0,1,2,325462,0,11930.97,15.76523,0,9,1,56.72762,7.618378,0,0,842.5316,906.8776,1,0,0,5,1,7,78.7,6.9,1,67,0,46.68,1,0,1.94591,3.843316,0,0,0,0,0,0,67,9.386976,1.94591,6.810008,1
-11,3,0,1,3,325462,0,11930.97,16.76523,0,9,1,27.94497,39.40241,0,0,0,67.34737,0,0,0,4,0,6,78.7,6.9,1,67,0,46.68,1,0,1.791759,3.843316,0,0,0,0,0,0,67,9.386976,1.791759,4.209864,1
-11,3,0,1,1,325463,0,11930.97,7.08282,0,9,1,116.4454,15.83248,0,0,0,132.2778,0,0,0,4,0,7,91.7,9.967326,0,88.9,0,46.68,1,0,1.94591,3.843316,0,0,0,0,0,0,88.9,9.386976,1.94591,4.884904,1
-11,3,0,1,2,325463,0,11930.97,8.08282,0,9,1,89.73277,21.00328,0,0,0,110.7361,0,0,0,7,0,7,91.7,9.967326,0,88.9,0,46.68,1,0,1.94591,3.843316,0,0,0,0,0,0,88.9,9.386976,1.94591,4.70715,1
-11,3,0,1,3,325463,0,11930.97,9.08282,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,9.967326,0,88.9,0,46.68,1,0,1.791759,3.843316,0,0,0,0,0,0,88.9,9.386976,1.791759,,0
-11,3,0,1,1,325498,0,5513.196,21.8809,0,9,1,101.9408,0,28.08989,0,0,130.0306,0,0,0,6,0,3,98.9,0,0,86.4,0,78,0,0,1.098612,4.356709,0,0,0,1,0,0,86.4,8.615081,1.098612,4.86777,1
-11,3,0,1,2,325498,0,5513.196,22.8809,0,9,1,28.12939,0,14.0647,0,0,42.19409,0,0,0,2,0,3,98.9,0,0,86.4,0,78,0,0,1.098612,4.356709,0,0,0,1,0,0,86.4,8.615081,1.098612,3.74228,1
-11,3,0,1,3,325498,0,5513.196,23.8809,0,9,1,60.18917,0,23.64574,0,0,83.83491,0,0,0,3,0,3,98.9,0,0,86.4,0,78,0,0,1.098612,4.356709,0,0,0,1,0,0,86.4,8.615081,1.098612,4.42885,1
-10,3,50,0,1,325501,0,6217.595,26.47228,0,14,1,5.200208,0,0,0,0,5.200208,0,0,0,1,0,3,68.1,0,0,94,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,94,8.735299,1.098612,1.648699,1
-10,3,50,0,2,325501,0,6217.595,27.47228,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,0,0,94,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,94,8.735299,1.098612,,0
-10,3,50,0,3,325501,0,6217.595,28.47228,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,68.1,0,0,94,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,94,8.735299,1.386294,,0
-10,3,50,0,1,325502,0,6217.595,2.68857,1,12,1,69.68279,1.092044,0,0,0,70.77483,0,0,0,7,0,3,83.39137,9.967326,0,96.3,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.3,8.735299,1.098612,4.259503,1
-10,3,50,0,2,325502,0,6217.595,3.68857,1,12,1,7.644529,0,0,0,0,7.644529,0,0,0,1,0,3,83.39137,9.967326,0,96.3,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.3,8.735299,1.098612,2.03399,1
-10,3,50,0,3,325502,0,6217.595,4.68857,1,12,1,67.16418,0,22.82704,0,0,89.99122,0,0,0,7,0,4,83.39137,9.967326,0,96.3,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,96.3,8.735299,1.386294,4.499712,1
-10,3,50,0,1,325503,0,6217.595,26.15195,1,12,1,31.20125,6.541862,0,0,0,37.74311,0,0,0,3,0,3,43.2,10.3,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,8.735299,1.098612,3.630803,1
-10,3,50,0,2,325503,0,6217.595,27.15195,1,12,1,33.44482,0,0,0,533.4448,566.8896,1,0,0,1,0,3,43.2,10.3,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,8.735299,1.098612,6.340165,1
-10,3,50,0,3,325503,0,6217.595,28.15195,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,43.2,10.3,0,79.5,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.5,8.735299,1.386294,,0
-11,3,0,1,1,325504,0,6409.971,24.44353,0,16,1,24.21432,6.841834,29.10871,0,0,60.16486,0,0,0,1,1,1,96.3,3.4,0,83,0,126,0,0,0,4.836282,0,0,0,0,0,0,83,8.765766,0,4.097088,1
-11,3,0,1,2,325504,0,6409.971,25.44353,0,16,1,48.29546,5.222538,11.79924,0,0,65.31724,0,0,0,2,1,1,96.3,3.4,0,83,0,126,0,0,0,4.836282,0,0,0,0,0,0,83,8.765766,0,4.179256,1
-11,3,0,1,3,325504,0,6409.971,26.44353,0,16,1,8.669268,0,28.80364,0,0,37.47291,0,0,0,0,1,1,96.3,3.4,0,83,0,126,0,0,0,4.836282,0,0,0,0,0,0,83,8.765766,0,3.623618,1
-17,3,25,0,1,325556,0,7196.79,22.69131,1,12,1,58.22268,3.064351,26.04699,0,0,87.33401,0,0,0,2,1,1,79.8,6.9,0,76.1,0,0,0,0,0,0,0,3.258096,0,1,0,0,76.1,8.881529,0,4.46974,1
-17,3,25,0,2,325556,0,7196.79,23.69131,1,12,1,62.82232,4.871074,0,0,0,67.69339,0,0,0,4,0,1,79.8,6.9,0,76.1,0,0,0,0,0,0,0,3.258096,0,1,0,0,76.1,8.881529,0,4.214989,1
-17,3,25,0,3,325556,0,7196.79,24.69131,1,12,1,17.19691,0,266.552,0,0,283.7489,0,0,0,1,1,1,79.8,6.9,0,76.1,0,0,0,0,0,0,0,3.258096,0,1,0,0,76.1,8.881529,0,5.64809,1
-11,3,0,1,1,325579,0,5499.707,24.65708,1,12,1,10.40042,0,19.76079,0,0,30.16121,0,0,0,0,1,2,73.4,3.4,0,67,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,67,8.612632,.6931472,3.406557,1
-11,3,0,1,2,325579,0,5499.707,25.65708,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.4,3.4,0,67,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,67,8.612632,.6931472,,0
-11,3,0,1,3,325579,0,5499.707,26.65708,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.4,3.4,0,67,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,67,8.612632,.6931472,,0
-11,3,0,1,4,325579,0,5499.707,27.65708,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.4,3.4,0,67,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,67,8.612632,.6931472,,0
-11,3,0,1,5,325579,0,5499.707,28.65708,1,12,1,0,1.84554,0,0,0,1.84554,0,0,0,0,0,2,73.4,3.4,0,67,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,67,8.612632,.6931472,.612772,1
-11,3,0,1,1,325580,0,5499.707,24.58864,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92,3.4,0,73.9,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,73.9,8.612632,.6931472,,0
-11,3,0,1,2,325580,0,5499.707,25.58864,0,12,1,114.8829,2.331581,0,0,904.9785,1022.193,1,0,0,9,0,2,92,3.4,0,73.9,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,73.9,8.612632,.6931472,6.929706,1
-11,3,0,1,3,325580,0,5499.707,26.58864,0,12,1,6.584723,0,0,0,0,6.584723,0,0,0,1,0,2,92,3.4,0,73.9,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,73.9,8.612632,.6931472,1.884752,1
-11,3,0,1,4,325580,0,5499.707,27.58864,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92,3.4,0,73.9,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,73.9,8.612632,.6931472,,0
-11,3,0,1,5,325580,0,5499.707,28.58864,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92,3.4,0,73.9,0,76.7,0,0,.6931472,4.339902,0,0,0,0,0,0,73.9,8.612632,.6931472,,0
-11,3,0,1,1,325582,0,5739.003,.7282683,1,12,1,26.00104,6.890275,0,0,0,32.89132,0,0,0,4,0,3,83.39137,9.967326,0,96.3,0,156.36,1,1,1.098612,5.052161,0,0,0,1,0,0,96.3,8.655215,1.098612,3.493209,1
-11,3,0,1,2,325582,0,5739.003,1.728268,1,12,1,5.733397,.9555662,0,0,0,6.688963,0,0,0,1,0,3,83.39137,9.967326,0,96.3,0,156.36,1,1,1.098612,5.052161,0,0,0,1,0,0,96.3,8.655215,1.098612,1.900459,1
-11,3,0,1,3,325582,0,5739.003,2.728268,1,12,1,59.70149,8.669886,0,0,0,68.37138,0,0,0,6,0,3,83.39137,9.967326,0,96.3,0,156.36,1,1,1.098612,5.052161,0,0,0,1,0,0,96.3,8.655215,1.098612,4.224954,1
-11,3,0,1,4,325582,0,5739.003,3.728268,1,12,1,54.64699,5.384922,0,0,0,60.03191,0,0,0,5,0,3,83.39137,9.967326,0,96.3,0,156.36,1,1,1.098612,5.052161,0,0,0,1,0,0,96.3,8.655215,1.098612,4.094876,1
-11,3,0,1,5,325582,0,5739.003,4.728268,1,12,1,104.6773,3.226976,0,0,458.6657,566.57,1,0,0,5,3,4,83.39137,9.967326,0,96.3,0,156.36,1,1,1.386294,5.052161,0,0,0,1,0,0,96.3,8.655215,1.386294,6.339601,1
-11,3,0,1,1,325583,0,5739.003,20.82957,0,12,1,15.60062,7.072283,0,0,616.4274,639.1003,1,0,0,3,0,3,72.3,3.4,0,54.5,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,54.5,8.655215,1.098612,6.460062,1
-11,3,0,1,2,325583,0,5739.003,21.82957,0,12,1,41.51935,4.061156,0,0,0,45.58051,0,0,0,3,0,3,72.3,3.4,0,54.5,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,54.5,8.655215,1.098612,3.81948,1
-11,3,0,1,3,325583,0,5739.003,22.82957,0,12,1,8.779632,4.223002,0,0,0,13.00263,0,0,0,1,0,3,72.3,3.4,0,54.5,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,54.5,8.655215,1.098612,2.565152,1
-11,3,0,1,4,325583,0,5739.003,23.82957,0,12,1,119.4256,4.786598,24.73075,0,0,148.943,0,0,0,3,0,3,72.3,3.4,0,54.5,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,54.5,8.655215,1.098612,5.003563,1
-11,3,0,1,5,325583,0,5739.003,24.82957,0,12,1,52.68311,29.94924,0,0,0,82.63234,0,0,0,2,4,4,72.3,3.4,0,54.5,0,156.36,0,0,1.386294,5.052161,0,0,0,1,0,0,54.5,8.655215,1.386294,4.414401,1
-11,3,0,1,1,325584,0,5739.003,20.29295,1,12,1,132.2673,44.19137,30.16121,0,0,206.6199,0,0,0,4,0,3,76.1,3.4,0,83,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,83,8.655215,1.098612,5.330881,1
-11,3,0,1,2,325584,0,5739.003,21.29295,1,12,1,70.7119,17.27664,0,0,0,87.98853,0,0,0,3,0,3,76.1,3.4,0,83,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,83,8.655215,1.098612,4.477207,1
-11,3,0,1,3,325584,0,5739.003,22.29295,1,12,1,79.71906,17.51536,26.33889,0,0,123.5733,0,0,0,4,0,3,76.1,3.4,0,83,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,83,8.655215,1.098612,4.816834,1
-11,3,0,1,4,325584,0,5739.003,23.29295,1,12,1,159.3937,42.19785,0,0,820.1037,1021.695,1,0,0,1,0,3,76.1,3.4,0,83,0,156.36,0,0,1.098612,5.052161,0,0,0,1,0,0,83,8.655215,1.098612,6.929219,1
-11,3,0,1,5,325584,0,5739.003,24.29295,1,12,1,11.96519,3.390138,23.93038,0,0,39.28571,0,0,0,1,0,4,76.1,3.4,0,83,0,156.36,0,0,1.386294,5.052161,0,0,0,1,0,0,83,8.655215,1.386294,3.670861,1
-10,3,50,1,1,325589,0,10476.83,18.07529,0,11,1,109.4229,3.881512,0,0,0,113.3044,0,0,0,9,0,4,80.3,3.4,0,67.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,67.9,9.257017,1.386294,4.730078,1
-10,3,50,1,2,325589,0,10476.83,19.07529,0,11,1,301.1252,7.116737,0,0,254.0788,562.3207,1,0,0,4,0,4,80.3,3.4,0,67.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,67.9,9.257017,1.386294,6.332072,1
-10,3,50,1,3,325589,0,10476.83,20.07529,0,11,1,21.49613,0,0,0,0,21.49613,0,0,0,2,0,4,80.3,3.4,0,67.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,67.9,9.257017,1.386294,3.067873,1
-10,3,50,1,1,325590,0,10476.83,40.45174,1,15,1,9.703779,0,0,0,0,9.703779,0,0,0,1,0,4,86.2,10.3,0,71.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,71.6,9.257017,1.386294,2.272516,1
-10,3,50,1,2,325590,0,10476.83,41.45174,1,15,1,37.50586,9.198312,38.6451,0,0,85.34927,0,0,0,1,1,4,86.2,10.3,0,71.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,71.6,9.257017,1.386294,4.446752,1
-10,3,50,1,3,325590,0,10476.83,42.45174,1,15,1,46.68959,8.968185,19.77644,0,0,75.43422,0,0,0,3,1,4,86.2,10.3,0,71.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,71.6,9.257017,1.386294,4.323261,1
-10,3,50,1,1,325591,0,10476.83,45.1499,0,14,1,8.171603,0,0,0,0,8.171603,0,0,0,1,0,4,82.4,6.9,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.257017,1.386294,2.100665,1
-10,3,50,1,2,325591,0,10476.83,46.1499,0,14,1,73.55836,0,8.438819,0,0,81.99718,0,0,0,1,0,4,82.4,6.9,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.257017,1.386294,4.406685,1
-10,3,50,1,3,325591,0,10476.83,47.1499,0,14,1,9.028375,0,10.74806,0,0,19.77644,0,0,0,0,1,4,82.4,6.9,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.257017,1.386294,2.984491,1
-10,3,50,1,1,325592,0,10476.83,15.83025,0,15,1,14.30031,0,30.64351,0,0,44.94382,0,0,0,1,1,4,87.2,13.8,0,91.7,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,91.7,9.257017,1.386294,3.805413,1
-10,3,50,1,2,325592,0,10476.83,16.83025,0,15,1,15.47117,5.185185,11.72058,0,0,32.37693,0,0,0,1,1,4,87.2,13.8,0,91.7,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,91.7,9.257017,1.386294,3.477446,1
-10,3,50,1,3,325592,0,10476.83,17.83025,0,15,1,54.94411,0,6.981943,0,0,61.92605,0,0,0,2,1,4,87.2,13.8,0,91.7,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,91.7,9.257017,1.386294,4.125941,1
-6,3,25,1,1,325596,0,3937.83,16.45996,1,14,1,26.06275,0,30.36437,0,0,56.42712,0,0,0,1,0,2,82.4,6.9,0,64.8,500.4,500.4,1,1,.6931472,6.215408,0,3.258096,7.601702,1,0,0,64.8,8.278639,.6931472,4.03295,1
-6,3,25,1,2,325596,0,3937.83,17.45996,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,82.4,6.9,0,64.8,500.4,500.4,1,1,.6931472,6.215408,0,3.258096,7.601702,1,0,0,64.8,8.278639,.6931472,,0
-6,3,25,1,3,325596,0,3937.83,18.45996,1,14,1,8.550663,0,25.65199,0,0,34.20265,0,0,0,1,0,2,82.4,6.9,0,64.8,500.4,500.4,0,0,.6931472,6.215408,0,3.258096,7.601702,1,0,0,64.8,8.278639,.6931472,3.532303,1
-6,3,25,1,1,325597,0,3937.83,40.60233,1,14,1,64.5496,2.682186,32.38866,0,0,99.62045,0,0,0,3,0,2,83.5,24.1,0,71.6,500.4,500.4,0,0,.6931472,6.215408,0,3.258096,7.601702,1,0,0,71.6,8.278639,.6931472,4.601367,1
-6,3,25,1,2,325597,0,3937.83,41.60233,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.5,24.1,0,71.6,500.4,500.4,0,0,.6931472,6.215408,0,3.258096,7.601702,1,0,0,71.6,8.278639,.6931472,,0
-6,3,25,1,3,325597,0,3937.83,42.60233,1,14,1,15.81873,6.669517,0,0,0,22.48824,0,0,0,2,0,2,83.5,24.1,0,71.6,500.4,500.4,0,0,.6931472,6.215408,0,3.258096,7.601702,1,0,0,71.6,8.278639,.6931472,3.112993,1
-11,3,0,1,1,325601,0,5852.786,9.845311,0,10,1,0,5.255023,0,0,0,5.255023,0,0,0,0,0,4,61.7,9.967326,0,59.3,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,59.3,8.674844,1.386294,1.659184,1
-11,3,0,1,2,325601,0,5852.786,10.84531,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,9.967326,0,59.3,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,59.3,8.674844,1.386294,,0
-11,3,0,1,3,325601,0,5852.786,11.84531,0,10,1,8.669268,0,0,0,0,8.669268,0,0,0,0,1,4,61.7,9.967326,0,59.3,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,59.3,8.674844,1.386294,2.159784,1
-11,3,0,1,1,325602,0,5852.786,37.96304,0,9,1,25.75992,3.863988,0,0,0,29.62391,0,0,0,3,0,4,54.3,24.1,1,39.8,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,39.8,8.674844,1.386294,3.388582,1
-11,3,0,1,2,325602,0,5852.786,38.96304,0,9,1,0,.6770833,0,0,0,.6770833,0,0,0,0,0,4,54.3,24.1,1,39.8,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,39.8,8.674844,1.386294,-.3899609,1
-11,3,0,1,3,325602,0,5852.786,39.96304,0,9,1,113.5674,26.18119,29.47551,0,0,169.2241,0,0,0,4,1,4,54.3,24.1,1,39.8,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,39.8,8.674844,1.386294,5.131224,1
-11,3,0,1,1,325603,0,5852.786,12.29569,0,10,1,53.58063,5.280783,0,0,0,58.86141,0,0,0,3,0,4,60,9.967326,0,70.4,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,70.4,8.674844,1.386294,4.075186,1
-11,3,0,1,2,325603,0,5852.786,13.29569,0,10,1,0,.6770833,0,0,0,.6770833,0,0,0,0,0,4,60,9.967326,0,70.4,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,70.4,8.674844,1.386294,-.3899609,1
-11,3,0,1,3,325603,0,5852.786,14.29569,0,10,1,16.03815,6.025141,0,0,0,22.06329,0,0,0,2,0,4,60,9.967326,0,70.4,0,383.52,1,0,1.386294,5.949392,0,0,0,0,0,0,70.4,8.674844,1.386294,3.093915,1
-11,3,0,1,1,325604,0,5852.786,48.32581,1,10,1,30.9119,8.629572,28.33591,0,0,67.87738,0,0,0,3,1,4,70.2,20.7,1,54.5,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,54.5,8.674844,1.386294,4.217703,1
-11,3,0,1,2,325604,0,5852.786,49.32581,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,20.7,1,54.5,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,54.5,8.674844,1.386294,,0
-11,3,0,1,3,325604,0,5852.786,50.32581,1,10,1,52.44907,12.52709,29.04205,0,0,94.0182,0,0,0,3,1,4,70.2,20.7,1,54.5,0,383.52,0,0,1.386294,5.949392,0,0,0,1,0,0,54.5,8.674844,1.386294,4.543489,1
-11,3,0,0,1,325625,0,4987.683,30.57084,1,10,1,129.7804,112.0276,26.04699,0,0,267.8549,0,0,2,8,3,4,59,20.7,1,50,0,0,0,0,1.386294,0,0,0,0,1,0,0,50,8.514927,1.386294,5.590446,1
-11,3,0,0,2,325625,0,4987.683,31.57084,1,10,1,66.10408,194.3554,0,0,608.0778,868.5373,2,0,0,8,0,3,59,20.7,1,50,0,0,0,0,1.098612,0,0,0,0,1,0,0,50,8.514927,1.098612,6.76681,1
-11,3,0,0,3,325625,0,4987.683,32.57084,1,10,1,118.5684,163.7016,0,0,262.8461,545.1161,1,0,0,10,0,1,59,20.7,1,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.514927,0,6.300999,1
-11,3,0,0,4,325625,0,4987.683,33.57084,1,10,1,125.0485,169.1935,0,81.42691,0,294.2419,0,0,9,8,0,1,59,20.7,1,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.514927,0,5.684402,1
-11,3,0,0,5,325625,0,4987.683,34.57084,1,10,1,185.4919,93.08209,0,307.8556,294.4657,573.0396,1,0,26,13,0,1,59,20.7,1,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.514927,0,6.350955,1
-11,3,0,0,1,325626,0,4987.683,7.288159,0,10,1,94.84678,.1276813,0,255.3626,0,94.97446,0,0,5,5,0,4,96.7,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,8.514927,1.386294,4.553608,1
-11,3,0,0,2,325626,0,4987.683,8.288158,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,96.7,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.514927,1.098612,,0
-11,3,0,0,1,325627,0,4987.683,46.66667,0,6,1,85.6333,66.5475,117.9775,122.5741,0,270.1583,0,0,8,6,1,4,62.3,10.3,1,53.4,0,0,0,0,1.386294,0,0,0,0,0,1,0,53.4,8.514927,1.386294,5.599008,1
-11,3,0,0,1,325628,0,4987.683,8.542094,0,10,1,0,16.34321,0,0,19240.6,19256.95,2,0,0,0,0,4,65,9.967326,1,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,8.514927,1.386294,9.865627,1
-11,3,0,0,2,325628,0,4987.683,9.542094,0,10,1,39.84998,10.66573,0,0,0,50.51571,0,0,0,2,0,3,65,9.967326,1,70.4,0,0,1,0,1.098612,0,0,0,0,1,0,0,70.4,8.514927,1.098612,3.922284,1
-11,3,0,0,1,325629,0,1230.745,40.78029,1,6,1,67.72217,29.97957,38.81512,0,0,136.5169,0,0,0,3,1,1,19.1,10.3,0,44,0,0,0,0,0,0,0,0,0,0,1,0,44,7.116187,0,4.916448,1
-11,3,0,0,2,325629,0,1230.745,41.78029,1,6,1,33.98969,18.46226,21.56587,0,0,74.01781,0,0,0,3,0,1,19.1,10.3,0,44,0,0,0,0,0,0,0,0,0,0,1,0,44,7.116187,0,4.304306,1
-11,3,0,0,3,325629,0,1230.745,42.78029,1,6,1,176.6982,78.47807,0,0,0,255.1763,0,0,0,5,11,1,19.1,10.3,0,44,0,0,0,0,0,0,0,0,0,0,1,0,44,7.116187,0,5.541955,1
-11,3,0,0,4,325629,0,1230.745,43.78029,1,6,1,43.42768,74.53664,29.08104,0,0,147.0454,0,0,0,2,1,1,19.1,10.3,0,44,0,0,0,0,0,0,0,0,0,0,1,0,44,7.116187,0,4.990741,1
-11,3,0,0,5,325629,0,1230.745,44.78029,1,6,1,217.6221,78.76858,17.69285,0,0,314.0835,0,0,0,10,10,1,19.1,10.3,0,44,0,0,0,0,0,0,0,0,0,0,1,0,44,7.116187,0,5.749659,1
-13,3,0,0,1,325709,0,7961.291,34.26968,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.1,17.2,1,56.8,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.982472,1.609438,,0
-13,3,0,0,2,325709,0,7961.291,35.26968,0,12,1,20.54467,0,0,0,0,20.54467,0,0,0,1,0,5,60.1,17.2,1,56.8,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.982472,1.609438,3.022602,1
-13,3,0,0,3,325709,0,7961.291,36.26968,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,60.1,17.2,1,56.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.982472,1.386294,,0
-13,3,0,0,1,325710,0,7961.291,7.624915,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,96.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.982472,1.609438,,0
-13,3,0,0,2,325710,0,7961.291,8.624914,1,10,1,7.644529,0,0,0,0,7.644529,0,0,0,0,0,5,86.7,9.967326,0,96.3,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.982472,1.609438,2.03399,1
-13,3,0,0,3,325710,0,7961.291,9.624914,1,10,1,53.77524,0,0,0,0,53.77524,0,0,0,2,0,4,86.7,9.967326,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.982472,1.386294,3.984813,1
-13,3,0,0,1,325711,0,7961.291,13.14168,1,10,1,0,0,0,31.20125,0,0,0,0,2,0,0,5,60,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.982472,1.609438,,0
-13,3,0,0,2,325711,0,7961.291,14.14168,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,60,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.982472,1.609438,,0
-13,3,0,0,1,325712,0,7961.291,10.89938,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.982472,1.609438,,0
-13,3,0,0,2,325712,0,7961.291,11.89938,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.982472,1.609438,,0
-13,3,0,0,3,325712,0,7961.291,12.89938,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.982472,1.386294,,0
-13,3,0,0,1,325713,0,7961.291,35.70979,1,10,1,5.720229,0,0,0,889.2668,894.987,1,0,0,1,0,5,81.4,17.2,0,84.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,84.1,8.982472,1.609438,6.796809,1
-13,3,0,0,2,325713,0,7961.291,36.70979,1,10,1,4.777831,0,0,0,0,4.777831,0,0,0,0,0,5,81.4,17.2,0,84.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,84.1,8.982472,1.609438,1.563987,1
-13,3,0,0,3,325713,0,7961.291,37.70979,1,10,1,1002.946,0,0,0,0,1002.946,0,0,0,10,0,4,81.4,17.2,0,84.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,84.1,8.982472,1.386294,6.910697,1
-6,3,25,0,1,325734,0,11425.81,58.52977,0,16,1,10.30397,0,21.63833,0,0,31.9423,0,0,0,0,1,2,91,6.9,0,95.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,95.5,9.343718,.6931472,3.463931,1
-6,3,25,0,2,325734,0,11425.81,59.52977,0,16,1,26.04167,0,16.57197,0,0,42.61364,0,0,0,1,1,2,91,6.9,0,95.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,95.5,9.343718,.6931472,3.752174,1
-6,3,25,0,1,325735,0,11425.81,59.37029,1,14,1,12.87996,0,30.3967,0,0,43.27666,0,0,0,1,0,2,77.7,3.4,0,77.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,77.3,9.343718,.6931472,3.767613,1
-6,3,25,0,2,325735,0,11425.81,60.37029,1,14,1,24.14773,0,0,0,0,24.14773,0,0,0,1,0,2,77.7,3.4,0,77.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,77.3,9.343718,.6931472,3.18419,1
-11,3,0,1,1,325736,0,7319.648,12.73922,1,3,1,24.51481,5.286006,0,0,0,29.80082,0,0,0,3,0,6,85,9.967326,0,92.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,92.6,8.898454,1.791759,3.394536,1
-11,3,0,1,2,325736,0,7319.648,13.73922,1,3,1,86.7323,0,0,0,0,86.7323,0,0,0,9,0,6,85,9.967326,0,92.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,92.6,8.898454,1.791759,4.462826,1
-11,3,0,1,3,325736,0,7319.648,14.73922,1,3,1,49.01118,2.66552,0,0,0,51.6767,0,0,0,5,0,6,85,9.967326,0,92.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,92.6,8.898454,1.791759,3.945007,1
-11,3,0,1,4,325736,0,7319.648,15.73922,1,3,1,25.20357,4.238077,0,0,0,29.44164,0,0,0,3,0,6,85,9.967326,0,92.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,92.6,8.898454,1.791759,3.38241,1
-11,3,0,1,5,325736,0,7319.648,16.73922,1,3,1,15.92357,82.99717,0,0,0,98.92074,0,0,0,2,0,6,85,9.967326,0,92.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,92.6,8.898454,1.791759,4.594319,1
-11,3,0,1,1,325737,0,7319.648,11.4141,0,3,1,33.70787,0,0,0,0,33.70787,0,0,0,2,0,6,83.3,9.967326,0,96.3,0,429,1,0,1.791759,6.061457,0,0,0,0,0,0,96.3,8.898454,1.791759,3.517731,1
-11,3,0,1,2,325737,0,7319.648,12.4141,0,3,1,10.31411,1.851852,0,0,0,12.16596,0,0,0,2,0,6,83.3,9.967326,0,96.3,0,429,1,0,1.791759,6.061457,0,0,0,0,0,0,96.3,8.898454,1.791759,2.498642,1
-11,3,0,1,3,325737,0,7319.648,13.4141,0,3,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,6,83.3,9.967326,0,96.3,0,429,1,0,1.791759,6.061457,0,0,0,0,0,0,96.3,8.898454,1.791759,1.8639,1
-11,3,0,1,4,325737,0,7319.648,14.4141,0,3,1,6.979449,1.357115,0,0,0,8.336565,0,0,0,1,0,6,83.3,9.967326,0,96.3,0,429,1,0,1.791759,6.061457,0,0,0,0,0,0,96.3,8.898454,1.791759,2.120651,1
-11,3,0,1,5,325737,0,7319.648,15.4141,0,3,1,23.60226,3.892427,0,0,0,27.49469,0,0,0,2,0,6,83.3,9.967326,0,96.3,0,429,1,0,1.791759,6.061457,0,0,0,0,0,0,96.3,8.898454,1.791759,3.313993,1
-11,3,0,1,1,325738,0,7319.648,14.45585,1,3,1,17.87538,4.085802,0,0,0,21.96119,0,0,0,3,0,6,87.2,3.4,0,90.9,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,90.9,8.898454,1.791759,3.089277,1
-11,3,0,1,2,325738,0,7319.648,15.45585,1,3,1,58.60291,3.094234,0,0,0,61.69714,0,0,0,6,0,6,87.2,3.4,0,90.9,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,90.9,8.898454,1.791759,4.122238,1
-11,3,0,1,3,325738,0,7319.648,16.45585,1,3,1,60.18917,6.964746,.2149613,0,0,67.36887,0,0,0,6,0,6,87.2,3.4,0,90.9,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,90.9,8.898454,1.791759,4.210183,1
-11,3,0,1,4,325738,0,7319.648,17.45585,1,3,1,26.75456,4.18767,0,0,0,30.94223,0,0,0,3,0,6,87.2,3.4,0,90.9,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,90.9,8.898454,1.791759,3.432122,1
-11,3,0,1,5,325738,0,7319.648,18.45585,1,3,1,8.846426,10.17339,0,0,0,19.01982,0,0,0,1,0,6,87.2,3.4,0,90.9,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,90.9,8.898454,1.791759,2.945481,1
-11,3,0,1,1,325739,0,7319.648,43.17317,0,10,1,33.19714,9.397345,22.98264,0,0,65.57712,0,0,0,4,0,6,78.2,10.3,0,73.9,0,429,0,0,1.791759,6.061457,0,0,0,1,0,0,73.9,8.898454,1.791759,4.183227,1
-11,3,0,1,2,325739,0,7319.648,44.17317,0,10,1,23.44116,1.875293,18.75293,0,0,44.06939,0,0,0,2,0,6,78.2,10.3,0,73.9,0,429,0,0,1.791759,6.061457,0,0,0,1,0,0,73.9,8.898454,1.791759,3.785765,1
-11,3,0,1,3,325739,0,7319.648,45.17317,0,10,1,8.598453,2.923474,0,0,0,11.52193,0,0,0,1,0,6,78.2,10.3,0,73.9,0,429,0,0,1.791759,6.061457,0,0,0,1,0,0,73.9,8.898454,1.791759,2.444252,1
-11,3,0,1,4,325739,0,7319.648,46.17317,0,10,1,22.87708,1.512214,2.175262,0,0,26.56456,0,0,0,2,0,6,78.2,10.3,0,73.9,0,429,0,0,1.791759,6.061457,0,0,0,1,0,0,73.9,8.898454,1.791759,3.279578,1
-11,3,0,1,5,325739,0,7319.648,47.17317,0,10,1,7.430998,0,0,0,0,7.430998,0,0,0,1,0,6,78.2,10.3,0,73.9,0,429,0,0,1.791759,6.061457,0,0,0,1,0,0,73.9,8.898454,1.791759,2.00566,1
-11,3,0,1,1,325740,0,7319.648,14.45585,1,3,1,18.89683,4.264555,0,0,0,23.16139,0,0,0,3,0,6,90.4,6.9,0,71.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,71.6,8.898454,1.791759,3.142487,1
-11,3,0,1,2,325740,0,7319.648,15.45585,1,3,1,58.60291,9.587436,0,0,0,68.19035,0,0,0,6,0,6,90.4,6.9,0,71.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,71.6,8.898454,1.791759,4.222303,1
-11,3,0,1,3,325740,0,7319.648,16.45585,1,3,1,60.18917,24.93551,0,0,0,85.12468,0,0,0,7,0,6,90.4,6.9,0,71.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,71.6,8.898454,1.791759,4.444117,1
-11,3,0,1,4,325740,0,7319.648,17.45585,1,3,1,0,6.16518,0,0,0,6.16518,0,0,0,0,0,6,90.4,6.9,0,71.6,0,429,1,1,1.791759,6.061457,0,0,0,0,0,0,71.6,8.898454,1.791759,1.818917,1
-11,3,0,1,5,325740,0,7319.648,18.45585,1,3,1,0,2.193914,0,0,0,2.193914,0,0,0,0,0,6,90.4,6.9,0,71.6,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,71.6,8.898454,1.791759,.785687,1
-11,3,0,1,1,325741,0,7319.648,39.57563,1,3,1,44.43309,4.249234,0,0,0,48.68233,0,0,0,3,0,6,67,3.4,0,69.3,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,69.3,8.898454,1.791759,3.885316,1
-11,3,0,1,2,325741,0,7319.648,40.57563,1,3,1,0,0,0,0,0,0,0,0,0,0,0,6,67,3.4,0,69.3,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,69.3,8.898454,1.791759,,0
-11,3,0,1,3,325741,0,7319.648,41.57563,1,3,1,0,1.504729,0,0,0,1.504729,0,0,0,0,0,6,67,3.4,0,69.3,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,69.3,8.898454,1.791759,.4086129,1
-11,3,0,1,4,325741,0,7319.648,42.57563,1,3,1,68.63126,2.13261,0,0,0,70.76386,0,0,0,2,0,6,67,3.4,0,69.3,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,69.3,8.898454,1.791759,4.259348,1
-11,3,0,1,5,325741,0,7319.648,43.57563,1,3,1,7.077141,0,21.93914,0,0,29.01628,0,0,0,1,0,6,67,3.4,0,69.3,0,429,0,0,1.791759,6.061457,0,0,0,0,0,0,69.3,8.898454,1.791759,3.367857,1
-11,3,0,1,1,325770,0,8753.666,37.21013,0,9,1,72.80291,12.22049,0,0,661.1649,746.1882,1,0,0,5,0,4,80.9,3.4,0,77.3,0,958.2,0,0,1.386294,6.865057,0,0,0,0,0,0,77.3,9.077342,1.386294,6.614978,1
-11,3,0,1,2,325770,0,8753.666,38.21013,0,9,1,5.733397,2.914477,0,0,0,8.647874,0,0,0,1,0,4,80.9,3.4,0,77.3,0,958.2,0,0,1.386294,6.865057,0,0,0,0,0,0,77.3,9.077342,1.386294,2.157314,1
-11,3,0,1,3,325770,0,8753.666,39.21013,0,9,1,107.1115,2.787533,0,0,0,109.899,0,0,0,4,0,4,80.9,3.4,0,77.3,0,958.2,0,0,1.386294,6.865057,0,0,0,0,0,0,77.3,9.077342,1.386294,4.699562,1
-11,3,0,1,1,325771,0,8753.666,30.68583,1,10,1,222.5689,8.346334,31.72127,0,0,262.6365,0,0,0,9,0,4,90.4,3.4,0,79.5,0,958.2,0,0,1.386294,6.865057,0,0,0,1,0,0,79.5,9.077342,1.386294,5.570771,1
-11,3,0,1,2,325771,0,8753.666,31.68583,1,10,1,100.8122,8.958433,0,0,0,109.7707,0,0,0,2,0,4,90.4,3.4,0,79.5,0,958.2,0,0,1.386294,6.865057,0,0,0,1,0,0,79.5,9.077342,1.386294,4.698393,1
-11,3,0,1,3,325771,0,8753.666,32.68583,1,10,1,28.09482,17.01054,0,0,0,45.10535,0,0,0,3,0,4,90.4,3.4,0,79.5,0,958.2,0,0,1.386294,6.865057,0,0,0,1,0,0,79.5,9.077342,1.386294,3.809001,1
-11,3,0,1,1,325772,0,8753.666,4.785763,0,10,1,24.44098,5.798232,0,0,0,30.23921,0,0,0,2,0,4,83.39137,9.967326,0,85.2,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,85.2,9.077342,1.386294,3.409139,1
-11,3,0,1,2,325772,0,8753.666,5.785763,0,10,1,5.255614,21.57191,0,0,0,26.82752,0,0,0,1,0,4,83.39137,9.967326,0,85.2,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,85.2,9.077342,1.386294,3.289428,1
-11,3,0,1,3,325772,0,8753.666,6.785763,0,10,1,1.316945,21.99298,0,0,0,23.30992,0,0,0,0,0,4,83.39137,9.967326,0,85.2,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,85.2,9.077342,1.386294,3.148879,1
-11,3,0,1,1,325773,0,8753.666,3.271732,0,10,1,20.28081,47.4519,0,0,0,67.73271,0,0,0,2,0,4,83.39137,9.967326,0,63,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,63,9.077342,1.386294,4.215569,1
-11,3,0,1,2,325773,0,8753.666,4.271732,0,10,1,34.16149,37.67319,0,0,0,71.83469,0,0,0,3,0,4,83.39137,9.967326,0,63,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,63,9.077342,1.386294,4.274367,1
-11,3,0,1,3,325773,0,8753.666,5.271732,0,10,1,65.84724,30.9921,0,0,0,96.83933,0,0,0,4,0,4,83.39137,9.967326,0,63,0,958.2,1,0,1.386294,6.865057,0,0,0,1,0,0,63,9.077342,1.386294,4.573053,1
-13,3,0,1,1,325791,0,11701.47,15.11294,0,12,1,15.45595,2.035033,0,0,0,17.49098,0,0,0,2,0,7,84.1,0,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,2.861686,1
-13,3,0,1,2,325791,0,11701.47,16.11294,0,12,1,26.13636,0,0,0,0,26.13636,0,0,0,2,0,7,84.1,0,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,3.263328,1
-13,3,0,1,3,325791,0,11701.47,17.11294,0,12,1,0,1.647161,0,0,0,1.647161,0,0,0,0,0,7,84.1,0,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,.4990531,1
-13,3,0,1,1,325792,0,11701.47,40.86516,1,12,1,27.82071,12.44204,44.02885,0,0,84.2916,0,0,0,2,1,7,59.6,13.8,1,83,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,83,9.367555,1.94591,4.434282,1
-13,3,0,1,2,325792,0,11701.47,41.86516,1,12,1,27.46212,12.12121,10.1089,0,0,49.69223,0,0,0,3,0,7,59.6,13.8,1,83,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,83,9.367555,1.94591,3.905849,1
-13,3,0,1,3,325792,0,11701.47,42.86516,1,12,1,134.3736,2.037278,33.48505,0,0,169.896,0,0,0,2,0,7,59.6,13.8,1,83,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,83,9.367555,1.94591,5.135186,1
-13,3,0,1,1,325793,0,11701.47,12.44627,0,12,1,36.06388,0,25.24472,0,0,61.30861,0,0,0,1,1,7,86.7,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,4.11592,1
-13,3,0,1,2,325793,0,11701.47,13.44627,0,12,1,56.3447,4.285038,11.83712,0,0,72.46686,0,0,0,4,1,7,86.7,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,4.283129,1
-13,3,0,1,3,325793,0,11701.47,14.44627,0,12,1,30.42913,0,10.83658,0,0,41.26571,0,0,0,1,1,7,86.7,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,3.720032,1
-13,3,0,1,1,325794,0,11701.47,41.78234,0,12,1,43.14786,0,0,0,0,43.14786,0,0,0,1,0,7,61.2,20.7,1,64.8,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.367555,1.94591,3.764633,1
-13,3,0,1,2,325794,0,11701.47,42.78234,0,12,1,17.47159,0,0,0,0,17.47159,0,0,0,0,0,7,61.2,20.7,1,64.8,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.367555,1.94591,2.860576,1
-13,3,0,1,3,325794,0,11701.47,43.78234,0,12,1,33.81014,0,19.93932,0,0,53.74946,0,0,0,2,1,7,61.2,20.7,1,64.8,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,64.8,9.367555,1.94591,3.984334,1
-13,3,0,1,1,325796,0,11701.47,7.474333,1,12,1,184.9305,19.96394,0,0,0,204.8944,0,0,0,10,0,7,73.3,9.967326,0,55.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.367555,1.94591,5.322495,1
-13,3,0,1,2,325796,0,11701.47,8.474333,1,12,1,72.44318,12.92614,0,0,0,85.36932,0,0,0,5,1,7,73.3,9.967326,0,55.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.367555,1.94591,4.446987,1
-13,3,0,1,3,325796,0,11701.47,9.474333,1,12,1,314.4343,11.00997,8.669268,0,0,334.1136,0,0,0,11,6,7,73.3,9.967326,0,55.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.367555,1.94591,5.811481,1
-13,3,0,1,1,325797,0,11701.47,10.22587,0,12,1,442.3596,6.903658,12.87996,0,0,462.1432,0,0,0,10,1,7,85,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,6.135875,1
-13,3,0,1,2,325797,0,11701.47,11.22587,0,12,1,75.28409,9.351326,21.7803,0,504.6165,611.0322,1,0,0,7,1,7,85,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,6.41515,1
-13,3,0,1,3,325797,0,11701.47,12.22587,0,12,1,28.60858,8.495882,0,0,0,37.10447,0,0,0,4,0,7,85,9.967326,0,100,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,9.367555,1.94591,3.613737,1
-13,3,0,1,1,325798,0,11701.47,13.88912,1,12,1,17.77434,.7727975,0,0,0,18.54714,0,0,0,1,0,7,87.8,0,0,90.9,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.367555,1.94591,2.920316,1
-13,3,0,1,2,325798,0,11701.47,14.88912,1,12,1,53.0303,2.982955,0,0,0,56.01326,0,0,0,4,1,7,87.8,0,0,90.9,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.367555,1.94591,4.025589,1
-13,3,0,1,3,325798,0,11701.47,15.88912,1,12,1,53.31599,6.870394,21.23971,0,0,81.42609,0,0,0,3,1,7,87.8,0,0,90.9,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.367555,1.94591,4.399696,1
-10,3,50,1,1,325829,0,3559.531,3.937029,1,10,1,7.08502,1.012146,0,0,0,8.097166,0,0,0,1,0,2,83.39137,9.967326,0,88.9,705,705,1,1,.6931472,6.558198,0,3.931826,7.251345,0,0,0,88.9,8.177665,.6931472,2.091514,1
-10,3,50,1,2,325829,0,3559.531,4.937029,1,10,1,19.95338,1.351981,0,0,0,21.30536,0,0,0,2,0,2,83.39137,9.967326,0,88.9,705,705,1,1,.6931472,6.558198,0,3.931826,7.251345,0,0,0,88.9,8.177665,.6931472,3.058959,1
-10,3,50,1,3,325829,0,3559.531,5.937029,1,10,1,35.69902,0,23.08679,0,0,58.7858,0,0,0,1,1,2,83.39137,9.967326,0,88.9,705,705,1,1,.6931472,6.558198,0,3.931826,7.251345,0,0,0,88.9,8.177665,.6931472,4.0739,1
-10,3,50,1,1,325830,0,3559.531,21.16632,1,10,1,31.26012,7.135628,0,0,0,38.39575,0,0,0,2,1,2,55.9,6.9,0,55.7,705,705,0,0,.6931472,6.558198,0,3.931826,7.251345,1,0,0,55.7,8.177665,.6931472,3.647947,1
-10,3,50,1,2,325830,0,3559.531,22.16632,1,10,1,35.33799,0,0,0,0,35.33799,0,0,0,3,0,2,55.9,6.9,0,55.7,705,705,0,0,.6931472,6.558198,0,3.931826,7.251345,1,0,0,55.7,8.177665,.6931472,3.564959,1
-10,3,50,1,3,325830,0,3559.531,23.16632,1,10,1,87.85806,3.163745,0,0,0,91.0218,0,0,0,5,0,2,55.9,6.9,0,55.7,705,705,0,0,.6931472,6.558198,0,3.931826,7.251345,1,0,0,55.7,8.177665,.6931472,4.511099,1
-10,3,50,1,1,325831,0,3391.789,47.90691,1,10,1,102.2267,149.0891,0,0,0,251.3158,0,0,0,7,0,1,56.3,20.7,1,56.8,735,735,0,0,0,6.599871,0,3.931826,7.293018,0,1,0,56.8,8.129408,0,5.526711,1
-10,3,50,1,2,325831,0,3391.789,48.90691,1,10,1,38.41492,126.4336,0,0,0,164.8485,0,0,0,3,0,1,56.3,20.7,1,56.8,735,735,0,0,0,6.599871,0,3.931826,7.293018,0,1,0,56.8,8.129408,0,5.105027,1
-10,3,50,1,3,325831,0,3391.789,49.90691,1,10,1,29.07225,83.49722,20.94912,0,0,133.5186,0,0,0,2,1,1,56.3,20.7,1,56.8,735,735,0,0,0,6.599871,0,3.931826,7.293018,0,1,0,56.8,8.129408,0,4.894241,1
-15,3,95,1,1,325832,0,6723.167,8.985626,1,12,1,46.80187,0,29.9012,0,0,76.70307,0,0,0,4,0,5,85,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,100,8.813463,1.609438,4.339942,1
-15,3,95,1,2,325832,0,6723.167,9.985626,1,12,1,16.24463,4.061156,18.15576,0,0,38.46154,0,0,0,2,0,5,85,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,100,8.813463,1.609438,3.649659,1
-15,3,95,1,3,325832,0,6723.167,10.98563,1,12,1,14.04741,0,25.46093,0,0,39.50834,0,0,0,2,0,5,85,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,100,8.813463,1.609438,3.676512,1
-15,3,95,1,1,325833,0,6723.167,32.20808,1,12,1,0,1.794072,0,0,0,1.794072,0,0,0,0,0,5,92,3.4,0,93.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,93.2,8.813463,1.609438,.5844878,1
-15,3,95,1,2,325833,0,6723.167,33.20808,1,12,1,10.51123,0,0,0,0,10.51123,0,0,0,1,0,5,92,3.4,0,93.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,93.2,8.813463,1.609438,2.352444,1
-15,3,95,1,3,325833,0,6723.167,34.20808,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,92,3.4,0,93.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,93.2,8.813463,1.609438,,0
-15,3,95,1,1,325834,0,6723.167,6.299795,1,12,1,5.200208,0,0,0,0,5.200208,0,0,0,1,0,5,85,9.967326,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,81.5,8.813463,1.609438,1.648699,1
-15,3,95,1,2,325834,0,6723.167,7.299795,1,12,1,6.688963,2.126135,0,0,0,8.815098,0,0,0,1,0,5,85,9.967326,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,81.5,8.813463,1.609438,2.176466,1
-15,3,95,1,3,325834,0,6723.167,8.299794,1,12,1,4.828797,0,0,0,0,4.828797,0,0,0,1,0,5,85,9.967326,0,81.5,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,81.5,8.813463,1.609438,1.574597,1
-15,3,95,1,1,325835,0,6723.167,33.36345,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,84.1,8.813463,1.609438,,0
-15,3,95,1,2,325835,0,6723.167,34.36345,0,15,1,0,0,29.86144,0,0,29.86144,0,0,0,0,0,5,82.4,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,84.1,8.813463,1.609438,3.396568,1
-15,3,95,1,3,325835,0,6723.167,35.36345,0,15,1,51.75593,0,0,0,0,51.75593,0,0,0,1,0,5,82.4,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,84.1,8.813463,1.609438,3.946539,1
-15,3,95,1,1,325836,0,6723.167,3.887748,1,12,1,5.200208,2.730109,0,0,0,7.930317,0,0,0,1,0,5,83.39137,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,96.3,8.813463,1.609438,2.070693,1
-15,3,95,1,2,325836,0,6723.167,4.887748,1,12,1,7.166746,2.388916,0,0,0,9.555662,0,0,0,1,0,5,83.39137,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,96.3,8.813463,1.609438,2.257134,1
-15,3,95,1,3,325836,0,6723.167,5.887748,1,12,1,17.12028,12.53292,0,0,0,29.6532,0,0,0,3,0,5,83.39137,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,1,0,96.3,8.813463,1.609438,3.38957,1
-14,3,95,1,1,325845,0,7090.688,38.03422,1,18,1,0,22.51417,31.9423,803.7094,0,54.45647,0,0,39,0,0,1,77.7,20.7,0,83,600,600,0,0,0,6.39693,0,4.564348,6.448223,0,0,0,83,8.866678,0,3.997402,1
-14,3,95,1,2,325845,0,7090.688,39.03422,1,18,1,21.7803,0,26.51515,662.8788,0,48.29546,0,0,34,1,1,1,77.7,20.7,0,83,600,600,0,0,0,6.39693,0,4.564348,6.448223,0,0,0,83,8.866678,0,3.877337,1
-14,3,95,1,3,325845,0,7090.688,40.03422,1,18,1,54.18292,14.13091,15.49632,34.67707,342.4577,426.2679,1,0,2,2,1,1,77.7,20.7,0,83,600,600,0,0,0,6.39693,0,4.564348,6.448223,0,0,0,83,8.866678,0,6.055068,1
-16,3,95,1,1,325846,0,7788.27,54.42026,0,7,1,73.54443,2.328907,0,0,0,75.87334,0,0,0,5,0,2,74.46748,6.9,0,68.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,68.2,8.960503,.6931472,4.329065,1
-16,3,95,1,2,325846,0,7788.27,55.42026,0,7,1,0,0,0,0,0,0,0,0,0,0,0,2,74.46748,6.9,0,68.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,68.2,8.960503,.6931472,,0
-16,3,95,1,3,325846,0,7788.27,56.42026,0,7,1,30.73947,0,0,0,0,30.73947,0,0,0,1,0,2,74.46748,6.9,0,68.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,68.2,8.960503,.6931472,3.425547,1
-16,3,95,1,1,325848,0,7788.27,16.96099,1,9,1,48.56997,0,0,0,0,48.56997,0,0,0,3,0,2,61.2,6.9,0,68.2,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,0,0,68.2,8.960503,.6931472,3.883005,1
-16,3,95,1,2,325848,0,7788.27,17.96099,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,61.2,6.9,0,68.2,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,0,0,68.2,8.960503,.6931472,,0
-16,3,95,1,3,325848,0,7788.27,18.96099,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,61.2,6.9,0,68.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,68.2,8.960503,.6931472,,0
-15,3,95,1,1,325888,0,5282.288,7.655031,1,12,1,6.128703,28.98366,0,0,0,35.11236,0,0,0,1,0,3,91.7,9.967326,0,77.8,468,468,1,1,1.098612,6.148468,0,4.564348,6.199761,0,0,0,77.8,8.572304,1.098612,3.558553,1
-15,3,95,1,2,325888,0,5282.288,8.655031,1,12,1,9.376465,24.56634,0,0,0,33.9428,0,0,0,2,0,3,91.7,9.967326,0,77.8,468,468,1,1,1.098612,6.148468,0,4.564348,6.199761,0,0,0,77.8,8.572304,1.098612,3.524677,1
-15,3,95,1,3,325888,0,5282.288,9.655031,1,12,1,9.88822,7.274291,0,0,0,17.16251,0,0,0,2,0,3,91.7,9.967326,0,77.8,468,468,1,1,1.098612,6.148468,0,4.564348,6.199761,0,0,0,77.8,8.572304,1.098612,2.842727,1
-15,3,95,1,1,325889,0,5282.288,5.385353,0,12,1,44.12666,24.10623,0,0,0,68.23289,0,0,0,4,0,3,100,9.967326,0,92.6,468,468,1,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,92.6,8.572304,1.098612,4.222927,1
-15,3,95,1,2,325889,0,5282.288,6.385353,0,12,1,16.40881,6.990155,0,0,0,23.39897,0,0,0,2,0,3,100,9.967326,0,92.6,468,468,1,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,92.6,8.572304,1.098612,3.152692,1
-15,3,95,1,3,325889,0,5282.288,7.385353,0,12,1,28.8908,13.67154,0,0,0,42.56234,0,0,0,3,0,3,100,9.967326,0,92.6,468,468,1,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,92.6,8.572304,1.098612,3.75097,1
-15,3,95,1,1,325890,0,5282.288,41.07597,1,12,1,89.88764,46.06231,26.55771,0,0,162.5077,0,0,0,6,1,3,71.3,6.9,0,95.5,468,468,0,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,95.5,8.572304,1.098612,5.090725,1
-15,3,95,1,2,325890,0,5282.288,42.07597,1,12,1,127.7778,9.784341,14.0647,0,0,151.6268,0,0,0,2,0,3,71.3,6.9,0,95.5,468,468,0,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,95.5,8.572304,1.098612,5.021422,1
-15,3,95,1,3,325890,0,5282.288,43.07597,1,12,1,0,5.257954,0,0,0,5.257954,0,0,0,0,0,3,71.3,6.9,0,95.5,468,468,0,0,1.098612,6.148468,0,4.564348,6.199761,0,0,0,95.5,8.572304,1.098612,1.659742,1
-13,3,0,1,1,325906,1,2344.868,25.56058,0,17,1,23.40094,0,0,0,0,23.40094,0,0,0,2,0,1,93.1,3.4,0,89.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,89.8,7.760411,0,3.152776,1
-13,3,0,1,2,325906,1,2344.868,26.56058,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,3.4,0,89.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,89.8,7.760411,0,,0
-13,3,0,1,3,325906,1,2344.868,27.56058,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,93.1,3.4,0,89.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,89.8,7.760411,0,,0
-13,3,0,1,1,325930,0,9421.701,45.20465,0,16,1,49.45904,0,25.24472,0,0,74.70376,0,0,0,0,9,5,63.3,10.3,0,71.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,71.6,9.150877,1.609438,4.31353,1
-13,3,0,1,2,325930,0,9421.701,46.20465,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,10.3,0,71.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,71.6,9.150877,1.609438,,0
-13,3,0,1,3,325930,0,9421.701,47.20465,0,16,1,36.84439,0,26.658,0,0,63.50238,0,0,0,0,2,5,63.3,10.3,0,71.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,71.6,9.150877,1.609438,4.151077,1
-13,3,0,1,1,325931,0,9421.701,14.83368,0,12,1,521.3395,.4327666,29.93302,0,0,551.7053,0,0,0,6,1,5,72.9,0,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,88.6,9.150877,1.609438,6.313014,1
-13,3,0,1,2,325931,0,9421.701,15.83368,0,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,5,72.9,0,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,88.6,9.150877,1.609438,1.737271,1
-13,3,0,1,3,325931,0,9421.701,16.83368,0,12,1,8.235804,0,0,0,0,8.235804,0,0,0,2,0,5,72.9,0,0,88.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,88.6,9.150877,1.609438,2.108491,1
-13,3,0,1,1,325932,0,9421.701,17.57153,0,12,1,23.18393,0,27.30551,0,0,50.48944,0,0,0,1,1,5,78.2,3.4,0,90.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.150877,1.609438,3.921764,1
-13,3,0,1,2,325932,0,9421.701,18.57153,0,12,1,0,0,0,42.61364,0,0,0,0,3,0,0,5,78.2,3.4,0,90.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.150877,1.609438,,0
-13,3,0,1,3,325932,0,9421.701,19.57153,0,12,1,25.57434,0,23.40702,82.35804,0,48.98136,0,0,11,1,1,5,78.2,3.4,0,90.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.150877,1.609438,3.89144,1
-13,3,0,1,1,325933,0,9421.701,15.9781,0,12,1,10.30397,1.365276,27.82071,0,0,39.48995,0,0,0,0,1,5,77.7,0,0,93.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.150877,1.609438,3.676046,1
-13,3,0,1,2,325933,0,9421.701,16.9781,0,12,1,5.681818,.7102273,0,0,0,6.392045,0,0,0,1,0,5,77.7,0,0,93.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.150877,1.609438,1.855054,1
-13,3,0,1,3,325933,0,9421.701,17.9781,0,12,1,10.83658,0,24.27395,0,0,35.11053,0,0,0,0,1,5,77.7,0,0,93.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,93.2,9.150877,1.609438,3.558501,1
-13,3,0,1,1,325934,0,9421.701,40.44079,1,12,1,68.41834,20.71097,0,15.45595,0,89.12932,0,0,1,4,0,5,40.4,20.7,0,61.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.150877,1.609438,4.490088,1
-13,3,0,1,2,325934,0,9421.701,41.44079,1,12,1,53.97727,3.29072,0,0,0,57.26799,0,0,0,5,0,5,40.4,20.7,0,61.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.150877,1.609438,4.047742,1
-13,3,0,1,3,325934,0,9421.701,42.44079,1,12,1,315.1539,2.362375,0,0,0,317.5163,0,0,0,3,0,5,40.4,20.7,0,61.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.150877,1.609438,5.760529,1
-18,3,25,1,1,325935,0,9527.272,14.80082,1,12,1,11.23596,2.37998,0,0,0,13.61593,0,0,0,2,0,5,76.6,0,0,63.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,63.6,9.162019,1.609438,2.611241,1
-18,3,25,1,2,325935,0,9527.272,15.80082,1,12,1,1.875293,2.906704,0,0,0,4.781997,0,0,0,0,0,5,76.6,0,0,63.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,63.6,9.162019,1.609438,1.564858,1
-18,3,25,1,3,325935,0,9527.272,16.80082,1,12,1,139.3809,13.80052,161.221,0,3472.691,3787.094,1,0,0,6,0,5,76.6,0,0,63.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,63.6,9.162019,1.609438,8.239354,1
-18,3,25,1,1,325936,0,9527.272,38.77071,0,7,1,15.32176,15.18897,0,61.28703,0,30.51073,0,0,5,0,0,5,68.6,10.3,0,64.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,64.8,9.162019,1.609438,3.418078,1
-18,3,25,1,2,325936,0,9527.272,39.77071,0,7,1,12.65823,7.069855,0,0,0,19.72808,0,0,0,0,0,5,68.6,10.3,0,64.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,64.8,9.162019,1.609438,2.982043,1
-18,3,25,1,3,325936,0,9527.272,40.77071,0,7,1,0,1.569218,0,0,0,1.569218,0,0,0,0,0,5,68.6,10.3,0,64.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,64.8,9.162019,1.609438,.4505771,1
-18,3,25,1,1,325937,0,9527.272,11.0308,1,12,1,11.23596,1.838611,0,0,0,13.07457,0,0,0,2,0,5,90,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.162019,1.609438,2.570669,1
-18,3,25,1,2,325937,0,9527.272,12.0308,1,12,1,0,.9376465,0,0,0,.9376465,0,0,0,0,0,5,90,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.162019,1.609438,-.0643823,1
-18,3,25,1,3,325937,0,9527.272,13.0308,1,12,1,30.09458,2.192605,0,0,0,32.28719,0,0,0,2,0,5,90,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.162019,1.609438,3.474671,1
-18,3,25,1,1,325938,0,9527.272,16.00274,0,12,1,22.98264,26.21553,28.60061,0,0,77.79877,0,0,0,2,0,5,83.5,13.8,0,70.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.2,9.162019,1.609438,4.354125,1
-18,3,25,1,2,325938,0,9527.272,17.00274,0,12,1,41.72527,23.32865,0,0,0,65.05392,0,0,0,2,0,5,83.5,13.8,0,70.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.2,9.162019,1.609438,4.175216,1
-18,3,25,1,3,325938,0,9527.272,18.00274,0,12,1,43.37919,10.64058,24.07567,0,0,78.09544,0,0,0,2,1,5,83.5,13.8,0,70.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.2,9.162019,1.609438,4.357932,1
-18,3,25,1,1,325939,0,9527.272,36.04654,1,12,1,33.86108,5.132789,0,0,764.1982,803.192,2,0,0,4,0,5,77.7,17.2,0,88.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.162019,1.609438,6.688594,1
-18,3,25,1,2,325939,0,9527.272,37.04654,1,12,1,29.06704,3.42241,0,0,0,32.48945,0,0,0,2,3,5,77.7,17.2,0,88.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.162019,1.609438,3.480916,1
-18,3,25,1,3,325939,0,9527.272,38.04654,1,12,1,16.16509,2.55804,0,0,0,18.72313,0,0,0,1,1,5,77.7,17.2,0,88.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.162019,1.609438,2.92976,1
-13,3,0,1,1,325940,0,10690.91,10.73238,0,12,1,10.2145,2.681308,11.23596,0,0,24.13177,0,0,0,0,1,4,88.3,9.967326,0,100,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,3.183529,1
-13,3,0,1,2,325940,0,10690.91,11.73238,0,12,1,19.69058,9.610877,0,0,0,29.30145,0,0,0,3,0,4,88.3,9.967326,0,100,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,3.377637,1
-13,3,0,1,3,325940,0,10690.91,12.73238,0,12,1,8.598453,6.083405,0,0,0,14.68186,0,0,0,0,1,4,88.3,9.967326,0,100,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,2.686613,1
-13,3,0,1,1,325941,0,10690.91,34.90486,1,12,1,9.193054,0,16.85393,0,0,26.04699,0,0,0,0,1,4,66.5,17.2,0,96.6,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,96.6,9.277243,1.386294,3.259902,1
-13,3,0,1,2,325941,0,10690.91,35.90486,1,12,1,62.82232,4.664792,26.2541,0,0,93.74121,0,0,0,2,1,4,66.5,17.2,0,96.6,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,96.6,9.277243,1.386294,4.540538,1
-13,3,0,1,3,325941,0,10690.91,36.90486,1,12,1,33.53396,0,0,0,0,33.53396,0,0,0,2,0,4,66.5,17.2,0,96.6,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,96.6,9.277243,1.386294,3.512559,1
-13,3,0,1,1,325942,0,10690.91,8.807666,1,12,1,8.171603,0,0,0,0,8.171603,0,0,0,1,0,4,75,9.967326,0,100,450,492.84,1,1,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,2.100665,1
-13,3,0,1,2,325942,0,10690.91,9.807666,1,12,1,23.90999,4.758556,0,0,0,28.66854,0,0,0,2,0,4,75,9.967326,0,100,450,492.84,1,1,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,3.3558,1
-13,3,0,1,3,325942,0,10690.91,10.80767,1,12,1,31.92175,0,0,0,0,31.92175,0,0,0,1,0,4,75,9.967326,0,100,450,492.84,1,1,1.386294,6.200184,1,4.564348,6.160541,0,0,0,100,9.277243,1.386294,3.463288,1
-13,3,0,1,1,325943,0,10690.91,35.11841,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,3.4,0,97.7,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,97.7,9.277243,1.386294,,0
-13,3,0,1,2,325943,0,10690.91,36.11841,0,16,1,76.41819,0,3.047351,0,0,79.46554,0,0,0,2,2,4,71.3,3.4,0,97.7,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,97.7,9.277243,1.386294,4.375323,1
-13,3,0,1,3,325943,0,10690.91,37.11841,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,3.4,0,97.7,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,97.7,9.277243,1.386294,,0
-11,3,0,0,1,325955,0,4994.135,59.55647,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,24.1,1,86.4,0,137.28,0,0,0,4.922023,0,0,0,1,0,0,86.4,8.51622,0,,0
-11,3,0,0,2,325955,0,4994.135,60.55647,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,24.1,1,86.4,0,137.28,0,0,0,4.922023,0,0,0,1,0,0,86.4,8.51622,0,,0
-11,3,0,0,3,325955,0,4994.135,61.55647,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,24.1,1,86.4,0,137.28,0,0,0,4.922023,0,0,0,1,0,0,86.4,8.51622,0,,0
-11,3,0,1,1,326015,0,563.0499,14.3217,1,9,1,160.5516,10.57692,0,0,0,171.1285,0,0,0,6,0,2,70.7,3.4,0,80.7,0,0,1,1,.6931472,0,0,0,0,0,0,0,80.7,6.335143,.6931472,5.142415,1
-11,3,0,1,2,326015,0,563.0499,15.3217,1,9,1,95.49651,20.37296,6.293706,0,0,122.1632,0,0,0,6,0,2,70.7,3.4,0,80.7,0,0,1,1,.6931472,0,0,0,0,0,0,0,80.7,6.335143,.6931472,4.805357,1
-11,3,0,1,3,326015,0,563.0499,16.3217,1,9,1,169.3886,42.47542,0,0,0,211.864,0,0,0,10,0,2,70.7,3.4,0,80.7,0,0,1,1,.6931472,0,0,0,0,0,0,0,80.7,6.335143,.6931472,5.355945,1
-11,3,0,1,1,326016,0,563.0499,44.70363,1,9,1,46.05263,78.5172,26.31579,0,0,150.8856,0,0,0,1,0,2,60.1,17.2,0,77.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.4,6.335143,.6931472,5.016522,1
-11,3,0,1,2,326016,0,563.0499,45.70363,1,9,1,17.24942,90.65268,0,0,0,107.9021,0,0,0,2,0,2,60.1,17.2,0,77.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.4,6.335143,.6931472,4.681224,1
-11,3,0,1,3,326016,0,563.0499,46.70363,1,9,1,32.92005,70.3634,0,0,0,103.2835,0,0,0,1,0,2,60.1,17.2,0,77.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,77.4,6.335143,.6931472,4.637477,1
-11,3,0,0,1,326017,0,7196.79,14.68309,1,11,1,83.14096,19.3667,0,0,0,102.5077,0,0,0,7,0,3,84.1,6.9,0,90.9,0,232.8,1,1,1.098612,5.45018,0,0,0,0,0,0,90.9,8.881529,1.098612,4.629938,1
-11,3,0,0,2,326017,0,7196.79,15.68309,1,11,1,116.4557,28.06376,26.2541,0,0,170.7736,0,0,0,6,1,3,84.1,6.9,0,90.9,0,232.8,1,1,1.098612,5.45018,0,0,0,0,0,0,90.9,8.881529,1.098612,5.140338,1
-11,3,0,0,3,326017,0,7196.79,16.68309,1,11,1,32.45916,23.00516,12.03783,0,0,67.50215,0,0,0,3,1,3,84.1,6.9,0,90.9,0,232.8,1,1,1.098612,5.45018,0,0,0,0,0,0,90.9,8.881529,1.098612,4.21216,1
-11,3,0,0,1,326018,0,7196.79,42.00137,0,10,1,14.09602,0,11.74668,0,0,25.8427,0,0,0,1,0,3,81.4,3.4,0,92,0,232.8,0,0,1.098612,5.45018,0,0,0,0,0,0,92,8.881529,1.098612,3.252028,1
-11,3,0,0,2,326018,0,7196.79,43.00137,0,10,1,16.87764,10.34224,35.63057,0,0,62.85044,0,0,0,1,1,3,81.4,3.4,0,92,0,232.8,0,0,1.098612,5.45018,0,0,0,0,0,0,92,8.881529,1.098612,4.140758,1
-11,3,0,0,3,326018,0,7196.79,44.00137,0,10,1,61.69389,14.57438,0,0,0,76.26827,0,0,0,3,0,3,81.4,3.4,0,92,0,232.8,0,0,1.098612,5.45018,0,0,0,0,0,0,92,8.881529,1.098612,4.334257,1
-11,3,0,0,1,326019,0,7196.79,38.33812,1,11,1,85.80184,37.68131,19.83657,0,988.9377,1132.257,1,0,0,7,0,3,81.4,6.9,0,83,0,232.8,0,0,1.098612,5.45018,0,0,0,0,1,0,83,8.881529,1.098612,7.031969,1
-11,3,0,0,2,326019,0,7196.79,39.33812,1,11,1,74.5429,10.76418,0,0,1152.532,1237.839,1,0,0,4,0,3,81.4,6.9,0,83,0,232.8,0,0,1.098612,5.45018,0,0,0,0,1,0,83,8.881529,1.098612,7.121122,1
-11,3,0,0,3,326019,0,7196.79,40.33812,1,11,1,17.19691,5.717971,0,0,383.7446,406.6595,1,0,0,2,0,3,81.4,6.9,0,83,0,232.8,0,0,1.098612,5.45018,0,0,0,0,1,0,83,8.881529,1.098612,6.007976,1
-11,3,0,1,1,326027,0,6105.572,60.26283,0,7,1,46.57393,48.91808,0,0,0,95.49201,0,0,0,4,0,2,61.7,20.7,0,71.4,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,71.4,8.717121,.6931472,4.559042,1
-11,3,0,1,2,326027,0,6105.572,61.26283,0,7,1,214.9858,52.05019,5.776515,78.125,0,272.8125,0,0,10,9,0,2,61.7,20.7,0,71.4,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,71.4,8.717121,.6931472,5.608785,1
-11,3,0,1,3,326027,0,6105.572,62.26283,0,7,1,113.1339,42.50108,40.31209,65.01951,2232.094,2428.041,2,0,8,14,0,2,61.7,20.7,0,71.4,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,71.4,8.717121,.6931472,7.79484,1
-11,3,0,1,1,326028,0,6105.572,56.47912,1,10,1,456.7388,194.7347,39.40752,0,881.221,1572.102,1,0,0,21,0,2,41,34.5,1,30.7,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,1,30.7,8.717121,.6931472,7.360169,1
-11,3,0,1,2,326028,0,6105.572,57.47912,1,10,1,85.70076,137.5331,28.68845,63.92046,0,251.9223,0,0,9,6,0,2,41,34.5,1,30.7,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,1,30.7,8.717121,.6931472,5.529121,1
-11,3,0,1,3,326028,0,6105.572,58.47912,1,10,1,77.24317,178.9597,55.6567,130.039,296.1985,608.0581,1,0,15,6,0,2,41,34.5,1,30.7,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,1,30.7,8.717121,.6931472,6.41027,1
-16,3,95,1,1,326054,0,2777.713,19.59754,1,9,1,15.68826,3.54251,0,0,0,19.23077,0,0,0,2,0,3,59,10.3,0,44.3,915,915,0,0,1.098612,6.818924,0,4.564348,6.870217,0,1,0,44.3,7.929743,1.098612,2.956511,1
-16,3,95,1,2,326054,0,2777.713,20.59754,1,9,1,55.1282,0,0,66.43356,588.6247,643.7529,1,0,4,6,1,3,59,10.3,0,44.3,915,915,0,0,1.098612,6.818924,0,4.564348,6.870217,0,1,0,44.3,7.929743,1.098612,6.467315,1
-16,3,95,1,3,326054,0,2777.713,21.59754,1,9,1,8.550663,2.116289,0,0,0,10.66695,0,0,0,1,0,4,59,10.3,0,44.3,915,915,0,0,1.386294,6.818924,0,4.564348,6.870217,0,1,0,44.3,7.929743,1.386294,2.36715,1
-16,3,95,1,4,326054,0,2777.713,22.59754,1,9,1,18.44735,0,0,0,1178.467,1196.914,1,0,0,1,0,4,59,10.3,0,44.3,915,915,0,0,1.386294,6.818924,0,4.564348,6.870217,0,1,0,44.3,7.929743,1.386294,7.087502,1
-16,3,95,1,5,326054,0,2777.713,23.59754,1,9,1,64.27819,0,0,0,0,64.27819,0,0,0,5,0,5,59,10.3,0,44.3,915,915,0,0,1.609438,6.818924,0,4.564348,6.870217,0,1,0,44.3,7.929743,1.609438,4.16322,1
-16,3,95,1,1,326055,0,2777.713,1.149897,1,9,1,65.91599,11.69028,0,0,0,77.60628,0,0,0,7,0,3,83.39137,9.967326,0,66.7,915,915,1,1,1.098612,6.818924,0,4.564348,6.870217,1,0,0,66.7,7.929743,1.098612,4.351648,1
-16,3,95,1,2,326055,0,2777.713,2.149897,1,9,1,34.96503,3.030303,0,0,168.951,206.9464,1,0,0,4,0,3,83.39137,9.967326,0,66.7,915,915,1,1,1.098612,6.818924,0,4.564348,6.870217,1,0,0,66.7,7.929743,1.098612,5.33246,1
-16,3,95,1,3,326055,0,2777.713,3.149897,1,9,1,10.2608,0,0,0,0,10.2608,0,0,0,2,0,4,83.39137,9.967326,0,66.7,915,915,1,1,1.386294,6.818924,0,4.564348,6.870217,1,0,0,66.7,7.929743,1.386294,2.32833,1
-16,3,95,1,4,326055,0,2777.713,4.149897,1,9,1,23.25134,0,0,0,0,23.25134,0,0,0,2,0,4,83.39137,9.967326,0,66.7,915,915,1,1,1.386294,6.818924,0,4.564348,6.870217,1,0,0,66.7,7.929743,1.386294,3.146363,1
-16,3,95,1,5,326055,0,2777.713,5.149897,1,9,1,20.72357,5.827187,0,0,0,26.55075,0,0,0,3,0,5,83.39137,9.967326,0,66.7,915,915,1,1,1.609438,6.818924,0,4.564348,6.870217,1,0,0,66.7,7.929743,1.609438,3.279058,1
-16,3,95,1,1,326056,0,2777.713,20.71184,0,12,1,54.1498,3.238866,0,0,0,57.38866,0,0,0,3,0,3,55.9,3.4,0,84.1,915,915,0,0,1.098612,6.818924,0,4.564348,6.870217,0,0,0,84.1,7.929743,1.098612,4.049847,1
-16,3,95,1,2,326056,0,2777.713,21.71184,0,12,1,22.37762,0,0,0,0,22.37762,0,0,0,2,0,3,55.9,3.4,0,84.1,915,915,0,0,1.098612,6.818924,0,4.564348,6.870217,0,0,0,84.1,7.929743,1.098612,3.108062,1
-16,3,95,1,3,326056,0,2777.713,22.71184,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,55.9,3.4,0,84.1,915,915,0,0,1.386294,6.818924,0,4.564348,6.870217,0,0,0,84.1,7.929743,1.386294,,0
-16,3,95,1,4,326056,0,2777.713,23.71184,0,12,1,87.6249,0,0,0,0,87.6249,0,0,0,1,9,4,55.9,3.4,0,84.1,915,915,0,0,1.386294,6.818924,0,4.564348,6.870217,0,0,0,84.1,7.929743,1.386294,4.473065,1
-16,3,95,1,5,326056,0,2777.713,24.71184,0,12,1,75.83421,5.226554,0,0,0,81.06077,0,0,0,3,1,5,55.9,3.4,0,84.1,915,915,0,0,1.609438,6.818924,0,4.564348,6.870217,0,0,0,84.1,7.929743,1.609438,4.395199,1
-13,3,0,1,1,326060,0,1757.771,25.7796,1,16,1,45.85265,8.655333,32.4575,69.55178,10.30912,97.2746,1,1,3,3,1,1,81.4,3.4,0,94.3,150,270.56,0,0,0,5.600494,1,4.564348,5.061929,0,0,0,94.3,7.472371,0,4.577538,1
-13,3,0,1,2,326060,0,1757.771,26.7796,1,16,1,83.92519,0,0,1053.504,0,83.92519,0,0,43,4,0,1,81.4,3.4,0,94.3,150,270.56,0,0,0,5.600494,1,4.564348,5.061929,0,0,0,94.3,7.472371,0,4.429926,1
-13,3,0,1,3,326060,0,1757.771,27.7796,1,16,1,125.7044,0,23.40702,845.2536,0,149.1114,0,0,39,3,0,1,81.4,3.4,0,94.3,150,270.56,0,0,0,5.600494,1,4.564348,5.061929,0,0,0,94.3,7.472371,0,5.004694,1
-11,3,0,1,1,326066,0,3873.314,20.35044,1,12,1,224.129,122.5429,0,0,0,346.6719,0,0,0,15,0,1,60.1,27.6,1,31.8,0,0,0,0,0,0,0,0,0,0,1,0,31.8,8.262124,0,5.848379,1
-11,3,0,1,2,326066,0,3873.314,21.35044,1,12,1,155.9484,90.68801,17.20019,0,0,263.8366,0,0,0,11,1,1,60.1,27.6,1,31.8,0,0,0,0,0,0,0,0,0,0,1,0,31.8,8.262124,0,5.57533,1
-11,3,0,1,3,326066,0,3873.314,22.35044,1,12,1,111.9622,104.3986,13.16945,0,0,229.5303,0,0,0,9,1,1,60.1,27.6,1,31.8,0,0,0,0,0,0,0,0,0,0,1,0,31.8,8.262124,0,5.436035,1
-14,3,95,1,1,326079,1,10370.09,13.24846,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,88.9,750,750,1,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,88.9,9.246778,1.609438,,0
-14,3,95,1,2,326079,1,10370.09,14.24846,0,13,1,24.24242,0,0,0,0,24.24242,0,0,0,2,0,5,86.7,9.967326,0,88.9,750,750,1,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,88.9,9.246778,1.609438,3.188104,1
-14,3,95,1,3,326079,1,10370.09,15.24846,0,13,1,10.2608,4.275331,0,0,0,14.53613,0,0,0,1,0,6,86.7,9.967326,0,88.9,750,750,1,0,1.791759,6.620073,0,4.564348,6.671367,0,0,0,88.9,9.246778,1.791759,2.676637,1
-14,3,95,1,1,326080,1,10370.09,8.837782,1,13,1,0,1.037449,0,0,0,1.037449,0,0,0,0,0,5,83.3,9.967326,0,70.4,750,750,1,1,1.609438,6.620073,0,4.564348,6.671367,0,0,0,70.4,9.246778,1.609438,.0367652,1
-14,3,95,1,2,326080,1,10370.09,9.837782,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,9.967326,0,70.4,750,750,1,1,1.609438,6.620073,0,4.564348,6.671367,0,0,0,70.4,9.246778,1.609438,,0
-14,3,95,1,3,326080,1,10370.09,10.83778,1,13,1,51.30397,0,0,0,0,51.30397,0,0,0,2,0,6,83.3,9.967326,0,70.4,750,750,1,1,1.791759,6.620073,0,4.564348,6.671367,0,0,0,70.4,9.246778,1.791759,3.937768,1
-14,3,95,1,1,326081,1,10370.09,33.94935,1,13,1,7.591093,4.757085,0,0,0,12.34818,0,0,0,0,0,5,75,10.3,0,84.1,750,750,0,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,84.1,9.246778,1.609438,2.513509,1
-14,3,95,1,2,326081,1,10370.09,34.94935,1,13,1,19.11422,13.68298,25.17483,0,1070.923,1128.895,1,0,0,1,0,5,75,10.3,0,84.1,750,750,0,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,84.1,9.246778,1.609438,7.028995,1
-14,3,95,1,3,326081,1,10370.09,35.94935,1,13,1,13.25353,21.01325,10.2608,0,0,44.52758,0,0,0,2,0,6,75,10.3,0,84.1,750,750,0,0,1.791759,6.620073,0,4.564348,6.671367,0,0,0,84.1,9.246778,1.791759,3.796109,1
-14,3,95,1,1,326082,1,10370.09,6.850103,1,13,1,7.591093,1.037449,20.24291,0,0,28.87146,0,0,0,0,1,5,83.3,9.967326,0,100,750,750,1,1,1.609438,6.620073,0,4.564348,6.671367,0,0,0,100,9.246778,1.609438,3.362854,1
-14,3,95,1,2,326082,1,10370.09,7.850103,1,13,1,25.17483,2.494173,0,0,0,27.669,0,0,0,1,0,5,83.3,9.967326,0,100,750,750,1,1,1.609438,6.620073,0,4.564348,6.671367,0,0,0,100,9.246778,1.609438,3.320313,1
-14,3,95,1,3,326082,1,10370.09,8.850102,1,13,1,9.405729,0,23.08679,0,0,32.49252,0,0,0,0,1,6,83.3,9.967326,0,100,750,750,1,1,1.791759,6.620073,0,4.564348,6.671367,0,0,0,100,9.246778,1.791759,3.48101,1
-19,3,25,0,1,326098,0,5413.63,3.895962,0,12,1,21.84087,4.472179,0,0,0,26.31305,0,0,0,4,0,4,83.39137,9.967326,0,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.59686,1.386294,3.270065,1
-19,3,25,0,2,326098,0,5413.63,4.895962,0,12,1,28.42809,11.40946,0,0,0,39.83755,0,0,0,3,0,4,83.39137,9.967326,0,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.59686,1.386294,3.68481,1
-19,3,25,0,3,326098,0,5413.63,5.895962,0,12,1,18.43723,11.01405,0,0,0,29.45127,0,0,0,2,0,4,83.39137,9.967326,0,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.59686,1.386294,3.382737,1
-19,3,25,0,4,326098,0,5413.63,6.895962,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.59686,1.386294,,0
-19,3,25,0,5,326098,0,5413.63,7.895962,0,12,1,14.50326,0,0,0,0,14.50326,0,0,0,2,0,4,83.39137,9.967326,0,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.59686,1.386294,2.674374,1
-19,3,25,0,1,326099,0,5413.63,30.26968,0,12,1,134.2954,4.290172,0,0,0,138.5855,0,0,0,3,0,4,83,3.4,0,69.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.59686,1.386294,4.931488,1
-19,3,25,0,2,326099,0,5413.63,31.26968,0,12,1,10.98901,5.833732,0,0,0,16.82274,0,0,0,2,0,4,83,3.4,0,69.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.59686,1.386294,2.822732,1
-19,3,25,0,3,326099,0,5413.63,32.26968,0,12,1,0,3.525022,0,0,0,3.525022,0,0,0,0,0,4,83,3.4,0,69.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.59686,1.386294,1.259887,1
-19,3,25,0,4,326099,0,5413.63,33.26968,0,12,1,13.56203,7.271639,0,0,0,20.83367,0,0,0,2,0,4,83,3.4,0,69.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.59686,1.386294,3.03657,1
-19,3,25,0,5,326099,0,5413.63,34.26968,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83,3.4,0,69.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.59686,1.386294,,0
-19,3,25,0,1,326100,0,5413.63,6.96783,0,12,1,24.44098,21.24285,0,26.00104,0,45.68383,0,0,1,4,0,4,75,9.967326,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.59686,1.386294,3.821744,1
-19,3,25,0,2,326100,0,5413.63,7.96783,0,12,1,75.01195,22.64214,0,21.50024,0,97.65408,0,0,1,6,0,4,75,9.967326,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.59686,1.386294,4.581431,1
-19,3,25,0,3,326100,0,5413.63,8.967831,0,12,1,26.44864,3.858648,0,0,0,30.30729,0,0,0,3,0,4,75,9.967326,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.59686,1.386294,3.411388,1
-19,3,25,0,4,326100,0,5413.63,9.967831,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,9.967326,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.59686,1.386294,,0
-19,3,25,0,5,326100,0,5413.63,10.96783,0,12,1,15.95359,5.424221,0,0,0,21.37781,0,0,0,2,0,4,75,9.967326,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.59686,1.386294,3.062353,1
-19,3,25,0,1,326101,0,5413.63,28.01643,1,12,1,30.31721,15.98544,0,0,0,46.30265,0,0,0,3,1,4,69.7,6.9,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.59686,1.386294,3.835199,1
-19,3,25,0,2,326101,0,5413.63,29.01643,1,12,1,13.85571,0,0,0,0,13.85571,0,0,0,1,0,4,69.7,6.9,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.59686,1.386294,2.628697,1
-19,3,25,0,3,326101,0,5413.63,30.01643,1,12,1,13.16945,0,0,0,0,13.16945,0,0,0,1,0,4,69.7,6.9,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.59686,1.386294,2.577899,1
-19,3,25,0,4,326101,0,5413.63,31.01643,1,12,1,15.15756,2.401276,0,0,0,17.55884,0,0,0,1,0,4,69.7,6.9,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.59686,1.386294,2.865557,1
-19,3,25,0,5,326101,0,5413.63,32.01643,1,12,1,19.94199,4.528644,0,0,0,24.47063,0,0,0,1,0,4,69.7,6.9,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.59686,1.386294,3.197474,1
-13,3,0,0,1,326102,0,5980.897,.9856263,0,12,1,45.24181,31.11284,0,0,183.1357,259.4904,1,0,0,7,0,3,83.39137,9.967326,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.696493,1.098612,5.55872,1
-13,3,0,0,2,326102,0,5980.897,1.985626,0,12,1,4.777831,1.194458,0,0,0,5.972289,0,0,0,1,0,4,83.39137,9.967326,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,8.696493,1.386294,1.78713,1
-13,3,0,0,3,326102,0,5980.897,2.985626,0,12,1,5.267779,0,0,0,0,5.267779,0,0,0,1,0,4,83.39137,9.967326,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,8.696493,1.386294,1.661609,1
-13,3,0,0,1,326103,0,5980.897,25.13347,1,12,1,57.61831,15.41862,34.84139,0,632.0593,739.9376,1,0,0,2,1,3,75.5,3.4,0,90.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.696493,1.098612,6.606566,1
-13,3,0,0,2,326103,0,5980.897,26.13347,1,12,1,13.76015,8.76732,0,0,0,22.52747,0,0,0,1,0,4,75.5,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.696493,1.386294,3.114736,1
-13,3,0,0,3,326103,0,5980.897,27.13347,1,12,1,13.52063,7.594381,0,0,0,21.11501,0,0,0,1,0,4,75.5,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.696493,1.386294,3.049984,1
-13,3,0,0,1,326104,0,5980.897,29.11157,0,17,1,80.73323,3.016121,0,0,0,83.74935,0,0,0,2,0,3,81.4,10.3,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.696493,1.098612,4.427828,1
-13,3,0,0,2,326104,0,5980.897,30.11157,0,17,1,6.21118,1.40946,0,0,0,7.62064,0,0,0,1,0,4,81.4,10.3,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.696493,1.386294,2.03086,1
-13,3,0,0,3,326104,0,5980.897,31.11157,0,17,1,56.18964,3.533802,0,0,0,59.72344,0,0,0,0,7,4,81.4,10.3,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.696493,1.386294,4.089725,1
-11,3,0,1,1,326105,0,4480.352,29.60712,1,11,1,39.22065,4.706478,0,0,0,43.92712,0,0,0,3,0,5,74.5,10.3,0,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,8.407681,1.609438,3.782532,1
-11,3,0,1,2,326105,0,4480.352,30.60712,1,11,1,55.47786,23.04429,0,0,456.8765,535.3986,1,0,0,5,1,6,74.5,10.3,0,46.6,0,0,0,0,1.791759,0,0,0,0,1,0,0,46.6,8.407681,1.791759,6.283011,1
-11,3,0,1,3,326105,0,4480.352,31.60712,1,11,1,86.14793,5.728944,0,0,0,91.87687,0,0,0,3,0,6,74.5,10.3,0,46.6,0,0,0,0,1.791759,0,0,0,0,1,0,0,46.6,8.407681,1.791759,4.520449,1
-11,3,0,1,1,326106,0,4480.352,8.971937,1,11,1,13.96761,0,0,0,0,13.96761,0,0,0,1,0,5,98.3,9.967326,0,59.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,59.3,8.407681,1.609438,2.636741,1
-11,3,0,1,2,326106,0,4480.352,9.971937,1,11,1,24.70862,7.412588,0,0,0,32.12121,0,0,0,2,0,6,98.3,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,8.407681,1.791759,3.469517,1
-11,3,0,1,3,326106,0,4480.352,10.97194,1,11,1,310.5601,16.54553,0,0,0,327.1056,0,0,0,4,0,6,98.3,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,8.407681,1.791759,5.790283,1
-11,3,0,1,2,326107,0,4480.352,11.20123,1,11,1,170.0699,6.037296,0,0,0,176.1072,0,0,0,10,0,6,88.3,9.967326,0,48.1,0,0,1,1,1.791759,0,0,0,0,0,1,0,48.1,8.407681,1.791759,5.171093,1
-11,3,0,1,3,326107,0,4480.352,12.20123,1,11,1,92.64643,2.757589,.8550662,0,0,96.25909,0,0,0,5,0,6,88.3,9.967326,0,48.1,0,0,1,1,1.791759,0,0,0,0,0,1,0,48.1,8.407681,1.791759,4.567043,1
-11,3,0,1,1,326108,0,4480.352,6.863792,1,11,1,13.66397,0,0,0,0,13.66397,0,0,0,2,0,5,91.7,9.967326,0,63,0,0,1,1,1.609438,0,0,0,0,1,0,0,63,8.407681,1.609438,2.614762,1
-11,3,0,1,2,326108,0,4480.352,7.863792,1,11,1,46.06061,6.037296,0,0,0,52.0979,0,0,0,4,0,6,91.7,9.967326,0,63,0,0,1,1,1.791759,0,0,0,0,1,0,0,63,8.407681,1.791759,3.953125,1
-11,3,0,1,3,326108,0,4480.352,8.863791,1,11,1,326.8662,0,0,0,0,326.8662,0,0,0,3,0,6,91.7,9.967326,0,63,0,0,1,1,1.791759,0,0,0,0,1,0,0,63,8.407681,1.791759,5.789551,1
-11,3,0,1,1,326116,0,4830.499,11.38125,0,9,1,127.7692,24.85832,0,0,0,152.6275,0,0,0,10,0,6,93.3,9.967326,0,96.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,96.3,8.482912,1.791759,5.028,1
-11,3,0,1,2,326116,0,4830.499,12.38125,0,9,1,174.3608,2.722538,0,0,389.5928,566.6761,1,0,0,7,0,6,93.3,9.967326,0,96.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,96.3,8.482912,1.791759,6.339788,1
-11,3,0,1,3,326116,0,4830.499,13.38125,0,9,1,35.4573,12.02861,0,0,0,47.48591,0,0,0,2,0,6,93.3,9.967326,0,96.3,0,0,1,0,1.791759,0,0,0,0,1,0,0,96.3,8.482912,1.791759,3.860433,1
-11,3,0,1,1,326117,0,4830.499,8.262834,1,9,1,27.82071,0,0,0,0,27.82071,0,0,0,3,0,6,100,9.967326,0,100,0,0,1,1,1.791759,0,0,0,0,1,0,0,100,8.482912,1.791759,3.325781,1
-11,3,0,1,2,326117,0,4830.499,9.262834,1,9,1,32.67046,0,0,0,0,32.67046,0,0,0,2,0,6,100,9.967326,0,100,0,0,1,1,1.791759,0,0,0,0,1,0,0,100,8.482912,1.791759,3.486471,1
-11,3,0,1,3,326117,0,4830.499,10.26283,1,9,1,7.368877,0,0,0,0,7.368877,0,0,0,1,0,6,100,9.967326,0,100,0,0,1,1,1.791759,0,0,0,0,1,0,0,100,8.482912,1.791759,1.997265,1
-11,3,0,1,1,326118,0,4830.499,7.214237,1,9,1,24.31736,2.96239,0,0,0,27.27975,0,0,0,2,0,6,100,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,1,0,0,88.9,8.482912,1.791759,3.306145,1
-11,3,0,1,2,326118,0,4830.499,8.214237,1,9,1,64.39394,31.58144,0,0,0,95.97538,0,0,0,6,0,6,100,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,1,0,0,88.9,8.482912,1.791759,4.564092,1
-11,3,0,1,3,326118,0,4830.499,9.214237,1,9,1,139.2284,52.62245,0,0,0,191.8509,0,0,0,38,0,6,100,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,1,0,0,88.9,8.482912,1.791759,5.256719,1
-11,3,0,1,1,326119,0,4830.499,9.952087,0,9,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,6,83.3,9.967326,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,8.482912,1.791759,1.821703,1
-11,3,0,1,2,326119,0,4830.499,10.95209,0,9,1,15.15152,0,0,0,0,15.15152,0,0,0,2,0,6,83.3,9.967326,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,8.482912,1.791759,2.718101,1
-11,3,0,1,3,326119,0,4830.499,11.95209,0,9,1,227.8544,1.473776,0,0,0,229.3281,0,0,0,1,0,6,83.3,9.967326,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,8.482912,1.791759,5.435154,1
-11,3,0,1,1,326120,0,4830.499,33.24572,1,9,1,73.41576,0,0,0,0,73.41576,0,0,0,5,0,6,63.8,10.3,1,51.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,51.1,8.482912,1.791759,4.296139,1
-11,3,0,1,2,326120,0,4830.499,34.24572,1,9,1,139.3939,6.841856,0,0,0,146.2358,0,0,0,3,0,6,63.8,10.3,1,51.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,51.1,8.482912,1.791759,4.98522,1
-11,3,0,1,3,326120,0,4830.499,35.24572,1,9,1,16.47161,1.603814,0,0,0,18.07542,0,0,0,2,0,6,63.8,10.3,1,51.1,0,0,0,0,1.791759,0,0,0,0,1,0,0,51.1,8.482912,1.791759,2.894553,1
-11,3,0,1,1,326121,0,4830.499,33.26762,0,14,1,153.5806,3.323029,0,0,1946.27,2103.174,1,0,0,8,0,6,88.3,3.4,0,85.2,0,0,0,0,1.791759,0,0,0,0,0,0,0,85.2,8.482912,1.791759,7.651203,1
-11,3,0,1,2,326121,0,4830.499,34.26762,0,14,1,49.24242,6.628788,0,0,426.2263,482.0975,1,0,0,2,0,6,88.3,3.4,0,85.2,0,0,0,0,1.791759,0,0,0,0,0,0,0,85.2,8.482912,1.791759,6.178146,1
-11,3,0,1,3,326121,0,4830.499,35.26762,0,14,1,62.41872,0,0,0,0,62.41872,0,0,0,3,0,6,88.3,3.4,0,85.2,0,0,0,0,1.791759,0,0,0,0,0,0,0,85.2,8.482912,1.791759,4.133865,1
-11,3,0,0,1,326126,0,3175.366,7.192334,1,12,1,2.530364,7.059717,0,0,0,9.590081,0,0,0,0,0,6,85,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,1,0,0,92.6,8.063493,1.791759,2.260729,1
-11,3,0,0,1,326127,0,3175.366,5.489391,0,12,1,38.96761,8.19838,0,0,0,47.16599,0,0,0,3,0,6,88.3,9.967326,0,81.5,0,0,1,0,1.791759,0,0,0,0,0,0,0,81.5,8.063493,1.791759,3.853673,1
-11,3,0,0,1,326128,0,3175.366,4.580424,0,12,1,6.072875,1.771255,0,0,0,7.84413,0,0,0,1,0,6,83.39137,9.967326,0,70.4,0,0,1,0,1.791759,0,0,0,0,1,0,0,70.4,8.063493,1.791759,2.059765,1
-11,3,0,0,1,326129,0,3175.366,3.268994,1,12,1,52.88462,10.45041,0,0,0,63.33502,0,0,0,5,0,6,83.39137,9.967326,0,70.4,0,0,1,1,1.791759,0,0,0,0,1,0,0,70.4,8.063493,1.791759,4.148438,1
-11,3,0,0,1,326130,0,3175.366,1.555099,1,12,1,6.072875,7.84413,0,0,0,13.917,0,0,0,1,0,6,83.39137,9.967326,0,66.7,0,0,1,1,1.791759,0,0,0,0,1,0,0,66.7,8.063493,1.791759,2.633111,1
-11,3,0,0,1,326131,0,3175.366,30.12731,1,12,1,89.22065,13.23381,26.82186,37.95547,727.9605,857.2368,2,0,3,7,1,6,83,34.5,0,72.7,0,0,0,0,1.791759,0,0,0,0,1,0,0,72.7,8.063493,1.791759,6.753714,1
-11,3,0,0,2,326131,0,3175.366,31.12731,1,12,1,141.2121,18.9324,0,0,1570.751,1730.895,2,0,0,8,0,1,83,34.5,0,72.7,0,0,0,0,0,0,0,0,0,1,0,0,72.7,8.063493,0,7.456394,1
-11,3,0,0,3,326131,0,3175.366,32.12731,1,12,1,491.3596,46.38734,25.65199,0,0,563.3989,0,0,0,7,24,1,83,34.5,0,72.7,0,0,0,0,0,0,0,0,0,1,0,0,72.7,8.063493,0,6.333988,1
-13,3,0,0,1,326132,0,10826.39,25.63176,1,9,1,20.42901,6.639428,0,0,0,27.06844,0,0,0,2,0,2,77.7,6.9,1,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,9.289835,.6931472,3.298368,1
-13,3,0,0,2,326132,0,10826.39,26.63176,1,9,1,164.557,17.96531,16.40881,0,1710.291,1909.222,1,0,0,2,1,2,77.7,6.9,1,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,9.289835,.6931472,7.554451,1
-13,3,0,0,3,326132,0,10826.39,27.63176,1,9,1,27.08512,5.352537,0,0,0,32.43766,0,0,0,3,0,3,77.7,6.9,1,67,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,67,9.289835,1.098612,3.47932,1
-13,3,0,0,1,326133,0,10826.39,29.02396,0,12,1,6.128703,1.348315,0,0,0,7.477017,0,0,0,1,0,2,80.9,10.3,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.289835,.6931472,2.011834,1
-13,3,0,0,2,326133,0,10826.39,30.02396,0,12,1,11.72058,0,0,0,0,11.72058,0,0,0,1,0,2,80.9,10.3,0,81.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.289835,.6931472,2.461346,1
-13,3,0,0,3,326133,0,10826.39,31.02396,0,12,1,10.74806,0,28.37489,0,0,39.12296,0,0,0,0,1,3,80.9,10.3,0,81.8,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,81.8,9.289835,1.098612,3.666709,1
-11,3,0,0,1,326134,0,11897.95,34.69131,1,12,1,30.13279,0,0,0,0,30.13279,0,0,0,1,0,4,65.4,10.3,0,87.5,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,87.5,9.384205,1.386294,3.405614,1
-11,3,0,0,2,326134,0,11897.95,35.69131,1,12,1,15.00234,4.875762,0,0,0,19.87811,0,0,0,1,0,4,65.4,10.3,0,87.5,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,87.5,9.384205,1.386294,2.989619,1
-11,3,0,0,3,326134,0,11897.95,36.69131,1,12,1,26.22528,12.90198,0,0,0,39.12726,0,0,0,2,1,4,65.4,10.3,0,87.5,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,87.5,9.384205,1.386294,3.666819,1
-11,3,0,0,1,326135,0,11897.95,33.51677,1,12,1,257.4055,0,0,0,0,257.4055,0,0,0,6,0,4,87.2,3.4,0,60.2,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,60.2,9.384205,1.386294,5.550653,1
-11,3,0,0,2,326135,0,11897.95,34.51677,1,12,1,58.60291,7.548054,0,0,0,66.15096,0,0,0,2,2,4,87.2,3.4,0,60.2,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,60.2,9.384205,1.386294,4.191939,1
-11,3,0,0,3,326135,0,11897.95,35.51677,1,12,1,86.19949,3.108341,0,0,1637.115,1726.423,1,0,0,4,0,4,87.2,3.4,0,60.2,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,60.2,9.384205,1.386294,7.453807,1
-11,3,0,0,1,326136,0,11897.95,50.83915,0,14,1,54.39224,18.51379,0,0,0,72.90603,0,0,0,3,0,4,89.9,20.7,0,70.5,0,512.36,0,0,1.386294,6.239028,0,0,0,0,0,0,70.5,9.384205,1.386294,4.289171,1
-11,3,0,0,2,326136,0,11897.95,51.83915,0,14,1,35.16174,12.79887,28.12939,0,0,76.09001,0,0,0,3,1,4,89.9,20.7,0,70.5,0,512.36,0,0,1.386294,6.239028,0,0,0,0,0,0,70.5,9.384205,1.386294,4.331917,1
-11,3,0,0,3,326136,0,11897.95,52.83915,0,14,1,22.35598,16.57352,0,0,0,38.92949,0,0,0,4,0,4,89.9,20.7,0,70.5,0,512.36,0,0,1.386294,6.239028,0,0,0,0,0,0,70.5,9.384205,1.386294,3.661752,1
-11,3,0,0,1,326137,0,11897.95,56.49281,1,12,1,121.0419,104.8008,0,0,0,225.8427,0,0,0,8,0,4,83,41.4,1,53.4,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,53.4,9.384205,1.386294,5.419839,1
-11,3,0,0,2,326137,0,11897.95,57.49281,1,12,1,126.4416,103.9334,0,0,0,230.3751,0,0,0,7,0,4,83,41.4,1,53.4,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,53.4,9.384205,1.386294,5.439709,1
-11,3,0,0,3,326137,0,11897.95,58.49281,1,12,1,64.05847,80.82115,21.57352,0,0,166.4531,0,0,0,4,3,4,83,41.4,1,53.4,0,512.36,0,0,1.386294,6.239028,0,0,0,1,0,0,53.4,9.384205,1.386294,5.114714,1
-13,3,0,1,1,326146,0,3014.076,44.90075,0,11,1,29.06027,6.001021,24.51481,0,843.6926,903.2686,1,0,0,3,0,2,71.3,6.9,0,69.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,69.3,8.01138,.6931472,6.80602,1
-13,3,0,1,2,326146,0,3014.076,45.90075,0,11,1,111.5799,1.875293,0,0,0,113.4552,0,0,0,7,0,2,71.3,6.9,0,69.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,69.3,8.01138,.6931472,4.731408,1
-13,3,0,1,3,326146,0,3014.076,46.90075,0,11,1,98.40929,1.397249,0,0,1229.862,1329.669,1,0,0,6,1,2,71.3,6.9,0,69.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,69.3,8.01138,.6931472,7.192685,1
-13,3,0,1,4,326146,0,3014.076,47.90075,0,11,1,13.57115,0,28.96472,0,0,42.53587,0,0,0,1,0,2,71.3,6.9,0,69.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,69.3,8.01138,.6931472,3.750348,1
-13,3,0,1,5,326146,0,3014.076,48.90075,0,11,1,49.32767,0,0,0,0,49.32767,0,0,0,3,0,2,71.3,6.9,0,69.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,69.3,8.01138,.6931472,3.898485,1
-13,3,0,1,1,326147,0,3014.076,25.14716,1,9,1,76.60879,6.256384,25.53626,0,907.7273,1016.129,1,0,0,4,0,2,78.2,10.3,0,65.9,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,65.9,8.01138,.6931472,6.923755,1
-13,3,0,1,2,326147,0,3014.076,26.14716,1,9,1,113.0333,3.830286,0,0,0,116.8636,0,0,0,5,0,2,78.2,10.3,0,65.9,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,65.9,8.01138,.6931472,4.761007,1
-13,3,0,1,3,326147,0,3014.076,27.14716,1,9,1,82.07223,6.771281,27.38607,0,0,116.2296,0,0,0,5,0,2,78.2,10.3,0,65.9,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,65.9,8.01138,.6931472,4.755568,1
-13,3,0,1,4,326147,0,3014.076,28.14716,1,9,1,41.8767,6.843738,13.1834,0,0,61.90384,0,0,0,3,1,2,78.2,10.3,0,65.9,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,65.9,8.01138,.6931472,4.125582,1
-13,3,0,1,5,326147,0,3014.076,29.14716,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,10.3,0,65.9,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,65.9,8.01138,.6931472,,0
-13,3,0,1,1,326164,0,5493.255,29.5332,1,12,1,13.00052,0,0,52.00208,0,13.00052,0,0,7,2,0,4,66.5,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.611459,1.386294,2.564989,1
-13,3,0,1,2,326164,0,5493.255,30.5332,1,12,1,16.72241,3.511706,0,0,0,20.23411,0,0,0,2,0,4,66.5,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.611459,1.386294,3.00737,1
-13,3,0,1,3,326164,0,5493.255,31.5332,1,12,1,190.3863,11.12818,0,0,0,201.5145,0,0,0,9,0,4,66.5,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.611459,1.386294,5.305861,1
-13,3,0,1,4,326164,0,5493.255,32.5332,1,12,1,44.07658,9.988033,0,21.93857,0,54.06462,0,0,1,3,0,4,66.5,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.611459,1.386294,3.99018,1
-13,3,0,1,5,326164,0,5493.255,33.5332,1,12,1,764.4126,16.77302,0,30.45685,0,781.1857,0,0,7,8,0,4,66.5,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.611459,1.386294,6.660813,1
-13,3,0,1,1,326165,0,5493.255,5.546885,0,12,1,6.24025,0,0,5.200208,0,6.24025,0,0,1,1,0,4,85,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.611459,1.386294,1.83102,1
-13,3,0,1,2,326165,0,5493.255,6.546885,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.611459,1.386294,,0
-13,3,0,1,3,326165,0,5493.255,7.546885,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.611459,1.386294,,0
-13,3,0,1,4,326165,0,5493.255,8.546885,0,12,1,6.781013,0,0,0,0,6.781013,0,0,0,1,0,4,85,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.611459,1.386294,1.914127,1
-13,3,0,1,5,326165,0,5493.255,9.546885,0,12,1,39.52139,0,0,60.9137,0,39.52139,0,0,14,1,0,4,85,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.611459,1.386294,3.676842,1
-13,3,0,1,1,326166,0,5493.255,33.40178,0,14,1,15.60062,0,0,83.20333,0,15.60062,0,0,10,0,0,4,77.7,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.611459,1.386294,2.747311,1
-13,3,0,1,2,326166,0,5493.255,34.40178,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.611459,1.386294,,0
-13,3,0,1,3,326166,0,5493.255,35.40178,0,14,1,10.97454,0,21.94908,0,0,32.92362,0,0,0,0,1,4,77.7,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.611459,1.386294,3.49419,1
-13,3,0,1,4,326166,0,5493.255,36.40178,0,14,1,166.8767,6.086957,2.393299,0,0,175.357,0,0,0,7,1,4,77.7,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.611459,1.386294,5.166824,1
-13,3,0,1,5,326166,0,5493.255,37.40178,0,14,1,62.00145,0,10.87745,30.45685,0,72.8789,0,0,7,2,0,4,77.7,3.4,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,8.611459,1.386294,4.288799,1
-13,3,0,1,1,326167,0,5493.255,4.205339,1,12,1,4.160166,0,0,0,0,4.160166,0,0,0,0,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.611459,1.386294,1.425555,1
-13,3,0,1,2,326167,0,5493.255,5.205339,1,12,1,5.733397,2.914477,0,0,0,8.647874,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.611459,1.386294,2.157314,1
-13,3,0,1,3,326167,0,5493.255,6.205339,1,12,1,28.5338,0,0,0,0,28.5338,0,0,0,2,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.611459,1.386294,3.351089,1
-13,3,0,1,4,326167,0,5493.255,7.205339,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.611459,1.386294,,0
-13,3,0,1,5,326167,0,5493.255,8.205338,1,12,1,9.06454,2.15736,0,0,0,11.2219,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.611459,1.386294,2.417867,1
-19,3,25,1,1,326187,0,1856.305,59.51814,1,12,1,38.81512,8.784474,37.02758,0,0,84.62717,0,0,0,4,1,1,64.4,17.2,0,58,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,58,7.526882,0,4.438255,1
-19,3,25,1,2,326187,0,1856.305,60.51814,1,12,1,18.28411,3.000469,39.38115,0,0,60.66573,0,0,0,2,0,1,64.4,17.2,0,58,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,58,7.526882,0,4.105379,1
-19,3,25,1,3,326187,0,1856.305,61.51814,1,12,1,46.47464,0,30.09458,0,0,76.56921,0,0,0,3,0,1,64.4,17.2,0,58,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,58,7.526882,0,4.338195,1
-7,3,25,1,1,326237,1,2079.179,31.02259,1,7,1,196.1285,48.68421,8.805668,0,0,253.6184,0,0,0,18,0,3,60.6,17.2,0,68.2,410.4,410.4,0,0,1.098612,6.017132,0,3.258096,7.403427,0,1,0,68.2,7.640209,1.098612,5.535831,1
-7,3,25,1,2,326237,1,2079.179,32.02259,1,7,1,120.9324,98.18182,0,0,0,219.1142,0,0,0,11,0,3,60.6,17.2,0,68.2,410.4,410.4,0,0,1.098612,6.017132,0,3.258096,7.403427,0,1,0,68.2,7.640209,1.098612,5.389593,1
-7,3,25,1,3,326237,1,2079.179,33.02259,1,7,1,148.696,117.0799,0,0,0,265.776,0,0,0,9,0,3,60.6,17.2,0,68.2,410.4,410.4,0,0,1.098612,6.017132,0,3.258096,7.403427,0,1,0,68.2,7.640209,1.098612,5.582654,1
-7,3,25,1,1,326238,1,2079.179,7.737166,1,7,1,42.63664,0,0,0,0,42.63664,0,0,0,3,0,3,85,9.967326,0,81.5,410.4,410.4,1,1,1.098612,6.017132,0,3.258096,7.403427,1,0,0,81.5,7.640209,1.098612,3.752714,1
-7,3,25,1,2,326238,1,2079.179,8.737166,1,7,1,18.18182,0,0,0,0,18.18182,0,0,0,2,0,3,85,9.967326,0,81.5,410.4,410.4,1,1,1.098612,6.017132,0,3.258096,7.403427,1,0,0,81.5,7.640209,1.098612,2.900422,1
-7,3,25,1,3,326238,1,2079.179,9.737166,1,7,1,13.25353,2.565199,0,0,0,15.81873,0,0,0,2,0,3,85,9.967326,0,81.5,410.4,410.4,1,1,1.098612,6.017132,0,3.258096,7.403427,1,0,0,81.5,7.640209,1.098612,2.761194,1
-7,3,25,1,1,326239,1,2079.179,1.549623,0,7,1,112.0698,6.325911,5.050607,0,0,123.4464,0,0,0,7,0,3,83.39137,9.967326,0,90.7,410.4,410.4,1,0,1.098612,6.017132,0,3.258096,7.403427,0,0,0,90.7,7.640209,1.098612,4.815807,1
-7,3,25,1,2,326239,1,2079.179,2.549623,0,7,1,60.4662,9.34732,0,0,0,69.81352,0,0,0,7,0,3,83.39137,9.967326,0,90.7,410.4,410.4,1,0,1.098612,6.017132,0,3.258096,7.403427,0,0,0,90.7,7.640209,1.098612,4.245828,1
-7,3,25,1,3,326239,1,2079.179,3.549623,0,7,1,229.1791,2.992732,0,0,0,232.1719,0,0,0,20,0,3,83.39137,9.967326,0,90.7,410.4,410.4,1,0,1.098612,6.017132,0,3.258096,7.403427,0,0,0,90.7,7.640209,1.098612,5.447478,1
-13,3,0,0,1,326251,0,4201.173,54.94867,1,12,1,7.727975,2.833591,0,0,0,10.56157,0,0,0,1,0,1,77.7,20.7,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.343357,0,2.357222,1
-13,3,0,0,2,326251,0,4201.173,55.94867,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,77.7,20.7,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.343357,0,,0
-13,3,0,0,3,326251,0,4201.173,56.94867,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,77.7,20.7,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.343357,0,,0
-14,3,95,0,1,326265,0,7870.841,28.64887,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,100,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,0,0,0,100,8.971047,.6931472,,0
-14,3,95,0,2,326265,0,7870.841,29.64887,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,100,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,0,0,0,100,8.971047,.6931472,,0
-14,3,95,0,3,326265,0,7870.841,30.64887,0,12,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,2,86.7,0,0,100,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,0,0,0,100,8.971047,.6931472,2.159784,1
-14,3,95,0,4,326265,0,7870.841,31.64887,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,100,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,0,0,0,100,8.971047,.6931472,,0
-14,3,95,0,5,326265,0,7870.841,32.64887,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,100,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,0,0,0,100,8.971047,.6931472,,0
-14,3,95,0,1,326266,0,7870.841,28.62971,1,12,1,56.67182,1.519835,0,0,0,58.19165,0,0,0,1,0,2,87.8,6.9,1,54.5,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,1,0,0,54.5,8.971047,.6931472,4.063742,1
-14,3,95,0,2,326266,0,7870.841,29.62971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.8,6.9,1,54.5,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,1,0,0,54.5,8.971047,.6931472,,0
-14,3,95,0,3,326266,0,7870.841,30.62971,1,12,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,2,87.8,6.9,1,54.5,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,1,0,0,54.5,8.971047,.6931472,2.159784,1
-14,3,95,0,4,326266,0,7870.841,31.62971,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,87.8,6.9,1,54.5,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,1,0,0,54.5,8.971047,.6931472,,0
-14,3,95,0,5,326266,0,7870.841,32.62971,1,12,1,25.04472,0,0,0,0,25.04472,0,0,0,3,0,2,87.8,6.9,1,54.5,485.75,485.75,0,0,.6931472,6.185694,0,4.564348,6.236988,1,0,0,54.5,8.971047,.6931472,3.220663,1
-13,3,0,1,1,326290,0,13140.18,60.5065,0,12,1,7.006698,0,16.74395,0,0,23.75064,0,0,0,0,0,4,87.8,24.1,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.483506,1.386294,3.16761,1
-13,3,0,1,2,326290,0,13140.18,61.5065,0,12,1,28.19602,3.210227,26.04167,0,0,57.44792,0,0,0,1,1,4,87.8,24.1,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.483506,1.386294,4.050879,1
-13,3,0,1,3,326290,0,13140.18,62.5065,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,87.8,24.1,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.483506,1.386294,,0
-13,3,0,1,1,326291,0,13140.18,51.22792,1,13,1,62.0814,6.579083,21.38073,0,0,90.04121,0,0,0,6,0,4,70.7,17.2,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.483506,1.386294,4.500268,1
-13,3,0,1,2,326291,0,13140.18,52.22792,1,13,1,49.69223,2.831439,25.0947,0,0,77.61837,0,0,0,2,1,4,70.7,17.2,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.483506,1.386294,4.351804,1
-13,3,0,1,3,326291,0,13140.18,53.22792,1,13,1,27.74166,0,0,0,0,27.74166,0,0,0,1,0,4,70.7,17.2,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,75,9.483506,1.386294,3.322935,1
-13,3,0,1,1,326292,0,13140.18,18.35181,1,11,1,23.95672,.6543019,6.43998,0,0,31.051,0,0,0,2,0,4,85.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.483506,1.386294,3.435631,1
-13,3,0,1,2,326292,0,13140.18,19.35181,1,11,1,237.893,15.14205,20.83333,0,0,273.8684,0,0,0,2,1,4,85.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.483506,1.386294,5.612648,1
-13,3,0,1,3,326292,0,13140.18,20.35181,1,11,1,10.83658,11.2137,12.57044,0,0,34.62072,0,0,0,2,0,4,85.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.483506,1.386294,3.544452,1
-13,3,0,1,1,326293,0,13140.18,17.1718,1,13,1,146.0587,27.03761,20.35033,46.36785,0,193.4467,0,0,3,5,0,4,70.7,10.3,0,58,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.483506,1.386294,5.265002,1
-13,3,0,1,2,326293,0,13140.18,18.1718,1,13,1,62.87879,26.11269,10.41667,14.20455,0,99.40814,0,0,1,3,1,4,70.7,10.3,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.483506,1.386294,4.599234,1
-13,3,0,1,3,326293,0,13140.18,19.1718,1,13,1,224.495,21.31339,0,0,0,245.8084,0,0,0,2,0,4,70.7,10.3,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,9.483506,1.386294,5.504552,1
-13,3,0,1,1,326294,0,5400,24.01917,0,10,1,14.42555,0,0,0,0,14.42555,0,0,0,1,0,1,70.2,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.594339,0,2.669001,1
-13,3,0,1,2,326294,0,5400,25.01917,0,10,1,5.681818,1.633523,0,0,0,7.315341,0,0,0,1,0,1,70.2,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.594339,0,1.989974,1
-13,3,0,1,3,326294,0,5400,26.01917,0,10,1,264.0746,8.326832,24.70741,0,0,297.1088,0,0,0,1,1,1,70.2,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.594339,0,5.694098,1
-19,3,25,1,1,326308,0,11665.1,16.64887,1,9,1,118.6741,19.4585,0,0,0,138.1326,0,0,0,11,0,6,56.4,0,0,76.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.364443,1.791759,4.928214,1
-19,3,25,1,2,326308,0,11665.1,17.64887,1,9,1,125.4079,.2331002,0,0,0,125.641,0,0,0,6,0,6,56.4,0,0,76.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.364443,1.791759,4.833429,1
-19,3,25,1,3,326308,0,11665.1,18.64887,1,9,1,172.7234,21.3339,2.351432,0,0,196.4087,0,0,0,10,0,6,56.4,0,0,76.1,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.364443,1.791759,5.280198,1
-19,3,25,1,4,326308,0,11665.1,19.64887,1,9,1,123.1745,33.47425,0,0,718.2321,874.8809,1,0,0,7,0,6,56.4,0,0,76.1,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.364443,1.791759,6.774088,1
-19,3,25,1,5,326308,0,11665.1,20.64887,1,9,1,85.70425,17.94872,0,0,0,103.653,0,0,0,5,0,6,56.4,0,0,76.1,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.364443,1.791759,4.641048,1
-19,3,25,1,1,326309,0,11665.1,15.72074,0,9,1,14.62551,0,0,0,0,14.62551,0,0,0,1,0,6,94.7,3.4,0,89.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.364443,1.791759,2.682767,1
-19,3,25,1,2,326309,0,11665.1,16.72074,0,9,1,16.31702,0,0,0,0,16.31702,0,0,0,1,0,6,94.7,3.4,0,89.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.364443,1.791759,2.792208,1
-19,3,25,1,3,326309,0,11665.1,17.72074,0,9,1,46.60111,2.201796,0,0,0,48.80291,0,0,0,1,0,6,94.7,3.4,0,89.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.364443,1.791759,3.88779,1
-19,3,25,1,4,326309,0,11665.1,18.72074,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,94.7,3.4,0,89.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.364443,1.791759,,0
-19,3,25,1,5,326309,0,11665.1,19.72074,0,9,1,6.761503,0,0,0,0,6.761503,0,0,0,0,0,6,94.7,3.4,0,89.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.364443,1.791759,1.911245,1
-19,3,25,1,1,326310,0,11665.1,8.711842,1,9,1,7.591093,0,20.24291,0,0,27.83401,0,0,0,0,1,6,76.7,9.967326,0,74.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.364443,1.791759,3.326259,1
-19,3,25,1,2,326310,0,11665.1,9.711842,1,9,1,32.89044,0,0,0,0,32.89044,0,0,0,2,0,6,76.7,9.967326,0,74.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.364443,1.791759,3.493182,1
-19,3,25,1,3,326310,0,11665.1,10.71184,1,9,1,25.22445,8.824284,10.2608,0,0,44.30953,0,0,0,2,1,6,76.7,9.967326,0,74.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.364443,1.791759,3.7912,1
-19,3,25,1,4,326310,0,11665.1,11.71184,1,9,1,90.17679,12.3751,13.06687,0,0,115.6188,0,0,0,6,0,6,76.7,9.967326,0,74.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.364443,1.791759,4.750298,1
-19,3,25,1,5,326310,0,11665.1,12.71184,1,9,1,57.93818,2.054795,21.42606,0,0,81.41904,0,0,0,5,1,6,76.7,9.967326,0,74.1,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.364443,1.791759,4.399609,1
-19,3,25,1,1,326311,0,11665.1,41.53046,0,5,1,7.591093,0,0,0,0,7.591093,0,0,0,1,0,6,78.2,6.9,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.364443,1.791759,2.026976,1
-19,3,25,1,2,326311,0,11665.1,42.53046,0,5,1,96.13054,0,4.662004,0,0,100.7925,0,0,0,3,0,6,78.2,6.9,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.364443,1.791759,4.613064,1
-19,3,25,1,3,326311,0,11665.1,43.53046,0,5,1,60.93202,0,0,0,0,60.93202,0,0,0,4,0,6,78.2,6.9,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.364443,1.791759,4.109759,1
-19,3,25,1,4,326311,0,11665.1,44.53046,0,5,1,16.33359,0,0,0,0,16.33359,0,0,0,2,0,6,78.2,6.9,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.364443,1.791759,2.793224,1
-19,3,25,1,5,326311,0,11665.1,45.53046,0,5,1,435.8834,7.235687,23.1823,0,737.0566,1203.358,1,0,0,8,1,6,78.2,6.9,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.364443,1.791759,7.092871,1
-19,3,25,1,1,326312,0,11665.1,39.3128,1,9,1,80.46558,1.3917,0,0,0,81.85728,0,0,0,7,0,6,80.9,17.2,0,93.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,93.2,9.364443,1.791759,4.404977,1
-19,3,25,1,2,326312,0,11665.1,40.3128,1,9,1,111.8881,8.275059,5.594406,0,0,125.7576,0,0,0,7,0,6,80.9,17.2,0,93.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,93.2,9.364443,1.791759,4.834356,1
-19,3,25,1,3,326312,0,11665.1,41.3128,1,9,1,59.47841,58.55066,0,0,0,118.0291,0,0,0,5,1,6,80.9,17.2,0,93.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,93.2,9.364443,1.791759,4.770931,1
-19,3,25,1,4,326312,0,11665.1,42.3128,1,9,1,495.196,72.92467,24.21214,0,0,592.3328,0,0,0,6,0,6,80.9,17.2,0,93.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,93.2,9.364443,1.791759,6.384068,1
-19,3,25,1,5,326312,0,11665.1,43.3128,1,9,1,215.929,19.74008,11.9424,0,0,247.6115,0,0,0,9,0,6,80.9,17.2,0,93.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,93.2,9.364443,1.791759,5.511861,1
-19,3,25,1,1,326313,0,11665.1,17.64545,0,9,1,80.5921,0,0,0,0,80.5921,0,0,0,3,0,6,79.8,6.9,0,90.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.364443,1.791759,4.3894,1
-19,3,25,1,2,326313,0,11665.1,18.64545,0,9,1,37.06294,14.63869,0,0,0,51.70163,0,0,0,4,0,6,79.8,6.9,0,90.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.364443,1.791759,3.945489,1
-19,3,25,1,3,326313,0,11665.1,19.64545,0,9,1,61.56477,20.00855,0,0,0,81.57332,0,0,0,2,7,6,79.8,6.9,0,90.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.364443,1.791759,4.401502,1
-19,3,25,1,4,326313,0,11665.1,20.64545,0,9,1,65.71868,0,0,0,0,65.71868,0,0,0,2,0,6,79.8,6.9,0,90.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.364443,1.791759,4.185383,1
-19,3,25,1,5,326313,0,11665.1,21.64545,0,9,1,73.76186,18.22972,0,0,0,91.99157,0,0,0,9,0,6,79.8,6.9,0,90.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.364443,1.791759,4.521697,1
-11,3,0,0,1,326342,0,9416.422,18.47502,1,11,1,34.00309,0,30.9119,0,0,64.91499,0,0,0,2,0,3,82.4,6.9,0,87.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,87.5,9.150316,1.098612,4.173079,1
-11,3,0,0,2,326342,0,9416.422,19.47502,1,11,1,278.9678,8.333333,15.15152,0,0,302.4526,0,0,0,3,0,3,82.4,6.9,0,87.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,87.5,9.150316,1.098612,5.711925,1
-11,3,0,0,3,326342,0,9416.422,20.47502,1,11,1,10.83658,0,0,0,0,10.83658,0,0,0,1,0,3,82.4,6.9,0,87.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,87.5,9.150316,1.098612,2.382928,1
-11,3,0,0,1,326343,0,9416.422,60.98289,0,8,1,18.54714,35.23957,0,0,0,53.78671,0,0,0,3,0,3,95.7,3.4,0,59.1,0,36.4,0,0,1.098612,3.594569,0,0,0,0,0,0,59.1,9.150316,1.098612,3.985026,1
-11,3,0,0,2,326343,0,9416.422,61.98289,0,8,1,33.14394,45.2178,0,0,0,78.36174,0,0,0,4,0,3,95.7,3.4,0,59.1,0,36.4,0,0,1.098612,3.594569,0,0,0,0,0,0,59.1,9.150316,1.098612,4.361336,1
-11,3,0,0,3,326343,0,9416.422,62.98289,0,8,1,29.47551,40.94062,0,0,0,70.41612,0,0,0,4,0,3,95.7,3.4,0,59.1,0,36.4,0,0,1.098612,3.594569,0,0,0,0,0,0,59.1,9.150316,1.098612,4.254422,1
-11,3,0,0,1,326344,0,9416.422,57.59343,1,12,1,33.48789,24.96136,35.03349,0,0,93.48274,0,0,0,1,3,3,65.4,10.3,0,70.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,70.5,9.150316,1.098612,4.537777,1
-11,3,0,0,2,326344,0,9416.422,58.59343,1,12,1,69.12878,29.21402,153.8826,0,0,252.2254,0,0,0,3,3,3,65.4,10.3,0,70.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,70.5,9.150316,1.098612,5.530323,1
-11,3,0,0,3,326344,0,9416.422,59.59343,1,12,1,21.67317,19.18075,31.85956,0,0,72.71348,0,0,0,1,2,3,65.4,10.3,0,70.5,0,36.4,0,0,1.098612,3.594569,0,0,0,1,0,0,70.5,9.150316,1.098612,4.286527,1
-13,3,0,1,1,326349,0,10212.9,5.71937,0,12,1,64.91499,7.676455,28.85111,0,0,101.4426,0,0,0,6,0,4,96.7,9.967326,0,44.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.231505,1.386294,4.619493,1
-13,3,0,1,2,326349,0,10212.9,6.71937,0,12,1,38.02083,6.605114,0,0,0,44.62595,0,0,0,1,0,4,96.7,9.967326,0,44.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.231505,1.386294,3.798316,1
-13,3,0,1,3,326349,0,10212.9,7.71937,0,12,1,123.9705,61.59515,9.536194,0,0,195.1019,0,0,0,44,0,4,96.7,9.967326,0,44.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.231505,1.386294,5.273522,1
-13,3,0,1,1,326350,0,10212.9,33.72758,1,12,1,0,13.29212,0,0,0,13.29212,0,0,0,0,0,4,71.8,0,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,9.231505,1.386294,2.587171,1
-13,3,0,1,2,326350,0,10212.9,34.72758,1,12,1,18.93939,0,0,0,0,18.93939,0,0,0,1,0,4,71.8,0,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,9.231505,1.386294,2.941244,1
-13,3,0,1,3,326350,0,10212.9,35.72758,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.8,0,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,9.231505,1.386294,,0
-13,3,0,1,1,326351,0,10212.9,16.30664,1,12,1,12.36476,0,0,0,0,12.36476,0,0,0,2,0,4,80.9,10.3,0,69.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.231505,1.386294,2.514851,1
-13,3,0,1,2,326351,0,10212.9,17.30664,1,12,1,17.99242,0,0,0,0,17.99242,0,0,0,2,0,4,80.9,10.3,0,69.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.231505,1.386294,2.889951,1
-13,3,0,1,3,326351,0,10212.9,18.30664,1,12,1,70.06935,7.433897,0,0,207.7677,285.2709,1,0,0,4,0,4,80.9,10.3,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.231505,1.386294,5.653439,1
-13,3,0,1,1,326352,0,10212.9,34.69405,0,11,1,228.2329,0,12.87996,0,0,241.1128,0,0,0,0,25,4,79.8,3.4,1,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.231505,1.386294,5.485265,1
-13,3,0,1,2,326352,0,10212.9,35.69405,0,11,1,18.93939,0,0,0,0,18.93939,0,0,0,1,0,4,79.8,3.4,1,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.231505,1.386294,2.941244,1
-13,3,0,1,3,326352,0,10212.9,36.69405,0,11,1,27.82835,9.427829,0,0,0,37.25618,0,0,0,1,0,4,79.8,3.4,1,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.231505,1.386294,3.617818,1
-11,3,0,1,1,326353,0,5597.654,28.46544,0,8,1,84.67825,29.69867,5.362615,0,0,119.7395,0,0,0,7,0,4,74.5,10.3,0,44.3,0,371.52,0,0,1.386294,5.917603,0,0,0,1,0,0,44.3,8.630281,1.386294,4.785319,1
-11,3,0,1,2,326353,0,5597.654,29.46544,0,8,1,326.301,7.243319,0,0,1894.28,2227.825,1,0,0,6,0,4,74.5,10.3,0,44.3,0,371.52,0,0,1.386294,5.917603,0,0,0,1,0,0,44.3,8.630281,1.386294,7.708781,1
-11,3,0,1,3,326353,0,5597.654,30.46544,0,8,1,560.0172,40.49871,0,0,1279.209,1879.725,1,0,0,10,6,4,74.5,10.3,0,44.3,0,371.52,0,0,1.386294,5.917603,0,0,0,1,0,0,44.3,8.630281,1.386294,7.538881,1
-11,3,0,1,1,326354,0,5597.654,6.291581,0,8,1,0,2.808989,0,68.94791,0,2.808989,0,0,3,0,0,4,56.7,9.967326,0,63,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,63,8.630281,1.386294,1.032825,1
-11,3,0,1,2,326354,0,5597.654,7.291581,0,8,1,28.12939,2.461322,0,0,0,30.59072,0,0,0,2,2,4,56.7,9.967326,0,63,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,63,8.630281,1.386294,3.420696,1
-11,3,0,1,3,326354,0,5597.654,8.291581,0,8,1,23.51677,10.83405,0,0,0,34.35082,0,0,0,2,0,4,56.7,9.967326,0,63,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,63,8.630281,1.386294,3.536626,1
-11,3,0,1,1,326355,0,5597.654,4.692676,0,8,1,17.87538,0,0,0,0,17.87538,0,0,0,1,0,4,83.39137,9.967326,0,81.5,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,81.5,8.630281,1.386294,2.883425,1
-11,3,0,1,2,326355,0,5597.654,5.692676,0,8,1,17.81528,9.657759,0,0,0,27.47304,0,0,0,3,0,4,83.39137,9.967326,0,81.5,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,81.5,8.630281,1.386294,3.313205,1
-11,3,0,1,3,326355,0,5597.654,6.692676,0,8,1,17.19691,14.91831,0,0,0,32.11522,0,0,0,2,0,4,83.39137,9.967326,0,81.5,0,371.52,1,0,1.386294,5.917603,0,0,0,0,0,0,81.5,8.630281,1.386294,3.46933,1
-11,3,0,1,1,326356,0,5597.654,25.30322,1,8,1,0,18.94791,0,0,0,18.94791,0,0,0,0,0,4,54.8,6.9,0,77.4,0,371.52,0,0,1.386294,5.917603,0,0,0,0,0,0,77.4,8.630281,1.386294,2.941694,1
-11,3,0,1,2,326356,0,5597.654,26.30322,1,8,1,25.31646,12.04876,25.78528,0,0,63.15049,0,0,0,1,1,4,54.8,6.9,0,77.4,0,371.52,0,0,1.386294,5.917603,0,0,0,0,0,0,77.4,8.630281,1.386294,4.145521,1
-11,3,0,1,3,326356,0,5597.654,27.30322,1,8,1,5.159071,49.31212,0,12.89768,0,54.4712,0,0,1,1,0,4,54.8,6.9,0,77.4,0,371.52,0,0,1.386294,5.917603,0,0,0,0,0,0,77.4,8.630281,1.386294,3.997672,1
-13,3,0,1,1,326374,0,8395.895,25.49487,1,12,1,60.10725,23.05414,0,0,1243.672,1326.833,2,0,0,4,0,3,26.1,27.6,1,21.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,21.6,9.035617,1.098612,7.19055,1
-13,3,0,1,2,326374,0,8395.895,26.49487,1,12,1,91.42053,3.375527,28.12939,79.69995,285.2086,408.1341,1,0,9,6,1,4,26.1,27.6,1,21.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,21.6,9.035617,1.386294,6.011596,1
-13,3,0,1,3,326374,0,8395.895,27.49487,1,12,1,18.83061,3.753224,0,0,0,22.58384,0,0,0,1,0,4,26.1,27.6,1,21.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,21.6,9.035617,1.386294,3.117234,1
-13,3,0,1,1,326375,0,8395.895,1.798768,1,12,1,17.87538,5.449438,0,0,0,23.32482,0,0,0,3,0,3,83.39137,9.967326,0,44.4,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.035617,1.098612,3.149518,1
-13,3,0,1,2,326375,0,8395.895,2.798768,1,12,1,13.50211,6.479137,0,0,0,19.98125,0,0,0,1,0,4,83.39137,9.967326,0,44.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.035617,1.386294,2.994794,1
-13,3,0,1,3,326375,0,8395.895,3.798768,1,12,1,23.8607,2.050731,0,0,0,25.91144,0,0,0,4,0,4,83.39137,9.967326,0,44.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.035617,1.386294,3.254684,1
-13,3,0,1,1,326376,0,8395.895,27.49076,0,12,1,52.27273,6.001021,0,0,0,58.27375,0,0,0,1,2,3,81.4,0,0,90.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.035617,1.098612,4.065152,1
-13,3,0,1,2,326376,0,8395.895,28.49076,0,12,1,94.37412,4.041256,0,0,0,98.41537,0,0,0,1,0,4,81.4,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.035617,1.386294,4.589197,1
-13,3,0,1,3,326376,0,8395.895,29.49076,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,90.9,9.035617,1.386294,,0
-13,3,0,1,1,326433,0,1994.135,53.70842,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,27.6,1,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,67.5,7.598467,0,,0
-13,3,0,1,2,326433,0,1994.135,54.70842,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,27.6,1,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,67.5,7.598467,0,,0
-13,3,0,1,3,326433,0,1994.135,55.70842,0,14,1,5.635024,0,0,0,0,5.635024,0,0,0,1,0,1,78.2,27.6,1,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,67.5,7.598467,0,1.729001,1
-13,3,0,1,4,326433,0,1994.135,56.70842,0,14,1,5.120126,0,0,0,0,5.120126,0,0,0,1,0,1,78.2,27.6,1,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,67.5,7.598467,0,1.633179,1
-13,3,0,1,5,326433,0,1994.135,57.70842,0,14,1,29.3381,0,0,0,0,29.3381,0,0,0,1,0,1,78.2,27.6,1,67.5,150,0,0,0,0,0,1,4.564348,5.061929,0,1,0,67.5,7.598467,0,3.378887,1
-13,3,0,0,1,326435,0,7196.79,32.0438,1,12,1,21.05263,6.958502,0,0,0,28.01113,0,0,0,2,0,4,68.6,0,1,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.881529,1.386294,3.332602,1
-13,3,0,0,2,326435,0,7196.79,33.0438,1,12,1,14.35897,1.258741,0,0,0,15.61772,0,0,0,1,0,4,68.6,0,1,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.881529,1.386294,2.748406,1
-13,3,0,0,3,326435,0,7196.79,34.0438,1,12,1,8.550663,7.73835,0,0,0,16.28901,0,0,0,1,0,4,68.6,0,1,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.881529,1.386294,2.790491,1
-13,3,0,0,1,326436,0,7196.79,9.111567,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.7,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.881529,1.386294,,0
-13,3,0,0,2,326436,0,7196.79,10.11157,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.7,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.881529,1.386294,,0
-13,3,0,0,3,326436,0,7196.79,11.11157,0,12,1,50.79094,0,0,0,0,50.79094,0,0,0,2,0,4,71.7,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.881529,1.386294,3.927718,1
-13,3,0,0,1,326437,0,7196.79,12.2601,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,68.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.386294,,0
-13,3,0,0,2,326437,0,7196.79,13.2601,1,12,1,15.38461,0,0,0,0,15.38461,0,0,0,1,0,4,68.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.386294,2.733368,1
-13,3,0,0,3,326437,0,7196.79,14.2601,1,12,1,0,0,0,175.2886,0,0,0,0,9,0,0,4,68.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.386294,,0
-13,3,0,0,1,326438,0,7196.79,10.423,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,9.967326,1,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.881529,1.386294,,0
-13,3,0,0,2,326438,0,7196.79,11.423,0,12,1,0,0,0,440.5594,0,0,0,0,21,0,0,4,61.7,9.967326,1,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.881529,1.386294,,0
-13,3,0,0,3,326438,0,7196.79,12.423,0,12,1,57.67422,0,.8550662,192.3899,1362.142,1420.671,1,0,10,5,0,4,61.7,9.967326,1,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.881529,1.386294,7.258885,1
-11,3,0,0,1,326450,0,6411.144,23.8987,1,12,1,104.6987,19.5097,0,0,0,124.2084,0,0,0,4,0,3,80.3,3.4,0,89.8,0,261.48,0,0,1.098612,5.566358,0,0,0,0,0,0,89.8,8.765949,1.098612,4.82196,1
-11,3,0,0,2,326450,0,6411.144,24.8987,1,12,1,11.48617,32.30192,0,133.6146,581.3455,625.1336,1,0,7,1,0,3,80.3,3.4,0,89.8,0,261.48,0,0,1.098612,5.566358,0,0,0,0,0,0,89.8,8.765949,1.098612,6.437965,1
-11,3,0,0,3,326450,0,6411.144,25.8987,1,12,1,23.64574,33.80051,0,0,0,57.44626,0,0,0,2,0,4,80.3,3.4,0,89.8,0,261.48,0,0,1.386294,5.566358,0,0,0,0,0,0,89.8,8.765949,1.386294,4.05085,1
-11,3,0,0,1,326451,0,6411.144,1.516769,1,12,1,105.2094,20.37794,27.06844,0,0,152.6558,0,0,0,10,0,3,83.39137,9.967326,1,55.6,0,261.48,1,1,1.098612,5.566358,0,0,0,0,0,0,55.6,8.765949,1.098612,5.028185,1
-11,3,0,0,2,326451,0,6411.144,2.516769,1,12,1,34.2241,14.53352,27.19175,0,0,75.94936,0,0,0,5,0,3,83.39137,9.967326,1,55.6,0,261.48,1,1,1.098612,5.566358,0,0,0,0,0,0,55.6,8.765949,1.098612,4.330067,1
-11,3,0,0,3,326451,0,6411.144,3.516769,1,12,1,29.23474,16.83147,0,0,0,46.06621,0,0,0,2,1,4,83.39137,9.967326,1,55.6,0,261.48,1,1,1.386294,5.566358,0,0,0,0,0,0,55.6,8.765949,1.386294,3.83008,1
-11,3,0,0,1,326452,0,6411.144,24.83504,0,12,1,34.72932,5.87334,0,0,0,40.60266,0,0,0,3,2,3,67.6,0,0,96.6,0,261.48,0,0,1.098612,5.566358,0,0,0,0,0,0,96.6,8.765949,1.098612,3.703834,1
-11,3,0,0,2,326452,0,6411.144,25.83504,0,12,1,23.44116,2.648851,0,314.1116,0,26.09001,0,0,6,2,0,3,67.6,0,0,96.6,0,261.48,0,0,1.098612,5.566358,0,0,0,0,0,0,96.6,8.765949,1.098612,3.261553,1
-11,3,0,0,3,326452,0,6411.144,26.83504,0,12,1,8.598453,0,24.07567,0,0,32.67412,0,0,0,0,1,4,67.6,0,0,96.6,0,261.48,0,0,1.386294,5.566358,0,0,0,0,0,0,96.6,8.765949,1.386294,3.486583,1
-11,3,0,1,1,326459,0,5290.323,26.2998,1,12,1,79.82635,29.26966,25.53626,168.5393,0,134.6323,0,0,10,4,1,3,74.5,3.4,0,79.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.5,8.573824,1.098612,4.902547,1
-11,3,0,1,2,326459,0,5290.323,27.2998,1,12,1,197.3746,13.63338,0,703.2349,0,211.008,0,0,48,13,7,3,74.5,3.4,0,79.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.5,8.573824,1.098612,5.351896,1
-11,3,0,1,3,326459,0,5290.323,28.2998,1,12,1,31.16939,9.931212,22.7859,610.4901,0,63.8865,0,0,45,2,1,3,74.5,3.4,0,79.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,79.5,8.573824,1.098612,4.157108,1
-11,3,0,1,1,326460,0,5290.323,27.70431,0,16,1,113.7385,11.8284,26.55771,561.7977,0,152.1246,0,0,44,5,0,3,43.6,20.7,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,8.573824,1.098612,5.0247,1
-11,3,0,1,2,326460,0,5290.323,28.70431,0,16,1,96.57759,6.81669,0,562.5879,0,103.3943,0,0,35,6,8,3,43.6,20.7,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,8.573824,1.098612,4.63855,1
-11,3,0,1,3,326460,0,5290.323,29.70431,0,16,1,87.70422,0,23.64574,683.362,0,111.35,0,0,42,1,8,3,43.6,20.7,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,8.573824,1.098612,4.712678,1
-11,3,0,1,1,326461,0,5290.323,6.704997,0,12,1,15.32176,0,0,0,0,15.32176,0,0,0,1,1,3,80,9.967326,0,74.1,0,0,1,0,1.098612,0,0,0,0,1,0,0,74.1,8.573824,1.098612,2.729274,1
-11,3,0,1,2,326461,0,5290.323,7.704997,0,12,1,22.03469,0,0,14.0647,0,22.03469,0,0,1,2,1,3,80,9.967326,0,74.1,0,0,1,0,1.098612,0,0,0,0,1,0,0,74.1,8.573824,1.098612,3.092618,1
-11,3,0,1,3,326461,0,5290.323,8.704996,0,12,1,153.3104,1.891659,0,4.299226,0,155.2021,0,0,1,5,1,3,80,9.967326,0,74.1,0,0,1,0,1.098612,0,0,0,0,1,0,0,74.1,8.573824,1.098612,5.044728,1
-11,3,0,1,1,326497,0,9709.091,25.39357,1,16,1,57.18702,6.646059,25.75992,0,0,89.59299,0,0,0,3,1,2,86.7,17.2,1,42,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,42,9.180921,.6931472,4.495277,1
-11,3,0,1,2,326497,0,9709.091,26.39357,1,16,1,80.49242,2.035985,2.698864,345.644,0,85.22727,0,0,18,2,8,2,86.7,17.2,1,42,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,42,9.180921,.6931472,4.445322,1
-11,3,0,1,3,326497,0,9709.091,27.39357,1,16,1,589.4018,7.485912,30.51582,641.5258,0,627.4036,0,0,37,6,42,2,86.7,17.2,1,42,0,232.8,0,0,.6931472,5.45018,0,0,0,1,0,0,42,9.180921,.6931472,6.44159,1
-11,3,0,1,1,326498,0,9709.091,25.78782,0,16,1,35.54869,0,26.79031,0,0,62.339,0,0,0,3,0,2,87.8,6.9,0,77.3,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,0,77.3,9.180921,.6931472,4.132587,1
-11,3,0,1,2,326498,0,9709.091,26.78782,0,16,1,10.41667,0,0,23.67424,0,10.41667,0,0,1,1,0,2,87.8,6.9,0,77.3,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,0,77.3,9.180921,.6931472,2.343407,1
-11,3,0,1,3,326498,0,9709.091,27.78782,0,16,1,436.7447,7.204161,0,0,0,443.9489,0,0,0,3,7,2,87.8,6.9,0,77.3,0,232.8,0,0,.6931472,5.45018,0,0,0,0,0,0,77.3,9.180921,.6931472,6.095709,1
-13,3,0,0,1,326499,0,7573.021,20.95277,0,12,1,25.80972,2.024292,0,0,0,27.83401,0,0,0,2,0,2,89.4,13.8,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,79.5,8.932479,.6931472,3.326259,1
-13,3,0,0,2,326499,0,7573.021,21.95277,0,12,1,4.662004,1.818182,0,0,0,6.480186,0,0,0,1,0,2,89.4,13.8,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,79.5,8.932479,.6931472,1.868749,1
-13,3,0,0,3,326499,0,7573.021,22.95277,0,12,1,18.38392,0,0,0,0,18.38392,0,0,0,0,0,2,89.4,13.8,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,79.5,8.932479,.6931472,2.911477,1
-13,3,0,0,1,326500,0,7573.021,19.67146,1,12,1,16.70041,0,24.79757,0,0,41.49797,0,0,0,1,1,2,86.2,3.4,0,60.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,60.2,8.932479,.6931472,3.725645,1
-13,3,0,0,2,326500,0,7573.021,20.67146,1,12,1,26.57343,.9277389,0,0,0,27.50117,0,0,0,1,0,2,86.2,3.4,0,60.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,60.2,8.932479,.6931472,3.314228,1
-13,3,0,0,3,326500,0,7573.021,21.67146,1,12,1,19.66652,.722531,0,0,0,20.38906,0,0,0,3,0,2,86.2,3.4,0,60.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,60.2,8.932479,.6931472,3.014998,1
-15,3,95,1,1,326563,0,7196.79,48.39425,0,8,1,84.00809,1.821862,0,0,275.6731,361.503,1,0,0,2,0,1,55.3,13.8,0,52.3,230,230,0,0,0,5.438079,0,4.564348,5.489373,0,1,0,52.3,8.881529,0,5.89027,1
-15,3,95,1,2,326563,0,7196.79,49.39425,0,8,1,0,3.356643,0,0,875.049,878.4056,1,0,0,0,0,1,55.3,13.8,0,52.3,230,230,0,0,0,5.438079,0,4.564348,5.489373,0,1,0,52.3,8.881529,0,6.778109,1
-15,3,95,1,3,326563,0,7196.79,50.39425,0,8,1,93.84352,50.55152,74.8183,0,1047.811,1267.024,2,0,0,9,0,1,55.3,13.8,0,52.3,230,230,0,0,0,5.438079,0,4.564348,5.489373,0,1,0,52.3,8.881529,0,7.144426,1
-18,3,25,0,1,326564,0,5448.68,52.79671,1,12,1,40.70067,0,37.60948,0,0,78.31015,0,0,0,1,1,4,69.7,17.2,0,80.7,707.4,707.4,0,0,1.386294,6.561596,0,3.258096,7.947891,0,0,0,80.7,8.603312,1.386294,4.360677,1
-18,3,25,0,2,326564,0,5448.68,53.79671,1,12,1,7.575758,0,0,0,0,7.575758,0,0,0,1,0,4,69.7,17.2,0,80.7,707.4,707.4,0,0,1.386294,6.561596,0,3.258096,7.947891,0,0,0,80.7,8.603312,1.386294,2.024953,1
-18,3,25,0,3,326564,0,5448.68,54.79671,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,69.7,17.2,0,80.7,707.4,707.4,0,0,1.386294,6.561596,0,3.258096,7.947891,0,0,0,80.7,8.603312,1.386294,,0
-18,3,25,0,1,326565,0,5448.68,15.19233,0,12,1,68.97475,0,0,0,0,68.97475,0,0,0,2,0,4,56.4,10.3,0,100,707.4,707.4,1,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,100,8.603312,1.386294,4.23374,1
-18,3,25,0,2,326565,0,5448.68,16.19233,0,12,1,125.4735,0,20.83333,0,0,146.3068,0,0,0,4,1,4,56.4,10.3,0,100,707.4,707.4,1,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,100,8.603312,1.386294,4.985706,1
-18,3,25,0,3,326565,0,5448.68,17.19233,0,12,1,104.2046,0,0,0,0,104.2046,0,0,0,5,0,4,56.4,10.3,0,100,707.4,707.4,1,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,100,8.603312,1.386294,4.646356,1
-18,3,25,0,1,326566,0,5448.68,12.95003,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,9.967326,0,85.2,707.4,707.4,1,1,1.386294,6.561596,0,3.258096,7.947891,0,0,0,85.2,8.603312,1.386294,,0
-18,3,25,0,2,326566,0,5448.68,13.95003,1,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,78.3,9.967326,0,85.2,707.4,707.4,1,1,1.386294,6.561596,0,3.258096,7.947891,0,0,0,85.2,8.603312,1.386294,1.737271,1
-18,3,25,0,3,326566,0,5448.68,14.95003,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,9.967326,0,85.2,707.4,707.4,1,1,1.386294,6.561596,0,3.258096,7.947891,0,0,0,85.2,8.603312,1.386294,,0
-18,3,25,0,1,326567,0,5448.68,17.87543,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,62.2,6.9,0,53.4,707.4,707.4,1,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,53.4,8.603312,1.386294,,0
-18,3,25,0,2,326567,0,5448.68,18.87543,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,62.2,6.9,0,53.4,707.4,707.4,0,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,53.4,8.603312,1.386294,,0
-18,3,25,0,3,326567,0,5448.68,19.87543,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,62.2,6.9,0,53.4,707.4,707.4,0,0,1.386294,6.561596,0,3.258096,7.947891,1,0,0,53.4,8.603312,1.386294,,0
-18,3,25,1,1,326575,0,2072.141,9.598905,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,55.6,159,159,1,1,1.098612,5.068904,0,3.258096,6.455199,0,0,0,55.6,7.63682,1.098612,,0
-18,3,25,1,2,326575,0,2072.141,10.5989,1,10,1,12.12121,1.864802,0,0,0,13.98601,0,0,0,1,0,3,85,9.967326,0,55.6,159,159,1,1,1.098612,5.068904,0,3.258096,6.455199,0,0,0,55.6,7.63682,1.098612,2.638058,1
-18,3,25,1,3,326575,0,2072.141,11.5989,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,55.6,159,159,1,1,1.098612,5.068904,0,3.258096,6.455199,0,0,0,55.6,7.63682,1.098612,,0
-18,3,25,1,1,326576,0,2072.141,11.87953,0,10,1,40.10627,0,0,0,0,40.10627,0,0,0,2,0,3,85,9.967326,0,77.8,159,159,1,0,1.098612,5.068904,0,3.258096,6.455199,0,0,0,77.8,7.63682,1.098612,3.691533,1
-18,3,25,1,2,326576,0,2072.141,12.87953,0,10,1,6.993007,0,0,0,0,6.993007,0,0,0,1,0,3,85,9.967326,0,77.8,159,159,1,0,1.098612,5.068904,0,3.258096,6.455199,0,0,0,77.8,7.63682,1.098612,1.944911,1
-18,3,25,1,3,326576,0,2072.141,13.87953,0,10,1,233.0911,0,3.471569,0,0,236.5626,0,0,0,6,0,3,85,9.967326,0,77.8,159,159,1,0,1.098612,5.068904,0,3.258096,6.455199,0,0,0,77.8,7.63682,1.098612,5.466213,1
-18,3,25,1,1,326577,0,2072.141,31.01437,1,10,1,111.7662,0,0,0,0,111.7662,0,0,0,4,0,3,71.3,17.2,1,39.8,159,159,0,0,1.098612,5.068904,0,3.258096,6.455199,1,0,0,39.8,7.63682,1.098612,4.716409,1
-18,3,25,1,2,326577,0,2072.141,32.01437,1,10,1,51.28205,9.86014,0,0,0,61.14219,0,0,0,5,0,3,71.3,17.2,1,39.8,159,159,0,0,1.098612,5.068904,0,3.258096,6.455199,1,0,0,39.8,7.63682,1.098612,4.113202,1
-18,3,25,1,3,326577,0,2072.141,33.01437,1,10,1,283.4117,6.819153,0,0,2864.134,3154.365,3,0,0,2,8,3,71.3,17.2,1,39.8,159,159,0,0,1.098612,5.068904,0,3.258096,6.455199,1,0,0,39.8,7.63682,1.098612,8.056542,1
-11,3,0,1,1,326592,0,2038.123,58.00684,0,12,1,48.5189,84.72932,31.66496,0,0,164.9132,0,0,0,3,2,2,67,13.8,1,60.2,0,429,0,0,.6931472,6.061457,0,0,0,0,1,0,60.2,7.620275,.6931472,5.105419,1
-11,3,0,1,2,326592,0,2038.123,59.00684,0,12,1,122.3629,101.5002,0,0,0,223.8631,0,0,0,4,0,2,67,13.8,1,60.2,0,429,0,0,.6931472,6.061457,0,0,0,0,1,0,60.2,7.620275,.6931472,5.411035,1
-11,3,0,1,3,326592,0,2038.123,60.00684,0,12,1,127.687,236.7584,0,0,1412.554,1776.999,1,0,0,4,1,2,67,13.8,1,60.2,0,429,0,0,.6931472,6.061457,0,0,0,0,1,0,60.2,7.620275,.6931472,7.482681,1
-11,3,0,1,1,326593,0,2038.123,55.96441,1,7,1,7.660879,0,0,0,0,7.660879,0,0,0,0,1,2,78.7,13.8,0,89.8,0,429,0,0,.6931472,6.061457,0,0,0,0,0,0,89.8,7.620275,.6931472,2.036127,1
-11,3,0,1,2,326593,0,2038.123,56.96441,1,7,1,30.47351,0,29.53587,0,0,60.00938,0,0,0,1,0,2,78.7,13.8,0,89.8,0,429,0,0,.6931472,6.061457,0,0,0,0,0,0,89.8,7.620275,.6931472,4.094501,1
-11,3,0,1,3,326593,0,2038.123,57.96441,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,13.8,0,89.8,0,429,0,0,.6931472,6.061457,0,0,0,0,0,0,89.8,7.620275,.6931472,,0
-11,3,0,0,1,326594,0,8339.003,41.95209,0,12,1,51.72591,0,0,0,0,51.72591,0,0,0,1,0,7,77.1,6.9,0,83,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,83,9.028819,1.94591,3.945959,1
-11,3,0,0,2,326594,0,8339.003,42.95209,0,12,1,30.77652,0,19.88636,0,0,50.66288,0,0,0,1,1,7,77.1,6.9,0,83,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,83,9.028819,1.94591,3.925194,1
-11,3,0,0,3,326594,0,8339.003,43.95209,0,12,1,20.37278,0,0,0,0,20.37278,0,0,0,1,0,7,77.1,6.9,0,83,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,83,9.028819,1.94591,3.014199,1
-11,3,0,0,1,326595,0,8339.003,16.68994,0,12,1,12.87996,0,0,0,0,12.87996,0,0,0,2,0,7,84.6,0,0,86.4,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,86.4,9.028819,1.94591,2.555673,1
-11,3,0,0,2,326595,0,8339.003,17.68994,0,12,1,41.66667,4.450758,0,0,765.6155,811.733,1,0,0,5,0,7,84.6,0,0,86.4,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,86.4,9.028819,1.94591,6.699172,1
-11,3,0,0,3,326595,0,8339.003,18.68994,0,12,1,14.08756,4.616385,0,0,0,18.70395,0,0,0,1,0,7,84.6,0,0,86.4,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,86.4,9.028819,1.94591,2.928735,1
-11,3,0,0,1,326596,0,8339.003,14.84463,0,12,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,7,66.5,0,0,72.7,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,72.7,9.028819,1.94591,1.639382,1
-11,3,0,0,2,326596,0,8339.003,15.84463,0,12,1,86.64773,27.67519,0,0,0,114.3229,0,0,0,9,0,7,66.5,0,0,72.7,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,72.7,9.028819,1.94591,4.739027,1
-11,3,0,0,3,326596,0,8339.003,16.84463,0,12,1,21.67317,15.60468,0,0,0,37.27785,0,0,0,2,0,7,66.5,0,0,72.7,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,72.7,9.028819,1.94591,3.618399,1
-11,3,0,0,1,326597,0,8339.003,12.79398,0,12,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,7,93.3,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,1.639382,1
-11,3,0,0,2,326597,0,8339.003,13.79398,0,12,1,10.41667,0,0,0,0,10.41667,0,0,0,2,0,7,93.3,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,2.343407,1
-11,3,0,0,3,326597,0,8339.003,14.79398,0,12,1,6.068487,0,0,0,0,6.068487,0,0,0,1,0,7,93.3,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,1.803109,1
-11,3,0,0,1,326598,0,8339.003,38.59274,1,12,1,22.15353,0,25.75992,0,0,47.91345,0,0,0,1,1,7,81.9,17.2,0,90.9,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,90.9,9.028819,1.94591,3.869396,1
-11,3,0,0,2,326598,0,8339.003,39.59274,1,12,1,31.72348,0,0,0,0,31.72348,0,0,0,2,0,7,81.9,17.2,0,90.9,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,90.9,9.028819,1.94591,3.457057,1
-11,3,0,0,3,326598,0,8339.003,40.59274,1,12,1,53.74946,7.498916,0,0,0,61.24837,0,0,0,4,0,7,81.9,17.2,0,90.9,0,1246.56,0,0,1.94591,7.128143,0,0,0,0,0,0,90.9,9.028819,1.94591,4.114937,1
-11,3,0,0,1,326599,0,8339.003,8.238193,1,12,1,114.1164,6.93457,0,0,0,121.051,0,0,0,2,2,7,95,9.967326,1,96.3,0,1246.56,1,1,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,4.796212,1
-11,3,0,0,2,326599,0,8339.003,9.238193,1,12,1,144.8864,7.552083,1009.47,0,0,1161.908,0,0,0,6,3,7,95,9.967326,1,96.3,0,1246.56,1,1,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,7.057819,1
-11,3,0,0,3,326599,0,8339.003,10.23819,1,12,1,206.5453,13.58908,8.235804,0,0,228.3702,0,0,0,4,4,7,95,9.967326,1,96.3,0,1246.56,1,1,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,5.430968,1
-11,3,0,0,1,326600,0,8339.003,9.700206,0,12,1,10.30397,4.301906,0,0,0,14.60587,0,0,0,1,0,7,91.7,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,2.681424,1
-11,3,0,0,2,326600,0,8339.003,10.70021,0,12,1,10.41667,0,0,0,0,10.41667,0,0,0,2,0,7,91.7,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,2.343407,1
-11,3,0,0,3,326600,0,8339.003,11.70021,0,12,1,66.26354,2.557434,0,0,0,68.82098,0,0,0,4,1,7,91.7,9.967326,0,96.3,0,1246.56,1,0,1.94591,7.128143,0,0,0,0,0,0,96.3,9.028819,1.94591,4.231509,1
-11,3,0,1,1,326601,0,11000,4.774812,0,11,1,14.30031,10.11236,0,0,0,24.41267,0,0,0,3,0,6,83.39137,9.967326,0,92.6,0,0,1,0,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,3.195102,1
-11,3,0,1,2,326601,0,11000,5.774812,0,11,1,0,2.930145,0,0,0,2.930145,0,0,0,0,0,6,83.39137,9.967326,0,92.6,0,0,1,0,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,1.075052,1
-11,3,0,1,3,326601,0,11000,6.774812,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,83.39137,9.967326,0,92.6,0,0,1,0,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,,0
-11,3,0,1,1,326602,0,11000,33.26762,1,11,1,15.93463,0,0,0,0,15.93463,0,0,0,1,0,6,75,6.9,0,79.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,79.5,9.305741,1.791759,2.768495,1
-11,3,0,1,2,326602,0,11000,34.26762,1,11,1,78.27004,0,0,0,0,78.27004,0,0,0,3,0,6,75,6.9,0,79.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,79.5,9.305741,1.791759,4.360165,1
-11,3,0,1,3,326602,0,11000,35.26762,1,11,1,55.88994,0,0,0,0,55.88994,0,0,0,5,0,6,75,6.9,0,79.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,79.5,9.305741,1.791759,4.023385,1
-11,3,0,1,1,326603,0,11000,37.59069,0,8,1,28.08989,0,0,0,0,28.08989,0,0,0,0,0,6,78.7,17.2,1,68.2,0,0,0,0,1.791759,0,0,0,0,0,1,0,68.2,9.305741,1.791759,3.33541,1
-11,3,0,1,2,326603,0,11000,38.59069,0,8,1,19.69058,0,0,0,0,19.69058,0,0,0,1,0,6,78.7,17.2,1,68.2,0,0,0,0,1.791759,0,0,0,0,0,1,0,68.2,9.305741,1.791759,2.98014,1
-11,3,0,1,3,326603,0,11000,39.59069,0,8,1,22.7859,0,0,0,742.0551,764.8409,1,0,0,2,0,6,78.7,17.2,1,68.2,0,0,0,0,1.791759,0,0,0,0,0,1,0,68.2,9.305741,1.791759,6.639668,1
-11,3,0,1,1,326605,0,11000,4.774812,1,11,1,7.660879,1.659857,0,0,0,9.320735,0,0,0,1,0,6,83.39137,9.967326,0,77.8,0,0,1,1,1.791759,0,0,0,0,1,0,0,77.8,9.305741,1.791759,2.232241,1
-11,3,0,1,2,326605,0,11000,5.774812,1,11,1,24.37881,0,0,0,0,24.37881,0,0,0,3,0,6,83.39137,9.967326,0,77.8,0,0,1,1,1.791759,0,0,0,0,1,0,0,77.8,9.305741,1.791759,3.193714,1
-11,3,0,1,3,326605,0,11000,6.774812,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,83.39137,9.967326,0,77.8,0,0,1,1,1.791759,0,0,0,0,1,0,0,77.8,9.305741,1.791759,,0
-11,3,0,1,1,326606,0,11000,12.25736,1,11,1,25.53626,2.93667,0,0,0,28.47293,0,0,0,2,0,6,78.3,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,3.348954,1
-11,3,0,1,2,326606,0,11000,13.25736,1,11,1,257.0933,1.523676,0,0,0,258.617,0,0,0,0,0,6,78.3,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,5.555348,1
-11,3,0,1,3,326606,0,11000,14.25736,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.305741,1.791759,,0
-11,3,0,1,1,326607,0,11000,12.25736,0,11,1,52.34933,0,0,0,0,52.34933,0,0,0,2,0,6,88.3,9.967326,0,81.5,0,0,1,0,1.791759,0,0,0,0,0,1,0,81.5,9.305741,1.791759,3.957939,1
-11,3,0,1,2,326607,0,11000,13.25736,0,11,1,138.3029,0,0,0,0,138.3029,0,0,0,4,0,6,88.3,9.967326,0,81.5,0,0,1,0,1.791759,0,0,0,0,0,1,0,81.5,9.305741,1.791759,4.929446,1
-11,3,0,1,3,326607,0,11000,14.25736,0,11,1,12.46776,0,0,0,0,12.46776,0,0,0,2,0,6,88.3,9.967326,0,81.5,0,0,1,0,1.791759,0,0,0,0,0,1,0,81.5,9.305741,1.791759,2.523146,1
-13,3,0,1,1,326639,0,7196.79,33.22929,1,11.38739,1,150.4302,73.40587,0,0,452.9706,676.8067,1,0,0,17,0,3,71.8,13.8,0,88.6,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,88.6,8.881529,1.098612,6.517385,1
-13,3,0,1,2,326639,0,7196.79,34.22929,1,11.38739,1,332.7273,66.46154,0,0,1751.296,2150.485,1,0,0,16,0,3,71.8,13.8,0,88.6,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,88.6,8.881529,1.098612,7.673449,1
-13,3,0,1,3,326639,0,7196.79,35.22929,1,11.38739,1,131.2527,42.66781,0,0,0,173.9205,0,0,0,10,1,3,71.8,13.8,0,88.6,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,88.6,8.881529,1.098612,5.158598,1
-13,3,0,1,1,326640,0,7196.79,.9089665,1,11.38739,1,7.591093,21.35628,0,0,0,28.94737,0,0,0,0,0,3,83.39137,9.967326,0,100,450,873.84,1,1,1.098612,6.772897,1,4.564348,6.160541,0,0,0,100,8.881529,1.098612,3.365479,1
-13,3,0,1,2,326640,0,7196.79,1.908966,1,11.38739,1,11.65501,16.18648,0,0,0,27.84149,0,0,0,2,0,3,83.39137,9.967326,0,100,450,873.84,1,1,1.098612,6.772897,1,4.564348,6.160541,0,0,0,100,8.881529,1.098612,3.326527,1
-13,3,0,1,3,326640,0,7196.79,2.908967,1,11.38739,1,40.18811,10.47456,0,0,0,50.66268,0,0,0,2,0,3,83.39137,9.967326,0,100,450,873.84,1,1,1.098612,6.772897,1,4.564348,6.160541,0,0,0,100,8.881529,1.098612,3.925189,1
-13,3,0,1,1,326641,0,7196.79,35.96714,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,90.4,0,0,89.8,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,89.8,8.881529,1.098612,,0
-13,3,0,1,2,326641,0,7196.79,36.96714,0,12,1,15.85082,3.426574,0,0,0,19.27739,0,0,0,1,0,3,90.4,0,0,89.8,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,89.8,8.881529,1.098612,2.958933,1
-13,3,0,1,3,326641,0,7196.79,37.96714,0,12,1,73.96323,0,0,0,0,73.96323,0,0,0,3,0,3,90.4,0,0,89.8,450,873.84,0,0,1.098612,6.772897,1,4.564348,6.160541,1,0,0,89.8,8.881529,1.098612,4.303568,1
-10,3,50,1,1,326668,1,7196.79,40.17249,1,1,1,126.6358,16.44513,24.72952,38.63988,0,167.8104,0,0,5,10,0,1,74.46748,9.967326,.1572505,,457.5,0,0,0,0,0,0,3.931826,6.818924,0,0,1,72.06626,8.881529,0,5.122835,1
-13,3,0,1,1,326700,0,8140.411,11.46338,1,8,1,94.07558,1.726251,11.74668,0,0,107.5485,0,0,0,6,0,4,41.7,9.967326,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.004719,1.386294,4.677942,1
-13,3,0,1,2,326700,0,8140.411,12.46338,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,41.7,9.967326,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.004719,1.386294,,0
-13,3,0,1,3,326700,0,8140.411,13.46338,1,8,1,19.34652,1.88736,0,0,0,21.23388,0,0,0,2,0,4,41.7,9.967326,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.004719,1.386294,3.055598,1
-13,3,0,1,4,326700,0,8140.411,14.46338,1,8,1,98.10004,1.512214,0,0,0,99.61225,0,0,0,4,0,4,41.7,9.967326,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.004719,1.386294,4.601285,1
-13,3,0,1,5,326700,0,8140.411,15.46338,1,8,1,41.29512,4.918613,0,0,0,46.21373,0,0,0,2,2,4,41.7,9.967326,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.004719,1.386294,3.833277,1
-13,3,0,1,1,326701,0,8140.411,9.678303,0,8,1,21.24617,4.060266,0,0,0,25.30643,0,0,0,2,0,4,88.3,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.004719,1.386294,3.231059,1
-13,3,0,1,2,326701,0,8140.411,10.6783,0,8,1,9.376465,0,0,0,0,9.376465,0,0,0,1,0,4,88.3,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.004719,1.386294,2.238203,1
-13,3,0,1,3,326701,0,8140.411,11.6783,0,8,1,32.67412,0,0,0,0,32.67412,0,0,0,2,0,4,88.3,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.004719,1.386294,3.486583,1
-13,3,0,1,4,326701,0,8140.411,12.6783,0,8,1,11.63242,0,0,0,0,11.63242,0,0,0,1,0,4,88.3,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.004719,1.386294,2.453796,1
-13,3,0,1,5,326701,0,8140.411,13.6783,0,8,1,11.67728,0,0,0,0,11.67728,0,0,0,1,0,4,88.3,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.004719,1.386294,2.457645,1
-13,3,0,1,1,326702,0,8140.411,40.55031,1,8,1,12.76813,0,25.53626,0,0,38.30439,0,0,0,1,0,4,78.2,0,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.004719,1.386294,3.645565,1
-13,3,0,1,2,326702,0,8140.411,41.55031,1,8,1,389.2639,3.516174,0,0,0,392.7801,0,0,0,7,5,4,78.2,0,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.004719,1.386294,5.97325,1
-13,3,0,1,3,326702,0,8140.411,42.55031,1,8,1,102.3216,19.56148,0,0,0,121.8831,0,0,0,4,0,4,78.2,0,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.004719,1.386294,4.803062,1
-13,3,0,1,4,326702,0,8140.411,43.55031,1,8,1,124.0791,5.040713,13.9589,0,0,143.0787,0,0,0,3,13,4,78.2,0,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.004719,1.386294,4.963395,1
-13,3,0,1,5,326702,0,8140.411,44.55031,1,8,1,39.27813,14.50814,23.35456,0,0,77.14084,0,0,0,3,0,4,78.2,0,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.004719,1.386294,4.345633,1
-13,3,0,1,1,326703,0,8140.411,43.01985,0,7,1,77.11951,35.92441,25.02554,0,0,138.0695,0,0,0,7,0,4,75,6.9,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.004719,1.386294,4.927757,1
-13,3,0,1,2,326703,0,8140.411,44.01985,0,7,1,35.16174,42.48008,0,0,0,77.64182,0,0,0,4,0,4,75,6.9,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.004719,1.386294,4.352106,1
-13,3,0,1,3,326703,0,8140.411,45.01985,0,7,1,33.53396,70.12038,10.31814,0,0,113.9725,0,0,0,5,0,4,75,6.9,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.004719,1.386294,4.735957,1
-13,3,0,1,4,326703,0,8140.411,46.01985,0,7,1,111.71,66.01784,0,0,0,177.7278,0,0,0,6,0,4,75,6.9,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.004719,1.386294,5.180253,1
-13,3,0,1,5,326703,0,8140.411,47.01985,0,7,1,35.3857,61.3942,0,0,0,96.7799,0,0,0,3,0,4,75,6.9,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,65.9,9.004719,1.386294,4.572439,1
-11,3,0,1,1,326705,0,4692.082,22.18754,0,12,1,69.03658,3.09119,0,0,0,72.12777,0,0,0,7,0,1,88.8,13.8,0,92,0,65.04,0,0,0,4.175003,0,0,0,0,0,0,92,8.453845,0,4.278439,1
-11,3,0,1,2,326705,0,4692.082,23.18754,0,12,1,17.75568,1.889205,0,0,0,19.64489,0,0,0,2,0,1,88.8,13.8,0,92,0,65.04,0,0,0,4.175003,0,0,0,0,0,0,92,8.453845,0,2.977817,1
-11,3,0,1,3,326705,0,4692.082,24.18754,0,12,1,54.50802,6.475943,0,0,812.8522,873.8361,1,0,0,4,0,1,88.8,13.8,0,92,0,65.04,0,0,0,4.175003,0,0,0,0,0,0,92,8.453845,0,6.772893,1
-15,3,95,1,1,326734,0,6617.009,24.12868,1,15,1,7.591093,0,0,0,0,7.591093,0,0,0,1,0,3,82.4,17.2,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,8.79755,1.098612,2.026976,1
-15,3,95,1,2,326734,0,6617.009,25.12868,1,15,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,17.2,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,8.79755,1.098612,,0
-15,3,95,1,3,326734,0,6617.009,26.12868,1,15,1,0,0,0,0,1121.552,1121.552,1,0,0,0,0,3,82.4,17.2,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,8.79755,1.098612,7.022469,1
-15,3,95,1,1,326735,0,6617.009,24.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,6.9,0,86.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.79755,1.098612,,0
-15,3,95,1,2,326735,0,6617.009,25.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,6.9,0,86.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.79755,1.098612,,0
-15,3,95,1,3,326735,0,6617.009,26.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,6.9,0,86.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.79755,1.098612,,0
-14,3,95,1,1,326741,0,9609.384,9.284052,1,10,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,5,80,9.967326,0,74.1,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,0,0,0,74.1,9.170599,1.609438,1.812983,1
-14,3,95,1,2,326741,0,9609.384,10.28405,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,80,9.967326,0,74.1,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,0,0,0,74.1,9.170599,1.609438,,0
-14,3,95,1,3,326741,0,9609.384,11.28405,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,80,9.967326,0,74.1,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,0,0,0,74.1,9.170599,1.609438,,0
-14,3,95,1,1,326742,0,9609.384,3.156742,1,10,1,19.40756,10.31665,0,0,0,29.72421,0,0,0,2,0,5,83.39137,9.967326,0,51.9,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,1,0,0,51.9,9.170599,1.609438,3.391962,1
-14,3,95,1,2,326742,0,9609.384,4.156742,1,10,1,0,2.109705,0,0,0,2.109705,0,0,0,0,0,5,83.39137,9.967326,0,51.9,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,1,0,0,51.9,9.170599,1.609438,.746548,1
-14,3,95,1,3,326742,0,9609.384,5.156742,1,10,1,15.90714,0,0,0,0,15.90714,0,0,0,1,0,5,83.39137,9.967326,0,51.9,582.6,582.6,1,1,1.609438,6.367501,0,4.564348,6.418794,1,0,0,51.9,9.170599,1.609438,2.766768,1
-14,3,95,1,1,326743,0,9609.384,31.60027,1,10,1,5.107252,37.35955,0,0,0,42.4668,0,0,0,1,0,5,53.7,27.6,0,46.6,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,46.6,9.170599,1.609438,3.748723,1
-14,3,95,1,2,326743,0,9609.384,32.60027,1,10,1,41.02203,18.95921,0,0,0,59.98125,0,0,0,4,0,5,53.7,27.6,0,46.6,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,46.6,9.170599,1.609438,4.094032,1
-14,3,95,1,3,326743,0,9609.384,33.60027,1,10,1,16.33706,1.973345,0,0,372.6139,390.9243,1,0,0,2,0,5,53.7,27.6,0,46.6,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,46.6,9.170599,1.609438,5.968514,1
-14,3,95,1,1,326744,0,9609.384,30.2204,0,12,1,30.43922,19.86721,0,0,0,50.30643,0,0,0,2,0,5,83,10.3,0,70.5,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,70.5,9.170599,1.609438,3.918133,1
-14,3,95,1,2,326744,0,9609.384,31.2204,0,12,1,7.032349,17.97937,0,0,0,25.01172,0,0,0,1,0,5,83,10.3,0,70.5,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,70.5,9.170599,1.609438,3.219345,1
-14,3,95,1,3,326744,0,9609.384,32.2204,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,10.3,0,70.5,582.6,582.6,0,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,70.5,9.170599,1.609438,,0
-14,3,95,1,1,326745,0,9609.384,6.417522,0,10,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,5,83.3,9.967326,0,66.7,582.6,582.6,1,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,66.7,9.170599,1.609438,1.812983,1
-14,3,95,1,2,326745,0,9609.384,7.417522,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,9.967326,0,66.7,582.6,582.6,1,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,66.7,9.170599,1.609438,,0
-14,3,95,1,3,326745,0,9609.384,8.417522,0,10,1,28.80482,0,0,0,0,28.80482,0,0,0,2,0,5,83.3,9.967326,0,66.7,582.6,582.6,1,0,1.609438,6.367501,0,4.564348,6.418794,1,0,0,66.7,9.170599,1.609438,3.360543,1
-10,3,50,1,1,326766,0,14914.37,9.629022,0,11.38739,1,12.76813,0,0,0,0,12.76813,0,0,0,2,0,5,71.7,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.610147,1.609438,2.546952,1
-10,3,50,1,2,326766,0,14914.37,10.62902,0,11.38739,1,0,2.180028,0,0,0,2.180028,0,0,0,0,0,5,71.7,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.610147,1.609438,.7793378,1
-10,3,50,1,3,326766,0,14914.37,11.62902,0,11.38739,1,52.10662,.9673259,24.72055,0,1982.33,2060.125,2,0,0,4,1,5,71.7,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.610147,1.609438,7.630522,1
-10,3,50,1,1,326767,0,14914.37,43.87954,0,18,1,55.00511,0,33.70787,0,0,88.71297,0,0,0,4,1,5,92,6.9,0,61.4,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.610147,1.609438,4.485406,1
-10,3,50,1,2,326767,0,14914.37,44.87954,0,18,1,50.16409,.8907642,0,0,0,51.05485,0,0,0,1,2,5,92,6.9,0,61.4,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.610147,1.609438,3.932901,1
-10,3,50,1,3,326767,0,14914.37,45.87954,0,18,1,15.04729,3.288908,35.68358,0,0,54.01978,0,0,0,1,0,5,92,6.9,0,61.4,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.610147,1.609438,3.98935,1
-10,3,50,1,1,326768,0,14914.37,38.87201,1,11.38739,1,145.1992,18.45761,27.06844,0,0,190.7252,0,0,0,4,1,5,89.9,10.3,0,87.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,87.5,9.610147,1.609438,5.250834,1
-10,3,50,1,2,326768,0,14914.37,39.87201,1,11.38739,1,0,19.18425,0,0,0,19.18425,0,0,0,0,0,5,89.9,10.3,0,87.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,87.5,9.610147,1.609438,2.95409,1
-10,3,50,1,3,326768,0,14914.37,40.87201,1,11.38739,1,31.6423,31.6724,11.17799,0,0,74.49269,0,0,0,2,1,5,89.9,10.3,0,87.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,87.5,9.610147,1.609438,4.310701,1
-10,3,50,1,1,326769,0,14914.37,12.74743,1,11.38739,1,17.87538,0,21.45046,0,0,39.32584,0,0,0,1,1,5,100,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.610147,1.609438,3.671882,1
-10,3,50,1,2,326769,0,14914.37,13.74743,1,11.38739,1,4.688232,1.61744,0,0,0,6.305673,0,0,0,1,0,5,100,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.610147,1.609438,1.84145,1
-10,3,50,1,3,326769,0,14914.37,14.74743,1,11.38739,1,83.83491,14.4454,20.63629,0,0,118.9166,0,0,0,3,1,5,100,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.610147,1.609438,4.778422,1
-10,3,50,1,1,326770,0,14914.37,13.92471,0,11.38739,1,7.660879,0,0,0,287.1042,294.7651,1,0,0,1,0,5,81.7,9.967326,0,55.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.610147,1.609438,5.686179,1
-10,3,50,1,2,326770,0,14914.37,14.92471,0,11.38739,1,43.45992,6.610408,0,0,0,50.07032,0,0,0,2,0,5,81.7,9.967326,0,55.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.610147,1.609438,3.913429,1
-10,3,50,1,3,326770,0,14914.37,15.92471,0,11.38739,1,7.308684,3.181427,0,0,0,10.49011,0,0,0,2,0,5,81.7,9.967326,0,55.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.610147,1.609438,2.350433,1
-5,3,25,1,1,326780,0,6466.276,44.97741,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,70.5,562.6,562.6,0,0,0,6.332569,0,3.258096,7.718863,0,0,0,70.5,8.77451,0,,0
-5,3,25,1,2,326780,0,6466.276,45.97741,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,70.5,562.6,562.6,0,0,0,6.332569,0,3.258096,7.718863,0,0,0,70.5,8.77451,0,,0
-5,3,25,1,3,326780,0,6466.276,46.97741,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,6.9,0,70.5,562.6,562.6,0,0,0,6.332569,0,3.258096,7.718863,0,0,0,70.5,8.77451,0,,0
-11,3,0,0,1,326920,.0322129,10066.86,53.07324,1,11.38739,1,91.93054,.6741573,0,0,0,92.6047,0,0,0,2,6,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,4.52834,1
-11,3,0,0,2,326920,.0322129,10066.86,54.07324,1,11.38739,1,381.8097,0,0,0,0,381.8097,0,0,0,2,75,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,5.944922,1
-11,3,0,0,3,326920,.0322129,10066.86,55.07324,1,11.38739,1,640.0258,1.698194,0,0,4650.787,5292.511,1,0,0,9,3,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,8.574048,1
-11,3,0,0,4,326920,.0322129,10066.86,56.07324,1,11.38739,1,124.4669,3.606049,31.01978,0,1565.839,1724.932,1,0,0,9,2,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,7.452943,1
-11,3,0,0,5,326920,.0322129,10066.86,57.07324,1,11.38739,1,165.1628,8.266101,0,0,0,173.4289,0,0,0,7,2,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,5.155767,1
-11,3,0,1,1,326921,0,2570.088,22.46407,0,11.38739,1,5.107252,0,0,0,0,5.107252,0,0,0,1,0,1,78.7,3.4,0,81.8,0,227.4,0,0,0,5.426711,0,0,0,0,0,0,81.8,7.852084,0,1.630661,1
-11,3,0,1,2,326921,0,2570.088,23.46407,0,11.38739,1,27.09798,0,0,0,0,27.09798,0,0,1,0,1,1,78.7,3.4,0,81.8,0,227.4,0,0,0,5.426711,0,0,0,0,0,0,81.8,7.852084,0,3.299459,1
-11,3,0,1,3,326921,0,2570.088,24.46407,0,11.38739,1,297.6268,1.977644,0,0,0,299.6045,0,0,0,3,0,1,78.7,3.4,0,81.8,0,227.4,0,0,0,5.426711,0,0,0,0,0,0,81.8,7.852084,0,5.702463,1
-11,3,0,1,4,326921,0,2570.088,25.46407,0,11.38739,1,0,0,0,0,0,0,0,0,0,0,0,1,78.7,3.4,0,81.8,0,227.4,0,0,0,5.426711,0,0,0,0,0,0,81.8,7.852084,0,,0
-11,3,0,1,5,326921,0,2570.088,26.46407,0,11.38739,1,8.846426,0,23.35456,0,0,32.20099,0,0,0,0,1,2,78.7,3.4,0,81.8,0,227.4,0,0,.6931472,5.426711,0,0,0,0,0,0,81.8,7.852084,.6931472,3.471997,1
-11,3,0,0,1,326922,.0322129,10066.86,14.00958,0,11.38739,1,97.24208,5.311543,0,0,0,102.5536,0,0,0,8,1,3,74.46748,9.967326,.1572505,,0,0,1,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,4.630386,1
-11,3,0,0,2,326922,.0322129,10066.86,15.00958,0,11.38739,1,50.63291,0,0,0,0,50.63291,0,0,0,1,9,3,74.46748,9.967326,.1572505,,0,0,1,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,3.924602,1
-11,3,0,0,3,326922,.0322129,10066.86,16.00958,0,11.38739,1,14.18745,4.363715,0,0,0,18.55116,0,0,0,2,0,3,74.46748,9.967326,.1572505,,0,0,1,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,2.920532,1
-11,3,0,0,4,326922,.0322129,10066.86,17.00958,0,11.38739,1,26.75456,0,0,0,0,26.75456,0,0,0,1,0,3,74.46748,9.967326,.1572505,,0,0,1,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,3.286705,1
-11,3,0,0,5,326922,.0322129,10066.86,18.00958,0,11.38739,1,8.846426,0,0,0,0,8.846426,0,0,0,1,0,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,2.180013,1
-11,3,0,0,1,326923,.0322129,10066.86,53.02122,0,11.38739,1,16.34321,.6792645,0,0,0,17.02247,0,0,0,1,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,2.834534,1
-11,3,0,0,2,326923,.0322129,10066.86,54.02122,0,11.38739,1,88.6076,4.664792,44.53821,0,0,137.8106,0,0,0,4,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,4.92588,1
-11,3,0,0,3,326923,.0322129,10066.86,55.02122,0,11.38739,1,0,0,0,0,0,0,0,0,0,0,0,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,,0
-11,3,0,0,4,326923,.0322129,10066.86,56.02122,0,11.38739,1,6.203955,0,0,0,0,6.203955,0,0,0,1,0,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,1.825187,1
-11,3,0,0,5,326923,.0322129,10066.86,57.02122,0,11.38739,1,30.39632,15.07431,36.09342,0,0,81.56405,0,0,0,2,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.217104,1.098612,4.401389,1
-11,3,0,1,1,326975,0,4611.144,51.33196,1,6,1,23.69912,2.009274,30.9119,0,0,56.6203,0,0,0,3,0,3,73.4,13.8,0,75,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,75,8.436448,1.098612,4.036367,1
-11,3,0,1,2,326975,0,4611.144,52.33196,1,6,1,11.83712,0,0,0,0,11.83712,0,0,0,1,0,3,73.4,13.8,0,75,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,75,8.436448,1.098612,2.471241,1
-11,3,0,1,3,326975,0,4611.144,53.33196,1,6,1,52.44907,9.185089,25.35761,0,0,86.99177,0,0,0,2,5,3,73.4,13.8,0,75,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,75,8.436448,1.098612,4.465814,1
-11,3,0,1,4,326975,0,4611.144,54.33196,1,6,1,33.04451,19.6731,0,0,0,52.71761,0,0,0,2,0,3,73.4,13.8,0,75,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,75,8.436448,1.098612,3.964949,1
-11,3,0,1,5,326975,0,4611.144,55.33196,1,6,1,62.14669,22.75492,28.62254,0,0,113.5241,0,0,0,2,0,3,73.4,13.8,0,75,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,75,8.436448,1.098612,4.732016,1
-11,3,0,1,1,326976,0,4611.144,15.60301,1,6,1,26.79031,19.00051,0,0,0,45.79083,0,0,0,1,0,3,87.8,6.9,0,90.9,0,369.12,1,1,1.098612,5.911122,0,0,0,1,0,0,90.9,8.436448,1.098612,3.824084,1
-11,3,0,1,2,326976,0,4611.144,16.60301,1,6,1,0,18.50852,0,0,0,18.50852,0,0,0,0,0,3,87.8,6.9,0,90.9,0,369.12,1,1,1.098612,5.911122,0,0,0,1,0,0,90.9,8.436448,1.098612,2.918231,1
-11,3,0,1,3,326976,0,4611.144,17.60301,1,6,1,32.94321,18.48721,28.17512,0,0,79.60555,0,0,0,3,1,3,87.8,6.9,0,90.9,0,369.12,1,1,1.098612,5.911122,0,0,0,1,0,0,90.9,8.436448,1.098612,4.377084,1
-11,3,0,1,4,326976,0,4611.144,18.60301,1,6,1,74.83261,20.01182,27.17605,0,0,122.0205,0,0,0,8,1,3,87.8,6.9,0,90.9,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,90.9,8.436448,1.098612,4.804189,1
-11,3,0,1,5,326976,0,4611.144,19.60301,1,6,1,44.90161,6.440072,0,0,0,51.34168,0,0,0,3,0,3,87.8,6.9,0,90.9,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,90.9,8.436448,1.098612,3.938503,1
-11,3,0,1,1,326977,0,4611.144,14.29706,0,6,1,0,0,22.66873,0,0,22.66873,0,0,0,0,0,3,88.3,0,0,80.7,0,369.12,1,0,1.098612,5.911122,0,0,0,1,0,0,80.7,8.436448,1.098612,3.120986,1
-11,3,0,1,2,326977,0,4611.144,15.29706,0,6,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,3,88.3,0,0,80.7,0,369.12,1,0,1.098612,5.911122,0,0,0,1,0,0,80.7,8.436448,1.098612,1.737271,1
-11,3,0,1,3,326977,0,4611.144,16.29706,0,6,1,20.80624,3.654096,25.14087,0,0,49.60122,0,0,0,2,0,3,88.3,0,0,80.7,0,369.12,1,0,1.098612,5.911122,0,0,0,1,0,0,80.7,8.436448,1.098612,3.904015,1
-11,3,0,1,4,326977,0,4611.144,17.29706,0,6,1,40.88224,3.292635,0,0,265.833,310.0079,1,0,0,2,0,3,88.3,0,0,80.7,0,369.12,1,0,1.098612,5.911122,0,0,0,1,0,0,80.7,8.436448,1.098612,5.736598,1
-11,3,0,1,5,326977,0,4611.144,18.29706,0,6,1,20.75134,0,0,0,0,20.75134,0,0,0,2,0,3,88.3,0,0,80.7,0,369.12,0,0,1.098612,5.911122,0,0,0,1,0,0,80.7,8.436448,1.098612,3.032611,1
-11,3,0,1,1,327011,0,9034.604,3.460643,1,14,1,46.47599,13.89173,0,0,0,60.36772,0,0,0,7,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,4.100454,1
-11,3,0,1,2,327011,0,9034.604,4.460643,1,14,1,26.2541,13.23019,0,0,0,39.48429,0,0,0,4,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,3.675903,1
-11,3,0,1,3,327011,0,9034.604,5.460643,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,,0
-11,3,0,1,4,327011,0,9034.604,6.460643,1,14,1,50.40714,2.113222,0,0,0,52.52036,0,0,0,1,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,3.961201,1
-11,3,0,1,5,327011,0,9034.604,7.460643,1,14,1,8.846426,13.49965,0,0,0,22.34607,0,0,0,1,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,3.106651,1
-11,3,0,1,1,327012,0,9034.604,27.57563,1,14,1,15.85802,.8120531,0,0,0,16.67007,0,0,0,1,0,4,78.7,24.1,1,75,0,0,0,0,1.386294,0,0,0,0,1,0,0,75,9.108928,1.386294,2.813615,1
-11,3,0,1,2,327012,0,9034.604,28.57563,1,14,1,22.73793,8.954524,0,0,0,31.69245,0,0,0,1,0,4,78.7,24.1,1,75,0,0,0,0,1.386294,0,0,0,0,1,0,0,75,9.108928,1.386294,3.456079,1
-11,3,0,1,3,327012,0,9034.604,29.57563,1,14,1,0,1.934652,0,0,0,1.934652,0,0,0,0,0,4,78.7,24.1,1,75,0,0,0,0,1.386294,0,0,0,0,1,0,0,75,9.108928,1.386294,.6599273,1
-11,3,0,1,4,327012,0,9034.604,30.57563,1,14,1,50.40714,2.155874,0,0,0,52.56301,0,0,0,1,0,4,78.7,24.1,1,75,0,0,0,0,1.386294,0,0,0,0,1,0,0,75,9.108928,1.386294,3.962013,1
-11,3,0,1,5,327012,0,9034.604,31.57563,1,14,1,7.077141,20.12031,0,0,0,27.19745,0,0,0,1,0,4,78.7,24.1,1,75,0,0,0,0,1.386294,0,0,0,0,1,0,0,75,9.108928,1.386294,3.303123,1
-11,3,0,1,1,327013,0,9034.604,7.23614,1,14,1,61.79775,10.63841,0,0,0,72.43616,0,0,0,8,0,4,87.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,4.282706,1
-11,3,0,1,2,327013,0,9034.604,8.236139,1,14,1,10.31411,3.375527,0,0,0,13.68964,0,0,0,1,0,4,87.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,2.616639,1
-11,3,0,1,3,327013,0,9034.604,9.236139,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,87.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,,0
-11,3,0,1,4,327013,0,9034.604,10.23614,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,87.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,,0
-11,3,0,1,5,327013,0,9034.604,11.23614,1,14,1,10.61571,1.167728,0,0,0,11.78344,0,0,0,1,0,4,87.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,9.108928,1.386294,2.466695,1
-11,3,0,1,1,327014,0,9034.604,30.6475,0,14,1,18.38611,22.57405,0,0,0,40.96016,0,0,0,3,0,4,83.5,6.9,0,62.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,62.5,9.108928,1.386294,3.7126,1
-11,3,0,1,2,327014,0,9034.604,31.6475,0,14,1,24.84763,15.61181,0,0,0,40.45945,0,0,0,3,0,4,83.5,6.9,0,62.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,62.5,9.108928,1.386294,3.7003,1
-11,3,0,1,3,327014,0,9034.604,32.6475,0,14,1,0,13.54256,0,0,0,13.54256,0,0,0,0,0,4,83.5,6.9,0,62.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,62.5,9.108928,1.386294,2.605838,1
-11,3,0,1,4,327014,0,9034.604,33.6475,0,14,1,8.142691,21.40364,0,0,0,29.54634,0,0,0,1,0,4,83.5,6.9,0,62.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,62.5,9.108928,1.386294,3.38596,1
-11,3,0,1,5,327014,0,9034.604,34.6475,0,14,1,55.73248,12.66808,0,0,0,68.40057,0,0,0,2,2,4,83.5,6.9,0,62.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,62.5,9.108928,1.386294,4.225381,1
-11,3,0,1,1,327084,0,1534.311,10.04244,1,2,1,6.072875,5.617409,7.591093,0,0,19.28138,0,0,0,1,0,2,83.39137,9.967326,.0431267,,0,0,1,1,.6931472,0,0,0,0,0,1,0,81.16254,7.336488,.6931472,2.95914,1
-11,3,0,1,2,327084,0,1534.311,11.04244,1,2,1,21.91142,1.188811,11.18881,0,0,34.28904,0,0,0,2,1,2,83.39137,9.967326,.0431267,,0,0,1,1,.6931472,0,0,0,0,0,1,0,81.16254,7.336488,.6931472,3.534826,1
-11,3,0,1,3,327084,0,1534.311,12.04244,1,2,1,77.05002,13.2749,0,0,0,90.32493,0,0,0,3,0,2,83.39137,9.967326,.0431267,,0,0,1,1,.6931472,0,0,0,0,0,1,0,81.16254,7.336488,.6931472,4.503414,1
-11,3,0,1,1,327085,0,1534.311,32.54483,1,2,1,66.04251,3.643725,10.12146,0,0,79.80769,0,0,0,2,1,2,57.4,20.7,1,42,0,0,0,0,.6931472,0,0,0,0,0,1,0,42,7.336488,.6931472,4.37962,1
-11,3,0,1,2,327085,0,1534.311,33.54483,1,2,1,785.4453,49.39394,0,0,1506.615,2341.455,1,0,0,11,0,2,57.4,20.7,1,42,0,0,0,0,.6931472,0,0,0,0,0,1,0,42,7.336488,.6931472,7.758528,1
-11,3,0,1,3,327085,0,1534.311,34.54483,1,2,1,111.4579,12.61223,0,0,0,124.0701,0,0,0,4,2,2,57.4,20.7,1,42,0,0,0,0,.6931472,0,0,0,0,0,1,0,42,7.336488,.6931472,4.820847,1
-7,3,25,0,1,327098,0,9333.725,30.12731,1,12,1,138.7385,36.87436,0,0,514.2186,689.8315,1,0,0,9,0,2,87.2,3.4,0,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,9.141497,.6931472,6.536448,1
-7,3,25,0,2,327098,0,9333.725,31.12731,1,12,1,71.72996,19.22175,0,0,0,90.95171,0,0,0,1,1,2,87.2,3.4,0,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,9.141497,.6931472,4.510329,1
-7,3,25,0,3,327098,0,9333.725,32.12731,1,12,1,50.12897,11.93035,0,0,0,62.05933,0,0,0,2,0,2,87.2,3.4,0,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,9.141497,.6931472,4.128091,1
-7,3,25,0,1,327099,0,9333.725,32.83778,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,3.4,0,80.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.141497,.6931472,,0
-7,3,25,0,2,327099,0,9333.725,33.83778,0,10,1,9.376465,0,27.19175,0,0,36.56821,0,0,0,0,1,2,80.9,3.4,0,80.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.141497,.6931472,3.59918,1
-7,3,25,0,3,327099,0,9333.725,34.83778,0,10,1,10.74806,0,0,0,0,10.74806,0,0,0,0,0,2,80.9,3.4,0,80.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.141497,.6931472,2.374726,1
-13,3,0,0,1,327249,0,7389.443,33.04038,1,12,1,506.373,1.931994,0,0,0,508.305,0,0,0,8,1,4,83.5,17.2,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,71.6,8.907943,1.386294,6.231081,1
-13,3,0,0,2,327249,0,7389.443,34.04038,1,12,1,10.41667,2.618371,0,0,0,13.03504,0,0,0,1,0,4,83.5,17.2,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,71.6,8.907943,1.386294,2.567641,1
-13,3,0,0,3,327249,0,7389.443,35.04038,1,12,1,74.5557,2.6658,0,0,0,77.2215,0,0,0,1,0,4,83.5,17.2,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,71.6,8.907943,1.386294,4.346678,1
-13,3,0,0,1,327250,0,7389.443,31.89049,0,12,1,59.76301,0,0,0,0,59.76301,0,0,0,2,3,4,83.5,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.907943,1.386294,4.090387,1
-13,3,0,0,2,327250,0,7389.443,32.89049,0,12,1,4.734848,3.787879,0,0,0,8.522727,0,0,0,1,0,4,83.5,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.907943,1.386294,2.142736,1
-13,3,0,0,3,327250,0,7389.443,33.89049,0,12,1,0,3.250975,0,0,0,3.250975,0,0,0,0,0,4,83.5,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.907943,1.386294,1.178955,1
-13,3,0,0,1,327251,0,7389.443,6.069815,0,12,1,17.51674,10.76765,0,0,0,28.28439,0,0,0,2,0,4,88.3,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.907943,1.386294,3.34231,1
-13,3,0,0,2,327251,0,7389.443,7.069815,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.907943,1.386294,,0
-13,3,0,0,3,327251,0,7389.443,8.069816,0,12,1,19.50585,0,0,0,0,19.50585,0,0,0,1,1,4,88.3,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.907943,1.386294,2.970715,1
-13,3,0,0,1,327252,0,7389.443,9.798768,0,12,1,5.151984,2.189593,0,0,0,7.341577,0,0,0,1,0,4,90,9.967326,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.907943,1.386294,1.993554,1
-13,3,0,0,2,327252,0,7389.443,10.79877,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.907943,1.386294,,0
-13,3,0,0,3,327252,0,7389.443,11.79877,0,12,1,70.09103,0,0,0,0,70.09103,0,0,0,2,0,4,90,9.967326,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.907943,1.386294,4.249795,1
-17,3,25,1,1,327259,0,1818.182,21.18275,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,86.2,3.4,0,81.8,400,400,0,0,0,5.991465,0,3.258096,7.377759,0,0,0,81.8,7.506142,0,,0
-18,3,25,1,1,327280,0,7048.68,33.61807,0,12,1,16.85393,0,0,0,0,16.85393,0,0,0,0,0,1,93.6,0,0,68.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,68.2,8.860738,0,2.824584,1
-18,3,25,1,2,327280,0,7048.68,34.61807,0,12,1,14.0647,10.68917,0,0,0,24.75387,0,0,0,1,0,1,93.6,0,0,68.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,68.2,8.860738,0,3.208982,1
-18,3,25,1,3,327280,0,7048.68,35.61807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,93.6,0,0,68.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,68.2,8.860738,0,,0
-14,3,95,1,1,327332,0,9102.64,52.34497,0,11,1,22.26721,36.43725,0,0,0,58.70445,0,0,0,3,0,3,76.1,17.2,0,69.3,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,1,0,69.3,9.116429,1.098612,4.072515,1
-14,3,95,1,2,327332,0,9102.64,53.34497,0,11,1,14.91842,55.94406,0,0,0,70.86247,0,0,0,2,0,3,76.1,17.2,0,69.3,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,1,0,69.3,9.116429,1.098612,4.260741,1
-14,3,95,1,3,327332,0,9102.64,54.34497,0,11,1,32.49252,57.07567,46.17358,0,0,135.7418,0,0,0,3,1,3,76.1,17.2,0,69.3,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,1,0,69.3,9.116429,1.098612,4.910754,1
-14,3,95,1,4,327332,0,9102.64,55.34497,0,11,1,13.83551,54.88086,0,0,0,68.71637,0,0,0,2,0,3,76.1,17.2,0,69.3,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,1,0,69.3,9.116429,1.098612,4.229988,1
-14,3,95,1,5,327332,0,9102.64,56.34497,0,11,1,13.34738,52.07938,0,0,0,65.42677,0,0,0,2,0,3,76.1,17.2,0,69.3,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,1,0,69.3,9.116429,1.098612,4.180932,1
-14,3,95,1,1,327333,0,9102.64,56.01917,1,12,1,73.15283,1.467611,0,0,0,74.62045,0,0,0,2,0,3,68.6,3.4,0,72.7,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,1,0,0,72.7,9.116429,1.098612,4.312415,1
-14,3,95,1,2,327333,0,9102.64,57.01917,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,3.4,0,72.7,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,1,0,0,72.7,9.116429,1.098612,,0
-14,3,95,1,3,327333,0,9102.64,58.01917,1,12,1,5.985464,0,0,0,0,5.985464,0,0,0,1,0,3,68.6,3.4,0,72.7,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,1,0,0,72.7,9.116429,1.098612,1.789334,1
-14,3,95,1,4,327333,0,9102.64,59.01917,1,12,1,11.10684,.4765565,0,0,0,11.5834,0,0,0,1,0,3,68.6,3.4,0,72.7,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,1,0,0,72.7,9.116429,1.098612,2.449573,1
-14,3,95,1,5,327333,0,9102.64,60.01917,1,12,1,7.024939,0,28.451,0,0,35.47594,0,0,0,1,0,3,68.6,3.4,0,72.7,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,1,0,0,72.7,9.116429,1.098612,3.568855,1
-14,3,95,1,1,327334,0,9102.64,16.91444,1,12,1,8.097166,0,0,0,0,8.097166,0,0,0,1,0,3,75,3.4,0,64.8,498.2,473.2,1,1,1.098612,6.159518,0,4.564348,6.262295,0,0,0,64.8,9.116429,1.098612,2.091514,1
-14,3,95,1,2,327334,0,9102.64,17.91444,1,12,1,9.324009,0,5.594406,0,0,14.91842,0,0,0,0,1,3,75,3.4,0,64.8,498.2,473.2,1,1,1.098612,6.159518,0,4.564348,6.262295,0,0,0,64.8,9.116429,1.098612,2.702596,1
-14,3,95,1,3,327334,0,9102.64,18.91444,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,3.4,0,64.8,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,0,0,64.8,9.116429,1.098612,,0
-14,3,95,1,4,327334,0,9102.64,19.91444,1,12,1,9.607994,0,21.52191,0,0,31.1299,0,0,0,0,1,3,75,3.4,0,64.8,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,0,0,64.8,9.116429,1.098612,3.438169,1
-14,3,95,1,5,327334,0,9102.64,20.91444,1,12,1,0,0,10.53741,0,0,10.53741,0,0,0,0,0,3,75,3.4,0,64.8,498.2,473.2,0,0,1.098612,6.159518,0,4.564348,6.262295,0,0,0,64.8,9.116429,1.098612,2.354932,1
-11,3,0,1,1,327400,0,9506.158,25.24025,0,14,1,51.75167,0,0,0,0,51.75167,0,0,0,3,0,2,87.8,3.4,0,90.9,0,329.14,0,0,.6931472,5.796483,0,0,0,0,0,0,90.9,9.159801,.6931472,3.946457,1
-11,3,0,1,2,327400,0,9506.158,26.24025,0,14,1,14.58333,8.120265,28.88258,0,0,51.58617,0,0,0,1,0,2,87.8,3.4,0,90.9,0,329.14,0,0,.6931472,5.796483,0,0,0,0,0,0,90.9,9.159801,.6931472,3.943254,1
-11,3,0,1,3,327400,0,9506.158,27.24025,0,14,1,8.669268,0,15.17122,0,0,23.84048,0,0,0,0,1,3,87.8,3.4,0,90.9,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,90.9,9.159801,1.098612,3.171385,1
-11,3,0,1,4,327400,0,9506.158,28.24025,0,14,1,14.96652,0,27.56991,0,0,42.53643,0,0,0,1,1,3,87.8,3.4,0,90.9,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,90.9,9.159801,1.098612,3.750361,1
-11,3,0,1,5,327400,0,9506.158,29.24025,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,87.8,3.4,0,90.9,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,90.9,9.159801,1.098612,,0
-11,3,0,1,1,327401,0,9506.158,23.55647,1,14,1,42.93663,14.25039,34.00309,0,0,91.19011,0,0,0,4,0,2,61.2,6.9,0,55.7,0,329.14,0,0,.6931472,5.796483,0,0,0,0,0,0,55.7,9.159801,.6931472,4.512947,1
-11,3,0,1,2,327401,0,9506.158,24.55647,1,14,1,69.12878,27.46686,0,0,582.5284,679.124,1,0,0,6,0,2,61.2,6.9,0,55.7,0,329.14,0,0,.6931472,5.796483,0,0,0,0,0,0,55.7,9.159801,.6931472,6.520804,1
-11,3,0,1,3,327401,0,9506.158,25.55647,1,14,1,173.342,26.43693,0,0,657.616,857.3949,1,0,0,7,0,3,61.2,6.9,0,55.7,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,55.7,9.159801,1.098612,6.753899,1
-11,3,0,1,4,327401,0,9506.158,26.55647,1,14,1,40.88224,19.6219,21.66207,0,0,82.16621,0,0,0,1,1,3,61.2,6.9,0,55.7,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,55.7,9.159801,1.098612,4.408744,1
-11,3,0,1,5,327401,0,9506.158,27.55647,1,14,1,66.01073,33.96064,9.660108,0,679.5206,789.152,1,0,0,4,1,3,61.2,6.9,0,55.7,0,329.14,0,0,1.098612,5.796483,0,0,0,0,0,0,55.7,9.159801,1.098612,6.670959,1
-17,3,25,1,1,327421,0,4105.572,9.667351,1,9,1,15.45595,5.151984,0,0,0,20.60793,0,0,0,1,0,6,93.3,9.967326,0,81.5,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,81.5,8.320344,1.791759,3.025676,1
-17,3,25,1,2,327421,0,4105.572,10.66735,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,9.967326,0,81.5,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,81.5,8.320344,1.791759,,0
-17,3,25,1,3,327421,0,4105.572,11.66735,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,9.967326,0,81.5,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,81.5,8.320344,1.791759,,0
-17,3,25,1,1,327422,0,4105.572,2.360027,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,83.39137,9.967326,0,96.3,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,96.3,8.320344,1.791759,,0
-17,3,25,1,2,327422,0,4105.572,3.360027,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,83.39137,9.967326,0,96.3,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,96.3,8.320344,1.791759,,0
-17,3,25,1,3,327422,0,4105.572,4.360027,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,83.39137,9.967326,0,96.3,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,96.3,8.320344,1.791759,,0
-17,3,25,1,1,327423,0,4105.572,7.742642,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,95,9.967326,0,85.2,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,85.2,8.320344,1.791759,,0
-17,3,25,1,2,327423,0,4105.572,8.742642,1,9,1,4.734848,1.136364,0,0,0,5.871212,0,0,0,1,0,6,95,9.967326,0,85.2,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,85.2,8.320344,1.791759,1.770061,1
-17,3,25,1,3,327423,0,4105.572,9.742642,1,9,1,32.37971,2.895535,0,0,0,35.27525,0,0,0,1,0,6,95,9.967326,0,85.2,583.75,0,1,1,1.791759,0,0,3.258096,7.755767,0,0,0,85.2,8.320344,1.791759,3.563182,1
-17,3,25,1,1,327424,0,4105.572,30.37646,1,9,1,350.948,0,24.72952,0,0,375.6775,0,0,0,12,0,6,77.7,6.9,0,71.6,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,0,0,71.6,8.320344,1.791759,5.928731,1
-17,3,25,1,2,327424,0,4105.572,31.37646,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,77.7,6.9,0,71.6,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,0,0,71.6,8.320344,1.791759,,0
-17,3,25,1,3,327424,0,4105.572,32.37645,1,9,1,41.61248,0,0,0,403.9662,445.5787,1,0,0,4,0,6,77.7,6.9,0,71.6,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,0,0,71.6,8.320344,1.791759,6.099374,1
-17,3,25,1,1,327425,0,4105.572,5.924709,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,90,9.967326,0,92.6,583.75,0,1,0,1.791759,0,0,3.258096,7.755767,0,0,0,92.6,8.320344,1.791759,,0
-17,3,25,1,2,327425,0,4105.572,6.924709,0,9,1,4.734848,2.698864,0,0,0,7.433712,0,0,0,1,0,6,90,9.967326,0,92.6,583.75,0,1,0,1.791759,0,0,3.258096,7.755767,0,0,0,92.6,8.320344,1.791759,2.006025,1
-17,3,25,1,3,327425,0,4105.572,7.924709,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,90,9.967326,0,92.6,583.75,0,1,0,1.791759,0,0,3.258096,7.755767,0,0,0,92.6,8.320344,1.791759,,0
-17,3,25,1,1,327426,0,4105.572,34.66393,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,64.8,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,1,0,64.8,8.320344,1.791759,,0
-17,3,25,1,2,327426,0,4105.572,35.66393,0,9,1,0,0,0,0,1341.619,1341.619,1,0,0,0,0,6,70.7,3.4,0,64.8,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,1,0,64.8,8.320344,1.791759,7.201632,1
-17,3,25,1,3,327426,0,4105.572,36.66393,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,64.8,583.75,0,0,0,1.791759,0,0,3.258096,7.755767,0,1,0,64.8,8.320344,1.791759,,0
-13,3,0,1,1,327436,0,3424.047,55.04175,1,7,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,1,76.1,24.1,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,75,8.13887,0,1.639382,1
-13,3,0,1,2,327436,0,3424.047,56.04175,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,76.1,24.1,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,75,8.13887,0,,0
-13,3,0,1,3,327436,0,3424.047,57.04175,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,76.1,24.1,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,75,8.13887,0,,0
-13,3,0,1,1,327440,0,8989.442,44.01369,0,12,1,56.67182,75.14168,0,0,0,131.8135,0,0,0,7,0,2,88.8,13.8,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.103917,.6931472,4.881388,1
-13,3,0,1,2,327440,0,8989.442,45.01369,0,12,1,127.8409,84.55966,7.102273,0,0,219.5028,0,0,0,14,0,2,88.8,13.8,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.103917,.6931472,5.391365,1
-13,3,0,1,3,327440,0,8989.442,46.01369,0,12,1,630.8193,75.05418,25.79107,0,1126.983,1858.648,1,0,0,23,0,2,88.8,13.8,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.103917,.6931472,7.527605,1
-13,3,0,1,4,327440,0,8989.442,47.01369,0,12,1,150.4529,86.07719,32.49311,0,0,269.0232,0,0,0,14,0,2,88.8,13.8,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.103917,.6931472,5.594798,1
-13,3,0,1,5,327440,0,8989.442,48.01369,0,12,1,291.449,129.8032,15.02683,0,2198.379,2634.658,2,0,0,16,2,2,88.8,13.8,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.103917,.6931472,7.876509,1
-13,3,0,1,1,327441,0,8989.442,45.03217,1,8,1,317.8516,181.2725,1.813498,0,2420.819,2921.757,1,0,0,21,0,2,79.8,20.7,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,64.8,9.103917,.6931472,7.97994,1
-13,3,0,1,2,327441,0,8989.442,46.03217,1,8,1,179.8295,116.714,0,0,0,296.5435,0,0,0,7,0,2,79.8,20.7,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,64.8,9.103917,.6931472,5.692194,1
-13,3,0,1,3,327441,0,8989.442,47.03217,1,8,1,134.3736,128.8036,0,0,0,263.1773,0,0,0,5,0,2,79.8,20.7,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,64.8,9.103917,.6931472,5.572828,1
-13,3,0,1,4,327441,0,8989.442,48.03217,1,8,1,284.3639,142.6585,22.43009,0,0,449.4525,0,0,0,15,1,2,79.8,20.7,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,64.8,9.103917,.6931472,6.10803,1
-13,3,0,1,5,327441,0,8989.442,49.03217,1,8,1,145.5277,111.7889,15.38461,0,0,272.7013,0,0,0,5,1,2,79.8,20.7,0,64.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,64.8,9.103917,.6931472,5.608377,1
-15,3,95,0,1,327480,0,5263.93,27.06366,1,16,1,34.93361,19.22881,0,0,0,54.16241,0,0,0,4,0,1,62.8,17.2,0,64.3,750,750,0,0,0,6.620073,0,4.564348,6.671367,1,0,0,64.3,8.568823,0,3.991987,1
-15,3,95,0,2,327480,0,5263.93,28.06366,1,16,1,44.21003,3.797468,0,0,0,48.0075,0,0,0,4,0,1,62.8,17.2,0,64.3,750,750,0,0,0,6.620073,0,4.564348,6.671367,1,0,0,64.3,8.568823,0,3.871357,1
-15,3,95,0,3,327480,0,5263.93,29.06366,1,16,1,196.2382,21.84437,29.4712,0,705.6406,953.1943,1,0,0,3,1,1,62.8,17.2,0,64.3,750,750,0,0,0,6.620073,0,4.564348,6.671367,1,0,0,64.3,8.568823,0,6.859819,1
-13,3,0,1,1,327496,0,2164.223,32.45996,0,11,1,232.7119,13.02349,18.38611,0,7562.615,7826.736,1,0,0,4,18,3,92.6,0,0,84.1,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,84.1,7.680279,1.098612,8.965301,1
-13,3,0,1,2,327496,0,2164.223,33.45996,0,11,1,24.84763,22.73793,0,0,0,47.58556,0,0,0,2,0,3,92.6,0,0,84.1,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,84.1,7.680279,1.098612,3.862529,1
-13,3,0,1,3,327496,0,2164.223,34.45996,0,11,1,0,9.802236,0,0,0,9.802236,0,0,0,0,0,3,92.6,0,0,84.1,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,84.1,7.680279,1.098612,2.28261,1
-13,3,0,1,1,327497,0,2164.223,32.18617,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.5,0,0,80.7,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,80.7,7.680279,1.098612,,0
-13,3,0,1,2,327497,0,2164.223,33.18617,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.5,0,0,80.7,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,80.7,7.680279,1.098612,,0
-13,3,0,1,3,327497,0,2164.223,34.18617,1,12,1,0,0,0,0,655.2236,655.2236,1,0,0,0,0,3,83.5,0,0,80.7,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,80.7,7.680279,1.098612,6.484976,1
-13,3,0,1,1,327498,0,2164.223,3.041752,0,12,1,6.128703,1.838611,0,0,0,7.967314,0,0,0,1,0,3,83.39137,9.967326,0,88.9,450,0,1,0,1.098612,0,1,4.564348,6.160541,0,0,0,88.9,7.680279,1.098612,2.075347,1
-13,3,0,1,2,327498,0,2164.223,4.041752,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,88.9,450,0,1,0,1.098612,0,1,4.564348,6.160541,0,0,0,88.9,7.680279,1.098612,,0
-13,3,0,1,3,327498,0,2164.223,5.041752,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,88.9,450,0,1,0,1.098612,0,1,4.564348,6.160541,0,0,0,88.9,7.680279,1.098612,,0
-13,3,0,0,1,327504,0,5948.387,29.18823,0,16,1,65.11747,2.808989,35.34219,0,0,103.2686,0,0,0,5,2,1,92,20.7,0,81.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,81.8,8.691044,0,4.637334,1
-13,3,0,0,2,327504,0,5948.387,30.18823,0,16,1,226.9105,0,21.56587,0,0,248.4763,0,0,0,1,25,1,92,20.7,0,81.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,81.8,8.691044,0,5.515347,1
-13,3,0,0,3,327504,0,5948.387,31.18823,0,16,1,164.6604,0,17.01634,0,0,181.6767,0,0,0,6,14,1,92,20.7,0,81.8,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,81.8,8.691044,0,5.202229,1
-15,3,95,1,1,327625,0,12675.07,13.83984,0,12,1,15.45595,0,27.82071,0,0,43.27666,0,0,0,2,0,4,93.3,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.447472,1.386294,3.767613,1
-15,3,95,1,2,327625,0,12675.07,14.83984,0,12,1,16.57197,2.035985,13.25758,0,0,31.86553,0,0,0,1,1,4,93.3,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.447472,1.386294,3.461525,1
-15,3,95,1,3,327625,0,12675.07,15.83984,0,12,1,8.669268,0,28.17512,0,0,36.84439,0,0,0,0,1,4,93.3,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.447472,1.386294,3.606703,1
-15,3,95,1,4,327625,0,12675.07,16.83984,0,12,1,9.846396,0,11.02796,0,0,20.87436,0,0,0,0,1,4,93.3,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.447472,1.386294,3.038522,1
-15,3,95,1,5,327625,0,12675.07,17.83984,0,12,1,25.76029,0,0,0,0,25.76029,0,0,0,2,1,4,93.3,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.447472,1.386294,3.248834,1
-15,3,95,1,1,327626,0,12675.07,34.32991,0,8,1,16.48635,.9015971,31.9423,0,0,49.33024,0,0,0,3,0,4,83.5,0,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.447472,1.386294,3.898537,1
-15,3,95,1,2,327626,0,12675.07,35.32991,0,8,1,107.3627,.2367424,45.54924,0,546.5909,699.7396,1,0,0,3,1,4,83.5,0,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.447472,1.386294,6.550708,1
-15,3,95,1,3,327626,0,12675.07,36.32991,0,8,1,93.19463,5.74339,25.57434,0,0,124.5124,0,0,0,1,1,4,83.5,0,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.447472,1.386294,4.824405,1
-15,3,95,1,4,327626,0,12675.07,37.32991,0,8,1,16.14809,0,0,0,0,16.14809,0,0,0,2,0,4,83.5,0,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.447472,1.386294,2.781802,1
-15,3,95,1,5,327626,0,12675.07,38.32991,0,8,1,31.48479,7.602862,20.75134,0,0,59.839,0,0,0,3,1,4,83.5,0,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.447472,1.386294,4.091658,1
-15,3,95,1,1,327627,0,12675.07,12.77481,0,12,1,110.1236,0,0,0,0,110.1236,0,0,0,5,0,4,80,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.447472,1.386294,4.701604,1
-15,3,95,1,2,327627,0,12675.07,13.77481,0,12,1,56.81818,0,.9469697,0,0,57.76515,0,0,0,2,0,4,80,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.447472,1.386294,4.056386,1
-15,3,95,1,3,327627,0,12675.07,14.77481,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.447472,1.386294,,0
-15,3,95,1,4,327627,0,12675.07,15.77481,0,12,1,14.17881,0,0,0,0,14.17881,0,0,0,2,0,4,80,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.447472,1.386294,2.651749,1
-15,3,95,1,5,327627,0,12675.07,16.77481,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.447472,1.386294,,0
-15,3,95,1,1,327628,0,12675.07,33.35524,1,12,1,9.42813,0,0,0,0,9.42813,0,0,0,1,0,4,80.3,6.9,0,100,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.447472,1.386294,2.243698,1
-15,3,95,1,2,327628,0,12675.07,34.35524,1,12,1,21.7803,2.95928,0,0,0,24.73958,0,0,0,1,0,4,80.3,6.9,0,100,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.447472,1.386294,3.208405,1
-15,3,95,1,3,327628,0,12675.07,35.35524,1,12,1,40.74556,0,0,0,0,40.74556,0,0,0,2,0,4,80.3,6.9,0,100,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.447472,1.386294,3.707347,1
-15,3,95,1,4,327628,0,12675.07,36.35524,1,12,1,7.483261,0,0,0,0,7.483261,0,0,0,1,0,4,80.3,6.9,0,100,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.447472,1.386294,2.012669,1
-15,3,95,1,5,327628,0,12675.07,37.35524,1,12,1,17.17352,0,20.75134,0,0,37.92487,0,0,0,1,1,4,80.3,6.9,0,100,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,100,9.447472,1.386294,3.635607,1
-15,3,95,0,1,327629,0,8899.12,26.45038,1,12,1,12.87996,0,0,0,0,12.87996,0,0,0,1,0,2,52.1,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.09382,.6931472,2.555673,1
-15,3,95,0,2,327629,0,8899.12,27.45038,1,12,1,106.5341,0,0,0,0,106.5341,0,0,0,3,0,2,52.1,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.09382,.6931472,4.668465,1
-15,3,95,0,3,327629,0,8899.12,28.45038,1,12,1,7.802341,0,0,0,0,7.802341,0,0,0,1,0,2,52.1,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.09382,.6931472,2.054424,1
-15,3,95,0,4,327629,0,8899.12,29.45038,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.09382,.6931472,,0
-15,3,95,0,5,327629,0,8899.12,30.45038,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,13.8,0,56.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,56.8,9.09382,.6931472,,0
-15,3,95,0,1,327630,0,8899.12,29.64545,0,12,1,12.87996,0,0,0,0,12.87996,0,0,0,2,0,2,62.2,6.9,0,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,55.7,9.09382,.6931472,2.555673,1
-15,3,95,0,2,327630,0,8899.12,30.64545,0,12,1,66.99811,0,0,0,0,66.99811,0,0,0,3,0,2,62.2,6.9,0,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,55.7,9.09382,.6931472,4.204664,1
-15,3,95,0,3,327630,0,8899.12,31.64545,0,12,1,10.83658,0,0,0,0,10.83658,0,0,0,0,0,2,62.2,6.9,0,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,55.7,9.09382,.6931472,2.382928,1
-15,3,95,0,4,327630,0,8899.12,32.64545,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.2,6.9,0,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,55.7,9.09382,.6931472,,0
-15,3,95,0,5,327630,0,8899.12,33.64545,0,12,1,48.15742,0,1.023256,0,0,49.18068,0,0,0,5,0,2,62.2,6.9,0,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,55.7,9.09382,.6931472,3.895501,1
-13,3,0,1,1,327650,0,10620.53,25.12526,1,12,1,47.49745,6.613892,0,0,0,54.11134,0,0,0,3,0,2,72.9,3.4,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,79.5,9.270638,.6931472,3.991044,1
-13,3,0,1,2,327650,0,10620.53,26.12526,1,12,1,18.75293,1.851852,0,0,0,20.60478,0,0,0,1,0,2,72.9,3.4,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,79.5,9.270638,.6931472,3.025523,1
-13,3,0,1,3,327650,0,10620.53,27.12526,1,12,1,60.18917,72.8074,0,0,337.3603,470.3568,1,0,0,1,0,2,72.9,3.4,0,79.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,79.5,9.270638,.6931472,6.153491,1
-13,3,0,1,1,327651,0,10620.53,26.71595,0,15,1,2.553626,4.581205,0,0,0,7.134831,0,0,0,0,0,2,80.9,3.4,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.270638,.6931472,1.964989,1
-13,3,0,1,2,327651,0,10620.53,27.71595,0,15,1,0,5.607126,0,0,0,5.607126,0,0,0,0,0,2,80.9,3.4,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.270638,.6931472,1.724038,1
-13,3,0,1,3,327651,0,10620.53,28.71595,0,15,1,140.9716,16.62511,0,0,0,157.5967,0,0,0,5,0,2,80.9,3.4,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.270638,.6931472,5.06004,1
-13,3,0,0,1,327660,0,2375.953,28.55852,0,17,1,7.727975,0,29.8815,0,0,37.60948,0,0,0,0,1,1,77.1,6.9,0,71.6,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,71.6,7.773575,0,3.627256,1
-13,3,0,0,2,327660,0,2375.953,29.55852,0,17,1,14.20455,0,0,0,0,14.20455,0,0,0,1,0,1,77.1,6.9,0,71.6,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,71.6,7.773575,0,2.653562,1
-13,3,0,0,3,327660,0,2375.953,30.55852,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,77.1,6.9,0,71.6,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,71.6,7.773575,0,,0
-11,3,0,0,3,327677,0,9925.514,44.60369,1,,1,62.01634,3.482373,48.15133,0,0,113.65,0,0,0,1,1,1,78.2,6.9,0,78.4,,,0,0,0,0,0,0,0,0,0,0,78.4,9.202965,0,4.733124,1
-13,3,0,1,1,327685,0,6282.698,54.13552,1,12,1,27.57916,1.404494,0,0,0,28.98366,0,0,0,3,0,2,58.5,17.2,1,47.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,47.7,8.745714,.6931472,3.366732,1
-13,3,0,1,2,327685,0,6282.698,55.13552,1,12,1,10.78294,4.664792,18.75293,0,0,34.20066,0,0,0,0,1,2,58.5,17.2,1,47.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,47.7,8.745714,.6931472,3.532245,1
-13,3,0,1,3,327685,0,6282.698,56.13552,1,12,1,13.3276,.988822,0,0,0,14.31642,0,0,0,2,0,2,58.5,17.2,1,47.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,47.7,8.745714,.6931472,2.661407,1
-13,3,0,1,1,327686,0,6282.698,57.21834,0,12,1,15.32176,14.01941,22.47191,0,0,51.81308,0,0,0,1,1,2,83.5,13.8,0,63.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,63.1,8.745714,.6931472,3.947643,1
-13,3,0,1,2,327686,0,6282.698,58.21834,0,12,1,0,13.97093,0,0,0,13.97093,0,0,0,0,0,2,83.5,13.8,0,63.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,63.1,8.745714,.6931472,2.636979,1
-13,3,0,1,3,327686,0,6282.698,59.21834,0,12,1,14.18745,0,4.299226,0,0,18.48667,0,0,0,1,1,2,83.5,13.8,0,63.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,63.1,8.745714,.6931472,2.91705,1
-13,3,0,1,1,327687,0,5677.419,30.46954,1,12,1,44.53441,0,23.27935,0,0,67.81377,0,0,0,2,1,1,64.4,10.3,1,38.6,150,246.3,0,0,0,5.50655,1,4.564348,5.061929,1,0,0,38.6,8.644428,0,4.216765,1
-13,3,0,1,2,327687,0,5677.419,31.46954,1,12,1,161.3054,8.251748,0,76.92308,0,169.5571,0,0,6,4,0,1,64.4,10.3,1,38.6,150,246.3,0,0,0,5.50655,1,4.564348,5.061929,1,0,0,38.6,8.644428,0,5.13319,1
-13,3,0,1,3,327687,0,5677.419,32.46954,1,12,1,232.6208,8.721676,41.15006,0,0,282.4925,0,0,0,11,0,1,64.4,10.3,1,38.6,150,246.3,0,0,0,5.50655,1,4.564348,5.061929,1,0,0,38.6,8.644428,0,5.643652,1
-10,3,50,0,1,327705,0,11738.42,31.87132,1,14,1,186.2236,23.44152,0,0,940.2834,1149.948,1,0,0,11,0,4,86.7,10.3,0,81.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,81.8,9.370708,1.386294,7.047472,1
-10,3,50,0,2,327705,0,11738.42,32.87132,1,14,1,38.82576,0,0,0,0,38.82576,0,0,0,2,0,4,86.7,10.3,0,81.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,81.8,9.370708,1.386294,3.659084,1
-10,3,50,0,3,327705,0,11738.42,33.87132,1,14,1,58.51756,6.285219,6.935414,0,0,71.73819,0,0,0,3,0,4,86.7,10.3,0,81.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,81.8,9.370708,1.386294,4.273023,1
-10,3,50,0,1,327706,0,11738.42,34.08898,0,12,1,15.45595,2.112313,0,0,0,17.56826,0,0,0,1,0,4,94.1,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,84.1,9.370708,1.386294,2.866094,1
-10,3,50,0,2,327706,0,11738.42,35.08898,0,12,1,19.88636,0,26.98864,0,0,46.875,0,0,0,1,0,4,94.1,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,84.1,9.370708,1.386294,3.847485,1
-10,3,50,0,3,327706,0,11738.42,36.08898,0,12,1,59.81794,5.062852,0,0,0,64.8808,0,0,0,3,0,4,94.1,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,84.1,9.370708,1.386294,4.172552,1
-10,3,50,0,1,327707,0,11738.42,7.761807,1,14,1,7.727975,0,0,0,0,7.727975,0,0,0,1,0,4,100,9.967326,0,100,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,100,9.370708,1.386294,2.044847,1
-10,3,50,0,2,327707,0,11738.42,8.761807,1,14,1,32.38636,2.746212,0,0,0,35.13258,0,0,0,1,0,4,100,9.967326,0,100,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,100,9.370708,1.386294,3.559129,1
-10,3,50,0,3,327707,0,11738.42,9.761807,1,14,1,16.03815,7.93238,0,0,0,23.97052,0,0,0,3,0,4,100,9.967326,0,100,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,100,9.370708,1.386294,3.176825,1
-10,3,50,0,1,327708,0,11738.42,9.14716,0,14,1,29.36631,16.95003,27.82071,0,0,74.13704,0,0,0,3,0,4,96.7,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.370708,1.386294,4.305915,1
-10,3,50,0,2,327708,0,11738.42,10.14716,0,14,1,55.39773,8.001894,13.25758,0,0,76.6572,0,0,0,5,0,4,96.7,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.370708,1.386294,4.339344,1
-10,3,50,0,3,327708,0,11738.42,11.14716,0,14,1,148.8036,0,18.22713,0,0,167.0308,0,0,0,5,0,4,96.7,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,96.3,9.370708,1.386294,5.118178,1
-17,3,25,0,1,327714,0,9551.906,36.55578,1,12,1,34.21859,25.85802,0,0,0,60.07661,0,0,0,2,1,4,59,27.6,1,43.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,43.2,9.1646,1.386294,4.095621,1
-17,3,25,0,2,327714,0,9551.906,37.55578,1,12,1,112.4707,6.057197,25.78528,0,0,144.3132,0,0,0,6,1,4,59,27.6,1,43.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,43.2,9.1646,1.386294,4.971986,1
-17,3,25,0,3,327714,0,9551.906,38.55578,1,12,1,116.509,4.50129,0,0,0,121.0103,0,0,0,6,0,4,59,27.6,1,43.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,43.2,9.1646,1.386294,4.795876,1
-17,3,25,0,4,327714,0,9551.906,39.55578,1,12,1,95.77355,2.582396,0,0,0,98.35595,0,0,0,6,1,4,59,27.6,1,43.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,43.2,9.1646,1.386294,4.588593,1
-17,3,25,0,5,327714,0,9551.906,40.55578,1,12,1,210.0142,5.980184,19.46214,0,0,235.4565,0,0,0,9,1,4,59,27.6,1,43.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,43.2,9.1646,1.386294,5.461526,1
-17,3,25,0,1,327715,0,9551.906,15.21697,1,12,1,15.32176,0,12.76813,0,0,28.08989,0,0,0,1,1,4,94.7,3.4,0,93.2,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,93.2,9.1646,1.386294,3.33541,1
-17,3,25,0,2,327715,0,9551.906,16.21697,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,94.7,3.4,0,93.2,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,93.2,9.1646,1.386294,,0
-17,3,25,0,3,327715,0,9551.906,17.21697,1,12,1,10.31814,0,0,0,0,10.31814,0,0,0,1,0,4,94.7,3.4,0,93.2,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,93.2,9.1646,1.386294,2.333904,1
-17,3,25,0,4,327715,0,9551.906,18.21697,1,12,1,32.95851,0,25.97906,0,0,58.93757,0,0,0,2,1,4,94.7,3.4,0,93.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,93.2,9.1646,1.386294,4.076479,1
-17,3,25,0,5,327715,0,9551.906,19.21697,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,94.7,3.4,0,93.2,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,93.2,9.1646,1.386294,,0
-17,3,25,0,1,327716,0,9551.906,47.52635,0,12,1,57.12462,0,0,0,0,57.12462,0,0,0,2,1,4,79.8,6.9,0,64.8,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,64.8,9.1646,1.386294,4.045235,1
-17,3,25,0,2,327716,0,9551.906,48.52635,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,6.9,0,64.8,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,64.8,9.1646,1.386294,,0
-17,3,25,0,3,327716,0,9551.906,49.52635,0,12,1,43.20722,0,10.74806,0,0,53.95529,0,0,0,2,1,4,79.8,6.9,0,64.8,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,64.8,9.1646,1.386294,3.988156,1
-17,3,25,0,4,327716,0,9551.906,50.52635,0,12,1,15.12214,0,0,0,0,15.12214,0,0,0,2,0,4,79.8,6.9,0,64.8,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,64.8,9.1646,1.386294,2.71616,1
-17,3,25,0,5,327716,0,9551.906,51.52635,0,12,1,8.846426,0,17.33899,21.23142,0,26.18542,0,0,1,0,1,4,79.8,6.9,0,64.8,558,558,0,0,1.386294,6.324359,0,3.258096,7.710653,0,0,0,64.8,9.1646,1.386294,3.265203,1
-17,3,25,0,1,327717,0,9551.906,6.529774,1,12,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,4,90,9.967326,0,92.6,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,92.6,9.1646,1.386294,1.812983,1
-17,3,25,0,2,327717,0,9551.906,7.529774,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,92.6,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,92.6,9.1646,1.386294,,0
-17,3,25,0,3,327717,0,9551.906,8.529774,1,12,1,5.588994,7.003439,0,0,0,12.59243,0,0,0,1,0,4,90,9.967326,0,92.6,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,92.6,9.1646,1.386294,2.533096,1
-17,3,25,0,4,327717,0,9551.906,9.529774,1,12,1,5.816208,0,0,0,0,5.816208,0,0,0,1,0,4,90,9.967326,0,92.6,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,92.6,9.1646,1.386294,1.760648,1
-17,3,25,0,5,327717,0,9551.906,10.52977,1,12,1,23.35456,3.956122,0,0,0,27.31069,0,0,0,2,0,4,90,9.967326,0,92.6,558,558,1,1,1.386294,6.324359,0,3.258096,7.710653,0,0,0,92.6,9.1646,1.386294,3.307278,1
-6,3,25,1,1,327718,0,15862.76,12.10404,1,16,1,105.7445,0,0,0,0,105.7445,0,0,0,3,1,4,80,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.671792,1.386294,4.661026,1
-6,3,25,1,2,327718,0,15862.76,13.10404,1,16,1,59.91951,5.610795,.3598485,0,0,65.89015,0,0,0,7,0,4,80,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.671792,1.386294,4.187989,1
-6,3,25,1,3,327718,0,15862.76,14.10404,1,16,1,120.0694,7.893368,0,0,0,127.9627,0,0,0,8,0,4,80,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.671792,1.386294,4.851739,1
-6,3,25,1,4,327718,0,15862.76,15.10404,1,16,1,70.97676,4.07247,0,0,0,75.04923,0,0,0,7,0,4,80,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.671792,1.386294,4.318144,1
-6,3,25,1,5,327718,0,15862.76,16.10404,1,16,1,193.8998,37.10197,0,0,0,231.0018,0,0,0,12,1,4,80,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.671792,1.386294,5.442425,1
-6,3,25,1,1,327719,0,15862.76,40.31759,1,16,1,30.03606,17.46522,39.15508,162.2875,0,86.65636,0,0,12,2,1,4,53.7,17.2,1,68.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.671792,1.386294,4.46195,1
-6,3,25,1,2,327719,0,15862.76,41.31759,1,16,1,4.938447,3.598485,0,234.1619,0,8.536932,0,0,18,1,0,4,53.7,17.2,1,68.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.671792,1.386294,2.144402,1
-6,3,25,1,3,327719,0,15862.76,42.31759,1,16,1,18.68661,2.384048,31.49545,0,0,52.5661,0,0,0,1,1,4,53.7,17.2,1,68.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.671792,1.386294,3.962071,1
-6,3,25,1,4,327719,0,15862.76,43.31759,1,16,1,45.06499,15.21465,4.340292,0,0,64.61993,0,0,0,4,0,4,53.7,17.2,1,68.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.671792,1.386294,4.168523,1
-6,3,25,1,5,327719,0,15862.76,44.31759,1,16,1,136.8587,2.937388,35.29159,0,0,175.0877,0,0,0,2,18,4,53.7,17.2,1,68.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.671792,1.386294,5.165287,1
-6,3,25,1,1,327720,0,15862.76,40.62971,0,19,1,20.09274,0,23.69912,54.09583,0,43.79186,0,0,5,1,1,4,82.4,3.4,1,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.671792,1.386294,3.779448,1
-6,3,25,1,2,327720,0,15862.76,41.62971,0,19,1,30.18466,0,13.25758,269.8864,0,43.44223,0,0,19,1,0,4,82.4,3.4,1,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.671792,1.386294,3.771432,1
-6,3,25,1,3,327720,0,15862.76,42.62971,0,19,1,48.5479,0,0,0,0,48.5479,0,0,0,3,0,4,82.4,3.4,1,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.671792,1.386294,3.882551,1
-6,3,25,1,4,327720,0,15862.76,43.62971,0,19,1,17.72351,0,0,0,0,17.72351,0,0,0,1,0,4,82.4,3.4,1,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.671792,1.386294,2.874892,1
-6,3,25,1,5,327720,0,15862.76,44.62971,0,19,1,83.36315,10.48301,19.678,0,0,113.5241,0,0,0,6,0,4,82.4,3.4,1,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.671792,1.386294,4.732016,1
-6,3,25,1,1,327721,0,15862.76,14.35181,0,16,1,83.59093,0,0,0,0,83.59093,0,0,0,2,1,4,89.9,6.9,0,89.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.671792,1.386294,4.425935,1
-6,3,25,1,2,327721,0,15862.76,15.35181,0,16,1,6.155303,0,0,0,0,6.155303,0,0,0,1,0,4,89.9,6.9,0,89.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.671792,1.386294,1.817314,1
-6,3,25,1,3,327721,0,15862.76,16.35181,0,16,1,15.17122,0,0,0,0,15.17122,0,0,0,2,0,4,89.9,6.9,0,89.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.671792,1.386294,2.7194,1
-6,3,25,1,4,327721,0,15862.76,17.35181,0,16,1,37.90863,49.73218,0,0,0,87.6408,0,0,0,4,0,4,89.9,6.9,0,89.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.671792,1.386294,4.473247,1
-6,3,25,1,5,327721,0,15862.76,18.35181,0,16,1,39.35599,75.82468,0,0,0,115.1807,0,0,0,4,0,4,89.9,6.9,0,89.8,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.671792,1.386294,4.746502,1
-11,3,0,0,1,327724,0,8698.534,26.72416,0,14,1,110.7124,6.807072,0,0,392.8393,510.3588,1,0,0,6,0,2,71.8,6.9,0,77.4,0,100,0,0,.6931472,4.60517,0,0,0,0,0,0,77.4,9.071025,.6931472,6.235114,1
-11,3,0,0,2,327724,0,8698.534,27.72416,0,14,1,399.4744,12.13091,21.97802,0,0,433.5834,0,0,0,10,10,2,71.8,6.9,0,77.4,0,100,0,0,.6931472,4.60517,0,0,0,0,0,0,77.4,9.071025,.6931472,6.072084,1
-11,3,0,0,3,327724,0,8698.534,28.72416,0,14,1,68.48112,0,0,171.2028,861.7647,930.2458,1,0,21,5,0,2,71.8,6.9,0,77.4,0,100,0,0,.6931472,4.60517,0,0,0,0,0,0,77.4,9.071025,.6931472,6.835449,1
-11,3,0,0,1,327725,0,8698.534,20.56947,1,12,1,515.2106,27.69111,5.283412,23.40094,0,548.1851,0,0,3,13,1,2,68.1,13.8,0,54.5,0,100,0,0,.6931472,4.60517,0,0,0,1,0,0,54.5,9.071025,.6931472,6.306613,1
-11,3,0,0,2,327725,0,8698.534,21.56947,1,12,1,125.8003,9.665552,6.989966,0,0,142.4558,0,0,0,1,9,2,68.1,13.8,0,54.5,0,100,0,0,.6931472,4.60517,0,0,0,1,0,0,54.5,9.071025,.6931472,4.959032,1
-11,3,0,0,3,327725,0,8698.534,22.56947,1,12,1,30.28973,1.755926,24.14399,21.94908,0,56.18964,0,0,3,1,1,2,68.1,13.8,0,54.5,0,100,0,0,.6931472,4.60517,0,0,0,1,0,0,54.5,9.071025,.6931472,4.028732,1
-7,3,25,1,1,327728,0,4713.196,30.32991,0,12,1,18.89683,0,0,0,0,18.89683,0,0,0,2,0,4,57.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.458334,1.386294,2.938994,1
-7,3,25,1,2,327728,0,4713.196,31.32991,0,12,1,177.4496,0,0,0,0,177.4496,0,0,0,2,0,4,57.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.458334,1.386294,5.178687,1
-7,3,25,1,3,327728,0,4713.196,32.32991,0,12,1,144.54,4.170249,1.71969,0,0,150.4299,0,0,0,5,1,4,57.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.458334,1.386294,5.013497,1
-7,3,25,1,4,327728,0,4713.196,33.32991,0,12,1,19.38736,3.586662,0,0,0,22.97402,0,0,0,2,0,4,57.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.458334,1.386294,3.134364,1
-7,3,25,1,5,327728,0,4713.196,34.32991,0,12,1,7.430998,0,0,84.92569,0,7.430998,0,0,4,1,0,4,57.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.458334,1.386294,2.00566,1
-7,3,25,1,1,327729,0,4713.196,29.76865,1,12,1,614.2237,5.46476,0,0,0,619.6885,0,0,0,10,0,4,72.9,10.3,0,79.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.458334,1.386294,6.429217,1
-7,3,25,1,2,327729,0,4713.196,30.76865,1,12,1,5.625879,11.9925,0,0,0,17.61838,0,0,0,1,0,4,72.9,10.3,0,79.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.458334,1.386294,2.868942,1
-7,3,25,1,3,327729,0,4713.196,31.76865,1,12,1,1015.537,31.74549,3.439381,0,287.5064,1338.229,1,0,0,15,4,4,72.9,10.3,0,79.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.458334,1.386294,7.199102,1
-7,3,25,1,4,327729,0,4713.196,32.76865,1,12,1,93.44707,33.60217,0,0,0,127.0492,0,0,0,11,4,4,72.9,10.3,0,79.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.458334,1.386294,4.844575,1
-7,3,25,1,5,327729,0,4713.196,33.76865,1,12,1,55.90941,313.6023,0,0,0,369.5117,0,0,0,7,0,4,72.9,10.3,0,79.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.458334,1.386294,5.912182,1
-7,3,25,1,1,327730,0,4713.196,5.108829,0,12,1,41.36874,13.381,0,15.32176,0,54.74974,0,0,1,4,0,4,83.39137,9.967326,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.458334,1.386294,4.002773,1
-7,3,25,1,2,327730,0,4713.196,6.108829,0,12,1,6.094702,62.27848,0,28.12939,0,68.37318,0,0,2,1,0,4,83.39137,9.967326,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.458334,1.386294,4.224981,1
-7,3,25,1,3,327730,0,4713.196,7.108829,0,12,1,0,75.5675,0,0,0,75.5675,0,0,0,0,0,4,83.39137,9.967326,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.458334,1.386294,4.325026,1
-7,3,25,1,4,327730,0,4713.196,8.108829,0,12,1,12.40791,73.19504,0,85.30438,0,85.60294,0,0,4,2,0,4,83.39137,9.967326,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.458334,1.386294,4.44972,1
-7,3,25,1,5,327730,0,4713.196,9.108829,0,12,1,10.96957,101.3128,0,136.235,0,112.2824,0,0,7,2,0,4,83.39137,9.967326,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.458334,1.386294,4.721017,1
-7,3,25,1,1,327731,0,4713.196,5.842574,0,12,1,56.63943,59.60163,0,112.3596,0,116.2411,0,0,5,7,0,4,80,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.458334,1.386294,4.755666,1
-7,3,25,1,2,327731,0,4713.196,6.842574,0,12,1,85.32583,74.28973,0,14.0647,0,159.6156,0,0,1,3,0,4,80,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.458334,1.386294,5.072768,1
-7,3,25,1,3,327731,0,4713.196,7.842574,0,12,1,6.018917,132.9192,0,0,0,138.9381,0,0,0,1,0,4,80,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.458334,1.386294,4.934029,1
-7,3,25,1,4,327731,0,4713.196,8.842573,0,12,1,94.3544,123.7262,0,85.30438,0,218.0807,0,0,4,7,0,4,80,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.458334,1.386294,5.384865,1
-7,3,25,1,5,327731,0,4713.196,9.842573,0,12,1,32.37792,109.7594,1.610049,221.1606,0,143.7473,0,0,11,3,0,4,80,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.458334,1.386294,4.968057,1
-11,3,0,0,1,327739,0,14627.57,43.52635,1,14,1,93.51379,27.01736,22.98264,0,0,143.5138,0,0,0,3,1,5,68.6,48.3,1,25,0,521.28,0,0,1.609438,6.256287,0,0,0,0,1,0,25,9.590732,1.609438,4.966431,1
-11,3,0,0,2,327739,0,14627.57,44.52635,1,14,1,0,13.36146,0,0,0,13.36146,0,0,0,0,0,5,68.6,48.3,1,25,0,521.28,0,0,1.609438,6.256287,0,0,0,0,1,0,25,9.590732,1.609438,2.592375,1
-11,3,0,0,3,327739,0,14627.57,45.52635,1,14,1,91.44454,20.48581,20.63629,0,0,132.5666,0,0,0,2,1,5,68.6,48.3,1,25,0,521.28,0,0,1.609438,6.256287,0,0,0,0,1,0,25,9.590732,1.609438,4.887085,1
-11,3,0,0,1,327740,0,14627.57,48.74743,0,20,1,124.9234,27.37487,42.39019,0,535.143,729.8315,1,0,0,7,1,5,47.9,20.7,1,56.8,0,521.28,0,0,1.609438,6.256287,0,0,0,1,0,0,56.8,9.590732,1.609438,6.592813,1
-11,3,0,0,2,327740,0,14627.57,49.74743,0,20,1,79.98125,0,10.78294,0,0,90.76418,0,0,0,4,1,5,47.9,20.7,1,56.8,0,521.28,0,0,1.609438,6.256287,0,0,0,1,0,0,56.8,9.590732,1.609438,4.508265,1
-11,3,0,0,3,327740,0,14627.57,50.74743,0,20,1,207.6311,22.7859,3.22442,0,0,233.6414,0,0,0,4,0,5,47.9,20.7,1,56.8,0,521.28,0,0,1.609438,6.256287,0,0,0,1,0,0,56.8,9.590732,1.609438,5.453788,1
-11,3,0,0,1,327741,0,14627.57,14.88022,0,14,1,104.188,0,26.55771,0,0,130.7457,0,0,0,4,1,5,67.2,13.8,0,53.4,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,53.4,9.590732,1.609438,4.873254,1
-11,3,0,0,2,327741,0,14627.57,15.88022,0,14,1,37.97468,0,0,0,0,37.97468,0,0,0,3,0,5,67.2,13.8,0,53.4,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,53.4,9.590732,1.609438,3.63692,1
-11,3,0,0,3,327741,0,14627.57,16.88022,0,14,1,18.48667,5.803955,23.64574,0,0,47.93637,0,0,0,1,1,5,67.2,13.8,0,53.4,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,53.4,9.590732,1.609438,3.869874,1
-11,3,0,0,1,327742,0,14627.57,12.96099,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,70,9.967326,0,18.5,0,521.28,1,1,1.609438,6.256287,0,0,0,0,1,0,18.5,9.590732,1.609438,,0
-11,3,0,0,2,327742,0,14627.57,13.96099,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,70,9.967326,0,18.5,0,521.28,1,1,1.609438,6.256287,0,0,0,0,1,0,18.5,9.590732,1.609438,,0
-11,3,0,0,3,327742,0,14627.57,14.96099,1,14,1,37.40327,24.07567,0,0,0,61.47894,0,0,0,4,0,5,70,9.967326,0,18.5,0,521.28,1,1,1.609438,6.256287,0,0,0,0,1,0,18.5,9.590732,1.609438,4.118695,1
-11,3,0,0,1,327743,0,14627.57,11.87406,0,14,1,33.70787,0,0,0,0,33.70787,0,0,0,2,0,5,48.3,9.967326,0,63,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,63,9.590732,1.609438,3.517731,1
-11,3,0,0,2,327743,0,14627.57,12.87406,0,14,1,10.78294,0,0,0,0,10.78294,0,0,0,2,0,5,48.3,9.967326,0,63,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,63,9.590732,1.609438,2.377965,1
-11,3,0,0,3,327743,0,14627.57,13.87406,0,14,1,236.9046,29.77214,0,0,0,266.6767,0,0,0,5,0,5,48.3,9.967326,0,63,0,521.28,1,0,1.609438,6.256287,0,0,0,1,0,0,63,9.590732,1.609438,5.586037,1
-13,3,0,0,1,327890,0,9591.202,17.6345,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,31.4,6.9,0,47.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,9.168706,1.386294,,0
-13,3,0,0,1,327891,0,9591.202,13.94387,0,11,1,79.05719,0,0,0,0,79.05719,0,0,0,2,0,4,64.4,0,0,56.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,56.8,9.168706,1.386294,4.370172,1
-13,3,0,0,2,327891,0,9591.202,14.94387,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,0,0,56.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,56.8,9.168706,1.098612,,0
-13,3,0,0,3,327891,0,9591.202,15.94387,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,0,0,56.8,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,56.8,9.168706,1.098612,,0
-13,3,0,0,1,327892,0,9591.202,12.05202,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.168706,1.386294,,0
-13,3,0,0,2,327892,0,9591.202,13.05202,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,9.967326,0,85.2,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.168706,1.098612,,0
-13,3,0,0,3,327892,0,9591.202,14.05202,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,9.967326,0,85.2,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.168706,1.098612,,0
-13,3,0,0,1,327893,0,9591.202,48.91171,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,0,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.168706,1.386294,,0
-13,3,0,0,2,327893,0,9591.202,49.91171,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,0,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.168706,1.098612,,0
-13,3,0,0,3,327893,0,9591.202,50.91171,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,0,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.168706,1.098612,,0
-15,3,95,0,1,327894,0,9768.328,30.08898,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,10.3,0,63.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.187003,1.609438,,0
-15,3,95,0,2,327894,0,9768.328,31.08898,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,10.3,0,63.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.187003,1.609438,,0
-15,3,95,0,3,327894,0,9768.328,32.08898,1,12,1,6.501951,0,0,0,0,6.501951,0,0,0,1,0,5,64.9,10.3,0,63.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,63.6,9.187003,1.609438,1.872102,1
-15,3,95,0,1,327895,0,9768.328,8.060233,1,12,1,8.243174,2.035033,0,0,0,10.27821,0,0,0,1,0,5,90,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.187003,1.609438,2.330026,1
-15,3,95,0,2,327895,0,9768.328,9.060233,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.187003,1.609438,,0
-15,3,95,0,3,327895,0,9768.328,10.06023,1,12,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,5,90,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.187003,1.609438,2.159784,1
-15,3,95,0,1,327896,0,9768.328,31.03628,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,0,0,71.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.187003,1.609438,,0
-15,3,95,0,2,327896,0,9768.328,32.03628,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,0,0,71.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.187003,1.609438,,0
-15,3,95,0,3,327896,0,9768.328,33.03628,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,60.6,0,0,71.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.187003,1.609438,,0
-15,3,95,0,1,327897,0,9768.328,6.746064,0,12,1,18.54714,0,0,0,0,18.54714,0,0,0,1,1,5,71.7,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.187003,1.609438,2.920316,1
-15,3,95,0,2,327897,0,9768.328,7.746064,0,12,1,24.62121,4.573864,0,0,0,29.19508,0,0,0,2,1,5,71.7,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.187003,1.609438,3.374,1
-15,3,95,0,3,327897,0,9768.328,8.746064,0,12,1,8.669268,0,19.07239,0,0,27.74166,0,0,0,1,0,5,71.7,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.187003,1.609438,3.322935,1
-15,3,95,0,1,327898,0,9768.328,5.103354,0,12,1,13.91036,0,0,0,0,13.91036,0,0,0,1,0,5,95,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.187003,1.609438,2.632634,1
-15,3,95,0,2,327898,0,9768.328,6.103354,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.187003,1.609438,,0
-15,3,95,0,3,327898,0,9768.328,7.103354,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,9.187003,1.609438,,0
-15,3,95,1,1,327899,0,6324.34,2.373717,1,13,1,19.4745,7.027306,0,0,0,26.5018,0,0,0,2,0,4,83.39137,9.967326,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.752319,1.386294,3.277213,1
-15,3,95,1,2,327899,0,6324.34,3.373717,1,13,1,10.41667,3.499053,0,0,0,13.91572,0,0,0,2,0,4,83.39137,9.967326,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.752319,1.386294,2.633019,1
-15,3,95,1,3,327899,0,6324.34,4.373717,1,13,1,26.0078,2.717815,0,43.34634,0,28.72562,0,0,1,1,1,4,83.39137,9.967326,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.752319,1.386294,3.357789,1
-15,3,95,1,1,327900,0,6324.34,26.17933,1,13,1,16.22875,17.8001,0,0,0,34.02885,0,0,0,1,0,4,81.4,10.3,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,8.752319,1.386294,3.527209,1
-15,3,95,1,2,327900,0,6324.34,27.17933,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,10.3,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,8.752319,1.386294,,0
-15,3,95,1,3,327900,0,6324.34,28.17933,1,13,1,543.7625,11.7772,0,0,534.7637,1090.303,1,0,0,4,1,4,81.4,10.3,0,85.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,8.752319,1.386294,6.994211,1
-15,3,95,1,1,327901,0,6324.34,27.81383,0,12,1,38.63988,0,27.30551,0,0,65.94539,0,0,0,3,1,4,84.6,3.4,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,8.752319,1.386294,4.188827,1
-15,3,95,1,2,327901,0,6324.34,28.81383,0,12,1,30.77652,0,0,0,0,30.77652,0,0,0,3,0,4,84.6,3.4,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,8.752319,1.386294,3.426752,1
-15,3,95,1,3,327901,0,6324.34,29.81383,0,12,1,10.83658,0,0,0,0,10.83658,0,0,0,1,0,4,84.6,3.4,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,8.752319,1.386294,2.382928,1
-15,3,95,1,1,327902,0,6324.34,2.373717,1,13,1,10.30397,8.325605,0,0,0,18.62957,0,0,0,2,0,4,83.39137,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.752319,1.386294,2.92475,1
-15,3,95,1,2,327902,0,6324.34,3.373717,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.752319,1.386294,,0
-15,3,95,1,3,327902,0,6324.34,4.373717,1,13,1,31.20936,2.336368,0,43.34634,0,33.54573,0,0,1,2,1,4,83.39137,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.752319,1.386294,3.51291,1
-11,3,0,1,1,327933,0,8811.144,33.35798,1,12,1,80.37094,39.31994,12.87996,0,635.0541,767.6249,1,0,0,7,1,5,67,17.2,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.083886,1.609438,6.643301,1
-11,3,0,1,2,327933,0,8811.144,34.35798,1,12,1,22.72727,15.37405,0,0,473.7926,511.894,1,0,0,3,0,5,67,17.2,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.083886,1.609438,6.238118,1
-11,3,0,1,3,327933,0,8811.144,35.35798,1,12,1,35.37061,9.718248,21.23971,0,0,66.32857,0,0,0,3,1,5,67,17.2,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.083886,1.609438,4.194621,1
-11,3,0,1,4,327933,0,8811.144,36.35798,1,12,1,28.12131,8.011028,0,0,0,36.13234,0,0,0,2,0,5,67,17.2,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.083886,1.609438,3.587188,1
-11,3,0,1,5,327933,0,8811.144,37.35798,1,12,1,220.4293,16.1288,23.23792,0,0,259.7961,0,0,0,4,3,5,67,17.2,0,73.9,0,0,0,0,1.609438,0,0,0,0,0,0,0,73.9,9.083886,1.609438,5.559897,1
-11,3,0,1,1,327934,0,8811.144,34.55715,0,9,1,73.87944,14.70376,0,0,0,88.58321,0,0,0,6,1,5,76.1,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,53.4,9.083886,1.609438,4.483943,1
-11,3,0,1,2,327934,0,8811.144,35.55715,0,9,1,17.99242,28.02083,0,0,0,46.01326,0,0,0,6,0,5,76.1,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,53.4,9.083886,1.609438,3.828929,1
-11,3,0,1,3,327934,0,8811.144,36.55715,0,9,1,13.87083,4.117902,0,0,0,17.98873,0,0,0,1,0,5,76.1,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,53.4,9.083886,1.609438,2.889745,1
-11,3,0,1,4,327934,0,8811.144,37.55715,0,9,1,74.24183,16.31745,0,0,980.5869,1071.146,1,0,0,2,0,5,76.1,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,53.4,9.083886,1.609438,6.976484,1
-11,3,0,1,5,327934,0,8811.144,38.55715,0,9,1,26.47585,27.74955,23.25581,0,0,77.48122,0,0,0,3,1,5,76.1,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,1,0,0,53.4,9.083886,1.609438,4.350036,1
-11,3,0,1,1,327935,0,8811.144,11.82478,0,12,1,25.55384,14.69861,0,0,0,40.25245,0,0,0,3,0,5,91.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,3.695171,1
-11,3,0,1,2,327935,0,8811.144,12.82478,0,12,1,66.95076,0,.9469697,0,0,67.89773,0,0,0,3,0,5,91.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,4.218003,1
-11,3,0,1,3,327935,0,8811.144,13.82478,0,12,1,259.6012,16.19853,0,0,383.3116,659.1114,1,0,0,13,1,5,91.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,6.490892,1
-11,3,0,1,4,327935,0,8811.144,14.82478,0,12,1,74.75384,0,.7877117,0,0,75.54155,0,0,0,4,1,5,91.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,4.324683,1
-11,3,0,1,5,327935,0,8811.144,15.82478,0,12,1,39.57066,17.27012,0,0,0,56.84079,0,0,0,6,0,5,91.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,4.040254,1
-11,3,0,1,1,327936,0,8811.144,9.924709,1,12,1,17.00154,0,26.27512,0,0,43.27666,0,0,0,0,1,5,86.7,9.967326,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,9.083886,1.609438,3.767613,1
-11,3,0,1,2,327936,0,8811.144,10.92471,1,12,1,31.1553,10.26515,0,0,729.91,771.3305,1,0,0,2,0,5,86.7,9.967326,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,9.083886,1.609438,6.648117,1
-11,3,0,1,3,327936,0,8811.144,11.92471,1,12,1,79.3238,12.07195,23.84048,0,420.3338,535.57,1,0,0,6,1,5,86.7,9.967326,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,9.083886,1.609438,6.283331,1
-11,3,0,1,4,327936,0,8811.144,12.92471,1,12,1,163.9228,0,.7877117,189.0508,0,164.7105,0,0,8,8,0,5,86.7,9.967326,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,9.083886,1.609438,5.104189,1
-11,3,0,1,5,327936,0,8811.144,13.92471,1,12,1,433.8462,16.50447,22.71199,0,758.0179,1231.08,2,0,0,14,1,5,86.7,9.967326,0,77.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,77.8,9.083886,1.609438,7.115647,1
-11,3,0,1,1,327937,0,8811.144,13.73306,0,12,1,13.91036,.7727975,0,0,0,14.68315,0,0,0,2,0,5,73.3,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,2.686701,1
-11,3,0,1,2,327937,0,8811.144,14.73306,0,12,1,4.734848,2.840909,0,0,0,7.575758,0,0,0,1,0,5,73.3,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,2.024953,1
-11,3,0,1,3,327937,0,8811.144,15.73306,0,12,1,119.3325,8.105765,0,0,438.6216,566.0598,1,0,0,9,1,5,73.3,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,6.3387,1
-11,3,0,1,4,327937,0,8811.144,16.73306,0,12,1,337.4675,13.60772,0,459.8543,3016.766,3367.842,1,0,16,8,18,5,73.3,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,8.122027,1
-11,3,0,1,5,327937,0,8811.144,17.73306,0,12,1,122.8623,2.075134,17.35242,150.2683,0,142.2898,0,0,7,6,1,5,73.3,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.083886,1.609438,4.957866,1
-13,3,0,1,1,327939,0,7542.522,42.20123,0,9,1,12.36476,19.50026,0,0,400.1133,431.9784,1,0,0,2,0,4,72.9,3.4,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.928445,1.386294,6.068376,1
-13,3,0,1,2,327939,0,7542.522,43.20123,0,9,1,10.89015,0,25.0947,0,0,35.98485,0,0,0,0,1,4,72.9,3.4,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.928445,1.386294,3.583098,1
-13,3,0,1,3,327939,0,7542.522,44.20123,0,9,1,99.52319,0,0,0,0,99.52319,0,0,0,1,0,4,72.9,3.4,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.928445,1.386294,4.600391,1
-13,3,0,1,4,327939,0,7542.522,45.20123,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,72.9,3.4,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.928445,1.386294,,0
-13,3,0,1,5,327939,0,7542.522,46.20123,0,9,1,23.25581,1.592129,0,0,0,24.84794,0,0,0,2,0,4,72.9,3.4,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.928445,1.386294,3.212775,1
-13,3,0,1,1,327940,0,7542.522,37.71389,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.928445,1.386294,,0
-13,3,0,1,2,327940,0,7542.522,38.71389,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.928445,1.386294,,0
-13,3,0,1,3,327940,0,7542.522,39.71389,1,10,1,91.28738,0,0,0,0,91.28738,0,0,0,4,0,4,70.2,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.928445,1.386294,4.514013,1
-13,3,0,1,4,327940,0,7542.522,40.71389,1,10,1,0,2.993304,0,0,0,2.993304,0,0,0,0,0,4,70.2,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.928445,1.386294,1.096378,1
-13,3,0,1,5,327940,0,7542.522,41.71389,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.928445,1.386294,,0
-13,3,0,1,1,327941,0,7542.522,15.52361,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,3.4,0,77.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.928445,1.386294,,0
-13,3,0,1,2,327941,0,7542.522,16.52361,0,10,1,28.83523,2.556818,25.0947,0,0,56.48674,0,0,0,2,1,4,76.1,3.4,0,77.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.928445,1.386294,4.034006,1
-13,3,0,1,3,327941,0,7542.522,17.52361,0,10,1,16.12484,0,0,0,0,16.12484,0,0,0,1,0,4,76.1,3.4,0,77.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.928445,1.386294,2.780361,1
-13,3,0,1,4,327941,0,7542.522,18.52361,0,10,1,48.87751,2.028358,0,0,0,50.90587,0,0,0,1,0,4,76.1,3.4,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.928445,1.386294,3.929978,1
-13,3,0,1,5,327941,0,7542.522,19.52361,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,3.4,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.928445,1.386294,,0
-13,3,0,1,1,327942,0,7542.522,9.89733,1,10,1,5.151984,2.575992,0,0,0,7.727975,0,0,0,1,0,4,80,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.928445,1.386294,2.044847,1
-13,3,0,1,2,327942,0,7542.522,10.89733,1,10,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,80,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.928445,1.386294,1.737271,1
-13,3,0,1,3,327942,0,7542.522,11.89733,1,10,1,13.0039,5.158214,0,0,0,18.16212,0,0,0,3,0,4,80,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.928445,1.386294,2.899338,1
-13,3,0,1,4,327942,0,7542.522,12.89733,1,10,1,7.877117,.9846396,0,0,0,8.861756,0,0,0,1,0,4,80,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.928445,1.386294,2.181745,1
-13,3,0,1,5,327942,0,7542.522,13.89733,1,10,1,57.45975,1.663685,7.298748,0,0,66.42218,0,0,0,3,0,4,80,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.928445,1.386294,4.196031,1
-10,3,50,1,1,328003,0,7545.455,37.56331,1,12,1,133.9632,11.56793,0,0,396.1645,541.6956,1,0,0,6,0,4,86.7,20.7,0,92,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,92,8.928833,1.386294,6.294704,1
-10,3,50,1,2,328003,0,7545.455,38.56331,1,12,1,26.2541,2.798875,0,14.0647,0,29.05298,0,0,1,1,0,4,86.7,20.7,0,92,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,92,8.928833,1.386294,3.369121,1
-10,3,50,1,3,328003,0,7545.455,39.56331,1,12,1,42.82029,1.878762,0,0,0,44.69905,0,0,0,4,0,4,86.7,20.7,0,92,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,92,8.928833,1.386294,3.799952,1
-10,3,50,1,4,328003,0,7545.455,40.56331,1,12,1,220.822,12.64056,0,0,0,233.4626,0,0,0,5,0,4,86.7,20.7,0,92,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,92,8.928833,1.386294,5.453022,1
-10,3,50,1,5,328003,0,7545.455,41.56331,1,12,1,34.67799,10.16277,35.03185,0,0,79.87261,0,0,0,4,1,4,86.7,20.7,0,92,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,92,8.928833,1.386294,4.380433,1
-10,3,50,1,1,328004,0,7545.455,14.98152,0,12,1,2.042901,0,0,0,0,2.042901,0,0,0,0,0,4,84.6,3.4,0,90.9,1000,0,1,0,1.386294,0,0,3.931826,7.600903,0,0,0,90.9,8.928833,1.386294,.7143708,1
-10,3,50,1,2,328004,0,7545.455,15.98152,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,3.4,0,90.9,1000,0,1,0,1.386294,0,0,3.931826,7.600903,0,0,0,90.9,8.928833,1.386294,,0
-10,3,50,1,3,328004,0,7545.455,16.98152,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,3.4,0,90.9,1000,0,1,0,1.386294,0,0,3.931826,7.600903,0,0,0,90.9,8.928833,1.386294,,0
-10,3,50,1,4,328004,0,7545.455,17.98152,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,3.4,0,90.9,1000,0,1,0,1.386294,0,0,3.931826,7.600903,0,0,0,90.9,8.928833,1.386294,,0
-10,3,50,1,5,328004,0,7545.455,18.98152,0,12,1,8.846426,0,0,0,0,8.846426,0,0,0,1,0,4,84.6,3.4,0,90.9,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,90.9,8.928833,1.386294,2.180013,1
-10,3,50,1,1,328005,0,7545.455,13.06229,1,12,1,87.84474,10.02043,0,0,0,97.86517,0,0,0,10,0,4,95,9.967326,0,100,1000,0,1,1,1.386294,0,0,3.931826,7.600903,0,0,0,100,8.928833,1.386294,4.583591,1
-10,3,50,1,2,328005,0,7545.455,14.06229,1,12,1,118.6123,0,25.78528,0,140.7173,285.1149,1,0,0,11,1,4,95,9.967326,0,100,1000,0,1,1,1.386294,0,0,3.931826,7.600903,0,0,0,100,8.928833,1.386294,5.652892,1
-10,3,50,1,3,328005,0,7545.455,15.06229,1,12,1,52.88048,.9845228,0,0,0,53.86501,0,0,0,6,0,4,95,9.967326,0,100,1000,0,1,1,1.386294,0,0,3.931826,7.600903,0,0,0,100,8.928833,1.386294,3.986481,1
-10,3,50,1,4,328005,0,7545.455,16.06229,1,12,1,35.67274,8.801861,27.1423,0,0,71.61691,0,0,0,2,1,4,95,9.967326,0,100,1000,0,1,1,1.386294,0,0,3.931826,7.600903,0,0,0,100,8.928833,1.386294,4.271331,1
-10,3,50,1,5,328005,0,7545.455,17.06229,1,12,1,45.64756,7.00637,0,0,0,52.65393,0,0,0,2,0,4,95,9.967326,0,100,1000,0,1,1,1.386294,0,0,3.931826,7.600903,0,0,0,100,8.928833,1.386294,3.963741,1
-10,3,50,1,1,328006,0,7545.455,41.63176,0,12,1,24.51481,0,0,0,0,24.51481,0,0,0,0,5,4,83,6.9,0,97.7,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,97.7,8.928833,1.386294,3.199277,1
-10,3,50,1,2,328006,0,7545.455,42.63176,0,12,1,34.69292,4.050633,.4688233,0,0,39.21238,0,0,0,2,0,4,83,6.9,0,97.7,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,97.7,8.928833,1.386294,3.668993,1
-10,3,50,1,3,328006,0,7545.455,43.63176,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83,6.9,0,97.7,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,97.7,8.928833,1.386294,,0
-10,3,50,1,4,328006,0,7545.455,44.63176,0,12,1,108.1815,0,0,0,0,108.1815,0,0,0,2,0,4,83,6.9,0,97.7,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,97.7,8.928833,1.386294,4.68381,1
-10,3,50,1,5,328006,0,7545.455,45.63176,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83,6.9,0,97.7,1000,0,0,0,1.386294,0,0,3.931826,7.600903,0,0,0,97.7,8.928833,1.386294,,0
-13,3,0,1,1,328029,0,6579.355,9.880903,0,12,1,15.97115,0,0,0,0,15.97115,0,0,0,1,0,4,75,9.967326,0,81.5,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.791844,1.386294,2.770784,1
-13,3,0,1,2,328029,0,6579.355,10.8809,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,9.967326,0,81.5,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.791844,1.386294,,0
-13,3,0,1,3,328029,0,6579.355,11.8809,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,9.967326,0,81.5,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.791844,1.386294,,0
-13,3,0,1,1,328030,0,6579.355,34.00137,1,12,1,7.727975,0,0,0,0,7.727975,0,0,0,1,0,4,76.1,10.3,0,85.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,85.2,8.791844,1.386294,2.044847,1
-13,3,0,1,2,328030,0,6579.355,35.00137,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,10.3,0,85.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,85.2,8.791844,1.386294,,0
-13,3,0,1,3,328030,0,6579.355,36.00137,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,10.3,0,85.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,85.2,8.791844,1.386294,,0
-13,3,0,1,1,328031,0,6579.355,11.66324,0,12,1,37.55796,0,0,0,0,37.55796,0,0,0,2,0,4,90,9.967326,0,96.3,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,96.3,8.791844,1.386294,3.625885,1
-13,3,0,1,2,328031,0,6579.355,12.66324,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,96.3,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,96.3,8.791844,1.386294,,0
-13,3,0,1,3,328031,0,6579.355,13.66324,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,96.3,450,0,1,0,1.386294,0,1,4.564348,6.160541,0,0,0,96.3,8.791844,1.386294,,0
-13,3,0,1,1,328032,0,6579.355,34.34086,0,12,1,15.14683,0,0,0,0,15.14683,0,0,0,1,0,4,79.8,6.9,0,45.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,45.5,8.791844,1.386294,2.717791,1
-13,3,0,1,2,328032,0,6579.355,35.34086,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,6.9,0,45.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,45.5,8.791844,1.386294,,0
-13,3,0,1,3,328032,0,6579.355,36.34086,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,6.9,0,45.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,45.5,8.791844,1.386294,,0
-11,3,0,1,1,328077,0,9701.466,.7939767,0,12,1,59.86605,10.69552,0,0,0,70.56157,0,0,0,5,0,3,83.39137,9.967326,0,100,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,100,9.180136,1.098612,4.256485,1
-11,3,0,1,2,328077,0,9701.466,1.793977,0,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,3,83.39137,9.967326,0,100,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,100,9.180136,1.098612,1.737271,1
-11,3,0,1,3,328077,0,9701.466,2.793977,0,12,1,24.27395,2.709146,0,0,0,26.9831,0,0,0,3,0,3,83.39137,9.967326,0,100,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,100,9.180136,1.098612,3.295211,1
-11,3,0,1,1,328078,0,9701.466,31.58658,0,12,1,98.91808,6.666667,0,0,0,105.5847,0,0,0,3,4,3,79.8,6.9,0,76.1,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,76.1,9.180136,1.098612,4.659514,1
-11,3,0,1,2,328078,0,9701.466,32.58659,0,12,1,0,0,8.996212,0,0,8.996212,0,0,0,0,0,3,79.8,6.9,0,76.1,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,76.1,9.180136,1.098612,2.196804,1
-11,3,0,1,3,328078,0,9701.466,33.58659,0,12,1,13.87083,3.337668,0,0,0,17.2085,0,0,0,2,0,3,79.8,6.9,0,76.1,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,76.1,9.180136,1.098612,2.845403,1
-11,3,0,1,1,328079,0,9701.466,23.50445,1,12,1,19.57754,0,0,0,0,19.57754,0,0,0,2,0,3,88.8,6.9,0,71.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,71.6,9.180136,1.098612,2.974383,1
-11,3,0,1,2,328079,0,9701.466,24.50445,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,6.9,0,71.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,71.6,9.180136,1.098612,,0
-11,3,0,1,3,328079,0,9701.466,25.50445,1,12,1,0,.9059384,25.03251,0,0,25.93845,0,0,0,0,0,3,88.8,6.9,0,71.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,71.6,9.180136,1.098612,3.255726,1
-11,3,0,0,1,328097,0,5879.179,48.5421,1,14,1,77.07368,142.5554,26.79031,0,0,246.4194,0,0,0,6,1,2,85.6,24.1,1,73.9,0,765.6,0,0,.6931472,6.64066,0,0,0,1,0,0,73.9,8.679342,.6931472,5.507035,1
-11,3,0,0,2,328097,0,5879.179,49.5421,1,14,1,60.13258,102.0597,10.89015,0,1940.151,2113.234,2,0,0,4,1,2,85.6,24.1,1,73.9,0,765.6,0,0,.6931472,6.64066,0,0,0,1,0,0,73.9,8.679342,.6931472,7.655975,1
-11,3,0,0,3,328097,0,5879.179,50.5421,1,14,1,119.3325,110.6849,35.7694,0,0,265.7867,0,0,0,7,1,2,85.6,24.1,1,73.9,0,765.6,0,0,.6931472,6.64066,0,0,0,1,0,0,73.9,8.679342,.6931472,5.582694,1
-11,3,0,0,1,328098,0,5879.179,49.22656,0,12,1,14.42555,0,0,0,0,14.42555,0,0,0,0,0,2,86.2,0,0,85.2,0,765.6,0,0,.6931472,6.64066,0,0,0,0,0,0,85.2,8.679342,.6931472,2.669001,1
-11,3,0,0,2,328098,0,5879.179,50.22656,0,12,1,64.39394,61.10322,24.62121,0,0,150.1184,0,0,0,10,1,2,86.2,0,0,85.2,0,765.6,0,0,.6931472,6.64066,0,0,0,0,0,0,85.2,8.679342,.6931472,5.011424,1
-11,3,0,0,3,328098,0,5879.179,51.22656,0,12,1,67.18682,87.92805,10.83658,0,0,165.9514,0,0,0,11,1,2,86.2,0,0,85.2,0,765.6,0,0,.6931472,6.64066,0,0,0,0,0,0,85.2,8.679342,.6931472,5.111695,1
-11,3,0,1,1,328163,0,10906.75,56.86516,0,11,1,30.3967,14.72952,35.54869,0,0,80.67491,0,0,0,3,1,2,81.4,13.8,0,68.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.2,9.297229,.6931472,4.390428,1
-11,3,0,1,2,328163,0,10906.75,57.86516,0,11,1,76.23106,13.70739,0,0,0,89.93845,0,0,0,4,0,2,81.4,13.8,0,68.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.2,9.297229,.6931472,4.499125,1
-11,3,0,1,3,328163,0,10906.75,58.86516,0,11,1,59.29779,16.88773,30.34244,0,0,106.528,0,0,0,4,1,2,81.4,13.8,0,68.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,68.2,9.297229,.6931472,4.668407,1
-11,3,0,1,1,328164,0,10906.75,17.51403,1,11,1,10.30397,2.833591,0,0,0,13.13756,0,0,0,1,0,2,55.9,3.4,0,81.8,0,0,1,1,.6931472,0,0,0,0,0,0,0,81.8,9.297229,.6931472,2.575475,1
-11,3,0,1,2,328164,0,10906.75,18.51403,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,55.9,3.4,0,81.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,81.8,9.297229,.6931472,,0
-11,3,0,1,3,328164,0,10906.75,19.51403,1,11,1,275.6393,8.39185,0,0,0,284.0312,0,0,0,5,0,2,55.9,3.4,0,81.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,81.8,9.297229,.6931472,5.649084,1
-16,3,95,0,1,328270,0,5283.871,13.01027,0,9,1,5.107252,0,0,0,0,5.107252,0,0,0,1,0,3,70,9.967326,0,66.7,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.572603,1.098612,1.630661,1
-16,3,95,0,2,328270,0,5283.871,14.01027,0,9,1,4.688232,0,0,0,0,4.688232,0,0,0,1,0,3,70,9.967326,0,66.7,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.572603,1.098612,1.545056,1
-16,3,95,0,3,328270,0,5283.871,15.01027,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70,9.967326,0,66.7,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.572603,1.098612,,0
-16,3,95,0,1,328271,0,5283.871,15.03354,1,9,1,92.21144,12.1144,0,0,0,104.3258,0,0,0,6,0,3,65.4,6.9,1,42,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,42,8.572603,1.098612,4.647519,1
-16,3,95,0,2,328271,0,5283.871,16.03354,1,9,1,66.10408,2.33474,0,0,0,68.43882,0,0,0,4,0,3,65.4,6.9,1,42,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,42,8.572603,1.098612,4.22594,1
-16,3,95,0,3,328271,0,5283.871,17.03354,1,9,1,96.21668,3.396389,0,0,0,99.61307,0,0,0,2,0,3,65.4,6.9,1,42,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,42,8.572603,1.098612,4.601294,1
-16,3,95,0,1,328272,0,5283.871,41.99863,1,9,1,158.8355,30.87334,0,20.42901,1112.84,1302.548,1,0,4,10,17,3,73.4,24.1,0,56.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,1,0,56.8,8.572603,1.098612,7.172078,1
-16,3,95,0,2,328272,0,5283.871,42.99863,1,9,1,35.63057,48.12471,0,0,0,83.75527,0,0,0,2,0,3,73.4,24.1,0,56.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,1,0,56.8,8.572603,1.098612,4.427899,1
-16,3,95,0,3,328272,0,5283.871,43.99863,1,9,1,231.5133,60.5761,0,0,1079.359,1371.449,2,0,0,11,5,3,73.4,24.1,0,56.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,1,0,56.8,8.572603,1.098612,7.223623,1
-16,3,95,0,1,328273,0,7437.22,22.14921,1,12,1,11.23596,30.2094,0,0,0,41.44535,0,0,0,2,0,1,69.7,6.9,0,69.3,780,780,0,0,0,6.659294,0,4.564348,6.710587,0,0,0,69.3,8.914387,0,3.724376,1
-16,3,95,0,2,328273,0,7437.22,23.14921,1,12,1,79.23113,23.65213,0,0,0,102.8833,0,0,0,6,1,1,69.7,6.9,0,69.3,780,780,0,0,0,6.659294,0,4.564348,6.710587,0,0,0,69.3,8.914387,0,4.633595,1
-16,3,95,0,3,328273,0,7437.22,24.14921,1,12,1,21.49613,36.75838,0,0,0,58.25451,0,0,0,2,1,1,69.7,6.9,0,69.3,780,780,0,0,0,6.659294,0,4.564348,6.710587,0,0,0,69.3,8.914387,0,4.064822,1
-16,3,95,0,1,328274,0,4300.88,19.8193,0,10,1,44.43309,3.064351,0,0,1261.655,1309.152,2,0,0,5,0,1,77.7,6.9,0,71.6,840,0,0,0,0,0,0,4.564348,6.784695,0,0,0,71.6,8.366807,0,7.177135,1
-16,3,95,0,2,328274,0,4300.88,20.8193,0,10,1,86.7323,8.148149,0,0,545.2602,640.1406,1,0,0,12,0,1,77.7,6.9,0,71.6,840,0,0,0,0,0,0,4.564348,6.784695,0,0,0,71.6,8.366807,0,6.461688,1
-16,3,95,0,3,328274,0,4300.88,21.8193,0,10,1,45.14188,2.579536,0,0,0,47.72141,0,0,0,2,0,1,77.7,6.9,0,71.6,840,0,0,0,0,0,0,4.564348,6.784695,0,0,0,71.6,8.366807,0,3.86538,1
-13,3,0,1,1,328291,0,1436.95,19.46064,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,7.270974,0,,0
-13,3,0,1,2,328291,0,1436.95,20.46064,1,12,1,0,1.40647,0,0,0,1.40647,0,0,0,0,0,1,63.8,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,7.270974,0,.3410828,1
-13,3,0,1,1,328293,0,6015.249,24.69268,0,12,1,21.34831,0,0,0,0,21.34831,0,0,0,1,0,1,58,3.4,0,90.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,90.9,8.702219,0,3.060973,1
-13,3,0,1,2,328293,0,6015.249,25.69268,0,12,1,0,.5860291,0,0,0,.5860291,0,0,0,0,0,1,58,3.4,0,90.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,90.9,8.702219,0,-.5343859,1
-13,3,0,1,3,328293,0,6015.249,26.69268,0,12,1,30.48151,0,0,0,0,30.48151,0,0,0,2,0,1,58,3.4,0,90.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,90.9,8.702219,0,3.41712,1
-13,3,0,1,4,328293,0,6015.249,27.69268,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,58,3.4,0,90.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,90.9,8.702219,0,,0
-13,3,0,1,5,328293,0,6015.249,28.69268,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,58,3.4,0,90.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,90.9,8.702219,0,,0
-13,3,0,0,1,328298,0,5843.402,61.85079,1,8,1,22.77328,.8856275,0,0,0,23.65891,0,0,0,2,0,1,74.46748,9.967326,.1572505,,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,1,0,0,72.06626,8.67324,0,3.16374,1
-13,3,0,0,2,328298,0,5843.402,62.85079,1,8,1,50.34965,1.445221,0,0,0,51.79487,0,0,0,3,0,1,74.46748,9.967326,.1572505,,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,1,0,0,72.06626,8.67324,0,3.947291,1
-13,3,0,0,3,328298,0,5843.402,63.85079,1,8,1,93.33048,13.83925,0,0,0,107.1697,0,0,0,7,0,1,74.46748,9.967326,.1572505,,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,1,0,0,72.06626,8.67324,0,4.674414,1
-11,3,0,1,1,328311,0,6919.648,55.82751,0,12,1,17.51674,0,44.30706,0,0,61.8238,0,0,0,1,1,2,85.1,6.9,0,78.4,0,249.6,0,0,.6931472,5.51986,0,0,0,1,0,0,78.4,8.842265,.6931472,4.124289,1
-11,3,0,1,2,328311,0,6919.648,56.82751,0,12,1,41.19318,2.414773,21.7803,0,558.3096,623.6979,1,0,0,3,1,2,85.1,6.9,0,78.4,0,249.6,0,0,.6931472,5.51986,0,0,0,1,0,0,78.4,8.842265,.6931472,6.435666,1
-11,3,0,1,3,328311,0,6919.648,57.82751,0,12,1,9.102731,0,33.81014,0,0,42.91287,0,0,0,0,1,2,85.1,6.9,0,78.4,0,249.6,0,0,.6931472,5.51986,0,0,0,1,0,0,78.4,8.842265,.6931472,3.759172,1
-11,3,0,1,1,328312,0,6919.648,51.24709,1,14,1,113.3952,22.72025,42.76146,0,0,178.8769,0,0,0,4,1,2,78.2,13.8,1,37.5,0,249.6,0,0,.6931472,5.51986,0,0,0,0,0,1,37.5,8.842265,.6931472,5.186697,1
-11,3,0,1,2,328312,0,6919.648,52.24709,1,14,1,199.4792,15.19886,0,0,780.1089,994.7869,1,0,0,7,0,2,78.2,13.8,1,37.5,0,249.6,0,0,.6931472,5.51986,0,0,0,0,0,1,37.5,8.842265,.6931472,6.902529,1
-11,3,0,1,3,328312,0,6919.648,53.24709,1,14,1,229.0854,36.84439,40.09536,0,418.1318,724.1569,1,0,0,10,1,2,78.2,13.8,1,37.5,0,249.6,0,0,.6931472,5.51986,0,0,0,0,0,1,37.5,8.842265,.6931472,6.585008,1
-11,3,0,1,1,328313,0,3194.757,13.76044,1,12,1,16.11336,5.288462,0,0,0,21.40182,0,0,0,1,0,4,68.3,9.967326,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.069579,1.386294,3.063476,1
-11,3,0,1,2,328313,0,3194.757,14.76044,1,12,1,9.324009,4.615385,0,0,0,13.93939,0,0,0,0,1,4,68.3,9.967326,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.069579,1.386294,2.634719,1
-11,3,0,1,3,328313,0,3194.757,15.76044,1,12,1,53.44164,7.229585,0,0,0,60.67123,0,0,0,1,9,4,68.3,9.967326,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.069579,1.386294,4.10547,1
-11,3,0,1,4,328313,0,3194.757,16.76044,1,12,1,18.83167,0,19.21599,0,0,38.04766,0,0,0,0,3,4,68.3,9.967326,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.069579,1.386294,3.638839,1
-11,3,0,1,5,328313,0,3194.757,17.76044,1,12,1,288.0927,6.638567,0,0,0,294.7313,0,0,0,2,3,4,68.3,9.967326,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.069579,1.386294,5.686064,1
-11,3,0,1,1,328314,0,3194.757,12.00548,1,12,1,10.12146,2.505061,0,0,0,12.62652,0,0,0,0,1,4,70,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.069579,1.386294,2.535799,1
-11,3,0,1,2,328314,0,3194.757,13.00548,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.069579,1.386294,,0
-11,3,0,1,3,328314,0,3194.757,14.00548,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.069579,1.386294,,0
-11,3,0,1,4,328314,0,3194.757,15.00548,1,12,1,9.607994,8.85857,0,0,0,18.46656,0,0,0,1,0,4,70,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.069579,1.386294,2.915962,1
-11,3,0,1,5,328314,0,3194.757,16.00548,1,12,1,102.7397,68.12434,22.83105,0,1142.167,1335.862,1,0,0,3,8,4,70,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.4,8.069579,1.386294,7.197332,1
-11,3,0,1,1,328315,0,3194.757,31.67967,1,12,1,36.81174,0,0,0,0,36.81174,0,0,0,1,1,4,74.5,10.3,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,8.069579,1.386294,3.605817,1
-11,3,0,1,2,328315,0,3194.757,32.67967,1,12,1,133.7995,21.56177,0,0,0,155.3613,0,0,0,6,0,4,74.5,10.3,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,8.069579,1.386294,5.045753,1
-11,3,0,1,3,328315,0,3194.757,33.67967,1,12,1,37.19538,35.33561,0,0,0,72.531,0,0,0,4,0,4,74.5,10.3,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,8.069579,1.386294,4.284014,1
-11,3,0,1,4,328315,0,3194.757,34.67967,1,12,1,213.4666,5.726364,6.533436,0,0,225.7264,0,0,0,7,17,4,74.5,10.3,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,8.069579,1.386294,5.419323,1
-11,3,0,1,5,328315,0,3194.757,35.67967,1,12,1,135.0544,4.137689,0,0,0,139.1921,0,0,0,5,9,4,74.5,10.3,0,70.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.5,8.069579,1.386294,4.935855,1
-11,3,0,1,1,328316,0,3194.757,7.112936,0,12,1,150.8097,46.10324,0,0,349.8229,546.7358,1,0,0,7,0,4,80,9.967326,0,40.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,40.7,8.069579,1.386294,6.303966,1
-11,3,0,1,2,328316,0,3194.757,8.112936,0,12,1,91.84149,22.72727,0,0,0,114.5688,0,0,0,6,0,4,80,9.967326,0,40.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,40.7,8.069579,1.386294,4.741175,1
-11,3,0,1,3,328316,0,3194.757,9.112936,0,12,1,155.9213,32.9628,0,0,0,188.8841,0,0,0,31,2,4,80,9.967326,0,40.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,40.7,8.069579,1.386294,5.241134,1
-11,3,0,1,4,328316,0,3194.757,10.11294,0,12,1,1.921599,0,0,0,0,1.921599,0,0,0,0,0,4,80,9.967326,0,40.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,40.7,8.069579,1.386294,.6531575,1
-11,3,0,1,5,328316,0,3194.757,11.11294,0,12,1,36.19248,0,18.96733,0,0,55.15982,0,0,0,1,1,4,80,9.967326,0,40.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,40.7,8.069579,1.386294,4.010235,1
-13,3,0,1,1,328333,1,9795.895,24.94182,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,69.1,3.4,0,58,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,58,9.18982,1.098612,,0
-13,3,0,1,2,328333,1,9795.895,25.94182,0,12,1,28.67133,2.097902,0,0,0,30.76923,0,0,0,2,0,3,69.1,3.4,0,58,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,58,9.18982,1.098612,3.426515,1
-13,3,0,1,3,328333,1,9795.895,26.94182,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,69.1,3.4,0,58,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,58,9.18982,1.098612,,0
-13,3,0,1,1,328334,1,9795.895,3.868583,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,55.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.18982,1.098612,,0
-13,3,0,1,2,328334,1,9795.895,4.868583,1,12,1,13.98601,.2331002,0,0,0,14.21911,0,0,0,1,0,3,83.39137,9.967326,0,55.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.18982,1.098612,2.654587,1
-13,3,0,1,3,328334,1,9795.895,5.868583,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,55.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.6,9.18982,1.098612,,0
-13,3,0,1,1,328335,1,9795.895,19.31828,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,0,0,73.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.8,9.18982,1.098612,,0
-13,3,0,1,2,328335,1,9795.895,20.31828,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,0,0,73.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.8,9.18982,1.098612,,0
-13,3,0,1,3,328335,1,9795.895,21.31828,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,0,0,73.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,73.8,9.18982,1.098612,,0
-11,3,0,1,1,328336,0,5317.302,50.72142,1,11,1,31.52834,1.3917,37.70243,0,0,70.62247,0,0,0,3,1,1,71.8,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.57891,0,4.257349,1
-11,3,0,1,2,328336,0,5317.302,51.72142,1,11,1,153.986,4.289044,0,0,0,158.2751,0,0,0,6,0,1,71.8,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.57891,0,5.064334,1
-11,3,0,1,3,328336,0,5317.302,52.72142,1,11,1,47.49893,3.933305,33.34758,0,0,84.77982,0,0,0,5,0,1,71.8,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,8.57891,0,4.440058,1
-11,3,0,1,1,328337,0,1365.396,23.74264,0,14,1,28.34008,0,26.31579,0,0,54.65587,0,0,0,2,1,1,62.8,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.219932,0,4.001057,1
-11,3,0,1,2,328337,0,1365.396,24.74264,0,14,1,25.64103,0,0,0,0,25.64103,0,0,0,1,0,1,62.8,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.219932,0,3.244194,1
-11,3,0,1,3,328337,0,1365.396,25.74264,0,14,1,23.51432,0,23.51432,0,0,47.02864,0,0,0,2,1,1,62.8,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,7.219932,0,3.850757,1
-11,3,0,1,1,328338,0,2696.774,22.61191,0,13,1,11.1336,1.3917,0,0,0,12.5253,0,0,0,2,0,1,60.6,3.4,0,81.8,0,154.56,0,0,0,5.040582,0,0,0,0,0,0,81.8,7.900182,0,2.527751,1
-11,3,0,1,2,328338,0,2696.774,23.61191,0,13,1,37.669,2.284382,0,0,0,39.95338,0,0,0,2,0,1,60.6,3.4,0,81.8,0,154.56,0,0,0,5.040582,0,0,0,0,0,0,81.8,7.900182,0,3.687713,1
-11,3,0,1,3,328338,0,2696.774,24.61191,0,13,1,1003.403,12.22745,0,0,9326.302,10341.93,1,0,0,8,32,1,60.6,3.4,0,81.8,0,154.56,0,0,0,5.040582,0,0,0,0,0,0,81.8,7.900182,0,9.243962,1
-11,3,0,1,1,328342,0,10842.23,2.8282,0,12,1,13.78958,0,0,0,0,13.78958,0,0,0,1,0,5,83.39137,9.967326,0,25.9,0,232.8,1,0,1.609438,5.45018,0,0,0,1,0,0,25.9,9.291296,1.609438,2.623913,1
-11,3,0,1,2,328342,0,10842.23,3.8282,0,12,1,17.81528,0,0,0,0,17.81528,0,0,0,2,0,5,83.39137,9.967326,0,25.9,0,232.8,1,0,1.609438,5.45018,0,0,0,1,0,0,25.9,9.291296,1.609438,2.880057,1
-11,3,0,1,3,328342,0,10842.23,4.8282,0,12,1,18.70163,0,0,0,0,18.70163,0,0,0,2,0,5,83.39137,9.967326,0,25.9,0,232.8,1,0,1.609438,5.45018,0,0,0,1,0,0,25.9,9.291296,1.609438,2.928611,1
-11,3,0,1,4,328342,0,10842.23,5.8282,0,12,1,22.48934,0,0,0,0,22.48934,0,0,0,2,0,5,83.39137,9.967326,0,25.9,0,232.8,1,0,1.609438,5.45018,0,0,0,1,0,0,25.9,9.291296,1.609438,3.113041,1
-11,3,0,1,5,328342,0,10842.23,6.8282,0,12,1,23.35456,0,0,0,0,23.35456,0,0,0,3,0,5,83.39137,9.967326,0,25.9,0,232.8,1,0,1.609438,5.45018,0,0,0,1,0,0,25.9,9.291296,1.609438,3.150792,1
-11,3,0,1,1,328343,0,10842.23,7.186858,1,12,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,5,78.3,9.967326,0,66.7,0,232.8,1,1,1.609438,5.45018,0,0,0,1,0,0,66.7,9.291296,1.609438,1.812983,1
-11,3,0,1,2,328343,0,10842.23,8.186858,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,66.7,0,232.8,1,1,1.609438,5.45018,0,0,0,1,0,0,66.7,9.291296,1.609438,,0
-11,3,0,1,3,328343,0,10842.23,9.186858,1,12,1,5.588994,0,0,0,0,5.588994,0,0,0,1,0,5,78.3,9.967326,0,66.7,0,232.8,1,1,1.609438,5.45018,0,0,0,1,0,0,66.7,9.291296,1.609438,1.720799,1
-11,3,0,1,4,328343,0,10842.23,10.18686,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,66.7,0,232.8,1,1,1.609438,5.45018,0,0,0,1,0,0,66.7,9.291296,1.609438,,0
-11,3,0,1,5,328343,0,10842.23,11.18686,1,12,1,18.04671,0,0,0,0,18.04671,0,0,0,2,0,5,78.3,9.967326,0,66.7,0,232.8,1,1,1.609438,5.45018,0,0,0,1,0,0,66.7,9.291296,1.609438,2.892963,1
-11,3,0,1,1,328344,0,10842.23,11.47433,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,9.967326,0,81.5,0,232.8,1,1,1.609438,5.45018,0,0,0,0,0,0,81.5,9.291296,1.609438,,0
-11,3,0,1,2,328344,0,10842.23,12.47433,1,12,1,6.094702,0,0,0,0,6.094702,0,0,0,1,0,5,73.3,9.967326,0,81.5,0,232.8,1,1,1.609438,5.45018,0,0,0,0,0,0,81.5,9.291296,1.609438,1.80742,1
-11,3,0,1,3,328344,0,10842.23,13.47433,1,12,1,0,1.543422,0,0,0,1.543422,0,0,0,0,0,5,73.3,9.967326,0,81.5,0,232.8,1,1,1.609438,5.45018,0,0,0,0,0,0,81.5,9.291296,1.609438,.4340022,1
-11,3,0,1,4,328344,0,10842.23,14.47433,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.3,9.967326,0,81.5,0,232.8,1,1,1.609438,5.45018,0,0,0,0,0,0,81.5,9.291296,1.609438,,0
-11,3,0,1,5,328344,0,10842.23,15.47433,1,12,1,25.47771,0,0,0,0,25.47771,0,0,0,2,1,5,73.3,9.967326,0,81.5,0,232.8,1,1,1.609438,5.45018,0,0,0,0,0,0,81.5,9.291296,1.609438,3.237804,1
-11,3,0,1,1,328345,0,10842.23,32.47639,1,12,1,248.4934,38.91726,9.228805,0,952.5996,1249.239,1,0,0,5,22,5,67,6.9,0,71.6,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,71.6,9.291296,1.609438,7.13029,1
-11,3,0,1,2,328345,0,10842.23,33.47639,1,12,1,27.19175,14.43976,0,248.4763,0,41.6315,0,0,23,1,0,5,67,6.9,0,71.6,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,71.6,9.291296,1.609438,3.728857,1
-11,3,0,1,3,328345,0,10842.23,34.47639,1,12,1,42.13242,8.022356,0,0,671.1307,721.2855,1,0,0,3,0,5,67,6.9,0,71.6,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,71.6,9.291296,1.609438,6.581035,1
-11,3,0,1,4,328345,0,10842.23,35.47639,1,12,1,176.076,11.63242,0,0,0,187.7084,0,0,0,7,0,5,67,6.9,0,71.6,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,71.6,9.291296,1.609438,5.23489,1
-11,3,0,1,5,328345,0,10842.23,36.47639,1,12,1,20.77141,0,0,0,0,20.77141,0,0,0,1,1,5,67,6.9,0,71.6,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,71.6,9.291296,1.609438,3.033577,1
-11,3,0,1,1,328346,0,10842.23,33.57974,0,13,1,22.98264,15.32176,0,0,0,38.30439,0,0,0,3,0,5,77.1,3.4,0,72.7,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,72.7,9.291296,1.609438,3.645565,1
-11,3,0,1,2,328346,0,10842.23,34.57974,0,13,1,1.40647,0,0,0,0,1.40647,0,0,0,0,0,5,77.1,3.4,0,72.7,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,72.7,9.291296,1.609438,.3410828,1
-11,3,0,1,3,328346,0,10842.23,35.57974,0,13,1,15.99312,0,0,0,0,15.99312,0,0,0,1,0,5,77.1,3.4,0,72.7,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,72.7,9.291296,1.609438,2.772159,1
-11,3,0,1,4,328346,0,10842.23,36.57974,0,13,1,274.6026,0,0,0,0,274.6026,0,0,0,3,0,5,77.1,3.4,0,72.7,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,72.7,9.291296,1.609438,5.615325,1
-11,3,0,1,5,328346,0,10842.23,37.57974,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,3.4,0,72.7,0,232.8,0,0,1.609438,5.45018,0,0,0,1,0,0,72.7,9.291296,1.609438,,0
-10,3,50,0,1,328371,0,8086.217,10.07803,1,6,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,2,328371,0,8086.217,11.07803,1,6,1,147.2105,7.712142,0,0,0,154.9226,0,0,0,5,0,5,95,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,5.042926,1
-10,3,50,0,3,328371,0,8086.217,12.07803,1,6,1,10.31814,7.953568,0,0,0,18.27171,0,0,0,2,0,5,95,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,2.905354,1
-10,3,50,0,4,328371,0,8086.217,13.07803,1,6,1,0,2.985653,0,0,0,2.985653,0,0,0,0,0,5,95,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,1.093819,1
-10,3,50,0,5,328371,0,8086.217,14.07803,1,6,1,58.9172,16.18542,.5803255,0,0,75.68295,0,0,0,4,0,5,95,9.967326,0,100,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,4.326553,1
-10,3,50,0,1,328372,0,8086.217,7.789186,0,6,1,27.06844,0,0,0,0,27.06844,0,0,0,2,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,3.298368,1
-10,3,50,0,2,328372,0,8086.217,8.789186,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,3,328372,0,8086.217,9.789186,0,6,1,58.3405,0,0,0,0,58.3405,0,0,0,1,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,4.066297,1
-10,3,50,0,4,328372,0,8086.217,10.78919,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,5,328372,0,8086.217,11.78919,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,1,328373,0,8086.217,11.44695,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,2,328373,0,8086.217,12.44695,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,3,328373,0,8086.217,13.44695,0,6,1,14.61737,3.095443,0,0,0,17.71281,0,0,0,1,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,2.874288,1
-10,3,50,0,4,328373,0,8086.217,14.44695,0,6,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,,0
-10,3,50,0,5,328373,0,8086.217,15.44695,0,6,1,29.90092,0,.9483369,0,0,30.84926,0,0,0,1,0,5,100,9.967326,0,100,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,100,8.99804,1.609438,3.429113,1
-10,3,50,0,1,328374,0,8086.217,48.21082,1,6,1,187.2829,13.68744,33.19714,0,0,234.1675,0,0,0,6,1,5,83.5,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,84.1,8.99804,1.609438,5.456037,1
-10,3,50,0,2,328374,0,8086.217,49.21082,1,6,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,84.1,8.99804,1.609438,,0
-10,3,50,0,3,328374,0,8086.217,50.21082,1,6,1,14.61737,2.622528,0,0,0,17.2399,0,0,0,1,0,5,83.5,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,84.1,8.99804,1.609438,2.847226,1
-10,3,50,0,4,328374,0,8086.217,51.21082,1,6,1,173.6409,6.397829,0,0,0,180.0388,0,0,0,6,1,5,83.5,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,84.1,8.99804,1.609438,5.193172,1
-10,3,50,0,5,328374,0,8086.217,52.21082,1,6,1,9.907997,11.07219,0,0,0,20.98018,0,0,0,1,0,5,83.5,3.4,0,84.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,84.1,8.99804,1.609438,3.043578,1
-10,3,50,0,1,328375,0,8086.217,49.25667,0,12,1,15.32176,0,0,0,0,15.32176,0,0,0,1,0,5,91.5,3.4,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,90.9,8.99804,1.609438,2.729274,1
-10,3,50,0,2,328375,0,8086.217,50.25667,0,12,1,11.72058,0,16.40881,0,0,28.12939,0,0,0,0,1,5,91.5,3.4,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,90.9,8.99804,1.609438,3.336815,1
-10,3,50,0,3,328375,0,8086.217,51.25667,0,12,1,24.93551,2.923474,0,0,0,27.85899,0,0,0,1,0,5,91.5,3.4,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,90.9,8.99804,1.609438,3.327156,1
-10,3,50,0,4,328375,0,8086.217,52.25667,0,12,1,42.45832,8.918185,0,0,0,51.3765,0,0,0,2,0,5,91.5,3.4,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,90.9,8.99804,1.609438,3.939181,1
-10,3,50,0,5,328375,0,8086.217,53.25667,0,12,1,26.89314,49.74522,10.04246,0,0,86.68082,0,0,0,2,1,5,91.5,3.4,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,90.9,8.99804,1.609438,4.462233,1
-10,3,50,0,1,328376,0,3478.006,22.85284,1,13,1,44.94382,6.179775,25.53626,0,0,76.65986,0,0,0,2,1,1,56.9,0,0,89.8,825,725,0,0,0,6.586172,0,3.931826,7.408531,0,0,0,89.8,8.154502,0,4.339378,1
-10,3,50,0,2,328376,0,3478.006,23.85284,1,13,1,113.924,1.781528,0,0,0,115.7056,0,0,0,6,0,1,56.9,0,0,89.8,825,725,0,0,0,6.586172,0,3.931826,7.408531,0,0,0,89.8,8.154502,0,4.751049,1
-10,3,50,0,3,328376,0,3478.006,24.85284,1,13,1,156.9991,4.849527,19.34652,0,2405.258,2586.453,1,0,0,6,0,1,56.9,0,0,89.8,825,725,0,0,0,6.586172,0,3.931826,7.408531,0,0,0,89.8,8.154502,0,7.858043,1
-10,3,50,0,4,328376,0,3478.006,25.85284,1,13,1,326.8709,26.32028,0,0,0,353.1912,0,0,0,6,0,1,56.9,0,0,89.8,825,725,0,0,0,6.586172,0,3.931826,7.408531,0,0,0,89.8,8.154502,0,5.86701,1
-10,3,50,0,5,328376,0,3478.006,26.85284,1,13,1,24.85846,9.076433,0,0,0,33.93489,0,0,0,1,0,1,56.9,0,0,89.8,825,725,0,0,0,6.586172,0,3.931826,7.408531,0,0,0,89.8,8.154502,0,3.524444,1
-15,3,95,1,1,328410,0,2860.411,23.4935,1,16,1,10.12146,0,22.77328,0,0,32.89474,0,0,0,0,1,1,74.5,17.2,0,83,190,190,0,0,0,5.247024,0,4.564348,5.298317,0,0,0,83,7.95907,0,3.493313,1
-14,3,95,1,1,328416,0,7196.79,37.29227,0,12,1,9.27357,24.52344,0,0,0,33.79701,0,0,0,2,0,6,69.1,20.7,1,77.3,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,77.3,8.881529,1.791759,3.520372,1
-14,3,95,1,2,328416,0,7196.79,38.29227,0,12,1,0,9.943182,0,0,0,9.943182,0,0,0,0,0,6,69.1,20.7,1,77.3,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,77.3,8.881529,1.791759,2.296887,1
-14,3,95,1,3,328416,0,7196.79,39.29227,0,12,1,0,11.29172,0,25.57434,0,11.29172,0,0,4,0,0,6,69.1,20.7,1,77.3,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,77.3,8.881529,1.791759,2.42407,1
-14,3,95,1,1,328417,0,7196.79,14.59548,1,12,1,2.575992,0,0,0,0,2.575992,0,0,0,0,0,6,47.9,6.9,0,72.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,72.7,8.881529,1.791759,.9462346,1
-14,3,95,1,2,328417,0,7196.79,15.59548,1,12,1,85.70076,4.214015,11.83712,0,0,101.7519,0,0,0,3,1,6,47.9,6.9,0,72.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,72.7,8.881529,1.791759,4.622538,1
-14,3,95,1,3,328417,0,7196.79,16.59548,1,12,1,0,3.034244,20.78457,0,0,23.81881,0,0,0,0,0,6,47.9,6.9,0,72.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,72.7,8.881529,1.791759,3.170476,1
-14,3,95,1,1,328418,0,7196.79,8.826831,1,12,1,1.545595,0,0,0,0,1.545595,0,0,0,0,0,6,81.7,9.967326,0,66.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,1,0,0,66.7,8.881529,1.791759,.435409,1
-14,3,95,1,2,328418,0,7196.79,9.826831,1,12,1,0,1.302083,0,0,0,1.302083,0,0,0,0,0,6,81.7,9.967326,0,66.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,1,0,0,66.7,8.881529,1.791759,.2639656,1
-14,3,95,1,3,328418,0,7196.79,10.82683,1,12,1,19.93932,0,0,0,0,19.93932,0,0,0,2,1,6,81.7,9.967326,0,66.7,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,1,0,0,66.7,8.881529,1.791759,2.992693,1
-14,3,95,1,1,328419,0,7196.79,12.73101,1,12,1,10.30397,0,23.69912,0,0,34.00309,0,0,0,0,1,6,88.3,9.967326,0,96.3,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,96.3,8.881529,1.791759,3.526451,1
-14,3,95,1,2,328419,0,7196.79,13.73101,1,12,1,62.5947,1.515152,10.89015,0,0,75,0,0,0,4,1,6,88.3,9.967326,0,96.3,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,96.3,8.881529,1.791759,4.317488,1
-14,3,95,1,3,328419,0,7196.79,14.73101,1,12,1,17.33854,0,0,74.98917,0,17.33854,0,0,6,1,1,6,88.3,9.967326,0,96.3,725.15,725.15,1,1,1.791759,6.586379,0,4.564348,6.637672,0,0,0,96.3,8.881529,1.791759,2.852931,1
-14,3,95,1,1,328420,0,7196.79,33.46201,1,12,1,0,5.358063,0,0,0,5.358063,0,0,0,0,0,6,72.9,3.4,0,80.7,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,80.7,8.881529,1.791759,1.678602,1
-14,3,95,1,2,328420,0,7196.79,34.46201,1,12,1,99.47916,4.711174,0,0,0,104.1903,0,0,0,5,0,6,72.9,3.4,0,80.7,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,80.7,8.881529,1.791759,4.646219,1
-14,3,95,1,3,328420,0,7196.79,35.46201,1,12,1,12.83052,2.904205,0,25.14087,0,15.73472,0,0,4,1,0,6,72.9,3.4,0,80.7,725.15,725.15,0,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,80.7,8.881529,1.791759,2.75587,1
-14,3,95,1,1,328421,0,7196.79,7.088295,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.7,9.967326,0,66.7,725.15,725.15,1,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,66.7,8.881529,1.791759,,0
-14,3,95,1,2,328421,0,7196.79,8.088296,0,12,1,10.89015,1.870265,0,0,0,12.76042,0,0,0,3,0,6,81.7,9.967326,0,66.7,725.15,725.15,1,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,66.7,8.881529,1.791759,2.546348,1
-14,3,95,1,3,328421,0,7196.79,9.088296,0,12,1,2.384048,1.885566,0,0,0,4.269614,0,0,0,0,0,6,81.7,9.967326,0,66.7,725.15,725.15,1,0,1.791759,6.586379,0,4.564348,6.637672,0,0,0,66.7,8.881529,1.791759,1.451523,1
-11,3,0,0,1,328457,0,8923.167,49.11157,1,12,1,261.3892,1.659857,44.43309,0,0,307.4821,0,0,0,2,1,2,87.2,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,5.728417,1
-11,3,0,0,2,328457,0,8923.167,50.11157,1,12,1,432.9958,0,0,0,0,432.9958,0,0,0,3,0,2,87.2,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,6.070728,1
-11,3,0,0,3,328457,0,8923.167,51.11157,1,12,1,27.81599,10.23216,30.09458,0,0,68.14273,0,0,0,1,1,2,87.2,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,4.221604,1
-11,3,0,0,1,328458,0,8923.167,49.19644,0,12,1,85.54648,6.869254,43.41164,0,0,135.8274,0,0,0,2,8,2,92,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,4.911385,1
-11,3,0,0,2,328458,0,8923.167,50.19644,0,12,1,0,3.984998,0,0,0,3.984998,0,0,0,0,0,2,92,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,1.382537,1
-11,3,0,0,3,328458,0,8923.167,51.19644,0,12,1,15.04729,5.782459,37.40327,0,566.9604,625.1935,1,0,0,1,1,2,92,3.4,0,78.4,0,290.64,0,0,.6931472,5.672085,0,0,0,0,0,0,78.4,9.096519,.6931472,6.438061,1
-18,3,25,1,1,328466,0,5432.258,11.04449,1,13,1,14.17004,1.67004,23.27935,0,0,39.11943,0,0,0,1,1,4,88.3,9.967326,0,77.8,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,77.8,8.600294,1.386294,3.666619,1
-18,3,25,1,2,328466,0,5432.258,12.04449,1,13,1,35.89743,1.818182,11.65501,0,0,49.37063,0,0,0,4,1,4,88.3,9.967326,0,77.8,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,77.8,8.600294,1.386294,3.899356,1
-18,3,25,1,3,328466,0,5432.258,13.04449,1,13,1,28.30269,10.21804,0,0,0,38.52074,0,0,0,1,0,4,88.3,9.967326,0,77.8,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,77.8,8.600294,1.386294,3.651197,1
-18,3,25,1,4,328466,0,5432.258,14.04449,1,13,1,32.28286,5.918524,0,0,515.7802,553.9816,1,0,0,3,1,4,88.3,9.967326,0,77.8,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,77.8,8.600294,1.386294,6.317132,1
-18,3,25,1,5,328466,0,5432.258,15.04449,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,77.8,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,77.8,8.600294,1.386294,,0
-18,3,25,1,1,328467,0,5432.258,29.37166,1,13,1,31.62955,5.050607,30.36437,0,0,67.04453,0,0,0,1,1,4,87.2,37.9,0,64.8,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,64.8,8.600294,1.386294,4.205357,1
-18,3,25,1,2,328467,0,5432.258,30.37166,1,13,1,131.7016,1.445221,0,0,682.387,815.5338,1,0,0,6,0,4,87.2,37.9,0,64.8,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,64.8,8.600294,1.386294,6.703843,1
-18,3,25,1,3,328467,0,5432.258,31.37166,1,13,1,20.94912,.748183,24.36939,0,0,46.0667,0,0,0,1,1,4,87.2,37.9,0,64.8,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,64.8,8.600294,1.386294,3.83009,1
-18,3,25,1,4,328467,0,5432.258,32.37166,1,13,1,149.1161,4.907763,12.92852,0,0,166.9523,0,0,0,6,1,4,87.2,37.9,0,64.8,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,64.8,8.600294,1.386294,5.117708,1
-18,3,25,1,5,328467,0,5432.258,33.37166,1,13,1,16.50861,0,0,0,0,16.50861,0,0,0,2,0,4,87.2,37.9,0,64.8,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,64.8,8.600294,1.386294,2.803882,1
-18,3,25,1,1,328468,0,5432.258,10.06434,1,13,1,9.109312,0,24.79757,0,0,33.90688,0,0,0,0,1,4,95,9.967326,0,22.2,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,22.2,8.600294,1.386294,3.523618,1
-18,3,25,1,2,328468,0,5432.258,11.06434,1,13,1,27.03963,1.818182,0,0,0,28.85781,0,0,0,4,0,4,95,9.967326,0,22.2,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,22.2,8.600294,1.386294,3.362381,1
-18,3,25,1,3,328468,0,5432.258,12.06434,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,95,9.967326,0,22.2,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,22.2,8.600294,1.386294,,0
-18,3,25,1,4,328468,0,5432.258,13.06434,1,13,1,9.223674,0,14.98847,0,0,24.21214,0,0,0,0,1,4,95,9.967326,0,22.2,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,22.2,8.600294,1.386294,3.186854,1
-18,3,25,1,5,328468,0,5432.258,14.06434,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,95,9.967326,0,22.2,460,460,1,1,1.386294,6.131227,0,3.258096,7.517521,0,0,0,22.2,8.600294,1.386294,,0
-18,3,25,1,1,328469,0,5432.258,41.06503,0,8,1,56.57895,19.67611,24.79757,0,0,101.0526,0,0,0,1,1,4,93.1,6.9,0,71.6,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,71.6,8.600294,1.386294,4.615642,1
-18,3,25,1,2,328469,0,5432.258,42.06503,0,8,1,22.84382,.941725,0,0,782.3264,806.1119,2,0,0,2,0,4,93.1,6.9,0,71.6,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,71.6,8.600294,1.386294,6.692223,1
-18,3,25,1,3,328469,0,5432.258,43.06503,0,8,1,0,5.989739,0,0,2105.81,2111.8,5,0,0,0,0,4,93.1,6.9,0,71.6,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,71.6,8.600294,1.386294,7.655296,1
-18,3,25,1,4,328469,0,5432.258,44.06503,0,8,1,0,1.6103,0,0,3115.68,3117.291,5,0,0,0,0,4,93.1,6.9,0,71.6,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,71.6,8.600294,1.386294,8.04472,1
-18,3,25,1,5,328469,0,5432.258,45.06503,0,8,1,0,0,0,0,1179.459,1179.459,1,0,0,0,0,4,93.1,6.9,0,71.6,460,460,0,0,1.386294,6.131227,0,3.258096,7.517521,1,0,0,71.6,8.600294,1.386294,7.072811,1
-11,3,0,1,3,328471,0,11356.01,56.98973,1,,1,15.17122,1.885566,32.94321,0,0,50,0,0,0,2,0,1,89.9,20.7,0,68.2,,,0,0,0,0,0,0,0,0,0,0,68.2,9.33759,0,3.912023,1
-14,3,95,1,1,328475,0,3659.238,49.84258,1,8,1,10.12146,0,34.41296,0,0,44.53441,0,0,0,1,0,2,83.5,3.4,0,72.7,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,72.7,8.205283,.6931472,3.796262,1
-14,3,95,1,2,328475,0,3659.238,50.84258,1,8,1,193.007,18.67133,.4662005,0,689.5571,901.7017,2,0,0,10,0,2,83.5,3.4,0,72.7,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,72.7,8.205283,.6931472,6.804284,1
-14,3,95,1,3,328475,0,3659.238,51.84258,1,8,1,11.97093,3.805045,0,0,0,15.77597,0,0,0,2,0,2,83.5,3.4,0,72.7,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,72.7,8.205283,.6931472,2.758488,1
-14,3,95,1,1,328476,0,3659.238,52.15058,0,8,1,37.44939,28.99798,34.41296,0,469.499,570.3593,1,0,0,4,0,2,78.2,3.4,0,59.1,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,59.1,8.205283,.6931472,6.346267,1
-14,3,95,1,2,328476,0,3659.238,53.15058,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,3.4,0,59.1,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,59.1,8.205283,.6931472,,0
-14,3,95,1,3,328476,0,3659.238,54.15058,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,3.4,0,59.1,175,175,0,0,.6931472,5.164786,0,4.564348,5.216079,0,0,0,59.1,8.205283,.6931472,,0
-13,3,0,0,1,328480,0,7196.79,26.0835,0,14,1,20.93973,3.804903,0,0,0,24.74464,0,0,0,1,0,1,85.6,3.4,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,80.7,8.881529,0,3.208609,1
-13,3,0,0,2,328480,0,7196.79,27.0835,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,3.4,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,80.7,8.881529,0,,0
-13,3,0,0,3,328480,0,7196.79,28.0835,0,14,1,25.15047,0,0,0,0,25.15047,0,0,0,3,0,1,85.6,3.4,0,80.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,80.7,8.881529,0,3.224877,1
-13,3,0,1,1,328481,0,4406.452,26.23956,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,75,10.3,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,8.391052,0,,0
-13,3,0,1,2,328481,0,4406.452,27.23956,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,75,10.3,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,8.391052,0,,0
-13,3,0,1,3,328481,0,4406.452,28.23956,0,13,1,1.289768,0,0,0,0,1.289768,0,0,0,0,0,1,75,10.3,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,73.9,8.391052,0,.2544622,1
-11,3,0,1,1,328504,0,2729.032,52.32307,0,6,1,25.24472,60.84492,35.03349,0,0,121.1231,0,0,0,4,0,1,48.4,13.8,0,61.4,0,142.32,0,0,0,4.958078,0,0,0,1,0,0,61.4,7.912069,0,4.796808,1
-11,3,0,1,2,328504,0,2729.032,53.32307,0,6,1,9.469697,74.78693,0,0,0,84.25663,0,0,0,1,0,1,48.4,13.8,0,61.4,0,142.32,0,0,0,4.958078,0,0,0,1,0,0,61.4,7.912069,0,4.433867,1
-11,3,0,1,3,328504,0,2729.032,54.32307,0,6,1,19.50585,106.1248,0,0,0,125.6307,0,0,0,2,0,1,48.4,13.8,0,61.4,0,142.32,0,0,0,4.958078,0,0,0,1,0,0,61.4,7.912069,0,4.833346,1
-17,3,25,1,1,328534,0,11951.32,60.64613,0,16,1,37.79367,24.1573,38.81512,0,0,100.7661,0,0,0,3,1,2,92,13.8,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.38868,.6931472,4.612802,1
-17,3,25,1,2,328534,0,11951.32,61.64613,0,16,1,18.28411,21.63619,0,0,0,39.9203,0,0,0,2,0,2,92,13.8,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.38868,.6931472,3.686885,1
-17,3,25,1,3,328534,0,11951.32,62.64613,0,16,1,54.38521,21.1092,32.2442,0,0,107.7386,0,0,0,2,1,2,92,13.8,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.38868,.6931472,4.679708,1
-17,3,25,1,1,328535,0,11951.32,54.8501,1,12,1,16.34321,0,45.45454,0,0,61.79775,0,0,0,1,1,2,92,6.9,0,97.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,97.7,9.38868,.6931472,4.123867,1
-17,3,25,1,2,328535,0,11951.32,55.8501,1,12,1,15.00234,0,18.75293,0,0,33.75528,0,0,0,1,1,2,92,6.9,0,97.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,97.7,9.38868,.6931472,3.519137,1
-17,3,25,1,3,328535,0,11951.32,56.8501,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,92,6.9,0,97.7,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,97.7,9.38868,.6931472,,0
-14,3,95,1,1,328536,0,7856.892,29.49487,1,16,1,281.9203,4.928498,0,0,0,286.8488,0,0,0,1,51,5,86.7,17.2,0,81.8,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,1,0,0,81.8,8.969274,1.609438,5.658955,1
-14,3,95,1,2,328536,0,7856.892,30.49487,1,16,1,142.9911,54.80544,0,0,0,197.7965,0,0,0,5,14,5,86.7,17.2,0,81.8,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,1,0,0,81.8,8.969274,1.609438,5.287239,1
-14,3,95,1,3,328536,0,7856.892,31.49487,1,16,1,52.02064,10.33964,1.698194,0,800.2451,864.3035,2,0,0,2,5,5,86.7,17.2,0,81.8,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,1,0,0,81.8,8.969274,1.609438,6.761924,1
-14,3,95,1,1,328537,0,7856.892,6.436687,1,16,1,64.40245,3.243105,0,0,0,67.64555,0,0,0,8,0,5,91.7,9.967326,0,66.7,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,4.214282,1
-14,3,95,1,2,328537,0,7856.892,7.436687,1,16,1,36.56821,4.969526,0,0,0,41.53774,0,0,0,4,1,5,91.7,9.967326,0,66.7,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,3.726602,1
-14,3,95,1,3,328537,0,7856.892,8.436687,1,16,1,70.24935,7.738607,0,0,0,77.98796,0,0,0,3,1,5,91.7,9.967326,0,66.7,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,4.356555,1
-14,3,95,1,1,328538,0,7856.892,9.837098,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,100,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,100,8.969274,1.609438,,0
-14,3,95,1,2,328538,0,7856.892,10.8371,1,16,1,11.72058,0,0,0,0,11.72058,0,0,0,2,0,5,88.3,9.967326,0,100,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,100,8.969274,1.609438,2.461346,1
-14,3,95,1,3,328538,0,7856.892,11.8371,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,100,660,660,1,1,1.609438,6.49224,0,4.564348,6.543533,0,0,0,100,8.969274,1.609438,,0
-14,3,95,1,1,328539,0,7856.892,30.43121,0,18,1,164.0705,0,0,0,0,164.0705,0,0,0,1,24,5,81.4,6.9,0,71.6,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,71.6,8.969274,1.609438,5.100296,1
-14,3,95,1,2,328539,0,7856.892,31.43121,0,18,1,151.6643,2.836381,0,0,0,154.5007,0,0,0,7,0,5,81.4,6.9,0,71.6,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,71.6,8.969274,1.609438,5.040199,1
-14,3,95,1,3,328539,0,7856.892,32.43121,0,18,1,1.504729,4.987103,0,0,0,6.491831,0,0,0,0,0,5,81.4,6.9,0,71.6,660,660,0,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,71.6,8.969274,1.609438,1.870545,1
-14,3,95,1,1,328540,0,7856.892,3.252567,0,16,1,77.63023,8.222676,0,0,0,85.85291,0,0,0,6,0,5,83.39137,9.967326,0,66.7,660,660,1,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,4.452635,1
-14,3,95,1,2,328540,0,7856.892,4.252567,0,16,1,30.94234,5.954055,0,0,0,36.89639,0,0,0,5,0,5,83.39137,9.967326,0,66.7,660,660,1,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,3.608114,1
-14,3,95,1,3,328540,0,7856.892,5.252567,0,16,1,0,3.095443,0,0,0,3.095443,0,0,0,0,0,5,83.39137,9.967326,0,66.7,660,660,1,0,1.609438,6.49224,0,4.564348,6.543533,0,0,0,66.7,8.969274,1.609438,1.129931,1
-10,3,50,1,1,328545,0,8077.419,3.731691,1,12,1,98.19681,9.119011,0,0,0,107.3158,0,0,0,4,0,5,83.39137,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,88.9,8.996951,1.609438,4.675776,1
-10,3,50,1,2,328545,0,8077.419,4.73169,1,12,1,12.31061,0,0,0,0,12.31061,0,0,0,2,0,5,83.39137,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,88.9,8.996951,1.609438,2.510461,1
-10,3,50,1,3,328545,0,8077.419,5.73169,1,12,1,90.13871,0,0,0,1412.722,1502.861,1,0,0,8,8,5,83.39137,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,88.9,8.996951,1.609438,7.315126,1
-10,3,50,1,4,328545,0,8077.419,6.73169,1,12,1,14.57267,1.851122,15.75423,0,0,32.17802,0,0,0,1,1,5,83.39137,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,88.9,8.996951,1.609438,3.471284,1
-10,3,50,1,5,328545,0,8077.419,7.73169,1,12,1,8.944544,3.520572,7.155635,0,0,19.62075,0,0,0,0,1,5,83.39137,9.967326,0,88.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,88.9,8.996951,1.609438,2.976588,1
-10,3,50,1,1,328546,0,8077.419,31.46064,0,12,1,13.39516,6.826378,28.79959,0,0,49.02112,0,0,0,1,1,5,79.3,3.4,0,76.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.996951,1.609438,3.892251,1
-10,3,50,1,2,328546,0,8077.419,32.46064,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,3.4,0,76.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.996951,1.609438,,0
-10,3,50,1,3,328546,0,8077.419,33.46064,0,12,1,114.7811,0,30.34244,0,0,145.1235,0,0,0,5,1,5,79.3,3.4,0,76.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.996951,1.609438,4.977585,1
-10,3,50,1,4,328546,0,8077.419,34.46064,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,3.4,0,76.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.996951,1.609438,,0
-10,3,50,1,5,328546,0,8077.419,35.46064,0,12,1,8.944544,0,26.83363,0,0,35.77818,0,0,0,0,1,5,79.3,3.4,0,76.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.996951,1.609438,3.577338,1
-10,3,50,1,1,328547,0,8077.419,8.77755,0,12,1,5.151984,1.262236,0,0,0,6.414219,0,0,0,1,0,5,75,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,8.996951,1.609438,1.858517,1
-10,3,50,1,2,328547,0,8077.419,9.77755,0,12,1,13.25758,0,0,0,0,13.25758,0,0,0,1,0,5,75,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,8.996951,1.609438,2.584569,1
-10,3,50,1,3,328547,0,8077.419,10.77755,0,12,1,44.21326,0,19.50585,0,0,63.71912,0,0,0,5,1,5,75,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,8.996951,1.609438,4.154485,1
-10,3,50,1,4,328547,0,8077.419,11.77755,0,12,1,29.53919,3.938559,0,0,417.6447,451.1225,1,0,0,3,0,5,75,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,8.996951,1.609438,6.111739,1
-10,3,50,1,5,328547,0,8077.419,12.77755,0,12,1,59.74955,0,7.155635,0,0,66.90519,0,0,0,2,1,5,75,9.967326,0,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,8.996951,1.609438,4.203277,1
-10,3,50,1,1,328548,0,8077.419,28.72279,1,12,1,30.9119,7.372488,23.18393,0,0,61.46832,0,0,0,2,1,5,52.7,13.8,0,63.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,63.6,8.996951,1.609438,4.118522,1
-10,3,50,1,2,328548,0,8077.419,29.72279,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,52.7,13.8,0,63.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,63.6,8.996951,1.609438,,0
-10,3,50,1,3,328548,0,8077.419,30.72279,1,12,1,16.90507,5.808409,7.802341,0,0,30.51582,0,0,0,1,1,5,52.7,13.8,0,63.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,63.6,8.996951,1.609438,3.418245,1
-10,3,50,1,4,328548,0,8077.419,31.72279,1,12,1,5.120126,2.441906,0,0,0,7.562032,0,0,0,1,0,5,52.7,13.8,0,63.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,63.6,8.996951,1.609438,2.02314,1
-10,3,50,1,5,328548,0,8077.419,32.72279,1,12,1,8.944544,0,25.04472,0,0,33.98927,0,0,0,0,1,5,52.7,13.8,0,63.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,63.6,8.996951,1.609438,3.526045,1
-10,3,50,1,1,328549,0,8077.419,1.883641,1,12,1,24.21432,1.159196,0,0,0,25.37352,0,0,0,3,0,5,83.39137,9.967326,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,70.4,8.996951,1.609438,3.233706,1
-10,3,50,1,2,328549,0,8077.419,2.883641,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,70.4,8.996951,1.609438,,0
-10,3,50,1,3,328549,0,8077.419,3.883641,1,12,1,15.60468,0,0,0,0,15.60468,0,0,0,3,0,5,83.39137,9.967326,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,70.4,8.996951,1.609438,2.747571,1
-10,3,50,1,4,328549,0,8077.419,4.883641,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,70.4,8.996951,1.609438,,0
-10,3,50,1,5,328549,0,8077.419,5.883641,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,70.4,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,70.4,8.996951,1.609438,,0
-19,3,25,0,1,328592,0,8017.009,59.14579,1,12,1,84.26966,8.682329,28.60061,0,0,121.5526,0,0,0,8,0,2,78.2,24.1,1,43.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,43.2,8.989446,.6931472,4.800347,1
-19,3,25,0,2,328592,0,8017.009,60.14579,1,12,1,191.7018,11.65026,0,0,0,203.3521,0,0,0,3,2,2,78.2,24.1,1,43.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,43.2,8.989446,.6931472,5.314939,1
-19,3,25,0,3,328592,0,8017.009,61.14579,1,12,1,15.47721,76.89166,0,0,0,92.36887,0,0,0,2,0,2,78.2,24.1,1,43.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,43.2,8.989446,.6931472,4.52579,1
-19,3,25,0,1,328593,0,8017.009,55.67967,0,12,1,10.2145,0,34.72932,0,0,44.94382,0,0,0,1,0,2,76.6,20.7,1,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.989446,.6931472,3.805413,1
-19,3,25,0,2,328593,0,8017.009,56.67967,0,12,1,61.41585,8.556025,0,0,658.7389,728.7108,1,0,0,2,4,2,76.6,20.7,1,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.989446,.6931472,6.591277,1
-19,3,25,0,3,328593,0,8017.009,57.67967,0,12,1,72.26999,8.16853,17.19691,0,0,97.63543,0,0,0,5,3,2,76.6,20.7,1,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.989446,.6931472,4.581241,1
-11,3,0,1,1,328614,0,9646.334,6.633812,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,2,328614,0,9646.334,7.633812,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,3,328614,0,9646.334,8.633813,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,1,328615,0,9646.334,37.79603,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,24.1,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.174437,1.609438,,0
-11,3,0,1,2,328615,0,9646.334,38.79603,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,24.1,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.174437,1.609438,,0
-11,3,0,1,3,328615,0,9646.334,39.79603,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.7,24.1,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.174437,1.609438,,0
-11,3,0,1,1,328616,0,9646.334,1.604381,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,2,328616,0,9646.334,2.604381,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,3,328616,0,9646.334,3.604381,0,15,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,1,328617,0,9646.334,11.5154,1,15,1,36.77222,0,0,0,0,36.77222,0,0,0,3,0,5,96.7,9.967326,0,100,0,0,1,1,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,3.604743,1
-11,3,0,1,2,328617,0,9646.334,12.5154,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,96.7,9.967326,0,100,0,0,1,1,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,3,328617,0,9646.334,13.5154,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,96.7,9.967326,0,100,0,0,1,1,1.609438,0,0,0,0,0,0,0,100,9.174437,1.609438,,0
-11,3,0,1,1,328618,0,9646.334,37.04586,1,15,1,22.98264,0,0,0,0,22.98264,0,0,0,2,0,5,71.3,17.2,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,9.174437,1.609438,3.134739,1
-11,3,0,1,2,328618,0,9646.334,38.04586,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,71.3,17.2,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,9.174437,1.609438,,0
-11,3,0,1,3,328618,0,9646.334,39.04586,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,71.3,17.2,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,9.174437,1.609438,,0
-17,3,25,0,1,328639,0,5876.246,22.59822,0,12,1,15.32176,0,0,0,0,15.32176,0,0,0,1,0,2,75,10.3,0,43.2,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,1,0,0,43.2,8.678843,.6931472,2.729274,1
-17,3,25,0,2,328639,0,5876.246,23.59822,0,12,1,35.84154,0,0,0,0,35.84154,0,0,0,2,0,2,75,10.3,0,43.2,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,1,0,0,43.2,8.678843,.6931472,3.579108,1
-17,3,25,0,3,328639,0,5876.246,24.59822,0,12,1,23.98968,0,26.44024,0,0,50.42992,0,0,0,1,1,2,75,10.3,0,43.2,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,1,0,0,43.2,8.678843,.6931472,3.920585,1
-17,3,25,0,1,328640,0,5876.246,21.98494,1,10,1,33.19714,7.17569,18.38611,0,0,58.75894,0,0,0,3,1,2,61.7,10.3,0,78.4,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,0,0,0,78.4,8.678843,.6931472,4.073443,1
-17,3,25,0,2,328640,0,5876.246,22.98494,1,10,1,41.72527,13.80684,0,0,0,55.53212,0,0,0,3,0,2,61.7,10.3,0,78.4,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,0,0,0,78.4,8.678843,.6931472,4.016962,1
-17,3,25,0,3,328640,0,5876.246,23.98494,1,10,1,98.8822,8.55546,23.64574,0,1238.543,1369.626,1,0,0,3,3,2,61.7,10.3,0,78.4,650,650,0,0,.6931472,6.476973,0,3.258096,7.863267,0,0,0,78.4,8.678843,.6931472,7.222293,1
-10,3,50,0,1,328678,0,2069.208,30.51608,1,12,1,12.65182,3.33502,0,0,0,15.98684,0,0,0,1,0,3,91,6.9,0,78.4,225,225,0,0,1.098612,5.416101,0,3.931826,6.109248,1,0,0,78.4,7.635405,1.098612,2.771766,1
-10,3,50,0,2,328678,0,2069.208,31.51608,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,91,6.9,0,78.4,225,225,0,0,1.098612,5.416101,0,3.931826,6.109248,1,0,0,78.4,7.635405,1.098612,,0
-10,3,50,0,3,328678,0,2069.208,32.51609,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,91,6.9,0,78.4,225,225,0,0,1.098612,5.416101,0,3.931826,6.109248,1,0,0,78.4,7.635405,1.098612,,0
-10,3,50,0,1,328679,0,2069.208,9.078713,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,9.967326,0,85.2,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,85.2,7.635405,1.098612,,0
-10,3,50,0,2,328679,0,2069.208,10.07871,1,12,1,6.993007,0,0,0,0,6.993007,0,0,0,1,0,3,83.3,9.967326,0,85.2,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,85.2,7.635405,1.098612,1.944911,1
-10,3,50,0,3,328679,0,2069.208,11.07871,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,9.967326,0,85.2,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,85.2,7.635405,1.098612,,0
-11,3,0,1,1,328742,0,2953.079,34.18207,1,12,1,222.6762,0,0,0,0,222.6762,0,0,0,6,0,4,81.9,0,0,90.9,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,90.9,7.990942,1.386294,5.405719,1
-11,3,0,1,2,328742,0,2953.079,35.18207,1,12,1,198.5466,0,0,0,0,198.5466,0,0,0,1,16,4,81.9,0,0,90.9,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,90.9,7.990942,1.386294,5.291024,1
-11,3,0,1,3,328742,0,2953.079,36.18207,1,12,1,43.42218,0,0,0,0,43.42218,0,0,0,0,7,4,81.9,0,0,90.9,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,90.9,7.990942,1.386294,3.77097,1
-11,3,0,1,1,328743,0,2953.079,8.180698,0,12,1,5.617978,0,0,0,0,5.617978,0,0,0,1,0,4,70,9.967326,0,92.6,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,92.6,7.990942,1.386294,1.725972,1
-11,3,0,1,2,328743,0,2953.079,9.180698,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,92.6,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,92.6,7.990942,1.386294,,0
-11,3,0,1,3,328743,0,2953.079,10.1807,0,12,1,26.6552,0,0,0,0,26.6552,0,0,0,1,3,4,70,9.967326,0,92.6,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,92.6,7.990942,1.386294,3.282984,1
-11,3,0,1,1,328744,0,2953.079,38.27242,0,11,1,63.32993,4.698672,34.72932,0,0,102.7579,0,0,0,1,0,4,71.8,10.3,0,88.6,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,88.6,7.990942,1.386294,4.632376,1
-11,3,0,1,2,328744,0,2953.079,39.27242,0,11,1,140.0609,0,7.759025,0,0,147.82,0,0,0,5,2,4,71.8,10.3,0,88.6,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,88.6,7.990942,1.386294,4.995995,1
-11,3,0,1,3,328744,0,2953.079,40.27242,0,11,1,50.30095,0,26.54772,0,0,76.84867,0,0,0,1,4,4,71.8,10.3,0,88.6,0,1058.98,0,0,1.386294,6.965062,0,0,0,0,0,0,88.6,7.990942,1.386294,4.341838,1
-11,3,0,1,1,328745,0,2953.079,11.28542,0,12,1,5.617978,1.838611,0,0,0,7.456588,0,0,0,1,0,4,76.7,9.967326,0,88.9,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,88.9,7.990942,1.386294,2.009098,1
-11,3,0,1,2,328745,0,2953.079,12.28542,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,9.967326,0,88.9,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,88.9,7.990942,1.386294,,0
-11,3,0,1,3,328745,0,2953.079,13.28542,0,12,1,121.2382,2.128117,12.05933,0,0,135.4256,0,0,0,5,4,4,76.7,9.967326,0,88.9,0,1058.98,1,0,1.386294,6.965062,0,0,0,0,0,0,88.9,7.990942,1.386294,4.908422,1
-10,3,50,0,1,328767,0,5167.742,56.67899,0,12,1,289.7855,132.8396,25.53626,0,490.4903,938.6517,1,0,0,7,1,2,80.9,20.7,0,75,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,75,8.550385,.6931472,6.844444,1
-10,3,50,0,2,328767,0,5167.742,57.67899,0,12,1,45.00703,105.6306,0,0,0,150.6376,0,0,0,4,0,2,80.9,20.7,0,75,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,75,8.550385,.6931472,5.014877,1
-10,3,50,0,3,328767,0,5167.742,58.67899,0,12,1,109.2003,157.8719,25.79536,0,0,292.8676,0,0,0,6,6,2,80.9,20.7,0,75,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,75,8.550385,.6931472,5.67972,1
-10,3,50,0,1,328768,0,5167.742,57.98494,1,9,1,162.9213,14.98979,0,0,0,177.9111,0,0,0,6,0,2,66.5,13.8,0,76.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,76.2,8.550385,.6931472,5.181284,1
-10,3,50,0,2,328768,0,5167.742,58.98494,1,9,1,302.5692,64.11158,20.62822,0,0,387.309,0,0,0,13,1,2,66.5,13.8,0,76.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,76.2,8.550385,.6931472,5.959223,1
-10,3,50,0,3,328768,0,5167.742,59.98494,1,9,1,55.03009,31.01892,19.34652,0,0,105.3955,0,0,0,5,1,2,66.5,13.8,0,76.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,1,0,76.2,8.550385,.6931472,4.65772,1
-13,3,0,1,1,328789,0,2171.261,5.774127,0,10,1,49.59514,0,0,0,359.8178,409.413,1,0,0,2,0,2,63.3,9.967326,0,55.6,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.6,7.683524,.6931472,6.014724,1
-13,3,0,1,2,328789,0,2171.261,6.774127,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,63.3,9.967326,0,55.6,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.6,7.683524,.6931472,,0
-13,3,0,1,3,328789,0,2171.261,7.774127,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,63.3,9.967326,0,55.6,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.6,7.683524,.6931472,,0
-13,3,0,1,1,328790,0,2171.261,23.8987,1,10,1,16.70041,6.933198,0,0,0,23.6336,0,0,0,1,0,2,56.4,10.3,0,40.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,40.9,7.683524,.6931472,3.16267,1
-13,3,0,1,2,328790,0,2171.261,24.8987,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,56.4,10.3,0,40.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,40.9,7.683524,.6931472,,0
-13,3,0,1,3,328790,0,2171.261,25.8987,1,10,1,26.50705,3.463018,0,0,0,29.97007,0,0,0,2,0,2,56.4,10.3,0,40.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,40.9,7.683524,.6931472,3.400199,1
-13,3,0,1,1,328800,0,7196.79,35.86584,1,11.38739,1,35.90587,0,21.25506,0,469.1397,526.3006,1,0,0,2,1,7,89.4,6.9,0,72.7,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,72.7,8.881529,1.94591,6.265872,1
-13,3,0,1,2,328800,0,7196.79,36.86584,1,11.38739,1,309.0909,0,0,0,0,309.0909,0,0,0,6,0,7,89.4,6.9,0,72.7,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,72.7,8.881529,1.94591,5.733635,1
-13,3,0,1,3,328800,0,7196.79,37.86584,1,11.38739,1,56.26336,1.881146,0,0,0,58.1445,0,0,0,2,0,7,89.4,6.9,0,72.7,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,72.7,8.881529,1.94591,4.062932,1
-13,3,0,1,1,328801,0,7196.79,11.32923,1,11.38739,1,53.01114,0,0,0,0,53.01114,0,0,0,1,0,7,96.7,9.967326,0,81.5,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.881529,1.94591,3.970502,1
-13,3,0,1,2,328801,0,7196.79,12.32923,1,11.38739,1,25.36131,0,0,0,0,25.36131,0,0,0,1,0,7,96.7,9.967326,0,81.5,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.881529,1.94591,3.233225,1
-13,3,0,1,3,328801,0,7196.79,13.32923,1,11.38739,1,0,0,0,0,0,0,0,0,0,0,0,7,96.7,9.967326,0,81.5,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.881529,1.94591,,0
-13,3,0,1,1,328802,0,7196.79,12.98836,1,11.38739,1,10.12146,0,21.25506,0,0,31.37652,0,0,0,0,1,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,3.44606,1
-13,3,0,1,2,328802,0,7196.79,13.98836,1,11.38739,1,14.35897,1.818182,0,0,0,16.17716,0,0,0,1,0,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,2.7836,1
-13,3,0,1,3,328802,0,7196.79,14.98836,1,11.38739,1,0,0,0,0,0,0,0,0,0,0,0,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,,0
-13,3,0,1,1,328803,0,7196.79,14.17385,1,11.38739,1,28.34008,0,21.25506,0,0,49.59514,0,0,0,2,1,7,68.1,3.4,0,72.7,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.881529,1.94591,3.903893,1
-13,3,0,1,2,328803,0,7196.79,15.17385,1,11.38739,1,84.47552,0,0,0,0,84.47552,0,0,0,4,0,7,68.1,3.4,0,72.7,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.881529,1.94591,4.436462,1
-13,3,0,1,3,328803,0,7196.79,16.17385,1,11.38739,1,19.9658,0,0,0,0,19.9658,0,0,0,1,0,7,68.1,3.4,0,72.7,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,72.7,8.881529,1.94591,2.994021,1
-13,3,0,1,1,328804,0,7196.79,29.295,0,9,1,10.12146,1.361336,21.25506,0,344.2358,376.9737,1,0,0,0,1,7,94.1,6.9,0,55,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,55,8.881529,1.94591,5.932176,1
-13,3,0,1,2,328804,0,7196.79,30.295,0,9,1,482.4243,.2331002,0,0,0,482.6573,0,0,0,18,0,7,94.1,6.9,0,55,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,55,8.881529,1.94591,6.179307,1
-13,3,0,1,3,328804,0,7196.79,31.295,0,9,1,169.1749,2.907225,0,0,0,172.0821,0,0,0,11,0,7,94.1,6.9,0,55,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,55,8.881529,1.94591,5.147972,1
-13,3,0,1,1,328805,0,7196.79,7.838467,1,11.38739,1,25.30364,0,0,0,0,25.30364,0,0,0,1,0,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,3.230948,1
-13,3,0,1,2,328805,0,7196.79,8.838467,1,11.38739,1,0,0,0,0,0,0,0,0,0,0,0,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,,0
-13,3,0,1,3,328805,0,7196.79,9.838467,1,11.38739,1,206.9688,3.441642,0,0,0,210.4104,0,0,0,8,0,7,100,9.967326,0,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.881529,1.94591,5.34906,1
-18,3,25,0,1,328807,0,7196.79,54.25873,0,7,1,159.7549,117.7732,30.64351,0,698.0235,1006.195,1,0,0,11,1,2,87.2,10.3,0,69,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,69,8.881529,.6931472,6.913931,1
-18,3,25,0,2,328807,0,7196.79,55.25873,0,7,1,67.08861,124.6835,0,0,0,191.7722,0,0,0,5,0,2,87.2,10.3,0,69,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,69,8.881529,.6931472,5.256308,1
-18,3,25,0,3,328807,0,7196.79,56.25873,0,7,1,56.6638,117.2614,.8598452,0,0,174.785,0,0,0,6,0,2,87.2,10.3,0,69,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,69,8.881529,.6931472,5.163557,1
-18,3,25,0,4,328807,0,7196.79,57.25873,0,7,1,569.2711,131.8844,143.0787,0,1202.098,2046.332,1,0,0,14,1,2,87.2,10.3,0,69,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,69,8.881529,.6931472,7.623804,1
-18,3,25,0,5,328807,0,7196.79,58.25873,0,7,1,178.1387,128.7438,25.12385,0,3441.883,3773.889,3,0,0,10,2,2,87.2,10.3,0,69,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,69,8.881529,.6931472,8.235861,1
-18,3,25,0,1,328808,0,7196.79,51.62492,1,7,1,81.71603,3.54954,34.21859,0,0,119.4842,0,0,0,1,1,2,87.2,10.3,0,81.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,81.8,8.881529,.6931472,4.783184,1
-18,3,25,0,2,328808,0,7196.79,52.62492,1,7,1,34.2241,11.15799,0,0,0,45.38209,0,0,0,3,1,2,87.2,10.3,0,81.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,81.8,8.881529,.6931472,3.815118,1
-18,3,25,0,3,328808,0,7196.79,53.62492,1,7,1,9.88822,0,36.97334,0,0,46.86156,0,0,0,0,1,2,87.2,10.3,0,81.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,81.8,8.881529,.6931472,3.847198,1
-18,3,25,0,4,328808,0,7196.79,54.62492,1,7,1,18.99961,11.03916,25.59131,0,0,55.63009,0,0,0,1,1,2,87.2,10.3,0,81.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,81.8,8.881529,.6931472,4.018724,1
-18,3,25,0,5,328808,0,7196.79,55.62492,1,7,1,21.47912,16.38358,23.35456,0,0,61.21727,0,0,0,1,1,2,87.2,10.3,0,81.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,81.8,8.881529,.6931472,4.114429,1
-13,3,0,0,1,328865,0,3283.871,42.22861,0,10,1,29.35223,8.669028,0,0,0,38.02126,0,0,0,1,0,5,53.2,20.7,1,45.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,45.5,8.097083,1.609438,3.638145,1
-13,3,0,0,2,328865,0,3283.871,43.22861,0,10,1,0,5.752914,0,0,0,5.752914,0,0,0,0,0,5,53.2,20.7,1,45.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,45.5,8.097083,1.609438,1.749707,1
-13,3,0,0,3,328865,0,3283.871,44.22861,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,53.2,20.7,1,45.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,45.5,8.097083,1.609438,,0
-13,3,0,0,1,328866,0,3283.871,16.67625,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,0,0,78.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.097083,1.609438,,0
-13,3,0,0,2,328866,0,3283.871,17.67625,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,0,0,78.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.097083,1.609438,,0
-13,3,0,0,3,328866,0,3283.871,18.67625,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,0,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.097083,1.609438,,0
-13,3,0,0,1,328867,0,3283.871,36.13416,1,8,1,47.06478,30.81478,0,0,0,77.87955,0,0,0,0,0,5,85.6,17.2,0,59.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,59.1,8.097083,1.609438,4.355164,1
-13,3,0,0,2,328867,0,3283.871,37.13416,1,8,1,9.324009,0,0,0,0,9.324009,0,0,0,1,0,5,85.6,17.2,0,59.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,59.1,8.097083,1.609438,2.232593,1
-13,3,0,0,3,328867,0,3283.871,38.13416,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,17.2,0,59.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,59.1,8.097083,1.609438,,0
-13,3,0,1,1,328868,0,746.6276,18.46407,0,9,1,52.04959,1.578947,0,0,518.6285,572.2571,1,0,0,4,0,1,67.6,6.9,0,67,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,67,6.616905,0,6.349588,1
-13,3,0,1,2,328868,0,746.6276,19.46407,0,9,1,6.060606,6.713287,0,0,0,12.77389,0,0,0,1,0,1,67.6,6.9,0,67,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,67,6.616905,0,2.547403,1
-13,3,0,1,3,328868,0,746.6276,20.46407,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,67.6,6.9,0,67,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,67,6.616905,0,,0
-13,3,0,0,1,328869,0,3283.871,6.253251,0,8,1,7.591093,0,0,0,0,7.591093,0,0,0,1,0,5,85,9.967326,0,51.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,51.9,8.097083,1.609438,2.026976,1
-13,3,0,0,2,328869,0,3283.871,7.253251,0,8,1,39.0676,1.473194,22.84382,0,0,63.38462,0,0,0,1,1,5,85,9.967326,0,51.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,51.9,8.097083,1.609438,4.149221,1
-13,3,0,0,3,328869,0,3283.871,8.253251,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,51.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,51.9,8.097083,1.609438,,0
-13,3,0,0,1,328870,0,3283.871,11.7974,0,8,1,344.8735,2.494939,0,0,0,347.3684,0,0,0,5,0,5,90,9.967326,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.097083,1.609438,5.850386,1
-13,3,0,0,2,328870,0,3283.871,12.7974,0,8,1,9.79021,0,25.64103,0,0,35.43124,0,0,0,0,1,5,90,9.967326,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.097083,1.609438,3.567594,1
-13,3,0,0,3,328870,0,3283.871,13.7974,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,90,9.967326,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.097083,1.609438,,0
-19,3,25,0,1,329007,0,9106.158,41.05955,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,71.3,10.3,1,70.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.116816,1.609438,,0
-19,3,25,0,2,329007,0,9106.158,42.05955,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,71.3,10.3,1,70.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.116816,1.609438,,0
-19,3,25,0,3,329007,0,9106.158,43.05955,0,17,1,33.10404,1.99914,0,0,0,35.10318,0,0,0,2,0,4,71.3,10.3,1,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.116816,1.386294,3.558292,1
-19,3,25,0,1,329008,0,9106.158,14.94593,0,16,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,5,70.7,0,0,88.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.116816,1.609438,1.812983,1
-19,3,25,0,2,329008,0,9106.158,15.94593,0,16,1,4.688232,1.875293,0,0,0,6.563526,0,0,0,1,0,5,70.7,0,0,88.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.116816,1.609438,1.881528,1
-19,3,25,0,3,329008,0,9106.158,16.94593,0,16,1,171.3672,5.911436,3.490972,0,0,180.7696,0,0,0,6,0,4,70.7,0,0,88.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.116816,1.386294,5.197223,1
-19,3,25,0,1,329009,0,9106.158,38.65298,1,16,1,51.22574,0,0,0,0,51.22574,0,0,0,5,0,5,76.6,13.8,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.116816,1.609438,3.936242,1
-19,3,25,0,2,329009,0,9106.158,39.65298,1,16,1,14.53352,2.953587,0,0,0,17.48711,0,0,0,1,0,5,76.6,13.8,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.116816,1.609438,2.861464,1
-19,3,25,0,3,329009,0,9106.158,40.65298,1,16,1,10.14617,0,0,0,0,10.14617,0,0,0,1,0,4,76.6,13.8,0,80.7,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.116816,1.386294,2.317097,1
-19,3,25,0,1,329010,0,9106.158,13.06502,0,16,1,21.1951,4.060266,0,0,0,25.25536,0,0,0,2,0,5,75,9.967326,1,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.116816,1.609438,3.229038,1
-19,3,25,0,2,329010,0,9106.158,14.06502,0,16,1,20.1594,0,0,0,0,20.1594,0,0,0,0,0,5,75,9.967326,1,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.116816,1.609438,3.003671,1
-19,3,25,0,3,329010,0,9106.158,15.06502,0,16,1,23.21582,3.417885,7.515047,0,0,34.14875,0,0,0,2,0,4,75,9.967326,1,85.2,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.116816,1.386294,3.530726,1
-19,3,25,0,1,329011,0,9106.158,16.1807,0,16,1,26.73647,0,0,0,0,26.73647,0,0,0,1,0,5,85.1,3.4,0,80.7,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,80.7,9.116816,1.609438,3.286028,1
-19,3,25,0,2,329011,0,9106.158,17.1807,0,16,1,16.40881,4.992968,1.40647,0,0,22.80825,0,0,0,3,0,5,85.1,3.4,0,80.7,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,80.7,9.116816,1.609438,3.127122,1
-19,3,25,1,1,329024,0,5159.531,25.5332,0,13,1,45.96527,0,0,0,0,45.96527,0,0,0,4,0,4,82.4,6.9,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.548795,1.386294,3.827886,1
-19,3,25,1,2,329024,0,5159.531,26.5332,0,13,1,21.09705,2.320675,0,0,0,23.41772,0,0,0,1,1,4,82.4,6.9,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.548795,1.386294,3.153493,1
-19,3,25,1,3,329024,0,5159.531,27.5332,0,13,1,4.299226,0,0,0,0,4.299226,0,0,0,0,1,4,82.4,6.9,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.548795,1.386294,1.458435,1
-19,3,25,1,1,329025,0,5159.531,2.53525,1,15,1,29.62206,5.720122,0,0,0,35.34219,0,0,0,3,0,4,83.39137,9.967326,0,74.1,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,74.1,8.548795,1.386294,3.565077,1
-19,3,25,1,2,329025,0,5159.531,3.53525,1,15,1,102.9536,2.789498,0,0,0,105.7431,0,0,0,1,0,4,83.39137,9.967326,0,74.1,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,74.1,8.548795,1.386294,4.661013,1
-19,3,25,1,3,329025,0,5159.531,4.53525,1,15,1,53.26741,6.018917,0,0,0,59.28633,0,0,0,4,1,4,83.39137,9.967326,0,74.1,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,74.1,8.548795,1.386294,4.082379,1
-19,3,25,1,1,329026,0,5159.531,1.185489,1,15,1,6.128703,7.660879,0,0,0,13.78958,0,0,0,1,0,4,83.39137,9.967326,0,51.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,51.9,8.548795,1.386294,2.623913,1
-19,3,25,1,2,329026,0,5159.531,2.185489,1,15,1,12.1894,4.43038,0,0,0,16.61978,0,0,0,2,0,4,83.39137,9.967326,0,51.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,51.9,8.548795,1.386294,2.810594,1
-19,3,25,1,3,329026,0,5159.531,3.185489,1,15,1,16.33706,10.51161,0,0,0,26.84867,0,0,0,2,0,4,83.39137,9.967326,0,51.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,51.9,8.548795,1.386294,3.290216,1
-19,3,25,1,1,329027,0,5159.531,24.66256,1,15,1,0,27.96221,0,0,0,27.96221,0,0,0,0,0,4,68.1,10.3,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.548795,1.386294,3.330854,1
-19,3,25,1,2,329027,0,5159.531,25.66256,1,15,1,32.3488,0,25.78528,0,0,58.13408,0,0,0,1,5,4,68.1,10.3,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.548795,1.386294,4.062752,1
-19,3,25,1,3,329027,0,5159.531,26.66256,1,15,1,57.17971,4.27773,11.17799,0,0,72.63543,0,0,0,0,11,4,68.1,10.3,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.548795,1.386294,4.285453,1
-14,3,95,1,1,329184,0,648.6804,30.97878,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.9,0,0,89.8,260,0,0,0,0,0,0,4.564348,5.611975,0,0,0,89.8,6.47648,0,,0
-14,3,95,1,2,329184,0,648.6804,31.97878,0,12,1,44.77262,4.571027,0,0,0,49.34365,0,0,0,3,0,1,72.9,0,0,89.8,260,0,0,0,0,0,0,4.564348,5.611975,0,0,0,89.8,6.47648,0,3.898809,1
-14,3,95,1,3,329184,0,648.6804,32.97878,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,72.9,0,0,89.8,260,0,0,0,0,0,0,4.564348,5.611975,0,0,0,89.8,6.47648,0,,0
-14,3,95,1,1,329185,0,3155.015,23.56194,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,70.2,13.8,0,87.5,400,375,0,0,0,5.926926,0,4.564348,6.042758,0,0,0,87.5,8.057065,0,,0
-14,3,95,1,2,329185,0,3155.015,24.56194,1,13,1,12.65823,0,0,0,0,12.65823,0,0,0,1,0,1,70.2,13.8,0,87.5,400,375,0,0,0,5.926926,0,4.564348,6.042758,0,0,0,87.5,8.057065,0,2.538307,1
-14,3,95,1,3,329185,0,3155.015,25.56194,1,13,1,7.308684,0,0,0,0,7.308684,0,0,0,1,0,1,70.2,13.8,0,87.5,400,375,0,0,0,5.926926,0,4.564348,6.042758,0,0,0,87.5,8.057065,0,1.989063,1
-11,3,0,1,1,329191,0,8130.792,16.4052,0,12,1,5.107252,0,0,0,0,5.107252,0,0,0,1,0,6,93.1,0,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,0,1,0,100,9.003536,1.791759,1.630661,1
-11,3,0,1,2,329191,0,8130.792,17.4052,0,12,1,45.47586,0,0,0,0,45.47586,0,0,0,2,0,6,93.1,0,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,0,1,0,100,9.003536,1.791759,3.817182,1
-11,3,0,1,3,329191,0,8130.792,18.4052,0,12,1,42.13242,1.504729,1.375752,0,0,45.0129,0,0,0,1,0,6,93.1,0,0,100,0,591.72,0,0,1.791759,6.383034,0,0,0,0,1,0,100,9.003536,1.791759,3.806949,1
-11,3,0,1,1,329192,0,8130.792,18.47228,0,11,1,15.83248,5.337079,.5617977,0,0,21.73136,0,0,0,0,0,6,83.5,3.4,0,89.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,1,0,89.8,9.003536,1.791759,3.078756,1
-11,3,0,1,2,329192,0,8130.792,19.47228,0,11,1,300.4079,13.61932,0,0,0,314.0272,0,0,0,3,1,6,83.5,3.4,0,89.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,1,0,89.8,9.003536,1.791759,5.74948,1
-11,3,0,1,3,329192,0,8130.792,20.47228,0,11,1,76.09631,2.343078,0,0,0,78.43938,0,0,0,3,0,6,83.5,3.4,0,89.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,1,0,89.8,9.003536,1.791759,4.362326,1
-11,3,0,1,1,329193,0,8130.792,10.82546,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,0,0,0,100,9.003536,1.791759,,0
-11,3,0,1,2,329193,0,8130.792,11.82546,0,12,1,25.08204,2.22691,0,0,0,27.30895,0,0,0,1,0,6,88.3,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,0,0,0,100,9.003536,1.791759,3.307215,1
-11,3,0,1,3,329193,0,8130.792,12.82546,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,0,0,0,100,9.003536,1.791759,,0
-11,3,0,1,1,329194,0,8130.792,37.11704,1,12,1,552.0531,226.0368,84.41267,0,6845.592,7708.095,2,0,0,23,0,6,67,20.7,1,51.1,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,51.1,9.003536,1.791759,8.950027,1
-11,3,0,1,2,329194,0,8130.792,38.11704,1,12,1,1480.975,113.8537,77.97937,0,9120.244,10793.05,6,0,0,72,1,6,67,20.7,1,51.1,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,51.1,9.003536,1.791759,9.286658,1
-11,3,0,1,3,329194,0,8130.792,39.11704,1,12,1,285.4471,211.3757,115.4213,0,6888.856,7501.101,8,0,0,18,0,6,67,20.7,1,51.1,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,51.1,9.003536,1.791759,8.922805,1
-11,3,0,1,1,329195,0,8130.792,12.81314,0,12,1,55.92441,0,0,0,0,55.92441,0,0,0,3,1,6,90,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,1,0,0,100,9.003536,1.791759,4.024001,1
-11,3,0,1,2,329195,0,8130.792,13.81314,0,12,1,25.78528,2.320675,0,0,0,28.10595,0,0,0,1,0,6,90,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,1,0,0,100,9.003536,1.791759,3.335981,1
-11,3,0,1,3,329195,0,8130.792,14.81314,0,12,1,90.90714,0,0,0,0,90.90714,0,0,0,3,0,6,90,9.967326,0,100,0,591.72,1,0,1.791759,6.383034,0,0,0,1,0,0,100,9.003536,1.791759,4.509839,1
-11,3,0,1,1,329196,0,8130.792,40.5284,0,9,1,76.60879,28.19203,0,0,0,104.8008,0,0,0,3,1,6,63.3,0,1,39.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,39.8,9.003536,1.791759,4.652061,1
-11,3,0,1,2,329196,0,8130.792,41.5284,0,9,1,390.6235,80.98453,1.875293,0,1556.357,2029.841,1,0,0,8,8,6,63.3,0,1,39.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,39.8,9.003536,1.791759,7.615713,1
-11,3,0,1,3,329196,0,8130.792,42.5284,0,9,1,61.04901,49.13156,0,0,0,110.1806,0,0,0,4,0,6,63.3,0,1,39.8,0,591.72,0,0,1.791759,6.383034,0,0,0,0,0,1,39.8,9.003536,1.791759,4.70212,1
-13,3,0,1,1,329225,0,2116.716,.7583846,0,12,1,6.128703,2.73238,0,0,0,8.861083,0,0,0,1,0,2,83.39137,9.967326,0,63,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,63,7.658093,.6931472,2.181669,1
-13,3,0,1,2,329225,0,2116.716,1.758385,0,12,1,5.625879,0,0,0,0,5.625879,0,0,0,1,0,2,83.39137,9.967326,0,63,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,63,7.658093,.6931472,1.727377,1
-13,3,0,1,3,329225,0,2116.716,2.758385,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,0,63,300,300,1,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,63,7.658093,.6931472,,0
-13,3,0,1,1,329226,0,2116.716,22.01232,1,12,1,22.98264,15.04086,0,0,436.43,474.4535,1,0,0,3,0,2,44.7,31,1,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,73.9,7.658093,.6931472,6.162164,1
-13,3,0,1,2,329226,0,2116.716,23.01232,1,12,1,11.72058,0,23.44116,0,0,35.16174,0,0,0,1,0,2,44.7,31,1,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,73.9,7.658093,.6931472,3.559959,1
-13,3,0,1,3,329226,0,2116.716,24.01232,1,12,1,28.14273,0,0,0,0,28.14273,0,0,0,1,1,2,44.7,31,1,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,73.9,7.658093,.6931472,3.337289,1
-13,3,0,1,1,329227,0,1,28.35044,0,10,1,66.67518,0,0,0,960.7252,1027.4,1,0,0,5,0,1,39.9,10.3,1,27.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,1,0,27.3,.6931472,0,6.934787,1
-13,3,0,1,3,329227,0,1,30.35044,0,10,1,20.74377,29.10146,0,0,0,49.84523,0,0,0,2,0,1,39.9,10.3,1,27.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,1,0,27.3,.6931472,0,3.908923,1
-13,3,0,1,1,329502,0,10546.04,24.23819,1,16,1,19.73684,4.200405,18.7247,0,0,42.66194,0,0,0,1,1,2,80.9,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.2636,.6931472,3.753307,1
-13,3,0,1,2,329502,0,10546.04,25.23819,1,16,1,48.48485,11.74825,15.85082,0,0,76.08392,0,0,0,2,1,2,80.9,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.2636,.6931472,4.331837,1
-13,3,0,1,3,329502,0,10546.04,26.23819,1,16,1,134.3309,0,0,0,663.7025,798.0333,1,0,0,3,0,2,80.9,10.3,0,65.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,65.9,9.2636,.6931472,6.68215,1
-13,3,0,1,1,329503,0,10546.04,26.16564,0,16,1,13.96761,0,0,0,0,13.96761,0,0,0,1,0,2,70.2,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.2636,.6931472,2.636741,1
-13,3,0,1,2,329503,0,10546.04,27.16564,0,16,1,23.31002,0,27.50583,0,0,50.81585,0,0,0,1,1,2,70.2,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.2636,.6931472,3.928208,1
-13,3,0,1,3,329503,0,10546.04,28.16564,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.2636,.6931472,,0
-11,3,0,0,1,329514,0,2930.205,1.136208,0,10,1,55.15833,11.87436,0,0,0,67.03268,0,0,0,3,0,3,83.39137,9.967326,0,81.5,0,780.92,1,0,1.098612,6.660473,0,0,0,0,0,0,81.5,7.983169,1.098612,4.20518,1
-11,3,0,0,2,329514,0,2930.205,2.136208,0,10,1,7.735584,2.789498,0,0,0,10.52508,0,0,0,1,0,3,83.39137,9.967326,0,81.5,0,780.92,1,0,1.098612,6.660473,0,0,0,0,0,0,81.5,7.983169,1.098612,2.353761,1
-11,3,0,0,3,329514,0,2930.205,3.136208,0,10,1,26.44024,10.5503,0,0,0,36.99054,0,0,0,6,0,4,83.39137,9.967326,0,81.5,0,780.92,1,0,1.386294,6.660473,0,0,0,0,0,0,81.5,7.983169,1.386294,3.610662,1
-11,3,0,0,1,329515,0,2930.205,29.82067,1,10,1,108.9377,8.350357,33.19714,0,0,150.4852,0,0,0,2,14,3,75.5,3.4,1,90.9,0,780.92,0,0,1.098612,6.660473,0,0,0,0,0,0,90.9,7.983169,1.098612,5.013865,1
-11,3,0,0,2,329515,0,2930.205,30.82067,1,10,1,255.5087,16.63385,0,0,661.8378,933.9803,1,0,0,0,28,3,75.5,3.4,1,90.9,0,780.92,0,0,1.098612,6.660473,0,0,0,0,0,0,90.9,7.983169,1.098612,6.839455,1
-11,3,0,0,3,329515,0,2930.205,31.82067,1,10,1,140.8427,17.88048,47.91488,0,0,206.638,0,0,0,3,15,4,75.5,3.4,1,90.9,0,780.92,0,0,1.386294,6.660473,0,0,0,0,0,0,90.9,7.983169,1.386294,5.330968,1
-11,3,0,0,1,329516,0,2930.205,32.03559,0,9,1,5.107252,0,0,0,0,5.107252,0,0,0,1,0,3,88.3,10.3,0,84.1,0,780.92,0,0,1.098612,6.660473,0,0,0,1,0,0,84.1,7.983169,1.098612,1.630661,1
-11,3,0,0,2,329516,0,2930.205,33.03559,0,9,1,3.281763,2.01594,0,0,0,5.297703,0,0,0,1,0,3,88.3,10.3,0,84.1,0,780.92,0,0,1.098612,6.660473,0,0,0,1,0,0,84.1,7.983169,1.098612,1.667273,1
-11,3,0,0,3,329516,0,2930.205,34.03559,0,9,1,133.104,1.375752,0,0,0,134.4798,0,0,0,2,4,4,88.3,10.3,0,84.1,0,780.92,0,0,1.386294,6.660473,0,0,0,1,0,0,84.1,7.983169,1.386294,4.901414,1
-5,3,25,1,1,329526,0,8387.097,23.11841,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,3.4,0,83,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,83,9.034569,.6931472,,0
-5,3,25,1,2,329526,0,8387.097,24.11841,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,3.4,0,83,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,83,9.034569,.6931472,,0
-5,3,25,1,3,329526,0,8387.097,25.11841,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,3.4,0,83,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,83,9.034569,.6931472,,0
-5,3,25,1,1,329527,0,8387.097,23.2334,1,14,1,11.63968,13.55769,0,0,0,25.19737,0,0,0,1,0,2,87.2,3.4,0,85.2,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,85.2,9.034569,.6931472,3.22674,1
-5,3,25,1,2,329527,0,8387.097,24.2334,1,14,1,23.54312,0,0,0,0,23.54312,0,0,0,1,1,2,87.2,3.4,0,85.2,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,85.2,9.034569,.6931472,3.158834,1
-5,3,25,1,3,329527,0,8387.097,25.2334,1,14,1,12.82599,0,0,0,0,12.82599,0,0,0,2,0,2,87.2,3.4,0,85.2,612.8,612.8,0,0,.6931472,6.418039,0,3.258096,7.804333,0,0,0,85.2,9.034569,.6931472,2.551474,1
-11,3,0,0,1,329528,0,2849.267,50.38741,1,12,1,107.763,18.08478,29.62206,0,0,155.4699,0,0,0,4,1,1,79.8,13.8,0,62.5,0,311.64,0,0,0,5.741848,0,0,0,1,0,0,62.5,7.955168,0,5.046452,1
-11,3,0,0,2,329528,0,2849.267,51.38741,1,12,1,29.53587,21.01735,0,0,0,50.55321,0,0,0,2,0,1,79.8,13.8,0,62.5,0,311.64,0,0,0,5.741848,0,0,0,1,0,0,62.5,7.955168,0,3.923027,1
-11,3,0,0,3,329528,0,2849.267,52.38741,1,12,1,74.59158,25.92003,21.06621,0,0,121.5778,0,0,0,2,1,1,79.8,13.8,0,62.5,0,311.64,0,0,0,5.741848,0,0,0,1,0,0,62.5,7.955168,0,4.800554,1
-13,3,0,1,2,329565,0,8114.956,57.94456,1,,1,14.20455,1.941288,17.99242,0,0,34.13826,0,0,0,1,1,1,92.6,10.3,0,83,,,0,0,0,0,1,4.564348,0,0,0,0,83,9.001587,0,3.530419,1
-11,3,0,0,1,329577,0,2584.164,60.87337,1,10,1,196.0639,100.4637,59.78877,0,406.5894,762.9057,1,0,0,9,4,1,83.5,10.3,1,33,0,311.64,0,0,0,5.741848,0,0,0,0,0,1,33,7.857544,0,6.637135,1
-11,3,0,0,2,329577,0,2584.164,61.87337,1,10,1,161.0795,98.41856,63.45644,0,0,322.9546,0,0,0,7,1,1,83.5,10.3,1,33,0,311.64,0,0,0,5.741848,0,0,0,0,0,1,33,7.857544,0,5.777512,1
-11,3,0,0,3,329577,0,2584.164,62.87337,1,10,1,501.4521,102.2063,87.47724,0,0,691.1357,0,0,0,15,24,1,83.5,10.3,1,33,0,311.64,0,0,0,5.741848,0,0,0,0,0,1,33,7.857544,0,6.538336,1
-14,3,95,1,1,329608,0,703.8123,11.91513,1,7,1,73.38057,0,0,0,0,73.38057,0,0,0,5,0,2,100,9.967326,0,66.7,152.1,152.1,1,1,.6931472,5.024538,0,4.564348,5.075831,0,0,0,66.7,6.557931,.6931472,4.295659,1
-14,3,95,1,2,329608,0,703.8123,12.91513,1,7,1,37.29604,2.750583,0,0,0,40.04662,0,0,0,4,0,2,100,9.967326,0,66.7,152.1,152.1,1,1,.6931472,5.024538,0,4.564348,5.075831,0,0,0,66.7,6.557931,.6931472,3.690044,1
-14,3,95,1,3,329608,0,703.8123,13.91513,1,7,1,6.84053,0,0,0,0,6.84053,0,0,0,1,0,2,100,9.967326,0,66.7,152.1,152.1,1,1,.6931472,5.024538,0,4.564348,5.075831,0,0,0,66.7,6.557931,.6931472,1.922865,1
-14,3,95,1,1,329609,0,703.8123,30.89938,1,7,1,76.74595,8.223684,20.24291,0,836.7156,941.9282,1,0,0,3,0,2,92.6,20.7,1,48.9,152.1,152.1,0,0,.6931472,5.024538,0,4.564348,5.075831,0,1,0,48.9,6.557931,.6931472,6.847929,1
-14,3,95,1,2,329609,0,703.8123,31.89938,1,7,1,11.65501,0,23.31002,0,0,34.96503,0,0,0,1,0,2,92.6,20.7,1,48.9,152.1,152.1,0,0,.6931472,5.024538,0,4.564348,5.075831,0,1,0,48.9,6.557931,.6931472,3.554348,1
-14,3,95,1,3,329609,0,703.8123,32.89938,1,7,1,21.37666,0,21.37666,0,0,42.75331,0,0,0,2,0,2,92.6,20.7,1,48.9,152.1,152.1,0,0,.6931472,5.024538,0,4.564348,5.075831,0,1,0,48.9,6.557931,.6931472,3.755447,1
-13,3,0,0,1,329631,0,5764.223,13.42094,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.659599,1.386294,,0
-13,3,0,0,2,329631,0,5764.223,14.42094,0,8,1,32.81763,1.781528,.9376465,0,0,35.5368,0,0,0,3,0,4,90,9.967326,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.659599,1.386294,3.570569,1
-13,3,0,0,3,329631,0,5764.223,15.42094,0,8,1,57.17971,2.042132,29.66466,0,0,88.8865,0,0,0,2,0,4,90,9.967326,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.659599,1.386294,4.48736,1
-13,3,0,0,1,329632,0,5764.223,44.72827,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,1,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,76.1,8.659599,1.386294,,0
-13,3,0,0,2,329632,0,5764.223,45.72827,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,1,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,76.1,8.659599,1.386294,,0
-13,3,0,0,3,329632,0,5764.223,46.72827,0,8,1,6.448839,3.525365,0,0,449.9097,459.8839,1,0,0,1,0,4,70.2,3.4,1,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,76.1,8.659599,1.386294,6.130974,1
-13,3,0,0,1,329633,0,5764.223,12.54757,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,95,9.967326,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,,0
-13,3,0,0,2,329633,0,5764.223,13.54757,1,8,1,5.157056,0,0,0,0,5.157056,0,0,0,1,0,4,95,9.967326,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,1.640366,1
-13,3,0,0,3,329633,0,5764.223,14.54757,1,8,1,8.598453,0,33.08255,0,0,41.681,0,0,0,1,0,4,95,9.967326,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,3.730045,1
-13,3,0,0,1,329634,0,5764.223,11.01164,0,8,1,7.660879,0,0,0,0,7.660879,0,0,0,1,0,4,98.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,2.036127,1
-13,3,0,0,2,329634,0,5764.223,12.01164,0,8,1,33.75528,4.875762,1.875293,0,0,40.50633,0,0,0,3,0,4,98.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,3.701458,1
-13,3,0,0,3,329634,0,5764.223,13.01164,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,98.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.659599,1.386294,,0
-13,3,0,0,1,329635,0,1501.466,58.26146,1,6,1,12.76813,103.7794,0,0,0,116.5475,0,0,0,2,0,1,54.8,10.3,1,59.1,150,198.24,0,0,0,5.289478,1,4.564348,5.061929,0,1,0,59.1,7.314863,0,4.758299,1
-13,3,0,0,2,329635,0,1501.466,59.26146,1,6,1,30.47351,102.0628,32.81763,0,0,165.354,0,0,0,2,2,1,54.8,10.3,1,59.1,150,198.24,0,0,0,5.289478,1,4.564348,5.061929,0,1,0,59.1,7.314863,0,5.108088,1
-13,3,0,0,3,329635,0,1501.466,60.26146,1,6,1,18.48667,181.6638,0,0,0,200.1505,0,0,0,1,0,1,54.8,10.3,1,59.1,150,198.24,0,0,0,5.289478,1,4.564348,5.061929,0,1,0,59.1,7.314863,0,5.299069,1
-11,3,0,1,1,329668,0,7196.79,37.7358,0,12,1,43.6373,1.494075,0,0,0,45.13137,0,0,0,2,0,1,68.1,10.3,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,8.881529,0,3.809578,1
-11,3,0,1,2,329668,0,7196.79,38.7358,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,68.1,10.3,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,8.881529,0,,0
-11,3,0,1,3,329668,0,7196.79,39.7358,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,68.1,10.3,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,8.881529,0,,0
-11,3,0,1,4,329668,0,7196.79,40.7358,0,12,1,22.92241,0,0,0,0,22.92241,0,0,0,1,0,1,68.1,10.3,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,8.881529,0,3.132115,1
-11,3,0,1,5,329668,0,7196.79,41.7358,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,68.1,10.3,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,8.881529,0,,0
-14,3,95,1,1,329695,0,6648.094,47.12663,0,12,1,196.8058,33.35909,39.15508,0,1262.772,1532.092,2,0,0,9,6,1,62.2,13.8,0,56.8,606.25,606.25,0,0,0,6.407292,0,4.564348,6.458586,0,0,0,56.8,8.802236,0,7.334389,1
-14,3,95,1,2,329695,0,6648.094,48.12663,0,12,1,195.0758,62.61837,0,0,897.1733,1154.867,1,0,0,7,8,1,62.2,13.8,0,56.8,606.25,606.25,0,0,0,6.407292,0,4.564348,6.458586,0,0,0,56.8,8.802236,0,7.051741,1
-14,3,95,1,3,329695,0,6648.094,49.12663,0,12,1,112.8305,88.4482,37.27785,0,338.0581,576.6146,1,0,0,5,6,1,62.2,13.8,0,56.8,606.25,606.25,0,0,0,6.407292,0,4.564348,6.458586,0,0,0,56.8,8.802236,0,6.357174,1
-11,3,0,1,1,329712,0,16875.07,49.01848,0,11,1,65.37283,56.46067,41.36874,0,0,163.2022,0,0,0,4,0,5,91,6.9,1,67,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,67,9.733652,1.609438,5.09499,1
-11,3,0,1,2,329712,0,16875.07,50.01848,0,11,1,64.69761,41.54243,7.501172,0,0,113.7412,0,0,0,3,0,5,91,6.9,1,67,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,67,9.733652,1.609438,4.733926,1
-11,3,0,1,3,329712,0,16875.07,51.01848,0,11,1,156.0619,64.50989,29.66466,0,0,250.2365,0,0,0,4,1,5,91,6.9,1,67,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,67,9.733652,1.609438,5.522406,1
-11,3,0,1,1,329713,0,16875.07,48.32033,1,12,1,220.1992,7.553626,37.28294,0,0,265.0357,0,0,0,3,0,5,60.1,6.9,0,75,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,75,9.733652,1.609438,5.579865,1
-11,3,0,1,2,329713,0,16875.07,49.32033,1,12,1,180.2625,43.20675,30.47351,0,0,253.9428,0,0,0,34,0,5,60.1,6.9,0,75,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,75,9.733652,1.609438,5.537109,1
-11,3,0,1,3,329713,0,16875.07,50.32033,1,12,1,171.1092,40.71367,27.51505,0,0,239.3379,0,0,0,46,1,5,60.1,6.9,0,75,0,488.16,0,0,1.609438,6.190643,0,0,0,1,0,0,75,9.733652,1.609438,5.477877,1
-11,3,0,1,1,329714,0,16875.07,16.1232,1,12,1,56.84372,11.89479,0,0,0,68.73851,0,0,0,7,0,5,56.4,13.8,1,25,0,488.16,1,1,1.609438,6.190643,0,0,0,0,0,0,25,9.733652,1.609438,4.230309,1
-11,3,0,1,2,329714,0,16875.07,17.1232,1,12,1,77.35583,30.66104,13.12705,0,461.2049,582.3488,1,0,0,5,0,5,56.4,13.8,1,25,0,488.16,1,1,1.609438,6.190643,0,0,0,0,0,0,25,9.733652,1.609438,6.36707,1
-11,3,0,1,3,329714,0,16875.07,18.1232,1,12,1,66.63801,3.826311,18.48667,0,0,88.95099,0,0,0,2,1,5,56.4,13.8,1,25,0,488.16,0,0,1.609438,6.190643,0,0,0,0,0,0,25,9.733652,1.609438,4.488086,1
-11,3,0,1,1,329715,0,16875.07,14.41205,0,12,1,352.9265,8.758938,0,0,0,361.6854,0,0,0,14,0,5,80.3,3.4,0,70.5,0,488.16,1,0,1.609438,6.190643,0,0,0,0,0,0,70.5,9.733652,1.609438,5.890775,1
-11,3,0,1,2,329715,0,16875.07,15.41205,0,12,1,68.91702,0,0,0,0,68.91702,0,0,0,4,0,5,80.3,3.4,0,70.5,0,488.16,1,0,1.609438,6.190643,0,0,0,0,0,0,70.5,9.733652,1.609438,4.232903,1
-11,3,0,1,3,329715,0,16875.07,16.41205,0,12,1,8.598453,2.652622,0,0,0,11.25107,0,0,0,1,0,5,80.3,3.4,0,70.5,0,488.16,1,0,1.609438,6.190643,0,0,0,0,0,0,70.5,9.733652,1.609438,2.420464,1
-11,3,0,1,1,329716,0,16875.07,20.17522,0,13,1,133.0439,2.93667,0,0,0,135.9806,0,0,0,4,0,5,75,0,0,76.1,0,488.16,0,0,1.609438,6.190643,0,0,0,0,0,0,76.1,9.733652,1.609438,4.912512,1
-11,3,0,1,2,329716,0,16875.07,21.17522,0,13,1,14.0647,5.860291,0,0,0,19.92499,0,0,0,2,0,5,75,0,0,76.1,0,488.16,0,0,1.609438,6.190643,0,0,0,0,0,0,76.1,9.733652,1.609438,2.991975,1
-11,3,0,1,3,329716,0,16875.07,22.17522,0,13,1,16.76698,0,12.89768,0,0,29.66466,0,0,0,1,1,5,75,0,0,76.1,0,488.16,0,0,1.609438,6.190643,0,0,0,0,0,0,76.1,9.733652,1.609438,3.389956,1
-11,3,0,1,1,329746,0,1643.988,28.09035,1,11,1,201.6854,9.096016,0,0,0,210.7814,0,0,0,9,0,4,52.1,27.6,0,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.405488,1.386294,5.350821,1
-11,3,0,1,2,329746,0,1643.988,29.09035,1,11,1,91.04548,13.12236,0,0,0,104.1678,0,0,0,5,0,4,52.1,27.6,0,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.405488,1.386294,4.646003,1
-11,3,0,1,3,329746,0,1643.988,30.09035,1,11,1,206.9218,6.857265,0,0,0,213.779,0,0,0,6,8,4,52.1,27.6,0,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.405488,1.386294,5.364943,1
-11,3,0,1,1,329747,0,1643.988,5.237509,1,11,1,18.38611,2.288049,0,0,0,20.67416,0,0,0,3,0,4,76.7,9.967326,0,40.7,0,0,1,1,1.386294,0,0,0,0,0,0,0,40.7,7.405488,1.386294,3.028884,1
-11,3,0,1,2,329747,0,1643.988,6.237509,1,11,1,51.28926,12.48945,0,0,0,63.77872,0,0,0,5,0,4,76.7,9.967326,0,40.7,0,0,1,1,1.386294,0,0,0,0,0,0,0,40.7,7.405488,1.386294,4.155419,1
-11,3,0,1,3,329747,0,1643.988,7.237509,1,11,1,55.46002,7.49785,0,0,0,62.95787,0,0,0,6,0,4,76.7,9.967326,0,40.7,0,0,1,1,1.386294,0,0,0,0,0,0,0,40.7,7.405488,1.386294,4.142466,1
-11,3,0,1,1,329748,0,1643.988,1.054072,0,11,1,18.38611,9.264556,0,0,0,27.65066,0,0,0,3,0,4,83.39137,9.967326,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,7.405488,1.386294,3.31965,1
-11,3,0,1,2,329748,0,1643.988,2.054073,0,11,1,62.54102,12.07689,0,0,459.2452,533.8631,2,0,0,5,0,4,83.39137,9.967326,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,7.405488,1.386294,6.280139,1
-11,3,0,1,3,329748,0,1643.988,3.054073,0,11,1,42.13242,10.88134,0,0,0,53.01376,0,0,0,6,0,4,83.39137,9.967326,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,7.405488,1.386294,3.970551,1
-11,3,0,1,1,329749,0,1643.988,32.01095,0,12,1,89.37691,10.80184,0,20.42901,1449.29,1549.469,2,0,1,10,0,4,83,3.4,0,81.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,81.8,7.405488,1.386294,7.345667,1
-11,3,0,1,2,329749,0,1643.988,33.01095,0,12,1,0,0,0,0,1921.608,1921.608,3,0,0,0,0,4,83,3.4,0,81.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,81.8,7.405488,1.386294,7.560918,1
-11,3,0,1,3,329749,0,1643.988,34.01095,0,12,1,8.598453,3.116939,0,0,4671.896,4683.611,7,0,0,1,0,4,83,3.4,0,81.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,81.8,7.405488,1.386294,8.451825,1
-15,3,95,1,1,329751,0,3077.419,59.81383,1,12,1,77.42915,119.6609,423.583,0,3042.991,3663.664,3,0,0,8,1,1,60.6,24.1,1,25,361.64,425.04,0,0,0,6.052183,0,4.564348,5.941943,0,1,0,25,8.032171,0,8.206219,1
-15,3,95,1,2,329751,0,3077.419,60.81383,1,12,1,87.64569,264.042,288.1119,0,0,639.7996,0,0,0,8,1,1,60.6,24.1,1,25,361.64,425.04,0,0,0,6.052183,0,4.564348,5.941943,0,1,0,25,8.032171,0,6.461155,1
-15,3,95,1,3,329751,0,3077.419,61.81383,1,12,1,39.76058,297.1569,230.8679,0,0,567.7854,0,0,0,5,1,1,60.6,24.1,1,25,361.64,425.04,0,0,0,6.052183,0,4.564348,5.941943,0,1,0,25,8.032171,0,6.341743,1
-15,3,95,1,4,329751,0,3077.419,62.81383,1,12,1,334.3889,303.3705,208.3013,0,12574.92,13420.98,4,0,0,12,1,1,60.6,24.1,1,25,361.64,425.04,0,0,0,6.052183,0,4.564348,5.941943,0,1,0,25,8.032171,0,9.504574,1
-15,3,95,1,5,329751,0,3077.419,63.81383,1,12,1,595.3635,421.5666,280.9975,0,6734.71,8032.638,4,0,0,11,1,1,60.6,24.1,1,25,361.64,425.04,0,0,0,6.052183,0,4.564348,5.941943,0,1,0,25,8.032171,0,8.991268,1
-13,3,0,0,1,329752,1,3171.261,38.84737,1,12,1,37.43616,19.8621,0,0,0,57.29826,0,0,0,6,0,4,55.3,17.2,0,26.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,26.1,8.0622,1.386294,4.04827,1
-13,3,0,0,2,329752,1,3171.261,39.84737,1,12,1,222.8317,21.71589,31.35959,0,0,275.9072,0,0,0,13,0,3,55.3,17.2,0,26.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,26.1,8.0622,1.098612,5.620064,1
-13,3,0,0,3,329752,1,3171.261,40.84737,1,12,1,21.32416,25.27085,0,0,0,46.59501,0,0,0,3,0,2,55.3,17.2,0,26.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,26.1,8.0622,.6931472,3.841494,1
-13,3,0,0,4,329752,1,3171.261,41.84737,1,12,1,105.0795,73.48585,24.04033,0,0,202.6057,0,0,0,8,14,2,55.3,17.2,0,26.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,26.1,8.0622,.6931472,5.311262,1
-13,3,0,0,5,329752,1,3171.261,42.84737,1,12,1,55.09554,58.86412,0,0,0,113.9597,0,0,0,6,0,2,55.3,17.2,0,26.1,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,26.1,8.0622,.6931472,4.735845,1
-13,3,0,0,1,329753,1,3171.261,16.26557,1,12,1,76.5475,11.36364,5.107252,0,0,93.01839,0,0,0,5,1,4,63.3,17.2,0,71.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.0622,1.386294,4.532797,1
-13,3,0,0,2,329753,1,3171.261,17.26557,1,12,1,35.48992,6.558837,0,0,1493.39,1535.438,1,0,0,2,0,3,63.3,17.2,0,71.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.0622,1.098612,7.336571,1
-13,3,0,0,1,329754,1,3171.261,8.262834,0,12,1,6.128703,11.41982,0,0,0,17.54852,0,0,0,1,0,4,86.7,9.967326,0,51.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,51.9,8.0622,1.386294,2.864969,1
-13,3,0,0,2,329754,1,3171.261,9.262834,0,12,1,20.06564,0,0,0,0,20.06564,0,0,0,2,0,3,86.7,9.967326,0,51.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,51.9,8.0622,1.098612,2.999009,1
-13,3,0,0,3,329754,1,3171.261,10.26283,0,12,1,5.159071,3.525365,0,0,0,8.684437,0,0,0,1,0,2,86.7,9.967326,0,51.9,450,450,1,0,.6931472,6.109248,1,4.564348,6.160541,1,0,0,51.9,8.0622,.6931472,2.161533,1
-13,3,0,0,4,329754,1,3171.261,11.26283,0,12,1,11.63242,3.935634,0,0,0,15.56805,0,0,0,2,0,2,86.7,9.967326,0,51.9,450,450,1,0,.6931472,6.109248,1,4.564348,6.160541,1,0,0,51.9,8.0622,.6931472,2.745221,1
-13,3,0,0,5,329754,1,3171.261,12.26283,0,12,1,22.64685,3.927813,0,0,0,26.57466,0,0,0,3,0,2,86.7,9.967326,0,51.9,450,450,1,0,.6931472,6.109248,1,4.564348,6.160541,1,0,0,51.9,8.0622,.6931472,3.279958,1
-13,3,0,0,1,329755,1,3171.261,17.48939,0,12,1,38.30439,4.417773,0,0,0,42.72216,0,0,0,3,0,4,97.9,3.4,0,94,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,94,8.0622,1.386294,3.754718,1
-6,3,25,1,1,329775,0,6272.727,4.013689,1,12,1,41.73107,27.01185,0,0,0,68.74291,0,0,0,8,0,4,83.39137,9.967326,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.744126,1.386294,4.230374,1
-6,3,25,1,2,329775,0,6272.727,5.013689,1,12,1,104.6402,30.20833,0,0,0,134.8485,0,0,0,9,0,4,83.39137,9.967326,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.744126,1.386294,4.904152,1
-6,3,25,1,3,329775,0,6272.727,6.013689,1,12,1,14.73775,2.427395,22.97356,0,0,40.13871,0,0,0,1,1,4,83.39137,9.967326,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.744126,1.386294,3.692341,1
-6,3,25,1,1,329776,0,6272.727,32.28474,0,12,1,6.697578,0,0,0,0,6.697578,0,0,0,1,0,4,60.1,0,0,52.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,52.3,8.744126,1.386294,1.901746,1
-6,3,25,1,2,329776,0,6272.727,33.28474,0,12,1,88.30492,0,0,0,0,88.30492,0,0,0,1,0,4,60.1,0,0,52.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,52.3,8.744126,1.386294,4.480796,1
-6,3,25,1,3,329776,0,6272.727,34.28474,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,60.1,0,0,52.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,52.3,8.744126,1.386294,,0
-6,3,25,1,1,329777,0,6272.727,1.404517,1,12,1,69.03658,15.82689,0,0,0,84.86347,0,0,0,9,0,4,83.39137,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,8.744126,1.386294,4.441044,1
-6,3,25,1,2,329777,0,6272.727,2.404517,1,12,1,39.29924,4.142992,0,0,0,43.44223,0,0,0,4,0,4,83.39137,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,8.744126,1.386294,3.771432,1
-6,3,25,1,3,329777,0,6272.727,3.404517,1,12,1,5.635024,1.950585,0,0,0,7.585609,0,0,0,1,0,4,83.39137,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,8.744126,1.386294,2.026253,1
-6,3,25,1,1,329778,0,6272.727,29.47844,1,12,1,22.15353,0,29.36631,0,0,51.51984,0,0,0,1,1,4,79.3,6.9,0,83,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,83,8.744126,1.386294,3.941967,1
-6,3,25,1,2,329778,0,6272.727,30.47844,1,12,1,0,3.432765,21.7803,0,0,25.21307,0,0,0,0,0,4,79.3,6.9,0,83,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,83,8.744126,1.386294,3.227362,1
-6,3,25,1,3,329778,0,6272.727,31.47844,1,12,1,6.501951,0,0,0,0,6.501951,0,0,0,1,0,4,79.3,6.9,0,83,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,83,8.744126,1.386294,1.872102,1
-11,3,0,1,1,329806,0,2791.789,21.9165,0,12,1,374.7753,12.09908,29.62206,35.75077,0,416.4964,0,0,2,7,3,1,61.7,17.2,1,78.4,0,211.2,0,0,0,5.352806,0,0,0,0,0,0,78.4,7.934796,0,6.031878,1
-11,3,0,1,2,329806,0,2791.789,22.9165,0,12,1,211.2049,0,19.45617,60.94702,0,230.661,0,0,3,6,14,1,61.7,17.2,1,78.4,0,211.2,0,0,0,5.352806,0,0,0,0,0,0,78.4,7.934796,0,5.440949,1
-11,3,0,1,3,329806,0,2791.789,23.9165,0,12,1,46.86156,0,23.00086,0,0,69.86243,0,0,0,2,6,1,61.7,17.2,1,78.4,0,211.2,0,0,0,5.352806,0,0,0,0,0,0,78.4,7.934796,0,4.246528,1
-11,3,0,1,1,329807,0,2365.982,23.00342,1,12,1,97.24208,41.16446,0,0,0,138.4065,0,0,0,7,0,1,70.2,3.4,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.769371,0,4.930195,1
-11,3,0,1,2,329807,0,2365.982,24.00342,1,12,1,84.38818,21.594,3.398969,0,0,109.3812,0,0,0,5,3,1,70.2,3.4,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.769371,0,4.694839,1
-11,3,0,1,3,329807,0,2365.982,25.00342,1,12,1,13.28461,0,0,0,0,13.28461,0,0,0,1,0,1,70.2,3.4,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,7.769371,0,2.586606,1
-16,3,95,1,1,329825,0,9685.044,11.52909,0,12,1,21.25506,0,0,0,0,21.25506,0,0,0,0,0,4,91.7,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.178441,1.386294,3.056595,1
-16,3,95,1,2,329825,0,9685.044,12.52909,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.178441,1.386294,,0
-16,3,95,1,3,329825,0,9685.044,13.52909,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.178441,1.386294,,0
-16,3,95,1,1,329826,0,9685.044,40.282,0,7,1,10.12146,2.656883,0,0,0,12.77834,0,0,0,1,0,4,83,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.178441,1.386294,2.547752,1
-16,3,95,1,2,329826,0,9685.044,41.282,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,83,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.178441,1.386294,,0
-16,3,95,1,3,329826,0,9685.044,42.282,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,83,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,83,9.178441,1.386294,,0
-16,3,95,1,1,329827,0,9685.044,35.95893,1,12,1,5.060729,4.352227,0,0,0,9.412955,0,0,0,1,0,4,92,24.1,1,29.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,29.5,9.178441,1.386294,2.242087,1
-16,3,95,1,2,329827,0,9685.044,36.95893,1,12,1,72.72727,0,0,0,0,72.72727,0,0,0,1,0,4,92,24.1,1,29.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,29.5,9.178441,1.386294,4.286716,1
-16,3,95,1,3,329827,0,9685.044,37.95893,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,92,24.1,1,29.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,29.5,9.178441,1.386294,,0
-16,3,95,1,1,329828,0,9685.044,7.419576,0,12,1,0,4.605263,0,0,0,4.605263,0,0,0,0,0,4,83.3,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.178441,1.386294,1.5272,1
-16,3,95,1,2,329828,0,9685.044,8.419576,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.178441,1.386294,,0
-16,3,95,1,3,329828,0,9685.044,9.419576,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92.6,9.178441,1.386294,,0
-13,3,0,1,1,329858,0,7188.27,4.317591,0,9,1,3.036437,0,0,0,0,3.036437,0,0,0,2,0,7,83.39137,9.967326,0,88.9,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.880345,1.94591,1.110685,1
-13,3,0,1,2,329858,0,7188.27,5.317591,0,9,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,7,83.39137,9.967326,0,88.9,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.880345,1.94591,1.721767,1
-13,3,0,1,3,329858,0,7188.27,6.317591,0,9,1,49.55109,0,0,0,0,49.55109,0,0,0,4,1,7,83.39137,9.967326,0,88.9,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.880345,1.94591,3.903004,1
-13,3,0,1,1,329859,0,7188.27,13.77413,1,9,1,16.70041,17.99089,11.1336,0,0,45.8249,0,0,0,2,1,7,80,9.967326,0,29.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,29.6,8.880345,1.94591,3.824828,1
-13,3,0,1,2,329859,0,7188.27,14.77413,1,9,1,23.31002,21.56177,28.90443,0,0,73.77622,0,0,0,3,1,7,80,9.967326,0,29.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,29.6,8.880345,1.94591,4.301036,1
-13,3,0,1,3,329859,0,7188.27,15.77413,1,9,1,16.67379,8.978196,0,0,0,25.65199,0,0,0,3,0,7,80,9.967326,0,29.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,29.6,8.880345,1.94591,3.244621,1
-13,3,0,1,1,329860,0,7188.27,14.69678,1,9,1,20.24291,0,0,0,0,20.24291,0,0,0,3,0,7,61.7,10.3,0,78.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,78.6,8.880345,1.94591,3.007805,1
-13,3,0,1,2,329860,0,7188.27,15.69678,1,9,1,7.925408,0,0,0,0,7.925408,0,0,0,1,0,7,61.7,10.3,0,78.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,78.6,8.880345,1.94591,2.070074,1
-13,3,0,1,3,329860,0,7188.27,16.69678,1,9,1,51.73151,0,0,0,0,51.73151,0,0,0,2,0,7,61.7,10.3,0,78.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,1,0,0,78.6,8.880345,1.94591,3.946067,1
-13,3,0,1,1,329861,0,7188.27,31.57563,1,9,1,27.32794,25.25304,26.31579,0,0,78.89676,0,0,0,1,1,7,75,6.9,0,69.3,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.880345,1.94591,4.36814,1
-13,3,0,1,2,329861,0,7188.27,32.57563,1,9,1,96.50349,22.68065,0,0,0,119.1842,0,0,0,4,0,7,75,6.9,0,69.3,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.880345,1.94591,4.78067,1
-13,3,0,1,3,329861,0,7188.27,33.57563,1,9,1,31.20992,12.16332,20.94912,0,529.1064,593.4288,1,0,0,3,1,7,75,6.9,0,69.3,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.880345,1.94591,6.385917,1
-13,3,0,1,1,329862,0,7188.27,12.75565,1,9,1,5.060729,0,0,0,0,5.060729,0,0,0,1,0,7,78.3,9.967326,1,100,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,8.880345,1.94591,1.621511,1
-13,3,0,1,2,329862,0,7188.27,13.75565,1,9,1,11.65501,0,0,0,0,11.65501,0,0,0,2,0,7,78.3,9.967326,1,100,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,8.880345,1.94591,2.455736,1
-13,3,0,1,3,329862,0,7188.27,14.75565,1,9,1,5.985464,0,0,0,0,5.985464,0,0,0,1,0,7,78.3,9.967326,1,100,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,100,8.880345,1.94591,1.789334,1
-13,3,0,1,1,329863,0,7188.27,34.4887,0,7,1,30.36437,10.12146,0,0,0,40.48583,0,0,0,0,3,7,79.8,0,0,84.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.880345,1.94591,3.700952,1
-13,3,0,1,2,329863,0,7188.27,35.4887,0,7,1,13.98601,0,0,0,0,13.98601,0,0,0,0,3,7,79.8,0,0,84.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.880345,1.94591,2.638058,1
-13,3,0,1,3,329863,0,7188.27,36.4887,0,7,1,70.07268,5.921334,0,0,0,75.99401,0,0,0,4,2,7,79.8,0,0,84.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,84.1,8.880345,1.94591,4.330655,1
-13,3,0,1,1,329864,0,7188.27,11.11567,1,9,1,42.51012,2.530364,0,0,345.1771,390.2176,1,0,0,3,0,7,75,9.967326,0,92.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.880345,1.94591,5.966704,1
-13,3,0,1,2,329864,0,7188.27,12.11567,1,9,1,111.4219,197.4592,0,0,857.0862,1165.967,1,0,0,10,0,7,75,9.967326,0,92.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.880345,1.94591,7.061306,1
-13,3,0,1,3,329864,0,7188.27,13.11567,1,9,1,75.71612,107.1612,0,0,375.9,558.7773,1,0,0,8,6,7,75,9.967326,0,92.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,1,0,92.6,8.880345,1.94591,6.325751,1
-10,3,50,1,1,329921,0,4194.721,14.19849,0,12,1,36.94332,0,0,0,0,36.94332,0,0,0,4,0,4,61.2,3.4,0,72.7,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,0,0,0,72.7,8.341821,1.386294,3.609385,1
-10,3,50,1,2,329921,0,4194.721,15.19849,0,12,1,19.34732,1.818182,24.70862,0,0,45.87413,0,0,0,1,1,4,61.2,3.4,0,72.7,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,0,0,0,72.7,8.341821,1.386294,3.825901,1
-10,3,50,1,3,329921,0,4194.721,16.19849,0,12,1,5.130398,1.923899,0,0,0,7.054296,0,0,0,1,0,4,61.2,3.4,0,72.7,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,0,0,0,72.7,8.341821,1.386294,1.953637,1
-10,3,50,1,1,329922,0,4194.721,35.154,1,12,1,7.591093,1.265182,0,0,0,8.856276,0,0,0,1,0,4,58,27.6,0,51.1,930,930,0,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,51.1,8.341821,1.386294,2.181126,1
-10,3,50,1,2,329922,0,4194.721,36.154,1,12,1,41.49184,1.375291,24.24242,0,0,67.10956,0,0,0,2,1,4,58,27.6,0,51.1,930,930,0,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,51.1,8.341821,1.386294,4.206326,1
-10,3,50,1,3,329922,0,4194.721,37.154,1,12,1,179.1364,14.83967,0,0,0,193.9761,0,0,0,23,0,4,58,27.6,0,51.1,930,930,0,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,51.1,8.341821,1.386294,5.267735,1
-10,3,50,1,1,329923,0,4194.721,8.260096,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,9.967326,0,22.2,930,930,1,1,1.386294,6.835185,0,3.931826,7.528332,0,1,0,22.2,8.341821,1.386294,,0
-10,3,50,1,2,329923,0,4194.721,9.260096,1,12,1,95.66434,.8111888,0,0,395.2634,491.7389,1,0,0,1,0,4,75,9.967326,0,22.2,930,930,1,1,1.386294,6.835185,0,3.931826,7.528332,0,1,0,22.2,8.341821,1.386294,6.197948,1
-10,3,50,1,3,329923,0,4194.721,10.2601,1,12,1,153.0569,6.89611,0,0,572.8089,732.7618,2,0,0,5,0,4,75,9.967326,0,22.2,930,930,1,1,1.386294,6.835185,0,3.931826,7.528332,0,1,0,22.2,8.341821,1.386294,6.596821,1
-10,3,50,1,1,329924,0,4194.721,15.27721,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,69.1,3.4,0,76.1,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,76.1,8.341821,1.386294,,0
-10,3,50,1,2,329924,0,4194.721,16.27721,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,69.1,3.4,0,76.1,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,76.1,8.341821,1.386294,,0
-10,3,50,1,3,329924,0,4194.721,17.27721,0,12,1,48.73878,4.608807,0,0,1037.79,1091.137,2,0,0,5,1,4,69.1,3.4,0,76.1,930,930,1,0,1.386294,6.835185,0,3.931826,7.528332,1,0,0,76.1,8.341821,1.386294,6.994976,1
-15,3,95,1,1,329942,0,7025.22,60.39151,1,14,1,45.04049,14.82794,11.63968,0,0,71.50809,0,0,0,6,0,1,79.8,10.3,0,94,491.68,492.84,0,0,0,6.200184,0,4.564348,6.249121,1,0,0,94,8.857404,0,4.269811,1
-15,3,95,1,2,329942,0,7025.22,61.39151,1,14,1,18.64802,15.85082,0,0,0,34.49883,0,0,0,2,0,1,79.8,10.3,0,94,491.68,492.84,0,0,0,6.200184,0,4.564348,6.249121,1,0,0,94,8.857404,0,3.540926,1
-15,3,95,1,3,329942,0,7025.22,62.39151,1,14,1,93.62975,12.01368,31.20992,0,0,136.8534,0,0,0,6,1,1,79.8,10.3,0,94,491.68,492.84,0,0,0,6.200184,0,4.564348,6.249121,1,0,0,94,8.857404,0,4.91891,1
-17,3,25,1,1,329954,0,6176.54,1.117043,0,13,1,80.66801,10.24798,0,0,0,90.91599,0,0,0,7,0,4,83.39137,9.967326,0,88.9,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,88.9,8.728675,1.386294,4.509936,1
-17,3,25,1,2,329954,0,6176.54,2.117043,0,13,1,16.78322,6.759907,0,0,0,23.54312,0,0,0,3,0,4,83.39137,9.967326,0,88.9,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,88.9,8.728675,1.386294,3.158834,1
-17,3,25,1,3,329954,0,6176.54,3.117043,0,13,1,39.76058,28.0248,0,0,0,67.78538,0,0,0,5,0,5,83.39137,9.967326,0,88.9,560,560,1,0,1.609438,6.327937,0,3.258096,7.714231,0,0,0,88.9,8.728675,1.609438,4.216346,1
-17,3,25,1,1,329955,0,6176.54,25.30869,0,12,1,117.9909,7.287449,34.41296,0,301.67,461.3613,1,0,0,3,1,4,58,3.4,0,62.5,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,62.5,8.728675,1.386294,6.134181,1
-17,3,25,1,2,329955,0,6176.54,26.30869,0,12,1,158.042,18.50816,0,0,0,176.5501,0,0,0,5,0,4,58,3.4,0,62.5,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,62.5,8.728675,1.386294,5.173605,1
-17,3,25,1,3,329955,0,6176.54,27.30869,0,12,1,59.85464,13.51005,0,0,0,73.36469,0,0,0,2,0,5,58,3.4,0,62.5,560,560,0,0,1.609438,6.327937,0,3.258096,7.714231,0,0,0,62.5,8.728675,1.609438,4.295443,1
-17,3,25,1,1,329956,0,6176.54,1.117043,0,13,1,47.57085,5.263158,0,0,0,52.83401,0,0,0,5,0,4,83.39137,9.967326,0,85.2,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,85.2,8.728675,1.386294,3.967155,1
-17,3,25,1,2,329956,0,6176.54,2.117043,0,13,1,49.41725,0,0,0,0,49.41725,0,0,0,5,0,4,83.39137,9.967326,0,85.2,560,560,1,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,85.2,8.728675,1.386294,3.9003,1
-17,3,25,1,3,329956,0,6176.54,3.117043,0,13,1,19.66652,6.45575,0,0,0,26.12227,0,0,0,3,0,5,83.39137,9.967326,0,85.2,560,560,1,0,1.609438,6.327937,0,3.258096,7.714231,0,0,0,85.2,8.728675,1.609438,3.262788,1
-17,3,25,1,1,329957,0,6176.54,23.62491,1,13,1,46.5587,17.81376,20.1164,0,0,84.48887,0,0,0,3,1,4,80.9,10.3,0,72.7,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,72.7,8.728675,1.386294,4.43662,1
-17,3,25,1,2,329957,0,6176.54,24.62491,1,13,1,0,0,0,0,637.9348,637.9348,1,0,0,0,0,4,80.9,10.3,0,72.7,560,560,0,0,1.386294,6.327937,0,3.258096,7.714231,0,0,0,72.7,8.728675,1.386294,6.458236,1
-17,3,25,1,3,329957,0,6176.54,25.62491,1,13,1,25.01069,2.308679,34.20265,0,0,61.52202,0,0,0,2,0,5,80.9,10.3,0,72.7,560,560,0,0,1.609438,6.327937,0,3.258096,7.714231,0,0,0,72.7,8.728675,1.609438,4.119395,1
-13,3,0,0,1,329977,0,4826.979,59.82204,1,12,1,22.66873,0,36.06388,0,0,58.73261,0,0,0,2,1,1,69.7,10.3,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.482183,0,4.072995,1
-13,3,0,0,2,329977,0,4826.979,60.82204,1,12,1,10.89015,5.023674,0,0,0,15.91383,0,0,0,1,0,1,69.7,10.3,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.482183,0,2.767188,1
-13,3,0,0,3,329977,0,4826.979,61.82204,1,12,1,22.10663,0,26.87473,0,0,48.98136,0,0,0,2,1,1,69.7,10.3,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,69.3,8.482183,0,3.89144,1
-13,3,0,1,1,329984,0,3399.414,44.34223,1,12,1,98.05924,1.716037,0,0,0,99.77528,0,0,0,5,1,1,75.5,20.7,0,47.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,47.7,8.131652,0,4.602921,1
-13,3,0,1,2,329984,0,3399.414,45.34223,1,12,1,229.5359,11.41116,0,0,735.1617,976.1088,2,0,0,14,0,1,75.5,20.7,0,47.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,47.7,8.131652,0,6.883574,1
-13,3,0,1,3,329984,0,3399.414,46.34223,1,12,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,1,75.5,20.7,0,47.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,47.7,8.131652,0,1.8639,1
-19,3,25,1,1,330004,0,10370.67,14.34908,1,8,1,68.31984,2.024292,0,0,1991.037,2061.382,2,0,0,8,0,4,61.2,6.9,0,53.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,53.4,9.246834,1.386294,7.631132,1
-19,3,25,1,2,330004,0,10370.67,15.34908,1,8,1,467.4312,13.31468,0,0,1461.296,1942.042,2,0,0,8,0,4,61.2,6.9,0,53.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,53.4,9.246834,1.386294,7.571495,1
-19,3,25,1,3,330004,0,10370.67,16.34908,1,8,1,125.4382,7.48183,0,0,0,132.92,0,0,0,13,0,4,61.2,6.9,0,53.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,53.4,9.246834,1.386294,4.889748,1
-19,3,25,1,1,330005,0,10370.67,46.61739,1,8,1,122.4696,12.85425,26.82186,37.95547,0,162.1458,0,0,5,5,1,4,68.1,44.8,1,95.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,95.5,9.246834,1.386294,5.088496,1
-19,3,25,1,2,330005,0,10370.67,47.61739,1,8,1,97.9021,5.734266,20.51282,0,0,124.1492,0,0,0,4,7,4,68.1,44.8,1,95.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,95.5,9.246834,1.386294,4.821484,1
-19,3,25,1,3,330005,0,10370.67,48.61739,1,8,1,34.20265,0,32.49252,0,0,66.69517,0,0,0,1,1,4,68.1,44.8,1,95.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,95.5,9.246834,1.386294,4.200132,1
-19,3,25,1,1,330006,0,10370.67,44.86242,0,12,1,76.29049,16.97874,24.79757,37.95547,0,118.0668,0,0,5,5,1,4,28.7,10.3,1,50,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,50,9.246834,1.386294,4.771251,1
-19,3,25,1,2,330006,0,10370.67,45.86242,0,12,1,14.45221,.9324009,20.51282,0,0,35.89743,0,0,0,1,1,4,28.7,10.3,1,50,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,50,9.246834,1.386294,3.580666,1
-19,3,25,1,3,330006,0,10370.67,46.86242,0,12,1,50.19239,6.797777,3.787944,0,0,60.77811,0,0,0,2,0,4,28.7,10.3,1,50,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,50,9.246834,1.386294,4.10723,1
-19,3,25,1,1,330007,0,10370.67,17.50034,1,8,1,127.7328,3.785425,27.83401,182.1862,0,159.3522,0,0,12,4,1,4,65.4,10.3,0,71.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.246834,1.386294,5.071117,1
-19,3,25,1,2,330007,0,10370.67,18.50034,1,8,1,120.6993,18.50816,0,0,0,139.2075,0,0,0,9,0,4,65.4,10.3,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.246834,1.386294,4.935966,1
-19,3,25,1,3,330007,0,10370.67,19.50034,1,8,1,33.34758,2.436939,20.09406,0,0,55.87858,0,0,0,2,1,4,65.4,10.3,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.246834,1.386294,4.023181,1
-19,3,25,1,1,330008,0,4975.367,20.46817,0,12,1,58.80567,1.821862,0,0,0,60.62753,0,0,0,4,0,1,71.8,0,0,75,432.6,432.6,0,0,0,6.069814,0,3.258096,7.456108,1,0,0,75,8.512455,0,4.104749,1
-19,3,25,1,2,330008,0,4975.367,21.46817,0,12,1,84.80186,0,0,0,0,84.80186,0,0,0,5,0,1,71.8,0,0,75,432.6,432.6,0,0,0,6.069814,0,3.258096,7.456108,1,0,0,75,8.512455,0,4.440318,1
-19,3,25,1,3,330008,0,4975.367,22.46817,0,12,1,63.46729,2.693459,0,0,755.4895,821.6503,1,0,0,3,0,1,71.8,0,0,75,432.6,432.6,0,0,0,6.069814,0,3.258096,7.456108,1,0,0,75,8.512455,0,6.711315,1
-19,3,25,1,1,330009,0,7995.308,19.17591,1,12,1,33.40081,13.1579,0,0,886.3917,932.9504,2,0,0,0,0,1,68.6,3.4,0,67,390,390,0,0,0,5.966147,0,3.258096,7.352441,1,0,0,67,8.986735,0,6.838352,1
-19,3,25,1,2,330009,0,7995.308,20.17591,1,12,1,11.18881,14.10256,0,0,0,25.29138,0,0,0,1,0,2,68.6,3.4,0,67,390,390,0,0,.6931472,5.966147,0,3.258096,7.352441,1,0,0,67,8.986735,.6931472,3.230464,1
-19,3,25,1,3,330009,0,7995.308,21.17591,1,12,1,26.93459,8.550663,0,0,648.0462,683.5314,1,0,0,1,0,2,68.6,3.4,0,67,390,390,0,0,.6931472,5.966147,0,3.258096,7.352441,1,0,0,67,8.986735,.6931472,6.527273,1
-13,3,0,1,1,330012,0,7196.79,32.21903,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,6.9,0,96.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.6,8.881529,1.609438,,0
-13,3,0,1,1,330013,0,7196.79,11.01985,0,8,1,10.12146,0,25.80972,0,0,35.93118,0,0,0,0,1,5,70,9.967326,1,37,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,37,8.881529,1.609438,3.581605,1
-13,3,0,1,1,330014,0,7196.79,28.98836,1,8,1,41.49797,9.868421,0,0,456.9585,508.3249,1,0,0,5,0,5,57.4,34.5,1,38.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,38.6,8.881529,1.609438,6.231121,1
-13,3,0,1,1,330015,0,7196.79,8.145106,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,77.8,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.881529,1.609438,,0
-13,3,0,1,1,330016,0,7196.79,12.38604,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,9.967326,0,63,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63,8.881529,1.609438,,0
-13,3,0,1,1,330021,0,6943.695,42.27515,1,16,1,87.79858,34.46356,0,53.13765,0,122.2621,0,0,5,6,0,3,67,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.845734,1.098612,4.806168,1
-13,3,0,1,2,330021,0,6943.695,43.27515,1,16,1,311.4219,17.99534,0,0,0,329.4172,0,0,0,7,0,3,67,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.845734,1.098612,5.797325,1
-13,3,0,1,3,330021,0,6943.695,44.27515,1,16,1,219.5383,14.36511,31.63745,0,0,265.5408,0,0,0,1,0,3,67,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,78.4,8.845734,1.098612,5.581769,1
-13,3,0,1,1,330022,0,6943.695,11.71253,1,16,1,26.82186,1.998988,0,0,0,28.82085,0,0,0,3,0,3,83.3,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,3.361099,1
-13,3,0,1,2,330022,0,6943.695,12.71253,1,16,1,41.02564,6.247086,0,0,0,47.27273,0,0,0,3,0,3,83.3,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,3.855934,1
-13,3,0,1,3,330022,0,6943.695,13.71253,1,16,1,55.96409,2.778965,0,0,0,58.74305,0,0,0,5,0,3,83.3,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,4.073173,1
-13,3,0,1,1,330049,0,4754.839,8.167009,0,12,1,27.37487,3.447395,0,0,0,30.82227,0,0,0,2,0,3,73.3,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,3.428237,1
-13,3,0,1,2,330049,0,4754.839,9.167009,0,12,1,24.84763,0,0,0,0,24.84763,0,0,0,2,0,3,73.3,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,3.212763,1
-13,3,0,1,3,330049,0,4754.839,10.16701,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,73.3,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,,0
-13,3,0,1,1,330050,0,4754.839,5.913758,0,12,1,6.639428,5.132789,0,0,0,11.77222,0,0,0,1,0,3,81.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,2.465742,1
-13,3,0,1,2,330050,0,4754.839,6.913758,0,12,1,20.62822,0,0,0,0,20.62822,0,0,0,2,0,3,81.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,3.02666,1
-13,3,0,1,3,330050,0,4754.839,7.913758,0,12,1,4.729149,0,0,0,0,4.729149,0,0,0,1,0,3,81.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,96.3,8.467129,1.098612,1.553745,1
-13,3,0,1,1,330051,0,4754.839,29.27036,1,12,1,56.43514,20.37794,0,0,0,76.81307,0,0,0,7,0,3,39.4,13.8,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.467129,1.098612,4.341375,1
-13,3,0,1,2,330051,0,4754.839,30.27036,1,12,1,49.69527,5.508673,0,0,0,55.20394,0,0,0,4,0,3,39.4,13.8,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.467129,1.098612,4.011034,1
-13,3,0,1,3,330051,0,4754.839,31.27036,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,39.4,13.8,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.467129,1.098612,,0
-7,3,25,1,1,330053,0,6499.707,60.59138,0,12,1,17.71255,1.275304,39.47368,0,0,58.46154,0,0,0,1,1,2,96.8,3.4,1,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,8.779666,.6931472,4.068369,1
-7,3,25,1,2,330053,0,6499.707,61.59138,0,12,1,11.65501,0,0,0,0,11.65501,0,0,0,2,0,2,96.8,3.4,1,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,8.779666,.6931472,2.455736,1
-7,3,25,1,3,330053,0,6499.707,62.59138,0,12,1,20.52159,1.620351,0,0,0,22.14194,0,0,0,3,0,2,96.8,3.4,1,69.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,69.3,8.779666,.6931472,3.097474,1
-7,3,25,1,1,330054,0,6499.707,59.11294,1,12,1,171.6245,215.2783,43.01619,0,0,429.919,0,0,0,12,1,2,65.4,20.7,1,27.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,27.3,8.779666,.6931472,6.063597,1
-7,3,25,1,2,330054,0,6499.707,60.11294,1,12,1,71.32867,193.3194,0,0,0,264.648,0,0,0,5,2,2,65.4,20.7,1,27.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,27.3,8.779666,.6931472,5.578401,1
-7,3,25,1,3,330054,0,6499.707,61.11294,1,12,1,186.49,107.4177,83.04831,0,7576.323,7953.279,2,0,0,8,7,2,65.4,20.7,1,27.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,27.3,8.779666,.6931472,8.981339,1
-11,3,0,0,1,330103,0,8704.985,45.88091,0,10,1,26.31579,0,22.26721,0,0,48.583,0,0,0,4,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,3.883274,1
-11,3,0,0,2,330103,0,8704.985,46.88091,0,10,1,68.06527,136.62,18.64802,228.4382,0,223.3333,0,0,9,3,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,5.408665,1
-11,3,0,0,3,330103,0,8704.985,47.88091,0,10,1,68.14878,153.5784,0,136.8106,3858.358,4080.085,1,0,6,0,0,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,8.313873,1
-11,3,0,0,4,330103,0,8704.985,48.88091,0,10,1,99.8847,105.4304,29.97694,922.3674,9346.172,9581.464,2,0,40,5,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,9.167585,1
-11,3,0,0,5,330103,0,8704.985,49.88091,0,10,1,46.78609,75.18792,0,770.987,0,121.974,0,0,37,2,0,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.06626,9.071766,.6931472,4.803808,1
-11,3,0,0,1,330104,0,8704.985,44.13689,1,9,1,34.0587,8.729757,31.37652,0,0,74.16498,0,0,0,3,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,4.306292,1
-11,3,0,0,2,330104,0,8704.985,45.13689,1,9,1,26.10723,46.34033,41.95804,48.95105,0,114.4056,0,0,2,2,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,4.73975,1
-11,3,0,0,3,330104,0,8704.985,46.13689,1,9,1,28.47371,18.08893,51.30397,0,0,97.86661,0,0,0,1,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,4.583605,1
-11,3,0,0,4,330104,0,8704.985,47.13689,1,9,1,49.92314,13.72021,0,484.2429,0,63.64335,0,0,21,2,0,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,4.153295,1
-11,3,0,0,5,330104,0,8704.985,48.13689,1,9,1,28.5915,18.78469,29.85599,979.9789,0,77.23218,0,0,46,1,1,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.06626,9.071766,.6931472,4.346816,1
-11,3,0,0,1,330106,0,8704.985,15.88775,1,9,1,253.9575,24.3168,37.55567,0,0,315.83,0,0,0,3,1,3,74.46748,9.967326,.1572505,,0,0,1,1,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,5.755204,1
-11,3,0,0,2,330106,0,8704.985,16.88775,1,9,1,9.324009,7.132867,20.49883,0,0,36.95571,0,0,0,0,1,3,74.46748,9.967326,.1572505,,0,0,1,1,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,3.60972,1
-11,3,0,0,3,330106,0,8704.985,17.88775,1,9,1,22.06071,8.208636,22.65926,0,0,52.9286,0,0,0,1,1,3,74.46748,9.967326,.1572505,,0,0,1,1,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,3.968944,1
-11,3,0,0,4,330106,0,8704.985,18.88775,1,9,1,21.13759,1.306687,18.44735,0,0,40.89162,0,0,0,2,1,3,74.46748,9.967326,.1572505,,0,0,0,0,1.098612,0,0,0,0,0,0,0,72.06626,9.071766,1.098612,3.710925,1
-18,3,25,1,1,330173,0,6519.062,42.39014,0,7,1,501.999,82.31275,0,0,0,584.3118,0,0,0,6,5,6,58.5,17.2,1,36.4,660,660,0,0,1.791759,6.49224,0,3.258096,7.878534,0,1,0,36.4,8.78264,1.791759,6.370435,1
-18,3,25,1,2,330173,0,6519.062,43.39014,0,7,1,95.66434,77.69231,37.29604,0,0,210.6527,0,0,0,6,1,6,58.5,17.2,1,36.4,660,660,0,0,1.791759,6.49224,0,3.258096,7.878534,0,1,0,36.4,8.78264,1.791759,5.350211,1
-18,3,25,1,3,330173,0,6519.062,44.39014,0,7,1,177.811,77.53313,0,0,0,255.3442,0,0,0,4,0,7,58.5,17.2,1,36.4,660,660,0,0,1.94591,6.49224,0,3.258096,7.878534,0,1,0,36.4,8.78264,1.94591,5.542612,1
-18,3,25,1,4,330173,0,6519.062,45.39014,0,7,1,43.04381,61.52959,36.51038,0,0,141.0838,0,0,0,1,1,8,58.5,17.2,1,36.4,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,0,1,0,36.4,8.78264,2.079442,4.949354,1
-18,3,25,1,5,330173,0,6519.062,46.39014,0,7,1,273.797,115.5954,34.21145,0,571.7492,995.353,1,0,0,8,1,8,58.5,17.2,1,36.4,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,0,1,0,36.4,8.78264,2.079442,6.903098,1
-18,3,25,1,1,330174,0,6519.062,14.65298,0,7,1,202.9352,14.95445,0,0,1097.166,1315.056,2,0,0,6,3,6,68.6,13.8,0,55.7,660,660,1,0,1.791759,6.49224,0,3.258096,7.878534,1,0,0,55.7,8.78264,1.791759,7.181634,1
-18,3,25,1,2,330174,0,6519.062,15.65298,0,7,1,54.73193,1.398601,0,0,0,56.13054,0,0,0,2,1,6,68.6,13.8,0,55.7,660,660,1,0,1.791759,6.49224,0,3.258096,7.878534,1,0,0,55.7,8.78264,1.791759,4.02768,1
-18,3,25,1,3,330174,0,6519.062,16.65298,0,7,1,98.76015,4.061565,0,0,0,102.8217,0,0,0,4,0,7,68.6,13.8,0,55.7,660,660,1,0,1.94591,6.49224,0,3.258096,7.878534,1,0,0,55.7,8.78264,1.94591,4.632997,1
-18,3,25,1,4,330174,0,6519.062,17.65298,0,7,1,182.9746,8.551114,0,0,0,191.5258,0,0,0,5,0,8,68.6,13.8,0,55.7,660,660,1,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,55.7,8.78264,2.079442,5.255023,1
-18,3,25,1,5,330174,0,6519.062,18.65298,0,7,1,171.0924,17.22866,0,0,0,188.321,0,0,0,8,1,8,68.6,13.8,0,55.7,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,55.7,8.78264,2.079442,5.238148,1
-18,3,25,1,1,330175,0,6519.062,11.56194,1,7,1,202.0749,12.42409,28.34008,0,0,242.8391,0,0,0,5,4,6,70,9.967326,1,40.7,660,660,1,1,1.791759,6.49224,0,3.258096,7.878534,1,0,0,40.7,8.78264,1.791759,5.492399,1
-18,3,25,1,2,330175,0,6519.062,12.56194,1,7,1,337.4359,7.575758,1.864802,0,872.2844,1219.161,2,0,0,2,10,6,70,9.967326,1,40.7,660,660,1,1,1.791759,6.49224,0,3.258096,7.878534,1,0,0,40.7,8.78264,1.791759,7.105918,1
-18,3,25,1,3,330175,0,6519.062,13.56194,1,7,1,186.1052,14.42924,28.21719,0,0,228.7516,0,0,0,7,1,7,70,9.967326,1,40.7,660,660,1,1,1.94591,6.49224,0,3.258096,7.878534,1,0,0,40.7,8.78264,1.94591,5.432637,1
-18,3,25,1,4,330175,0,6519.062,14.56194,1,7,1,194.2352,6.072252,0,0,438.0323,638.3397,1,0,0,6,0,8,70,9.967326,1,40.7,660,660,1,1,2.079442,6.49224,0,3.258096,7.878534,1,0,0,40.7,8.78264,2.079442,6.45887,1
-18,3,25,1,5,330175,0,6519.062,15.56194,1,7,1,157.745,6.181946,25.28978,0,507.4359,696.6526,1,0,0,6,6,8,70,9.967326,1,40.7,660,660,1,1,2.079442,6.49224,0,3.258096,7.878534,1,0,0,40.7,8.78264,2.079442,6.546287,1
-18,3,25,1,1,330176,0,6519.062,12.85695,1,7,1,49.59514,8.274291,0,0,0,57.86943,0,0,0,6,0,6,66.7,9.967326,0,63,660,660,1,1,1.791759,6.49224,0,3.258096,7.878534,1,0,0,63,8.78264,1.791759,4.058189,1
-18,3,25,1,2,330176,0,6519.062,13.85695,1,7,1,99.7669,12.23776,52.21445,0,0,164.2191,0,0,0,5,4,6,66.7,9.967326,0,63,660,660,1,1,1.791759,6.49224,0,3.258096,7.878534,1,0,0,63,8.78264,1.791759,5.101202,1
-18,3,25,1,3,330176,0,6519.062,14.85695,1,7,1,94.48483,16.41727,0,0,0,110.9021,0,0,0,8,0,7,66.7,9.967326,0,63,660,660,1,1,1.94591,6.49224,0,3.258096,7.878534,1,0,0,63,8.78264,1.94591,4.708648,1
-18,3,25,1,4,330176,0,6519.062,15.85695,1,7,1,132.1676,25.1153,0,76.86395,0,157.2829,0,0,5,4,0,8,66.7,9.967326,0,63,660,660,1,1,2.079442,6.49224,0,3.258096,7.878534,1,0,0,63,8.78264,2.079442,5.058046,1
-18,3,25,1,5,330176,0,6519.062,16.85695,1,7,1,35.65156,11.0994,21.07482,0,0,67.82578,0,0,0,2,1,8,66.7,9.967326,0,63,660,660,1,1,2.079442,6.49224,0,3.258096,7.878534,1,0,0,63,8.78264,2.079442,4.216942,1
-18,3,25,1,1,330177,0,6519.062,37.55784,1,7,1,329.2004,19.86336,31.88259,0,3663.669,4044.615,2,0,0,16,1,6,59.6,13.8,1,54.5,660,660,0,0,1.791759,6.49224,0,3.258096,7.878534,1,0,0,54.5,8.78264,1.791759,8.305141,1
-18,3,25,1,2,330177,0,6519.062,38.55784,1,7,1,148.6247,22.21445,6.993007,0,609.3566,787.1888,1,0,0,2,4,6,59.6,13.8,1,54.5,660,660,0,0,1.791759,6.49224,0,3.258096,7.878534,1,0,0,54.5,8.78264,1.791759,6.668468,1
-18,3,25,1,3,330177,0,6519.062,39.55784,1,7,1,174.7328,9.683625,0,0,944.8782,1129.295,1,0,0,12,1,7,59.6,13.8,1,54.5,660,660,0,0,1.94591,6.49224,0,3.258096,7.878534,1,0,0,54.5,8.78264,1.94591,7.029348,1
-18,3,25,1,4,330177,0,6519.062,40.55784,1,7,1,241.6603,35.10761,0,0,0,276.7679,0,0,0,5,0,8,59.6,13.8,1,54.5,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,54.5,8.78264,2.079442,5.623179,1
-18,3,25,1,5,330177,0,6519.062,41.55784,1,7,1,542.3604,105.7534,36.17843,0,388.3597,1072.652,1,0,0,14,14,8,59.6,13.8,1,54.5,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,54.5,8.78264,2.079442,6.977889,1
-18,3,25,1,1,330178,0,6519.062,17.26215,1,7,1,174.8482,66.85223,15.18219,0,0,256.8826,0,0,0,4,1,6,62.8,20.7,0,42,660,660,1,1,1.791759,6.49224,0,3.258096,7.878534,1,0,0,42,8.78264,1.791759,5.548619,1
-18,3,25,1,2,330178,0,6519.062,18.26215,1,7,1,160.6527,100.5594,15.38461,0,0,276.5967,0,0,0,4,2,6,62.8,20.7,0,42,660,660,0,0,1.791759,6.49224,0,3.258096,7.878534,1,0,0,42,8.78264,1.791759,5.622561,1
-18,3,25,1,3,330178,0,6519.062,19.26215,1,7,1,328.773,37.23814,0,0,1597.525,1963.536,1,0,0,2,6,7,62.8,20.7,0,42,660,660,0,0,1.94591,6.49224,0,3.258096,7.878534,1,0,0,42,8.78264,1.94591,7.582502,1
-18,3,25,1,4,330178,0,6519.062,20.26215,1,7,1,353.3436,45.36895,21.52191,0,0,420.2344,0,0,0,4,5,8,62.8,20.7,0,42,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,42,8.78264,2.079442,6.040813,1
-18,3,25,1,5,330178,0,6519.062,21.26215,1,7,1,167.2287,62.11802,0,0,0,229.3467,0,0,0,5,0,8,62.8,20.7,0,42,660,660,0,0,2.079442,6.49224,0,3.258096,7.878534,1,0,0,42,8.78264,2.079442,5.435235,1
-18,3,25,1,1,330179,0,4618.769,19.19233,0,12,1,10.12146,9.109312,26.31579,0,0,45.54656,0,0,0,0,1,1,67,10.3,0,71.4,300,300,0,0,0,5.703783,0,3.258096,7.090077,1,0,0,71.4,8.4381,0,3.818735,1
-18,3,25,1,2,330179,0,4618.769,20.19233,0,12,1,57.80886,8.065269,5.361305,0,0,71.23543,0,0,0,2,0,1,67,10.3,0,71.4,300,300,0,0,0,5.703783,0,3.258096,7.090077,1,0,0,71.4,8.4381,0,4.26599,1
-18,3,25,1,3,330179,0,4618.769,21.19233,0,12,1,8.12313,4.908081,0,0,0,13.03121,0,0,0,1,0,1,67,10.3,0,71.4,300,300,0,0,0,5.703783,0,3.258096,7.090077,1,0,0,71.4,8.4381,0,2.567347,1
-18,3,25,1,4,330179,0,4618.769,22.19233,0,12,1,17.29439,19.36971,21.13759,0,0,57.80169,0,0,0,1,1,1,67,10.3,0,71.4,300,300,0,0,0,5.703783,0,3.258096,7.090077,1,0,0,71.4,8.4381,0,4.057018,1
-18,3,25,1,5,330179,0,4618.769,23.19233,0,12,1,26.94064,1.053741,14.75237,0,0,42.74675,0,0,0,1,1,1,67,10.3,0,71.4,300,300,0,0,0,5.703783,0,3.258096,7.090077,1,0,0,71.4,8.4381,0,3.755293,1
-13,3,0,1,1,330180,0,8399.413,13.63176,0,14,1,70.34413,1.67004,0,0,0,72.01417,0,0,0,3,0,6,76.7,9.967326,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.036036,1.791759,4.276863,1
-13,3,0,1,2,330180,0,8399.413,14.63176,0,14,1,141.4918,0,0,0,0,141.4918,0,0,0,6,0,6,76.7,9.967326,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.036036,1.791759,4.952242,1
-13,3,0,1,3,330180,0,8399.413,15.63176,0,14,1,1.282599,0,0,0,0,1.282599,0,0,0,1,0,5,76.7,9.967326,0,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.036036,1.609438,.2488888,1
-13,3,0,1,1,330181,0,8399.413,16.31485,0,14,1,17.71255,0,0,0,0,17.71255,0,0,0,2,0,6,82.4,0,0,75,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,75,9.036036,1.791759,2.874274,1
-13,3,0,1,2,330181,0,8399.413,17.31485,0,14,1,27.45921,0,26.10723,0,0,53.56643,0,0,0,1,0,6,82.4,0,0,75,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,75,9.036036,1.791759,3.980923,1
-13,3,0,1,3,330181,0,8399.413,18.31485,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,0,0,75,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,75,9.036036,1.609438,,0
-13,3,0,1,1,330182,0,8399.413,49.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,31,1,45.5,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,45.5,9.036036,1.791759,,0
-13,3,0,1,2,330182,0,8399.413,50.71937,0,12,1,11.18881,0,0,0,1036.69,1047.879,1,0,0,0,0,6,79.8,31,1,45.5,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,45.5,9.036036,1.791759,6.954523,1
-13,3,0,1,3,330182,0,8399.413,51.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,31,1,45.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,45.5,9.036036,1.609438,,0
-13,3,0,1,1,330183,0,8399.413,49.39083,1,14,1,169.0283,3.922065,0,0,0,172.9504,0,0,0,4,0,6,80.3,24.1,1,67,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,67,9.036036,1.791759,5.153005,1
-13,3,0,1,2,330183,0,8399.413,50.39083,1,14,.2876712,1072,99.25408,0,0,3138.601,4309.855,3,0,0,10,0,6,80.3,24.1,1,67,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,67,9.036036,1.791759,8.36866,1
-13,3,0,1,1,330184,0,8399.413,11.30459,0,14,1,27.32794,0,0,0,0,27.32794,0,0,0,1,0,6,81.7,9.967326,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.036036,1.791759,3.307909,1
-13,3,0,1,2,330184,0,8399.413,12.30459,0,14,1,16.31702,9.65035,0,0,0,25.96737,0,0,0,2,0,6,81.7,9.967326,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.036036,1.791759,3.25684,1
-13,3,0,1,3,330184,0,8399.413,13.30459,0,14,1,8.764429,0,0,0,0,8.764429,0,0,0,1,0,5,81.7,9.967326,0,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.036036,1.609438,2.170701,1
-13,3,0,1,1,330185,0,8399.413,17.65914,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,82.4,3.4,0,53.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,53.6,9.036036,1.791759,,0
-13,3,0,1,2,330185,0,8399.413,18.65914,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,82.4,3.4,0,53.6,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,53.6,9.036036,1.791759,,0
-13,3,0,1,3,330185,0,8399.413,19.65914,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,3.4,0,53.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,53.6,9.036036,1.609438,,0
-11,3,0,1,1,330186,0,5353.666,15.01985,1,12,1,16.34321,2.451481,39.32584,0,0,58.12053,0,0,0,1,1,2,71.8,3.4,0,64.3,0,72,1,1,.6931472,4.276666,0,0,0,0,0,0,64.3,8.585724,.6931472,4.062519,1
-11,3,0,1,2,330186,0,5353.666,16.01985,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.8,3.4,0,64.3,0,72,1,1,.6931472,4.276666,0,0,0,0,0,0,64.3,8.585724,.6931472,,0
-11,3,0,1,3,330186,0,5353.666,17.01985,1,12,1,9.88822,0,34.39381,0,0,44.28203,0,0,0,0,1,2,71.8,3.4,0,64.3,0,72,1,1,.6931472,4.276666,0,0,0,0,0,0,64.3,8.585724,.6931472,3.790579,1
-11,3,0,1,1,330187,0,5353.666,57.63997,1,12,1,335.3932,0,115.9346,0,0,451.3279,0,0,0,12,3,2,60.1,20.7,1,56.8,0,72,0,0,.6931472,4.276666,0,0,0,0,0,0,56.8,8.585724,.6931472,6.112194,1
-11,3,0,1,2,330187,0,5353.666,58.63997,1,12,1,105.0164,0,79.93436,0,0,184.9508,0,0,0,4,1,2,60.1,20.7,1,56.8,0,72,0,0,.6931472,4.276666,0,0,0,0,0,0,56.8,8.585724,.6931472,5.22009,1
-11,3,0,1,3,330187,0,5353.666,59.63997,1,12,1,58.46947,28.11694,69.00258,0,0,155.589,0,0,0,5,1,2,60.1,20.7,1,56.8,0,72,0,0,.6931472,4.276666,0,0,0,0,0,0,56.8,8.585724,.6931472,5.047218,1
-11,3,0,1,1,330226,0,12014.66,59.53183,0,10,1,28.08989,5.474975,0,0,0,33.56486,0,0,0,1,0,2,88.3,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.9,9.393967,.6931472,3.51348,1
-11,3,0,1,2,330226,0,12014.66,60.53183,0,10,1,85.79465,16.0572,46.4135,0,0,148.2654,0,0,0,5,1,2,88.3,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.9,9.393967,.6931472,4.999003,1
-11,3,0,1,3,330226,0,12014.66,61.53183,0,10,1,38.69304,54.39381,0,0,0,93.08685,0,0,0,3,0,2,88.3,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.9,9.393967,.6931472,4.533533,1
-11,3,0,1,4,330226,0,12014.66,62.53183,0,10,1,59.71307,67.96432,0,0,0,127.6774,0,0,0,4,0,2,88.3,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.9,9.393967,.6931472,4.849507,1
-11,3,0,1,5,330226,0,12014.66,63.53183,0,10,1,37.50885,57.03822,35.3857,0,0,129.9328,0,0,0,4,1,2,88.3,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,1,0,0,65.9,9.393967,.6931472,4.867017,1
-11,3,0,1,1,330227,0,12014.66,56.17522,1,8,1,12.76813,11.82329,0,0,380.7916,405.3831,1,0,0,1,0,2,84,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,72.7,9.393967,.6931472,6.004832,1
-11,3,0,1,2,330227,0,12014.66,57.17522,1,8,1,10.78294,14.85701,0,0,0,25.63994,0,0,0,1,0,2,84,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,72.7,9.393967,.6931472,3.244151,1
-11,3,0,1,3,330227,0,12014.66,58.17522,1,8,1,20.89424,13.85641,0,0,0,34.75064,0,0,0,1,1,2,84,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,72.7,9.393967,.6931472,3.548198,1
-11,3,0,1,4,330227,0,12014.66,59.17522,1,8,1,25.94029,0,0,0,0,25.94029,0,0,0,2,0,2,84,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,72.7,9.393967,.6931472,3.255797,1
-11,3,0,1,5,330227,0,12014.66,60.17522,1,8,1,121.4437,19.5966,13.95966,0,0,155,0,0,0,6,0,2,84,24.1,0,72.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,72.7,9.393967,.6931472,5.043425,1
-16,3,95,1,1,330232,0,222.8739,57.73854,1,7,1,16.44737,6.629555,0,0,0,23.07692,0,0,0,1,0,1,60.1,13.8,0,72.7,360,311.64,0,0,0,5.741848,0,4.564348,5.937397,0,0,0,72.7,5.411083,0,3.138833,1
-16,3,95,1,2,330232,0,222.8739,58.73854,1,7,1,19.58042,11.95804,0,0,0,31.53846,0,0,0,2,0,1,60.1,13.8,0,72.7,360,311.64,0,0,0,5.741848,0,4.564348,5.937397,0,0,0,72.7,5.411083,0,3.451208,1
-16,3,95,1,3,330232,0,222.8739,59.73854,1,7,1,185.2501,16.24626,0,0,1180.218,1381.714,1,0,0,5,0,1,60.1,13.8,0,72.7,360,311.64,0,0,0,5.741848,0,4.564348,5.937397,0,0,0,72.7,5.411083,0,7.231081,1
-16,3,95,1,1,330233,0,7347.801,31.24983,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,10.3,0,65.5,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,65.5,8.902292,0,,0
-16,3,95,1,2,330233,0,7347.801,32.24983,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,10.3,0,65.5,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,65.5,8.902292,0,,0
-16,3,95,1,3,330233,0,7347.801,33.24983,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,10.3,0,65.5,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,65.5,8.902292,0,,0
-13,3,0,1,1,330237,0,1754.839,54.10815,1,14,1,197.7017,37.5383,102.145,0,1128.943,1466.328,1,0,0,14,1,1,66.6,24.1,1,52.3,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,52.3,7.470702,0,7.290516,1
-13,3,0,1,2,330237,0,1754.839,55.10815,1,14,1,114.8617,31.15331,70.32349,0,1109.489,1325.828,1,0,0,13,0,1,66.6,24.1,1,52.3,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,52.3,7.470702,0,7.189792,1
-13,3,0,1,3,330237,0,1754.839,56.10815,1,14,1,51.59071,65.51591,0,0,411.7369,528.8435,1,0,0,7,0,1,66.6,24.1,1,52.3,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,52.3,7.470702,0,6.270692,1
-13,3,0,1,1,330238,0,6097.947,61.47844,0,12,1,45.45454,15.19408,25.53626,0,0,86.18488,0,0,0,4,1,1,59.6,24.1,0,46.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,46.6,8.715872,0,4.456495,1
-13,3,0,1,2,330238,0,6097.947,62.47844,0,12,1,110.5485,104.5429,0,0,1079.048,1294.14,1,0,0,11,0,1,59.6,24.1,0,46.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,46.6,8.715872,0,7.165601,1
-13,3,0,1,3,330238,0,6097.947,63.47844,0,12,1,217.6268,103.7446,0,0,0,321.3715,0,0,0,11,1,1,59.6,24.1,0,46.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,46.6,8.715872,0,5.772598,1
-17,3,25,1,1,330293,0,5886.804,16.53936,1,12,1,8.097166,0,0,0,0,8.097166,0,0,0,0,0,6,55.9,3.4,0,39.8,454.8,454.8,1,1,1.791759,6.119858,0,3.258096,7.506152,1,0,0,39.8,8.680638,1.791759,2.091514,1
-17,3,25,1,2,330293,0,5886.804,17.53936,1,12,1,7.459208,0,0,0,0,7.459208,0,0,0,1,0,6,55.9,3.4,0,39.8,454.8,454.8,1,1,1.791759,6.119858,0,3.258096,7.506152,1,0,0,39.8,8.680638,1.791759,2.009449,1
-17,3,25,1,3,330293,0,5886.804,18.53936,1,12,1,0,0,0,0,245.1048,245.1048,1,0,0,0,0,6,55.9,3.4,0,39.8,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,1,0,0,39.8,8.680638,1.791759,5.501686,1
-17,3,25,1,1,330294,0,5886.804,14.07803,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,9.967326,0,88.9,454.8,454.8,1,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,88.9,8.680638,1.791759,,0
-17,3,25,1,2,330294,0,5886.804,15.07803,0,12,1,6.060606,0,0,0,0,6.060606,0,0,0,1,0,6,83.3,9.967326,0,88.9,454.8,454.8,1,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,88.9,8.680638,1.791759,1.80181,1
-17,3,25,1,3,330294,0,5886.804,16.07803,0,12,1,38.94827,8.294143,.8721676,0,0,48.11458,0,0,0,2,0,6,83.3,9.967326,0,88.9,454.8,454.8,1,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,88.9,8.680638,1.791759,3.873585,1
-17,3,25,1,1,330295,0,5886.804,46.11909,1,12,1,14.17004,0,15.18219,0,0,29.35223,0,0,0,0,2,6,44.7,3.4,0,85.2,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,85.2,8.680638,1.791759,3.379368,1
-17,3,25,1,2,330295,0,5886.804,47.11909,1,12,1,13.51981,0,0,0,0,13.51981,0,0,0,0,0,6,44.7,3.4,0,85.2,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,85.2,8.680638,1.791759,2.604156,1
-17,3,25,1,3,330295,0,5886.804,48.11909,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,44.7,3.4,0,85.2,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,85.2,8.680638,1.791759,,0
-17,3,25,1,1,330296,0,5886.804,12.32307,1,12,1,89.44838,1.745951,0,0,0,91.19433,0,0,0,2,0,6,78.3,9.967326,0,92.6,454.8,454.8,1,1,1.791759,6.119858,0,3.258096,7.506152,0,0,0,92.6,8.680638,1.791759,4.512993,1
-17,3,25,1,2,330296,0,5886.804,13.32307,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,9.967326,0,92.6,454.8,454.8,1,1,1.791759,6.119858,0,3.258096,7.506152,0,0,0,92.6,8.680638,1.791759,,0
-17,3,25,1,3,330296,0,5886.804,14.32307,1,12,1,5.985464,9.320222,0,0,0,15.30569,0,0,0,1,0,6,78.3,9.967326,0,92.6,454.8,454.8,1,1,1.791759,6.119858,0,3.258096,7.506152,0,0,0,92.6,8.680638,1.791759,2.728224,1
-17,3,25,1,1,330297,0,5886.804,48.62971,0,12,1,27.83401,3.26417,1.133603,0,0,32.23178,0,0,0,2,0,6,78.2,6.9,0,80.7,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,80.7,8.680638,1.791759,3.472953,1
-17,3,25,1,2,330297,0,5886.804,49.62971,0,12,1,25.36131,0,0,0,0,25.36131,0,0,0,1,0,6,78.2,6.9,0,80.7,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,80.7,8.680638,1.791759,3.233225,1
-17,3,25,1,3,330297,0,5886.804,50.62971,0,12,1,188.5421,3.454468,0,0,195.0406,387.0372,1,0,0,5,0,6,78.2,6.9,0,80.7,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,80.7,8.680638,1.791759,5.958521,1
-17,3,25,1,1,330298,0,5886.804,18.59822,1,11,1,19.23077,0,0,0,0,19.23077,0,0,0,1,1,6,79.3,3.4,0,96.4,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,96.4,8.680638,1.791759,2.956511,1
-17,3,25,1,2,330298,0,5886.804,19.59822,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,3.4,0,96.4,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,96.4,8.680638,1.791759,,0
-17,3,25,1,3,330298,0,5886.804,20.59822,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,3.4,0,96.4,454.8,454.8,0,0,1.791759,6.119858,0,3.258096,7.506152,0,0,0,96.4,8.680638,1.791759,,0
-17,3,25,1,1,330299,0,3338.417,20.37509,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,82.4,6.9,0,71.6,244.15,244.15,0,0,0,5.497783,0,3.258096,6.884077,0,0,0,71.6,8.113551,0,,0
-17,3,25,1,2,330299,0,3338.417,21.37509,0,12,1,2.812939,0,0,0,0,2.812939,0,0,0,0,0,1,82.4,6.9,0,71.6,244.15,244.15,0,0,0,5.497783,0,3.258096,6.884077,0,0,0,71.6,8.113551,0,1.03423,1
-17,3,25,1,3,330299,0,3338.417,22.37509,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,82.4,6.9,0,71.6,244.15,244.15,0,0,0,5.497783,0,3.258096,6.884077,0,0,0,71.6,8.113551,0,,0
-13,3,0,0,1,330358,0,1210.557,43.07187,1,6,.8219178,68.14272,0,0,0,1281.184,1349.327,1,0,0,1,0,1,58.5,3.4,1,60.2,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,1,0,0,60.2,7.099662,0,7.207361,1
-13,3,0,0,1,330380,0,14150.73,44.60506,1,12,1,74.20837,0,0,0,0,74.20837,0,0,0,1,0,3,80.3,13.8,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.557592,1.098612,4.306877,1
-13,3,0,0,2,330380,0,14150.73,45.60506,1,12,1,96.57759,0,25.31646,0,0,121.894,0,0,0,1,1,3,80.3,13.8,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.557592,1.098612,4.803152,1
-13,3,0,0,3,330380,0,14150.73,46.60506,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,13.8,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.557592,1.098612,,0
-13,3,0,0,1,330381,0,14150.73,17.66461,0,12,1,0,0,30.13279,0,0,30.13279,0,0,0,0,0,3,62.2,6.9,0,65.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.557592,1.098612,3.405614,1
-13,3,0,0,2,330381,0,14150.73,18.66461,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,62.2,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.557592,1.098612,,0
-13,3,0,0,3,330381,0,14150.73,19.66461,0,12,1,23.98968,0,24.93551,0,0,48.92519,0,0,0,1,1,3,62.2,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.557592,1.098612,3.890292,1
-13,3,0,0,1,330382,0,14150.73,44.59685,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,3.4,1,53.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.557592,1.098612,,0
-13,3,0,0,2,330382,0,14150.73,45.59685,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,3.4,1,53.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.557592,1.098612,,0
-13,3,0,0,3,330382,0,14150.73,46.59685,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,3.4,1,53.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.557592,1.098612,,0
-13,3,0,1,1,330394,0,5472.727,19.75086,1,12,1,18.47166,4.09919,0,0,759.2409,781.8118,1,0,0,0,0,3,51.6,3.4,0,85.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.607715,1.098612,6.661614,1
-13,3,0,1,2,330394,0,5472.727,20.75086,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,51.6,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.607715,1.386294,,0
-13,3,0,1,3,330394,0,5472.727,21.75086,1,12,1,6.412997,0,0,0,0,6.412997,0,0,0,1,0,4,51.6,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.607715,1.386294,1.858327,1
-13,3,0,1,4,330394,0,5472.727,22.75086,1,12,1,10.76095,0,0,0,0,10.76095,0,0,0,1,0,2,51.6,3.4,0,85.2,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.607715,.6931472,2.375924,1
-13,3,0,1,5,330394,0,5472.727,23.75086,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,51.6,3.4,0,85.2,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.607715,.6931472,,0
-13,3,0,1,1,330395,0,5472.727,47.93977,0,9,1,7.591093,64.97976,28.84615,0,0,101.417,0,0,0,0,1,3,65.4,13.8,0,61.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.607715,1.098612,4.619241,1
-13,3,0,1,2,330395,0,5472.727,48.93977,0,9,1,0,46.24709,17.71562,0,18578.02,18641.98,1,0,0,0,0,4,65.4,13.8,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.607715,1.386294,9.833171,1
-13,3,0,1,3,330395,0,5472.727,49.93977,0,9,.0958904,0,0,0,0,272.9799,272.9799,0,0,0,0,0,4,65.4,13.8,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.607715,1.386294,5.609398,1
-13,3,0,1,1,330396,0,5472.727,51.07734,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,36.7,13.8,0,48.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,48.9,8.607715,1.098612,,0
-13,3,0,1,2,330396,0,5472.727,52.07734,1,7,1,92.96037,24.06993,0,0,0,117.0303,0,0,0,1,0,4,36.7,13.8,0,48.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.9,8.607715,1.386294,4.762433,1
-13,3,0,1,3,330396,0,5472.727,53.07734,1,7,1,205.2159,90.59427,14.42924,0,4150.039,4460.278,3,0,0,1,10,4,36.7,13.8,0,48.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.9,8.607715,1.386294,8.402966,1
-11,3,0,1,1,330399,.0322129,1,4.717317,0,14,1,19.1522,15.83248,0,0,0,34.98468,0,0,0,2,0,4,83.39137,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,.6931472,1.386294,3.55491,1
-11,3,0,1,2,330399,.0322129,1,5.717317,0,14,1,11.25176,15.30708,0,0,0,26.55884,0,0,0,2,0,4,83.39137,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,.6931472,1.386294,3.279363,1
-11,3,0,1,3,330399,.0322129,1,6.717317,0,14,1,28.37489,21.43164,0,0,0,49.80653,0,0,0,4,0,4,83.39137,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,92.6,.6931472,1.386294,3.908146,1
-11,3,0,1,1,330400,.0322129,1,1.705681,1,14,1,49.02962,10.44433,0,0,0,59.47395,0,0,0,8,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,.6931472,1.386294,4.085538,1
-11,3,0,1,2,330400,.0322129,1,2.705681,1,14,1,63.75996,25.3774,0,0,0,89.13737,0,0,0,9,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,.6931472,1.386294,4.490179,1
-11,3,0,1,3,330400,.0322129,1,3.705681,1,14,1,36.54342,26.04471,0,0,0,62.58813,0,0,0,4,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,.6931472,1.386294,4.136576,1
-11,3,0,1,1,330401,.0322129,1,32.64887,0,12,1,15.32176,2.451481,0,0,0,17.77324,0,0,0,2,0,4,62.2,17.2,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,.6931472,1.386294,2.877694,1
-11,3,0,1,2,330401,.0322129,1,33.64887,0,12,1,11.25176,0,0,0,0,11.25176,0,0,0,1,0,4,62.2,17.2,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,.6931472,1.386294,2.420524,1
-11,3,0,1,3,330401,.0322129,1,34.64887,0,12,1,22.35598,3.250215,0,0,0,25.60619,0,0,0,1,0,4,62.2,17.2,0,76.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,76.1,.6931472,1.386294,3.242834,1
-11,3,0,1,1,330402,.0322129,1,30.12731,1,14,1,51.07252,23.04392,34.72932,0,0,108.8458,0,0,0,2,0,4,72.3,13.8,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,.6931472,1.386294,4.689932,1
-11,3,0,1,2,330402,.0322129,1,31.12731,1,14,1,22.50352,29.92968,0,0,0,52.43319,0,0,0,3,0,4,72.3,13.8,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,.6931472,1.386294,3.95954,1
-11,3,0,1,3,330402,.0322129,1,32.12731,1,14,1,44.92691,44.19175,31.81427,0,0,120.9329,0,0,0,5,0,4,72.3,13.8,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,.6931472,1.386294,4.795236,1
-15,3,95,1,1,330468,0,7494.428,39.0308,1,10,1,41.49797,1.821862,0,0,0,43.31984,0,0,0,2,0,2,83.5,24.1,0,79.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,79.5,8.922049,.6931472,3.768611,1
-15,3,95,1,2,330468,0,7494.428,40.0308,1,10,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,2,83.5,24.1,0,79.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,79.5,8.922049,.6931472,1.721767,1
-15,3,95,1,3,330468,0,7494.428,41.0308,1,10,1,0,4.172723,0,0,0,4.172723,0,0,0,0,0,2,83.5,24.1,0,79.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,79.5,8.922049,.6931472,1.428569,1
-13,3,0,1,1,330535,0,3287.537,22.20671,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,85.1,17.2,0,75,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,75,8.098198,1.098612,,0
-13,3,0,1,2,330535,0,3287.537,23.20671,1,9,1,224.7086,4.708625,0,0,149.1608,378.5781,1,0,0,2,0,2,85.1,17.2,0,75,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,75,8.098198,.6931472,5.936422,1
-13,3,0,1,1,330536,0,3287.537,2.937714,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,77.8,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.098198,1.098612,,0
-13,3,0,1,2,330536,0,3287.537,3.937714,1,9,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,2,83.39137,9.967326,0,77.8,450,450,1,1,.6931472,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.098198,.6931472,1.721767,1
-16,3,95,1,1,330554,0,7139.589,42.37372,1,16,1,25.96154,0,24.79757,0,0,50.75911,0,0,0,5,0,3,91.5,6.9,0,94.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.87355,1.098612,3.927091,1
-16,3,95,1,2,330554,0,7139.589,43.37372,1,16,1,4.662004,0,0,0,0,4.662004,0,0,0,1,0,3,91.5,6.9,0,94.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.87355,1.098612,1.539446,1
-16,3,95,1,3,330554,0,7139.589,44.37372,1,16,1,252.1163,0,40.61565,0,1645.981,1938.713,2,0,0,9,0,3,91.5,6.9,0,94.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.87355,1.098612,7.56978,1
-16,3,95,1,4,330554,0,7139.589,45.37372,1,16,1,36.35665,9.185242,0,0,0,45.54189,0,0,0,4,0,3,91.5,6.9,0,94.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.87355,1.098612,3.818633,1
-16,3,95,1,5,330554,0,7139.589,46.37372,1,16,1,20.61819,10.01054,0,0,0,30.62873,0,0,0,3,0,3,91.5,6.9,0,94.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,94.3,8.87355,1.098612,3.421939,1
-16,3,95,1,1,330555,0,7139.589,11.47159,0,16,1,20.1417,0,0,0,0,20.1417,0,0,0,2,0,3,91.7,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.87355,1.098612,3.002792,1
-16,3,95,1,2,330555,0,7139.589,12.47159,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,91.7,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.87355,1.098612,,0
-16,3,95,1,3,330555,0,7139.589,13.47159,0,16,1,158.3155,0,0,0,0,158.3155,0,0,0,5,0,3,91.7,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.87355,1.098612,5.06459,1
-16,3,95,1,4,330555,0,7139.589,14.47159,0,16,1,11.91391,0,0,0,0,11.91391,0,0,0,2,0,3,91.7,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.87355,1.098612,2.477707,1
-16,3,95,1,5,330555,0,7139.589,15.47159,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,91.7,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.87355,1.098612,,0
-16,3,95,1,1,330556,0,7139.589,16.26557,1,16,1,2.024292,2.656883,0,0,0,4.681174,0,0,0,2,0,3,82.4,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.87355,1.098612,1.543549,1
-16,3,95,1,2,330556,0,7139.589,17.26557,1,16,1,28.90443,6.941725,0,0,0,35.84615,0,0,0,3,0,3,82.4,3.4,0,81.8,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.87355,1.098612,3.579236,1
-16,3,95,1,3,330556,0,7139.589,18.26557,1,16,1,54.55323,0,0,0,0,54.55323,0,0,0,3,3,3,82.4,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.87355,1.098612,3.999177,1
-16,3,95,1,4,330556,0,7139.589,19.26557,1,16,1,5.380476,0,0,0,0,5.380476,0,0,0,1,0,3,82.4,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.87355,1.098612,1.682777,1
-16,3,95,1,5,330556,0,7139.589,20.26557,1,16,1,79.62768,0,0,0,0,79.62768,0,0,0,1,9,3,82.4,3.4,0,81.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.87355,1.098612,4.377362,1
-13,3,0,1,1,330567,0,9611.144,28.90075,0,12,1,53.62615,0,23.49336,0,0,77.11951,0,0,0,1,8,1,86.2,10.3,1,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,9.170782,0,4.345356,1
-13,3,0,1,2,330567,0,9611.144,29.90075,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,86.2,10.3,1,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,9.170782,0,,0
-13,3,0,1,3,330567,0,9611.144,30.90075,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,86.2,10.3,1,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,9.170782,0,,0
-13,3,0,1,4,330567,0,9611.144,31.90075,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,86.2,10.3,1,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,9.170782,0,,0
-13,3,0,1,5,330567,0,9611.144,32.90075,0,12,1,26.53928,1.11465,19.72753,0,0,47.38146,0,0,0,2,0,1,86.2,10.3,1,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,9.170782,0,3.858231,1
-13,3,0,1,1,330610,0,8951.319,29.6345,1,12,1,15.32176,0,0,0,0,15.32176,0,0,0,1,0,4,82.4,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.099668,1.386294,2.729274,1
-13,3,0,1,2,330610,0,8951.319,30.6345,1,12,1,10.78294,0,31.87998,0,0,42.66291,0,0,0,0,1,4,82.4,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.099668,1.386294,3.75333,1
-13,3,0,1,3,330610,0,8951.319,31.6345,1,12,1,58.8994,46.84007,10.74806,0,0,116.4875,0,0,0,4,1,4,82.4,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.099668,1.386294,4.757784,1
-13,3,0,1,1,330611,0,8951.319,5.322382,1,12,1,22.47191,6.996936,0,0,0,29.46885,0,0,0,4,0,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.099668,1.386294,3.383334,1
-13,3,0,1,2,330611,0,8951.319,6.322382,1,12,1,17.81528,4.64135,24.37881,0,0,46.83544,0,0,0,2,1,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.099668,1.386294,3.84664,1
-13,3,0,1,3,330611,0,8951.319,7.322382,1,12,1,29.66466,8.985383,11.60791,0,0,50.25795,0,0,0,3,1,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.099668,1.386294,3.917169,1
-13,3,0,1,1,330612,0,8951.319,28.91992,0,12,1,33.04392,3.064351,0,0,0,36.10827,0,0,0,1,0,4,76.6,0,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.099668,1.386294,3.586522,1
-13,3,0,1,2,330612,0,8951.319,29.91992,0,12,1,50.63291,3.961556,24.84763,0,0,79.4421,0,0,0,4,1,4,76.6,0,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.099668,1.386294,4.375029,1
-13,3,0,1,3,330612,0,8951.319,30.91992,0,12,1,24.93551,0,12.89768,0,0,37.83319,0,0,0,1,1,4,76.6,0,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.099668,1.386294,3.633187,1
-13,3,0,1,1,330613,0,8951.319,6.732375,1,12,1,17.87538,3.038815,0,0,0,20.9142,0,0,0,2,0,4,75,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.099668,1.386294,3.040428,1
-13,3,0,1,2,330613,0,8951.319,7.732375,1,12,1,40.3188,9.446789,0,0,0,49.76559,0,0,0,3,0,4,75,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.099668,1.386294,3.907324,1
-13,3,0,1,3,330613,0,8951.319,8.732375,1,12,1,27.51505,14.05847,0,0,0,41.57352,0,0,0,4,1,4,75,9.967326,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.099668,1.386294,3.727463,1
-14,3,95,1,1,330679,0,586.5103,48.87611,1,12,1,7.591093,0,0,0,0,7.591093,0,0,0,1,0,3,88.8,10.3,0,82.1,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,1,0,0,82.1,6.375894,1.098612,2.026976,1
-14,3,95,1,2,330679,0,586.5103,49.87611,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,10.3,0,82.1,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,1,0,0,82.1,6.375894,1.098612,,0
-14,3,95,1,3,330679,0,586.5103,50.87611,1,12,1,10.68833,0,23.51432,0,0,34.20265,0,0,0,0,1,3,88.8,10.3,0,82.1,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,1,0,0,82.1,6.375894,1.098612,3.532303,1
-14,3,95,1,1,330680,0,586.5103,48.91718,0,12,1,30.36437,0,36.94332,0,0,67.30769,0,0,0,1,1,3,97.3,3.4,0,86.4,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,86.4,6.375894,1.098612,4.209275,1
-14,3,95,1,2,330680,0,586.5103,49.91718,0,12,1,18.64802,0,0,0,0,18.64802,0,0,0,1,0,3,97.3,3.4,0,86.4,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,86.4,6.375894,1.098612,2.92574,1
-14,3,95,1,3,330680,0,586.5103,50.91718,0,12,1,17.10133,0,0,0,0,17.10133,0,0,0,1,0,3,97.3,3.4,0,86.4,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,86.4,6.375894,1.098612,2.839156,1
-14,3,95,1,1,330682,0,586.5103,20.23545,1,13.5,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,6.9,0,72.7,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,72.7,6.375894,1.098612,,0
-14,3,95,1,2,330682,0,586.5103,21.23545,1,13.5,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,6.9,0,72.7,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,72.7,6.375894,1.098612,,0
-14,3,95,1,3,330682,0,586.5103,22.23545,1,13.5,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,6.9,0,72.7,738.85,738.85,0,0,1.098612,6.605095,0,4.564348,6.656388,0,0,0,72.7,6.375894,1.098612,,0
-11,3,0,1,1,330698,0,12595.31,30.73785,0,14,1,50.05107,5.05618,25.02554,0,0,80.13279,0,0,0,1,1,1,83,10.3,0,84.1,0,16.8,0,0,0,2.821379,0,0,0,0,0,0,84.1,9.441159,0,4.383685,1
-11,3,0,1,2,330698,0,12595.31,31.73785,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,83,10.3,0,84.1,0,16.8,0,0,0,2.821379,0,0,0,0,0,0,84.1,9.441159,0,,0
-11,3,0,1,3,330698,0,12595.31,32.73785,0,14,1,79.10576,6.865864,30.09458,419.1746,0,116.0662,0,0,18,4,1,2,83,10.3,0,84.1,0,16.8,0,0,.6931472,2.821379,0,0,0,0,0,0,84.1,9.441159,.6931472,4.754161,1
-11,3,0,1,1,330801,0,1015.249,4.13963,0,7,1,37.44939,0,0,0,0,37.44939,0,0,0,3,1,5,80,9.967326,0,96.3,0,0,1,0,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,3.622991,1
-11,3,0,1,2,330801,0,1015.249,5.13963,0,7,1,6.993007,0,0,0,0,6.993007,0,0,0,1,0,5,80,9.967326,0,96.3,0,0,1,0,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,1.944911,1
-11,3,0,1,3,330801,0,1015.249,6.13963,0,7,1,5.985464,0,0,0,0,5.985464,0,0,0,1,0,4,80,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,6.923874,1.386294,1.789334,1
-11,3,0,1,1,330802,0,1015.249,15.14305,1,7,1,22.26721,0,21.25506,0,0,43.52227,0,0,0,1,1,5,87.2,0,0,84.1,0,0,1,1,1.609438,0,0,0,0,0,0,0,84.1,6.923874,1.609438,3.773273,1
-11,3,0,1,2,330802,0,1015.249,16.14305,1,7,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,5,87.2,0,0,84.1,0,0,1,1,1.609438,0,0,0,0,0,0,0,84.1,6.923874,1.609438,1.721767,1
-11,3,0,1,3,330802,0,1015.249,17.14305,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,87.2,0,0,84.1,0,0,1,1,1.386294,0,0,0,0,0,0,0,84.1,6.923874,1.386294,,0
-11,3,0,1,1,330803,0,1015.249,33.02122,1,7,1,20.39474,11.19939,0,0,0,31.59413,0,0,0,1,1,5,83,3.4,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,6.923874,1.609438,3.452971,1
-11,3,0,1,2,330803,0,1015.249,34.02122,1,7,1,27.50583,2.694639,0,97.9021,0,30.20047,0,0,7,2,0,5,83,3.4,0,85.2,0,0,0,0,1.609438,0,0,0,0,0,0,0,85.2,6.923874,1.609438,3.407857,1
-11,3,0,1,3,330803,0,1015.249,35.02122,1,7,1,19.88029,30.3463,0,339.8889,401.3211,451.5477,1,0,27,2,0,4,83,3.4,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,6.923874,1.386294,6.112681,1
-11,3,0,1,1,330804,0,1015.249,9.705681,0,7,1,10.62753,0,0,0,0,10.62753,0,0,0,0,1,5,81.7,9.967326,0,96.3,0,0,1,0,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,2.363448,1
-11,3,0,1,2,330804,0,1015.249,10.70568,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,96.3,0,0,1,0,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,,0
-11,3,0,1,1,330806,0,1015.249,13.34429,1,7,1,10.62753,0,0,0,0,10.62753,0,0,0,0,1,5,95,9.967326,0,96.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,2.363448,1
-11,3,0,1,2,330806,0,1015.249,14.34429,1,7,1,71.51515,8.741259,0,0,0,80.25641,0,0,0,1,0,5,95,9.967326,0,96.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,96.3,6.923874,1.609438,4.385227,1
-11,3,0,1,3,330806,0,1015.249,15.34429,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,95,9.967326,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,6.923874,1.386294,,0
-11,3,0,1,1,330815,0,1591.789,54.04244,1,2,1,20.93973,42.84985,30.26047,0,0,94.05005,0,0,0,1,1,1,55.3,17.2,0,68.2,0,211.2,0,0,0,5.352806,0,0,0,0,1,0,68.2,7.373242,0,4.543827,1
-11,3,0,1,2,330815,0,1591.789,55.04244,1,2,1,37.50586,63.51617,1.64557,0,0,102.6676,0,0,0,3,0,1,55.3,17.2,0,68.2,0,211.2,0,0,0,5.352806,0,0,0,0,1,0,68.2,7.373242,0,4.631496,1
-11,3,0,1,3,330815,0,1591.789,56.04244,1,2,1,27.94497,37.40327,19.37231,0,0,84.72055,0,0,0,2,1,1,55.3,17.2,0,68.2,0,211.2,0,0,0,5.352806,0,0,0,0,1,0,68.2,7.373242,0,4.439358,1
-11,3,0,1,1,330861,0,3679.765,.4079398,0,13,1,64.09602,9.652707,0,0,0,73.74873,0,0,0,6,0,5,83.39137,9.967326,0,77.8,0,1047.24,1,0,1.609438,6.953913,0,0,0,0,0,0,77.8,8.210876,1.609438,4.300664,1
-11,3,0,1,2,330861,0,3679.765,1.40794,0,13,1,57.19644,8.134084,0,0,0,65.33052,0,0,0,7,0,6,83.39137,9.967326,0,77.8,0,1047.24,1,0,1.791759,6.953913,0,0,0,0,0,0,77.8,8.210876,1.791759,4.179459,1
-11,3,0,1,3,330861,0,3679.765,2.40794,0,13,1,20.63629,15.64918,0,0,0,36.28547,0,0,0,4,0,6,83.39137,9.967326,0,77.8,0,1047.24,1,0,1.791759,6.953913,0,0,0,0,0,0,77.8,8.210876,1.791759,3.591417,1
-11,3,0,1,1,330862,0,5513.196,4.205339,0,10,1,268.1052,0,0,0,0,268.1052,0,0,0,6,0,3,83.39137,9.967326,0,7.4,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,7.4,8.615081,1.098612,5.59138,1
-11,3,0,1,2,330862,0,5513.196,5.205339,0,10,1,402.7192,0,0,0,414.5101,817.2292,1,0,0,16,0,3,83.39137,9.967326,0,7.4,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,7.4,8.615081,1.098612,6.70592,1
-11,3,0,1,3,330862,0,5513.196,6.205339,0,10,1,14.61737,0,0,0,0,14.61737,0,0,0,2,0,3,83.39137,9.967326,0,7.4,0,78,1,0,1.098612,4.356709,0,0,0,0,0,0,7.4,8.615081,1.098612,2.68221,1
-11,3,0,1,1,330863,0,5513.196,20.83504,1,10,1,43.82022,2.037794,0,0,0,45.85802,0,0,0,5,0,3,72.9,6.9,1,38.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,38.6,8.615081,1.098612,3.82555,1
-11,3,0,1,2,330863,0,5513.196,21.83504,1,10,1,160.4313,0,35.63057,0,0,196.0619,0,0,0,5,0,3,72.9,6.9,1,38.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,38.6,8.615081,1.098612,5.27843,1
-11,3,0,1,3,330863,0,5513.196,22.83504,1,10,1,137.4033,0,0,0,1303.641,1441.045,1,0,0,5,0,3,72.9,6.9,1,38.6,0,78,0,0,1.098612,4.356709,0,0,0,0,0,0,38.6,8.615081,1.098612,7.273124,1
-16,3,95,0,1,330868,0,7497.361,.0684463,0,14,1,51.51984,6.161772,0,0,0,57.68161,0,0,0,8,0,4,83.39137,9.967326,.0268456,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.386294,4.054938,1
-16,3,95,0,2,330868,0,7497.361,1.068446,0,14,1,61.93182,10.80019,0,0,0,72.73201,0,0,0,9,0,4,83.39137,9.967326,.0268456,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.386294,4.286782,1
-16,3,95,0,3,330868,0,7497.361,2.068446,0,14,1,18.20546,2.06762,0,0,0,20.27308,0,0,0,3,0,4,83.39137,9.967326,.0268456,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.386294,3.009294,1
-16,3,95,0,4,330868,0,7497.361,3.068446,0,14,1,27.41237,2.343442,0,0,0,29.75581,0,0,0,3,0,5,83.39137,9.967326,.0268456,,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.609438,3.393024,1
-16,3,95,0,5,330868,0,7497.361,4.068446,0,14,1,31.12701,1.670841,0,0,0,32.79785,0,0,0,4,0,5,83.39137,9.967326,.0268456,,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.609438,3.490363,1
-11,3,0,1,1,330871,0,14874.49,19.00068,0,13,1,61.23482,1.11336,0,0,0,62.34818,0,0,0,1,0,6,47.9,0,1,61.4,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,61.4,9.60747,1.791759,4.132734,1
-11,3,0,1,2,330871,0,14874.49,20.00068,0,13,1,2.564103,0,0,0,0,2.564103,0,0,0,0,0,6,47.9,0,1,61.4,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,61.4,9.60747,1.791759,.9416085,1
-11,3,0,1,3,330871,0,14874.49,21.00068,0,13,1,39.76058,0,0,0,0,39.76058,0,0,0,2,0,6,47.9,0,1,61.4,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,61.4,9.60747,1.791759,3.682876,1
-11,3,0,1,4,330871,0,14874.49,22.00068,0,13,1,0,0,0,0,0,0,0,0,0,0,0,6,47.9,0,1,61.4,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,61.4,9.60747,1.791759,,0
-11,3,0,1,5,330871,0,14874.49,23.00068,0,13,1,5.268704,2.142606,0,0,0,7.41131,0,0,0,1,0,6,47.9,0,1,61.4,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,61.4,9.60747,1.791759,2.003007,1
-11,3,0,1,1,330872,0,14874.49,20.22998,1,14,1,42.53542,10.67814,0,0,279.7976,333.0111,1,0,0,4,0,6,83.5,3.4,0,65.9,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,65.9,9.60747,1.791759,5.808176,1
-11,3,0,1,2,330872,0,14874.49,21.22998,1,14,1,40.55944,8.717949,0,0,0,49.27739,0,0,0,2,0,6,83.5,3.4,0,65.9,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,65.9,9.60747,1.791759,3.897465,1
-11,3,0,1,3,330872,0,14874.49,22.22998,1,14,1,45.1475,7.524583,0,79.09363,0,52.67208,0,0,4,4,0,6,83.5,3.4,0,65.9,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,65.9,9.60747,1.791759,3.964086,1
-11,3,0,1,4,330872,0,14874.49,23.22998,1,14,1,7.302075,2.924673,0,338.2014,0,10.22675,0,0,22,1,0,6,83.5,3.4,0,65.9,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,65.9,9.60747,1.791759,2.325007,1
-11,3,0,1,5,330872,0,14874.49,24.22998,1,14,1,141.7106,11.99508,0,14.04988,0,153.7057,0,0,1,2,0,6,83.5,3.4,0,65.9,0,580.8,0,0,1.791759,6.364407,0,0,0,0,0,0,65.9,9.60747,1.791759,5.035039,1
-15,3,95,0,1,330873,0,1703.226,.0465435,0,9,1,88.30972,2.884615,0,0,0,91.19433,0,0,0,5,0,2,83.39137,9.967326,.0268456,,0,0,1,0,.6931472,0,0,4.564348,0,0,0,0,79.22147,7.440866,.6931472,4.512993,1
-15,3,95,0,2,330873,0,1703.226,1.046543,0,9,1,0,2.097902,0,0,0,2.097902,0,0,0,0,0,2,83.39137,9.967326,.0268456,,0,0,1,0,.6931472,0,0,4.564348,0,0,0,0,79.22147,7.440866,.6931472,.7409378,1
-15,3,95,0,3,330873,0,1703.226,2.046543,0,9,1,19.66652,2.073536,0,0,0,21.74006,0,0,0,2,0,2,83.39137,9.967326,.0268456,,0,0,1,0,.6931472,0,0,4.564348,0,0,0,0,79.22147,7.440866,.6931472,3.079157,1
-11,3,0,1,1,330874,0,2639.296,21.9822,0,9,1,14.42308,6.022267,23.27935,0,0,43.7247,0,0,0,0,1,5,89.4,3.4,0,80.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,80.7,7.878646,1.609438,3.777913,1
-14,3,95,1,1,330876,1,10370.09,35.00068,0,11.38739,1,24.89878,0,0,0,0,24.89878,0,0,0,1,0,5,66,6.9,0,67,750,750,0,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,67,9.246778,1.609438,3.214819,1
-14,3,95,1,2,330876,1,10370.09,36.00068,0,11.38739,1,49.84615,0,0,0,0,49.84615,0,0,0,3,0,5,66,6.9,0,67,750,750,0,0,1.609438,6.620073,0,4.564348,6.671367,0,0,0,67,9.246778,1.609438,3.908941,1
-14,3,95,1,3,330876,1,10370.09,37.00068,0,11.38739,1,0,11.05173,0,0,0,11.05173,0,0,0,0,0,6,66,6.9,0,67,750,750,0,0,1.791759,6.620073,0,4.564348,6.671367,0,0,0,67,9.246778,1.791759,2.402587,1
-15,3,95,0,1,330877,0,6617.009,.1122519,0,15,1,6.072875,0,0,0,0,6.072875,0,0,0,1,0,3,83.39137,9.967326,.0268456,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.79755,1.098612,1.803832,1
-15,3,95,0,2,330877,0,6617.009,1.112252,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,.0268456,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.79755,1.098612,,0
-15,3,95,0,3,330877,0,6617.009,2.112252,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,.0268456,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.79755,1.098612,,0
-10,3,50,0,1,330878,0,2069.208,.5913758,1,12,1,10.12146,1.558704,0,0,0,11.68016,0,0,0,1,0,3,83.39137,9.967326,1,88.9,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,88.9,7.635405,1.098612,2.457892,1
-10,3,50,0,2,330878,0,2069.208,1.591376,1,12,1,31.70163,3.207459,0,0,0,34.90909,0,0,0,2,0,3,83.39137,9.967326,1,88.9,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,88.9,7.635405,1.098612,3.552747,1
-10,3,50,0,3,330878,0,2069.208,2.591376,1,12,1,38.39248,0,.8550662,0,0,39.24754,0,0,0,1,0,3,83.39137,9.967326,1,88.9,225,225,1,1,1.098612,5.416101,0,3.931826,6.109248,0,0,0,88.9,7.635405,1.098612,3.669889,1
-11,3,0,1,3,330880,0,10515.54,21.90417,1,,1,31.20992,1.710132,25.65199,0,0,58.57204,0,0,0,2,1,1,73.4,6.9,0,91.7,,,0,0,0,0,0,0,0,0,0,0,91.7,9.260705,0,4.070258,1
-13,3,0,1,1,330881,0,7196.79,.1396304,0,11.38739,1,75.91093,0,0,0,0,75.91093,0,0,0,9,0,7,83.39137,9.967326,0,85.2,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.94591,4.329561,1
-13,3,0,1,2,330881,0,7196.79,1.13963,0,11.38739,1,384.7552,55.26807,7.692307,0,1586.42,2034.135,6,0,0,11,13,7,83.39137,9.967326,0,85.2,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.94591,7.617826,1
-13,3,0,1,3,330881,0,7196.79,2.13963,0,11.38739,1,628.8799,84.66866,0,0,202.0735,915.6221,1,0,0,17,25,7,83.39137,9.967326,0,85.2,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.881529,1.94591,6.819604,1
-13,3,0,1,1,330882,0,6943.695,12.80219,0,16,1,27.83401,0,0,619.9393,0,27.83401,0,0,35,0,1,3,56.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,3.326259,1
-13,3,0,1,2,330882,0,6943.695,13.80219,0,16,1,0,0,0,587.4126,0,0,0,0,36,0,0,3,56.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,,0
-13,3,0,1,3,330882,0,6943.695,14.80219,0,16,1,120.1368,0,0,74.8183,0,120.1368,0,0,5,1,2,3,56.7,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.845734,1.098612,4.788631,1
-13,3,0,1,1,330883,0,3287.537,25.22382,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,76.1,3.4,0,88.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.6,8.098198,1.098612,,0
-15,3,95,1,1,330886,.0322129,7920.821,54.93224,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,0,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,8.977376,.6931472,,0
-15,3,95,1,2,330886,.0322129,7920.821,55.93224,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,0,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,8.977376,.6931472,,0
-15,3,95,1,3,330886,.0322129,7920.821,56.93224,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,0,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,8.977376,.6931472,,0
-15,3,95,1,4,330886,.0322129,7920.821,57.93224,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,0,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,8.977376,.6931472,,0
-15,3,95,1,5,330886,.0322129,7920.821,58.93224,0,12,1,12.99614,0,0,0,0,12.99614,0,0,0,1,0,2,91.5,0,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,8.977376,.6931472,2.564652,1
-15,3,95,1,1,330887,.0322129,7920.821,50.30253,1,12,1,12.65182,0,27.32794,0,0,39.97976,0,0,0,1,0,2,75,6.9,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.977376,.6931472,3.688373,1
-15,3,95,1,2,330887,.0322129,7920.821,51.30253,1,12,1,11.65501,0,0,0,0,11.65501,0,0,0,1,0,2,75,6.9,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.977376,.6931472,2.455736,1
-15,3,95,1,3,330887,.0322129,7920.821,52.30253,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.977376,.6931472,,0
-15,3,95,1,4,330887,.0322129,7920.821,53.30253,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.977376,.6931472,,0
-15,3,95,1,5,330887,.0322129,7920.821,54.30253,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,75,6.9,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,78.4,8.977376,.6931472,,0
-11,3,0,1,1,330888,0,3702.639,22.79808,1,13,1,77.45148,6.154239,22.98264,0,0,106.5884,0,0,0,2,0,1,77.1,13.8,0,72.7,0,440.4,0,0,0,6.087683,0,0,0,0,0,0,72.7,8.217072,0,4.668974,1
-11,3,0,1,2,330888,0,3702.639,23.79808,1,13,1,36.56821,2.006563,0,0,0,38.57478,0,0,0,2,0,1,77.1,13.8,0,72.7,0,440.4,0,0,0,6.087683,0,0,0,0,0,0,72.7,8.217072,0,3.652599,1
-11,3,0,1,3,330888,0,3702.639,24.79808,1,13,1,66.20808,26.1178,0,0,0,92.32588,0,0,0,9,0,1,77.1,13.8,0,72.7,0,440.4,0,0,0,6.087683,0,0,0,0,0,0,72.7,8.217072,0,4.525324,1
-11,3,0,1,1,330889,0,4480.352,18.16564,0,11,1,28.34008,2.246964,0,0,0,30.58704,0,0,0,3,0,5,97.3,3.4,0,53.4,0,0,0,0,1.609438,0,0,0,0,0,0,0,53.4,8.407681,1.609438,3.420577,1
-11,3,0,1,2,330889,0,4480.352,19.16564,0,11,1,15.38461,4.871795,0,0,0,20.25641,0,0,0,1,0,6,97.3,3.4,0,53.4,0,0,0,0,1.791759,0,0,0,0,0,0,0,53.4,8.407681,1.791759,3.008471,1
-11,3,0,1,3,330889,0,4480.352,20.16564,0,11,1,15.90423,0,0,0,0,15.90423,0,0,0,1,0,6,97.3,3.4,0,53.4,0,0,0,0,1.791759,0,0,0,0,0,0,0,53.4,8.407681,1.791759,2.766585,1
-11,3,0,1,1,330890,0,4480.352,29.36345,0,9,1,37.44939,12.60121,0,0,541.2045,591.2551,1,0,0,7,0,5,47.9,0,0,52.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,52.3,8.407681,1.609438,6.382247,1
-11,3,0,1,2,330890,0,4480.352,30.36345,0,9,1,22.37762,9.65035,0,0,0,32.02797,0,0,0,3,0,6,47.9,0,0,52.3,0,0,0,0,1.791759,0,0,0,0,0,0,0,52.3,8.407681,1.791759,3.46661,1
-11,3,0,1,3,330890,0,4480.352,31.36345,0,9,1,66.69517,12.29158,0,0,475.0235,554.0103,1,0,0,6,0,6,47.9,0,0,52.3,0,0,0,0,1.791759,0,0,0,0,0,0,0,52.3,8.407681,1.791759,6.317183,1
-15,3,95,1,1,330891,0,7494.428,45.45106,0,10,1,33.40081,4.453441,25.30364,0,0,63.15789,0,0,0,1,1,2,85.1,6.9,0,87.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,87.5,8.922049,.6931472,4.145638,1
-15,3,95,1,2,330891,0,7494.428,46.45106,0,10,1,49.41725,9.603729,0,0,0,59.02098,0,0,0,2,0,2,85.1,6.9,0,87.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,87.5,8.922049,.6931472,4.077893,1
-15,3,95,1,3,330891,0,7494.428,47.45106,0,10,1,48.31124,0,0,0,0,48.31124,0,0,0,2,0,2,85.1,6.9,0,87.5,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,87.5,8.922049,.6931472,3.877664,1
-11,3,0,0,2,330899,0,5465.103,.6960986,1,12,1,26.98864,5.776515,0,0,514.304,547.0692,1,0,0,4,0,5,83.39137,9.967326,.0268456,,0,278.4,1,1,1.609438,5.629059,0,0,0,0,0,0,79.22147,8.606321,1.609438,6.304575,1
-11,3,0,0,3,330899,0,5465.103,1.696099,1,12,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,5,83.39137,9.967326,.0268456,,0,278.4,1,1,1.609438,5.629059,0,0,0,0,0,0,79.22147,8.606321,1.609438,2.159784,1
-11,3,0,0,4,330899,0,5465.103,2.696099,1,12,1,27.17605,14.11973,0,0,0,41.29578,0,0,0,2,0,5,83.39137,9.967326,.0268456,,0,278.4,1,1,1.609438,5.629059,0,0,0,0,0,0,79.22147,8.606321,1.609438,3.72076,1
-11,3,0,0,5,330899,0,5465.103,3.696099,1,12,1,16.99463,0,0,0,0,16.99463,0,0,0,2,0,5,83.39137,9.967326,.0268456,,0,278.4,1,1,1.609438,5.629059,0,0,0,0,0,0,79.22147,8.606321,1.609438,2.832898,1
-10,3,50,0,2,330900,0,6108.082,.6933607,0,12,1,25.80029,1.863354,0,0,0,27.66364,0,0,0,5,0,4,83.39137,9.967326,.0268456,,1000,520,1,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,79.22147,8.717532,1.386294,3.320119,1
-10,3,50,0,3,330900,0,6108.082,1.693361,0,12,1,8.34065,0,0,0,0,8.34065,0,0,0,1,0,4,83.39137,9.967326,.0268456,,1000,520,1,0,1.386294,6.253829,0,3.931826,7.600903,0,0,0,79.22147,8.717532,1.386294,2.121141,1
-13,3,0,0,2,330920,0,5980.897,.3730322,1,12,1,100.4778,10.77401,0,0,0,111.2518,0,0,0,7,0,4,83.39137,9.967326,.0268456,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.696493,1.386294,4.711796,1
-13,3,0,0,3,330920,0,5980.897,1.373032,1,12,1,5.267779,3.446005,0,0,0,8.713784,0,0,0,1,0,4,83.39137,9.967326,.0268456,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.696493,1.386294,2.164906,1
-11,3,0,0,2,330925,0,3679.765,.37577,1,13,1,92.12377,23.95687,0,0,0,116.0806,0,0,0,13,0,6,83.39137,9.967326,.0268456,,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,79.22147,8.210876,1.791759,4.754285,1
-11,3,0,0,3,330925,0,3679.765,1.37577,1,13,1,103.1814,24.76784,22.06793,0,0,150.0172,0,0,0,14,0,6,83.39137,9.967326,.0268456,,0,1047.24,1,1,1.791759,6.953913,0,0,0,0,0,0,79.22147,8.210876,1.791759,5.01075,1
-11,3,0,0,2,330934,0,4918.006,.156742,1,13,1,28.66698,0,0,0,0,28.66698,0,0,0,5,0,5,83.39137,9.967326,.0268456,,0,0,1,1,1.609438,0,0,0,0,0,0,0,79.22147,8.500862,1.609438,3.355746,1
-13,3,0,0,2,330936,0,5472.727,.4223135,0,7,1,11.18881,4.918415,0,0,0,16.10723,0,0,0,2,0,4,83.39137,9.967326,.0268456,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.607715,1.386294,2.779268,1
-13,3,0,0,3,330936,0,5472.727,1.422313,0,7,1,13.25353,3.330483,0,0,0,16.58401,0,0,0,3,0,4,83.39137,9.967326,.0268456,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.607715,1.386294,2.808439,1
-13,3,0,0,4,330936,0,5472.727,2.422313,0,7,1,12.68255,5.046118,0,0,0,17.72867,0,0,0,2,0,2,83.39137,9.967326,.0268456,,450,450,1,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.607715,.6931472,2.875183,1
-13,3,0,0,5,330936,0,5472.727,3.422313,0,7,1,45.39867,2.058307,0,0,0,47.45697,0,0,0,4,0,2,83.39137,9.967326,.0268456,,450,450,1,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.607715,.6931472,3.859823,1
-10,3,50,0,3,330944,0,6217.595,.9431896,0,12,1,4.389816,0,0,0,0,4.389816,0,0,0,1,0,4,83.39137,9.967326,.0268456,,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.22147,8.735299,1.386294,1.479287,1
-13,3,0,0,2,330956,0,8395.895,.0882957,0,12,1,41.72527,7.435537,.3703704,0,250.2813,299.8125,1,0,0,7,0,4,83.39137,9.967326,.0268456,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,9.035617,1.386294,5.703157,1
-13,3,0,0,3,330956,0,8395.895,1.088296,0,12,1,29.23474,2.884781,0,0,463.5855,495.7051,1,0,0,6,0,4,83.39137,9.967326,.0268456,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.22147,9.035617,1.386294,6.205981,1
-19,3,25,0,2,330957,0,7995.308,.1047228,0,12,1,61.42191,2.797203,0,0,0,64.21912,0,0,0,9,0,2,83.39137,9.967326,.0268456,,390,390,1,0,.6931472,5.966147,0,3.258096,7.352441,0,0,0,79.22147,8.986735,.6931472,4.162301,1
-19,3,25,0,3,330957,0,7995.308,1.104723,0,12,1,51.73151,0,0,0,0,51.73151,0,0,0,5,0,2,83.39137,9.967326,.0268456,,390,390,1,0,.6931472,5.966147,0,3.258096,7.352441,0,0,0,79.22147,8.986735,.6931472,3.946067,1
-13,3,0,0,3,330960,0,7722.581,.9678302,0,14,1,13.0039,0,0,0,0,13.0039,0,0,0,1,0,4,83.39137,9.967326,.0268456,,450,807.6,1,0,1.386294,6.694067,1,4.564348,6.160541,0,0,0,79.22147,8.952033,1.386294,2.565249,1
-11,3,0,0,3,330963,0,9506.158,.9760438,0,14,1,24.70741,11.74686,0,0,0,36.45427,0,0,0,4,0,3,83.39137,9.967326,.0268456,,0,329.14,1,0,1.098612,5.796483,0,0,0,0,0,0,79.22147,9.159801,1.098612,3.596059,1
-11,3,0,0,4,330963,0,9506.158,1.976044,0,14,1,37.21938,2.315872,0,0,0,39.53525,0,0,0,5,0,3,83.39137,9.967326,.0268456,,0,329.14,1,0,1.098612,5.796483,0,0,0,0,0,0,79.22147,9.159801,1.098612,3.677193,1
-11,3,0,0,5,330963,0,9506.158,2.976044,0,14,1,36.85152,20.52952,0,0,119.8175,177.1986,1,0,0,6,0,3,83.39137,9.967326,.0268456,,0,329.14,1,0,1.098612,5.796483,0,0,0,0,0,0,79.22147,9.159801,1.098612,5.177271,1
-18,3,25,0,3,330965,0,6519.062,.9678302,0,7,1,90.80804,11.60752,0,0,0,102.4156,0,0,0,8,0,7,83.39137,9.967326,.0268456,,660,660,1,0,1.94591,6.49224,0,3.258096,7.878534,0,0,0,79.22147,8.78264,1.94591,4.629039,1
-18,3,25,0,4,330965,0,6519.062,1.96783,0,7,1,144.8117,7.033051,0,0,0,151.8447,0,0,0,5,3,8,83.39137,9.967326,.0268456,,660,660,1,0,2.079442,6.49224,0,3.258096,7.878534,0,0,0,79.22147,8.78264,2.079442,5.022859,1
-18,3,25,0,5,330965,0,6519.062,2.96783,0,7,1,72.35686,6.845803,0,0,0,79.20267,0,0,0,5,0,8,83.39137,9.967326,.0268456,,660,660,1,0,2.079442,6.49224,0,3.258096,7.878534,0,0,0,79.22147,8.78264,2.079442,4.37201,1
-11,3,0,0,3,330981,0,6411.144,.7378508,0,12,1,78.24592,12.01634,0,0,0,90.26225,0,0,0,7,0,4,83.39137,9.967326,.0268456,,0,261.48,1,0,1.386294,5.566358,0,0,0,0,0,0,79.22147,8.765949,1.386294,4.502719,1
-11,3,0,0,3,330988,0,2930.205,.6146475,0,10,1,172.6569,36.681,0,0,1144.639,1353.977,2,0,0,12,0,4,83.39137,9.967326,.0268456,,0,780.92,1,0,1.386294,6.660473,0,0,0,0,0,0,79.22147,7.983169,1.386294,7.210801,1
-11,3,0,0,3,330989,0,10994.72,.5927447,0,16,1,79.75726,15.40962,0,0,0,95.16689,0,0,0,8,0,3,83.39137,9.967326,.0268456,,0,125.58,1,0,1.098612,4.832943,0,0,0,0,0,0,79.22147,9.305262,1.098612,4.555632,1
-13,3,0,0,3,331005,0,10826.39,.4065709,0,9,1,22.7859,1.242476,0,0,0,24.02838,0,0,0,4,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,79.22147,9.289835,1.098612,3.179235,1
-16,3,95,0,3,331007,0,2777.713,.4722793,0,9,1,54.23258,1.923899,0,0,0,56.15648,0,0,0,6,0,4,83.39137,9.967326,.0268456,,915,915,1,0,1.386294,6.818924,0,4.564348,6.870217,0,0,0,79.22147,7.929743,1.386294,4.028142,1
-16,3,95,0,4,331007,0,2777.713,1.472279,0,9,1,366.1184,0,0,0,0,366.1184,0,0,0,7,0,4,83.39137,9.967326,.0268456,,915,915,1,0,1.386294,6.818924,0,4.564348,6.870217,0,0,0,79.22147,7.929743,1.386294,5.902956,1
-16,3,95,0,5,331007,0,2777.713,2.472279,0,9,1,115.3846,8.5634,0,0,0,123.948,0,0,0,12,0,5,83.39137,9.967326,.0268456,,915,915,1,0,1.609438,6.818924,0,4.564348,6.870217,0,0,0,79.22147,7.929743,1.609438,4.819862,1
-14,3,95,0,3,331010,1,10370.09,.4859685,0,13,1,93.92903,13.53142,0,0,286.7379,394.1984,1,0,0,9,0,6,83.39137,9.967326,.0268456,,750,750,1,0,1.791759,6.620073,0,4.564348,6.671367,0,0,0,79.22147,9.246778,1.791759,5.976854,1
-16,3,95,0,4,331039,0,7497.361,.9767283,1,14,1,16.14809,0,0,0,0,16.14809,0,0,0,3,0,5,83.39137,9.967326,.0268456,,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.609438,2.781802,1
-16,3,95,0,5,331039,0,7497.361,1.976728,1,14,1,30.41145,1.642218,0,0,0,32.05367,0,0,0,4,0,5,83.39137,9.967326,.0268456,,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,79.22147,8.92244,1.609438,3.467412,1
-17,3,25,0,3,331042,0,6176.54,.0999316,1,13,1,30.35485,1.795639,0,0,0,32.15049,0,0,0,5,0,5,83.39137,9.967326,.0268456,,560,560,1,1,1.609438,6.327937,0,3.258096,7.714231,0,0,0,79.22147,8.728675,1.609438,3.470428,1
-11,3,0,0,3,331044,0,12595.31,.0670773,0,14,1,94.23904,3.177128,0,0,0,97.41617,0,0,0,9,0,2,83.39137,9.967326,.0268456,,0,16.8,1,0,.6931472,2.821379,0,0,0,0,0,0,79.22147,9.441159,.6931472,4.578992,1
-16,3,95,0,4,331098,1,6370.674,.4592745,0,13,1,47.07917,0,0,0,0,47.07917,0,0,0,1,0,2,83.39137,9.967326,.0268456,,1000,900,1,0,.6931472,6.802395,0,4.564348,6.959049,0,0,0,79.22147,8.759618,.6931472,3.851831,1
-16,3,95,0,5,331098,1,6370.674,1.459274,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,.0268456,,1000,900,1,0,.6931472,6.802395,0,4.564348,6.959049,0,0,0,79.22147,8.759618,.6931472,,0
-18,3,25,0,4,331125,0,6519.062,.1800137,0,7,1,24.21214,10.08839,0,0,115.638,149.9385,1,0,0,3,0,8,83.39137,9.967326,.0268456,,660,660,1,0,2.079442,6.49224,0,3.258096,7.878534,0,0,0,79.22147,8.78264,2.079442,5.010225,1
-18,3,25,0,5,331125,0,6519.062,1.180014,0,7,1,94.4503,7.024939,0,0,0,101.4752,0,0,0,5,1,8,83.39137,9.967326,.0268456,,660,660,1,0,2.079442,6.49224,0,3.258096,7.878534,0,0,0,79.22147,8.78264,2.079442,4.619815,1
-11,3,0,0,5,331134,0,2570.088,.7748117,0,11.38739,1,54.03397,4.918613,0,0,0,58.95258,0,0,0,6,0,2,83.39137,9.967326,.0268456,,0,227.4,1,0,.6931472,5.426711,0,0,0,0,0,0,79.22147,7.852084,.6931472,4.076734,1
-11,3,0,0,5,331167,0,5739.003,.2135524,0,12,1,47.49819,13.01668,0,0,0,60.51487,0,0,0,7,0,4,83.39137,9.967326,.0268456,,0,156.36,1,0,1.386294,5.052161,0,0,0,0,0,0,79.22147,8.655215,1.386294,4.102889,1
-16,3,95,0,5,331278,0,2777.713,.1177276,0,9,1,107.6572,16.61749,0,0,0,124.2747,0,0,0,17,0,5,83.39137,9.967326,.0268456,,915,915,1,0,1.609438,6.818924,0,4.564348,6.870217,0,0,0,79.22147,7.929743,1.609438,4.822494,1
-15,4,95,0,1,425075,0,11089.74,18.04791,1,10,1,19.91828,0,0,0,0,19.91828,0,0,0,3,0,6,77.1,6.9,0,73.9,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,2.991638,1
-15,4,95,0,2,425075,0,11089.74,19.04791,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.1,6.9,0,73.9,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,,0
-15,4,95,0,3,425075,0,11089.74,20.04791,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.1,6.9,0,73.9,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,,0
-15,4,95,0,1,425209,0,7910.823,30.63107,0,8,1,56.38664,.1821862,0,0,0,56.56882,0,0,0,2,0,4,47.9,10.3,1,63.6,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,63.6,8.976113,1.386294,4.035458,1
-15,4,95,0,2,425209,0,7910.823,31.63107,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,47.9,10.3,1,63.6,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,63.6,8.976113,1.386294,,0
-15,4,95,0,3,425209,0,7910.823,32.63107,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,47.9,10.3,1,63.6,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,63.6,8.976113,1.386294,,0
-15,4,95,1,1,425210,0,7910.823,6.349076,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,9.967326,0,88.9,700,700,1,1,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,,0
-15,4,95,1,2,425210,0,7910.823,7.349076,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,9.967326,0,88.9,700,700,1,1,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,,0
-15,4,95,1,3,425210,0,7910.823,8.349076,1,9,1,6.412997,0,0,0,0,6.412997,0,0,0,1,0,4,96.7,9.967326,0,88.9,700,700,1,1,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,1.858327,1
-15,4,95,1,1,425211,0,7910.823,26.4449,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,65.4,0,0,80.7,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,80.7,8.976113,1.386294,,0
-15,4,95,1,2,425211,0,7910.823,27.4449,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,65.4,0,0,80.7,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,80.7,8.976113,1.386294,,0
-15,4,95,1,3,425211,0,7910.823,28.4449,1,9,1,188.7559,0,0,0,0,188.7559,0,0,0,8,0,4,65.4,0,0,80.7,700,700,0,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,80.7,8.976113,1.386294,5.240455,1
-15,4,95,1,1,425212,0,7910.823,5.349761,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,88.9,700,700,1,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,,0
-15,4,95,1,2,425212,0,7910.823,6.349761,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,88.9,700,700,1,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,,0
-15,4,95,1,3,425212,0,7910.823,7.349761,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,88.9,700,700,1,0,1.386294,6.55108,0,4.564348,6.602374,1,0,0,88.9,8.976113,1.386294,,0
-18,4,25,0,1,425220,0,5625.807,27.96715,1,12,1,31.1236,4.698672,0,0,0,35.82227,0,0,0,2,0,4,88.8,6.9,0,86.4,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.635298,1.386294,3.57857,1
-18,4,25,0,2,425220,0,5625.807,28.96715,1,12,1,49.92968,1.851852,28.59822,0,0,80.37975,0,0,0,3,0,4,88.8,6.9,0,86.4,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.635298,1.386294,4.386762,1
-18,4,25,0,3,425220,0,5625.807,29.96715,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.8,6.9,0,86.4,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.635298,1.386294,,0
-18,4,25,0,1,425221,0,5625.807,6.360027,1,12,1,54.39224,15.35751,0,0,0,69.74975,0,0,0,4,0,4,76.7,9.967326,0,96.3,750,725,1,1,1.386294,6.586172,0,3.258096,8.006368,0,0,0,96.3,8.635298,1.386294,4.244914,1
-18,4,25,0,2,425221,0,5625.807,7.360027,1,12,1,37.03704,9.329583,0,0,0,46.36662,0,0,0,6,0,4,76.7,9.967326,0,96.3,750,725,1,1,1.386294,6.586172,0,3.258096,8.006368,0,0,0,96.3,8.635298,1.386294,3.83658,1
-18,4,25,0,3,425221,0,5625.807,8.360027,1,12,1,24.07567,7.308684,0,0,0,31.38435,0,0,0,3,0,4,76.7,9.967326,0,96.3,750,725,1,1,1.386294,6.586172,0,3.258096,8.006368,0,0,0,96.3,8.635298,1.386294,3.446309,1
-18,4,25,0,1,425222,0,5625.807,3.96167,0,12,1,13.78958,3.447395,0,0,0,17.23698,0,0,0,2,0,4,83.39137,9.967326,0,96.3,750,725,1,0,1.386294,6.586172,0,3.258096,8.006368,1,0,0,96.3,8.635298,1.386294,2.847057,1
-18,4,25,0,2,425222,0,5625.807,4.96167,0,12,1,5.625879,11.46273,0,0,0,17.08861,0,0,0,1,0,4,83.39137,9.967326,0,96.3,750,725,1,0,1.386294,6.586172,0,3.258096,8.006368,1,0,0,96.3,8.635298,1.386294,2.838412,1
-18,4,25,0,3,425222,0,5625.807,5.96167,0,12,1,18.48667,4.256234,0,0,0,22.74291,0,0,0,3,0,4,83.39137,9.967326,0,96.3,750,725,1,0,1.386294,6.586172,0,3.258096,8.006368,1,0,0,96.3,8.635298,1.386294,3.124253,1
-18,4,25,0,1,425223,0,5625.807,29.04038,0,12,1,0,1.787538,0,0,0,1.787538,0,0,0,0,0,4,77.7,13.8,0,76.1,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,76.1,8.635298,1.386294,.5808394,1
-18,4,25,0,2,425223,0,5625.807,30.04038,0,12,1,57.19644,15.80872,0,0,0,73.00516,0,0,0,2,0,4,77.7,13.8,0,76.1,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,76.1,8.635298,1.386294,4.29053,1
-18,4,25,0,3,425223,0,5625.807,31.04038,0,12,1,1.977644,7.678418,0,0,0,9.656062,0,0,0,0,0,4,77.7,13.8,0,76.1,750,725,0,0,1.386294,6.586172,0,3.258096,8.006368,0,0,0,76.1,8.635298,1.386294,2.267586,1
-11,4,0,1,1,425267,0,4166.569,4.295688,0,16,1,35.54869,4.121587,0,0,0,39.67027,0,0,0,4,0,4,83.39137,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,8.335088,1.386294,3.680602,1
-11,4,0,1,2,425267,0,4166.569,5.295688,0,16,1,42.61364,1.216856,0,28.40909,0,43.83049,0,0,2,0,0,4,83.39137,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,8.335088,1.386294,3.78033,1
-11,4,0,1,3,425267,0,4166.569,6.295688,0,16,1,10.83658,0,0,0,0,10.83658,0,0,0,0,1,4,83.39137,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,8.335088,1.386294,2.382928,1
-11,4,0,1,1,425268,0,4166.569,29.12526,1,16,1,46.36785,12.36476,27.56311,0,0,86.29572,0,0,0,4,0,4,76.1,13.8,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.335088,1.386294,4.45778,1
-11,4,0,1,2,425268,0,4166.569,30.12526,1,16,1,2.367424,5.776515,0,0,0,8.143939,0,0,0,0,0,4,76.1,13.8,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.335088,1.386294,2.097274,1
-11,4,0,1,3,425268,0,4166.569,31.12526,1,16,1,17.33854,5.205895,29.04205,0,0,51.58648,0,0,0,1,0,4,76.1,13.8,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.335088,1.386294,3.943259,1
-11,4,0,1,1,425269,0,4166.569,30.80356,0,15,1,9.27357,5.151984,0,0,0,14.42555,0,0,0,1,0,4,70.7,10.3,0,69.3,0,0,0,0,1.386294,0,0,0,0,1,0,0,69.3,8.335088,1.386294,2.669001,1
-11,4,0,1,2,425269,0,4166.569,31.80356,0,15,1,41.19318,2.462121,0,0,0,43.6553,0,0,0,2,0,4,70.7,10.3,0,69.3,0,0,0,0,1.386294,0,0,0,0,1,0,0,69.3,8.335088,1.386294,3.776325,1
-11,4,0,1,3,425269,0,4166.569,32.80356,0,15,1,50.06502,0,0,0,0,50.06502,0,0,0,1,1,4,70.7,10.3,0,69.3,0,0,0,0,1.386294,0,0,0,0,1,0,0,69.3,8.335088,1.386294,3.913322,1
-11,4,0,1,1,425270,0,4166.569,5.475702,1,16,1,21.12313,12.44204,0,0,0,33.56517,0,0,0,2,0,4,91.7,9.967326,0,85.2,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.2,8.335088,1.386294,3.513489,1
-11,4,0,1,2,425270,0,4166.569,6.475702,1,16,1,5.681818,17.65152,0,0,0,23.33333,0,0,0,1,0,4,91.7,9.967326,0,85.2,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.2,8.335088,1.386294,3.149883,1
-11,4,0,1,3,425270,0,4166.569,7.475702,1,16,1,35.37061,31.36107,0,0,328.0017,394.7334,1,0,0,4,0,4,91.7,9.967326,0,85.2,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.2,8.335088,1.386294,5.97821,1
-13,4,0,0,1,425275,0,2355.425,26.51882,0,12,1,68.12273,4.420177,11.56006,0,0,84.10297,0,0,0,3,0,1,85.1,6.9,0,59.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,59.1,7.764901,0,4.432042,1
-13,4,0,0,2,425275,0,2355.425,27.51882,0,12,1,294.6393,12.63736,0,0,0,307.2766,0,0,0,2,0,1,85.1,6.9,0,59.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,59.1,7.764901,0,5.727748,1
-13,4,0,0,3,425275,0,2355.425,28.51882,0,12,1,42.25198,0,0,0,0,42.25198,0,0,0,1,0,1,85.1,6.9,0,59.1,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,59.1,7.764901,0,3.743651,1
-11,4,0,1,1,425400,0,7910.823,61.08145,1,12,1,19.23077,0,0,0,0,19.23077,0,0,0,1,0,1,78.2,10.3,0,79.5,0,221.4,0,0,0,5.399971,0,0,0,1,0,0,79.5,8.976113,0,2.956511,1
-11,4,0,1,2,425400,0,7910.823,62.08145,1,12,1,38.11189,6.993007,0,0,0,45.1049,0,0,0,1,0,1,78.2,10.3,0,79.5,0,221.4,0,0,0,5.399971,0,0,0,1,0,0,79.5,8.976113,0,3.808991,1
-11,4,0,1,3,425400,0,7910.823,63.08145,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,78.2,10.3,0,79.5,0,221.4,0,0,0,5.399971,0,0,0,1,0,0,79.5,8.976113,0,,0
-11,4,0,1,1,425401,0,2620.528,29.25393,1,12,1,305.9248,6.3627,4.095827,0,0,316.3833,0,0,0,5,26,4,83,10.3,1,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.871512,1.386294,5.756955,1
-11,4,0,1,2,425401,0,2620.528,30.25393,1,12,1,239.4129,3.148674,4.734848,0,0,247.2964,0,0,0,3,12,4,83,10.3,1,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.871512,1.386294,5.510588,1
-11,4,0,1,3,425401,0,2620.528,31.25393,1,12,1,194.7768,1.690507,0,0,0,196.4673,0,0,0,2,12,4,83,10.3,1,53.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,53.4,7.871512,1.386294,5.280496,1
-11,4,0,1,1,425402,0,2620.528,29.20192,0,12,1,61.8238,0,0,0,0,61.8238,0,0,0,1,3,4,73.4,0,1,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,7.871512,1.386294,4.124289,1
-11,4,0,1,2,425402,0,2620.528,30.20192,0,12,1,13.25758,0,0,0,0,13.25758,0,0,0,1,0,4,73.4,0,1,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,7.871512,1.386294,2.584569,1
-11,4,0,1,3,425402,0,2620.528,31.20192,0,12,1,16.03815,0,0,0,0,16.03815,0,0,0,1,2,4,73.4,0,1,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,7.871512,1.386294,2.77497,1
-11,4,0,1,1,425403,0,2620.528,5.820671,0,12,1,36.06388,19.00567,0,0,0,55.06955,0,0,0,7,0,4,81.7,9.967326,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,1,0,51.9,7.871512,1.386294,4.008597,1
-11,4,0,1,2,425403,0,2620.528,6.820671,0,12,1,28.88258,4.52178,0,0,0,33.40436,0,0,0,3,1,4,81.7,9.967326,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,1,0,51.9,7.871512,1.386294,3.508686,1
-11,4,0,1,3,425403,0,2620.528,7.820671,0,12,1,164.5904,20.5505,5.20156,0,0,190.3424,0,0,0,8,2,4,81.7,9.967326,0,51.9,0,0,1,0,1.386294,0,0,0,0,0,1,0,51.9,7.871512,1.386294,5.248825,1
-11,4,0,1,1,425404,0,2620.528,2.595483,0,12,1,47.39825,20.39155,0,0,0,67.7898,0,0,0,8,0,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.871512,1.386294,4.216412,1
-11,4,0,1,2,425404,0,2620.528,3.595483,0,12,1,24.62121,11.10322,0,0,0,35.72443,0,0,0,4,0,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.871512,1.386294,3.575835,1
-11,4,0,1,3,425404,0,2620.528,4.595482,0,12,1,39.35414,3.879497,0,0,0,43.23363,0,0,0,4,1,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.871512,1.386294,3.766619,1
-11,4,0,1,1,425405,0,4686.804,6.234086,1,16,1,12.87996,8.475013,0,0,0,21.35497,0,0,0,2,0,2,83.3,9.967326,0,96.3,0,0,1,1,.6931472,0,0,0,0,0,0,0,96.3,8.45272,.6931472,3.061285,1
-11,4,0,1,2,425405,0,4686.804,7.234086,1,16,1,24.85795,9.114583,0,0,0,33.97254,0,0,0,2,0,2,83.3,9.967326,0,96.3,0,0,1,1,.6931472,0,0,0,0,0,0,0,96.3,8.45272,.6931472,3.525553,1
-11,4,0,1,3,425405,0,4686.804,8.234086,1,16,1,9.536194,4.61205,0,0,0,14.14824,0,0,0,2,0,2,83.3,9.967326,0,96.3,0,0,1,1,.6931472,0,0,0,0,0,0,0,96.3,8.45272,.6931472,2.64959,1
-11,4,0,1,4,425405,0,4686.804,9.234086,1,16,1,18.90508,1.949587,0,0,0,20.85467,0,0,0,2,0,2,83.3,9.967326,0,96.3,0,0,1,1,.6931472,0,0,0,0,0,0,0,96.3,8.45272,.6931472,3.037578,1
-11,4,0,1,5,425405,0,4686.804,10.23409,1,16,1,26.11807,0,0,0,0,26.11807,0,0,0,3,0,2,83.3,9.967326,0,96.3,0,0,1,1,.6931472,0,0,0,0,0,0,0,96.3,8.45272,.6931472,3.262627,1
-11,4,0,1,1,425406,0,4686.804,33.93566,1,16,1,18.03194,1.803194,0,0,0,19.83514,0,0,0,1,0,2,62.2,17.2,0,89.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,89.8,8.45272,.6931472,2.987455,1
-11,4,0,1,2,425406,0,4686.804,34.93566,1,16,1,7.102273,2.575758,0,0,0,9.67803,0,0,0,1,0,2,62.2,17.2,0,89.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,89.8,8.45272,.6931472,2.269858,1
-11,4,0,1,3,425406,0,4686.804,35.93566,1,16,1,81.72952,0,28.17512,0,0,109.9046,0,0,0,2,1,2,62.2,17.2,0,89.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,89.8,8.45272,.6931472,4.699613,1
-11,4,0,1,4,425406,0,4686.804,36.93566,1,16,1,141.2564,0,0,0,0,141.2564,0,0,0,8,0,2,62.2,17.2,0,89.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,89.8,8.45272,.6931472,4.950577,1
-11,4,0,1,5,425406,0,4686.804,37.93566,1,16,1,49.0161,0,0,0,0,49.0161,0,0,0,4,0,2,62.2,17.2,0,89.8,0,0,0,0,.6931472,0,0,0,0,0,0,0,89.8,8.45272,.6931472,3.892149,1
-13,4,0,0,1,425412,0,5167.155,29.4319,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,10.3,0,63.6,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,0,0,0,63.6,8.550271,1.098612,,0
-13,4,0,0,2,425412,0,5167.155,30.4319,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,10.3,0,63.6,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,0,0,0,63.6,8.550271,1.098612,,0
-13,4,0,0,3,425412,0,5167.155,31.4319,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,10.3,0,63.6,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,0,0,0,63.6,8.550271,1.098612,,0
-13,4,0,0,1,425413,0,5167.155,25.09514,1,12,1,72.00928,6.594539,0,0,391.6744,470.2782,1,0,0,4,0,3,83.5,6.9,0,67,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,1,0,0,67,8.550271,1.098612,6.153325,1
-13,4,0,0,2,425413,0,5167.155,26.09514,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.5,6.9,0,67,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,1,0,0,67,8.550271,1.098612,,0
-13,4,0,0,3,425413,0,5167.155,27.09514,1,12,1,33.59341,0,0,0,729.987,763.5804,1,0,0,0,0,3,83.5,6.9,0,67,450,505.92,0,0,1.098612,6.226378,1,4.564348,6.160541,1,0,0,67,8.550271,1.098612,6.638019,1
-13,4,0,0,1,425414,0,5167.155,4.246407,1,12,1,8.243174,0,0,0,0,8.243174,0,0,0,1,0,3,83.39137,9.967326,0,81.5,450,505.92,1,1,1.098612,6.226378,1,4.564348,6.160541,0,0,0,81.5,8.550271,1.098612,2.109385,1
-13,4,0,0,2,425414,0,5167.155,5.246407,1,12,1,5.681818,2.471591,0,0,0,8.153409,0,0,0,1,0,3,83.39137,9.967326,0,81.5,450,505.92,1,1,1.098612,6.226378,1,4.564348,6.160541,0,0,0,81.5,8.550271,1.098612,2.098436,1
-13,4,0,0,3,425414,0,5167.155,6.246407,1,12,1,6.328565,0,0,0,0,6.328565,0,0,0,1,0,3,83.39137,9.967326,0,81.5,450,505.92,1,1,1.098612,6.226378,1,4.564348,6.160541,0,0,0,81.5,8.550271,1.098612,1.845074,1
-11,4,0,1,1,425490,0,7910.823,59.24983,0,10,1,78.56775,2.575992,34.00309,0,0,115.1468,0,0,0,5,1,1,92,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.976113,0,4.746208,1
-11,4,0,1,2,425490,0,7910.823,60.24983,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.976113,0,,0
-11,4,0,1,3,425490,0,7910.823,61.24983,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,92,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.976113,0,,0
-11,4,0,0,1,425491,0,1271.554,1.478439,1,9,1,0,1.998988,0,0,0,1.998988,0,0,0,0,0,3,83.39137,9.967326,0,70.4,0,0,1,1,1.098612,0,0,0,0,1,0,0,70.4,7.148781,1.098612,.692641,1
-11,4,0,0,2,425491,0,1271.554,2.478439,1,9,1,14.91842,1.981352,0,0,0,16.89977,0,0,0,3,0,3,83.39137,9.967326,0,70.4,0,0,1,1,1.098612,0,0,0,0,1,0,0,70.4,7.148781,1.098612,2.8273,1
-11,4,0,0,3,425491,0,1271.554,3.478439,1,9,1,2.565199,0,0,0,0,2.565199,0,0,0,1,0,4,83.39137,9.967326,0,70.4,0,0,1,1,1.386294,0,0,0,0,1,0,0,70.4,7.148781,1.386294,.942036,1
-11,4,0,0,1,425492,0,1271.554,16.63518,1,9,1,49.0587,1.492915,0,0,0,50.55162,0,0,0,2,0,3,61.7,3.4,0,71.6,0,0,1,1,1.098612,0,0,0,0,1,0,0,71.6,7.148781,1.098612,3.922995,1
-11,4,0,0,2,425492,0,1271.554,17.63518,1,9,1,30.53613,11.6317,0,0,641.6317,683.7996,1,0,0,0,0,3,61.7,3.4,0,71.6,0,0,1,1,1.098612,0,0,0,0,1,0,0,71.6,7.148781,1.098612,6.527665,1
-11,4,0,0,3,425492,0,1271.554,18.63518,1,9,1,69.0466,24.62591,25.65199,0,0,119.3245,0,0,0,5,1,4,61.7,3.4,0,71.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.6,7.148781,1.386294,4.781847,1
-11,4,0,0,1,425493,0,1271.554,21.83984,0,8,1,31.09818,0,0,0,523.1528,554.251,1,0,0,1,0,3,83.5,3.4,0,79.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,79.8,7.148781,1.098612,6.317618,1
-11,4,0,0,2,425493,0,1271.554,22.83984,0,8,1,105.8555,0,1.165501,0,0,107.021,0,0,0,4,0,3,83.5,3.4,0,79.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,79.8,7.148781,1.098612,4.673025,1
-11,4,0,0,3,425493,0,1271.554,23.83984,0,8,1,38.47798,8.529286,0,0,1347.862,1394.87,1,0,0,3,0,4,83.5,3.4,0,79.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,79.8,7.148781,1.386294,7.240556,1
-11,4,0,1,1,425513,0,1906.158,34.45311,0,12,1,95.52126,19.76215,21.25506,0,422.7834,559.3218,1,0,0,5,0,6,77.7,3.4,1,42,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,42,7.55337,1.791759,6.326725,1
-11,4,0,1,2,425513,0,1906.158,35.45311,0,12,1,2.331002,34.75525,25.17483,0,0,62.26107,0,0,0,1,0,6,77.7,3.4,1,42,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,42,7.55337,1.791759,4.131336,1
-11,4,0,1,3,425513,0,1906.158,36.45311,0,12,1,6.412997,50.83369,0,0,843.3732,900.6199,1,0,0,1,0,6,77.7,3.4,1,42,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,42,7.55337,1.791759,6.803083,1
-11,4,0,1,4,425513,0,1906.158,37.45311,0,12,1,46.31053,44.58109,22.29055,12.80553,0,113.1822,0,0,4,4,0,6,77.7,3.4,1,42,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,42,7.55337,1.791759,4.728999,1
-11,4,0,1,5,425513,0,1906.158,38.45311,0,12,1,29.1535,45.76748,0,0,0,74.92097,0,0,0,2,0,6,77.7,3.4,1,42,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,42,7.55337,1.791759,4.316434,1
-11,4,0,1,1,425514,0,1906.158,9.916495,0,12,1,13.48178,1.912956,0,0,0,15.39474,0,0,0,1,0,6,80,9.967326,1,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,74.1,7.55337,1.791759,2.734026,1
-11,4,0,1,2,425514,0,1906.158,10.9165,0,12,1,115.3846,7.762238,23.31002,0,0,146.4569,0,0,0,2,0,6,80,9.967326,1,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,74.1,7.55337,1.791759,4.986731,1
-11,4,0,1,3,425514,0,1906.158,11.9165,0,12,1,8.550663,2.565199,10.2608,0,0,21.37666,0,0,0,1,0,6,80,9.967326,1,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,74.1,7.55337,1.791759,3.062299,1
-11,4,0,1,4,425514,0,1906.158,12.9165,0,12,1,221.6372,8.18601,0,12.80553,0,229.8232,0,0,4,8,0,6,80,9.967326,1,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,74.1,7.55337,1.791759,5.43731,1
-11,4,0,1,5,425514,0,1906.158,13.9165,0,12,1,38.63716,9.167544,0,0,0,47.80471,0,0,0,5,0,6,80,9.967326,1,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,74.1,7.55337,1.791759,3.867124,1
-11,4,0,1,1,425515,0,1906.158,5.445585,1,12,1,51.05263,17.90992,0,0,248.2794,317.2419,1,0,0,7,0,6,76.7,9.967326,0,25.9,0,291.84,1,1,1.791759,5.676206,0,0,0,0,1,0,25.9,7.55337,1.791759,5.759665,1
-11,4,0,1,2,425515,0,1906.158,6.445585,1,12,1,101.6317,17.9021,0,0,0,119.5338,0,0,0,5,0,6,76.7,9.967326,0,25.9,0,291.84,1,1,1.791759,5.676206,0,0,0,0,1,0,25.9,7.55337,1.791759,4.783599,1
-11,4,0,1,3,425515,0,1906.158,7.445585,1,12,1,0,2.052159,0,0,0,2.052159,0,0,0,0,0,6,76.7,9.967326,0,25.9,0,291.84,1,1,1.791759,5.676206,0,0,0,0,1,0,25.9,7.55337,1.791759,.7188925,1
-11,4,0,1,4,425515,0,1906.158,8.445585,1,12,1,0,5.169101,0,12.80553,0,5.169101,0,0,4,0,0,6,76.7,9.967326,0,25.9,0,291.84,1,1,1.791759,5.676206,0,0,0,0,1,0,25.9,7.55337,1.791759,1.642699,1
-11,4,0,1,5,425515,0,1906.158,9.445585,1,12,1,7.024939,1.791359,0,0,0,8.816298,0,0,0,1,0,6,76.7,9.967326,0,25.9,0,291.84,1,1,1.791759,5.676206,0,0,0,0,1,0,25.9,7.55337,1.791759,2.176602,1
-11,4,0,1,1,425516,0,1906.158,11.36756,1,12,1,35.68826,0,0,0,0,35.68826,0,0,0,2,0,6,58.3,9.967326,0,81.5,0,291.84,1,1,1.791759,5.676206,0,0,0,1,0,0,81.5,7.55337,1.791759,3.574822,1
-11,4,0,1,2,425516,0,1906.158,12.36756,1,12,1,37.29604,1.631702,22.37762,0,0,61.30536,0,0,0,2,0,6,58.3,9.967326,0,81.5,0,291.84,1,1,1.791759,5.676206,0,0,0,1,0,0,81.5,7.55337,1.791759,4.115867,1
-11,4,0,1,3,425516,0,1906.158,13.36756,1,12,1,20.62847,2.351432,0,0,0,22.97991,0,0,0,2,0,6,58.3,9.967326,0,81.5,0,291.84,1,1,1.791759,5.676206,0,0,0,1,0,0,81.5,7.55337,1.791759,3.13462,1
-11,4,0,1,4,425516,0,1906.158,14.36756,1,12,1,58.4166,13.87394,24.59646,12.80553,0,96.88701,0,0,4,5,2,6,58.3,9.967326,0,81.5,0,291.84,1,1,1.791759,5.676206,0,0,0,1,0,0,81.5,7.55337,1.791759,4.573545,1
-11,4,0,1,5,425516,0,1906.158,15.36756,1,12,1,107.2533,10.39691,0,0,0,117.6502,0,0,0,7,0,6,58.3,9.967326,0,81.5,0,291.84,1,1,1.791759,5.676206,0,0,0,1,0,0,81.5,7.55337,1.791759,4.767715,1
-11,4,0,1,1,425517,0,1906.158,31.61123,1,12,1,222.166,14.13968,5.313765,0,636.6093,878.2288,2,0,0,11,0,6,70.2,17.2,0,76.1,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,76.1,7.55337,1.791759,6.777907,1
-11,4,0,1,2,425517,0,1906.158,32.61123,1,12,1,52.21445,9.813519,6.993007,0,0,69.02098,0,0,0,4,0,6,70.2,17.2,0,76.1,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,76.1,7.55337,1.791759,4.234411,1
-11,4,0,1,3,425517,0,1906.158,33.61123,1,12,1,140.8294,65.34844,0,0,531.6204,737.7982,1,0,0,11,0,6,70.2,17.2,0,76.1,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,76.1,7.55337,1.791759,6.603671,1
-11,4,0,1,4,425517,0,1906.158,34.61123,1,12,1,162.8939,34.28132,21.13759,12.82091,0,218.3128,0,0,4,9,3,6,70.2,17.2,0,76.1,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,76.1,7.55337,1.791759,5.385929,1
-11,4,0,1,5,425517,0,1906.158,35.61123,1,12,1,136.0204,42.04426,0,0,0,178.0646,0,0,0,8,0,6,70.2,17.2,0,76.1,0,291.84,0,0,1.791759,5.676206,0,0,0,1,0,0,76.1,7.55337,1.791759,5.182147,1
-11,4,0,1,1,425518,0,1906.158,6.61191,0,12,1,78.82085,1.518219,22.26721,0,0,102.6063,0,0,0,6,0,6,58.3,9.967326,0,77.8,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,77.8,7.55337,1.791759,4.630899,1
-11,4,0,1,2,425518,0,1906.158,7.61191,0,12,1,115.9674,1.678322,0,0,0,117.6457,0,0,0,9,0,6,58.3,9.967326,0,77.8,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,77.8,7.55337,1.791759,4.767677,1
-11,4,0,1,3,425518,0,1906.158,8.61191,0,12,1,81.12441,7.887986,0,0,0,89.0124,0,0,0,6,0,6,58.3,9.967326,0,77.8,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,77.8,7.55337,1.791759,4.488776,1
-11,4,0,1,4,425518,0,1906.158,9.61191,0,12,1,132.206,10.97233,0,12.82091,0,143.1783,0,0,4,10,0,6,58.3,9.967326,0,77.8,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,77.8,7.55337,1.791759,4.964091,1
-11,4,0,1,5,425518,0,1906.158,10.61191,0,12,1,134.1658,4.56621,0,0,0,138.732,0,0,0,5,0,6,58.3,9.967326,0,77.8,0,291.84,1,0,1.791759,5.676206,0,0,0,0,1,0,77.8,7.55337,1.791759,4.932544,1
-13,4,0,1,1,425519,0,5113.783,45.93566,1,12,1,20.42901,0,0,0,0,20.42901,0,0,0,2,0,1,81.4,6.9,0,95.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,95.5,8.53989,0,3.016956,1
-13,4,0,1,2,425519,0,5113.783,46.93566,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,81.4,6.9,0,95.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,95.5,8.53989,0,,0
-13,4,0,1,3,425519,0,5113.783,47.93566,1,12,1,112.5322,0,0,0,0,112.5322,0,0,0,0,0,1,81.4,6.9,0,95.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,95.5,8.53989,0,4.72324,1
-13,4,0,1,1,425557,0,7910.823,52.25188,1,12,1,17.71255,0,48.07692,0,0,65.78947,0,0,0,2,0,1,87.2,6.9,0,87.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,87.5,8.976113,0,4.18646,1
-13,4,0,1,2,425557,0,7910.823,53.25188,1,12,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,1,87.2,6.9,0,87.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,87.5,8.976113,0,1.721767,1
-13,4,0,1,3,425557,0,7910.823,54.25188,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,87.2,6.9,0,87.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,87.5,8.976113,0,,0
-13,4,0,1,1,425585,0,6996.481,41.36071,0,19,1,40.56162,6.24025,0,0,0,46.80187,0,0,0,3,0,3,83,3.4,0,84.1,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,0,0,0,84.1,8.853306,1.098612,3.845923,1
-13,4,0,1,2,425585,0,6996.481,42.36071,0,19,1,0,0,0,0,0,0,0,0,0,0,0,3,83,3.4,0,84.1,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,0,0,0,84.1,8.853306,1.098612,,0
-13,4,0,1,3,425585,0,6996.481,43.36071,0,19,1,8.779632,0,0,0,0,8.779632,0,0,0,1,0,3,83,3.4,0,84.1,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,0,0,0,84.1,8.853306,1.098612,2.172435,1
-13,4,0,1,1,425586,0,6996.481,34.65298,1,19,1,101.7733,7.618305,0,0,0,109.3916,0,0,0,5,0,3,89.4,24.1,0,40.9,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,40.9,8.853306,1.098612,4.694934,1
-13,4,0,1,2,425586,0,6996.481,35.65298,1,19,1,40.61156,23.88438,0,0,0,64.49594,0,0,0,3,0,3,89.4,24.1,0,40.9,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,40.9,8.853306,1.098612,4.166602,1
-13,4,0,1,3,425586,0,6996.481,36.65298,1,19,1,33.58209,7.787533,0,0,540.0571,581.4267,1,0,0,1,0,3,89.4,24.1,0,40.9,450,447.84,0,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,40.9,8.853306,1.098612,6.365485,1
-13,4,0,1,1,425587,0,6996.481,3.014374,0,19,1,65.21061,7.25429,0,0,0,72.4649,0,0,0,8,0,3,83.39137,9.967326,0,85.2,450,447.84,1,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,85.2,8.853306,1.098612,4.283102,1
-13,4,0,1,2,425587,0,6996.481,4.014374,0,19,1,10.63067,7.262303,0,0,0,17.89298,0,0,0,2,0,3,83.39137,9.967326,0,85.2,450,447.84,1,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,85.2,8.853306,1.098612,2.884408,1
-13,4,0,1,3,425587,0,6996.481,5.014374,0,19,1,13.16945,2.589991,0,0,0,15.75944,0,0,0,2,0,3,83.39137,9.967326,0,85.2,450,447.84,1,0,1.098612,6.104436,1,4.564348,6.160541,1,0,0,85.2,8.853306,1.098612,2.757439,1
-19,4,25,1,1,425605,0,9041.643,13.92745,1,16,1,52.55023,1.555899,0,0,0,54.10613,0,0,0,3,0,7,80,9.967326,0,81.5,750,725,1,1,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.5,9.109707,1.94591,3.990947,1
-19,4,25,1,2,425605,0,9041.643,14.92745,1,16,1,70.07576,8.854167,29.00095,0,656.8182,764.749,1,0,0,7,0,7,80,9.967326,0,81.5,750,725,1,1,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.5,9.109707,1.94591,6.639548,1
-19,4,25,1,3,425605,0,9041.643,15.92745,1,16,1,48.37451,12.56177,0,0,0,60.93628,0,0,0,4,0,7,80,9.967326,0,81.5,750,725,1,1,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.5,9.109707,1.94591,4.109829,1
-19,4,25,1,4,425605,0,9041.643,16.92745,1,16,1,0,4.052777,0,0,0,4.052777,0,0,0,0,0,7,80,9.967326,0,81.5,750,725,1,1,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.5,9.109707,1.94591,1.399402,1
-19,4,25,1,5,425605,0,9041.643,17.92745,1,16,1,0,0,0,0,0,0,0,0,0,0,0,7,80,9.967326,0,81.5,750,725,1,1,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.5,9.109707,1.94591,,0
-19,4,25,1,1,425606,0,9041.643,8.167009,0,16,1,0,.4739825,0,0,0,.4739825,0,0,0,0,0,7,78.3,9.967326,0,70.4,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,70.4,9.109707,1.94591,-.7465849,1
-19,4,25,1,2,425606,0,9041.643,9.167009,0,16,1,23.20076,3.432765,0,0,0,26.63352,0,0,0,3,0,7,78.3,9.967326,0,70.4,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,70.4,9.109707,1.94591,3.282171,1
-19,4,25,1,3,425606,0,9041.643,10.16701,0,16,1,0,2.31036,0,0,0,2.31036,0,0,0,0,0,7,78.3,9.967326,0,70.4,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,70.4,9.109707,1.94591,.8374032,1
-19,4,25,1,4,425606,0,9041.643,11.16701,0,16,1,5.907838,.9216227,0,0,0,6.829461,0,0,0,1,0,7,78.3,9.967326,0,70.4,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,70.4,9.109707,1.94591,1.921246,1
-19,4,25,1,5,425606,0,9041.643,12.16701,0,16,1,41.1449,0,28.62254,0,0,69.76744,0,0,0,1,3,7,78.3,9.967326,0,70.4,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,70.4,9.109707,1.94591,4.245167,1
-19,4,25,1,1,425607,0,9041.643,15.12936,0,16,1,7.727975,.4739825,0,0,0,8.201958,0,0,0,1,0,7,73.4,0,0,75,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,75,9.109707,1.94591,2.104373,1
-19,4,25,1,2,425607,0,9041.643,16.12936,0,16,1,0,1.751894,0,0,0,1.751894,0,0,0,0,0,7,73.4,0,0,75,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,75,9.109707,1.94591,.5606975,1
-19,4,25,1,3,425607,0,9041.643,17.12936,0,16,1,0,2.31036,0,0,0,2.31036,0,0,0,0,0,7,73.4,0,0,75,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,75,9.109707,1.94591,.8374032,1
-19,4,25,1,4,425607,0,9041.643,18.12936,0,16,1,11.81568,.9216227,0,0,0,12.7373,0,0,0,1,0,7,73.4,0,0,75,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,75,9.109707,1.94591,2.544534,1
-19,4,25,1,5,425607,0,9041.643,19.12936,0,16,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,0,0,75,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,75,9.109707,1.94591,,0
-19,4,25,1,1,425608,0,9041.643,43.8768,0,18,1,7.727975,5.538382,35.54869,0,0,48.81504,0,0,0,0,1,7,71.8,3.4,0,81.8,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.8,9.109707,1.94591,3.888039,1
-19,4,25,1,2,425608,0,9041.643,44.8768,0,18,1,11.83712,8.59375,0,0,0,20.43087,0,0,0,2,0,7,71.8,3.4,0,81.8,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.8,9.109707,1.94591,3.017047,1
-19,4,25,1,3,425608,0,9041.643,45.8768,0,18,1,0,0,0,0,0,0,0,0,0,0,0,7,71.8,3.4,0,81.8,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.8,9.109707,1.94591,,0
-19,4,25,1,4,425608,0,9041.643,46.8768,0,18,1,15.75423,0,33.08389,0,0,48.83813,0,0,0,1,1,7,71.8,3.4,0,81.8,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.8,9.109707,1.94591,3.888511,1
-19,4,25,1,5,425608,0,9041.643,47.8768,0,18,1,14.31127,0,15.02683,0,0,29.3381,0,0,0,1,1,7,71.8,3.4,0,81.8,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,81.8,9.109707,1.94591,3.378887,1
-19,4,25,1,1,425609,0,9041.643,12.2601,0,16,1,6.697578,3.153014,0,0,0,9.850593,0,0,0,1,0,7,78.3,9.967326,0,92.6,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,92.6,9.109707,1.94591,2.287532,1
-19,4,25,1,2,425609,0,9041.643,13.2601,0,16,1,30.77652,5.018939,28.40909,0,0,64.20454,0,0,0,3,0,7,78.3,9.967326,0,92.6,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,92.6,9.109707,1.94591,4.162074,1
-19,4,25,1,3,425609,0,9041.643,14.2601,0,16,1,0,2.31036,0,0,0,2.31036,0,0,0,0,0,7,78.3,9.967326,0,92.6,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,92.6,9.109707,1.94591,.8374032,1
-19,4,25,1,4,425609,0,9041.643,15.2601,0,16,1,7.483261,5.746357,0,0,0,13.22962,0,0,0,1,0,7,78.3,9.967326,0,92.6,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,92.6,9.109707,1.94591,2.582458,1
-19,4,25,1,5,425609,0,9041.643,16.2601,0,16,1,14.31127,0,21.46691,0,0,35.77818,0,0,0,1,1,7,78.3,9.967326,0,92.6,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,92.6,9.109707,1.94591,3.577338,1
-19,4,25,1,1,425610,0,9041.643,10.11636,0,16,1,0,4.750129,0,0,0,4.750129,0,0,0,0,0,7,85,9.967326,0,85.2,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,85.2,9.109707,1.94591,1.558172,1
-19,4,25,1,2,425610,0,9041.643,11.11636,0,16,1,38.82576,5.681818,0,0,0,44.50758,0,0,0,4,0,7,85,9.967326,0,85.2,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,85.2,9.109707,1.94591,3.795659,1
-19,4,25,1,3,425610,0,9041.643,12.11636,0,16,1,6.501951,2.31036,0,0,0,8.81231,0,0,0,1,0,7,85,9.967326,0,85.2,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,85.2,9.109707,1.94591,2.17615,1
-19,4,25,1,4,425610,0,9041.643,13.11636,0,16,1,7.877117,3.737692,0,0,0,11.61481,0,0,0,1,0,7,85,9.967326,0,85.2,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,85.2,9.109707,1.94591,2.452281,1
-19,4,25,1,5,425610,0,9041.643,14.11636,0,16,1,5.366726,0,0,0,0,5.366726,0,0,0,1,0,7,85,9.967326,0,85.2,750,725,1,0,1.94591,6.586172,0,3.258096,8.006368,0,0,0,85.2,9.109707,1.94591,1.680218,1
-19,4,25,1,1,425611,0,9041.643,42.91855,1,16,1,12.87996,7.779495,22.15353,0,0,42.81298,0,0,0,1,0,7,79.8,10.3,1,76.1,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,1,0,0,76.1,9.109707,1.94591,3.756841,1
-19,4,25,1,2,425611,0,9041.643,43.91855,1,16,1,28.40909,0,49.71591,0,0,78.125,0,0,0,2,0,7,79.8,10.3,1,76.1,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,1,0,0,76.1,9.109707,1.94591,4.35831,1
-19,4,25,1,3,425611,0,9041.643,44.91855,1,16,1,42.80451,2.860858,12.13697,0,0,57.80234,0,0,0,3,0,7,79.8,10.3,1,76.1,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,1,0,0,76.1,9.109707,1.94591,4.057029,1
-19,4,25,1,4,425611,0,9041.643,45.91855,1,16,1,63.80465,0,38.99173,0,0,102.7964,0,0,0,3,0,7,79.8,10.3,1,76.1,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,1,0,0,76.1,9.109707,1.94591,4.63275,1
-19,4,25,1,5,425611,0,9041.643,46.91855,1,16,1,8.944544,2.146691,26.83363,0,0,37.92487,0,0,0,1,0,7,79.8,10.3,1,76.1,750,725,0,0,1.94591,6.586172,0,3.258096,8.006368,1,0,0,76.1,9.109707,1.94591,3.635607,1
-11,4,0,1,1,425624,0,3304.399,55.72895,0,16,1,45.39782,0,43.94176,0,0,89.33958,0,0,0,2,0,1,72.3,13.8,0,72.7,0,393.4,0,0,0,5.974827,0,0,0,0,0,0,72.7,8.103312,0,4.492445,1
-11,4,0,1,2,425624,0,3304.399,56.72895,0,16,1,64.02293,4.992833,32.48925,0,0,101.505,0,0,0,4,0,1,72.3,13.8,0,72.7,0,393.4,0,0,0,5.974827,0,0,0,0,0,0,72.7,8.103312,0,4.620108,1
-11,4,0,1,3,425624,0,3304.399,57.72895,0,16,1,22.38806,0,41.70325,0,0,64.09131,0,0,0,2,0,1,72.3,13.8,0,72.7,0,393.4,0,0,0,5.974827,0,0,0,0,0,0,72.7,8.103312,0,4.160309,1
-13,4,0,1,1,425630,0,5885.63,60.81314,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,10.3,0,79.5,150,405.6,0,0,0,6.005367,1,4.564348,5.061929,0,0,1,79.5,8.680439,0,,0
-13,4,0,1,2,425630,0,5885.63,61.81314,0,12,1,34.09091,9.422348,112.9735,0,0,156.4867,0,0,0,1,0,1,88.3,10.3,0,79.5,150,405.6,0,0,0,6.005367,1,4.564348,5.061929,0,0,1,79.5,8.680439,0,5.052971,1
-13,4,0,1,3,425630,0,5885.63,62.81314,0,12,1,0,17.90204,0,0,0,17.90204,0,0,0,0,0,1,88.3,10.3,0,79.5,150,405.6,0,0,0,6.005367,1,4.564348,5.061929,0,0,1,79.5,8.680439,0,2.884914,1
-6,4,25,0,1,425636,0,4418.182,28.87337,0,17,1,10.30397,0,0,0,0,10.30397,0,0,0,1,0,1,69.1,13.8,0,83,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,83,8.39371,0,2.332529,1
-6,4,25,0,2,425636,0,4418.182,29.87337,0,17,1,11.83712,0,39.29924,0,0,51.13636,0,0,0,1,0,1,69.1,13.8,0,83,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,83,8.39371,0,3.934496,1
-6,4,25,0,3,425636,0,4418.182,30.87337,0,17,1,61.8769,26.15952,0,0,0,88.03641,0,0,0,1,0,1,69.1,13.8,0,83,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,83,8.39371,0,4.47775,1
-11,4,0,1,1,425656,0,6866.276,57.80698,1,10,1,28.33591,4.636785,31.9423,0,0,64.91499,0,0,0,1,1,2,89.4,17.2,0,68.2,0,229.92,0,0,.6931472,5.437731,0,0,0,1,0,0,68.2,8.834523,.6931472,4.173079,1
-11,4,0,1,2,425656,0,6866.276,58.80698,1,10,1,63.58902,4.000947,26.04167,0,0,93.63163,0,0,0,5,0,2,89.4,17.2,0,68.2,0,229.92,0,0,.6931472,5.437731,0,0,0,1,0,0,68.2,8.834523,.6931472,4.539368,1
-11,4,0,1,3,425656,0,6866.276,59.80698,1,10,1,138.0581,0,33.15995,0,0,171.218,0,0,0,2,4,2,89.4,17.2,0,68.2,0,229.92,0,0,.6931472,5.437731,0,0,0,1,0,0,68.2,8.834523,.6931472,5.142938,1
-11,4,0,1,1,425657,0,6866.276,60.95551,0,10,1,15.8372,3.06543,0,0,0,18.90263,0,0,0,2,0,2,94.7,10.3,0,80.7,0,229.92,0,0,.6931472,5.437731,0,0,0,0,0,0,80.7,8.834523,.6931472,2.939301,1
-11,4,0,1,2,425657,0,6866.276,61.95551,0,10,1,49.85796,5.208333,27.46212,0,0,82.52841,0,0,0,3,1,2,94.7,10.3,0,80.7,0,229.92,0,0,.6931472,5.437731,0,0,0,0,0,0,80.7,8.834523,.6931472,4.413143,1
-11,4,0,1,3,425657,0,6866.276,62.95551,0,10,1,26.87473,0,18.20546,0,0,45.08019,0,0,0,1,1,2,94.7,10.3,0,80.7,0,229.92,0,0,.6931472,5.437731,0,0,0,0,0,0,80.7,8.834523,.6931472,3.808443,1
-13,4,0,1,1,425658,0,8589.442,60.63792,0,12,1,42.70479,51.31376,0,0,0,94.01855,0,0,0,4,0,2,83,13.8,1,50,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,50,9.058406,.6931472,4.543492,1
-13,4,0,1,2,425658,0,8589.442,61.63792,0,12,1,16.5625,39.48864,0,0,0,56.05114,0,0,0,1,0,2,83,13.8,1,50,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,50,9.058406,.6931472,4.026264,1
-13,4,0,1,3,425658,0,8589.442,62.63792,0,12,1,32.35804,50.36844,0,0,0,82.72649,0,0,0,3,0,2,83,13.8,1,50,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,50,9.058406,.6931472,4.41554,1
-13,4,0,1,1,425659,0,8589.442,56.93361,1,12,1,38.12468,4.070067,0,0,0,42.19474,0,0,0,2,0,2,88.8,20.7,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.058406,.6931472,3.742296,1
-13,4,0,1,2,425659,0,8589.442,57.93361,1,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,2,88.8,20.7,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.058406,.6931472,1.737271,1
-13,4,0,1,3,425659,0,8589.442,58.93361,1,12,1,41.07066,3.229302,0,0,0,44.29996,0,0,0,3,0,2,88.8,20.7,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.1,9.058406,.6931472,3.790984,1
-13,4,0,1,1,425703,0,9546.628,11.38672,0,16,1,19.31994,0,0,0,0,19.31994,0,0,0,0,0,4,83.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.164048,1.386294,2.961138,1
-13,4,0,1,2,425703,0,9546.628,12.38672,0,16,1,11.83712,0,18.93939,0,0,30.77652,0,0,0,1,0,4,83.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.164048,1.386294,3.426752,1
-13,4,0,1,3,425703,0,9546.628,13.38672,0,16,1,42.91287,0,0,0,0,42.91287,0,0,0,1,2,4,83.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.164048,1.386294,3.759172,1
-13,4,0,1,4,425703,0,9546.628,14.38672,0,16,1,8.664828,0,0,0,0,8.664828,0,0,0,2,0,4,83.3,9.967326,0,96.3,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.164048,1.386294,2.159272,1
-13,4,0,1,5,425703,0,9546.628,15.38672,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,9.967326,0,96.3,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.164048,1.098612,,0
-13,4,0,1,1,425704,0,9546.628,12.49281,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,63.6,9.967326,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.164048,1.386294,,0
-13,4,0,1,2,425704,0,9546.628,13.49281,1,16,1,14.20455,0,0,0,0,14.20455,0,0,0,2,0,4,63.6,9.967326,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.164048,1.386294,2.653562,1
-13,4,0,1,3,425704,0,9546.628,14.49281,1,16,1,7.368877,0,0,0,0,7.368877,0,0,0,2,0,4,63.6,9.967326,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.164048,1.386294,1.997265,1
-13,4,0,1,4,425704,0,9546.628,15.49281,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,63.6,9.967326,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,9.164048,1.386294,,0
-13,4,0,1,1,425705,0,9546.628,32.84326,1,16,1,12.87996,0,0,0,0,12.87996,0,0,0,2,0,4,77.7,6.9,0,83.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.164048,1.386294,2.555673,1
-13,4,0,1,2,425705,0,9546.628,33.84326,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,6.9,0,83.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.164048,1.386294,,0
-13,4,0,1,3,425705,0,9546.628,34.84326,1,16,1,303.498,0,23.84048,0,0,327.3385,0,0,0,4,0,4,77.7,6.9,0,83.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.164048,1.386294,5.790995,1
-13,4,0,1,4,425705,0,9546.628,35.84326,1,16,1,43.718,0,0,0,0,43.718,0,0,0,3,2,4,77.7,6.9,0,83.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.164048,1.386294,3.77776,1
-13,4,0,1,5,425705,0,9546.628,36.84326,1,16,1,57.33453,0,0,0,0,57.33453,0,0,0,2,0,3,77.7,6.9,0,83.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.164048,1.098612,4.048903,1
-13,4,0,1,1,425706,0,9546.628,36.03012,0,18,1,54.09583,0,0,0,0,54.09583,0,0,0,1,0,4,92,3.4,0,94.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,94.3,9.164048,1.386294,3.990757,1
-13,4,0,1,2,425706,0,9546.628,37.03012,0,18,1,21.30682,1.647727,0,0,0,22.95455,0,0,0,2,0,4,92,3.4,0,94.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,94.3,9.164048,1.386294,3.133516,1
-13,4,0,1,3,425706,0,9546.628,38.03012,0,18,1,13.35067,0,28.17512,0,0,41.52579,0,0,0,1,0,4,92,3.4,0,94.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,94.3,9.164048,1.386294,3.726315,1
-13,4,0,1,4,425706,0,9546.628,39.03012,0,18,1,9.846396,0,0,0,0,9.846396,0,0,0,2,0,4,92,3.4,0,94.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,94.3,9.164048,1.386294,2.287106,1
-13,4,0,1,5,425706,0,9546.628,40.03012,0,18,1,17.7102,0,0,0,0,17.7102,0,0,0,1,0,3,92,3.4,0,94.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,94.3,9.164048,1.098612,2.874141,1
-17,4,25,0,1,425742,0,8029.326,57.18549,0,11,1,18.65679,0,0,0,0,18.65679,0,0,0,1,0,2,89.4,10.3,0,78.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,78.4,8.99098,.6931472,2.92621,1
-17,4,25,0,2,425742,0,8029.326,58.18549,0,11,1,80.07501,2.006563,40.43132,0,1555.391,1677.904,1,0,0,6,1,2,89.4,10.3,0,78.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,78.4,8.99098,.6931472,7.425301,1
-17,4,25,0,3,425742,0,8029.326,59.18549,0,11,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,2,89.4,10.3,0,78.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,78.4,8.99098,.6931472,1.8639,1
-17,4,25,0,1,425743,0,8029.326,60.25736,1,12,1,10.2145,0,0,0,0,10.2145,0,0,0,1,0,2,94.1,13.8,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.99098,.6931472,2.323809,1
-17,4,25,0,2,425743,0,8029.326,61.25736,1,12,1,61.39241,30.26254,31.41116,0,0,123.0661,0,0,0,3,1,2,94.1,13.8,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.99098,.6931472,4.812722,1
-17,4,25,0,3,425743,0,8029.326,62.25736,1,12,1,5.159071,36.92175,0,0,0,42.08083,0,0,0,1,0,2,94.1,13.8,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,8.99098,.6931472,3.739592,1
-11,4,0,1,1,425820,0,5639.296,37.62628,0,6,1,44.05005,13.78958,20.42901,0,0,78.26864,0,0,0,5,0,5,84.6,17.2,1,86.4,0,225.6,0,0,1.609438,5.418764,0,0,0,1,0,0,86.4,8.637691,1.609438,4.360147,1
-11,4,0,1,2,425820,0,5639.296,38.62628,0,6,1,148.1481,7.501172,0,0,0,155.6493,0,0,0,5,0,5,84.6,17.2,1,86.4,0,225.6,0,0,1.609438,5.418764,0,0,0,1,0,0,86.4,8.637691,1.609438,5.047606,1
-11,4,0,1,3,425820,0,5639.296,39.62628,0,6,1,41.59501,14.74635,26.6552,0,0,82.99656,0,0,0,3,1,5,84.6,17.2,1,86.4,0,225.6,0,0,1.609438,5.418764,0,0,0,1,0,0,86.4,8.637691,1.609438,4.418799,1
-11,4,0,1,1,425821,0,5639.296,8.271048,1,11,1,25.53626,8.171603,0,0,0,33.70787,0,0,0,3,0,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,3.517731,1
-11,4,0,1,2,425821,0,5639.296,9.271048,1,11,1,2.812939,0,0,0,0,2.812939,0,0,0,1,0,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,1.03423,1
-11,4,0,1,3,425821,0,5639.296,10.27105,1,11,1,22.18401,2.149613,0,0,0,24.33362,0,0,0,2,1,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,3.191859,1
-11,4,0,1,1,425822,0,5639.296,6.551677,1,11,1,38.4474,1.02145,0,0,0,39.46885,0,0,0,5,0,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,3.675512,1
-11,4,0,1,2,425822,0,5639.296,7.551677,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,,0
-11,4,0,1,3,425822,0,5639.296,8.551677,1,11,1,10.74806,.7523646,0,0,0,11.50043,0,0,0,0,1,5,81.7,9.967326,0,88.9,0,225.6,1,1,1.609438,5.418764,0,0,0,0,0,0,88.9,8.637691,1.609438,2.442384,1
-11,4,0,1,1,425823,0,5639.296,27.60849,1,11,1,45.45454,3.830439,22.98264,0,0,72.26762,0,0,0,5,0,5,87.2,20.7,0,93.2,0,225.6,0,0,1.609438,5.418764,0,0,0,0,0,0,93.2,8.637691,1.609438,4.280376,1
-11,4,0,1,2,425823,0,5639.296,28.60849,1,11,1,61.65026,16.1744,12.1894,0,0,90.01406,0,0,0,4,1,5,87.2,20.7,0,93.2,0,225.6,0,0,1.609438,5.418764,0,0,0,0,0,0,93.2,8.637691,1.609438,4.499966,1
-11,4,0,1,3,425823,0,5639.296,29.60849,1,11,1,353.4007,22.82889,0,0,0,376.2296,0,0,0,7,0,5,87.2,20.7,0,93.2,0,225.6,0,0,1.609438,5.418764,0,0,0,0,0,0,93.2,8.637691,1.609438,5.9302,1
-11,4,0,1,1,425867,0,5469.795,31.7974,0,18,1,56.6905,1.225741,0,0,0,57.91624,0,0,0,2,0,1,76.6,6.9,0,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,8.60718,0,4.058998,1
-11,4,0,1,2,425867,0,5469.795,32.7974,0,18,1,27.19175,0,0,0,286.7276,313.9194,1,0,0,1,0,1,76.6,6.9,0,78.4,0,0,0,0,0,0,0,0,0,0,0,0,78.4,8.60718,0,5.749136,1
-11,4,0,1,3,425867,0,5469.795,33.7974,0,18,1,186.8444,4.858126,0,0,0,191.7025,0,0,0,2,0,2,76.6,6.9,0,78.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,78.4,8.60718,.6931472,5.255945,1
-15,4,95,0,1,425893,0,9829.912,53.37714,1,13,1,26.79031,2.035033,40.70067,0,0,69.52602,0,0,0,2,1,2,93.6,24.1,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.193287,.6931472,4.241701,1
-15,4,95,0,2,425893,0,9829.912,54.37714,1,13,1,18.93939,0,0,0,0,18.93939,0,0,0,2,0,2,93.6,24.1,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.193287,.6931472,2.941244,1
-15,4,95,0,3,425893,0,9829.912,55.37714,1,13,1,9.536194,1.71218,0,0,0,11.24837,0,0,0,0,1,2,93.6,24.1,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.193287,.6931472,2.420224,1
-15,4,95,0,4,425893,0,9829.912,56.37714,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,93.6,24.1,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.193287,.6931472,,0
-15,4,95,0,5,425893,0,9829.912,57.37714,1,13,1,8.944544,0,26.83363,0,0,35.77818,0,0,0,0,1,2,93.6,24.1,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.193287,.6931472,3.577338,1
-15,4,95,0,1,425894,0,9829.912,54.6694,0,12,1,73.44668,0,28.33591,0,0,101.7826,0,0,0,3,0,2,80.9,20.7,0,71.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.193287,.6931472,4.622839,1
-15,4,95,0,2,425894,0,9829.912,55.6694,0,12,1,161.4583,1.870265,0,0,0,163.3286,0,0,0,5,1,2,80.9,20.7,0,71.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.193287,.6931472,5.095764,1
-15,4,95,0,3,425894,0,9829.912,56.6694,0,12,1,123.407,6.827048,23.84048,0,0,154.0746,0,0,0,6,1,2,80.9,20.7,0,71.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.193287,.6931472,5.037436,1
-15,4,95,0,4,425894,0,9829.912,57.6694,0,12,1,33.69437,12.11107,0,0,0,45.80544,0,0,0,2,0,2,80.9,20.7,0,71.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.193287,.6931472,3.824403,1
-15,4,95,0,5,425894,0,9829.912,58.6694,0,12,1,146.4293,45.48479,0,0,837.2236,1029.138,1,0,0,8,1,2,80.9,20.7,0,71.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,71.6,9.193287,.6931472,6.936477,1
-11,4,0,1,1,425896,0,8465.689,29.16085,1,16,1,41.42207,1.158907,0,0,0,42.58097,0,0,0,4,0,4,83.5,13.8,0,72.7,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,72.7,9.043895,1.386294,3.751407,1
-11,4,0,1,2,425896,0,8465.689,30.16085,1,16,1,67.21678,5.757576,0,0,0,72.97436,0,0,0,1,0,4,83.5,13.8,0,72.7,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,72.7,9.043895,1.386294,4.290108,1
-11,4,0,1,3,425896,0,8465.689,31.16085,1,16,1,125.9085,0,3.505772,26.72082,235.1432,364.5575,1,1,2,10,0,4,83.5,13.8,0,72.7,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,72.7,9.043895,1.386294,5.898685,1
-11,4,0,1,1,425897,0,8465.689,4.030117,0,16,1,32.89474,4.170041,0,0,0,37.06478,0,0,0,3,1,4,83.39137,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,3.612667,1
-11,4,0,1,2,425897,0,8465.689,5.030117,0,16,1,19.11422,0,0,0,0,19.11422,0,0,0,1,1,4,83.39137,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,2.950433,1
-11,4,0,1,3,425897,0,8465.689,6.030117,0,16,1,9.405729,0,30.44464,0,0,39.85036,0,0,0,2,0,4,83.39137,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,3.685132,1
-11,4,0,1,1,425898,0,8465.689,6.078029,0,16,1,200.9109,14.03846,0,0,0,214.9494,0,0,0,13,11,4,66.7,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,5.370403,1
-11,4,0,1,2,425898,0,8465.689,7.078029,0,16,1,24.70862,4.275058,27.29138,0,0,56.27506,0,0,0,4,1,4,66.7,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,4.030252,1
-11,4,0,1,3,425898,0,8465.689,8.078029,0,16,1,97.95212,1.624626,0,0,0,99.57674,0,0,0,5,0,4,66.7,9.967326,0,100,0,570.48,1,0,1.386294,6.346478,0,0,0,0,0,0,100,9.043895,1.386294,4.600929,1
-13,4,0,1,1,425904,0,7374.193,29.47023,0,13,1,31.66496,4.519918,0,0,0,36.18488,0,0,0,3,0,2,83,3.4,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,80.7,8.905877,.6931472,3.588641,1
-13,4,0,1,2,425904,0,7374.193,30.47023,0,13,1,56.25879,2.344116,0,0,0,58.60291,0,0,0,3,0,2,83,3.4,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,80.7,8.905877,.6931472,4.070784,1
-13,4,0,1,3,425904,0,7374.193,31.47023,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,83,3.4,0,80.7,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,80.7,8.905877,1.098612,,0
-13,4,0,1,4,425904,0,7374.193,32.47023,0,13,1,0,0,0,31.01978,0,0,0,0,1,0,0,3,83,3.4,0,80.7,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,80.7,8.905877,1.098612,,0
-13,4,0,1,5,425904,0,7374.193,33.47023,0,13,1,2.830856,0,0,0,0,2.830856,0,0,0,1,0,3,83,3.4,0,80.7,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,80.7,8.905877,1.098612,1.040579,1
-13,4,0,1,1,425905,0,7374.193,27.4935,1,16,1,58.4474,4.519918,26.55771,0,0,89.52502,0,0,0,5,0,2,76.6,10.3,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,8.905877,.6931472,4.494518,1
-13,4,0,1,2,425905,0,7374.193,28.4935,1,16,1,31.87998,0,0,0,717.9325,749.8125,1,0,0,5,0,2,76.6,10.3,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,8.905877,.6931472,6.619823,1
-13,4,0,1,3,425905,0,7374.193,29.4935,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,10.3,0,73.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,73.9,8.905877,1.098612,,0
-13,4,0,1,4,425905,0,7374.193,30.4935,1,16,1,21.71384,22.97014,0,286.9329,0,44.68399,0,0,28,3,0,3,76.6,10.3,0,73.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,73.9,8.905877,1.098612,3.799615,1
-13,4,0,1,5,425905,0,7374.193,31.4935,1,16,1,57.6787,17.80609,23.35456,26.53928,251.7339,350.5732,1,0,3,5,0,3,76.6,10.3,0,73.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,73.9,8.905877,1.098612,5.85957,1
-11,4,0,0,1,425917,0,11310.85,15.32375,0,9,1,81.91653,0,0,0,0,81.91653,0,0,0,4,0,4,92,0,0,65.5,0,0,1,0,1.386294,0,0,0,0,1,0,0,65.5,9.333606,1.386294,4.405701,1
-11,4,0,0,2,425917,0,11310.85,16.32375,0,9,1,48.31913,4.640152,0,0,447.3958,500.3551,1,0,0,5,0,3,92,0,0,65.5,0,0,1,0,1.098612,0,0,0,0,1,0,0,65.5,9.333606,1.098612,6.215318,1
-11,4,0,0,1,425918,0,11310.85,43.15948,1,9,1,18.03194,0,0,0,0,18.03194,0,0,0,1,0,4,81.4,3.4,0,76.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,76.1,9.333606,1.386294,2.892145,1
-11,4,0,0,2,425918,0,11310.85,44.15948,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,3.4,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,9.333606,1.098612,,0
-11,4,0,0,3,425918,0,11310.85,45.15948,1,9,1,19.50585,0,0,0,0,19.50585,0,0,0,1,0,2,81.4,3.4,0,76.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,76.1,9.333606,.6931472,2.970715,1
-11,4,0,0,1,425919,0,11310.85,18.99247,0,10,1,119.2427,4.90984,0,0,0,124.1525,0,0,0,5,0,4,92,3.4,0,84.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,84.1,9.333606,1.386294,4.821511,1
-11,4,0,0,1,425920,0,11310.85,46.24778,0,12,1,193.22,30.1391,154.5595,0,0,377.9186,0,0,0,4,8,4,87.2,10.3,0,64.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,64.8,9.333606,1.386294,5.934679,1
-11,4,0,0,2,425920,0,11310.85,47.24778,0,12,1,118.7263,91.50095,40.24621,0,0,250.4735,0,0,0,5,0,3,87.2,10.3,0,64.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.8,9.333606,1.098612,5.523353,1
-11,4,0,0,3,425920,0,11310.85,48.24778,0,12,1,89.94365,72.60512,0,0,0,162.5488,0,0,0,5,0,2,87.2,10.3,0,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.333606,.6931472,5.090978,1
-11,4,0,1,1,425925,0,10809.97,58.72964,1,12,1,116.4348,94.2813,54.84286,0,0,265.559,0,0,0,7,0,1,81.9,27.6,1,58,0,293.28,0,0,0,5.681128,0,0,0,1,0,0,58,9.288317,0,5.581837,1
-11,4,0,1,2,425925,0,10809.97,59.72964,1,12,1,17.51894,69.69697,0,0,0,87.21591,0,0,0,2,0,1,81.9,27.6,1,58,0,293.28,0,0,0,5.681128,0,0,0,1,0,0,58,9.288317,0,4.468387,1
-11,4,0,1,1,425966,0,7978.886,11.86858,0,12,1,0,.4276146,0,0,0,.4276146,0,0,0,0,0,6,90,9.967326,0,63,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,63,8.984679,1.791759,-.8495329,1
-11,4,0,1,2,425966,0,7978.886,12.86858,0,12,1,23.91098,0,0,0,0,23.91098,0,0,0,1,0,6,90,9.967326,0,63,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,63,8.984679,1.791759,3.174338,1
-11,4,0,1,3,425966,0,7978.886,13.86858,0,12,1,30.66753,0,0,0,0,30.66753,0,0,0,1,0,6,90,9.967326,0,63,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,63,8.984679,1.791759,3.423205,1
-11,4,0,1,1,425967,0,7978.886,8.566735,0,12,1,65.34261,12.86965,0,0,0,78.21227,0,0,0,4,0,6,91.7,9.967326,0,70.4,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,70.4,8.984679,1.791759,4.359426,1
-11,4,0,1,2,425967,0,7978.886,9.566735,0,12,1,9.469697,2.95928,0,0,0,12.42898,0,0,0,1,0,6,91.7,9.967326,0,70.4,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,70.4,8.984679,1.791759,2.52003,1
-11,4,0,1,3,425967,0,7978.886,10.56674,0,12,1,4.334634,2.362375,0,0,0,6.697009,0,0,0,1,0,6,91.7,9.967326,0,70.4,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,70.4,8.984679,1.791759,1.901661,1
-11,4,0,1,1,425968,0,7978.886,34.52156,1,12,1,20.60793,0,37.60948,0,0,58.21741,0,0,0,2,1,6,88.8,13.8,0,85.2,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,85.2,8.984679,1.791759,4.064185,1
-11,4,0,1,2,425968,0,7978.886,35.52156,1,12,1,9.469697,0,0,0,0,9.469697,0,0,0,1,0,6,88.8,13.8,0,85.2,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,85.2,8.984679,1.791759,2.248097,1
-11,4,0,1,3,425968,0,7978.886,36.52156,1,12,1,39.87863,3.120936,0,0,0,42.99957,0,0,0,4,0,6,88.8,13.8,0,85.2,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,85.2,8.984679,1.791759,3.76119,1
-11,4,0,1,1,425969,0,7978.886,35.38124,0,13,1,51.51984,0,0,0,0,51.51984,0,0,0,0,4,6,58.5,24.1,1,54.8,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,54.8,8.984679,1.791759,3.941967,1
-11,4,0,1,2,425969,0,7978.886,36.38124,0,13,1,7.102273,0,0,0,0,7.102273,0,0,0,0,1,6,58.5,24.1,1,54.8,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,54.8,8.984679,1.791759,1.960415,1
-11,4,0,1,3,425969,0,7978.886,37.38124,0,13,1,61.5518,1.733853,0,0,0,63.28565,0,0,0,3,0,6,58.5,24.1,1,54.8,0,291.84,0,0,1.791759,5.676206,0,0,0,0,0,0,54.8,8.984679,1.791759,4.147659,1
-11,4,0,1,1,425970,0,7978.886,3.279945,0,12,1,7.727975,12.64812,0,0,0,20.37609,0,0,0,1,0,6,83.39137,9.967326,0,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,74.1,8.984679,1.791759,3.014362,1
-11,4,0,1,2,425970,0,7978.886,4.279945,0,12,1,9.232955,2.485795,0,0,0,11.71875,0,0,0,1,0,6,83.39137,9.967326,0,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,74.1,8.984679,1.791759,2.46119,1
-11,4,0,1,3,425970,0,7978.886,5.279945,0,12,1,188.8903,1.842219,0,0,0,190.7326,0,0,0,4,0,6,83.39137,9.967326,0,74.1,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,74.1,8.984679,1.791759,5.250872,1
-11,4,0,1,1,425971,0,7978.886,14.07255,0,12,1,56.85214,13.31273,0,0,0,70.16486,0,0,0,4,0,6,87.4,3.4,0,75,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,75,8.984679,1.791759,4.250848,1
-11,4,0,1,2,425971,0,7978.886,15.07255,0,12,1,0,1.183712,0,0,0,1.183712,0,0,0,0,0,6,87.4,3.4,0,75,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,75,8.984679,1.791759,.1686554,1
-11,4,0,1,3,425971,0,7978.886,16.07255,0,12,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,6,87.4,3.4,0,75,0,291.84,1,0,1.791759,5.676206,0,0,0,0,0,0,75,8.984679,1.791759,2.159784,1
-11,4,0,1,1,425972,0,2313.783,5.845312,1,10,1,10.12146,0,0,0,0,10.12146,0,0,0,2,0,3,81.7,9.967326,0,51.9,0,0,1,1,1.098612,0,0,0,0,1,0,0,51.9,7.747071,1.098612,2.314658,1
-11,4,0,1,2,425972,0,2313.783,6.845312,1,10,1,18.64802,0,0,0,0,18.64802,0,0,0,1,0,3,81.7,9.967326,0,51.9,0,0,1,1,1.098612,0,0,0,0,1,0,0,51.9,7.747071,1.098612,2.92574,1
-11,4,0,1,3,425972,0,2313.783,7.845312,1,10,1,33.2407,0,0,0,0,33.2407,0,0,0,2,0,3,81.7,9.967326,0,51.9,0,0,1,1,1.098612,0,0,0,0,1,0,0,51.9,7.747071,1.098612,3.503775,1
-11,4,0,1,4,425972,0,2313.783,8.845311,1,10,1,34.20446,0,0,0,0,34.20446,0,0,0,5,0,3,81.7,9.967326,0,51.9,0,0,1,1,1.098612,0,0,0,0,1,0,0,51.9,7.747071,1.098612,3.532356,1
-11,4,0,1,5,425972,0,2313.783,9.845311,1,10,1,43.90586,0,5.261679,0,0,49.16755,0,0,0,1,0,3,81.7,9.967326,0,51.9,0,0,1,1,1.098612,0,0,0,0,1,0,0,51.9,7.747071,1.098612,3.895234,1
-11,4,0,1,1,425973,0,2313.783,4.358658,0,10,1,8.097166,7.373482,0,0,0,15.47065,0,0,0,2,0,3,83.39137,9.967326,0,25.9,0,0,1,0,1.098612,0,0,0,0,1,0,0,25.9,7.747071,1.098612,2.738945,1
-11,4,0,1,2,425973,0,2313.783,5.358658,0,10,1,7.342658,0,0,0,0,7.342658,0,0,0,0,0,3,83.39137,9.967326,0,25.9,0,0,1,0,1.098612,0,0,0,0,1,0,0,25.9,7.747071,1.098612,1.993701,1
-11,4,0,1,3,425973,0,2313.783,6.358658,0,10,1,9.362976,0,0,0,0,9.362976,0,0,0,1,0,3,83.39137,9.967326,0,25.9,0,0,1,0,1.098612,0,0,0,0,1,0,0,25.9,7.747071,1.098612,2.236763,1
-11,4,0,1,4,425973,0,2313.783,7.358658,0,10,1,15.94927,0,0,0,0,15.94927,0,0,0,2,0,3,83.39137,9.967326,0,25.9,0,0,1,0,1.098612,0,0,0,0,1,0,0,25.9,7.747071,1.098612,2.769413,1
-11,4,0,1,5,425973,0,2313.783,8.358659,0,10,1,109.8525,0,0,0,420.1967,530.0492,1,0,0,2,0,3,83.39137,9.967326,0,25.9,0,0,1,0,1.098612,0,0,0,0,1,0,0,25.9,7.747071,1.098612,6.27297,1
-11,4,0,1,1,425974,0,2313.783,23.8193,1,10,1,45.04049,13.13259,33.37551,0,0,91.54858,0,0,0,5,0,3,51.6,37.9,1,53.4,0,0,0,0,1.098612,0,0,0,0,0,1,0,53.4,7.747071,1.098612,4.51687,1
-11,4,0,1,2,425974,0,2313.783,24.8193,1,10,1,383.4499,0,0,0,318.718,702.1678,1,0,0,7,0,3,51.6,37.9,1,53.4,0,0,0,0,1.098612,0,0,0,0,0,1,0,53.4,7.747071,1.098612,6.554173,1
-11,4,0,1,3,425974,0,2313.783,25.8193,1,10,1,44.35656,0,31.20992,0,0,75.56648,0,0,0,1,1,3,51.6,37.9,1,53.4,0,0,0,0,1.098612,0,0,0,0,0,1,0,53.4,7.747071,1.098612,4.325013,1
-11,4,0,1,4,425974,0,2313.783,26.8193,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,51.6,37.9,1,53.4,0,0,0,0,1.098612,0,0,0,0,0,1,0,53.4,7.747071,1.098612,,0
-11,4,0,1,5,425974,0,2313.783,27.8193,1,10,1,58.65824,0,0,0,0,58.65824,0,0,0,2,0,3,51.6,37.9,1,53.4,0,0,0,0,1.098612,0,0,0,0,0,1,0,53.4,7.747071,1.098612,4.071728,1
-16,4,95,0,1,425987,0,10982.99,46.8501,1,12,1,92.04018,29.8815,0,0,0,121.9217,0,0,0,8,0,3,79.8,6.9,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.304194,1.098612,4.803379,1
-16,4,95,0,2,425987,0,10982.99,47.8501,1,12,1,39.77273,5.681818,0,0,0,45.45454,0,0,0,7,0,3,79.8,6.9,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.304194,1.098612,3.816713,1
-16,4,95,0,3,425987,0,10982.99,48.8501,1,12,1,81.94625,0,0,0,0,81.94625,0,0,0,8,0,3,79.8,6.9,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.304194,1.098612,4.406064,1
-16,4,95,0,4,425987,0,10982.99,49.8501,1,12,1,35.44703,12.58369,0,0,224.616,272.6467,1,1,0,6,0,3,79.8,6.9,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.304194,1.098612,5.608177,1
-16,4,95,0,5,425987,0,10982.99,50.8501,1,12,1,33.2737,0,0,0,0,33.2737,0,0,0,6,0,3,79.8,6.9,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.304194,1.098612,3.504767,1
-16,4,95,0,1,425988,0,10982.99,48.55578,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.304194,1.098612,,0
-16,4,95,0,2,425988,0,10982.99,49.55578,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.304194,1.098612,,0
-16,4,95,0,3,425988,0,10982.99,50.55578,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.304194,1.098612,,0
-16,4,95,0,4,425988,0,10982.99,51.55578,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.304194,1.098612,,0
-16,4,95,0,5,425988,0,10982.99,52.55578,0,13,1,12.52236,0,28.26476,0,0,40.78712,0,0,0,2,0,3,89.4,0,0,85.2,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.304194,1.098612,3.708366,1
-16,4,95,0,1,425989,0,10982.99,19.09103,0,12,1,41.12828,0,0,0,0,41.12828,0,0,0,1,0,3,49.5,3.4,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.304194,1.098612,3.716696,1
-16,4,95,0,2,425989,0,10982.99,20.09103,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,49.5,3.4,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.304194,1.098612,,0
-16,4,95,0,3,425989,0,10982.99,21.09103,0,12,1,33.51105,5.457304,0,0,0,38.96836,0,0,0,1,0,3,49.5,3.4,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.304194,1.098612,3.66275,1
-16,4,95,0,4,425989,0,10982.99,22.09103,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,49.5,3.4,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.304194,1.098612,,0
-16,4,95,0,5,425989,0,10982.99,23.09103,0,12,1,26.11807,0,0,0,0,26.11807,0,0,0,0,0,3,49.5,3.4,0,65.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.304194,1.098612,3.262627,1
-13,4,0,1,1,426020,0,9170.675,32.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,3.4,0,89.8,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,89.8,9.123876,1.609438,,0
-13,4,0,1,2,426020,0,9170.675,33.67077,0,12,1,11.72058,5.977497,0,0,0,17.69808,0,0,0,1,0,5,80.9,3.4,0,89.8,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,89.8,9.123876,1.609438,2.873456,1
-13,4,0,1,3,426020,0,9170.675,34.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,3.4,0,89.8,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,89.8,9.123876,1.609438,,0
-13,4,0,1,1,426021,0,9170.675,11.63313,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,92.6,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,92.6,9.123876,1.609438,,0
-13,4,0,1,2,426021,0,9170.675,12.63313,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,92.6,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,92.6,9.123876,1.609438,,0
-13,4,0,1,3,426021,0,9170.675,13.63313,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,92.6,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,92.6,9.123876,1.609438,,0
-13,4,0,1,1,426022,0,9170.675,10.65298,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,9.967326,0,100,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,100,9.123876,1.609438,,0
-13,4,0,1,2,426022,0,9170.675,11.65298,1,12,1,11.72058,0,0,0,0,11.72058,0,0,0,1,0,5,91.7,9.967326,0,100,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,100,9.123876,1.609438,2.461346,1
-13,4,0,1,3,426022,0,9170.675,12.65298,1,12,1,33.23302,0,0,0,0,33.23302,0,0,0,1,0,5,91.7,9.967326,0,100,450,505.44,1,1,1.609438,6.22543,1,4.564348,6.160541,0,0,0,100,9.123876,1.609438,3.503544,1
-13,4,0,1,1,426023,0,9170.675,9.396304,0,12,1,41.07763,2.170582,0,0,0,43.24821,0,0,0,4,0,5,88.3,9.967326,0,96.3,450,505.44,1,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,96.3,9.123876,1.609438,3.766956,1
-13,4,0,1,2,426023,0,9170.675,10.3963,0,12,1,74.89452,.726676,0,0,0,75.62119,0,0,0,3,0,5,88.3,9.967326,0,96.3,450,505.44,1,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,96.3,9.123876,1.609438,4.325737,1
-13,4,0,1,3,426023,0,9170.675,11.3963,0,12,1,137.1797,0,0,0,0,137.1797,0,0,0,4,0,5,88.3,9.967326,0,96.3,450,505.44,1,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,96.3,9.123876,1.609438,4.921292,1
-13,4,0,1,1,426024,0,9170.675,31.2115,1,12,1,108.7845,0,0,0,854.1471,962.9316,1,0,0,8,0,5,73.4,6.9,0,87.5,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,87.5,9.123876,1.609438,6.869982,1
-13,4,0,1,2,426024,0,9170.675,32.2115,1,12,1,19.69058,0,0,0,0,19.69058,0,0,0,2,0,5,73.4,6.9,0,87.5,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,87.5,9.123876,1.609438,2.98014,1
-13,4,0,1,3,426024,0,9170.675,33.2115,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,6.9,0,87.5,450,505.44,0,0,1.609438,6.22543,1,4.564348,6.160541,0,0,0,87.5,9.123876,1.609438,,0
-11,4,0,1,1,426038,0,8415.249,3.682409,1,17,1,7.800312,0,0,0,0,7.800312,0,0,0,1,0,4,83.39137,9.967326,0,77.8,0,443.28,1,1,1.386294,6.094202,0,0,0,0,0,0,77.8,9.03792,1.386294,2.054164,1
-11,4,0,1,2,426038,0,8415.249,4.682409,1,17,1,29.14477,7.286192,0,0,0,36.43096,0,0,0,3,1,4,83.39137,9.967326,0,77.8,0,443.28,1,1,1.386294,6.094202,0,0,0,0,0,0,77.8,9.03792,1.386294,3.595419,1
-11,4,0,1,3,426038,0,8415.249,5.682409,1,17,1,36.43547,0,0,0,0,36.43547,0,0,0,3,0,4,83.39137,9.967326,0,77.8,0,443.28,1,1,1.386294,6.094202,0,0,0,0,0,0,77.8,9.03792,1.386294,3.595543,1
-11,4,0,1,1,426039,0,8415.249,29.36345,0,17,1,10.40042,0,28.08112,0,0,38.48154,0,0,0,0,1,4,74.5,3.4,0,87.5,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,87.5,9.03792,1.386294,3.650179,1
-11,4,0,1,2,426039,0,8415.249,30.36345,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,3.4,0,87.5,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,87.5,9.03792,1.386294,,0
-11,4,0,1,3,426039,0,8415.249,31.36345,0,17,1,0,0,13.16945,0,0,13.16945,0,0,0,0,0,4,74.5,3.4,0,87.5,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,87.5,9.03792,1.386294,2.577899,1
-11,4,0,1,1,426040,0,8415.249,1.434634,0,17,1,13.00052,1.534061,0,0,0,14.53458,0,0,0,2,0,4,83.39137,9.967326,0,85.2,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,85.2,9.03792,1.386294,2.676531,1
-11,4,0,1,2,426040,0,8415.249,2.434634,0,17,1,38.70043,8.528428,0,0,0,47.22886,0,0,0,4,0,4,83.39137,9.967326,0,85.2,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,85.2,9.03792,1.386294,3.855005,1
-11,4,0,1,3,426040,0,8415.249,3.434634,0,17,1,34.24056,0,0,0,0,34.24056,0,0,0,2,0,4,83.39137,9.967326,0,85.2,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,85.2,9.03792,1.386294,3.533411,1
-11,4,0,1,1,426041,0,8415.249,28.91171,1,17,1,10.40042,2.574103,35.61102,0,0,48.58554,0,0,0,1,0,4,81.9,10.3,0,83,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,83,9.03792,1.386294,3.883326,1
-11,4,0,1,2,426041,0,8415.249,29.91171,1,17,1,17.67797,2.150024,10.47778,0,0,30.30578,0,0,0,2,0,4,81.9,10.3,0,83,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,83,9.03792,1.386294,3.411339,1
-11,4,0,1,3,426041,0,8415.249,30.91171,1,17,1,14.15716,0,0,0,0,14.15716,0,0,0,1,0,4,81.9,10.3,0,83,0,443.28,0,0,1.386294,6.094202,0,0,0,0,0,0,83,9.03792,1.386294,2.65022,1
-16,4,95,1,1,426049,0,4265.689,50.37098,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,66.5,24.1,0,93.2,975,975,0,0,0,6.882438,0,4.564348,6.933731,0,0,0,93.2,8.358593,0,,0
-16,4,95,1,2,426049,0,4265.689,51.37098,1,13,1,146.3901,3.811533,0,0,0,150.2016,0,0,0,2,0,1,66.5,24.1,0,93.2,975,975,0,0,0,6.882438,0,4.564348,6.933731,0,0,0,93.2,8.358593,0,5.011978,1
-16,4,95,1,3,426049,0,4265.689,52.37098,1,13,1,0,0,51.37575,0,0,51.37575,0,0,0,0,0,1,66.5,24.1,0,93.2,975,975,0,0,0,6.882438,0,4.564348,6.933731,0,0,0,93.2,8.358593,0,3.939166,1
-11,4,0,0,1,426087,0,10549.56,56.49829,1,14,1,44.80082,24.92339,38.81512,0,0,108.5393,0,0,0,2,1,1,80.9,17.2,0,51.1,0,203.06,0,0,0,5.313501,0,0,0,1,0,0,51.1,9.263934,0,4.687113,1
-11,4,0,0,2,426087,0,10549.56,57.49829,1,14,1,25.43366,24.28504,0,0,0,49.7187,0,0,0,1,0,1,80.9,17.2,0,51.1,0,203.06,0,0,0,5.313501,0,0,0,1,0,0,51.1,9.263934,0,3.906381,1
-11,4,0,0,3,426087,0,10549.56,58.49829,1,14,1,101.5692,51.46174,39.9828,0,0,193.0138,0,0,0,3,1,1,80.9,17.2,0,51.1,0,203.06,0,0,0,5.313501,0,0,0,1,0,0,51.1,9.263934,0,5.262762,1
-11,4,0,1,1,426089,0,4377.712,24.87064,1,16,1,31.4271,31.53014,0,0,0,62.95724,0,0,0,3,0,1,80.3,0,0,69.3,0,131.76,0,0,0,4.880982,0,0,0,1,0,0,69.3,8.38451,0,4.142456,1
-11,4,0,1,2,426089,0,4377.712,25.87064,1,16,1,324.1714,51.54356,0,0,0,375.715,0,0,0,5,0,1,80.3,0,0,69.3,0,131.76,0,0,0,4.880982,0,0,0,1,0,0,69.3,8.38451,0,5.928831,1
-11,4,0,1,3,426089,0,4377.712,26.87064,1,16,1,117.6853,55.3446,0,0,0,173.0299,0,0,0,7,0,1,80.3,0,0,69.3,0,131.76,0,0,0,4.880982,0,0,0,1,0,0,69.3,8.38451,0,5.153464,1
-13,4,0,0,1,426109,0,9419.208,30.13826,0,11,1,149.0726,0,42.24627,0,0,191.3189,0,0,0,4,0,4,68.6,10.3,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.150613,1.386294,5.253942,1
-13,4,0,0,2,426109,0,9419.208,31.13826,0,11,1,0,0,0,23.67424,0,0,0,0,2,0,0,4,68.6,10.3,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.150613,1.386294,,0
-13,4,0,0,3,426109,0,9419.208,32.13826,0,11,1,77.93238,10.54616,10.40312,54.18292,0,98.88167,0,0,5,4,0,4,68.6,10.3,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,72.7,9.150613,1.386294,4.593924,1
-13,4,0,0,1,426110,0,9419.208,27.83573,1,12,1,39.67027,38.58836,0,396.7027,0,78.25863,0,0,22,6,0,4,45.7,13.8,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.150613,1.386294,4.360019,1
-13,4,0,0,2,426110,0,9419.208,28.83573,1,12,1,38.82576,19.50758,0,179.9242,0,58.33333,0,0,9,3,2,4,45.7,13.8,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.150613,1.386294,4.066174,1
-13,4,0,0,3,426110,0,9419.208,29.83573,1,12,1,184.8721,7.451235,0,463.8058,0,192.3234,0,0,26,9,3,4,45.7,13.8,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,73.9,9.150613,1.386294,5.259178,1
-13,4,0,0,1,426111,0,9419.208,5.223819,1,12,1,61.30861,21.20041,7.727975,0,316.5636,406.8006,1,0,0,7,0,4,90,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,81.5,9.150613,1.386294,6.008323,1
-13,4,0,0,2,426111,0,9419.208,6.223819,1,12,1,169.1051,20.57292,0,0,0,189.678,0,0,0,12,0,4,90,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,81.5,9.150613,1.386294,5.245328,1
-13,4,0,0,3,426111,0,9419.208,7.223819,1,12,1,225.7911,14.88513,29.74426,0,0,270.4205,0,0,0,11,1,4,90,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,1,0,81.5,9.150613,1.386294,5.599978,1
-13,4,0,0,1,426112,0,9419.208,8.238193,1,12,1,227.3313,5.615662,0,0,0,232.9469,0,0,0,10,0,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.150613,1.386294,5.45081,1
-13,4,0,0,2,426112,0,9419.208,9.238193,1,12,1,90.90909,6.723485,27.46212,0,0,125.0947,0,0,0,4,1,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.150613,1.386294,4.829071,1
-13,4,0,0,3,426112,0,9419.208,10.23819,1,12,1,131.7078,.6892068,24.05722,0,0,156.4543,0,0,0,6,1,4,83.3,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.150613,1.386294,5.052764,1
-11,4,0,1,1,426148,0,7872.141,1.514032,1,13,1,27.04108,10.85283,0,0,0,37.89392,0,0,0,5,0,3,83.39137,9.967326,0,92.6,0,0,1,1,1.098612,0,0,0,0,0,0,0,92.6,8.971212,1.098612,3.634791,1
-11,4,0,1,2,426148,0,7872.141,2.514031,1,13,1,5.733397,7.009078,0,0,0,12.74247,0,0,0,1,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,8.971212,1.386294,2.544941,1
-11,4,0,1,3,426148,0,7872.141,3.514031,1,13,1,40.82529,5.763828,0,0,0,46.58912,0,0,0,5,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,8.971212,1.386294,3.841367,1
-11,4,0,1,1,426149,0,7872.141,28.77207,1,13,1,6.24025,20.56162,0,0,710.4004,737.2023,1,0,0,0,0,3,51.6,17.2,0,58,0,0,0,0,1.098612,0,0,0,0,0,0,0,58,8.971212,1.098612,6.602862,1
-11,4,0,1,2,426149,0,7872.141,29.77207,1,13,1,17.20019,4.610607,3.272814,0,0,25.08361,0,0,0,2,0,4,51.6,17.2,0,58,0,0,0,0,1.386294,0,0,0,0,0,0,0,58,8.971212,1.386294,3.222215,1
-11,4,0,1,3,426149,0,7872.141,30.77207,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,51.6,17.2,0,58,0,0,0,0,1.386294,0,0,0,0,0,0,0,58,8.971212,1.386294,,0
-11,4,0,1,1,426150,0,7872.141,33.25941,0,15,1,34.84139,4.75819,0,0,0,39.59958,0,0,0,3,0,3,77.7,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.971212,1.098612,3.678818,1
-11,4,0,1,2,426150,0,7872.141,34.25941,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,10.3,0,59.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,59.1,8.971212,1.386294,,0
-11,4,0,1,3,426150,0,7872.141,35.25941,0,15,1,13.16945,0,30.28973,0,0,43.45918,0,0,0,1,0,4,77.7,10.3,0,59.1,0,0,0,0,1.386294,0,0,0,0,1,0,0,59.1,8.971212,1.386294,3.771822,1
-19,4,25,1,1,426170,0,1555.425,20.8679,1,12,1,0,14.95445,0,0,0,14.95445,0,0,0,0,0,2,84,3.4,0,88.6,300,300,0,0,.6931472,5.703783,0,3.258096,7.090077,0,0,0,88.6,7.350147,.6931472,2.705009,1
-19,4,25,1,2,426170,0,1555.425,21.8679,1,12,1,3.193473,0,0,0,0,3.193473,0,0,0,0,0,2,84,3.4,0,88.6,300,300,0,0,.6931472,5.703783,0,3.258096,7.090077,0,0,0,88.6,7.350147,.6931472,1.161109,1
-19,4,25,1,3,426170,0,1555.425,22.8679,1,12,1,2.992732,0,0,0,285.1646,288.1573,1,0,0,1,0,2,84,3.4,0,88.6,300,300,0,0,.6931472,5.703783,0,3.258096,7.090077,0,0,0,88.6,7.350147,.6931472,5.663507,1
-19,4,25,1,4,426170,0,1555.425,23.8679,1,12,1,6.149116,0,0,0,0,6.149116,0,0,0,1,0,3,84,3.4,0,88.6,300,300,0,0,1.098612,5.703783,0,3.258096,7.090077,0,0,0,88.6,7.350147,1.098612,1.816308,1
-19,4,25,1,5,426170,0,1555.425,24.8679,1,12,1,27.74851,11.55602,0,0,0,39.30453,0,0,0,1,0,3,84,3.4,0,88.6,300,300,0,0,1.098612,5.703783,0,3.258096,7.090077,0,0,0,88.6,7.350147,1.098612,3.67134,1
-19,4,25,1,1,426171,0,1555.425,1.533196,1,12,1,35.55162,0,0,0,0,35.55162,0,0,0,2,0,2,83.39137,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,0,3.258096,7.090077,0,0,0,92.6,7.350147,.6931472,3.570986,1
-19,4,25,1,2,426171,0,1555.425,2.533196,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,0,3.258096,7.090077,0,0,0,92.6,7.350147,.6931472,,0
-19,4,25,1,3,426171,0,1555.425,3.533196,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,0,3.258096,7.090077,0,0,0,92.6,7.350147,.6931472,,0
-19,4,25,1,4,426171,0,1555.425,4.533196,1,12,1,8.839355,0,0,0,0,8.839355,0,0,0,2,0,3,83.39137,9.967326,0,92.6,300,300,1,1,1.098612,5.703783,0,3.258096,7.090077,0,0,0,92.6,7.350147,1.098612,2.179214,1
-19,4,25,1,5,426171,0,1555.425,5.533196,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,92.6,300,300,1,1,1.098612,5.703783,0,3.258096,7.090077,0,0,0,92.6,7.350147,1.098612,,0
-5,4,25,1,1,426174,0,3863.93,3.742642,1,14,1,8.320333,0,0,0,0,8.320333,0,0,0,1,0,2,83.39137,9.967326,0,92.6,195,0,1,1,.6931472,0,0,3.258096,6.659294,0,0,0,92.6,8.259699,.6931472,2.118702,1
-5,4,25,1,2,426174,0,3863.93,4.742642,1,14,1,13.85571,0,0,0,0,13.85571,0,0,0,2,0,2,83.39137,9.967326,0,92.6,195,0,1,1,.6931472,0,0,3.258096,6.659294,0,0,0,92.6,8.259699,.6931472,2.628697,1
-5,4,25,1,3,426174,0,3863.93,5.742642,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,0,92.6,195,0,1,1,.6931472,0,0,3.258096,6.659294,0,0,0,92.6,8.259699,.6931472,,0
-5,4,25,1,1,426175,0,3863.93,24.76112,1,14,1,16.41186,0,0,0,0,16.41186,0,0,0,2,0,2,83,3.4,0,80.7,195,0,0,0,.6931472,0,0,3.258096,6.659294,0,0,0,80.7,8.259699,.6931472,2.798004,1
-5,4,25,1,2,426175,0,3863.93,25.76112,1,14,1,11.94458,0,25.80029,0,0,37.74487,0,0,0,1,0,2,83,3.4,0,80.7,195,0,0,0,.6931472,0,0,3.258096,6.659294,0,0,0,80.7,8.259699,.6931472,3.630849,1
-5,4,25,1,3,426175,0,3863.93,26.76112,1,14,1,328.424,4.653204,0,0,0,333.0773,0,0,0,2,0,2,83,3.4,0,80.7,195,0,0,0,.6931472,0,0,3.258096,6.659294,0,0,0,80.7,8.259699,.6931472,5.808374,1
-5,4,25,1,1,426176,0,3017.009,26.10267,0,12,1,10.30397,0,27.82071,0,0,38.12468,0,0,0,1,0,1,92,3.4,0,88.6,445,445,0,0,0,6.098074,0,3.258096,7.484369,0,0,0,88.6,8.012353,0,3.640862,1
-5,4,25,1,2,426176,0,3017.009,27.10267,0,12,1,183.4138,0,0,0,0,183.4138,0,0,0,1,0,1,92,3.4,0,88.6,445,445,0,0,0,6.098074,0,3.258096,7.484369,0,0,0,88.6,8.012353,0,5.211745,1
-5,4,25,1,3,426176,0,3017.009,28.10267,0,12,1,4.334634,2.405722,0,0,0,6.740355,0,0,0,1,0,1,92,3.4,0,88.6,445,445,0,0,0,6.098074,0,3.258096,7.484369,0,0,0,88.6,8.012353,0,1.908113,1
-18,4,25,1,1,426193,0,14513.2,56.49829,1,13,1,115.662,54.27615,38.63988,0,0,208.578,0,0,0,3,2,2,65.4,20.7,0,67,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,67,9.582883,.6931472,5.340313,1
-18,4,25,1,2,426193,0,14513.2,57.49829,1,13,1,16.57197,23.1108,0,0,0,39.68277,0,0,0,2,0,2,65.4,20.7,0,67,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,67,9.582883,.6931472,3.680917,1
-18,4,25,1,3,426193,0,14513.2,58.49829,1,13,1,7.368877,12.73515,0,0,0,20.10403,0,0,0,1,0,2,65.4,20.7,0,67,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,67,9.582883,.6931472,3.00092,1
-18,4,25,1,1,426194,0,14513.2,58.11362,0,18,1,61.66924,2.679031,0,0,0,64.34827,0,0,0,3,0,2,89.4,20.7,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.582883,.6931472,4.16431,1
-18,4,25,1,2,426194,0,14513.2,59.11362,0,18,1,81.79451,0,0,0,0,81.79451,0,0,0,4,0,2,89.4,20.7,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.582883,.6931472,4.40421,1
-18,4,25,1,3,426194,0,14513.2,60.11362,0,18,1,80.51582,0,0,0,0,80.51582,0,0,0,1,0,2,89.4,20.7,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.582883,.6931472,4.388454,1
-11,4,0,1,1,426195,0,7910.823,12.70637,0,13,1,67.28805,2.451481,0,0,0,69.73953,0,0,0,2,2,4,35,9.967326,0,92.6,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,92.6,8.976113,1.386294,4.244767,1
-11,4,0,1,2,426195,0,7910.823,13.70637,0,13,1,63.15049,2.977028,27.50586,0,0,93.63338,0,0,0,3,0,4,35,9.967326,0,92.6,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,92.6,8.976113,1.386294,4.539387,1
-11,4,0,1,3,426195,0,7910.823,14.70637,0,13,1,9.458298,1.504729,0,0,0,10.96303,0,0,0,0,1,4,35,9.967326,0,92.6,0,443.28,1,0,1.386294,6.094202,0,0,0,0,0,0,92.6,8.976113,1.386294,2.394528,1
-11,4,0,1,1,426196,0,7910.823,4.569473,0,13,1,47.77835,32.55873,0,0,0,80.33708,0,0,0,4,2,4,83.39137,9.967326,0,66.7,0,443.28,1,0,1.386294,6.094202,0,0,0,1,0,0,66.7,8.976113,1.386294,4.386231,1
-11,4,0,1,2,426196,0,7910.823,5.569473,0,13,1,7.501172,8.602907,0,0,0,16.10408,0,0,0,1,1,4,83.39137,9.967326,0,66.7,0,443.28,1,0,1.386294,6.094202,0,0,0,1,0,0,66.7,8.976113,1.386294,2.779073,1
-11,4,0,1,3,426196,0,7910.823,6.569473,0,13,1,39.12296,0,0,90.28375,0,39.12296,0,0,7,3,1,4,83.39137,9.967326,0,66.7,0,443.28,1,0,1.386294,6.094202,0,0,0,1,0,0,66.7,8.976113,1.386294,3.666709,1
-11,4,0,1,1,426197,0,7910.823,31.98631,0,17,1,162.7937,8.324821,0,0,0,171.1185,0,0,0,7,0,4,61.2,10.3,0,50,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,50,8.976113,1.386294,5.142356,1
-11,4,0,1,2,426197,0,7910.823,32.98631,0,17,1,144.3976,25.94937,0,0,0,170.3469,0,0,0,18,0,4,61.2,10.3,0,50,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,50,8.976113,1.386294,5.137837,1
-11,4,0,1,3,426197,0,7910.823,33.98631,0,17,1,222.9149,38.28461,0,0,0,261.1995,0,0,2,9,0,4,61.2,10.3,0,50,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,50,8.976113,1.386294,5.565284,1
-11,4,0,1,1,426198,0,7910.823,30.9514,1,13,1,136.1083,196.3739,0,0,0,332.4821,0,0,0,7,0,4,29.3,20.7,0,46.6,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,46.6,8.976113,1.386294,5.806586,1
-11,4,0,1,2,426198,0,7910.823,31.9514,1,13,1,1020.206,250.5392,0,0,2181.505,3452.25,1,0,0,34,0,4,29.3,20.7,0,46.6,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,46.6,8.976113,1.386294,8.146782,1
-11,4,0,1,3,426198,0,7910.823,32.9514,1,13,1,1244.132,230.804,0,0,0,1474.936,0,0,2,16,0,4,29.3,20.7,0,46.6,0,443.28,0,0,1.386294,6.094202,0,0,0,1,0,0,46.6,8.976113,1.386294,7.29637,1
-5,4,25,0,1,426199,.0068104,6513.196,29.30595,1,14,1,32.5013,2.938118,0,0,0,35.43942,0,0,0,0,0,4,88.3,13.8,0,79.5,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,79.5,8.781739,1.386294,3.567825,1
-5,4,25,0,2,426199,.0068104,6513.196,30.30595,1,14,1,15.76684,0,24.36694,0,0,40.13378,0,0,0,2,0,4,88.3,13.8,0,79.5,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,79.5,8.781739,1.386294,3.692218,1
-5,4,25,0,3,426199,.0068104,6513.196,31.30595,1,14,1,55.20193,0,0,0,0,55.20193,0,0,0,2,0,4,88.3,13.8,0,79.5,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,79.5,8.781739,1.386294,4.010998,1
-5,4,25,0,1,426200,.0068104,6513.196,4.156057,1,14,1,23.40094,5.902236,0,0,0,29.30317,0,0,0,4,0,4,83.39137,9.967326,0,77.8,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,77.8,8.781739,1.386294,3.377696,1
-5,4,25,0,2,426200,.0068104,6513.196,5.156057,1,14,1,8.600096,12.1118,0,0,0,20.7119,0,0,0,2,0,4,83.39137,9.967326,0,77.8,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,77.8,8.781739,1.386294,3.030708,1
-5,4,25,0,3,426200,.0068104,6513.196,6.156057,1,14,1,3.950834,1.733977,0,0,0,5.684811,0,0,0,1,0,4,83.39137,9.967326,0,77.8,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,77.8,8.781739,1.386294,1.737798,1
-5,4,25,0,1,426201,0,6513.196,30.00685,0,16,1,412.5793,5.044202,0,0,0,417.6235,0,0,0,11,0,4,86.2,3.4,0,68.2,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,68.2,8.781739,1.386294,6.03458,1
-5,4,25,0,2,426201,0,6513.196,31.00685,0,16,1,108.0841,0,7.166746,0,0,115.2508,0,0,0,3,0,4,86.2,3.4,0,68.2,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,68.2,8.781739,1.386294,4.747111,1
-5,4,25,0,3,426201,0,6513.196,32.00684,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,86.2,3.4,0,68.2,497.95,497.95,0,0,1.386294,6.2105,0,3.258096,7.596794,0,0,0,68.2,8.781739,1.386294,,0
-5,4,25,0,1,426202,.0068104,6513.196,1.185489,1,14,1,26.52106,0,0,0,0,26.52106,0,0,0,4,0,4,83.39137,9.967326,0,81.5,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,81.5,8.781739,1.386294,3.277939,1
-5,4,25,0,2,426202,.0068104,6513.196,2.185489,1,14,1,7.644529,2.365026,0,0,0,10.00956,0,0,0,2,0,4,83.39137,9.967326,0,81.5,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,81.5,8.781739,1.386294,2.30354,1
-5,4,25,0,3,426202,.0068104,6513.196,3.185489,1,14,1,11.8525,6.321334,0,0,0,18.17384,0,0,0,2,0,4,83.39137,9.967326,0,81.5,497.95,497.95,1,1,1.386294,6.2105,0,3.258096,7.596794,0,0,0,81.5,8.781739,1.386294,2.899983,1
-14,4,95,1,1,426212,0,3284.458,13.0486,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,63,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,63,8.097261,1.609438,,0
-14,4,95,1,2,426212,0,3284.458,14.0486,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,63,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,63,8.097261,1.609438,,0
-14,4,95,1,1,426213,0,3284.458,15.98357,1,12,1,101.2146,0,0,0,0,101.2146,0,0,0,2,0,5,71.3,3.4,0,67,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,67,8.097261,1.609438,4.617243,1
-14,4,95,1,2,426213,0,3284.458,16.98357,1,12,1,13.05361,4.195804,0,0,360.3077,377.5571,1,0,0,2,0,5,71.3,3.4,0,67,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,67,8.097261,1.609438,5.933722,1
-14,4,95,1,3,426213,0,3284.458,17.98357,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,3.4,0,67,221,221,1,1,1.386294,5.398163,0,4.564348,5.449456,0,0,0,67,8.097261,1.386294,,0
-14,4,95,1,1,426214,0,3284.458,34.63929,1,12,1,5.060729,20.49595,0,0,0,25.55668,0,0,0,1,0,5,61.2,24.1,1,56.8,221,221,0,0,1.609438,5.398163,0,4.564348,5.449456,1,0,0,56.8,8.097261,1.609438,3.240899,1
-14,4,95,1,2,426214,0,3284.458,35.63929,1,12,1,37.99534,6.592074,0,0,0,44.58741,0,0,0,1,0,5,61.2,24.1,1,56.8,221,221,0,0,1.609438,5.398163,0,4.564348,5.449456,1,0,0,56.8,8.097261,1.609438,3.797452,1
-14,4,95,1,3,426214,0,3284.458,36.63929,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,24.1,1,56.8,221,221,0,0,1.386294,5.398163,0,4.564348,5.449456,1,0,0,56.8,8.097261,1.386294,,0
-14,4,95,1,1,426215,0,3284.458,8.353183,0,12,1,6.072875,6.52834,0,0,0,12.60121,0,0,0,1,0,5,70,9.967326,0,63,221,221,1,0,1.609438,5.398163,0,4.564348,5.449456,0,0,0,63,8.097261,1.609438,2.533793,1
-14,4,95,1,2,426215,0,3284.458,9.353183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,70,9.967326,0,63,221,221,1,0,1.609438,5.398163,0,4.564348,5.449456,0,0,0,63,8.097261,1.609438,,0
-14,4,95,1,3,426215,0,3284.458,10.35318,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,63,221,221,1,0,1.386294,5.398163,0,4.564348,5.449456,0,0,0,63,8.097261,1.386294,,0
-14,4,95,1,1,426216,0,3284.458,10.40931,1,12,1,27.32794,0,0,0,0,27.32794,0,0,0,2,0,5,80,9.967326,0,85.2,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,85.2,8.097261,1.609438,3.307909,1
-14,4,95,1,2,426216,0,3284.458,11.40931,1,12,1,0,5.337996,0,0,0,5.337996,0,0,0,0,0,5,80,9.967326,0,85.2,221,221,1,1,1.609438,5.398163,0,4.564348,5.449456,0,0,0,85.2,8.097261,1.609438,1.67485,1
-14,4,95,1,3,426216,0,3284.458,12.40931,1,12,1,27.14835,0,0,0,0,27.14835,0,0,0,2,0,4,80,9.967326,0,85.2,221,221,1,1,1.386294,5.398163,0,4.564348,5.449456,0,0,0,85.2,8.097261,1.386294,3.301316,1
-13,4,0,1,1,426220,0,5279.179,50.99795,1,16,1,16.64067,3.421737,52.78211,0,0,72.84451,0,0,0,1,1,3,86.7,20.7,0,94.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,94.3,8.571715,1.098612,4.288327,1
-13,4,0,1,2,426220,0,5279.179,51.99795,1,16,1,21.73913,7.534639,0,0,0,29.27377,0,0,0,2,0,3,86.7,20.7,0,94.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,94.3,8.571715,1.098612,3.376692,1
-13,4,0,1,3,426220,0,5279.179,52.99795,1,16,1,88.34504,0,43.67867,0,230.4653,362.489,1,1,0,3,1,3,86.7,20.7,0,94.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,94.3,8.571715,1.098612,5.892994,1
-13,4,0,1,1,426221,0,5279.179,11.27995,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,92.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.571715,1.098612,,0
-13,4,0,1,2,426221,0,5279.179,12.27995,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,92.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.571715,1.098612,,0
-13,4,0,1,3,426221,0,5279.179,13.27995,1,16,1,136.194,0,0,0,597.1027,733.2968,1,0,0,11,1,3,85,9.967326,0,92.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.571715,1.098612,6.59755,1
-13,4,0,1,1,426222,0,5279.179,15.18412,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,76.1,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.571715,1.098612,,0
-13,4,0,1,2,426222,0,5279.179,16.18412,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,76.1,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.571715,1.098612,,0
-13,4,0,1,3,426222,0,5279.179,17.18412,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,76.1,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.571715,1.098612,,0
-11,4,0,1,1,426223,0,1859.824,5.451061,0,12,1,31.88259,3.036437,0,0,0,34.91903,0,0,0,5,0,2,100,9.967326,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,7.528775,.6931472,3.553032,1
-11,4,0,1,2,426223,0,1859.824,6.451061,0,12,1,6.993007,5.594406,0,0,0,12.58741,0,0,0,1,0,2,100,9.967326,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,7.528775,.6931472,2.532697,1
-11,4,0,1,3,426223,0,1859.824,7.451061,0,12,1,13.25353,0,0,0,0,13.25353,0,0,0,3,0,2,100,9.967326,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,7.528775,.6931472,2.584264,1
-11,4,0,1,4,426223,0,1859.824,8.451061,0,12,1,48.61645,1.725596,0,0,0,50.34204,0,0,1,1,2,2,100,9.967326,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,7.528775,.6931472,3.918841,1
-11,4,0,1,5,426223,0,1859.824,9.451061,0,12,1,40.27748,0,0,63.22445,0,40.27748,0,0,4,3,0,2,100,9.967326,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,7.528775,.6931472,3.695793,1
-11,4,0,1,1,426224,0,1859.824,25.36893,1,12,1,28.84615,13.58806,27.58097,0,0,70.01518,0,0,0,3,0,2,57.4,3.4,0,84.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,84.1,7.528775,.6931472,4.248712,1
-11,4,0,1,2,426224,0,1859.824,26.36893,1,12,1,9.324009,4.638695,0,0,0,13.9627,0,0,0,1,0,2,57.4,3.4,0,84.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,84.1,7.528775,.6931472,2.63639,1
-11,4,0,1,3,426224,0,1859.824,27.36893,1,12,1,32.92005,12.09919,25.22445,0,0,70.24369,0,0,0,4,0,2,57.4,3.4,0,84.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,84.1,7.528775,.6931472,4.25197,1
-11,4,0,1,4,426224,0,1859.824,28.36893,1,12,1,65.33436,29.09301,0,51.88317,0,94.42736,0,0,5,3,0,2,57.4,3.4,0,84.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,84.1,7.528775,.6931472,4.547831,1
-11,4,0,1,5,426224,0,1859.824,29.36893,1,12,1,17.56235,13.90938,0,94.83667,0,31.47173,0,0,6,1,1,2,57.4,3.4,0,84.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,84.1,7.528775,.6931472,3.44909,1
-7,4,25,1,1,426228,0,9224.047,35.74538,1,15,1,435.6826,7.135497,33.48789,0,0,476.306,0,0,0,5,0,5,92.6,20.7,0,87.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.129678,1.609438,6.16606,1
-7,4,25,1,2,426228,0,9224.047,36.74538,1,15,1,23.67424,11.10322,0,0,37.87879,72.65625,1,1,0,3,0,5,92.6,20.7,0,87.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.129678,1.609438,4.285739,1
-7,4,25,1,3,426228,0,9224.047,37.74538,1,15,1,32.07629,5.587343,26.0078,0,0,63.67144,0,0,0,4,0,5,92.6,20.7,0,87.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.129678,1.609438,4.153736,1
-7,4,25,1,1,426229,0,9224.047,.733744,1,15,1,12.36476,2.184441,0,0,0,14.5492,0,0,0,2,0,5,83.39137,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,2.677536,1
-7,4,25,1,2,426229,0,9224.047,1.733744,1,15,1,5.681818,5.160985,0,0,0,10.8428,0,0,0,1,0,5,83.39137,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,2.383502,1
-7,4,25,1,3,426229,0,9224.047,2.733744,1,15,1,5.20156,4.508019,0,0,0,9.709579,0,0,0,1,0,5,83.39137,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,2.273113,1
-7,4,25,1,1,426230,0,9224.047,8.142368,0,15,1,14.56981,2.339,0,0,0,16.90881,0,0,0,2,0,5,88.3,9.967326,0,92.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.129678,1.609438,2.827835,1
-7,4,25,1,2,426230,0,9224.047,9.142368,0,15,1,18.59848,5.492424,0,0,0,24.09091,0,0,0,3,0,5,88.3,9.967326,0,92.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.129678,1.609438,3.181835,1
-7,4,25,1,3,426230,0,9224.047,10.14237,0,15,1,6.501951,3.48938,0,0,0,9.991331,0,0,0,1,0,5,88.3,9.967326,0,92.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.129678,1.609438,2.301718,1
-7,4,25,1,1,426231,0,9224.047,9.560575,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,,0
-7,4,25,1,2,426231,0,9224.047,10.56057,1,15,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,,0
-7,4,25,1,3,426231,0,9224.047,11.56057,1,15,1,0,3.250975,0,0,0,3.250975,0,0,0,0,0,5,91.7,9.967326,0,85.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.129678,1.609438,1.178955,1
-7,4,25,1,1,426232,0,9224.047,35.36482,0,16,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,5,86.2,3.4,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.129678,1.609438,1.639382,1
-7,4,25,1,2,426232,0,9224.047,36.36482,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.129678,1.609438,,0
-7,4,25,1,3,426232,0,9224.047,37.36482,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.129678,1.609438,,0
-13,4,0,1,1,426252,0,12809.38,57.39357,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,13.8,0,79.5,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,79.5,9.458012,.6931472,,0
-13,4,0,1,2,426252,0,12809.38,58.39357,1,16,1,9.469697,0,0,0,0,9.469697,0,0,0,1,0,2,84.6,13.8,0,79.5,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,79.5,9.458012,.6931472,2.248097,1
-13,4,0,1,3,426252,0,12809.38,59.39357,1,16,1,134.8071,0,0,0,0,134.8071,0,0,0,7,0,2,84.6,13.8,0,79.5,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,79.5,9.458012,.6931472,4.903845,1
-13,4,0,1,1,426253,0,12809.38,58.65298,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,3.4,0,71.6,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,71.6,9.458012,.6931472,,0
-13,4,0,1,2,426253,0,12809.38,59.65298,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,3.4,0,71.6,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,71.6,9.458012,.6931472,,0
-13,4,0,1,3,426253,0,12809.38,60.65298,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,91.5,3.4,0,71.6,300,919.44,0,0,.6931472,6.823765,1,4.564348,5.755076,0,0,0,71.6,9.458012,.6931472,,0
-18,4,25,0,1,426258,0,5095.015,2.652977,1,18,1,46.28185,21.86687,0,0,0,68.14873,0,0,0,8,0,4,83.39137,9.967326,0,85.2,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.536214,1.386294,4.221693,1
-18,4,25,0,2,426258,0,5095.015,3.652977,1,18,1,13.37793,4.730052,0,0,0,18.10798,0,0,0,2,0,4,83.39137,9.967326,0,85.2,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.536214,1.386294,2.896353,1
-18,4,25,0,3,426258,0,5095.015,4.652977,1,18,1,13.53819,4.609306,0,0,0,18.1475,0,0,0,1,0,4,83.39137,9.967326,0,85.2,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.536214,1.386294,2.898533,1
-18,4,25,0,1,426259,0,5095.015,32.04654,0,16,1,42.5221,3.094124,0,0,0,45.61623,0,0,0,1,0,4,50,13.8,1,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.536214,1.386294,3.820263,1
-18,4,25,0,2,426259,0,5095.015,33.04654,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,50,13.8,1,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.536214,1.386294,,0
-18,4,25,0,3,426259,0,5095.015,34.04654,0,16,1,52.62072,1.865672,0,0,0,54.48639,0,0,0,2,0,4,50,13.8,1,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.536214,1.386294,3.997951,1
-18,4,25,0,1,426260,0,5095.015,32.22177,1,18,1,58.34633,6.110244,21.84087,0,0,86.29745,0,0,0,5,0,4,71.8,13.8,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.536214,1.386294,4.4578,1
-18,4,25,0,2,426260,0,5095.015,33.22177,1,18,1,0,8.241758,0,0,626.8896,635.1314,1,0,0,0,0,4,71.8,13.8,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.536214,1.386294,6.453832,1
-18,4,25,0,3,426260,0,5095.015,34.22177,1,18,1,22.82704,0,13.16945,0,0,35.99649,0,0,0,2,0,4,71.8,13.8,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.536214,1.386294,3.583421,1
-18,4,25,0,1,426261,0,5095.015,5.256673,0,18,1,6.760271,4.914196,0,0,0,11.67447,0,0,0,1,0,4,83.3,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.536214,1.386294,2.457404,1
-18,4,25,0,2,426261,0,5095.015,6.256673,0,18,1,0,5.685619,0,0,0,5.685619,0,0,0,0,0,4,83.3,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.536214,1.386294,1.73794,1
-18,4,25,0,3,426261,0,5095.015,7.256673,0,18,1,24.36348,0,0,0,0,24.36348,0,0,0,2,0,4,83.3,9.967326,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.536214,1.386294,3.193085,1
-10,4,50,1,1,426282,0,2951.32,33.10883,1,16,1,20.60793,5.074704,0,0,0,25.68264,0,0,0,2,0,1,72.9,13.8,0,83,765,765,0,0,0,6.639876,0,3.931826,7.333023,1,0,0,83,7.990346,0,3.245815,1
-10,4,50,1,2,426282,0,2951.32,34.10883,1,16,1,24.62121,19.17614,0,0,0,43.79735,0,0,0,3,0,1,72.9,13.8,0,83,765,765,0,0,0,6.639876,0,3.931826,7.333023,1,0,0,83,7.990346,0,3.779573,1
-10,4,50,1,3,426282,0,2951.32,35.10883,1,16,1,8.669268,21.71651,0,0,0,30.38578,0,0,0,1,0,1,72.9,13.8,0,83,765,765,0,0,0,6.639876,0,3.931826,7.333023,1,0,0,83,7.990346,0,3.413975,1
-14,4,95,1,1,426357,0,7591.789,52.86242,1,14,1,10.30397,11.84956,0,0,0,22.15353,0,0,0,1,0,2,47.9,17.2,1,76.1,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,0,0,0,76.1,8.934955,.6931472,3.097997,1
-14,4,95,1,2,426357,0,7591.789,53.86242,1,14,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,2,47.9,17.2,1,76.1,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,0,0,0,76.1,8.934955,.6931472,1.737271,1
-14,4,95,1,3,426357,0,7591.789,54.86242,1,14,1,138.4915,15.73472,0,0,0,154.2263,0,0,0,8,0,2,47.9,17.2,1,76.1,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,0,0,0,76.1,8.934955,.6931472,5.038421,1
-14,4,95,1,4,426357,0,7591.789,55.86242,1,14,1,99.25167,48.68846,12.99724,0,0,160.9374,0,0,0,10,1,2,47.9,17.2,1,76.1,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,0,0,0,76.1,8.934955,.6931472,5.081015,1
-14,4,95,1,5,426357,0,7591.789,56.86242,1,14,1,20.03578,55.22719,0,0,0,75.26297,0,0,0,3,2,2,47.9,17.2,1,76.1,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,0,0,0,76.1,8.934955,.6931472,4.320988,1
-14,4,95,1,1,426358,0,7591.789,51.59206,0,16,1,58.73261,34.13189,0,0,0,92.8645,0,0,0,3,0,2,51.6,20.7,1,60.2,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,1,0,0,60.2,8.934955,.6931472,4.531141,1
-14,4,95,1,2,426358,0,7591.789,52.59206,0,16,1,9.469697,2.012311,0,0,0,11.48201,0,0,0,1,0,2,51.6,20.7,1,60.2,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,1,0,0,60.2,8.934955,.6931472,2.440781,1
-14,4,95,1,3,426358,0,7591.789,53.59206,0,16,1,49.63156,0,0,0,0,49.63156,0,0,0,1,0,2,51.6,20.7,1,60.2,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,1,0,0,60.2,8.934955,.6931472,3.904627,1
-14,4,95,1,4,426358,0,7591.789,54.59206,0,16,1,54.62781,4.805041,18.51122,0,0,77.94407,0,0,0,3,1,2,51.6,20.7,1,60.2,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,1,0,0,60.2,8.934955,.6931472,4.355991,1
-14,4,95,1,5,426358,0,7591.789,55.59206,0,16,1,2.862254,2.826476,0,0,0,5.68873,0,0,0,1,0,2,51.6,20.7,1,60.2,687.5,687.5,0,0,.6931472,6.533062,0,4.564348,6.584355,1,0,0,60.2,8.934955,.6931472,1.738487,1
-11,4,0,1,1,426359,0,10963.64,48.84052,0,17,1,75.39262,0,0,0,0,75.39262,0,0,0,4,0,3,83.5,6.9,0,92,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,92,9.30243,1.098612,4.32271,1
-11,4,0,1,2,426359,0,10963.64,49.84052,0,17,1,9.555662,0,37.26708,0,0,46.82274,0,0,0,0,1,3,83.5,6.9,0,92,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,92,9.30243,1.098612,3.846369,1
-11,4,0,1,3,426359,0,10963.64,50.84052,0,17,1,0,0,0,0,0,0,0,0,0,0,0,3,83.5,6.9,0,92,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,92,9.30243,1.098612,,0
-11,4,0,1,1,426360,0,10963.64,50.19849,1,16,1,167.8887,0,31.20125,0,0,199.09,0,0,0,2,0,3,74.5,27.6,0,71.6,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,71.6,9.30243,1.098612,5.293757,1
-11,4,0,1,2,426360,0,10963.64,51.19849,1,16,1,62.70903,0,0,0,0,62.70903,0,0,0,3,0,3,74.5,27.6,0,71.6,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,71.6,9.30243,1.098612,4.138505,1
-11,4,0,1,3,426360,0,10963.64,52.19849,1,16,1,129.2801,41.18086,32.92362,0,645.2239,848.6084,1,0,0,13,1,3,74.5,27.6,0,71.6,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,71.6,9.30243,1.098612,6.743598,1
-11,4,0,1,1,426361,0,10963.64,16.29569,0,16,1,0,1.976079,0,0,0,1.976079,0,0,0,0,0,3,78.7,6.9,0,79.5,0,443.28,1,0,1.098612,6.094202,0,0,0,0,0,0,79.5,9.30243,1.098612,.6811146,1
-11,4,0,1,2,426361,0,10963.64,17.29569,0,16,1,9.555662,0,0,0,0,9.555662,0,0,0,0,1,3,78.7,6.9,0,79.5,0,443.28,1,0,1.098612,6.094202,0,0,0,0,0,0,79.5,9.30243,1.098612,2.257134,1
-11,4,0,1,3,426361,0,10963.64,18.29569,0,16,1,9.218613,0,0,0,0,9.218613,0,0,0,1,0,3,78.7,6.9,0,79.5,0,443.28,0,0,1.098612,6.094202,0,0,0,0,0,0,79.5,9.30243,1.098612,2.221225,1
-10,4,50,1,1,426362,0,11704.4,35.89322,0,12,1,10.30397,0,0,0,0,10.30397,0,0,0,0,2,5,100,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.367805,1.609438,2.332529,1
-10,4,50,1,2,426362,0,11704.4,36.89322,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,100,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.367805,1.609438,,0
-10,4,50,1,3,426362,0,11704.4,37.89322,0,12,1,10.40312,6.415258,0,0,0,16.81838,0,0,0,0,2,5,100,6.9,0,88.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.367805,1.609438,2.822472,1
-10,4,50,1,1,426363,0,11704.4,10.65571,0,12,1,5.151984,2.575992,0,0,0,7.727975,0,0,0,1,0,5,91.7,9.967326,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.367805,1.609438,2.044847,1
-10,4,50,1,2,426363,0,11704.4,11.65571,0,12,1,26.04167,0,0,0,0,26.04167,0,0,0,1,0,5,91.7,9.967326,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.367805,1.609438,3.259698,1
-10,4,50,1,3,426363,0,11704.4,12.65571,0,12,1,10.40312,3.420026,0,0,0,13.82315,0,0,0,2,0,5,91.7,9.967326,0,77.8,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.367805,1.609438,2.626344,1
-10,4,50,1,1,426364,0,11704.4,9.357974,1,12,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,5,83.3,9.967326,0,92.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,1.821703,1
-10,4,50,1,2,426364,0,11704.4,10.35797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,9.967326,0,92.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,,0
-10,4,50,1,3,426364,0,11704.4,11.35797,1,12,1,360.0173,73.355,0,0,329.1157,762.4881,2,0,0,28,0,5,83.3,9.967326,0,92.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,6.636587,1
-10,4,50,1,1,426365,0,11704.4,30.73785,1,12,1,0,.643998,0,0,0,.643998,0,0,0,0,0,5,90.4,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,77.3,9.367805,1.609438,-.4400597,1
-10,4,50,1,2,426365,0,11704.4,31.73785,1,12,1,33.73579,0,0,0,0,33.73579,0,0,0,1,0,5,90.4,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,77.3,9.367805,1.609438,3.518559,1
-10,4,50,1,3,426365,0,11704.4,32.73785,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,77.3,9.367805,1.609438,,0
-10,4,50,1,1,426366,0,11704.4,3.77002,0,12,1,12.36476,3.967027,0,0,0,16.33179,0,0,0,2,0,5,83.39137,9.967326,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,2.793113,1
-10,4,50,1,2,426366,0,11704.4,4.77002,0,12,1,19.88636,0,0,0,0,19.88636,0,0,0,3,0,5,83.39137,9.967326,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,2.990034,1
-10,4,50,1,3,426366,0,11704.4,5.77002,0,12,1,5.20156,0,0,0,0,5.20156,0,0,0,1,0,5,83.39137,9.967326,0,92.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.367805,1.609438,1.648959,1
-13,4,0,1,1,426405,0,12723.75,37.37714,0,12,1,15.97115,0,44.30706,0,0,60.27821,0,0,0,0,1,4,90.4,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.451304,1.386294,4.09897,1
-13,4,0,1,2,426405,0,12723.75,38.37714,0,12,1,95.17046,16.99811,0,0,0,112.1686,0,0,0,3,0,4,90.4,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.451304,1.386294,4.720003,1
-13,4,0,1,3,426405,0,12723.75,39.37714,0,12,1,65.77807,4.594712,39.87863,140.8756,0,110.2514,0,0,8,4,1,4,90.4,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.451304,1.386294,4.702763,1
-13,4,0,1,4,426405,0,12723.75,40.37714,0,12,1,13.78496,1.543915,35.44703,0,0,50.77589,0,0,0,1,0,4,90.4,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.451304,1.386294,3.927422,1
-13,4,0,1,5,426405,0,12723.75,41.37714,0,12,1,61.44902,2.640429,40.07156,0,0,104.161,0,0,0,3,1,4,90.4,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.451304,1.386294,4.645938,1
-13,4,0,1,1,426406,0,12723.75,35.9425,1,13,1,36.68212,58.83565,0,0,0,95.51778,0,0,0,6,0,4,75.5,17.2,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.451304,1.386294,4.559312,1
-13,4,0,1,2,426406,0,12723.75,36.9425,1,13,1,28.88258,43.46591,0,0,0,72.34849,0,0,0,4,0,4,75.5,17.2,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.451304,1.386294,4.281495,1
-13,4,0,1,3,426406,0,12723.75,37.9425,1,13,1,43.56307,39.33247,25.57434,21.67317,0,108.4699,0,0,2,4,1,4,75.5,17.2,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.451304,1.386294,4.686472,1
-13,4,0,1,4,426406,0,12723.75,38.9425,1,13,1,69.98818,26.79795,7.081528,35.44703,0,103.8677,0,0,2,4,0,4,75.5,17.2,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.451304,1.386294,4.643118,1
-13,4,0,1,5,426406,0,12723.75,39.9425,1,13,1,50.80501,17.54562,11.44902,0,1260.59,1340.39,1,0,0,4,0,4,75.5,17.2,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,9.451304,1.386294,7.200716,1
-13,4,0,1,1,426407,0,12723.75,15.90144,1,13,1,20.50489,0,18.26378,0,0,38.76868,0,0,0,0,1,4,71.8,6.9,0,73.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.451304,1.386294,3.657613,1
-13,4,0,1,2,426407,0,12723.75,16.90144,1,13,1,9.469697,0,41.66667,0,0,51.13636,0,0,0,0,1,4,71.8,6.9,0,73.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.451304,1.386294,3.934496,1
-13,4,0,1,3,426407,0,12723.75,17.90144,1,13,1,21.67317,0,17.772,0,0,39.44517,0,0,0,1,1,4,71.8,6.9,0,73.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.451304,1.386294,3.674911,1
-13,4,0,1,4,426407,0,12723.75,18.90144,1,13,1,6.301693,6.478929,0,0,0,12.78062,0,0,0,1,0,4,71.8,6.9,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.451304,1.386294,2.54793,1
-13,4,0,1,5,426407,0,12723.75,19.90144,1,13,1,28.98032,37.92487,248.6583,0,0,315.5635,0,0,0,1,1,4,71.8,6.9,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.451304,1.386294,5.75436,1
-13,4,0,1,1,426408,0,12723.75,12.62697,1,13,1,5.151984,6.852138,0,0,0,12.00412,0,0,0,1,0,4,70,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.451304,1.386294,2.48525,1
-13,4,0,1,2,426408,0,12723.75,13.62697,1,13,1,7.102273,0,5.681818,0,0,12.78409,0,0,0,0,1,4,70,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.451304,1.386294,2.548202,1
-13,4,0,1,3,426408,0,12723.75,14.62697,1,13,1,8.669268,0,25.57434,0,0,34.24361,0,0,0,0,1,4,70,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.451304,1.386294,3.5335,1
-13,4,0,1,4,426408,0,12723.75,15.62697,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.451304,1.386294,,0
-13,4,0,1,5,426408,0,12723.75,16.62697,1,13,1,59.39177,13.50626,21.46691,0,0,94.36494,0,0,0,5,1,4,70,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.451304,1.386294,4.54717,1
-11,4,0,1,1,426418,0,1344.868,24.56947,0,12,1,62.01248,4.368175,40.0416,0,0,106.4223,0,0,0,2,3,1,82.4,10.3,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.204794,0,4.667415,1
-11,4,0,1,2,426418,0,1344.868,25.56947,0,12,1,55.90062,0,0,0,275.5614,331.462,1,0,0,3,1,1,82.4,10.3,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.204794,0,5.803513,1
-11,4,0,1,3,426418,0,1344.868,26.56947,0,12,1,123.7928,18.59087,30.28973,0,0,172.6734,0,0,0,6,1,1,82.4,10.3,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.204794,0,5.151402,1
-13,4,0,0,1,426420,0,16754.25,34.62286,1,12,1,460.3967,9.27357,0,0,0,469.6703,0,0,0,6,0,2,80.9,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,9.726467,.6931472,6.152031,1
-13,4,0,0,2,426420,0,16754.25,35.62286,1,12,1,105.9612,0,0,0,0,105.9612,0,0,0,3,0,2,80.9,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,9.726467,.6931472,4.663073,1
-13,4,0,0,3,426420,0,16754.25,36.62286,1,12,1,39.48851,11.24837,0,0,0,50.73689,0,0,0,0,0,2,80.9,17.2,0,67,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,67,9.726467,.6931472,3.926653,1
-13,4,0,0,1,426421,0,16754.25,37.51951,0,13,1,64.3998,4.765585,0,0,0,69.16538,0,0,0,2,0,2,80.9,6.9,0,84.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,84.1,9.726467,.6931472,4.2365,1
-13,4,0,0,2,426421,0,16754.25,38.51951,0,13,1,0,3.669508,0,0,0,3.669508,0,0,0,0,0,2,80.9,6.9,0,84.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,84.1,9.726467,.6931472,1.300057,1
-13,4,0,0,3,426421,0,16754.25,39.51951,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,6.9,0,84.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,84.1,9.726467,.6931472,,0
-11,4,0,1,1,426440,0,8393.549,60.94182,1,14,1,113.0551,215.5332,0,260.1752,428.6708,757.2592,1,0,20,4,0,1,66,17.2,1,39.8,0,126,0,0,0,4.836282,0,0,0,1,0,0,39.8,9.035337,0,6.629705,1
-11,4,0,1,2,426440,0,8393.549,61.94182,1,14,1,198.982,187.8267,41.66667,227.2727,0,428.4754,0,0,19,7,1,1,66,17.2,1,39.8,0,126,0,0,0,4.836282,0,0,0,1,0,0,39.8,9.035337,0,6.060233,1
-11,4,0,1,3,426440,0,8393.549,62.94182,1,14,1,130.039,149.1461,26.0078,171.218,0,305.1929,0,0,14,6,1,1,66,17.2,1,39.8,0,126,0,0,0,4.836282,0,0,0,1,0,0,39.8,9.035337,0,5.720944,1
-11,4,0,1,1,426441,0,8025.807,6.858316,0,16,1,38.71458,0,0,0,0,38.71458,0,0,0,2,0,5,100,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,1,0,0,88.9,8.990542,1.609438,3.656216,1
-11,4,0,1,2,426441,0,8025.807,7.858316,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,1,0,0,88.9,8.990542,1.609438,,0
-11,4,0,1,3,426441,0,8025.807,8.858316,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,100,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,1,0,0,88.9,8.990542,1.609438,,0
-11,4,0,1,4,426441,0,8025.807,9.858316,0,16,1,3.843198,.9607994,0,0,0,4.803997,0,0,0,1,0,5,100,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,1,0,0,88.9,8.990542,1.609438,1.569448,1
-11,4,0,1,5,426441,0,8025.807,10.85832,0,16,1,44.60836,3.477345,4.783983,0,0,52.86969,0,0,0,6,0,5,100,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,1,0,0,88.9,8.990542,1.609438,3.96783,1
-11,4,0,1,1,426442,0,8025.807,15.17865,1,16,1,140.9413,24.55466,12.14575,0,0,177.6417,0,0,0,11,1,5,91,6.9,0,65.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,65.9,8.990542,1.609438,5.179769,1
-11,4,0,1,2,426442,0,8025.807,16.17864,1,16,1,56.87646,44.80653,0,0,0,101.683,0,0,0,10,0,5,91,6.9,0,65.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,65.9,8.990542,1.609438,4.62186,1
-11,4,0,1,3,426442,0,8025.807,17.17864,1,16,1,97.32792,37.83668,25.22445,0,0,160.3891,0,0,0,10,1,5,91,6.9,0,65.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,65.9,8.990542,1.609438,5.077602,1
-11,4,0,1,4,426442,0,8025.807,18.17864,1,16,1,49.30822,48.83936,0,0,0,98.14758,0,0,0,5,0,5,91,6.9,0,65.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,65.9,8.990542,1.609438,4.586472,1
-11,4,0,1,5,426442,0,8025.807,19.17864,1,16,1,75.34247,65.1844,5.261679,0,0,145.7885,0,0,0,4,0,5,91,6.9,0,65.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,65.9,8.990542,1.609438,4.982157,1
-11,4,0,1,1,426443,0,8025.807,39.42779,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,89.4,6.9,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.990542,1.609438,,0
-11,4,0,1,2,426443,0,8025.807,40.42779,1,16,1,11.18881,2.540792,0,0,0,13.7296,0,0,0,2,0,5,89.4,6.9,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.990542,1.609438,2.619554,1
-11,4,0,1,3,426443,0,8025.807,41.42779,1,16,1,6.412997,0,0,0,0,6.412997,0,0,0,1,0,5,89.4,6.9,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.990542,1.609438,1.858327,1
-11,4,0,1,4,426443,0,8025.807,42.42779,1,16,1,14.21983,0,21.13759,0,0,35.35742,0,0,0,2,0,5,89.4,6.9,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.990542,1.609438,3.565508,1
-11,4,0,1,5,426443,0,8025.807,43.42779,1,16,1,11.01159,2.103969,0,0,0,13.11556,0,0,0,0,0,5,89.4,6.9,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.990542,1.609438,2.573799,1
-11,4,0,1,1,426444,0,8025.807,41.12799,0,15,1,66.15385,0,21.25506,0,0,87.40891,0,0,0,2,1,5,91,3.4,0,90.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,90.9,8.990542,1.609438,4.470597,1
-11,4,0,1,2,426444,0,8025.807,42.12799,0,15,1,46.85315,0,0,0,0,46.85315,0,0,0,2,0,5,91,3.4,0,90.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,90.9,8.990542,1.609438,3.847018,1
-11,4,0,1,3,426444,0,8025.807,43.12799,0,15,1,47.86234,6.361693,25.22445,0,0,79.44848,0,0,0,3,1,5,91,3.4,0,90.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,90.9,8.990542,1.609438,4.375109,1
-11,4,0,1,4,426444,0,8025.807,44.12799,0,15,1,9.607994,0,21.13759,0,2462.087,2492.833,1,0,0,0,1,5,91,3.4,0,90.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,90.9,8.990542,1.609438,7.821175,1
-11,4,0,1,5,426444,0,8025.807,45.12799,0,15,1,100.8079,0,5.261679,0,0,106.0695,0,0,0,6,0,5,91,3.4,0,90.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,90.9,8.990542,1.609438,4.664095,1
-11,4,0,1,1,426445,0,8025.807,13.70842,1,16,1,48.20344,1.821862,0,0,0,50.0253,0,0,0,3,0,5,96.7,9.967326,0,95.1,0,0,1,1,1.609438,0,0,0,0,1,0,0,95.1,8.990542,1.609438,3.912529,1
-11,4,0,1,2,426445,0,8025.807,14.70842,1,16,1,77.50583,0,1.864802,0,0,79.37063,0,0,0,3,0,5,96.7,9.967326,0,95.1,0,0,1,1,1.609438,0,0,0,0,1,0,0,95.1,8.990542,1.609438,4.374128,1
-11,4,0,1,3,426445,0,8025.807,15.70842,1,16,1,69.6879,40.50877,0,0,0,110.1967,0,0,0,10,0,5,96.7,9.967326,0,95.1,0,0,1,1,1.609438,0,0,0,0,1,0,0,95.1,8.990542,1.609438,4.702267,1
-11,4,0,1,4,426445,0,8025.807,16.70842,1,16,1,69.42736,19.21599,0,0,0,88.64335,0,0,0,6,0,5,96.7,9.967326,0,95.1,0,0,1,1,1.609438,0,0,0,0,1,0,0,95.1,8.990542,1.609438,4.484621,1
-11,4,0,1,5,426445,0,8025.807,17.70842,1,16,1,121.8827,68.96382,0,0,0,190.8465,0,0,0,10,1,5,96.7,9.967326,0,95.1,0,0,1,1,1.609438,0,0,0,0,1,0,0,95.1,8.990542,1.609438,5.25147,1
-13,4,0,1,1,426473,0,9412.316,1.629021,1,13,1,29.35223,0,0,0,0,29.35223,0,0,0,1,4,4,83.39137,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.14988,1.386294,3.379368,1
-13,4,0,1,2,426473,0,9412.316,2.629021,1,13,1,54.62471,4.214452,0,0,0,58.83916,0,0,0,4,2,4,83.39137,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.14988,1.386294,4.074808,1
-13,4,0,1,3,426473,0,9412.316,3.629021,1,13,1,14.96366,2.116289,10.68833,0,0,27.76828,0,0,0,0,3,4,83.39137,9.967326,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.14988,1.386294,3.323894,1
-13,4,0,1,1,426474,0,9412.316,7.526352,1,13,1,28.34008,18.42105,0,0,0,46.76114,0,0,0,6,0,4,81.7,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.14988,1.386294,3.845052,1
-13,4,0,1,2,426474,0,9412.316,8.526352,1,13,1,11.65501,2.358974,26.10723,0,0,40.12121,0,0,0,1,0,4,81.7,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.14988,1.386294,3.691905,1
-13,4,0,1,3,426474,0,9412.316,9.526352,1,13,1,5.130398,2.885849,0,0,0,8.016246,0,0,0,1,0,4,81.7,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.14988,1.386294,2.08147,1
-13,4,0,1,1,426475,0,9412.316,27.52088,0,12,1,39.47368,24.48887,0,0,0,63.96255,0,0,0,4,0,4,86.7,3.4,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.14988,1.386294,4.158298,1
-13,4,0,1,2,426475,0,9412.316,28.52088,0,12,1,45.17949,3.310023,3.496504,0,0,51.98602,0,0,0,4,0,4,86.7,3.4,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.14988,1.386294,3.950975,1
-13,4,0,1,3,426475,0,9412.316,29.52088,0,12,1,12.61223,6.348867,0,0,0,18.96109,0,0,0,1,0,4,86.7,3.4,0,86.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,86.4,9.14988,1.386294,2.942389,1
-13,4,0,1,1,426476,0,9412.316,27.4935,1,13,1,23.6083,17.49494,0,0,0,41.10324,0,0,0,1,0,4,69.1,3.4,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.14988,1.386294,3.716087,1
-13,4,0,1,2,426476,0,9412.316,28.4935,1,13,1,23.31002,20.52214,29.37063,0,0,73.2028,0,0,0,2,1,4,69.1,3.4,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.14988,1.386294,4.293233,1
-13,4,0,1,3,426476,0,9412.316,29.4935,1,13,1,130.9064,41.54767,0,0,1347.978,1520.432,1,0,0,7,1,4,69.1,3.4,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,9.14988,1.386294,7.32675,1
-11,4,0,1,1,426479,0,11625.81,30.59548,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,72.9,10.3,1,56.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,56.8,9.361069,.6931472,,0
-11,4,0,1,2,426479,0,11625.81,31.59548,0,16,1,9.555662,0,0,0,0,9.555662,0,0,0,0,1,2,72.9,10.3,1,56.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,56.8,9.361069,.6931472,2.257134,1
-11,4,0,1,3,426479,0,11625.81,32.59548,0,16,1,10.97454,0,30.72871,0,0,41.70325,0,0,0,0,1,2,72.9,10.3,1,56.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,56.8,9.361069,.6931472,3.730579,1
-11,4,0,1,4,426479,0,11625.81,33.59548,0,16,1,100.347,3.570004,0,0,0,103.917,0,0,0,2,0,2,72.9,10.3,1,56.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,56.8,9.361069,.6931472,4.643593,1
-11,4,0,1,5,426479,0,11625.81,34.59548,0,16,1,226.9761,0,22.11748,0,0,249.0936,0,0,0,4,1,2,72.9,10.3,1,56.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,56.8,9.361069,.6931472,5.517828,1
-11,4,0,1,1,426480,0,11625.81,28.14784,1,14,1,43.88976,15.31461,20.80083,0,0,80.0052,0,0,0,1,0,2,64.9,13.8,0,81.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,81.8,9.361069,.6931472,4.382092,1
-11,4,0,1,2,426480,0,11625.81,29.14784,1,14,1,9.555662,0,31.53368,0,0,41.08934,0,0,0,0,1,2,64.9,13.8,0,81.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,81.8,9.361069,.6931472,3.715749,1
-11,4,0,1,3,426480,0,11625.81,30.14784,1,14,1,26.77788,3.599649,0,856.014,0,30.37752,0,0,39,1,0,2,64.9,13.8,0,81.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,81.8,9.361069,.6931472,3.413703,1
-11,4,0,1,4,426480,0,11625.81,31.14784,1,14,1,68.20901,0,5.584364,566.4141,0,73.79338,0,0,29,1,1,2,64.9,13.8,0,81.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,81.8,9.361069,.6931472,4.301269,1
-11,4,0,1,5,426480,0,11625.81,32.14784,1,14,1,46.29441,5.989848,0,0,0,52.28426,0,0,0,1,0,2,64.9,13.8,0,81.8,0,126,0,0,.6931472,4.836282,0,0,0,0,0,0,81.8,9.361069,.6931472,3.956696,1
-11,4,0,1,1,426492,0,4175.953,54.42574,1,9,1,88.10922,81.5662,43.64245,0,495.7238,709.0417,1,0,0,8,0,1,71.3,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,8.337337,0,6.563914,1
-11,4,0,1,2,426492,0,4175.953,55.42574,1,9,1,80.49242,103.8684,103.4612,0,0,287.822,0,0,0,6,1,1,71.3,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,8.337337,0,5.662342,1
-11,4,0,1,3,426492,0,4175.953,56.42574,1,9,1,173.9705,128.3962,54.75509,0,0,357.1218,0,0,0,17,1,1,71.3,13.8,0,60.2,0,0,0,0,0,0,0,0,0,1,0,0,60.2,8.337337,0,5.878077,1
-10,4,50,0,1,426493,0,15394.13,48.13689,0,19,1,11.84956,6.903658,17.51674,0,0,36.26996,0,0,0,0,0,4,80.9,10.3,0,63.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,63.6,9.641807,1.386294,3.59099,1
-10,4,50,0,2,426493,0,15394.13,49.13689,0,19,1,82.51421,0,0,0,596.1411,678.6553,1,0,0,4,0,4,80.9,10.3,0,63.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,63.6,9.641807,1.386294,6.520113,1
-10,4,50,0,3,426493,0,15394.13,50.13689,0,19,1,78.13177,0,0,0,0,78.13177,0,0,0,3,0,4,80.9,10.3,0,63.6,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,63.6,9.641807,1.386294,4.358397,1
-10,4,50,0,1,426494,0,15394.13,42.55168,1,16,1,75.14684,4.770737,35.03349,0,0,114.9511,0,0,0,8,0,4,63.3,10.3,1,48.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,48.9,9.641807,1.386294,4.744506,1
-10,4,50,0,2,426494,0,15394.13,43.55168,1,16,1,55.85227,20.43561,0,0,0,76.28788,0,0,0,4,0,4,63.3,10.3,1,48.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,48.9,9.641807,1.386294,4.334514,1
-10,4,50,0,3,426494,0,15394.13,44.55168,1,16,1,73.81881,31.96792,0,0,0,105.7867,0,0,0,4,0,4,63.3,10.3,1,48.9,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,48.9,9.641807,1.386294,4.661425,1
-10,4,50,0,1,426495,0,15394.13,7.00616,0,16,1,6.841834,2.833591,0,0,0,9.675425,0,0,0,1,0,4,71.7,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.641807,1.386294,2.269589,1
-10,4,50,0,2,426495,0,15394.13,8.00616,0,16,1,91.14584,0,0,0,0,91.14584,0,0,0,3,1,4,71.7,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.641807,1.386294,4.512461,1
-10,4,50,0,3,426495,0,15394.13,9.00616,0,16,1,7.195492,3.359341,0,0,0,10.55483,0,0,0,1,0,4,71.7,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.641807,1.386294,2.356584,1
-10,4,50,0,1,426496,0,15394.13,16.81862,0,16,1,65.68779,6.620299,55.64142,0,0,127.9495,0,0,0,2,0,4,81.4,10.3,0,54.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,54.8,9.641807,1.386294,4.851636,1
-10,4,50,0,2,426496,0,15394.13,17.81862,0,16,1,8.285985,3.551136,0,0,30.77652,42.61364,1,0,0,0,0,4,81.4,10.3,0,54.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,54.8,9.641807,1.386294,3.752174,1
-10,4,50,0,3,426496,0,15394.13,18.81862,0,16,1,0,1.798873,0,0,0,1.798873,0,0,0,0,0,4,81.4,10.3,0,54.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,54.8,9.641807,1.386294,.5871603,1
-11,4,0,1,1,426516,0,1509.091,23.03901,1,14,1,18.20073,0,0,0,0,18.20073,0,0,0,1,0,1,93.1,3.4,0,72.7,0,0,0,0,0,0,0,0,0,0,0,0,72.7,7.319925,0,2.901462,1
-11,4,0,1,2,426516,0,1509.091,24.03901,1,14,1,46.10607,11.9398,0,0,0,58.04587,0,0,0,3,0,1,93.1,3.4,0,72.7,0,0,0,0,0,0,0,0,0,0,0,0,72.7,7.319925,0,4.061234,1
-11,4,0,1,3,426516,0,1509.091,25.03901,1,14,1,16.24232,14.3547,0,0,631.7823,662.3793,1,0,0,0,0,1,93.1,3.4,0,72.7,0,0,0,0,0,0,0,0,0,0,0,0,72.7,7.319925,0,6.495838,1
-13,4,0,0,1,426519,0,12406.45,28.69541,0,18,1,158.8355,0,0,14.04494,0,158.8355,0,0,1,1,1,2,72.3,10.3,0,87.5,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,87.5,9.426052,.6931472,5.067869,1
-13,4,0,0,2,426519,0,12406.45,29.69541,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,10.3,0,87.5,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,87.5,9.426052,.6931472,,0
-13,4,0,0,3,426519,0,12406.45,30.69541,0,18,1,119.4755,0,0,481.5133,0,119.4755,0,0,30,2,0,2,72.3,10.3,0,87.5,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,87.5,9.426052,.6931472,4.783111,1
-13,4,0,0,1,426520,0,12406.45,25.08693,1,16,1,30.64351,2.93667,0,14.04494,0,33.58018,0,0,1,4,0,2,55.3,0,0,81.8,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,81.8,9.426052,.6931472,3.513936,1
-13,4,0,0,2,426520,0,12406.45,26.08693,1,16,1,51.57056,4.946085,4.453821,1340.834,0,60.97046,0,0,52,4,0,2,55.3,0,0,81.8,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,81.8,9.426052,.6931472,4.11039,1
-13,4,0,0,3,426520,0,12406.45,27.08693,1,16,1,90.71367,8.516767,2.527945,309.5443,0,101.7584,0,0,20,2,0,2,55.3,0,0,81.8,300,647.16,0,0,.6931472,6.472594,1,4.564348,5.755076,0,0,0,81.8,9.426052,.6931472,4.622601,1
-13,4,0,1,1,426541,0,8790.029,27.03901,1,16,1,21.45046,0,0,418.7947,0,21.45046,0,0,19,1,0,1,79.8,6.9,0,80.7,150,160.08,0,0,0,5.075674,1,4.564348,5.061929,0,0,0,80.7,9.081487,0,3.065746,1
-13,4,0,1,2,426541,0,8790.029,28.03901,1,16,1,123.3005,0,0,633.6146,0,123.3005,0,0,24,7,0,1,79.8,6.9,0,80.7,150,160.08,0,0,0,5.075674,1,4.564348,5.061929,0,0,0,80.7,9.081487,0,4.814625,1
-13,4,0,1,3,426541,0,8790.029,29.03901,1,16,1,100.172,9.312124,24.93551,625.5374,379.6689,514.0886,1,1,25,6,1,1,79.8,6.9,0,80.7,150,160.08,0,0,0,5.075674,1,4.564348,5.061929,0,0,0,80.7,9.081487,0,6.242395,1
-11,4,0,1,1,426553,0,2404.692,22.34634,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.1,3.4,0,63.6,0,0,0,0,.6931472,0,0,0,0,0,0,0,63.6,7.785593,.6931472,,0
-11,4,0,1,2,426553,0,2404.692,23.34634,0,12,1,32.62311,0,0,0,0,32.62311,0,0,0,1,0,4,77.1,3.4,0,63.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,63.6,7.785593,1.386294,3.485021,1
-11,4,0,1,3,426553,0,2404.692,24.34634,0,12,1,159.0811,7.108799,0,0,0,166.1898,0,0,0,3,21,4,77.1,3.4,0,63.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,63.6,7.785593,1.386294,5.113131,1
-11,4,0,1,1,426554,0,2404.692,24.39425,1,12,1,75.47655,0,31.18496,0,1095.93,1202.591,1,0,0,1,7,2,62.2,6.9,1,47.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,47.7,7.785593,.6931472,7.092234,1
-11,4,0,1,2,426554,0,2404.692,25.39425,1,12,1,11.60038,0,0,0,0,11.60038,0,0,0,1,0,4,62.2,6.9,1,47.7,0,0,0,0,1.386294,0,0,0,0,0,1,0,47.7,7.785593,1.386294,2.451038,1
-11,4,0,1,3,426554,0,2404.692,26.39425,1,12,1,71.52145,7.173819,28.89467,0,0,107.5899,0,0,0,5,2,4,62.2,6.9,1,47.7,0,0,0,0,1.386294,0,0,0,0,0,1,0,47.7,7.785593,1.386294,4.678327,1
-13,4,0,1,1,426583,0,7910.823,2.655715,1,12,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.976113,1.386294,1.821703,1
-13,4,0,1,2,426583,0,7910.823,3.655715,1,12,1,21.30682,6.72822,0,0,0,28.03504,0,0,0,2,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.976113,1.386294,3.333455,1
-13,4,0,1,3,426583,0,7910.823,4.655715,1,12,1,5.20156,2.384048,0,0,0,7.585609,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.976113,1.386294,2.026253,1
-13,4,0,1,4,426583,0,7910.823,5.655715,1,12,1,3.938559,2.658527,0,0,0,6.597085,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.976113,1.386294,1.886628,1
-13,4,0,1,5,426583,0,7910.823,6.655715,1,12,1,34.19678,0,0,0,0,34.19678,0,0,0,2,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.976113,1.386294,3.532131,1
-13,4,0,1,1,426584,0,7910.823,29.06502,0,11,1,73.72488,6.3627,0,0,0,80.08759,0,0,0,4,0,4,71.8,17.2,1,44.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.3,8.976113,1.386294,4.383121,1
-13,4,0,1,2,426584,0,7910.823,30.06502,0,11,1,33.14394,19.375,28.40909,0,507.6941,588.6221,1,0,0,2,0,4,71.8,17.2,1,44.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.3,8.976113,1.386294,6.377784,1
-13,4,0,1,3,426584,0,7910.823,31.06502,0,11,1,0,3.96619,0,0,0,3.96619,0,0,0,0,0,4,71.8,17.2,1,44.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.3,8.976113,1.386294,1.377806,1
-13,4,0,1,4,426584,0,7910.823,32.06503,0,11,1,118.1568,2.146514,23.63135,0,0,143.9346,0,0,0,3,0,4,71.8,17.2,1,44.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.3,8.976113,1.386294,4.969359,1
-13,4,0,1,5,426584,0,7910.823,33.06503,0,11,1,39.98211,2.325581,0,0,0,42.30769,0,0,0,1,0,4,71.8,17.2,1,44.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,44.3,8.976113,1.386294,3.744969,1
-13,4,0,1,1,426585,0,7910.823,28.03833,1,12,1,19.06234,0,0,0,0,19.06234,0,0,0,1,0,4,85.1,10.3,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,8.976113,1.386294,2.947715,1
-13,4,0,1,2,426585,0,7910.823,29.03833,1,12,1,77.41477,22.52367,24.62121,0,0,124.5597,0,0,0,6,0,4,85.1,10.3,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,8.976113,1.386294,4.824785,1
-13,4,0,1,3,426585,0,7910.823,30.03833,1,12,1,90.81058,25.01084,0,0,0,115.8214,0,0,0,5,0,4,85.1,10.3,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,8.976113,1.386294,4.752049,1
-13,4,0,1,4,426585,0,7910.823,31.03833,1,12,1,6.301693,27.56991,21.26822,0,0,55.13982,0,0,0,1,0,4,85.1,10.3,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,8.976113,1.386294,4.009872,1
-13,4,0,1,5,426585,0,7910.823,32.03833,1,12,1,39.12344,1.252236,0,0,0,40.37567,0,0,0,3,0,4,85.1,10.3,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,8.976113,1.386294,3.698227,1
-13,4,0,1,1,426586,0,7910.823,8.928131,0,12,1,48.72231,0,.1803194,0,0,48.90263,0,0,0,3,0,4,73.3,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.386294,3.889831,1
-13,4,0,1,2,426586,0,7910.823,9.928131,0,12,1,70.19413,3.835227,18.93939,0,0,92.96875,0,0,0,4,0,4,73.3,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.386294,4.532263,1
-13,4,0,1,3,426586,0,7910.823,10.92813,0,12,1,59.77026,0,0,0,0,59.77026,0,0,0,3,0,4,73.3,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.386294,4.090508,1
-13,4,0,1,4,426586,0,7910.823,11.92813,0,12,1,151.3785,7.581725,21.26822,0,0,180.2284,0,0,0,8,1,4,73.3,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.386294,5.194225,1
-13,4,0,1,5,426586,0,7910.823,12.92813,0,12,1,53.88193,.8050089,0,0,0,54.68694,0,0,0,3,0,4,73.3,9.967326,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.386294,4.001625,1
-11,4,0,1,1,426660,0,7910.823,29.61533,0,12,1,0,98.67395,0,0,0,98.67395,0,0,0,0,0,1,69.7,24.1,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.976113,0,4.591821,1
-11,4,0,1,2,426660,0,7910.823,30.61533,0,12,1,0,93.93215,0,0,0,93.93215,0,0,0,0,0,1,69.7,24.1,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.976113,0,4.542572,1
-11,4,0,1,3,426660,0,7910.823,31.61533,0,12,1,20.08341,76.38279,0,0,0,96.4662,0,0,0,1,0,1,69.7,24.1,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,8.976113,0,4.569193,1
-11,4,0,0,1,426711,0,7333.138,15.52361,0,12,1,18.03194,0,0,0,0,18.03194,0,0,0,2,0,3,85.6,3.4,0,88.6,0,0,1,0,1.098612,0,0,0,0,0,0,0,88.6,8.900295,1.098612,2.892145,1
-11,4,0,0,2,426711,0,7333.138,16.52361,0,12,1,41.57197,3.314394,0,213.0682,0,44.88636,0,0,23,3,0,3,85.6,3.4,0,88.6,0,0,1,0,1.098612,0,0,0,0,0,0,0,88.6,8.900295,1.098612,3.804134,1
-11,4,0,0,3,426711,0,7333.138,17.52361,0,12,1,0,0,0,234.0702,0,0,0,0,27,0,0,3,85.6,3.4,0,88.6,0,0,1,0,1.098612,0,0,0,0,0,0,0,88.6,8.900295,1.098612,,0
-11,4,0,0,1,426712,0,7333.138,12.92539,1,12,1,92.7357,48.89232,40.18547,0,0,181.8135,0,0,0,10,0,3,86.7,9.967326,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.900295,1.098612,5.202981,1
-11,4,0,0,2,426712,0,7333.138,13.92539,1,12,1,111.0322,29.97159,0,0,0,141.0038,0,0,0,9,0,3,86.7,9.967326,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.900295,1.098612,4.948787,1
-11,4,0,0,3,426712,0,7333.138,14.92539,1,12,1,55.48331,19.8743,0,0,0,75.3576,0,0,0,5,0,3,86.7,9.967326,0,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,8.900295,1.098612,4.322245,1
-11,4,0,0,1,426713,0,7333.138,38.45859,1,12,1,470.1803,0,27.82071,0,0,498.001,0,0,0,4,1,3,90.4,10.3,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,8.900295,1.098612,6.210602,1
-11,4,0,0,2,426713,0,7333.138,39.45859,1,12,1,21.61458,0,0,0,0,21.61458,0,0,0,1,0,3,90.4,10.3,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,8.900295,1.098612,3.073368,1
-11,4,0,0,3,426713,0,7333.138,40.45859,1,12,1,10.83658,0,0,0,0,10.83658,0,0,0,0,1,3,90.4,10.3,0,77.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,77.3,8.900295,1.098612,2.382928,1
-11,4,0,1,1,426739,0,8882.698,45.42368,1,12,1,88.35546,25.89377,0,0,0,114.2492,0,0,0,4,0,2,92,3.4,0,77.3,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,77.3,9.091973,.6931472,4.738382,1
-11,4,0,1,2,426739,0,8882.698,46.42368,1,12,1,62.35349,96.56821,37.97468,0,0,196.8964,0,0,0,3,1,2,92,3.4,0,77.3,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,77.3,9.091973,.6931472,5.282678,1
-11,4,0,1,3,426739,0,8882.698,47.42368,1,12,1,77.38607,127.6612,12.54084,0,0,217.5881,0,0,0,6,0,2,92,3.4,0,77.3,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,77.3,9.091973,.6931472,5.382604,1
-11,4,0,1,4,426739,0,8882.698,48.42368,1,12,1,75.90151,77.90229,32.95851,0,0,186.7623,0,0,0,6,1,2,92,3.4,0,77.3,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,77.3,9.091973,.6931472,5.229837,1
-11,4,0,1,5,426739,0,8882.698,49.42368,1,12,1,51.66313,76.85067,0,0,0,128.5138,0,0,0,5,0,2,92,3.4,0,77.3,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,77.3,9.091973,.6931472,4.856036,1
-11,4,0,1,1,426740,0,8882.698,50.39562,0,12,1,44.43309,1.659857,25.02554,0,0,71.11848,0,0,0,2,1,2,89.9,3.4,0,71.6,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,71.6,9.091973,.6931472,4.264347,1
-11,4,0,1,2,426740,0,8882.698,51.39562,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,3.4,0,71.6,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,71.6,9.091973,.6931472,,0
-11,4,0,1,3,426740,0,8882.698,52.39562,0,12,1,100.8169,.855546,36.54342,0,0,138.2158,0,0,0,5,1,2,89.9,3.4,0,71.6,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,71.6,9.091973,.6931472,4.928816,1
-11,4,0,1,4,426740,0,8882.698,53.39562,0,12,1,50.01939,0,0,0,0,50.01939,0,0,0,3,0,2,89.9,3.4,0,71.6,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,71.6,9.091973,.6931472,3.912411,1
-11,4,0,1,5,426740,0,8882.698,54.39562,0,12,1,61.92498,8.619958,31.84713,0,0,102.3921,0,0,0,7,1,2,89.9,3.4,0,71.6,0,291.84,0,0,.6931472,5.676206,0,0,0,0,0,0,71.6,9.091973,.6931472,4.628809,1
-14,4,95,0,1,426793,0,11716.72,13.60164,0,12,1,50.48944,3.21999,27.82071,0,0,81.53014,0,0,0,3,1,8,50,9.967326,0,77.8,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.368857,2.079442,4.400973,1
-14,4,95,0,2,426793,0,11716.72,14.60164,0,12,1,38.11553,0,0,0,0,38.11553,0,0,0,2,0,8,50,9.967326,0,77.8,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.368857,2.079442,3.640622,1
-14,4,95,0,3,426793,0,11716.72,15.60164,0,12,1,10.83658,0,25.57434,0,0,36.41092,0,0,0,0,1,8,50,9.967326,0,77.8,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.368857,2.079442,3.594869,1
-14,4,95,0,1,426794,0,11716.72,40.47912,0,8,1,0,0,0,0,0,0,0,0,0,0,0,8,87.8,3.4,0,84.1,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.368857,2.079442,,0
-14,4,95,0,2,426794,0,11716.72,41.47912,0,8,1,9.469697,0,38.35227,0,0,47.82197,0,0,0,0,1,8,87.8,3.4,0,84.1,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.368857,2.079442,3.867485,1
-14,4,95,0,3,426794,0,11716.72,42.47912,0,8,1,0,0,0,0,0,0,0,0,0,0,0,8,87.8,3.4,0,84.1,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.368857,2.079442,,0
-14,4,95,0,1,426795,0,11716.72,31.62491,1,12,1,75.21896,4.739825,29.36631,0,1314.338,1423.663,2,0,0,7,1,8,60.1,13.8,0,80.7,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.368857,2.079442,7.260988,1
-14,4,95,0,2,426795,0,11716.72,32.62492,1,12,1,41.19318,4.6875,0,0,0,45.88068,0,0,0,3,0,8,60.1,13.8,0,80.7,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.368857,2.079442,3.826044,1
-14,4,95,0,3,426795,0,11716.72,33.62492,1,12,1,23.84048,0,29.90897,0,0,53.74946,0,0,0,1,1,8,60.1,13.8,0,80.7,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.368857,2.079442,3.984334,1
-14,4,95,0,1,426796,0,11716.72,10.30801,0,12,1,51.932,0,0,0,0,51.932,0,0,0,4,0,8,86.7,9.967326,0,66.7,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.368857,2.079442,3.949935,1
-14,4,95,0,2,426796,0,11716.72,11.30801,0,12,1,2.367424,0,0,0,0,2.367424,0,0,0,1,0,8,86.7,9.967326,0,66.7,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.368857,2.079442,.8618026,1
-14,4,95,0,3,426796,0,11716.72,12.30801,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,86.7,9.967326,0,66.7,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.368857,2.079442,,0
-14,4,95,0,1,426797,0,11716.72,14.6475,0,12,1,2.575992,0,0,0,0,2.575992,0,0,0,1,0,8,77.1,3.4,0,92,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,92,9.368857,2.079442,.9462346,1
-14,4,95,0,2,426797,0,11716.72,15.6475,0,12,1,31.83239,1.183712,0,0,0,33.0161,0,0,0,2,0,8,77.1,3.4,0,92,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,92,9.368857,2.079442,3.496995,1
-14,4,95,0,3,426797,0,11716.72,16.6475,0,12,1,73.15995,0,0,0,0,73.15995,0,0,0,3,0,8,77.1,3.4,0,92,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,92,9.368857,2.079442,4.292648,1
-14,4,95,0,1,426798,0,11716.72,8.588638,1,12,1,12.87996,0,0,0,0,12.87996,0,0,0,1,0,8,90,9.967326,0,96.3,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.368857,2.079442,2.555673,1
-14,4,95,0,2,426798,0,11716.72,9.588638,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,90,9.967326,0,96.3,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.368857,2.079442,,0
-14,4,95,0,3,426798,0,11716.72,10.58864,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,90,9.967326,0,96.3,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.368857,2.079442,,0
-14,4,95,0,1,426799,0,11716.72,16.46817,1,12,1,10.30397,0,0,0,0,10.30397,0,0,0,0,1,8,67,3.4,0,56.8,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,0,0,0,56.8,9.368857,2.079442,2.332529,1
-14,4,95,0,2,426799,0,11716.72,17.46817,1,12,1,104.285,9.682765,7.102273,0,0,121.0701,0,0,0,1,4,8,67,3.4,0,56.8,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,0,0,0,56.8,9.368857,2.079442,4.79637,1
-14,4,95,0,3,426799,0,11716.72,18.46817,1,12,1,34.52536,8.409189,0,0,0,42.93455,0,0,0,2,0,8,67,3.4,0,56.8,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,56.8,9.368857,2.079442,3.759677,1
-14,4,95,0,1,426800,0,11716.72,4.202601,0,12,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,8,83.39137,9.967326,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.368857,2.079442,1.639382,1
-14,4,95,0,2,426800,0,11716.72,5.202601,0,12,1,13.25758,8.049242,0,0,0,21.30682,0,0,0,2,0,8,83.39137,9.967326,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.368857,2.079442,3.059027,1
-14,4,95,0,3,426800,0,11716.72,6.202601,0,12,1,21.67317,11.70351,29.47551,0,0,62.85219,0,0,0,2,1,8,83.39137,9.967326,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.368857,2.079442,4.140786,1
-13,4,0,1,1,426809,0,8914.956,12.2245,0,17,1,0,2.318393,0,0,0,2.318393,0,0,0,0,0,4,81.7,9.967326,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.095598,1.386294,.8408741,1
-13,4,0,1,2,426809,0,8914.956,13.2245,0,17,1,11.83712,2.130682,28.40909,0,0,42.37689,0,0,0,1,0,4,81.7,9.967326,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.095598,1.386294,3.746603,1
-13,4,0,1,3,426809,0,8914.956,14.2245,0,17,1,19.15908,3.250975,0,0,0,22.41006,0,0,0,3,0,4,81.7,9.967326,0,100,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.095598,1.386294,3.10951,1
-13,4,0,1,1,426810,0,8914.956,6.893909,0,17,1,19.72179,0,27.30551,0,0,47.02731,0,0,0,2,0,4,91.7,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.095598,1.386294,3.850729,1
-13,4,0,1,2,426810,0,8914.956,7.893909,0,17,1,4.734848,3.787879,0,0,0,8.522727,0,0,0,1,0,4,91.7,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.095598,1.386294,2.142736,1
-13,4,0,1,3,426810,0,8914.956,8.893909,0,17,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,9.967326,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.095598,1.386294,,0
-13,4,0,1,1,426811,0,8914.956,51.02259,0,11,1,76.91911,60.92221,0,0,0,137.8413,0,0,0,5,0,4,66.1,3.4,1,33,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,33,9.095598,1.386294,4.926103,1
-13,4,0,1,2,426811,0,8914.956,52.02259,0,11,1,48.5322,8.285985,24.62121,0,0,81.43939,0,0,0,2,0,4,66.1,3.4,1,33,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,33,9.095598,1.386294,4.399859,1
-13,4,0,1,3,426811,0,8914.956,53.02259,0,11,1,98.39619,9.752926,10.40312,0,0,118.5522,0,0,0,3,4,4,66.1,3.4,1,33,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,33,9.095598,1.386294,4.775353,1
-13,4,0,1,1,426812,0,8914.956,39.0308,1,17,1,26.90366,0,6.18238,0,0,33.08604,0,0,0,1,0,4,84,6.9,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.095598,1.386294,3.499111,1
-13,4,0,1,2,426812,0,8914.956,40.0308,1,17,1,16.57197,0,0,0,0,16.57197,0,0,0,1,0,4,84,6.9,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.095598,1.386294,2.807713,1
-13,4,0,1,3,426812,0,8914.956,41.0308,1,17,1,37.92804,1.30039,0,0,0,39.22844,0,0,0,3,0,4,84,6.9,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.095598,1.386294,3.669402,1
-13,4,0,1,1,426824,0,8197.067,27.84394,0,12,1,85.41988,1.056157,0,0,0,86.47604,0,0,0,4,0,2,79.3,3.4,0,70.5,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,1,0,0,70.5,9.011654,.6931472,4.459867,1
-13,4,0,1,2,426824,0,8197.067,28.84394,0,12,1,9.469697,0,17.99242,0,0,27.46212,0,0,0,0,1,2,79.3,3.4,0,70.5,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,1,0,0,70.5,9.011654,.6931472,3.312808,1
-13,4,0,1,3,426824,0,8197.067,29.84394,0,12,1,6.935414,1.733853,0,0,0,8.669268,0,0,0,1,0,2,79.3,3.4,0,70.5,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,1,0,0,70.5,9.011654,.6931472,2.159784,1
-13,4,0,1,1,426825,0,8197.067,27.28816,1,12,1,19.57754,0,0,0,0,19.57754,0,0,0,1,1,2,70.2,10.3,0,78.4,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,0,0,0,78.4,9.011654,.6931472,2.974383,1
-13,4,0,1,2,426825,0,8197.067,28.28816,1,12,1,45.45454,0,31.72348,0,0,77.17803,0,0,0,1,0,2,70.2,10.3,0,78.4,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,0,0,0,78.4,9.011654,.6931472,4.346115,1
-13,4,0,1,3,426825,0,8197.067,29.28816,1,12,1,19.61855,0,0,0,0,19.61855,0,0,0,0,0,2,70.2,10.3,0,78.4,300,402.84,0,0,.6931472,5.998539,1,4.564348,5.755076,0,0,0,78.4,9.011654,.6931472,2.976476,1
-11,4,0,0,1,426830,0,10873.9,9.467488,0,12,1,14.81103,1.91522,0,0,0,16.72625,0,0,0,3,0,4,85,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,9.294212,1.386294,2.816979,1
-11,4,0,0,2,426830,0,10873.9,10.46749,0,12,1,8.67323,6.962025,0,0,0,15.63526,0,0,0,1,0,4,85,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,9.294212,1.386294,2.749528,1
-11,4,0,0,3,426830,0,10873.9,11.46749,0,12,1,12.57524,7.093723,0,0,0,19.66896,0,0,0,1,0,4,85,9.967326,0,96.3,0,0,1,0,1.386294,0,0,0,0,0,0,0,96.3,9.294212,1.386294,2.979042,1
-11,4,0,0,1,426831,0,10873.9,33.9165,1,12,1,18.43718,2.681308,0,0,0,21.11849,0,0,0,2,0,4,79.8,13.8,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.294212,1.386294,3.050149,1
-11,4,0,0,2,426831,0,10873.9,34.9165,1,12,1,24.84763,1.172058,25.31646,0,0,51.33615,0,0,0,1,0,4,79.8,13.8,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.294212,1.386294,3.938395,1
-11,4,0,0,3,426831,0,10873.9,35.9165,1,12,1,47.82889,0,8.383491,0,0,56.21238,0,0,0,3,0,4,79.8,13.8,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.294212,1.386294,4.029137,1
-11,4,0,0,1,426832,0,10873.9,33.21287,0,16,1,5.107252,0,34.72932,0,0,39.83657,0,0,0,1,0,4,79.3,0,0,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,9.294212,1.386294,3.684785,1
-11,4,0,0,2,426832,0,10873.9,34.21287,0,16,1,107.1261,5.133615,0,0,0,112.2597,0,0,0,1,0,4,79.3,0,0,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,9.294212,1.386294,4.720815,1
-11,4,0,0,3,426832,0,10873.9,35.21287,0,16,1,65.02579,0,33.96389,0,0,98.98969,0,0,0,3,0,4,79.3,0,0,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,9.294212,1.386294,4.595016,1
-11,4,0,0,1,426833,0,10873.9,6.702259,1,12,1,8.682329,1.91522,0,0,0,10.59755,0,0,0,2,0,4,85,9.967326,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.294212,1.386294,2.360623,1
-11,4,0,0,2,426833,0,10873.9,7.702259,1,12,1,5.625879,0,0,0,0,5.625879,0,0,0,1,0,4,85,9.967326,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.294212,1.386294,1.727377,1
-11,4,0,0,3,426833,0,10873.9,8.702259,1,12,1,26.46174,0,0,0,0,26.46174,0,0,0,2,0,4,85,9.967326,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.294212,1.386294,3.2757,1
-13,4,0,1,1,426845,0,16171.85,34.19028,0,21,1,19.06234,3.348789,26.79031,0,0,49.20144,0,0,0,1,1,1,55.9,10.3,0,69.3,150,291.84,0,0,0,5.676206,1,4.564348,5.061929,0,0,0,69.3,9.691089,0,3.895923,1
-13,4,0,1,2,426845,0,16171.85,35.19028,0,21,1,28.71686,7.19697,14.20455,0,0,50.11837,0,0,0,3,0,1,55.9,10.3,0,69.3,150,291.84,0,0,0,5.676206,1,4.564348,5.061929,0,0,0,69.3,9.691089,0,3.914388,1
-13,4,0,1,3,426845,0,16171.85,36.19028,0,21,1,132.6398,7.585609,26.87473,0,953.8318,1120.932,2,0,0,6,1,1,55.9,10.3,0,69.3,150,291.84,0,0,0,5.676206,1,4.564348,5.061929,0,0,0,69.3,9.691089,0,7.021916,1
-14,4,95,1,1,426846,0,3354.252,26.39288,0,14,1,31.62955,3.689271,0,0,0,35.31882,0,0,0,3,0,1,55.3,0,0,68.2,150,0,0,0,0,0,0,4.564348,5.061929,0,0,0,68.2,8.118282,0,3.564416,1
-14,4,95,1,2,426846,0,3354.252,27.39288,0,14,1,17.94872,0,0,0,0,17.94872,0,0,0,1,0,1,55.3,0,0,68.2,150,0,0,0,0,0,0,4.564348,5.061929,0,0,0,68.2,8.118282,0,2.887519,1
-14,4,95,1,3,426846,0,3354.252,28.39288,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,55.3,0,0,68.2,150,0,0,0,0,0,0,4.564348,5.061929,0,0,0,68.2,8.118282,0,,0
-14,4,95,0,1,426847,0,1534.897,26.23135,1,12,1,25.30364,0,0,0,0,25.30364,0,0,0,2,0,1,46.3,6.9,0,78.4,210,210,0,0,0,5.347107,0,4.564348,5.398401,0,0,0,78.4,7.33687,0,3.230948,1
-14,4,95,0,2,426847,0,1534.897,27.23135,1,12,1,26.34033,6.083916,0,0,0,32.42424,0,0,0,2,0,1,46.3,6.9,0,78.4,210,210,0,0,0,5.347107,0,4.564348,5.398401,0,0,0,78.4,7.33687,0,3.478906,1
-14,4,95,0,3,426847,0,1534.897,28.23135,1,12,1,161.2313,.9448482,0,0,0,162.1761,0,0,0,7,0,1,46.3,6.9,0,78.4,210,210,0,0,0,5.347107,0,4.564348,5.398401,0,0,0,78.4,7.33687,0,5.088683,1
-16,4,95,1,1,426849,0,11582.99,33.6345,0,16,1,0,2.298264,0,0,0,2.298264,0,0,0,0,0,5,79.3,6.9,0,76.1,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,76.1,9.357379,1.609438,.8321539,1
-16,4,95,1,2,426849,0,11582.99,34.6345,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,6.9,0,76.1,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,76.1,9.357379,1.609438,,0
-16,4,95,1,3,426849,0,11582.99,35.6345,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,6.9,0,76.1,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,76.1,9.357379,1.609438,,0
-16,4,95,1,4,426849,0,11582.99,36.6345,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,6.9,0,76.1,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,76.1,9.357379,1.609438,,0
-16,4,95,1,5,426849,0,11582.99,37.6345,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,6.9,0,76.1,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,76.1,9.357379,1.609438,,0
-16,4,95,1,1,426850,0,11582.99,5.456537,0,13,1,17.36466,3.830439,0,0,0,21.1951,0,0,0,3,0,5,91.7,9.967326,0,88.9,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,88.9,9.357379,1.609438,3.05377,1
-16,4,95,1,2,426850,0,11582.99,6.456537,0,13,1,16.87764,0,0,0,0,16.87764,0,0,0,2,0,5,91.7,9.967326,0,88.9,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,88.9,9.357379,1.609438,2.825989,1
-16,4,95,1,3,426850,0,11582.99,7.456537,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,9.967326,0,88.9,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,88.9,9.357379,1.609438,,0
-16,4,95,1,4,426850,0,11582.99,8.456536,0,13,1,7.367197,0,0,0,0,7.367197,0,0,0,1,0,5,91.7,9.967326,0,88.9,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,88.9,9.357379,1.609438,1.997037,1
-16,4,95,1,5,426850,0,11582.99,9.456536,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,9.967326,0,88.9,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,88.9,9.357379,1.609438,,0
-16,4,95,1,1,426851,0,11582.99,8.944558,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,96.3,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,96.3,9.357379,1.609438,,0
-16,4,95,1,2,426851,0,11582.99,9.944558,0,13,1,8.907641,2.578528,0,0,0,11.48617,0,0,0,2,0,5,95,9.967326,0,96.3,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,96.3,9.357379,1.609438,2.441144,1
-16,4,95,1,3,426851,0,11582.99,10.94456,0,13,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,5,95,9.967326,0,96.3,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,96.3,9.357379,1.609438,1.8639,1
-16,4,95,1,4,426851,0,11582.99,11.94456,0,13,1,25.97906,2.617294,0,0,0,28.59636,0,0,0,3,0,5,95,9.967326,0,96.3,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,96.3,9.357379,1.609438,3.353279,1
-16,4,95,1,5,426851,0,11582.99,12.94456,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,96.3,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,96.3,9.357379,1.609438,,0
-16,4,95,1,1,426852,0,11582.99,32.27926,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,56.9,10.3,0,63.6,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,1,0,0,63.6,9.357379,1.609438,,0
-16,4,95,1,2,426852,0,11582.99,33.27926,1,13,1,337.2949,0,0,0,0,337.2949,0,0,0,7,0,5,56.9,10.3,0,63.6,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,1,0,0,63.6,9.357379,1.609438,5.820958,1
-16,4,95,1,3,426852,0,11582.99,34.27926,1,13,1,6.878762,7.201204,0,171.969,0,14.07997,0,0,10,0,0,5,56.9,10.3,0,63.6,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,1,0,0,63.6,9.357379,1.609438,2.644753,1
-16,4,95,1,4,426852,0,11582.99,35.27926,1,13,1,62.03955,7.076386,0,0,461.8263,530.9422,1,0,0,2,0,5,56.9,10.3,0,63.6,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,1,0,0,63.6,9.357379,1.609438,6.274653,1
-16,4,95,1,5,426852,0,11582.99,36.27926,1,13,1,0,3.007785,0,0,0,3.007785,0,0,0,0,0,5,56.9,10.3,0,63.6,1000,975,0,0,1.609438,6.882438,0,4.564348,6.959049,1,0,0,63.6,9.357379,1.609438,1.101204,1
-16,4,95,1,1,426853,0,11582.99,6.989733,0,13,1,7.150153,4.085802,0,0,0,11.23596,0,0,0,1,0,5,85,9.967326,0,92.6,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,92.6,9.357379,1.609438,2.419119,1
-16,4,95,1,2,426853,0,11582.99,7.989733,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,92.6,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,92.6,9.357379,1.609438,,0
-16,4,95,1,3,426853,0,11582.99,8.989733,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,92.6,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,92.6,9.357379,1.609438,,0
-16,4,95,1,4,426853,0,11582.99,9.989733,0,13,1,7.367197,0,0,0,0,7.367197,0,0,0,1,0,5,85,9.967326,0,92.6,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,92.6,9.357379,1.609438,1.997037,1
-16,4,95,1,5,426853,0,11582.99,10.98973,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,92.6,1000,975,1,0,1.609438,6.882438,0,4.564348,6.959049,0,0,0,92.6,9.357379,1.609438,,0
-11,4,0,0,1,426860,0,11008.21,29.15264,1,12,1,37.60948,3.709428,26.17208,0,0,67.49098,0,0,0,3,0,3,89.9,13.8,0,77.3,0,372,0,0,1.098612,5.918894,0,0,0,0,0,0,77.3,9.306487,1.098612,4.211994,1
-11,4,0,0,2,426860,0,11008.21,30.15264,1,12,1,0,20.47822,0,0,0,20.47822,0,0,0,0,0,3,89.9,13.8,0,77.3,0,372,0,0,1.098612,5.918894,0,0,0,0,0,0,77.3,9.306487,1.098612,3.019362,1
-11,4,0,0,3,426860,0,11008.21,31.15264,1,12,1,13.0039,0,13.0039,0,922.384,948.3918,1,0,0,0,1,3,89.9,13.8,0,77.3,0,372,0,0,1.098612,5.918894,0,0,0,0,0,0,77.3,9.306487,1.098612,6.854768,1
-11,4,0,0,1,426861,0,11008.21,5.568789,1,12,1,149.1499,76.04843,0,0,0,225.1983,0,0,0,16,0,3,91.7,9.967326,0,77.8,0,372,1,1,1.098612,5.918894,0,0,0,0,0,0,77.8,9.306487,1.098612,5.416982,1
-11,4,0,0,2,426861,0,11008.21,6.568789,1,12,1,96.59091,29.26136,0,0,0,125.8523,0,0,0,40,0,3,91.7,9.967326,0,77.8,0,372,1,1,1.098612,5.918894,0,0,0,0,0,0,77.8,9.306487,1.098612,4.835109,1
-11,4,0,0,3,426861,0,11008.21,7.568789,1,12,1,56.7837,42.63112,0,0,0,99.41483,0,0,0,19,0,3,91.7,9.967326,0,77.8,0,372,1,1,1.098612,5.918894,0,0,0,0,0,0,77.8,9.306487,1.098612,4.599301,1
-11,4,0,0,1,426862,0,11008.21,35.08829,0,12,1,76.67697,23.61154,42.76146,0,0,143.05,0,0,0,7,0,3,88.3,17.2,0,62.5,0,372,0,0,1.098612,5.918894,0,0,0,0,0,1,62.5,9.306487,1.098612,4.963194,1
-11,4,0,0,2,426862,0,11008.21,36.08829,0,12,1,162.4053,34.84848,8.522727,0,0,205.7765,0,0,0,5,0,3,88.3,17.2,0,62.5,0,372,0,0,1.098612,5.918894,0,0,0,0,0,1,62.5,9.306487,1.098612,5.326791,1
-11,4,0,0,3,426862,0,11008.21,37.08829,0,12,1,9.969658,37.92804,0,0,0,47.8977,0,0,0,0,0,3,88.3,17.2,0,62.5,0,372,0,0,1.098612,5.918894,0,0,0,0,0,1,62.5,9.306487,1.098612,3.869067,1
-13,4,0,0,1,426889,0,12329.03,27.90417,0,17,1,23.18393,1.725914,0,0,0,24.90984,0,0,0,1,1,2,84.6,3.4,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,76.1,9.419793,.6931472,3.215263,1
-13,4,0,0,2,426889,0,12329.03,28.90417,0,17,1,0,0,0,587.1212,0,0,0,0,31,0,0,2,84.6,3.4,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,76.1,9.419793,.6931472,,0
-13,4,0,0,3,426889,0,12329.03,29.90417,0,17,1,85.39228,0,24.27395,381.4478,0,109.6662,0,0,20,7,0,2,84.6,3.4,0,76.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,76.1,9.419793,.6931472,4.697442,1
-13,4,0,0,1,426890,0,12329.03,27.36756,1,17,1,21.12313,2.575992,0,0,0,23.69912,0,0,0,3,0,2,84,6.9,0,82.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,82.1,9.419793,.6931472,3.165438,1
-13,4,0,0,2,426890,0,12329.03,28.36756,1,17,1,7.102273,0,0,0,0,7.102273,0,0,0,1,0,2,84,6.9,0,82.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,82.1,9.419793,.6931472,1.960415,1
-13,4,0,0,3,426890,0,12329.03,29.36756,1,17,1,9.969658,0,0,0,0,9.969658,0,0,0,1,0,2,84,6.9,0,82.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,82.1,9.419793,.6931472,2.299546,1
-11,4,0,1,1,426891,0,6521.408,38.25325,1,20,1,34.51829,44.80165,32.97269,0,0,112.2926,0,0,0,3,0,4,72.3,6.9,1,84.1,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,84.1,8.782999,1.386294,4.721108,1
-11,4,0,1,2,426891,0,6521.408,39.25325,1,20,1,11.83712,27.60417,0,0,0,39.44129,0,0,0,1,0,4,72.3,6.9,1,84.1,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,84.1,8.782999,1.386294,3.674813,1
-11,4,0,1,3,426891,0,6521.408,40.25325,1,20,1,44.21326,31.38708,30.55917,0,0,106.1595,0,0,0,2,2,4,72.3,6.9,1,84.1,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,84.1,8.782999,1.386294,4.664943,1
-11,4,0,1,1,426892,0,6521.408,1.815195,1,20,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,4,83.39137,9.967326,0,81.5,0,338.4,1,1,1.386294,5.824229,0,0,0,0,0,0,81.5,8.782999,1.386294,1.821703,1
-11,4,0,1,2,426892,0,6521.408,2.815195,1,20,1,5.681818,3.716856,0,0,0,9.398674,0,0,0,1,0,4,83.39137,9.967326,0,81.5,0,338.4,1,1,1.386294,5.824229,0,0,0,0,0,0,81.5,8.782999,1.386294,2.240569,1
-11,4,0,1,3,426892,0,6521.408,3.815195,1,20,1,12.57044,7.195492,0,0,0,19.76593,0,0,0,2,0,4,83.39137,9.967326,0,81.5,0,338.4,1,1,1.386294,5.824229,0,0,0,0,0,0,81.5,8.782999,1.386294,2.98396,1
-11,4,0,1,1,426893,0,6521.408,31.46886,0,16,1,64.86347,3.348789,25.75992,0,0,93.97218,0,0,0,3,1,4,64.4,3.4,0,58,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,58,8.782999,1.386294,4.542999,1
-11,4,0,1,2,426893,0,6521.408,32.46886,0,16,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,64.4,3.4,0,58,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,58,8.782999,1.386294,1.737271,1
-11,4,0,1,3,426893,0,6521.408,33.46886,0,16,1,8.669268,0,30.1257,0,0,38.79497,0,0,0,0,1,4,64.4,3.4,0,58,0,338.4,0,0,1.386294,5.824229,0,0,0,0,0,0,58,8.782999,1.386294,3.658291,1
-11,4,0,1,1,426894,0,6521.408,3.154004,0,20,1,10.30397,8.990211,0,0,0,19.29418,0,0,0,2,0,4,83.39137,9.967326,0,96.3,0,338.4,1,0,1.386294,5.824229,0,0,0,0,0,0,96.3,8.782999,1.386294,2.959803,1
-11,4,0,1,2,426894,0,6521.408,4.154004,0,20,1,5.681818,3.716856,0,0,0,9.398674,0,0,0,1,0,4,83.39137,9.967326,0,96.3,0,338.4,1,0,1.386294,5.824229,0,0,0,0,0,0,96.3,8.782999,1.386294,2.240569,1
-11,4,0,1,3,426894,0,6521.408,5.154004,0,20,1,18.20546,8.582575,0,0,0,26.78804,0,0,0,3,0,4,83.39137,9.967326,0,96.3,0,338.4,1,0,1.386294,5.824229,0,0,0,0,0,0,96.3,8.782999,1.386294,3.287955,1
-11,4,0,1,1,426909,0,6446.334,26.98973,0,12,1,6.128703,8.656793,0,0,0,14.7855,0,0,0,1,0,1,78.2,10.3,0,90.9,0,252.84,0,0,0,5.532757,0,0,0,1,0,0,90.9,8.771422,0,2.693647,1
-11,4,0,1,2,426909,0,6446.334,27.98973,0,12,1,16.59634,2.691046,0,0,0,19.28739,0,0,0,2,0,1,78.2,10.3,0,90.9,0,252.84,0,0,0,5.532757,0,0,0,1,0,0,90.9,8.771422,0,2.959451,1
-11,4,0,1,3,426909,0,6446.334,28.98973,0,12,1,10.74806,0,0,0,0,10.74806,0,0,0,1,0,1,78.2,10.3,0,90.9,0,252.84,0,0,0,5.532757,0,0,0,1,0,0,90.9,8.771422,0,2.374726,1
-11,4,0,1,4,426909,0,6446.334,29.98973,0,12,1,48.4684,4.040326,0,0,0,52.50872,0,0,0,2,2,1,78.2,10.3,0,90.9,0,252.84,0,0,0,5.532757,0,0,0,1,0,0,90.9,8.771422,0,3.960979,1
-11,4,0,1,5,426909,0,6446.334,30.98973,0,12,1,21.58528,3.839349,0,0,0,25.42463,0,0,0,3,0,1,78.2,10.3,0,90.9,0,252.84,0,0,0,5.532757,0,0,0,1,0,0,90.9,8.771422,0,3.235718,1
-13,4,0,1,1,426940,0,6321.408,59.65229,1,12,1,12.87996,0,0,0,0,12.87996,0,0,0,2,0,1,79.3,10.3,0,92,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,92,8.751856,0,2.555673,1
-13,4,0,1,2,426940,0,6321.408,60.65229,1,12,1,14.20455,0,0,0,0,14.20455,0,0,0,1,0,1,79.3,10.3,0,92,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,92,8.751856,0,2.653562,1
-13,4,0,1,3,426940,0,6321.408,61.65229,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.3,10.3,0,92,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,92,8.751856,0,,0
-11,4,0,1,1,426943,0,11520.23,17.66735,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,68.1,0,0,81.8,0,0,1,0,1.94591,0,0,0,0,1,0,0,81.8,9.351947,1.94591,,0
-11,4,0,1,2,426943,0,11520.23,18.66735,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,68.1,0,0,81.8,0,0,0,0,1.94591,0,0,0,0,1,0,0,81.8,9.351947,1.94591,,0
-11,4,0,1,3,426943,0,11520.23,19.66735,0,12,1,24.16558,0,0,0,0,24.16558,0,0,0,1,0,7,68.1,0,0,81.8,0,0,0,0,1.94591,0,0,0,0,1,0,0,81.8,9.351947,1.94591,3.184929,1
-11,4,0,1,1,426944,0,11520.23,7.564682,1,12,1,34.26069,7.058218,31.9423,0,0,73.26121,0,0,0,2,1,7,88.3,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,4.294031,1
-11,4,0,1,2,426944,0,11520.23,8.564682,1,12,1,9.469697,0,16.09848,0,0,25.56818,0,0,0,0,1,7,88.3,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,3.241349,1
-11,4,0,1,3,426944,0,11520.23,9.564682,1,12,1,10.83658,0,23.40702,0,0,34.24361,0,0,0,0,1,7,88.3,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,3.5335,1
-11,4,0,1,1,426945,0,11520.23,39.79192,0,8,1,0,0,0,0,0,0,0,0,0,0,0,7,79.8,0,0,91.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,91.2,9.351947,1.94591,,0
-11,4,0,1,2,426945,0,11520.23,40.79192,0,8,1,0,0,0,0,0,0,0,0,0,0,0,7,79.8,0,0,91.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,91.2,9.351947,1.94591,,0
-11,4,0,1,3,426945,0,11520.23,41.79192,0,8,1,0,0,0,0,0,0,0,0,0,0,0,7,79.8,0,0,91.2,0,0,0,0,1.94591,0,0,0,0,1,0,0,91.2,9.351947,1.94591,,0
-11,4,0,1,1,426946,0,11520.23,16.24641,0,12,1,12.87996,0,31.4271,0,0,44.30706,0,0,0,1,0,7,65.4,10.3,0,80.7,0,0,1,0,1.94591,0,0,0,0,1,0,0,80.7,9.351947,1.94591,3.791144,1
-11,4,0,1,2,426946,0,11520.23,17.24641,0,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,7,65.4,10.3,0,80.7,0,0,1,0,1.94591,0,0,0,0,1,0,0,80.7,9.351947,1.94591,1.737271,1
-11,4,0,1,3,426946,0,11520.23,18.24641,0,12,1,24.49068,1.170351,32.72649,0,0,58.38752,0,0,0,2,0,7,65.4,10.3,0,80.7,0,0,0,0,1.94591,0,0,0,0,1,0,0,80.7,9.351947,1.94591,4.067102,1
-11,4,0,1,1,426947,0,11520.23,9.672827,1,12,1,43.48274,0,0,0,0,43.48274,0,0,0,2,0,7,90,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,3.772364,1
-11,4,0,1,2,426947,0,11520.23,10.67283,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,90,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,,0
-11,4,0,1,3,426947,0,11520.23,11.67283,1,12,1,7.802341,0,0,0,0,7.802341,0,0,0,1,0,7,90,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,2.054424,1
-11,4,0,1,1,426948,0,11520.23,13.26762,1,12,1,12.87996,0,28.33591,0,0,41.21587,0,0,0,1,0,7,91.7,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,3.718823,1
-11,4,0,1,2,426948,0,11520.23,14.26762,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,,0
-11,4,0,1,3,426948,0,11520.23,15.26762,1,12,1,18.63893,0,24.27395,0,0,42.91287,0,0,0,2,0,7,91.7,9.967326,0,74.1,0,0,1,1,1.94591,0,0,0,0,1,0,0,74.1,9.351947,1.94591,3.759172,1
-11,4,0,1,1,426949,0,11520.23,41.15811,1,12,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,7,91.5,6.9,0,88.6,0,0,0,0,1.94591,0,0,0,0,1,0,0,88.6,9.351947,1.94591,1.821703,1
-11,4,0,1,2,426949,0,11520.23,42.15811,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,91.5,6.9,0,88.6,0,0,0,0,1.94591,0,0,0,0,1,0,0,88.6,9.351947,1.94591,,0
-11,4,0,1,3,426949,0,11520.23,43.15811,1,12,1,55.59168,0,0,0,0,55.59168,0,0,0,3,0,7,91.5,6.9,0,88.6,0,0,0,0,1.94591,0,0,0,0,1,0,0,88.6,9.351947,1.94591,4.018034,1
-13,4,0,1,1,426952,0,9656.305,55.63313,1,11,1,45.70991,12.64045,43.41164,0,0,101.762,0,0,0,3,0,2,80.3,10.3,0,78.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,78.4,9.175469,.6931472,4.622637,1
-13,4,0,1,2,426952,0,9656.305,56.63313,1,11,1,0,30.83451,0,0,0,30.83451,0,0,0,0,0,2,80.3,10.3,0,78.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,78.4,9.175469,.6931472,3.428634,1
-13,4,0,1,3,426952,0,9656.305,57.63313,1,11,1,39.59587,36.34996,36.54342,137.5752,0,112.4893,0,0,8,4,0,1,80.3,10.3,0,78.4,300,300,0,0,0,5.703783,1,4.564348,5.755076,0,0,0,78.4,9.175469,0,4.722857,1
-13,4,0,1,1,426953,0,9656.305,53.10336,0,12,1,998.9836,28.01328,0,0,5551.42,6578.417,1,0,0,12,0,2,72.9,6.9,0,60.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,60.2,9.175469,.6931472,8.79155,1
-13,4,0,1,2,426953,0,9656.305,54.10336,0,12,.7945206,215.4337,121.4721,0,0,4352.213,4689.119,8,0,0,5,0,2,72.9,6.9,0,60.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,60.2,9.175469,.6931472,8.453,1
-14,4,95,0,1,426970,0,7910.823,34.16564,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,93.1,6.9,0,88.6,618.9,618.9,0,0,1.609438,6.427944,0,4.564348,6.479237,0,0,0,88.6,8.976113,1.609438,,0
-14,4,95,0,1,426971,0,7910.823,7.603012,1,12,1,12.36476,0,0,0,0,12.36476,0,0,0,2,0,5,85,9.967326,0,63,618.9,618.9,1,1,1.609438,6.427944,0,4.564348,6.479237,0,0,0,63,8.976113,1.609438,2.514851,1
-14,4,95,0,1,426972,0,7910.823,9.987679,0,12,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,5,78.3,9.967326,0,88.9,618.9,618.9,1,0,1.609438,6.427944,0,4.564348,6.479237,0,0,0,88.9,8.976113,1.609438,1.821703,1
-14,4,95,0,1,426973,0,7910.823,12.44353,1,12,1,31.9423,0,0,0,0,31.9423,0,0,0,2,0,5,81.8,9.967326,0,92.6,618.9,618.9,1,1,1.609438,6.427944,0,4.564348,6.479237,0,0,0,92.6,8.976113,1.609438,3.463931,1
-14,4,95,0,1,426974,0,7910.823,33.33333,1,12,1,20.60793,0,0,0,0,20.60793,0,0,0,0,4,5,77.7,13.8,0,73.9,618.9,618.9,0,0,1.609438,6.427944,0,4.564348,6.479237,0,0,0,73.9,8.976113,1.609438,3.025676,1
-13,4,0,1,1,426989,0,11579.47,38.5243,0,14,1,10.30397,28.26893,38.91293,428.9026,0,77.48583,0,0,19,0,1,6,53.2,6.9,1,48.9,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.357076,1.791759,4.350095,1
-13,4,0,1,2,426989,0,11579.47,39.5243,0,14,1,142.4242,33.10606,15.30303,925.374,0,190.8333,0,0,50,8,0,6,53.2,6.9,1,48.9,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.357076,1.791759,5.2514,1
-13,4,0,1,3,426989,0,11579.47,40.5243,0,14,1,334.2003,22.08929,17.63762,180.7542,0,373.9272,0,0,18,16,0,6,53.2,6.9,1,48.9,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.357076,1.791759,5.924061,1
-13,4,0,1,4,426989,0,11579.47,41.5243,0,14,1,184.3245,27.30997,25.58881,455.8882,0,237.2233,0,0,54,16,1,6,53.2,6.9,1,48.9,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.357076,1.791759,5.469002,1
-13,4,0,1,5,426989,0,11579.47,42.5243,0,14,1,109.3023,25.79249,3.109123,169.9463,0,138.2039,0,0,19,4,0,6,53.2,6.9,1,48.9,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.357076,1.791759,4.92873,1
-13,4,0,1,1,426990,0,11579.47,8.224504,0,12,1,9.27357,0,0,0,0,9.27357,0,0,0,1,0,6,60,9.967326,1,48.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.357076,1.791759,2.227168,1
-13,4,0,1,2,426990,0,11579.47,9.224504,0,12,1,28.64583,0,0,35.51136,0,28.64583,0,0,1,2,0,6,60,9.967326,1,48.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.357076,1.791759,3.355008,1
-13,4,0,1,3,426990,0,11579.47,10.2245,0,12,1,3.987863,1.30039,0,0,0,5.288253,0,0,0,0,0,6,60,9.967326,1,48.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.357076,1.791759,1.665488,1
-13,4,0,1,4,426990,0,11579.47,11.2245,0,12,1,10.24025,0,0,39.38559,0,10.24025,0,0,7,1,0,6,60,9.967326,1,48.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.357076,1.791759,2.326326,1
-13,4,0,1,5,426990,0,11579.47,12.2245,0,12,1,15.7424,.7155635,0,0,0,16.45796,0,0,0,1,0,6,60,9.967326,1,48.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.357076,1.791759,2.800809,1
-13,4,0,1,1,426991,0,11579.47,33.50582,1,12,1,5.151984,13.91036,0,409.5827,0,19.06234,0,0,20,0,0,6,46.8,20.7,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,53.4,9.357076,1.791759,2.947715,1
-13,4,0,1,2,426991,0,11579.47,34.50582,1,12,1,17.04545,30.5303,0,577.3532,0,47.57576,0,0,28,1,0,6,46.8,20.7,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,53.4,9.357076,1.791759,3.862323,1
-13,4,0,1,3,426991,0,11579.47,35.50582,1,12,1,10.6632,8.452536,0,122.2367,0,19.11573,0,0,14,1,0,6,46.8,20.7,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,53.4,9.357076,1.791759,2.950512,1
-13,4,0,1,4,426991,0,11579.47,36.50582,1,12,1,0,0,0,323.9464,0,0,0,0,34,0,0,6,46.8,20.7,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,53.4,9.357076,1.791759,,0
-13,4,0,1,5,426991,0,11579.47,37.50582,1,12,1,17.17352,0,0,0,0,17.17352,0,0,0,1,0,6,46.8,20.7,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,53.4,9.357076,1.791759,2.843369,1
-13,4,0,1,1,426992,0,11579.47,12.80219,0,12,1,47.65585,5.409583,0,0,0,53.06543,0,0,0,4,0,6,41.7,9.967326,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.357076,1.791759,3.971526,1
-13,4,0,1,2,426992,0,11579.47,13.80219,0,12,1,36.93182,9.043561,0,147.9593,0,45.97538,0,0,16,3,0,6,41.7,9.967326,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.357076,1.791759,3.828106,1
-13,4,0,1,3,426992,0,11579.47,14.80219,0,12,1,0,0,0,34.67707,97.52926,97.52926,1,0,4,0,0,6,41.7,9.967326,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.357076,1.791759,4.580153,1
-13,4,0,1,4,426992,0,11579.47,15.80219,0,12,1,24.41906,5.71091,0,246.1599,337.6014,367.7314,2,0,29,4,0,6,41.7,9.967326,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.357076,1.791759,5.907353,1
-13,4,0,1,5,426992,0,11579.47,16.80219,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,41.7,9.967326,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.357076,1.791759,,0
-13,4,0,1,1,426993,0,11579.47,10.05065,1,12,1,25.50232,4.636785,0,0,0,30.1391,0,0,0,3,0,6,81.7,9.967326,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.357076,1.791759,3.405823,1
-13,4,0,1,2,426993,0,11579.47,11.05065,1,12,1,26.04167,1.704545,1.40625,0,0,29.15246,0,0,0,2,0,6,81.7,9.967326,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.357076,1.791759,3.372539,1
-13,4,0,1,3,426993,0,11579.47,12.05065,1,12,1,39.3368,8.885999,0,0,0,48.2228,0,0,0,4,0,6,81.7,9.967326,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.357076,1.791759,3.875832,1
-13,4,0,1,4,426993,0,11579.47,13.05065,1,12,1,0,2.953919,0,39.38559,0,2.953919,0,0,7,0,0,6,81.7,9.967326,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.357076,1.791759,1.083133,1
-13,4,0,1,5,426993,0,11579.47,14.05065,1,12,1,13.59571,4.293381,0,0,717.3596,735.2487,1,0,0,2,0,6,81.7,9.967326,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.357076,1.791759,6.600209,1
-13,4,0,1,1,426994,0,11579.47,5.859001,1,12,1,45.99691,5.512622,0,0,0,51.50953,0,0,0,3,0,6,80,9.967326,0,55.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.357076,1.791759,3.941767,1
-13,4,0,1,2,426994,0,11579.47,6.859001,1,12,1,13.73106,3.787879,0,0,0,17.51894,0,0,0,1,1,6,80,9.967326,0,55.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.357076,1.791759,2.863283,1
-13,4,0,1,3,426994,0,11579.47,7.859001,1,12,1,16.47161,5.093194,0,0,0,21.5648,0,0,0,2,0,6,80,9.967326,0,55.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.357076,1.791759,3.071063,1
-13,4,0,1,4,426994,0,11579.47,8.859001,1,12,1,25.60063,1.772351,0,68.92477,0,27.37298,0,0,9,1,0,6,80,9.967326,0,55.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.357076,1.791759,3.309556,1
-13,4,0,1,5,426994,0,11579.47,9.859001,1,12,1,6.440072,0,0,0,0,6.440072,0,0,0,0,0,6,80,9.967326,0,55.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.357076,1.791759,1.86254,1
-13,4,0,0,1,426995,0,3864.809,47.27173,1,13,1,469.8672,298.9836,54.13688,0,1554.188,2377.176,1,0,0,18,0,2,62.2,41.4,1,46.6,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,46.6,8.259927,.6931472,7.773668,1
-13,4,0,0,2,426995,0,3864.809,48.27173,1,13,1,667.0183,432.2082,0,0,0,1099.226,0,0,0,11,1,2,62.2,41.4,1,46.6,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,46.6,8.259927,.6931472,7.002362,1
-13,4,0,0,3,426995,0,3864.809,49.27173,1,13,1,114.5744,392.9063,0,0,3856.87,4364.351,3,0,0,3,2,2,62.2,41.4,1,46.6,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,46.6,8.259927,.6931472,8.381225,1
-13,4,0,0,4,426995,0,3864.809,50.27173,1,13,.3852459,43.4083,127.879,0,0,0,171.2873,0,0,0,2,0,2,62.2,41.4,1,46.6,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,46.6,8.259927,.6931472,5.143342,1
-13,4,0,0,1,426997,0,3864.809,49.76044,0,13,1,20.42901,0,0,0,0,20.42901,0,0,0,1,0,2,82.4,13.8,0,84.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,84.1,8.259927,.6931472,3.016956,1
-13,4,0,0,2,426997,0,3864.809,50.76044,0,13,1,60.59541,0,0,0,0,60.59541,0,0,0,1,0,2,82.4,13.8,0,84.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,84.1,8.259927,.6931472,4.104219,1
-13,4,0,0,3,426997,0,3864.809,51.76044,0,13,1,127.3646,6.233878,3.847807,0,1027.18,1164.626,2,0,0,6,0,2,82.4,13.8,0,84.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,84.1,8.259927,.6931472,7.060155,1
-13,4,0,0,4,426997,0,3864.809,52.76044,0,13,1,78.13106,9.790617,19.38736,0,0,107.309,0,0,0,4,1,2,82.4,13.8,0,84.1,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,84.1,8.259927,.6931472,4.675713,1
-13,4,0,0,5,426997,0,3864.809,53.76044,0,13,1,5.661713,0,0,0,0,5.661713,0,0,0,1,0,1,82.4,13.8,0,84.1,300,0,0,0,0,0,1,4.564348,5.755076,0,0,0,84.1,8.259927,0,1.733726,1
-13,4,0,1,1,427008,0,11258.06,51.86858,1,12,1,32.68641,8.81001,38.30439,0,0,79.80082,0,0,0,3,1,2,89.4,17.2,0,65.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,65.9,9.328929,.6931472,4.379534,1
-13,4,0,1,2,427008,0,11258.06,52.86858,1,12,1,15.00234,6.118144,0,0,0,21.12049,0,0,0,2,0,2,89.4,17.2,0,65.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,65.9,9.328929,.6931472,3.050244,1
-13,4,0,1,3,427008,0,11258.06,53.86858,1,12,1,15.90714,0,0,0,0,15.90714,0,0,0,2,0,2,89.4,17.2,0,65.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,65.9,9.328929,.6931472,2.766768,1
-13,4,0,1,1,427009,0,11258.06,59.85216,0,12,1,55.66905,0,38.30439,0,0,93.97344,0,0,0,2,1,2,100,17.2,0,90.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,90.9,9.328929,.6931472,4.543012,1
-13,4,0,1,2,427009,0,11258.06,60.85216,0,12,1,20.62822,0,0,0,0,20.62822,0,0,0,0,0,2,100,17.2,0,90.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,90.9,9.328929,.6931472,3.02666,1
-13,4,0,1,3,427009,0,11258.06,61.85216,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,100,17.2,0,90.9,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,1,0,0,90.9,9.328929,.6931472,,0
-18,4,25,1,1,427019,0,6007.038,60.19986,1,10,1,41.99897,100.4637,35.54869,0,0,178.0113,0,0,0,3,0,1,74.46748,9.967326,.1572505,,602.73,602.73,0,0,0,6.401469,0,3.258096,7.787764,1,0,0,72.06626,8.700853,0,5.181847,1
-18,4,25,1,2,427019,0,6007.038,61.19986,1,10,1,39.77273,71.61459,0,0,0,111.3873,0,0,0,1,8,1,74.46748,9.967326,.1572505,,602.73,602.73,0,0,0,6.401469,0,3.258096,7.787764,1,0,0,72.06626,8.700853,0,4.713014,1
-18,4,25,1,3,427019,0,6007.038,62.19986,1,10,1,49.39315,84.15258,41.61248,0,0,175.1582,0,0,0,3,1,1,74.46748,9.967326,.1572505,,602.73,602.73,0,0,0,6.401469,0,3.258096,7.787764,1,0,0,72.06626,8.700853,0,5.165689,1
-13,4,0,0,1,427021,0,7767.742,38.32991,1,10,1,114.8892,0,0,0,912.406,1027.295,1,0,0,4,0,3,75.5,0,0,92,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92,8.957864,1.098612,6.934685,1
-13,4,0,0,2,427021,0,7767.742,39.32991,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,0,0,92,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92,8.957864,1.098612,,0
-13,4,0,0,3,427021,0,7767.742,40.32991,1,10,1,4.551365,0,0,0,0,4.551365,0,0,0,0,0,3,75.5,0,0,92,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92,8.957864,1.098612,1.515427,1
-13,4,0,0,1,427022,0,7767.742,14.40931,0,10,1,18.93354,0,0,0,0,18.93354,0,0,0,1,0,3,68.6,3.4,0,78.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,2.940935,1
-13,4,0,0,2,427022,0,7767.742,15.40931,0,10,1,32.14962,0,0,56.81818,0,32.14962,0,0,4,2,0,3,68.6,3.4,0,78.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,3.470401,1
-13,4,0,0,3,427022,0,7767.742,16.40931,0,10,1,56.56697,0,0,0,0,56.56697,0,0,0,2,0,3,68.6,3.4,0,78.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,4.035425,1
-13,4,0,0,1,427023,0,7767.742,42.04517,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,96.8,0,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,,0
-13,4,0,0,2,427023,0,7767.742,43.04517,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,96.8,0,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,,0
-13,4,0,0,3,427023,0,7767.742,44.04517,0,8,1,5.418292,0,0,0,0,5.418292,0,0,0,0,0,3,96.8,0,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.957864,1.098612,1.689781,1
-6,4,25,1,1,427067,0,6321.408,56.0438,0,12,1,56.15662,14.78619,40.70067,0,0,111.6435,0,0,0,4,0,2,78.2,3.4,0,67,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,67,8.751856,.6931472,4.715311,1
-6,4,25,1,2,427067,0,6321.408,57.0438,0,12,1,0,8.243371,0,0,0,8.243371,0,0,0,0,0,2,78.2,3.4,0,67,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,67,8.751856,.6931472,2.109409,1
-6,4,25,1,3,427067,0,6321.408,58.0438,0,12,1,84.02688,9.874295,13.0039,0,0,106.9051,0,0,0,4,0,2,78.2,3.4,0,67,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,67,8.751856,.6931472,4.671941,1
-6,4,25,1,1,427068,0,6321.408,55.9206,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,20.7,0,68.2,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,68.2,8.751856,.6931472,,0
-6,4,25,1,2,427068,0,6321.408,56.9206,1,12,1,54.45076,4.848485,.9469697,0,0,60.24621,0,0,0,4,0,2,71.3,20.7,0,68.2,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,68.2,8.751856,.6931472,4.09844,1
-6,4,25,1,3,427068,0,6321.408,57.9206,1,12,1,30.34244,0,0,0,0,30.34244,0,0,0,4,0,2,71.3,20.7,0,68.2,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,68.2,8.751856,.6931472,3.412547,1
-11,4,0,0,1,427069,0,8868.035,24.73648,1,13,1,11.57303,3.263534,0,0,0,14.83657,0,0,0,1,0,4,70.7,6.9,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,9.090322,1.386294,2.697095,1
-11,4,0,0,2,427069,0,8868.035,25.73648,1,13,1,1.078293,0,0,0,0,1.078293,0,0,0,0,0,4,70.7,6.9,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,9.090322,1.386294,.0753796,1
-11,4,0,0,3,427069,0,8868.035,26.73648,1,13,1,12.89768,0,29.23474,0,0,42.13242,0,0,0,1,0,4,70.7,6.9,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,9.090322,1.386294,3.740817,1
-11,4,0,0,1,427070,0,8868.035,31.15401,0,13,1,35.69969,5.755873,0,0,0,41.45557,0,0,0,3,0,4,79.8,0,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.090322,1.386294,3.724622,1
-11,4,0,0,2,427070,0,8868.035,32.154,0,13,1,16.87764,0,0,0,0,16.87764,0,0,0,1,0,4,79.8,0,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.090322,1.386294,2.825989,1
-11,4,0,0,3,427070,0,8868.035,33.154,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,0,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.090322,1.386294,,0
-11,4,0,0,1,427071,0,8868.035,4.328542,0,13,1,7.660879,11.25638,0,0,0,18.91726,0,0,0,1,0,4,83.39137,9.967326,0,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,9.090322,1.386294,2.940075,1
-11,4,0,0,2,427071,0,8868.035,5.328542,0,13,1,5.625879,5.180497,0,0,0,10.80638,0,0,0,1,0,4,83.39137,9.967326,0,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,9.090322,1.386294,2.380136,1
-11,4,0,0,3,427071,0,8868.035,6.328542,0,13,1,15.90714,6.010318,22.35598,0,0,44.27343,0,0,0,2,0,4,83.39137,9.967326,0,70.4,0,0,1,0,1.386294,0,0,0,0,1,0,0,70.4,9.090322,1.386294,3.790385,1
-11,4,0,0,1,427072,0,8868.035,1.226557,0,13,1,15.32176,12.31869,0,0,0,27.64045,0,0,0,3,0,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.090322,1.386294,3.31928,1
-11,4,0,0,2,427072,0,8868.035,2.226557,0,13,1,34.59916,5.930614,0,0,0,40.52977,0,0,0,3,0,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.090322,1.386294,3.702037,1
-11,4,0,0,3,427072,0,8868.035,3.226557,0,13,1,15.90714,2.575237,0,0,0,18.48237,0,0,0,2,0,4,83.39137,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.090322,1.386294,2.916817,1
-13,4,0,1,1,427081,0,3463.93,3.767283,1,12,1,48.07692,0,0,0,0,48.07692,0,0,0,3,0,3,83.39137,9.967326,0,48.1,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,48.1,8.150448,1.098612,3.872802,1
-13,4,0,1,2,427081,0,3463.93,4.767282,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,0,48.1,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,48.1,8.150448,1.098612,,0
-13,4,0,1,3,427081,0,3463.93,5.767282,1,12,1,25.65199,9.593843,0,0,0,35.24583,0,0,0,4,0,3,83.39137,9.967326,0,48.1,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,48.1,8.150448,1.098612,3.562347,1
-13,4,0,1,1,427082,0,3463.93,22.8501,0,14,1,10.12146,0,0,0,0,10.12146,0,0,0,0,1,3,59,3.4,0,63.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.150448,1.098612,2.314658,1
-13,4,0,1,2,427082,0,3463.93,23.8501,0,14,1,0,1.734266,0,0,0,1.734266,0,0,0,0,0,3,59,3.4,0,63.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.150448,1.098612,.5505841,1
-13,4,0,1,3,427082,0,3463.93,24.8501,0,14,1,63.78794,7.785378,0,0,0,71.57332,0,0,0,2,0,3,59,3.4,0,63.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.150448,1.098612,4.270722,1
-13,4,0,1,1,427083,0,3463.93,22.23682,1,12,1,96.40688,60.46053,13.66397,0,0,170.5314,0,0,0,7,1,3,44.7,24.1,1,56.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.150448,1.098612,5.138919,1
-13,4,0,1,2,427083,0,3463.93,23.23682,1,12,1,65.85081,32.2331,0,0,0,98.08392,0,0,0,8,0,3,44.7,24.1,1,56.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.150448,1.098612,4.585824,1
-13,4,0,1,3,427083,0,3463.93,24.23682,1,12,1,111.0517,30.51304,0,51.30397,0,141.5648,0,0,3,5,0,3,44.7,24.1,1,56.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.150448,1.098612,4.952757,1
-13,4,0,0,1,427086,0,10390.62,8.290213,0,14,1,23.627,7.135497,0,0,0,30.76249,0,0,0,2,0,5,86.7,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.248755,1.609438,3.426296,1
-13,4,0,0,2,427086,0,10390.62,9.290213,0,14,1,45.54924,4.782197,0,0,0,50.33144,0,0,0,4,0,5,86.7,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.248755,1.609438,3.91863,1
-13,4,0,0,3,427086,0,10390.62,10.29021,0,14,1,78.56524,7.498916,0,0,0,86.06416,0,0,0,7,0,5,86.7,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.248755,1.609438,4.455093,1
-13,4,0,0,1,427087,0,10390.62,34.19849,0,12,1,160.5307,5.023184,0,0,0,165.5538,0,0,0,5,0,5,76.1,3.4,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.248755,1.609438,5.109296,1
-13,4,0,0,2,427087,0,10390.62,35.19849,0,12,1,101.089,5.847538,35.40246,0,0,142.339,0,0,0,6,0,5,76.1,3.4,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.248755,1.609438,4.958212,1
-13,4,0,0,3,427087,0,10390.62,36.19849,0,12,1,79.6489,2.492414,0,0,0,82.14131,0,0,0,4,6,5,76.1,3.4,0,54.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,54.5,9.248755,1.609438,4.408441,1
-13,4,0,0,1,427088,0,10390.62,5.801506,1,14,1,37.48068,8.964452,0,0,0,46.44513,0,0,0,4,0,5,83.3,9.967326,0,48.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,48.1,9.248755,1.609438,3.838272,1
-13,4,0,0,2,427088,0,10390.62,6.801506,1,14,1,163.7074,11.24527,0,0,0,174.9527,0,0,0,5,0,5,83.3,9.967326,0,48.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,48.1,9.248755,1.609438,5.164515,1
-13,4,0,0,3,427088,0,10390.62,7.801506,1,14,1,26.87473,10.25141,0,0,376.788,413.9142,1,0,0,3,0,5,83.3,9.967326,0,48.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,1,0,48.1,9.248755,1.609438,6.025659,1
-13,4,0,0,1,427089,0,10390.62,4.572211,0,14,1,46.88305,7.393096,0,0,0,54.27615,0,0,0,5,0,5,86.7,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.248755,1.609438,3.994085,1
-13,4,0,0,2,427089,0,10390.62,5.572211,0,14,1,5.681818,7.220644,0,0,0,12.90246,0,0,0,1,0,5,86.7,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.248755,1.609438,2.557418,1
-13,4,0,0,3,427089,0,10390.62,6.572211,0,14,1,30.34244,7.954053,0,0,149.7833,188.0798,1,0,0,5,0,5,86.7,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.248755,1.609438,5.236866,1
-13,4,0,0,1,427090,0,10390.62,28.81862,1,14,1,23.69912,4.636785,0,0,0,28.33591,0,0,0,2,0,5,60.1,27.6,0,35.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,35.2,9.248755,1.609438,3.34413,1
-13,4,0,0,2,427090,0,10390.62,29.81862,1,14,1,198.5653,15.28883,0,0,956.0511,1169.905,1,0,0,9,0,5,60.1,27.6,0,35.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,35.2,9.248755,1.609438,7.064678,1
-13,4,0,0,3,427090,0,10390.62,30.81862,1,14,1,318.1708,5.439965,29.04205,0,0,352.6528,0,0,0,4,1,5,60.1,27.6,0,35.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,1,35.2,9.248755,1.609438,5.865484,1
-16,4,95,1,1,427097,0,4985.337,41.38535,0,17,1,23.18393,0,0,0,0,23.18393,0,0,0,4,0,1,78.7,10.3,1,69.3,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,69.3,8.514457,0,3.143459,1
-16,4,95,1,2,427097,0,4985.337,42.38535,0,17,1,7.102273,0,0,0,0,7.102273,0,0,0,1,0,1,78.7,10.3,1,69.3,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,69.3,8.514457,0,1.960415,1
-16,4,95,1,3,427097,0,4985.337,43.38535,0,17,1,19.50585,0,0,0,0,19.50585,0,0,0,1,0,1,78.7,10.3,1,69.3,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,69.3,8.514457,0,2.970715,1
-11,4,0,0,1,427100,0,8992.375,36.46544,1,15,1,10.30397,21.63833,0,0,0,31.9423,0,0,0,2,0,6,92.6,6.9,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,3.463931,1
-11,4,0,0,2,427100,0,8992.375,37.46544,1,15,1,188.267,0,0,0,0,188.267,0,0,0,1,0,6,92.6,6.9,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,5.237862,1
-11,4,0,0,3,427100,0,8992.375,38.46544,1,15,1,37.27785,32.94321,21.67317,0,0,91.89423,0,0,0,5,0,6,92.6,6.9,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,4.520638,1
-11,4,0,1,1,427101,0,8992.375,15.92882,0,15,1,60.83462,0,0,0,0,60.83462,0,0,0,3,0,6,47.9,6.9,0,70.5,0,186.48,1,0,1.791759,5.228324,0,0,0,1,0,0,70.5,9.104243,1.791759,4.108159,1
-11,4,0,1,2,427101,0,8992.375,16.92882,0,15,1,78.48485,.9469697,34.09091,0,0,113.5227,0,0,0,3,0,6,47.9,6.9,0,70.5,0,186.48,1,0,1.791759,5.228324,0,0,0,1,0,0,70.5,9.104243,1.791759,4.732003,1
-11,4,0,1,3,427101,0,8992.375,17.92882,0,15,1,17.772,0,19.07239,0,0,36.84439,0,0,0,3,0,6,47.9,6.9,0,70.5,0,186.48,1,0,1.791759,5.228324,0,0,0,1,0,0,70.5,9.104243,1.791759,3.606703,1
-11,4,0,1,1,427102,0,8992.375,14.05065,0,15,1,12.87996,0,29.8815,0,0,42.76146,0,0,0,1,0,6,81.9,3.4,0,80.7,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,80.7,9.104243,1.791759,3.755637,1
-11,4,0,1,2,427102,0,8992.375,15.05065,0,15,1,18.93939,0,14.20455,0,0,33.14394,0,0,0,2,0,6,81.9,3.4,0,80.7,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,80.7,9.104243,1.791759,3.50086,1
-11,4,0,1,3,427102,0,8992.375,16.05065,0,15,1,6.501951,0,0,0,0,6.501951,0,0,0,1,0,6,81.9,3.4,0,80.7,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,80.7,9.104243,1.791759,1.872102,1
-11,4,0,1,1,427103,0,8992.375,10.75975,0,15,1,43.88975,0,0,0,0,43.88975,0,0,0,2,0,6,86.7,9.967326,0,92.6,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,92.6,9.104243,1.791759,3.781681,1
-11,4,0,1,2,427103,0,8992.375,11.75975,0,15,1,17.51894,1.657197,23.67424,0,0,42.85038,0,0,0,2,0,6,86.7,9.967326,0,92.6,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,92.6,9.104243,1.791759,3.757715,1
-11,4,0,1,3,427103,0,8992.375,12.75975,0,15,1,17.33854,0,10.83658,0,0,28.17512,0,0,0,2,0,6,86.7,9.967326,0,92.6,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,92.6,9.104243,1.791759,3.338439,1
-11,4,0,1,1,427104,0,8992.375,40.282,0,16,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,3.4,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,,0
-11,4,0,1,2,427104,0,8992.375,41.282,0,16,1,32.67046,0,29.35606,0,0,62.02652,0,0,0,2,0,6,86.7,3.4,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,4.127562,1
-11,4,0,1,3,427104,0,8992.375,42.282,0,16,1,21.67317,2.080624,18.20546,0,0,41.95926,0,0,0,1,0,6,86.7,3.4,0,93.2,0,186.48,0,0,1.791759,5.228324,0,0,0,1,0,0,93.2,9.104243,1.791759,3.736699,1
-11,4,0,1,1,427105,0,8992.375,6.269678,0,15,1,0,2.060793,0,0,0,2.060793,0,0,0,0,0,6,90,9.967326,0,96.3,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,96.3,9.104243,1.791759,.7230911,1
-11,4,0,1,2,427105,0,8992.375,7.269678,0,15,1,0,8.049242,0,0,0,8.049242,0,0,0,0,0,6,90,9.967326,0,96.3,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,96.3,9.104243,1.791759,2.085578,1
-11,4,0,1,3,427105,0,8992.375,8.269678,0,15,1,16.03815,9.861292,24.27395,0,0,50.17339,0,0,0,2,0,6,90,9.967326,0,96.3,0,186.48,1,0,1.791759,5.228324,0,0,0,0,0,0,96.3,9.104243,1.791759,3.915485,1
-18,4,25,1,1,427114,0,10536.07,31.29911,1,12,1,28.08989,4.136874,33.70787,0,0,65.93462,0,0,0,4,0,5,77.1,27.6,1,51.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.1,9.262655,1.609438,4.188663,1
-18,4,25,1,2,427114,0,10536.07,32.29911,1,12,1,140.3188,0,7.501172,0,0,147.82,0,0,0,3,0,5,77.1,27.6,1,51.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.1,9.262655,1.609438,4.995995,1
-18,4,25,1,3,427114,0,10536.07,33.29911,1,12,1,125.1075,0,31.59931,0,0,156.7068,0,0,0,2,4,5,77.1,27.6,1,51.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.1,9.262655,1.609438,5.054377,1
-18,4,25,1,1,427115,0,10536.07,8.312115,0,12,1,7.660879,0,0,0,0,7.660879,0,0,0,1,0,5,93.3,9.967326,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.262655,1.609438,2.036127,1
-18,4,25,1,2,427115,0,10536.07,9.312115,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,9.967326,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.262655,1.609438,,0
-18,4,25,1,3,427115,0,10536.07,10.31211,0,12,1,32.52365,0,0,0,0,32.52365,0,0,0,2,0,5,93.3,9.967326,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.262655,1.609438,3.481967,1
-18,4,25,1,1,427116,0,10536.07,9.582478,1,12,1,175.5567,14.81103,18.8713,0,74.32584,283.5648,1,0,0,7,0,5,71.7,9.967326,0,44.4,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,44.4,9.262655,1.609438,5.647441,1
-18,4,25,1,2,427116,0,10536.07,10.58248,1,12,1,31.64557,5.391468,25.78528,0,425.9728,488.7951,1,0,0,3,0,5,71.7,9.967326,0,44.4,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,44.4,9.262655,1.609438,6.191944,1
-18,4,25,1,3,427116,0,10536.07,11.58248,1,12,1,5.159071,0,27.51505,0,0,32.67412,0,0,0,1,0,5,71.7,9.967326,0,44.4,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,44.4,9.262655,1.609438,3.486583,1
-18,4,25,1,1,427117,0,10536.07,11.2553,1,12,1,76.43003,0,0,0,0,76.43003,0,0,0,4,0,5,75,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.262655,1.609438,4.336376,1
-18,4,25,1,2,427117,0,10536.07,12.2553,1,12,1,54.96953,0,1.172058,0,0,56.14159,0,0,0,2,0,5,75,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.262655,1.609438,4.027877,1
-18,4,25,1,3,427117,0,10536.07,13.2553,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.262655,1.609438,,0
-18,4,25,1,1,427118,0,10536.07,33.42368,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,10.3,0,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,56.8,9.262655,1.609438,,0
-18,4,25,1,2,427118,0,10536.07,34.42368,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,10.3,0,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,56.8,9.262655,1.609438,,0
-18,4,25,1,3,427118,0,10536.07,35.42368,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,10.3,0,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,56.8,9.262655,1.609438,,0
-16,4,95,1,1,427119,0,11610.56,10.02601,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.359756,1.609438,,0
-16,4,95,1,2,427119,0,11610.56,11.02601,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.359756,1.609438,,0
-16,4,95,1,3,427119,0,11610.56,12.02601,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,96.3,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.359756,1.609438,,0
-16,4,95,1,1,427120,0,11610.56,33.61259,1,14,1,0,1.940756,0,0,0,1.940756,0,0,0,0,0,5,80.9,20.7,1,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.359756,1.609438,.6630775,1
-16,4,95,1,2,427120,0,11610.56,34.61259,1,14,1,0,2.766057,10.31411,0,0,13.08017,0,0,0,0,0,5,80.9,20.7,1,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.359756,1.609438,2.571097,1
-16,4,95,1,3,427120,0,11610.56,35.61259,1,14,1,0,5.932932,0,0,0,5.932932,0,0,0,0,0,5,80.9,20.7,1,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.359756,1.609438,1.780519,1
-16,4,95,1,1,427121,0,11610.56,36,0,16,1,20.42901,0,0,0,0,20.42901,0,0,0,1,0,5,78.2,3.4,1,83,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,83,9.359756,1.609438,3.016956,1
-16,4,95,1,2,427121,0,11610.56,37,0,16,1,16.40881,0,0,0,0,16.40881,0,0,0,1,0,5,78.2,3.4,1,83,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,83,9.359756,1.609438,2.797819,1
-16,4,95,1,3,427121,0,11610.56,38,0,16,1,28.80482,0,0,0,0,28.80482,0,0,0,1,0,5,78.2,3.4,1,83,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,83,9.359756,1.609438,3.360543,1
-16,4,95,1,1,427122,0,11610.56,7.345654,1,14,1,0,3.013279,0,0,0,3.013279,0,0,0,0,0,5,80,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.359756,1.609438,1.103029,1
-16,4,95,1,2,427122,0,11610.56,8.345654,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,80,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.359756,1.609438,,0
-16,4,95,1,3,427122,0,11610.56,9.345654,1,14,1,6.448839,3.22442,0,0,0,9.673259,0,0,0,1,0,5,80,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.359756,1.609438,2.269365,1
-16,4,95,1,1,427123,0,11610.56,4.602327,0,14,1,17.36466,6.026558,0,0,0,23.39122,0,0,0,2,0,5,83.39137,9.967326,0,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.359756,1.609438,3.152361,1
-16,4,95,1,2,427123,0,11610.56,5.602327,0,14,1,0,11.95499,0,0,0,11.95499,0,0,0,0,0,5,83.39137,9.967326,0,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.359756,1.609438,2.481149,1
-16,4,95,1,3,427123,0,11610.56,6.602327,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.359756,1.609438,,0
-11,4,0,1,1,427133,0,7635.19,26.5681,0,16,1,24.961,2.730109,32.76131,0,0,60.45242,0,0,0,2,1,4,61.2,6.9,0,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,8.940654,1.386294,4.101857,1
-11,4,0,1,2,427133,0,7635.19,27.5681,0,16,1,41.68657,0,0,0,0,41.68657,0,0,0,3,1,4,61.2,6.9,0,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,8.940654,1.386294,3.730179,1
-11,4,0,1,3,427133,0,7635.19,28.5681,0,16,1,30.72871,0,0,0,0,30.72871,0,0,0,1,0,4,61.2,6.9,0,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,8.940654,1.386294,3.425197,1
-11,4,0,1,4,427133,0,7635.19,29.5681,0,16,1,141.4838,0,0,0,0,141.4838,0,0,0,5,1,4,61.2,6.9,0,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,8.940654,1.386294,4.952186,1
-11,4,0,1,5,427133,0,7635.19,30.5681,0,16,1,176.8129,6.555475,0,0,0,183.3684,0,0,0,4,0,4,61.2,6.9,0,65.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,65.9,8.940654,1.386294,5.211497,1
-11,4,0,1,1,427134,0,7635.19,23.87953,1,14,1,18.20073,0,33.54134,0,0,51.74207,0,0,0,1,1,4,55.9,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,8.940654,1.386294,3.946271,1
-11,4,0,1,2,427134,0,7635.19,24.87953,1,14,1,19.11132,0,0,0,0,19.11132,0,0,0,1,1,4,55.9,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,8.940654,1.386294,2.950281,1
-11,4,0,1,3,427134,0,7635.19,25.87953,1,14,1,28.5338,0,0,0,0,28.5338,0,0,0,1,0,4,55.9,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,8.940654,1.386294,3.351089,1
-11,4,0,1,4,427134,0,7635.19,26.87953,1,14,1,26.32629,0,0,0,0,26.32629,0,0,0,2,0,4,55.9,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,8.940654,1.386294,3.270568,1
-11,4,0,1,5,427134,0,7635.19,27.87953,1,14,1,35.62364,3.440899,34.80783,0,0,73.87237,0,0,0,2,1,4,55.9,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,8.940654,1.386294,4.302339,1
-11,4,0,1,1,427135,0,7635.19,2.934976,0,14,1,190.0676,9.786792,0,0,258.0759,457.9303,1,0,0,5,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.940654,1.386294,6.126717,1
-11,4,0,1,2,427135,0,7635.19,3.934976,0,14,1,30.81701,1.385571,0,20.30578,0,32.20258,0,0,1,2,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.940654,1.386294,3.472047,1
-11,4,0,1,3,427135,0,7635.19,4.934976,0,14,1,10.97454,2.528534,0,0,0,13.50307,0,0,0,2,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.940654,1.386294,2.602917,1
-11,4,0,1,4,427135,0,7635.19,5.934976,0,14,1,48.26486,0,0,0,0,48.26486,0,0,0,4,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.940654,1.386294,3.876704,1
-11,4,0,1,5,427135,0,7635.19,6.934976,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.940654,1.386294,,0
-11,4,0,1,1,427136,0,7635.19,.7748117,1,14,1,23.92096,5.24181,0,0,0,29.16277,0,0,0,4,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,92.6,8.940654,1.386294,3.372893,1
-11,4,0,1,2,427136,0,7635.19,1.774812,1,14,1,21.26135,0,0,0,0,21.26135,0,0,0,2,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,92.6,8.940654,1.386294,3.056891,1
-11,4,0,1,3,427136,0,7635.19,2.774812,1,14,1,28.31431,0,4.828797,0,0,33.14311,0,0,0,2,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,92.6,8.940654,1.386294,3.500835,1
-11,4,0,1,4,427136,0,7635.19,3.774812,1,14,1,8.775429,2.325489,0,0,0,11.10092,0,0,0,2,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,92.6,8.940654,1.386294,2.407028,1
-11,4,0,1,5,427136,0,7635.19,4.774812,1,14,1,6.526468,0,0,0,0,6.526468,0,0,0,1,0,4,83.39137,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,92.6,8.940654,1.386294,1.875866,1
-5,4,25,1,1,427152,0,2744.281,11.718,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,63.3,9.967326,0,77.8,150,150,1,0,.6931472,5.010635,0,3.258096,6.39693,0,0,0,77.8,7.917639,.6931472,,0
-5,4,25,1,2,427152,0,2744.281,12.718,0,12,1,89.51049,0,26.80653,0,0,116.317,0,0,0,9,0,2,63.3,9.967326,0,77.8,150,150,1,0,.6931472,5.010635,0,3.258096,6.39693,0,0,0,77.8,7.917639,.6931472,4.75632,1
-5,4,25,1,3,427152,0,2744.281,13.718,0,12,1,6.412997,0,0,0,0,6.412997,0,0,0,1,0,2,63.3,9.967326,0,77.8,150,150,1,0,.6931472,5.010635,0,3.258096,6.39693,0,0,0,77.8,7.917639,.6931472,1.858327,1
-5,4,25,1,1,427153,0,2744.281,33.21561,1,12,1,10.12146,0,0,0,0,10.12146,0,0,0,1,0,2,58,10.3,0,72.6,150,150,0,0,.6931472,5.010635,0,3.258096,6.39693,1,0,0,72.6,7.917639,.6931472,2.314658,1
-5,4,25,1,2,427153,0,2744.281,34.21561,1,12,1,11.18881,0,0,0,0,11.18881,0,0,0,2,0,2,58,10.3,0,72.6,150,150,0,0,.6931472,5.010635,0,3.258096,6.39693,1,0,0,72.6,7.917639,.6931472,2.414914,1
-5,4,25,1,3,427153,0,2744.281,35.21561,1,12,1,281.8213,0,0,0,0,281.8213,0,0,0,6,0,2,58,10.3,0,72.6,150,150,0,0,.6931472,5.010635,0,3.258096,6.39693,1,0,0,72.6,7.917639,.6931472,5.641273,1
-17,4,25,1,1,427161,0,3519.062,8.577686,0,9,1,33.65385,0,0,0,0,33.65385,0,0,0,1,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,3.516127,1
-17,4,25,1,2,427161,0,3519.062,9.577686,0,9,1,11.65501,0,0,0,0,11.65501,0,0,0,1,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,2.455736,1
-17,4,25,1,3,427161,0,3519.062,10.57769,0,9,1,2.137666,0,22.87302,0,0,25.01069,0,0,0,1,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,3.219303,1
-17,4,25,1,4,427161,0,3519.062,11.57769,0,9,1,10.99154,0,0,0,0,10.99154,0,0,0,1,0,6,90,9.967326,0,100,294,294,1,0,1.791759,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.791759,2.397126,1
-17,4,25,1,5,427161,0,3519.062,12.57769,0,9,1,96.32947,0,25.07201,0,0,121.4015,0,0,0,5,0,5,90,9.967326,0,100,294,294,1,0,1.609438,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.609438,4.799103,1
-17,4,25,1,1,427162,0,3519.062,37.57974,1,9,1,115.6174,74.72672,32.38866,0,0,222.7328,0,0,0,7,1,7,45.7,13.8,1,33,294,294,0,0,1.94591,5.68358,0,3.258096,7.069874,1,0,0,33,8.166234,1.94591,5.405973,1
-17,4,25,1,2,427162,0,3519.062,38.57974,1,9,1,36.36364,54.98368,0,0,0,91.34732,0,0,0,2,0,7,45.7,13.8,1,33,294,294,0,0,1.94591,5.68358,0,3.258096,7.069874,1,0,0,33,8.166234,1.94591,4.514669,1
-17,4,25,1,3,427162,0,3519.062,39.57974,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,45.7,13.8,1,33,294,294,0,0,1.94591,5.68358,0,3.258096,7.069874,1,0,0,33,8.166234,1.94591,,0
-17,4,25,1,4,427162,0,3519.062,40.57974,1,9,1,147.9631,18.15142,0,0,0,166.1145,0,0,0,12,2,6,45.7,13.8,1,33,294,294,0,0,1.791759,5.68358,0,3.258096,7.069874,1,0,0,33,8.166234,1.791759,5.112678,1
-17,4,25,1,5,427162,0,3519.062,41.57974,1,9,1,138.1876,0,35.51106,0,0,173.6986,0,0,0,11,0,5,45.7,13.8,1,33,294,294,0,0,1.609438,5.68358,0,3.258096,7.069874,1,0,0,33,8.166234,1.609438,5.157322,1
-17,4,25,1,1,427163,0,3519.062,14.14647,1,9,1,14.17004,1.341093,0,0,0,15.51113,0,0,0,2,0,7,79.8,17.2,0,72.7,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,72.7,8.166234,1.94591,2.741558,1
-17,4,25,1,2,427163,0,3519.062,15.14647,1,9,1,67.94872,5.846154,0,0,0,73.79487,0,0,0,9,0,7,79.8,17.2,0,72.7,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,72.7,8.166234,1.94591,4.301289,1
-17,4,25,1,3,427163,0,3519.062,16.14647,1,9,1,10.68833,0,0,0,0,10.68833,0,0,0,1,0,7,79.8,17.2,0,72.7,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,72.7,8.166234,1.94591,2.369152,1
-17,4,25,1,1,427165,0,3519.062,6.877481,1,9,1,22.26721,0,3.54251,0,0,25.80972,0,0,0,1,0,7,88.3,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,3.250751,1
-17,4,25,1,2,427165,0,3519.062,7.877481,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,88.3,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,,0
-17,4,25,1,3,427165,0,3519.062,8.877481,1,9,1,1.710132,0,0,0,0,1.710132,0,0,0,1,0,7,88.3,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,.5365708,1
-17,4,25,1,4,427165,0,3519.062,9.877481,1,9,1,14.98847,0,0,0,0,14.98847,0,0,0,2,0,6,88.3,9.967326,0,100,294,294,1,1,1.791759,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.791759,2.707281,1
-17,4,25,1,5,427165,0,3519.062,10.87748,1,9,1,66.5648,0,0,0,0,66.5648,0,0,0,5,0,5,88.3,9.967326,0,100,294,294,1,1,1.609438,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.609438,4.198176,1
-17,4,25,1,1,427166,0,3519.062,12.59959,0,9,1,45.43522,7.6417,0,0,392.1913,445.2682,1,0,0,7,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,6.098677,1
-17,4,25,1,2,427166,0,3519.062,13.59959,0,9,1,62.63403,0,0,0,0,62.63403,0,0,0,4,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,4.137309,1
-17,4,25,1,3,427166,0,3519.062,14.59959,0,9,1,4.275331,2.642155,0,0,0,6.917486,0,0,0,1,0,7,90,9.967326,0,100,294,294,1,0,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,1.934052,1
-17,4,25,1,4,427166,0,3519.062,15.59959,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,90,9.967326,0,100,294,294,1,0,1.791759,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.791759,,0
-17,4,25,1,1,427167,0,3519.062,11.72622,1,9,1,15.18219,0,0,0,0,15.18219,0,0,0,2,0,7,90,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,2.720123,1
-17,4,25,1,2,427167,0,3519.062,12.72622,1,9,1,11.65501,0,0,0,0,11.65501,0,0,0,1,0,7,90,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,2.455736,1
-17,4,25,1,3,427167,0,3519.062,13.72622,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,90,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,,0
-17,4,25,1,4,427167,0,3519.062,14.72622,1,9,1,6.917756,0,0,0,0,6.917756,0,0,0,1,0,6,90,9.967326,0,100,294,294,1,1,1.791759,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.791759,1.934091,1
-17,4,25,1,5,427167,0,3519.062,15.72622,1,9,1,29.43449,0,25.07201,0,0,54.5065,0,0,0,3,0,5,90,9.967326,0,100,294,294,1,1,1.609438,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.609438,3.99832,1
-17,4,25,1,1,427168,0,3519.062,9.752225,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,,0
-17,4,25,1,2,427168,0,3519.062,10.75222,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,,0
-17,4,25,1,3,427168,0,3519.062,11.75222,1,9,1,.8550662,0,0,0,0,.8550662,0,0,0,1,0,7,91.7,9.967326,0,100,294,294,1,1,1.94591,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.94591,-.1565763,1
-17,4,25,1,4,427168,0,3519.062,12.75222,1,9,1,24.98078,1.840892,0,0,0,26.82168,0,0,0,3,0,6,91.7,9.967326,0,100,294,294,1,1,1.791759,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.791759,3.28921,1
-17,4,25,1,5,427168,0,3519.062,13.75222,1,9,1,5.268704,0,0,0,0,5.268704,0,0,0,1,0,5,91.7,9.967326,0,100,294,294,1,1,1.609438,5.68358,0,3.258096,7.069874,0,0,0,100,8.166234,1.609438,1.661784,1
-16,4,95,1,1,427180,0,10312.61,36.72827,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.24122,1.386294,,0
-16,4,95,1,2,427180,0,10312.61,37.72827,0,12,1,27.07454,0,0,0,0,27.07454,0,0,0,3,0,4,77.7,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.24122,1.386294,3.298594,1
-16,4,95,1,3,427180,0,10312.61,38.72827,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,10.3,0,73.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.24122,1.386294,,0
-16,4,95,1,1,427181,0,10312.61,37.91376,1,12,1,31.15424,9.039837,0,0,0,40.19408,0,0,0,4,0,4,84.6,3.4,1,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,75,9.24122,1.386294,3.69372,1
-16,4,95,1,2,427181,0,10312.61,38.91376,1,12,1,45.59306,3.258322,31.41116,0,0,80.26254,0,0,0,5,0,4,84.6,3.4,1,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,75,9.24122,1.386294,4.385303,1
-16,4,95,1,3,427181,0,10312.61,39.91376,1,12,1,59.32932,17.7773,.9028375,0,0,78.00946,0,0,0,3,0,4,84.6,3.4,1,75,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,75,9.24122,1.386294,4.35683,1
-16,4,95,1,1,427182,0,10312.61,12.83778,1,12,1,135.332,20.53115,5.107252,0,0,160.9704,0,0,0,5,0,4,93.3,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.24122,1.386294,5.081221,1
-16,4,95,1,2,427182,0,10312.61,13.83778,1,12,1,37.97468,13.22082,0,0,0,51.1955,0,0,0,5,0,4,93.3,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.24122,1.386294,3.935652,1
-16,4,95,1,3,427182,0,10312.61,14.83778,1,12,1,6.018917,15.47721,0,0,0,21.49613,0,0,0,1,0,4,93.3,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.24122,1.386294,3.067873,1
-16,4,95,1,1,427183,0,10312.61,10.90212,0,12,1,9.193054,1.91522,0,0,0,11.10827,0,0,0,2,0,4,70,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.24122,1.386294,2.40769,1
-16,4,95,1,2,427183,0,10312.61,11.90212,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.24122,1.386294,,0
-16,4,95,1,3,427183,0,10312.61,12.90212,0,12,1,85.76956,0,0,0,0,85.76956,0,0,0,4,0,4,70,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.24122,1.386294,4.451664,1
-13,4,0,1,1,427195,0,12450.44,5.226557,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,9.967326,0,96.3,300,291.84,1,1,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,,0
-13,4,0,1,2,427195,0,12450.44,6.226557,1,16,1,27.97203,0,0,0,0,27.97203,0,0,0,2,0,3,83.3,9.967326,0,96.3,300,291.84,1,1,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,3.331205,1
-13,4,0,1,3,427195,0,12450.44,7.226557,1,16,1,44.46345,0,0,0,0,44.46345,0,0,0,5,0,3,83.3,9.967326,0,96.3,300,291.84,1,1,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,3.794667,1
-13,4,0,1,1,427196,0,12450.44,32.74743,1,16,1,104.8583,7.995952,0,37.95547,0,112.8542,0,0,3,6,0,3,50,13.8,0,72.7,300,291.84,0,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,72.7,9.429591,1.098612,4.726097,1
-13,4,0,1,2,427196,0,12450.44,33.74743,1,16,1,50.81585,0,0,0,0,50.81585,0,0,0,5,0,3,50,13.8,0,72.7,300,291.84,0,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,72.7,9.429591,1.098612,3.928208,1
-13,4,0,1,3,427196,0,12450.44,34.74743,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,50,13.8,0,72.7,300,291.84,0,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,72.7,9.429591,1.098612,,0
-13,4,0,1,1,427197,0,12450.44,1.809719,0,16,1,55.66801,7.667004,0,0,238.7348,302.0698,1,0,0,6,0,3,83.39137,9.967326,0,96.3,300,291.84,1,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,5.710658,1
-13,4,0,1,2,427197,0,12450.44,2.809719,0,16,1,18.64802,1.328671,0,0,9.324009,29.3007,0,0,0,3,0,3,83.39137,9.967326,0,96.3,300,291.84,1,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,3.377611,1
-13,4,0,1,3,427197,0,12450.44,3.809719,0,16,1,23.08679,0,0,0,0,23.08679,0,0,0,1,0,3,83.39137,9.967326,0,96.3,300,291.84,1,0,1.098612,5.676206,1,4.564348,5.755076,0,0,0,96.3,9.429591,1.098612,3.139261,1
-7,4,25,0,1,427204,0,7910.823,1.24846,0,10,1,7.727975,0,0,0,0,7.727975,0,0,0,1,0,4,83.39137,9.967326,0,81.5,750,749.8,1,0,1.386294,6.619806,0,3.258096,8.006368,1,0,0,81.5,8.976113,1.386294,2.044847,1
-7,4,25,0,2,427204,0,7910.823,2.24846,0,10,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,83.39137,9.967326,0,81.5,750,749.8,1,0,1.386294,6.619806,0,3.258096,8.006368,1,0,0,81.5,8.976113,1.386294,1.737271,1
-7,4,25,0,3,427204,0,7910.823,3.24846,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,81.5,750,749.8,1,0,1.386294,6.619806,0,3.258096,8.006368,1,0,0,81.5,8.976113,1.386294,,0
-7,4,25,0,4,427204,0,7910.823,4.24846,0,10,1,6.301693,0,0,0,0,6.301693,0,0,0,1,0,5,83.39137,9.967326,0,81.5,750,749.8,1,0,1.609438,6.619806,0,3.258096,8.006368,1,0,0,81.5,8.976113,1.609438,1.840818,1
-7,4,25,0,5,427204,0,7910.823,5.24846,0,10,1,6.440072,0,0,0,0,6.440072,0,0,0,1,0,5,83.39137,9.967326,0,81.5,750,749.8,1,0,1.609438,6.619806,0,3.258096,8.006368,1,0,0,81.5,8.976113,1.609438,1.86254,1
-7,4,25,0,1,427205,0,7910.823,3.000684,1,10,1,22.66873,0,0,0,0,22.66873,0,0,0,2,0,4,83.39137,9.967326,0,51.9,750,749.8,1,1,1.386294,6.619806,0,3.258096,8.006368,1,0,0,51.9,8.976113,1.386294,3.120986,1
-7,4,25,0,2,427205,0,7910.823,4.000684,1,10,1,13.73106,3.077652,0,0,0,16.80871,0,0,0,2,0,4,83.39137,9.967326,0,51.9,750,749.8,1,1,1.386294,6.619806,0,3.258096,8.006368,1,0,0,51.9,8.976113,1.386294,2.821897,1
-7,4,25,0,3,427205,0,7910.823,5.000684,1,10,1,6.501951,.8625921,0,0,0,7.364542,0,0,0,1,0,4,83.39137,9.967326,0,51.9,750,749.8,1,1,1.386294,6.619806,0,3.258096,8.006368,1,0,0,51.9,8.976113,1.386294,1.996677,1
-7,4,25,0,4,427205,0,7910.823,6.000684,1,10,1,37.81016,6.278062,0,0,0,44.08822,0,0,0,8,0,5,83.39137,9.967326,0,51.9,750,749.8,1,1,1.609438,6.619806,0,3.258096,8.006368,1,0,0,51.9,8.976113,1.609438,3.786193,1
-7,4,25,0,5,427205,0,7910.823,7.000684,1,10,1,26.47585,5.745975,22.18247,0,0,54.40429,0,0,0,4,1,5,83.39137,9.967326,0,51.9,750,749.8,1,1,1.609438,6.619806,0,3.258096,8.006368,1,0,0,51.9,8.976113,1.609438,3.996443,1
-7,4,25,0,1,427206,0,7910.823,32.37235,0,10,1,5.151984,3.086038,0,0,301.5765,309.8145,1,0,0,1,0,4,77.7,10.3,0,73.9,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,73.9,8.976113,1.386294,5.735974,1
-7,4,25,0,2,427206,0,7910.823,33.37235,0,10,1,13.25758,2.585227,0,0,0,15.8428,0,0,0,2,0,4,77.7,10.3,0,73.9,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,73.9,8.976113,1.386294,2.762715,1
-7,4,25,0,3,427206,0,7910.823,34.37235,0,10,1,60.9016,4.312961,0,0,0,65.21456,0,0,0,7,0,4,77.7,10.3,0,73.9,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,73.9,8.976113,1.386294,4.177683,1
-7,4,25,0,4,427206,0,7910.823,35.37235,0,10,1,15.75423,6.262308,25.20677,0,0,47.22332,0,0,0,1,1,5,77.7,10.3,0,73.9,750,749.8,0,0,1.609438,6.619806,0,3.258096,8.006368,0,0,0,73.9,8.976113,1.609438,3.854888,1
-7,4,25,0,5,427206,0,7910.823,36.37235,0,10,1,10.73345,19.47048,0,0,0,30.20394,0,0,0,2,0,5,77.7,10.3,0,73.9,750,749.8,0,0,1.609438,6.619806,0,3.258096,8.006368,0,0,0,73.9,8.976113,1.609438,3.407972,1
-7,4,25,0,1,427207,0,7910.823,28.60233,1,10,1,12.62236,0,0,0,0,12.62236,0,0,0,1,0,4,85.1,0,0,83,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,83,8.976113,1.386294,2.53547,1
-7,4,25,0,2,427207,0,7910.823,29.60233,1,10,1,102.7794,0,2.840909,0,464.9621,570.5824,1,0,0,3,0,4,85.1,0,0,83,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,83,8.976113,1.386294,6.346658,1
-7,4,25,0,3,427207,0,7910.823,30.60233,1,10,1,19.50585,0,0,0,1578.561,1598.067,2,0,0,3,0,4,85.1,0,0,83,750,749.8,0,0,1.386294,6.619806,0,3.258096,8.006368,0,0,0,83,8.976113,1.386294,7.37655,1
-7,4,25,0,4,427207,0,7910.823,31.60233,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,85.1,0,0,83,750,749.8,0,0,1.609438,6.619806,0,3.258096,8.006368,0,0,0,83,8.976113,1.609438,,0
-7,4,25,0,5,427207,0,7910.823,32.60233,1,10,1,14.31127,0,0,0,0,14.31127,0,0,0,2,0,5,85.1,0,0,83,750,749.8,0,0,1.609438,6.619806,0,3.258096,8.006368,0,0,0,83,8.976113,1.609438,2.661047,1
-11,4,0,1,1,427208,0,1713.783,1.0705,1,12,1,7.591093,0,0,0,0,7.591093,0,0,0,1,0,2,83.39137,9.967326,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,7.447042,.6931472,2.026976,1
-11,4,0,1,2,427208,0,1713.783,2.0705,1,12,1,70.62937,12.70396,0,0,0,83.33334,0,0,0,6,0,2,83.39137,9.967326,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,7.447042,.6931472,4.422849,1
-11,4,0,1,3,427208,0,1713.783,3.0705,1,12,1,6.84053,3.569902,0,0,0,10.41043,0,0,0,1,0,2,83.39137,9.967326,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,7.447042,.6931472,2.342808,1
-11,4,0,1,1,427209,0,1713.783,21.78782,1,12,1,26.06275,8.790485,22.26721,0,0,57.12045,0,0,0,3,0,2,75,0,0,79.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,79.5,7.447042,.6931472,4.045162,1
-11,4,0,1,2,427209,0,1713.783,22.78782,1,12,1,71.79487,20.67599,6.130536,0,0,98.6014,0,0,0,4,0,2,75,0,0,79.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,79.5,7.447042,.6931472,4.591085,1
-11,4,0,1,3,427209,0,1713.783,23.78782,1,12,1,30.56862,4.788371,0,0,0,35.35699,0,0,0,3,0,2,75,0,0,79.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,79.5,7.447042,.6931472,3.565496,1
-6,4,25,1,1,427210,0,11720.23,13.18823,0,13,1,25.67926,1.016343,0,0,0,26.69561,0,0,0,3,0,4,98.3,9.967326,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,3.284499,1
-6,4,25,1,2,427210,0,11720.23,14.18823,0,13,1,20.62822,0,0,0,0,20.62822,0,0,0,2,0,4,98.3,9.967326,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,3.02666,1
-6,4,25,1,3,427210,0,11720.23,15.18823,0,13,1,18.9166,2.687016,0,0,0,21.60361,0,0,0,3,0,4,98.3,9.967326,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,3.07286,1
-6,4,25,1,1,427211,0,11720.23,11.62218,1,13,1,35.82227,1.016343,30.64351,0,0,67.48212,0,0,0,2,0,4,98.3,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,4.211863,1
-6,4,25,1,2,427211,0,11720.23,12.62218,1,13,1,28.12939,2.639475,0,0,0,30.76887,0,0,0,4,0,4,98.3,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,3.426503,1
-6,4,25,1,3,427211,0,11720.23,13.62218,1,13,1,102.7515,0,25.02579,0,0,127.7773,0,0,0,8,0,4,98.3,9.967326,0,100,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.369158,1.386294,4.850289,1
-6,4,25,1,1,427212,0,11720.23,35.64956,1,13,1,12.76813,4.468846,0,0,0,17.23698,0,0,0,1,0,4,98.4,0,1,94.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,94.3,9.369158,1.386294,2.847057,1
-6,4,25,1,2,427212,0,11720.23,36.64956,1,13,1,11.72058,0,0,0,0,11.72058,0,0,0,1,0,4,98.4,0,1,94.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,94.3,9.369158,1.386294,2.461346,1
-6,4,25,1,3,427212,0,11720.23,37.64956,1,13,1,49.01118,0,27.15391,0,384.5873,460.7523,1,0,0,5,0,4,98.4,0,1,94.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,94.3,9.369158,1.386294,6.132861,1
-6,4,25,1,1,427213,0,11720.23,39.78918,0,16,1,59.37181,14.55567,3.575077,0,0,77.50256,0,0,0,5,0,4,89.4,13.8,0,81.8,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.369158,1.386294,4.350311,1
-6,4,25,1,2,427213,0,11720.23,40.78918,0,16,1,139.5921,4.992968,0,0,0,144.5851,0,0,0,2,0,4,89.4,13.8,0,81.8,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.369158,1.386294,4.973868,1
-6,4,25,1,3,427213,0,11720.23,41.78918,0,16,1,56.74979,21.38865,0,0,0,78.13844,0,0,0,3,0,4,89.4,13.8,0,81.8,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.369158,1.386294,4.358482,1
-11,4,0,1,1,427219,0,10515.54,42.59274,1,12,1,121.5334,31.62955,0,0,0,153.1629,0,0,0,6,0,6,22.9,37.9,0,35.2,0,30,0,0,1.791759,3.401197,0,0,0,1,0,0,35.2,9.260705,1.791759,5.031502,1
-11,4,0,1,2,427219,0,10515.54,43.59274,1,12,1,60.45221,33.79953,26.80653,0,0,121.0583,0,0,0,3,0,6,22.9,37.9,0,35.2,0,30,0,0,1.791759,3.401197,0,0,0,1,0,0,35.2,9.260705,1.791759,4.796272,1
-11,4,0,1,3,427219,0,10515.54,44.59274,1,12,1,0,26.7422,0,0,0,26.7422,0,0,0,0,0,4,22.9,37.9,0,35.2,0,30,0,0,1.386294,3.401197,0,0,0,1,0,0,35.2,9.260705,1.386294,3.286243,1
-11,4,0,1,4,427219,0,10515.54,45.59274,1,12,1,73.78939,35.49193,0,0,0,109.2813,0,0,0,3,0,5,22.9,37.9,0,35.2,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,35.2,9.260705,1.609438,4.693925,1
-11,4,0,1,5,427219,0,10515.54,46.59274,1,12,1,68.31753,25.39515,29.85599,0,0,123.5687,0,0,0,5,0,5,22.9,37.9,0,35.2,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,35.2,9.260705,1.609438,4.816797,1
-11,4,0,1,1,427220,0,10515.54,4.722793,0,12,1,38.46154,5.668016,0,0,0,44.12955,0,0,0,3,0,6,83.39137,9.967326,0,74.1,0,30,1,0,1.791759,3.401197,0,0,0,0,0,0,74.1,9.260705,1.791759,3.78713,1
-11,4,0,1,2,427220,0,10515.54,5.722793,0,12,1,53.14685,4.662004,0,0,0,57.80886,0,0,0,4,0,6,83.39137,9.967326,0,74.1,0,30,1,0,1.791759,3.401197,0,0,0,0,0,0,74.1,9.260705,1.791759,4.057142,1
-11,4,0,1,3,427220,0,10515.54,6.722793,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,74.1,0,30,1,0,1.386294,3.401197,0,0,0,0,0,0,74.1,9.260705,1.386294,,0
-11,4,0,1,4,427220,0,10515.54,7.722793,0,12,1,5.380476,0,0,0,0,5.380476,0,0,0,1,0,5,83.39137,9.967326,0,74.1,0,30,1,0,1.609438,3.401197,0,0,0,0,0,0,74.1,9.260705,1.609438,1.682777,1
-11,4,0,1,5,427220,0,10515.54,8.722793,0,12,1,5.268704,0,0,0,0,5.268704,0,0,0,1,0,5,83.39137,9.967326,0,74.1,0,30,1,0,1.609438,3.401197,0,0,0,0,0,0,74.1,9.260705,1.609438,1.661784,1
-11,4,0,1,1,427221,0,10515.54,6.075291,1,12,1,14.82794,0,0,0,0,14.82794,0,0,0,1,0,6,70,9.967326,0,70.4,0,30,1,1,1.791759,3.401197,0,0,0,0,0,0,70.4,9.260705,1.791759,2.696513,1
-11,4,0,1,2,427221,0,10515.54,7.075291,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,70,9.967326,0,70.4,0,30,1,1,1.791759,3.401197,0,0,0,0,0,0,70.4,9.260705,1.791759,,0
-11,4,0,1,3,427221,0,10515.54,8.075291,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70,9.967326,0,70.4,0,30,1,1,1.386294,3.401197,0,0,0,0,0,0,70.4,9.260705,1.386294,,0
-11,4,0,1,4,427221,0,10515.54,9.075291,1,12,1,5.380476,0,0,0,0,5.380476,0,0,0,1,0,5,70,9.967326,0,70.4,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,70.4,9.260705,1.609438,1.682777,1
-11,4,0,1,5,427221,0,10515.54,10.07529,1,12,1,6.322445,0,0,0,0,6.322445,0,0,0,1,0,5,70,9.967326,0,70.4,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,70.4,9.260705,1.609438,1.844106,1
-11,4,0,1,1,427222,0,10515.54,16.07118,1,12,1,49.27126,.8248988,0,0,389.6255,439.7216,1,0,0,1,0,6,79.8,0,0,86.4,0,30,1,1,1.791759,3.401197,0,0,0,0,0,0,86.4,9.260705,1.791759,6.086142,1
-11,4,0,1,2,427222,0,10515.54,17.07118,1,12,1,92.54079,2.097902,0,0,0,94.63869,0,0,0,1,1,6,79.8,0,0,86.4,0,30,1,1,1.791759,3.401197,0,0,0,0,0,0,86.4,9.260705,1.791759,4.550066,1
-11,4,0,1,1,427223,0,10515.54,52.08761,0,12,1,168.9372,11.8168,59.6913,0,0,240.4453,0,0,0,6,0,6,83.5,6.9,0,77.3,0,30,0,0,1.791759,3.401197,0,0,0,1,0,0,77.3,9.260705,1.791759,5.482493,1
-11,4,0,1,2,427223,0,10515.54,53.08761,0,12,1,18.99767,6.969697,0,0,0,25.96737,0,0,0,1,0,6,83.5,6.9,0,77.3,0,30,0,0,1.791759,3.401197,0,0,0,1,0,0,77.3,9.260705,1.791759,3.25684,1
-11,4,0,1,3,427223,0,10515.54,54.08761,0,12,1,125.2672,6.39162,10.68833,0,0,142.3472,0,0,0,1,20,4,83.5,6.9,0,77.3,0,30,0,0,1.386294,3.401197,0,0,0,1,0,0,77.3,9.260705,1.386294,4.958269,1
-11,4,0,1,4,427223,0,10515.54,55.08761,0,12,1,50.73021,0,46.11837,0,0,96.84858,0,0,0,0,8,5,83.5,6.9,0,77.3,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,77.3,9.260705,1.609438,4.573149,1
-11,4,0,1,5,427223,0,10515.54,56.08761,0,12,1,101.5982,5.953635,0,0,0,107.5518,0,0,0,4,8,5,83.5,6.9,0,77.3,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,77.3,9.260705,1.609438,4.677973,1
-11,4,0,1,1,427224,0,7910.823,21.02669,0,13,1,12.76813,0,0,0,0,12.76813,0,0,0,1,0,1,39.9,20.7,0,71.6,0,348,0,0,0,5.852202,0,0,0,1,0,0,71.6,8.976113,0,2.546952,1
-11,4,0,1,2,427224,0,7910.823,22.02669,0,13,1,33.78341,0,0,0,0,33.78341,0,0,0,1,0,1,39.9,20.7,0,71.6,0,348,0,0,0,5.852202,0,0,0,1,0,0,71.6,8.976113,0,3.51997,1
-11,4,0,1,3,427224,0,7910.823,23.02669,0,13,1,36.71109,.8598452,22.7859,0,0,60.35683,0,0,0,4,0,1,39.9,20.7,0,71.6,0,348,0,0,0,5.852202,0,0,0,1,0,0,71.6,8.976113,0,4.100274,1
-11,4,0,1,4,427224,0,7910.823,24.02669,0,13,1,63.25708,1.938736,0,0,0,65.19582,0,0,0,3,0,1,39.9,20.7,0,71.6,0,348,0,0,0,5.852202,0,0,0,1,0,0,71.6,8.976113,0,4.177395,1
-11,4,0,1,5,427224,0,7910.823,25.02669,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,39.9,20.7,0,71.6,0,348,0,0,0,5.852202,0,0,0,1,0,0,71.6,8.976113,0,,0
-11,4,0,1,1,427262,0,3559.531,32.1013,1,12,1,5.151984,1.854714,0,0,0,7.006698,0,0,0,1,0,3,85.1,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,70.5,8.177665,1.098612,1.946867,1
-11,4,0,1,2,427262,0,3559.531,33.1013,1,12,1,11.83712,0,0,0,0,11.83712,0,0,0,1,0,3,85.1,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,70.5,8.177665,1.098612,2.471241,1
-11,4,0,1,3,427262,0,3559.531,34.1013,1,12,1,18.85566,13.15128,0,0,0,32.00694,0,0,0,2,0,3,85.1,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,70.5,8.177665,1.098612,3.465953,1
-11,4,0,1,1,427263,0,3559.531,34.31896,0,13,1,22.28233,0,0,0,0,22.28233,0,0,0,1,0,3,76.6,10.3,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,8.177665,1.098612,3.103794,1
-11,4,0,1,2,427263,0,3559.531,35.31896,0,13,1,125.8996,0,0,0,0,125.8996,0,0,0,5,0,3,76.6,10.3,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,8.177665,1.098612,4.835485,1
-11,4,0,1,3,427263,0,3559.531,36.31896,0,13,1,84.78544,7.147811,0,0,0,91.93325,0,0,0,5,1,3,76.6,10.3,0,76.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,76.1,8.177665,1.098612,4.521063,1
-11,4,0,1,1,427264,0,3559.531,8.50924,0,12,1,28.99021,13.6373,0,0,0,42.62751,0,0,0,3,0,3,66.7,9.967326,0,66.7,0,0,1,0,1.098612,0,0,0,0,1,0,0,66.7,8.177665,1.098612,3.7525,1
-11,4,0,1,2,427264,0,3559.531,9.50924,0,12,1,15.86174,9.758523,0,0,0,25.62027,0,0,0,2,0,3,66.7,9.967326,0,66.7,0,0,1,0,1.098612,0,0,0,0,1,0,0,66.7,8.177665,1.098612,3.243384,1
-11,4,0,1,3,427264,0,3559.531,10.50924,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,66.7,9.967326,0,66.7,0,0,1,0,1.098612,0,0,0,0,1,0,0,66.7,8.177665,1.098612,,0
-11,4,0,1,1,427281,0,3134.956,6.53525,0,12,1,11.23596,0,0,0,0,11.23596,0,0,0,2,0,4,91.7,9.967326,0,96.3,0,204.6,1,0,1.386294,5.321057,0,0,0,0,0,0,96.3,8.05069,1.386294,2.419119,1
-11,4,0,1,2,427281,0,3134.956,7.53525,0,12,1,12.1894,5.977497,0,0,0,18.1669,0,0,0,2,0,4,91.7,9.967326,0,96.3,0,204.6,1,0,1.386294,5.321057,0,0,0,0,0,0,96.3,8.05069,1.386294,2.899601,1
-11,4,0,1,3,427281,0,3134.956,8.53525,0,12,1,6.018917,5.481514,0,0,0,11.50043,0,0,0,1,0,5,91.7,9.967326,0,96.3,0,204.6,1,0,1.609438,5.321057,0,0,0,0,0,0,96.3,8.05069,1.609438,2.442384,1
-11,4,0,1,1,427282,0,3134.956,2.176591,0,12,1,17.87538,0,0,0,0,17.87538,0,0,0,3,0,4,83.39137,9.967326,0,96.3,0,204.6,1,0,1.386294,5.321057,0,0,0,0,0,0,96.3,8.05069,1.386294,2.883425,1
-11,4,0,1,2,427282,0,3134.956,3.176591,0,12,1,15.93999,1.064229,0,0,0,17.00422,0,0,0,3,0,4,83.39137,9.967326,0,96.3,0,204.6,1,0,1.386294,5.321057,0,0,0,0,0,0,96.3,8.05069,1.386294,2.833462,1
-11,4,0,1,3,427282,0,3134.956,4.176591,0,12,1,29.23474,6.964746,0,0,0,36.19949,0,0,0,3,2,5,83.39137,9.967326,0,96.3,0,204.6,1,0,1.609438,5.321057,0,0,0,0,0,0,96.3,8.05069,1.609438,3.589045,1
-11,4,0,1,1,427283,0,3134.956,26.60096,1,12,1,112.5741,4.826354,0,0,0,117.4004,0,0,0,4,3,4,88.3,3.4,0,77.3,0,204.6,0,0,1.386294,5.321057,0,0,0,0,0,0,77.3,8.05069,1.386294,4.76559,1
-11,4,0,1,2,427283,0,3134.956,27.60096,1,12,1,62.00188,0,0,0,555.4478,617.4496,1,0,0,0,7,4,88.3,3.4,0,77.3,0,204.6,0,0,1.386294,5.321057,0,0,0,0,0,0,77.3,8.05069,1.386294,6.425597,1
-11,4,0,1,3,427283,0,3134.956,28.60096,1,12,1,670.4342,0,0,0,0,670.4342,0,0,0,7,0,5,88.3,3.4,0,77.3,0,204.6,0,0,1.609438,5.321057,0,0,0,0,0,0,77.3,8.05069,1.609438,6.507926,1
-11,4,0,1,1,427284,0,3134.956,29.00753,0,14,1,54.90296,0,0,0,0,54.90296,0,0,0,3,0,4,83,3.4,0,88.6,0,204.6,0,0,1.386294,5.321057,0,0,0,0,0,0,88.6,8.05069,1.386294,4.005567,1
-11,4,0,1,2,427284,0,3134.956,30.00753,0,14,1,241.2564,0,70.32349,0,0,311.5799,0,0,0,1,1,4,83,3.4,0,88.6,0,204.6,0,0,1.386294,5.321057,0,0,0,0,0,0,88.6,8.05069,1.386294,5.741656,1
-11,4,0,1,3,427284,0,3134.956,31.00753,0,14,1,37.29579,8.361995,12.89768,0,0,58.55546,0,0,0,2,3,5,83,3.4,0,88.6,0,204.6,0,0,1.609438,5.321057,0,0,0,0,0,0,88.6,8.05069,1.609438,4.069974,1
-13,4,0,1,1,427285,0,527.8593,12.17248,1,13,1,91.16445,5.87334,0,0,0,97.0378,0,0,0,3,0,2,91.7,9.967326,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,88.9,6.270722,.6931472,4.5751,1
-13,4,0,1,2,427285,0,527.8593,13.17248,1,13,1,83.45054,0,0,0,0,83.45054,0,0,0,5,0,2,91.7,9.967326,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,88.9,6.270722,.6931472,4.424254,1
-13,4,0,1,3,427285,0,527.8593,14.17248,1,13,1,111.8874,2.55804,0,25.79536,0,114.4454,0,0,3,8,0,2,91.7,9.967326,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,88.9,6.270722,.6931472,4.740098,1
-13,4,0,1,1,427286,0,527.8593,45.41821,1,13,1,6.128703,7.660879,0,0,0,13.78958,0,0,0,1,0,2,85.6,17.2,0,89.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,89.8,6.270722,.6931472,2.623913,1
-13,4,0,1,2,427286,0,527.8593,46.41821,1,13,1,33.52086,0,0,0,0,33.52086,0,0,0,2,0,2,85.6,17.2,0,89.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,89.8,6.270722,.6931472,3.512168,1
-13,4,0,1,3,427286,0,527.8593,47.41821,1,13,1,0,0,0,17.19691,0,0,0,0,2,0,0,2,85.6,17.2,0,89.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,89.8,6.270722,.6931472,,0
-15,4,95,1,1,427304,0,2381.818,4.750171,1,10,1,60.50101,44.77733,0,0,0,105.2783,0,0,0,4,0,3,83.39137,9.967326,0,29.6,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,0,0,1,29.6,7.776039,1.098612,4.656608,1
-15,4,95,1,2,427304,0,2381.818,5.750171,1,10,1,62.37762,66.63869,7.925408,0,226.3869,363.3287,1,0,0,7,0,3,83.39137,9.967326,0,29.6,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,0,0,1,29.6,7.776039,1.098612,5.895308,1
-15,4,95,1,3,427304,0,2381.818,6.750171,1,10,1,270.0257,58.58487,0,0,0,328.6105,0,0,0,5,0,3,83.39137,9.967326,0,29.6,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,0,0,1,29.6,7.776039,1.098612,5.794873,1
-15,4,95,1,1,427305,0,2381.818,23.22793,1,10,1,0,7.312753,0,0,0,7.312753,0,0,0,0,0,3,70.7,10.3,0,85.2,322,322,0,0,1.098612,5.774551,0,4.564348,5.825845,0,0,0,85.2,7.776039,1.098612,1.98962,1
-15,4,95,1,2,427305,0,2381.818,24.22793,1,10,1,30.30303,8.195805,0,0,0,38.49883,0,0,0,4,0,3,70.7,10.3,0,85.2,322,322,0,0,1.098612,5.774551,0,4.564348,5.825845,0,0,0,85.2,7.776039,1.098612,3.650628,1
-15,4,95,1,3,427305,0,2381.818,25.22793,1,10,1,37.10987,7.058572,0,0,0,44.16845,0,0,0,4,0,3,70.7,10.3,0,85.2,322,322,0,0,1.098612,5.774551,0,4.564348,5.825845,0,0,0,85.2,7.776039,1.098612,3.788011,1
-15,4,95,1,1,427306,0,2381.818,2.034223,1,10,1,5.060729,8.603239,0,0,0,13.66397,0,0,0,1,0,3,83.39137,9.967326,0,25.9,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,1,0,0,25.9,7.776039,1.098612,2.614762,1
-15,4,95,1,2,427306,0,2381.818,3.034223,1,10,1,28.32168,9.160839,0,0,0,37.48252,0,0,0,3,0,3,83.39137,9.967326,0,25.9,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,1,0,0,25.9,7.776039,1.098612,3.623875,1
-15,4,95,1,3,427306,0,2381.818,4.034223,1,10,1,11.97093,4.360838,0,0,0,16.33177,0,0,0,2,0,3,83.39137,9.967326,0,25.9,322,322,1,1,1.098612,5.774551,0,4.564348,5.825845,1,0,0,25.9,7.776039,1.098612,2.793112,1
-11,4,0,1,1,427317,0,2731.378,12.87885,0,12,1,18.21862,3.997976,0,0,0,22.2166,0,0,0,3,0,5,78.3,9.967326,1,55.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,55.6,7.912928,1.609438,3.10084,1
-11,4,0,1,2,427317,0,2731.378,13.87885,0,12,1,108.8578,3.030303,.9324009,0,0,112.8205,0,0,0,8,0,5,78.3,9.967326,1,55.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,55.6,7.912928,1.609438,4.725798,1
-11,4,0,1,3,427317,0,2731.378,14.87885,0,12,1,27.469,3.398888,0,0,0,30.86789,0,0,0,4,0,5,78.3,9.967326,1,55.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,55.6,7.912928,1.609438,3.429717,1
-11,4,0,1,1,427318,0,2731.378,11.77823,1,12,1,41.49797,3.036437,31.5081,0,0,76.04251,0,0,0,6,0,5,80,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,7.912928,1.609438,4.331293,1
-11,4,0,1,2,427318,0,2731.378,12.77823,1,12,1,62.12121,13.61305,60.54079,0,0,136.2751,0,0,0,6,0,5,80,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,7.912928,1.609438,4.914675,1
-11,4,0,1,3,427318,0,2731.378,13.77823,1,12,1,39.11928,7.054296,12.06071,0,0,58.23429,0,0,0,4,0,5,80,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,7.912928,1.609438,4.064474,1
-11,4,0,1,1,427319,0,2731.378,34.99521,1,12,1,67.37854,23.96255,0,0,0,91.34109,0,0,0,3,0,5,78.2,31,0,73.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,73.9,7.912928,1.609438,4.514601,1
-11,4,0,1,2,427319,0,2731.378,35.99521,1,12,1,56.36364,15.61772,0,0,441.5664,513.5478,1,0,0,3,0,5,78.2,31,0,73.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,73.9,7.912928,1.609438,6.241343,1
-11,4,0,1,3,427319,0,2731.378,36.99521,1,12,1,46.51561,20.50021,0,136.8106,0,67.01582,0,0,8,3,0,5,78.2,31,0,73.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,73.9,7.912928,1.609438,4.204929,1
-11,4,0,1,1,427320,0,2731.378,10.68583,0,12,1,27.32794,24.79757,0,0,0,52.12551,0,0,0,7,0,5,61.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,7.912928,1.609438,3.953655,1
-11,4,0,1,2,427320,0,2731.378,11.68583,0,12,1,61.53846,24.07925,31.56643,130.5361,0,117.1842,0,0,7,8,0,5,61.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,7.912928,1.609438,4.763747,1
-11,4,0,1,3,427320,0,2731.378,12.68583,0,12,1,65.45532,3.420265,0,684.053,0,68.87559,0,0,40,5,0,5,61.7,9.967326,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,7.912928,1.609438,4.232302,1
-11,4,0,1,1,427321,0,2731.378,2.195756,0,12,1,40.63259,12.67713,0,0,0,53.30972,0,0,0,4,0,5,83.39137,9.967326,0,66.7,0,0,1,0,1.609438,0,0,0,0,0,0,0,66.7,7.912928,1.609438,3.976119,1
-11,4,0,1,2,427321,0,2731.378,3.195756,0,12,1,67.85548,10.72261,0,0,0,78.57809,0,0,0,7,0,5,83.39137,9.967326,0,66.7,0,0,1,0,1.609438,0,0,0,0,0,0,0,66.7,7.912928,1.609438,4.364093,1
-11,4,0,1,3,427321,0,2731.378,4.195756,0,12,1,13.33903,6.263361,0,0,0,19.60239,0,0,0,2,0,5,83.39137,9.967326,0,66.7,0,0,1,0,1.609438,0,0,0,0,0,0,0,66.7,7.912928,1.609438,2.975652,1
-11,4,0,0,1,427338,0,8252.786,60.37235,1,12,1,36.06388,14.43586,35.03349,0,0,85.53323,0,0,0,3,1,1,91.5,24.1,1,44.3,0,0,0,0,0,0,0,0,0,0,1,0,44.3,9.018427,0,4.448905,1
-11,4,0,0,2,427338,0,8252.786,61.37235,1,12,1,136.6004,39.77273,4.971591,0,6370.99,6552.334,1,0,0,7,10,1,91.5,24.1,1,44.3,0,0,0,0,0,0,0,0,0,0,1,0,44.3,9.018427,0,8.787577,1
-11,4,0,0,3,427338,0,8252.786,62.37235,1,12,.5561644,588.3832,38.88166,20.78457,0,1548.57,2196.619,1,0,0,30,1,1,91.5,24.1,1,44.3,0,0,0,0,0,0,0,0,0,0,1,0,44.3,9.018427,0,7.694674,1
-17,4,25,1,1,427346,0,6868.035,8.054757,0,12,1,14.53013,0,0,0,0,14.53013,0,0,0,2,0,4,86.7,9.967326,0,70.4,553.25,528.25,1,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,70.4,8.834779,1.386294,2.676225,1
-17,4,25,1,2,427346,0,6868.035,9.054757,0,12,1,24.84763,1.101735,0,0,0,25.94937,0,0,0,4,0,4,86.7,9.967326,0,70.4,553.25,528.25,1,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,70.4,8.834779,1.386294,3.256147,1
-17,4,25,1,3,427346,0,6868.035,10.05476,0,12,1,14.29493,2.730009,0,0,0,17.02493,0,0,0,2,0,4,86.7,9.967326,0,70.4,553.25,528.25,1,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,70.4,8.834779,1.386294,2.834679,1
-17,4,25,1,4,427346,0,6868.035,11.05476,0,12,1,15.12214,0,0,0,0,15.12214,0,0,0,3,0,4,86.7,9.967326,0,70.4,553.25,528.25,1,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,70.4,8.834779,1.386294,2.71616,1
-17,4,25,1,5,427346,0,6868.035,12.05476,0,12,1,435.3574,0,0,0,441.0049,876.3624,1,0,0,9,0,4,86.7,9.967326,0,70.4,553.25,528.25,1,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,70.4,8.834779,1.386294,6.77578,1
-17,4,25,1,1,427347,0,6868.035,3.830253,1,12,1,12.76813,0,0,0,0,12.76813,0,0,0,2,0,4,83.39137,9.967326,0,63,553.25,528.25,1,1,1.386294,6.26957,0,3.258096,7.702105,1,0,0,63,8.834779,1.386294,2.546952,1
-17,4,25,1,2,427347,0,6868.035,4.830253,1,12,1,21.09705,2.508204,0,0,0,23.60525,0,0,0,4,0,4,83.39137,9.967326,0,63,553.25,528.25,1,1,1.386294,6.26957,0,3.258096,7.702105,1,0,0,63,8.834779,1.386294,3.161469,1
-17,4,25,1,3,427347,0,6868.035,5.830253,1,12,1,13.22012,0,0,0,0,13.22012,0,0,0,2,0,4,83.39137,9.967326,0,63,553.25,528.25,1,1,1.386294,6.26957,0,3.258096,7.702105,1,0,0,63,8.834779,1.386294,2.58174,1
-17,4,25,1,4,427347,0,6868.035,6.830253,1,12,1,19.62001,0,0,0,0,19.62001,0,0,0,1,0,4,83.39137,9.967326,0,63,553.25,528.25,1,1,1.386294,6.26957,0,3.258096,7.702105,1,0,0,63,8.834779,1.386294,2.97655,1
-17,4,25,1,5,427347,0,6868.035,7.830253,1,12,1,5.307856,0,0,0,0,5.307856,0,0,0,1,0,4,83.39137,9.967326,0,63,553.25,528.25,1,1,1.386294,6.26957,0,3.258096,7.702105,1,0,0,63,8.834779,1.386294,1.669188,1
-17,4,25,1,1,427348,0,6868.035,32.19986,1,12,1,34.72932,4.581205,0,0,0,39.31052,0,0,0,1,1,4,76.6,13.8,1,50,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,50,8.834779,1.386294,3.671492,1
-17,4,25,1,2,427348,0,6868.035,33.19986,1,12,1,16.87764,9.446789,0,0,0,26.32442,0,0,0,2,0,4,76.6,13.8,1,50,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,50,8.834779,1.386294,3.270497,1
-17,4,25,1,3,427348,0,6868.035,34.19986,1,12,1,315.0645,10.16767,4.299226,0,0,329.5314,0,0,0,6,4,4,76.6,13.8,1,50,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,50,8.834779,1.386294,5.797672,1
-17,4,25,1,4,427348,0,6868.035,35.19986,1,12,1,43.42768,1.667313,0,0,0,45.095,0,0,0,1,5,4,76.6,13.8,1,50,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,50,8.834779,1.386294,3.808771,1
-17,4,25,1,5,427348,0,6868.035,36.19986,1,12,1,184.0057,0,0,0,578.5775,762.5831,1,0,0,5,0,4,76.6,13.8,1,50,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,50,8.834779,1.386294,6.636712,1
-17,4,25,1,1,427349,0,6868.035,42.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,0,0,55.7,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,55.7,8.834779,1.386294,,0
-17,4,25,1,2,427349,0,6868.035,43.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,0,0,55.7,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,55.7,8.834779,1.386294,,0
-17,4,25,1,3,427349,0,6868.035,44.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,0,0,55.7,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,55.7,8.834779,1.386294,,0
-17,4,25,1,4,427349,0,6868.035,45.88296,0,12,1,10.46917,0,21.71384,0,0,32.18302,0,0,0,0,1,4,71.3,0,0,55.7,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,55.7,8.834779,1.386294,3.471439,1
-17,4,25,1,5,427349,0,6868.035,46.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.3,0,0,55.7,553.25,528.25,0,0,1.386294,6.26957,0,3.258096,7.702105,1,0,0,55.7,8.834779,1.386294,,0
-16,4,95,0,1,427350,0,5992.962,50.26694,1,9,1,124.285,129.9272,36.92148,0,1615.299,1906.433,2,0,0,16,0,2,71.3,24.1,1,51.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,51.1,8.698508,.6931472,7.552989,1
-16,4,95,0,2,427350,0,5992.962,51.26694,1,9,1,62.82848,76.8753,34.87817,0,0,174.5819,0,0,0,5,0,2,71.3,24.1,1,51.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,51.1,8.698508,.6931472,5.162394,1
-16,4,95,0,3,427350,0,5992.962,52.26694,1,9,1,190.6277,67.12028,0,0,0,257.748,0,0,0,9,4,2,71.3,24.1,1,51.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,51.1,8.698508,.6931472,5.551982,1
-16,4,95,0,1,427351,0,5992.962,52.846,0,5,1,10.40042,22.10088,19.24077,0,0,51.74207,0,0,0,1,0,2,66,37.9,0,63.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,63.6,8.698508,.6931472,3.946271,1
-16,4,95,0,2,427351,0,5992.962,53.846,0,5,1,65.33684,48.70998,26.75585,0,0,140.8027,0,0,0,6,0,2,66,37.9,0,63.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,63.6,8.698508,.6931472,4.94736,1
-16,4,95,0,3,427351,0,5992.962,54.846,0,5,1,10.97454,32.59438,0,0,0,43.56892,0,0,0,1,0,2,66,37.9,0,63.6,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,63.6,8.698508,.6931472,3.774344,1
-18,4,25,1,1,427368,0,6746.627,35.60027,0,16,1,79.34055,4.430706,0,0,0,83.77126,0,0,0,4,5,1,86.7,0,0,89.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,89.8,8.816946,0,4.42809,1
-18,4,25,1,2,427368,0,6746.627,36.60027,0,16,1,32.67046,0,14.20455,0,0,46.875,0,0,0,2,0,1,86.7,0,0,89.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,89.8,8.816946,0,3.847485,1
-18,4,25,1,3,427368,0,6746.627,37.60027,0,16,1,8.669268,0,23.40702,0,0,32.07629,0,0,0,1,0,1,86.7,0,0,89.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,89.8,8.816946,0,3.468117,1
-11,4,0,1,1,427372,0,11126.1,31.27721,1,10,1,30.64351,0,5.107252,0,0,35.75077,0,0,0,0,4,5,38.8,6.9,0,46.6,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,46.6,9.317139,1.609438,3.576572,1
-11,4,0,1,2,427372,0,11126.1,32.27721,1,10,1,45.47586,0,0,0,0,45.47586,0,0,0,0,8,5,38.8,6.9,0,46.6,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,46.6,9.317139,1.609438,3.817182,1
-11,4,0,1,3,427372,0,11126.1,33.27721,1,10,1,25.79536,0,0,0,0,25.79536,0,0,0,0,5,5,38.8,6.9,0,46.6,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,46.6,9.317139,1.609438,3.250195,1
-11,4,0,1,1,427373,0,11126.1,14.423,0,10,1,40.21961,4.392237,37.12972,0,0,81.74157,0,0,0,3,0,5,79.3,3.4,0,73.9,0,240,1,0,1.609438,5.480639,0,0,0,0,0,0,73.9,9.317139,1.609438,4.403563,1
-11,4,0,1,2,427373,0,11126.1,15.423,0,10,1,9.376465,8.274731,0,0,0,17.6512,0,0,0,1,0,5,79.3,3.4,0,73.9,0,240,1,0,1.609438,5.480639,0,0,0,0,0,0,73.9,9.317139,1.609438,2.870804,1
-11,4,0,1,3,427373,0,11126.1,16.423,0,10,1,128.2674,0,9.243336,0,0,137.5107,0,0,0,9,0,5,79.3,3.4,0,73.9,0,240,1,0,1.609438,5.480639,0,0,0,0,0,0,73.9,9.317139,1.609438,4.923702,1
-11,4,0,1,1,427374,0,11126.1,42.95962,0,10,1,18.38611,0,334.6578,0,0,353.0439,0,0,0,2,0,5,82.4,13.8,0,80.7,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,80.7,9.317139,1.609438,5.866592,1
-11,4,0,1,2,427374,0,11126.1,43.95962,0,10,1,15.00234,0,0,0,0,15.00234,0,0,0,0,3,5,82.4,13.8,0,80.7,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,80.7,9.317139,1.609438,2.708206,1
-11,4,0,1,3,427374,0,11126.1,44.95962,0,10,1,55.88994,0,0,0,0,55.88994,0,0,0,1,8,5,82.4,13.8,0,80.7,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,80.7,9.317139,1.609438,4.023385,1
-11,4,0,1,1,427375,0,11126.1,13.01301,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,9.967326,0,81.5,0,240,1,1,1.609438,5.480639,0,0,0,0,0,0,81.5,9.317139,1.609438,,0
-11,4,0,1,2,427375,0,11126.1,14.01301,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,9.967326,0,81.5,0,240,1,1,1.609438,5.480639,0,0,0,0,0,0,81.5,9.317139,1.609438,,0
-11,4,0,1,3,427375,0,11126.1,15.01301,1,10,1,10.74806,0,29.14875,0,0,39.89682,0,0,0,1,0,5,76.7,9.967326,0,81.5,0,240,1,1,1.609438,5.480639,0,0,0,0,0,0,81.5,9.317139,1.609438,3.686297,1
-11,4,0,1,1,427376,0,11126.1,18.63107,0,11,1,14.30031,0,3.064351,0,1323.406,1340.771,1,0,0,2,0,5,80.3,6.9,0,81.8,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,81.8,9.317139,1.609438,7.201,1
-11,4,0,1,2,427376,0,11126.1,19.63107,0,11,1,24.61322,2.133146,0,0,0,26.74637,0,0,0,1,0,5,80.3,6.9,0,81.8,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,81.8,9.317139,1.609438,3.286399,1
-11,4,0,1,3,427376,0,11126.1,20.63107,0,11,1,0,2.257094,0,0,0,2.257094,0,0,0,0,0,5,80.3,6.9,0,81.8,0,240,0,0,1.609438,5.480639,0,0,0,0,0,0,81.8,9.317139,1.609438,.814078,1
-6,4,25,1,1,427397,0,16539.59,7.334702,0,17,1,24.78104,0,0,69.55178,0,24.78104,0,0,3,2,0,3,96.7,9.967326,0,100,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.713573,1.098612,3.210079,1
-6,4,25,1,2,427397,0,16539.59,8.334702,0,17,1,5.160985,0,0,0,0,5.160985,0,0,0,1,0,3,96.7,9.967326,0,100,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.713573,1.098612,1.641127,1
-6,4,25,1,3,427397,0,16539.59,9.334702,0,17,1,5.20156,0,0,0,0,5.20156,0,0,0,1,0,3,96.7,9.967326,0,100,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.713573,1.098612,1.648959,1
-6,4,25,1,1,427398,0,16539.59,32,0,18,1,29.06749,2.833591,0,226.6873,0,31.90108,0,0,11,0,0,3,85.6,24.1,0,85.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.713573,1.098612,3.46264,1
-6,4,25,1,2,427398,0,16539.59,33,0,18,1,66.70454,29.11932,0,227.2727,0,95.82386,0,0,12,3,0,3,85.6,24.1,0,85.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.713573,1.098612,4.562512,1
-6,4,25,1,3,427398,0,16539.59,34,0,18,1,9.969658,10.83658,0,69.35414,0,20.80624,0,0,4,0,0,3,85.6,24.1,0,85.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.713573,1.098612,3.035253,1
-6,4,25,1,1,427399,0,16539.59,31.60301,1,17,1,110.1236,0,0,203.5033,0,110.1236,0,0,9,3,0,3,83,17.2,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.713573,1.098612,4.701604,1
-6,4,25,1,2,427399,0,16539.59,32.60301,1,17,1,35.51136,9.943182,0,162.8788,0,45.45454,0,0,8,2,0,3,83,17.2,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.713573,1.098612,3.816713,1
-6,4,25,1,3,427399,0,16539.59,33.60301,1,17,1,50.17339,1.71218,0,200.2601,0,51.88557,0,0,11,2,0,3,83,17.2,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.713573,1.098612,3.949041,1
-13,4,0,1,1,427405,0,13503.23,9.891855,1,14,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,6,80,9.967326,0,77.8,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.510757,1.791759,1.812983,1
-13,4,0,1,2,427405,0,13503.23,10.89186,1,14,1,5.625879,0,0,0,0,5.625879,0,0,0,1,0,6,80,9.967326,0,77.8,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.510757,1.791759,1.727377,1
-13,4,0,1,3,427405,0,13503.23,11.89186,1,14,1,6.448839,1.371453,0,0,0,7.820292,0,0,0,1,0,6,80,9.967326,0,77.8,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.510757,1.791759,2.056722,1
-13,4,0,1,1,427406,0,13503.23,11.02806,1,14,1,37.76302,0,0,0,0,37.76302,0,0,0,4,0,6,86.7,9.967326,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.510757,1.791759,3.63133,1
-13,4,0,1,2,427406,0,13503.23,12.02806,1,14,1,10.31411,2.33474,0,0,0,12.64885,0,0,0,2,0,6,86.7,9.967326,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.510757,1.791759,2.537566,1
-13,4,0,1,3,427406,0,13503.23,13.02806,1,14,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,6,86.7,9.967326,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.510757,1.791759,1.8639,1
-13,4,0,1,1,427407,0,13503.23,14.00137,0,14,1,79.16241,0,0,0,0,79.16241,0,0,0,4,0,6,88.3,24.1,0,58,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,9.510757,1.791759,4.371501,1
-13,4,0,1,2,427407,0,13503.23,15.00137,0,14,1,7.969995,0,0,0,0,7.969995,0,0,0,1,0,6,88.3,24.1,0,58,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,9.510757,1.791759,2.075684,1
-13,4,0,1,3,427407,0,13503.23,16.00137,0,14,1,6.448839,1.77558,0,0,0,8.22442,0,0,0,1,0,6,88.3,24.1,0,58,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,9.510757,1.791759,2.107108,1
-13,4,0,1,1,427408,0,13503.23,13.08693,0,14,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,6,85,9.967326,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.510757,1.791759,1.812983,1
-13,4,0,1,2,427408,0,13503.23,14.08693,0,14,1,7.032349,0,0,0,0,7.032349,0,0,0,1,0,6,85,9.967326,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.510757,1.791759,1.950521,1
-13,4,0,1,3,427408,0,13503.23,15.08693,0,14,1,31.77128,.6405847,0,0,0,32.41187,0,0,0,2,0,6,85,9.967326,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.510757,1.791759,3.478525,1
-13,4,0,1,1,427409,0,13503.23,42.28885,0,17,1,10.2145,87.43105,45.96527,0,0,143.6108,0,0,0,1,0,6,84,20.7,0,35.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,35.2,9.510757,1.791759,4.967107,1
-13,4,0,1,2,427409,0,13503.23,43.28885,0,17,1,49.83591,136.7557,0,0,759.939,946.5307,1,0,0,2,0,6,84,20.7,0,35.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,35.2,9.510757,1.791759,6.852803,1
-13,4,0,1,3,427409,0,13503.23,44.28885,0,17,1,238.908,155.4858,59.96561,0,499.7592,954.1187,1,0,0,8,0,6,84,20.7,0,35.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,35.2,9.510757,1.791759,6.860788,1
-13,4,0,1,1,427410,0,13503.23,38.0616,1,14,1,132.3085,28.53933,0,0,0,160.8478,0,0,0,1,0,6,86.2,3.4,0,69.3,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.510757,1.791759,5.080459,1
-13,4,0,1,2,427410,0,13503.23,39.0616,1,14,1,9.376465,35.07735,0,0,0,44.45382,0,0,0,1,0,6,86.2,3.4,0,69.3,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.510757,1.791759,3.794451,1
-13,4,0,1,3,427410,0,13503.23,40.0616,1,14,1,104.4282,35.58899,0,0,0,140.0172,0,0,0,1,0,6,86.2,3.4,0,69.3,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.510757,1.791759,4.941765,1
-13,4,0,0,1,427431,0,8501.466,6.954141,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.048112,1.609438,,0
-13,4,0,0,2,427431,0,8501.466,7.954141,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.048112,1.609438,,0
-13,4,0,0,3,427431,0,8501.466,8.954141,1,13,1,200.0434,0,0,0,1418.704,1618.747,2,1,0,1,0,5,93.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.048112,1.609438,7.389408,1
-13,4,0,0,4,427431,0,8501.466,9.954141,1,13,1,26.32926,0,0,0,0,26.32926,0,0,0,1,0,5,93.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.048112,1.609438,3.270681,1
-13,4,0,0,5,427431,0,8501.466,10.95414,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.048112,1.609438,,0
-13,4,0,0,1,427432,0,8501.466,32.81862,1,13,1,12.36476,0,0,0,0,12.36476,0,0,0,2,0,5,81.9,13.8,1,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.048112,1.609438,2.514851,1
-13,4,0,0,2,427432,0,8501.466,33.81862,1,13,1,149.858,0,0,0,699.2424,849.1004,1,0,0,3,0,5,81.9,13.8,1,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.048112,1.609438,6.744177,1
-13,4,0,0,3,427432,0,8501.466,34.81862,1,13,1,38.14478,0,0,0,0,38.14478,0,0,0,2,0,5,81.9,13.8,1,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.048112,1.609438,3.641389,1
-13,4,0,0,4,427432,0,8501.466,35.81862,1,13,1,13.78496,0,0,0,0,13.78496,0,0,0,0,0,5,81.9,13.8,1,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.048112,1.609438,2.623578,1
-13,4,0,0,5,427432,0,8501.466,36.81862,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.9,13.8,1,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,76.1,9.048112,1.609438,,0
-13,4,0,0,1,427433,0,8501.466,11.37577,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.048112,1.609438,,0
-13,4,0,0,2,427433,0,8501.466,12.37577,1,13,1,48.76894,0,.7102273,0,0,49.47917,0,0,0,1,0,5,81.7,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.048112,1.609438,3.901552,1
-13,4,0,0,3,427433,0,8501.466,13.37577,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.048112,1.609438,,0
-13,4,0,0,4,427433,0,8501.466,14.37577,1,13,1,0,0,21.66207,0,0,21.66207,0,0,0,0,0,5,81.7,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.048112,1.609438,3.075563,1
-13,4,0,0,5,427433,0,8501.466,15.37577,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.048112,1.609438,,0
-13,4,0,0,1,427434,0,8501.466,35.22245,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,27.6,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.048112,1.609438,,0
-13,4,0,0,2,427434,0,8501.466,36.22245,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,27.6,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.048112,1.609438,,0
-13,4,0,0,3,427434,0,8501.466,37.22245,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,27.6,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.048112,1.609438,,0
-13,4,0,0,4,427434,0,8501.466,38.22245,0,14,1,77.56991,0,0,0,0,77.56991,0,0,0,2,0,5,64.9,27.6,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.048112,1.609438,4.35118,1
-13,4,0,0,5,427434,0,8501.466,39.22245,0,14,1,0,0,0,0,348.4794,348.4794,1,0,0,0,0,5,64.9,27.6,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.048112,1.609438,5.853579,1
-13,4,0,0,1,427435,0,8501.466,5.264887,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,1,25.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,25.9,9.048112,1.609438,,0
-13,4,0,0,2,427435,0,8501.466,6.264887,0,13,1,42.61364,0,0,0,0,42.61364,0,0,0,2,0,5,88.3,9.967326,1,25.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,25.9,9.048112,1.609438,3.752174,1
-13,4,0,0,3,427435,0,8501.466,7.264887,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,1,25.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,25.9,9.048112,1.609438,,0
-13,4,0,0,4,427435,0,8501.466,8.264887,0,13,1,35.05317,0,0,0,0,35.05317,0,0,0,3,0,5,88.3,9.967326,1,25.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,25.9,9.048112,1.609438,3.556866,1
-13,4,0,0,5,427435,0,8501.466,9.264887,0,13,1,10.01789,0,0,0,0,10.01789,0,0,0,1,0,5,88.3,9.967326,1,25.9,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,25.9,9.048112,1.609438,2.304372,1
-11,4,0,1,1,427437,0,10862.17,51.83847,0,12,1,43.99794,1.391036,58.45956,0,0,103.8485,0,0,0,2,0,3,64.9,0,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.293134,1.098612,4.642933,1
-11,4,0,1,2,427437,0,10862.17,52.83847,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.9,0,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.293134,1.098612,,0
-11,4,0,1,3,427437,0,10862.17,53.83847,0,12,1,40.52882,3.662766,0,0,0,44.19159,0,0,0,2,0,3,64.9,0,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.293134,1.098612,3.788534,1
-11,4,0,1,4,427437,0,10862.17,54.83847,0,12,1,41.35486,7.778653,0,0,0,49.13352,0,0,0,5,0,3,64.9,0,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.293134,1.098612,3.894542,1
-11,4,0,1,5,427437,0,10862.17,55.83847,0,12,1,35.50984,0,41.50268,0,0,77.01252,0,0,0,3,0,3,64.9,0,0,62.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,62.5,9.293134,1.098612,4.343968,1
-11,4,0,1,1,427438,0,10862.17,17.42094,1,12,1,16.48635,29.8815,33.28181,0,0,79.64967,0,0,0,2,0,3,77.1,13.8,0,94.3,0,0,1,1,1.098612,0,0,0,0,0,0,0,94.3,9.293134,1.098612,4.377638,1
-11,4,0,1,2,427438,0,10862.17,18.42094,1,12,1,5.681818,64.34659,0,0,0,70.02841,0,0,0,1,0,3,77.1,13.8,0,94.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,94.3,9.293134,1.098612,4.248901,1
-11,4,0,1,3,427438,0,10862.17,19.42094,1,12,1,0,44.03988,0,0,0,44.03988,0,0,0,0,0,3,77.1,13.8,0,94.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,94.3,9.293134,1.098612,3.785095,1
-11,4,0,1,4,427438,0,10862.17,20.42094,1,12,1,25.60063,54.68689,26.93974,0,0,107.2273,0,0,0,4,0,3,77.1,13.8,0,94.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,94.3,9.293134,1.098612,4.674951,1
-11,4,0,1,5,427438,0,10862.17,21.42094,1,12,1,50.10733,56.29696,0,0,0,106.4043,0,0,0,3,0,3,77.1,13.8,0,94.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,94.3,9.293134,1.098612,4.667246,1
-11,4,0,1,1,427439,0,10862.17,50.45037,1,12,1,465.8629,32.94693,52.96239,0,1224.132,1775.904,1,0,0,19,0,3,64.4,24.1,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.293134,1.098612,7.482065,1
-11,4,0,1,2,427439,0,10862.17,51.45037,1,12,1,152.6989,88.49432,0,0,429.8579,671.0511,1,0,0,14,0,3,64.4,24.1,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.293134,1.098612,6.508845,1
-11,4,0,1,3,427439,0,10862.17,52.45037,1,12,1,55.15821,137.9497,0,0,0,193.1079,0,0,0,4,0,3,64.4,24.1,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.293134,1.098612,5.263249,1
-11,4,0,1,4,427439,0,10862.17,53.45037,1,12,1,380.3978,141.2761,65.577,0,0,587.2509,0,0,0,8,0,3,64.4,24.1,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.293134,1.098612,6.375452,1
-11,4,0,1,5,427439,0,10862.17,54.45037,1,12,1,102.5045,100.5009,0,0,0,203.0054,0,0,0,6,0,3,64.4,24.1,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.293134,1.098612,5.313232,1
-13,4,0,0,1,427443,0,13233.43,42.15742,0,12,1,28.1001,0,0,0,0,28.1001,0,0,0,2,0,4,88.3,6.9,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.490577,1.386294,3.335773,1
-13,4,0,0,2,427443,0,13233.43,43.15742,0,12,1,9.376465,0,20.62822,0,0,30.00469,0,0,0,1,0,4,88.3,6.9,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.490577,1.386294,3.401354,1
-13,4,0,0,3,427443,0,13233.43,44.15742,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.490577,1.386294,,0
-13,4,0,0,4,427443,0,13233.43,45.15742,0,12,1,9.69368,0,18.22412,0,0,27.9178,0,0,0,1,0,4,88.3,6.9,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.490577,1.386294,3.329264,1
-13,4,0,0,5,427443,0,13233.43,46.15742,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.490577,1.386294,,0
-13,4,0,0,1,427444,0,13233.43,12.35592,1,12,1,22.98264,0,27.57916,0,0,50.5618,0,0,0,2,0,4,88.3,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.490577,1.386294,3.923196,1
-13,4,0,0,2,427444,0,13233.43,13.35592,1,12,1,0,0,0,0,177.4262,177.4262,1,0,0,0,0,4,88.3,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.490577,1.386294,5.178555,1
-13,4,0,0,3,427444,0,13233.43,14.35592,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.490577,1.386294,,0
-13,4,0,0,4,427444,0,13233.43,15.35592,1,12,1,16.67313,0,20.93835,0,0,37.61148,0,0,0,2,0,4,88.3,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.490577,1.386294,3.627309,1
-13,4,0,0,5,427444,0,13233.43,16.35592,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.490577,1.386294,,0
-13,4,0,0,1,427445,0,13233.43,36.84052,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.490577,1.386294,,0
-13,4,0,0,2,427445,0,13233.43,37.84052,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.490577,1.386294,,0
-13,4,0,0,3,427445,0,13233.43,38.84052,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.490577,1.386294,,0
-13,4,0,0,4,427445,0,13233.43,39.84052,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.490577,1.386294,,0
-13,4,0,0,5,427445,0,13233.43,40.84052,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,9.490577,1.386294,,0
-13,4,0,0,1,427446,0,13233.43,14.2642,0,12,1,7.660879,0,27.57916,0,0,35.24004,0,0,0,1,0,4,81.9,3.4,0,73.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.490577,1.386294,3.562183,1
-13,4,0,0,2,427446,0,13233.43,15.2642,0,12,1,9.376465,0,24.37881,0,0,33.75528,0,0,0,1,0,4,81.9,3.4,0,73.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.490577,1.386294,3.519137,1
-13,4,0,0,3,427446,0,13233.43,16.2642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,3.4,0,73.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.490577,1.386294,,0
-13,4,0,0,4,427446,0,13233.43,17.2642,0,12,1,244.242,0,21.3261,0,0,265.5681,0,0,0,3,0,4,81.9,3.4,0,73.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.490577,1.386294,5.581871,1
-13,4,0,0,5,427446,0,13233.43,18.2642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,3.4,0,73.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.490577,1.386294,,0
-5,4,25,1,1,427459,0,3817.009,60.92266,1,13,1,47.91345,19.16538,0,0,0,67.07883,0,0,0,4,0,1,91.5,3.4,1,88.1,350.26,350.26,0,0,0,5.858676,0,3.258096,7.24497,0,0,0,88.1,8.247484,0,4.205868,1
-5,4,25,1,2,427459,0,3817.009,61.92266,1,13,1,76.49148,18.86837,0,0,0,95.35985,0,0,0,5,0,1,91.5,3.4,1,88.1,350.26,350.26,0,0,0,5.858676,0,3.258096,7.24497,0,0,0,88.1,8.247484,0,4.557658,1
-5,4,25,1,3,427459,0,3817.009,62.92266,1,13,1,35.54399,19.41916,28.17512,0,0,83.13828,0,0,0,4,0,1,91.5,3.4,1,88.1,350.26,350.26,0,0,0,5.858676,0,3.258096,7.24497,0,0,0,88.1,8.247484,0,4.420505,1
-10,4,50,1,1,427470,0,9409.971,33.89185,0,12,1,0,4.807693,0,0,0,4.807693,0,0,0,0,0,4,85.1,13.8,0,81.8,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,81.8,9.149632,1.386294,1.570217,1
-10,4,50,1,2,427470,0,9409.971,34.89185,0,12,1,72.26107,0,0,0,0,72.26107,0,0,0,3,0,4,85.1,13.8,0,81.8,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,81.8,9.149632,1.386294,4.280285,1
-10,4,50,1,3,427470,0,9409.971,35.89185,0,12,1,6.412997,12.82172,0,0,0,19.23472,0,0,0,1,0,4,85.1,13.8,0,81.8,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,81.8,9.149632,1.386294,2.956717,1
-10,4,50,1,4,427470,0,9409.971,36.89185,0,12,1,62.95158,15.08455,0,0,0,78.03613,0,0,0,4,0,4,85.1,13.8,0,81.8,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,81.8,9.149632,1.386294,4.357172,1
-10,4,50,1,5,427470,0,9409.971,37.89185,0,12,1,19.31858,0,0,0,0,19.31858,0,0,0,2,0,4,85.1,13.8,0,81.8,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,81.8,9.149632,1.386294,2.961067,1
-10,4,50,1,1,427471,0,9409.971,2.006845,0,17,1,16.19433,3.517206,0,0,0,19.71154,0,0,0,3,0,4,83.39137,9.967326,0,96.3,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,96.3,9.149632,1.386294,2.981204,1
-10,4,50,1,2,427471,0,9409.971,3.006845,0,17,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,4,83.39137,9.967326,0,96.3,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,96.3,9.149632,1.386294,1.721767,1
-10,4,50,1,3,427471,0,9409.971,4.006845,0,17,1,35.74177,5.664814,0,0,0,41.40659,0,0,0,6,0,4,83.39137,9.967326,0,96.3,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,96.3,9.149632,1.386294,3.72344,1
-10,4,50,1,4,427471,0,9409.971,5.006845,0,17,1,48.23213,4.381245,24.78862,0,0,77.402,0,0,0,3,0,4,83.39137,9.967326,0,96.3,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,96.3,9.149632,1.386294,4.349013,1
-10,4,50,1,5,427471,0,9409.971,6.006845,0,17,1,28.80225,0,0,0,0,28.80225,0,0,0,4,0,4,83.39137,9.967326,0,96.3,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,96.3,9.149632,1.386294,3.360453,1
-10,4,50,1,1,427472,0,9409.971,4.610541,0,17,1,115.3897,24.67105,0,0,6.072875,146.1336,1,1,0,6,0,4,83.39137,9.967326,0,51.9,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,51.9,9.149632,1.386294,4.984521,1
-10,4,50,1,2,427472,0,9409.971,5.610541,0,17,1,29.18415,28.32168,0,0,0,57.50583,0,0,0,3,0,4,83.39137,9.967326,0,51.9,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,51.9,9.149632,1.386294,4.051886,1
-10,4,50,1,3,427472,0,9409.971,6.610541,0,17,1,16.50278,25.99401,0,0,0,42.49679,0,0,0,3,0,4,83.39137,9.967326,0,51.9,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,51.9,9.149632,1.386294,3.749429,1
-10,4,50,1,4,427472,0,9409.971,7.610541,0,17,1,72.30976,37.79785,0,0,0,110.1076,0,0,0,6,0,4,83.39137,9.967326,0,51.9,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,51.9,9.149632,1.386294,4.701458,1
-10,4,50,1,5,427472,0,9409.971,8.61054,0,17,1,23.15068,40.24587,0,0,0,63.39656,0,0,0,1,0,4,83.39137,9.967326,0,51.9,1000,1000.18,1,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,51.9,9.149632,1.386294,4.14941,1
-10,4,50,1,1,427473,0,9409.971,33.08693,1,17,1,60.72874,8.223684,22.77328,0,0,91.72571,0,0,0,2,8,4,83.5,3.4,0,79.5,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,79.5,9.149632,1.386294,4.518803,1
-10,4,50,1,2,427473,0,9409.971,34.08693,1,17,1,76.92308,5.314685,0,0,452.2378,534.4755,1,0,0,5,4,4,83.5,3.4,0,79.5,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,79.5,9.149632,1.386294,6.281286,1
-10,4,50,1,3,427473,0,9409.971,35.08693,1,17,1,30.78238,1.688756,0,0,0,32.47114,0,0,0,2,0,4,83.5,3.4,0,79.5,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,79.5,9.149632,1.386294,3.480352,1
-10,4,50,1,4,427473,0,9409.971,36.08693,1,17,1,109.5311,0,0,0,0,109.5311,0,0,0,5,0,4,83.5,3.4,0,79.5,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,79.5,9.149632,1.386294,4.696209,1
-10,4,50,1,5,427473,0,9409.971,37.08693,1,17,1,49.35019,0,24.93853,0,0,74.28873,0,0,0,3,0,4,83.5,3.4,0,79.5,1000,1000.18,0,0,1.386294,6.907935,0,3.931826,7.600903,0,0,0,79.5,9.149632,1.386294,4.307959,1
-19,4,25,0,1,427481,0,9880.352,49.17728,1,12,1,33.70787,0,0,0,0,33.70787,0,0,0,3,0,2,64.9,17.2,0,75,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,75,9.198404,.6931472,3.517731,1
-19,4,25,0,2,427481,0,9880.352,50.17728,1,12,1,35.16174,3.089545,44.53821,0,0,82.7895,0,0,0,2,1,2,64.9,17.2,0,75,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,75,9.198404,.6931472,4.416301,1
-19,4,25,0,3,427481,0,9880.352,51.17728,1,12,1,33.42648,3.843508,1.074807,0,0,38.3448,0,0,0,2,0,2,64.9,17.2,0,75,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,75,9.198404,.6931472,3.646619,1
-19,4,25,0,1,427482,0,9880.352,55.48255,0,12,1,0,7.022472,0,0,0,7.022472,0,0,0,0,0,2,78.2,10.3,0,54.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.198404,.6931472,1.949115,1
-19,4,25,0,2,427482,0,9880.352,56.48255,0,12,1,15.00234,10.60947,23.90999,0,0,49.5218,0,0,0,1,1,2,78.2,10.3,0,54.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.198404,.6931472,3.902413,1
-19,4,25,0,3,427482,0,9880.352,57.48255,0,12,1,26.22528,0,6.018917,0,0,32.2442,0,0,0,1,0,2,78.2,10.3,0,54.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.198404,.6931472,3.473338,1
-17,4,25,1,1,427483,0,3394.135,52.65982,1,12,1,28.08989,49.40245,38.30439,0,0,115.7967,0,0,0,4,0,2,88.8,27.6,0,76.1,320.75,199.2,0,0,.6931472,5.294309,0,3.258096,7.156956,1,0,0,76.1,8.130098,.6931472,4.751836,1
-17,4,25,1,2,427483,0,3394.135,53.65982,1,12,1,15.00234,37.74027,0,0,0,52.74261,0,0,0,2,0,2,88.8,27.6,0,76.1,320.75,199.2,0,0,.6931472,5.294309,0,3.258096,7.156956,1,0,0,76.1,8.130098,.6931472,3.965424,1
-17,4,25,1,3,427483,0,3394.135,54.65982,1,12,1,26.6552,30.41273,25.79536,0,0,82.86328,0,0,0,3,0,2,88.8,27.6,0,76.1,320.75,199.2,0,0,.6931472,5.294309,0,3.258096,7.156956,1,0,0,76.1,8.130098,.6931472,4.417192,1
-17,4,25,1,1,427484,0,3394.135,15.35113,1,12,1,26.74157,1.225741,0,0,0,27.96731,0,0,0,3,0,2,89.9,10.3,0,78.4,320.75,199.2,1,1,.6931472,5.294309,0,3.258096,7.156956,0,0,0,78.4,8.130098,.6931472,3.331037,1
-17,4,25,1,2,427484,0,3394.135,16.35113,1,12,1,12.1894,10.08439,0,0,0,22.27379,0,0,0,3,0,2,89.9,10.3,0,78.4,320.75,199.2,1,1,.6931472,5.294309,0,3.258096,7.156956,0,0,0,78.4,8.130098,.6931472,3.103411,1
-17,4,25,1,3,427484,0,3394.135,17.35113,1,12,1,85.72657,6.659501,0,0,0,92.38607,0,0,0,5,0,2,89.9,10.3,0,78.4,320.75,199.2,1,1,.6931472,5.294309,0,3.258096,7.156956,0,0,0,78.4,8.130098,.6931472,4.525976,1
-16,4,95,1,1,427516,0,8591.789,1.771389,1,12,1,30.9119,1.442555,0,0,0,32.35446,0,0,0,2,0,3,83.39137,9.967326,0,63,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,63,9.058679,1.098612,3.476752,1
-16,4,95,1,2,427516,0,8591.789,2.771389,1,12,1,4.734848,0,0,0,0,4.734848,0,0,0,1,0,3,83.39137,9.967326,0,63,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,63,9.058679,1.098612,1.55495,1
-16,4,95,1,3,427516,0,8591.789,3.771389,1,12,1,13.0039,0,0,0,0,13.0039,0,0,0,2,0,4,83.39137,9.967326,0,63,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,63,9.058679,1.386294,2.565249,1
-16,4,95,1,1,427517,0,8591.789,24.29295,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,64.9,3.4,0,54.5,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.058679,1.098612,,0
-16,4,95,1,2,427517,0,8591.789,25.29295,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,64.9,3.4,0,54.5,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.058679,1.098612,,0
-16,4,95,1,3,427517,0,8591.789,26.29295,0,13,1,114.0009,0,0,0,201.2657,315.2666,1,1,0,1,0,4,64.9,3.4,0,54.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.058679,1.386294,5.753418,1
-16,4,95,1,1,427518,0,8591.789,22.36824,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.9,10.3,0,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,9.058679,1.098612,,0
-16,4,95,1,2,427518,0,8591.789,23.36824,1,12,1,159.768,0,0,0,764.8674,924.6354,1,0,0,6,0,3,81.9,10.3,0,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,9.058679,1.098612,6.8294,1
-16,4,95,1,3,427518,0,8591.789,24.36824,1,12,1,14.30429,0,0,0,0,14.30429,0,0,0,2,0,4,81.9,10.3,0,67,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,67,9.058679,1.386294,2.66056,1
-11,4,0,1,1,427525,0,5378.886,32.70089,0,14,1,131.8186,51.15919,172.7872,0,1496.605,1852.37,1,0,0,13,5,2,87.8,13.8,1,77.3,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,77.3,8.590423,.6931472,7.524221,1
-11,4,0,1,2,427525,0,5378.886,33.70089,0,14,1,98.60322,25.15152,26.59091,0,0,150.3456,0,0,0,5,6,2,87.8,13.8,1,77.3,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,77.3,8.590423,.6931472,5.012937,1
-11,4,0,1,3,427525,0,5378.886,34.70089,0,14,1,69.46251,23.26831,30.34244,0,0,123.0733,0,0,0,2,2,2,87.8,13.8,1,77.3,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,77.3,8.590423,.6931472,4.81278,1
-11,4,0,1,1,427526,0,5378.886,28.74196,1,15,1,51.62288,9.685729,0,0,0,61.30861,0,0,0,4,0,2,74.5,6.9,0,59.1,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,59.1,8.590423,.6931472,4.11592,1
-11,4,0,1,2,427526,0,5378.886,29.74196,1,15,1,0,10.65341,30.30303,0,0,40.95644,0,0,0,0,0,2,74.5,6.9,0,59.1,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,59.1,8.590423,.6931472,3.712509,1
-11,4,0,1,3,427526,0,5378.886,30.74196,1,15,1,41.89423,22.80017,0,0,0,64.6944,0,0,0,2,0,2,74.5,6.9,0,59.1,0,399.12,0,0,.6931472,5.989262,0,0,0,1,0,0,59.1,8.590423,.6931472,4.169675,1
-11,4,0,0,1,427540,0,7910.823,59.99453,0,12,1,195.3735,32.3493,25.24472,0,0,252.9675,0,0,0,10,8,2,76.6,17.2,1,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.976113,.6931472,5.533261,1
-11,4,0,0,2,427540,0,7910.823,60.99453,0,12,1,140.4119,46.49148,38.35227,0,0,225.2557,0,0,0,4,1,2,76.6,17.2,1,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.976113,.6931472,5.417236,1
-11,4,0,0,3,427540,0,7910.823,61.99453,0,12,1,28.39185,43.53706,0,0,0,71.92891,0,0,0,1,0,2,76.6,17.2,1,67,0,0,0,0,.6931472,0,0,0,0,1,0,0,67,8.976113,.6931472,4.275678,1
-11,4,0,0,1,427541,0,7910.823,57.42916,1,16,1,92.04533,3.585781,27.82071,0,0,123.4518,0,0,0,5,2,2,89.4,13.8,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,8.976113,.6931472,4.815851,1
-11,4,0,0,2,427541,0,7910.823,58.42916,1,16,1,51.84659,5.426136,20.83333,0,0,78.10606,0,0,0,2,3,2,89.4,13.8,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,8.976113,.6931472,4.358068,1
-11,4,0,0,3,427541,0,7910.823,59.42916,1,16,1,30.34244,0,23.84048,0,0,54.18292,0,0,0,1,2,2,89.4,13.8,0,79.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,79.5,8.976113,.6931472,3.992366,1
-11,4,0,1,1,427558,0,11719.65,12.40246,0,10,1,32.85935,0,0,0,0,32.85935,0,0,0,2,0,6,98.3,9.967326,0,96.3,0,0,1,0,1.791759,0,0,0,0,0,0,0,96.3,9.369107,1.791759,3.492236,1
-11,4,0,1,2,427558,0,11719.65,13.40246,0,10,1,4.734848,0,0,0,0,4.734848,0,0,0,1,0,6,98.3,9.967326,0,96.3,0,0,1,0,1.791759,0,0,0,0,0,0,0,96.3,9.369107,1.791759,1.55495,1
-11,4,0,1,3,427558,0,11719.65,14.40246,0,10,1,13.0039,0,0,0,0,13.0039,0,0,0,1,0,7,98.3,9.967326,0,96.3,0,0,1,0,1.94591,0,0,0,0,0,0,0,96.3,9.369107,1.94591,2.565249,1
-11,4,0,1,1,427559,0,11719.65,34.04517,1,10,1,293.8279,6.43998,0,0,1205.296,1505.564,1,0,0,7,0,6,56.9,6.9,0,90.9,0,0,0,0,1.791759,0,0,0,0,0,0,0,90.9,9.369107,1.791759,7.316923,1
-11,4,0,1,2,427559,0,11719.65,35.04517,1,10,1,56.10796,17.54261,0,0,0,73.65057,0,0,0,4,0,6,56.9,6.9,0,90.9,0,0,0,0,1.791759,0,0,0,0,0,0,0,90.9,9.369107,1.791759,4.299332,1
-11,4,0,1,3,427559,0,11719.65,36.04517,1,10,1,26.87473,19.38448,0,0,0,46.25921,0,0,0,4,0,7,56.9,6.9,0,90.9,0,0,0,0,1.94591,0,0,0,0,0,0,0,90.9,9.369107,1.94591,3.834261,1
-11,4,0,1,1,427560,0,11719.65,16.6653,0,10,1,206.7233,33.07573,0,0,0,239.7991,0,0,0,13,0,6,62.8,6.9,0,86.4,0,0,1,0,1.791759,0,0,0,0,0,0,0,86.4,9.369107,1.791759,5.479801,1
-11,4,0,1,2,427560,0,11719.65,17.6653,0,10,1,34.80114,12.97348,0,0,0,47.77462,0,0,0,3,0,6,62.8,6.9,0,86.4,0,0,1,0,1.791759,0,0,0,0,0,0,0,86.4,9.369107,1.791759,3.866495,1
-11,4,0,1,3,427560,0,11719.65,18.6653,0,10,1,14.95449,6.935414,0,0,0,21.8899,0,0,0,1,0,7,62.8,6.9,0,86.4,0,0,0,0,1.94591,0,0,0,0,0,0,0,86.4,9.369107,1.94591,3.086025,1
-11,4,0,1,1,427561,0,11719.65,37.66735,0,14,1,146.8624,11.97836,0,0,0,158.8408,0,0,0,6,0,6,75,6.9,0,85.2,0,0,0,0,1.791759,0,0,0,0,0,0,0,85.2,9.369107,1.791759,5.067903,1
-11,4,0,1,2,427561,0,11719.65,38.66735,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,75,6.9,0,85.2,0,0,0,0,1.791759,0,0,0,0,0,0,0,85.2,9.369107,1.791759,,0
-11,4,0,1,3,427561,0,11719.65,39.66735,0,14,1,64.62505,6.025141,0,0,0,70.65019,0,0,0,4,0,7,75,6.9,0,85.2,0,0,0,0,1.94591,0,0,0,0,0,0,0,85.2,9.369107,1.94591,4.257741,1
-11,4,0,1,1,427562,0,11719.65,13.30595,1,10,1,16.48635,2.93663,0,0,0,19.42298,0,0,0,2,0,6,93.3,9.967326,0,70.4,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.4,9.369107,1.791759,2.966457,1
-11,4,0,1,2,427562,0,11719.65,14.30595,1,10,1,10.41667,4.85322,0,0,0,15.26989,0,0,0,2,0,6,93.3,9.967326,0,70.4,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.4,9.369107,1.791759,2.725883,1
-11,4,0,1,3,427562,0,11719.65,15.30595,1,10,1,101.9289,0,0,0,0,101.9289,0,0,0,4,0,7,93.3,9.967326,0,70.4,0,0,1,1,1.94591,0,0,0,0,0,0,0,70.4,9.369107,1.94591,4.624276,1
-11,4,0,1,1,427563,0,11719.65,10.59822,1,10,1,111.4426,0,26.79031,0,0,138.2329,0,0,0,5,0,6,80,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.369107,1.791759,4.92894,1
-11,4,0,1,2,427563,0,11719.65,11.59822,1,10,1,83.33334,0,1.183712,14.20455,0,84.51704,0,0,1,6,0,6,80,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.369107,1.791759,4.436953,1
-11,4,0,1,3,427563,0,11719.65,12.59822,1,10,1,8.669268,0,27.30819,0,0,35.97746,0,0,0,1,0,7,80,9.967326,0,88.9,0,0,1,1,1.94591,0,0,0,0,0,0,0,88.9,9.369107,1.94591,3.582893,1
-14,4,95,1,1,427568,0,7712.61,28.47639,0,15,1,117.5528,0,40.18547,0,0,157.7383,0,0,0,2,0,4,65.4,3.4,0,67,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,67,8.950742,1.386294,5.060937,1
-14,4,95,1,2,427568,0,7712.61,29.47639,0,15,1,22.72727,0,0,0,0,22.72727,0,0,0,1,0,4,65.4,3.4,0,67,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,67,8.950742,1.386294,3.123566,1
-14,4,95,1,3,427568,0,7712.61,30.47639,0,15,1,0,1.209363,0,0,0,1.209363,0,0,0,0,0,4,65.4,3.4,0,67,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,67,8.950742,1.386294,.1900937,1
-14,4,95,1,4,427568,0,7712.61,31.47639,0,15,1,41.55179,0,24.41906,0,0,65.97086,0,0,0,1,0,4,65.4,3.4,0,67,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,67,8.950742,1.386294,4.189213,1
-14,4,95,1,5,427568,0,7712.61,32.47639,0,15,1,13.7746,0,0,0,0,13.7746,0,0,0,1,0,4,65.4,3.4,0,67,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,67,8.950742,1.386294,2.622826,1
-14,4,95,1,1,427569,0,7712.61,28.30664,1,16,1,18.13498,24.9253,37.09428,0,0,80.15456,0,0,0,2,0,4,71.8,17.2,0,71.6,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,71.6,8.950742,1.386294,4.383957,1
-14,4,95,1,2,427569,0,7712.61,29.30664,1,16,1,31.41098,14.51705,0,0,0,45.92803,0,0,0,2,0,4,71.8,17.2,0,71.6,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,71.6,8.950742,1.386294,3.827076,1
-14,4,95,1,3,427569,0,7712.61,30.30664,1,16,1,11.70351,11.23537,0,0,181.8249,204.7638,1,0,0,1,0,4,71.8,17.2,0,71.6,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,71.6,8.950742,1.386294,5.321857,1
-14,4,95,1,4,427569,0,7712.61,31.30664,1,16,1,25.99449,4.899567,25.20677,0,0,56.10083,0,0,0,1,0,4,71.8,17.2,0,71.6,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,71.6,8.950742,1.386294,4.027151,1
-14,4,95,1,5,427569,0,7712.61,32.30664,1,16,1,6.08229,4.157424,0,0,0,10.23971,0,0,0,1,0,4,71.8,17.2,0,71.6,585.8,585.8,0,0,1.386294,6.372978,0,4.564348,6.424272,1,0,0,71.6,8.950742,1.386294,2.326274,1
-14,4,95,1,1,427570,0,7712.61,2.30527,0,16,1,15.45595,30.1391,0,0,0,45.59505,0,0,0,3,0,4,83.39137,9.967326,0,70.4,585.8,585.8,1,0,1.386294,6.372978,0,4.564348,6.424272,0,0,0,70.4,8.950742,1.386294,3.819799,1
-14,4,95,1,2,427570,0,7712.61,3.30527,0,16,1,11.36364,15.61553,0,0,0,26.97917,0,0,0,2,0,4,83.39137,9.967326,0,70.4,585.8,585.8,1,0,1.386294,6.372978,0,4.564348,6.424272,0,0,0,70.4,8.950742,1.386294,3.295065,1
-14,4,95,1,3,427570,0,7712.61,4.30527,0,16,1,18.63893,26.25054,0,0,0,44.88947,0,0,0,3,0,4,83.39137,9.967326,0,70.4,585.8,585.8,1,0,1.386294,6.372978,0,4.564348,6.424272,0,0,0,70.4,8.950742,1.386294,3.804203,1
-14,4,95,1,4,427570,0,7712.61,5.30527,0,16,1,32.59157,35.69516,0,0,0,68.28673,0,0,0,4,0,4,83.39137,9.967326,0,70.4,585.8,585.8,1,0,1.386294,6.372978,0,4.564348,6.424272,0,0,0,70.4,8.950742,1.386294,4.223715,1
-14,4,95,1,5,427570,0,7712.61,6.30527,0,16,1,10.73345,19.12343,0,0,0,29.85689,0,0,0,2,0,4,83.39137,9.967326,0,70.4,585.8,585.8,1,0,1.386294,6.372978,0,4.564348,6.424272,0,0,0,70.4,8.950742,1.386294,3.396415,1
-10,4,50,1,1,427573,0,1852.199,20.44079,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,91,6.9,0,92.9,115.5,249.36,0,0,0,5.518898,0,3.931826,5.442418,0,0,0,92.9,7.524669,0,,0
-10,4,50,1,2,427573,0,1852.199,21.44079,1,12,1,22.72727,0,0,0,0,22.72727,0,0,0,0,0,1,91,6.9,0,92.9,115.5,249.36,0,0,0,5.518898,0,3.931826,5.442418,0,0,0,92.9,7.524669,0,3.123566,1
-10,4,50,1,3,427573,0,1852.199,22.44079,1,12,1,11.70351,0,0,0,540.5071,552.2107,1,0,0,1,0,1,91,6.9,0,92.9,115.5,249.36,0,0,0,5.518898,0,3.931826,5.442418,0,0,0,92.9,7.524669,0,6.31393,1
-13,4,0,0,1,427576,0,1546.041,19.60849,1,12,1,151.4683,7.496136,14.94075,329.727,1061.51,1235.415,2,0,16,2,14,1,46.3,20.7,0,56.8,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,56.8,7.3441,0,7.119162,1
-13,4,0,0,2,427576,0,1546.041,20.60849,1,12,1,30.77652,2.438447,5.681818,0,0,38.89678,0,0,0,3,0,1,46.3,20.7,0,56.8,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,56.8,7.3441,0,3.660912,1
-13,4,0,0,3,427576,0,1546.041,21.60849,1,12,1,221.3524,0,0,0,0,221.3524,0,0,0,0,0,1,46.3,20.7,0,56.8,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,56.8,7.3441,0,5.399756,1
-14,4,95,0,1,427597,0,11187.1,26.46954,1,15,1,72.23698,.8937691,0,0,0,73.13074,0,0,0,3,0,2,86.2,0,0,84.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.322606,.6931472,4.292249,1
-14,4,95,0,1,427598,0,11187.1,26.29706,0,16,1,12.76813,0,0,0,0,12.76813,0,0,0,1,0,2,78.7,3.4,0,81.8,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.322606,.6931472,2.546952,1
-11,4,0,1,1,427610,0,14587.68,54.52977,0,12,1,7.660879,0,0,0,0,7.660879,0,0,0,1,0,5,96.3,0,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,62.5,9.588001,1.609438,2.036127,1
-11,4,0,1,2,427610,0,14587.68,55.52977,0,12,1,11.72058,4.219409,0,0,0,15.93999,0,0,0,1,0,5,96.3,0,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,62.5,9.588001,1.609438,2.768831,1
-11,4,0,1,3,427610,0,14587.68,56.52977,0,12,1,151.5477,34.29063,29.66466,0,0,215.503,0,0,0,8,0,5,96.3,0,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,62.5,9.588001,1.609438,5.372975,1
-11,4,0,1,1,427611,0,14587.68,19.57563,1,12,1,25.79162,0,0,0,0,25.79162,0,0,0,2,0,5,82.4,6.9,0,72.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,72.7,9.588001,1.609438,3.25005,1
-11,4,0,1,2,427611,0,14587.68,20.57563,1,12,1,34.2241,0,0,0,0,34.2241,0,0,0,2,0,5,82.4,6.9,0,72.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,72.7,9.588001,1.609438,3.53293,1
-11,4,0,1,3,427611,0,14587.68,21.57563,1,12,1,11.60791,17.02493,0,0,0,28.63285,0,0,0,1,0,5,82.4,6.9,0,72.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,72.7,9.588001,1.609438,3.354555,1
-11,4,0,1,1,427612,0,14587.68,10.49144,1,12,1,13.02349,0,0,0,0,13.02349,0,0,0,1,0,5,85,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,88.9,9.588001,1.609438,2.566755,1
-11,4,0,1,2,427612,0,14587.68,11.49144,1,12,1,18.75293,5.743085,0,0,0,24.49602,0,0,0,2,0,5,85,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,88.9,9.588001,1.609438,3.19851,1
-11,4,0,1,3,427612,0,14587.68,12.49144,1,12,1,50.30095,14.07997,0,0,0,64.38091,0,0,0,4,0,5,85,9.967326,0,88.9,0,0,1,1,1.609438,0,0,0,0,1,0,0,88.9,9.588001,1.609438,4.164817,1
-11,4,0,1,1,427613,0,14587.68,51.31006,1,12,1,84.52502,14.57099,0,0,0,99.09602,0,0,0,4,0,5,71.8,24.1,1,63.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.6,9.588001,1.609438,4.596089,1
-11,4,0,1,2,427613,0,14587.68,52.31006,1,12,1,39.0061,5.64932,0,0,0,44.65541,0,0,0,3,0,5,71.8,24.1,1,63.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.6,9.588001,1.609438,3.798975,1
-11,4,0,1,3,427613,0,14587.68,53.31006,1,12,1,112.4248,10.81255,55.88994,0,0,179.1273,0,0,0,7,0,5,71.8,24.1,1,63.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,63.6,9.588001,1.609438,5.188097,1
-11,4,0,1,1,427614,0,14587.68,14.14647,1,12,1,30.64351,4.290092,35.24004,0,0,70.17365,0,0,0,4,0,5,80.3,3.4,0,75,0,0,1,1,1.609438,0,0,0,0,1,0,0,75,9.588001,1.609438,4.250973,1
-11,4,0,1,2,427614,0,14587.68,15.14647,1,12,1,15.47117,3.000469,0,0,0,18.47164,0,0,0,1,0,5,80.3,3.4,0,75,0,0,1,1,1.609438,0,0,0,0,1,0,0,75,9.588001,1.609438,2.916236,1
-11,4,0,1,3,427614,0,14587.68,16.14647,1,12,1,79.75065,14.91831,0,0,0,94.66896,0,0,0,8,0,5,80.3,3.4,0,75,0,0,1,1,1.609438,0,0,0,0,1,0,0,75,9.588001,1.609438,4.550386,1
-16,4,95,1,1,427617,0,4496.774,47.76455,1,10,1,63.83308,0,79.85574,0,0,143.6888,0,0,0,2,0,2,73.9,27.6,0,71.6,931.35,931.35,0,0,.6931472,6.836635,0,4.564348,6.887928,1,0,0,71.6,8.411338,.6931472,4.96765,1
-16,4,95,1,2,427617,0,4496.774,48.76455,1,10,1,5.681818,0,0,0,0,5.681818,0,0,0,0,0,2,73.9,27.6,0,71.6,931.35,931.35,0,0,.6931472,6.836635,0,4.564348,6.887928,1,0,0,71.6,8.411338,.6931472,1.737271,1
-16,4,95,1,1,427618,0,4496.774,15.91239,1,10,1,43.53426,1.262236,25.75992,216.3833,0,70.55641,0,0,14,4,0,2,72.9,6.9,0,83,931.35,931.35,1,1,.6931472,6.836635,0,4.564348,6.887928,1,0,0,83,8.411338,.6931472,4.256413,1
-16,4,95,1,2,427618,0,4496.774,16.91239,1,10,1,16.09848,0,0,56.81818,0,16.09848,0,0,4,3,0,2,72.9,6.9,0,83,931.35,931.35,1,1,.6931472,6.836635,0,4.564348,6.887928,1,0,0,83,8.411338,.6931472,2.778725,1
-16,4,95,1,1,427619,0,3929.032,26.08624,1,12,1,0,4.044307,0,0,0,4.044307,0,0,0,0,0,1,70.2,10.3,0,73.9,900,900,0,0,0,6.802395,0,4.564348,6.853688,0,0,0,73.9,8.276402,0,1.39731,1
-16,4,95,1,2,427619,0,3929.032,27.08624,1,12,1,19.64962,0,0,0,0,19.64962,0,0,0,1,0,1,70.2,10.3,0,73.9,900,900,0,0,0,6.802395,0,4.564348,6.853688,0,0,0,73.9,8.276402,0,2.978058,1
-16,4,95,1,3,427619,0,3929.032,28.08624,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70.2,10.3,0,73.9,900,900,0,0,0,6.802395,0,4.564348,6.853688,0,0,0,73.9,8.276402,0,,0
-16,4,95,1,4,427619,0,3929.032,29.08624,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70.2,10.3,0,73.9,900,900,0,0,0,6.802395,0,4.564348,6.853688,0,0,0,73.9,8.276402,0,,0
-16,4,95,1,5,427619,0,3929.032,30.08624,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,70.2,10.3,0,73.9,900,900,0,0,0,6.802395,0,4.564348,6.853688,0,0,0,73.9,8.276402,0,,0
-13,4,0,1,1,427631,0,11010.56,36.95004,1,12,1,27.25399,5.641422,0,0,0,32.89542,0,0,0,2,0,5,80.3,6.9,0,83,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83,9.306701,1.609438,3.493333,1
-13,4,0,1,2,427631,0,11010.56,37.95004,1,12,1,38.35227,24.22348,0,0,0,62.57576,0,0,0,5,0,5,80.3,6.9,0,83,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83,9.306701,1.609438,4.136378,1
-13,4,0,1,3,427631,0,11010.56,38.95004,1,12,1,154.7898,2.522757,21.67317,0,0,178.9857,0,0,0,5,0,5,80.3,6.9,0,83,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83,9.306701,1.609438,5.187306,1
-13,4,0,1,1,427632,0,11010.56,5.048597,1,12,1,15.45595,12.91602,20.60793,0,0,48.97991,0,0,0,2,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,3.89141,1
-13,4,0,1,2,427632,0,11010.56,6.048597,1,12,1,35.58239,15.08523,0,0,0,50.66761,0,0,0,2,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,3.925287,1
-13,4,0,1,3,427632,0,11010.56,7.048597,1,12,1,26.44127,12.97356,18.63893,0,0,58.05375,0,0,0,3,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,4.061369,1
-13,4,0,1,1,427633,0,11010.56,2.600958,0,12,1,5.151984,12.85935,0,0,0,18.01133,0,0,0,1,0,5,83.39137,9.967326,0,96.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.306701,1.609438,2.891001,1
-13,4,0,1,2,427633,0,11010.56,3.600958,0,12,1,7.102273,12.93561,0,0,0,20.03788,0,0,0,1,0,5,83.39137,9.967326,0,96.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.306701,1.609438,2.997624,1
-13,4,0,1,3,427633,0,11010.56,4.600958,0,12,1,26.44127,11.77287,0,0,0,38.21413,0,0,0,3,0,5,83.39137,9.967326,0,96.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.306701,1.609438,3.643205,1
-13,4,0,1,1,427634,0,11010.56,9.015742,1,12,1,6.697578,12.85935,0,0,0,19.55693,0,0,0,1,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,2.97333,1
-13,4,0,1,2,427634,0,11010.56,10.01574,1,12,1,16.57197,13.25284,17.99242,0,0,47.81723,0,0,0,2,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,3.867386,1
-13,4,0,1,3,427634,0,11010.56,11.01574,1,12,1,24.27395,14.46034,11.27005,0,0,50.00433,0,0,0,3,0,5,95,9.967326,0,81.5,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.306701,1.609438,3.91211,1
-13,4,0,1,1,427635,0,11010.56,40.1807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83,6.9,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.306701,1.609438,,0
-13,4,0,1,2,427635,0,11010.56,41.1807,0,12,1,9.469697,0,27.46212,0,0,36.93182,0,0,0,1,0,5,83,6.9,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.306701,1.609438,3.609073,1
-13,4,0,1,3,427635,0,11010.56,42.1807,0,12,1,0,0,19.50585,0,0,19.50585,0,0,0,0,0,5,83,6.9,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.306701,1.609438,2.970715,1
-14,4,95,1,1,427656,0,6695.015,5.218344,0,12,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,4,88.3,9.967326,0,51.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,0,1,0,51.9,8.809268,1.386294,1.639382,1
-14,4,95,1,2,427656,0,6695.015,6.218344,0,12,1,25.0947,0,0,0,0,25.0947,0,0,0,1,0,4,88.3,9.967326,0,51.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,0,1,0,51.9,8.809268,1.386294,3.222656,1
-14,4,95,1,3,427656,0,6695.015,7.218344,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,51.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,0,1,0,51.9,8.809268,1.386294,,0
-14,4,95,1,1,427657,0,6695.015,29.32512,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,3.4,0,67,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,67,8.809268,1.386294,,0
-14,4,95,1,2,427657,0,6695.015,30.32512,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,3.4,0,67,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,67,8.809268,1.386294,,0
-14,4,95,1,3,427657,0,6695.015,31.32512,0,12,1,28.73429,0,0,0,0,28.73429,0,0,0,1,0,4,96.8,3.4,0,67,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,67,8.809268,1.386294,3.358091,1
-14,4,95,1,1,427658,0,6695.015,7.296372,0,12,1,20.2473,0,0,0,0,20.2473,0,0,0,0,0,4,76.7,9.967326,0,88.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,88.9,8.809268,1.386294,3.008021,1
-14,4,95,1,2,427658,0,6695.015,8.296372,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,9.967326,0,88.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,88.9,8.809268,1.386294,,0
-14,4,95,1,3,427658,0,6695.015,9.296372,0,12,1,7.585609,0,0,0,0,7.585609,0,0,0,0,0,4,76.7,9.967326,0,88.9,581.3,581.3,1,0,1.386294,6.365267,0,4.564348,6.41656,1,0,0,88.9,8.809268,1.386294,2.026253,1
-14,4,95,1,1,427659,0,6695.015,29.56058,1,12,1,18.03194,0,0,0,0,18.03194,0,0,0,2,0,4,82.4,3.4,0,86.4,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,0,0,0,86.4,8.809268,1.386294,2.892145,1
-14,4,95,1,2,427659,0,6695.015,30.56058,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,3.4,0,86.4,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,0,0,0,86.4,8.809268,1.386294,,0
-14,4,95,1,3,427659,0,6695.015,31.56058,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,3.4,0,86.4,581.3,581.3,0,0,1.386294,6.365267,0,4.564348,6.41656,0,0,0,86.4,8.809268,1.386294,,0
-18,4,25,1,1,427661,0,9322.581,21.88364,1,12,1,110.8274,18.00307,21.96119,0,0,150.7916,0,0,0,4,1,3,43.1,3.4,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.140302,1.098612,5.015899,1
-18,4,25,1,2,427661,0,9322.581,22.88364,1,12,1,54.3835,26.16034,23.44116,0,0,103.985,0,0,0,3,1,3,43.1,3.4,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.140302,1.098612,4.644247,1
-18,4,25,1,3,427661,0,9322.581,23.88364,1,12,1,73.94669,12.25279,0,0,614.6174,700.8168,1,0,0,4,0,3,43.1,3.4,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.140302,1.098612,6.552247,1
-18,4,25,1,4,427661,0,9322.581,24.88364,1,12,1,58.45289,27.06475,0,0,0,85.51764,0,0,0,6,0,3,43.1,3.4,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.140302,1.098612,4.448723,1
-18,4,25,1,5,427661,0,9322.581,25.88364,1,12,1,7.077141,43.95966,0,0,0,51.0368,0,0,0,1,0,3,43.1,3.4,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.140302,1.098612,3.932547,1
-18,4,25,1,1,427662,0,9322.581,25.93292,0,12,1,43.89684,.8937691,0,0,675.046,719.8365,1,0,0,6,0,3,78.7,13.8,0,70.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.140302,1.098612,6.579024,1
-18,4,25,1,2,427662,0,9322.581,26.93292,0,12,1,9.376465,1.593999,33.28645,0,0,44.25692,0,0,0,0,1,3,78.7,13.8,0,70.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.140302,1.098612,3.790012,1
-18,4,25,1,3,427662,0,9322.581,27.93292,0,12,1,6.448839,0,0,0,0,6.448839,0,0,0,1,0,3,78.7,13.8,0,70.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.140302,1.098612,1.8639,1
-18,4,25,1,4,427662,0,9322.581,28.93292,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.7,13.8,0,70.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.140302,1.098612,,0
-18,4,25,1,5,427662,0,9322.581,29.93292,0,12,1,72.18684,0,0,0,0,72.18684,0,0,0,4,0,3,78.7,13.8,0,70.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.5,9.140302,1.098612,4.279258,1
-17,4,25,1,1,427673,0,1241.642,24.96372,1,16,1,64.50283,2.761463,0,0,0,67.2643,0,0,0,4,0,1,69.1,0,0,89.8,242.5,0,0,0,0,0,0,3.258096,6.877296,0,0,0,89.8,7.124995,0,4.20863,1
-17,4,25,1,2,427673,0,1241.642,25.96372,1,16,1,93.27651,5.336174,3.787879,0,0,102.4006,0,0,0,9,0,1,69.1,0,0,89.8,242.5,0,0,0,0,0,0,3.258096,6.877296,0,0,0,89.8,7.124995,0,4.628892,1
-17,4,25,1,3,427673,0,1241.642,26.96372,1,16,1,37.27785,19.72258,0,0,0,57.00043,0,0,0,8,1,1,69.1,0,0,89.8,242.5,0,0,0,0,0,0,3.258096,6.877296,0,0,0,89.8,7.124995,0,4.043059,1
-11,4,0,0,1,427674,0,9925.514,15.12663,1,12,1,15.32176,0,32.17569,0,0,47.49745,0,0,0,1,1,5,87.8,3.4,0,71.6,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,71.6,9.202965,1.609438,3.860676,1
-11,4,0,0,2,427674,0,9925.514,16.12663,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,87.8,3.4,0,71.6,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,71.6,9.202965,1.609438,,0
-11,4,0,0,3,427674,0,9925.514,17.12663,1,12,1,21.49613,2.063628,36.54342,0,0,60.10318,0,0,0,2,1,3,87.8,3.4,0,71.6,0,173.16,1,1,1.098612,5.154216,0,0,0,0,0,0,71.6,9.202965,1.098612,4.096063,1
-11,4,0,0,1,427675,0,9925.514,45.61807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,3.4,0,71.6,0,173.16,0,0,1.609438,5.154216,0,0,0,0,0,0,71.6,9.202965,1.609438,,0
-11,4,0,0,2,427675,0,9925.514,46.61807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,3.4,0,71.6,0,173.16,0,0,1.609438,5.154216,0,0,0,0,0,0,71.6,9.202965,1.609438,,0
-11,4,0,0,3,427675,0,9925.514,47.61807,0,12,1,10.74806,6.878762,55.88994,0,0,73.51677,0,0,0,0,1,3,85.6,3.4,0,71.6,0,173.16,0,0,1.098612,5.154216,0,0,0,0,0,0,71.6,9.202965,1.098612,4.297513,1
-11,4,0,0,1,427676,0,9925.514,16.38604,1,12,1,33.99387,20.92441,0,0,0,54.91829,0,0,0,5,0,5,78.7,3.4,0,76.1,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,76.1,9.202965,1.609438,4.005847,1
-11,4,0,0,2,427676,0,9925.514,17.38604,1,12,1,30.47351,21.63619,30.94234,0,0,83.05204,0,0,0,4,1,5,78.7,3.4,0,76.1,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,76.1,9.202965,1.609438,4.419467,1
-11,4,0,0,1,427677,0,9925.514,42.60369,1,12,1,69.66292,0,0,0,0,69.66292,0,0,0,2,0,5,78.2,6.9,0,78.4,0,173.16,0,0,1.609438,5.154216,0,0,0,0,0,0,78.4,9.202965,1.609438,4.243668,1
-11,4,0,0,2,427677,0,9925.514,43.60369,1,12,1,9.376465,0,59.07173,0,0,68.4482,0,0,0,0,1,5,78.2,6.9,0,78.4,0,173.16,0,0,1.609438,5.154216,0,0,0,0,0,0,78.4,9.202965,1.609438,4.226077,1
-11,4,0,0,1,427678,0,9925.514,6.986995,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,9.967326,0,81.5,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,81.5,9.202965,1.609438,,0
-11,4,0,0,2,427678,0,9925.514,7.986995,1,12,1,9.376465,0,25.78528,0,0,35.16174,0,0,0,0,1,5,88.3,9.967326,0,81.5,0,173.16,1,1,1.609438,5.154216,0,0,0,0,0,0,81.5,9.202965,1.609438,3.559959,1
-11,4,0,0,3,427678,0,9925.514,8.986995,1,12,1,14.61737,1.526225,22.35598,0,0,38.49957,0,0,0,1,1,3,88.3,9.967326,0,81.5,0,173.16,1,1,1.098612,5.154216,0,0,0,0,0,0,81.5,9.202965,1.098612,3.650647,1
-7,4,25,1,1,427757,0,7777.126,54.37372,0,12,1,15.45595,0,0,0,0,15.45595,0,0,0,2,0,2,77.1,10.3,0,68.2,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,0,0,0,68.2,8.959071,.6931472,2.737994,1
-7,4,25,1,2,427757,0,7777.126,55.37372,0,12,1,515.1515,2.059659,22.25379,0,0,539.465,0,0,0,10,25,2,77.1,10.3,0,68.2,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,0,0,0,68.2,8.959071,.6931472,6.290578,1
-7,4,25,1,3,427757,0,7777.126,56.37372,0,12,1,47.68097,0,26.0078,0,0,73.68877,0,0,0,1,10,1,77.1,10.3,0,68.2,750,725,0,0,0,6.586172,0,3.258096,8.006368,0,0,0,68.2,8.959071,0,4.29985,1
-7,4,25,1,1,427758,0,7777.126,47.16496,1,11,1,18.54714,24.10613,0,0,0,42.65327,0,0,0,3,0,2,69.7,13.8,0,62.5,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,62.5,8.959071,.6931472,3.753104,1
-7,4,25,1,2,427758,0,7777.126,48.16496,1,11,.0767123,0,0,0,0,0,0,0,0,0,0,0,2,69.7,13.8,0,62.5,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,62.5,8.959071,.6931472,,0
-13,4,0,1,1,427763,0,10902.05,12.44627,0,12,1,36.77222,71.4096,0,0,0,108.1818,0,0,0,7,0,3,88.3,9.967326,0,63,450,919.44,1,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,63,9.296798,1.098612,4.683813,1
-13,4,0,1,2,427763,0,10902.05,13.44627,0,12,1,15.93999,62.37225,0,0,0,78.31223,0,0,0,3,0,3,88.3,9.967326,0,63,450,919.44,1,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,63,9.296798,1.098612,4.360704,1
-13,4,0,1,3,427763,0,10902.05,14.44627,0,12,1,24.61307,21.99484,0,0,0,46.60791,0,0,0,3,0,3,88.3,9.967326,0,63,450,919.44,1,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,63,9.296798,1.098612,3.84177,1
-13,4,0,1,1,427764,0,10902.05,45.15263,1,12,1,57.48723,140.5056,0,0,0,197.9928,0,0,0,4,0,3,83,24.1,1,48.9,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,1,0,0,48.9,9.296798,1.098612,5.288231,1
-13,4,0,1,2,427764,0,10902.05,46.15263,1,12,1,72.6676,104.3647,195.9681,0,674.0131,1047.014,1,0,0,7,1,3,83,24.1,1,48.9,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,1,0,0,48.9,9.296798,1.098612,6.953697,1
-13,4,0,1,3,427764,0,10902.05,47.15263,1,12,1,49.52708,125.4815,0,0,0,175.0086,0,0,0,4,0,3,83,24.1,1,48.9,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,1,0,0,48.9,9.296798,1.098612,5.164835,1
-13,4,0,1,1,427765,0,10902.05,45.84531,0,12,1,62.56384,74.50459,43.15628,0,0,180.2247,0,0,0,2,1,3,80.9,13.8,0,84.1,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,84.1,9.296798,1.098612,5.194204,1
-13,4,0,1,2,427765,0,10902.05,46.84531,0,12,1,4.688232,23.77403,0,0,0,28.46226,0,0,0,1,0,3,80.9,13.8,0,84.1,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,84.1,9.296798,1.098612,3.348579,1
-13,4,0,1,3,427765,0,10902.05,47.84531,0,12,1,10.74806,2.145314,45.14188,0,0,58.03526,0,0,0,0,1,3,80.9,13.8,0,84.1,450,919.44,0,0,1.098612,6.823765,1,4.564348,6.160541,0,0,0,84.1,9.296798,1.098612,4.061051,1
-11,4,0,0,1,427780,0,5984.246,22.69952,1,12,1,16.48635,3.060278,32.1999,0,0,51.74652,0,0,0,2,0,2,83.6,10.3,0,92.9,0,501.8,0,0,.6931472,6.218202,0,0,0,0,0,0,92.9,8.697053,.6931472,3.946357,1
-11,4,0,0,2,427780,0,5984.246,23.69952,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,83.6,10.3,0,92.9,0,501.8,0,0,.6931472,6.218202,0,0,0,0,0,0,92.9,8.697053,.6931472,,0
-11,4,0,0,3,427780,0,5984.246,24.69952,1,12,1,54.72475,.9969658,0,0,0,55.72172,0,0,0,1,3,2,83.6,10.3,0,92.9,0,501.8,0,0,.6931472,6.218202,0,0,0,0,0,0,92.9,8.697053,.6931472,4.02037,1
-11,4,0,0,1,427781,0,5984.246,31.64682,0,12,1,62.7254,1.669243,0,0,1048.207,1112.602,2,0,0,3,0,2,55.3,6.9,0,44.3,0,501.8,0,0,.6931472,6.218202,0,0,0,1,0,0,44.3,8.697053,.6931472,7.014457,1
-11,4,0,0,2,427781,0,5984.246,32.64682,0,12,1,70.3125,14.7822,0,18.93939,967.3058,1052.401,1,0,2,5,0,2,55.3,6.9,0,44.3,0,501.8,0,0,.6931472,6.218202,0,0,0,1,0,0,44.3,8.697053,.6931472,6.958829,1
-11,4,0,0,3,427781,0,5984.246,33.64682,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.3,6.9,0,44.3,0,501.8,0,0,.6931472,6.218202,0,0,0,1,0,0,44.3,8.697053,.6931472,,0
-10,4,50,1,1,427795,0,6861.583,2.61191,0,12,1,35.36142,0,0,0,81.67447,117.0359,1,0,0,2,0,6,83.39137,9.967326,0,55.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,55.6,8.833839,1.791759,4.762481,1
-10,4,50,1,2,427795,0,6861.583,3.61191,0,12,1,7.644529,5.685619,0,0,0,13.33015,0,0,0,1,0,6,83.39137,9.967326,0,55.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,55.6,8.833839,1.791759,2.590028,1
-10,4,50,1,3,427795,0,6861.583,4.61191,0,12,1,29.741,2.107111,0,0,0,31.84811,0,0,0,4,0,6,83.39137,9.967326,0,55.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,55.6,8.833839,1.791759,3.460978,1
-10,4,50,1,4,427795,0,6861.583,5.61191,0,12,1,12.36538,7.618668,0,0,0,19.98405,0,0,0,1,0,6,83.39137,9.967326,0,55.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,55.6,8.833839,1.791759,2.994934,1
-10,4,50,1,5,427795,0,6861.583,6.61191,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,55.6,1000,0,1,0,1.609438,0,0,3.931826,7.600903,1,0,0,55.6,8.833839,1.609438,,0
-10,4,50,1,1,427796,0,6861.583,7.82204,0,12,1,5.200208,0,0,0,0,5.200208,0,0,0,1,0,6,75,9.967326,0,40.7,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,40.7,8.833839,1.791759,1.648699,1
-10,4,50,1,2,427796,0,6861.583,8.82204,0,12,1,7.166746,3.798376,0,0,0,10.96512,0,0,0,1,0,6,75,9.967326,0,40.7,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,40.7,8.833839,1.791759,2.39472,1
-10,4,50,1,3,427796,0,6861.583,9.82204,0,12,1,5.267779,0,0,0,0,5.267779,0,0,0,1,0,6,75,9.967326,0,40.7,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,40.7,8.833839,1.791759,1.661609,1
-10,4,50,1,4,427796,0,6861.583,10.82204,0,12,1,7.977663,5.185481,0,0,0,13.16314,0,0,0,2,0,6,75,9.967326,0,40.7,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,40.7,8.833839,1.791759,2.577421,1
-10,4,50,1,5,427796,0,6861.583,11.82204,0,12,1,5.438724,0,0,0,0,5.438724,0,0,0,1,0,5,75,9.967326,0,40.7,1000,0,1,0,1.609438,0,0,3.931826,7.600903,1,0,0,40.7,8.833839,1.609438,1.693544,1
-10,4,50,1,1,427797,0,6861.583,36.64613,1,12,1,58.76235,208.9392,0,0,0,267.7015,0,0,0,14,0,6,55.9,10.3,0,55.7,1000,0,0,0,1.791759,0,0,3.931826,7.600903,0,1,0,55.7,8.833839,1.791759,5.589872,1
-10,4,50,1,2,427797,0,6861.583,37.64613,1,12,1,61.63402,75.91496,0,0,531.3426,668.8915,1,0,0,15,0,6,55.9,10.3,0,55.7,1000,0,0,0,1.791759,0,0,3.931826,7.600903,0,1,0,55.7,8.833839,1.791759,6.505622,1
-10,4,50,1,3,427797,0,6861.583,38.64613,1,12,1,57.0676,108.8235,0,0,0,165.8911,0,0,0,16,0,6,55.9,10.3,0,55.7,1000,0,0,0,1.791759,0,0,3.931826,7.600903,0,1,0,55.7,8.833839,1.791759,5.111332,1
-10,4,50,1,4,427797,0,6861.583,39.64613,1,12,.9453552,1267.012,48.20502,0,0,6702.912,8018.129,4,0,0,41,4,6,55.9,10.3,0,55.7,1000,0,0,0,1.791759,0,0,3.931826,7.600903,0,1,0,55.7,8.833839,1.791759,8.98946,1
-10,4,50,1,1,427798,0,6861.583,14.78987,0,12,1,97.24389,5.980239,28.86115,0,0,132.0853,0,0,0,7,0,6,61.2,6.9,0,63.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,63.6,8.833839,1.791759,4.883448,1
-10,4,50,1,2,427798,0,6861.583,15.78987,0,12,1,39.65599,1.600573,0,0,0,41.25657,0,0,0,4,0,6,61.2,6.9,0,63.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,63.6,8.833839,1.791759,3.71981,1
-10,4,50,1,3,427798,0,6861.583,16.78987,0,12,1,1.755926,3.292362,0,0,0,5.048288,0,0,0,0,0,6,61.2,6.9,0,63.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,63.6,8.833839,1.791759,1.619049,1
-10,4,50,1,4,427798,0,6861.583,17.78987,0,12,1,323.6019,1.515756,9.972078,0,1457.419,1792.509,1,0,0,5,1,6,61.2,6.9,0,63.6,1000,0,1,0,1.791759,0,0,3.931826,7.600903,1,0,0,63.6,8.833839,1.791759,7.491372,1
-10,4,50,1,5,427798,0,6861.583,18.78987,0,12,1,44.59753,0,0,0,0,44.59753,0,0,0,4,0,5,61.2,6.9,0,63.6,1000,0,0,0,1.609438,0,0,3.931826,7.600903,1,0,0,63.6,8.833839,1.609438,3.797678,1
-10,4,50,1,1,427799,0,6861.583,5.522245,1,12,1,13.81175,3.094124,0,0,0,16.90588,0,0,0,2,0,6,71.7,9.967326,0,37,1000,0,1,1,1.791759,0,0,3.931826,7.600903,1,0,0,37,8.833839,1.791759,2.827661,1
-10,4,50,1,2,427799,0,6861.583,6.522245,1,12,1,6.688963,3.39226,0,0,0,10.08122,0,0,0,1,0,6,71.7,9.967326,0,37,1000,0,1,1,1.791759,0,0,3.931826,7.600903,1,0,0,37,8.833839,1.791759,2.310675,1
-10,4,50,1,3,427799,0,6861.583,7.522245,1,12,1,18.87621,3.819139,18.43723,0,0,41.13257,0,0,0,2,0,6,71.7,9.967326,0,37,1000,0,1,1,1.791759,0,0,3.931826,7.600903,1,0,0,37,8.833839,1.791759,3.7168,1
-10,4,50,1,4,427799,0,6861.583,8.522245,1,12,1,10.37096,1.515756,0,0,0,11.88672,0,0,0,1,0,6,71.7,9.967326,0,37,1000,0,1,1,1.791759,0,0,3.931826,7.600903,1,0,0,37,8.833839,1.791759,2.475421,1
-10,4,50,1,5,427799,0,6861.583,9.522245,1,12,1,51.61349,0,0,0,0,51.61349,0,0,0,5,0,5,71.7,9.967326,0,37,1000,0,1,1,1.609438,0,0,3.931826,7.600903,1,0,0,37,8.833839,1.609438,3.943783,1
-10,4,50,1,1,427800,0,6861.583,38.42574,0,12,1,11.96048,0,0,0,0,11.96048,0,0,0,1,0,6,78.2,3.4,0,58,1000,0,0,0,1.791759,0,0,3.931826,7.600903,1,0,0,58,8.833839,1.791759,2.481608,1
-10,4,50,1,2,427800,0,6861.583,39.42574,0,12,1,25.08361,0,0,0,0,25.08361,0,0,0,2,0,6,78.2,3.4,0,58,1000,0,0,0,1.791759,0,0,3.931826,7.600903,1,0,0,58,8.833839,1.791759,3.222215,1
-10,4,50,1,3,427800,0,6861.583,40.42574,0,12,1,25.02195,0,0,0,0,25.02195,0,0,0,2,0,6,78.2,3.4,0,58,1000,0,0,0,1.791759,0,0,3.931826,7.600903,1,0,0,58,8.833839,1.791759,3.219754,1
-10,4,50,1,4,427800,0,6861.583,41.42574,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,78.2,3.4,0,58,1000,0,0,0,1.791759,0,0,3.931826,7.600903,1,0,0,58,8.833839,1.791759,,0
-10,4,50,1,5,427800,0,6861.583,42.42574,0,12,1,9.06454,0,27.5562,0,0,36.62074,0,0,0,1,0,5,78.2,3.4,0,58,1000,0,0,0,1.609438,0,0,3.931826,7.600903,1,0,0,58,8.833839,1.609438,3.600615,1
-11,4,0,0,1,427803,0,11563.64,5.281314,0,13,1,22.98264,1.378958,0,0,0,24.36159,0,0,0,0,1,6,93.3,9.967326,0,70.4,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,70.4,9.355707,1.791759,3.193008,1
-11,4,0,0,2,427803,0,11563.64,6.281314,0,13,1,311.0408,26.98078,0,0,0,338.0216,0,0,0,4,2,6,93.3,9.967326,0,70.4,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,70.4,9.355707,1.791759,5.82311,1
-11,4,0,0,3,427803,0,11563.64,7.281314,0,13,1,0,2.901978,0,0,0,2.901978,0,0,0,0,0,6,93.3,9.967326,0,70.4,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,70.4,9.355707,1.791759,1.065392,1
-11,4,0,0,4,427803,0,11563.64,8.281314,0,13,1,40.75223,4.203179,0,0,0,44.95541,0,0,0,4,0,6,93.3,9.967326,0,70.4,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,70.4,9.355707,1.791759,3.805671,1
-11,4,0,0,5,427803,0,11563.64,9.281314,0,13,1,6.01557,6.369427,0,0,0,12.385,0,0,0,1,0,6,93.3,9.967326,0,70.4,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,70.4,9.355707,1.791759,2.516486,1
-11,4,0,0,1,427804,0,11563.64,11.31006,1,13,1,104.8264,0,21.96119,0,0,126.7875,0,0,0,4,1,6,85,9.967326,0,85.2,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,85.2,9.355707,1.791759,4.842513,1
-11,4,0,0,2,427804,0,11563.64,12.31006,1,13,1,29.06704,5.789967,0,0,0,34.85701,0,0,0,3,2,6,85,9.967326,0,85.2,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,85.2,9.355707,1.791759,3.551254,1
-11,4,0,0,3,427804,0,11563.64,13.31006,1,13,1,15.79966,3.8908,0,0,0,19.69046,0,0,0,2,0,6,85,9.967326,0,85.2,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,85.2,9.355707,1.791759,2.980134,1
-11,4,0,0,4,427804,0,11563.64,14.31006,1,13,1,31.40752,6.010081,0,0,0,37.4176,0,0,0,3,0,6,85,9.967326,0,85.2,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,85.2,9.355707,1.791759,3.622141,1
-11,4,0,0,5,427804,0,11563.64,15.31006,1,13,1,7.077141,0,0,0,0,7.077141,0,0,0,0,1,6,85,9.967326,0,85.2,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,85.2,9.355707,1.791759,1.95687,1
-11,4,0,0,1,427805,0,11563.64,9.415469,1,13,1,14.8621,3.983657,0,0,0,18.84576,0,0,0,1,0,6,70,9.967326,0,77.8,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,77.8,9.355707,1.791759,2.936288,1
-11,4,0,0,2,427805,0,11563.64,10.41547,1,13,1,62.00188,25.15237,0,0,0,87.15424,0,0,0,8,0,6,70,9.967326,0,77.8,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,77.8,9.355707,1.791759,4.46768,1
-11,4,0,0,3,427805,0,11563.64,11.41547,1,13,1,4.987103,5.803955,0,0,0,10.79106,0,0,0,2,0,6,70,9.967326,0,77.8,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,77.8,9.355707,1.791759,2.378718,1
-11,4,0,0,4,427805,0,11563.64,12.41547,1,13,1,0,0,0,0,0,0,0,0,0,0,0,6,70,9.967326,0,77.8,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,77.8,9.355707,1.791759,,0
-11,4,0,0,5,427805,0,11563.64,13.41547,1,13,1,124.5577,.8032555,0,0,0,125.3609,0,0,0,4,0,6,70,9.967326,0,77.8,0,492.84,1,1,1.791759,6.200184,0,0,0,0,0,0,77.8,9.355707,1.791759,4.831197,1
-11,4,0,0,1,427806,0,11563.64,32.85421,1,13,1,35.4954,13.20225,34.21859,0,0,82.91624,0,0,0,2,0,6,81.9,10.3,0,70.5,0,492.84,0,0,1.791759,6.200184,0,0,0,0,1,0,70.5,9.355707,1.791759,4.417831,1
-11,4,0,0,2,427806,0,11563.64,33.85421,1,13,1,495.4524,24.00375,0,0,0,519.4562,0,0,0,7,0,6,81.9,10.3,0,70.5,0,492.84,0,0,1.791759,6.200184,0,0,0,0,1,0,70.5,9.355707,1.791759,6.252782,1
-11,4,0,0,3,427806,0,11563.64,34.85421,1,13,1,38.15563,5.266552,0,0,0,43.42218,0,0,0,2,0,6,81.9,10.3,0,70.5,0,492.84,0,0,1.791759,6.200184,0,0,0,0,1,0,70.5,9.355707,1.791759,3.77097,1
-11,4,0,0,4,427806,0,11563.64,35.85421,1,13,1,13.57115,.7754944,0,0,0,14.34665,0,0,0,1,1,6,81.9,10.3,0,70.5,0,492.84,0,0,1.791759,6.200184,0,0,0,0,1,0,70.5,9.355707,1.791759,2.663516,1
-11,4,0,0,5,427806,0,11563.64,36.85421,1,13,1,23.53149,1.751592,24.06228,0,0,49.34536,0,0,0,3,0,6,81.9,10.3,0,70.5,0,492.84,0,0,1.791759,6.200184,0,0,0,0,1,0,70.5,9.355707,1.791759,3.898844,1
-11,4,0,0,1,427807,0,11563.64,36.57221,0,12,1,52.86006,1.71093,0,0,0,54.57099,0,0,0,4,0,6,83,6.9,1,70.2,0,492.84,0,0,1.791759,6.200184,0,0,0,0,0,0,70.2,9.355707,1.791759,3.999502,1
-11,4,0,0,2,427807,0,11563.64,37.57221,0,12,1,42.19409,5.157056,31.64557,0,0,78.99672,0,0,0,0,6,6,83,6.9,1,70.2,0,492.84,0,0,1.791759,6.200184,0,0,0,0,0,0,70.2,9.355707,1.791759,4.369406,1
-11,4,0,0,3,427807,0,11563.64,38.57221,0,12,1,43.63715,0,0,0,0,43.63715,0,0,0,1,4,6,83,6.9,1,70.2,0,492.84,0,0,1.791759,6.200184,0,0,0,0,0,0,70.2,9.355707,1.791759,3.775909,1
-11,4,0,0,4,427807,0,11563.64,39.57221,0,12,1,17.44862,3.664211,0,0,0,21.11283,0,0,0,1,1,6,83,6.9,1,70.2,0,492.84,0,0,1.791759,6.200184,0,0,0,0,0,0,70.2,9.355707,1.791759,3.049881,1
-11,4,0,0,5,427807,0,11563.64,40.57221,0,12,1,491.0651,3.78627,18.40057,0,0,513.252,0,0,0,6,0,6,83,6.9,1,70.2,0,492.84,0,0,1.791759,6.200184,0,0,0,0,0,0,70.2,9.355707,1.791759,6.240767,1
-11,4,0,0,1,427831,0,7646.334,24.68172,1,16,1,28.33591,21.32921,0,0,0,49.66512,0,0,0,2,0,2,73.4,6.9,0,62.5,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,62.5,8.942112,.6931472,3.905303,1
-11,4,0,0,2,427831,0,7646.334,25.68172,1,16,1,296.9934,20.77178,0,0,0,317.7651,0,0,0,6,0,2,73.4,6.9,0,62.5,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,62.5,8.942112,.6931472,5.761312,1
-11,4,0,0,3,427831,0,7646.334,26.68172,1,16,1,67.51192,20.74122,0,0,0,88.25314,0,0,0,3,1,2,73.4,6.9,0,62.5,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,62.5,8.942112,.6931472,4.480209,1
-11,4,0,0,4,427831,0,7646.334,27.68172,1,16,1,26.38834,26.91611,0,0,0,53.30445,0,0,0,2,1,2,73.4,6.9,0,62.5,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,62.5,8.942112,.6931472,3.97602,1
-11,4,0,0,5,427831,0,7646.334,28.68172,1,16,1,97.58498,14.2576,0,0,1258.537,1370.379,3,0,0,2,0,2,73.4,6.9,0,62.5,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,62.5,8.942112,.6931472,7.222843,1
-11,4,0,0,1,427832,0,7646.334,23.81383,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,13.8,0,75,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,75,8.942112,.6931472,,0
-11,4,0,0,2,427832,0,7646.334,24.81383,0,16,1,0,5.970644,0,0,0,5.970644,0,0,0,0,0,2,81.9,13.8,0,75,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,75,8.942112,.6931472,1.786855,1
-11,4,0,0,3,427832,0,7646.334,25.81383,0,16,1,32.07629,20.39012,23.40702,0,0,75.87343,0,0,0,4,0,2,81.9,13.8,0,75,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,75,8.942112,.6931472,4.329067,1
-11,4,0,0,4,427832,0,7646.334,26.81383,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,13.8,0,75,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,75,8.942112,.6931472,,0
-11,4,0,0,5,427832,0,7646.334,27.81383,0,16,1,11.44902,7.298748,18.24687,0,0,36.99463,0,0,0,1,1,2,81.9,13.8,0,75,0,180.96,0,0,.6931472,5.198276,0,0,0,0,0,0,75,8.942112,.6931472,3.610773,1
-11,4,0,1,1,427833,0,8444.575,5.902806,0,12,1,120.5408,3.770151,24.961,0,0,149.272,0,0,0,24,1,4,83.3,9.967326,0,100,0,400.08,1,0,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,5.00577,1
-11,4,0,1,2,427833,0,8444.575,6.902806,0,12,1,44.88772,5.996178,22.93359,0,0,73.81749,0,0,0,6,1,4,83.3,9.967326,0,100,0,400.08,1,0,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,4.301596,1
-11,4,0,1,3,427833,0,8444.575,7.902806,0,12,1,84.37225,3.204566,24.83758,65.84724,0,112.4144,0,0,5,5,0,4,83.3,9.967326,0,100,0,400.08,1,0,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,4.722192,1
-11,4,0,1,4,427833,0,8444.575,8.902806,0,12,1,55.2852,0,0,0,0,55.2852,0,0,0,5,0,4,83.3,9.967326,0,100,0,400.08,1,0,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,4.012505,1
-11,4,0,1,5,427833,0,8444.575,9.902806,0,12,1,57.14286,3.172589,29.00653,0,0,89.32198,0,0,0,7,0,4,83.3,9.967326,0,100,0,400.08,1,0,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,4.492248,1
-11,4,0,1,1,427834,0,8444.575,27.0527,0,8,1,10.40042,0,31.98128,0,0,42.38169,0,0,0,0,1,4,80.3,6.9,0,81.8,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,81.8,9.041398,1.386294,3.746716,1
-11,4,0,1,2,427834,0,8444.575,28.0527,0,8,1,9.555662,0,14.81128,0,0,24.36694,0,0,0,0,1,4,80.3,6.9,0,81.8,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,81.8,9.041398,1.386294,3.193227,1
-11,4,0,1,3,427834,0,8444.575,29.0527,0,8,1,8.779632,0,28.5338,0,0,37.31343,0,0,0,0,1,4,80.3,6.9,0,81.8,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,81.8,9.041398,1.386294,3.619354,1
-11,4,0,1,4,427834,0,8444.575,30.0527,0,8,1,9.972078,0,16.75309,0,0,26.72517,0,0,0,1,0,4,80.3,6.9,0,81.8,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,81.8,9.041398,1.386294,3.285606,1
-11,4,0,1,5,427834,0,8444.575,31.0527,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,6.9,0,81.8,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,81.8,9.041398,1.386294,,0
-11,4,0,1,1,427835,0,8444.575,7.323751,1,12,1,16.64067,1.950078,0,0,0,18.59074,0,0,0,3,0,4,81.7,9.967326,0,100,0,400.08,1,1,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,2.922664,1
-11,4,0,1,2,427835,0,8444.575,8.32375,1,12,1,5.733397,0,0,0,0,5.733397,0,0,0,1,0,4,81.7,9.967326,0,100,0,400.08,1,1,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,1.746308,1
-11,4,0,1,3,427835,0,8444.575,9.32375,1,12,1,59.04302,0,0,0,0,59.04302,0,0,0,5,0,4,81.7,9.967326,0,100,0,400.08,1,1,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,4.078266,1
-11,4,0,1,4,427835,0,8444.575,10.32375,1,12,1,27.52294,1.814918,0,0,0,29.33785,0,0,0,2,0,4,81.7,9.967326,0,100,0,400.08,1,1,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,3.378879,1
-11,4,0,1,5,427835,0,8444.575,11.32375,1,12,1,4.350979,0,0,0,0,4.350979,0,0,0,1,0,4,81.7,9.967326,0,100,0,400.08,1,1,1.386294,5.991664,0,0,0,0,0,0,100,9.041398,1.386294,1.470401,1
-11,4,0,1,1,427836,0,8444.575,26.33813,1,12,1,102.9641,11.70047,0,62.4025,0,114.6646,0,0,3,8,1,4,48.4,27.6,0,62.5,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,62.5,9.041398,1.386294,4.742011,1
-11,4,0,1,2,427836,0,8444.575,27.33813,1,12,1,37.74487,33.06259,0,0,0,70.80746,0,0,0,5,0,4,48.4,27.6,0,62.5,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,62.5,9.041398,1.386294,4.259964,1
-11,4,0,1,3,427836,0,8444.575,28.33813,1,12,1,140.6277,36.43547,0,0,0,177.0632,0,0,0,4,17,4,48.4,27.6,0,62.5,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,62.5,9.041398,1.386294,5.176507,1
-11,4,0,1,4,427836,0,8444.575,29.33813,1,12,1,51.05704,5.444755,0,277.2238,0,56.5018,0,0,30,3,5,4,48.4,27.6,0,62.5,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,62.5,9.041398,1.386294,4.034273,1
-11,4,0,1,5,427836,0,8444.575,30.33813,1,12,1,28.64395,1.53372,0,353.517,0,30.17767,0,0,39,4,0,4,48.4,27.6,0,62.5,0,400.08,0,0,1.386294,5.991664,0,0,0,0,0,0,62.5,9.041398,1.386294,3.407102,1
-16,4,95,1,1,427845,0,730.2053,20.10404,1,12,1,17.71255,0,24.2915,0,0,42.00405,0,0,0,0,1,1,58.5,6.9,0,89.8,34.5,0,0,0,0,0,0,4.564348,3.592253,0,0,0,89.8,6.594694,0,3.737766,1
-16,4,95,1,2,427845,0,730.2053,21.10404,1,12,1,6.713287,13.68298,0,0,646.0606,666.4568,1,0,0,0,0,1,58.5,6.9,0,89.8,34.5,0,0,0,0,0,0,4.564348,3.592253,0,0,0,89.8,6.594694,0,6.501976,1
-16,4,95,1,3,427845,0,730.2053,22.10404,1,12,1,23.8991,2.201796,24.79692,0,0,50.89782,0,0,0,1,1,2,58.5,6.9,0,89.8,34.5,0,0,0,.6931472,0,0,4.564348,3.592253,0,0,0,89.8,6.594694,.6931472,3.92982,1
-10,4,50,1,1,427858,0,2071.554,24.5859,0,12,1,7.660879,0,0,0,343.1103,350.7712,1,0,0,0,1,1,80.3,0,0,81.8,660,0,0,0,0,0,0,3.931826,7.185387,0,0,0,81.8,7.636537,0,5.860134,1
-10,4,50,1,2,427858,0,2071.554,25.5859,0,12,1,27.54337,2.967651,0,0,0,30.51102,0,0,0,2,0,1,80.3,0,0,81.8,660,0,0,0,0,0,0,3.931826,7.185387,0,0,0,81.8,7.636537,0,3.418088,1
-10,4,50,1,3,427858,0,2071.554,26.5859,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,80.3,0,0,81.8,660,0,0,0,0,0,0,3.931826,7.185387,0,0,0,81.8,7.636537,0,,0
-10,4,50,1,1,427859,0,4283.285,25.64819,0,12,1,0,0,28.33591,0,0,28.33591,0,0,0,0,0,1,73.9,6.9,0,92,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,92,8.362709,0,3.34413,1
-10,4,50,1,2,427859,0,4283.285,26.64819,0,12,1,11.83712,0,0,0,552.2017,564.0388,1,0,0,1,0,1,73.9,6.9,0,92,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,92,8.362709,0,6.335123,1
-10,4,50,1,3,427859,0,4283.285,27.64819,0,12,1,0,4.226268,0,0,0,4.226268,0,0,0,0,0,1,73.9,6.9,0,92,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,92,8.362709,0,1.441319,1
-15,4,95,1,1,427860,0,10733.72,26.48323,1,16,1,0,7.470376,0,0,0,7.470376,0,0,0,0,0,4,85.6,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.28124,1.386294,2.010945,1
-15,4,95,1,2,427860,0,10733.72,27.48323,1,16,1,9.469697,0,0,0,0,9.469697,0,0,0,1,0,4,85.6,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.28124,1.386294,2.248097,1
-15,4,95,1,3,427860,0,10733.72,28.48323,1,16,1,4.161248,0,0,0,0,4.161248,0,0,0,0,0,4,85.6,6.9,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.28124,1.386294,1.425815,1
-15,4,95,1,1,427861,0,10733.72,1.338809,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.28124,1.386294,,0
-15,4,95,1,2,427861,0,10733.72,2.338809,0,16,1,23.91098,0,0,0,0,23.91098,0,0,0,1,0,4,83.39137,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.28124,1.386294,3.174338,1
-15,4,95,1,3,427861,0,10733.72,3.338809,0,16,1,14.52102,0,0,0,0,14.52102,0,0,0,0,0,4,83.39137,9.967326,0,96.3,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,96.3,9.28124,1.386294,2.675597,1
-15,4,95,1,1,427862,0,10733.72,28.75017,0,16,1,1.545595,4.276146,0,0,0,5.821742,0,0,0,1,0,4,85.6,10.3,0,70.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.28124,1.386294,1.761599,1
-15,4,95,1,2,427862,0,10733.72,29.75017,0,16,1,9.469697,0,0,0,0,9.469697,0,0,0,1,0,4,85.6,10.3,0,70.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.28124,1.386294,2.248097,1
-15,4,95,1,3,427862,0,10733.72,30.75017,0,16,1,13.0039,0,0,0,0,13.0039,0,0,0,1,0,4,85.6,10.3,0,70.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.28124,1.386294,2.565249,1
-15,4,95,1,1,427863,0,10733.72,5.437372,0,16,1,41.98867,7.50644,0,0,0,49.49511,0,0,0,6,0,4,95,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.28124,1.386294,3.901874,1
-15,4,95,1,2,427863,0,10733.72,6.437372,0,16,1,4.734848,0,0,0,0,4.734848,0,0,0,1,0,4,95,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.28124,1.386294,1.55495,1
-15,4,95,1,3,427863,0,10733.72,7.437372,0,16,1,17.27352,0,0,0,0,17.27352,0,0,0,0,0,4,95,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.28124,1.386294,2.849174,1
-15,4,95,1,1,427868,0,6888.563,26.6037,0,16,1,21.76113,2.378542,0,0,0,24.13968,0,0,0,2,0,2,70.2,6.9,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,90.9,8.837763,.6931472,3.183857,1
-15,4,95,1,2,427868,0,6888.563,27.6037,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,6.9,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,90.9,8.837763,.6931472,,0
-15,4,95,1,3,427868,0,6888.563,28.6037,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,6.9,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,90.9,8.837763,.6931472,,0
-15,4,95,1,4,427868,0,6888.563,29.6037,0,16,1,11.91391,0,0,0,0,11.91391,0,0,0,1,1,2,70.2,6.9,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,90.9,8.837763,.6931472,2.477707,1
-15,4,95,1,5,427868,0,6888.563,30.6037,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,70.2,6.9,0,90.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,90.9,8.837763,.6931472,,0
-15,4,95,1,1,427869,0,6888.563,26.27515,1,16,1,38.96761,2.909919,0,0,0,41.87753,0,0,0,3,0,2,78.2,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,79.5,8.837763,.6931472,3.734749,1
-15,4,95,1,2,427869,0,6888.563,27.27515,1,16,1,34.96503,0,0,111.8881,0,34.96503,0,0,9,1,0,2,78.2,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,79.5,8.837763,.6931472,3.554348,1
-15,4,95,1,3,427869,0,6888.563,28.27515,1,16,1,25.22445,0,0,0,0,25.22445,0,0,0,2,0,2,78.2,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,79.5,8.837763,.6931472,3.227814,1
-15,4,95,1,4,427869,0,6888.563,29.27515,1,16,1,19.21599,7.647963,0,0,0,26.86395,0,0,0,2,0,2,78.2,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,79.5,8.837763,.6931472,3.290785,1
-15,4,95,1,5,427869,0,6888.563,30.27515,1,16,1,22.83105,0,0,94.83667,0,22.83105,0,0,6,2,0,2,78.2,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,79.5,8.837763,.6931472,3.128121,1
-11,4,0,1,1,427870,0,7400,4.517454,0,12,1,13.78958,14.70889,0,0,0,28.49847,0,0,0,2,0,4,83.39137,9.967326,0,70.4,0,251.52,1,0,1.386294,5.527523,0,0,0,0,0,0,70.4,8.90937,1.386294,3.34985,1
-11,4,0,1,2,427870,0,7400,5.517454,0,12,1,5.625879,7.032349,0,0,0,12.65823,0,0,0,1,0,4,83.39137,9.967326,0,70.4,0,251.52,1,0,1.386294,5.527523,0,0,0,0,0,0,70.4,8.90937,1.386294,2.538307,1
-11,4,0,1,3,427870,0,7400,6.517454,0,12,1,1.289768,2.579536,0,0,0,3.869303,0,0,0,1,0,4,83.39137,9.967326,0,70.4,0,251.52,1,0,1.386294,5.527523,0,0,0,0,0,0,70.4,8.90937,1.386294,1.353075,1
-11,4,0,1,1,427871,0,7400,26.54346,1,12,1,20.42901,16.08784,0,0,0,36.51685,0,0,0,2,0,4,75,6.9,0,71.6,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,71.6,8.90937,1.386294,3.597774,1
-11,4,0,1,2,427871,0,7400,27.54346,1,12,1,17.34646,21.72996,0,0,0,39.07642,0,0,0,2,0,4,75,6.9,0,71.6,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,71.6,8.90937,1.386294,3.665519,1
-11,4,0,1,3,427871,0,7400,28.54346,1,12,1,18.05675,8.490972,0,0,0,26.54772,0,0,0,2,0,4,75,6.9,0,71.6,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,71.6,8.90937,1.386294,3.278944,1
-11,4,0,1,1,427872,0,7400,2.124572,0,12,1,249.6425,38.90194,0,0,0,288.5444,0,0,0,22,0,4,83.39137,9.967326,0,51.9,0,251.52,1,0,1.386294,5.527523,0,0,0,0,1,0,51.9,8.90937,1.386294,5.664849,1
-11,4,0,1,2,427872,0,7400,3.124572,0,12,1,142.4051,64.58041,0,0,601.3784,808.3638,1,0,0,25,0,4,83.39137,9.967326,0,51.9,0,251.52,1,0,1.386294,5.527523,0,0,0,0,1,0,51.9,8.90937,1.386294,6.695012,1
-11,4,0,1,3,427872,0,7400,4.124572,0,12,1,215.7137,35.21066,.9028375,0,0,251.8272,0,0,0,30,0,4,83.39137,9.967326,0,51.9,0,251.52,1,0,1.386294,5.527523,0,0,0,0,1,0,51.9,8.90937,1.386294,5.528743,1
-11,4,0,1,1,427873,0,7400,29.1499,0,14,1,33.58018,2.298264,34.21859,0,0,70.09704,0,0,0,2,0,4,66.5,10.3,0,56.8,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,56.8,8.90937,1.386294,4.24988,1
-11,4,0,1,2,427873,0,7400,30.1499,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,10.3,0,56.8,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,56.8,8.90937,1.386294,,0
-11,4,0,1,3,427873,0,7400,31.1499,0,14,1,492.9149,2.622528,0,0,0,495.5374,0,0,0,4,3,4,66.5,10.3,0,56.8,0,251.52,0,0,1.386294,5.527523,0,0,0,1,0,0,56.8,8.90937,1.386294,6.205643,1
-16,4,95,0,1,427903,0,5041.642,36.62423,0,18,1,85.33197,0,0,0,0,85.33197,0,0,0,3,0,1,75,6.9,0,67,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,67,8.525685,0,4.446549,1
-16,4,95,0,2,427903,0,5041.642,37.62423,0,18,1,0,0,0,0,0,0,0,0,0,0,0,1,75,6.9,0,67,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,67,8.525685,0,,0
-16,4,95,0,3,427903,0,5041.642,38.62423,0,18,1,10.31814,3.761823,42.13242,0,0,56.21238,0,0,0,1,0,1,75,6.9,0,67,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,67,8.525685,0,4.029137,1
-16,4,95,0,1,427904,0,4147.214,31.51814,1,16,1,19.88764,7.37998,0,0,0,27.26762,0,0,0,1,0,1,77.1,17.2,0,60.2,990,965,0,0,0,6.872128,0,4.564348,6.948998,1,0,0,60.2,8.330433,0,3.3057,1
-16,4,95,0,2,427904,0,4147.214,32.51814,1,16,1,25.31646,0,0,0,0,25.31646,0,0,0,2,0,1,77.1,17.2,0,60.2,990,965,0,0,0,6.872128,0,4.564348,6.948998,1,0,0,60.2,8.330433,0,3.231455,1
-16,4,95,0,3,427904,0,4147.214,33.51814,1,16,1,41.46604,0,0,0,0,41.46604,0,0,0,3,0,1,77.1,17.2,0,60.2,990,965,0,0,0,6.872128,0,4.564348,6.948998,1,0,0,60.2,8.330433,0,3.724875,1
-10,4,50,1,1,427905,0,7624.633,17.62628,1,13,1,10.30397,5.409583,0,0,0,15.71355,0,0,0,2,0,3,80.9,3.4,0,100,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,100,8.939271,1.098612,2.754523,1
-10,4,50,1,2,427905,0,7624.633,18.62628,1,13,1,58.73579,0,0,0,0,58.73579,0,0,0,2,0,3,80.9,3.4,0,100,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,100,8.939271,1.098612,4.07305,1
-10,4,50,1,3,427905,0,7624.633,19.62628,1,13,1,16.03815,0,0,0,0,16.03815,0,0,0,1,0,3,80.9,3.4,0,100,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,100,8.939271,1.098612,2.77497,1
-10,4,50,1,1,427906,0,7624.633,57.2731,1,13,1,7.181865,0,0,0,0,7.181865,0,0,0,0,0,3,89.9,10.3,0,84.1,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,84.1,8.939271,1.098612,1.971559,1
-10,4,50,1,2,427906,0,7624.633,58.2731,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,10.3,0,84.1,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,84.1,8.939271,1.098612,,0
-10,4,50,1,3,427906,0,7624.633,59.2731,1,13,1,35.32727,0,34.24361,0,0,69.57087,0,0,0,2,0,3,89.9,10.3,0,84.1,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,84.1,8.939271,1.098612,4.242346,1
-10,4,50,1,1,427907,0,7624.633,60.77755,0,8,1,44.82226,36.0948,0,0,365.188,446.1051,1,0,0,6,0,3,91.5,17.2,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,73.9,8.939271,1.098612,6.100554,1
-10,4,50,1,2,427907,0,7624.633,61.77755,0,8,1,22.72727,62.36269,0,0,0,85.08997,0,0,0,4,0,3,91.5,17.2,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,73.9,8.939271,1.098612,4.443709,1
-10,4,50,1,3,427907,0,7624.633,62.77755,0,8,1,29.90897,74.46901,33.81014,0,0,138.1881,0,0,0,4,0,3,91.5,17.2,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,73.9,8.939271,1.098612,4.928616,1
-6,4,25,1,1,427938,0,1407.625,37.07324,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,65.4,10.3,0,56.8,187.2,0,0,0,0,0,0,3.258096,6.618472,1,0,0,56.8,7.250369,0,,0
-6,4,25,1,2,427938,0,1407.625,38.07324,0,14,1,7.102273,0,0,0,0,7.102273,0,0,0,1,0,1,65.4,10.3,0,56.8,187.2,0,0,0,0,0,0,3.258096,6.618472,1,0,0,56.8,7.250369,0,1.960415,1
-11,4,0,1,1,427966,0,12213.49,58.41752,1,12,1,110.1721,2.489879,0,0,0,112.6619,0,0,0,7,0,1,80.9,3.4,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,9.410378,0,4.724391,1
-11,4,0,1,2,427966,0,12213.49,59.41752,1,12,1,16.31702,1.771562,40.09324,0,0,58.18182,0,0,0,2,0,1,80.9,3.4,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,9.410378,0,4.063573,1
-11,4,0,1,3,427966,0,12213.49,60.41752,1,12,1,21.37666,8.332621,0,0,0,29.70928,0,0,0,2,0,1,80.9,3.4,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,9.410378,0,3.391459,1
-11,4,0,1,4,427966,0,12213.49,61.41752,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,80.9,3.4,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,9.410378,0,,0
-11,4,0,1,5,427966,0,12213.49,62.41752,1,12,1,8.781173,0,0,0,0,8.781173,0,0,0,1,0,1,80.9,3.4,0,79.5,0,0,0,0,0,0,0,0,0,0,0,0,79.5,9.410378,0,2.17261,1
-11,4,0,1,1,427986,0,2545.455,23.24983,1,16,1,31.45286,3.606389,26.79031,0,0,61.84956,0,0,0,2,0,1,67.2,13.8,0,51.1,0,166.08,0,0,0,5.11247,0,0,0,0,0,0,51.1,7.842457,0,4.124705,1
-11,4,0,1,2,427986,0,2545.455,24.24983,1,16,1,65.93276,3.716856,0,0,0,69.64962,0,0,0,6,0,1,67.2,13.8,0,51.1,0,166.08,0,0,0,5.11247,0,0,0,0,0,0,51.1,7.842457,0,4.243477,1
-11,4,0,1,3,427986,0,2545.455,25.24983,1,16,1,81.49111,4.993498,30.25574,0,0,116.7404,0,0,0,3,3,1,67.2,13.8,0,51.1,0,166.08,0,0,0,5.11247,0,0,0,0,0,0,51.1,7.842457,0,4.759952,1
-10,4,50,0,1,428026,0,8135.484,26.03422,1,14,1,17.51674,0,0,0,0,17.51674,0,0,0,1,0,3,72.9,0,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,9.004113,1.098612,2.863157,1
-10,4,50,0,2,428026,0,8135.484,27.03422,1,14,1,40.89489,10.32197,0,0,0,51.21686,0,0,0,3,0,3,72.9,0,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,9.004113,1.098612,3.936069,1
-10,4,50,0,3,428026,0,8135.484,28.03422,1,14,1,30.34244,7.910707,0,0,0,38.25314,0,0,0,4,0,3,72.9,0,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,9.004113,1.098612,3.644226,1
-10,4,50,0,4,428026,0,8135.484,29.03422,1,14,1,63.41079,11.38243,0,0,0,74.79323,0,0,0,8,0,3,72.9,0,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,9.004113,1.098612,4.314727,1
-10,4,50,0,5,428026,0,8135.484,30.03422,1,14,1,79.24866,16.0644,13.95349,35.77818,0,109.2665,0,0,3,6,0,3,72.9,0,0,79.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,79.5,9.004113,1.098612,4.69379,1
-10,4,50,0,1,428027,0,8135.484,26.2423,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,96.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.004113,1.098612,,0
-10,4,50,0,2,428027,0,8135.484,27.2423,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,96.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.004113,1.098612,,0
-10,4,50,0,3,428027,0,8135.484,28.2423,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,96.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.004113,1.098612,,0
-10,4,50,0,4,428027,0,8135.484,29.2423,0,15,1,14.57267,0,0,0,0,14.57267,0,0,0,1,0,3,70.7,3.4,0,96.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.004113,1.098612,2.679147,1
-10,4,50,0,5,428027,0,8135.484,30.2423,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,96.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.004113,1.098612,,0
-10,4,50,0,1,428028,0,8135.484,2.822724,0,14,1,23.18393,0,0,0,0,23.18393,0,0,0,2,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.004113,1.098612,3.143459,1
-10,4,50,0,2,428028,0,8135.484,3.822724,0,14,1,10.41667,2.130682,0,0,0,12.54735,0,0,0,2,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.004113,1.098612,2.529509,1
-10,4,50,0,3,428028,0,8135.484,4.822724,0,14,1,6.501951,4.031209,0,0,0,10.53316,0,0,0,1,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.004113,1.098612,2.354528,1
-10,4,50,0,4,428028,0,8135.484,5.822724,0,14,1,16.54195,14.86806,0,0,0,31.41,0,0,0,3,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.004113,1.098612,3.447126,1
-10,4,50,0,5,428028,0,8135.484,6.822724,0,14,1,6.08229,11.21646,0,0,0,17.29875,0,0,0,1,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.004113,1.098612,2.850634,1
-13,4,0,1,1,428033,0,3439.296,25.10883,1,12,1,15.32176,0,2.553626,0,0,17.87538,0,0,0,1,0,2,70.7,17.2,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,8.143312,.6931472,2.883425,1
-13,4,0,1,2,428033,0,3439.296,26.10883,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,70.7,17.2,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,8.143312,.6931472,,0
-13,4,0,1,3,428033,0,3439.296,27.10883,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,70.7,17.2,0,69.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,69.3,8.143312,.6931472,,0
-13,4,0,1,1,428034,0,3439.296,5.253936,1,12,1,228.5495,0,0,0,0,228.5495,0,0,0,7,0,2,96.7,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,92.6,8.143312,.6931472,5.431753,1
-13,4,0,1,2,428034,0,3439.296,6.253936,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,92.6,8.143312,.6931472,,0
-13,4,0,1,3,428034,0,3439.296,7.253936,1,12,1,33.10404,1.289768,0,0,0,34.39381,0,0,0,3,0,2,96.7,9.967326,0,92.6,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,92.6,8.143312,.6931472,3.537877,1
-13,4,0,1,1,428063,0,3515.542,35.39767,0,12,1,43.92237,0,0,0,0,43.92237,0,0,0,5,0,1,66.5,27.6,0,51.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,51.1,8.165234,0,3.782424,1
-13,4,0,1,2,428063,0,3515.542,36.39767,0,12,1,11.72058,0,30.00469,0,0,41.72527,0,0,0,0,1,1,66.5,27.6,0,51.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,51.1,8.165234,0,3.731107,1
-13,4,0,1,3,428063,0,3515.542,37.39767,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,27.6,0,51.1,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,1,0,0,51.1,8.165234,.6931472,,0
-13,4,0,1,4,428063,0,3515.542,38.39767,0,12,1,13.9589,0,0,0,0,13.9589,0,0,0,1,0,2,66.5,27.6,0,51.1,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,1,0,0,51.1,8.165234,.6931472,2.636117,1
-13,4,0,1,5,428063,0,3515.542,39.39767,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,27.6,0,51.1,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,1,0,0,51.1,8.165234,.6931472,,0
-11,4,0,1,1,428075,0,6167.155,54.22861,1,14,1,291.5404,0,0,0,1091.35,1382.89,1,0,0,7,0,1,79.3,6.9,1,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.727155,0,7.231931,1
-11,4,0,1,2,428075,0,6167.155,55.22861,1,14,1,37.64204,0,0,0,0,37.64204,0,0,0,1,0,1,79.3,6.9,1,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.727155,0,3.628122,1
-11,4,0,1,3,428075,0,6167.155,56.22861,1,14,1,40.31209,11.61682,0,0,1292.046,1343.975,1,0,0,4,0,1,79.3,6.9,1,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.727155,0,7.203387,1
-15,4,95,1,1,428080,0,9492.082,55.2909,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,13.8,0,85.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.158319,.6931472,,0
-15,4,95,1,2,428080,0,9492.082,56.2909,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,13.8,0,85.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.158319,.6931472,,0
-15,4,95,1,3,428080,0,9492.082,57.2909,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,13.8,0,85.2,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.158319,.6931472,,0
-15,4,95,1,1,428081,0,9492.082,53.58522,1,12,1,6.18238,0,0,0,0,6.18238,0,0,0,1,0,2,65.4,10.3,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.158319,.6931472,1.821703,1
-15,4,95,1,2,428081,0,9492.082,54.58522,1,12,1,56.22633,0,23.67424,0,0,79.90057,0,0,0,5,1,2,65.4,10.3,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.158319,.6931472,4.380783,1
-15,4,95,1,3,428081,0,9492.082,55.58522,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,65.4,10.3,0,78.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,78.4,9.158319,.6931472,,0
-13,4,0,1,1,428088,0,7954.839,2.926763,0,12,1,23.27935,0,0,0,0,23.27935,0,0,0,3,0,4,83.39137,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.981662,1.386294,3.147567,1
-13,4,0,1,2,428088,0,7954.839,3.926763,0,12,1,17.24942,0,0,0,0,17.24942,0,0,0,2,0,4,83.39137,9.967326,0,81.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.981662,1.386294,2.847778,1
-13,4,0,1,3,428088,0,7954.839,4.926763,0,12,1,12.39846,0,0,0,0,12.39846,0,0,0,1,0,5,83.39137,9.967326,0,81.5,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.5,8.981662,1.609438,2.517572,1
-13,4,0,1,1,428089,0,7954.839,25.93019,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,10.3,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.981662,1.386294,,0
-13,4,0,1,2,428089,0,7954.839,26.93019,0,16,1,163.1702,0,23.31002,0,0,186.4802,0,0,0,4,1,4,61.2,10.3,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.981662,1.386294,5.228325,1
-13,4,0,1,3,428089,0,7954.839,27.93019,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,61.2,10.3,0,61.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,61.4,8.981662,1.609438,,0
-13,4,0,1,1,428090,0,7954.839,.7802874,0,12,1,22.26721,0,0,0,0,22.26721,0,0,0,2,0,4,83.39137,9.967326,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981662,1.386294,3.103115,1
-13,4,0,1,2,428090,0,7954.839,1.780288,0,12,1,13.51981,2.307692,0,0,0,15.82751,0,0,0,1,0,4,83.39137,9.967326,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981662,1.386294,2.761749,1
-13,4,0,1,3,428090,0,7954.839,2.780288,0,12,1,7.695596,0,0,0,0,7.695596,0,0,0,1,0,5,83.39137,9.967326,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981662,1.609438,2.040648,1
-13,4,0,1,1,428091,0,7954.839,23.6167,1,12,1,44.75708,0,0,0,0,44.75708,0,0,0,1,0,4,77.7,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.981662,1.386294,3.80125,1
-13,4,0,1,2,428091,0,7954.839,24.6167,1,12,1,77.80886,17.59907,28.33566,0,676.5455,800.2891,1,0,0,5,1,4,77.7,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.981662,1.386294,6.684973,1
-13,4,0,1,3,428091,0,7954.839,25.6167,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,69.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,69.3,8.981662,1.609438,,0
-11,4,0,1,1,428095,0,879.7654,22.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.3,6.9,0,76.1,0,0,0,0,0,0,0,0,0,1,0,0,76.1,6.780791,0,,0
-11,4,0,1,2,428095,0,879.7654,23.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.3,6.9,0,76.1,0,0,0,0,0,0,0,0,0,1,0,0,76.1,6.780791,0,,0
-11,4,0,1,3,428095,0,879.7654,24.88296,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,79.3,6.9,0,76.1,0,0,0,0,0,0,0,0,0,1,0,0,76.1,6.780791,0,,0
-11,4,0,0,1,428096,0,3841.056,30.42026,1,15,1,6.128703,20.68437,0,0,0,26.81307,0,0,0,1,0,1,67.6,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.253763,0,3.28889,1
-11,4,0,0,2,428096,0,3841.056,31.42026,1,15,1,9.376465,22.03469,0,84.38818,0,31.41116,0,0,6,1,0,1,67.6,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.253763,0,3.447163,1
-11,4,0,0,3,428096,0,3841.056,32.42026,1,15,1,22.35598,25.77386,30.95443,0,0,79.08427,0,0,0,2,1,1,67.6,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.253763,0,4.370514,1
-15,4,95,1,1,428113,0,9858.064,33.46749,1,12,1,6.18238,4.528594,0,0,0,10.71097,0,0,0,1,0,4,66.5,6.9,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.196147,1.386294,2.371269,1
-15,4,95,1,2,428113,0,9858.064,34.46749,1,12,1,9.469697,0,0,0,0,9.469697,0,0,0,1,0,4,66.5,6.9,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.196147,1.386294,2.248097,1
-15,4,95,1,3,428113,0,9858.064,35.46749,1,12,1,63.52406,1.517122,0,0,0,65.04118,0,0,0,3,0,4,66.5,6.9,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,80.7,9.196147,1.386294,4.175021,1
-15,4,95,1,1,428114,0,9858.064,31.81383,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,17.2,0,65.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.196147,1.386294,,0
-15,4,95,1,2,428114,0,9858.064,32.81383,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,17.2,0,65.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.196147,1.386294,,0
-15,4,95,1,3,428114,0,9858.064,33.81383,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,17.2,0,65.9,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,65.9,9.196147,1.386294,,0
-15,4,95,1,1,428115,0,9858.064,7.195072,1,12,1,5.151984,0,0,0,0,5.151984,0,0,0,1,0,4,86.7,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.196147,1.386294,1.639382,1
-15,4,95,1,2,428115,0,9858.064,8.195072,1,12,1,5.681818,0,0,0,0,5.681818,0,0,0,1,0,4,86.7,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.196147,1.386294,1.737271,1
-15,4,95,1,3,428115,0,9858.064,9.195072,1,12,1,5.20156,0,0,0,0,5.20156,0,0,0,1,0,4,86.7,9.967326,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.196147,1.386294,1.648959,1
-15,4,95,1,1,428116,0,9858.064,11.2909,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,9.967326,0,88.9,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.196147,1.386294,,0
-15,4,95,1,2,428116,0,9858.064,12.2909,1,12,1,119.6733,0,22.72727,0,0,142.4006,0,0,0,24,1,4,75,9.967326,0,88.9,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.196147,1.386294,4.958644,1
-15,4,95,1,3,428116,0,9858.064,13.2909,1,12,1,94.71175,0,24.70741,0,0,119.4192,0,0,0,33,1,4,75,9.967326,0,88.9,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.196147,1.386294,4.78264,1
-11,4,0,1,1,428117,0,8719.648,10.92129,1,11,1,0,6.661515,0,0,0,6.661515,0,0,0,0,0,6,96.7,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.073449,1.791759,1.896347,1
-11,4,0,1,2,428117,0,8719.648,11.92129,1,11,1,7.102273,2.930871,24.62121,0,0,34.65436,0,0,0,0,1,6,96.7,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.073449,1.791759,3.545424,1
-11,4,0,1,3,428117,0,8719.648,12.92129,1,11,1,12.57044,5.674036,10.40312,0,0,28.64759,0,0,0,1,1,6,96.7,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.073449,1.791759,3.355069,1
-11,4,0,1,4,428117,0,8719.648,13.92129,1,11,1,7.877117,2.304057,21.26822,0,0,31.44939,0,0,0,1,1,6,96.7,9.967326,0,92.6,0,0,1,1,1.791759,0,0,0,0,0,0,0,92.6,9.073449,1.791759,3.44838,1
-11,4,0,1,5,428117,0,8719.648,14.92129,1,11,1,14.31127,0,10.73345,0,0,25.04472,0,0,0,1,1,7,96.7,9.967326,0,92.6,0,0,1,1,1.94591,0,0,0,0,0,0,0,92.6,9.073449,1.94591,3.220663,1
-11,4,0,1,1,428118,0,8719.648,6.105407,1,11,1,189.9021,7.588871,6.18238,0,0,203.6734,0,0,0,9,0,6,98.3,9.967326,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,9.073449,1.791759,5.316517,1
-11,4,0,1,2,428118,0,8719.648,7.105407,1,11,1,11.36364,8.016098,0,0,0,19.37973,0,0,0,1,0,6,98.3,9.967326,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,9.073449,1.791759,2.964228,1
-11,4,0,1,3,428118,0,8719.648,8.105408,1,11,1,0,1.083658,0,0,0,1.083658,0,0,0,0,0,6,98.3,9.967326,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,9.073449,1.791759,.0803428,1
-11,4,0,1,4,428118,0,8719.648,9.105408,1,11,1,5.513982,0,0,0,0,5.513982,0,0,0,1,0,6,98.3,9.967326,0,85.2,0,0,1,1,1.791759,0,0,0,0,0,0,0,85.2,9.073449,1.791759,1.707287,1
-11,4,0,1,5,428118,0,8719.648,10.10541,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,98.3,9.967326,0,85.2,0,0,1,1,1.94591,0,0,0,0,0,0,0,85.2,9.073449,1.94591,,0
-11,4,0,1,1,428119,0,8719.648,9.637235,1,11,1,11.33436,6.816074,0,0,0,18.15044,0,0,0,2,0,6,91.7,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.073449,1.791759,2.898695,1
-11,4,0,1,2,428119,0,8719.648,10.63723,1,11,1,0,3.285985,0,0,0,3.285985,0,0,0,0,0,6,91.7,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.073449,1.791759,1.189666,1
-11,4,0,1,3,428119,0,8719.648,11.63723,1,11,1,0,3.571738,0,0,0,3.571738,0,0,0,0,0,6,91.7,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.073449,1.791759,1.273052,1
-11,4,0,1,4,428119,0,8719.648,12.63723,1,11,1,5.907838,4.686884,0,0,0,10.59472,0,0,0,1,0,6,91.7,9.967326,0,88.9,0,0,1,1,1.791759,0,0,0,0,0,0,0,88.9,9.073449,1.791759,2.360356,1
-11,4,0,1,5,428119,0,8719.648,13.63723,1,11,1,110.5367,3.001789,0,0,0,113.5385,0,0,0,5,1,7,91.7,9.967326,0,88.9,0,0,1,1,1.94591,0,0,0,0,0,0,0,88.9,9.073449,1.94591,4.732141,1
-11,4,0,1,1,428120,0,8719.648,34.17933,0,13,1,168.2638,51.61772,0,0,0,219.8815,0,0,0,12,0,6,94,3.4,0,97.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,97.7,9.073449,1.791759,5.393089,1
-11,4,0,1,2,428120,0,8719.648,35.17933,0,13,1,26.98864,2.651515,0,0,0,29.64015,0,0,0,3,0,6,94,3.4,0,97.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,97.7,9.073449,1.791759,3.38913,1
-11,4,0,1,3,428120,0,8719.648,36.17933,0,13,1,255.2449,45.81274,0,0,2346.584,2647.642,3,0,0,13,0,6,94,3.4,0,97.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,97.7,9.073449,1.791759,7.881424,1
-11,4,0,1,4,428120,0,8719.648,37.17933,0,13,1,40.56715,29.78338,0,0,0,70.35053,0,0,0,5,0,6,94,3.4,0,97.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,97.7,9.073449,1.791759,4.25349,1
-11,4,0,1,5,428120,0,8719.648,38.17933,0,13,1,43.47048,38.0322,0,0,0,81.50269,0,0,0,5,0,7,94,3.4,0,97.7,0,0,0,0,1.94591,0,0,0,0,0,0,0,97.7,9.073449,1.94591,4.400636,1
-11,4,0,1,1,428121,0,8719.648,31.76728,1,11,1,12.87996,0,0,0,0,12.87996,0,0,0,1,0,6,86.2,13.8,0,76.1,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.1,9.073449,1.791759,2.555673,1
-11,4,0,1,2,428121,0,8719.648,32.76728,1,11,1,22.25379,4.829545,0,0,0,27.08333,0,0,0,2,0,6,86.2,13.8,0,76.1,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.1,9.073449,1.791759,3.298918,1
-11,4,0,1,3,428121,0,8719.648,33.76728,1,11,1,100.2818,15.7694,23.40702,0,233.3983,372.8565,1,0,0,11,1,6,86.2,13.8,0,76.1,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.1,9.073449,1.791759,5.921194,1
-11,4,0,1,4,428121,0,8719.648,34.76728,1,11,1,70.16542,6.498621,23.43442,0,664.2654,764.364,1,0,0,5,0,6,86.2,13.8,0,76.1,0,0,0,0,1.791759,0,0,0,0,0,0,0,76.1,9.073449,1.791759,6.639044,1
-11,4,0,1,5,428121,0,8719.648,35.76728,1,11,1,38.28265,1.860465,0,0,348.8193,388.9624,1,0,0,3,1,7,86.2,13.8,0,76.1,0,0,0,0,1.94591,0,0,0,0,0,0,0,76.1,9.073449,1.94591,5.963483,1
-11,4,0,1,1,428122,0,8719.648,7.438741,1,11,1,0,4.111283,0,0,0,4.111283,0,0,0,0,0,6,85,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,9.073449,1.791759,1.413735,1
-11,4,0,1,2,428122,0,8719.648,8.438741,1,11,1,0,3.285985,0,0,0,3.285985,0,0,0,0,0,6,85,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,9.073449,1.791759,1.189666,1
-11,4,0,1,3,428122,0,8719.648,9.438741,1,11,1,5.20156,1.083658,0,0,0,6.285219,0,0,0,1,0,6,85,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,9.073449,1.791759,1.838201,1
-11,4,0,1,4,428122,0,8719.648,10.43874,1,11,1,3.938559,5.884206,0,0,0,9.822764,0,0,0,1,0,6,85,9.967326,0,59.3,0,0,1,1,1.791759,0,0,0,0,0,0,0,59.3,9.073449,1.791759,2.284703,1
-11,4,0,1,5,428122,0,8719.648,11.43874,1,11,1,0,2.325581,0,0,0,2.325581,0,0,0,0,0,7,85,9.967326,0,59.3,0,0,1,1,1.94591,0,0,0,0,0,0,0,59.3,9.073449,1.94591,.8439701,1
-11,4,0,1,1,428127,0,8849.267,25.1718,0,13,1,24.61696,0,0,0,0,24.61696,0,0,0,2,0,2,47.9,17.2,0,39.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,39.8,9.088202,.6931472,3.203435,1
-11,4,0,1,2,428127,0,8849.267,26.1718,0,13,1,34.13033,0,43.63807,0,0,77.7684,0,0,0,2,0,2,47.9,17.2,0,39.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,39.8,9.088202,.6931472,4.353735,1
-11,4,0,1,3,428127,0,8849.267,27.1718,0,13,1,81.36285,7.7816,0,0,0,89.14445,0,0,0,6,1,2,47.9,17.2,0,39.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,39.8,9.088202,.6931472,4.490258,1
-11,4,0,1,1,428128,0,8849.267,22.93498,1,13,1,18.1716,2.349336,0,0,0,20.52094,0,0,0,1,0,2,40.4,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,9.088202,.6931472,3.021446,1
-11,4,0,1,2,428128,0,8849.267,23.93498,1,13,1,9.376465,0,0,0,0,9.376465,0,0,0,1,0,2,40.4,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,9.088202,.6931472,2.238203,1
-11,4,0,1,3,428128,0,8849.267,24.93498,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,40.4,10.3,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,9.088202,.6931472,,0
-15,4,95,0,1,428144,0,1867.449,22.81725,1,14,1,49.97424,5.074704,0,0,0,55.04894,0,0,0,6,0,1,84.6,0,0,84.1,92,0,0,0,0,0,0,4.564348,4.573082,0,0,0,84.1,7.532864,0,4.008223,1
-15,4,95,0,2,428144,0,1867.449,23.81725,1,14,1,62.5,8.89678,23.20076,0,0,94.59753,0,0,0,3,1,1,84.6,0,0,84.1,92,0,0,0,0,0,0,4.564348,4.573082,0,0,0,84.1,7.532864,0,4.549632,1
-15,4,95,0,3,428144,0,1867.449,24.81725,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,84.6,0,0,84.1,92,0,0,0,0,0,0,4.564348,4.573082,0,0,0,84.1,7.532864,0,,0
-15,4,95,0,1,428145,0,2485.161,20.83778,1,13,1,26.04699,0,0,0,0,26.04699,0,0,0,1,0,1,51.6,10.3,0,53.4,202.5,0,0,0,0,0,0,4.564348,5.362033,1,0,0,53.4,7.818495,0,3.259902,1
-15,4,95,0,2,428145,0,2485.161,21.83778,1,13,1,45.24144,9.282701,0,0,0,54.52414,0,0,0,1,0,1,51.6,10.3,0,53.4,202.5,0,0,0,0,0,0,4.564348,5.362033,1,0,0,53.4,7.818495,0,3.998644,1
-15,4,95,0,3,428145,0,2485.161,22.83778,1,13,1,15.04729,5.33104,0,0,1140.026,1160.404,1,0,0,2,0,1,51.6,10.3,0,53.4,202.5,0,0,0,0,0,0,4.564348,5.362033,1,0,0,53.4,7.818495,0,7.056524,1
-11,4,0,1,1,428191,0,14173.61,41.03765,0,16,1,15.32176,0,7.660879,84.26966,0,22.98264,0,0,5,1,0,5,78.2,3.4,0,54.5,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,54.5,9.559207,1.609438,3.134739,1
-11,4,0,1,2,428191,0,14173.61,42.03765,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,3.4,0,54.5,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,54.5,9.559207,1.609438,,0
-11,4,0,1,3,428191,0,14173.61,43.03765,0,16,1,159.8237,0,0,0,0,159.8237,0,0,0,5,0,5,78.2,3.4,0,54.5,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,54.5,9.559207,1.609438,5.074071,1
-11,4,0,1,1,428192,0,14173.61,9.393566,1,16,1,24.51481,0,0,342.1859,3014.229,3038.744,1,0,14,9,0,5,88.3,9.967326,0,92.6,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,92.6,9.559207,1.609438,8.019199,1
-11,4,0,1,2,428192,0,14173.61,10.39357,1,16,1,11.72058,1.781528,0,23.44116,0,13.50211,0,0,1,1,0,5,88.3,9.967326,0,92.6,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,92.6,9.559207,1.609438,2.602846,1
-11,4,0,1,3,428192,0,14173.61,11.39357,1,16,1,9.458298,0,0,0,0,9.458298,0,0,0,2,0,5,88.3,9.967326,0,92.6,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,92.6,9.559207,1.609438,2.246892,1
-11,4,0,1,1,428193,0,14173.61,11.33744,0,16,1,20.42901,18.03371,18.89683,0,0,57.35955,0,0,0,2,0,5,85,9.967326,1,88.9,0,215.4,1,0,1.609438,5.372497,0,0,0,0,0,0,88.9,9.559207,1.609438,4.049339,1
-11,4,0,1,2,428193,0,14173.61,12.33744,0,16,1,0,14.90858,0,0,0,14.90858,0,0,0,0,0,5,85,9.967326,1,88.9,0,215.4,1,0,1.609438,5.372497,0,0,0,0,0,0,88.9,9.559207,1.609438,2.701937,1
-11,4,0,1,3,428193,0,14173.61,13.33744,0,16,1,26.6552,17.36457,42.99226,0,0,87.01204,0,0,0,3,0,5,85,9.967326,1,88.9,0,215.4,1,0,1.609438,5.372497,0,0,0,0,0,0,88.9,9.559207,1.609438,4.466046,1
-11,4,0,1,1,428194,0,14173.61,38.0178,1,16,1,35.47498,0,0,263.0235,0,35.47498,0,0,12,1,0,5,79.8,13.8,0,67,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,67,9.559207,1.609438,3.568828,1
-11,4,0,1,2,428194,0,14173.61,39.0178,1,16,1,11.72058,0,0,23.44116,0,11.72058,0,0,1,1,0,5,79.8,13.8,0,67,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,67,9.559207,1.609438,2.461346,1
-11,4,0,1,3,428194,0,14173.61,40.0178,1,16,1,31.16939,3.198624,0,0,0,34.36802,0,0,0,2,0,5,79.8,13.8,0,67,0,215.4,0,0,1.609438,5.372497,0,0,0,0,0,0,67,9.559207,1.609438,3.537126,1
-11,4,0,1,1,428195,0,14173.61,3.742642,1,16,1,13.524,4.417773,0,0,0,17.94178,0,0,0,1,0,5,83.39137,9.967326,0,85.2,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,85.2,9.559207,1.609438,2.887132,1
-11,4,0,1,2,428195,0,14173.61,4.742642,1,16,1,7.735584,13.6662,0,0,0,21.40178,0,0,0,0,0,5,83.39137,9.967326,0,85.2,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,85.2,9.559207,1.609438,3.063474,1
-11,4,0,1,3,428195,0,14173.61,5.742642,1,16,1,37.40327,4.230439,0,0,0,41.63371,0,0,0,3,0,5,83.39137,9.967326,0,85.2,0,215.4,1,1,1.609438,5.372497,0,0,0,0,0,0,85.2,9.559207,1.609438,3.72891,1
-13,4,0,0,1,428204,0,7910.823,7.939767,0,12,1,37.28805,2.221655,0,0,0,39.5097,0,0,0,2,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,3.676546,1
-13,4,0,0,2,428204,0,7910.823,8.939767,0,12,1,9.376465,0,0,0,0,9.376465,0,0,0,1,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,2.238203,1
-13,4,0,0,3,428204,0,7910.823,9.939767,0,12,1,191.724,0,.9028375,0,0,192.6268,0,0,0,6,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,5.260755,1
-13,4,0,0,1,428205,0,7910.823,30.41752,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,84.1,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,84.1,8.976113,1.386294,,0
-13,4,0,0,2,428205,0,7910.823,31.41752,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,84.1,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,84.1,8.976113,1.386294,,0
-13,4,0,0,3,428205,0,7910.823,32.41752,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,84.1,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,84.1,8.976113,1.386294,,0
-13,4,0,0,1,428206,0,7910.823,30.9514,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,0,0,85.2,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,,0
-13,4,0,0,2,428206,0,7910.823,31.9514,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,0,0,85.2,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,,0
-13,4,0,0,3,428206,0,7910.823,32.9514,0,12,1,59.11436,0,0,0,0,59.11436,0,0,0,2,0,4,76.1,0,0,85.2,450,492.84,0,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,4.079474,1
-13,4,0,0,1,428207,0,7910.823,6.518823,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,,0
-13,4,0,0,2,428207,0,7910.823,7.518823,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,,0
-13,4,0,0,3,428207,0,7910.823,8.518823,0,12,1,80.07309,0,.9028375,0,0,80.97592,0,0,0,1,0,4,90,9.967326,0,85.2,450,492.84,1,0,1.386294,6.200184,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.386294,4.394152,1
-11,4,0,1,1,428222,0,10872.73,14.19028,1,11,1,40.48583,18.57287,0,0,490.0101,549.0688,1,0,0,5,0,3,64.4,6.9,1,83,0,0,1,1,1.098612,0,0,0,0,0,0,0,83,9.294105,1.098612,6.308224,1
-11,4,0,1,2,428222,0,10872.73,15.19028,1,11,1,71.93007,5.757576,0,0,0,77.68764,0,0,0,4,0,3,64.4,6.9,1,83,0,0,1,1,1.098612,0,0,0,0,0,0,0,83,9.294105,1.098612,4.352696,1
-11,4,0,1,3,428222,0,10872.73,16.19028,1,11,1,66.26764,27.04147,0,0,0,93.3091,0,0,0,7,0,3,64.4,6.9,1,83,0,0,1,1,1.098612,0,0,0,0,0,0,0,83,9.294105,1.098612,4.535918,1
-11,4,0,1,1,428223,0,10872.73,37.7577,1,11,1,125.3694,0,37.95547,0,0,163.3249,0,0,0,3,0,3,72.3,17.2,0,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.294105,1.098612,5.095741,1
-11,4,0,1,2,428223,0,10872.73,38.7577,1,11,1,28.82517,5.664336,0,0,0,34.48951,0,0,0,3,0,3,72.3,17.2,0,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.294105,1.098612,3.540655,1
-11,4,0,1,3,428223,0,10872.73,39.7577,1,11,1,14.96366,3.035485,0,0,0,17.99915,0,0,0,1,0,3,72.3,17.2,0,56.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,56.8,9.294105,1.098612,2.890324,1
-19,4,25,1,1,428233,0,6419.941,17.91102,1,14,1,30.36437,1.907895,33.19332,0,0,65.46558,0,0,0,3,0,5,38.3,3.4,0,77.3,120,120,1,1,1.609438,4.787492,0,3.258096,6.173786,1,0,0,77.3,8.76732,1.609438,4.181525,1
-19,4,25,1,2,428233,0,6419.941,18.91102,1,14,1,275.2681,4.223776,20.8718,0,0,300.3636,0,0,0,7,0,5,38.3,3.4,0,77.3,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,1,0,0,77.3,8.76732,1.609438,5.704994,1
-19,4,25,1,3,428233,0,6419.941,19.91102,1,14,1,64.34373,30.04275,0,0,0,94.38649,0,0,0,10,0,5,38.3,3.4,0,77.3,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,1,0,0,77.3,8.76732,1.609438,4.547398,1
-19,4,25,1,1,428234,0,6419.941,39.38124,1,14,1,598.1124,138.7146,0,0,1251.994,1988.821,1,0,0,23,0,5,44.1,31,1,69.3,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,1,0,69.3,8.76732,1.609438,7.595297,1
-19,4,25,1,2,428234,0,6419.941,40.38124,1,14,1,156.6434,161.9301,0,0,0,318.5734,0,0,0,18,0,5,44.1,31,1,69.3,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,1,0,69.3,8.76732,1.609438,5.763853,1
-19,4,25,1,3,428234,0,6419.941,41.38124,1,14,1,99.29457,13.03549,27.00299,0,0,139.3331,0,0,0,4,4,5,44.1,31,1,69.3,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,1,0,69.3,8.76732,1.609438,4.936867,1
-19,4,25,1,1,428235,0,6419.941,16.06571,1,14,1,264.418,5.086032,0,0,0,269.5041,0,0,0,7,0,5,59.6,3.4,0,65.9,120,120,1,1,1.609438,4.787492,0,3.258096,6.173786,0,0,0,65.9,8.76732,1.609438,5.596583,1
-19,4,25,1,2,428235,0,6419.941,17.06571,1,14,1,78.90443,3.300699,37.41725,0,0,119.6224,0,0,0,5,2,5,59.6,3.4,0,65.9,120,120,1,1,1.609438,4.787492,0,3.258096,6.173786,0,0,0,65.9,8.76732,1.609438,4.78434,1
-19,4,25,1,3,428235,0,6419.941,18.06571,1,14,1,8.550663,0,0,0,0,8.550663,0,0,0,1,0,5,59.6,3.4,0,65.9,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,65.9,8.76732,1.609438,2.146009,1
-19,4,25,1,1,428237,0,6419.941,12,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,92.6,120,120,1,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,92.6,8.76732,1.609438,,0
-19,4,25,1,2,428237,0,6419.941,13,0,14,1,199.1841,14.55478,7.459208,0,0,221.1981,0,0,0,12,0,5,78.3,9.967326,0,92.6,120,120,1,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,92.6,8.76732,1.609438,5.399059,1
-19,4,25,1,3,428237,0,6419.941,14,0,14,1,39.6537,0,0,0,0,39.6537,0,0,0,3,0,5,78.3,9.967326,0,92.6,120,120,1,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,92.6,8.76732,1.609438,3.680184,1
-19,4,25,1,1,428238,0,6419.941,19.45243,0,12,1,10.12146,0,38.2085,0,0,48.32996,0,0,0,1,0,5,85.8,13.8,0,95.5,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,95.5,8.76732,1.609438,3.878052,1
-19,4,25,1,2,428238,0,6419.941,20.45243,0,12,1,27.97203,0,34.73193,0,0,62.70396,0,0,0,2,0,5,85.8,13.8,0,95.5,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,95.5,8.76732,1.609438,4.138425,1
-19,4,25,1,3,428238,0,6419.941,21.45243,0,12,1,190.2522,.6412997,0,0,0,190.8935,0,0,0,5,11,5,85.8,13.8,0,95.5,120,120,0,0,1.609438,4.787492,0,3.258096,6.173786,0,0,0,95.5,8.76732,1.609438,5.251716,1
-14,4,95,1,1,428251,0,4939.003,29.28679,0,14,1,0,0,0,20.60793,488.0629,488.0629,1,0,2,0,0,1,77.1,13.8,0,70.5,464.55,464.55,0,0,0,6.141069,0,4.564348,6.192362,1,0,0,70.5,8.505121,0,6.190444,1
-14,4,95,1,2,428251,0,4939.003,30.28679,0,14,1,0,1.657197,0,0,0,1.657197,0,0,0,0,0,1,77.1,13.8,0,70.5,464.55,464.55,0,0,0,6.141069,0,4.564348,6.192362,1,0,0,70.5,8.505121,0,.5051276,1
-14,4,95,1,3,428251,0,4939.003,31.28679,0,14,1,117.7937,9.16775,26.22453,0,2042.241,2195.427,3,0,0,4,5,1,77.1,13.8,0,70.5,464.55,464.55,0,0,0,6.141069,0,4.564348,6.192362,1,0,0,70.5,8.505121,0,7.694132,1
-11,4,0,0,1,428258,.0068104,7910.823,21.16085,1,11,1,135.2783,41.3664,35.67814,0,814.4889,1026.812,3,0,0,7,2,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.06626,8.976113,.6931472,6.934214,1
-11,4,0,0,2,428258,.0068104,7910.823,22.16085,1,11,1,39.62704,23.86946,0,0,131.4312,194.9277,1,0,0,2,1,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.06626,8.976113,.6931472,5.272629,1
-11,4,0,0,3,428258,.0068104,7910.823,23.16085,1,11,1,131.817,26.63531,0,0,0,158.4523,0,0,0,5,1,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.06626,8.976113,.6931472,5.065454,1
-11,4,0,0,1,428259,0,5371.261,45.76865,1,13,1,100.6984,71.47773,33.90688,0,0,206.083,0,0,0,4,1,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,5.328279,1
-11,4,0,0,2,428259,0,5371.261,46.76865,1,13,1,139.1841,63.7296,0,0,0,202.9138,0,0,0,6,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,5.312781,1
-11,4,0,0,3,428259,0,5371.261,47.76865,1,13,1,106.1779,67.45618,30.78238,0,0,204.4164,0,0,0,3,1,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,5.320159,1
-11,4,0,0,1,428260,0,5371.261,18.23682,0,10,1,157.9808,6.351214,2.140688,0,0,166.4727,0,0,0,7,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,5.114831,1
-11,4,0,0,2,428260,0,5371.261,19.23682,0,10,1,15.44988,.9090909,0,0,0,16.35897,0,0,0,1,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,2.794777,1
-11,4,0,0,3,428260,0,5371.261,20.23682,0,10,1,43.99316,0,0,0,0,43.99316,0,0,0,2,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,3.784034,1
-11,4,0,0,1,428261,0,5371.261,16.30116,1,13,1,207.1154,39.80263,0,0,0,246.918,0,0,0,8,0,4,74.46748,9.967326,.1572505,,0,0,1,1,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,5.509057,1
-11,4,0,0,2,428261,0,5371.261,17.30116,1,13,1,36.36364,31.32867,23.77622,0,0,91.46853,0,0,0,2,1,4,74.46748,9.967326,.1572505,,0,0,1,1,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,4.515995,1
-11,4,0,0,3,428261,0,5371.261,18.30116,1,13,1,7.268063,25.50235,23.08679,0,841.0432,896.9004,1,0,0,0,1,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,6.798945,1
-11,4,0,0,1,428262,0,5371.261,17.15537,1,13,1,12.65182,8.628543,0,0,0,21.28036,0,0,0,2,0,4,74.46748,9.967326,.1572505,,0,0,1,1,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,3.057785,1
-11,4,0,0,2,428262,0,5371.261,18.15537,1,13,1,60.13986,9.160839,0,0,0,69.3007,0,0,0,2,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,4.238455,1
-11,4,0,0,3,428262,0,5371.261,19.15537,1,13,1,98.78153,22.68063,0,0,1169.222,1290.684,2,0,0,3,0,4,74.46748,9.967326,.1572505,,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.06626,8.589005,1.386294,7.162928,1
-13,4,0,0,1,428266,0,1,39.91787,0,12,1,115.3728,0,49.54035,0,0,164.9132,0,0,0,2,8,1,85.1,6.9,0,73.9,150,42,0,0,0,3.73767,1,4.564348,5.061929,1,0,0,73.9,.6931472,0,5.105419,1
-13,4,0,0,2,428266,0,1,40.91787,0,12,1,71.02673,0,0,0,0,71.02673,0,0,0,1,5,1,85.1,6.9,0,73.9,150,42,0,0,0,3.73767,1,4.564348,5.061929,1,0,0,73.9,.6931472,0,4.263056,1
-13,4,0,0,3,428266,0,1,41.91787,0,12,1,5.159071,6.663801,0,0,0,11.82287,0,0,0,1,0,1,85.1,6.9,0,73.9,150,42,0,0,0,3.73767,1,4.564348,5.061929,1,0,0,73.9,.6931472,0,2.470036,1
-13,4,0,0,4,428266,0,1,42.91787,0,12,1,84.33501,0,37.14618,0,0,121.4812,0,0,0,1,4,1,85.1,6.9,0,73.9,150,42,0,0,0,3.73767,1,4.564348,5.061929,1,0,0,73.9,.6931472,0,4.799759,1
-13,4,0,0,5,428266,0,1,43.91787,0,12,1,40.3397,10.25478,0,0,0,50.59448,0,0,0,5,1,1,85.1,6.9,0,73.9,150,42,0,0,0,3.73767,1,4.564348,5.061929,1,0,0,73.9,.6931472,0,3.923842,1
-13,4,0,0,1,428267,0,995.3079,26.60643,0,12,1,10.2145,2.808989,0,0,0,13.02349,0,0,0,2,0,3,79.3,10.3,0,70.5,300,313.94,0,0,1.098612,5.749202,1,4.564348,5.755076,1,0,0,70.5,6.904057,1.098612,2.566755,1
-13,4,0,0,2,428267,0,995.3079,27.60643,0,12,1,22.62072,0,0,0,0,22.62072,0,0,0,1,2,3,79.3,10.3,0,70.5,300,313.94,0,0,1.098612,5.749202,1,4.564348,5.755076,1,0,0,70.5,6.904057,1.098612,3.118866,1
-13,4,0,0,3,428267,0,995.3079,28.60643,0,12,1,111.4359,0,0,0,0,111.4359,0,0,0,3,0,4,79.3,10.3,0,70.5,300,313.94,0,0,1.386294,5.749202,1,4.564348,5.755076,1,0,0,70.5,6.904057,1.386294,4.71345,1
-13,4,0,0,4,428267,0,995.3079,29.60643,0,12,1,4.905002,1.709965,0,0,0,6.614967,0,0,0,0,0,5,79.3,10.3,0,70.5,300,313.94,0,0,1.609438,5.749202,1,4.564348,5.755076,1,0,0,70.5,6.904057,1.609438,1.889335,1
-13,4,0,0,5,428267,0,995.3079,30.60643,0,12,1,15.92357,1.415428,24.76999,0,0,42.10899,0,0,0,1,1,5,79.3,10.3,0,70.5,300,313.94,0,0,1.609438,5.749202,1,4.564348,5.755076,1,0,0,70.5,6.904057,1.609438,3.740261,1
-13,4,0,0,1,428268,0,17.59531,4.021903,0,12,1,27.19612,0,0,0,0,27.19612,0,0,0,1,0,2,83.39137,9.967326,0,77.8,300,358.52,1,0,.6931472,5.881984,1,4.564348,5.755076,1,0,0,77.8,2.922909,.6931472,3.303074,1
-13,4,0,0,3,428268,0,17.59531,6.021903,0,12,1,13.75752,0,0,0,0,13.75752,0,0,0,2,0,2,83.39137,9.967326,0,77.8,300,358.52,1,0,.6931472,5.881984,1,4.564348,5.755076,1,0,0,77.8,2.922909,.6931472,2.621586,1
-13,4,0,0,4,428268,0,17.59531,7.021903,0,12,1,13.57115,5.032959,0,0,0,18.60411,0,0,0,1,0,3,83.39137,9.967326,0,77.8,300,358.52,1,0,1.098612,5.881984,1,4.564348,5.755076,1,0,0,77.8,2.922909,1.098612,2.923383,1
-13,4,0,0,5,428268,0,17.59531,8.021903,0,12,1,25.12385,0,0,0,0,25.12385,0,0,0,1,0,3,83.39137,9.967326,0,77.8,300,358.52,1,0,1.098612,5.881984,1,4.564348,5.755076,1,0,0,77.8,2.922909,1.098612,3.223818,1
-13,4,0,0,1,428269,0,17.59531,22.27789,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,55.3,17.2,0,65.9,300,358.52,0,0,.6931472,5.881984,1,4.564348,5.755076,1,0,0,65.9,2.922909,.6931472,,0
-13,4,0,0,3,428269,0,17.59531,24.27789,1,12,1,61.47894,10.5417,0,0,420.8083,492.8289,1,0,0,3,0,2,55.3,17.2,0,65.9,300,358.52,0,0,.6931472,5.881984,1,4.564348,5.755076,1,0,0,65.9,2.922909,.6931472,6.200162,1
-13,4,0,0,4,428269,0,17.59531,25.27789,1,12,1,22.87708,6.320279,26.56068,0,0,55.75805,0,0,0,2,1,3,55.3,17.2,0,65.9,300,358.52,0,0,1.098612,5.881984,1,4.564348,5.755076,1,0,0,65.9,2.922909,1.098612,4.021022,1
-13,4,0,0,5,428269,0,17.59531,26.27789,1,12,1,20.52371,0,0,0,0,20.52371,0,0,0,2,0,3,55.3,17.2,0,65.9,300,358.52,0,0,1.098612,5.881984,1,4.564348,5.755076,1,0,0,65.9,2.922909,1.098612,3.021581,1
-11,4,0,0,1,428275,0,2834.604,21.98768,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,3.4,0,75,0,0,0,0,0,0,0,0,0,1,0,0,75,7.95001,0,,0
-11,4,0,0,2,428275,0,2834.604,22.98768,0,12,1,23.90999,0,1.054852,0,0,24.96484,0,0,0,0,0,1,71.3,3.4,0,75,0,0,0,0,0,0,0,0,0,1,0,0,75,7.95001,0,3.217468,1
-11,4,0,0,3,428275,0,2834.604,23.98768,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,3.4,0,75,0,0,0,0,0,0,0,0,0,1,0,0,75,7.95001,0,,0
-17,4,25,1,1,428330,0,7960.117,12.79945,1,18,1,53.11543,5.107252,24.66803,0,0,82.8907,0,0,0,4,1,3,50,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,4.417523,1
-17,4,25,1,2,428330,0,7960.117,13.79945,1,18,1,28.78575,0,0,0,0,28.78575,0,0,0,2,0,3,50,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,3.35988,1
-17,4,25,1,3,428330,0,7960.117,14.79945,1,18,1,27.08512,0,0,0,0,27.08512,0,0,0,2,0,3,50,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,3.298985,1
-17,4,25,1,1,428331,0,7960.117,8.966461,1,18,1,23.49336,0,0,0,0,23.49336,0,0,0,1,1,3,71.7,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,3.156718,1
-17,4,25,1,2,428331,0,7960.117,9.966461,1,18,1,4.219409,0,0,0,0,4.219409,0,0,0,1,0,3,71.7,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,1.439695,1
-17,4,25,1,3,428331,0,7960.117,10.96646,1,18,1,8.16853,0,0,0,0,8.16853,0,0,0,1,0,3,71.7,9.967326,0,96.3,650,650,1,1,1.098612,6.476973,0,3.258096,7.863267,0,0,0,96.3,8.982325,1.098612,2.100289,1
-17,4,25,1,1,428332,0,7960.117,37.92471,1,18,1,15.32176,0,0,0,0,15.32176,0,0,0,0,1,3,67,6.9,0,92,650,650,0,0,1.098612,6.476973,0,3.258096,7.863267,0,0,0,92,8.982325,1.098612,2.729274,1
-17,4,25,1,2,428332,0,7960.117,38.92471,1,18,1,0,0,0,0,0,0,0,0,0,0,0,3,67,6.9,0,92,650,650,0,0,1.098612,6.476973,0,3.258096,7.863267,0,0,0,92,8.982325,1.098612,,0
-17,4,25,1,3,428332,0,7960.117,39.92471,1,18,1,52.88048,0,28.00946,0,0,80.88994,0,0,0,1,0,3,67,6.9,0,92,650,650,0,0,1.098612,6.476973,0,3.258096,7.863267,0,0,0,92,8.982325,1.098612,4.393089,1
-11,4,0,0,1,428347,0,14318.47,36.91992,1,17,1,0,0,0,0,0,0,0,0,0,0,0,4,59.6,17.2,0,73.9,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,73.9,9.569376,1.386294,,0
-11,4,0,0,2,428347,0,14318.47,37.91992,1,17,1,11.83712,3.669508,0,0,0,15.50663,0,0,0,1,0,4,59.6,17.2,0,73.9,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,73.9,9.569376,1.386294,2.741268,1
-11,4,0,0,3,428347,0,14318.47,38.91992,1,17,1,68.13611,0,0,0,0,68.13611,0,0,0,4,0,4,59.6,17.2,0,73.9,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,73.9,9.569376,1.386294,4.221507,1
-11,4,0,0,1,428348,0,14318.47,4.610541,0,17,1,8.243174,2.833591,0,0,0,11.07676,0,0,0,1,0,4,83.39137,9.967326,0,81.5,0,366,1,0,1.386294,5.902633,0,0,0,0,0,0,81.5,9.569376,1.386294,2.40485,1
-11,4,0,0,2,428348,0,14318.47,5.610541,0,17,1,0,3.077652,0,0,0,3.077652,0,0,0,0,0,4,83.39137,9.967326,0,81.5,0,366,1,0,1.386294,5.902633,0,0,0,0,0,0,81.5,9.569376,1.386294,1.124167,1
-11,4,0,0,3,428348,0,14318.47,6.610541,0,17,1,23.86649,1.950585,0,0,0,25.81708,0,0,0,1,0,4,83.39137,9.967326,0,81.5,0,366,1,0,1.386294,5.902633,0,0,0,0,0,0,81.5,9.569376,1.386294,3.251036,1
-11,4,0,0,1,428349,0,14318.47,7.750855,1,17,1,11.46316,0,0,0,0,11.46316,0,0,0,1,0,4,73.3,9.967326,0,96.3,0,366,1,1,1.386294,5.902633,0,0,0,0,0,0,96.3,9.569376,1.386294,2.439139,1
-11,4,0,0,2,428349,0,14318.47,8.750855,1,17,1,244.2614,0,24.85795,0,0,269.1193,0,0,0,2,0,4,73.3,9.967326,0,96.3,0,366,1,1,1.386294,5.902633,0,0,0,0,0,0,96.3,9.569376,1.386294,5.595155,1
-11,4,0,0,3,428349,0,14318.47,9.750855,1,17,1,6.328565,0,0,0,0,6.328565,0,0,0,1,0,4,73.3,9.967326,0,96.3,0,366,1,1,1.386294,5.902633,0,0,0,0,0,0,96.3,9.569376,1.386294,1.845074,1
-11,4,0,0,1,428350,0,14318.47,34.96783,0,15,1,0,3.735188,0,41.21587,604.8428,608.5781,1,0,4,0,0,4,82.4,6.9,0,87.5,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,87.5,9.569376,1.386294,6.411125,1
-11,4,0,0,2,428350,0,14318.47,35.96783,0,15,1,0,0,0,80.49242,5800.109,5800.109,3,0,6,0,0,4,82.4,6.9,0,87.5,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,87.5,9.569376,1.386294,8.665632,1
-11,4,0,0,3,428350,0,14318.47,36.96783,0,15,1,10.83658,0,31.20936,0,1358.483,1400.529,2,0,0,0,1,4,82.4,6.9,0,87.5,0,366,0,0,1.386294,5.902633,0,0,0,0,0,0,87.5,9.569376,1.386294,7.244605,1
-13,4,0,0,1,428388,0,8142.522,4.17796,0,10,1,251.1747,0,0,0,0,251.1747,0,0,0,52,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,5.526149,1
-13,4,0,0,2,428388,0,8142.522,5.17796,0,10,1,34.57571,0,0,0,0,34.57571,0,0,0,5,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,3.543152,1
-13,4,0,0,3,428388,0,8142.522,6.17796,0,10,1,6.448839,0,0,255.804,0,6.448839,0,0,17,1,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,1.8639,1
-13,4,0,0,1,428389,0,8142.522,29.32786,1,10,1,66.13892,48.00817,0,0,2091.599,2205.746,4,1,0,8,0,5,83.5,13.8,0,84.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,84.1,9.004978,1.609438,7.698821,1
-13,4,0,0,2,428389,0,8142.522,30.32786,1,10,1,11.25176,10.78294,0,0,0,22.03469,0,0,0,2,0,5,83.5,13.8,0,84.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,84.1,9.004978,1.609438,3.092618,1
-13,4,0,0,3,428389,0,8142.522,31.32786,1,10,1,283.7575,0,0,0,0,283.7575,0,0,0,7,0,5,83.5,13.8,0,84.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,1,0,84.1,9.004978,1.609438,5.64812,1
-13,4,0,0,1,428390,0,8142.522,30.24504,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,6.9,0,100,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,,0
-13,4,0,0,2,428390,0,8142.522,31.24504,0,12,1,12.65823,12.00187,0,0,0,24.6601,0,0,0,1,0,5,79.3,6.9,0,100,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,3.205187,1
-13,4,0,0,3,428390,0,8142.522,32.24504,0,12,1,4.299226,0,0,0,0,4.299226,0,0,0,1,0,5,79.3,6.9,0,100,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,1.458435,1
-13,4,0,0,1,428391,0,8142.522,7.693361,1,10,1,27.3238,0,0,0,0,27.3238,0,0,0,2,0,5,85,9.967326,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.004978,1.609438,3.307758,1
-13,4,0,0,2,428391,0,8142.522,8.69336,1,10,1,11.72058,0,0,0,0,11.72058,0,0,0,1,0,5,85,9.967326,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.004978,1.609438,2.461346,1
-13,4,0,0,3,428391,0,8142.522,9.69336,1,10,1,61.04041,0,0,0,1476.251,1537.292,3,0,0,5,0,5,85,9.967326,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.004978,1.609438,7.337778,1
-13,4,0,0,1,428392,0,8142.522,3.657769,0,10,1,134.3718,0,22.47191,0,644.8723,801.7161,1,0,0,17,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,6.686755,1
-13,4,0,0,2,428392,0,8142.522,4.657769,0,10,1,67.93249,2.109705,16.87764,0,576.962,663.8818,1,0,0,11,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,6.498104,1
-13,4,0,0,3,428392,0,8142.522,5.657769,0,10,1,414.5959,0,16.1221,0,0,430.718,0,0,0,44,0,5,83.39137,9.967326,0,100,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,100,9.004978,1.609438,6.065454,1
-11,4,0,1,1,428470,0,11356.01,56.91444,0,13,1,10.30397,0,0,0,0,10.30397,0,0,0,2,0,2,87.8,6.9,0,71.6,0,112,0,0,.6931472,4.718499,0,0,0,1,0,0,71.6,9.33759,.6931472,2.332529,1
-11,4,0,1,2,428470,0,11356.01,57.91444,0,13,1,55.39773,10.53504,0,0,0,65.93276,0,0,0,7,0,2,87.8,6.9,0,71.6,0,112,0,0,.6931472,4.718499,0,0,0,1,0,0,71.6,9.33759,.6931472,4.188635,1
-11,4,0,1,3,428470,0,11356.01,58.91444,0,13,1,21.23971,0,45.51365,0,0,66.75336,0,0,0,3,0,1,87.8,6.9,0,71.6,0,112,0,0,0,4.718499,0,0,0,1,0,0,71.6,9.33759,0,4.201005,1
-11,4,0,1,1,428471,0,11356.01,54.98973,1,12,1,41.21587,4.817105,57.18702,0,0,103.22,0,0,0,7,0,2,89.9,20.7,0,68.2,0,112,0,0,.6931472,4.718499,0,0,0,1,0,0,68.2,9.33759,.6931472,4.636862,1
-11,4,0,1,2,428471,0,11356.01,55.98973,1,12,1,58.12027,2.727273,46.875,0,0,107.7225,0,0,0,5,0,2,89.9,20.7,0,68.2,0,112,0,0,.6931472,4.718499,0,0,0,1,0,0,68.2,9.33759,.6931472,4.679559,1
-13,4,0,1,1,428485,0,6165.396,16.4846,0,12,1,5.107252,0,0,0,0,5.107252,0,0,0,1,0,5,60.6,3.4,0,71.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.72687,1.609438,1.630661,1
-13,4,0,1,2,428485,0,6165.396,17.4846,0,12,1,7.032349,0,0,0,161.7862,168.8186,1,0,0,1,0,5,60.6,3.4,0,71.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.72687,1.609438,5.128825,1
-13,4,0,1,3,428485,0,6165.396,18.4846,0,12,1,0,.6448839,0,0,0,.6448839,0,0,0,0,0,5,60.6,3.4,0,71.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.72687,1.609438,-.4386849,1
-13,4,0,1,4,428485,0,6165.396,19.4846,0,12,1,207.4874,0,0,0,0,207.4874,0,0,0,1,0,5,60.6,3.4,0,71.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.72687,1.609438,5.335071,1
-13,4,0,1,1,428486,0,6165.396,19.25257,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,6.9,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.72687,1.609438,,0
-13,4,0,1,2,428486,0,6165.396,20.25257,0,11,1,145.1946,13.2677,0,0,0,158.4623,0,0,0,10,0,5,70.7,6.9,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.72687,1.609438,5.065516,1
-13,4,0,1,3,428486,0,6165.396,21.25257,0,11,1,0,7.60963,0,0,0,7.60963,0,0,0,0,0,5,70.7,6.9,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.72687,1.609438,2.029415,1
-13,4,0,1,4,428486,0,6165.396,22.25257,0,11,1,0,1.163242,0,0,0,1.163242,0,0,0,0,0,5,70.7,6.9,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.72687,1.609438,.1512106,1
-13,4,0,1,5,428486,0,6165.396,23.25257,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,6.9,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.72687,1.609438,,0
-13,4,0,1,1,428487,0,6165.396,43.54826,1,12,1,5.107252,4.034729,0,0,0,9.141982,0,0,0,1,0,5,69.1,13.8,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.72687,1.609438,2.212877,1
-13,4,0,1,2,428487,0,6165.396,44.54826,1,12,1,132.8645,13.10361,0,0,0,145.9681,0,0,0,0,5,5,69.1,13.8,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.72687,1.609438,4.983388,1
-13,4,0,1,3,428487,0,6165.396,45.54826,1,12,1,0,3.095443,0,0,0,3.095443,0,0,0,0,0,5,69.1,13.8,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.72687,1.609438,1.129931,1
-13,4,0,1,4,428487,0,6165.396,46.54826,1,12,1,76.50252,21.90772,37.61148,0,0,136.0217,0,0,0,3,0,5,69.1,13.8,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.72687,1.609438,4.912815,1
-13,4,0,1,5,428487,0,6165.396,47.54826,1,12,1,0,4.854918,0,0,0,4.854918,0,0,0,0,0,5,69.1,13.8,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63.6,8.72687,1.609438,1.579992,1
-13,4,0,1,1,428488,0,6165.396,43.22245,0,11,1,57.02247,7.686415,70.22472,0,544.9898,679.9234,1,0,0,4,0,5,63.3,6.9,0,37.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,37.5,8.72687,1.609438,6.52198,1
-13,4,0,1,2,428488,0,6165.396,44.22245,0,11,1,66.80731,1.40647,0,0,0,68.21378,0,0,0,3,0,5,63.3,6.9,0,37.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,37.5,8.72687,1.609438,4.222647,1
-13,4,0,1,3,428488,0,6165.396,45.22245,0,11,1,32.99656,30.30954,0,0,0,63.30611,0,0,0,1,0,5,63.3,6.9,0,37.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,37.5,8.72687,1.609438,4.147982,1
-13,4,0,1,4,428488,0,6165.396,46.22245,0,11,1,5.816208,14.44358,0,0,344.4824,364.7422,1,0,0,1,0,5,63.3,6.9,0,37.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,37.5,8.72687,1.609438,5.899191,1
-13,4,0,1,5,428488,0,6165.396,47.22245,0,11,1,17.69285,8.934891,0,0,0,26.62774,0,0,0,1,0,5,63.3,6.9,0,37.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,37.5,8.72687,1.609438,3.281954,1
-13,4,0,1,1,428489,0,6165.396,15.54825,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,49.5,3.4,0,67,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,8.72687,1.609438,,0
-13,4,0,1,2,428489,0,6165.396,16.54825,1,12,1,50.3985,.4688233,0,0,0,50.86732,0,0,0,1,0,5,49.5,3.4,0,67,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,8.72687,1.609438,3.929221,1
-13,4,0,1,3,428489,0,6165.396,17.54825,1,12,1,73.83921,.7523646,0,0,339.7506,414.3422,1,0,0,2,0,5,49.5,3.4,0,67,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,8.72687,1.609438,6.026692,1
-13,4,0,1,4,428489,0,6165.396,18.54825,1,12,1,31.01978,0,0,0,135.7115,166.7313,1,1,0,4,0,5,49.5,3.4,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,8.72687,1.609438,5.116384,1
-13,4,0,1,5,428489,0,6165.396,19.54825,1,12,1,31.14296,0,0,0,0,31.14296,0,0,0,1,0,5,49.5,3.4,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,8.72687,1.609438,3.438588,1
-14,4,95,1,1,428495,1,8390.616,16.43532,1,10,1,7.660879,2.451481,0,0,0,10.11236,0,0,0,2,0,6,64.4,6.9,0,64.8,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,2.313758,1
-14,4,95,1,2,428495,1,8390.616,17.43532,1,10,1,36.68542,11.33615,0,0,0,48.02156,0,0,0,4,0,6,64.4,6.9,0,64.8,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,3.87165,1
-14,4,95,1,3,428495,1,8390.616,18.43532,1,10,1,75.71797,2.987962,0,0,0,78.70593,0,0,0,3,0,6,64.4,6.9,0,64.8,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,4.365718,1
-14,4,95,1,4,428495,1,8390.616,19.43532,1,10,1,43.05933,7.347809,0,0,0,50.40714,0,0,0,3,0,6,64.4,6.9,0,64.8,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,3.920133,1
-14,4,95,1,5,428495,1,8390.616,20.43532,1,10,1,76.78698,4.511677,0,0,698.5315,779.8301,1,0,0,2,0,6,64.4,6.9,0,64.8,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,6.659076,1
-14,4,95,1,1,428496,1,8390.616,17.84257,1,10,1,33.19714,55.45454,31.66496,0,366.1696,486.4862,1,0,0,7,1,6,56.9,20.7,0,68.2,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,68.2,9.034988,1.791759,6.187209,1
-14,4,95,1,2,428496,1,8390.616,18.84257,1,10,1,46.4135,58.87014,14.0647,0,0,119.3483,0,0,0,10,1,6,56.9,20.7,0,68.2,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,68.2,9.034988,1.791759,4.782046,1
-14,4,95,1,3,428496,1,8390.616,19.84257,1,10,1,16.76698,57.87618,0,0,0,74.64317,0,0,0,2,1,6,56.9,20.7,0,68.2,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,68.2,9.034988,1.791759,4.312719,1
-14,4,95,1,4,428496,1,8390.616,20.84257,1,10,1,12.79566,61.38038,0,0,0,74.17604,0,0,0,1,1,6,56.9,20.7,0,68.2,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,68.2,9.034988,1.791759,4.306441,1
-14,4,95,1,5,428496,1,8390.616,21.84257,1,10,1,33.1741,15.12739,14.15428,0,0,62.45577,0,0,0,4,1,6,56.9,20.7,0,68.2,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,68.2,9.034988,1.791759,4.134459,1
-14,4,95,1,1,428497,1,8390.616,37.39631,0,12,1,145.7508,17.16548,0,0,4216.098,4379.014,4,0,0,2,0,6,80.9,3.4,1,53.4,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,53.4,9.034988,1.791759,8.384579,1
-14,4,95,1,2,428497,1,8390.616,38.39631,0,12,1,681.4158,34.75856,0,0,1462.546,2178.72,1,0,0,6,81,6,80.9,3.4,1,53.4,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,53.4,9.034988,1.791759,7.686493,1
-14,4,95,1,3,428497,1,8390.616,39.39631,0,12,1,112.9837,37.15821,0,0,0,150.1419,0,0,0,2,13,6,80.9,3.4,1,53.4,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,53.4,9.034988,1.791759,5.01158,1
-14,4,95,1,4,428497,1,8390.616,40.39631,0,12,1,29.85653,32.08608,0,0,0,61.94261,0,0,0,2,0,6,80.9,3.4,1,53.4,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,53.4,9.034988,1.791759,4.126208,1
-14,4,95,1,5,428497,1,8390.616,41.39631,0,12,1,0,39.23567,0,0,0,39.23567,0,0,0,0,0,6,80.9,3.4,1,53.4,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,53.4,9.034988,1.791759,3.669586,1
-14,4,95,1,1,428498,1,8390.616,38.91855,1,10,1,62.40041,135.8069,31.15424,0,0,229.3616,0,0,0,8,1,6,87.2,0,0,71.6,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,71.6,9.034988,1.791759,5.4353,1
-14,4,95,1,2,428498,1,8390.616,39.91855,1,10,1,99.10924,90.67979,30.94234,0,473.7928,694.5242,1,0,0,4,1,6,87.2,0,0,71.6,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,71.6,9.034988,1.791759,6.543227,1
-14,4,95,1,3,428498,1,8390.616,40.91855,1,10,1,18.9166,54.40241,0,0,0,73.319,0,0,0,2,1,6,87.2,0,0,71.6,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,71.6,9.034988,1.791759,4.29482,1
-14,4,95,1,4,428498,1,8390.616,41.91855,1,10,1,211.361,182.2606,0,0,203.292,596.9135,1,1,0,19,1,6,87.2,0,0,71.6,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,71.6,9.034988,1.791759,6.391772,1
-14,4,95,1,5,428498,1,8390.616,42.91855,1,10,1,98.79688,135.5414,0,0,0,234.3383,0,0,0,8,1,6,87.2,0,0,71.6,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,1,0,0,71.6,9.034988,1.791759,5.456766,1
-14,4,95,1,1,428499,1,8390.616,15.34839,1,10,1,63.18692,1.470889,0,0,396.3177,460.9755,1,0,0,5,0,6,67,3.4,0,64.8,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,6.133345,1
-14,4,95,1,2,428499,1,8390.616,16.34839,1,10,1,51.10173,24.72574,0,0,0,75.82748,0,0,0,5,0,6,67,3.4,0,64.8,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,4.328461,1
-14,4,95,1,3,428499,1,8390.616,17.34839,1,10,1,27.51505,7.093723,0,0,0,34.60877,0,0,0,5,0,6,67,3.4,0,64.8,421.66,421.66,1,1,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,3.544107,1
-14,4,95,1,4,428499,1,8390.616,18.34839,1,10,1,102.3459,36.16906,0,0,416.0139,554.5289,1,0,0,12,0,6,67,3.4,0,64.8,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,6.318119,1
-14,4,95,1,5,428499,1,8390.616,19.34839,1,10,1,63.25195,6.192498,0,0,188.995,258.4395,1,1,0,2,0,6,67,3.4,0,64.8,421.66,421.66,0,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,64.8,9.034988,1.791759,5.554662,1
-14,4,95,1,1,428500,1,8390.616,7.682409,0,10,1,69.02962,26.15935,0,0,0,95.18896,0,0,0,6,0,6,100,9.967326,0,74.1,421.66,421.66,1,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,74.1,9.034988,1.791759,4.555864,1
-14,4,95,1,2,428500,1,8390.616,8.682409,0,10,1,158.345,10.22035,0,0,0,168.5654,0,0,0,2,0,6,100,9.967326,0,74.1,421.66,421.66,1,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,74.1,9.034988,1.791759,5.127324,1
-14,4,95,1,3,428500,1,8390.616,9.682409,0,10,1,60.10318,9.582975,26.6552,0,0,96.34136,0,0,0,6,0,6,100,9.967326,0,74.1,421.66,421.66,1,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,74.1,9.034988,1.791759,4.567898,1
-14,4,95,1,4,428500,1,8390.616,10.68241,0,10,1,17.25475,10.77549,3.431563,0,0,31.46181,0,0,0,0,0,6,100,9.967326,0,74.1,421.66,421.66,1,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,74.1,9.034988,1.791759,3.448774,1
-14,4,95,1,5,428500,1,8390.616,11.68241,0,10,1,149.3454,16.76575,0,0,330.683,496.7941,1,0,0,7,0,6,100,9.967326,0,74.1,421.66,421.66,1,0,1.791759,6.044199,0,4.564348,6.095492,0,0,0,74.1,9.034988,1.791759,6.208176,1
-18,4,25,1,1,428559,0,4529.032,15.46886,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,67.6,3.4,0,80.7,750,725,1,0,.6931472,6.586172,0,3.258096,8.006368,0,0,0,80.7,8.418485,.6931472,,0
-18,4,25,1,2,428559,0,4529.032,16.46886,0,12,1,50.81585,9.79021,3.114219,0,0,63.72028,0,0,0,3,0,2,67.6,3.4,0,80.7,750,725,1,0,.6931472,6.586172,0,3.258096,8.006368,0,0,0,80.7,8.418485,.6931472,4.154503,1
-18,4,25,1,3,428559,0,4529.032,17.46886,0,12,1,36.87473,0,0,0,0,36.87473,0,0,0,1,0,2,67.6,3.4,0,80.7,750,725,1,0,.6931472,6.586172,0,3.258096,8.006368,0,0,0,80.7,8.418485,.6931472,3.607527,1
-18,4,25,1,1,428560,0,4529.032,37.48939,1,12,1,26.31579,4.175101,0,0,0,30.49089,0,0,0,2,0,2,55.3,10.3,1,63.6,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,63.6,8.418485,.6931472,3.417428,1
-18,4,25,1,2,428560,0,4529.032,38.48939,1,12,1,33.56643,3.916084,0,0,0,37.48252,0,0,0,3,0,2,55.3,10.3,1,63.6,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,63.6,8.418485,.6931472,3.623875,1
-18,4,25,1,3,428560,0,4529.032,39.48939,1,12,1,15.81873,0,0,0,0,15.81873,0,0,0,2,0,2,55.3,10.3,1,63.6,750,725,0,0,.6931472,6.586172,0,3.258096,8.006368,1,0,0,63.6,8.418485,.6931472,2.761194,1
-18,4,25,1,1,428561,0,7910.823,18.73785,0,12,1,27.57916,7.967314,0,0,0,35.54647,0,0,0,2,0,1,70.7,10.3,0,60.2,584.9,584.9,0,0,0,6.371441,0,3.258096,7.757735,1,0,0,60.2,8.976113,0,3.570841,1
-18,4,25,1,2,428561,0,7910.823,19.73785,0,12,1,15.00234,0,0,0,0,15.00234,0,0,0,2,0,1,70.7,10.3,0,60.2,584.9,584.9,0,0,0,6.371441,0,3.258096,7.757735,1,0,0,60.2,8.976113,0,2.708206,1
-18,4,25,1,3,428561,0,7910.823,20.73785,0,12,1,5.588994,1.805675,0,0,0,7.394669,0,0,0,1,0,1,70.7,10.3,0,60.2,584.9,584.9,0,0,0,6.371441,0,3.258096,7.757735,1,0,0,60.2,8.976113,0,2.000759,1
-11,4,0,1,1,428588,0,9498.534,47.22792,0,14,1,94.73953,33.63126,0,0,0,128.3708,0,0,0,9,0,4,93.1,20.7,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,9.158998,1.386294,4.854923,1
-11,4,0,1,2,428588,0,9498.534,48.22792,0,14,1,211.0455,46.50727,22.3113,0,1017.121,1296.985,2,0,0,11,0,4,93.1,20.7,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,9.158998,1.386294,7.167798,1
-11,4,0,1,3,428588,0,9498.534,49.22792,0,14,1,284.4368,69.69045,30.09458,0,4380.271,4764.493,4,0,0,6,18,4,93.1,20.7,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,9.158998,1.386294,8.468946,1
-11,4,0,1,1,428589,0,9498.534,8.85421,0,16,1,30.28601,5.617978,0,0,0,35.90398,0,0,0,3,0,4,88.3,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,3.580848,1
-11,4,0,1,2,428589,0,9498.534,9.85421,0,16,1,11.25176,0,0,0,0,11.25176,0,0,0,2,0,4,88.3,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,2.420524,1
-11,4,0,1,3,428589,0,9498.534,10.85421,0,16,1,17.19691,0,23.21582,0,0,40.41273,0,0,0,2,0,4,88.3,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,3.699145,1
-11,4,0,1,1,428590,0,9498.534,33.45106,1,16,1,11.23596,0,0,0,0,11.23596,0,0,0,1,0,4,94.1,10.3,0,90.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,90.9,9.158998,1.386294,2.419119,1
-11,4,0,1,2,428590,0,9498.534,34.45106,1,16,1,63.65213,2.344116,0,0,0,65.99625,0,0,0,2,0,4,94.1,10.3,0,90.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,90.9,9.158998,1.386294,4.189598,1
-11,4,0,1,3,428590,0,9498.534,35.45106,1,16,1,33.10404,5.717971,18.05675,0,0,56.87876,0,0,0,3,0,4,94.1,10.3,0,90.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,90.9,9.158998,1.386294,4.040922,1
-11,4,0,1,1,428591,0,9498.534,10.22587,0,16,1,32.68641,0,0,0,0,32.68641,0,0,0,4,0,4,95,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,3.486959,1
-11,4,0,1,2,428591,0,9498.534,11.22587,0,16,1,43.02391,0,0,0,0,43.02391,0,0,0,3,0,4,95,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,3.761756,1
-11,4,0,1,3,428591,0,9498.534,12.22587,0,16,1,17.19691,0,0,0,0,17.19691,0,0,0,2,0,4,95,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,9.158998,1.386294,2.844729,1
-15,4,95,0,1,428599,0,11089.74,12.42437,1,12,1,14.04494,0,0,0,0,14.04494,0,0,0,2,0,6,80,9.967326,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.313866,1.791759,2.642262,1
-15,4,95,0,2,428599,0,11089.74,13.42437,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,80,9.967326,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.313866,1.791759,,0
-15,4,95,0,3,428599,0,11089.74,14.42437,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,80,9.967326,0,88.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.313866,1.791759,,0
-15,4,95,0,1,428600,0,11089.74,16.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75.5,3.4,0,83,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,83,9.313866,1.791759,,0
-15,4,95,0,2,428600,0,11089.74,17.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75.5,3.4,0,83,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,83,9.313866,1.791759,,0
-15,4,95,0,3,428600,0,11089.74,18.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75.5,3.4,0,83,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,83,9.313866,1.791759,,0
-15,4,95,0,1,428601,0,11089.74,15.19507,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,62.2,6.9,0,73.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,,0
-15,4,95,0,2,428601,0,11089.74,16.19507,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,62.2,6.9,0,73.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,,0
-15,4,95,0,3,428601,0,11089.74,17.19507,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,62.2,6.9,0,73.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.313866,1.791759,,0
-15,4,95,0,1,428602,0,11089.74,41.1718,0,12,1,51.96629,0,0,0,0,51.96629,0,0,0,3,0,6,87.8,13.8,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.313866,1.791759,3.950595,1
-15,4,95,0,2,428602,0,11089.74,42.1718,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,87.8,13.8,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.313866,1.791759,,0
-15,4,95,0,3,428602,0,11089.74,43.1718,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,87.8,13.8,0,89.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.313866,1.791759,,0
-15,4,95,0,1,428604,0,11089.74,41.51951,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,0,0,84.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,84.1,9.313866,1.791759,,0
-15,4,95,0,2,428604,0,11089.74,42.51951,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,0,0,84.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,84.1,9.313866,1.791759,,0
-15,4,95,0,3,428604,0,11089.74,43.51951,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,0,0,84.1,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,84.1,9.313866,1.791759,,0
-13,4,0,1,1,428635,0,5923.754,3.19781,1,12,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,4,83.39137,9.967326,0,92.6,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,92.6,8.686894,1.386294,1.812983,1
-13,4,0,1,2,428635,0,5923.754,4.19781,1,12,1,7.032349,0,0,0,0,7.032349,0,0,0,1,0,4,83.39137,9.967326,0,92.6,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,92.6,8.686894,1.386294,1.950521,1
-13,4,0,1,3,428635,0,5923.754,5.19781,1,12,1,15.47721,0,0,0,0,15.47721,0,0,0,3,0,4,83.39137,9.967326,0,92.6,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,92.6,8.686894,1.386294,2.739369,1
-13,4,0,1,1,428636,0,5923.754,1.826146,1,12,1,137.1757,0,0,0,0,137.1757,0,0,0,5,0,4,83.39137,9.967326,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.686894,1.386294,4.921263,1
-13,4,0,1,2,428636,0,5923.754,2.826146,1,12,1,92.59259,8.907641,20.62822,0,0,122.1285,0,0,0,5,0,4,83.39137,9.967326,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.686894,1.386294,4.805073,1
-13,4,0,1,3,428636,0,5923.754,3.826146,1,12,1,20.20636,.8598452,9.535684,0,0,30.60189,0,0,0,2,0,4,83.39137,9.967326,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.686894,1.386294,3.421062,1
-13,4,0,1,1,428637,0,5923.754,27.04175,0,12,1,28.08989,0,0,0,0,28.08989,0,0,0,2,0,4,80.9,0,0,76.1,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,76.1,8.686894,1.386294,3.33541,1
-13,4,0,1,2,428637,0,5923.754,28.04175,0,12,1,50.797,0,0,0,0,50.797,0,0,0,3,0,4,80.9,0,0,76.1,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,76.1,8.686894,1.386294,3.927837,1
-13,4,0,1,3,428637,0,5923.754,29.04175,0,12,1,10.74806,0,0,0,0,10.74806,0,0,0,1,0,4,80.9,0,0,76.1,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,76.1,8.686894,1.386294,2.374726,1
-13,4,0,1,1,428638,0,5923.754,25.16906,1,12,1,10.2145,0,0,0,0,10.2145,0,0,0,1,0,4,77.1,3.4,0,90.9,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,90.9,8.686894,1.386294,2.323809,1
-13,4,0,1,2,428638,0,5923.754,26.16906,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,3.4,0,90.9,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,90.9,8.686894,1.386294,,0
-13,4,0,1,3,428638,0,5923.754,27.16906,1,12,1,45.89424,0,0,0,0,45.89424,0,0,0,3,0,4,77.1,3.4,0,90.9,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,90.9,8.686894,1.386294,3.826339,1
-17,4,25,0,1,428683,0,8848.094,32.49281,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,0,0,83.3,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,0,0,0,83.3,9.08807,1.098612,,0
-17,4,25,0,2,428683,0,8848.094,33.49281,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,0,0,83.3,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,0,0,0,83.3,9.08807,1.098612,,0
-17,4,25,0,3,428683,0,8848.094,34.49281,0,16,1,19.34652,13.19862,0,0,227.0937,259.6389,1,0,0,3,0,3,77.1,0,0,83.3,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,0,0,0,83.3,9.08807,1.098612,5.559292,1
-17,4,25,0,1,428684,0,8848.094,28.77481,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,6.9,0,82.1,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,1,0,0,82.1,9.08807,1.098612,,0
-17,4,25,0,2,428684,0,8848.094,29.77481,1,16,1,55.90717,0,0,0,0,55.90717,0,0,0,2,0,3,86.2,6.9,0,82.1,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,1,0,0,82.1,9.08807,1.098612,4.023693,1
-17,4,25,0,3,428684,0,8848.094,30.77481,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,6.9,0,82.1,663.25,663.25,0,0,1.098612,6.497152,0,3.258096,7.883446,1,0,0,82.1,9.08807,1.098612,,0
-17,4,25,0,1,428685,0,8848.094,3.84668,1,16,1,11.23596,2.477017,0,0,0,13.71297,0,0,0,2,0,3,83.39137,9.967326,0,70.4,663.25,663.25,1,1,1.098612,6.497152,0,3.258096,7.883446,0,0,0,70.4,9.08807,1.098612,2.618342,1
-17,4,25,0,2,428685,0,8848.094,4.84668,1,16,1,59.77496,1.40647,0,0,0,61.18143,0,0,0,3,0,3,83.39137,9.967326,0,70.4,663.25,663.25,1,1,1.098612,6.497152,0,3.258096,7.883446,0,0,0,70.4,9.08807,1.098612,4.113844,1
-17,4,25,0,3,428685,0,8848.094,5.84668,1,16,1,14.18745,0,0,0,0,14.18745,0,0,0,2,0,3,83.39137,9.967326,0,70.4,663.25,663.25,1,1,1.098612,6.497152,0,3.258096,7.883446,0,0,0,70.4,9.08807,1.098612,2.652358,1
-13,4,0,1,1,428695,0,19.35484,22.55168,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,84,3.4,0,94.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,94.3,3.013319,0,,0
-13,4,0,1,2,428695,0,19.35484,23.55168,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,84,3.4,0,94.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,94.3,3.013319,0,,0
-13,4,0,1,3,428695,0,19.35484,24.55168,1,12,1,61.33507,0,24.27395,0,335.4313,421.0403,1,0,0,1,2,1,84,3.4,0,94.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,94.3,3.013319,0,6.042728,1
-10,4,50,1,1,428728,0,6175.953,.8459959,0,14,1,14.81103,3.983657,0,0,0,18.79469,0,0,0,2,0,3,83.39137,9.967326,0,92.6,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,92.6,8.72858,1.098612,2.933574,1
-10,4,50,1,2,428728,0,6175.953,1.845996,0,14,1,5.625879,3.891233,0,0,0,9.517112,0,0,0,1,0,4,83.39137,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,92.6,8.72858,1.386294,2.253091,1
-10,4,50,1,3,428728,0,6175.953,2.845996,0,14,1,5.159071,0,0,0,0,5.159071,0,0,0,1,0,4,83.39137,9.967326,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,92.6,8.72858,1.386294,1.640757,1
-10,4,50,1,1,428729,0,6175.953,25.7002,1,14,1,79.10112,12.38509,0,0,17642.7,17734.18,1,0,0,7,0,3,80.3,0,0,64.8,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,64.8,8.72858,1.098612,9.783249,1
-10,4,50,1,2,428729,0,6175.953,26.7002,1,14,1,15.00234,4.289733,29.6015,0,0,48.89358,0,0,0,1,1,4,80.3,0,0,64.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,64.8,8.72858,1.386294,3.889646,1
-10,4,50,1,3,428729,0,6175.953,27.7002,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,0,0,64.8,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,64.8,8.72858,1.386294,,0
-10,4,50,1,1,428730,0,6175.953,27.07461,0,16,1,63.42186,12.17569,7.150153,0,415.0511,497.7988,1,0,0,7,0,3,88.8,3.4,0,83,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,83,8.72858,1.098612,6.210196,1
-10,4,50,1,2,428730,0,6175.953,28.07461,0,16,1,73.48804,3.131739,34.2241,0,0,110.8439,0,0,0,3,1,4,88.8,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,83,8.72858,1.386294,4.708123,1
-10,4,50,1,3,428730,0,6175.953,29.07461,0,16,1,29.87962,1.096303,0,0,0,30.97592,0,0,0,1,0,4,88.8,3.4,0,83,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,83,8.72858,1.386294,3.43321,1
-6,4,25,1,1,428739,0,3407.038,26.29158,1,12,1,29.11134,0,27.57916,0,0,56.6905,0,0,0,2,0,3,62.2,24.1,1,51.1,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,51.1,8.133892,1.098612,4.037607,1
-6,4,25,1,2,428739,0,3407.038,27.29158,1,12,1,7.969995,6.549461,0,0,0,14.51946,0,0,0,1,0,3,62.2,24.1,1,51.1,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,51.1,8.133892,1.098612,2.675489,1
-6,4,25,1,3,428739,0,3407.038,28.29158,1,12,1,122.313,0,28.37489,0,0,150.6879,0,0,0,2,15,3,62.2,24.1,1,51.1,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,51.1,8.133892,1.098612,5.015211,1
-6,4,25,1,1,428740,0,3407.038,26.3217,0,7,1,181.9408,0,27.57916,0,0,209.5199,0,0,0,8,0,3,47.3,17.2,0,79.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,79.5,8.133892,1.098612,5.344819,1
-6,4,25,1,2,428740,0,3407.038,27.3217,0,7,1,104.4679,15.63526,0,0,0,120.1031,0,0,0,3,0,3,47.3,17.2,0,79.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,79.5,8.133892,1.098612,4.788351,1
-6,4,25,1,3,428740,0,3407.038,28.3217,0,7,1,265.4342,13.12554,0,51.59071,0,278.5598,0,0,4,6,6,3,47.3,17.2,0,79.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,79.5,8.133892,1.098612,5.629632,1
-6,4,25,1,1,428741,0,3407.038,3.474333,1,12,1,30.38815,3.166497,0,0,0,33.55465,0,0,0,2,0,3,83.39137,9.967326,0,88.9,700,700,1,1,1.098612,6.55108,0,3.258096,7.937375,0,0,0,88.9,8.133892,1.098612,3.513175,1
-6,4,25,1,2,428741,0,3407.038,4.474333,1,12,1,8.438819,0,0,0,0,8.438819,0,0,0,1,0,3,83.39137,9.967326,0,88.9,700,700,1,1,1.098612,6.55108,0,3.258096,7.937375,0,0,0,88.9,8.133892,1.098612,2.132842,1
-6,4,25,1,3,428741,0,3407.038,5.474333,1,12,1,26.87016,2.570937,0,0,0,29.4411,0,0,0,3,0,3,83.39137,9.967326,0,88.9,700,700,1,1,1.098612,6.55108,0,3.258096,7.937375,0,0,0,88.9,8.133892,1.098612,3.382392,1
-10,4,50,1,1,428758,0,3773.021,10.99521,1,11,1,18.34514,0,0,0,0,18.34514,0,0,0,1,0,4,86.7,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,66.7,8.235896,1.386294,2.909365,1
-10,4,50,1,2,428758,0,3773.021,11.99521,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,66.7,8.235896,1.386294,,0
-10,4,50,1,3,428758,0,3773.021,12.99521,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,9.967326,0,66.7,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,66.7,8.235896,1.386294,,0
-10,4,50,1,1,428759,0,3773.021,36.56126,1,11,1,10.12146,0,0,0,0,10.12146,0,0,0,1,0,4,87.2,10.3,1,76.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.235896,1.386294,2.314658,1
-10,4,50,1,2,428759,0,3773.021,37.56126,1,11,1,28.90443,0,0,0,0,28.90443,0,0,0,0,10,4,87.2,10.3,1,76.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.235896,1.386294,3.363995,1
-10,4,50,1,3,428759,0,3773.021,38.56126,1,11,1,76.95596,0,0,0,0,76.95596,0,0,0,0,22,4,87.2,10.3,1,76.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,76.1,8.235896,1.386294,4.343234,1
-10,4,50,1,1,428760,0,3773.021,13.62628,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,9.967326,0,81.5,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,81.5,8.235896,1.386294,,0
-10,4,50,1,2,428760,0,3773.021,14.62628,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,9.967326,0,81.5,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,81.5,8.235896,1.386294,,0
-10,4,50,1,3,428760,0,3773.021,15.62628,0,11,1,118.2086,0,0,0,0,118.2086,0,0,0,2,0,4,81.7,9.967326,0,81.5,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,81.5,8.235896,1.386294,4.772451,1
-10,4,50,1,1,428761,0,3773.021,15.72348,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,3.4,0,75,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75,8.235896,1.386294,,0
-10,4,50,1,2,428761,0,3773.021,16.72348,1,11,1,8.391608,4.662004,0,0,0,13.05361,0,0,0,1,0,4,80.9,3.4,0,75,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75,8.235896,1.386294,2.569065,1
-10,4,50,1,3,428761,0,3773.021,17.72348,1,11,1,16.24626,0,25.94699,0,0,42.19324,0,0,0,2,0,4,80.9,3.4,0,75,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,75,8.235896,1.386294,3.74226,1
-11,4,0,0,1,428773,0,4588.856,18.51061,1,11,1,25.75992,0,0,0,0,25.75992,0,0,0,4,0,3,81.9,0,0,83,0,0,0,0,1.098612,0,0,0,0,0,0,0,83,8.431604,1.098612,3.24882,1
-11,4,0,0,2,428773,0,4588.856,19.51061,1,11,1,86.52936,18.98201,0,0,589.9195,695.4308,1,0,0,5,0,3,81.9,0,0,83,0,0,0,0,1.098612,0,0,0,0,0,0,0,83,8.431604,1.098612,6.544531,1
-11,4,0,0,3,428773,0,4588.856,20.51061,1,11,1,34.02687,34.91547,22.10663,0,0,91.04898,0,0,0,1,1,4,81.9,0,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,8.431604,1.386294,4.511398,1
-11,4,0,0,1,428774,0,4588.856,47.75907,0,12,1,407.5528,32.97269,0,0,926.2391,1366.765,1,0,0,21,6,3,83.5,13.8,1,67,0,0,0,0,1.098612,0,0,0,0,0,0,0,67,8.431604,1.098612,7.220201,1
-11,4,0,0,2,428774,0,4588.856,48.75907,0,12,1,317.2349,24.10038,0,0,0,341.3352,0,0,0,23,15,3,83.5,13.8,1,67,0,0,0,0,1.098612,0,0,0,0,0,0,0,67,8.431604,1.098612,5.832865,1
-11,4,0,0,3,428774,0,4588.856,49.75907,0,12,1,204.9198,60.01734,45.51365,0,0,310.4508,0,0,0,15,16,4,83.5,13.8,1,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,8.431604,1.386294,5.738026,1
-11,4,0,0,1,428775,0,4588.856,16.34771,0,12,1,12.94693,0,0,0,0,12.94693,0,0,0,2,0,3,63.8,3.4,0,80.7,0,0,1,0,1.098612,0,0,0,0,0,0,0,80.7,8.431604,1.098612,2.560859,1
-11,4,0,0,2,428775,0,4588.856,17.34771,0,12,1,35.15625,0,0,0,0,35.15625,0,0,0,2,0,3,63.8,3.4,0,80.7,0,0,1,0,1.098612,0,0,0,0,0,0,0,80.7,8.431604,1.098612,3.559802,1
-11,4,0,0,3,428775,0,4588.856,18.34771,0,12,1,45.53533,1.30039,0,0,0,46.83572,0,0,0,2,0,4,63.8,3.4,0,80.7,0,0,0,0,1.386294,0,0,0,0,0,0,0,80.7,8.431604,1.386294,3.846646,1
-14,4,95,1,1,428779,0,2247.548,29.27036,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,49.5,0,0,69.3,350.75,385.84,0,0,0,5.955423,0,4.564348,5.911367,0,0,0,69.3,7.71804,0,,0
-14,4,95,1,2,428779,0,2247.548,30.27036,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,49.5,0,0,69.3,350.75,385.84,0,0,0,5.955423,0,4.564348,5.911367,0,0,0,69.3,7.71804,0,,0
-14,4,95,1,3,428779,0,2247.548,31.27036,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,49.5,0,0,69.3,350.75,385.84,0,0,0,5.955423,0,4.564348,5.911367,0,0,0,69.3,7.71804,0,,0
-15,4,95,1,1,428794,0,11196.48,42.99521,0,12,1,9.193054,0,0,0,0,9.193054,0,0,0,2,0,3,65.4,17.2,0,85.2,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,85.2,9.323444,1.098612,2.218448,1
-15,4,95,1,2,428794,0,11196.48,43.99521,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,65.4,17.2,0,85.2,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,85.2,9.323444,1.098612,,0
-15,4,95,1,3,428794,0,11196.48,44.99521,0,12,1,123.4953,5.528805,37.40327,232.1582,656.0146,822.442,1,0,15,4,5,3,65.4,17.2,0,85.2,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,85.2,9.323444,1.098612,6.712278,1
-15,4,95,1,4,428794,0,11196.48,45.99521,0,12,1,0,1.256301,0,0,0,1.256301,0,0,0,0,0,3,65.4,17.2,0,85.2,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,85.2,9.323444,1.098612,.2281716,1
-15,4,95,1,5,428794,0,11196.48,46.99521,0,12,1,475.7714,27.87686,22.64685,0,0,526.2951,0,0,0,5,5,3,65.4,17.2,0,85.2,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,85.2,9.323444,1.098612,6.265862,1
-15,4,95,1,1,428795,0,11196.48,41.14442,1,12,1,78.58529,27.43616,37.79367,0,0,143.8151,0,0,0,5,2,3,42,34.5,1,46.6,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,46.6,9.323444,1.098612,4.968529,1
-15,4,95,1,2,428795,0,11196.48,42.14442,1,12,1,73.83966,12.48476,0,0,0,86.32442,0,0,0,4,0,3,42,34.5,1,46.6,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,46.6,9.323444,1.098612,4.458113,1
-15,4,95,1,3,428795,0,11196.48,43.14442,1,12,1,64.31642,17.2485,42.56234,404.1273,0,124.1273,0,0,25,5,1,3,42,34.5,1,46.6,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,46.6,9.323444,1.098612,4.821307,1
-15,4,95,1,4,428795,0,11196.48,44.14442,1,12,1,104.3622,11.34548,.829779,46.52966,0,116.5374,0,0,3,4,0,3,42,34.5,1,46.6,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,46.6,9.323444,1.098612,4.758213,1
-15,4,95,1,5,428795,0,11196.48,45.14442,1,12,1,399.1118,37.661,38.21656,226.4685,0,474.9894,0,0,16,11,1,3,42,34.5,1,46.6,1000,975,0,0,1.098612,6.882438,0,4.564348,6.959049,1,0,0,46.6,9.323444,1.098612,6.163292,1
-15,4,95,1,1,428797,0,11196.48,6.428473,1,12,1,7.660879,10.11236,0,0,0,17.77324,0,0,0,1,0,3,61.7,9.967326,0,92.6,1000,975,1,1,1.098612,6.882438,0,4.564348,6.959049,1,0,0,92.6,9.323444,1.098612,2.877694,1
-15,4,95,1,2,428797,0,11196.48,7.428473,1,12,1,17.34646,16.80263,0,0,0,34.14909,0,0,0,3,0,3,61.7,9.967326,0,92.6,1000,975,1,1,1.098612,6.882438,0,4.564348,6.959049,1,0,0,92.6,9.323444,1.098612,3.530736,1
-15,4,95,1,3,428797,0,11196.48,8.428473,1,12,1,43.42218,12.7773,0,60.18917,0,56.19949,0,0,4,4,1,3,61.7,9.967326,0,92.6,1000,975,1,1,1.098612,6.882438,0,4.564348,6.959049,1,0,0,92.6,9.323444,1.098612,4.028908,1
-15,4,95,1,4,428797,0,11196.48,9.428473,1,12,1,27.9178,23.07483,0,155.0989,0,50.99263,0,0,10,4,0,3,61.7,9.967326,0,92.6,1000,975,1,1,1.098612,6.882438,0,4.564348,6.959049,1,0,0,92.6,9.323444,1.098612,3.931681,1
-15,4,95,1,5,428797,0,11196.48,10.42847,1,12,1,14.862,10.35386,21.23142,297.2399,0,46.44728,0,0,21,1,1,3,61.7,9.967326,0,92.6,1000,975,1,1,1.098612,6.882438,0,4.564348,6.959049,1,0,0,92.6,9.323444,1.098612,3.838318,1
-18,4,25,1,1,428841,0,10476.25,10.423,0,18,1,44.51314,4.951056,0,0,0,49.4642,0,0,0,2,0,4,76.7,9.967326,1,63,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,63,9.256961,1.386294,3.901249,1
-18,4,25,1,2,428841,0,10476.25,11.423,0,18,1,34.68277,16.1553,0,0,0,50.83807,0,0,0,5,0,4,76.7,9.967326,1,63,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,63,9.256961,1.386294,3.928645,1
-18,4,25,1,3,428841,0,10476.25,12.423,0,18,1,114.4777,15.29259,0,0,0,129.7703,0,0,0,3,0,4,76.7,9.967326,1,63,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,63,9.256961,1.386294,4.865766,1
-18,4,25,1,4,428841,0,10476.25,13.423,0,18,1,5.907838,7.215439,0,0,0,13.12328,0,0,0,1,0,4,76.7,9.967326,1,63,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,63,9.256961,1.386294,2.574388,1
-18,4,25,1,5,428841,0,10476.25,14.423,0,18,1,0,2.729875,0,0,0,2.729875,0,0,0,0,0,4,76.7,9.967326,1,63,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,63,9.256961,1.386294,1.004256,1
-18,4,25,1,1,428842,0,10476.25,36.78576,0,12,1,9.27357,2.905719,0,0,309.3302,321.5095,1,0,0,2,0,4,94.7,0,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.256961,1.386294,5.773027,1
-18,4,25,1,2,428842,0,10476.25,37.78576,0,12,1,11.07955,0,0,0,0,11.07955,0,0,0,1,0,4,94.7,0,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.256961,1.386294,2.405101,1
-18,4,25,1,3,428842,0,10476.25,38.78576,0,12,1,15.17122,0,0,0,0,15.17122,0,0,0,1,0,4,94.7,0,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.256961,1.386294,2.7194,1
-18,4,25,1,4,428842,0,10476.25,39.78576,0,12,1,19.49586,0,0,0,0,19.49586,0,0,0,1,0,4,94.7,0,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.256961,1.386294,2.970202,1
-18,4,25,1,5,428842,0,10476.25,40.78576,0,12,1,42.21825,0,0,0,0,42.21825,0,0,0,2,0,4,94.7,0,0,71.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.256961,1.386294,3.742852,1
-18,4,25,1,1,428843,0,10476.25,33.79877,1,18,1,10.30397,4.229778,0,0,0,14.53375,0,0,0,2,0,4,87.4,17.2,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.256961,1.386294,2.676473,1
-18,4,25,1,2,428843,0,10476.25,34.79877,1,18,1,9.469697,2.064394,0,0,0,11.53409,0,0,0,1,0,4,87.4,17.2,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.256961,1.386294,2.445307,1
-18,4,25,1,3,428843,0,10476.25,35.79877,1,18,1,0,0,0,0,0,0,0,0,0,0,0,4,87.4,17.2,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.256961,1.386294,,0
-18,4,25,1,4,428843,0,10476.25,36.79877,1,18,1,5.907838,1.847184,14.57267,0,0,22.32769,0,0,0,1,0,4,87.4,17.2,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.256961,1.386294,3.105828,1
-18,4,25,1,5,428843,0,10476.25,37.79877,1,18,1,8.944544,0,13.95349,0,0,22.89803,0,0,0,1,0,4,87.4,17.2,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.256961,1.386294,3.131051,1
-18,4,25,1,1,428844,0,10476.25,8.741958,1,18,1,10.30397,0,0,0,0,10.30397,0,0,0,2,0,4,91.7,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.256961,1.386294,2.332529,1
-18,4,25,1,2,428844,0,10476.25,9.741958,1,18,1,7.575758,1.794508,0,0,0,9.370265,0,0,0,1,0,4,91.7,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.256961,1.386294,2.237541,1
-18,4,25,1,3,428844,0,10476.25,10.74196,1,18,1,13.87083,2.436064,32.94321,0,0,49.25011,0,0,0,2,0,4,91.7,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.256961,1.386294,3.896912,1
-18,4,25,1,4,428844,0,10476.25,11.74196,1,18,1,11.81568,11.89839,0,0,0,23.71406,0,0,0,2,0,4,91.7,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.256961,1.386294,3.166068,1
-18,4,25,1,5,428844,0,10476.25,12.74196,1,18,1,32.11091,0,0,0,0,32.11091,0,0,0,2,0,4,91.7,9.967326,0,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.256961,1.386294,3.469196,1
-5,4,25,0,1,428852,0,12791.2,33.89733,0,12,1,15.32176,5.020429,0,0,0,20.34219,0,0,0,1,0,4,69.7,13.8,0,77.3,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,1,0,0,77.3,9.456591,1.386294,3.012697,1
-5,4,25,0,2,428852,0,12791.2,34.89733,0,12,1,51.10173,16.71355,34.59916,0,0,102.4144,0,0,0,2,1,4,69.7,13.8,0,77.3,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,1,0,0,77.3,9.456591,1.386294,4.629028,1
-5,4,25,0,3,428852,0,12791.2,35.89733,0,12,1,12.89768,3.869303,0,0,0,16.76698,0,0,0,2,0,4,69.7,13.8,0,77.3,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,1,0,0,77.3,9.456591,1.386294,2.819412,1
-5,4,25,0,1,428853,0,12791.2,5.21013,0,16,1,48.26353,0,0,0,0,48.26353,0,0,0,2,0,4,96.7,9.967326,0,66.7,750,937.08,1,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,66.7,9.456591,1.386294,3.876676,1
-5,4,25,0,2,428853,0,12791.2,6.21013,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,9.967326,0,66.7,750,937.08,1,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,66.7,9.456591,1.386294,,0
-5,4,25,0,3,428853,0,12791.2,7.21013,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,9.967326,0,66.7,750,937.08,1,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,66.7,9.456591,1.386294,,0
-5,4,25,0,1,428854,0,12791.2,7.268994,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85,9.967326,0,100,750,937.08,1,1,1.386294,6.842769,0,3.258096,8.006368,0,0,0,100,9.456591,1.386294,,0
-5,4,25,0,2,428854,0,12791.2,8.268993,1,16,1,242.8739,0,0,0,0,242.8739,0,0,0,2,0,4,85,9.967326,0,100,750,937.08,1,1,1.386294,6.842769,0,3.258096,8.006368,0,0,0,100,9.456591,1.386294,5.492542,1
-5,4,25,0,3,428854,0,12791.2,9.268993,1,16,1,21.49613,0,25.66638,0,0,47.16251,0,0,0,2,0,4,85,9.967326,0,100,750,937.08,1,1,1.386294,6.842769,0,3.258096,8.006368,0,0,0,100,9.456591,1.386294,3.853599,1
-5,4,25,0,1,428855,0,12791.2,33.67009,1,16,1,0,10.63841,0,0,0,10.63841,0,0,0,0,0,4,77.1,0,0,80.7,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,80.7,9.456591,1.386294,2.364471,1
-5,4,25,0,2,428855,0,12791.2,34.67009,1,16,1,59.42335,13.65213,25.31646,0,0,98.39194,0,0,0,2,1,4,77.1,0,0,80.7,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,80.7,9.456591,1.386294,4.588959,1
-5,4,25,0,3,428855,0,12791.2,35.67009,1,16,1,17.19691,0,0,0,0,17.19691,0,0,0,2,0,4,77.1,0,0,80.7,750,937.08,0,0,1.386294,6.842769,0,3.258096,8.006368,0,0,0,80.7,9.456591,1.386294,2.844729,1
-11,4,0,1,1,428859,0,3143.695,26.29706,1,14,1,37.38509,13.15117,2.757916,0,0,53.29418,0,0,0,4,0,2,74.5,31,1,54.5,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.5,8.053473,.6931472,3.975827,1
-11,4,0,1,2,428859,0,3143.695,27.29706,1,14,1,31.76278,17.04641,0,457.1027,0,48.80919,0,0,39,2,0,2,74.5,31,1,54.5,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.5,8.053473,.6931472,3.887918,1
-11,4,0,1,3,428859,0,3143.695,28.29706,1,14,1,108.9209,11.53052,3.495271,64.4884,0,123.9467,0,0,6,3,0,2,74.5,31,1,54.5,0,0,0,0,.6931472,0,0,0,0,0,1,0,54.5,8.053473,.6931472,4.819851,1
-11,4,0,1,1,428860,0,3143.695,27.17317,0,12,1,235.5975,2.860061,9.193054,0,0,247.6507,0,0,0,6,0,2,68.1,20.7,1,56.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,56.8,8.053473,.6931472,5.512019,1
-11,4,0,1,2,428860,0,3143.695,28.17317,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,20.7,1,56.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,56.8,8.053473,.6931472,,0
-11,4,0,1,3,428860,0,3143.695,29.17317,0,12,1,108.3405,0,0,0,0,108.3405,0,0,0,2,0,2,68.1,20.7,1,56.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,56.8,8.053473,.6931472,4.685279,1
-16,4,95,1,1,428876,0,12817.01,14.5681,1,13,1,34.21859,3.830439,0,0,0,38.04903,0,0,0,1,0,6,40.4,13.8,1,48.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,48.9,9.458607,1.791759,3.638875,1
-16,4,95,1,2,428876,0,12817.01,15.5681,1,13,1,16.31505,0,0,0,0,16.31505,0,0,0,1,0,6,40.4,13.8,1,48.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,48.9,9.458607,1.791759,2.792088,1
-16,4,95,1,3,428876,0,12817.01,16.5681,1,13,1,33.21152,10.48151,0,94.04557,0,43.69304,0,0,7,3,0,6,40.4,13.8,1,48.9,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,48.9,9.458607,1.791759,3.777189,1
-16,4,95,1,1,428877,0,12817.01,9.445585,1,13,1,0,0,0,0,0,0,0,0,0,0,0,6,81.7,9.967326,0,59.3,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.3,9.458607,1.791759,,0
-16,4,95,1,2,428877,0,12817.01,10.44559,1,13,1,14.0647,0,0,0,0,14.0647,0,0,0,2,0,6,81.7,9.967326,0,59.3,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.3,9.458607,1.791759,2.643668,1
-16,4,95,1,3,428877,0,12817.01,11.44559,1,13,1,40.19777,2.768702,0,0,0,42.96646,0,0,0,1,0,6,81.7,9.967326,0,59.3,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,59.3,9.458607,1.791759,3.76042,1
-16,4,95,1,1,428878,0,12817.01,38.54346,0,18,1,0,0,0,0,0,0,0,0,0,0,0,6,73.4,3.4,0,81.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.458607,1.791759,,0
-16,4,95,1,2,428878,0,12817.01,39.54346,0,18,1,13.59587,0,0,24.61322,0,13.59587,0,0,3,1,0,6,73.4,3.4,0,81.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.458607,1.791759,2.609766,1
-16,4,95,1,3,428878,0,12817.01,40.54346,0,18,1,20.20636,2.274291,0,0,0,22.48065,0,0,0,2,0,6,73.4,3.4,0,81.8,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,81.8,9.458607,1.791759,3.112655,1
-16,4,95,1,1,428879,0,12817.01,11.42231,1,13,1,8.059244,0,0,0,0,8.059244,0,0,0,1,0,6,80,9.967326,0,77.8,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.458607,1.791759,2.08682,1
-16,4,95,1,2,428879,0,12817.01,12.42231,1,13,1,348.5935,5.011721,2.320675,0,0,355.9259,0,0,0,9,21,6,80,9.967326,0,77.8,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.458607,1.791759,5.874722,1
-16,4,95,1,3,428879,0,12817.01,13.42231,1,13,1,350.1978,3.710232,0,0,0,353.908,0,0,0,9,0,6,80,9.967326,0,77.8,1000,1000,1,1,1.791759,6.907755,0,4.564348,6.959049,0,0,0,77.8,9.458607,1.791759,5.869037,1
-16,4,95,1,1,428880,0,12817.01,37.21013,1,13,1,6.128703,74.05005,0,0,0,80.17876,0,0,0,1,0,6,56.9,10.3,1,68.2,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.458607,1.791759,4.384259,1
-16,4,95,1,2,428880,0,12817.01,38.21013,1,13,1,9.282701,68.31693,152.3676,24.61322,0,229.9672,0,0,3,0,0,6,56.9,10.3,1,68.2,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.458607,1.791759,5.437937,1
-16,4,95,1,3,428880,0,12817.01,39.21013,1,13,1,31.47034,49.75064,0,15.04729,0,81.22098,0,0,1,2,0,6,56.9,10.3,1,68.2,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,1,0,0,68.2,9.458607,1.791759,4.397173,1
-16,4,95,1,1,428881,0,12817.01,15.87406,0,13,1,146.4351,39.29009,0,0,0,185.7252,0,0,0,8,0,6,71.3,27.6,1,51.1,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,51.1,9.458607,1.791759,5.224268,1
-16,4,95,1,2,428881,0,12817.01,16.87406,0,13,1,96.92921,14.16315,0,0,0,111.0924,0,0,0,5,0,6,71.3,27.6,1,51.1,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,51.1,9.458607,1.791759,4.710362,1
-16,4,95,1,3,428881,0,12817.01,17.87406,0,13,1,11.60791,12.08083,0,0,0,23.68874,0,0,0,2,0,6,71.3,27.6,1,51.1,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,51.1,9.458607,1.791759,3.165,1
-16,4,95,1,1,428887,0,11250.44,43.26899,1,16,1,28.84615,1.518219,0,0,0,30.36437,0,0,0,3,0,2,65.4,3.4,1,60.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.7,9.328251,.6931472,3.41327,1
-16,4,95,1,2,428887,0,11250.44,44.26899,1,16,1,320.8811,0,0,0,0,320.8811,0,0,0,5,0,2,65.4,3.4,1,60.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.7,9.328251,.6931472,5.771071,1
-16,4,95,1,3,428887,0,11250.44,45.26899,1,16,1,9.405729,0,0,0,0,9.405729,0,0,0,1,0,2,65.4,3.4,1,60.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.7,9.328251,.6931472,2.241319,1
-16,4,95,1,4,428887,0,11250.44,46.26899,1,16,1,28.82398,0,0,0,0,28.82398,0,0,0,4,0,2,65.4,3.4,1,60.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.7,9.328251,.6931472,3.361208,1
-16,4,95,1,5,428887,0,11250.44,47.26899,1,16,1,22.83105,21.59817,0,0,0,44.42922,0,0,0,3,0,2,65.4,3.4,1,60.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,60.7,9.328251,.6931472,3.793897,1
-16,4,95,1,1,428888,0,11250.44,57.79055,0,12,1,15.18219,0,0,0,0,15.18219,0,0,0,1,0,2,62.8,10.3,1,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,55.7,9.328251,.6931472,2.720123,1
-16,4,95,1,2,428888,0,11250.44,58.79055,0,12,1,22.37762,5.869464,0,0,0,28.24709,0,0,0,2,0,2,62.8,10.3,1,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,55.7,9.328251,.6931472,3.34099,1
-16,4,95,1,3,428888,0,11250.44,59.79055,0,12,1,0,5.981189,0,0,0,5.981189,0,0,0,0,0,2,62.8,10.3,1,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,55.7,9.328251,.6931472,1.788619,1
-16,4,95,1,4,428888,0,11250.44,60.79055,0,12,1,23.05919,0,0,0,0,23.05919,0,0,0,1,0,2,62.8,10.3,1,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,55.7,9.328251,.6931472,3.138064,1
-16,4,95,1,5,428888,0,11250.44,61.79055,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.8,10.3,1,55.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,55.7,9.328251,.6931472,,0
-13,4,0,0,1,428897,0,7910.823,4.799452,0,13,1,5.107252,1.430031,0,0,0,6.537283,0,0,0,1,0,5,85,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.976113,1.609438,1.877522,1
-13,4,0,0,2,428897,0,7910.823,5.799452,0,13,1,8.570089,1.69714,0,0,0,10.26723,0,0,0,1,0,5,85,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.976113,1.609438,2.328957,1
-13,4,0,0,3,428897,0,7910.823,6.799452,0,13,1,5.159071,0,0,0,0,5.159071,0,0,0,1,0,5,85,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.976113,1.609438,1.640757,1
-13,4,0,0,4,428897,0,7910.823,7.799452,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.976113,1.609438,,0
-13,4,0,0,5,428897,0,7910.823,8.799453,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,66.7,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.976113,1.609438,,0
-13,4,0,0,1,428898,0,7910.823,28.87064,0,12,1,103.9326,30.4903,0,0,0,134.4229,0,0,0,18,0,5,66,17.2,0,47.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.976113,1.609438,4.90099,1
-13,4,0,0,2,428898,0,7910.823,29.87064,0,12,1,88.37318,8.940459,0,0,384.9039,482.2175,1,0,0,13,0,5,66,17.2,0,47.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.976113,1.609438,6.178395,1
-13,4,0,0,3,428898,0,7910.823,30.87064,0,12,1,18.05675,0,0,27.94497,0,18.05675,0,0,5,4,0,5,66,17.2,0,47.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.976113,1.609438,2.89352,1
-13,4,0,0,4,428898,0,7910.823,31.87064,0,12,1,5.816208,11.24855,0,0,0,17.06475,0,0,0,1,0,5,66,17.2,0,47.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.976113,1.609438,2.837015,1
-13,4,0,0,5,428898,0,7910.823,32.87064,0,12,1,47.2753,0,0,0,0,47.2753,0,0,0,2,0,5,66,17.2,0,47.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.976113,1.609438,3.855988,1
-13,4,0,0,1,428899,0,7910.823,6.658453,0,13,1,12.25741,15.143,0,45.96527,775.8121,803.2125,1,0,3,2,0,5,75,9.967326,0,59.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,59.3,8.976113,1.609438,6.688619,1
-13,4,0,0,2,428899,0,7910.823,7.658453,0,13,1,0,4.805439,0,56.25879,0,4.805439,0,0,5,0,0,5,75,9.967326,0,59.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,59.3,8.976113,1.609438,1.569748,1
-13,4,0,0,3,428899,0,7910.823,8.658453,0,13,1,5.159071,0,0,453.5684,0,5.159071,0,0,33,1,0,5,75,9.967326,0,59.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,59.3,8.976113,1.609438,1.640757,1
-13,4,0,0,4,428899,0,7910.823,9.658453,0,13,1,326.8476,2.074447,0,0,0,328.9221,0,0,0,7,0,5,75,9.967326,0,59.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,59.3,8.976113,1.609438,5.795821,1
-13,4,0,0,5,428899,0,7910.823,10.65845,0,13,1,5.307856,0,0,0,0,5.307856,0,0,0,1,0,5,75,9.967326,0,59.3,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,59.3,8.976113,1.609438,1.669188,1
-13,4,0,0,1,428900,0,7910.823,.8514716,1,13,1,11.23596,8.743616,0,0,0,19.97957,0,0,0,2,0,5,83.39137,9.967326,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.609438,2.99471,1
-13,4,0,0,2,428900,0,7910.823,1.851472,1,13,1,0,3.10361,0,0,0,3.10361,0,0,0,0,0,5,83.39137,9.967326,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.609438,1.132566,1
-13,4,0,0,3,428900,0,7910.823,2.851472,1,13,1,5.159071,0,0,0,0,5.159071,0,0,0,1,0,5,83.39137,9.967326,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.609438,1.640757,1
-13,4,0,0,4,428900,0,7910.823,3.851472,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.609438,,0
-13,4,0,0,5,428900,0,7910.823,4.851471,1,13,1,5.307856,0,0,0,0,5.307856,0,0,0,1,0,5,83.39137,9.967326,0,92.6,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.976113,1.609438,1.669188,1
-13,4,0,0,1,428901,0,7910.823,28.00274,1,13,1,16.34321,4.019408,0,15.32176,0,20.36262,0,0,1,2,0,5,45.2,41.4,0,53.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,53.4,8.976113,1.609438,3.013701,1
-13,4,0,0,2,428901,0,7910.823,29.00274,1,13,1,235.1617,3.187998,0,0,0,238.3497,0,0,0,3,0,5,45.2,41.4,0,53.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,53.4,8.976113,1.609438,5.473739,1
-13,4,0,0,3,428901,0,7910.823,30.00274,1,13,1,0,6.006019,0,40.84265,0,6.006019,0,0,7,0,0,5,45.2,41.4,0,53.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,53.4,8.976113,1.609438,1.792762,1
-13,4,0,0,4,428901,0,7910.823,31.00274,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,45.2,41.4,0,53.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,53.4,8.976113,1.609438,,0
-13,4,0,0,5,428901,0,7910.823,32.00274,1,13,1,12.385,0,0,0,0,12.385,0,0,0,1,0,5,45.2,41.4,0,53.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,53.4,8.976113,1.609438,2.516486,1
-13,4,0,1,1,428950,0,9677.419,34.39014,0,14,1,119.1113,20.27069,0,10.72523,380.5261,519.9081,1,0,1,8,0,3,72.3,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.177654,1.098612,6.253652,1
-13,4,0,1,2,428950,0,9677.419,35.39014,0,14,1,25.78528,10.07032,0,0,0,35.8556,0,0,0,3,0,3,72.3,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.177654,1.098612,3.5795,1
-13,4,0,1,3,428950,0,9677.419,36.39014,0,14,1,195.3998,0,0,0,0,195.3998,0,0,0,4,0,3,72.3,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.177654,1.098612,5.275048,1
-13,4,0,1,1,428951,0,9677.419,7.534565,1,16,1,3.064351,0,0,0,0,3.064351,0,0,0,1,0,3,85,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.177654,1.098612,1.119836,1
-13,4,0,1,2,428951,0,9677.419,8.534565,1,16,1,0,1.870605,0,0,0,1.870605,0,0,0,0,0,3,85,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.177654,1.098612,.6262618,1
-13,4,0,1,3,428951,0,9677.419,9.534565,1,16,1,8.598453,0,0,0,0,8.598453,0,0,0,1,0,3,85,9.967326,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,9.177654,1.098612,2.151582,1
-13,4,0,1,1,428952,0,9677.419,33.00479,1,16,1,65.29111,112.666,0,32.17569,0,177.9571,0,0,3,2,1,3,51.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,64.8,9.177654,1.098612,5.181542,1
-13,4,0,1,2,428952,0,9677.419,34.00479,1,16,1,46.88232,68.21378,0,21.56587,0,115.0961,0,0,2,2,0,3,51.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,64.8,9.177654,1.098612,4.745768,1
-13,4,0,1,3,428952,0,9677.419,35.00479,1,16,1,72.87188,92.06792,0,20.63629,0,164.9398,0,0,2,2,0,3,51.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,64.8,9.177654,1.098612,5.105581,1
-7,4,25,1,1,428968,0,8657.478,44.20534,1,12,1,94.20837,82.05312,33.19714,0,0,209.4586,0,0,0,7,1,3,71.8,20.7,0,62.5,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,62.5,9.066294,1.098612,5.344526,1
-7,4,25,1,2,428968,0,8657.478,45.20534,1,12,1,51.45335,66.79794,20.62822,0,0,138.8795,0,0,0,3,1,3,71.8,20.7,0,62.5,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,62.5,9.066294,1.098612,4.933607,1
-7,4,25,1,3,428968,0,8657.478,46.20534,1,12,1,46.21668,38.83491,41.27257,0,0,126.3242,0,0,0,4,1,3,71.8,20.7,0,62.5,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,62.5,9.066294,1.098612,4.838851,1
-7,4,25,1,1,428969,0,8657.478,19.07187,1,12,1,20.42901,9.305413,0,0,0,29.73442,0,0,0,1,1,3,73.4,3.4,0,60.2,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,60.2,9.066294,1.098612,3.392305,1
-7,4,25,1,2,428969,0,8657.478,20.07187,1,12,1,18.75293,10.2391,15.00234,0,0,43.99437,0,0,0,1,1,3,73.4,3.4,0,60.2,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,60.2,9.066294,1.098612,3.784062,1
-7,4,25,1,3,428969,0,8657.478,21.07187,1,12,1,27.08512,0,0,0,0,27.08512,0,0,0,1,0,3,73.4,3.4,0,60.2,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,60.2,9.066294,1.098612,3.298985,1
-7,4,25,1,1,428970,0,8657.478,56.71184,0,8,1,75.74055,0,0,0,0,75.74055,0,0,0,3,7,3,75.5,13.8,0,80.7,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,80.7,9.066294,1.098612,4.327314,1
-7,4,25,1,2,428970,0,8657.478,57.71184,0,8,1,148.7576,14.45851,42.19409,0,0,205.4102,0,0,0,3,12,3,75.5,13.8,0,80.7,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,80.7,9.066294,1.098612,5.325009,1
-7,4,25,1,3,428970,0,8657.478,58.71184,0,8,1,465.2321,33.55116,26.6552,0,792.3345,1317.773,1,0,0,14,1,3,75.5,13.8,0,80.7,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,1,0,0,80.7,9.066294,1.098612,7.183699,1
-18,4,25,0,1,428990,0,11971.26,15.00068,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,3.4,0,72.7,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.390347,1.386294,,0
-18,4,25,0,2,428990,0,11971.26,16.00068,1,13,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,4,84.6,3.4,0,72.7,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.390347,1.386294,1.721767,1
-18,4,25,0,3,428990,0,11971.26,17.00068,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,3.4,0,72.7,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.390347,1.386294,,0
-18,4,25,0,1,428991,0,11971.26,44.94182,0,13,1,88.10728,48.81579,0,0,0,136.9231,0,0,0,6,0,4,62.2,0,0,54.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.390347,1.386294,4.919419,1
-18,4,25,0,2,428991,0,11971.26,45.94182,0,13,1,13.98601,17.17016,2.331002,0,0,33.48718,0,0,0,1,0,4,62.2,0,0,54.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.390347,1.386294,3.511163,1
-18,4,25,0,3,428991,0,11971.26,46.94182,0,13,1,80.07696,42.13339,25.22445,0,0,147.4348,0,0,0,4,1,4,62.2,0,0,54.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.390347,1.386294,4.993386,1
-18,4,25,0,1,428992,0,11971.26,19.44969,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,76.6,3.4,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,75,9.390347,1.386294,,0
-18,4,25,0,2,428992,0,11971.26,20.44969,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,76.6,3.4,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,75,9.390347,1.386294,,0
-18,4,25,0,3,428992,0,11971.26,21.44969,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,76.6,3.4,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,75,9.390347,1.386294,,0
-18,4,25,0,1,428994,0,11971.26,44.0575,1,13,1,10.12146,0,0,0,0,10.12146,0,0,0,1,0,4,85.6,6.9,0,73.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.390347,1.386294,2.314658,1
-18,4,25,0,2,428994,0,11971.26,45.0575,1,13,1,11.65501,0,43.82285,0,0,55.47786,0,0,0,0,1,4,85.6,6.9,0,73.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.390347,1.386294,4.015984,1
-18,4,25,0,3,428994,0,11971.26,46.0575,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85.6,6.9,0,73.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.390347,1.386294,,0
-11,4,0,1,1,428995,0,6840.469,9.538672,0,16,1,48.26353,0,5.107252,0,0,53.37078,0,0,0,3,0,4,96.7,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.830758,1.386294,3.977263,1
-11,4,0,1,2,428995,0,6840.469,10.53867,0,16,1,22.97234,1.945616,0,0,0,24.91796,0,0,0,3,0,4,96.7,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.830758,1.386294,3.215589,1
-11,4,0,1,3,428995,0,6840.469,11.53867,0,16,1,84.37231,0,0,0,0,84.37231,0,0,0,6,0,4,96.7,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.830758,1.386294,4.435239,1
-11,4,0,1,1,428996,0,6840.469,5.270363,1,16,1,14.30031,2.298264,0,0,0,16.59857,0,0,0,3,0,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,8.830758,1.386294,2.809317,1
-11,4,0,1,2,428996,0,6840.469,6.270363,1,16,1,44.06939,0,21.33146,0,0,65.40084,0,0,0,3,2,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,8.830758,1.386294,4.180535,1
-11,4,0,1,3,428996,0,6840.469,7.270363,1,16,1,20.46432,2.063628,0,0,0,22.52794,0,0,0,3,0,4,93.3,9.967326,0,92.6,0,0,1,1,1.386294,0,0,0,0,0,0,0,92.6,8.830758,1.386294,3.114757,1
-11,4,0,1,1,428997,0,6840.469,37.07871,1,16,1,18.89683,0,0,0,0,18.89683,0,0,0,2,0,4,90.4,3.4,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,8.830758,1.386294,2.938994,1
-11,4,0,1,2,428997,0,6840.469,38.07871,1,16,1,11.72058,0,26.95734,0,0,38.67792,0,0,0,1,0,4,90.4,3.4,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,8.830758,1.386294,3.655269,1
-11,4,0,1,3,428997,0,6840.469,39.07871,1,16,1,114.4884,0,0,0,0,114.4884,0,0,0,4,0,4,90.4,3.4,0,89.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,89.8,8.830758,1.386294,4.740473,1
-11,4,0,1,1,428998,0,6840.469,38.89938,0,16,1,31.66496,0,27.57916,0,0,59.24413,0,0,0,2,1,4,92,0,0,96.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,96.6,8.830758,1.386294,4.081666,1
-11,4,0,1,2,428998,0,6840.469,39.89938,0,16,1,135.1383,2.62541,0,0,1641.843,1779.606,1,0,0,5,0,4,92,0,0,96.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,96.6,8.830758,1.386294,7.484148,1
-11,4,0,1,3,428998,0,6840.469,40.89938,0,16,1,185.5116,0,0,0,0,185.5116,0,0,0,4,0,4,92,0,0,96.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,96.6,8.830758,1.386294,5.223117,1
-11,4,0,1,1,429004,0,3774.194,5.24846,0,14,1,8.171603,9.065372,0,0,0,17.23698,0,0,0,2,0,3,83.3,9.967326,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.236207,1.098612,2.847057,1
-11,4,0,1,2,429004,0,3774.194,6.24846,0,14,1,52.62541,4.336615,0,0,0,56.96202,0,0,0,1,0,3,83.3,9.967326,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.236207,1.098612,4.042385,1
-11,4,0,1,3,429004,0,3774.194,7.24846,0,14,1,0,6.233878,0,0,0,6.233878,0,0,0,0,0,3,83.3,9.967326,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.236207,1.098612,1.829999,1
-11,4,0,1,1,429005,0,3774.194,38.75702,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,87.2,3.4,0,69.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,69.3,8.236207,1.098612,,0
-11,4,0,1,2,429005,0,3774.194,39.75702,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,87.2,3.4,0,69.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,69.3,8.236207,1.098612,,0
-11,4,0,1,3,429005,0,3774.194,40.75702,0,16,1,31.16939,1.074807,23.64574,0,0,55.88994,0,0,0,1,1,3,87.2,3.4,0,69.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,69.3,8.236207,1.098612,4.023385,1
-11,4,0,1,1,429006,0,3774.194,32.70636,1,14,1,18.13074,1.225741,0,0,0,19.35649,0,0,0,1,0,3,84,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.5,8.236207,1.098612,2.963027,1
-11,4,0,1,2,429006,0,3774.194,33.70636,1,14,1,18.75293,0,0,0,0,18.75293,0,0,0,1,0,3,84,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.5,8.236207,1.098612,2.93135,1
-11,4,0,1,3,429006,0,3774.194,34.70636,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,84,6.9,0,70.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.5,8.236207,1.098612,,0
-5,4,25,1,1,429013,0,11728.45,30.36824,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,76.6,3.4,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.369858,.6931472,,0
-5,4,25,1,2,429013,0,11728.45,31.36824,0,12,1,9.324009,2.610723,25.40792,0,0,37.34266,0,0,0,1,0,2,76.6,3.4,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.369858,.6931472,3.620136,1
-5,4,25,1,3,429013,0,11728.45,32.36824,0,12,1,437.3407,3.279179,0,0,0,440.6199,0,0,0,5,0,2,76.6,3.4,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.369858,.6931472,6.088182,1
-5,4,25,1,1,429014,0,11728.45,26.65298,1,12,1,161.8573,5.865385,0,0,0,167.7227,0,0,0,2,0,2,86.2,6.9,0,77.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.369858,.6931472,5.122312,1
-5,4,25,1,2,429014,0,11728.45,27.65298,1,12,1,310.6713,4.424242,0,0,0,315.0956,0,0,0,4,0,2,86.2,6.9,0,77.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.369858,.6931472,5.752876,1
-5,4,25,1,3,429014,0,11728.45,28.65298,1,12,1,82.53527,5.515177,0,0,0,88.05045,0,0,0,1,0,2,86.2,6.9,0,77.3,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.369858,.6931472,4.47791,1
-11,4,0,1,1,429015,0,913.783,27.10746,1,16,1,422.4626,56.13086,81.26739,141.6796,0,559.8609,0,0,11,5,62,1,83.6,34.5,1,53.4,0,0,0,0,0,0,0,0,0,1,0,0,53.4,6.818687,0,6.327688,1
-11,4,0,1,2,429015,0,913.783,28.10746,1,16,1,354.6401,6.387311,13.35701,0,0,374.3845,0,0,0,9,45,1,83.6,34.5,1,53.4,0,0,0,0,0,0,0,0,0,1,0,0,53.4,6.818687,0,5.925283,1
-11,4,0,1,3,429015,0,913.783,29.10746,1,16,1,855.0065,0,34.52536,0,0,889.5319,0,0,0,44,59,1,83.6,34.5,1,53.4,0,0,0,0,0,0,0,0,0,1,0,0,53.4,6.818687,0,6.790695,1
-11,4,0,1,4,429015,0,913.783,30.10746,1,16,1,1303.111,103.0248,16.4041,384.0095,2033.367,3455.908,1,0,18,76,68,1,83.6,34.5,1,53.4,0,0,0,0,0,0,0,0,0,1,0,0,53.4,6.818687,0,8.14784,1
-11,4,0,1,5,429015,0,913.783,31.10746,1,16,1,1209.589,48.20751,39.93202,844.3649,0,1297.728,0,0,54,77,42,1,83.6,34.5,1,53.4,0,0,0,0,0,0,0,0,0,1,0,0,53.4,6.818687,0,7.16837,1
-11,4,0,1,1,429016,0,469.2082,26.99795,0,16,1,19.19114,13.06028,34.13704,0,0,66.38846,0,0,0,1,1,1,83.5,17.2,1,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,6.153176,0,4.195523,1
-11,4,0,1,2,429016,0,469.2082,27.99795,0,16,1,17.75568,0,16.07955,0,0,33.83523,0,0,0,1,0,1,83.5,17.2,1,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,6.153176,0,3.521502,1
-11,4,0,1,3,429016,0,469.2082,28.99795,0,16,1,386.4326,80.84525,27.30819,0,455.6784,950.2644,1,0,0,8,45,1,83.5,17.2,1,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,6.153176,0,6.85674,1
-11,4,0,1,4,429016,0,469.2082,29.99795,0,16,1,393.8558,41.63844,0,0,0,435.4943,0,0,0,25,17,1,83.5,17.2,1,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,6.153176,0,6.076482,1
-11,4,0,1,5,429016,0,469.2082,30.99795,0,16,1,130.5903,46.74061,26.61896,0,0,203.9499,0,0,0,12,0,1,83.5,17.2,1,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,6.153176,0,5.317874,1
-19,4,25,1,1,429032,0,5390.029,37.2512,0,12,1,10.2145,0,22.47191,0,0,32.68641,0,0,0,1,0,5,64.4,10.3,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,8.592491,1.609438,3.486959,1
-19,4,25,1,2,429032,0,5390.029,38.2512,0,12,1,59.42335,10.79231,0,0,0,70.21566,0,0,0,5,0,5,64.4,10.3,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,8.592491,1.609438,4.251571,1
-19,4,25,1,3,429032,0,5390.029,39.2512,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.4,10.3,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,8.592491,1.609438,,0
-19,4,25,1,1,429033,0,5390.029,11.54004,0,12,1,229.7804,0,0,0,0,229.7804,0,0,0,4,0,5,85,9.967326,0,55.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,55.6,8.592491,1.609438,5.437124,1
-19,4,25,1,2,429033,0,5390.029,12.54004,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,9.967326,0,55.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,55.6,8.592491,1.609438,,0
-19,4,25,1,3,429033,0,5390.029,13.54004,0,12,1,36.15649,1.564918,0,0,0,37.72141,0,0,0,4,0,5,85,9.967326,0,55.6,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,55.6,8.592491,1.609438,3.630228,1
-19,4,25,1,1,429034,0,5390.029,3.542779,0,12,1,0,1.261491,0,0,0,1.261491,0,0,0,0,0,5,83.39137,9.967326,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.592491,1.609438,.2322946,1
-19,4,25,1,2,429034,0,5390.029,4.542779,0,12,1,13.12705,0,0,0,0,13.12705,0,0,0,2,0,5,83.39137,9.967326,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.592491,1.609438,2.574675,1
-19,4,25,1,3,429034,0,5390.029,5.542779,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.592491,1.609438,,0
-19,4,25,1,1,429035,0,5390.029,33.58522,1,12,1,20.42901,2.911134,34.21859,0,0,57.55873,0,0,0,1,1,5,85.6,6.9,0,81,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,81,8.592491,1.609438,4.052806,1
-19,4,25,1,2,429035,0,5390.029,34.58522,1,12,1,39.09986,4.739803,0,0,0,43.83966,0,0,0,3,1,5,85.6,6.9,0,81,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,81,8.592491,1.609438,3.780539,1
-19,4,25,1,3,429035,0,5390.029,35.58522,1,12,1,29.9871,0,0,0,0,29.9871,0,0,0,2,0,5,85.6,6.9,0,81,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,81,8.592491,1.609438,3.400767,1
-19,4,25,1,1,429036,0,5390.029,8.799453,0,12,1,17.87538,2.206333,0,0,0,20.08172,0,0,0,2,0,5,80,9.967326,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.592491,1.609438,2.99981,1
-19,4,25,1,2,429036,0,5390.029,9.799453,0,12,1,13.12705,2.906704,0,0,0,16.03375,0,0,0,1,0,5,80,9.967326,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.592491,1.609438,2.774696,1
-19,4,25,1,3,429036,0,5390.029,10.79945,0,12,1,160.6836,2.575237,7.953568,0,0,171.2124,0,0,0,5,1,5,80,9.967326,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.592491,1.609438,5.142905,1
-11,4,0,0,1,429037,0,2692.669,50.02053,1,11,1,12.76813,107.5843,43.41164,102.145,0,163.764,0,0,5,2,0,1,87.8,13.8,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,7.898659,0,5.098427,1
-11,4,0,0,2,429037,0,2692.669,51.02053,1,11,1,16.29161,86.376,0,86.7323,1184.06,1286.728,1,0,5,0,0,1,87.8,13.8,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,7.898659,0,7.159858,1
-11,4,0,0,3,429037,0,2692.669,52.02053,1,11,1,18.59415,79.15735,42.56234,174.1187,881.8788,1022.193,1,0,11,3,0,1,87.8,13.8,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,7.898659,0,6.929705,1
-11,4,0,0,4,429037,0,2692.669,53.02053,1,11,1,0,142.9314,0,164.7926,0,142.9314,0,0,9,0,0,1,87.8,13.8,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,7.898659,0,4.962365,1
-11,4,0,0,5,429037,0,2692.669,54.02053,1,11,1,52.7247,119.2074,0,123.85,0,171.9321,0,0,7,5,0,1,87.8,13.8,0,69.3,0,0,0,0,0,0,0,0,0,1,0,0,69.3,7.898659,0,5.147099,1
-7,4,25,1,1,429051,0,6239.296,28.94182,0,16,1,67.92645,4.759959,0,0,0,72.68642,0,0,0,3,0,1,75,6.9,0,81.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,81.8,8.738783,0,4.286155,1
-7,4,25,1,2,429051,0,6239.296,29.94182,0,16,1,146.4557,1.561181,0,0,0,148.0169,0,0,0,10,0,1,75,6.9,0,81.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,81.8,8.738783,0,4.997326,1
-7,4,25,1,3,429051,0,6239.296,30.94182,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,75,6.9,0,81.8,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,81.8,8.738783,0,,0
-7,4,25,1,1,429052,0,4645.161,24.70637,0,12,1,72.36842,0,3.669028,0,0,76.03745,0,0,0,18,0,1,63.8,27.6,0,76.1,900,900,0,0,0,6.802395,0,3.258096,8.188689,0,0,0,76.1,8.443796,0,4.331226,1
-7,4,25,1,2,429052,0,4645.161,25.70637,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,27.6,0,76.1,900,900,0,0,0,6.802395,0,3.258096,8.188689,0,0,0,76.1,8.443796,0,,0
-7,4,25,1,3,429052,0,4645.161,26.70637,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,63.8,27.6,0,76.1,900,900,0,0,0,6.802395,0,3.258096,8.188689,0,0,0,76.1,8.443796,0,,0
-11,4,0,1,1,429053,0,7886.804,5.423682,0,12,1,36.31256,.9959142,0,0,0,37.30848,0,0,0,1,0,3,85,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.973073,1.098612,3.619221,1
-11,4,0,1,2,429053,0,7886.804,6.423682,0,12,1,6.563526,4.195968,0,0,0,10.75949,0,0,0,1,0,3,85,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.973073,1.098612,2.375788,1
-11,4,0,1,3,429053,0,7886.804,7.423682,0,12,1,18.27171,0,0,0,0,18.27171,0,0,0,2,0,3,85,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.973073,1.098612,2.905354,1
-11,4,0,1,4,429053,0,7886.804,8.423682,0,12,1,10.46917,4.245831,0,0,502.5979,517.3129,1,0,0,2,0,3,85,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.973073,1.098612,6.248648,1
-11,4,0,1,5,429053,0,7886.804,9.423682,0,12,1,15.56971,0,0,0,0,15.56971,0,0,0,3,0,3,85,9.967326,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.973073,1.098612,2.745327,1
-11,4,0,1,1,429054,0,7886.804,24.84873,1,12,1,22.98264,0,32.68641,0,0,55.66905,0,0,0,2,0,3,84.6,13.8,0,92,0,0,0,0,1.098612,0,0,0,0,1,0,0,92,8.973073,1.098612,4.019424,1
-11,4,0,1,2,429054,0,7886.804,25.84873,1,12,1,60.59541,0,0,0,0,60.59541,0,0,0,1,0,3,84.6,13.8,0,92,0,0,0,0,1.098612,0,0,0,0,1,0,0,92,8.973073,1.098612,4.104219,1
-11,4,0,1,3,429054,0,7886.804,26.84873,1,12,1,30.09458,0,22.35598,0,0,52.45056,0,0,0,3,0,3,84.6,13.8,0,92,0,0,0,0,1.098612,0,0,0,0,1,0,0,92,8.973073,1.098612,3.959871,1
-11,4,0,1,4,429054,0,7886.804,27.84873,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,84.6,13.8,0,92,0,0,0,0,1.098612,0,0,0,0,1,0,0,92,8.973073,1.098612,,0
-11,4,0,1,5,429054,0,7886.804,28.84873,1,12,1,25.47771,0,24.7523,0,0,50.23001,0,0,0,2,0,3,84.6,13.8,0,92,0,0,0,0,1.098612,0,0,0,0,1,0,0,92,8.973073,1.098612,3.916613,1
-11,4,0,1,1,429055,0,7886.804,27.09925,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,98.4,6.9,0,95.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,95.5,8.973073,1.098612,,0
-11,4,0,1,2,429055,0,7886.804,28.09925,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,98.4,6.9,0,95.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,95.5,8.973073,1.098612,,0
-11,4,0,1,3,429055,0,7886.804,29.09925,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,98.4,6.9,0,95.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,95.5,8.973073,1.098612,,0
-11,4,0,1,4,429055,0,7886.804,30.09925,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,98.4,6.9,0,95.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,95.5,8.973073,1.098612,,0
-11,4,0,1,5,429055,0,7886.804,31.09925,0,12,1,59.97877,2.919321,0,0,0,62.89809,0,0,0,1,6,3,98.4,6.9,0,95.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,95.5,8.973073,1.098612,4.141516,1
-13,4,0,1,1,429081,0,2585.924,24.86516,0,16,1,32.68641,3.702758,0,0,0,36.38917,0,0,0,4,0,1,73.4,6.9,0,61.4,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,61.4,7.858225,0,3.594271,1
-13,4,0,1,2,429081,0,2585.924,25.86516,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,6.9,0,61.4,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,61.4,7.858225,0,,0
-13,4,0,1,3,429081,0,2585.924,26.86516,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,6.9,0,61.4,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,61.4,7.858225,0,,0
-13,4,0,1,4,429081,0,2585.924,27.86516,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,6.9,0,61.4,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,61.4,7.858225,0,,0
-13,4,0,1,5,429081,0,2585.924,28.86516,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,73.4,6.9,0,61.4,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,61.4,7.858225,0,,0
-13,4,0,1,1,429107,0,9110.264,31.06366,0,13,1,3.575077,6.511747,0,0,0,10.08682,0,0,0,1,0,4,81.9,6.9,0,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,67,9.117267,1.386294,2.31123,1
-13,4,0,1,2,429107,0,9110.264,32.06366,0,13,1,4.688232,8.321612,0,0,0,13.00985,0,0,0,1,0,4,81.9,6.9,0,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,67,9.117267,1.386294,2.565706,1
-13,4,0,1,3,429107,0,9110.264,33.06366,0,13,1,11.17799,12.89768,0,0,0,24.07567,0,0,0,2,0,4,81.9,6.9,0,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,67,9.117267,1.386294,3.181202,1
-13,4,0,1,1,429108,0,9110.264,2.190281,1,12,1,2.553626,11.36364,0,0,0,13.91726,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.117267,1.386294,2.63313,1
-13,4,0,1,2,429108,0,9110.264,3.190281,1,12,1,3.750586,2.812939,0,0,0,6.563526,0,0,0,1,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.117267,1.386294,1.881528,1
-13,4,0,1,3,429108,0,9110.264,4.19028,1,12,1,19.77644,6.878762,0,0,0,26.6552,0,0,0,3,0,4,83.39137,9.967326,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.8,9.117267,1.386294,3.282984,1
-13,4,0,1,1,429109,0,9110.264,25.91923,1,12,1,19.91828,20.68437,0,0,0,40.60266,0,0,0,5,0,4,45.7,24.1,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,9.117267,1.386294,3.703834,1
-13,4,0,1,2,429109,0,9110.264,26.91923,1,12,1,120.9564,25.55087,28.12939,0,0,174.6367,0,0,0,7,1,4,45.7,24.1,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,9.117267,1.386294,5.162708,1
-13,4,0,1,3,429109,0,9110.264,27.91923,1,12,1,16.76698,0,4.707653,0,0,21.47463,0,0,0,1,0,4,45.7,24.1,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,9.117267,1.386294,3.066872,1
-13,4,0,1,1,429110,0,9110.264,6.310746,0,12,1,13.78958,2.808989,0,0,0,16.59857,0,0,0,2,0,4,75,9.967326,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,9.117267,1.386294,2.809317,1
-13,4,0,1,2,429110,0,9110.264,7.310746,0,12,1,9.376465,5.625879,0,0,0,15.00234,0,0,0,2,0,4,75,9.967326,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,9.117267,1.386294,2.708206,1
-13,4,0,1,3,429110,0,9110.264,8.310746,0,12,1,4.299226,3.009458,0,0,0,7.308684,0,0,0,1,0,4,75,9.967326,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,9.117267,1.386294,1.989063,1
-10,4,50,1,1,429174,0,11900.29,12.79945,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,55.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.384402,1.609438,,0
-10,4,50,1,2,429174,0,11900.29,13.79945,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,9.967326,0,55.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.384402,1.609438,,0
-10,4,50,1,3,429174,0,11900.29,14.79945,1,12,1,6.412997,1.633177,0,11.75716,0,8.046174,0,0,5,1,0,5,81.7,9.967326,0,55.6,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,55.6,9.384402,1.609438,2.085197,1
-10,4,50,1,1,429175,0,11900.29,17.57153,1,12,1,50.10122,0,32.38866,0,0,82.48988,0,0,0,5,0,5,54.8,17.2,0,65.9,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,65.9,9.384402,1.609438,4.412675,1
-10,4,50,1,2,429175,0,11900.29,18.57153,1,12,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,5,54.8,17.2,0,65.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,65.9,9.384402,1.609438,1.721767,1
-10,4,50,1,3,429175,0,11900.29,19.57153,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,54.8,17.2,0,65.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,65.9,9.384402,1.609438,,0
-10,4,50,1,1,429176,0,11900.29,18.44216,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,3.4,0,59.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,59.5,9.384402,1.609438,,0
-10,4,50,1,2,429176,0,11900.29,19.44216,0,11,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,5,79.8,3.4,0,59.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,59.5,9.384402,1.609438,1.721767,1
-10,4,50,1,3,429176,0,11900.29,20.44216,0,11,1,17.63574,0,0,0,0,17.63574,0,0,0,0,0,5,79.8,3.4,0,59.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,59.5,9.384402,1.609438,2.869928,1
-10,4,50,1,1,429177,0,11900.29,42.67214,1,12,1,39.98988,13.01113,0,0,0,53.00101,0,0,0,3,0,5,73.9,20.7,1,43.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,43.2,9.384402,1.609438,3.970311,1
-10,4,50,1,2,429177,0,11900.29,43.67214,1,12,1,26.57343,15.92075,24.24242,0,0,66.7366,0,0,0,3,1,5,73.9,20.7,1,43.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,43.2,9.384402,1.609438,4.200754,1
-10,4,50,1,3,429177,0,11900.29,44.67214,1,12,1,266.9944,67.0201,0,11.75716,370.3506,704.3651,1,0,5,9,0,5,73.9,20.7,1,43.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,43.2,9.384402,1.609438,6.557297,1
-10,4,50,1,1,429178,0,11900.29,46.39014,0,12,1,10.12146,0,47.57085,0,0,57.69231,0,0,0,1,0,5,62.3,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.3,9.384402,1.609438,4.055124,1
-10,4,50,1,2,429178,0,11900.29,47.39014,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.3,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.3,9.384402,1.609438,,0
-10,4,50,1,3,429178,0,11900.29,48.39014,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,62.3,6.9,0,77.3,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,77.3,9.384402,1.609438,,0
-10,4,50,1,1,429253,0,12486.22,32.31211,0,12,1,38.81512,6.537283,0,0,0,45.3524,0,0,0,3,0,4,73.9,6.9,1,72.7,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.7,9.432461,1.386294,3.814463,1
-10,4,50,1,2,429253,0,12486.22,33.31211,0,12,1,0,12.23629,0,0,0,12.23629,0,0,0,0,0,4,73.9,6.9,1,72.7,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.7,9.432461,1.386294,2.504406,1
-10,4,50,1,3,429253,0,12486.22,34.31211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,6.9,1,72.7,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.7,9.432461,1.386294,,0
-10,4,50,1,4,429253,0,12486.22,35.31211,0,12,1,5.816208,2.481582,0,0,0,8.29779,0,0,0,1,0,4,73.9,6.9,1,72.7,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.7,9.432461,1.386294,2.115989,1
-10,4,50,1,5,429253,0,12486.22,36.31211,0,12,1,62.6327,1.2385,0,0,0,63.8712,0,0,0,2,0,4,73.9,6.9,1,72.7,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,72.7,9.432461,1.386294,4.156868,1
-10,4,50,1,1,429254,0,12486.22,7.307324,0,15,1,12.25741,16.5475,0,0,0,28.8049,0,0,0,2,0,4,81.7,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,3.360546,1
-10,4,50,1,2,429254,0,12486.22,8.307323,0,15,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,,0
-10,4,50,1,3,429254,0,12486.22,9.307323,0,15,1,18.9166,0,0,0,0,18.9166,0,0,0,2,0,4,81.7,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,2.94004,1
-10,4,50,1,4,429254,0,12486.22,10.30732,0,15,1,164.715,10.11245,7.754944,0,0,182.5824,0,0,0,13,0,4,81.7,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,5.207201,1
-10,4,50,1,5,429254,0,12486.22,11.30732,0,15,1,39.45506,0,0,0,0,39.45506,0,0,0,4,0,4,81.7,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,3.675162,1
-10,4,50,1,1,429255,0,12486.22,36.564,1,15,1,52.98774,3.064351,0,0,0,56.05209,0,0,0,1,0,4,76.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.432461,1.386294,4.026281,1
-10,4,50,1,2,429255,0,12486.22,37.564,1,15,1,0,2.742616,0,0,0,2.742616,0,0,0,0,0,4,76.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.432461,1.386294,1.008912,1
-10,4,50,1,3,429255,0,12486.22,38.564,1,15,1,12.89768,0,0,0,0,12.89768,0,0,0,1,0,4,76.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.432461,1.386294,2.557047,1
-10,4,50,1,4,429255,0,12486.22,39.564,1,15,1,85.69213,11.62466,0,341.2175,0,97.31679,0,0,16,5,0,4,76.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.432461,1.386294,4.577971,1
-10,4,50,1,5,429255,0,12486.22,40.564,1,15,1,81.20665,0,0,921.7976,0,81.20665,0,0,45,3,0,4,76.1,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.432461,1.386294,4.396997,1
-10,4,50,1,1,429256,0,12486.22,9.722108,0,15,1,49.02962,0,0,0,0,49.02962,0,0,0,1,0,4,80,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,3.892425,1
-10,4,50,1,2,429256,0,12486.22,10.72211,0,15,1,3.281763,6.28692,0,0,0,9.568683,0,0,0,1,0,4,80,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,2.258496,1
-10,4,50,1,3,429256,0,12486.22,11.72211,0,15,1,23.64574,0,0,0,0,23.64574,0,0,0,3,0,4,80,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,3.163183,1
-10,4,50,1,4,429256,0,12486.22,12.72211,0,15,1,4.556029,9.747964,0,0,0,14.30399,0,0,0,1,0,4,80,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,2.660539,1
-10,4,50,1,5,429256,0,12486.22,13.72211,0,15,1,39.27813,0,0,0,0,39.27813,0,0,0,3,0,4,80,9.967326,0,88.9,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,88.9,9.432461,1.386294,3.670668,1
-13,4,0,1,1,429282,0,7910.823,37.01848,1,12,1,35.8502,5.161943,23.27935,0,0,64.2915,0,0,0,1,0,4,85.1,13.8,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.976113,1.386294,4.163427,1
-13,4,0,1,2,429282,0,7910.823,38.01848,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,13.8,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.976113,1.386294,,0
-13,4,0,1,3,429282,0,7910.823,39.01848,1,12,1,21.37666,0,24.79692,0,0,46.17358,0,0,0,2,1,4,85.1,13.8,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.976113,1.386294,3.832408,1
-13,4,0,1,1,429283,0,7910.823,17.1718,1,12,1,73.88664,7.57085,0,0,0,81.45749,0,0,0,3,0,4,66.5,6.9,0,79.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,8.976113,1.386294,4.400081,1
-13,4,0,1,2,429283,0,7910.823,18.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,6.9,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,8.976113,1.386294,,0
-13,4,0,1,3,429283,0,7910.823,19.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,6.9,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,79.5,8.976113,1.386294,,0
-13,4,0,1,1,429284,0,7910.823,6.809035,0,12,1,19.84818,0,0,0,0,19.84818,0,0,0,2,0,4,98.3,9.967326,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.976113,1.386294,2.988112,1
-13,4,0,1,2,429284,0,7910.823,7.809035,0,12,1,4.662004,0,0,0,0,4.662004,0,0,0,1,0,4,98.3,9.967326,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.976113,1.386294,1.539446,1
-13,4,0,1,3,429284,0,7910.823,8.809035,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,98.3,9.967326,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.976113,1.386294,,0
-13,4,0,1,1,429285,0,7910.823,14.60096,1,12,1,29.35223,1.007085,0,0,0,30.35931,0,0,0,6,0,4,67.6,6.9,0,52.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,52.3,8.976113,1.386294,3.413103,1
-13,4,0,1,2,429285,0,7910.823,15.60096,1,12,1,18.18182,0,0,0,0,18.18182,0,0,0,3,0,4,67.6,6.9,0,52.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,52.3,8.976113,1.386294,2.900422,1
-13,4,0,1,3,429285,0,7910.823,16.60096,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,67.6,6.9,0,52.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,52.3,8.976113,1.386294,,0
-13,4,0,0,1,429286,0,2817.009,25.03765,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,61.7,10.3,0,85.2,150,302.2,0,0,0,5.711089,1,4.564348,5.061929,1,0,0,85.2,7.943786,0,,0
-13,4,0,0,2,429286,0,2817.009,26.03765,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,61.7,10.3,0,85.2,150,302.2,0,0,0,5.711089,1,4.564348,5.061929,1,0,0,85.2,7.943786,0,,0
-13,4,0,0,3,429286,0,2817.009,27.03765,1,14,1,10.68833,0,0,0,0,10.68833,0,0,0,2,0,1,61.7,10.3,0,85.2,150,302.2,0,0,0,5.711089,1,4.564348,5.061929,1,0,0,85.2,7.943786,0,2.369152,1
-11,4,0,0,1,429291,0,1722.581,52.73648,1,18,1,87.43616,37.30848,0,0,0,124.7446,0,0,0,8,0,1,54.3,31,1,58,0,0,0,0,0,0,0,0,0,1,0,0,58,7.452159,0,4.826269,1
-11,4,0,0,2,429291,0,1722.581,53.73648,1,18,1,109.1186,74.46789,37.97468,0,0,221.5612,0,0,0,4,1,1,54.3,31,1,58,0,0,0,0,0,0,0,0,0,1,0,0,58,7.452159,0,5.400699,1
-11,4,0,0,3,429291,0,1722.581,54.73648,1,18,1,46.86156,81.74979,0,0,0,128.6113,0,0,0,4,0,1,54.3,31,1,58,0,0,0,0,0,0,0,0,0,1,0,0,58,7.452159,0,4.856795,1
-11,4,0,0,1,429292,0,4792.375,21.34155,0,12,1,56.94586,0,0,0,0,56.94586,0,0,0,2,0,1,58,13.8,0,84.5,0,150.8,0,0,0,5.015954,0,0,0,0,0,0,84.5,8.47499,0,4.042101,1
-11,4,0,0,2,429292,0,4792.375,22.34155,0,12,1,0,2.695734,0,0,532.5832,535.2789,1,0,0,0,0,1,58,13.8,0,84.5,0,150.8,0,0,0,5.015954,0,0,0,0,0,0,84.5,8.47499,0,6.282788,1
-11,4,0,0,3,429292,0,4792.375,23.34155,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,58,13.8,0,84.5,0,150.8,0,0,0,5.015954,0,0,0,0,0,0,84.5,8.47499,0,,0
-13,4,0,1,1,429293,0,8915.543,28.38056,1,16,1,148.6134,9.008097,0,0,0,157.6215,0,0,0,8,0,2,67,17.2,1,25,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,25,9.095664,.6931472,5.060196,1
-13,4,0,1,2,429293,0,8915.543,29.38056,1,16,1,183.4965,64.21912,11.18881,0,629.8602,888.7646,1,0,0,10,0,2,67,17.2,1,25,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,25,9.095664,.6931472,6.789833,1
-13,4,0,1,3,429293,0,8915.543,30.38056,1,16,1,57.28944,89.61095,15.81873,0,0,162.7191,0,0,0,7,0,2,67,17.2,1,25,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,25,9.095664,.6931472,5.092025,1
-13,4,0,1,4,429293,0,8915.543,31.38056,1,16,1,198.5204,84.72329,0,0,0,283.2437,0,0,0,9,0,2,67,17.2,1,25,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,25,9.095664,.6931472,5.646307,1
-13,4,0,1,5,429293,0,8915.543,32.38056,1,16,1,134.3519,85.37057,29.1535,0,0,248.876,0,0,0,9,0,2,67,17.2,1,25,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,25,9.095664,.6931472,5.516955,1
-13,4,0,1,1,429294,0,8915.543,28.43806,0,16,1,3.036437,3.289474,0,0,0,6.325911,0,0,0,1,0,2,67.6,24.1,1,65.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,65.5,9.095664,.6931472,1.844654,1
-13,4,0,1,2,429294,0,8915.543,29.43806,0,16,1,92.65734,5.547786,5.594406,0,0,103.7995,0,0,0,7,0,2,67.6,24.1,1,65.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,65.5,9.095664,.6931472,4.642461,1
-13,4,0,1,3,429294,0,8915.543,30.43806,0,16,1,34.41642,4.852501,0,0,0,39.26892,0,0,0,4,0,2,67.6,24.1,1,65.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,65.5,9.095664,.6931472,3.670433,1
-13,4,0,1,4,429294,0,8915.543,31.43806,0,16,1,23.4435,4.727133,0,0,0,28.17064,0,0,0,4,0,2,67.6,24.1,1,65.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,65.5,9.095664,.6931472,3.33828,1
-13,4,0,1,5,429294,0,8915.543,32.43806,0,16,1,131.3663,5.619951,22.83105,42.14963,0,159.8174,0,0,3,5,0,2,67.6,24.1,1,65.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,65.5,9.095664,.6931472,5.074032,1
-13,4,0,1,1,429307,0,10139.59,43.61396,1,12,1,31.15424,64.81104,49.49949,0,0,145.4648,0,0,0,3,0,4,92.6,6.9,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,80.7,9.224301,1.386294,4.979934,1
-13,4,0,1,2,429307,0,10139.59,44.61396,1,12,1,85.32583,62.44726,33.84435,0,0,181.6174,0,0,0,2,0,4,92.6,6.9,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,80.7,9.224301,1.386294,5.201902,1
-13,4,0,1,3,429307,0,10139.59,45.61396,1,12,1,94.04557,67.43336,44.64746,120.3783,0,206.1264,0,0,7,6,0,4,92.6,6.9,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,80.7,9.224301,1.386294,5.32849,1
-13,4,0,1,1,429308,0,10139.59,44.05476,0,12,1,101.6445,6.358529,0,0,0,108.0031,0,0,0,2,0,4,62.8,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.224301,1.386294,4.682159,1
-13,4,0,1,2,429308,0,10139.59,45.05476,0,12,1,9.376465,0,28.44819,0,0,37.82466,0,0,0,1,0,4,62.8,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.224301,1.386294,3.632961,1
-13,4,0,1,3,429308,0,10139.59,46.05476,0,12,1,37.40327,0,31.74978,0,0,69.15305,0,0,0,4,0,4,62.8,3.4,0,72.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.7,9.224301,1.386294,4.236322,1
-13,4,0,1,1,429309,0,10139.59,12.49008,0,12,1,76.60879,5.87334,0,0,0,82.48212,0,0,0,3,0,4,93.3,9.967326,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.224301,1.386294,4.412581,1
-13,4,0,1,2,429309,0,10139.59,13.49008,0,12,1,9.376465,6.25879,0,0,0,15.63526,0,0,0,1,0,4,93.3,9.967326,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.224301,1.386294,2.749528,1
-13,4,0,1,3,429309,0,10139.59,14.49008,0,12,1,242.9106,6.423044,0,0,0,249.3336,0,0,0,2,0,4,93.3,9.967326,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.224301,1.386294,5.518792,1
-13,4,0,1,1,429310,0,10139.59,20.53662,1,13,1,24.00409,0,30.13279,0,0,54.13688,0,0,0,2,0,4,87.8,3.4,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.224301,1.386294,3.991516,1
-13,4,0,1,2,429310,0,10139.59,21.53662,1,13,1,132.4426,5.391468,30.94234,0,0,168.7764,0,0,0,7,0,4,87.8,3.4,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.224301,1.386294,5.128574,1
-13,4,0,1,3,429310,0,10139.59,22.53662,1,13,1,64.4239,23.78332,20.06879,0,0,108.276,0,0,0,6,0,4,87.8,3.4,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,9.224301,1.386294,4.684684,1
-13,4,0,1,1,429311,0,2022.874,21.9603,1,14,1,58.98877,24.46374,15.32176,0,0,98.77426,0,0,0,5,1,1,91,3.4,0,90.9,150,349.32,0,0,0,5.855989,1,4.564348,5.061929,0,0,0,90.9,7.612769,0,4.592837,1
-13,4,0,1,2,429311,0,2022.874,22.9603,1,14,1,68.87013,25.15237,23.44116,0,0,117.4637,0,0,0,9,0,1,91,3.4,0,90.9,150,349.32,0,0,0,5.855989,1,4.564348,5.061929,0,0,0,90.9,7.612769,0,4.766129,1
-13,4,0,1,3,429311,0,2022.874,23.9603,1,14,1,109.2003,11.6595,4.94411,0,570.0559,695.8599,1,0,0,11,0,1,91,3.4,0,90.9,150,349.32,0,0,0,5.855989,1,4.564348,5.061929,0,0,0,90.9,7.612769,0,6.545148,1
-6,4,25,1,1,429317,0,8195.308,13.9384,1,10,1,36.51685,14.27477,0,0,0,50.79163,0,0,0,4,0,5,81.7,9.967326,0,66.7,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.011439,1.609438,3.927732,1
-6,4,25,1,2,429317,0,8195.308,14.9384,1,10,1,74.19128,29.89217,29.53587,395.6868,0,133.6193,0,0,46,3,3,5,81.7,9.967326,0,66.7,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.011439,1.609438,4.894995,1
-6,4,25,1,3,429317,0,8195.308,15.9384,1,10,1,298.1728,2.626827,19.77644,319.8624,0,320.5761,0,0,56,7,1,5,81.7,9.967326,0,66.7,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.011439,1.609438,5.77012,1
-6,4,25,1,1,429318,0,8195.308,34.19302,0,12,1,25.53626,23.27886,0,0,1456.369,1505.184,1,0,0,3,0,5,78.7,6.9,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.011439,1.609438,7.31667,1
-6,4,25,1,2,429318,0,8195.308,35.19302,0,12,1,51.57056,37.61369,32.81763,450.0703,279.0905,401.0923,1,0,50,4,0,5,78.7,6.9,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.011439,1.609438,5.994192,1
-6,4,25,1,3,429318,0,8195.308,36.19302,0,12,1,393.2502,67.85468,0,150.4729,585.4901,1046.595,2,0,23,17,0,5,78.7,6.9,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,80.7,9.011439,1.609438,6.953297,1
-6,4,25,1,1,429319,0,8195.308,11.42779,1,10,1,5.107252,9.065372,0,0,0,14.17263,0,0,0,1,0,5,71.7,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,9.011439,1.609438,2.651312,1
-6,4,25,1,2,429319,0,8195.308,12.42779,1,10,1,9.376465,0,0,0,0,9.376465,0,0,0,1,0,5,71.7,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,9.011439,1.609438,2.238203,1
-6,4,25,1,3,429319,0,8195.308,13.42779,1,10,1,67.60533,0,5.210662,0,0,72.81599,0,0,0,5,0,5,71.7,9.967326,0,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,96.3,9.011439,1.609438,4.287936,1
-6,4,25,1,1,429320,0,8195.308,30.48871,1,10,1,39.83657,5.812053,0,0,559.9438,605.5925,1,0,0,6,0,5,87.2,17.2,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.011439,1.609438,6.406207,1
-6,4,25,1,2,429320,0,8195.308,31.48871,1,10,1,25.78528,0,33.28645,0,0,59.07173,0,0,0,2,0,5,87.2,17.2,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.011439,1.609438,4.078753,1
-6,4,25,1,3,429320,0,8195.308,32.4887,1,10,1,73.94669,6.534824,17.17541,36.54342,0,97.65692,0,0,6,6,0,5,87.2,17.2,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,72.7,9.011439,1.609438,4.58146,1
-6,4,25,1,1,429321,0,8195.308,12.45175,0,10,1,10.2145,0,0,0,0,10.2145,0,0,0,1,0,5,73.3,9.967326,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.9,9.011439,1.609438,2.323809,1
-6,4,25,1,2,429321,0,8195.308,13.45175,0,10,1,20.04219,0,0,0,0,20.04219,0,0,0,2,0,5,73.3,9.967326,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.9,9.011439,1.609438,2.99784,1
-6,4,25,1,3,429321,0,8195.308,14.45175,0,10,1,10.74806,0,28.37489,0,0,39.12296,0,0,0,1,0,5,73.3,9.967326,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,51.9,9.011439,1.609438,3.666709,1
-14,4,95,1,1,429322,0,2469.208,4.544832,1,13,1,18.7247,4.554656,0,0,0,23.27935,0,0,0,3,0,2,83.39137,9.967326,0,48.1,18,18,1,1,.6931472,2.890372,0,4.564348,2.941665,0,0,0,48.1,7.812058,.6931472,3.147567,1
-14,4,95,1,2,429322,0,2469.208,5.544832,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,83.39137,9.967326,0,48.1,18,18,1,1,.6931472,2.890372,0,4.564348,2.941665,0,0,0,48.1,7.812058,.6931472,,0
-14,4,95,1,3,429322,0,2469.208,6.544832,1,13,1,5.130398,4.467721,0,0,0,9.598119,0,0,0,1,0,2,83.39137,9.967326,0,48.1,18,18,1,1,.6931472,2.890372,0,4.564348,2.941665,0,0,0,48.1,7.812058,.6931472,2.261567,1
-14,4,95,1,1,429323,0,2469.208,27.09103,1,13,1,76.05264,14.14474,0,0,0,90.19736,0,0,0,6,0,2,58.5,20.7,0,70.5,18,18,0,0,.6931472,2.890372,0,4.564348,2.941665,1,0,0,70.5,7.812058,.6931472,4.502,1
-14,4,95,1,2,429323,0,2469.208,28.09103,1,13,1,12.12121,9.90676,0,0,0,22.02797,0,0,0,2,0,2,58.5,20.7,0,70.5,18,18,0,0,.6931472,2.890372,0,4.564348,2.941665,1,0,0,70.5,7.812058,.6931472,3.092313,1
-14,4,95,1,3,429323,0,2469.208,29.09103,1,13,1,24.36939,11.07311,0,0,0,35.4425,0,0,0,1,1,2,58.5,20.7,0,70.5,18,18,0,0,.6931472,2.890372,0,4.564348,2.941665,1,0,0,70.5,7.812058,.6931472,3.567912,1
-17,4,25,1,1,429336,0,8654.546,4.120465,0,12,1,30.87045,17.00911,0,0,0,47.87955,0,0,0,4,0,3,83.39137,9.967326,0,66.7,700,700,1,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,66.7,9.065955,1.098612,3.868689,1
-17,4,25,1,2,429336,0,8654.546,5.120465,0,12,1,16.78322,16.39627,0,0,0,33.17949,0,0,0,3,0,3,83.39137,9.967326,0,66.7,700,700,1,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,66.7,9.065955,1.098612,3.501932,1
-17,4,25,1,3,429336,0,8654.546,6.120465,0,12,1,9.405729,10.97905,0,0,0,20.38478,0,0,0,2,0,3,83.39137,9.967326,0,66.7,700,700,1,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,66.7,9.065955,1.098612,3.014788,1
-17,4,25,1,4,429336,0,8654.546,7.120465,0,12,1,0,6.102998,0,0,0,6.102998,0,0,0,0,0,3,83.39137,9.967326,0,66.7,700,700,1,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,66.7,9.065955,1.098612,1.80878,1
-17,4,25,1,5,429336,0,8654.546,8.120465,0,12,1,6.322445,6.25922,0,0,0,12.58167,0,0,0,1,0,3,83.39137,9.967326,0,66.7,700,700,1,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,66.7,9.065955,1.098612,2.532241,1
-17,4,25,1,1,429337,0,8654.546,32.81862,1,12,1,265.1822,104.2966,28.34008,0,0,397.8188,0,0,0,14,1,3,59.6,24.1,0,54.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,54.5,9.065955,1.098612,5.985997,1
-17,4,25,1,2,429337,0,8654.546,33.81862,1,12,1,238.6946,69.23077,0,0,0,307.9254,0,0,0,13,0,3,59.6,24.1,0,54.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,54.5,9.065955,1.098612,5.729857,1
-17,4,25,1,3,429337,0,8654.546,34.81862,1,12,1,89.14066,35.823,0,0,0,124.9637,0,0,0,4,1,3,59.6,24.1,0,54.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,54.5,9.065955,1.098612,4.828023,1
-17,4,25,1,4,429337,0,8654.546,35.81862,1,12,1,25.3651,39.79631,0,0,0,65.16142,0,0,0,1,1,3,59.6,24.1,0,54.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,54.5,9.065955,1.098612,4.176867,1
-17,4,25,1,5,429337,0,8654.546,36.81862,1,12,1,14.75237,25.7745,24.23604,0,0,64.76291,0,0,0,1,1,3,59.6,24.1,0,54.5,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,0,1,0,54.5,9.065955,1.098612,4.170733,1
-17,4,25,1,1,429338,0,8654.546,36.49829,0,13,1,27.83401,0,28.84615,0,0,56.68016,0,0,0,1,1,3,73.9,6.9,0,72.7,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,1,0,0,72.7,9.065955,1.098612,4.037424,1
-17,4,25,1,2,429338,0,8654.546,37.49829,0,13,1,13.98601,9.431235,0,0,0,23.41725,0,0,0,2,0,3,73.9,6.9,0,72.7,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,1,0,0,72.7,9.065955,1.098612,3.153473,1
-17,4,25,1,3,429338,0,8654.546,38.49829,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,73.9,6.9,0,72.7,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,1,0,0,72.7,9.065955,1.098612,,0
-17,4,25,1,4,429338,0,8654.546,39.49829,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,73.9,6.9,0,72.7,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,1,0,0,72.7,9.065955,1.098612,,0
-17,4,25,1,5,429338,0,8654.546,40.49829,0,13,1,24.58728,0,0,0,0,24.58728,0,0,0,1,0,3,73.9,6.9,0,72.7,700,700,0,0,1.098612,6.55108,0,3.258096,7.937375,1,0,0,72.7,9.065955,1.098612,3.202229,1
-14,4,95,1,1,429339,0,12450.44,31.63587,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,97.3,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.429591,1.609438,,0
-14,4,95,1,2,429339,0,12450.44,32.63586,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,97.3,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.429591,1.609438,,0
-14,4,95,1,3,429339,0,12450.44,33.63586,0,13,1,29.92732,0,8.550663,0,0,38.47798,0,0,0,0,2,5,97.3,0,0,92,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,92,9.429591,1.609438,3.650086,1
-14,4,95,1,1,429340,0,12450.44,31.28816,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,88.8,0,0,94.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,94.3,9.429591,1.609438,,0
-14,4,95,1,2,429340,0,12450.44,32.28816,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,88.8,0,0,94.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,94.3,9.429591,1.609438,,0
-14,4,95,1,3,429340,0,12450.44,33.28816,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,88.8,0,0,94.3,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,94.3,9.429591,1.609438,,0
-14,4,95,1,1,429341,0,12450.44,4.503765,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.429591,1.609438,,0
-14,4,95,1,2,429341,0,12450.44,5.503765,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.429591,1.609438,,0
-14,4,95,1,3,429341,0,12450.44,6.503765,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,83.39137,9.967326,0,85.2,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.429591,1.609438,,0
-14,4,95,1,1,429342,0,12450.44,6.49692,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,90,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.429591,1.609438,,0
-14,4,95,1,2,429342,0,12450.44,7.49692,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,90,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.429591,1.609438,,0
-14,4,95,1,3,429342,0,12450.44,8.49692,0,16,1,4.275331,2.090637,0,0,0,6.365968,0,0,0,1,0,5,90,9.967326,0,74.1,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,9.429591,1.609438,1.850966,1
-14,4,95,1,1,429343,0,12450.44,9.738535,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.429591,1.609438,,0
-14,4,95,1,2,429343,0,12450.44,10.73853,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,95,9.967326,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.429591,1.609438,,0
-14,4,95,1,3,429343,0,12450.44,11.73853,0,16,1,5.985464,0,0,0,0,5.985464,0,0,0,1,0,5,95,9.967326,0,66.7,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.429591,1.609438,1.789334,1
-16,4,95,1,1,429344,0,234.6041,23.63039,1,12,1,36.1083,3.441296,0,0,0,39.54959,0,0,0,3,0,1,67.6,10.3,0,81.8,300,0,0,0,0,0,0,4.564348,5.755076,0,0,0,81.8,5.462153,0,3.677556,1
-16,4,95,1,2,429344,0,234.6041,24.63039,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,67.6,10.3,0,81.8,300,0,0,0,0,0,0,4.564348,5.755076,0,0,0,81.8,5.462153,0,,0
-13,4,0,1,1,429353,0,8326.687,34.10267,0,12,1,13.66397,44.28138,0,0,0,57.94534,0,0,0,2,0,4,77.1,3.4,0,75,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,1,0,0,75,9.027341,1.386294,4.0595,1
-13,4,0,1,2,429353,0,8326.687,35.10267,0,12,1,41.02564,60.09324,0,0,0,101.1189,0,0,0,2,0,4,77.1,3.4,0,75,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,1,0,0,75,9.027341,1.386294,4.616297,1
-13,4,0,1,3,429353,0,8326.687,36.10267,0,12,1,131.1672,65.04916,0,0,0,196.2163,0,0,0,2,0,4,77.1,3.4,0,75,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,1,0,0,75,9.027341,1.386294,5.279218,1
-13,4,0,1,1,429354,0,8326.687,9.702943,0,12,1,20.74899,0,0,0,0,20.74899,0,0,0,2,0,4,63.3,9.967326,0,100,450,425,1,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,3.032497,1
-13,4,0,1,2,429354,0,8326.687,10.70294,0,12,1,5.594406,0,0,0,0,5.594406,0,0,0,1,0,4,63.3,9.967326,0,100,450,425,1,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,1.721767,1
-13,4,0,1,3,429354,0,8326.687,11.70294,0,12,1,6.412997,0,1.710132,0,0,8.12313,0,0,0,1,0,4,63.3,9.967326,0,100,450,425,1,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,2.094716,1
-13,4,0,1,1,429355,0,8326.687,34.37372,1,12,1,36.77126,17.66194,0,0,0,54.4332,0,0,0,2,0,4,67.6,13.8,0,90.9,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,90.9,9.027341,1.386294,3.996974,1
-13,4,0,1,2,429355,0,8326.687,35.37372,1,12,1,19.58042,24.70862,25.64103,0,0,69.93007,0,0,0,2,0,4,67.6,13.8,0,90.9,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,90.9,9.027341,1.386294,4.247496,1
-13,4,0,1,3,429355,0,8326.687,36.37372,1,12,1,12.82599,23.51432,0,0,0,36.34032,0,0,0,1,0,4,67.6,13.8,0,90.9,450,425,0,0,1.386294,6.052089,1,4.564348,6.160541,0,0,0,90.9,9.027341,1.386294,3.592928,1
-13,4,0,1,1,429356,0,8326.687,6.954141,1,12,1,8.097166,0,0,0,0,8.097166,0,0,0,1,0,4,81.7,9.967326,0,100,450,425,1,1,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,2.091514,1
-13,4,0,1,2,429356,0,8326.687,7.954141,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,9.967326,0,100,450,425,1,1,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,,0
-13,4,0,1,3,429356,0,8326.687,8.954141,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,9.967326,0,100,450,425,1,1,1.386294,6.052089,1,4.564348,6.160541,0,0,0,100,9.027341,1.386294,,0
-13,4,0,1,1,429396,0,8216.422,15.69062,1,9,1,34.1573,6.332993,0,0,0,40.4903,0,0,0,3,0,3,70.7,3.4,0,53.4,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.014011,1.098612,3.701062,1
-13,4,0,1,2,429396,0,8216.422,16.69062,1,9,1,20.39381,1.80497,0,0,0,22.19878,0,0,0,1,0,3,70.7,3.4,0,53.4,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.014011,1.098612,3.100037,1
-13,4,0,1,3,429396,0,8216.422,17.69062,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,3.4,0,53.4,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,53.4,9.014011,1.098612,,0
-13,4,0,1,1,429397,0,8216.422,53.02122,1,9,1,167.4668,136.6701,43.92237,20.42901,0,348.0592,0,0,1,6,7,3,71.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,9.014011,1.098612,5.852373,1
-13,4,0,1,2,429397,0,8216.422,54.02122,1,9,1,98.45288,31.80497,0,0,0,130.2579,0,0,0,0,17,3,71.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,9.014011,1.098612,4.869516,1
-13,4,0,1,3,429397,0,8216.422,55.02122,1,9,1,32.99656,45.51161,0,0,0,78.50817,0,0,0,1,1,3,71.8,6.9,0,86.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,86.4,9.014011,1.098612,4.363203,1
-13,4,0,1,1,429398,0,8216.422,54.99247,0,9,1,35.24004,49.33606,0,0,0,84.5761,0,0,0,6,0,3,79.3,24.1,0,43.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.014011,1.098612,4.437652,1
-13,4,0,1,2,429398,0,8216.422,55.99247,0,9,1,7.032349,31.17675,0,0,0,38.2091,0,0,0,1,0,3,79.3,24.1,0,43.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.014011,1.098612,3.643074,1
-13,4,0,1,3,429398,0,8216.422,56.99247,0,9,1,23.64574,49.49699,29.23474,0,0,102.3775,0,0,0,1,1,3,79.3,24.1,0,43.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,43.2,9.014011,1.098612,4.628667,1
-13,4,0,1,1,429401,0,2856.892,59.66325,1,12,1,37.44939,35.32389,39.97976,0,0,112.753,0,0,0,6,0,1,62.8,31,0,53.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,53.4,7.957839,0,4.7252,1
-13,4,0,1,2,429401,0,2856.892,60.66325,1,12,1,11.18881,11.04895,0,0,0,22.23776,0,0,0,2,0,1,62.8,31,0,53.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,53.4,7.957839,0,3.101792,1
-13,4,0,1,3,429401,0,2856.892,61.66325,1,12,1,80.91064,10.66268,40.61565,0,0,132.189,0,0,0,6,0,1,62.8,31,0,53.4,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,53.4,7.957839,0,4.884233,1
-11,4,0,1,1,429463,0,4336.07,5.355236,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,9.967326,0,92.6,0,0,1,0,1.098612,0,0,0,0,0,0,0,92.6,8.374954,1.098612,,0
-11,4,0,1,2,429463,0,4336.07,6.355236,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,9.967326,0,92.6,0,0,1,0,1.098612,0,0,0,0,0,0,0,92.6,8.374954,1.098612,,0
-11,4,0,1,3,429463,0,4336.07,7.355236,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,92.6,0,0,1,0,1.386294,0,0,0,0,0,0,0,92.6,8.374954,1.386294,,0
-11,4,0,1,1,429464,0,4336.07,7.876797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,66.7,0,0,1,1,1.098612,0,0,0,0,0,0,0,66.7,8.374954,1.098612,,0
-11,4,0,1,2,429464,0,4336.07,8.876797,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85,9.967326,0,66.7,0,0,1,1,1.098612,0,0,0,0,0,0,0,66.7,8.374954,1.098612,,0
-11,4,0,1,3,429464,0,4336.07,9.876797,1,12,1,5.803955,0,0,0,0,5.803955,0,0,0,2,0,4,85,9.967326,0,66.7,0,0,1,1,1.386294,0,0,0,0,0,0,0,66.7,8.374954,1.386294,1.75854,1
-11,4,0,1,1,429465,0,4336.07,27.17591,1,12,1,15.32176,0,0,0,0,15.32176,0,0,0,1,0,3,78.7,0,0,84.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,84.1,8.374954,1.098612,2.729274,1
-11,4,0,1,2,429465,0,4336.07,28.17591,1,12,1,0,0,0,0,7.032349,7.032349,1,1,0,0,0,3,78.7,0,0,84.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,84.1,8.374954,1.098612,1.950521,1
-11,4,0,1,3,429465,0,4336.07,29.17591,1,12,1,36.04901,7.115219,0,0,0,43.16423,0,0,0,2,0,4,78.7,0,0,84.1,0,0,0,0,1.386294,0,0,0,0,0,0,0,84.1,8.374954,1.386294,3.765012,1
-11,4,0,1,1,429466,0,1759.531,23.84668,0,11,1,61.21587,0,0,0,0,61.21587,0,0,0,3,0,1,81.9,0,0,88.6,0,0,0,0,0,0,0,0,0,0,0,0,88.6,7.473371,0,4.114407,1
-11,4,0,1,2,429466,0,1759.531,24.84668,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,81.9,0,0,88.6,0,0,0,0,0,0,0,0,0,0,0,0,88.6,7.473371,0,,0
-11,4,0,1,3,429466,0,1759.531,25.84668,0,11,1,34.78543,6.337234,0,0,0,41.12267,0,0,0,5,0,1,81.9,0,0,88.6,0,0,0,0,0,0,0,0,0,0,0,0,88.6,7.473371,0,3.71656,1
-11,4,0,1,1,429534,0,4631.085,17.41821,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,78.7,0,0,92,0,492.84,1,0,2.079442,6.200184,0,0,0,0,0,0,92,8.440763,2.079442,,0
-11,4,0,1,2,429534,0,4631.085,18.41821,0,12,1,37.74027,40.3188,0,0,0,78.05907,0,0,0,4,0,8,78.7,0,0,92,0,492.84,0,0,2.079442,6.200184,0,0,0,0,0,0,92,8.440763,2.079442,4.357466,1
-11,4,0,1,3,429534,0,4631.085,19.41821,0,12,1,21.49613,52.38607,0,0,0,73.8822,0,0,0,5,0,7,78.7,0,0,92,0,492.84,0,0,1.94591,6.200184,0,0,0,0,0,0,92,8.440763,1.94591,4.302472,1
-11,4,0,1,1,429535,0,4631.085,43.73717,0,12,1,10.2145,0,12.76813,0,0,22.98264,0,0,0,0,1,8,86.7,6.9,0,64.8,0,492.84,0,0,2.079442,6.200184,0,0,0,1,0,0,64.8,8.440763,2.079442,3.134739,1
-11,4,0,1,2,429535,0,4631.085,44.73717,0,12,1,0,0,0,11.72058,0,0,0,0,1,0,0,8,86.7,6.9,0,64.8,0,492.84,0,0,2.079442,6.200184,0,0,0,1,0,0,64.8,8.440763,2.079442,,0
-11,4,0,1,3,429535,0,4631.085,45.73717,0,12,1,9.458298,0,0,21.49613,0,9.458298,0,0,2,0,1,7,86.7,6.9,0,64.8,0,492.84,0,0,1.94591,6.200184,0,0,0,1,0,0,64.8,8.440763,1.94591,2.246892,1
-11,4,0,1,1,429536,0,4631.085,16.07666,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,92,0,0,94.3,0,492.84,1,0,2.079442,6.200184,0,0,0,0,0,0,94.3,8.440763,2.079442,,0
-11,4,0,1,2,429536,0,4631.085,17.07666,0,12,1,4.688232,10.0797,0,0,0,14.76793,0,0,0,1,0,8,92,0,0,94.3,0,492.84,1,0,2.079442,6.200184,0,0,0,0,0,0,94.3,8.440763,2.079442,2.692458,1
-11,4,0,1,1,429537,0,4631.085,39.65777,1,12,1,10.2145,0,25.02554,0,0,35.24004,0,0,0,0,1,8,73.4,13.8,0,63.6,0,492.84,0,0,2.079442,6.200184,0,0,0,1,0,0,63.6,8.440763,2.079442,3.562183,1
-11,4,0,1,2,429537,0,4631.085,40.65777,1,12,1,24.37881,3.867792,0,82.04407,0,28.2466,0,0,4,2,0,8,73.4,13.8,0,63.6,0,492.84,0,0,2.079442,6.200184,0,0,0,1,0,0,63.6,8.440763,2.079442,3.340973,1
-11,4,0,1,3,429537,0,4631.085,41.65777,1,12,1,36.1135,19.62597,23.8607,214.9613,0,79.60017,0,0,11,3,1,7,73.4,13.8,0,63.6,0,492.84,0,0,1.94591,6.200184,0,0,0,1,0,0,63.6,8.440763,1.94591,4.377016,1
-11,4,0,1,1,429538,0,4631.085,10.98152,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,91.7,9.967326,0,70.4,0,492.84,1,0,2.079442,6.200184,0,0,0,0,0,0,70.4,8.440763,2.079442,,0
-11,4,0,1,2,429538,0,4631.085,11.98152,0,12,1,14.0647,1.851852,0,117.2058,0,15.91655,0,0,5,2,0,8,91.7,9.967326,0,70.4,0,492.84,1,0,2.079442,6.200184,0,0,0,0,0,0,70.4,8.440763,2.079442,2.767359,1
-11,4,0,1,3,429538,0,4631.085,12.98152,0,12,1,0,0,0,967.3259,0,0,0,0,41,0,0,7,91.7,9.967326,0,70.4,0,492.84,1,0,1.94591,6.200184,0,0,0,0,0,0,70.4,8.440763,1.94591,,0
-11,4,0,1,1,429539,0,4631.085,6.721424,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,93.3,9.967326,0,59.3,0,492.84,1,1,2.079442,6.200184,0,0,0,0,0,0,59.3,8.440763,2.079442,,0
-11,4,0,1,2,429539,0,4631.085,7.721424,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,93.3,9.967326,0,59.3,0,492.84,1,1,2.079442,6.200184,0,0,0,0,0,0,59.3,8.440763,2.079442,,0
-11,4,0,1,3,429539,0,4631.085,8.721424,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,93.3,9.967326,0,59.3,0,492.84,1,1,1.94591,6.200184,0,0,0,0,0,0,59.3,8.440763,1.94591,,0
-11,4,0,1,1,429540,0,4631.085,4.405202,1,12,1,8.682329,0,0,0,0,8.682329,0,0,0,1,0,8,83.39137,9.967326,0,70.4,0,492.84,1,1,2.079442,6.200184,0,0,0,0,0,0,70.4,8.440763,2.079442,2.16129,1
-11,4,0,1,2,429540,0,4631.085,5.405202,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,83.39137,9.967326,0,70.4,0,492.84,1,1,2.079442,6.200184,0,0,0,0,0,0,70.4,8.440763,2.079442,,0
-11,4,0,1,3,429540,0,4631.085,6.405202,1,12,1,4.299226,.9673259,0,0,0,5.266552,0,0,0,1,0,7,83.39137,9.967326,0,70.4,0,492.84,1,1,1.94591,6.200184,0,0,0,0,0,0,70.4,8.440763,1.94591,1.661376,1
-11,4,0,1,1,429541,0,4631.085,18.45859,1,11,1,12.76813,2.52809,28.60061,0,0,43.89684,0,0,0,1,1,8,81.9,6.9,0,76.1,0,492.84,0,0,2.079442,6.200184,0,0,0,0,0,0,76.1,8.440763,2.079442,3.781842,1
-11,4,0,1,2,429541,0,4631.085,19.45859,1,11,1,7.969995,0,15.93999,0,0,23.90999,0,0,0,0,1,8,81.9,6.9,0,76.1,0,492.84,0,0,2.079442,6.200184,0,0,0,0,0,0,76.1,8.440763,2.079442,3.174296,1
-11,4,0,1,3,429541,0,4631.085,20.45859,1,11,1,7.308684,0,0,0,0,7.308684,0,0,0,0,1,7,81.9,6.9,0,76.1,0,492.84,0,0,1.94591,6.200184,0,0,0,0,0,0,76.1,8.440763,1.94591,1.989063,1
-13,4,0,1,1,429565,0,8114.956,56.94456,1,12,1,51.46832,0,0,0,0,51.46832,0,0,0,3,0,1,92.6,10.3,0,83,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,0,0,0,83,9.001587,0,3.940966,1
-13,4,0,1,3,429565,0,8114.956,58.94456,1,12,1,8.669268,0,32.72649,0,0,41.39575,0,0,0,0,1,1,92.6,10.3,0,83,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,0,0,0,83,9.001587,0,3.723178,1
-16,4,95,1,1,429566,0,13372.43,3.310062,0,9,1,36.00613,13.20225,0,0,0,49.20837,0,0,0,4,0,6,83.39137,9.967326,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,9.501025,1.791759,3.896064,1
-16,4,95,1,2,429566,0,13372.43,4.310061,0,9,1,53.91467,0,0,0,0,53.91467,0,0,0,1,0,6,83.39137,9.967326,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,9.501025,1.791759,3.987403,1
-16,4,95,1,3,429566,0,13372.43,5.310061,0,9,1,7.738607,0,0,0,0,7.738607,0,0,0,1,0,6,83.39137,9.967326,0,100,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,100,9.501025,1.791759,2.046222,1
-16,4,95,1,1,429567,0,13372.43,15.66598,0,9,1,75.68948,5.720122,0,0,0,81.4096,0,0,0,3,0,6,74.5,3.4,0,68.2,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.501025,1.791759,4.399493,1
-16,4,95,1,2,429567,0,13372.43,16.66598,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,74.5,3.4,0,68.2,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.501025,1.791759,,0
-16,4,95,1,3,429567,0,13372.43,17.66598,0,9,1,16.01462,0,0,0,0,16.01462,0,0,0,1,0,6,74.5,3.4,0,68.2,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.501025,1.791759,2.773502,1
-16,4,95,1,1,429568,0,13372.43,13.27036,0,9,1,55.15833,4.468846,0,0,0,59.62717,0,0,0,25,0,6,91.7,9.967326,0,66.7,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.501025,1.791759,4.088111,1
-16,4,95,1,2,429568,0,13372.43,14.27036,0,9,1,30.12189,0,0,0,0,30.12189,0,0,0,10,0,6,91.7,9.967326,0,66.7,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.501025,1.791759,3.405252,1
-16,4,95,1,3,429568,0,13372.43,15.27036,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,9.967326,0,66.7,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.501025,1.791759,,0
-16,4,95,1,1,429569,0,13372.43,37.24846,0,12,1,5.107252,3.038815,0,0,0,8.146068,0,0,0,1,0,6,68.6,0,0,70.5,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.501025,1.791759,2.097535,1
-16,4,95,1,2,429569,0,13372.43,38.24846,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,68.6,0,0,70.5,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.501025,1.791759,,0
-16,4,95,1,3,429569,0,13372.43,39.24846,0,12,1,13.54256,1.139295,0,0,0,14.68186,0,0,0,1,0,6,68.6,0,0,70.5,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,70.5,9.501025,1.791759,2.686613,1
-16,4,95,1,1,429570,0,13372.43,14.77618,0,9,1,38.02349,7.354443,0,0,0,45.37794,0,0,0,3,0,6,76.6,0,0,88.6,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.501025,1.791759,3.815026,1
-16,4,95,1,2,429570,0,13372.43,15.77618,0,9,1,36.91983,0,0,0,0,36.91983,0,0,0,2,0,6,76.6,0,0,88.6,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.501025,1.791759,3.608749,1
-16,4,95,1,3,429570,0,13372.43,16.77618,0,9,1,0,0,0,0,179.7506,179.7506,1,1,0,0,0,6,76.6,0,0,88.6,1000,1000,1,0,1.791759,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.501025,1.791759,5.191571,1
-16,4,95,1,1,429571,0,13372.43,33.97399,1,9,1,51.2002,8.094995,0,0,0,59.2952,0,0,0,2,0,6,76.6,31,0,92,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,1,0,92,9.501025,1.791759,4.082529,1
-16,4,95,1,2,429571,0,13372.43,34.97399,1,9,1,33.75528,19.05298,0,0,0,52.80825,0,0,0,3,0,6,76.6,31,0,92,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,1,0,92,9.501025,1.791759,3.966667,1
-16,4,95,1,3,429571,0,13372.43,35.97399,1,9,1,13.56406,1.074807,0,0,0,14.63887,0,0,0,1,0,6,76.6,31,0,92,1000,1000,0,0,1.791759,6.907755,0,4.564348,6.959049,0,1,0,92,9.501025,1.791759,2.68368,1
-11,4,0,0,1,429603,0,7317.889,2.045175,1,18,1,24.00409,6.261491,0,0,0,30.26558,0,0,0,4,0,3,83.39137,9.967326,0,92.6,0,173.16,1,1,1.098612,5.154216,0,0,0,0,0,0,92.6,8.898213,1.098612,3.410011,1
-11,4,0,0,2,429603,0,7317.889,3.045175,1,18,1,132.5598,15.33052,0,0,0,147.8903,0,0,0,7,0,3,83.39137,9.967326,0,92.6,0,173.16,1,1,1.098612,5.154216,0,0,0,0,0,0,92.6,8.898213,1.098612,4.996471,1
-11,4,0,0,3,429603,0,7317.889,4.045175,1,18,1,35.25365,2.824592,0,0,0,38.07825,0,0,0,4,0,3,83.39137,9.967326,0,92.6,0,173.16,1,1,1.098612,5.154216,0,0,0,0,0,0,92.6,8.898213,1.098612,3.639643,1
-11,4,0,0,1,429604,0,7317.889,25.13073,1,18,1,88.20225,6.889683,4.724208,0,164.7855,264.6016,1,0,0,7,0,3,60.1,17.2,0,67,0,173.16,0,0,1.098612,5.154216,0,0,0,1,0,0,67,8.898213,1.098612,5.578226,1
-11,4,0,0,2,429604,0,7317.889,26.13073,1,18,1,176.3244,32.30192,0,0,0,208.6263,0,0,0,19,0,3,60.1,17.2,0,67,0,173.16,0,0,1.098612,5.154216,0,0,0,1,0,0,67,8.898213,1.098612,5.340545,1
-11,4,0,0,3,429604,0,7317.889,27.13073,1,18,1,37.37317,20.97592,0,0,1650.555,1708.904,1,0,0,6,0,3,60.1,17.2,0,67,0,173.16,0,0,1.098612,5.154216,0,0,0,1,0,0,67,8.898213,1.098612,7.443607,1
-11,4,0,0,1,429605,0,7317.889,27.4579,0,16,1,12.76813,0,17.36466,0,0,30.13279,0,0,0,0,1,3,79.8,3.4,0,83,0,173.16,0,0,1.098612,5.154216,0,0,0,0,0,0,83,8.898213,1.098612,3.405614,1
-11,4,0,0,2,429605,0,7317.889,28.4579,0,16,1,0,0,9.728083,0,0,9.728083,0,0,0,0,0,3,79.8,3.4,0,83,0,173.16,0,0,1.098612,5.154216,0,0,0,0,0,0,83,8.898213,1.098612,2.275017,1
-11,4,0,0,3,429605,0,7317.889,29.4579,0,16,1,75.23646,0,0,0,0,75.23646,0,0,0,1,0,3,79.8,3.4,0,83,0,173.16,0,0,1.098612,5.154216,0,0,0,0,0,0,83,8.898213,1.098612,4.320636,1
-18,4,25,1,1,429612,0,7114.37,55.98083,1,15,1,5.107252,10.36772,0,0,0,15.47497,0,0,0,1,0,1,68.8,10.3,0,73.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.870012,0,2.739224,1
-18,4,25,1,2,429612,0,7114.37,56.98083,1,15,1,16.40881,.9376465,0,0,1545.19,1562.536,1,0,0,2,0,1,68.8,10.3,0,73.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.870012,0,7.354066,1
-18,4,25,1,3,429612,0,7114.37,57.98083,1,15,1,20.74377,0,0,0,0,20.74377,0,0,0,2,0,1,68.8,10.3,0,73.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.870012,0,3.032246,1
-18,4,25,1,1,429613,0,5557.771,24.65435,0,12,1,132.1609,0,0,0,0,132.1609,0,0,0,3,0,1,42,10.3,1,53.4,750,450,0,0,0,6.109248,0,3.258096,8.006368,0,0,0,53.4,8.623133,0,4.88402,1
-18,4,25,1,2,429613,0,5557.771,25.65435,0,12,1,121.4872,.9324009,0,0,0,122.4196,0,0,0,8,0,1,42,10.3,1,53.4,750,450,0,0,0,6.109248,0,3.258096,8.006368,0,0,0,53.4,8.623133,0,4.807454,1
-18,4,25,1,3,429613,0,5557.771,26.65435,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,42,10.3,1,53.4,750,450,0,0,0,6.109248,0,3.258096,8.006368,0,0,0,53.4,8.623133,0,,0
-15,4,95,1,1,429614,0,2877.419,16.68446,0,9,1,138.2743,0,0,0,0,138.2743,0,0,0,3,0,5,48.9,3.4,0,72.7,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,72.7,7.964997,1.609438,4.929239,1
-15,4,95,1,2,429614,0,2877.419,17.68446,0,9,1,26.92308,3.706294,0,0,0,30.62937,0,0,0,3,0,5,48.9,3.4,0,72.7,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,72.7,7.964997,1.609438,3.421959,1
-15,4,95,1,1,429615,0,2877.419,13.40178,0,9,1,447.5506,14.34717,0,0,0,461.8978,0,0,0,9,1,5,68.3,9.967326,0,81.5,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,1,0,81.5,7.964997,1.609438,6.135344,1
-15,4,95,1,2,429615,0,2877.419,14.40178,0,9,1,16.31702,19.20746,0,0,0,35.52448,0,0,0,2,0,5,68.3,9.967326,0,81.5,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,1,0,81.5,7.964997,1.609438,3.570222,1
-15,4,95,1,3,429615,0,2877.419,15.40178,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,68.3,9.967326,0,81.5,800,800,1,0,1.386294,6.684612,0,4.564348,6.735905,0,1,0,81.5,7.964997,1.386294,,0
-15,4,95,1,1,429616,0,2877.419,36.60506,1,9,1,24.84818,1.644737,0,0,0,26.49291,0,0,0,2,0,5,44.7,17.2,0,77.3,800,800,0,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,77.3,7.964997,1.609438,3.276877,1
-15,4,95,1,2,429616,0,2877.419,37.60506,1,9,1,11.65501,5.104895,0,0,0,16.75991,0,0,0,1,0,5,44.7,17.2,0,77.3,800,800,0,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,77.3,7.964997,1.609438,2.81899,1
-15,4,95,1,3,429616,0,2877.419,38.60506,1,9,1,9.405729,0,0,0,0,9.405729,0,0,0,1,0,4,44.7,17.2,0,77.3,800,800,0,0,1.386294,6.684612,0,4.564348,6.735905,0,0,0,77.3,7.964997,1.386294,2.241319,1
-15,4,95,1,1,429617,0,2877.419,12.0794,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,63,800,800,1,1,1.609438,6.684612,0,4.564348,6.735905,0,0,0,63,7.964997,1.609438,,0
-15,4,95,1,2,429617,0,2877.419,13.0794,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,9.967326,0,63,800,800,1,1,1.609438,6.684612,0,4.564348,6.735905,0,0,0,63,7.964997,1.609438,,0
-15,4,95,1,3,429617,0,2877.419,14.0794,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,9.967326,0,63,800,800,1,1,1.386294,6.684612,0,4.564348,6.735905,0,0,0,63,7.964997,1.386294,,0
-15,4,95,1,1,429618,0,2877.419,15.17043,0,9,1,59.36741,0,.5212551,0,0,59.88866,0,0,0,3,0,5,70.7,13.8,0,40.9,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,40.9,7.964997,1.609438,4.092487,1
-15,4,95,1,2,429618,0,2877.419,16.17043,0,9,1,67.48252,0,0,0,0,67.48252,0,0,0,2,0,5,70.7,13.8,0,40.9,800,800,1,0,1.609438,6.684612,0,4.564348,6.735905,0,0,0,40.9,7.964997,1.609438,4.211869,1
-15,4,95,1,3,429618,0,2877.419,17.17043,0,9,1,46.80205,0,0,0,0,46.80205,0,0,0,1,1,4,70.7,13.8,0,40.9,800,800,1,0,1.386294,6.684612,0,4.564348,6.735905,0,0,0,40.9,7.964997,1.386294,3.845927,1
-15,4,95,1,1,429619,0,2331.378,20.33128,0,12,1,49.39271,8.324899,0,0,0,57.71761,0,0,0,2,0,1,92,0,0,69.3,250,250,0,0,0,5.521461,0,4.564348,5.572754,0,0,0,69.3,7.754644,0,4.055562,1
-15,4,95,1,2,429619,0,2331.378,21.33128,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,92,0,0,69.3,250,250,0,0,0,5.521461,0,4.564348,5.572754,0,0,0,69.3,7.754644,0,,0
-15,4,95,1,3,429619,0,2331.378,22.33128,0,12,1,5.130398,0,0,0,0,5.130398,0,0,0,0,1,2,92,0,0,69.3,250,250,0,0,.6931472,5.521461,0,4.564348,5.572754,0,0,0,69.3,7.754644,.6931472,1.635183,1
-5,4,25,1,1,429685,0,7967.742,9.48939,0,12,1,12.76813,4.657814,0,0,0,17.42595,0,0,0,2,0,3,100,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.983282,1.098612,2.85796,1
-5,4,25,1,2,429685,0,7967.742,10.48939,0,12,1,25.78528,1.050164,0,0,0,26.83544,0,0,0,3,0,3,100,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.983282,1.098612,3.289724,1
-5,4,25,1,3,429685,0,7967.742,11.48939,0,12,1,71.79707,.6405847,0,0,0,72.43766,0,0,1,5,1,3,100,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,8.983282,1.098612,4.282726,1
-5,4,25,1,1,429686,0,7967.742,51.82478,0,12,1,18.33504,8.411645,22.72727,0,0,49.47395,0,0,0,1,0,3,68.6,6.9,0,65.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.983282,1.098612,3.901446,1
-5,4,25,1,2,429686,0,7967.742,52.82478,0,12,1,27.19175,10.57665,22.03469,0,0,59.80309,0,0,0,2,1,3,68.6,6.9,0,65.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.983282,1.098612,4.091057,1
-5,4,25,1,3,429686,0,7967.742,53.82478,0,12,1,100.5589,15.10318,0,0,0,115.6621,0,0,0,2,0,3,68.6,6.9,0,65.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.983282,1.098612,4.750673,1
-5,4,25,1,1,429687,0,7967.742,38.16564,1,12,1,52.62513,164.525,0,0,0,217.1501,0,0,0,6,0,3,90.4,24.1,1,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,8.983282,1.098612,5.380589,1
-5,4,25,1,2,429687,0,7967.742,39.16564,1,12,1,95.76653,116.7933,0,0,0,212.5598,0,0,0,9,0,3,90.4,24.1,1,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,8.983282,1.098612,5.359223,1
-5,4,25,1,3,429687,0,7967.742,40.16564,1,12,1,82.2012,127.5838,.4299226,0,0,210.215,0,0,0,5,0,3,90.4,24.1,1,62.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,62.5,8.983282,1.098612,5.348131,1
-10,4,50,1,1,429688,0,1716.716,31.05544,1,17,1,29.80082,3.268641,2.757916,0,0,35.82737,0,0,0,2,0,1,75.5,6.9,0,86.9,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,86.9,7.44875,0,3.578712,1
-10,4,50,1,2,429688,0,1716.716,32.05544,1,17,1,21.09705,0,0,0,18.75293,39.84998,1,0,0,1,0,1,75.5,6.9,0,86.9,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,86.9,7.44875,0,3.685122,1
-10,4,50,1,3,429688,0,1716.716,33.05544,1,17,1,40.41273,10.76956,0,889.9398,0,51.18229,0,0,40,3,0,1,75.5,6.9,0,86.9,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,86.9,7.44875,0,3.935394,1
-10,4,50,1,4,429688,0,1716.716,34.05544,1,17,1,22.10159,0,0,891.8185,0,22.10159,0,0,36,1,0,1,75.5,6.9,0,86.9,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,86.9,7.44875,0,3.095649,1
-10,4,50,1,5,429688,0,1716.716,35.05544,1,17,1,61.04034,3.66242,0,100.8493,0,64.70276,0,0,18,3,2,1,75.5,6.9,0,86.9,750,750,0,0,0,6.620073,0,3.931826,7.313221,0,0,0,86.9,7.44875,0,4.169804,1
-11,4,0,1,1,429696,0,2322.581,27.72348,1,10,1,53.54954,0,39.83657,0,0,93.38611,0,0,0,4,0,4,61.2,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,7.750865,1.386294,4.536743,1
-11,4,0,1,2,429696,0,2322.581,28.72348,1,10,1,18.75293,0,0,0,0,18.75293,0,0,0,1,0,4,61.2,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,7.750865,1.386294,2.93135,1
-11,4,0,1,3,429696,0,2322.581,29.72348,1,10,1,14.61737,0,0,0,0,14.61737,0,0,0,1,0,4,61.2,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,7.750865,1.386294,2.68221,1
-11,4,0,1,4,429696,0,2322.581,30.72348,1,10,1,63.20279,0,34.5095,0,0,97.71229,0,0,0,4,0,4,61.2,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,7.750865,1.386294,4.582027,1
-11,4,0,1,5,429696,0,2322.581,31.72348,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,79.5,7.750865,1.386294,,0
-11,4,0,1,1,429697,0,2322.581,9.182752,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,7.750865,1.386294,,0
-11,4,0,1,2,429697,0,2322.581,10.18275,0,10,1,39.33427,2.273793,0,0,0,41.60806,0,0,0,4,0,4,88.3,9.967326,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,7.750865,1.386294,3.728294,1
-11,4,0,1,3,429697,0,2322.581,11.18275,0,10,1,23.64574,0,0,0,0,23.64574,0,0,0,3,0,4,88.3,9.967326,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,7.750865,1.386294,3.163183,1
-11,4,0,1,4,429697,0,2322.581,12.18275,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,9.967326,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,7.750865,1.386294,,0
-11,4,0,1,5,429697,0,2322.581,13.18275,0,10,1,13.72965,0,0,0,0,13.72965,0,0,0,1,0,4,88.3,9.967326,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,7.750865,1.386294,2.619558,1
-11,4,0,1,1,429698,0,2322.581,3.474333,0,10,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,4,83.39137,9.967326,0,66.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,66.7,7.750865,1.386294,1.812983,1
-11,4,0,1,2,429698,0,2322.581,4.474333,0,10,1,33.61463,2.766057,0,0,0,36.38068,0,0,0,3,0,4,83.39137,9.967326,0,66.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,66.7,7.750865,1.386294,3.594038,1
-11,4,0,1,3,429698,0,2322.581,5.474333,0,10,1,41.27257,0,0,0,0,41.27257,0,0,0,5,0,4,83.39137,9.967326,0,66.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,66.7,7.750865,1.386294,3.720198,1
-11,4,0,1,4,429698,0,2322.581,6.474333,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,66.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,66.7,7.750865,1.386294,,0
-11,4,0,1,5,429698,0,2322.581,7.474333,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,0,66.7,0,0,1,0,1.386294,0,0,0,0,1,0,0,66.7,7.750865,1.386294,,0
-11,4,0,1,1,429699,0,2322.581,6.677618,0,10,1,25.53626,2.196119,26.04699,0,2253.074,2306.854,1,0,0,3,0,4,70,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.750865,1.386294,7.74364,1
-11,4,0,1,2,429699,0,2322.581,7.677618,0,10,1,98.17159,0,0,0,0,98.17159,0,0,0,3,5,4,70,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.750865,1.386294,4.586717,1
-11,4,0,1,3,429699,0,2322.581,8.677618,0,10,1,12.89768,0,0,0,0,12.89768,0,0,0,2,0,4,70,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.750865,1.386294,2.557047,1
-11,4,0,1,4,429699,0,2322.581,9.677618,0,10,1,23.26483,0,0,0,0,23.26483,0,0,0,1,0,4,70,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.750865,1.386294,3.146943,1
-11,4,0,1,5,429699,0,2322.581,10.67762,0,10,1,3.53857,7.165605,0,0,0,10.70418,0,0,0,1,0,4,70,9.967326,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,7.750865,1.386294,2.370634,1
-13,4,0,1,1,429730,0,4550.733,26.16838,0,16,1,187.7784,1.506639,0,0,0,189.285,0,0,0,4,18,1,69.1,0,1,54.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,54.5,8.423264,0,5.243254,1
-13,4,0,1,2,429730,0,4550.733,27.16838,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,69.1,0,1,54.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,54.5,8.423264,0,,0
-13,4,0,1,3,429730,0,4550.733,28.16838,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,69.1,0,1,54.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,54.5,8.423264,0,,0
-13,4,0,1,1,429731,0,2974.78,26.72142,0,17,1,12.65182,0,27.83401,0,0,40.48583,0,0,0,0,1,1,87.8,10.3,1,58,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,0,0,0,58,7.998261,0,3.700952,1
-13,4,0,1,2,429731,0,2974.78,27.72142,0,17,1,32.63403,19.93007,27.97203,0,0,80.53613,0,0,0,1,1,1,87.8,10.3,1,58,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,0,0,0,58,7.998261,0,4.388706,1
-13,4,0,1,3,429731,0,2974.78,28.72142,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,87.8,10.3,1,58,150,211.2,0,0,0,5.352806,1,4.564348,5.061929,0,0,0,58,7.998261,0,,0
-13,4,0,1,1,429739,0,7419.941,7.263518,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,76.7,9.967326,0,70.4,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.4,8.912061,.6931472,,0
-13,4,0,1,2,429739,0,7419.941,8.263518,1,16,1,10.31411,0,0,0,0,10.31411,0,0,0,2,0,2,76.7,9.967326,0,70.4,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.4,8.912061,.6931472,2.333513,1
-13,4,0,1,3,429739,0,7419.941,9.263518,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,76.7,9.967326,0,70.4,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.4,8.912061,.6931472,,0
-13,4,0,1,1,429740,0,7419.941,50.47502,1,16,1,58.63126,1.966292,0,0,119.571,180.1685,1,0,0,3,0,2,76.6,34.5,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.912061,.6931472,5.193892,1
-13,4,0,1,2,429740,0,7419.941,51.47502,1,16,1,15.00234,0,45.60244,0,0,60.60478,0,0,0,2,0,2,76.6,34.5,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.912061,.6931472,4.104374,1
-13,4,0,1,3,429740,0,7419.941,52.47502,1,16,1,0,0,37.99226,0,0,37.99226,0,0,0,0,0,2,76.6,34.5,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.912061,.6931472,3.637383,1
-11,4,0,1,1,429756,0,2982.405,9.278576,0,12,1,5.107252,5.469867,0,0,0,10.57712,0,0,0,1,0,5,91.7,9.967326,0,96.3,0,644.76,1,0,1.609438,6.468878,0,0,0,0,0,0,96.3,8.00082,1.609438,2.358693,1
-11,4,0,1,2,429756,0,2982.405,10.27858,0,12,1,5.625879,6.638537,0,0,0,12.26442,0,0,0,1,0,5,91.7,9.967326,0,96.3,0,644.76,1,0,1.609438,6.468878,0,0,0,0,0,0,96.3,8.00082,1.609438,2.506702,1
-11,4,0,1,3,429756,0,2982.405,11.27858,0,12,1,281.2769,3.697335,0,0,0,284.9742,0,0,0,2,5,5,91.7,9.967326,0,96.3,0,644.76,1,0,1.609438,6.468878,0,0,0,0,0,0,96.3,8.00082,1.609438,5.652399,1
-11,4,0,1,4,429756,0,2982.405,12.27858,0,12,1,5.816208,1.845677,0,0,0,7.661884,0,0,0,1,0,5,91.7,9.967326,0,96.3,0,644.76,1,0,1.609438,6.468878,0,0,0,0,0,0,96.3,8.00082,1.609438,2.036258,1
-11,4,0,1,5,429756,0,2982.405,13.27858,0,12,1,38.92427,0,0,0,0,38.92427,0,0,0,1,5,5,91.7,9.967326,0,96.3,0,644.76,1,0,1.609438,6.468878,0,0,0,0,0,0,96.3,8.00082,1.609438,3.661618,1
-11,4,0,1,1,429757,0,2982.405,11.44695,1,12,1,6.128703,2.543412,0,0,0,8.672114,0,0,0,1,0,5,85,9.967326,0,92.6,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,92.6,8.00082,1.609438,2.160113,1
-11,4,0,1,2,429757,0,2982.405,12.44695,1,12,1,17.34646,12.23629,0,0,0,29.58275,0,0,0,2,0,5,85,9.967326,0,92.6,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,92.6,8.00082,1.609438,3.387191,1
-11,4,0,1,3,429757,0,2982.405,13.44695,1,12,1,90.5417,3.688736,0,0,0,94.23044,0,0,0,1,12,5,85,9.967326,0,92.6,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,92.6,8.00082,1.609438,4.545743,1
-11,4,0,1,4,429757,0,2982.405,14.44695,1,12,1,281.6247,5.994572,0,0,0,287.6192,0,0,0,3,0,5,85,9.967326,0,92.6,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,92.6,8.00082,1.609438,5.661637,1
-11,4,0,1,5,429757,0,2982.405,15.44695,1,12,1,12.385,1.581741,0,0,0,13.96674,0,0,0,1,0,5,85,9.967326,0,92.6,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,92.6,8.00082,1.609438,2.636679,1
-11,4,0,1,1,429758,0,2982.405,6.182067,1,12,1,8.171603,2.543412,0,0,0,10.71502,0,0,0,1,0,5,86.7,9.967326,0,88.9,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,88.9,8.00082,1.609438,2.371646,1
-11,4,0,1,2,429758,0,2982.405,7.182067,1,12,1,5.625879,2.958275,0,0,0,8.584154,0,0,0,1,0,5,86.7,9.967326,0,88.9,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,88.9,8.00082,1.609438,2.149918,1
-11,4,0,1,3,429758,0,2982.405,8.182067,1,12,1,54.60017,5.39123,0,0,0,59.9914,0,0,0,3,6,5,86.7,9.967326,0,88.9,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,88.9,8.00082,1.609438,4.094201,1
-11,4,0,1,4,429758,0,2982.405,9.182067,1,12,1,18.22412,5.238464,0,0,0,23.46258,0,0,0,1,2,5,86.7,9.967326,0,88.9,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,88.9,8.00082,1.609438,3.155407,1
-11,4,0,1,5,429758,0,2982.405,10.18207,1,12,1,5.307856,2.735315,0,0,0,8.043171,0,0,0,0,1,5,86.7,9.967326,0,88.9,0,644.76,1,1,1.609438,6.468878,0,0,0,0,0,0,88.9,8.00082,1.609438,2.084823,1
-11,4,0,1,1,429759,0,2982.405,33.65366,1,12,1,29.3667,4.765067,0,0,0,34.13177,0,0,0,2,0,5,46.3,17.2,0,69.3,0,644.76,0,0,1.609438,6.468878,0,0,0,1,0,0,69.3,8.00082,1.609438,3.530229,1
-11,4,0,1,2,429759,0,2982.405,34.65366,1,12,1,36.09939,0,0,0,0,36.09939,0,0,0,3,0,5,46.3,17.2,0,69.3,0,644.76,0,0,1.609438,6.468878,0,0,0,1,0,0,69.3,8.00082,1.609438,3.586276,1
-11,4,0,1,3,429759,0,2982.405,35.65366,1,12,1,151.7627,0,0,0,0,151.7627,0,0,0,1,24,5,46.3,17.2,0,69.3,0,644.76,0,0,1.609438,6.468878,0,0,0,1,0,0,69.3,8.00082,1.609438,5.022318,1
-11,4,0,1,4,429759,0,2982.405,36.65366,1,12,1,63.41605,3.598294,0,162.8538,0,67.01434,0,0,7,1,5,5,46.3,17.2,0,69.3,0,644.76,0,0,1.609438,6.468878,0,0,0,1,0,0,69.3,8.00082,1.609438,4.204906,1
-11,4,0,1,5,429759,0,2982.405,37.65366,1,12,1,17.69285,14.98938,30.43171,467.0913,0,63.11394,0,0,22,1,1,5,46.3,17.2,0,69.3,0,644.76,0,0,1.609438,6.468878,0,0,0,1,0,0,69.3,8.00082,1.609438,4.144942,1
-11,4,0,1,1,429760,0,2982.405,37.24298,0,12,1,52.09398,0,0,0,0,52.09398,0,0,0,1,2,5,51.6,17.2,0,75,0,644.76,0,0,1.609438,6.468878,0,0,0,0,0,0,75,8.00082,1.609438,3.953049,1
-11,4,0,1,2,429760,0,2982.405,38.24298,0,12,1,298.7576,33.97562,0,0,0,332.7332,0,0,0,6,6,5,51.6,17.2,0,75,0,644.76,0,0,1.609438,6.468878,0,0,0,0,0,0,75,8.00082,1.609438,5.807341,1
-11,4,0,1,3,429760,0,2982.405,39.24298,0,12,1,284.4798,11.07911,0,0,383.6414,679.2003,1,0,0,5,50,5,51.6,17.2,0,75,0,644.76,0,0,1.609438,6.468878,0,0,0,0,0,0,75,8.00082,1.609438,6.520916,1
-11,4,0,1,4,429760,0,2982.405,40.24298,0,12,1,100.0388,3.640946,0,139.589,0,103.6797,0,0,6,5,10,5,51.6,17.2,0,75,0,644.76,0,0,1.609438,6.468878,0,0,0,0,0,0,75,8.00082,1.609438,4.641306,1
-11,4,0,1,5,429760,0,2982.405,41.24298,0,12,1,113.5881,21.24558,0,0,0,134.8337,0,0,0,1,18,5,51.6,17.2,0,75,0,644.76,0,0,1.609438,6.468878,0,0,0,0,0,0,75,8.00082,1.609438,4.904042,1
-13,4,0,1,1,429846,0,8800.587,48.5284,0,14,1,6.128703,0,0,0,0,6.128703,0,0,0,1,0,2,88.3,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.082687,.6931472,1.812983,1
-13,4,0,1,2,429846,0,8800.587,49.5284,0,14,1,15.00234,2.812939,10.31411,0,0,28.12939,0,0,0,1,1,2,88.3,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.082687,.6931472,3.336815,1
-13,4,0,1,3,429846,0,8800.587,50.5284,0,14,1,9.458298,0,27.08512,0,0,36.54342,0,0,0,0,1,2,88.3,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,9.082687,.6931472,3.598501,1
-13,4,0,1,1,429847,0,8800.587,45.13895,1,12,1,44.43309,0,0,0,0,44.43309,0,0,0,3,0,2,87.2,6.9,0,71.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,71.6,9.082687,.6931472,3.793985,1
-13,4,0,1,2,429847,0,8800.587,46.13895,1,12,1,11.72058,0,16.40881,0,0,28.12939,0,0,0,0,2,2,87.2,6.9,0,71.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,71.6,9.082687,.6931472,3.336815,1
-13,4,0,1,3,429847,0,8800.587,47.13895,1,12,1,26.6552,0,24.50559,0,0,51.16079,0,0,0,2,1,2,87.2,6.9,0,71.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,71.6,9.082687,.6931472,3.934973,1
-13,4,0,1,1,429848,0,3642.815,56.98563,1,12,1,53.11543,42.15015,38.30439,0,0,133.57,0,0,0,4,6,1,75.5,13.8,0,65.9,150,245.88,0,0,0,5.504844,1,4.564348,5.061929,1,0,0,65.9,8.200787,0,4.894626,1
-13,4,0,1,2,429848,0,3642.815,57.98563,1,12,1,39.02954,30.33286,0,0,0,69.3624,0,0,0,3,1,1,75.5,13.8,0,65.9,150,245.88,0,0,0,5.504844,1,4.564348,5.061929,1,0,0,65.9,8.200787,0,4.239345,1
-13,4,0,1,3,429848,0,3642.815,58.98563,1,12,1,19.34652,24.11866,33.96389,0,0,77.42906,0,0,0,1,2,1,75.5,13.8,0,65.9,150,245.88,0,0,0,5.504844,1,4.564348,5.061929,1,0,0,65.9,8.200787,0,4.349362,1
-13,4,0,0,1,429891,0,4353.666,13.48665,0,10,1,173.583,18.85628,59.21053,0,471.0223,722.6721,1,0,0,18,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,6.582955,1
-13,4,0,0,2,429891,0,4353.666,14.48665,0,10,1,145.2587,5.137529,0,0,409.035,559.4312,1,1,0,6,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,6.326921,1
-13,4,0,0,3,429891,0,4353.666,15.48665,0,10,1,148.4267,0,38.47798,0,0,186.9047,0,0,0,4,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,5.230598,1
-13,4,0,0,1,429892,0,4353.666,51.94798,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.06626,8.379004,1.386294,,0
-13,4,0,0,2,429892,0,4353.666,52.94798,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.06626,8.379004,1.386294,,0
-13,4,0,0,3,429892,0,4353.666,53.94798,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,72.06626,8.379004,1.386294,,0
-13,4,0,0,1,429893,0,4353.666,50.03696,1,10,1,7.591093,0,10.12146,0,0,17.71255,0,0,0,1,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,72.06626,8.379004,1.386294,2.874274,1
-13,4,0,0,2,429893,0,4353.666,51.03696,1,10,1,74.94173,0,0,0,0,74.94173,0,0,0,4,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,72.06626,8.379004,1.386294,4.316711,1
-13,4,0,0,3,429893,0,4353.666,52.03696,1,10,1,29.07225,13.31338,0,0,0,42.38564,0,0,0,2,0,4,74.46748,9.967326,.1572505,,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,72.06626,8.379004,1.386294,3.746809,1
-13,4,0,1,1,429894,.0068104,2935.484,21.24025,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,82.4,0,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.7,7.984968,0,,0
-13,4,0,1,2,429894,.0068104,2935.484,22.24025,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,82.4,0,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.7,7.984968,0,,0
-13,4,0,1,3,429894,.0068104,2935.484,23.24025,0,12,1,0,0,23.94186,0,0,23.94186,0,0,0,0,0,1,82.4,0,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.7,7.984968,0,3.175628,1
-13,4,0,0,1,429895,0,4353.666,11.0883,0,10,1,5.060729,5.146761,0,0,0,10.20749,0,0,0,1,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,2.323122,1
-13,4,0,0,2,429895,0,4353.666,12.0883,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,,0
-13,4,0,0,3,429895,0,4353.666,13.0883,0,10,1,6.412997,2.342882,0,0,0,8.755878,0,0,0,1,0,4,83.39137,9.967326,.0431267,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.16254,8.379004,1.386294,2.169725,1
-13,4,0,1,1,429896,.0068104,3197.654,22.86927,1,12,1,143.8512,.8502024,12.14575,0,0,156.8472,0,0,0,7,0,1,82.4,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.070485,0,5.055272,1
-13,4,0,1,2,429896,.0068104,3197.654,23.86927,1,12,1,82.13986,0,0,0,0,82.13986,0,0,0,4,0,1,82.4,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.070485,0,4.408423,1
-13,4,0,1,3,429896,.0068104,3197.654,24.86927,1,12,1,20.09406,0,0,0,0,20.09406,0,0,0,2,0,1,82.4,6.9,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,72.6,8.070485,0,3.000424,1
-7,4,25,0,1,429897,0,2007.038,56.79398,1,12,1,34.79251,0,0,0,0,34.79251,0,0,0,2,0,1,74.46748,9.967326,.1572505,,525,525,0,0,0,6.263398,0,3.258096,7.649693,1,0,0,72.06626,7.604913,0,3.549402,1
-7,4,25,0,2,429897,0,2007.038,57.79398,1,12,1,41.95804,0,4.662004,0,0,46.62005,0,0,0,0,6,1,74.46748,9.967326,.1572505,,525,525,0,0,0,6.263398,0,3.258096,7.649693,1,0,0,72.06626,7.604913,0,3.842031,1
-7,4,25,0,3,429897,0,2007.038,58.79398,1,12,1,241.2356,0,0,0,481.6588,722.8944,1,0,0,8,8,1,74.46748,9.967326,.1572505,,525,525,0,0,0,6.263398,0,3.258096,7.649693,1,0,0,72.06626,7.604913,0,6.583263,1
-7,4,25,0,4,429897,0,2007.038,59.79398,1,12,1,203.3051,0,0,0,474.1929,677.4981,1,0,0,4,19,1,74.46748,9.967326,.1572505,,525,525,0,0,0,6.263398,0,3.258096,7.649693,1,0,0,72.06626,7.604913,0,6.518407,1
-7,4,25,0,5,429897,0,2007.038,60.79398,1,12,1,36.88093,13.43519,26.34352,0,1080.067,1156.726,1,0,0,3,0,1,74.46748,9.967326,.1572505,,525,525,0,0,0,6.263398,0,3.258096,7.649693,1,0,0,72.06626,7.604913,0,7.053349,1
-13,4,0,1,1,429899,0,9339.003,29.72758,1,17,1,53.5955,34.49949,0,0,687.1348,775.2298,1,0,0,2,0,4,89.4,3.4,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.142062,1.386294,6.65316,1
-13,4,0,1,2,429899,0,9339.003,30.72758,1,17,1,56.72762,11.93155,17.69808,0,0,86.35725,0,0,0,4,1,5,89.4,3.4,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.142062,1.609438,4.458493,1
-13,4,0,1,3,429899,0,9339.003,31.72758,1,17,1,414.5529,24.82803,5.116079,0,0,444.497,0,0,0,10,27,5,89.4,3.4,0,68.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.142062,1.609438,6.096943,1
-13,4,0,1,1,429900,0,9339.003,2.225873,1,17,1,78.62104,47.13994,0,0,0,125.761,0,0,0,10,0,4,83.39137,9.967326,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.142062,1.386294,4.834383,1
-13,4,0,1,2,429900,0,9339.003,3.225873,1,17,1,606.751,100.3751,4.688232,0,2737.965,3449.78,2,0,0,12,0,5,83.39137,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.142062,1.609438,8.146066,1
-13,4,0,1,3,429900,0,9339.003,4.225873,1,17,1,206.3199,5.795357,0,0,0,212.1152,0,0,0,6,0,5,83.39137,9.967326,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.142062,1.609438,5.35713,1
-13,4,0,1,1,429901,0,9339.003,32.95825,0,22,1,235.6078,24.64249,42.39019,0,0,302.6404,0,0,0,8,0,4,87.2,13.8,0,80.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.142062,1.386294,5.712545,1
-13,4,0,1,2,429901,0,9339.003,33.95825,0,22,1,42.54571,15.58837,0,0,0,58.13408,0,0,0,1,0,5,87.2,13.8,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.142062,1.609438,4.062752,1
-13,4,0,1,3,429901,0,9339.003,34.95825,0,22,1,94.411,12.42476,38.26311,0,0,145.0989,0,0,0,7,0,5,87.2,13.8,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.142062,1.609438,4.977416,1
-13,4,0,1,1,429902,0,9339.003,5.650924,1,17,1,21.45046,6.128703,0,0,0,27.57916,0,0,0,3,0,4,83.3,9.967326,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.142062,1.386294,3.31706,1
-13,4,0,1,2,429902,0,9339.003,6.650924,1,17,1,143.6474,5.344585,0,0,98.45288,247.4449,1,0,0,8,1,5,83.3,9.967326,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.142062,1.609438,5.511188,1
-13,4,0,1,3,429902,0,9339.003,7.650924,1,17,1,84.41531,2.407567,0,0,0,86.82287,0,0,0,7,0,5,83.3,9.967326,0,74.1,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.142062,1.609438,4.46387,1
-15,4,95,0,1,429934,0,11394.13,50.0616,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,,0
-15,4,95,0,2,429934,0,11394.13,51.0616,0,9,1,34.40559,.2703963,39.62704,0,0,74.30303,0,0,0,3,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,4.308152,1
-15,4,95,0,3,429934,0,11394.13,52.0616,0,9,1,33.34758,0,0,0,541.0859,574.4335,1,0,0,6,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,6.353384,1
-15,4,95,0,1,429935,0,11394.13,50.51882,1,12,1,33.90688,0,35.67814,0,0,69.58502,0,0,0,5,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,4.242549,1
-15,4,95,0,2,429935,0,11394.13,51.51882,1,12,1,0,5.869464,0,0,0,5.869464,0,0,0,0,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,1.769763,1
-15,4,95,0,3,429935,0,11394.13,52.51882,1,12,1,36.98162,2.2531,0,0,0,39.23471,0,0,0,4,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,3.669562,1
-15,4,95,1,1,429936,0,6920.234,22.59822,1,15,1,72.8745,27.53036,7.591093,0,877.8947,985.8907,2,0,0,12,0,1,89.4,0,0,89.8,0,0,0,0,0,0,0,4.564348,0,0,0,0,89.8,8.842349,0,6.893546,1
-15,4,95,1,2,429936,0,6920.234,23.59822,1,15,1,106.8531,1.468531,0,31.23543,0,108.3217,0,0,3,5,0,1,89.4,0,0,89.8,0,0,0,0,0,0,0,4.564348,0,0,0,0,89.8,8.842349,0,4.685105,1
-15,4,95,1,3,429936,0,6920.234,24.59822,1,15,1,67.764,6.271911,8.336896,0,484.9508,567.3237,1,0,0,5,0,1,89.4,0,0,89.8,0,0,0,0,0,0,0,4.564348,0,0,0,0,89.8,8.842349,0,6.34093,1
-15,4,95,0,1,429937,0,11394.13,17.55236,1,12,1,23.78543,0,0,0,0,23.78543,0,0,0,2,0,3,74.46748,9.967326,.1572505,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,3.169073,1
-15,4,95,0,2,429937,0,11394.13,18.55236,1,12,1,17.24942,1.794872,0,0,0,19.04429,0,0,0,2,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,2.946767,1
-15,4,95,0,3,429937,0,11394.13,19.55236,1,12,1,13.57418,0,0,0,0,13.57418,0,0,0,2,0,3,74.46748,9.967326,.1572505,,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,72.06626,9.340941,1.098612,2.608169,1
-11,4,0,1,1,429961,0,3005.865,60.83778,0,6,1,30.64351,7.318693,0,0,0,37.96221,0,0,0,3,0,2,87.2,17.2,0,78.4,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,78.4,8.008654,.6931472,3.636591,1
-11,4,0,1,2,429961,0,3005.865,61.83778,0,6,1,11.72058,3.558368,0,0,0,15.27895,0,0,0,2,0,2,87.2,17.2,0,78.4,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,78.4,8.008654,.6931472,2.726476,1
-11,4,0,1,3,429961,0,3005.865,62.83778,0,6,1,30.95443,34.94841,0,0,0,65.90284,0,0,0,4,0,2,87.2,17.2,0,78.4,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,78.4,8.008654,.6931472,4.188181,1
-11,4,0,1,1,429962,0,3005.865,60.04928,1,12,1,59.84678,52.3238,0,0,0,112.1706,0,0,0,5,0,2,84.6,6.9,0,60.2,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,60.2,8.008654,.6931472,4.720021,1
-11,4,0,1,2,429962,0,3005.865,61.04928,1,12,1,111.5799,36.58228,0,0,678.345,826.5073,1,0,0,9,5,2,84.6,6.9,0,60.2,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,60.2,8.008654,.6931472,6.717209,1
-11,4,0,1,3,429962,0,3005.865,62.04928,1,12,1,66.16079,27.82459,0,0,0,93.98538,0,0,0,7,0,2,84.6,6.9,0,60.2,0,923.88,0,0,.6931472,6.828582,0,0,0,0,0,0,60.2,8.008654,.6931472,4.543139,1
-14,4,95,1,1,429978,0,7543.108,37.83984,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,10.3,0,62.5,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,62.5,8.928522,1.386294,,0
-14,4,95,1,2,429978,0,7543.108,38.83984,1,13,1,11.65501,0,0,0,0,11.65501,0,0,0,1,0,4,66.5,10.3,0,62.5,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,62.5,8.928522,1.386294,2.455736,1
-14,4,95,1,3,429978,0,7543.108,39.83984,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,66.5,10.3,0,62.5,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,62.5,8.928522,1.386294,,0
-14,4,95,1,1,429979,0,7543.108,9.908282,1,13,1,30.87045,6.199393,53.13765,0,0,90.20749,0,0,0,3,0,4,78.3,9.967326,0,59.3,650,650,1,1,1.386294,6.476973,0,4.564348,6.528265,0,0,0,59.3,8.928522,1.386294,4.502112,1
-14,4,95,1,2,429979,0,7543.108,10.90828,1,13,1,16.31702,4.531468,0,0,0,20.84848,0,0,0,2,0,4,78.3,9.967326,0,59.3,650,650,1,1,1.386294,6.476973,0,4.564348,6.528265,0,0,0,59.3,8.928522,1.386294,3.037281,1
-14,4,95,1,3,429979,0,7543.108,11.90828,1,13,1,21.37666,0,0,0,0,21.37666,0,0,0,3,0,4,78.3,9.967326,0,59.3,650,650,1,1,1.386294,6.476973,0,4.564348,6.528265,0,0,0,59.3,8.928522,1.386294,3.062299,1
-14,4,95,1,1,429980,0,7543.108,3.37577,0,13,1,17.30769,0,0,0,0,17.30769,0,0,0,1,0,4,83.39137,9.967326,0,77.8,650,650,1,0,1.386294,6.476973,0,4.564348,6.528265,0,0,0,77.8,8.928522,1.386294,2.851151,1
-14,4,95,1,2,429980,0,7543.108,4.37577,0,13,1,121.2121,2.773893,0,0,0,123.986,0,0,0,8,0,4,83.39137,9.967326,0,77.8,650,650,1,0,1.386294,6.476973,0,4.564348,6.528265,0,0,0,77.8,8.928522,1.386294,4.820169,1
-14,4,95,1,3,429980,0,7543.108,5.37577,0,13,1,39.54681,0,0,0,0,39.54681,0,0,0,5,0,4,83.39137,9.967326,0,77.8,650,650,1,0,1.386294,6.476973,0,4.564348,6.528265,0,0,0,77.8,8.928522,1.386294,3.677485,1
-14,4,95,1,1,429981,0,7543.108,38.30801,0,19,1,83.65385,22.25202,0,0,0,105.9059,0,0,0,4,0,4,81.4,0,0,58,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,58,8.928522,1.386294,4.66255,1
-14,4,95,1,2,429981,0,7543.108,39.30801,0,19,1,15.61772,0,0,0,0,15.61772,0,0,0,1,0,4,81.4,0,0,58,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,58,8.928522,1.386294,2.748406,1
-14,4,95,1,3,429981,0,7543.108,40.30801,0,19,1,74.49765,0,23.08679,0,0,97.58443,0,0,0,3,1,4,81.4,0,0,58,650,650,0,0,1.386294,6.476973,0,4.564348,6.528265,1,0,0,58,8.928522,1.386294,4.580718,1
-16,4,95,1,1,429993,0,11044.58,32.8898,1,12,1,57.29757,0,28.08704,0,0,85.38461,0,0,0,2,0,4,80.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,80.7,9.309785,1.386294,4.447166,1
-16,4,95,1,2,429993,0,11044.58,33.8898,1,12,1,11.65501,5.212121,0,0,0,16.86713,0,0,0,1,0,4,80.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,80.7,9.309785,1.386294,2.825367,1
-16,4,95,1,3,429993,0,11044.58,34.8898,1,12,1,28.00342,11.86404,12.39846,0,0,52.26593,0,0,0,3,0,4,80.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,80.7,9.309785,1.386294,3.956345,1
-16,4,95,1,4,429993,0,11044.58,35.8898,1,12,1,14.70023,14.14297,21.50269,0,0,50.34589,0,0,0,2,0,4,80.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,80.7,9.309785,1.386294,3.918917,1
-16,4,95,1,5,429993,0,11044.58,36.8898,1,12,1,137.6888,16.54022,0,0,0,154.229,0,0,0,4,0,4,80.3,13.8,0,80.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,80.7,9.309785,1.386294,5.038439,1
-16,4,95,1,1,429994,0,11044.58,34.74059,0,12,1,79.96964,11.60425,0,0,0,91.57388,0,0,0,7,0,4,85.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.309785,1.386294,4.517146,1
-16,4,95,1,2,429994,0,11044.58,35.74059,0,12,1,5.594406,4.195804,0,0,0,9.79021,0,0,0,1,0,4,85.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.309785,1.386294,2.281383,1
-16,4,95,1,3,429994,0,11044.58,36.74059,0,12,1,10.2608,2.778965,0,0,0,13.03976,0,0,0,2,0,4,85.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.309785,1.386294,2.568003,1
-16,4,95,1,4,429994,0,11044.58,37.74059,0,12,1,753.8394,13.47041,0,0,0,767.3098,0,0,0,4,0,4,85.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.309785,1.386294,6.64289,1
-16,4,95,1,5,429994,0,11044.58,38.74059,0,12,1,40.60415,5.918511,0,0,0,46.52266,0,0,0,5,0,4,85.1,3.4,0,84.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.309785,1.386294,3.839939,1
-16,4,95,1,1,429995,0,11044.58,9.563313,0,12,1,20.72368,.9868421,0,0,0,21.71053,0,0,0,2,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.309785,1.386294,3.077797,1
-16,4,95,1,2,429995,0,11044.58,10.56331,0,12,1,25.17483,5.748252,0,0,0,30.92308,0,0,0,5,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.309785,1.386294,3.431503,1
-16,4,95,1,3,429995,0,11044.58,11.56331,0,12,1,0,2.727661,0,0,0,2.727661,0,0,0,0,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.309785,1.386294,1.003445,1
-16,4,95,1,4,429995,0,11044.58,12.56331,0,12,1,5.764796,0,0,0,0,5.764796,0,0,0,1,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.309785,1.386294,1.75177,1
-16,4,95,1,5,429995,0,11044.58,13.56331,0,12,1,46.36459,4.179839,0,0,0,50.54443,0,0,0,2,0,4,85,9.967326,0,77.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,77.8,9.309785,1.386294,3.922853,1
-11,4,0,1,1,430023,0,7910.823,60.51198,1,14,1,40.34729,0,0,0,0,40.34729,0,0,0,3,0,1,69.7,17.2,0,67,0,179.4,0,0,0,5.189618,0,0,0,1,0,0,67,8.976113,0,3.697524,1
-11,4,0,1,2,430023,0,7910.823,61.51198,1,14,1,96.44164,0,0,0,0,96.44164,0,0,0,5,0,1,69.7,17.2,0,67,0,179.4,0,0,0,5.189618,0,0,0,1,0,0,67,8.976113,0,4.568938,1
-11,4,0,1,3,430023,0,7910.823,62.51198,1,14,1,37.2098,0,21.49613,0,0,58.70593,0,0,0,1,1,1,69.7,17.2,0,67,0,179.4,0,0,0,5.189618,0,0,0,1,0,0,67,8.976113,0,4.072541,1
-13,4,0,1,1,430074,0,3774.78,31.60301,0,10,1,62.51277,0,2.002043,0,0,64.51481,0,0,0,4,0,2,89.4,0,0,78.4,300,362.64,0,0,.6931472,5.893411,1,4.564348,5.755076,0,0,0,78.4,8.236362,.6931472,4.166895,1
-13,4,0,1,2,430074,0,3774.78,32.60301,0,10,1,7.032349,0,38.91233,0,0,45.94468,0,0,0,0,1,2,89.4,0,0,78.4,300,362.64,0,0,.6931472,5.893411,1,4.564348,5.755076,0,0,0,78.4,8.236362,.6931472,3.827438,1
-13,4,0,1,3,430074,0,3774.78,33.60301,0,10,1,19.88392,0,0,0,0,19.88392,0,0,0,1,0,3,89.4,0,0,78.4,300,362.64,0,0,1.098612,5.893411,1,4.564348,5.755076,0,0,0,78.4,8.236362,1.098612,2.989911,1
-13,4,0,1,1,430075,0,3774.78,31.42231,1,12,1,56.93565,3.268641,0,0,0,60.20429,0,0,0,3,2,2,83.5,3.4,0,76.1,300,362.64,0,0,.6931472,5.893411,1,4.564348,5.755076,0,0,0,76.1,8.236362,.6931472,4.097744,1
-13,4,0,1,2,430075,0,3774.78,32.42231,1,12,1,271.2143,20.41257,32.81763,0,0,324.4445,0,0,0,2,12,2,83.5,3.4,0,76.1,300,362.64,0,0,.6931472,5.893411,1,4.564348,5.755076,0,0,0,76.1,8.236362,.6931472,5.782115,1
-13,4,0,1,3,430075,0,3774.78,33.42231,1,12,1,251.5047,10.70507,0,0,0,262.2098,0,0,0,2,12,3,83.5,3.4,0,76.1,300,362.64,0,0,1.098612,5.893411,1,4.564348,5.755076,0,0,0,76.1,8.236362,1.098612,5.569145,1
-11,4,0,1,1,430084,0,7640.469,2.097194,0,14,1,7.660879,6.894791,0,0,0,14.55567,0,0,0,1,0,4,83.39137,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.941345,1.386294,2.67798,1
-11,4,0,1,2,430084,0,7640.469,3.097194,0,14,1,5.625879,11.16737,0,0,0,16.79325,0,0,0,1,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,2.820977,1
-11,4,0,1,3,430084,0,7640.469,4.097194,0,14,1,24.50559,7.631126,0,0,0,32.13671,0,0,0,3,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,3.469999,1
-11,4,0,1,4,430084,0,7640.469,5.097194,0,14,1,7.754944,13.8038,0,0,0,21.55874,0,0,0,1,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,3.070781,1
-11,4,0,1,5,430084,0,7640.469,6.097194,0,14,1,13.09271,9.907997,0,0,0,23.00071,0,0,0,2,0,5,83.39137,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,3.135525,1
-11,4,0,1,1,430085,0,7640.469,7.318275,0,14,1,0,16.06231,0,0,0,16.06231,0,0,0,0,0,4,80,9.967326,0,100,0,0,1,0,1.386294,0,0,0,0,0,0,0,100,8.941345,1.386294,2.776475,1
-11,4,0,1,2,430085,0,7640.469,8.318275,0,14,1,11.72058,1.209564,24.84763,0,0,37.77778,0,0,0,1,0,5,80,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,3.631721,1
-11,4,0,1,3,430085,0,7640.469,9.318275,0,14,1,7.738607,0,0,0,0,7.738607,0,0,0,1,0,5,80,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,2.046222,1
-11,4,0,1,4,430085,0,7640.469,10.31828,0,14,1,29.85653,4.071345,21.71384,0,0,55.64172,0,0,0,4,0,5,80,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,4.018933,1
-11,4,0,1,5,430085,0,7640.469,11.31828,0,14,1,44.76292,1.769285,13.80042,0,0,60.33263,0,0,0,5,0,5,80,9.967326,0,100,0,0,1,0,1.609438,0,0,0,0,0,0,0,100,8.941345,1.609438,4.099873,1
-11,4,0,1,1,430086,0,7640.469,31.13484,0,12,1,20.68437,4.264555,31.4096,0,0,56.35853,0,0,0,0,1,4,70.2,13.8,0,63.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,63.6,8.941345,1.386294,4.031734,1
-11,4,0,1,2,430086,0,7640.469,32.13484,0,12,1,14.0647,0,0,0,0,14.0647,0,0,0,1,0,5,70.2,13.8,0,63.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,63.6,8.941345,1.609438,2.643668,1
-11,4,0,1,3,430086,0,7640.469,33.13484,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,13.8,0,63.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,63.6,8.941345,1.609438,,0
-11,4,0,1,4,430086,0,7640.469,34.13484,0,12,1,9.69368,0,29.46879,0,0,39.16247,0,0,0,1,0,5,70.2,13.8,0,63.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,63.6,8.941345,1.609438,3.667719,1
-11,4,0,1,5,430086,0,7640.469,35.13484,0,12,1,28.30856,0,16.27742,0,0,44.58599,0,0,0,2,0,5,70.2,13.8,0,63.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,63.6,8.941345,1.609438,3.79742,1
-11,4,0,1,1,430087,0,7640.469,29.46749,1,14,1,62.35955,13.81512,26.04699,0,1276.839,1379.06,1,0,0,7,1,4,85.1,6.9,1,87.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,87.5,8.941345,1.386294,7.229157,1
-11,4,0,1,2,430087,0,7640.469,30.46749,1,14,1,14.0647,0,0,0,0,14.0647,0,0,0,1,0,5,85.1,6.9,1,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,8.941345,1.609438,2.643668,1
-11,4,0,1,3,430087,0,7640.469,31.46749,1,14,1,10.74806,0,21.49613,0,0,32.2442,0,0,0,1,0,5,85.1,6.9,1,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,8.941345,1.609438,3.473338,1
-11,4,0,1,4,430087,0,7640.469,32.46749,1,14,1,25.59131,0,0,0,0,25.59131,0,0,0,2,0,5,85.1,6.9,1,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,8.941345,1.609438,3.242253,1
-11,4,0,1,5,430087,0,7640.469,33.46749,1,14,1,76.78698,0,25.12385,0,0,101.9108,0,0,0,2,0,5,85.1,6.9,1,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,8.941345,1.609438,4.624098,1
-19,4,25,1,1,430128,0,7333.138,34.88843,1,8,1,58.2085,10.72874,27.32794,0,0,96.26518,0,0,0,5,1,3,88.8,0,0,81.8,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,81.8,8.900295,1.098612,4.567107,1
-19,4,25,1,2,430128,0,7333.138,35.88843,1,8,1,190.3263,27.58974,13.51981,0,0,231.4359,0,0,0,8,1,3,88.8,0,0,81.8,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,81.8,8.900295,1.098612,5.444303,1
-19,4,25,1,3,430128,0,7333.138,36.88843,1,8,1,86.14793,24.79692,0,0,0,110.9448,0,0,0,6,1,3,88.8,0,0,81.8,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,81.8,8.900295,1.098612,4.709033,1
-19,4,25,1,1,430129,0,7333.138,6.631074,0,8,1,17.71255,4.908907,0,0,0,22.62146,0,0,0,2,0,3,90,9.967326,0,100,750,725,1,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,100,8.900295,1.098612,3.118899,1
-19,4,25,1,2,430129,0,7333.138,7.631074,0,8,1,103.4965,9.79021,0,0,0,113.2867,0,0,0,10,0,3,90,9.967326,0,100,750,725,1,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,100,8.900295,1.098612,4.729922,1
-19,4,25,1,3,430129,0,7333.138,8.631075,0,8,1,22.23172,0,0,0,0,22.23172,0,0,0,4,0,3,90,9.967326,0,100,750,725,1,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,100,8.900295,1.098612,3.10152,1
-19,4,25,1,1,430130,0,7333.138,36.58864,0,13,1,118.335,1.007085,0,0,0,119.3421,0,0,0,5,0,3,75.5,3.4,0,86.4,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.900295,1.098612,4.781994,1
-19,4,25,1,2,430130,0,7333.138,37.58864,0,13,1,17.24942,0,0,0,0,17.24942,0,0,0,2,0,3,75.5,3.4,0,86.4,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.900295,1.098612,2.847778,1
-19,4,25,1,3,430130,0,7333.138,38.58864,0,13,1,22.44549,0,0,0,0,22.44549,0,0,0,2,0,3,75.5,3.4,0,86.4,750,725,0,0,1.098612,6.586172,0,3.258096,8.006368,0,0,0,86.4,8.900295,1.098612,3.11109,1
-10,4,50,1,1,430135,0,9883.871,59.67146,1,13,1,29.91828,0,0,0,0,29.91828,0,0,0,0,0,2,82.4,20.7,0,88.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.198761,.6931472,3.39847,1
-10,4,50,1,2,430135,0,9883.871,60.67146,1,13,1,119.0811,5.330521,0,0,0,124.4116,0,0,0,6,0,2,82.4,20.7,0,88.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.198761,.6931472,4.823596,1
-10,4,50,1,3,430135,0,9883.871,61.67146,1,13,1,51.24678,4.531384,36.54342,0,0,92.32158,0,0,0,2,1,2,82.4,20.7,0,88.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,88.6,9.198761,.6931472,4.525278,1
-10,4,50,1,1,430136,0,9883.871,60.59959,0,12,1,30.16343,18.56486,47.75281,0,0,96.4811,0,0,0,1,1,2,86.7,10.3,1,78.4,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,78.4,9.198761,.6931472,4.569347,1
-10,4,50,1,2,430136,0,9883.871,61.59959,0,12,1,51.10173,75.26958,0,0,0,126.3713,0,0,0,5,0,2,86.7,10.3,1,78.4,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,78.4,9.198761,.6931472,4.839224,1
-10,4,50,1,3,430136,0,9883.871,62.59959,0,12,1,57.05073,41.50043,29.23474,0,0,127.7859,0,0,0,2,0,2,86.7,10.3,1,78.4,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,78.4,9.198761,.6931472,4.850356,1
-18,4,25,1,1,430150,0,3311.437,45.26762,1,13,1,262.419,7.970648,0,0,0,270.3897,0,0,0,13,0,2,66,0,0,58,386.8,743.28,0,0,.6931472,6.611073,0,3.258096,7.344202,1,0,0,58,8.105439,.6931472,5.599864,1
-18,4,25,1,2,430150,0,3311.437,46.26762,1,13,1,0,0,23.31002,0,0,23.31002,0,0,0,0,0,2,66,0,0,58,386.8,743.28,0,0,.6931472,6.611073,0,3.258096,7.344202,1,0,0,58,8.105439,.6931472,3.148884,1
-18,4,25,1,3,430150,0,3311.437,47.26762,1,13,1,40.50877,0,26.21633,0,0,66.7251,0,0,0,3,0,2,66,0,0,58,386.8,743.28,0,0,.6931472,6.611073,0,3.258096,7.344202,1,0,0,58,8.105439,.6931472,4.200581,1
-18,4,25,1,1,430151,0,3311.437,9.303217,1,13,1,15.68826,5.541498,0,0,0,21.22976,0,0,0,3,0,2,75,9.967326,0,63,386.8,743.28,1,1,.6931472,6.611073,0,3.258096,7.344202,1,0,0,63,8.105439,.6931472,3.055404,1
-18,4,25,1,2,430151,0,3311.437,10.30322,1,13,1,16.31702,6.969697,0,0,0,23.28671,0,0,0,2,0,2,75,9.967326,0,63,386.8,743.28,1,1,.6931472,6.611073,0,3.258096,7.344202,1,0,0,63,8.105439,.6931472,3.147883,1
-18,4,25,1,3,430151,0,3311.437,11.30322,1,13,1,16.67379,2.244549,0,0,0,18.91834,0,0,0,3,0,2,75,9.967326,0,63,386.8,743.28,1,1,.6931472,6.611073,0,3.258096,7.344202,1,0,0,63,8.105439,.6931472,2.940132,1
-13,4,0,1,1,430161,0,5556.012,29.92471,0,14,1,0,32.92117,0,0,0,32.92117,0,0,0,0,0,3,69.7,3.4,1,59.1,450,743.28,0,0,1.098612,6.611073,1,4.564348,6.160541,1,0,0,59.1,8.622816,1.098612,3.494116,1
-13,4,0,1,2,430161,0,5556.012,30.92471,0,14,1,51.13636,22.11174,0,14.20455,0,73.24811,0,0,1,6,0,2,69.7,3.4,1,59.1,450,743.28,0,0,.6931472,6.611073,1,4.564348,6.160541,1,0,0,59.1,8.622816,.6931472,4.293852,1
-13,4,0,1,3,430161,0,5556.012,31.92471,0,14,1,103.0559,24.46901,0,0,0,127.5249,0,0,0,5,7,2,69.7,3.4,1,59.1,450,743.28,0,0,.6931472,6.611073,1,4.564348,6.160541,1,0,0,59.1,8.622816,.6931472,4.848312,1
-13,4,0,1,1,430162,0,5556.012,1.451061,1,12,.1506849,82.14838,2.060793,0,0,1304.858,1389.068,1,0,0,1,0,3,83.39137,9.967326,0,100,450,743.28,1,1,1.098612,6.611073,1,4.564348,6.160541,1,0,0,100,8.622816,1.098612,7.236388,1
-13,4,0,1,1,430163,0,5556.012,21.85626,1,12,1,78.31015,5.512622,0,0,375.4044,459.2272,1,0,0,4,0,3,53.7,17.2,0,69.3,450,743.28,0,0,1.098612,6.611073,1,4.564348,6.160541,1,0,0,69.3,8.622816,1.098612,6.129545,1
-13,4,0,1,2,430163,0,5556.012,22.85626,1,12,1,109.5881,8.106061,0,0,0,117.6941,0,0,0,5,0,2,53.7,17.2,0,69.3,450,743.28,0,0,.6931472,6.611073,1,4.564348,6.160541,1,0,0,69.3,8.622816,.6931472,4.768089,1
-13,4,0,1,3,430163,0,5556.012,23.85626,1,12,1,24.27395,2.232336,0,0,597.2995,623.8058,1,0,0,2,0,2,53.7,17.2,0,69.3,450,743.28,0,0,.6931472,6.611073,1,4.564348,6.160541,1,0,0,69.3,8.622816,.6931472,6.435839,1
-11,4,0,1,1,430167,0,16622.29,50.5243,0,10,1,18.89683,0,43.62104,0,0,62.51788,0,0,0,2,0,3,77.1,10.3,0,60.2,0,0,0,0,1.098612,0,0,0,0,1,0,0,60.2,9.71856,1.098612,4.135453,1
-11,4,0,1,2,430167,0,16622.29,51.5243,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,10.3,0,60.2,0,0,0,0,1.098612,0,0,0,0,1,0,0,60.2,9.71856,1.098612,,0
-11,4,0,1,3,430167,0,16622.29,52.5243,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,10.3,0,60.2,0,0,0,0,1.098612,0,0,0,0,1,0,0,60.2,9.71856,1.098612,,0
-11,4,0,1,1,430168,0,16622.29,21.2731,1,13,1,0,3.651685,0,0,0,3.651685,0,0,0,0,0,3,77.1,0,0,78.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,78.4,9.71856,1.098612,1.295189,1
-11,4,0,1,2,430168,0,16622.29,22.2731,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,0,0,78.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,78.4,9.71856,1.098612,,0
-11,4,0,1,3,430168,0,16622.29,23.2731,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,0,0,78.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,78.4,9.71856,1.098612,,0
-11,4,0,1,1,430169,0,16622.29,48.5859,1,12,1,17.87538,8.171603,0,0,0,26.04699,0,0,0,2,0,3,73.9,10.3,0,75,0,0,0,0,1.098612,0,0,0,0,1,0,0,75,9.71856,1.098612,3.259902,1
-11,4,0,1,2,430169,0,16622.29,49.5859,1,12,1,0,0,45.54149,0,0,45.54149,0,0,0,0,0,3,73.9,10.3,0,75,0,0,0,0,1.098612,0,0,0,0,1,0,0,75,9.71856,1.098612,3.818624,1
-11,4,0,1,3,430169,0,16622.29,50.5859,1,12,1,53.61135,0,0,0,0,53.61135,0,0,0,1,0,3,73.9,10.3,0,75,0,0,0,0,1.098612,0,0,0,0,1,0,0,75,9.71856,1.098612,3.981761,1
-19,4,25,1,1,430199,0,7685.044,5.226557,1,12,1,71.27769,21.61257,0,0,0,92.89027,0,0,0,26,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,4.531419,1
-19,4,25,1,2,430199,0,7685.044,6.226557,1,12,1,37.4053,7.362689,5.392992,0,0,50.16098,0,0,0,14,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.915237,1
-19,4,25,1,3,430199,0,7685.044,7.226557,1,12,1,41.61248,12.6788,0,0,0,54.29129,0,0,0,11,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.994364,1
-19,4,25,1,1,430200,0,7685.044,8.996577,1,12,1,0,1.030397,0,0,0,1.030397,0,0,0,0,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,.0299439,1
-19,4,25,1,2,430200,0,7685.044,9.996577,1,12,1,23.67424,8.570076,0,0,0,32.24432,0,0,0,3,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.473342,1
-19,4,25,1,3,430200,0,7685.044,10.99658,1,12,1,18.63893,0,0,0,0,18.63893,0,0,0,2,0,6,90,9.967326,0,77.8,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,2.925252,1
-19,4,25,1,1,430201,0,7685.044,7.868583,0,12,1,7.727975,1.030397,0,0,0,8.758372,0,0,0,1,0,6,90,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,2.17001,1
-19,4,25,1,2,430201,0,7685.044,8.868583,0,12,1,18.93939,2.556818,0,0,0,21.49621,0,0,0,2,0,6,90,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.067877,1
-19,4,25,1,3,430201,0,7685.044,9.868583,0,12,1,18.63893,2.340702,0,0,0,20.97963,0,0,0,2,0,6,90,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.043552,1
-19,4,25,1,1,430202,0,7685.044,36.83504,1,12,1,30.9119,7.805255,30.58217,0,0,69.29933,0,0,0,3,0,6,71.8,17.2,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.947162,1.791759,4.238435,1
-19,4,25,1,2,430202,0,7685.044,37.83504,1,12,1,35.51136,17.40057,0,0,0,52.91193,0,0,0,3,0,6,71.8,17.2,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.947162,1.791759,3.968629,1
-19,4,25,1,3,430202,0,7685.044,38.83504,1,12,1,71.84656,19.5492,27.01344,0,0,118.4092,0,0,0,4,0,6,71.8,17.2,0,86.4,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.947162,1.791759,4.774146,1
-19,4,25,1,1,430203,0,7685.044,39.01163,0,8,1,10.30397,0,34.82741,0,0,45.13137,0,0,0,1,0,6,84,10.3,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,83,8.947162,1.791759,3.809578,1
-19,4,25,1,2,430203,0,7685.044,40.01163,0,8,1,9.469697,6.912879,0,0,0,16.38258,0,0,0,1,0,6,84,10.3,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,83,8.947162,1.791759,2.796218,1
-19,4,25,1,3,430203,0,7685.044,41.01163,0,8,1,0,6.415258,28.91201,0,0,35.32727,0,0,0,0,0,6,84,10.3,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,83,8.947162,1.791759,3.564655,1
-19,4,25,1,1,430204,0,7685.044,10.89938,0,12,1,27.04791,3.369397,0,0,0,30.41731,0,0,0,2,0,6,88.3,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.415012,1
-19,4,25,1,2,430204,0,7685.044,11.89938,0,12,1,33.61742,5.776515,0,0,0,39.39394,0,0,0,3,0,6,88.3,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.673612,1
-19,4,25,1,3,430204,0,7685.044,12.89938,0,12,1,16.47161,2.340702,26.0078,0,0,44.82011,0,0,0,1,1,6,88.3,9.967326,0,77.8,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.947162,1.791759,3.802657,1
-15,4,95,1,1,430228,0,6648.094,3.86037,0,14,1,16.70041,0,0,0,0,16.70041,0,0,0,2,0,3,83.39137,9.967326,0,70.4,1000,999.8,1,0,1.098612,6.907555,0,4.564348,6.959049,1,0,0,70.4,8.802236,1.098612,2.815433,1
-15,4,95,1,2,430228,0,6648.094,4.86037,0,14,1,29.37063,0,0,0,0,29.37063,0,0,0,2,0,4,83.39137,9.967326,0,70.4,1000,999.8,1,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,70.4,8.802236,1.386294,3.379995,1
-15,4,95,1,3,430228,0,6648.094,5.86037,0,14,1,5.130398,0,0,0,0,5.130398,0,0,0,1,0,4,83.39137,9.967326,0,70.4,1000,999.8,1,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,70.4,8.802236,1.386294,1.635183,1
-15,4,95,1,1,430229,0,6648.094,27.36482,1,14,1,51.11336,4.529352,26.06275,0,1127.576,1209.281,1,0,0,3,0,3,77.1,6.9,0,73.9,1000,999.8,0,0,1.098612,6.907555,0,4.564348,6.959049,1,0,0,73.9,8.802236,1.098612,7.097782,1
-15,4,95,1,2,430229,0,6648.094,28.36482,1,14,1,88.11189,0,0,0,0,88.11189,0,0,0,2,0,4,77.1,6.9,0,73.9,1000,999.8,0,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,73.9,8.802236,1.386294,4.478608,1
-15,4,95,1,3,430229,0,6648.094,29.36482,1,14,1,10.68833,0,32.49252,0,1249.85,1293.031,1,0,0,1,0,4,77.1,6.9,0,73.9,1000,999.8,0,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,73.9,8.802236,1.386294,7.164744,1
-15,4,95,1,1,430230,0,6648.094,25.57153,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,93.6,3.4,0,84.1,1000,999.8,0,0,1.098612,6.907555,0,4.564348,6.959049,1,0,0,84.1,8.802236,1.098612,,0
-15,4,95,1,2,430230,0,6648.094,26.57153,0,16,1,58.90443,0,0,0,0,58.90443,0,0,0,3,0,4,93.6,3.4,0,84.1,1000,999.8,0,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,84.1,8.802236,1.386294,4.075916,1
-15,4,95,1,3,430230,0,6648.094,27.57153,0,16,1,79.41428,.9790509,29.49979,0,0,109.8931,0,0,0,5,0,4,93.6,3.4,0,84.1,1000,999.8,0,0,1.386294,6.907555,0,4.564348,6.959049,1,0,0,84.1,8.802236,1.386294,4.699508,1
-15,4,95,1,1,430290,0,3540.762,28.60233,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,13.8,0,70.5,859.9,859.9,0,0,1.098612,6.756816,0,4.564348,6.808109,0,1,0,70.5,8.172379,1.098612,,0
-15,4,95,1,2,430290,0,3540.762,29.60233,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,70.7,13.8,0,70.5,859.9,859.9,0,0,1.098612,6.756816,0,4.564348,6.808109,0,1,0,70.5,8.172379,1.098612,,0
-15,4,95,1,1,430291,0,3540.762,7.047228,1,14,1,9.193054,0,0,0,0,9.193054,0,0,0,1,0,3,71.7,9.967326,0,74.1,859.9,859.9,1,1,1.098612,6.756816,0,4.564348,6.808109,0,0,0,74.1,8.172379,1.098612,2.218448,1
-15,4,95,1,2,430291,0,3540.762,8.047228,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.7,9.967326,0,74.1,859.9,859.9,1,1,1.098612,6.756816,0,4.564348,6.808109,0,0,0,74.1,8.172379,1.098612,,0
-15,4,95,1,1,430292,0,3540.762,28.52019,1,14,1,21.24106,0,0,0,0,21.24106,0,0,0,0,0,3,65.4,6.9,0,70.5,859.9,859.9,0,0,1.098612,6.756816,0,4.564348,6.808109,0,0,1,70.5,8.172379,1.098612,3.055936,1
-15,4,95,1,2,430292,0,3540.762,29.52019,1,14,1,39.53587,0,27.66057,0,0,67.19643,0,0,0,1,1,3,65.4,6.9,0,70.5,859.9,859.9,0,0,1.098612,6.756816,0,4.564348,6.808109,0,0,1,70.5,8.172379,1.098612,4.20762,1
-11,4,0,1,1,430309,0,7242.229,40.47365,0,12,1,119.3054,15.09704,28.96833,0,0,163.3708,0,0,0,7,1,1,72.3,37.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.887822,0,5.096023,1
-11,4,0,1,2,430309,0,7242.229,41.47365,0,12,1,176.7464,120.9564,1.636193,0,0,299.339,0,0,0,6,0,1,72.3,37.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.887822,0,5.701577,1
-11,4,0,1,3,430309,0,7242.229,42.47365,0,12,1,80.93293,96.38435,12.89768,0,0,190.215,0,0,0,4,1,1,72.3,37.9,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.887822,0,5.248155,1
-11,4,0,1,1,430336,0,8990.029,14.24504,0,13,1,21.76113,0,0,0,0,21.76113,0,0,0,3,0,5,72.9,0,0,75,0,0,1,0,1.609438,0,0,0,0,1,0,0,75,9.103983,1.609438,3.080126,1
-11,4,0,1,2,430336,0,8990.029,15.24504,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,72.9,0,0,75,0,0,1,0,1.609438,0,0,0,0,1,0,0,75,9.103983,1.609438,,0
-11,4,0,1,3,430336,0,8990.029,16.24504,0,13,1,5.771698,0,0,452.6507,0,5.771698,0,0,31,1,0,5,72.9,0,0,75,0,0,1,0,1.609438,0,0,0,0,1,0,0,75,9.103983,1.609438,1.752966,1
-11,4,0,1,1,430337,0,8990.029,18.79261,1,11,1,27.83401,18.11741,45.44534,0,0,91.39676,0,0,0,4,0,5,70.5,13.8,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,9.103983,1.609438,4.51521,1
-11,4,0,1,2,430337,0,8990.029,19.79261,1,11,1,16.78322,1.841492,29.13753,0,0,47.76224,0,0,0,2,0,5,70.5,13.8,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,9.103983,1.609438,3.866235,1
-11,4,0,1,3,430337,0,8990.029,20.79261,1,11,1,12.82599,1.838392,16.97307,0,0,31.63745,0,0,0,1,0,5,70.5,13.8,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,9.103983,1.609438,3.454342,1
-11,4,0,1,1,430338,0,8990.029,47.81383,1,13,1,84.13461,36.28542,44.88866,0,0,165.3087,0,0,0,6,0,5,53.2,17.2,1,55.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,55.7,9.103983,1.609438,5.107815,1
-11,4,0,1,2,430338,0,8990.029,48.81383,1,13,1,93.2401,30.47086,12.82051,16.31702,0,136.5315,0,0,1,8,0,5,53.2,17.2,1,55.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,55.7,9.103983,1.609438,4.916555,1
-11,4,0,1,3,430338,0,8990.029,49.81383,1,13,1,20.09406,8.871312,28.68747,198.2685,0,57.65284,0,0,14,2,0,5,53.2,17.2,1,55.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,55.7,9.103983,1.609438,4.05444,1
-11,4,0,1,1,430339,0,8990.029,48.31485,0,11,1,84.89372,10.70344,40.23279,0,432.92,568.75,1,0,0,8,0,5,77.7,6.9,0,83,0,0,0,0,1.609438,0,0,0,0,0,0,0,83,9.103983,1.609438,6.343441,1
-11,4,0,1,2,430339,0,8990.029,49.31485,0,11,1,18.88112,0,22.84382,0,0,41.72494,0,0,0,2,0,5,77.7,6.9,0,83,0,0,0,0,1.609438,0,0,0,0,0,0,0,83,9.103983,1.609438,3.731099,1
-11,4,0,1,3,430339,0,8990.029,50.31485,0,11,1,30.78238,4.959384,23.51432,3.740915,0,59.25609,0,0,1,2,1,5,77.7,6.9,0,83,0,0,0,0,1.609438,0,0,0,0,0,0,0,83,9.103983,1.609438,4.081869,1
-11,4,0,1,1,430340,0,8990.029,10.5243,0,13,1,44.54959,7.059717,0,0,0,51.60931,0,0,0,4,0,5,80,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,0,0,0,88.9,9.103983,1.609438,3.943702,1
-11,4,0,1,2,430340,0,8990.029,11.5243,0,13,1,7.692307,0,0,0,0,7.692307,0,0,0,1,0,5,80,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,0,0,0,88.9,9.103983,1.609438,2.040221,1
-11,4,0,1,3,430340,0,8990.029,12.5243,0,13,1,6.51988,0,0,3.740915,0,6.51988,0,0,1,1,0,5,80,9.967326,0,88.9,0,0,1,0,1.609438,0,0,0,0,0,0,0,88.9,9.103983,1.609438,1.874856,1
-11,4,0,0,1,430346,0,8516.716,29.16906,0,12,1,134.9438,0,0,0,0,134.9438,0,0,0,2,0,4,83.5,3.4,0,77.3,0,0,0,0,1.386294,0,0,0,0,0,0,0,77.3,9.049904,1.386294,4.904859,1
-11,4,0,0,2,430346,0,8516.716,30.16906,0,12,1,84.72574,1.964369,0,0,0,86.69011,0,0,0,8,0,5,83.5,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.049904,1.609438,4.46234,1
-11,4,0,0,3,430346,0,8516.716,31.16906,0,12,1,85.12468,5.872743,0,0,0,90.99742,0,0,0,0,11,5,83.5,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.049904,1.609438,4.510831,1
-11,4,0,0,4,430346,0,8516.716,32.16906,0,12,1,57.77433,1.046917,0,54.28461,0,58.82125,0,0,3,2,0,5,83.5,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.049904,1.609438,4.074503,1
-11,4,0,0,5,430346,0,8516.716,33.16906,0,12,1,4.246284,2.770701,0,0,0,7.016985,0,0,0,1,0,5,83.5,3.4,0,77.3,0,0,0,0,1.609438,0,0,0,0,0,0,0,77.3,9.049904,1.609438,1.948334,1
-11,4,0,0,1,430347,0,8516.716,25.96578,1,12,1,48.83554,30.89888,0,0,708.6619,788.3963,1,0,0,1,0,4,72.3,10.3,0,20.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,20.5,9.049904,1.386294,6.670001,1
-11,4,0,0,2,430347,0,8516.716,26.96578,1,12,1,23.44116,13.92874,0,0,0,37.3699,0,0,0,2,0,5,72.3,10.3,0,20.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,20.5,9.049904,1.609438,3.620866,1
-11,4,0,0,3,430347,0,8516.716,27.96578,1,12,1,80.39553,62.61823,0,0,0,143.0138,0,0,0,9,0,5,72.3,10.3,0,20.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,20.5,9.049904,1.609438,4.962941,1
-11,4,0,0,4,430347,0,8516.716,28.96578,1,12,1,49.63164,113.3967,0,19.38736,2124.839,2287.867,1,0,1,8,0,5,72.3,10.3,0,20.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,20.5,9.049904,1.609438,7.735375,1
-11,4,0,0,5,430347,0,8516.716,29.96578,1,12,1,65.03893,83.4678,0,42.46284,0,148.5067,0,0,5,4,0,5,72.3,10.3,0,20.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,20.5,9.049904,1.609438,5.00063,1
-11,4,0,0,1,430348,0,8516.716,5.292265,0,12,1,135.572,15.44433,0,0,0,151.0163,0,0,0,9,0,4,83.3,9.967326,0,77.8,0,0,1,0,1.386294,0,0,0,0,0,0,0,77.8,9.049904,1.386294,5.017388,1
-11,4,0,0,2,430348,0,8516.716,6.292265,0,12,1,177.4543,5.80872,9.376465,0,0,192.6395,0,0,0,10,0,5,83.3,9.967326,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.049904,1.609438,5.26082,1
-11,4,0,0,3,430348,0,8516.716,7.292265,0,12,1,77.773,10.46002,0,0,0,88.23302,0,0,0,9,0,5,83.3,9.967326,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.049904,1.609438,4.479981,1
-11,4,0,0,4,430348,0,8516.716,8.292266,0,12,1,44.20318,5.998449,0,0,0,50.20163,0,0,0,6,0,5,83.3,9.967326,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.049904,1.609438,3.916048,1
-11,4,0,0,5,430348,0,8516.716,9.292266,0,12,1,23.00071,1.302194,0,0,0,24.3029,0,0,0,3,0,5,83.3,9.967326,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,9.049904,1.609438,3.190596,1
-11,4,0,0,1,430349,0,8516.716,3.019849,0,12,1,171.3228,23.62104,14.49949,0,0,209.4433,0,0,0,11,0,4,83.39137,9.967326,1,74.1,0,0,1,0,1.386294,0,0,0,0,1,0,0,74.1,9.049904,1.386294,5.344453,1
-11,4,0,0,2,430349,0,8516.716,4.019849,0,12,1,175.3446,20.35631,7.032349,0,0,202.7332,0,0,0,11,0,5,83.39137,9.967326,1,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,9.049904,1.609438,5.311891,1
-11,4,0,0,3,430349,0,8516.716,5.019849,0,12,1,83.40498,23.04815,0,0,0,106.4531,0,0,0,14,0,5,83.39137,9.967326,1,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,9.049904,1.609438,4.667705,1
-11,4,0,0,4,430349,0,8516.716,6.019849,0,12,1,89.95734,18.47228,7.754944,0,611.6635,727.848,2,0,0,9,0,5,83.39137,9.967326,1,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,9.049904,1.609438,6.590092,1
-11,4,0,0,5,430349,0,8516.716,7.019849,0,12,1,95.18755,15.36093,0,0,0,110.5485,0,0,0,11,0,5,83.39137,9.967326,1,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,9.049904,1.609438,4.705454,1
-15,4,95,1,1,430359,0,7910.823,34.6256,0,20,1,0,0,0,0,0,0,0,0,0,0,0,1,91.5,6.9,0,75,1000,975,0,0,0,6.882438,0,4.564348,6.959049,0,0,0,75,8.976113,0,,0
-15,4,95,1,3,430359,0,7910.823,36.6256,0,20,1,0,0,0,0,0,0,0,0,0,0,0,1,91.5,6.9,0,75,1000,975,0,0,0,6.882438,0,4.564348,6.959049,0,0,0,75,8.976113,0,,0
-15,4,95,1,1,430360,0,4771.848,31.52909,1,16,1,15.32176,0,0,0,0,15.32176,0,0,0,1,0,1,87.8,10.3,0,81.8,868,868,0,0,0,6.766191,0,4.564348,6.817485,0,0,0,81.8,8.470698,0,2.729274,1
-15,4,95,1,2,430360,0,4771.848,32.52909,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,87.8,10.3,0,81.8,868,868,0,0,0,6.766191,0,4.564348,6.817485,0,0,0,81.8,8.470698,0,,0
-15,4,95,1,3,430360,0,4771.848,33.52909,1,16,1,0,0,0,0,0,0,0,0,0,0,0,1,87.8,10.3,0,81.8,868,868,0,0,0,6.766191,0,4.564348,6.817485,0,0,0,81.8,8.470698,0,,0
-13,4,0,1,1,430449,0,7910.823,43.32649,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,67,6.9,0,58,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,1,0,0,58,8.976113,1.609438,,0
-13,4,0,1,2,430449,0,7910.823,44.32649,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,67,6.9,0,58,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,1,0,0,58,8.976113,1.609438,,0
-13,4,0,1,3,430449,0,7910.823,45.32649,0,14,1,8.669268,0,0,0,0,8.669268,0,0,0,1,0,5,67,6.9,0,58,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,1,0,0,58,8.976113,1.609438,2.159784,1
-13,4,0,1,1,430450,0,7910.823,11.74812,0,16,1,0,1.674395,0,0,0,1.674395,0,0,0,0,0,5,51.7,9.967326,0,81.5,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,81.5,8.976113,1.609438,.5154517,1
-13,4,0,1,2,430450,0,7910.823,12.74812,0,16,1,14.20455,0,0,0,0,14.20455,0,0,0,3,0,5,51.7,9.967326,0,81.5,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,81.5,8.976113,1.609438,2.653562,1
-13,4,0,1,3,430450,0,7910.823,13.74812,0,16,1,6.501951,0,0,0,0,6.501951,0,0,0,1,0,5,51.7,9.967326,0,81.5,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,81.5,8.976113,1.609438,1.872102,1
-13,4,0,1,1,430451,0,7910.823,10.57358,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,80,9.967326,0,85.2,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.609438,,0
-13,4,0,1,2,430451,0,7910.823,11.57358,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,80,9.967326,0,85.2,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.609438,,0
-13,4,0,1,3,430451,0,7910.823,12.57358,0,16,1,23.84048,0,23.40702,0,0,47.24751,0,0,0,4,0,5,80,9.967326,0,85.2,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,85.2,8.976113,1.609438,3.8554,1
-13,4,0,1,1,430452,0,7910.823,37.27036,1,16,1,41.34467,0,0,61.8238,277.6043,318.949,1,0,3,3,0,5,72.9,13.8,0,77.3,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,77.3,8.976113,1.609438,5.765031,1
-13,4,0,1,2,430452,0,7910.823,38.27036,1,16,1,0,0,0,215.4356,0,0,0,0,13,0,0,5,72.9,13.8,0,77.3,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,77.3,8.976113,1.609438,,0
-13,4,0,1,3,430452,0,7910.823,39.27036,1,16,1,59.70958,0,0,0,0,59.70958,0,0,0,4,0,5,72.9,13.8,0,77.3,450,425,0,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,77.3,8.976113,1.609438,4.089492,1
-13,4,0,1,1,430453,0,7910.823,8.695415,0,16,1,31.57136,0,25.75992,0,0,57.33127,0,0,0,1,0,5,86.7,9.967326,0,74.1,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,74.1,8.976113,1.609438,4.048846,1
-13,4,0,1,2,430453,0,7910.823,9.695415,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,74.1,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,74.1,8.976113,1.609438,,0
-13,4,0,1,3,430453,0,7910.823,10.69541,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,9.967326,0,74.1,450,425,1,0,1.609438,6.052089,1,4.564348,6.160541,0,0,0,74.1,8.976113,1.609438,,0
-11,4,0,1,1,430455,0,7629.912,61.70294,1,12,1,88.22268,4.596527,52.98774,0,0,145.8069,0,0,0,4,0,1,83.5,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.939962,0,4.982284,1
-11,4,0,1,2,430455,0,7629.912,62.70294,1,12,1,493.2021,17.08861,0,0,3230.849,3741.139,2,0,0,8,11,1,83.5,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.939962,0,8.227145,1
-11,4,0,1,3,430455,0,7629.912,63.70294,1,12,.2410959,218.8521,10.10318,0,0,1080.688,1309.643,1,0,0,10,0,1,83.5,10.3,0,71.6,0,126,0,0,0,4.836282,0,0,0,1,0,0,71.6,8.939962,0,7.17751,1
-10,4,50,1,1,430460,0,9882.698,16.36687,0,12,1,164.7166,7.059717,0,0,0,171.7763,0,0,0,9,0,7,88.3,3.4,0,73.9,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.198642,1.94591,5.146193,1
-10,4,50,1,2,430460,0,9882.698,17.36687,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,3.4,0,73.9,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.198642,1.791759,,0
-10,4,50,1,3,430460,0,9882.698,18.36687,0,12,1,5.130398,2.244549,0,0,0,7.374947,0,0,0,1,0,6,88.3,3.4,0,73.9,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.198642,1.791759,1.998089,1
-10,4,50,1,4,430460,0,9882.698,19.36687,0,12,1,47.65565,0,0,0,0,47.65565,0,0,0,0,5,6,88.3,3.4,0,73.9,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.198642,1.791759,3.864001,1
-10,4,50,1,5,430460,0,9882.698,20.36687,0,12,1,95.89041,5.795574,0,0,0,101.686,0,0,0,2,7,6,88.3,3.4,0,73.9,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.198642,1.791759,4.62189,1
-10,4,50,1,1,430461,0,9882.698,16.36687,0,12,1,37.55567,0,32.38866,0,0,69.94433,0,0,0,1,0,7,73.4,6.9,0,78.4,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.198642,1.94591,4.2477,1
-10,4,50,1,2,430461,0,9882.698,17.36687,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.4,6.9,0,78.4,1000,1000,1,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.198642,1.791759,,0
-10,4,50,1,3,430461,0,9882.698,18.36687,0,12,1,29.49979,13.87345,29.49979,0,0,72.87302,0,0,0,4,0,6,73.4,6.9,0,78.4,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.198642,1.791759,4.288719,1
-10,4,50,1,4,430461,0,9882.698,19.36687,0,12,1,22.29055,4.304381,0,0,0,26.59493,0,0,0,2,0,6,73.4,6.9,0,78.4,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.198642,1.791759,3.28072,1
-10,4,50,1,5,430461,0,9882.698,20.36687,0,12,1,220.1791,6.041447,30.20724,0,585.8483,842.2761,1,0,0,6,0,6,73.4,6.9,0,78.4,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.198642,1.791759,6.736108,1
-10,4,50,1,1,430462,0,9882.698,45.62081,1,12,1,450.2277,95.77429,45.15688,0,0,591.1589,0,0,0,8,0,7,67,6.9,1,37.5,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,1,37.5,9.198642,1.94591,6.382085,1
-10,4,50,1,2,430462,0,9882.698,46.62081,1,12,1,385.8089,56.45687,47.08625,0,0,489.352,0,0,0,8,0,6,67,6.9,1,37.5,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,1,37.5,9.198642,1.791759,6.193082,1
-10,4,50,1,3,430462,0,9882.698,47.62081,1,12,1,157.0543,63.08252,32.92005,0,795.1005,1048.157,2,0,0,5,0,6,67,6.9,1,37.5,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,1,37.5,9.198642,1.791759,6.954789,1
-10,4,50,1,4,430462,0,9882.698,48.62081,1,12,1,150.1729,82.20599,0,0,0,232.3789,0,0,0,4,0,6,67,6.9,1,37.5,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,1,37.5,9.198642,1.791759,5.44837,1
-10,4,50,1,5,430462,0,9882.698,49.62081,1,12,1,165.1528,69.70496,33.01721,0,0,267.875,0,0,0,8,0,6,67,6.9,1,37.5,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,1,37.5,9.198642,1.791759,5.59052,1
-10,4,50,1,1,430463,0,9882.698,4.985626,1,12,1,217.419,0,0,0,0,217.419,0,0,0,7,0,7,83.39137,9.967326,0,92.6,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.198642,1.94591,5.381826,1
-10,4,50,1,2,430463,0,9882.698,5.985626,1,12,1,242.8904,11.25874,0,0,0,254.1492,0,0,0,8,0,6,83.39137,9.967326,0,92.6,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.198642,1.791759,5.537921,1
-10,4,50,1,3,430463,0,9882.698,6.985626,1,12,1,29.92732,1.346729,7.695596,0,0,38.96965,0,0,0,5,0,6,83.39137,9.967326,0,92.6,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.198642,1.791759,3.662783,1
-10,4,50,1,4,430463,0,9882.698,7.985626,1,12,1,44.96541,6.51422,0,0,547.9746,599.4543,1,0,0,7,0,6,83.39137,9.967326,0,92.6,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.198642,1.791759,6.39602,1
-10,4,50,1,5,430463,0,9882.698,8.985626,1,12,1,239.7541,1.931858,0,0,0,241.686,0,0,0,7,1,6,83.39137,9.967326,0,92.6,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.198642,1.791759,5.487639,1
-10,4,50,1,1,430464,0,9882.698,45.46475,0,12,1,10.12146,0,0,0,0,10.12146,0,0,0,1,0,7,64.9,27.6,0,69.3,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.94591,2.314658,1
-10,4,50,1,2,430464,0,9882.698,46.46475,0,12,1,141.6317,3.379953,0,0,0,145.0117,0,0,0,4,0,6,64.9,27.6,0,69.3,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,4.976814,1
-10,4,50,1,3,430464,0,9882.698,47.46475,0,12,1,43.60838,9.298845,40.18811,0,554.72,647.8153,1,0,0,6,0,6,64.9,27.6,0,69.3,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,6.473606,1
-10,4,50,1,4,430464,0,9882.698,48.46475,0,12,1,289.1622,14.39277,0,0,0,303.555,0,0,0,10,0,6,64.9,27.6,0,69.3,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,5.715563,1
-10,4,50,1,5,430464,0,9882.698,49.46475,0,12,1,34.77345,2.01967,0,0,0,36.79311,0,0,0,5,0,6,64.9,27.6,0,69.3,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,3.605311,1
-10,4,50,1,1,430465,0,9882.698,14.40657,1,12,1,5.060729,0,0,0,0,5.060729,0,0,0,1,0,7,76.1,3.4,0,69.3,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.94591,1.621511,1
-10,4,50,1,2,430465,0,9882.698,15.40657,1,12,1,51.46853,3.030303,0,0,0,54.49883,0,0,0,1,0,6,76.1,3.4,0,69.3,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,3.998179,1
-10,4,50,1,3,430465,0,9882.698,16.40657,1,12,1,75.16032,14.96366,0,0,0,90.12399,0,0,0,7,0,6,76.1,3.4,0,69.3,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,4.501186,1
-10,4,50,1,4,430465,0,9882.698,17.40657,1,12,1,163.7202,44.86933,20.75327,0,0,229.3428,0,0,0,16,2,6,76.1,3.4,0,69.3,1000,1000,1,1,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,5.435218,1
-10,4,50,1,5,430465,0,9882.698,18.40657,1,12,1,18.96733,8.90411,0,0,754.0815,781.9529,1,0,0,1,0,6,76.1,3.4,0,69.3,1000,1000,0,0,1.791759,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.198642,1.791759,6.661795,1
-10,4,50,1,1,430466,0,9882.698,17.59891,0,12,1,2.530364,0,0,0,0,2.530364,0,0,0,0,0,7,56.9,0,0,68.2,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,0,0,0,68.2,9.198642,1.94591,.9283633,1
-13,4,0,1,1,430519,0,4653.373,40.40794,1,14,1,35.4954,0,0,0,0,35.4954,0,0,0,1,0,2,83,3.4,0,88.6,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,88.6,8.445562,.6931472,3.569403,1
-13,4,0,1,2,430519,0,4653.373,41.40794,1,14,1,11.72058,0,0,168.7764,0,11.72058,0,0,9,1,0,2,83,3.4,0,88.6,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,88.6,8.445562,.6931472,2.461346,1
-13,4,0,1,3,430519,0,4653.373,42.40794,1,14,1,23.64574,0,28.37489,103.1814,0,52.02064,0,0,6,2,0,2,83,3.4,0,88.6,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,88.6,8.445562,.6931472,3.951641,1
-13,4,0,1,4,430519,0,4653.373,43.40794,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83,3.4,0,88.6,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,88.6,8.445562,.6931472,,0
-13,4,0,1,5,430519,0,4653.373,44.40794,1,14,1,47.7707,11.67728,26.37296,0,0,85.82095,0,0,0,5,0,2,83,3.4,0,88.6,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,88.6,8.445562,.6931472,4.452263,1
-13,4,0,1,1,430520,0,4653.373,43.35387,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,72.7,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,72.7,8.445562,.6931472,,0
-13,4,0,1,2,430520,0,4653.373,44.35387,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,72.7,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,72.7,8.445562,.6931472,,0
-13,4,0,1,3,430520,0,4653.373,45.35387,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,72.7,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,72.7,8.445562,.6931472,,0
-13,4,0,1,4,430520,0,4653.373,46.35387,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,72.7,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,72.7,8.445562,.6931472,,0
-13,4,0,1,5,430520,0,4653.373,47.35387,0,12,1,12.385,0,25.25832,0,0,37.64331,0,0,0,1,0,2,73.9,0,0,72.7,300,1239.16,0,0,.6931472,7.122189,1,4.564348,5.755076,0,0,0,72.7,8.445562,.6931472,3.628155,1
-13,4,0,1,1,430521,0,3342.522,20.2026,1,12,1,84.37181,0,0,0,0,84.37181,0,0,0,6,0,1,57.4,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,8.11478,0,4.435233,1
-13,4,0,1,2,430521,0,3342.522,21.2026,1,12,1,54.61791,0,0,168.7764,0,54.61791,0,0,9,3,0,1,57.4,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,8.11478,0,4.000362,1
-13,4,0,1,3,430521,0,3342.522,22.2026,1,12,1,55.88994,16.98194,32.89768,137.5752,596.0232,701.7928,1,0,8,5,1,1,57.4,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,8.11478,0,6.553638,1
-13,4,0,1,4,430521,0,3342.522,23.2026,1,12,1,63.59054,11.72935,0,0,0,75.31989,0,0,0,6,0,1,57.4,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,8.11478,0,4.321744,1
-13,4,0,1,5,430521,0,3342.522,24.2026,1,12,1,133.581,4.511677,25.12385,0,0,163.2166,0,0,0,2,7,1,57.4,3.4,0,77.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,77.3,8.11478,0,5.095078,1
-16,4,95,1,1,430574,0,8758.357,18.96509,0,11,1,39.5812,0,0,0,0,39.5812,0,0,0,1,0,3,78.2,10.3,0,100,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,100,9.077878,1.098612,3.678354,1
-16,4,95,1,2,430574,0,8758.357,19.96509,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,10.3,0,100,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,100,9.077878,1.098612,,0
-16,4,95,1,3,430574,0,8758.357,20.96509,0,11,1,0,4.488392,0,0,0,4.488392,0,0,0,0,0,3,78.2,10.3,0,100,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,100,9.077878,1.098612,1.501495,1
-16,4,95,1,1,430575,0,8758.357,59.06092,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,10.3,0,73.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.077878,1.098612,,0
-16,4,95,1,2,430575,0,8758.357,60.06092,1,12,1,9.376465,0,39.84998,0,0,49.22644,0,0,0,1,0,3,89.4,10.3,0,73.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.077878,1.098612,3.896431,1
-16,4,95,1,3,430575,0,8758.357,61.06092,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,10.3,0,73.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.077878,1.098612,,0
-16,4,95,1,1,430576,0,8758.357,60.9473,0,12,1,10.2145,0,0,0,0,10.2145,0,0,0,1,0,3,62.8,10.3,1,59.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.077878,1.098612,2.323809,1
-16,4,95,1,2,430576,0,8758.357,61.9473,0,12,1,70.32349,0,39.84998,0,0,110.1735,0,0,0,5,0,3,62.8,10.3,1,59.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.077878,1.098612,4.702056,1
-16,4,95,1,3,430576,0,8758.357,62.9473,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,62.8,10.3,1,59.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.077878,1.098612,,0
-13,4,0,0,1,430587,.0068104,1632.258,18.47775,1,11,1,262.2976,0,0,0,0,262.2976,0,0,0,5,0,1,69.7,6.9,0,65.9,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,65.9,7.398332,0,5.569479,1
-13,4,0,0,2,430587,.0068104,1632.258,19.47775,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,69.7,6.9,0,65.9,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,65.9,7.398332,0,,0
-13,4,0,0,3,430587,.0068104,1632.258,20.47775,1,11,1,26.07952,0,0,179.5639,1183.198,1209.277,1,0,14,4,0,1,69.7,6.9,0,65.9,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,65.9,7.398332,0,7.097778,1
-11,4,0,1,1,430597,0,13873.9,48.64066,1,15,1,20.74899,28.64372,35.4251,0,0,84.81781,0,0,0,3,0,4,89.4,37.9,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,9.537837,1.386294,4.440506,1
-11,4,0,1,2,430597,0,13873.9,49.64066,1,15,1,53.33333,23.07692,0,0,0,76.41026,0,0,0,1,0,4,89.4,37.9,1,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,9.537837,1.386294,4.336117,1
-11,4,0,1,1,430598,0,13873.9,20.29295,1,13,1,16.70041,0,0,0,0,16.70041,0,0,0,2,0,4,70.7,3.4,0,87.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,87.5,9.537837,1.386294,2.815433,1
-11,4,0,1,2,430598,0,13873.9,21.29295,1,13,1,55.94406,0,0,0,0,55.94406,0,0,0,3,0,4,70.7,3.4,0,87.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,87.5,9.537837,1.386294,4.024352,1
-11,4,0,1,3,430598,0,13873.9,22.29295,1,13,1,66.26764,4.617358,0,0,0,70.88499,0,0,0,3,0,2,70.7,3.4,0,87.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,87.5,9.537837,.6931472,4.261059,1
-11,4,0,1,1,430599,0,13873.9,18.04517,1,12,1,80.84514,0,0,0,0,80.84514,0,0,0,6,0,4,67.6,3.4,0,92,0,0,0,0,1.386294,0,0,0,0,0,1,0,92,9.537837,1.386294,4.392536,1
-11,4,0,1,2,430599,0,13873.9,19.04517,1,12,1,224.9184,0,0,0,0,224.9184,0,0,0,2,2,4,67.6,3.4,0,92,0,0,0,0,1.386294,0,0,0,0,0,1,0,92,9.537837,1.386294,5.415738,1
-11,4,0,1,3,430599,0,13873.9,20.04517,1,12,1,72.24455,0,0,0,0,72.24455,0,0,0,6,0,2,67.6,3.4,0,92,0,0,0,0,.6931472,0,0,0,0,0,1,0,92,9.537837,.6931472,4.280057,1
-6,4,25,1,1,430635,0,5668.622,57.78508,1,15,1,6.072875,.7338057,0,0,0,6.80668,0,0,0,1,0,1,80.9,10.3,0,63.6,744.68,744.68,0,0,0,6.612955,0,3.258096,7.999249,1,0,0,63.6,8.642878,0,1.917904,1
-6,4,25,1,2,430635,0,5668.622,58.78508,1,15,1,27.03963,6.410256,0,0,0,33.44988,0,0,0,2,1,1,80.9,10.3,0,63.6,744.68,744.68,0,0,0,6.612955,0,3.258096,7.999249,1,0,0,63.6,8.642878,0,3.510048,1
-6,4,25,1,3,430635,0,5668.622,59.78508,1,15,1,212.484,5.365541,0,0,0,217.8495,0,0,0,3,0,1,80.9,10.3,0,63.6,744.68,744.68,0,0,0,6.612955,0,3.258096,7.999249,1,0,0,63.6,8.642878,0,5.383804,1
-6,4,25,1,4,430635,0,5668.622,60.78508,1,15,1,23.4435,5.015373,0,0,0,28.45888,0,0,0,2,0,1,80.9,10.3,0,63.6,744.68,744.68,0,0,0,6.612955,0,3.258096,7.999249,1,0,0,63.6,8.642878,0,3.34846,1
-6,4,25,1,5,430635,0,5668.622,61.78508,1,15,1,0,0,0,0,0,0,0,0,0,0,0,1,80.9,10.3,0,63.6,744.68,744.68,0,0,0,6.612955,0,3.258096,7.999249,1,0,0,63.6,8.642878,0,,0
-6,4,25,1,1,430637,0,6642.229,28.8898,1,14,1,46.5587,1.290486,0,0,591.6599,639.5091,1,0,0,4,1,3,52.7,6.9,1,54.5,300,300,0,0,1.098612,5.703783,0,3.258096,7.090077,0,0,0,54.5,8.801353,1.098612,6.460701,1
-6,4,25,1,2,430637,0,6642.229,29.8898,1,14,1,20.97902,0,5.594406,0,0,26.57343,0,0,0,2,0,4,52.7,6.9,1,54.5,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,0,0,0,54.5,8.801353,1.386294,3.279912,1
-6,4,25,1,3,430637,0,6642.229,30.8898,1,14,1,8.12313,4.467721,17.10133,0,0,29.69218,0,0,0,1,0,4,52.7,6.9,1,54.5,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,0,0,0,54.5,8.801353,1.386294,3.390884,1
-6,4,25,1,4,430637,0,6642.229,31.8898,1,14,1,9.992313,0,0,0,0,9.992313,0,0,0,1,0,4,52.7,6.9,1,54.5,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,0,0,0,54.5,8.801353,1.386294,2.301816,1
-6,4,25,1,5,430637,0,6642.229,32.8898,1,14,1,5.268704,0,17.2111,0,0,22.4798,0,0,0,1,0,4,52.7,6.9,1,54.5,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,0,0,0,54.5,8.801353,1.386294,3.112617,1
-6,4,25,1,1,430638,0,6642.229,29.63724,0,12,1,21.25506,102.7328,0,0,0,123.9879,0,0,0,3,0,3,54.3,10.3,0,43.2,300,300,0,0,1.098612,5.703783,0,3.258096,7.090077,1,0,0,43.2,8.801353,1.098612,4.820184,1
-6,4,25,1,2,430638,0,6642.229,30.63724,0,12,1,54.54546,137.8881,0,0,0,192.4336,0,0,0,6,0,4,54.3,10.3,0,43.2,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,1,0,0,43.2,8.801353,1.386294,5.259751,1
-6,4,25,1,3,430638,0,6642.229,31.63724,0,12,1,126.9773,155.4895,0,0,0,282.4669,0,0,0,7,0,4,54.3,10.3,0,43.2,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,1,0,0,43.2,8.801353,1.386294,5.643561,1
-6,4,25,1,4,430638,0,6642.229,32.63723,0,12,1,26.90238,155.073,0,0,0,181.9754,0,0,0,3,0,4,54.3,10.3,0,43.2,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,1,0,0,43.2,8.801353,1.386294,5.203872,1
-6,4,25,1,5,430638,0,6642.229,33.63723,0,12,1,220.8465,153.9972,3.512469,0,977.5096,1355.866,1,0,0,14,5,4,54.3,10.3,0,43.2,300,300,0,0,1.386294,5.703783,0,3.258096,7.090077,1,0,0,43.2,8.801353,1.386294,7.212195,1
-6,4,25,1,1,430639,0,6642.229,2.902122,1,14,1,6.072875,7.22166,0,0,0,13.29453,0,0,0,1,0,3,83.39137,9.967326,0,88.9,300,300,1,1,1.098612,5.703783,0,3.258096,7.090077,0,0,0,88.9,8.801353,1.098612,2.587353,1
-6,4,25,1,2,430639,0,6642.229,3.902122,1,14,1,6.993007,4.559441,0,0,0,11.55245,0,0,0,1,0,4,83.39137,9.967326,0,88.9,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,88.9,8.801353,1.386294,2.446897,1
-6,4,25,1,3,430639,0,6642.229,4.902122,1,14,1,12.82599,6.853356,0,0,0,19.67935,0,0,0,2,0,4,83.39137,9.967326,0,88.9,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,88.9,8.801353,1.386294,2.97957,1
-6,4,25,1,4,430639,0,6642.229,5.902122,1,14,1,11.52959,6.437356,0,0,0,17.96695,0,0,0,2,0,4,83.39137,9.967326,0,88.9,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,88.9,8.801353,1.386294,2.888534,1
-6,4,25,1,5,430639,0,6642.229,6.902122,1,14,1,14.40112,5.721812,0,0,0,20.12294,0,0,0,2,0,4,83.39137,9.967326,0,88.9,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,88.9,8.801353,1.386294,3.00186,1
-14,4,95,1,1,430646,0,6730.792,20.282,1,11,1,16.44737,0,0,0,0,16.44737,0,0,0,1,0,4,69.7,3.4,0,58,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,58,8.814597,1.386294,2.800165,1
-14,4,95,1,2,430646,0,6730.792,21.282,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,69.7,3.4,0,58,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,58,8.814597,1.386294,,0
-14,4,95,1,3,430646,0,6730.792,22.282,1,11,1,23.51432,0,0,0,0,23.51432,0,0,0,2,1,4,69.7,3.4,0,58,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,58,8.814597,1.386294,3.15761,1
-14,4,95,1,1,430647,0,6730.792,39.21424,1,10,1,10.37449,0,0,0,0,10.37449,0,0,0,0,0,4,53.2,24.1,0,61.4,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,61.4,8.814597,1.386294,2.33935,1
-14,4,95,1,2,430647,0,6730.792,40.21424,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,53.2,24.1,0,61.4,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,61.4,8.814597,1.386294,,0
-14,4,95,1,3,430647,0,6730.792,41.21424,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,53.2,24.1,0,61.4,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,61.4,8.814597,1.386294,,0
-14,4,95,1,1,430648,0,6730.792,45.94661,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,56.4,13.8,0,59.2,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,59.2,8.814597,1.386294,,0
-14,4,95,1,2,430648,0,6730.792,46.94661,0,9,1,11.65501,0,0,0,0,11.65501,0,0,0,0,2,4,56.4,13.8,0,59.2,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,59.2,8.814597,1.386294,2.455736,1
-14,4,95,1,3,430648,0,6730.792,47.94661,0,9,1,3.420265,5.079093,0,0,0,8.499359,0,0,0,0,0,4,56.4,13.8,0,59.2,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,59.2,8.814597,1.386294,2.139991,1
-14,4,95,1,1,430649,0,6730.792,17.3525,0,10,1,21.76113,8.830972,0,0,0,30.59211,0,0,0,3,0,4,83.5,3.4,0,70.5,456.5,456.5,1,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,70.5,8.814597,1.386294,3.420742,1
-14,4,95,1,2,430649,0,6730.792,18.3525,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,3.4,0,70.5,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,70.5,8.814597,1.386294,,0
-14,4,95,1,3,430649,0,6730.792,19.3525,0,10,1,302.1804,10.51304,1.710132,0,0,314.4036,0,0,0,4,3,4,83.5,3.4,0,70.5,456.5,456.5,0,0,1.386294,6.123589,0,4.564348,6.174882,1,0,0,70.5,8.814597,1.386294,5.750678,1
-14,4,95,1,1,430650,0,7910.823,60.45722,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,97.9,6.9,0,76.1,225,225,0,0,0,5.416101,0,4.564348,5.467394,1,0,0,76.1,8.976113,0,,0
-14,4,95,1,2,430650,0,7910.823,61.45722,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,97.9,6.9,0,76.1,225,225,0,0,0,5.416101,0,4.564348,5.467394,1,0,0,76.1,8.976113,0,,0
-14,4,95,1,3,430650,0,7910.823,62.45722,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,97.9,6.9,0,76.1,225,225,0,0,0,5.416101,0,4.564348,5.467394,1,0,0,76.1,8.976113,0,,0
-14,4,95,1,1,430666,0,10612.9,27.02259,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,3.4,0,89.8,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,89.8,9.26992,.6931472,,0
-14,4,95,1,2,430666,0,10612.9,28.02259,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,3.4,0,89.8,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,89.8,9.26992,.6931472,,0
-14,4,95,1,3,430666,0,10612.9,29.02259,0,12,1,64.94228,2.330055,30.14109,0,0,97.41342,0,0,0,3,0,2,81.9,3.4,0,89.8,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,89.8,9.26992,.6931472,4.578964,1
-14,4,95,1,1,430667,0,10612.9,24.33949,1,15,1,0,6.508097,0,0,0,6.508097,0,0,0,0,0,2,81.9,10.3,1,92,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,92,9.26992,.6931472,1.873047,1
-14,4,95,1,2,430667,0,10612.9,25.33949,1,15,1,84.26573,9.090909,0,0,0,93.35664,0,0,0,5,0,2,81.9,10.3,1,92,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,92,9.26992,.6931472,4.536427,1
-14,4,95,1,3,430667,0,10612.9,26.33949,1,15,1,121.8469,28.96109,31.25267,0,716.6952,898.7559,1,0,0,8,1,2,81.9,10.3,1,92,900,900,0,0,.6931472,6.802395,0,4.564348,6.853688,0,0,0,92,9.26992,.6931472,6.801012,1
-6,4,25,1,1,430686,0,9087.39,20.47912,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,96.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,96.6,9.114753,.6931472,,0
-6,4,25,1,2,430686,0,9087.39,21.47912,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,96.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,96.6,9.114753,.6931472,,0
-6,4,25,1,3,430686,0,9087.39,22.47912,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,96.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,96.6,9.114753,.6931472,,0
-10,4,50,1,1,430717,0,10822.87,50.65024,0,12,1,12.76813,27.57916,0,0,0,40.34729,0,0,0,2,0,2,79.8,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.28951,.6931472,3.697524,1
-10,4,50,1,2,430717,0,10822.87,51.65024,0,12,.9534246,429.278,35.18518,0,0,4233.727,4698.19,2,0,0,14,0,2,79.8,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.28951,.6931472,8.454933,1
-10,4,50,1,1,430718,0,10822.87,45.76044,1,12,1,68.94791,0,47.59959,0,544.0347,660.5822,1,0,0,6,0,2,85.6,6.9,0,96.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.28951,.6931472,6.493122,1
-10,4,50,1,2,430718,0,10822.87,46.76044,1,12,1,23.44116,0,0,0,0,23.44116,0,0,0,2,0,2,85.6,6.9,0,96.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.28951,.6931472,3.154494,1
-10,4,50,1,3,430718,0,10822.87,47.76044,1,12,1,145.6492,10.38263,0,0,0,156.0318,0,0,0,7,0,1,85.6,6.9,0,96.6,1000,1000,0,0,0,6.907755,0,3.931826,7.600903,0,0,0,96.6,9.28951,0,5.05006,1
-10,4,50,1,1,430719,0,2957.185,19.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75,0,0,79.5,45,311.64,0,0,0,5.741848,0,3.931826,4.49981,0,0,0,79.5,7.992331,0,,0
-10,4,50,1,2,430719,0,2957.185,20.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75,0,0,79.5,45,311.64,0,0,0,5.741848,0,3.931826,4.49981,0,0,0,79.5,7.992331,0,,0
-10,4,50,1,3,430719,0,2957.185,21.99726,0,12,1,2.137666,0,0,0,0,2.137666,0,0,0,0,0,1,75,0,0,79.5,45,311.64,0,0,0,5.741848,0,3.931826,4.49981,0,0,0,79.5,7.992331,0,.7597145,1
-11,4,0,1,1,430747,0,7230.499,61.16085,0,12,1,124.7875,38.50708,46.05263,0,0,209.3472,0,0,0,8,2,1,78.7,10.3,0,67,0,311.64,0,0,0,5.741848,0,0,0,0,1,0,67,8.886202,0,5.343994,1
-11,4,0,1,2,430747,0,7230.499,62.16085,0,12,1,147.3194,23.56177,0,0,0,170.8811,0,0,0,11,0,1,78.7,10.3,0,67,0,311.64,0,0,0,5.741848,0,0,0,0,1,0,67,8.886202,0,5.140968,1
-11,4,0,1,3,430747,0,7230.499,63.16085,0,12,1,88.82001,45.04489,30.78238,0,0,164.6473,0,0,0,11,0,1,78.7,10.3,0,67,0,311.64,0,0,0,5.741848,0,0,0,0,1,0,67,8.886202,0,5.103806,1
-11,4,0,1,1,430748,0,4414.663,33.80698,0,12,1,20.42901,10.7048,0,0,163.5444,194.6782,1,0,0,3,0,1,71.8,6.9,0,79.5,0,126,0,0,0,4.836282,0,0,0,1,0,0,79.5,8.392913,0,5.271348,1
-11,4,0,1,2,430748,0,4414.663,34.80698,0,12,1,126.8636,6.361931,0,0,631.2236,764.4492,1,0,0,11,0,1,71.8,6.9,0,79.5,0,126,0,0,0,4.836282,0,0,0,1,0,0,79.5,8.392913,0,6.639155,1
-11,4,0,1,3,430748,0,4414.663,35.80698,0,12,1,90.06879,0,0,0,0,90.06879,0,0,0,8,0,1,71.8,6.9,0,79.5,0,126,0,0,0,4.836282,0,0,0,1,0,0,79.5,8.392913,0,4.500574,1
-13,4,0,1,1,430778,0,15019.35,53.03217,0,8,1,12.76813,0,0,0,0,12.76813,0,0,0,1,0,2,77.1,13.8,0,61.4,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,0,0,0,61.4,9.617162,.6931472,2.546952,1
-13,4,0,1,2,430778,0,15019.35,54.03217,0,8,1,10.31411,0,0,0,0,10.31411,0,0,0,0,1,2,77.1,13.8,0,61.4,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,0,0,0,61.4,9.617162,.6931472,2.333513,1
-13,4,0,1,3,430778,0,15019.35,55.03217,0,8,1,14.38091,0,0,0,0,14.38091,0,0,0,1,0,2,77.1,13.8,0,61.4,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,0,0,0,61.4,9.617162,.6931472,2.665902,1
-13,4,0,1,4,430778,0,15019.35,56.03217,0,8,1,49.86429,0,29.08104,0,0,78.94533,0,0,0,2,1,2,77.1,13.8,0,61.4,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,0,0,0,61.4,9.617162,.6931472,4.368755,1
-13,4,0,1,5,430778,0,15019.35,57.03217,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,77.1,13.8,0,61.4,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,0,0,0,61.4,9.617162,.6931472,,0
-13,4,0,1,1,430779,0,15019.35,53.65366,1,12,1,17.87538,1.736466,0,0,0,19.61185,0,0,0,2,0,2,78.7,10.3,0,67,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,1,0,0,67,9.617162,.6931472,2.976134,1
-13,4,0,1,2,430779,0,15019.35,54.65366,1,12,1,23.44116,10.03282,28.12939,0,0,61.60337,0,0,0,2,0,2,78.7,10.3,0,67,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,1,0,0,67,9.617162,.6931472,4.120717,1
-13,4,0,1,3,430779,0,15019.35,55.65366,1,12,1,15.04729,0,0,0,0,15.04729,0,0,0,1,0,2,78.7,10.3,0,67,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,1,0,0,67,9.617162,.6931472,2.711198,1
-13,4,0,1,4,430779,0,15019.35,56.65366,1,12,1,39.55021,13.2532,17.44862,0,0,70.25204,0,0,0,4,1,2,78.7,10.3,0,67,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,1,0,0,67,9.617162,.6931472,4.25209,1
-13,4,0,1,5,430779,0,15019.35,57.65366,1,12,1,19.46214,2.034678,8.492569,0,0,29.98938,0,0,0,1,0,2,78.7,10.3,0,67,300,369.98,0,0,.6931472,5.913449,1,4.564348,5.755076,1,0,0,67,9.617162,.6931472,3.400843,1
-11,4,0,1,1,430791,0,7631.085,49.28953,1,17,1,31.66496,2.808989,40.34729,265.5771,0,74.82124,0,0,13,2,1,1,75.5,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.940116,0,4.315102,1
-11,4,0,1,2,430791,0,7631.085,50.28953,1,17,1,841.7253,19.99531,0,18.75293,1302.883,2164.604,1,0,1,10,1,1,75.5,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.940116,0,7.679993,1
-11,4,0,1,3,430791,0,7631.085,51.28953,1,17,1,570.8082,147.6784,0,171.969,0,718.4867,0,0,10,12,47,1,75.5,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.940116,0,6.577147,1
-11,4,0,1,4,430791,0,7631.085,52.28953,1,17,1,145.3083,66.34354,29.58899,114.3854,6332.481,6573.722,4,0,7,11,0,1,75.5,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.940116,0,8.790835,1
-11,4,0,1,5,430791,0,7631.085,53.28953,1,17,1,50.07077,42.09129,43.17056,81.38712,0,135.3326,0,0,5,4,1,1,75.5,6.9,0,77.3,0,0,0,0,0,0,0,0,0,1,0,0,77.3,8.940116,0,4.907736,1
-11,4,0,1,1,430864,0,5639.296,.2600958,0,11,1,49.03984,14.35138,0,0,69.23902,132.6302,1,0,0,7,0,5,83.39137,9.967326,0,85.2,0,225.6,1,0,1.609438,5.418764,0,0,0,0,0,0,85.2,8.637691,1.609438,4.887565,1
-11,4,0,1,2,430864,0,5639.296,1.260096,0,11,1,15.00234,0,0,0,0,15.00234,0,0,0,3,0,5,83.39137,9.967326,0,85.2,0,225.6,1,0,1.609438,5.418764,0,0,0,0,0,0,85.2,8.637691,1.609438,2.708206,1
-11,4,0,1,3,430864,0,5639.296,2.260096,0,11,1,0,3.22442,0,0,0,3.22442,0,0,0,0,0,5,83.39137,9.967326,0,85.2,0,225.6,1,0,1.609438,5.418764,0,0,0,0,0,0,85.2,8.637691,1.609438,1.170753,1
-18,4,25,1,1,430866,0,9322.581,.2299795,0,12,1,37.79367,10.79673,0,0,0,48.5904,0,0,0,5,0,3,83.39137,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.140302,1.098612,3.883426,1
-18,4,25,1,2,430866,0,9322.581,1.22998,0,12,1,37.03704,10.73605,0,0,441.022,488.7951,1,0,0,7,0,3,83.39137,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.140302,1.098612,6.191944,1
-18,4,25,1,3,430866,0,9322.581,2.22998,0,12,1,25.79536,3.379192,0,0,0,29.17455,0,0,0,5,0,3,83.39137,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.140302,1.098612,3.373297,1
-18,4,25,1,4,430866,0,9322.581,3.22998,0,12,1,21.71384,1.613028,0,0,0,23.32687,0,0,0,2,0,3,83.39137,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.140302,1.098612,3.149606,1
-18,4,25,1,5,430866,0,9322.581,4.22998,0,12,1,3.53857,0,0,0,0,3.53857,0,0,0,1,0,3,83.39137,9.967326,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.140302,1.098612,1.263723,1
-13,4,0,0,1,430867,0,995.3079,20.81588,1,12,1,5.107252,8.273748,0,0,0,13.381,0,0,0,1,0,3,50,10.3,0,39.8,300,313.94,0,0,1.098612,5.749202,1,4.564348,5.755076,0,0,0,39.8,6.904057,1.098612,2.593836,1
-13,4,0,0,2,430867,0,995.3079,21.81588,1,12,1,25.08204,23.09423,0,0,626.0197,674.196,1,0,0,0,0,3,50,10.3,0,39.8,300,313.94,0,0,1.098612,5.749202,1,4.564348,5.755076,0,0,0,39.8,6.904057,1.098612,6.513521,1
-13,4,0,0,3,430867,0,995.3079,22.81588,1,12,1,28.15993,2.575237,0,0,652.73,683.4651,1,0,0,1,0,4,50,10.3,0,39.8,300,313.94,0,0,1.386294,5.749202,1,4.564348,5.755076,0,0,0,39.8,6.904057,1.386294,6.527176,1
-13,4,0,0,4,430867,0,995.3079,23.81588,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,50,10.3,0,39.8,300,313.94,0,0,1.609438,5.749202,1,4.564348,5.755076,0,0,0,39.8,6.904057,1.609438,,0
-13,4,0,0,5,430867,0,995.3079,24.81588,1,12,1,39.54353,4.830149,24.06228,0,0,68.43595,0,0,0,2,1,5,50,10.3,0,39.8,300,313.94,0,0,1.609438,5.749202,1,4.564348,5.755076,0,0,0,39.8,6.904057,1.609438,4.225898,1
-14,4,95,0,1,430870,0,7712.61,.128679,1,16,1,42.90572,8.820196,0,0,0,51.72591,0,0,0,6,0,4,83.39137,9.967326,.0268456,,585.8,585.8,1,1,1.386294,6.372978,0,4.564348,6.424272,0,0,0,79.22147,8.950742,1.386294,3.945959,1
-14,4,95,0,2,430870,0,7712.61,1.128679,1,16,1,42.49527,18.63163,0,0,0,61.12689,0,0,0,3,0,4,83.39137,9.967326,.0268456,,585.8,585.8,1,1,1.386294,6.372978,0,4.564348,6.424272,0,0,0,79.22147,8.950742,1.386294,4.112952,1
-14,4,95,0,3,430870,0,7712.61,2.128679,1,16,1,27.56827,4.408322,0,0,0,31.97659,0,0,0,2,0,4,83.39137,9.967326,.0268456,,585.8,585.8,1,1,1.386294,6.372978,0,4.564348,6.424272,0,0,0,79.22147,8.950742,1.386294,3.465004,1
-14,4,95,0,4,430870,0,7712.61,3.128679,1,16,1,21.66207,0,0,0,0,21.66207,0,0,0,3,0,4,83.39137,9.967326,.0268456,,585.8,585.8,1,1,1.386294,6.372978,0,4.564348,6.424272,0,0,0,79.22147,8.950742,1.386294,3.075563,1
-14,4,95,0,5,430870,0,7712.61,4.128679,1,16,1,15.7424,0,0,0,0,15.7424,0,0,0,2,0,4,83.39137,9.967326,.0268456,,585.8,585.8,1,1,1.386294,6.372978,0,4.564348,6.424272,0,0,0,79.22147,8.950742,1.386294,2.756357,1
-11,4,0,1,1,430875,0,8465.689,27.28542,0,16,1,12.90486,2.297571,0,121.4575,0,15.20243,0,0,12,1,0,4,87.8,0,0,92,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,92,9.043895,1.386294,2.721455,1
-11,4,0,1,2,430875,0,8465.689,28.28542,0,16,1,41.79487,6.573427,0,0,0,48.3683,0,0,0,2,0,4,87.8,0,0,92,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,92,9.043895,1.386294,3.878844,1
-11,4,0,1,3,430875,0,8465.689,29.28542,0,16,1,36.23343,4.061565,0,26.72082,0,40.295,0,0,2,1,0,4,87.8,0,0,92,0,570.48,0,0,1.386294,6.346478,0,0,0,0,0,0,92,9.043895,1.386294,3.696227,1
-16,4,95,1,1,430879,0,11044.58,.4298426,0,12,1,29.49393,7.869433,0,0,0,37.36336,0,0,0,5,0,4,83.39137,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.309785,1.386294,3.620691,1
-16,4,95,1,2,430879,0,11044.58,1.429843,0,12,1,21.91142,12.64336,0,0,0,34.55478,0,0,0,4,0,4,83.39137,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.309785,1.386294,3.542546,1
-16,4,95,1,3,430879,0,11044.58,2.429842,0,12,1,5.130398,8.063275,0,0,0,13.19367,0,0,0,1,0,4,83.39137,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.309785,1.386294,2.579737,1
-16,4,95,1,4,430879,0,11044.58,3.429842,0,12,1,8.070715,2.152191,0,0,0,10.22291,0,0,0,2,0,4,83.39137,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.309785,1.386294,2.324631,1
-16,4,95,1,5,430879,0,11044.58,4.429842,0,12,1,14.75237,7.007376,0,0,0,21.75975,0,0,0,2,0,4,83.39137,9.967326,0,85.2,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,85.2,9.309785,1.386294,3.080062,1
-11,4,0,1,1,430880,0,10515.54,19.90417,1,14,1,10.12146,0,31.88259,0,0,42.00405,0,0,0,0,1,6,73.4,6.9,0,91.7,0,30,0,0,1.791759,3.401197,0,0,0,0,0,0,91.7,9.260705,1.791759,3.737766,1
-11,4,0,1,2,430880,0,10515.54,20.90417,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,73.4,6.9,0,91.7,0,30,0,0,1.791759,3.401197,0,0,0,0,0,0,91.7,9.260705,1.791759,,0
-11,4,0,1,4,430880,0,10515.54,22.90417,1,14,1,45.54189,5.956956,0,0,0,51.49885,0,0,0,1,1,5,73.4,6.9,0,91.7,0,30,0,0,1.609438,3.401197,0,0,0,0,0,0,91.7,9.260705,1.609438,3.94156,1
-11,4,0,1,5,430880,0,10515.54,23.90417,1,14,1,78.43344,4.03934,23.1823,0,0,105.6551,0,0,0,4,5,5,73.4,6.9,0,91.7,0,30,0,0,1.609438,3.401197,0,0,0,0,0,0,91.7,9.260705,1.609438,4.66018,1
-11,4,0,1,1,430884,0,13873.9,22.74607,0,14,1,444.4737,95.41498,0,0,1739.524,2279.413,1,0,0,5,0,4,84.6,10.3,1,,0,0,0,0,1.386294,0,0,0,0,0,0,0,72.06626,9.537837,1.386294,7.731673,1
-11,4,0,1,2,430884,0,13873.9,23.74607,0,14,.3424658,169.5245,82.26107,310.7692,0,3200.07,3762.625,2,0,0,2,0,4,84.6,10.3,1,,0,0,0,0,1.386294,0,0,0,0,0,0,0,72.06626,9.537837,1.386294,8.232872,1
-11,4,0,1,1,430885,0,10872.73,40.17796,0,14,1,200.4757,.9868421,27.32794,0,0,228.7905,0,0,0,3,0,3,55.3,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,9.294105,1.098612,5.432806,1
-11,4,0,1,2,430885,0,10872.73,41.17796,0,14,1,95.85081,1.048951,6.993007,0,0,103.8928,0,0,0,5,0,3,55.3,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,9.294105,1.098612,4.643359,1
-11,4,0,1,3,430885,0,10872.73,42.17796,0,14,1,118.5336,9.598119,0,0,0,128.1317,0,0,0,5,7,3,55.3,10.3,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,9.294105,1.098612,4.853058,1
-6,4,25,1,1,430892,0,9087.39,53.05955,1,12,1,94.25607,18.31984,48.07692,0,0,160.6528,0,0,0,5,0,2,62.2,37.9,1,42,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,42,9.114753,.6931472,5.079246,1
-6,4,25,1,2,430892,0,9087.39,54.05955,1,12,1,61.53846,37.31469,0,0,0,98.85315,0,0,0,6,0,2,62.2,37.9,1,42,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,42,9.114753,.6931472,4.593636,1
-6,4,25,1,3,430892,0,9087.39,55.05955,1,12,1,30.35485,34.63446,40.61565,0,0,105.605,0,0,0,3,0,2,62.2,37.9,1,42,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,42,9.114753,.6931472,4.659705,1
-13,4,0,0,1,430894,0,995.3079,.1533196,0,12,1,12.76813,5.280899,0,0,0,18.04903,0,0,0,2,0,3,83.39137,9.967326,.0268456,,300,313.94,1,0,1.098612,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.098612,2.893092,1
-13,4,0,0,2,430894,0,995.3079,1.15332,0,12,1,22.97234,3.745898,0,0,0,26.71824,0,0,0,3,0,3,83.39137,9.967326,.0268456,,300,313.94,1,0,1.098612,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.098612,3.285346,1
-13,4,0,0,3,430894,0,995.3079,2.15332,0,12,1,13.11264,3.030954,0,0,0,16.14359,0,0,0,1,0,4,83.39137,9.967326,.0268456,,300,313.94,1,0,1.386294,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.386294,2.781523,1
-13,4,0,0,4,430894,0,995.3079,3.15332,0,12,1,28.11167,2.02404,0,0,0,30.13571,0,0,0,3,0,5,83.39137,9.967326,.0268456,,300,313.94,1,0,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,3.405711,1
-13,4,0,0,5,430894,0,995.3079,4.15332,0,12,1,86.16419,0,5.300778,0,0,91.46497,0,0,0,7,0,5,83.39137,9.967326,.0268456,,300,313.94,1,0,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,4.515956,1
-11,4,0,0,1,430896,.0068104,7910.823,20.67351,0,12.875,1,10.12146,0,30.36437,0,0,40.48583,0,0,0,0,1,2,74.46748,9.967326,.1572505,,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.06626,8.976113,.6931472,3.700952,1
-11,4,0,0,2,430897,0,2404.692,.652293,1,12,1,46.16477,8.380682,0,0,0,54.54546,0,0,0,7,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,7.785593,1.386294,3.999034,1
-11,4,0,0,3,430897,0,2404.692,1.652293,1,12,1,22.10663,3.315995,0,0,0,25.42263,0,0,0,4,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,7.785593,1.386294,3.23564,1
-11,4,0,0,2,430898,0,2404.692,.652293,1,12,1,40.24621,9.067235,0,0,0,49.31345,0,0,0,7,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,7.785593,1.386294,3.898197,1
-11,4,0,0,3,430898,0,2404.692,1.652293,1,12,1,25.63936,0,0,0,0,25.63936,0,0,0,2,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,7.785593,1.386294,3.244129,1
-11,4,0,0,1,430906,0,11563.64,.0574949,0,13,1,203.9428,1.276813,0,0,0,205.2196,0,0,0,13,0,6,83.39137,9.967326,.0268456,,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,79.22147,9.355707,1.791759,5.32408,1
-11,4,0,0,2,430906,0,11563.64,1.057495,0,13,1,22.50352,20.67511,0,0,0,43.17862,0,0,0,4,0,6,83.39137,9.967326,.0268456,,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,79.22147,9.355707,1.791759,3.765346,1
-11,4,0,0,3,430906,0,11563.64,2.057495,0,13,1,6.018917,2.901978,0,0,0,8.920895,0,0,0,1,0,6,83.39137,9.967326,.0268456,,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,79.22147,9.355707,1.791759,2.188396,1
-11,4,0,0,4,430906,0,11563.64,3.057495,0,13,1,81.83405,0,0,0,0,81.83405,0,0,0,5,0,6,83.39137,9.967326,.0268456,,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,79.22147,9.355707,1.791759,4.404693,1
-11,4,0,0,5,430906,0,11563.64,4.057495,0,13,1,29.37013,2.707006,0,0,0,32.07714,0,0,0,5,0,6,83.39137,9.967326,.0268456,,0,492.84,1,0,1.791759,6.200184,0,0,0,0,0,0,79.22147,9.355707,1.791759,3.468144,1
-10,4,50,0,2,430910,0,6175.953,.6221766,1,14,1,88.13877,64.0647,135.9587,0,2625.082,2913.244,5,0,0,12,1,4,83.39137,9.967326,.0268456,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.22147,8.72858,1.386294,7.977023,1
-10,4,50,0,3,430910,0,6175.953,1.622177,1,14,1,34.71625,9.88822,0,0,0,44.60447,0,0,0,4,0,4,83.39137,9.967326,.0268456,,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,79.22147,8.72858,1.386294,3.797834,1
-11,4,0,0,2,430913,.0068104,7910.823,.7097878,1,11,1,43.35664,6.993007,0,0,0,50.34965,0,0,0,6,0,2,83.39137,9.967326,.0268456,,0,0,1,1,.6931472,0,0,0,0,0,0,0,79.22147,8.976113,.6931472,3.918992,1
-11,4,0,0,3,430913,.0068104,7910.823,1.709788,1,11,1,102.5053,3.185122,0,0,0,105.6905,0,0,0,7,0,2,83.39137,9.967326,.0268456,,0,0,1,1,.6931472,0,0,0,0,0,0,0,79.22147,8.976113,.6931472,4.660515,1
-6,4,25,0,2,430922,0,6642.229,.5893224,1,14,1,13.05361,9.655012,0,0,0,22.70862,0,0,0,2,0,4,83.39137,9.967326,.0268456,,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,79.22147,8.801353,1.386294,3.122745,1
-6,4,25,0,3,430922,0,6642.229,1.589322,1,14,1,13.25353,4.809748,0,0,0,18.06327,0,0,0,2,0,4,83.39137,9.967326,.0268456,,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,79.22147,8.801353,1.386294,2.893881,1
-6,4,25,0,4,430922,0,6642.229,2.589322,1,14,1,29.2083,5.049962,0,0,0,34.25826,0,0,0,5,0,4,83.39137,9.967326,.0268456,,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,79.22147,8.801353,1.386294,3.533928,1
-6,4,25,0,5,430922,0,6642.229,3.589322,1,14,1,11.2399,1.752722,0,0,0,12.99262,0,0,0,2,0,4,83.39137,9.967326,.0268456,,300,300,1,1,1.386294,5.703783,0,3.258096,7.090077,0,0,0,79.22147,8.801353,1.386294,2.564382,1
-11,4,0,0,2,430928,0,7872.141,.1786448,0,13,1,21.02246,13.34448,0,0,0,34.36694,0,0,0,4,0,4,83.39137,9.967326,.0268456,,0,0,1,0,1.386294,0,0,0,0,0,0,0,79.22147,8.971212,1.386294,3.537095,1
-11,4,0,0,3,430928,0,7872.141,1.178645,0,13,1,16.24232,6.786655,0,0,0,23.02897,0,0,0,3,0,4,83.39137,9.967326,.0268456,,0,0,1,0,1.386294,0,0,0,0,0,0,0,79.22147,8.971212,1.386294,3.136753,1
-13,4,0,0,2,430938,0,9339.003,.2087611,1,17,1,129.3952,68.72949,0,0,0,198.1247,0,0,0,18,0,5,83.39137,9.967326,.0268456,,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.22147,9.142062,1.609438,5.288897,1
-13,4,0,0,3,430938,0,9339.003,1.208761,1,17,1,55.46002,16.72399,0,0,0,72.18401,0,0,0,13,0,5,83.39137,9.967326,.0268456,,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.22147,9.142062,1.609438,4.279219,1
-11,4,0,0,2,430939,0,8516.716,.1841205,0,12,1,59.77496,16.92452,0,0,0,76.69949,0,0,0,9,0,5,83.39137,9.967326,.0268456,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.22147,9.049904,1.609438,4.339895,1
-11,4,0,0,3,430939,0,8516.716,1.18412,0,12,1,58.46947,15.08169,0,0,0,73.55116,0,0,0,10,0,5,83.39137,9.967326,.0268456,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.22147,9.049904,1.609438,4.297981,1
-11,4,0,0,4,430939,0,8516.716,2.18412,0,12,1,50.01939,6.048856,0,0,0,56.06824,0,0,0,7,0,5,83.39137,9.967326,.0268456,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.22147,9.049904,1.609438,4.02657,1
-11,4,0,0,5,430939,0,8516.716,3.18412,0,12,1,65.81741,9.844303,0,0,0,75.66171,0,0,0,7,0,5,83.39137,9.967326,.0268456,,0,0,1,0,1.609438,0,0,0,0,0,0,0,79.22147,9.049904,1.609438,4.326272,1
-11,4,0,0,2,430945,0,7640.469,.1074606,1,14,1,37.97468,17.6512,0,0,0,55.62588,0,0,0,5,0,5,83.39137,9.967326,.0268456,,0,0,1,1,1.609438,0,0,0,0,0,0,0,79.22147,8.941345,1.609438,4.018649,1
-11,4,0,0,3,430945,0,7640.469,1.107461,1,14,1,24.50559,11.34996,0,0,0,35.85555,0,0,0,4,0,5,83.39137,9.967326,.0268456,,0,0,1,1,1.609438,0,0,0,0,0,0,0,79.22147,8.941345,1.609438,3.579498,1
-11,4,0,0,4,430945,0,7640.469,2.107461,1,14,1,13.9589,1.919349,0,0,0,15.87825,0,0,0,2,0,5,83.39137,9.967326,.0268456,,0,0,1,1,1.609438,0,0,0,0,0,0,0,79.22147,8.941345,1.609438,2.76495,1
-11,4,0,0,5,430945,0,7640.469,3.107461,1,14,1,44.23213,5.94126,0,0,0,50.17339,0,0,0,4,0,5,83.39137,9.967326,.0268456,,0,0,1,1,1.609438,0,0,0,0,0,0,0,79.22147,8.941345,1.609438,3.915485,1
-15,4,95,0,2,430949,0,6648.094,.3264887,1,14,1,30.76923,1.981352,0,0,0,32.75058,0,0,0,6,0,4,83.39137,9.967326,.0268456,,1000,999.8,1,1,1.386294,6.907555,0,4.564348,6.959049,0,0,0,79.22147,8.802236,1.386294,3.488921,1
-15,4,95,0,3,430949,0,6648.094,1.326489,1,14,1,13.68106,0,0,0,0,13.68106,0,0,0,2,0,4,83.39137,9.967326,.0268456,,1000,999.8,1,1,1.386294,6.907555,0,4.564348,6.959049,0,0,0,79.22147,8.802236,1.386294,2.616012,1
-11,4,0,0,3,430975,0,3134.956,.8774812,1,12,1,24.93551,9.952708,0,0,0,34.88822,0,0,0,4,0,5,83.39137,9.967326,.0268456,,0,204.6,1,1,1.609438,5.321057,0,0,0,0,0,0,79.22147,8.05069,1.609438,3.552149,1
-13,4,0,0,3,430979,0,7954.839,.8145106,0,12,1,22.23172,0,0,0,0,22.23172,0,0,0,3,0,5,83.39137,9.967326,.0268456,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,79.22147,8.981662,1.609438,3.10152,1
-11,4,0,0,3,430991,0,4336.07,.5708419,0,12,1,12.03783,0,0,0,0,12.03783,0,0,0,3,0,4,83.39137,9.967326,.0268456,,0,0,1,0,1.386294,0,0,0,0,0,0,0,79.22147,8.374954,1.386294,2.488055,1
-11,4,0,0,3,430999,0,1271.554,.6776181,1,9,1,23.08679,7.73835,0,0,0,30.82514,0,0,0,5,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,7.148781,1.386294,3.42833,1
-13,4,0,0,3,431002,0,7374.193,.568104,0,16,1,15.47721,0,0,0,0,15.47721,0,0,0,3,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,79.22147,8.905877,1.098612,2.739369,1
-13,4,0,0,4,431002,0,7374.193,1.568104,0,16,1,11.24467,1.547111,0,0,0,12.79178,0,0,0,2,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,79.22147,8.905877,1.098612,2.548803,1
-13,4,0,0,5,431002,0,7374.193,2.568104,0,16,1,5.307856,1.058033,0,0,0,6.365888,0,0,0,1,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,79.22147,8.905877,1.098612,1.850954,1
-11,4,0,0,3,431011,0,5469.795,.3216975,0,18,1,581.0619,0,0,0,1533.125,2114.188,2,0,0,20,0,2,83.39137,9.967326,.0268456,,0,0,1,0,.6931472,0,0,0,0,0,0,0,79.22147,8.60718,.6931472,7.656426,1
-16,4,95,0,3,431012,0,8591.789,.3052704,0,12,1,34.67707,0,0,0,0,34.67707,0,0,0,6,0,4,83.39137,9.967326,.0268456,,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,79.22147,9.058679,1.386294,3.546079,1
-11,4,0,0,3,431014,0,11719.65,.2724161,0,10,1,13.6541,0,0,0,0,13.6541,0,0,0,1,0,7,83.39137,9.967326,.0268456,,0,0,1,0,1.94591,0,0,0,0,0,0,0,79.22147,9.369107,1.94591,2.61404,1
-13,4,0,0,3,431020,0,3774.78,.2313484,0,12,1,269.9828,12.38177,0,0,0,282.3646,0,0,0,11,0,3,83.39137,9.967326,.0268456,,300,362.64,1,0,1.098612,5.893411,1,4.564348,5.755076,0,0,0,79.22147,8.236362,1.098612,5.643199,1
-16,4,95,0,3,431021,0,730.2053,.2778918,0,12,1,53.01411,15.60496,0,0,0,68.61906,0,0,0,7,0,2,83.39137,9.967326,.0268456,,34.5,0,1,0,.6931472,0,0,4.564348,3.592253,0,0,0,79.22147,6.594694,.6931472,4.22857,1
-13,4,0,0,3,431025,0,3515.542,.4859685,1,12,1,11.17799,0,0,0,0,11.17799,0,0,0,2,0,2,83.39137,9.967326,.0268456,,150,150,1,1,.6931472,5.010635,1,4.564348,5.061929,0,0,0,79.22147,8.165234,.6931472,2.413946,1
-13,4,0,0,4,431025,0,3515.542,1.485968,1,12,1,29.08104,0,0,0,0,29.08104,0,0,0,3,0,2,83.39137,9.967326,.0268456,,150,150,1,1,.6931472,5.010635,1,4.564348,5.061929,0,0,0,79.22147,8.165234,.6931472,3.370086,1
-13,4,0,0,5,431025,0,3515.542,2.485969,1,12,1,31.97806,0,0,0,0,31.97806,0,0,0,1,0,2,83.39137,9.967326,.0268456,,150,150,1,1,.6931472,5.010635,1,4.564348,5.061929,0,0,0,79.22147,8.165234,.6931472,3.46505,1
-13,4,0,0,3,431029,0,995.3079,.2067077,1,12,1,50.51591,4.290627,0,0,0,54.80653,0,0,0,7,0,4,83.39137,9.967326,.0268456,,300,313.94,1,1,1.386294,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.386294,4.003809,1
-13,4,0,0,4,431029,0,995.3079,1.206708,1,12,1,11.24467,2.307096,0,0,0,13.55176,0,0,0,2,0,5,83.39137,9.967326,.0268456,,300,313.94,1,1,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,2.606517,1
-13,4,0,0,5,431029,0,995.3079,2.206708,1,12,1,5.307856,0,0,0,0,5.307856,0,0,0,1,0,5,83.39137,9.967326,.0268456,,300,313.94,1,1,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,1.669188,1
-15,4,95,0,3,431050,0,2331.378,.0150582,1,12,1,0,0,0,0,55.57931,55.57931,1,0,0,0,0,2,83.39137,9.967326,.0268456,,250,250,1,1,.6931472,5.521461,0,4.564348,5.572754,0,0,0,79.22147,7.754644,.6931472,4.017811,1
-11,4,0,0,3,431058,0,4588.856,.0260096,1,12,1,69.78761,16.40659,0,0,0,86.19419,0,0,0,8,0,4,83.39137,9.967326,.0268456,,0,0,1,1,1.386294,0,0,0,0,0,0,0,79.22147,8.431604,1.386294,4.456603,1
-7,4,25,0,4,431080,0,7910.823,.705681,1,10,1,12.20953,0,0,0,0,12.20953,0,0,0,3,0,5,83.39137,9.967326,.0268456,,750,749.8,1,1,1.609438,6.619806,0,3.258096,8.006368,0,0,0,79.22147,8.976113,1.609438,2.502217,1
-7,4,25,0,5,431080,0,7910.823,1.705681,1,10,1,34.34705,5.577817,0,0,0,39.92487,0,0,0,7,0,5,83.39137,9.967326,.0268456,,750,749.8,1,1,1.609438,6.619806,0,3.258096,8.006368,0,0,0,79.22147,8.976113,1.609438,3.686999,1
-19,4,25,0,4,431088,0,1555.425,.7686516,0,12,1,26.13374,0,0,0,0,26.13374,0,0,0,7,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,0,3.258096,7.090077,0,0,0,79.22147,7.350147,1.098612,3.263227,1
-19,4,25,0,5,431088,0,1555.425,1.768652,0,12,1,4.56621,0,0,0,0,4.56621,0,0,0,2,0,3,83.39137,9.967326,.0268456,,300,300,1,0,1.098612,5.703783,0,3.258096,7.090077,0,0,0,79.22147,7.350147,1.098612,1.518684,1
-13,4,0,0,4,431111,0,17.59531,.2950034,0,12,1,41.1012,0,0,0,0,41.1012,0,0,0,4,0,3,83.39137,9.967326,.0268456,,300,358.52,1,0,1.098612,5.881984,1,4.564348,5.755076,0,0,0,79.22147,2.922909,1.098612,3.716038,1
-13,4,0,0,5,431111,0,17.59531,1.295003,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,83.39137,9.967326,.0268456,,300,358.52,1,0,1.098612,5.881984,1,4.564348,5.755076,0,0,0,79.22147,2.922909,1.098612,,0
-13,4,0,0,4,431131,0,995.3079,.0568104,1,12,1,31.79527,8.406359,0,0,0,40.20163,0,0,0,6,0,5,83.39137,9.967326,.0268456,,300,313.94,1,1,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,3.693907,1
-13,4,0,0,5,431131,0,995.3079,1.05681,1,12,1,10.61571,0,0,0,0,10.61571,0,0,0,2,0,5,83.39137,9.967326,.0268456,,300,313.94,1,1,1.609438,5.749202,1,4.564348,5.755076,0,0,0,79.22147,6.904057,1.609438,2.362335,1
-13,4,0,0,5,431166,0,6165.396,.4353183,0,12,1,56.61713,6.811748,0,0,0,63.42887,0,0,0,7,0,5,83.39137,9.967326,.0268456,,,,1,0,1.609438,0,1,4.564348,0,0,0,0,79.22147,8.72687,1.609438,4.149919,1
-11,4,0,0,5,431168,0,8719.648,.2436687,0,11,1,37.56709,19.99642,0,0,0,57.56351,0,0,0,6,0,7,83.39137,9.967326,.0268456,,0,0,1,0,1.94591,0,0,0,0,0,0,0,79.22147,9.073449,1.94591,4.052889,1
-19,5,25,1,1,525011,0,12647.21,36.53114,1,14,1,215.0896,33.74739,0,145.8941,300.9587,549.7958,1,0,21,8,0,2,76.6,17.2,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,6.309547,1
-19,5,25,1,2,525011,0,12647.21,37.53114,1,14,1,58.13953,35.18005,0,33.75844,0,93.31958,0,0,6,7,1,2,76.6,17.2,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,4.53603,1
-19,5,25,1,3,525011,0,12647.21,38.53114,1,14,1,114.682,53.80244,0,0,0,168.4844,0,0,0,9,0,2,76.6,17.2,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,5.126843,1
-11,5,0,1,1,525027,0,9173.067,26.9295,1,12,1,29.77456,5.801786,0,0,0,35.57635,0,0,0,2,0,4,79.8,6.9,0,93.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,93.2,9.124136,1.386294,3.571681,1
-11,5,0,1,2,525027,0,9173.067,27.9295,1,12,1,13.35878,0,28.62595,0,0,41.98473,0,0,0,1,0,4,79.8,6.9,0,93.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,93.2,9.124136,1.386294,3.737306,1
-11,5,0,1,3,525027,0,9173.067,28.9295,1,12,1,28.91986,2.090592,0,0,457.8397,488.8502,1,0,0,2,0,4,79.8,6.9,0,93.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,93.2,9.124136,1.386294,6.192056,1
-11,5,0,1,1,525028,0,9173.067,3.802875,1,12,1,17.01404,14.7937,0,0,0,31.80774,0,0,0,3,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.124136,1.386294,3.45971,1
-11,5,0,1,2,525028,0,9173.067,4.802875,1,12,1,22.13741,4.767176,0,0,0,26.90458,0,0,0,4,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.124136,1.386294,3.292297,1
-11,5,0,1,3,525028,0,9173.067,5.802875,1,12,1,32.05575,.6585366,0,0,0,32.71429,0,0,0,4,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,9.124136,1.386294,3.487812,1
-11,5,0,1,1,525029,0,9173.067,6.568104,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,1,0,88.9,9.124136,1.386294,,0
-11,5,0,1,2,525029,0,9173.067,7.568104,1,12,1,11.45038,3.835878,0,0,0,15.28626,0,0,0,2,0,4,80,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,1,0,88.9,9.124136,1.386294,2.726954,1
-11,5,0,1,3,525029,0,9173.067,8.568104,1,12,1,13.24042,3.759582,0,0,386.1324,403.1324,1,0,0,2,0,4,80,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,1,0,88.9,9.124136,1.386294,5.999265,1
-11,5,0,1,1,525030,0,9173.067,27.70979,0,12,1,0,8.490005,0,0,0,8.490005,0,0,0,0,0,4,89.4,0,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.124136,1.386294,2.13889,1
-11,5,0,1,2,525030,0,9173.067,28.70979,0,12,1,0,2.206107,0,0,0,2.206107,0,0,0,0,0,4,89.4,0,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.124136,1.386294,.7912294,1
-11,5,0,1,3,525030,0,9173.067,29.70979,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,89.4,0,0,67,0,0,0,0,1.386294,0,0,0,0,0,0,0,67,9.124136,1.386294,,0
-13,5,0,0,1,525055,0,2807.038,56.49281,1,11,1,18.08137,25.07283,0,0,0,43.15419,0,0,0,1,0,2,41.5,13.8,1,56.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,56.8,7.940241,.6931472,3.76478,1
-13,5,0,0,2,525055,0,2807.038,57.49281,1,11,1,39.17478,15.91562,15.42884,0,0,70.51924,0,0,0,3,0,2,41.5,13.8,1,56.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,56.8,7.940241,.6931472,4.255886,1
-13,5,0,0,3,525055,0,2807.038,58.49281,1,11,1,0,6.452573,0,0,0,6.452573,0,0,0,0,0,2,41.5,13.8,1,56.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,56.8,7.940241,.6931472,1.864479,1
-13,5,0,0,4,525055,0,2807.038,59.49281,1,11,1,0,4.064886,0,0,0,4.064886,0,0,0,0,0,2,41.5,13.8,1,56.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,56.8,7.940241,.6931472,1.402386,1
-13,5,0,0,5,525055,0,2807.038,60.49281,1,11,1,42.50871,20.10801,36.68293,0,0,99.29965,0,0,0,2,0,2,41.5,13.8,1,56.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,1,0,56.8,7.940241,.6931472,4.598142,1
-13,5,0,0,1,525056,0,2807.038,55.17317,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,92.3,6.9,0,78.4,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,78.4,7.940241,.6931472,,0
-13,5,0,0,2,525056,0,2807.038,56.17317,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,92.3,6.9,0,78.4,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,78.4,7.940241,.6931472,,0
-13,5,0,0,3,525056,0,2807.038,57.17317,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,92.3,6.9,0,78.4,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,78.4,7.940241,.6931472,,0
-13,5,0,0,4,525056,0,2807.038,58.17317,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,92.3,6.9,0,78.4,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,78.4,7.940241,.6931472,,0
-13,5,0,0,5,525056,0,2807.038,59.17317,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,92.3,6.9,0,78.4,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,0,78.4,7.940241,.6931472,,0
-11,5,0,0,1,525079,0,4926.1,19.48255,1,10,1,21.94514,20.29925,0,0,0,42.24439,0,0,0,3,0,2,33.5,20.7,0,52.3,0,0,0,0,.6931472,0,0,0,0,0,0,0,52.3,8.502506,.6931472,3.743472,1
-11,5,0,0,2,525079,0,4926.1,20.48255,1,10,1,488.2434,6.804979,0,0,0,495.0484,0,0,0,1,0,2,33.5,20.7,0,52.3,0,0,0,0,.6931472,0,0,0,0,0,0,0,52.3,8.502506,.6931472,6.204656,1
-11,5,0,0,3,525079,0,4926.1,21.48255,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,33.5,20.7,0,52.3,0,0,0,0,.6931472,0,0,0,0,0,0,0,52.3,8.502506,.6931472,,0
-11,5,0,0,1,525080,0,4926.1,21.56879,0,12,1,4.488778,4.992519,0,0,0,9.481297,0,0,0,1,0,2,73.9,3.4,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.502506,.6931472,2.249321,1
-11,5,0,0,2,525080,0,4926.1,22.56879,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,3.4,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.502506,.6931472,,0
-11,5,0,0,3,525080,0,4926.1,23.56879,0,12,1,12.48413,0,0,0,0,12.48413,0,0,0,1,0,2,73.9,3.4,0,76.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,76.1,8.502506,.6931472,2.524458,1
-11,5,0,0,4,525080,0,4926.1,24.56879,0,12,1,62.54745,0,0,0,0,62.54745,0,0,0,3,0,1,73.9,3.4,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.502506,0,4.135926,1
-11,5,0,0,5,525080,0,4926.1,25.56879,0,12,1,64.70588,2.159169,0,0,0,66.86505,0,0,0,2,0,1,73.9,3.4,0,76.1,0,0,0,0,0,0,0,0,0,0,0,0,76.1,8.502506,0,4.202676,1
-11,5,0,1,1,525095,0,2554.839,55.30732,0,2,1,14.8662,13.81566,0,0,471.3826,500.0644,1,0,0,2,0,2,69.7,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,7.846136,.6931472,6.214737,1
-11,5,0,1,2,525095,0,2554.839,56.30732,0,2,1,20.65167,82.38641,31.97797,0,0,135.0161,0,0,0,2,0,2,69.7,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,7.846136,.6931472,4.905394,1
-11,5,0,1,3,525095,0,2554.839,57.30732,0,2,1,12.62095,46.04964,0,0,0,58.67059,0,0,0,2,0,2,69.7,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,7.846136,.6931472,4.071939,1
-11,5,0,1,4,525095,0,2554.839,58.30732,0,2,1,6.800151,17.45372,0,0,0,24.25387,0,0,0,1,0,2,69.7,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,7.846136,.6931472,3.188576,1
-11,5,0,1,5,525095,0,2554.839,59.30732,0,2,1,60.37736,75.14236,33.1801,0,921.4408,1090.141,1,0,0,7,0,2,69.7,31,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,7.846136,.6931472,6.994062,1
-11,5,0,1,1,525096,0,2554.839,48.09309,1,5,1,61.94252,51.13974,34.10307,0,0,147.1853,0,0,0,3,0,2,89.4,27.6,1,62.5,0,0,0,0,.6931472,0,0,0,0,0,0,1,62.5,7.846136,.6931472,4.991693,1
-11,5,0,1,2,525096,0,2554.839,49.09309,1,5,1,38.54979,103.0289,49.83937,0,0,191.4181,0,0,0,5,0,2,89.4,27.6,1,62.5,0,0,0,0,.6931472,0,0,0,0,0,0,1,62.5,7.846136,.6931472,5.25446,1
-11,5,0,1,3,525096,0,2554.839,50.09309,1,5,1,33.23517,80.2987,35.1199,0,0,148.6538,0,0,0,4,0,2,89.4,27.6,1,62.5,0,0,0,0,.6931472,0,0,0,0,0,0,1,62.5,7.846136,.6931472,5.00162,1
-11,5,0,1,4,525096,0,2554.839,51.09309,1,5,1,119.3804,120.7291,75.33057,0,0,315.4401,0,0,0,8,0,2,89.4,27.6,1,62.5,0,0,0,0,.6931472,0,0,0,0,0,0,1,62.5,7.846136,.6931472,5.753969,1
-11,5,0,1,5,525096,0,2554.839,52.09309,1,5,1,299.1424,107.1835,45.21784,0,0,451.5437,0,0,0,9,0,2,89.4,27.6,1,62.5,0,0,0,0,.6931472,0,0,0,0,0,0,1,62.5,7.846136,.6931472,6.112672,1
-11,5,0,1,1,525097,0,2633.431,22.53251,0,9,1,94.01496,7.650873,0,0,300,401.6658,1,0,0,9,0,1,43.6,3.4,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,7.876422,0,5.99562,1
-11,5,0,1,2,525097,0,2633.431,23.53251,0,9,1,46.79576,0,0,0,0,46.79576,0,0,0,5,0,1,43.6,3.4,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,7.876422,0,3.845793,1
-11,5,0,1,3,525097,0,2633.431,24.53251,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,43.6,3.4,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,7.876422,0,,0
-11,5,0,1,4,525097,0,2633.431,25.53251,0,9,1,56.56796,4.707669,0,0,0,61.27563,0,0,0,2,0,1,43.6,3.4,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,7.876422,0,4.115382,1
-11,5,0,1,5,525097,0,2633.431,26.53251,0,9,1,134.6021,11.36678,0,0,611.4187,757.3876,1,0,0,8,0,1,43.6,3.4,0,50,0,0,0,0,0,0,0,0,0,1,0,0,50,7.876422,0,6.629875,1
-5,5,25,1,1,525104,0,7458.781,57.79877,0,13,1,49.93652,46.68218,2.522218,0,0,99.14092,0,0,0,3,0,1,85.1,24.1,1,62.5,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,62.5,8.917281,0,4.596542,1
-5,5,25,1,2,525104,0,7458.781,58.79877,0,13,1,74.22172,67.36143,2.277904,0,349.2787,493.1397,1,0,0,7,0,1,85.1,24.1,1,62.5,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,62.5,8.917281,0,6.200792,1
-5,5,25,1,3,525104,0,7458.781,59.79877,0,13,1,198.7889,50.08305,49.02768,0,1325.952,1623.851,1,0,0,6,1,1,85.1,24.1,1,62.5,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,1,0,62.5,8.917281,0,7.392556,1
-15,5,95,0,1,525107,0,9990.783,27.74264,1,12,1,33.85527,0,11.84934,0,0,45.70461,0,0,0,2,1,3,73.4,10.3,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.209518,1.098612,3.822199,1
-15,5,95,0,2,525107,0,9990.783,28.74264,1,12,1,26.9552,3.644647,0,0,0,30.59985,0,0,0,3,0,3,73.4,10.3,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.209518,1.098612,3.420995,1
-15,5,95,0,3,525107,0,9990.783,29.74264,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,10.3,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.209518,1.098612,,0
-15,5,95,0,1,525108,0,9990.783,30.39014,0,16,1,152.7719,12.39526,11.42615,0,0,176.5933,0,0,0,5,2,3,84.6,10.3,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.209518,1.098612,5.17385,1
-15,5,95,0,2,525108,0,9990.783,31.39014,0,16,1,6.454062,1.537585,0,0,0,7.991648,0,0,0,1,0,3,84.6,10.3,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.209518,1.098612,2.078397,1
-15,5,95,0,3,525108,0,9990.783,32.39014,0,16,1,14.53287,0,0,0,0,14.53287,0,0,0,1,1,3,84.6,10.3,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.209518,1.098612,2.676413,1
-17,5,25,0,1,525134,1,6674.895,53.38809,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,56.4,3.4,0,56.8,240,0,0,0,0,0,0,3.258096,6.866933,1,0,0,56.8,8.806258,0,,0
-17,5,25,0,2,525134,1,6674.895,54.38809,1,7,1,0,1.860289,0,0,0,1.860289,0,0,0,0,0,1,56.4,3.4,0,56.8,240,0,0,0,0,0,0,3.258096,6.866933,1,0,0,56.8,8.806258,0,.6207316,1
-17,5,25,0,3,525134,1,6674.895,55.38809,1,7,1,19.03114,2.733564,32.02768,0,0,53.79239,0,0,0,2,0,1,56.4,3.4,0,56.8,240,0,0,0,0,0,0,3.258096,6.866933,1,0,0,56.8,8.806258,0,3.985132,1
-13,5,0,1,1,525141,0,4639.529,57.62355,1,13,1,6.347863,3.626746,0,0,0,9.974608,0,0,0,1,0,1,70.2,20.7,0,50,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,50,8.442584,0,2.300043,1
-13,5,0,1,2,525141,0,4639.529,58.62355,1,13,1,35.68717,3.386484,0,0,0,39.07365,0,0,0,3,0,1,70.2,20.7,0,50,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,50,8.442584,0,3.665448,1
-13,5,0,1,3,525141,0,4639.529,59.62355,1,13,1,8.650519,0,0,0,0,8.650519,0,0,0,1,0,1,70.2,20.7,0,50,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,50,8.442584,0,2.157619,1
-11,5,0,0,1,525159,1,0,49.85626,1,11,1,7.835258,0,32.38573,0,0,40.22099,0,0,0,0,1,3,49.5,27.6,1,47.7,0,0,0,0,1.098612,0,0,0,0,0,0,1,47.7,0,1.098612,3.694389,1
-11,5,0,0,2,525159,1,0,50.85626,1,11,1,48.95689,0,1.159017,0,0,50.1159,0,0,0,0,0,3,49.5,27.6,1,47.7,0,0,0,0,1.098612,0,0,0,0,0,0,1,47.7,0,1.098612,3.914338,1
-11,5,0,0,3,525159,1,0,51.85626,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,49.5,27.6,1,47.7,0,0,0,0,1.098612,0,0,0,0,0,0,1,47.7,0,1.098612,,0
-11,5,0,0,4,525159,1,0,52.85626,1,11,1,25.9542,0,31.75573,0,0,57.70992,0,0,0,2,1,4,49.5,27.6,1,47.7,0,0,0,0,1.386294,0,0,0,0,0,0,1,47.7,0,1.386294,4.055429,1
-11,5,0,0,5,525159,1,0,53.85626,1,11,1,10.45296,0,32.24739,0,0,42.70035,0,0,0,0,1,4,49.5,27.6,1,47.7,0,0,0,0,1.386294,0,0,0,0,0,0,1,47.7,0,1.386294,3.754207,1
-11,5,0,0,1,525160,1,0,19.08829,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,42,6.9,0,54.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,54.5,0,1.098612,,0
-11,5,0,0,2,525160,1,0,20.08829,1,9,1,26.61103,9.619843,0,0,0,36.23088,0,0,0,0,0,3,42,6.9,0,54.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,54.5,0,1.098612,3.589912,1
-11,5,0,0,3,525160,1,0,21.08829,1,9,1,0,14.86601,0,0,1389.196,1404.062,1,1,0,0,0,3,42,6.9,0,54.5,0,0,0,0,1.098612,0,0,0,0,0,0,0,54.5,0,1.098612,7.247125,1
-11,5,0,0,4,525160,1,0,22.08829,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,42,6.9,0,54.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,54.5,0,1.386294,,0
-11,5,0,0,5,525160,1,0,23.08829,1,9,1,20.55749,0,0,0,0,20.55749,0,0,0,0,1,4,42,6.9,0,54.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,54.5,0,1.386294,3.023225,1
-11,5,0,0,1,525161,1,0,3.208761,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,70.4,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.4,0,1.098612,,0
-11,5,0,0,2,525161,1,0,4.208761,0,11,1,6.954103,0,0,0,0,6.954103,0,0,0,1,0,3,77.40034,10.57626,0,70.4,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.4,0,1.098612,1.939332,1
-11,5,0,0,3,525161,1,0,5.208761,0,11,1,12.76053,2.530838,0,0,0,15.29137,0,0,0,2,0,3,77.40034,10.57626,0,70.4,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.4,0,1.098612,2.727288,1
-11,5,0,0,4,525161,1,0,6.208761,0,11,1,52.29008,8.187023,0,0,0,60.4771,0,0,0,0,0,4,77.40034,10.57626,0,70.4,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.4,0,1.386294,4.102265,1
-11,5,0,0,5,525161,1,0,7.208761,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.4,0,1.386294,,0
-11,5,0,0,1,525192,0,5363.636,25.40726,1,16,1,20.94763,6.573566,0,14.96259,0,27.5212,0,0,3,2,0,1,61.7,17.2,0,77.3,0,12,0,0,0,2.484907,0,0,0,0,0,0,77.3,8.587584,0,3.314956,1
-11,5,0,0,2,525192,0,5363.636,26.40726,1,16,1,55.78608,0,0,0,0,55.78608,0,0,0,1,0,1,61.7,17.2,0,77.3,0,12,0,0,0,2.484907,0,0,0,0,0,0,77.3,8.587584,0,4.021524,1
-11,5,0,0,3,525192,0,5363.636,27.40726,1,16,1,283.5379,7.054592,26.07702,0,0,316.6695,0,0,0,8,2,1,61.7,17.2,0,77.3,0,12,0,0,0,2.484907,0,0,0,0,0,0,77.3,8.587584,0,5.757859,1
-11,5,0,0,4,525192,0,5363.636,28.40726,1,16,1,89.21792,22.53227,11.05543,0,394.0775,516.8831,1,0,0,4,0,1,61.7,17.2,0,77.3,0,12,0,0,0,2.484907,0,0,0,0,0,0,77.3,8.587584,0,6.247817,1
-11,5,0,0,5,525192,0,5363.636,29.40726,1,16,1,91.34948,19.0173,0,0,0,110.3668,0,0,0,3,0,1,61.7,17.2,0,77.3,0,12,0,0,0,2.484907,0,0,0,0,0,0,77.3,8.587584,0,4.703809,1
-13,5,0,1,1,525204,0,17808.5,25.78234,1,12,1,77.83922,2.977456,0,0,0,80.81667,0,0,0,4,0,5,72.3,10.3,0,76.1,450,864,0,0,1.609438,6.761573,1,4.564348,6.160541,0,1,0,76.1,9.787487,1.609438,4.392183,1
-13,5,0,1,2,525204,0,17808.5,26.78234,1,12,1,5.725191,0,0,0,0,5.725191,0,0,0,1,0,5,72.3,10.3,0,76.1,450,864,0,0,1.609438,6.761573,1,4.564348,6.160541,0,1,0,76.1,9.787487,1.609438,1.744876,1
-13,5,0,1,1,525205,0,17808.5,8.449008,0,12,1,10.63377,0,17.86474,0,0,28.49851,0,0,0,0,1,5,93.3,10.57626,0,100,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,100,9.787487,1.609438,3.349852,1
-13,5,0,1,2,525205,0,17808.5,9.449008,0,12,1,8.015267,0,0,0,0,8.015267,0,0,0,1,0,5,93.3,10.57626,0,100,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,100,9.787487,1.609438,2.081348,1
-13,5,0,1,1,525206,0,17808.5,8.449008,0,12,1,32.32667,0,0,0,0,32.32667,0,0,0,2,0,5,90,10.57626,0,96.3,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,96.3,9.787487,1.609438,3.475893,1
-13,5,0,1,2,525206,0,17808.5,9.449008,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,96.3,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,96.3,9.787487,1.609438,,0
-13,5,0,0,1,525207,0,17808.5,26.99795,0,12,1,182.9009,10.77414,0,0,679.2854,872.9604,2,0,0,6,1,5,61.2,6.9,1,65.9,450,864,0,0,1.609438,6.761573,1,4.564348,6.160541,0,1,0,65.9,9.787487,1.609438,6.77189,1
-13,5,0,0,2,525207,0,17808.5,27.99795,0,12,1,0,8.790076,0,0,0,8.790076,0,0,0,0,0,5,61.2,6.9,1,65.9,450,864,0,0,1.609438,6.761573,1,4.564348,6.160541,0,1,0,65.9,9.787487,1.609438,2.173623,1
-13,5,0,1,1,525215,1,295.955,12.14237,0,7,1,25.73,0,0,0,0,25.73,0,0,0,0,0,3,90,10.57626,0,85.2,450,0,1,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,5.693581,1.098612,3.247658,1
-13,5,0,1,2,525215,1,295.955,13.14237,0,7,1,0,0,0,0,0,0,0,0,0,0,0,2,90,10.57626,0,85.2,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,85.2,5.693581,.6931472,,0
-13,5,0,1,3,525215,1,295.955,14.14237,0,7,1,22.14533,0,0,0,0,22.14533,0,0,0,0,0,2,90,10.57626,0,85.2,450,0,1,0,.6931472,0,1,4.564348,6.160541,1,0,0,85.2,5.693581,.6931472,3.097627,1
-13,5,0,1,1,525216,1,295.955,14.56537,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,92.6,3.4,0,80.7,450,0,1,1,1.098612,0,1,4.564348,6.160541,1,0,0,80.7,5.693581,1.098612,,0
-13,5,0,1,2,525216,1,295.955,15.56537,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,92.6,3.4,0,80.7,450,0,1,1,.6931472,0,1,4.564348,6.160541,1,0,0,80.7,5.693581,.6931472,,0
-13,5,0,1,3,525216,1,295.955,16.56537,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,92.6,3.4,0,80.7,450,0,1,1,.6931472,0,1,4.564348,6.160541,1,0,0,80.7,5.693581,.6931472,,0
-13,5,0,1,1,525218,1,295.955,17.16085,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,91,6.9,0,61.4,450,0,1,1,1.098612,0,1,4.564348,6.160541,1,0,0,61.4,5.693581,1.098612,,0
-13,5,0,1,1,525219,0,9755.425,34.46954,1,14,1,184.788,0,34.40898,0,0,219.197,0,0,0,13,0,3,76.6,6.9,0,62.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.185681,1.098612,5.389971,1
-13,5,0,1,2,525219,0,9755.425,35.46954,1,14,1,22.82158,14.2462,3.360996,0,568.0037,608.4324,1,0,0,1,0,3,76.6,6.9,0,62.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.185681,1.098612,6.410886,1
-13,5,0,1,3,525219,0,9755.425,36.46954,1,14,1,54.59162,19.99154,2.666102,0,0,77.24926,0,0,0,2,0,4,76.6,6.9,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.185681,1.386294,4.347037,1
-13,5,0,1,4,525219,0,9755.425,37.46954,1,14,1,24.39256,0,.8390281,0,0,25.23159,0,0,0,1,0,4,76.6,6.9,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.185681,1.386294,3.228097,1
-13,5,0,1,5,525219,0,9755.425,38.46954,1,14,1,90.65744,11.48789,31.12803,0,0,133.2734,0,0,0,5,1,4,76.6,6.9,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.185681,1.386294,4.892402,1
-13,5,0,1,1,525220,0,9755.425,7.70705,1,14,1,17.95511,4.852868,0,0,0,22.80798,0,0,0,2,0,3,86.7,10.57626,0,74.1,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.185681,1.098612,3.12711,1
-13,5,0,1,2,525220,0,9755.425,8.70705,1,14,1,11.06501,6.085754,0,0,0,17.15076,0,0,0,2,0,3,86.7,10.57626,0,74.1,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.185681,1.098612,2.842042,1
-13,5,0,1,3,525220,0,9755.425,9.70705,1,14,1,35.54803,3.893356,0,0,0,39.44139,0,0,0,5,0,4,86.7,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.185681,1.386294,3.674816,1
-13,5,0,1,4,525220,0,9755.425,10.70705,1,14,1,13.28778,0,0,0,0,13.28778,0,0,0,1,0,4,86.7,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.185681,1.386294,2.586844,1
-13,5,0,1,5,525220,0,9755.425,11.70705,1,14,1,10.38062,0,0,0,0,10.38062,0,0,0,2,0,4,86.7,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,74.1,9.185681,1.386294,2.339941,1
-13,5,0,1,1,525221,0,9755.425,34.1629,0,12,1,81.54613,55.31671,10.31421,0,0,147.1771,0,0,0,5,0,3,70.7,20.7,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,64.8,9.185681,1.098612,4.991636,1
-13,5,0,1,2,525221,0,9755.425,35.1629,0,12,1,25.81835,40.35039,0,0,0,66.16874,0,0,0,3,0,3,70.7,20.7,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,64.8,9.185681,1.098612,4.192208,1
-13,5,0,1,3,525221,0,9755.425,36.1629,0,12,1,34.70165,33.44477,0,0,0,68.14642,0,0,0,4,0,4,70.7,20.7,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,9.185681,1.386294,4.221659,1
-13,5,0,1,4,525221,0,9755.425,37.1629,0,12,1,72.89294,36.79195,0,0,0,109.6849,0,0,0,6,0,4,70.7,20.7,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,9.185681,1.386294,4.697612,1
-13,5,0,1,5,525221,0,9755.425,38.1629,0,12,1,24.22145,67.69896,0,0,0,91.92042,0,0,0,3,0,4,70.7,20.7,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,9.185681,1.386294,4.520923,1
-15,5,95,1,1,525262,1,2432.428,31.18138,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,94.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,1,0,94.3,7.797056,.6931472,,0
-15,5,95,1,2,525262,1,2432.428,32.18138,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,94.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,1,0,94.3,7.797056,.6931472,,0
-15,5,95,1,3,525262,1,2432.428,33.18138,1,10,1,38.34931,0,0,0,0,38.34931,0,0,0,0,0,2,81.4,6.9,0,94.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,1,0,94.3,7.797056,.6931472,3.646737,1
-15,5,95,1,1,525263,1,2432.428,11.24983,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,0,100,400,400,1,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,100,7.797056,.6931472,,0
-15,5,95,1,2,525263,1,2432.428,12.24983,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,0,100,400,400,1,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,100,7.797056,.6931472,,0
-15,5,95,1,3,525263,1,2432.428,13.24983,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,0,100,400,400,1,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,100,7.797056,.6931472,,0
-13,5,0,1,1,525267,0,5955.425,22.49692,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,58,17.2,0,59.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.692225,1.098612,,0
-13,5,0,1,2,525267,0,5955.425,23.49692,0,9,1,19.8248,18.21116,0,0,0,38.03596,0,0,0,3,0,3,58,17.2,0,59.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.692225,1.098612,3.638532,1
-13,5,0,1,3,525267,0,5955.425,24.49692,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,58,17.2,0,59.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.692225,1.098612,,0
-13,5,0,1,4,525267,0,5955.425,25.49692,0,9,1,0,2.277904,0,0,0,2.277904,0,0,0,0,0,3,58,17.2,0,59.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.692225,1.098612,.8232558,1
-13,5,0,1,5,525267,0,5955.425,26.49692,0,9,1,59.68858,0,0,0,0,59.68858,0,0,0,2,0,3,58,17.2,0,59.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.692225,1.098612,4.089141,1
-13,5,0,1,1,525268,0,5955.425,18.54346,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,58,3.4,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,60.2,8.692225,1.098612,,0
-13,5,0,1,2,525268,0,5955.425,19.54346,1,9,1,18.44168,11.96865,0,0,0,30.41033,0,0,0,2,0,3,58,3.4,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,60.2,8.692225,1.098612,3.414782,1
-13,5,0,1,3,525268,0,5955.425,20.54346,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,58,3.4,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,60.2,8.692225,1.098612,,0
-13,5,0,1,4,525268,0,5955.425,21.54346,1,9,1,52.69552,0,0,0,0,52.69552,0,0,0,4,0,3,58,3.4,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,60.2,8.692225,1.098612,3.96453,1
-13,5,0,1,5,525268,0,5955.425,22.54346,1,9,1,14.18685,1.089965,0,0,849.827,865.1038,1,0,0,0,0,3,58,3.4,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,60.2,8.692225,1.098612,6.762849,1
-13,5,0,1,1,525269,0,5955.425,2.565366,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,59.3,8.692225,1.098612,,0
-13,5,0,1,2,525269,0,5955.425,3.565366,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,59.3,8.692225,1.098612,,0
-13,5,0,1,3,525269,0,5955.425,4.565366,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,59.3,8.692225,1.098612,,0
-13,5,0,1,4,525269,0,5955.425,5.565366,1,9,1,5.31511,0,0,0,0,5.31511,0,0,0,1,0,3,77.40034,10.57626,0,59.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,59.3,8.692225,1.098612,1.670554,1
-13,5,0,1,5,525269,0,5955.425,6.565366,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,59.3,8.692225,1.098612,,0
-13,5,0,1,1,525291,0,6674.895,24,1,13,1,68.78418,0,0,0,0,68.78418,0,0,0,4,0,1,87.2,10.3,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,8.806258,0,4.230974,1
-13,5,0,1,2,525291,0,6674.895,25,1,13,1,18.88931,0,0,0,0,18.88931,0,0,0,2,0,1,87.2,10.3,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,8.806258,0,2.938596,1
-13,5,0,1,3,525291,0,6674.895,26,1,13,1,62.6072,7.732419,0,0,0,70.33962,0,0,0,5,0,1,87.2,10.3,0,72.7,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.7,8.806258,0,4.253335,1
-11,5,0,1,1,525332,0,155.4252,5.070499,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,5.052578,1.386294,,0
-11,5,0,1,2,525332,0,155.4252,6.070499,0,4,1,57.86076,3.112033,0,0,0,60.9728,0,0,0,1,0,4,85,10.57626,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,5.052578,1.386294,4.110428,1
-11,5,0,1,3,525332,0,155.4252,7.070499,0,4,1,6.347863,1.015658,0,0,0,7.363521,0,0,0,1,0,4,85,10.57626,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,5.052578,1.386294,1.996538,1
-11,5,0,1,4,525332,0,155.4252,8.070499,0,4,1,23.44343,1.886864,0,0,0,25.3303,0,0,0,1,0,4,85,10.57626,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,5.052578,1.386294,3.232001,1
-11,5,0,1,5,525332,0,155.4252,9.070499,0,4,1,8.650519,0,23.87543,0,0,32.52595,0,0,0,0,1,4,85,10.57626,0,77.8,0,0,1,0,1.386294,0,0,0,0,1,0,0,77.8,5.052578,1.386294,3.482038,1
-11,5,0,1,1,525333,0,155.4252,17.0705,1,4,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,3.4,0,71.6,0,0,1,1,1.386294,0,0,0,0,1,0,0,71.6,5.052578,1.386294,,0
-11,5,0,1,2,525333,0,155.4252,18.0705,1,4,1,25.56478,0,0,0,0,25.56478,0,0,0,0,0,4,77.1,3.4,0,71.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.6,5.052578,1.386294,3.241215,1
-11,5,0,1,3,525333,0,155.4252,19.0705,1,4,1,35.86543,4.528142,0,0,0,40.39357,0,0,0,0,1,4,77.1,3.4,0,71.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.6,5.052578,1.386294,3.698671,1
-11,5,0,1,4,525333,0,155.4252,20.0705,1,4,1,66.05923,10.51632,0,0,0,76.57555,0,0,0,6,0,4,77.1,3.4,0,71.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.6,5.052578,1.386294,4.338278,1
-11,5,0,1,5,525333,0,155.4252,21.0705,1,4,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,3.4,0,71.6,0,0,0,0,1.386294,0,0,0,0,1,0,0,71.6,5.052578,1.386294,,0
-11,5,0,1,1,525334,0,155.4252,7.734428,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,1,0,0,88.9,5.052578,1.386294,,0
-11,5,0,1,2,525334,0,155.4252,8.734428,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,1,0,0,88.9,5.052578,1.386294,,0
-11,5,0,1,3,525334,0,155.4252,9.734428,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,1,0,0,88.9,5.052578,1.386294,,0
-11,5,0,1,4,525334,0,155.4252,10.73443,0,4,1,25.24677,3.018223,0,0,0,28.265,0,0,0,3,0,4,88.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,1,0,0,88.9,5.052578,1.386294,3.341624,1
-11,5,0,1,5,525334,0,155.4252,11.73443,0,4,1,19.03114,5.17301,23.87543,0,0,48.07959,0,0,0,0,1,4,88.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,1,0,0,88.9,5.052578,1.386294,3.872858,1
-11,5,0,1,1,525335,0,155.4252,38.59822,1,4,1,0,0,37.86534,0,0,37.86534,0,0,0,0,0,4,64.9,24.1,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,5.052578,1.386294,3.634036,1
-11,5,0,1,2,525335,0,155.4252,39.59822,1,4,1,69.00876,37.2107,29.05947,0,0,135.2789,0,0,0,2,4,4,64.9,24.1,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,5.052578,1.386294,4.907339,1
-11,5,0,1,3,525335,0,155.4252,40.59822,1,4,1,105.0783,47.19001,13.05967,0,0,165.328,0,0,0,8,4,4,64.9,24.1,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,5.052578,1.386294,5.107931,1
-11,5,0,1,4,525335,0,155.4252,41.59822,1,4,1,258.656,50.44799,41.65528,0,0,350.7593,0,0,0,12,0,4,64.9,24.1,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,5.052578,1.386294,5.8601,1
-11,5,0,1,5,525335,0,155.4252,42.59822,1,4,1,215.5709,141.8166,59.29412,0,448.7889,865.4706,1,0,0,16,0,4,64.9,24.1,0,62.5,0,0,0,0,1.386294,0,0,0,0,0,1,0,62.5,5.052578,1.386294,6.763273,1
-11,5,0,1,1,525336,1,1399.413,1.938398,1,10,1,26.05985,0,0,0,0,26.05985,0,0,0,0,0,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.244523,.6931472,3.260396,1
-11,5,0,1,2,525336,1,1399.413,2.938398,1,10,1,48.01752,4.61042,0,0,0,52.62794,0,0,0,0,2,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.244523,.6931472,3.963247,1
-11,5,0,1,3,525336,1,1399.413,3.938398,1,10,1,65.55226,8.26915,0,0,0,73.82141,0,0,0,3,4,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.244523,.6931472,4.301649,1
-11,5,0,1,4,525336,1,1399.413,4.938398,1,10,1,48.21564,6.833713,0,0,0,55.04935,0,0,0,3,0,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.244523,.6931472,4.00823,1
-11,5,0,1,5,525336,1,1399.413,5.938398,1,10,1,13.14879,4.134948,0,0,0,17.28374,0,0,0,1,1,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,0,0,0,85.2,7.244523,.6931472,2.849766,1
-11,5,0,1,1,525337,1,1399.413,22.2998,1,10,1,0,12.50873,0,0,0,12.50873,0,0,0,0,0,2,58,10.3,0,62.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.5,7.244523,.6931472,2.526427,1
-11,5,0,1,2,525337,1,1399.413,23.2998,1,10,1,56.70816,30.24896,23.97418,0,0,110.9313,0,0,0,2,2,2,58,10.3,0,62.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.5,7.244523,.6931472,4.708911,1
-11,5,0,1,3,525337,1,1399.413,24.2998,1,10,1,17.45662,11.78587,0,0,0,29.24249,0,0,0,1,0,2,58,10.3,0,62.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.5,7.244523,.6931472,3.375623,1
-11,5,0,1,4,525337,1,1399.413,25.2998,1,10,1,57.9347,33.44723,26.1959,0,0,117.5778,0,0,0,3,1,2,58,10.3,0,62.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.5,7.244523,.6931472,4.7671,1
-11,5,0,1,5,525337,1,1399.413,26.2998,1,10,1,114.0138,19.15225,14.53287,0,0,147.699,0,0,0,7,1,2,58,10.3,0,62.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,62.5,7.244523,.6931472,4.995176,1
-11,5,0,1,1,525352,1,1829.912,52.0219,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,7.512569,0,,0
-11,5,0,1,2,525352,1,1829.912,53.0219,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,7.512569,0,,0
-11,5,0,1,3,525352,1,1829.912,54.0219,1,7,1,27.34539,0,30.71098,0,0,58.05637,0,0,0,0,3,1,86.7,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,7.512569,0,4.061415,1
-11,5,0,1,4,525352,1,1829.912,55.0219,1,7,1,7.555724,0,0,0,0,7.555724,0,0,0,0,1,1,86.7,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,7.512569,0,2.022305,1
-11,5,0,1,5,525352,1,1829.912,56.0219,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,13.8,0,73.9,0,0,0,0,0,0,0,0,0,1,0,0,73.9,7.512569,0,,0
-11,5,0,1,1,525374,1,8918.475,21.7796,1,12,1,0,1.977205,0,0,0,1.977205,0,0,0,0,0,5,86.2,3.4,0,94.3,0,391.56,0,0,1.609438,5.970139,0,0,0,0,0,0,94.3,9.095992,1.609438,.6816843,1
-11,5,0,1,2,525374,1,8918.475,22.7796,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,94.3,0,391.56,0,0,1.609438,5.970139,0,0,0,0,0,0,94.3,9.095992,1.609438,,0
-11,5,0,1,3,525374,1,8918.475,23.7796,1,12,1,8.834665,4.627682,0,0,0,13.46235,0,0,0,1,0,5,86.2,3.4,0,94.3,0,391.56,0,0,1.609438,5.970139,0,0,0,0,0,0,94.3,9.095992,1.609438,2.599897,1
-11,5,0,1,4,525374,1,8918.475,24.7796,1,12,1,11.33358,0,0,0,0,11.33358,0,0,0,1,0,5,86.2,3.4,0,94.3,0,391.56,0,0,1.609438,5.970139,0,0,0,0,0,0,94.3,9.095992,1.609438,2.42777,1
-11,5,0,1,5,525374,1,8918.475,25.7796,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,94.3,0,391.56,0,0,1.609438,5.970139,0,0,0,0,0,0,94.3,9.095992,1.609438,,0
-11,5,0,1,1,525375,1,8918.475,30.59274,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,54.5,0,391.56,0,0,1.609438,5.970139,0,0,0,1,0,0,54.5,9.095992,1.609438,,0
-11,5,0,1,2,525375,1,8918.475,31.59274,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,54.5,0,391.56,0,0,1.609438,5.970139,0,0,0,1,0,0,54.5,9.095992,1.609438,,0
-11,5,0,1,3,525375,1,8918.475,32.59274,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,54.5,0,391.56,0,0,1.609438,5.970139,0,0,0,1,0,0,54.5,9.095992,1.609438,,0
-11,5,0,1,4,525375,1,8918.475,33.59274,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,54.5,0,391.56,0,0,1.609438,5.970139,0,0,0,1,0,0,54.5,9.095992,1.609438,,0
-11,5,0,1,5,525375,1,8918.475,34.59274,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,54.5,0,391.56,0,0,1.609438,5.970139,0,0,0,1,0,0,54.5,9.095992,1.609438,,0
-11,5,0,1,1,525376,1,8918.475,2.800821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,391.56,1,1,1.609438,5.970139,0,0,0,0,0,0,70.4,9.095992,1.609438,,0
-11,5,0,1,2,525376,1,8918.475,3.800821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,391.56,1,1,1.609438,5.970139,0,0,0,0,0,0,70.4,9.095992,1.609438,,0
-11,5,0,1,3,525376,1,8918.475,4.800821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,391.56,1,1,1.609438,5.970139,0,0,0,0,0,0,70.4,9.095992,1.609438,,0
-11,5,0,1,4,525376,1,8918.475,5.800821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,391.56,1,1,1.609438,5.970139,0,0,0,0,0,0,70.4,9.095992,1.609438,,0
-11,5,0,1,5,525376,1,8918.475,6.800821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,391.56,1,1,1.609438,5.970139,0,0,0,0,0,0,70.4,9.095992,1.609438,,0
-11,5,0,1,1,525377,1,8918.475,7.167693,1,12,1,9.415262,0,0,0,0,9.415262,0,0,0,1,0,5,83.3,10.57626,0,85.2,0,391.56,1,1,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,2.242332,1
-11,5,0,1,2,525377,1,8918.475,8.167693,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,85.2,0,391.56,1,1,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,3,525377,1,8918.475,9.167693,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,85.2,0,391.56,1,1,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,4,525377,1,8918.475,10.16769,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,85.2,0,391.56,1,1,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,5,525377,1,8918.475,11.16769,1,12,1,8.576329,2.003431,23.10806,0,0,33.68782,0,0,0,0,1,5,83.3,10.57626,0,85.2,0,391.56,1,1,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,3.517136,1
-11,5,0,1,1,525378,1,8918.475,5.998631,0,12,1,30.62438,0,0,0,0,30.62438,0,0,0,0,0,5,95,10.57626,0,85.2,0,391.56,1,0,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,3.421796,1
-11,5,0,1,2,525378,1,8918.475,6.998631,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,10.57626,0,85.2,0,391.56,1,0,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,3,525378,1,8918.475,7.998631,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,10.57626,0,85.2,0,391.56,1,0,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,4,525378,1,8918.475,8.998631,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,10.57626,0,85.2,0,391.56,1,0,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-11,5,0,1,5,525378,1,8918.475,9.998631,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,95,10.57626,0,85.2,0,391.56,1,0,1.609438,5.970139,0,0,0,1,0,0,85.2,9.095992,1.609438,,0
-13,5,0,0,1,525380,0,9984.639,54.51609,1,16,1,65.59458,13.92298,41.81126,0,0,121.3288,0,0,0,5,0,2,75.5,20.7,0,73.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.208903,.6931472,4.798504,1
-13,5,0,0,2,525380,0,9984.639,55.51609,1,16,1,20.88079,0,0,0,0,20.88079,0,0,0,3,0,2,75.5,20.7,0,73.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.208903,.6931472,3.03883,1
-13,5,0,0,3,525380,0,9984.639,56.51609,1,16,1,36.6782,14.70588,0,0,0,51.38408,0,0,0,3,0,2,75.5,20.7,0,73.9,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,73.9,9.208903,.6931472,3.939328,1
-13,5,0,0,1,525382,0,9984.639,52.30664,0,12,1,97.54549,0,40.4909,0,0,138.0364,0,0,0,4,0,2,93.1,13.8,0,96.6,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.208903,.6931472,4.927517,1
-13,5,0,0,2,525382,0,9984.639,53.30664,0,12,1,52.3918,0,0,0,0,52.3918,0,0,0,1,0,2,93.1,13.8,0,96.6,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.208903,.6931472,3.95875,1
-13,5,0,0,3,525382,0,9984.639,54.30664,0,12,1,51.90311,0,45.69896,0,0,97.60207,0,0,0,4,0,2,93.1,13.8,0,96.6,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.208903,.6931472,4.580899,1
-11,5,0,1,1,525384,0,7808.798,30.84736,1,12,1,52.03172,28.05748,25.76809,0,0,105.8573,0,0,0,5,1,4,78.2,3.4,0,72.7,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,72.7,8.963135,1.386294,4.662092,1
-11,5,0,1,2,525384,0,7808.798,31.84736,1,12,1,57.36576,30.52777,0,0,0,87.89353,0,0,0,7,1,4,78.2,3.4,0,72.7,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,72.7,8.963135,1.386294,4.476126,1
-11,5,0,1,3,525384,0,7808.798,32.84737,1,12,1,57.21498,5.098864,25.6626,0,0,87.97644,0,0,0,4,1,4,78.2,3.4,0,72.7,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,72.7,8.963135,1.386294,4.477069,1
-11,5,0,1,4,525384,0,7808.798,33.84737,1,12,1,5.666792,0,0,0,0,5.666792,0,0,0,1,0,4,78.2,3.4,0,72.7,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,72.7,8.963135,1.386294,1.734623,1
-11,5,0,1,5,525384,0,7808.798,34.84737,1,12,1,19.55403,0,22.98456,0,0,42.53859,0,0,0,1,1,4,78.2,3.4,0,72.7,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,72.7,8.963135,1.386294,3.750412,1
-11,5,0,1,1,525385,0,7808.798,5.262149,1,12,1,75.3221,14.59366,0,0,0,89.91576,0,0,0,11,1,4,98.3,10.57626,0,92.6,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,92.6,8.963135,1.386294,4.498873,1
-11,5,0,1,2,525385,0,7808.798,6.262149,1,12,1,98.21019,29.91739,22.94631,0,0,151.0739,0,0,0,15,1,4,98.3,10.57626,0,92.6,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,92.6,8.963135,1.386294,5.017769,1
-11,5,0,1,3,525385,0,7808.798,7.262149,1,12,1,49.64241,12.51578,10.93816,0,0,73.09634,0,0,0,6,1,4,98.3,10.57626,0,92.6,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,92.6,8.963135,1.386294,4.291778,1
-11,5,0,1,4,525385,0,7808.798,8.262149,1,12,1,28.71175,2.11938,0,0,0,30.83113,0,0,0,2,1,4,98.3,10.57626,0,92.6,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,92.6,8.963135,1.386294,3.428525,1
-11,5,0,1,5,525385,0,7808.798,9.262149,1,12,1,29.15952,0,19.89708,0,0,49.0566,0,0,0,2,1,4,98.3,10.57626,0,92.6,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,92.6,8.963135,1.386294,3.892975,1
-11,5,0,1,1,525386,0,7808.798,8.424367,1,12,1,187.8097,20.62934,36.66997,0,0,245.109,0,0,0,13,1,4,53.3,10.57626,0,37,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,37,8.963135,1.386294,5.501703,1
-11,5,0,1,2,525386,0,7808.798,9.424367,1,12,1,109.2244,19.34373,0,0,0,128.5681,0,0,0,17,1,4,53.3,10.57626,0,37,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,37,8.963135,1.386294,4.856459,1
-11,5,0,1,3,525386,0,7808.798,10.42437,1,12,1,92.97433,24.29533,36.60076,0,0,153.8704,0,0,0,10,2,4,53.3,10.57626,0,37,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,37,8.963135,1.386294,5.036111,1
-11,5,0,1,4,525386,0,7808.798,11.42437,1,12,1,125.0472,77.26483,10.57801,0,0,212.8901,0,0,0,13,1,4,53.3,10.57626,0,37,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,37,8.963135,1.386294,5.360776,1
-11,5,0,1,5,525386,0,7808.798,12.42437,1,12,1,72.72727,70.1681,23.32762,0,0,166.223,0,0,0,11,1,4,53.3,10.57626,0,37,0,513.24,1,1,1.386294,6.240744,0,0,0,1,0,0,37,8.963135,1.386294,5.11333,1
-11,5,0,1,1,525387,0,7808.798,36.11773,0,12,1,49.55401,32.21011,0,0,0,81.76412,0,0,0,5,1,4,66,3.4,0,61.4,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,61.4,8.963135,1.386294,4.403839,1
-11,5,0,1,2,525387,0,7808.798,37.11773,0,12,1,58.28362,52.46443,0,0,0,110.748,0,0,0,7,1,4,66,3.4,0,61.4,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,61.4,8.963135,1.386294,4.707258,1
-11,5,0,1,3,525387,0,7808.798,38.11773,0,12,1,46.69752,70.03365,31.97308,0,0,148.7043,0,0,0,5,1,4,66,3.4,0,61.4,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,61.4,8.963135,1.386294,5.001959,1
-11,5,0,1,4,525387,0,7808.798,39.11773,0,12,1,34.00076,120.6611,0,0,0,154.6619,0,0,0,4,0,4,66,3.4,0,61.4,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,61.4,8.963135,1.386294,5.041241,1
-11,5,0,1,5,525387,0,7808.798,40.11773,0,12,1,19.89708,122.4185,0,0,0,142.3156,0,0,0,3,0,4,66,3.4,0,61.4,0,513.24,0,0,1.386294,6.240744,0,0,0,1,0,0,61.4,8.963135,1.386294,4.958047,1
-13,5,0,0,1,525392,0,4632.873,59.6167,1,4,1,83.15701,47.00804,39.77994,0,1119.975,1289.92,1,0,0,7,1,2,73.4,13.8,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,8.441148,.6931472,7.162335,1
-13,5,0,0,2,525392,0,4632.873,60.6167,1,4,1,157.5551,84.62035,24.29765,0,666.287,932.7601,1,0,0,9,1,2,73.4,13.8,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,8.441148,.6931472,6.838148,1
-13,5,0,0,3,525392,0,4632.873,61.6167,1,4,1,350.0865,68.03114,36.33218,0,0,454.4498,0,0,0,11,3,2,73.4,13.8,0,58,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,58,8.441148,.6931472,6.119088,1
-13,5,0,0,1,525394,0,4632.873,61.36619,0,1,1,23.2755,5.450698,30.89293,0,0,59.61913,0,0,0,1,1,2,84.6,3.4,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.441148,.6931472,4.087976,1
-13,5,0,0,2,525394,0,4632.873,62.36619,0,1,1,51.25285,19.33941,0,0,0,70.59225,0,0,0,2,0,2,84.6,3.4,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.441148,.6931472,4.25692,1
-13,5,0,0,3,525394,0,4632.873,63.36619,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,3.4,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.441148,.6931472,,0
-13,5,0,0,1,525400,1,460.8295,52.43258,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,3.4,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.6,6.135196,0,,0
-13,5,0,0,2,525400,1,460.8295,53.43258,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,3.4,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.6,6.135196,0,,0
-13,5,0,0,3,525400,1,460.8295,54.43258,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,3.4,0,72.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,72.6,6.135196,0,,0
-5,5,25,0,1,525405,1,5774.706,3.578371,1,12,1,58.3157,0,0,0,808.7177,867.0334,1,0,0,0,0,5,77.40034,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,6.765078,1
-5,5,25,0,2,525405,1,5774.706,4.578371,1,12,1,7.593014,0,0,0,0,7.593014,0,0,0,0,0,5,77.40034,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,2.027229,1
-5,5,25,0,3,525405,1,5774.706,5.578371,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,,0
-5,5,25,0,1,525406,1,5774.706,28.00548,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,0,0,81.8,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,0,1,0,81.8,8.661416,1.609438,,0
-5,5,25,0,2,525406,1,5774.706,29.00548,0,12,1,3.796507,0,0,0,0,3.796507,0,0,0,1,0,5,81.4,0,0,81.8,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,0,1,0,81.8,8.661416,1.609438,1.334081,1
-5,5,25,0,3,525406,1,5774.706,30.00548,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,0,0,81.8,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,0,1,0,81.8,8.661416,1.609438,,0
-5,5,25,0,1,525407,1,5774.706,25.17728,1,12,1,11.00296,3.554803,0,0,0,14.55777,0,0,0,0,0,5,77.7,3.4,0,69.3,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,1,0,0,69.3,8.661416,1.609438,2.678125,1
-5,5,25,0,2,525407,1,5774.706,26.17728,1,12,1,0,0,0,0,326.4996,326.4996,1,0,0,0,0,5,77.7,3.4,0,69.3,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,1,0,0,69.3,8.661416,1.609438,5.788429,1
-5,5,25,0,3,525407,1,5774.706,27.17728,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,3.4,0,69.3,80.25,646.36,0,0,1.609438,6.471356,0,3.258096,5.771441,1,0,0,69.3,8.661416,1.609438,,0
-5,5,25,0,1,525408,1,5774.706,5.812457,1,12,1,15.42531,0,0,0,0,15.42531,0,0,0,0,0,5,86.7,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,2.73601,1
-5,5,25,0,2,525408,1,5774.706,6.812457,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,,0
-5,5,25,0,3,525408,1,5774.706,7.812457,1,12,1,13.84083,0,0,0,0,13.84083,0,0,0,0,0,5,86.7,10.57626,0,88.9,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,1,0,0,88.9,8.661416,1.609438,2.627623,1
-13,5,0,0,1,525423,1,9648.745,16.99384,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,82.4,0,0,81.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.174686,1.791759,,0
-13,5,0,0,2,525423,1,9648.745,17.99384,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,0,0,81.8,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.174686,1.609438,,0
-13,5,0,0,3,525423,1,9648.745,18.99384,0,12,1,0,1.35506,0,0,0,1.35506,0,0,0,0,0,5,82.4,0,0,81.8,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.8,9.174686,1.609438,.3038457,1
-13,5,0,0,1,525424,1,9648.745,20.0794,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.1,3.4,0,76.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.174686,1.791759,,0
-13,5,0,0,2,525424,1,9648.745,21.0794,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,93.1,3.4,0,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.174686,1.609438,,0
-13,5,0,0,3,525424,1,9648.745,22.0794,1,10,1,0,7.025729,0,0,0,7.025729,0,0,0,0,0,5,93.1,3.4,0,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.174686,1.609438,1.949579,1
-13,5,0,0,1,525425,1,9648.745,13.80972,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,96.7,10.57626,.1442925,88.9,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.174686,1.791759,,0
-13,5,0,0,1,525426,1,9648.745,36.27926,1,12,1,6.310475,0,0,0,0,6.310475,0,0,0,0,0,6,77.40034,10.57626,.1442925,,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.174686,1.791759,1.842211,1
-13,5,0,0,2,525426,1,9648.745,37.27926,1,12,1,3.777862,1.511145,0,0,812.9958,818.2849,1,0,0,1,0,5,77.40034,10.57626,.1442925,,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.174686,1.609438,6.707211,1
-13,5,0,0,3,525426,1,9648.745,38.27926,1,12,1,0,4.082333,0,0,0,4.082333,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.174686,1.609438,1.406669,1
-13,5,0,0,1,525427,1,9648.745,18.3436,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,6,90.4,0,0,80.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.791759,,0
-13,5,0,0,2,525427,1,9648.745,19.3436,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,0,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.609438,,0
-13,5,0,0,3,525427,1,9648.745,20.3436,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,0,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.609438,,0
-13,5,0,0,1,525428,1,9648.745,43.84121,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,94.1,6.9,0,80.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.791759,,0
-13,5,0,0,2,525428,1,9648.745,44.84121,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,6.9,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.609438,,0
-13,5,0,0,3,525428,1,9648.745,45.84121,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,6.9,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.174686,1.609438,,0
-13,5,0,0,1,525438,0,7237.583,30.45038,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,97.9,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.88718,1.098612,,0
-13,5,0,0,2,525438,0,7237.583,31.45038,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,97.9,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.88718,1.098612,,0
-13,5,0,0,3,525438,0,7237.583,32.45037,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,97.9,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,71.6,8.88718,1.098612,,0
-13,5,0,1,1,525439,0,7237.583,11.00616,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.88718,1.098612,,0
-13,5,0,1,2,525439,0,7237.583,12.00616,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.88718,1.098612,,0
-13,5,0,1,3,525439,0,7237.583,13.00616,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,92.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.88718,1.098612,,0
-13,5,0,1,1,525440,0,7237.583,29.96852,1,9,1,0,5.469079,0,0,0,5.469079,0,0,0,0,0,3,96.3,3.4,0,77.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.4,8.88718,1.098612,1.69911,1
-13,5,0,1,2,525440,0,7237.583,30.96852,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,3.4,0,77.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.4,8.88718,1.098612,,0
-13,5,0,1,3,525440,0,7237.583,31.96852,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,3.4,0,77.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.4,8.88718,1.098612,,0
-11,5,0,1,1,525450,1,2597.03,55.11841,0,5,1,79.54062,24.18971,24.77244,0,0,128.5028,0,0,0,5,1,1,75.5,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.862509,0,4.85595,1
-11,5,0,1,2,525450,1,2597.03,56.11841,0,5,1,0,5.240458,30.96183,0,0,36.20229,0,0,0,0,0,1,75.5,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.862509,0,3.589122,1
-11,5,0,1,3,525450,1,2597.03,57.11841,0,5,1,64.80836,59.49477,35.8885,0,1167.944,1328.136,1,0,0,4,1,1,75.5,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.862509,0,7.191532,1
-14,5,95,1,1,525456,0,11896.19,7.411362,1,12,1,15.85728,2.913776,0,0,0,18.77106,0,0,0,1,1,4,86.7,10.57626,0,92.6,753.2,1173,1,1,1.386294,7.06732,0,4.564348,6.675624,0,0,0,92.6,9.384057,1.386294,2.932316,1
-14,5,95,1,2,525456,0,11896.19,8.411362,1,12,1,5.507113,0,0,0,0,5.507113,0,0,0,1,0,4,86.7,10.57626,0,92.6,753.2,1173,1,1,1.386294,7.06732,0,4.564348,6.675624,0,0,0,92.6,9.384057,1.386294,1.706041,1
-14,5,95,1,3,525456,0,11896.19,9.411362,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,0,92.6,753.2,1173,1,1,1.386294,7.06732,0,4.564348,6.675624,0,0,0,92.6,9.384057,1.386294,,0
-14,5,95,1,4,525456,0,11896.19,10.41136,1,12,1,44.95655,16.87193,0,0,0,61.82848,0,0,0,5,0,5,86.7,10.57626,0,92.6,753.2,1173,1,1,1.609438,7.06732,0,4.564348,6.675624,0,0,0,92.6,9.384057,1.609438,4.124364,1
-14,5,95,1,5,525456,0,11896.19,11.41136,1,12,1,63.46484,30.64151,0,0,0,94.10635,0,0,0,8,0,5,86.7,10.57626,0,92.6,753.2,1173,1,1,1.609438,7.06732,0,4.564348,6.675624,0,0,0,92.6,9.384057,1.609438,4.544425,1
-14,5,95,1,1,525457,0,11896.19,29.6564,1,12,1,56.98712,23.15659,59.21704,0,0,139.3607,0,0,0,5,1,4,81.9,13.8,0,86.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,86.4,9.384057,1.386294,4.937066,1
-14,5,95,1,2,525457,0,11896.19,30.6564,1,12,1,50.9408,50.13309,0,0,2255.14,2356.214,1,0,0,4,0,4,81.9,13.8,0,86.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,86.4,9.384057,1.386294,7.764812,1
-14,5,95,1,3,525457,0,11896.19,31.6564,1,12,1,30.29028,36.41986,0,0,0,66.71014,0,0,0,4,0,4,81.9,13.8,0,86.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,86.4,9.384057,1.386294,4.200357,1
-14,5,95,1,4,525457,0,11896.19,32.6564,1,12,1,114.0914,58.59086,41.06913,0,0,213.7514,0,0,0,6,0,5,81.9,13.8,0,86.4,753.2,1173,0,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,86.4,9.384057,1.609438,5.364814,1
-14,5,95,1,5,525457,0,11896.19,33.6564,1,12,1,41.16638,25.75986,0,0,0,66.92625,0,0,0,4,0,5,81.9,13.8,0,86.4,753.2,1173,0,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,86.4,9.384057,1.609438,4.203591,1
-14,5,95,1,1,525458,0,11896.19,33.04586,0,12,1,29.73241,6.243806,35.67889,0,0,71.65511,0,0,0,2,1,4,79.8,3.4,0,78.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,78.4,9.384057,1.386294,4.271864,1
-14,5,95,1,2,525458,0,11896.19,34.04586,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,78.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,78.4,9.384057,1.386294,,0
-14,5,95,1,3,525458,0,11896.19,35.04586,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,3.4,0,78.4,753.2,1173,0,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,78.4,9.384057,1.386294,,0
-14,5,95,1,4,525458,0,11896.19,36.04586,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,3.4,0,78.4,753.2,1173,0,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,78.4,9.384057,1.609438,,0
-14,5,95,1,5,525458,0,11896.19,37.04586,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,3.4,0,78.4,753.2,1173,0,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,78.4,9.384057,1.609438,,0
-14,5,95,1,1,525459,0,11896.19,.9965777,0,12,1,57.48265,21.98216,25.77304,0,0,105.2379,0,0,0,5,4,4,77.40034,10.57626,1,100,753.2,1173,1,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,100,9.384057,1.386294,4.656223,1
-14,5,95,1,2,525459,0,11896.19,1.996578,0,12,1,53.23543,18.80679,13.12529,0,0,85.16751,0,0,0,9,0,4,77.40034,10.57626,1,100,753.2,1173,1,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,100,9.384057,1.386294,4.44462,1
-14,5,95,1,3,525459,0,11896.19,2.996578,0,12,1,21.03492,13.64325,0,0,0,34.67817,0,0,0,3,0,4,77.40034,10.57626,1,100,753.2,1173,1,0,1.386294,7.06732,0,4.564348,6.675624,0,0,0,100,9.384057,1.386294,3.54611,1
-14,5,95,1,4,525459,0,11896.19,3.996578,0,12,1,39.28976,25.86324,0,0,287.3064,352.4594,1,0,0,4,0,5,77.40034,10.57626,1,100,753.2,1173,1,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,100,9.384057,1.609438,5.864935,1
-14,5,95,1,5,525459,0,11896.19,4.996578,0,12,1,20.24014,23.63979,0,0,0,43.87993,0,0,0,4,0,5,77.40034,10.57626,1,100,753.2,1173,1,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,100,9.384057,1.609438,3.781457,1
-10,5,50,1,1,525465,0,10283.87,25.1937,1,12,1,31.71457,25.51536,1.922696,0,1248.34,1307.493,2,0,0,1,0,2,89.9,3.4,0,93.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,93.2,9.238429,.6931472,7.175867,1
-10,5,50,1,2,525465,0,10283.87,26.1937,1,12,1,2.753557,17.4805,1.629188,0,1220.285,1242.148,1,0,0,0,0,2,89.9,3.4,0,93.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,93.2,9.238429,.6931472,7.124597,1
-10,5,50,1,3,525465,0,10283.87,27.1937,1,12,1,13.04165,15.80143,0,0,0,28.84308,0,0,0,1,0,3,89.9,3.4,0,93.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,93.2,9.238429,1.098612,3.36187,1
-10,5,50,1,4,525465,0,10283.87,28.1937,1,12,1,253.8723,10.68002,0,0,0,264.5523,0,0,0,5,0,3,89.9,3.4,0,93.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,93.2,9.238429,1.098612,5.578039,1
-10,5,50,1,5,525465,0,10283.87,29.1937,1,12,1,133.7736,11.24185,15.09434,0,0,160.1098,0,0,0,5,0,3,89.9,3.4,0,93.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,93.2,9.238429,1.098612,5.07586,1
-11,5,0,1,1,525477,0,7760.881,26.95688,1,13,1,8.463818,8.823529,0,0,0,17.28735,0,0,0,1,0,2,79.8,0,0,79.5,0,149.88,0,0,.6931472,5.009835,0,0,0,1,0,0,79.5,8.95698,.6931472,2.849975,1
-11,5,0,1,2,525477,0,7760.881,27.95688,1,13,1,17.08428,0,0,0,0,17.08428,0,0,0,2,0,2,79.8,0,0,79.5,0,149.88,0,0,.6931472,5.009835,0,0,0,1,0,0,79.5,8.95698,.6931472,2.838159,1
-11,5,0,1,3,525477,0,7760.881,28.95688,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,79.8,0,0,79.5,0,149.88,0,0,.6931472,5.009835,0,0,0,1,0,0,79.5,8.95698,.6931472,,0
-11,5,0,1,1,525478,0,7760.881,33.72758,0,12,1,0,0,0,84.63817,0,0,0,0,10,0,0,2,71.3,6.9,0,65.9,0,149.88,0,0,.6931472,5.009835,0,0,0,0,0,0,65.9,8.95698,.6931472,,0
-11,5,0,1,2,525478,0,7760.881,34.72758,0,12,1,0,0,0,119.9696,0,0,0,0,23,0,0,2,71.3,6.9,0,65.9,0,149.88,0,0,.6931472,5.009835,0,0,0,0,0,0,65.9,8.95698,.6931472,,0
-11,5,0,1,3,525478,0,7760.881,35.72758,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,6.9,0,65.9,0,149.88,0,0,.6931472,5.009835,0,0,0,0,0,0,65.9,8.95698,.6931472,,0
-11,5,0,1,1,525481,0,11275.99,11.16496,1,12,1,22.42912,.5755396,0,0,0,23.00466,0,0,0,2,0,5,90,10.57626,0,92.6,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,92.6,9.33052,1.609438,3.135697,1
-11,5,0,1,2,525481,0,11275.99,12.16496,1,12,1,22.01974,5.159453,0,0,0,27.1792,0,0,0,4,0,5,90,10.57626,0,92.6,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,92.6,9.33052,1.609438,3.302452,1
-11,5,0,1,3,525481,0,11275.99,13.16496,1,12,1,15.57093,5.577855,0,0,0,21.14879,0,0,0,2,0,5,90,10.57626,0,92.6,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,92.6,9.33052,1.609438,3.051583,1
-11,5,0,1,1,525482,0,11275.99,35.19233,1,12,1,66.44096,16.40288,0,0,0,82.84384,0,0,0,7,0,5,89.4,17.2,0,45.5,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,45.5,9.33052,1.609438,4.416957,1
-11,5,0,1,2,525482,0,11275.99,36.19233,1,12,1,25.4366,12.25133,0,0,0,37.68793,0,0,0,3,0,5,89.4,17.2,0,45.5,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,45.5,9.33052,1.609438,3.62934,1
-11,5,0,1,3,525482,0,11275.99,37.19233,1,12,1,15.57093,2.937716,0,0,0,18.50865,0,0,0,2,1,5,89.4,17.2,0,45.5,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,45.5,9.33052,1.609438,2.918238,1
-11,5,0,1,1,525483,0,11275.99,7.036276,1,12,1,35.54803,44.15574,0,0,0,79.70377,0,0,0,11,0,5,85,10.57626,0,51.9,0,30,1,1,1.609438,3.401197,0,0,0,1,0,0,51.9,9.33052,1.609438,4.378317,1
-11,5,0,1,2,525483,0,11275.99,8.036277,1,12,1,29.99241,26.32498,0,0,0,56.31739,0,0,0,14,0,5,85,10.57626,0,51.9,0,30,1,1,1.609438,3.401197,0,0,0,1,0,0,51.9,9.33052,1.609438,4.031003,1
-11,5,0,1,3,525483,0,11275.99,9.036277,1,12,1,9.688581,41.19031,0,0,0,50.87889,0,0,0,14,0,5,85,10.57626,0,51.9,0,30,1,1,1.609438,3.401197,0,0,0,1,0,0,51.9,9.33052,1.609438,3.929448,1
-11,5,0,1,1,525484,0,11275.99,36.50924,0,16,1,0,.5755396,0,0,0,.5755396,0,0,0,0,0,5,85.1,13.8,0,68.2,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,68.2,9.33052,1.609438,-.5524473,1
-11,5,0,1,2,525484,0,11275.99,37.50924,0,16,1,0,6.788155,0,0,0,6.788155,0,0,0,0,0,5,85.1,13.8,0,68.2,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,68.2,9.33052,1.609438,1.915179,1
-11,5,0,1,3,525484,0,11275.99,38.50924,0,16,1,12.45675,0,0,0,0,12.45675,0,0,0,1,0,5,85.1,13.8,0,68.2,0,30,0,0,1.609438,3.401197,0,0,0,1,0,0,68.2,9.33052,1.609438,2.522262,1
-11,5,0,1,1,525485,0,11275.99,15.68789,1,12,1,12.27254,3.072366,0,0,0,15.3449,0,0,0,2,0,5,43.1,3.4,0,78.4,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,78.4,9.33052,1.609438,2.730783,1
-11,5,0,1,2,525485,0,11275.99,16.68789,1,12,1,5.694761,1.890661,0,0,0,7.585422,0,0,0,1,0,5,43.1,3.4,0,78.4,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,78.4,9.33052,1.609438,2.026228,1
-11,5,0,1,3,525485,0,11275.99,17.68789,1,12,1,21.90311,2.404844,0,0,0,24.30796,0,0,0,2,0,5,43.1,3.4,0,78.4,0,30,1,1,1.609438,3.401197,0,0,0,0,0,0,78.4,9.33052,1.609438,3.190804,1
-16,5,95,0,1,525495,0,4410.138,60.14237,1,10,1,211.3838,23.88912,29.04782,0,1003.809,1268.13,2,0,0,13,0,1,86.2,24.1,0,88.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,88.6,8.391888,0,7.145298,1
-16,5,95,0,2,525495,0,4410.138,61.14237,1,10,1,435.4594,24.99241,0,0,0,460.4518,0,0,0,3,3,1,86.2,24.1,0,88.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,88.6,8.391888,0,6.132208,1
-16,5,95,0,3,525495,0,4410.138,62.14237,1,10,1,112.8028,46.06228,0,0,0,158.8651,0,0,0,9,0,1,86.2,24.1,0,88.6,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,0,0,0,88.6,8.391888,0,5.068055,1
-7,5,25,1,1,525500,0,17662.06,47.89596,0,14,1,48.16996,9.911654,12.95751,0,0,71.03912,0,0,0,4,0,3,66,17.2,0,67,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,67,9.779231,1.098612,4.263231,1
-7,5,25,1,2,525500,0,17662.06,48.89596,0,14,1,46.4677,16.35436,20.81602,0,0,83.63808,0,0,0,4,0,3,66,17.2,0,67,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,67,9.779231,1.098612,4.426499,1
-7,5,25,1,3,525500,0,17662.06,49.89596,0,14,1,96.39794,87.37907,0,0,0,183.777,0,0,0,8,0,3,66,17.2,0,67,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,67,9.779231,1.098612,5.213723,1
-7,5,25,1,1,525501,0,17662.06,47.70431,1,13,1,23.97981,1.750105,0,0,0,25.72991,0,0,0,2,0,3,89.9,27.6,1,69.3,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,69.3,9.779231,1.098612,3.247654,1
-7,5,25,1,2,525501,0,17662.06,48.70431,1,13,1,47.97884,0,42.21761,0,0,90.19645,0,0,0,3,0,3,89.9,27.6,1,69.3,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,69.3,9.779231,1.098612,4.50199,1
-7,5,25,1,3,525501,0,17662.06,49.70431,1,13,1,18.86792,0,58.18182,0,0,77.04974,0,0,0,2,0,3,89.9,27.6,1,69.3,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,69.3,9.779231,1.098612,4.344451,1
-7,5,25,0,1,525503,0,17662.06,20.78029,1,13,1,12.62095,0,33.252,0,0,45.87295,0,0,0,1,0,3,76.1,13.8,0,59.1,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,59.1,9.779231,1.098612,3.825876,1
-7,5,25,0,2,525503,0,17662.06,21.78029,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,76.1,13.8,0,59.1,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,59.1,9.779231,1.098612,,0
-7,5,25,0,3,525503,0,17662.06,22.78029,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,76.1,13.8,0,59.1,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,59.1,9.779231,1.098612,,0
-13,5,0,0,1,525510,0,7991.295,2.841889,1,16,1,111.0166,12.0587,0,0,0,123.0753,0,0,0,5,1,3,77.40034,10.57626,0,96.3,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.986234,1.098612,4.812796,1
-13,5,0,0,2,525510,0,7991.295,3.841889,1,16,1,22.13741,10.5458,0,0,0,32.6832,0,0,0,2,0,4,77.40034,10.57626,0,96.3,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.986234,1.386294,3.486861,1
-13,5,0,0,1,525511,0,7991.295,30.32444,1,16,1,70.39558,48.63462,34.87878,0,742.8583,896.7673,1,0,0,5,1,3,90.4,17.2,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.986234,1.098612,6.798797,1
-13,5,0,0,2,525511,0,7991.295,31.32444,1,16,1,12.59542,2.19084,0,0,0,14.78626,0,0,0,1,0,4,90.4,17.2,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.986234,1.386294,2.693698,1
-13,5,0,0,1,525512,0,7991.295,29.44011,0,14,1,104.1684,4.483199,0,0,0,108.6516,0,0,0,2,0,3,73.9,6.9,0,97.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,97.6,8.986234,1.098612,4.688147,1
-13,5,0,0,2,525512,0,7991.295,30.44011,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,6.9,0,97.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,97.6,8.986234,1.386294,,0
-14,5,95,1,1,525520,0,6674.895,13.06502,0,13,1,22.29701,0,26.6891,0,0,48.98612,0,0,0,1,0,5,68.3,10.57626,0,70.4,508.35,690.76,1,0,1.609438,6.537792,0,4.564348,6.282464,1,0,0,70.4,8.806258,1.609438,3.891537,1
-14,5,95,1,1,525521,0,6674.895,19.34292,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,66,10.3,1,59.1,508.35,690.76,0,0,1.609438,6.537792,0,4.564348,6.282464,1,0,0,59.1,8.806258,1.609438,,0
-14,5,95,1,1,525522,0,6674.895,42.76249,0,8,1,0,21.54396,0,0,0,21.54396,0,0,0,0,0,5,58.5,10.3,1,69.3,508.35,690.76,0,0,1.609438,6.537792,0,4.564348,6.282464,1,0,0,69.3,8.806258,1.609438,3.070096,1
-14,5,95,1,1,525523,0,6674.895,17.51403,1,13,1,0,0,0,0,0,0,0,0,0,0,0,5,59.6,10.3,0,67,508.35,690.76,1,1,1.609438,6.537792,0,4.564348,6.282464,1,0,0,67,8.806258,1.609438,,0
-14,5,95,1,2,525523,0,6674.895,18.51403,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,59.6,10.3,0,67,508.35,690.76,0,0,0,6.537792,0,4.564348,6.282464,1,0,0,67,8.806258,0,,0
-14,5,95,1,1,525524,0,6674.895,43.14305,1,13,1,0,6.90366,0,0,0,6.90366,0,0,0,0,0,5,43.6,10.3,1,54.5,508.35,690.76,0,0,1.609438,6.537792,0,4.564348,6.282464,1,0,0,54.5,8.806258,1.609438,1.932052,1
-18,5,25,0,1,525529,0,6674.895,39.48802,1,11,1,10.47382,0,0,0,0,10.47382,0,0,0,1,0,3,90.4,10.3,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,8.806258,1.098612,2.348878,1
-18,5,25,0,2,525529,0,6674.895,40.48802,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,90.4,10.3,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,8.806258,1.098612,,0
-18,5,25,0,3,525529,0,6674.895,41.48802,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,90.4,10.3,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,8.806258,1.098612,,0
-18,5,25,0,1,525531,0,6674.895,40.53114,0,10,1,41.39651,0,0,0,0,41.39651,0,0,0,0,2,3,85.1,17.2,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.806258,1.098612,3.723197,1
-18,5,25,0,2,525531,0,6674.895,41.53114,0,10,1,146.1503,0,0,0,0,146.1503,0,0,0,4,0,3,85.1,17.2,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.806258,1.098612,4.984635,1
-18,5,25,0,3,525531,0,6674.895,42.53114,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,85.1,17.2,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.806258,1.098612,,0
-18,5,25,0,1,525532,0,6674.895,16.89528,0,11,1,45.88529,0,0,0,0,45.88529,0,0,0,2,3,3,55.9,3.4,0,61.4,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.806258,1.098612,3.826144,1
-18,5,25,0,2,525532,0,6674.895,17.89528,0,11,1,9.22084,0,0,0,0,9.22084,0,0,0,1,0,3,55.9,3.4,0,61.4,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.806258,1.098612,2.221466,1
-18,5,25,0,3,525532,0,6674.895,18.89528,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,55.9,3.4,0,61.4,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.806258,1.098612,,0
-16,5,95,1,1,525533,1,1451.101,7.63039,0,11,1,8.463818,0,0,0,0,8.463818,0,0,0,1,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,2.1358,1
-16,5,95,1,2,525533,1,1451.101,8.63039,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,,0
-16,5,95,1,3,525533,1,1451.101,9.63039,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,,0
-16,5,95,1,1,525534,1,1451.101,9.607119,0,11,1,0,0,0,0,702.0736,702.0736,1,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,6.554038,1
-16,5,95,1,2,525534,1,1451.101,10.60712,0,11,1,0,0,0,0,258.1625,258.1625,1,1,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,5.553589,1
-16,5,95,1,3,525534,1,1451.101,11.60712,0,11,1,93.07958,41.19723,0,0,996.8858,1131.163,1,0,0,6,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,7.031001,1
-16,5,95,1,1,525535,1,1451.101,18.88022,1,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,0,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,61.4,7.280766,1.609438,,0
-16,5,95,1,2,525535,1,1451.101,19.88022,1,10.96978,1,8.352316,0,0,0,0,8.352316,0,0,0,1,0,5,70.2,0,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,61.4,7.280766,1.609438,2.122539,1
-16,5,95,1,3,525535,1,1451.101,20.88022,1,10.96978,1,117.9931,11.6955,0,0,0,129.6886,0,0,0,3,0,5,70.2,0,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,61.4,7.280766,1.609438,4.865136,1
-16,5,95,1,1,525536,1,1451.101,25.97673,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,6.9,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,1,0,0,61.4,7.280766,1.609438,,0
-16,5,95,1,2,525536,1,1451.101,26.97673,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,6.9,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,1,0,0,61.4,7.280766,1.609438,,0
-16,5,95,1,3,525536,1,1451.101,27.97673,1,11,1,15.57093,2.595156,0,0,0,18.16609,0,0,0,1,0,5,81.4,6.9,0,61.4,510.6,510.6,0,0,1.609438,6.235587,0,4.564348,6.28688,1,0,0,61.4,7.280766,1.609438,2.899557,1
-16,5,95,1,1,525537,1,1451.101,9.607119,0,11,1,9.627592,0,0,0,0,9.627592,0,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,2.264633,1
-16,5,95,1,2,525537,1,1451.101,10.60712,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,,0
-16,5,95,1,3,525537,1,1451.101,11.60712,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,98.3,10.57626,0,81.5,510.6,510.6,1,0,1.609438,6.235587,0,4.564348,6.28688,0,0,0,81.5,7.280766,1.609438,,0
-15,5,95,1,1,525540,0,10324.34,47.21971,0,12,1,99.75063,0,0,0,0,99.75063,0,0,0,1,0,4,71.8,3.4,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.242356,1.386294,4.602674,1
-15,5,95,1,2,525540,0,10324.34,48.21971,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.8,3.4,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.242356,1.386294,,0
-15,5,95,1,3,525540,0,10324.34,49.21971,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,71.8,3.4,0,69.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.242356,1.386294,,0
-15,5,95,1,4,525540,0,10324.34,50.21971,0,12,1,10.44039,3.416857,0,0,0,13.85725,0,0,0,0,0,3,71.8,3.4,0,69.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.242356,1.098612,2.628809,1
-15,5,95,1,5,525540,0,10324.34,51.21971,0,12,1,10.38062,0,41.86851,0,0,52.24913,0,0,0,0,1,3,71.8,3.4,0,69.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,69.3,9.242356,1.098612,3.956023,1
-15,5,95,1,1,525541,0,10324.34,18.39836,0,10.96978,1,14.96259,3.990025,0,0,0,18.95262,0,0,0,1,0,4,84.6,0,0,92,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92,9.242356,1.386294,2.941942,1
-15,5,95,1,2,525541,0,10324.34,19.39836,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,0,0,92,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92,9.242356,1.386294,,0
-15,5,95,1,3,525541,0,10324.34,20.39836,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,0,0,92,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,92,9.242356,1.386294,,0
-15,5,95,1,1,525542,0,10324.34,14.17933,0,12,1,7.481297,4.413965,0,0,0,11.89526,0,0,0,1,0,4,84,3.4,0,84.1,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.242356,1.386294,2.47614,1
-15,5,95,1,2,525542,0,10324.34,15.17933,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,84.1,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.242356,1.386294,,0
-15,5,95,1,3,525542,0,10324.34,16.17933,0,12,1,17.35082,0,0,0,0,17.35082,0,0,0,2,0,4,84,3.4,0,84.1,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.242356,1.386294,2.85364,1
-15,5,95,1,4,525542,0,10324.34,17.17933,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,84,3.4,0,84.1,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.242356,1.098612,,0
-15,5,95,1,5,525542,0,10324.34,18.17933,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,84,3.4,0,84.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,84.1,9.242356,1.098612,,0
-15,5,95,1,1,525543,0,10324.34,39.64956,1,12,1,88.77805,86.34913,36.40898,0,0,211.5362,0,0,0,6,1,4,48.4,20.7,1,51.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.242356,1.386294,5.354396,1
-15,5,95,1,2,525543,0,10324.34,40.64956,1,12,1,21.43845,67.89765,0,0,0,89.3361,0,0,0,2,0,4,48.4,20.7,1,51.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.242356,1.386294,4.492405,1
-15,5,95,1,3,525543,0,10324.34,41.64956,1,12,1,8.040627,58.60347,0,0,0,66.6441,0,0,0,1,0,4,48.4,20.7,1,51.1,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.242356,1.386294,4.199367,1
-15,5,95,1,4,525543,0,10324.34,42.64956,1,12,1,103.4548,65.12149,0,0,585.4214,753.9977,1,0,0,7,0,3,48.4,20.7,1,51.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.242356,1.098612,6.62539,1
-15,5,95,1,5,525543,0,10324.34,43.64956,1,12,1,182.699,77.71626,0,0,0,260.4152,0,0,0,15,0,3,48.4,20.7,1,51.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.1,9.242356,1.098612,5.562277,1
-15,5,95,1,1,525544,1,1874.04,59.6961,1,5,1,14.45197,0,0,0,0,14.45197,0,0,0,2,0,2,67,13.8,1,51.1,288,0,0,0,.6931472,0,0,4.564348,5.714254,1,0,0,51.1,7.536385,.6931472,2.670831,1
-15,5,95,1,2,525544,1,1874.04,60.6961,1,5,1,6.833713,0,0,0,0,6.833713,0,0,0,1,0,2,67,13.8,1,51.1,288,0,0,0,.6931472,0,0,4.564348,5.714254,1,0,0,51.1,7.536385,.6931472,1.921868,1
-15,5,95,1,3,525544,1,1874.04,61.6961,1,5,1,50.17301,0,0,0,0,50.17301,0,0,0,4,0,2,67,13.8,1,51.1,288,0,0,0,.6931472,0,0,4.564348,5.714254,1,0,0,51.1,7.536385,.6931472,3.915477,1
-14,5,95,1,1,525553,1,3421.403,27.36756,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,26.1,6.9,1,34.1,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,1,0,0,34.1,8.138098,1.098612,,0
-14,5,95,1,2,525553,1,3421.403,28.36756,1,12,1,0,4.652672,0,0,0,4.652672,0,0,0,0,0,3,26.1,6.9,1,34.1,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,1,0,0,34.1,8.138098,1.098612,1.537442,1
-14,5,95,1,3,525553,1,3421.403,29.36756,1,12,1,0,0,0,0,453.6585,453.6585,1,0,0,0,0,3,26.1,6.9,1,34.1,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,1,0,0,34.1,8.138098,1.098612,6.117345,1
-14,5,95,1,1,525554,1,3421.403,26.67488,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.8,1,52.3,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,0,0,0,52.3,8.138098,1.098612,,0
-14,5,95,1,2,525554,1,3421.403,27.67488,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.8,1,52.3,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,0,0,0,52.3,8.138098,1.098612,,0
-14,5,95,1,3,525554,1,3421.403,28.67488,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,63.8,13.8,1,52.3,142.55,142.55,0,0,1.098612,4.959693,0,4.564348,5.010986,0,0,0,52.3,8.138098,1.098612,,0
-11,5,0,1,1,525555,1,769.5853,33.47844,1,12,1,8.081667,0,0,0,0,8.081667,0,0,0,0,0,6,63.3,10.3,0,83,0,0,0,0,1.791759,0,0,0,0,0,0,0,83,6.647151,1.791759,2.089598,1
-11,5,0,1,2,525555,1,769.5853,34.47844,1,12,1,15.64886,.9770992,0,0,0,16.62595,0,0,0,2,0,6,63.3,10.3,0,83,0,0,0,0,1.791759,0,0,0,0,0,0,0,83,6.647151,1.791759,2.810965,1
-11,5,0,1,3,525555,1,769.5853,35.47844,1,12,1,54.3554,10.79094,0,0,0,65.14634,0,0,0,4,0,6,63.3,10.3,0,83,0,0,0,0,1.791759,0,0,0,0,0,0,0,83,6.647151,1.791759,4.176636,1
-11,5,0,1,1,525556,1,769.5853,12.44353,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.647151,1.791759,,0
-11,5,0,1,2,525556,1,769.5853,13.44353,0,12,1,3.816794,0,0,0,0,3.816794,0,0,0,1,0,6,75,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.647151,1.791759,1.339411,1
-11,5,0,1,3,525556,1,769.5853,14.44353,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.647151,1.791759,,0
-11,5,0,1,1,525557,1,769.5853,9.215606,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,76.7,10.57626,0,81.5,0,0,1,0,1.791759,0,0,0,0,1,0,0,81.5,6.647151,1.791759,,0
-11,5,0,1,2,525557,1,769.5853,10.21561,0,12,1,6.870229,0,0,0,0,6.870229,0,0,0,1,0,6,76.7,10.57626,0,81.5,0,0,1,0,1.791759,0,0,0,0,1,0,0,81.5,6.647151,1.791759,1.927197,1
-11,5,0,1,3,525557,1,769.5853,11.21561,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,76.7,10.57626,0,81.5,0,0,1,0,1.791759,0,0,0,0,1,0,0,81.5,6.647151,1.791759,,0
-11,5,0,1,1,525558,1,769.5853,7.726215,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.3,10.57626,0,55.6,0,0,1,0,1.791759,0,0,0,0,0,1,0,55.6,6.647151,1.791759,,0
-11,5,0,1,2,525558,1,769.5853,8.726215,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.3,10.57626,0,55.6,0,0,1,0,1.791759,0,0,0,0,0,1,0,55.6,6.647151,1.791759,,0
-11,5,0,1,3,525558,1,769.5853,9.726215,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.3,10.57626,0,55.6,0,0,1,0,1.791759,0,0,0,0,0,1,0,55.6,6.647151,1.791759,,0
-11,5,0,0,1,525586,0,4301.075,8.147844,0,8,1,7.993269,0,0,0,0,7.993269,0,0,0,0,0,4,85,10.57626,.1442925,74.1,0,147.36,1,0,1.386294,4.992878,0,0,0,0,0,0,74.1,8.366853,1.386294,2.0786,1
-11,5,0,0,2,525586,0,4301.075,9.147844,0,8,1,11.33358,0,0,0,0,11.33358,0,0,0,0,1,4,85,10.57626,.1442925,74.1,0,147.36,1,0,1.386294,4.992878,0,0,0,0,0,0,74.1,8.366853,1.386294,2.42777,1
-11,5,0,0,3,525586,0,4301.075,10.14784,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,.1442925,74.1,0,147.36,1,0,1.386294,4.992878,0,0,0,0,0,0,74.1,8.366853,1.386294,,0
-11,5,0,0,1,525587,0,4301.075,40.20534,0,13,1,0,8.93984,0,0,0,8.93984,0,0,0,0,0,4,64.9,6.9,1,60.2,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,60.2,8.366853,1.386294,2.190518,1
-11,5,0,0,2,525587,0,4301.075,41.20534,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,64.9,6.9,1,60.2,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,60.2,8.366853,1.386294,,0
-11,5,0,0,3,525587,0,4301.075,42.20534,0,13,1,0,6.768439,0,0,0,6.768439,0,0,0,0,0,4,64.9,6.9,1,60.2,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,60.2,8.366853,1.386294,1.912271,1
-11,5,0,0,1,525588,0,4301.075,6.836413,1,8,1,7.993269,0,0,0,0,7.993269,0,0,0,0,0,4,91.7,10.57626,.1442925,81.5,0,147.36,1,1,1.386294,4.992878,0,0,0,0,0,0,81.5,8.366853,1.386294,2.0786,1
-11,5,0,0,2,525588,0,4301.075,7.836413,1,8,1,45.82546,0,0,0,0,45.82546,0,0,0,4,1,4,91.7,10.57626,.1442925,81.5,0,147.36,1,1,1.386294,4.992878,0,0,0,0,0,0,81.5,8.366853,1.386294,3.82484,1
-11,5,0,0,3,525588,0,4301.075,8.836413,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,.1442925,81.5,0,147.36,1,1,1.386294,4.992878,0,0,0,0,0,0,81.5,8.366853,1.386294,,0
-11,5,0,0,1,525589,0,4301.075,25.8809,1,8,1,68.06899,2.776609,0,0,0,70.8456,0,0,0,0,0,4,78.7,13.8,0,63.1,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,63.1,8.366853,1.386294,4.260503,1
-11,5,0,0,2,525589,0,4301.075,26.8809,1,8,1,11.33358,0,0,0,0,11.33358,0,0,0,0,1,4,78.7,13.8,0,63.1,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,63.1,8.366853,1.386294,2.42777,1
-11,5,0,0,3,525589,0,4301.075,27.8809,1,8,1,42.88165,9.73928,0,0,0,52.62093,0,0,0,0,0,4,78.7,13.8,0,63.1,0,147.36,0,0,1.386294,4.992878,0,0,0,1,0,0,63.1,8.366853,1.386294,3.963114,1
-16,5,95,0,1,525593,1,6674.895,36.65435,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,63.3,10.3,0,76.1,176.4,176.4,0,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,76.1,8.806258,1.098612,,0
-16,5,95,0,2,525593,1,6674.895,37.65435,1,9,1,11.62791,0,0,0,0,11.62791,0,0,0,0,0,3,63.3,10.3,0,76.1,176.4,176.4,0,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,76.1,8.806258,1.098612,2.453408,1
-16,5,95,0,3,525593,1,6674.895,38.65435,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,63.3,10.3,0,76.1,176.4,176.4,0,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,76.1,8.806258,1.098612,,0
-16,5,95,0,1,525595,1,6674.895,14.87748,0,9,1,7.919967,0,0,0,0,7.919967,0,0,0,0,0,3,77.40034,10.57626,.1442925,,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,70.68995,8.806258,1.098612,2.069387,1
-16,5,95,0,2,525595,1,6674.895,15.87748,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,70.68995,8.806258,1.098612,,0
-16,5,95,0,3,525595,1,6674.895,16.87748,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,1,0,0,70.68995,8.806258,1.098612,,0
-16,5,95,0,1,525596,1,6674.895,6.913073,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,.1442925,85.2,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,0,0,0,85.2,8.806258,1.098612,,0
-16,5,95,0,2,525596,1,6674.895,7.913073,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,.1442925,85.2,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,0,0,0,85.2,8.806258,1.098612,,0
-16,5,95,0,3,525596,1,6674.895,8.913074,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,.1442925,85.2,176.4,176.4,1,0,1.098612,5.172754,0,4.564348,5.224048,0,0,0,85.2,8.806258,1.098612,,0
-11,5,0,1,1,525617,1,1426.523,12.2026,0,7,1,10.57977,0,23.69869,0,0,34.27846,0,0,0,0,1,7,90,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,3.534517,1
-11,5,0,1,2,525617,1,1426.523,13.2026,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,90,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,3,525617,1,1426.523,14.2026,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,90,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,1,525618,1,1426.523,11.28542,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,95,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,0,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,2,525618,1,1426.523,12.28542,0,7,1,13.09795,0,0,0,0,13.09795,0,0,0,0,0,7,95,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,0,0,0,96.3,7.263696,1.94591,2.572456,1
-11,5,0,1,3,525618,1,1426.523,13.28542,0,7,1,62.28374,3.442907,23.87543,0,267.8201,357.4221,1,1,0,3,1,7,95,10.57626,0,96.3,0,0,1,0,1.94591,0,0,0,0,0,0,0,96.3,7.263696,1.94591,5.878918,1
-11,5,0,1,1,525619,1,1426.523,20.0794,1,10,1,28.24799,1.815489,23.69869,0,0,53.76217,0,0,0,0,1,7,51.6,6.9,0,71.6,0,0,0,0,1.94591,0,0,0,0,0,0,0,71.6,7.263696,1.94591,3.98457,1
-11,5,0,1,2,525619,1,1426.523,21.0794,1,10,1,7.213364,43.92559,0,0,2274.108,2325.247,1,0,0,0,0,7,51.6,6.9,0,71.6,0,0,0,0,1.94591,0,0,0,0,0,0,0,71.6,7.263696,1.94591,7.751582,1
-11,5,0,1,3,525619,1,1426.523,22.0794,1,10,1,20.41522,10.34602,21.79931,0,0,52.56055,0,0,0,1,1,7,51.6,6.9,0,71.6,0,0,0,0,1.94591,0,0,0,0,0,0,0,71.6,7.263696,1.94591,3.961966,1
-11,5,0,1,1,525620,1,1426.523,35.14305,1,7,1,10.57977,0,23.69869,0,0,34.27846,0,0,0,0,1,7,85.1,6.9,0,81.8,0,0,0,0,1.94591,0,0,0,0,1,0,0,81.8,7.263696,1.94591,3.534517,1
-11,5,0,1,2,525620,1,1426.523,36.14305,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,85.1,6.9,0,81.8,0,0,0,0,1.94591,0,0,0,0,1,0,0,81.8,7.263696,1.94591,,0
-11,5,0,1,3,525620,1,1426.523,37.14305,1,7,1,8.650519,0,22.14533,0,0,30.79585,0,0,0,0,1,7,85.1,6.9,0,81.8,0,0,0,0,1.94591,0,0,0,0,1,0,0,81.8,7.263696,1.94591,3.42738,1
-11,5,0,1,1,525621,1,1426.523,14.09719,1,7,1,10.57977,0,23.69869,0,0,34.27846,0,0,0,0,1,7,100,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,3.534517,1
-11,5,0,1,2,525621,1,1426.523,15.09719,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,100,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,3,525621,1,1426.523,16.09719,1,7,1,14.87889,8.079585,20.41522,0,0,43.3737,0,0,0,1,1,7,100,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,3.769853,1
-11,5,0,1,1,525622,1,1426.523,15.154,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,97.3,0,0,96.6,0,0,1,0,1.94591,0,0,0,0,1,0,0,96.6,7.263696,1.94591,,0
-11,5,0,1,2,525622,1,1426.523,16.15401,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,97.3,0,0,96.6,0,0,1,0,1.94591,0,0,0,0,1,0,0,96.6,7.263696,1.94591,,0
-11,5,0,1,1,525624,1,1426.523,14.09719,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,2,525624,1,1426.523,15.09719,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,3,525624,1,1426.523,16.09719,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,0,0,1,1,1.94591,0,0,0,0,1,0,0,96.3,7.263696,1.94591,,0
-11,5,0,1,1,525628,0,8880.185,34.78166,0,12,1,150.6559,39.1113,1.481168,0,0,191.2484,0,0,0,12,0,5,89.4,3.4,0,75,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,75,9.09169,1.609438,5.253573,1
-11,5,0,1,2,525628,0,8880.185,35.78166,0,12,1,157.5551,22.35004,0,0,0,179.9051,0,0,0,10,0,5,89.4,3.4,0,75,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,75,9.09169,1.609438,5.19243,1
-11,5,0,1,3,525628,0,8880.185,36.78166,0,12,1,87.88927,30.34256,0,0,0,118.2318,0,0,0,10,0,5,89.4,3.4,0,75,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,75,9.09169,1.609438,4.772647,1
-11,5,0,1,1,525629,0,8880.185,31.92882,1,12,1,79.55988,48.15912,0,0,872.6196,1000.339,1,0,0,8,0,5,75.5,10.3,1,73.7,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,73.7,9.09169,1.609438,6.908094,1
-11,5,0,1,2,525629,0,8880.185,32.92882,1,12,1,17.46393,17.73348,0,0,1247.912,1283.109,2,1,0,2,0,5,75.5,10.3,1,73.7,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,73.7,9.09169,1.609438,7.157042,1
-11,5,0,1,3,525629,0,8880.185,33.92882,1,12,1,134.6021,21.53287,0,0,0,156.1349,0,0,0,7,0,5,75.5,10.3,1,73.7,0,646.36,0,0,1.609438,6.471356,0,0,0,0,0,0,73.7,9.09169,1.609438,5.050721,1
-11,5,0,1,1,525630,0,8880.185,10.05339,1,12,1,0,2.06094,0,0,0,2.06094,0,0,0,0,0,5,93.3,10.57626,0,92.6,0,646.36,1,1,1.609438,6.471356,0,0,0,0,0,0,92.6,9.09169,1.609438,.723162,1
-11,5,0,1,2,525630,0,8880.185,11.05339,1,12,1,5.694761,6.545178,0,0,0,12.23994,0,0,0,1,0,5,93.3,10.57626,0,92.6,0,646.36,1,1,1.609438,6.471356,0,0,0,0,0,0,92.6,9.09169,1.609438,2.504704,1
-11,5,0,1,3,525630,0,8880.185,12.05339,1,12,1,32.17993,1.346021,0,0,0,33.52595,0,0,0,1,0,5,93.3,10.57626,0,92.6,0,646.36,1,1,1.609438,6.471356,0,0,0,0,0,0,92.6,9.09169,1.609438,3.51232,1
-11,5,0,1,1,525631,0,8880.185,5.377139,0,12,1,19.46678,16.35209,0,0,0,35.81887,0,0,0,4,0,5,83.3,10.57626,0,51.9,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,51.9,9.09169,1.609438,3.578475,1
-11,5,0,1,2,525631,0,8880.185,6.377139,0,12,1,11.38952,18.95976,0,0,0,30.34928,0,0,0,2,0,5,83.3,10.57626,0,51.9,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,51.9,9.09169,1.609438,3.412773,1
-11,5,0,1,3,525631,0,8880.185,7.377139,0,12,1,25.95156,21.89619,0,0,0,47.84775,0,0,0,5,0,5,83.3,10.57626,0,51.9,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,51.9,9.09169,1.609438,3.868024,1
-11,5,0,1,1,525632,0,8880.185,2.882957,0,12,1,60.51629,10.44012,0,0,0,70.95641,0,0,0,8,0,5,77.40034,10.57626,0,59.3,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,59.3,9.09169,1.609438,4.262066,1
-11,5,0,1,2,525632,0,8880.185,3.882957,0,12,1,57.70691,3.02202,0,0,0,60.72893,0,0,0,3,0,5,77.40034,10.57626,0,59.3,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,59.3,9.09169,1.609438,4.10642,1
-11,5,0,1,3,525632,0,8880.185,4.882957,0,12,1,23.18339,2.885813,0,0,537.7162,563.7855,1,0,0,2,0,5,77.40034,10.57626,0,59.3,0,646.36,1,0,1.609438,6.471356,0,0,0,0,0,0,59.3,9.09169,1.609438,6.334674,1
-5,5,25,0,1,525656,1,0,39.29911,0,5,1,0,0,0,0,0,0,0,0,0,0,0,8,62.2,0,0,76.1,333.75,333.75,0,0,2.079442,5.810392,0,3.258096,7.196687,0,0,0,76.1,0,2.079442,,0
-5,5,25,0,2,525656,1,0,40.29911,0,5,1,0,0,0,0,0,0,0,0,0,0,0,9,62.2,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,76.1,0,2.197225,,0
-5,5,25,0,3,525656,1,0,41.29911,0,5,1,0,0,0,0,0,0,0,0,0,0,0,9,62.2,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,76.1,0,2.197225,,0
-5,5,25,0,4,525656,1,0,42.29911,0,5,1,0,0,0,0,0,0,0,0,0,0,0,9,62.2,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,76.1,0,2.197225,,0
-5,5,25,0,5,525656,1,0,43.29911,0,5,1,10.14885,0,0,0,0,10.14885,0,0,0,0,0,9,62.2,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,76.1,0,2.197225,2.31736,1
-5,5,25,1,1,525657,1,0,10.00958,1,6,1,0,0,0,0,0,0,0,0,0,0,0,8,83.3,10.57626,0,63,333.75,333.75,1,1,2.079442,5.810392,0,3.258096,7.196687,0,1,0,63,0,2.079442,,0
-5,5,25,1,2,525657,1,0,11.00958,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,83.3,10.57626,0,63,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,0,1,0,63,0,2.197225,,0
-5,5,25,1,3,525657,1,0,12.00958,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,83.3,10.57626,0,63,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,0,1,0,63,0,2.197225,,0
-5,5,25,1,4,525657,1,0,13.00958,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,83.3,10.57626,0,63,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,0,1,0,63,0,2.197225,,0
-5,5,25,1,5,525657,1,0,14.00958,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,83.3,10.57626,0,63,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,0,1,0,63,0,2.197225,,0
-5,5,25,1,1,525658,1,0,44.6872,1,6,1,8.599508,0,0,0,0,8.599508,0,0,0,0,0,8,63.3,6.9,0,50,333.75,333.75,0,0,2.079442,5.810392,0,3.258096,7.196687,0,1,0,50,0,2.079442,2.151705,1
-5,5,25,1,2,525658,1,0,45.6872,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,63.3,6.9,0,50,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,50,0,2.197225,,0
-5,5,25,1,3,525658,1,0,46.6872,1,6,1,17.5073,0,0,0,0,17.5073,0,0,0,0,0,9,63.3,6.9,0,50,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,50,0,2.197225,2.862618,1
-5,5,25,1,4,525658,1,0,47.6872,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,63.3,6.9,0,50,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,50,0,2.197225,,0
-5,5,25,1,5,525658,1,0,48.6872,1,6,1,44.99323,3.697564,35.53112,0,0,84.22192,0,0,0,0,2,9,63.3,6.9,0,50,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,50,0,2.197225,4.433455,1
-5,5,25,1,1,525659,1,0,13.4757,0,6,1,8.599508,0,0,0,0,8.599508,0,0,0,0,0,8,98.3,10.57626,0,59.3,333.75,333.75,1,0,2.079442,5.810392,0,3.258096,7.196687,1,0,0,59.3,0,2.079442,2.151705,1
-5,5,25,1,2,525659,1,0,14.4757,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,98.3,10.57626,0,59.3,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.3,0,2.197225,,0
-5,5,25,1,3,525659,1,0,15.4757,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,98.3,10.57626,0,59.3,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.3,0,2.197225,,0
-5,5,25,1,4,525659,1,0,16.4757,0,6,1,316.2978,0,0,0,0,316.2978,0,0,0,2,0,9,98.3,10.57626,0,59.3,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.3,0,2.197225,5.756684,1
-5,5,25,1,5,525659,1,0,17.4757,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,98.3,10.57626,0,59.3,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.3,0,2.197225,,0
-5,5,25,1,1,525660,1,0,11.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,8,80,10.57626,0,77.8,333.75,333.75,1,0,2.079442,5.810392,0,3.258096,7.196687,1,0,0,77.8,0,2.079442,,0
-5,5,25,1,2,525660,1,0,12.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,80,10.57626,0,77.8,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,77.8,0,2.197225,,0
-5,5,25,1,3,525660,1,0,13.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,80,10.57626,0,77.8,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,77.8,0,2.197225,,0
-5,5,25,1,4,525660,1,0,14.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,80,10.57626,0,77.8,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,77.8,0,2.197225,,0
-5,5,25,1,5,525660,1,0,15.77002,0,6,1,10.14885,2.405277,0,0,0,12.55413,0,0,0,0,0,9,80,10.57626,0,77.8,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,77.8,0,2.197225,2.530049,1
-5,5,25,1,1,525661,1,0,16.75565,1,6,1,0,0,0,0,0,0,1,1,0,0,0,8,54.8,3.4,0,54.5,333.75,333.75,1,1,2.079442,5.810392,0,3.258096,7.196687,0,1,0,54.5,0,2.079442,,0
-5,5,25,1,2,525661,1,0,17.75565,1,6,1,0,1.244303,0,0,0,1.244303,0,0,0,0,0,9,54.8,3.4,0,54.5,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,0,1,0,54.5,0,2.197225,.2185752,1
-5,5,25,1,3,525661,1,0,18.75565,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,54.8,3.4,0,54.5,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,54.5,0,2.197225,,0
-5,5,25,1,4,525661,1,0,19.75565,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,54.8,3.4,0,54.5,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,54.5,0,2.197225,,0
-5,5,25,1,5,525661,1,0,20.75565,1,6,1,27.74019,1.589986,0,0,0,29.33018,0,0,0,1,0,9,54.8,3.4,0,54.5,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,54.5,0,2.197225,3.378617,1
-5,5,25,0,1,525662,1,0,15.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,8,58.5,0,0,76.1,333.75,333.75,1,0,2.079442,5.810392,0,3.258096,7.196687,0,1,0,76.1,0,2.079442,,0
-5,5,25,0,2,525662,1,0,16.77002,0,6,1,6.836828,0,0,0,0,6.836828,0,0,0,1,0,9,58.5,0,0,76.1,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,76.1,0,2.197225,1.922324,1
-5,5,25,0,3,525662,1,0,17.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,58.5,0,0,76.1,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,76.1,0,2.197225,,0
-5,5,25,0,4,525662,1,0,18.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,58.5,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,76.1,0,2.197225,,0
-5,5,25,0,5,525662,1,0,19.77002,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,58.5,0,0,76.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,0,1,0,76.1,0,2.197225,,0
-5,5,25,0,1,525663,1,0,14.61465,1,6,1,0,0,0,0,0,0,0,0,0,0,0,8,60.1,3.4,0,59.1,333.75,333.75,1,1,2.079442,5.810392,0,3.258096,7.196687,1,0,0,59.1,0,2.079442,,0
-5,5,25,0,2,525663,1,0,15.61465,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,60.1,3.4,0,59.1,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.1,0,2.197225,,0
-5,5,25,0,3,525663,1,0,16.61465,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,60.1,3.4,0,59.1,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.1,0,2.197225,,0
-5,5,25,0,4,525663,1,0,17.61465,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,60.1,3.4,0,59.1,333.75,333.75,1,1,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.1,0,2.197225,,0
-5,5,25,0,5,525663,1,0,18.61465,1,6,1,0,0,0,0,0,0,0,0,0,0,0,9,60.1,3.4,0,59.1,333.75,333.75,0,0,2.197225,5.810392,0,3.258096,7.196687,1,0,0,59.1,0,2.197225,,0
-11,5,0,1,1,525705,0,12350.23,36.18344,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,0,0,84.1,0,308.42,0,0,.6931472,5.731462,0,0,0,0,0,0,84.1,9.421511,.6931472,,0
-11,5,0,1,2,525705,0,12350.23,37.18344,0,9,1,7.972665,8.363706,0,0,0,16.33637,0,0,0,1,0,2,78.2,0,0,84.1,0,308.42,0,0,.6931472,5.731462,0,0,0,0,0,0,84.1,9.421511,.6931472,2.793394,1
-11,5,0,1,3,525705,0,12350.23,38.18344,0,9,1,366.436,37.78547,0,0,309.6886,713.91,1,0,0,4,0,2,78.2,0,0,84.1,0,308.42,0,0,.6931472,5.731462,0,0,0,0,0,0,84.1,9.421511,.6931472,6.570757,1
-11,5,0,1,1,525706,0,12350.23,36.99384,1,12,1,19.46678,3.440542,0,0,0,22.90732,0,0,0,1,0,2,84,13.8,0,83,0,308.42,0,0,.6931472,5.731462,0,0,0,0,1,0,83,9.421511,.6931472,3.131457,1
-11,5,0,1,2,525706,0,12350.23,37.99384,1,12,1,9.491268,8.986333,0,0,0,18.4776,0,0,0,1,0,2,84,13.8,0,83,0,308.42,0,0,.6931472,5.731462,0,0,0,0,1,0,83,9.421511,.6931472,2.916559,1
-11,5,0,1,3,525706,0,12350.23,38.99384,1,12,1,36.33218,2.730104,0,0,0,39.06228,0,0,0,2,0,2,84,13.8,0,83,0,308.42,0,0,.6931472,5.731462,0,0,0,0,1,0,83,9.421511,.6931472,3.665157,1
-11,5,0,0,1,525715,0,8507.937,45.06503,1,9,1,14.58941,0,47.93664,0,0,62.52605,0,0,0,0,1,5,75.5,10.3,0,67.9,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67.9,9.048872,1.609438,4.135583,1
-11,5,0,0,2,525715,0,8507.937,46.06503,1,9,1,7.501875,2.985746,0,0,0,10.48762,0,0,0,1,0,5,75.5,10.3,0,67.9,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67.9,9.048872,1.609438,2.350196,1
-11,5,0,0,3,525715,0,8507.937,47.06503,1,9,1,88.97158,0,0,0,0,88.97158,0,0,0,4,0,5,75.5,10.3,0,67.9,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67.9,9.048872,1.609438,4.488317,1
-11,5,0,0,1,525716,0,8507.937,12.05476,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,10.57626,.1442925,96.3,0,1189.12,1,0,1.609438,7.080969,0,0,0,1,0,0,96.3,9.048872,1.609438,,0
-11,5,0,0,2,525716,0,8507.937,13.05476,0,9,1,23.44336,0,0,0,0,23.44336,0,0,0,1,0,5,91.7,10.57626,.1442925,96.3,0,1189.12,1,0,1.609438,7.080969,0,0,0,1,0,0,96.3,9.048872,1.609438,3.154587,1
-11,5,0,0,3,525716,0,8507.937,14.05476,0,9,1,48.71448,4.803789,0,0,0,53.51827,0,0,0,1,0,5,91.7,10.57626,.1442925,96.3,0,1189.12,1,0,1.609438,7.080969,0,0,0,1,0,0,96.3,9.048872,1.609438,3.980023,1
-11,5,0,0,1,525717,0,8507.937,44.58043,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,0,0,67,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67,9.048872,1.609438,,0
-11,5,0,0,2,525717,0,8507.937,45.58043,0,3,1,31.88297,0,0,0,0,31.88297,0,0,0,1,0,5,70.2,0,0,67,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67,9.048872,1.609438,3.462072,1
-11,5,0,0,3,525717,0,8507.937,46.58043,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5,70.2,0,0,67,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,67,9.048872,1.609438,,0
-11,5,0,0,1,525718,0,8507.937,16.09856,1,9,1,50.22926,9.983326,47.93664,0,513.1305,621.2797,1,0,0,4,1,5,88.3,3.4,0,84.1,0,1189.12,1,1,1.609438,7.080969,0,0,0,1,0,0,84.1,9.048872,1.609438,6.431781,1
-11,5,0,0,2,525718,0,8507.937,17.09856,1,9,1,18.75469,.900225,0,0,0,19.65491,0,0,0,2,0,5,88.3,3.4,0,84.1,0,1189.12,1,1,1.609438,7.080969,0,0,0,1,0,0,84.1,9.048872,1.609438,2.978327,1
-11,5,0,0,3,525718,0,8507.937,18.09856,1,9,1,21.98917,0,0,0,0,21.98917,0,0,0,3,0,5,88.3,3.4,0,84.1,0,1189.12,0,0,1.609438,7.080969,0,0,0,1,0,0,84.1,9.048872,1.609438,3.09055,1
-7,5,25,1,1,525736,1,1656.305,56.15879,1,8,1,0,0,0,0,0,0,0,0,0,0,0,1,62.8,27.6,1,58,750,0,0,0,0,0,0,3.258096,8.006368,0,1,0,58,7.412948,0,,0
-7,5,25,1,2,525736,1,1656.305,57.15879,1,8,1,0,0,0,0,0,0,0,0,0,0,0,1,62.8,27.6,1,58,750,0,0,0,0,0,0,3.258096,8.006368,0,1,0,58,7.412948,0,,0
-7,5,25,1,3,525736,1,1656.305,58.15879,1,8,1,6.252605,0,0,0,0,6.252605,0,0,0,0,0,1,62.8,27.6,1,58,750,0,0,0,0,0,0,3.258096,8.006368,0,1,0,58,7.412948,0,1.832998,1
-7,5,25,1,4,525736,1,1656.305,59.15879,1,8,1,74.00975,2.554389,33.54839,0,0,110.1125,0,0,0,4,0,1,62.8,27.6,1,58,750,0,0,0,0,0,0,3.258096,8.006368,0,1,0,58,7.412948,0,4.701503,1
-7,5,25,1,5,525736,1,1656.305,60.15879,1,8,1,36.87415,0,0,0,0,36.87415,0,0,0,1,0,1,62.8,27.6,1,58,750,0,0,0,0,0,0,3.258096,8.006368,0,1,0,58,7.412948,0,3.607511,1
-15,5,95,0,1,525738,0,10903.74,46.48323,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,94.7,3.4,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.296952,1.098612,,0
-15,5,95,0,2,525738,0,10903.74,47.48323,1,9,1,70.61504,11.0896,21.64009,0,1041.496,1144.841,1,0,0,4,1,3,94.7,3.4,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.296952,1.098612,7.043021,1
-15,5,95,0,3,525738,0,10903.74,48.48323,1,9,1,463.4948,38.55363,37.24567,0,1732.872,2272.166,1,0,0,13,0,3,94.7,3.4,0,78.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,78.4,9.296952,1.098612,7.728489,1
-15,5,95,0,1,525739,0,10903.74,18.30253,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,3,96.8,0,0,89.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.296952,1.098612,,0
-15,5,95,0,2,525739,0,10903.74,19.30253,0,10.96978,1,0,3.151101,0,0,0,3.151101,0,0,0,0,0,3,96.8,0,0,89.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.296952,1.098612,1.147752,1
-15,5,95,0,3,525739,0,10903.74,20.30253,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,3,96.8,0,0,89.8,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,89.8,9.296952,1.098612,,0
-15,5,95,0,1,525740,0,10903.74,46.48323,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,95.7,6.9,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,9.296952,1.098612,,0
-15,5,95,0,2,525740,0,10903.74,47.48323,0,10,1,20.50114,6.324981,45.17844,0,0,72.00455,0,0,0,2,1,3,95.7,6.9,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,9.296952,1.098612,4.27673,1
-15,5,95,0,3,525740,0,10903.74,48.48323,0,10,1,27.33564,0,0,0,0,27.33564,0,0,0,1,0,3,95.7,6.9,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,9.296952,1.098612,3.308191,1
-11,5,0,1,1,525768,0,10955.42,28.04654,0,20,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,67.9,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,67.9,9.301682,.6931472,,0
-11,5,0,1,2,525768,0,10955.42,29.04654,0,20,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,67.9,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,67.9,9.301682,.6931472,,0
-11,5,0,1,3,525768,0,10955.42,30.04654,0,20,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,67.9,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,67.9,9.301682,.6931472,,0
-11,5,0,1,4,525768,0,10955.42,31.04654,0,20,1,0,3.348519,0,0,0,3.348519,0,0,0,0,0,2,64.4,10.3,0,67.9,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,67.9,9.301682,.6931472,1.208518,1
-11,5,0,1,5,525768,0,10955.42,32.04654,0,20,1,13.84083,3.916955,0,0,0,17.75779,0,0,0,1,0,2,64.4,10.3,0,67.9,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,67.9,9.301682,.6931472,2.876824,1
-11,5,0,1,1,525769,0,10955.42,35.30185,1,10.96978,1,41.39651,5.985037,0,0,0,47.38155,0,0,0,1,0,2,76.6,6.9,0,89.8,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,89.8,9.301682,.6931472,3.858233,1
-11,5,0,1,2,525769,0,10955.42,36.30185,1,10.96978,1,16.13647,0,27.81005,0,0,43.94652,0,0,0,1,0,2,76.6,6.9,0,89.8,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,89.8,9.301682,.6931472,3.782973,1
-11,5,0,1,3,525769,0,10955.42,37.30185,1,10.96978,1,2.962336,0,0,0,0,2.962336,0,0,0,0,0,2,76.6,6.9,0,89.8,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,89.8,9.301682,.6931472,1.085978,1
-11,5,0,1,4,525769,0,10955.42,38.30185,1,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,2,76.6,6.9,0,89.8,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,89.8,9.301682,.6931472,,0
-11,5,0,1,5,525769,0,10955.42,39.30185,1,10.96978,1,25.95156,4.615917,25.19031,0,0,55.75779,0,0,0,2,0,2,76.6,6.9,0,89.8,0,45.12,0,0,.6931472,3.809326,0,0,0,0,0,0,89.8,9.301682,.6931472,4.021017,1
-11,5,0,1,1,525789,1,6674.895,26.74059,0,11,1,14.81168,2.839611,0,0,0,17.65129,0,0,0,1,0,2,80.3,6.9,0,66.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,66.7,8.806258,.6931472,2.870809,1
-11,5,0,1,2,525789,1,6674.895,27.74059,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,80.3,6.9,0,66.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,66.7,8.806258,.6931472,,0
-11,5,0,1,3,525789,1,6674.895,28.74059,0,11,1,42.56055,0,0,0,0,42.56055,0,0,0,1,0,2,80.3,6.9,0,66.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,66.7,8.806258,.6931472,3.750928,1
-11,5,0,0,1,525790,1,6674.895,24.71458,0,9,1,23.2755,0,0,0,2083.072,2106.348,1,0,0,2,0,2,83,3.4,0,69,0,0,0,0,.6931472,0,0,0,0,0,0,0,69,8.806258,.6931472,7.652711,1
-11,5,0,0,2,525790,1,6674.895,25.71458,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,83,3.4,0,69,0,0,0,0,.6931472,0,0,0,0,0,0,0,69,8.806258,.6931472,,0
-11,5,0,0,3,525790,1,6674.895,26.71458,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,83,3.4,0,69,0,0,0,0,.6931472,0,0,0,0,0,0,0,69,8.806258,.6931472,,0
-11,5,0,1,1,525791,1,2181.26,35.29911,1,12,1,21.66737,0,0,0,0,21.66737,0,0,0,0,0,1,71.3,10.3,0,61.4,0,0,0,0,0,0,0,0,0,0,0,0,61.4,7.688116,0,3.075808,1
-11,5,0,1,2,525791,1,2181.26,36.29911,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,10.3,0,61.4,0,0,0,0,0,0,0,0,0,0,0,0,61.4,7.688116,0,,0
-11,5,0,1,3,525791,1,2181.26,37.29911,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,71.3,10.3,0,61.4,0,0,0,0,0,0,0,0,0,0,0,0,61.4,7.688116,0,,0
-16,5,95,1,1,525795,1,8781.362,3.750856,1,14,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,0,81.5,1000,1000,1,1,2.302585,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.080501,2.302585,,0
-16,5,95,1,2,525795,1,8781.362,4.750855,1,14,1,14.27481,0,0,0,0,14.27481,0,0,0,0,0,12,77.40034,10.57626,0,81.5,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.080501,2.484907,2.658496,1
-16,5,95,1,3,525795,1,8781.362,5.750855,1,14,1,6.271777,0,0,0,0,6.271777,0,0,0,1,0,12,77.40034,10.57626,0,81.5,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.080501,2.484907,1.83606,1
-16,5,95,1,1,525796,1,8781.362,45.56605,0,15,1,3.402807,3.513399,0,0,0,6.916206,0,0,0,0,1,10,82.6,3.4,0,77.3,1000,1000,0,0,2.302585,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.080501,2.302585,1.933867,1
-16,5,95,1,2,525796,1,8781.362,46.56605,0,15,1,19.46565,0,0,0,0,19.46565,0,0,0,0,1,12,82.6,3.4,0,77.3,1000,1000,0,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.080501,2.484907,2.968651,1
-16,5,95,1,3,525796,1,8781.362,47.56605,0,15,1,15.67944,0,32.73519,0,0,48.41463,0,0,0,2,0,12,82.6,3.4,0,77.3,1000,1000,0,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.080501,2.484907,3.879802,1
-16,5,95,1,1,525797,1,8781.362,7.931554,1,14,1,16.37601,8.63037,0,0,1629.945,1654.951,2,1,0,0,0,10,98.3,10.57626,0,92.6,1000,1000,1,1,2.302585,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.302585,7.411527,1
-16,5,95,1,2,525797,1,8781.362,8.931554,1,14,1,18.70229,4.919847,0,0,0,23.62214,0,0,0,2,0,12,98.3,10.57626,0,92.6,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,3.162184,1
-16,5,95,1,3,525797,1,8781.362,9.931554,1,14,1,10.45296,0,0,0,0,10.45296,0,0,0,1,0,12,98.3,10.57626,0,92.6,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,2.346885,1
-16,5,95,1,1,525798,1,8781.362,3.750856,1,14,1,175.2446,2.41174,0,0,0,177.6563,0,0,0,3,0,10,77.40034,10.57626,0,88.9,1000,1000,1,1,2.302585,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.302585,5.179851,1
-16,5,95,1,2,525798,1,8781.362,4.750855,1,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,0,88.9,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.484907,,0
-16,5,95,1,3,525798,1,8781.362,5.750855,1,14,1,4.878049,0,0,0,0,4.878049,0,0,0,1,0,12,77.40034,10.57626,0,88.9,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.484907,1.584745,1
-16,5,95,1,1,525799,1,8781.362,13.62902,0,14,1,0,0,0,0,0,0,0,0,0,0,0,10,96.7,10.57626,0,92.6,1000,1000,1,0,2.302585,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.302585,,0
-16,5,95,1,2,525799,1,8781.362,14.62902,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,96.7,10.57626,0,92.6,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,,0
-16,5,95,1,3,525799,1,8781.362,15.62902,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,96.7,10.57626,0,92.6,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,,0
-16,5,95,1,1,525800,1,8781.362,12.29569,1,14,1,0,0,0,0,0,0,0,0,0,0,0,10,95,10.57626,0,92.6,1000,1000,1,1,2.302585,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.302585,,0
-16,5,95,1,2,525800,1,8781.362,13.29569,1,14,1,0,0,0,0,0,0,0,0,0,0,0,12,95,10.57626,0,92.6,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,,0
-16,5,95,1,3,525800,1,8781.362,14.29569,1,14,1,10.45296,0,25,0,0,35.45296,0,0,0,1,0,12,95,10.57626,0,92.6,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.080501,2.484907,3.568207,1
-16,5,95,1,1,525801,1,8781.362,37.54415,1,14,1,24.67035,4.079115,0,0,626.5419,655.2914,1,0,0,0,0,10,85.6,10.3,1,64.3,1000,1000,0,0,2.302585,6.907755,0,4.564348,6.959049,1,0,0,64.3,9.080501,2.302585,6.48508,1
-16,5,95,1,2,525801,1,8781.362,38.54415,1,14,1,35.1145,0,0,0,0,35.1145,0,0,0,0,0,12,85.6,10.3,1,64.3,1000,1000,0,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,64.3,9.080501,2.484907,3.558614,1
-16,5,95,1,3,525801,1,8781.362,39.54415,1,14,1,12.89199,5.205575,0,0,1611.498,1629.596,2,1,0,2,0,12,85.6,10.3,1,64.3,1000,1000,0,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,64.3,9.080501,2.484907,7.396087,1
-16,5,95,1,1,525802,1,8781.362,10.18207,0,14,1,0,0,0,0,0,0,0,0,0,0,0,10,91.7,10.57626,0,88.9,1000,1000,1,0,2.302585,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.302585,,0
-16,5,95,1,2,525802,1,8781.362,11.18207,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,91.7,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.484907,,0
-16,5,95,1,3,525802,1,8781.362,12.18207,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,91.7,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,1,0,0,88.9,9.080501,2.484907,,0
-17,5,25,1,1,525812,1,10108.5,37.70842,1,18,1,20.81269,0,0,0,370.6393,391.4519,1,0,0,3,0,2,87.2,10.3,0,59.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.221231,.6931472,5.969863,1
-17,5,25,1,2,525812,1,10108.5,38.70842,1,18,1,57.36576,33.66682,0,0,0,91.03259,0,0,0,6,0,2,87.2,10.3,0,59.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.221231,.6931472,4.511218,1
-17,5,25,1,3,525812,1,10108.5,39.70842,1,18,1,0,0,0,0,0,0,0,0,0,0,0,2,87.2,10.3,0,59.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.221231,.6931472,,0
-17,5,25,1,4,525812,1,10108.5,40.70842,1,18,1,24.5561,1.824707,0,0,0,26.38081,0,0,0,1,0,2,87.2,10.3,0,59.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.221231,.6931472,3.272637,1
-17,5,25,1,5,525812,1,10108.5,41.70842,1,18,1,0,0,0,0,0,0,0,0,0,0,0,2,87.2,10.3,0,59.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,59.1,9.221231,.6931472,,0
-17,5,25,1,1,525813,1,10108.5,37.04038,0,14,1,106.2934,17.31913,0,0,0,123.6125,0,0,0,5,0,2,68.1,13.8,0,63.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.221231,.6931472,4.817152,1
-17,5,25,1,2,525813,1,10108.5,38.04038,0,14,1,6.883892,3.487839,0,0,0,10.37173,0,0,0,1,0,2,68.1,13.8,0,63.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.221231,.6931472,2.339084,1
-17,5,25,1,3,525813,1,10108.5,39.04038,0,14,1,91.92259,81.22844,0,0,396.2979,569.4489,1,0,0,4,0,2,68.1,13.8,0,63.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.221231,.6931472,6.344669,1
-17,5,25,1,4,525813,1,10108.5,40.04038,0,14,1,84.05743,14.54855,0,0,886.2864,984.8923,1,0,0,5,0,2,68.1,13.8,0,63.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.221231,.6931472,6.892532,1
-17,5,25,1,5,525813,1,10108.5,41.04038,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,13.8,0,63.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.221231,.6931472,,0
-10,5,50,0,1,525816,0,6674.895,56.43258,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,20.7,1,56,1000,0,0,0,1.098612,0,0,3.931826,7.600903,0,1,0,56,8.806258,1.098612,,0
-10,5,50,0,2,525816,0,6674.895,57.43258,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,20.7,1,56,1000,0,0,0,1.098612,0,0,3.931826,7.600903,0,1,0,56,8.806258,1.098612,,0
-10,5,50,0,3,525816,0,6674.895,58.43258,1,7,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,20.7,1,56,1000,0,0,0,1.098612,0,0,3.931826,7.600903,0,1,0,56,8.806258,1.098612,,0
-10,5,50,0,1,525817,0,6674.895,17.58522,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,3.4,0,64.8,1000,0,1,0,1.098612,0,0,3.931826,7.600903,0,0,0,64.8,8.806258,1.098612,,0
-10,5,50,0,2,525817,0,6674.895,18.58522,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,3.4,0,64.8,1000,0,0,0,1.098612,0,0,3.931826,7.600903,0,0,0,64.8,8.806258,1.098612,,0
-10,5,50,0,3,525817,0,6674.895,19.58522,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,3.4,0,64.8,1000,0,0,0,1.098612,0,0,3.931826,7.600903,0,0,0,64.8,8.806258,1.098612,,0
-10,5,50,0,1,525818,0,6674.895,57.9165,0,6,1,15.52531,2.007656,0,0,0,17.53296,0,0,0,1,0,3,81.9,13.8,0,61.4,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,61.4,8.806258,1.098612,2.864083,1
-10,5,50,0,2,525818,0,6674.895,58.9165,0,6,1,8.015267,0,0,0,0,8.015267,0,0,0,1,0,3,81.9,13.8,0,61.4,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,61.4,8.806258,1.098612,2.081348,1
-10,5,50,0,3,525818,0,6674.895,59.9165,0,6,1,0,0,0,0,0,0,0,0,0,0,0,3,81.9,13.8,0,61.4,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,61.4,8.806258,1.098612,,0
-13,5,0,1,1,525820,1,4072.727,14.91581,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,41.5,6.9,0,48.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,48.9,8.312314,1.386294,,0
-13,5,0,1,2,525820,1,4072.727,15.91581,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,41.5,6.9,0,48.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,48.9,8.312314,1.386294,,0
-13,5,0,1,3,525820,1,4072.727,16.91581,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,41.5,6.9,0,48.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,48.9,8.312314,1.386294,,0
-13,5,0,1,4,525820,1,4072.727,17.91581,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,41.5,6.9,0,48.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,48.9,8.312314,1.386294,,0
-13,5,0,1,5,525820,1,4072.727,18.91581,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,41.5,6.9,0,48.9,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,48.9,8.312314,1.386294,,0
-13,5,0,1,1,525821,1,4072.727,37.25941,1,7,1,8.72818,0,0,0,0,8.72818,0,0,0,1,0,4,39.4,20.7,1,54.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,1,54.5,8.312314,1.386294,2.166557,1
-13,5,0,1,2,525821,1,4072.727,38.25941,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,39.4,20.7,1,54.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,1,54.5,8.312314,1.386294,,0
-13,5,0,1,3,525821,1,4072.727,39.25941,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,39.4,20.7,1,54.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,1,54.5,8.312314,1.386294,,0
-13,5,0,1,4,525821,1,4072.727,40.25941,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,39.4,20.7,1,54.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,1,54.5,8.312314,1.386294,,0
-13,5,0,1,5,525821,1,4072.727,41.25941,1,7,1,38.06228,1.67474,0,0,0,39.73702,0,0,0,0,1,4,39.4,20.7,1,54.5,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,1,54.5,8.312314,1.386294,3.682283,1
-13,5,0,1,1,525822,1,4072.727,7.526352,1,7,1,8.72818,0,0,0,0,8.72818,0,0,0,0,0,4,77.8,10.57626,0,51.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,51.9,8.312314,1.386294,2.166557,1
-13,5,0,1,2,525822,1,4072.727,8.526352,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.8,10.57626,0,51.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,51.9,8.312314,1.386294,,0
-13,5,0,1,3,525822,1,4072.727,9.526352,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.8,10.57626,0,51.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,51.9,8.312314,1.386294,,0
-13,5,0,1,4,525822,1,4072.727,10.52635,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.8,10.57626,0,51.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,51.9,8.312314,1.386294,,0
-13,5,0,1,5,525822,1,4072.727,11.52635,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.8,10.57626,0,51.9,450,0,1,1,1.386294,0,1,4.564348,6.160541,1,0,0,51.9,8.312314,1.386294,,0
-13,5,0,1,1,525823,1,4072.727,13.92471,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,58.3,10.57626,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.312314,1.386294,,0
-13,5,0,1,2,525823,1,4072.727,14.92471,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,58.3,10.57626,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.312314,1.386294,,0
-13,5,0,1,3,525823,1,4072.727,15.92471,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,58.3,10.57626,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.312314,1.386294,,0
-13,5,0,1,4,525823,1,4072.727,16.92471,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,58.3,10.57626,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.312314,1.386294,,0
-13,5,0,1,5,525823,1,4072.727,17.92471,1,7,1,0,0,0,0,501.9031,501.9031,1,0,0,0,0,4,58.3,10.57626,0,77.8,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,77.8,8.312314,1.386294,6.218407,1
-11,5,0,1,1,525832,1,5341.014,6.833675,1,13,1,8.413967,2.099285,0,0,0,10.51325,0,0,0,0,1,4,90,10.57626,0,70.4,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,70.4,8.583358,1.386294,2.352637,1
-11,5,0,1,2,525832,1,5341.014,7.833675,1,13,1,42.68984,5.379675,0,0,0,48.06951,0,0,0,3,0,4,90,10.57626,0,70.4,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,70.4,8.583358,1.386294,3.872648,1
-11,5,0,1,3,525832,1,5341.014,8.833675,1,13,1,15.43739,6.490566,0,0,0,21.92796,0,0,0,1,0,4,90,10.57626,0,70.4,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,70.4,8.583358,1.386294,3.087763,1
-11,5,0,1,1,525833,1,5341.014,27.35113,0,12,1,19.35213,23.44973,0,0,0,42.80185,0,0,0,1,0,4,80.9,0,0,72.7,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,72.7,8.583358,1.386294,3.756581,1
-11,5,0,1,2,525833,1,5341.014,28.35113,0,12,1,47.60106,6.210804,0,0,0,53.81186,0,0,0,2,0,4,80.9,0,0,72.7,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,72.7,8.583358,1.386294,3.985494,1
-11,5,0,1,3,525833,1,5341.014,29.35113,0,12,1,8.576329,6.133791,0,0,0,14.71012,0,0,0,1,0,4,80.9,0,0,72.7,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,72.7,8.583358,1.386294,2.688536,1
-11,5,0,1,1,525834,1,5341.014,28.93087,1,13,1,18.93143,14.92638,33.496,0,0,67.35381,0,0,0,1,1,4,75.5,13.8,0,53.4,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,53.4,8.583358,1.386294,4.20996,1
-11,5,0,1,2,525834,1,5341.014,29.93087,1,13,1,42.29316,9.180204,0,0,367.9637,419.4371,1,0,0,4,0,4,75.5,13.8,0,53.4,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,53.4,8.583358,1.386294,6.038914,1
-11,5,0,1,3,525834,1,5341.014,30.93087,1,13,1,60.72041,21.64322,23.54717,0,1147.17,1253.081,2,0,0,1,1,4,75.5,13.8,0,53.4,0,592.32,0,0,1.386294,6.384047,0,0,0,1,0,0,53.4,8.583358,1.386294,7.13336,1
-16,5,95,1,1,525840,0,10012.9,24.71184,1,12,1,9.975062,0,0,0,517.4065,527.3815,1,0,0,1,0,1,88.3,6.9,0,73.9,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.21173,0,6.267924,1
-16,5,95,1,2,525840,0,10012.9,25.71184,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.21173,.6931472,,0
-16,5,95,1,3,525840,0,10012.9,26.71184,1,12,1,5.07829,0,0,0,0,5.07829,0,0,0,1,0,2,88.3,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.21173,.6931472,1.624975,1
-16,5,95,1,4,525840,0,10012.9,27.71184,1,12,1,0,3.834472,0,0,0,3.834472,0,0,0,0,0,2,88.3,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.21173,.6931472,1.344032,1
-16,5,95,1,5,525840,0,10012.9,28.71184,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,6.9,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,73.9,9.21173,.6931472,,0
-11,5,0,1,1,525846,.4758801,3645.161,21.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,83.5,3.4,0,52.3,0,0,0,0,0,0,0,0,0,0,1,0,52.3,8.20143,0,,0
-11,5,0,1,2,525846,.4758801,3645.161,22.71937,0,12,1,19.83377,0,0,0,0,19.83377,0,0,0,1,0,1,83.5,3.4,0,52.3,0,0,0,0,0,0,0,0,0,0,1,0,52.3,8.20143,0,2.987386,1
-11,5,0,1,3,525846,.4758801,3645.161,23.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,83.5,3.4,0,52.3,0,0,0,0,0,0,0,0,0,0,1,0,52.3,8.20143,0,,0
-11,5,0,1,1,525857,1,7213.006,38.59274,1,7,1,50.02084,16.69862,31.26303,0,0,97.98249,0,0,0,7,1,3,36.2,37.9,1,23.9,0,624.78,0,0,1.098612,6.437399,0,0,0,0,1,0,23.9,8.88378,1.098612,4.584789,1
-11,5,0,1,2,525857,1,7213.006,39.59274,1,7,1,31.50788,27.06301,0,0,0,58.57089,0,0,0,5,0,2,36.2,37.9,1,23.9,0,624.78,0,0,.6931472,6.437399,0,0,0,0,1,0,23.9,8.88378,.6931472,4.070238,1
-11,5,0,1,3,525857,1,7213.006,40.59274,1,7,1,35.85927,20.86265,25.37212,0,0,82.09405,0,0,0,6,1,2,36.2,37.9,1,23.9,0,624.78,0,0,.6931472,6.437399,0,0,0,0,1,0,23.9,8.88378,.6931472,4.407866,1
-11,5,0,1,1,525858,.4758801,1475.166,19.08829,1,9,1,0,4.827011,0,0,0,4.827011,0,0,0,0,0,1,80.9,3.4,0,72.7,0,0,0,0,0,0,0,0,0,0,0,0,72.7,7.297204,0,1.574227,1
-11,5,0,1,2,525858,.4758801,1475.166,20.08829,1,9,1,0,2.171793,0,0,625.2813,627.4531,1,1,0,0,0,1,80.9,3.4,0,72.7,0,0,0,0,0,0,0,0,0,0,0,0,72.7,7.297204,0,6.441669,1
-11,5,0,1,3,525858,.4758801,1475.166,21.08829,1,9,1,0,2.026387,0,0,0,2.026387,0,0,0,0,0,2,80.9,3.4,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,0,0,72.7,7.297204,.6931472,.7062544,1
-11,5,0,1,1,525859,.4758801,6674.895,3.518138,1,6,1,39.18299,7.386411,0,0,0,46.5694,0,0,0,4,0,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,8.806258,.6931472,3.840944,1
-11,5,0,1,2,525859,.4758801,6674.895,4.518138,1,6,1,14.25356,7.108027,0,0,0,21.36159,0,0,0,3,0,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,8.806258,.6931472,3.061594,1
-11,5,0,1,3,525859,.4758801,6674.895,5.518138,1,6,1,31.79973,18.62652,0,0,0,50.42625,0,0,0,5,0,2,77.40034,10.57626,0,85.2,0,0,1,1,.6931472,0,0,0,0,1,0,0,85.2,8.806258,.6931472,3.920512,1
-11,5,0,1,1,525860,1,7213.006,42.76249,0,7,1,107.4614,31.55482,65.98582,0,438.0992,643.1013,1,0,0,9,1,3,86.7,17.2,0,61.4,0,624.78,0,0,1.098612,6.437399,0,0,0,1,0,0,61.4,8.88378,1.098612,6.466302,1
-11,5,0,1,2,525860,1,7213.006,43.76249,0,7,1,16.50413,22.54314,25.54389,0,0,64.59115,0,0,0,3,0,2,86.7,17.2,0,61.4,0,624.78,0,0,.6931472,6.437399,0,0,0,1,0,0,61.4,8.88378,.6931472,4.168077,1
-11,5,0,1,3,525860,1,7213.006,44.76249,0,7,1,51.08254,21.83694,67.91272,0,0,140.8322,0,0,0,5,1,2,86.7,17.2,0,61.4,0,624.78,0,0,.6931472,6.437399,0,0,0,1,0,0,61.4,8.88378,.6931472,4.947569,1
-11,5,0,1,1,525861,.4758801,6674.895,20.45175,1,6,1,18.75782,9.470613,0,0,0,28.22843,0,0,0,2,0,2,55.4,13.8,1,55.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,55.7,8.806258,.6931472,3.34033,1
-11,5,0,1,2,525861,.4758801,6674.895,21.45175,1,6,1,22.50563,15.05251,0,0,0,37.55814,0,0,0,2,0,2,55.4,13.8,1,55.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,55.7,8.806258,.6931472,3.62589,1
-11,5,0,1,3,525861,.4758801,6674.895,22.45175,1,6,1,54.1272,17.74357,25.37212,0,0,97.2429,0,0,0,1,1,2,55.4,13.8,1,55.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,55.7,8.806258,.6931472,4.577212,1
-11,5,0,1,1,525862,1,7213.006,16.13416,0,7,1,53.48062,1.875782,31.47145,0,0,86.82784,0,0,0,2,1,3,83,0,0,76.1,0,624.78,1,0,1.098612,6.437399,0,0,0,0,1,0,76.1,8.88378,1.098612,4.463927,1
-13,5,0,1,1,525863,0,9026.113,43.22519,1,12,1,32.11399,1.829009,0,0,0,33.943,0,0,0,2,0,6,87.8,10.3,1,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.107988,1.791759,3.524683,1
-13,5,0,1,2,525863,0,9026.113,44.22519,1,12,1,80.34351,1.992366,0,0,0,82.33588,0,0,0,2,0,7,87.8,10.3,1,68.2,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.107988,1.94591,4.410807,1
-13,5,0,1,3,525863,0,9026.113,45.22519,1,12,1,115.5052,32.63066,24.73868,0,932.0557,1104.93,1,0,0,6,1,7,87.8,10.3,1,68.2,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.107988,1.94591,7.007537,1
-13,5,0,1,1,525864,0,9026.113,5.538672,0,12,1,60.39983,11.08465,17.01404,0,0,88.49851,0,0,0,5,2,6,88.3,10.57626,0,92.6,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.107988,1.791759,4.482986,1
-13,5,0,1,2,525864,0,9026.113,6.538672,0,12,1,27.48092,12.03435,0,0,0,39.51527,0,0,0,3,1,7,88.3,10.57626,0,92.6,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.107988,1.94591,3.676687,1
-13,5,0,1,3,525864,0,9026.113,7.538672,0,12,1,60.27874,2.522648,28.57143,0,0,91.37283,0,0,0,4,4,7,88.3,10.57626,0,92.6,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.107988,1.94591,4.514948,1
-13,5,0,1,1,525865,0,9026.113,16.19439,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.8,0,1,85.2,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.791759,,0
-13,5,0,1,2,525865,0,9026.113,17.19439,1,12,1,28.62595,0,0,0,0,28.62595,0,0,0,3,0,7,88.8,0,1,85.2,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.94591,3.354314,1
-13,5,0,1,3,525865,0,9026.113,18.19439,1,12,1,0,2.010453,0,0,0,2.010453,0,0,0,0,0,7,88.8,0,1,85.2,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.94591,.6983601,1
-13,5,0,1,1,525866,0,9026.113,43.78645,0,13,1,101.2335,23.46661,27.64781,0,0,152.3479,0,0,0,4,1,6,89.4,10.3,0,96.6,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.107988,1.791759,5.026167,1
-13,5,0,1,2,525866,0,9026.113,44.78645,0,13,1,0,2.698473,0,0,0,2.698473,0,0,0,0,0,7,89.4,10.3,0,96.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.107988,1.94591,.9926862,1
-13,5,0,1,3,525866,0,9026.113,45.78645,0,13,1,21.25435,2.623693,0,0,0,23.87805,0,0,0,2,0,7,89.4,10.3,0,96.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,96.6,9.107988,1.94591,3.17296,1
-13,5,0,1,1,525867,0,9026.113,13.42094,0,12,1,5.954913,26.8439,0,8.507018,0,32.79881,0,0,1,1,0,6,85,10.57626,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.791759,3.490392,1
-13,5,0,1,2,525867,0,9026.113,14.42094,0,12,1,17.55725,38.82443,0,0,0,56.38168,0,0,0,2,0,7,85,10.57626,0,85.2,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.94591,4.032144,1
-13,5,0,1,3,525867,0,9026.113,15.42094,0,12,1,8.36237,33.81882,0,0,0,42.18118,0,0,0,1,0,7,85,10.57626,0,85.2,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.107988,1.94591,3.741974,1
-13,5,0,1,1,525868,0,9026.113,17.28131,1,12,1,93.78988,15.02339,0,0,739.6852,848.4985,1,0,0,6,0,6,48.4,3.4,0,50,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,50,9.107988,1.791759,6.743468,1
-13,5,0,1,2,525868,0,9026.113,18.28131,1,12,1,121.6603,7.21374,3.156489,0,0,132.0305,0,0,0,3,0,7,48.4,3.4,0,50,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,50,9.107988,1.94591,4.883033,1
-13,5,0,1,3,525868,0,9026.113,19.28131,1,12,1,141.6202,67.01045,28.09408,0,0,236.7247,0,0,0,8,1,7,48.4,3.4,0,50,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,50,9.107988,1.94591,5.466898,1
-11,5,0,0,1,525869,0,5852.786,37.96578,1,5,1,252.6683,144.3741,28.42893,0,0,425.4713,0,0,0,9,0,4,35.1,58.6,1,34.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,34.5,8.674844,1.386294,6.053197,1
-11,5,0,0,2,525869,0,5852.786,38.96578,1,5,1,5.532504,221.1849,0,0,0,226.7174,0,0,0,1,0,4,35.1,58.6,1,34.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,34.5,8.674844,1.386294,5.423704,1
-11,5,0,0,3,525869,0,5852.786,39.96578,1,5,1,90.13966,173.5506,46.55099,0,2108.76,2419.001,1,0,0,7,1,4,35.1,58.6,1,34.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,34.5,8.674844,1.386294,7.79111,1
-11,5,0,0,4,525869,0,5852.786,40.96578,1,5,1,212.9841,579.0623,0,0,0,792.0463,0,0,0,19,0,4,35.1,58.6,1,34.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,34.5,8.674844,1.386294,6.67462,1
-11,5,0,0,5,525869,0,5852.786,41.96578,1,5,1,496.0208,706.3979,38.14533,0,0,1240.564,0,0,0,21,1,3,35.1,58.6,1,34.5,0,468,0,0,1.098612,6.148468,0,0,0,0,0,1,34.5,8.674844,1.098612,7.123322,1
-11,5,0,0,1,525870,0,5852.786,15.43874,0,5,1,19.95012,0,0,0,0,19.95012,0,0,0,1,0,4,68.1,10.3,0,65.9,0,468,1,0,1.386294,6.148468,0,0,0,0,1,0,65.9,8.674844,1.386294,2.993235,1
-11,5,0,0,2,525870,0,5852.786,16.43874,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,68.1,10.3,0,65.9,0,468,1,0,1.386294,6.148468,0,0,0,0,1,0,65.9,8.674844,1.386294,,0
-11,5,0,0,3,525870,0,5852.786,17.43874,0,5,1,5.07829,13.64791,0,0,0,18.7262,0,0,0,1,0,4,68.1,10.3,0,65.9,0,468,1,0,1.386294,6.148468,0,0,0,0,1,0,65.9,8.674844,1.386294,2.929923,1
-11,5,0,0,4,525870,0,5852.786,18.43874,0,5,.1065574,0,0,0,0,0,0,0,0,0,0,0,4,68.1,10.3,0,65.9,0,468,0,0,1.386294,6.148468,0,0,0,0,1,0,65.9,8.674844,1.386294,,0
-11,5,0,0,1,525871,0,5852.786,17.21834,0,5,1,37.90524,55.24189,0,112.2195,0,93.14713,0,0,5,2,0,4,77.7,6.9,0,58.7,0,468,1,0,1.386294,6.148468,0,0,0,0,0,1,58.7,8.674844,1.386294,4.53418,1
-11,5,0,0,2,525871,0,5852.786,18.21834,0,5,1,0,57.14615,0,41.49377,0,57.14615,0,0,2,0,0,4,77.7,6.9,0,58.7,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,58.7,8.674844,1.386294,4.045612,1
-11,5,0,0,3,525871,0,5852.786,19.21834,0,5,1,12.69573,0,36.39441,0,0,49.09014,0,0,0,0,1,4,77.7,6.9,0,58.7,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,58.7,8.674844,1.386294,3.893658,1
-11,5,0,0,4,525871,0,5852.786,20.21834,0,5,1,81.62491,35.66819,22.39939,0,1021.26,1160.953,1,0,0,4,1,4,77.7,6.9,0,58.7,0,468,0,0,1.386294,6.148468,0,0,0,0,0,1,58.7,8.674844,1.386294,7.056996,1
-11,5,0,0,5,525871,0,5852.786,21.21834,0,5,1,253.9792,188.6125,39.66436,0,0,482.256,0,0,0,7,3,3,77.7,6.9,0,58.7,0,468,0,0,1.098612,6.148468,0,0,0,0,0,1,58.7,8.674844,1.098612,6.178475,1
-11,5,0,0,1,525872,0,5852.786,40.84326,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,3.4,0,62.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,0,62.5,8.674844,1.386294,,0
-11,5,0,0,2,525872,0,5852.786,41.84326,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,3.4,0,62.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,0,62.5,8.674844,1.386294,,0
-11,5,0,0,3,525872,0,5852.786,42.84326,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,3.4,0,62.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,0,62.5,8.674844,1.386294,,0
-11,5,0,0,4,525872,0,5852.786,43.84326,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,61.2,3.4,0,62.5,0,468,0,0,1.386294,6.148468,0,0,0,0,0,0,62.5,8.674844,1.386294,,0
-11,5,0,0,5,525872,0,5852.786,44.84326,0,9,1,27.68166,2.159169,0,0,0,29.84083,0,0,0,1,0,3,61.2,3.4,0,62.5,0,468,0,0,1.098612,6.148468,0,0,0,0,0,0,62.5,8.674844,1.098612,3.395878,1
-11,5,0,0,1,525929,0,4952.893,29.2731,0,10,1,0,.8844689,0,0,0,.8844689,0,0,0,0,0,1,43.6,0,1,47.7,0,56.4,0,0,0,4.032469,0,0,0,0,0,0,47.7,8.507929,0,-.1227679,1
-11,5,0,0,2,525929,0,4952.893,30.2731,0,10,1,151.8603,0,0,0,0,151.8603,0,0,0,0,14,1,43.6,0,1,47.7,0,56.4,0,0,0,4.032469,0,0,0,0,0,0,47.7,8.507929,0,5.022961,1
-11,5,0,0,3,525929,0,4952.893,31.2731,0,10,1,276.8166,0,0,0,0,276.8166,0,0,0,0,31,1,43.6,0,1,47.7,0,56.4,0,0,0,4.032469,0,0,0,0,0,0,47.7,8.507929,0,5.623355,1
-11,5,0,1,1,525939,0,6264.516,21.45106,1,13,1,45.13716,14.68828,0,0,0,59.82544,0,0,0,3,1,2,56.9,13.8,0,70.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.5,8.742816,.6931472,4.091431,1
-11,5,0,1,2,525939,0,6264.516,22.45106,1,13,1,22.13001,23.0521,0,0,0,45.18211,0,0,0,3,0,2,56.9,13.8,0,70.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.5,8.742816,.6931472,3.810701,1
-11,5,0,1,3,525939,0,6264.516,23.45106,1,13,1,26.66102,68.47228,0,0,0,95.13331,0,0,0,2,0,2,56.9,13.8,0,70.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.5,8.742816,.6931472,4.555279,1
-11,5,0,1,4,525939,0,6264.516,24.45106,1,13,1,70.61504,23.97494,0,33.21944,0,94.58997,0,0,3,2,0,2,56.9,13.8,0,70.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.5,8.742816,.6931472,4.549551,1
-11,5,0,1,5,525939,0,6264.516,25.45106,1,13,1,18.3391,68.27682,0,19.03114,0,86.61591,0,0,1,2,0,1,56.9,13.8,0,70.5,0,0,0,0,0,0,0,0,0,0,0,0,70.5,8.742816,0,4.461483,1
-11,5,0,1,1,525940,0,6264.516,22.15469,0,12,1,16.45885,0,27.49127,0,0,43.95012,0,0,0,1,1,2,72.9,20.7,0,63.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,63.1,8.742816,.6931472,3.783055,1
-11,5,0,1,2,525940,0,6264.516,23.15469,0,12,1,113.4163,0,0,0,0,113.4163,0,0,0,3,0,2,72.9,20.7,0,63.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,63.1,8.742816,.6931472,4.731065,1
-11,5,0,1,3,525940,0,6264.516,24.15469,0,12,1,8.463818,4.291155,29.92806,0,0,42.68303,0,0,0,1,0,2,72.9,20.7,0,63.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,63.1,8.742816,.6931472,3.753801,1
-11,5,0,1,4,525940,0,6264.516,25.15469,0,12,1,9.491268,0,0,0,0,9.491268,0,0,0,1,0,2,72.9,20.7,0,63.1,0,0,0,0,.6931472,0,0,0,0,0,0,0,63.1,8.742816,.6931472,2.250372,1
-17,5,25,1,1,525942,0,4114.695,38.65572,1,12,1,18.29009,6.210124,0,0,0,24.50021,0,0,0,2,0,3,76.6,3.4,0,86.4,283.35,283.35,0,0,1.098612,5.646683,0,3.258096,7.032977,0,0,0,86.4,8.322563,1.098612,3.198682,1
-17,5,25,1,2,525942,0,4114.695,39.65572,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,3.4,0,86.4,283.35,283.35,0,0,1.098612,5.646683,0,3.258096,7.032977,0,0,0,86.4,8.322563,1.098612,,0
-17,5,25,1,3,525942,0,4114.695,40.65572,1,12,1,441.4634,6.665505,43.20557,0,0,491.3345,0,0,0,4,1,3,76.6,3.4,0,86.4,283.35,283.35,0,0,1.098612,5.646683,0,3.258096,7.032977,0,0,0,86.4,8.322563,1.098612,6.197125,1
-17,5,25,1,1,525943,0,4114.695,13.98768,1,12,1,71.20374,0,0,0,0,71.20374,0,0,0,2,0,3,78.3,10.57626,0,88.9,283.35,283.35,1,1,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.9,8.322563,1.098612,4.265545,1
-17,5,25,1,2,525943,0,4114.695,14.98768,1,12,1,16.79389,0,0,0,0,16.79389,0,0,0,2,0,3,78.3,10.57626,0,88.9,283.35,283.35,1,1,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.9,8.322563,1.098612,2.821015,1
-17,5,25,1,3,525943,0,4114.695,15.98768,1,12,1,214.8084,59.1568,29.96516,0,1765.157,2069.087,2,0,0,12,1,3,78.3,10.57626,0,88.9,283.35,283.35,1,1,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.9,8.322563,1.098612,7.634863,1
-17,5,25,1,1,525944,0,4114.695,17.78508,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,3.4,0,88.6,283.35,283.35,1,1,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.6,8.322563,1.098612,,0
-17,5,25,1,2,525944,0,4114.695,18.78508,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,3.4,0,88.6,283.35,283.35,0,0,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.6,8.322563,1.098612,,0
-17,5,25,1,3,525944,0,4114.695,19.78508,1,12,1,19.86063,7.094077,0,0,0,26.9547,0,0,0,2,0,3,71.8,3.4,0,88.6,283.35,283.35,0,0,1.098612,5.646683,0,3.258096,7.032977,0,0,0,88.6,8.322563,1.098612,3.294158,1
-11,5,0,0,1,526012,0,6637.537,25.08966,1,9,1,43.35976,15.10406,0,0,499.5045,557.9683,1,0,0,3,0,3,81.9,6.9,0,53.4,0,357.64,0,0,1.098612,5.879527,0,0,0,1,0,0,53.4,8.800647,1.098612,6.324302,1
-11,5,0,0,2,526012,0,6637.537,26.08966,1,9,1,36.71409,15.83295,0,0,0,52.54704,0,0,0,4,0,4,81.9,6.9,0,53.4,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,53.4,8.800647,1.386294,3.961709,1
-11,5,0,0,3,526012,0,6637.537,27.08966,1,9,1,7.57257,0,0,0,0,7.57257,0,0,0,1,0,4,81.9,6.9,0,53.4,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,53.4,8.800647,1.386294,2.024533,1
-11,5,0,0,4,526012,0,6637.537,28.08966,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,6.9,0,53.4,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,53.4,8.800647,1.386294,,0
-11,5,0,0,5,526012,0,6637.537,29.08966,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,6.9,0,53.4,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,53.4,8.800647,1.386294,,0
-11,5,0,0,1,526013,0,6637.537,27.01437,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,10.3,0,55.7,0,357.64,0,0,1.098612,5.879527,0,0,0,1,0,0,55.7,8.800647,1.098612,,0
-11,5,0,0,2,526013,0,6637.537,28.01437,0,10,1,97.75126,16.13584,0,0,0,113.8871,0,0,0,3,0,4,77.1,10.3,0,55.7,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,55.7,8.800647,1.386294,4.735208,1
-11,5,0,0,3,526013,0,6637.537,29.01437,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,10.3,0,55.7,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,55.7,8.800647,1.386294,,0
-11,5,0,0,4,526013,0,6637.537,30.01437,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,10.3,0,55.7,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,55.7,8.800647,1.386294,,0
-11,5,0,0,5,526013,0,6637.537,31.01437,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,10.3,0,55.7,0,357.64,0,0,1.386294,5.879527,0,0,0,1,0,0,55.7,8.800647,1.386294,,0
-11,5,0,0,1,526014,0,6637.537,4.257358,0,9,1,14.8662,0,0,0,0,14.8662,0,0,0,2,0,3,77.40034,10.57626,0,74.1,0,357.64,1,0,1.098612,5.879527,0,0,0,0,0,0,74.1,8.800647,1.098612,2.69909,1
-11,5,0,0,2,526014,0,6637.537,5.257358,0,9,1,60.69757,2.776503,0,0,481.5971,545.0711,1,0,0,4,0,4,77.40034,10.57626,0,74.1,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,74.1,8.800647,1.386294,6.300916,1
-11,5,0,0,3,526014,0,6637.537,6.257358,0,9,1,97.2865,3.247791,0,0,0,100.5343,0,0,0,3,0,4,77.40034,10.57626,0,74.1,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,74.1,8.800647,1.386294,4.610499,1
-11,5,0,0,4,526014,0,6637.537,7.257358,0,9,1,30.22289,13.22629,0,0,0,43.44919,0,0,0,5,0,4,77.40034,10.57626,0,74.1,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,74.1,8.800647,1.386294,3.771592,1
-11,5,0,0,5,526014,0,6637.537,8.257358,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,74.1,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,74.1,8.800647,1.386294,,0
-11,5,0,0,1,526024,1,855.0947,54.22587,1,11,1,21.15954,0,43.58866,0,0,64.7482,0,0,0,1,1,1,56.4,17.2,0,46.6,0,0,0,0,0,0,0,0,0,1,0,0,46.6,6.752381,0,4.170506,1
-11,5,0,0,2,526024,1,855.0947,55.22587,1,11,1,71.37434,131.3705,0,0,0,202.7449,0,0,0,5,0,1,56.4,17.2,0,46.6,0,0,0,0,0,0,0,0,0,1,0,0,46.6,6.752381,0,5.311948,1
-11,5,0,0,3,526024,1,855.0947,56.22587,1,11,1,0,120.474,0,0,0,120.474,0,0,0,0,0,1,56.4,17.2,0,46.6,0,0,0,0,0,0,0,0,0,1,0,0,46.6,6.752381,0,4.791434,1
-18,5,25,1,1,526025,1,10821.3,36.66804,0,12,1,49.72493,0,0,0,0,49.72493,0,0,0,1,0,1,87.2,3.4,0,84.1,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.289364,0,3.906506,1
-18,5,25,1,2,526025,1,10821.3,37.66804,0,12,1,9.111617,0,0,0,0,9.111617,0,0,0,1,0,1,87.2,3.4,0,84.1,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.289364,0,2.20955,1
-18,5,25,1,3,526025,1,10821.3,38.66804,0,12,1,23.3564,0,0,0,0,23.3564,0,0,0,3,0,1,87.2,3.4,0,84.1,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.289364,0,3.150871,1
-11,5,0,0,1,526028,1,6674.895,29.86721,0,6,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,1,0,70.5,8.806258,0,,0
-11,5,0,0,2,526028,1,6674.895,30.86721,0,6,1,11.38952,0,0,0,0,11.38952,0,0,0,0,0,1,74.5,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,1,0,70.5,8.806258,0,2.432694,1
-11,5,0,0,3,526028,1,6674.895,31.86721,0,6,1,42.90657,0,0,0,0,42.90657,0,0,0,0,0,1,74.5,10.3,0,70.5,0,0,0,0,0,0,0,0,0,0,1,0,70.5,8.806258,0,3.759025,1
-11,5,0,1,1,526041,0,10967.16,30.03422,1,16,1,37.16551,77.23984,0,287.4133,0,114.4053,0,0,14,2,0,2,56.4,10.3,0,25,0,0,0,0,.6931472,0,0,0,0,0,1,0,25,9.302752,.6931472,4.739748,1
-11,5,0,1,2,526041,0,10967.16,31.03422,1,16,1,44.51583,48.64617,0,206.5168,1284.534,1377.696,1,0,10,3,0,2,56.4,10.3,0,25,0,0,0,0,.6931472,0,0,0,0,0,1,0,25,9.302752,.6931472,7.228168,1
-11,5,0,1,3,526041,0,10967.16,32.03422,1,16,1,18.09003,55.28397,0,0,0,73.374,0,0,0,3,0,2,56.4,10.3,0,25,0,0,0,0,.6931472,0,0,0,0,0,1,0,25,9.302752,.6931472,4.295569,1
-11,5,0,1,4,526041,0,10967.16,33.03422,1,16,1,66.86816,93.29807,13.22252,0,0,173.3887,0,0,0,3,1,2,56.4,10.3,0,25,0,0,0,0,.6931472,0,0,0,0,0,1,0,25,9.302752,.6931472,5.155536,1
-11,5,0,1,5,526041,0,10967.16,34.03422,1,16,1,14.06518,69.28302,0,0,0,83.3482,0,0,0,1,0,2,56.4,10.3,0,25,0,0,0,0,.6931472,0,0,0,0,0,1,0,25,9.302752,.6931472,4.423027,1
-11,5,0,1,1,526042,0,10967.16,33.41547,0,20,1,0,0,0,0,0,0,0,0,0,0,0,2,63.8,3.4,1,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.302752,.6931472,,0
-11,5,0,1,2,526042,0,10967.16,34.41547,0,20,1,181.2758,44.97476,0,454.3369,0,226.2506,0,0,25,4,0,2,63.8,3.4,1,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.302752,.6931472,5.421643,1
-11,5,0,1,3,526042,0,10967.16,35.41547,0,20,1,10.51746,36.3273,0,189.3143,0,46.84476,0,0,9,1,0,2,63.8,3.4,1,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.302752,.6931472,3.846839,1
-11,5,0,1,4,526042,0,10967.16,36.41547,0,20,1,22.66717,98.92331,0,198.3377,301.8512,423.4416,1,0,10,1,0,2,63.8,3.4,1,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.302752,.6931472,6.048416,1
-11,5,0,1,5,526042,0,10967.16,37.41547,0,20,1,60.37736,118.0618,25.72899,301.8868,0,204.1681,0,0,16,3,2,2,63.8,3.4,1,64.8,0,0,0,0,.6931472,0,0,0,0,1,0,0,64.8,9.302752,.6931472,5.318944,1
-11,5,0,1,1,526049,0,5206.349,25.51403,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,67,6.9,0,50,0,0,0,0,.6931472,0,0,0,0,1,0,0,50,8.557826,.6931472,,0
-11,5,0,1,2,526049,0,5206.349,26.51403,1,10,1,33.02961,0,0,0,0,33.02961,0,0,0,3,0,2,67,6.9,0,50,0,0,0,0,.6931472,0,0,0,0,1,0,0,50,8.557826,.6931472,3.497405,1
-11,5,0,1,3,526049,0,5206.349,27.51403,1,10,1,8.650519,0,0,0,0,8.650519,0,0,0,1,0,2,67,6.9,0,50,0,0,0,0,.6931472,0,0,0,0,1,0,0,50,8.557826,.6931472,2.157619,1
-11,5,0,1,1,526050,0,5206.349,29.77687,0,12,1,12.69573,0,34.27846,0,0,46.97419,0,0,0,0,1,2,89.9,0,0,76.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,76.1,8.557826,.6931472,3.849598,1
-11,5,0,1,2,526050,0,5206.349,30.77687,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,76.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,76.1,8.557826,.6931472,,0
-11,5,0,1,3,526050,0,5206.349,31.77687,0,12,1,10.38062,0,30.3218,0,0,40.70242,0,0,0,0,1,2,89.9,0,0,76.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,76.1,8.557826,.6931472,3.706288,1
-11,5,0,1,1,526062,1,6674.895,21.60438,0,12,1,55.18409,8.019466,0,0,0,63.20356,0,0,0,2,0,1,61.8,17.2,0,54.5,0,0,0,0,0,0,0,0,0,0,0,0,54.5,8.806258,0,4.14636,1
-11,5,0,1,2,526062,1,6674.895,22.60438,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,61.8,17.2,0,54.5,0,0,0,0,0,0,0,0,0,0,0,0,54.5,8.806258,0,,0
-11,5,0,1,3,526062,1,6674.895,23.60438,0,12,1,11.76471,3.788927,0,0,0,15.55363,0,0,0,0,0,1,61.8,17.2,0,54.5,0,0,0,0,0,0,0,0,0,0,0,0,54.5,8.806258,0,2.744294,1
-11,5,0,1,1,526064,1,6674.895,52.34497,1,9,1,103.6818,1.946678,29.62336,0,0,135.2518,0,0,0,3,2,1,62.8,6.9,0,72.7,0,0,0,0,0,0,0,0,0,0,0,1,72.7,8.806258,0,4.907138,1
-11,5,0,1,2,526064,1,6674.895,53.34497,1,9,1,6.833713,0,0,0,0,6.833713,0,0,0,1,0,1,62.8,6.9,0,72.7,0,0,0,0,0,0,0,0,0,0,0,1,72.7,8.806258,0,1.921868,1
-11,5,0,1,3,526064,1,6674.895,54.34497,1,9,1,116.782,20.18339,27.68166,0,0,164.6471,0,0,0,5,1,1,62.8,6.9,0,72.7,0,0,0,0,0,0,0,0,0,0,0,1,72.7,8.806258,0,5.103804,1
-13,5,0,0,1,526065,1,18474.65,42.19849,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,70.7,13.8,0,45.2,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,45.2,9.824209,2.079442,,0
-13,5,0,0,2,526065,1,18474.65,43.19849,0,9,1,34.37854,0,0,0,632.7919,667.1704,1,0,0,4,0,8,70.7,13.8,0,45.2,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,45.2,9.824209,2.079442,6.503046,1
-13,5,0,0,3,526065,1,18474.65,44.19849,0,9,1,0,0,0,0,0,0,0,0,0,0,0,8,70.7,13.8,0,45.2,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,45.2,9.824209,2.079442,,0
-13,5,0,0,1,526066,1,18474.65,4.366872,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,47.5,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,47.5,9.824209,2.079442,,0
-13,5,0,0,2,526066,1,18474.65,5.366872,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,47.5,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,47.5,9.824209,2.079442,,0
-13,5,0,0,3,526066,1,18474.65,6.366872,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,47.5,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,47.5,9.824209,2.079442,,0
-13,5,0,0,1,526067,1,18474.65,13.20465,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,44.4,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.824209,2.079442,,0
-13,5,0,0,2,526067,1,18474.65,14.20465,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,44.4,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.824209,2.079442,,0
-13,5,0,0,3,526067,1,18474.65,15.20465,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,44.4,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,44.4,9.824209,2.079442,,0
-13,5,0,0,1,526068,1,18474.65,9.497604,0,12,1,5.889777,0,0,0,0,5.889777,0,0,0,1,0,8,61.7,10.57626,0,70.4,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.824209,2.079442,1.773218,1
-13,5,0,0,2,526068,1,18474.65,10.4976,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,61.7,10.57626,0,70.4,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.824209,2.079442,,0
-13,5,0,0,3,526068,1,18474.65,11.4976,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,61.7,10.57626,0,70.4,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,70.4,9.824209,2.079442,,0
-13,5,0,0,1,526069,1,18474.65,6.976044,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,83.3,10.57626,.1442925,55.6,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.824209,2.079442,,0
-13,5,0,0,2,526069,1,18474.65,7.976044,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,83.3,10.57626,.1442925,55.6,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.824209,2.079442,,0
-13,5,0,0,3,526069,1,18474.65,8.976044,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,83.3,10.57626,.1442925,55.6,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.824209,2.079442,,0
-13,5,0,0,1,526070,1,18474.65,11.89049,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,48.1,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.824209,2.079442,,0
-13,5,0,0,2,526070,1,18474.65,12.89049,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,48.1,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.824209,2.079442,,0
-13,5,0,0,3,526070,1,18474.65,13.89049,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,51.7,10.57626,0,48.1,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.824209,2.079442,,0
-13,5,0,0,1,526071,1,18474.65,36.73648,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,63.3,17.2,1,61.9,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,61.9,9.824209,2.079442,,0
-13,5,0,0,2,526071,1,18474.65,37.73648,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,63.3,17.2,1,61.9,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,61.9,9.824209,2.079442,,0
-13,5,0,0,3,526071,1,18474.65,38.73648,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,63.3,17.2,1,61.9,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,61.9,9.824209,2.079442,,0
-13,5,0,1,1,526090,0,4489.503,56.81588,1,10,1,57.13077,6.931866,32.56877,0,0,96.6314,0,0,0,2,0,2,96.3,10.3,0,59.5,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,1,0,0,59.5,8.40972,.6931472,4.570904,1
-13,5,0,1,2,526090,0,4489.503,57.81588,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,96.3,10.3,0,59.5,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,1,0,0,59.5,8.40972,.6931472,,0
-13,5,0,1,3,526090,0,4489.503,58.81588,1,10,1,69.20415,0,0,0,0,69.20415,0,0,0,3,0,2,96.3,10.3,0,59.5,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,1,0,0,59.5,8.40972,.6931472,4.237061,1
-13,5,0,1,1,526091,0,4489.503,56.71732,0,7,1,14.81168,0,42.25138,0,0,57.06306,0,0,0,1,0,2,96.3,6.9,0,68.2,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,0,0,0,68.2,8.40972,.6931472,4.044157,1
-13,5,0,1,2,526091,0,4489.503,57.71732,0,7,1,0,0,0,0,0,0,0,0,0,0,0,2,96.3,6.9,0,68.2,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,0,0,0,68.2,8.40972,.6931472,,0
-13,5,0,1,3,526091,0,4489.503,58.71732,0,7,1,20.76125,0,0,0,693.4256,714.1868,1,0,0,2,0,2,96.3,6.9,0,68.2,300,583.32,0,0,.6931472,6.368736,1,4.564348,5.755076,0,0,0,68.2,8.40972,.6931472,6.571145,1
-13,5,0,1,1,526103,0,6771.261,35.6167,0,10,1,9.82801,0,0,0,0,9.82801,0,0,0,1,0,2,58.5,13.8,0,53.4,300,774,0,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,53.4,8.82059,.6931472,2.285236,1
-13,5,0,1,2,526103,0,6771.261,36.6167,0,10,1,201.9143,0,0,27.34731,0,201.9143,0,0,1,1,30,2,58.5,13.8,0,53.4,300,774,0,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,53.4,8.82059,.6931472,5.307843,1
-13,5,0,1,3,526103,0,6771.261,37.6167,0,10,1,50.85452,0,0,0,0,50.85452,0,0,0,5,0,2,58.5,13.8,0,53.4,300,774,0,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,53.4,8.82059,.6931472,3.928969,1
-13,5,0,1,4,526103,0,6771.261,38.6167,0,10,1,13.12828,7.32183,0,0,0,20.45011,0,0,0,2,0,2,58.5,13.8,0,53.4,300,774,0,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,53.4,8.82059,.6931472,3.017988,1
-13,5,0,1,5,526103,0,6771.261,39.6167,0,10,1,25.37212,40.40595,18.64682,0,0,84.4249,0,0,0,4,0,2,58.5,13.8,0,53.4,300,774,0,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,53.4,8.82059,.6931472,4.435863,1
-13,5,0,1,1,526106,0,6771.261,7.975359,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,78.3,10.57626,0,85.2,300,774,1,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,85.2,8.82059,.6931472,,0
-13,5,0,1,2,526106,0,6771.261,8.975359,0,10,1,56.88241,0,0,0,362.3519,419.2343,1,0,0,3,0,2,78.3,10.57626,0,85.2,300,774,1,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,85.2,8.82059,.6931472,6.03843,1
-13,5,0,1,3,526106,0,6771.261,9.975359,0,10,1,63.98499,0,0,0,0,63.98499,0,0,0,4,0,2,78.3,10.57626,0,85.2,300,774,1,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,85.2,8.82059,.6931472,4.158648,1
-13,5,0,1,4,526106,0,6771.261,10.97536,0,10,1,12.003,7.516879,0,0,0,19.51988,0,0,0,2,0,2,78.3,10.57626,0,85.2,300,774,1,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,85.2,8.82059,.6931472,2.971433,1
-13,5,0,1,5,526106,0,6771.261,11.97536,0,10,1,11.16373,6.167118,0,0,0,17.33085,0,0,0,1,0,2,78.3,10.57626,0,85.2,300,774,1,0,.6931472,6.651572,1,4.564348,5.755076,0,0,0,85.2,8.82059,.6931472,2.852488,1
-17,5,25,1,1,526133,1,125.5132,3.556468,0,8,1,9.82801,0,24.57002,0,0,34.39803,0,0,0,0,1,7,77.40034,10.57626,0,70.4,700,700,1,0,1.94591,6.55108,0,3.258096,7.937375,0,0,0,70.4,4.840347,1.94591,3.537999,1
-17,5,25,1,2,526133,1,125.5132,4.556468,0,8,1,9.11577,0,11.8505,0,0,20.96627,0,0,0,0,1,7,77.40034,10.57626,0,70.4,700,700,1,0,1.94591,6.55108,0,3.258096,7.937375,0,0,0,70.4,4.840347,1.94591,3.042915,1
-17,5,25,1,1,526134,1,125.5132,16.47912,1,8,1,8.845209,0,0,0,0,8.845209,0,0,0,0,1,7,71.8,3.4,0,62.5,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,62.5,4.840347,1.94591,2.179876,1
-17,5,25,1,2,526134,1,125.5132,17.47912,1,8,1,6.836828,0,0,0,0,6.836828,0,0,0,1,0,7,71.8,3.4,0,62.5,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,62.5,4.840347,1.94591,1.922324,1
-17,5,25,1,1,526135,1,125.5132,10.05339,1,8,1,9.82801,0,0,0,0,9.82801,0,0,0,0,1,7,76.7,10.57626,0,63,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,63,4.840347,1.94591,2.285236,1
-17,5,25,1,2,526135,1,125.5132,11.05339,1,8,1,21.42206,0,0,0,0,21.42206,0,0,0,2,0,7,76.7,10.57626,0,63,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,63,4.840347,1.94591,3.064421,1
-17,5,25,1,3,526135,1,125.5132,12.05339,1,8,1,10.42101,0,0,0,0,10.42101,0,0,0,1,0,5,76.7,10.57626,0,63,700,700,1,1,1.609438,6.55108,0,3.258096,7.937375,0,0,0,63,4.840347,1.609438,2.343824,1
-17,5,25,1,4,526135,1,125.5132,13.05339,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,63,700,700,1,1,1.609438,6.55108,0,3.258096,7.937375,0,0,0,63,4.840347,1.609438,,0
-17,5,25,1,1,526136,1,125.5132,14.07529,1,8,1,24.57002,0,24.57002,0,0,49.14005,0,0,0,2,1,7,66.7,10.57626,0,74.1,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.94591,3.894674,1
-17,5,25,1,2,526136,1,125.5132,15.07529,1,8,1,6.836828,0,0,0,0,6.836828,0,0,0,1,0,7,66.7,10.57626,0,74.1,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.94591,1.922324,1
-17,5,25,1,3,526136,1,125.5132,16.07529,1,8,1,31.67987,0,0,0,0,31.67987,0,0,0,3,0,5,66.7,10.57626,0,74.1,700,700,1,1,1.609438,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.609438,3.455681,1
-17,5,25,1,4,526136,1,125.5132,17.07529,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,66.7,10.57626,0,74.1,700,700,1,1,1.609438,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.609438,,0
-17,5,25,1,1,526138,1,125.5132,12.3833,0,8,1,9.82801,0,0,0,0,9.82801,0,0,0,0,1,7,78.3,10.57626,0,74.1,700,700,1,0,1.94591,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.94591,2.285236,1
-17,5,25,1,2,526138,1,125.5132,13.3833,0,8,1,57.20146,0,0,0,0,57.20146,0,0,0,0,0,7,78.3,10.57626,0,74.1,700,700,1,0,1.94591,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.94591,4.046579,1
-17,5,25,1,3,526138,1,125.5132,14.3833,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,10.57626,0,74.1,700,700,1,0,1.609438,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.609438,,0
-17,5,25,1,4,526138,1,125.5132,15.3833,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,10.57626,0,74.1,700,700,1,0,1.609438,6.55108,0,3.258096,7.937375,0,0,0,74.1,4.840347,1.609438,,0
-17,5,25,1,1,526139,1,125.5132,51.436,1,8,1,9.82801,0,0,0,0,9.82801,0,0,0,1,0,7,68.6,17.2,1,64.8,700,700,0,0,1.94591,6.55108,0,3.258096,7.937375,0,1,0,64.8,4.840347,1.94591,2.285236,1
-17,5,25,1,2,526139,1,125.5132,52.436,1,8,1,56.06199,0,28.25889,0,0,84.32088,0,0,0,2,1,7,68.6,17.2,1,64.8,700,700,0,0,1.94591,6.55108,0,3.258096,7.937375,0,1,0,64.8,4.840347,1.94591,4.434629,1
-17,5,25,1,3,526139,1,125.5132,53.436,1,8,1,13.33889,0,0,0,0,13.33889,0,0,0,2,0,5,68.6,17.2,1,64.8,700,700,0,0,1.609438,6.55108,0,3.258096,7.937375,0,1,0,64.8,4.840347,1.609438,2.590684,1
-17,5,25,1,4,526139,1,125.5132,54.436,1,8,1,37.13428,5.982746,0,0,0,43.11703,0,0,0,3,0,5,68.6,17.2,1,64.8,700,700,0,0,1.609438,6.55108,0,3.258096,7.937375,0,1,0,64.8,4.840347,1.609438,3.763918,1
-17,5,25,1,1,526140,1,125.5132,17.97673,1,8,1,47.17445,1.990172,25.55283,0,0,74.71745,0,0,0,3,1,7,90.4,10.3,0,65.9,700,700,1,1,1.94591,6.55108,0,3.258096,7.937375,0,0,0,65.9,4.840347,1.94591,4.313714,1
-17,5,25,1,2,526140,1,125.5132,18.97673,1,8,1,35.5515,0,0,0,0,35.5515,0,0,0,2,0,7,90.4,10.3,0,65.9,700,700,0,0,1.94591,6.55108,0,3.258096,7.937375,0,0,0,65.9,4.840347,1.94591,3.570982,1
-17,5,25,1,3,526140,1,125.5132,19.97673,1,8,1,16.67361,0,0,0,0,16.67361,0,0,0,1,0,5,90.4,10.3,0,65.9,700,700,0,0,1.609438,6.55108,0,3.258096,7.937375,0,0,0,65.9,4.840347,1.609438,2.813828,1
-17,5,25,1,4,526140,1,125.5132,20.97673,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,10.3,0,65.9,700,700,0,0,1.609438,6.55108,0,3.258096,7.937375,0,0,0,65.9,4.840347,1.609438,,0
-11,5,0,0,1,526147,0,10997.44,47.63313,1,12,1,77.11546,16.9654,4.276782,0,0,98.35765,0,0,0,5,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,4.58861,1
-11,5,0,0,2,526147,0,10997.44,48.63313,1,12,1,84.021,23.07577,0,0,0,107.0968,0,0,0,2,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,4.673733,1
-11,5,0,0,3,526147,0,10997.44,49.63313,1,12,1,71.38024,34.78349,22.51691,0,0,128.6806,0,0,0,4,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,4.857334,1
-11,5,0,0,1,526148,0,10997.44,50.57358,0,11,1,66.69446,0,47.68653,0,0,114.381,0,0,0,2,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,4.739535,1
-11,5,0,0,2,526148,0,10997.44,51.57358,0,11,1,42.76069,0,10.53263,0,0,53.29332,0,0,0,1,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,3.975811,1
-11,5,0,0,3,526148,0,10997.44,52.57358,0,11,1,50.40595,0,39.75304,0,0,90.159,0,0,0,2,0,2,77.40034,10.57626,.1442925,,0,416.52,0,0,.6931472,6.031934,0,0,0,0,0,0,70.68995,9.305509,.6931472,4.501575,1
-13,5,0,1,1,526154,0,7724.014,16.2245,0,16,1,162.0821,10.36818,0,0,0,172.4503,0,0,0,5,0,3,92.6,3.4,0,79.5,450,484.77,1,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,79.5,8.952219,1.098612,5.150109,1
-13,5,0,1,2,526154,0,7724.014,17.2245,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,92.6,3.4,0,79.5,450,484.77,1,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,79.5,8.952219,1.098612,,0
-13,5,0,1,3,526154,0,7724.014,18.2245,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,92.6,3.4,0,79.5,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,79.5,8.952219,1.098612,,0
-13,5,0,1,1,526156,0,7724.014,47.04449,0,20,1,46.55099,49.13246,23.2755,0,0,118.959,0,0,0,5,0,3,91.5,3.4,0,73.9,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,73.9,8.952219,1.098612,4.778779,1
-13,5,0,1,2,526156,0,7724.014,48.04449,0,20,1,4.176158,37.7183,0,0,0,41.89446,0,0,0,0,0,3,91.5,3.4,0,73.9,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,73.9,8.952219,1.098612,3.735154,1
-13,5,0,1,3,526156,0,7724.014,49.04449,0,20,1,0,0,0,0,0,0,0,0,0,0,0,3,91.5,3.4,0,73.9,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,0,0,0,73.9,8.952219,1.098612,,0
-13,5,0,1,1,526157,0,7724.014,43.24162,1,16,1,158.485,142.2725,33.00889,0,0,333.7664,0,0,0,8,0,3,84,10.3,0,59.1,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,1,0,0,59.1,8.952219,1.098612,5.810441,1
-13,5,0,1,2,526157,0,7724.014,44.24162,1,16,1,5.694761,15.8656,0,0,0,21.56036,0,0,0,1,0,3,84,10.3,0,59.1,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,1,0,0,59.1,8.952219,1.098612,3.070857,1
-13,5,0,1,3,526157,0,7724.014,45.24162,1,16,1,98.96194,42.18685,0,0,0,141.1488,0,0,0,4,0,3,84,10.3,0,59.1,450,484.77,0,0,1.098612,6.183674,1,4.564348,6.160541,1,0,0,59.1,8.952219,1.098612,4.949815,1
-7,5,25,1,1,526183,0,15450.08,41.71389,0,18,1,20.19352,0,0,0,0,20.19352,0,0,0,2,0,5,67.6,6.9,0,25,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,25,9.645434,1.609438,3.005362,1
-7,5,25,1,2,526183,0,15450.08,42.71389,0,18,1,13.22252,0,34.36343,0,0,47.58595,0,0,0,1,0,5,67.6,6.9,0,25,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,25,9.645434,1.609438,3.862537,1
-7,5,25,1,3,526183,0,15450.08,43.71389,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,67.6,6.9,0,25,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,25,9.645434,1.609438,,0
-7,5,25,1,1,526184,0,15450.08,14.10814,0,12,1,90.02945,0,0,0,0,90.02945,0,0,0,3,0,5,59,0,0,51.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.1,9.645434,1.609438,4.500137,1
-7,5,25,1,2,526184,0,15450.08,15.10814,0,12,1,9.82244,0,0,0,0,9.82244,0,0,0,1,0,5,59,0,0,51.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.1,9.645434,1.609438,2.28467,1
-7,5,25,1,3,526184,0,15450.08,16.10814,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,59,0,0,51.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.1,9.645434,1.609438,,0
-7,5,25,1,1,526185,0,15450.08,17.87269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,3.4,0,68.2,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.645434,1.609438,,0
-7,5,25,1,2,526185,0,15450.08,18.87269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,3.4,0,68.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.645434,1.609438,,0
-7,5,25,1,3,526185,0,15450.08,19.87269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,64.9,3.4,0,68.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,68.2,9.645434,1.609438,,0
-7,5,25,1,1,526186,0,15450.08,41.69747,1,12,1,12.62095,0,36.86159,0,0,49.48254,0,0,0,0,1,5,67,6.9,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.645434,1.609438,3.90162,1
-7,5,25,1,2,526186,0,15450.08,42.69747,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,67,6.9,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.645434,1.609438,,0
-7,5,25,1,3,526186,0,15450.08,43.69747,1,12,1,10.2916,0,17.15266,0,0,27.44425,0,0,0,0,1,5,67,6.9,1,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.645434,1.609438,3.312157,1
-7,5,25,1,1,526187,0,15450.08,16.21082,0,12,1,0,0,0,334.4552,0,0,0,0,32,0,0,5,41.5,3.4,0,72.5,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.5,9.645434,1.609438,,0
-7,5,25,1,2,526187,0,15450.08,17.21082,0,12,1,3.777862,0,0,28.33396,0,3.777862,0,0,3,1,0,5,41.5,3.4,0,72.5,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.5,9.645434,1.609438,1.329158,1
-7,5,25,1,3,526187,0,15450.08,18.21082,0,12,1,66.89537,0,0,0,0,66.89537,0,0,0,1,0,5,41.5,3.4,0,72.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.5,9.645434,1.609438,4.20313,1
-11,5,0,1,1,526188,0,11392.73,34.33265,0,12,1,122.408,35.48032,0,0,177.7402,335.6284,1,0,0,5,0,4,75,20.7,0,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,9.340818,1.386294,5.816005,1
-11,5,0,1,2,526188,0,11392.73,35.33265,0,12,1,30.75171,9.335611,0,0,0,40.08732,0,0,0,1,1,4,75,20.7,0,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,9.340818,1.386294,3.69106,1
-11,5,0,1,3,526188,0,11392.73,36.33265,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,20.7,0,60.2,0,0,0,0,1.386294,0,0,0,0,1,0,0,60.2,9.340818,1.386294,,0
-11,5,0,1,1,526189,0,11392.73,10.00411,1,12,1,32.16251,1.692763,28.61617,0,0,62.47144,0,0,0,2,1,4,83.3,10.57626,0,63,0,0,1,1,1.386294,0,0,0,0,1,0,0,63,9.340818,1.386294,4.134709,1
-11,5,0,1,2,526189,0,11392.73,11.00411,1,12,1,74.03189,16.54518,0,0,0,90.57707,0,0,0,3,0,4,83.3,10.57626,0,63,0,0,1,1,1.386294,0,0,0,0,1,0,0,63,9.340818,1.386294,4.506201,1
-11,5,0,1,3,526189,0,11392.73,12.00411,1,12,1,16.26298,8.927336,22.83737,0,0,48.02768,0,0,0,1,1,4,83.3,10.57626,0,63,0,0,1,1,1.386294,0,0,0,0,1,0,0,63,9.340818,1.386294,3.871778,1
-11,5,0,1,1,526190,0,11392.73,31.30185,1,12,1,63.90182,26.3267,55.01481,0,0,145.2433,0,0,0,5,1,4,71.8,13.8,0,58,0,0,0,0,1.386294,0,0,0,0,0,0,0,58,9.340818,1.386294,4.978411,1
-11,5,0,1,2,526190,0,11392.73,32.30185,1,12,1,5.694761,11.69704,0,0,0,17.3918,0,0,0,1,0,4,71.8,13.8,0,58,0,0,0,0,1.386294,0,0,0,0,0,0,0,58,9.340818,1.386294,2.855999,1
-11,5,0,1,3,526190,0,11392.73,33.30185,1,12,1,274.7405,21.25952,0,0,0,296,0,0,0,13,2,4,71.8,13.8,0,58,0,0,0,0,1.386294,0,0,0,0,0,0,0,58,9.340818,1.386294,5.69036,1
-11,5,0,1,1,526234,0,10963.64,27.54004,0,15,1,25.43641,25.86035,30.92269,0,0,82.21945,0,0,0,2,1,4,87.2,13.8,1,47.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,47.7,9.30243,1.386294,4.409392,1
-11,5,0,1,2,526234,0,10963.64,28.54004,0,15,1,23.0521,24.31996,0,0,0,47.37206,0,0,0,3,0,4,87.2,13.8,1,47.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,47.7,9.30243,1.386294,3.858033,1
-11,5,0,1,3,526234,0,10963.64,29.54004,0,15,1,6.347863,5.713077,0,0,0,12.06094,0,0,0,1,0,4,87.2,13.8,1,47.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,47.7,9.30243,1.386294,2.489972,1
-11,5,0,1,4,526234,0,10963.64,30.54004,0,15,1,22.01974,70.23538,0,0,0,92.25513,0,0,0,2,0,4,87.2,13.8,1,47.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,47.7,9.30243,1.386294,4.524558,1
-11,5,0,1,5,526234,0,10963.64,31.54004,0,15,1,103.8062,19.72318,27.20761,0,628.0277,778.7647,1,0,0,5,1,5,87.2,13.8,1,47.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,47.7,9.30243,1.609438,6.657709,1
-16,5,95,0,1,526235,1,4387.609,13.25667,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,2,526235,1,4387.609,14.25667,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,3,526235,1,4387.609,15.25667,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,1,526236,1,4387.609,13.25667,1,8,1,8.081667,0,0,0,0,8.081667,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,2.089598,1
-16,5,95,0,2,526236,1,4387.609,14.25667,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,3,526236,1,4387.609,15.25667,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,1,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,1,526237,1,4387.609,11.09103,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,0,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,2,526237,1,4387.609,12.09103,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,0,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,3,526237,1,4387.609,13.09103,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,71.7,10.57626,0,77.8,857.1,0,1,0,1.609438,0,0,4.564348,6.804848,1,0,0,77.8,8.386767,1.609438,,0
-16,5,95,0,1,526238,1,4387.609,32.10404,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,10.3,0,69.3,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,0,0,0,69.3,8.386767,1.609438,,0
-16,5,95,0,2,526238,1,4387.609,33.10404,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,10.3,0,69.3,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,0,0,0,69.3,8.386767,1.609438,,0
-16,5,95,0,3,526238,1,4387.609,34.10404,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,10.3,0,69.3,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,0,0,0,69.3,8.386767,1.609438,,0
-16,5,95,0,1,526239,1,4387.609,28.63518,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,67,3.4,0,67,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,1,0,0,67,8.386767,1.609438,,0
-16,5,95,0,2,526239,1,4387.609,29.63518,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,67,3.4,0,67,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,1,0,0,67,8.386767,1.609438,,0
-16,5,95,0,3,526239,1,4387.609,30.63518,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,67,3.4,0,67,857.1,0,0,0,1.609438,0,0,4.564348,6.804848,1,0,0,67,8.386767,1.609438,,0
-11,5,0,0,1,526244,1,3942.652,23.18138,0,8,1,10.63377,7.022543,31.90132,0,0,49.55764,0,0,0,0,1,4,77.1,0,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.279862,1.386294,3.903136,1
-11,5,0,0,2,526244,1,3942.652,24.18138,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,0,0,75,0,0,0,0,1.609438,0,0,0,0,0,0,0,75,8.279862,1.609438,,0
-11,5,0,0,3,526244,1,3942.652,25.18138,0,8,1,21.95122,1.30662,29.61672,0,0,52.87457,0,0,0,2,1,6,77.1,0,0,75,0,0,0,0,1.791759,0,0,0,0,0,0,0,75,8.279862,1.791759,3.967922,1
-11,5,0,0,1,526245,1,3942.652,21.49487,1,13,1,35.68694,12.85836,27.64781,0,384.9426,461.1357,1,0,0,8,1,4,72.3,20.7,0,80.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,80.7,8.279862,1.386294,6.133692,1
-11,5,0,0,2,526245,1,3942.652,22.49487,1,13,1,27.09924,18.31679,0,0,1227.481,1272.897,1,0,0,1,0,5,72.3,20.7,0,80.7,0,0,0,0,1.609438,0,0,0,0,1,0,0,80.7,8.279862,1.609438,7.149051,1
-11,5,0,0,3,526245,1,3942.652,23.49487,1,13,1,43.90244,2.264808,31.35888,0,0,77.52613,0,0,0,3,1,6,72.3,20.7,0,80.7,0,0,0,0,1.791759,0,0,0,0,1,0,0,80.7,8.279862,1.791759,4.350615,1
-16,5,95,1,1,526252,0,9756.012,13.90281,0,9,1,161.2983,17.43806,0,0,0,178.7364,0,0,0,16,1,4,68.3,10.57626,1,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,14.8,9.185741,1.386294,5.185912,1
-16,5,95,1,2,526252,0,9756.012,14.90281,0,9,1,213.6301,33.57045,0,0,657.1822,904.3828,1,0,0,19,1,4,68.3,10.57626,1,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,14.8,9.185741,1.386294,6.807253,1
-16,5,95,1,3,526252,0,9756.012,15.90281,0,9,1,42.49054,20.45856,0,0,0,62.9491,0,0,0,14,0,4,68.3,10.57626,1,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,14.8,9.185741,1.386294,4.142326,1
-16,5,95,1,4,526252,0,9756.012,16.90281,0,9,1,100.4911,20.09067,0,0,0,120.5818,0,0,0,17,1,4,68.3,10.57626,1,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,14.8,9.185741,1.386294,4.792328,1
-16,5,95,1,5,526252,0,9756.012,17.90281,0,9,1,58.14751,11.76672,0,0,0,69.91424,0,0,0,7,0,4,68.3,10.57626,1,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,14.8,9.185741,1.386294,4.247269,1
-16,5,95,1,1,526253,0,9756.012,15.00342,0,9,1,46.08523,4.672944,27.75025,0,0,78.50842,0,0,0,4,1,4,87.2,3.4,1,64.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,64.8,9.185741,1.386294,4.363206,1
-16,5,95,1,2,526253,0,9756.012,16.00342,0,9,1,74.34603,28.66452,0,0,0,103.0106,0,0,0,9,1,4,87.2,3.4,1,64.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,64.8,9.185741,1.386294,4.634831,1
-16,5,95,1,3,526253,0,9756.012,17.00342,0,9,1,55.11148,5.919226,0,0,0,61.03071,0,0,0,3,1,4,87.2,3.4,1,64.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,64.8,9.185741,1.386294,4.111377,1
-16,5,95,1,4,526253,0,9756.012,18.00342,0,9,1,18.13374,6.229694,0,0,0,24.36343,0,0,0,2,0,4,87.2,3.4,1,64.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,64.8,9.185741,1.386294,3.193083,1
-16,5,95,1,5,526253,0,9756.012,19.00342,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,87.2,3.4,1,64.8,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,64.8,9.185741,1.386294,,0
-16,5,95,1,1,526254,0,9756.012,38.89117,0,5,1,107.0367,39.90585,32.70565,0,0,179.6482,0,0,0,9,1,4,62.2,24.1,1,38.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,38.6,9.185741,1.386294,5.191,1
-16,5,95,1,2,526254,0,9756.012,39.89117,0,5,1,19.73382,44.94722,0,0,0,64.68105,0,0,0,3,0,4,62.2,24.1,1,38.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,38.6,9.185741,1.386294,4.169468,1
-16,5,95,1,3,526254,0,9756.012,40.89117,0,5,1,26.0833,34.3963,0,0,0,60.4796,0,0,0,2,1,4,62.2,24.1,1,38.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,38.6,9.185741,1.386294,4.102306,1
-16,5,95,1,4,526254,0,9756.012,41.89117,0,5,1,97.09105,32.50472,27.57839,0,132.603,289.7771,1,0,0,3,1,4,62.2,24.1,1,38.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,38.6,9.185741,1.386294,5.669112,1
-16,5,95,1,5,526254,0,9756.012,42.89117,0,5,1,56.26072,89.7187,0,0,0,145.9794,0,0,0,7,1,4,62.2,24.1,1,38.6,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,38.6,9.185741,1.386294,4.983466,1
-16,5,95,1,1,526255,0,9756.012,31.74812,1,9,1,217.5421,252.111,31.71457,0,296.333,797.7007,1,0,0,21,2,4,64.4,27.6,1,28.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,28.4,9.185741,1.386294,6.681734,1
-16,5,95,1,2,526255,0,9756.012,32.74812,1,9,1,226.2506,222.9371,30.74805,0,1849.931,2329.867,1,0,0,23,1,4,64.4,27.6,1,28.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,28.4,9.185741,1.386294,7.753566,1
-16,5,95,1,3,526255,0,9756.012,33.74812,1,9,1,198.1489,207.2444,29.44888,0,0,434.8422,0,0,0,21,1,4,64.4,27.6,1,28.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,28.4,9.185741,1.386294,6.074983,1
-16,5,95,1,4,526255,0,9756.012,34.74812,1,9,1,216.8493,245.5799,22.66717,0,893.4643,1378.561,2,0,0,27,1,4,64.4,27.6,1,28.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,28.4,9.185741,1.386294,7.228795,1
-16,5,95,1,5,526255,0,9756.012,35.74812,1,9,1,271.3551,287.7015,45.28302,0,1209.262,1813.602,1,0,0,29,1,4,64.4,27.6,1,28.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,28.4,9.185741,1.386294,7.50307,1
-15,5,95,1,1,526256,0,10335.89,34.38741,1,13,1,108.76,16.17012,0,0,0,124.9302,0,0,0,12,0,4,55.9,31,1,5.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,5.7,9.243475,1.386294,4.827755,1
-15,5,95,1,2,526256,0,10335.89,35.38741,1,13,1,24.6773,2.961276,0,0,0,27.63857,0,0,0,5,0,4,55.9,31,1,5.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,5.7,9.243475,1.386294,3.319212,1
-15,5,95,1,3,526256,0,10335.89,36.38741,1,13,1,63.66782,6.49827,0,0,0,70.16609,0,0,0,8,0,4,55.9,31,1,5.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,5.7,9.243475,1.386294,4.250865,1
-15,5,95,1,1,526257,0,10335.89,9.952087,1,13,1,30.04655,10.97757,14.25307,0,0,55.27719,0,0,0,4,0,4,73.3,10.57626,0,22.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,1,0,22.2,9.243475,1.386294,4.012361,1
-15,5,95,1,2,526257,0,10335.89,10.95209,1,13,1,34.54821,.7403189,9.870919,0,0,45.15945,0,0,0,4,0,4,73.3,10.57626,0,22.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,1,0,22.2,9.243475,1.386294,3.8102,1
-15,5,95,1,3,526257,0,10335.89,11.95209,1,13,1,20.41522,3.439446,11.01384,0,0,34.86851,0,0,0,2,0,4,73.3,10.57626,0,22.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,1,0,22.2,9.243475,1.386294,3.551584,1
-15,5,95,1,1,526258,0,10335.89,35.44695,0,12,1,45.70461,1.248413,0,0,0,46.95303,0,0,0,2,0,4,79.3,0,0,87.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,87.5,9.243475,1.386294,3.849148,1
-15,5,95,1,2,526258,0,10335.89,36.44695,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.3,0,0,87.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,87.5,9.243475,1.386294,,0
-15,5,95,1,3,526258,0,10335.89,37.44695,0,12,1,17.30104,2.595156,0,0,0,19.89619,0,0,0,1,0,4,79.3,0,0,87.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,87.5,9.243475,1.386294,2.990529,1
-15,5,95,1,1,526259,0,10335.89,9.040383,0,13,1,30.04655,12.61109,0,0,0,42.65764,0,0,0,5,0,4,75,10.57626,0,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,14.8,9.243475,1.386294,3.753206,1
-15,5,95,1,2,526259,0,10335.89,10.04038,0,13,1,33.02961,1.42369,0,0,0,34.4533,0,0,0,4,0,4,75,10.57626,0,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,14.8,9.243475,1.386294,3.539605,1
-15,5,95,1,3,526259,0,10335.89,11.04038,0,13,1,26.98962,6.768166,10.391,0,0,44.14879,0,0,0,3,0,4,75,10.57626,0,14.8,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,14.8,9.243475,1.386294,3.787565,1
-11,5,0,1,1,526260,0,13109.68,9.470226,0,11,1,14.8662,9.435084,0,0,0,24.30129,0,0,0,3,0,4,93.3,10.57626,0,85.2,0,520.26,1,0,1.386294,6.254329,0,0,0,0,0,0,85.2,9.481182,1.386294,3.190529,1
-11,5,0,1,2,526260,0,13109.68,10.47023,0,11,1,5.507113,1.032584,0,0,0,6.539697,0,0,0,1,0,4,93.3,10.57626,0,85.2,0,520.26,1,0,1.386294,6.254329,0,0,0,0,0,0,85.2,9.481182,1.386294,1.877891,1
-11,5,0,1,3,526260,0,13109.68,11.47023,0,11,1,43.33193,7.328566,0,0,0,50.6605,0,0,0,5,0,4,93.3,10.57626,0,85.2,0,520.26,1,0,1.386294,6.254329,0,0,0,0,0,0,85.2,9.481182,1.386294,3.925146,1
-11,5,0,1,4,526260,0,13109.68,12.47023,0,11,1,116.3581,13.22252,0,0,0,129.5807,0,0,0,7,0,4,93.3,10.57626,0,85.2,0,520.26,1,0,1.386294,6.254329,0,0,0,0,0,0,85.2,9.481182,1.386294,4.864304,1
-11,5,0,1,5,526260,0,13109.68,13.47023,0,11,1,44.59691,6.758148,0,0,0,51.35506,0,0,0,4,0,4,93.3,10.57626,0,85.2,0,520.26,1,0,1.386294,6.254329,0,0,0,0,0,0,85.2,9.481182,1.386294,3.938763,1
-11,5,0,1,1,526261,0,13109.68,17.88912,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,0,0,62.5,0,520.26,1,1,1.386294,6.254329,0,0,0,0,0,0,62.5,9.481182,1.386294,,0
-11,5,0,1,2,526261,0,13109.68,18.88912,1,11,1,55.07113,14.8279,0,0,0,69.89903,0,0,0,5,1,4,85.1,0,0,62.5,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,62.5,9.481182,1.386294,4.247052,1
-11,5,0,1,3,526261,0,13109.68,19.88912,1,11,1,0,1.787968,0,0,0,1.787968,0,0,0,0,0,4,85.1,0,0,62.5,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,62.5,9.481182,1.386294,.5810798,1
-11,5,0,1,4,526261,0,13109.68,20.88912,1,11,1,21.53381,8.745749,0,0,0,30.27956,0,0,0,3,0,4,85.1,0,0,62.5,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,62.5,9.481182,1.386294,3.410473,1
-11,5,0,1,5,526261,0,13109.68,21.88912,1,11,1,191.7667,57.80789,0,0,688.1647,937.7393,1,0,0,10,0,4,85.1,0,0,62.5,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,62.5,9.481182,1.386294,6.843472,1
-11,5,0,1,1,526262,0,13109.68,52.63244,0,14,1,111.7443,25.91675,0,0,0,137.6611,0,0,0,9,0,4,57.4,34.5,0,48.9,0,520.26,0,0,1.386294,6.254329,0,0,0,1,0,0,48.9,9.481182,1.386294,4.924795,1
-11,5,0,1,2,526262,0,13109.68,53.63244,0,14,1,336.8518,55.63561,0,0,0,392.4874,0,0,0,13,0,4,57.4,34.5,0,48.9,0,520.26,0,0,1.386294,6.254329,0,0,0,1,0,0,48.9,9.481182,1.386294,5.972504,1
-11,5,0,1,3,526262,0,13109.68,54.63244,0,14,1,116.5334,40.05048,31.97308,0,320.1515,508.7085,1,0,0,22,0,4,57.4,34.5,0,48.9,0,520.26,0,0,1.386294,6.254329,0,0,0,1,0,0,48.9,9.481182,1.386294,6.231875,1
-11,5,0,1,4,526262,0,13109.68,55.63244,0,14,1,47.97884,52.21761,17.37816,62.33472,3042.312,3159.887,3,0,4,14,0,4,57.4,34.5,0,48.9,0,520.26,0,0,1.386294,6.254329,0,0,0,1,0,0,48.9,9.481182,1.386294,8.058291,1
-11,5,0,1,5,526262,0,13109.68,56.63244,0,14,1,86.10635,57.33105,0,0,0,143.4374,0,0,0,17,0,4,57.4,34.5,0,48.9,0,520.26,0,0,1.386294,6.254329,0,0,0,1,0,0,48.9,9.481182,1.386294,4.965899,1
-11,5,0,1,1,526263,0,13109.68,46.33812,1,11,1,61.94252,0,34.98513,0,0,96.92765,0,0,0,2,0,4,71.8,10.3,0,78.4,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,78.4,9.481182,1.386294,4.573965,1
-11,5,0,1,2,526263,0,13109.68,47.33812,1,11,1,13.76778,0,41.30335,0,0,55.07113,0,0,0,1,0,4,71.8,10.3,0,78.4,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,78.4,9.481182,1.386294,4.008626,1
-11,5,0,1,3,526263,0,13109.68,48.33812,1,11,1,14.72444,1.851073,25.20404,0,0,41.77955,0,0,0,1,0,4,71.8,10.3,0,78.4,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,78.4,9.481182,1.386294,3.732407,1
-11,5,0,1,4,526263,0,13109.68,49.33812,1,11,1,18.88931,0,0,0,0,18.88931,0,0,0,1,0,4,71.8,10.3,0,78.4,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,78.4,9.481182,1.386294,2.938596,1
-11,5,0,1,5,526263,0,13109.68,50.33812,1,11,1,45.45454,18.83705,27.1012,0,1542.367,1633.76,1,0,0,5,1,4,71.8,10.3,0,78.4,0,520.26,0,0,1.386294,6.254329,0,0,0,0,0,0,78.4,9.481182,1.386294,7.398639,1
-6,5,25,0,1,526264,0,10649.26,39.02259,1,16,1,25.8441,24.19758,0,0,0,50.04168,0,0,0,2,0,1,81.9,10.3,0,86.4,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,86.4,9.273339,0,3.912856,1
-6,5,25,0,2,526264,0,10649.26,40.02259,1,16,1,0,12.01425,0,0,0,12.01425,0,0,0,0,0,1,81.9,10.3,0,86.4,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,86.4,9.273339,0,2.486094,1
-6,5,25,0,3,526264,0,10649.26,41.02259,1,16,1,100.1353,17.79093,38.34574,0,0,156.272,0,0,0,8,0,1,81.9,10.3,0,86.4,700,700,0,0,0,6.55108,0,3.258096,7.937375,0,0,0,86.4,9.273339,0,5.051598,1
-17,5,25,1,1,526283,0,11462.76,32.33128,1,8,1,60.08424,5.257681,42.12091,0,1013.801,1121.264,1,0,0,3,1,3,58.5,20.7,1,46.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.346946,1.098612,7.022212,1
-17,5,25,1,2,526283,0,11462.76,33.33128,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,58.5,20.7,1,46.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.346946,1.098612,,0
-17,5,25,1,3,526283,0,11462.76,34.33128,1,8,1,49.64241,0,0,0,0,49.64241,0,0,0,1,0,3,58.5,20.7,1,46.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.346946,1.098612,3.904845,1
-17,5,25,1,4,526283,0,11462.76,35.33128,1,8,1,0,0,0,0,364.1859,364.1859,1,0,0,0,0,3,58.5,20.7,1,46.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.346946,1.098612,5.897665,1
-17,5,25,1,5,526283,0,11462.76,36.33128,1,8,1,48.71355,0,0,0,0,48.71355,0,0,0,1,0,3,58.5,20.7,1,46.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.346946,1.098612,3.885957,1
-17,5,25,1,1,526284,0,11462.76,13.24298,1,8,1,9.910803,0,32.21011,0,0,42.12091,0,0,0,0,1,3,86.7,10.57626,0,63,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,1,0,63,9.346946,1.098612,3.740544,1
-17,5,25,1,2,526284,0,11462.76,14.24298,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,63,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,1,0,63,9.346946,1.098612,,0
-17,5,25,1,3,526284,0,11462.76,15.24298,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,63,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,1,0,63,9.346946,1.098612,,0
-17,5,25,1,4,526284,0,11462.76,16.24298,1,8,1,18.88931,0,0,0,0,18.88931,0,0,0,1,0,3,86.7,10.57626,0,63,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,1,0,63,9.346946,1.098612,2.938596,1
-17,5,25,1,5,526284,0,11462.76,17.24298,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,63,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,1,0,63,9.346946,1.098612,,0
-17,5,25,1,1,526285,0,11462.76,12.32033,0,8,1,12.3885,0,29.73241,0,0,42.12091,0,0,0,0,1,3,88.3,10.57626,1,66.7,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,1,0,66.7,9.346946,1.098612,3.740544,1
-17,5,25,1,2,526285,0,11462.76,13.32033,0,8,1,31.09225,0,0,0,0,31.09225,0,0,0,1,0,3,88.3,10.57626,1,66.7,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,1,0,66.7,9.346946,1.098612,3.436959,1
-17,5,25,1,3,526285,0,11462.76,14.32033,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,1,66.7,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,1,0,66.7,9.346946,1.098612,,0
-17,5,25,1,4,526285,0,11462.76,15.32033,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,1,66.7,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,1,0,66.7,9.346946,1.098612,,0
-17,5,25,1,5,526285,0,11462.76,16.32033,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,1,66.7,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,1,0,66.7,9.346946,1.098612,,0
-19,5,25,1,1,526289,0,5337.583,22.68309,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.582716,.6931472,,0
-19,5,25,1,2,526289,0,5337.583,23.68309,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.582716,.6931472,,0
-19,5,25,1,3,526289,0,5337.583,24.68309,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.582716,.6931472,,0
-19,5,25,1,4,526289,0,5337.583,25.68309,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.582716,.6931472,,0
-19,5,25,1,5,526289,0,5337.583,26.68309,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,6.9,0,76.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,76.1,8.582716,.6931472,,0
-19,5,25,1,1,526290,0,5337.583,21.60164,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,91,6.9,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,8.582716,.6931472,,0
-19,5,25,1,2,526290,0,5337.583,22.60164,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,91,6.9,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,8.582716,.6931472,,0
-19,5,25,1,3,526290,0,5337.583,23.60164,1,13,1,28.60749,0,0,0,0,28.60749,0,0,0,1,0,2,91,6.9,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,8.582716,.6931472,3.353668,1
-19,5,25,1,4,526290,0,5337.583,24.60164,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,91,6.9,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,8.582716,.6931472,,0
-19,5,25,1,5,526290,0,5337.583,25.60164,1,13,1,0,0,0,0,0,0,0,0,0,0,0,2,91,6.9,0,85.2,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,85.2,8.582716,.6931472,,0
-14,5,95,0,1,526297,1,51.71531,18.83368,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,10.3,0,64.3,140.6,140.6,0,0,1.609438,4.945919,0,4.564348,4.997212,1,0,0,64.3,3.964906,1.609438,,0
-14,5,95,0,2,526297,1,51.71531,19.83368,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,10.3,0,64.3,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,1,0,0,64.3,3.964906,1.791759,,0
-14,5,95,0,3,526297,1,51.71531,20.83368,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,10.3,0,64.3,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,1,0,0,64.3,3.964906,1.791759,,0
-14,5,95,1,1,526298,1,51.71531,13.48392,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,53.3,10.57626,0,81.5,140.6,140.6,1,1,1.609438,4.945919,0,4.564348,4.997212,0,1,0,81.5,3.964906,1.609438,,0
-14,5,95,1,2,526298,1,51.71531,14.48392,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,53.3,10.57626,0,81.5,140.6,140.6,1,1,1.791759,4.945919,0,4.564348,4.997212,0,1,0,81.5,3.964906,1.791759,,0
-14,5,95,1,3,526298,1,51.71531,15.48392,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,53.3,10.57626,0,81.5,140.6,140.6,1,1,1.791759,4.945919,0,4.564348,4.997212,0,1,0,81.5,3.964906,1.791759,,0
-14,5,95,1,1,526299,1,51.71531,17.859,1,8,1,0,0,0,0,0,0,1,1,0,0,0,5,49.5,0,1,50,140.6,140.6,1,1,1.609438,4.945919,0,4.564348,4.997212,1,0,0,50,3.964906,1.609438,,0
-14,5,95,1,2,526299,1,51.71531,18.859,1,8,1,58.39028,0,0,0,0,58.39028,0,0,0,3,0,6,49.5,0,1,50,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,1,0,0,50,3.964906,1.791759,4.06715,1
-14,5,95,1,3,526299,1,51.71531,19.859,1,8,1,44.9827,0,2.768166,0,1270.588,1318.339,1,1,0,3,0,6,49.5,0,1,50,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,1,0,0,50,3.964906,1.791759,7.184128,1
-14,5,95,1,1,526300,1,51.71531,37.13073,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,53.7,10.3,1,64.8,140.6,140.6,0,0,1.609438,4.945919,0,4.564348,4.997212,0,0,1,64.8,3.964906,1.609438,,0
-14,5,95,1,2,526300,1,51.71531,38.13073,1,8,1,22.85497,0,0,0,0,22.85497,0,0,0,0,0,6,53.7,10.3,1,64.8,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,0,0,1,64.8,3.964906,1.791759,3.129169,1
-14,5,95,1,3,526300,1,51.71531,39.13073,1,8,1,24.42907,0,0,0,0,24.42907,0,0,0,1,0,6,53.7,10.3,1,64.8,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,0,0,1,64.8,3.964906,1.791759,3.195774,1
-14,5,95,1,1,526301,1,51.71531,16.3833,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,0,0,79.5,140.6,140.6,1,0,1.609438,4.945919,0,4.564348,4.997212,0,1,0,79.5,3.964906,1.609438,,0
-14,5,95,1,2,526301,1,51.71531,17.3833,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,82.4,0,0,79.5,140.6,140.6,1,0,1.791759,4.945919,0,4.564348,4.997212,0,1,0,79.5,3.964906,1.791759,,0
-14,5,95,1,3,526301,1,51.71531,18.3833,0,8,1,34.9481,0,0,0,0,34.9481,0,0,0,1,0,6,82.4,0,0,79.5,140.6,140.6,0,0,1.791759,4.945919,0,4.564348,4.997212,0,1,0,79.5,3.964906,1.791759,3.553864,1
-13,5,0,1,1,526305,0,6592.962,25.18275,0,12,1,29.23687,3.384539,34.19227,0,0,66.81367,0,0,0,0,1,3,68.6,27.6,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.79391,1.098612,4.201908,1
-13,5,0,1,2,526305,0,6592.962,26.18275,0,12,1,12.84993,6.998623,0,0,0,19.84855,0,0,0,2,0,3,68.6,27.6,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.79391,1.098612,2.988131,1
-13,5,0,1,3,526305,0,6592.962,27.18275,0,12,1,6.310475,4.354228,0,0,0,10.6647,0,0,0,1,0,3,68.6,27.6,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.79391,1.098612,2.36694,1
-13,5,0,1,4,526305,0,6592.962,28.18275,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,27.6,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.79391,1.098612,,0
-13,5,0,1,5,526305,0,6592.962,29.18275,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,27.6,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.79391,1.098612,,0
-13,5,0,1,1,526306,0,6592.962,22.56537,1,12,1,21.30823,4.048563,31.71457,0,0,57.07136,0,0,0,0,1,3,64.4,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.79391,1.098612,4.044302,1
-13,5,0,1,2,526306,0,6592.962,23.56537,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.79391,1.098612,,0
-13,5,0,1,3,526306,0,6592.962,24.56537,1,12,1,14.72444,0,28.18679,0,0,42.91123,0,0,0,0,1,3,64.4,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.79391,1.098612,3.759134,1
-13,5,0,1,4,526306,0,6592.962,25.56537,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.79391,1.098612,,0
-13,5,0,1,5,526306,0,6592.962,26.56537,1,12,1,42.53859,9.48199,0,0,0,52.02058,0,0,0,2,0,3,64.4,10.3,0,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.79391,1.098612,3.951639,1
-13,5,0,1,1,526307,0,6592.962,4.010952,1,12,1,30.22795,0,0,0,0,30.22795,0,0,0,4,0,3,77.40034,10.57626,0,51.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,51.9,8.79391,1.098612,3.408767,1
-13,5,0,1,2,526307,0,6592.962,5.010952,1,12,1,6.883892,1.468564,0,0,322.6251,330.9775,1,0,0,1,0,3,77.40034,10.57626,0,51.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,51.9,8.79391,1.098612,5.802051,1
-13,5,0,1,3,526307,0,6592.962,6.010952,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,51.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,51.9,8.79391,1.098612,,0
-13,5,0,1,4,526307,0,6592.962,7.010952,1,12,1,21.15602,0,0,0,0,21.15602,0,0,0,1,0,3,77.40034,10.57626,0,51.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,51.9,8.79391,1.098612,3.051925,1
-13,5,0,1,5,526307,0,6592.962,8.010951,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,51.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,51.9,8.79391,1.098612,,0
-15,5,95,0,1,526308,1,4047.619,3.08282,1,9,1,7.993269,0,0,0,0,7.993269,0,0,0,0,0,5,77.40034,10.57626,0,63,19.3,19.3,1,1,1.609438,2.960105,0,4.564348,3.011398,1,0,0,63,8.306131,1.609438,2.0786,1
-15,5,95,0,2,526308,1,4047.619,4.08282,1,9,1,31.73404,0,0,0,0,31.73404,0,0,0,1,0,5,77.40034,10.57626,0,63,19.3,19.3,1,1,1.609438,2.960105,0,4.564348,3.011398,1,0,0,63,8.306131,1.609438,3.45739,1
-15,5,95,0,3,526308,1,4047.619,5.08282,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,63,19.3,19.3,1,1,1.386294,2.960105,0,4.564348,3.011398,1,0,0,63,8.306131,1.386294,,0
-15,5,95,0,1,526309,1,4047.619,32.11499,1,9,1,26.0833,0,0,0,0,26.0833,0,0,0,2,0,5,51.6,13.8,0,56.8,19.3,19.3,0,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,56.8,8.306131,1.609438,3.261295,1
-15,5,95,0,2,526309,1,4047.619,33.11499,1,9,1,102.9845,23.75519,0,0,352.0967,478.8364,1,0,0,4,0,5,51.6,13.8,0,56.8,19.3,19.3,0,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,56.8,8.306131,1.609438,6.171359,1
-15,5,95,0,3,526309,1,4047.619,34.11499,1,9,1,12.00686,0,0,0,0,12.00686,0,0,0,1,0,4,51.6,13.8,0,56.8,19.3,19.3,0,0,1.386294,2.960105,0,4.564348,3.011398,1,0,0,56.8,8.306131,1.386294,2.485478,1
-15,5,95,0,1,526310,1,4047.619,15.26078,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,0,0,68.2,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,68.2,8.306131,1.609438,,0
-15,5,95,0,2,526310,1,4047.619,16.26078,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,0,0,68.2,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,68.2,8.306131,1.609438,,0
-15,5,95,0,1,526311,1,4047.619,9.201917,0,9,1,53.93353,0,0,0,0,53.93353,0,0,0,1,0,5,98.3,10.57626,0,74.1,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,74.1,8.306131,1.609438,3.987752,1
-15,5,95,0,2,526311,1,4047.619,10.20192,0,9,1,7.555724,0,0,0,0,7.555724,0,0,0,0,0,5,98.3,10.57626,0,74.1,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,74.1,8.306131,1.609438,2.022305,1
-15,5,95,0,3,526311,1,4047.619,11.20192,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,98.3,10.57626,0,74.1,19.3,19.3,1,0,1.386294,2.960105,0,4.564348,3.011398,1,0,0,74.1,8.306131,1.386294,,0
-15,5,95,0,1,526312,1,4047.619,13.82067,0,9,1,23.64325,0,0,0,0,23.64325,0,0,0,0,0,5,86.7,10.57626,0,88.9,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,88.9,8.306131,1.609438,3.163078,1
-15,5,95,0,2,526312,1,4047.619,14.82067,0,9,1,10.67246,0,0,0,0,10.67246,0,0,0,0,0,5,86.7,10.57626,0,88.9,19.3,19.3,1,0,1.609438,2.960105,0,4.564348,3.011398,1,0,0,88.9,8.306131,1.609438,2.367666,1
-15,5,95,0,3,526312,1,4047.619,15.82067,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,0,88.9,19.3,19.3,1,0,1.386294,2.960105,0,4.564348,3.011398,1,0,0,88.9,8.306131,1.386294,,0
-10,5,50,1,1,526318,0,8942.652,28.79945,1,12,1,0,12.44151,0,0,0,12.44151,0,0,0,0,0,3,80.3,13.8,0,83,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,83,9.0987,1.098612,2.521039,1
-10,5,50,1,2,526318,0,8942.652,29.79945,1,12,1,59.35115,0,27.48092,0,0,86.83206,0,0,0,1,1,3,80.3,13.8,0,83,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,83,9.0987,1.098612,4.463976,1
-10,5,50,1,3,526318,0,8942.652,30.79945,1,12,1,20.55749,0,0,0,0,20.55749,0,0,0,1,0,3,80.3,13.8,0,83,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,83,9.0987,1.098612,3.023225,1
-10,5,50,1,1,526319,0,8942.652,3.698836,1,12,1,74.01106,23.60698,0,0,0,97.61803,0,0,0,8,0,3,77.40034,10.57626,0,40.7,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,40.7,9.0987,1.098612,4.581062,1
-10,5,50,1,2,526319,0,8942.652,4.698836,1,12,1,373.2824,95.62977,27.09924,0,0,496.0114,0,0,0,16,1,3,77.40034,10.57626,0,40.7,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,40.7,9.0987,1.098612,6.206599,1
-10,5,50,1,3,526319,0,8942.652,5.698836,1,12,1,70.7317,20.38328,0,0,0,91.11498,0,0,0,5,0,3,77.40034,10.57626,0,40.7,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,40.7,9.0987,1.098612,4.512122,1
-10,5,50,1,1,526320,0,8942.652,23.69062,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,0,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.7,9.0987,1.098612,,0
-10,5,50,1,2,526320,0,8942.652,24.69062,0,12,1,13.35878,19.27481,27.48092,0,0,60.1145,0,0,0,0,1,3,78.2,0,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.7,9.0987,1.098612,4.096251,1
-10,5,50,1,3,526320,0,8942.652,25.69062,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,0,0,72.7,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,72.7,9.0987,1.098612,,0
-11,5,0,1,1,526334,1,5952.381,22.87474,1,12,1,61.99746,8.298773,0,0,0,70.29623,0,0,0,1,0,3,85.2,0,0,83,0,199.2,0,0,1.098612,5.294309,0,0,0,0,0,0,83,8.691714,1.098612,4.252718,1
-11,5,0,1,2,526334,1,5952.381,23.87474,1,12,1,52.58162,10.7631,0,0,869.7798,933.1245,1,0,0,4,0,3,85.2,0,0,83,0,199.2,0,0,1.098612,5.294309,0,0,0,0,0,0,83,8.691714,1.098612,6.838539,1
-11,5,0,1,3,526334,1,5952.381,24.87474,1,12,1,13.14879,24.46713,0,0,0,37.61592,0,0,0,2,0,4,85.2,0,0,83,0,199.2,0,0,1.386294,5.294309,0,0,0,0,0,0,83,8.691714,1.386294,3.627427,1
-11,5,0,1,1,526335,1,5952.381,5.598905,0,12,1,18.6204,0,0,0,0,18.6204,0,0,0,2,0,3,93.3,10.57626,0,81.5,0,199.2,1,0,1.098612,5.294309,0,0,0,0,0,0,81.5,8.691714,1.098612,2.924258,1
-11,5,0,1,2,526335,1,5952.381,6.598905,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.3,10.57626,0,81.5,0,199.2,1,0,1.098612,5.294309,0,0,0,0,0,0,81.5,8.691714,1.098612,,0
-11,5,0,1,3,526335,1,5952.381,7.598905,0,12,1,7.311419,0,0,0,0,7.311419,0,0,0,1,0,4,93.3,10.57626,0,81.5,0,199.2,1,0,1.386294,5.294309,0,0,0,0,0,0,81.5,8.691714,1.386294,1.989437,1
-11,5,0,1,1,526336,1,5952.381,26.30253,0,11,1,44.43504,0,0,0,0,44.43504,0,0,0,1,0,3,93.6,0,0,97.7,0,199.2,0,0,1.098612,5.294309,0,0,0,0,0,0,97.7,8.691714,1.098612,3.794028,1
-11,5,0,1,2,526336,1,5952.381,27.30253,0,11,1,11.38952,0,0,0,0,11.38952,0,0,0,2,0,3,93.6,0,0,97.7,0,199.2,0,0,1.098612,5.294309,0,0,0,0,0,0,97.7,8.691714,1.098612,2.432694,1
-11,5,0,1,3,526336,1,5952.381,28.30253,0,11,1,39.10035,0,0,0,0,39.10035,0,0,0,4,0,4,93.6,0,0,97.7,0,199.2,0,0,1.386294,5.294309,0,0,0,0,0,0,97.7,8.691714,1.386294,3.666131,1
-11,5,0,1,1,526350,1,5138.249,26.87748,1,16,1,12.62095,14.5772,34.86748,0,0,62.06563,0,0,0,1,0,2,78.2,20.7,0,68.2,0,147.36,0,0,.6931472,4.992878,0,0,0,0,0,0,68.2,8.544662,.6931472,4.128192,1
-11,5,0,1,2,526350,1,5138.249,27.87748,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,78.2,20.7,0,68.2,0,147.36,0,0,.6931472,4.992878,0,0,0,0,0,0,68.2,8.544662,.6931472,,0
-11,5,0,1,1,526351,1,5138.249,5.598905,0,16,1,99.70551,14.03029,0,0,0,113.7358,0,0,0,3,0,2,83.3,10.57626,0,33.3,0,147.36,1,0,.6931472,4.992878,0,0,0,0,0,0,33.3,8.544662,.6931472,4.733878,1
-11,5,0,1,2,526351,1,5138.249,6.598905,0,16,1,41.17869,11.40914,0,0,0,52.58783,0,0,0,5,0,2,83.3,10.57626,0,33.3,0,147.36,1,0,.6931472,4.992878,0,0,0,0,0,0,33.3,8.544662,.6931472,3.962485,1
-7,5,25,1,1,526353,0,11349.56,28.5859,1,16,1,52.52726,11.49158,1.23885,0,0,65.25768,0,0,0,4,0,4,79.3,13.8,1,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.337023,1.386294,4.178344,1
-7,5,25,1,2,526353,0,11349.56,29.5859,1,16,1,21.1106,9.403396,0,0,0,30.514,0,0,0,2,0,4,79.3,13.8,1,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.337023,1.386294,3.418185,1
-7,5,25,1,3,526353,0,11349.56,30.5859,1,16,1,36.18006,21.5692,0,0,0,57.74926,0,0,0,4,0,4,79.3,13.8,1,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.337023,1.386294,4.05611,1
-7,5,25,1,4,526353,0,11349.56,31.5859,1,16,1,34.37854,2.077824,0,0,0,36.45637,0,0,0,3,0,4,79.3,13.8,1,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.337023,1.386294,3.596116,1
-7,5,25,1,5,526353,0,11349.56,32.5859,1,16,1,34.64837,4.686106,0,0,0,39.33448,0,0,0,4,0,4,79.3,13.8,1,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.337023,1.386294,3.672101,1
-7,5,25,1,1,526354,0,11349.56,2.422998,0,16,1,14.8662,3.592666,0,0,0,18.45887,0,0,0,2,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.337023,1.386294,2.915545,1
-7,5,25,1,2,526354,0,11349.56,3.422998,0,16,1,5.507113,9.449288,0,0,0,14.9564,0,0,0,1,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.337023,1.386294,2.705139,1
-7,5,25,1,3,526354,0,11349.56,4.422998,0,16,1,31.13168,11.07699,0,0,0,42.20867,0,0,0,4,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.337023,1.386294,3.742626,1
-7,5,25,1,4,526354,0,11349.56,5.422998,0,16,1,38.1564,2.595391,0,0,0,40.75179,0,0,0,3,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.337023,1.386294,3.7075,1
-7,5,25,1,5,526354,0,11349.56,6.422998,0,16,1,184.5626,5.526587,0,0,0,190.0892,0,0,0,10,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.337023,1.386294,5.247493,1
-7,5,25,1,1,526355,0,11349.56,5.549623,1,16,1,18.83052,0,0,0,0,18.83052,0,0,0,1,0,4,90,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92.6,9.337023,1.386294,2.935479,1
-7,5,25,1,2,526355,0,11349.56,6.549623,1,16,1,32.12483,0,0,0,0,32.12483,0,0,0,1,0,4,90,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92.6,9.337023,1.386294,3.469629,1
-7,5,25,1,3,526355,0,11349.56,7.549623,1,16,1,106.016,0,0,0,0,106.016,0,0,0,1,0,4,90,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92.6,9.337023,1.386294,4.66359,1
-7,5,25,1,4,526355,0,11349.56,8.549623,1,16,1,26.82282,0,19.64488,0,0,46.4677,0,0,0,2,0,4,90,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92.6,9.337023,1.386294,3.838758,1
-7,5,25,1,5,526355,0,11349.56,9.549623,1,16,1,18.18182,0,0,0,0,18.18182,0,0,0,2,0,4,90,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92.6,9.337023,1.386294,2.900422,1
-7,5,25,1,1,526356,0,11349.56,29.28131,0,13,1,157.0862,9.00892,0,0,0,166.0951,0,0,0,10,0,4,83.5,3.4,0,62.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.337023,1.386294,5.112561,1
-7,5,25,1,2,526356,0,11349.56,30.28131,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,3.4,0,62.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.337023,1.386294,,0
-7,5,25,1,3,526356,0,11349.56,31.28131,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,3.4,0,62.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.337023,1.386294,,0
-7,5,25,1,4,526356,0,11349.56,32.28131,0,13,1,64.03476,0,0,0,0,64.03476,0,0,0,3,0,4,83.5,3.4,0,62.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.337023,1.386294,4.159426,1
-7,5,25,1,5,526356,0,11349.56,33.28131,0,13,1,110.4631,10.96398,0,114.9228,614.9949,736.4219,1,0,9,3,0,4,83.5,3.4,0,62.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,62.5,9.337023,1.386294,6.601803,1
-13,5,0,1,1,526393,1,4862.775,8.533881,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.7,10.57626,0,66.7,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,66.7,8.489571,1.098612,,0
-13,5,0,1,2,526393,1,4862.775,9.533881,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.7,10.57626,0,66.7,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,66.7,8.489571,1.098612,,0
-13,5,0,1,3,526393,1,4862.775,10.53388,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.7,10.57626,0,66.7,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,66.7,8.489571,1.098612,,0
-13,5,0,1,1,526394,1,4862.775,14.61191,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,3.4,0,61.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.489571,1.098612,,0
-13,5,0,1,2,526394,1,4862.775,15.61191,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,3.4,0,61.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.489571,1.098612,,0
-13,5,0,1,3,526394,1,4862.775,16.61191,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,3.4,0,61.4,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.489571,1.098612,,0
-13,5,0,1,1,526395,1,4862.775,32.07118,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.9,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,78.4,8.489571,1.098612,,0
-13,5,0,1,2,526395,1,4862.775,33.07118,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.9,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,78.4,8.489571,1.098612,,0
-13,5,0,1,3,526395,1,4862.775,34.07118,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.9,10.3,0,78.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,78.4,8.489571,1.098612,,0
-16,5,95,0,1,526397,1,2311.179,7.655031,0,11,1,0,1.745636,0,0,0,1.745636,0,0,0,0,0,4,83.3,10.57626,0,96.3,210.6,210.6,1,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,96.3,7.745945,1.386294,.5571189,1
-16,5,95,0,2,526397,1,2311.179,8.655031,0,11,1,50.39188,3.204242,0,0,0,53.59613,0,0,0,0,0,4,83.3,10.57626,0,96.3,210.6,210.6,1,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,96.3,7.745945,1.386294,3.981477,1
-16,5,95,0,3,526397,1,2311.179,9.655031,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,96.3,210.6,210.6,1,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,96.3,7.745945,1.386294,,0
-16,5,95,0,4,526397,1,2311.179,10.65503,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,96.3,210.6,210.6,1,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,96.3,7.745945,1.386294,,0
-16,5,95,0,5,526397,1,2311.179,11.65503,0,11,1,12.80277,0,0,0,0,12.80277,0,0,0,1,0,4,83.3,10.57626,0,96.3,210.6,210.6,1,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,96.3,7.745945,1.386294,2.549661,1
-16,5,95,0,1,526398,1,2311.179,6.162902,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,100,10.57626,0,88.9,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,88.9,7.745945,1.386294,,0
-16,5,95,0,2,526398,1,2311.179,7.162902,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,100,10.57626,0,88.9,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,88.9,7.745945,1.386294,,0
-16,5,95,0,3,526398,1,2311.179,8.162902,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,100,10.57626,0,88.9,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,88.9,7.745945,1.386294,,0
-16,5,95,0,4,526398,1,2311.179,9.162902,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,100,10.57626,0,88.9,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,88.9,7.745945,1.386294,,0
-16,5,95,0,5,526398,1,2311.179,10.1629,1,11,1,12.80277,0,0,0,0,12.80277,0,0,0,1,0,4,100,10.57626,0,88.9,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,88.9,7.745945,1.386294,2.549661,1
-16,5,95,0,1,526399,1,2311.179,21.68652,1,11,1,8.72818,0,0,0,0,8.72818,0,0,0,0,0,4,67,24.1,0,46.2,210.6,210.6,0,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,46.2,7.745945,1.386294,2.166557,1
-16,5,95,0,2,526399,1,2311.179,22.68652,1,11,1,11.52605,0,25.81835,0,0,37.3444,0,0,0,0,1,4,67,24.1,0,46.2,210.6,210.6,0,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,46.2,7.745945,1.386294,3.620183,1
-16,5,95,0,3,526399,1,2311.179,23.68652,1,11,1,30.57554,0,0,0,144.7313,175.3068,1,0,0,2,0,4,67,24.1,0,46.2,210.6,210.6,0,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,46.2,7.745945,1.386294,5.166538,1
-16,5,95,0,4,526399,1,2311.179,24.68652,1,11,1,47.45634,1.628702,0,0,0,49.08504,0,0,0,1,0,4,67,24.1,0,46.2,210.6,210.6,0,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,46.2,7.745945,1.386294,3.893554,1
-16,5,95,0,5,526399,1,2311.179,25.68652,1,11,1,17.30104,5.948097,0,0,0,23.24913,0,0,0,2,0,4,67,24.1,0,46.2,210.6,210.6,0,0,1.386294,5.349961,0,4.564348,5.401254,0,0,0,46.2,7.745945,1.386294,3.146268,1
-16,5,95,0,1,526400,1,2311.179,1.097878,1,11,1,17.45636,1.142145,0,0,0,18.5985,0,0,0,0,0,4,77.40034,10.57626,0,59.3,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,59.3,7.745945,1.386294,2.923081,1
-16,5,95,0,2,526400,1,2311.179,2.097878,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,59.3,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,59.3,7.745945,1.386294,,0
-16,5,95,0,3,526400,1,2311.179,3.097878,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,59.3,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,59.3,7.745945,1.386294,,0
-16,5,95,0,4,526400,1,2311.179,4.097878,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,59.3,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,59.3,7.745945,1.386294,,0
-16,5,95,0,5,526400,1,2311.179,5.097878,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,59.3,210.6,210.6,1,1,1.386294,5.349961,0,4.564348,5.401254,0,0,0,59.3,7.745945,1.386294,,0
-6,5,25,1,1,526401,0,9282.13,58.13279,1,15,1,46.57592,0,0,0,0,46.57592,0,0,0,2,0,2,39.9,24.1,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.135954,.6931472,3.841084,1
-6,5,25,1,2,526401,0,9282.13,59.13279,1,15,1,31.48855,9.38168,34.90076,0,0,75.771,0,0,0,2,0,2,39.9,24.1,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.135954,.6931472,4.327715,1
-6,5,25,1,3,526401,0,9282.13,60.13279,1,15,1,74.21603,2.418118,19.56794,0,0,96.20209,0,0,0,3,0,2,39.9,24.1,0,84.1,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,84.1,9.135954,.6931472,4.566451,1
-6,5,25,1,1,526402,0,9282.13,59.75359,0,15,1,0,0,0,0,0,0,0,0,0,0,0,2,90.4,10.3,0,90.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.135954,.6931472,,0
-6,5,25,1,2,526402,0,9282.13,60.75359,0,15,1,22.90076,0,0,0,0,22.90076,0,0,0,1,0,2,90.4,10.3,0,90.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.135954,.6931472,3.13117,1
-6,5,25,1,3,526402,0,9282.13,61.75359,0,15,1,27.87457,1.714286,0,0,0,29.58885,0,0,0,2,0,2,90.4,10.3,0,90.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.135954,.6931472,3.387398,1
-19,5,25,0,1,526404,0,6674.895,8.005476,0,8,1,18.50277,0,0,0,0,18.50277,0,0,0,1,0,5,96.7,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,2.91792,1
-19,5,25,0,2,526404,0,6674.895,9.005476,0,8,1,11.45038,0,29.00763,0,0,40.45802,0,0,0,0,1,5,96.7,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,3.700265,1
-19,5,25,0,3,526404,0,6674.895,10.00548,0,8,1,20.90592,0,15.67944,0,0,36.58537,0,0,0,0,1,5,96.7,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,3.599648,1
-19,5,25,0,1,526405,0,6674.895,11.67967,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,80,10.57626,0,70.4,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,1,0,70.4,8.806258,1.609438,,0
-19,5,25,0,2,526405,0,6674.895,12.67967,1,8,1,31.5458,0,27.09924,0,0,58.64504,0,0,0,0,1,5,80,10.57626,0,70.4,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,1,0,70.4,8.806258,1.609438,4.071503,1
-19,5,25,0,3,526405,0,6674.895,13.67967,1,8,1,14.63415,0,0,0,0,14.63415,0,0,0,1,0,5,80,10.57626,0,70.4,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,1,0,70.4,8.806258,1.609438,2.683358,1
-19,5,25,0,1,526406,0,6674.895,31.45243,0,7,1,29.56189,4.389621,0,0,0,33.95151,0,0,0,3,0,5,55.9,6.9,0,48.9,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,48.9,8.806258,1.609438,3.524933,1
-19,5,25,0,2,526406,0,6674.895,32.45243,0,7,1,11.45038,67.21374,29.00763,0,0,107.6718,0,0,0,0,1,5,55.9,6.9,0,48.9,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,48.9,8.806258,1.609438,4.679087,1
-19,5,25,0,3,526406,0,6674.895,33.45243,0,7,1,27.52613,0,0,0,0,27.52613,0,0,0,1,0,5,55.9,6.9,0,48.9,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,48.9,8.806258,1.609438,3.315136,1
-19,5,25,0,1,526407,0,6674.895,27.93155,1,8,1,40.85495,0,0,0,0,40.85495,0,0,0,4,0,5,59.6,27.6,0,61.4,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,61.4,8.806258,1.609438,3.710028,1
-19,5,25,0,2,526407,0,6674.895,28.93155,1,8,1,9.541985,4.48855,0,0,0,14.03053,0,0,0,1,0,5,59.6,27.6,0,61.4,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,61.4,8.806258,1.609438,2.641236,1
-19,5,25,0,3,526407,0,6674.895,29.93155,1,8,1,32.75261,0,0,0,0,32.75261,0,0,0,2,0,5,59.6,27.6,0,61.4,750,0,0,0,1.609438,0,0,3.258096,8.006368,1,0,0,61.4,8.806258,1.609438,3.488983,1
-19,5,25,0,1,526408,0,6674.895,4.848734,0,8,1,31.26329,0,0,0,0,31.26329,0,0,0,2,0,5,77.40034,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,3.442445,1
-19,5,25,0,2,526408,0,6674.895,5.848734,0,8,1,7.633588,1.70229,0,0,0,9.335877,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,2.233865,1
-19,5,25,0,3,526408,0,6674.895,6.848734,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,1,0,0,85.2,8.806258,1.609438,,0
-13,5,0,0,1,526409,0,5878.648,56.69815,1,2,1,48.66695,25.99661,29.75878,0,0,104.4223,0,0,0,6,0,2,78.2,17.2,1,23.9,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,0,1,0,23.9,8.679253,.6931472,4.648444,1
-13,5,0,0,2,526409,0,5878.648,57.69815,1,2,1,45.55809,15.63402,21.64009,0,0,82.83219,0,0,0,5,1,2,78.2,17.2,1,23.9,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,0,1,0,23.9,8.679253,.6931472,4.416817,1
-13,5,0,0,3,526409,0,5878.648,58.69815,1,2,1,66.78201,34.67474,30.58824,0,0,132.045,0,0,0,7,0,2,78.2,17.2,1,23.9,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,0,1,0,23.9,8.679253,.6931472,4.883142,1
-13,5,0,0,1,526410,.4758801,3640.553,25.68378,0,12,1,80.40627,0,0,0,0,80.40627,0,0,0,3,0,2,78.7,3.4,0,59.1,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,1,0,0,59.1,8.200166,.6931472,4.387092,1
-13,5,0,0,2,526410,.4758801,3640.553,26.68378,0,12,1,45.55809,3.451025,0,0,0,49.00911,0,0,0,0,0,2,78.7,3.4,0,59.1,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,1,0,0,59.1,8.200166,.6931472,3.892006,1
-13,5,0,0,3,526410,.4758801,3640.553,27.68378,0,12,1,0,0,0,0,965.0519,965.0519,1,0,0,0,0,2,78.7,3.4,0,59.1,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,1,0,0,59.1,8.200166,.6931472,6.872182,1
-13,5,0,0,1,526411,0,5878.648,51.02533,0,9,1,10.57977,0,0,0,0,10.57977,0,0,0,2,0,2,76.6,10.3,0,61.4,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,1,0,0,61.4,8.679253,.6931472,2.358944,1
-13,5,0,0,2,526411,0,5878.648,52.02533,0,9,1,25.4366,6.43508,29.61276,0,0,61.48444,0,0,0,2,1,2,76.6,10.3,0,61.4,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,1,0,0,61.4,8.679253,.6931472,4.118784,1
-13,5,0,0,3,526411,0,5878.648,53.02533,0,9,1,85.81315,38.02422,0,0,1458.131,1581.969,1,0,0,4,0,2,76.6,10.3,0,61.4,300,669.84,0,0,.6931472,6.507039,1,4.564348,5.755076,1,0,0,61.4,8.679253,.6931472,7.366426,1
-7,5,25,1,1,526413,1,6674.895,18.81177,0,9,1,10.51746,0,24.40051,0,0,34.91796,0,0,0,0,1,4,85.6,6.9,0,73.9,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,73.9,8.806258,1.386294,3.553001,1
-7,5,25,1,2,526413,1,6674.895,19.81177,0,9,1,11.33358,0,0,0,0,11.33358,0,0,0,0,0,4,85.6,6.9,0,73.9,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,73.9,8.806258,1.386294,2.42777,1
-7,5,25,1,3,526413,1,6674.895,20.81177,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,85.6,6.9,0,73.9,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,73.9,8.806258,1.386294,,0
-7,5,25,1,1,526414,1,6674.895,17.53867,0,7,1,18.51073,0,22.71771,0,0,41.22844,0,0,0,0,1,4,29.3,10.3,1,43.2,750,0,1,0,1.386294,0,0,3.258096,8.006368,0,0,0,43.2,8.806258,1.386294,3.719128,1
-7,5,25,1,2,526414,1,6674.895,18.53867,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,29.3,10.3,1,43.2,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,43.2,8.806258,1.386294,,0
-7,5,25,1,3,526414,1,6674.895,19.53867,0,7,1,8.576329,0,22.64151,0,0,31.21784,0,0,0,0,1,4,29.3,10.3,1,43.2,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,43.2,8.806258,1.386294,3.44099,1
-7,5,25,1,1,526415,1,6674.895,14.00137,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,75,10.57626,1,70.4,750,0,1,1,1.386294,0,0,3.258096,8.006368,0,0,0,70.4,8.806258,1.386294,,0
-7,5,25,1,2,526415,1,6674.895,15.00137,1,7,1,7.555724,0,0,0,0,7.555724,0,0,0,0,0,4,75,10.57626,1,70.4,750,0,1,1,1.386294,0,0,3.258096,8.006368,0,0,0,70.4,8.806258,1.386294,2.022305,1
-7,5,25,1,3,526415,1,6674.895,16.00137,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,75,10.57626,1,70.4,750,0,1,1,1.386294,0,0,3.258096,8.006368,0,0,0,70.4,8.806258,1.386294,,0
-7,5,25,1,1,526417,1,6674.895,51.34839,1,7,1,36.22213,0,35.0021,0,0,71.22424,0,0,0,0,0,4,68.6,13.8,0,71.6,750,0,0,0,1.386294,0,0,3.258096,8.006368,1,0,0,71.6,8.806258,1.386294,4.265833,1
-7,5,25,1,2,526417,1,6674.895,52.34839,1,7,1,7.555724,0,0,0,0,7.555724,0,0,0,0,0,4,68.6,13.8,0,71.6,750,0,0,0,1.386294,0,0,3.258096,8.006368,1,0,0,71.6,8.806258,1.386294,2.022305,1
-7,5,25,1,3,526417,1,6674.895,53.34839,1,7,1,31.21784,3.749571,0,0,0,34.96741,0,0,0,1,0,4,68.6,13.8,0,71.6,750,0,0,0,1.386294,0,0,3.258096,8.006368,1,0,0,71.6,8.806258,1.386294,3.554416,1
-13,5,0,1,1,526424,1,6326.1,16.77481,0,11,1,8.977556,0,0,0,0,8.977556,0,0,0,1,0,4,80.3,0,0,78.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.752597,1.386294,2.194728,1
-13,5,0,1,2,526424,1,6326.1,17.77481,0,11,1,10.25818,5.758414,0,0,0,16.0166,0,0,0,0,0,4,80.3,0,0,78.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.752597,1.386294,2.773626,1
-13,5,0,1,1,526425,1,6326.1,36.42437,0,12,1,132.1696,60.48878,0,0,0,192.6584,0,0,0,5,0,4,72.9,6.9,0,51.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,51.1,8.752597,1.386294,5.260919,1
-13,5,0,1,2,526425,1,6326.1,37.42437,0,12,1,169.6634,31.42923,0,0,0,201.0927,0,0,0,11,0,4,72.9,6.9,0,51.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,51.1,8.752597,1.386294,5.303766,1
-13,5,0,1,3,526425,1,6326.1,38.42437,0,12,1,31.73932,2.094795,0,0,0,33.83411,0,0,0,1,0,4,72.9,6.9,0,51.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,51.1,8.752597,1.386294,3.521469,1
-13,5,0,1,4,526425,1,6326.1,39.42437,0,12,1,12.14882,6.27183,0,0,287.0159,305.4366,1,0,0,2,0,3,72.9,6.9,0,51.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,51.1,8.752597,1.098612,5.721742,1
-13,5,0,1,5,526425,1,6326.1,40.42437,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.9,6.9,0,51.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,51.1,8.752597,1.098612,,0
-13,5,0,1,1,526426,1,6326.1,14.38193,0,11,1,99.62594,0,0,0,0,99.62594,0,0,0,4,0,4,85.1,0,0,64.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.752597,1.386294,4.601423,1
-13,5,0,1,2,526426,1,6326.1,15.38193,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,0,0,64.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.752597,1.386294,,0
-13,5,0,1,3,526426,1,6326.1,16.38193,0,11,1,10.68557,0,0,0,0,10.68557,0,0,0,0,0,4,85.1,0,0,64.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.752597,1.386294,2.368894,1
-13,5,0,1,1,526427,1,6326.1,33.21561,1,11,1,12.46883,4.738154,0,0,0,17.20698,0,0,0,1,0,4,45.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.752597,1.386294,2.845315,1
-13,5,0,1,2,526427,1,6326.1,34.21561,1,11,1,103.0429,13.32872,0,0,581.835,698.2065,1,0,0,2,0,4,45.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.752597,1.386294,6.548515,1
-13,5,0,1,3,526427,1,6326.1,35.21561,1,11,1,0,0,3.762167,0,0,3.762167,0,0,0,0,0,4,45.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.752597,1.386294,1.324995,1
-13,5,0,1,4,526427,1,6326.1,36.21561,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,45.7,13.8,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.752597,1.098612,,0
-13,5,0,1,5,526427,1,6326.1,37.21561,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,45.7,13.8,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.752597,1.098612,,0
-11,5,0,0,1,526448,1,1998.976,14.09993,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,10.3,0,67,0,0,1,1,1.609438,0,0,0,0,0,0,0,67,7.600891,1.609438,,0
-11,5,0,0,2,526448,1,1998.976,15.09993,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,10.3,0,67,0,0,1,1,1.609438,0,0,0,0,0,0,0,67,7.600891,1.609438,,0
-11,5,0,0,3,526448,1,1998.976,16.09993,1,11,1,0,0,0,0,0,0,1,1,0,0,0,6,63.3,10.3,0,67,0,0,1,1,1.791759,0,0,0,0,0,0,0,67,7.600891,1.791759,,0
-11,5,0,0,1,526449,1,1998.976,17.57153,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,66.5,3.4,0,55.7,0,0,1,0,1.609438,0,0,0,0,0,0,0,55.7,7.600891,1.609438,,0
-11,5,0,0,2,526449,1,1998.976,18.57153,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,66.5,3.4,0,55.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,55.7,7.600891,1.609438,,0
-11,5,0,0,3,526449,1,1998.976,19.57153,0,11,1,10.38062,0,0,0,0,10.38062,0,0,0,0,0,6,66.5,3.4,0,55.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,55.7,7.600891,1.791759,2.339941,1
-11,5,0,0,1,526450,1,1998.976,16.53114,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,3.4,0,81.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.8,7.600891,1.609438,,0
-11,5,0,0,2,526450,1,1998.976,17.53114,1,11,1,0,0,0,0,0,0,1,1,0,0,0,5,73.4,3.4,0,81.8,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.8,7.600891,1.609438,,0
-11,5,0,0,3,526450,1,1998.976,18.53114,1,11,1,92.04152,0,0,0,0,92.04152,0,0,0,5,0,6,73.4,3.4,0,81.8,0,0,0,0,1.791759,0,0,0,0,0,0,0,81.8,7.600891,1.791759,4.52224,1
-11,5,0,0,1,526451,1,1998.976,45.02943,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,95.2,6.9,0,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,7.600891,1.609438,,0
-11,5,0,0,2,526451,1,1998.976,46.02943,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,95.2,6.9,0,87.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,87.5,7.600891,1.609438,,0
-11,5,0,0,3,526451,1,1998.976,47.02943,0,10,1,11.07266,0,0,0,0,11.07266,0,0,0,0,0,6,95.2,6.9,0,87.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,87.5,7.600891,1.791759,2.40448,1
-11,5,0,0,1,526452,1,1998.976,42.10267,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,80.3,13.8,0,72.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,72.7,7.600891,1.609438,,0
-11,5,0,0,2,526452,1,1998.976,43.10267,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,80.3,13.8,0,72.7,0,0,0,0,1.609438,0,0,0,0,0,0,0,72.7,7.600891,1.609438,,0
-11,5,0,0,3,526452,1,1998.976,44.10267,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,13.8,0,72.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,72.7,7.600891,1.791759,,0
-6,5,25,0,1,526457,1,1484.895,48.95551,1,6,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.57626,1,62.5,190.4,0,0,0,.6931472,0,0,3.258096,6.635421,0,1,0,62.5,7.303772,.6931472,,0
-6,5,25,0,2,526457,1,1484.895,49.95551,1,6,1,15.18603,0,0,0,0,15.18603,0,0,0,0,0,2,64.4,10.57626,1,62.5,190.4,0,0,0,.6931472,0,0,3.258096,6.635421,0,1,0,62.5,7.303772,.6931472,2.720376,1
-6,5,25,0,3,526457,1,1484.895,50.95551,1,6,1,0,0,0,0,0,0,0,0,0,0,0,1,64.4,10.57626,1,62.5,190.4,0,0,0,0,0,0,3.258096,6.635421,0,1,0,62.5,7.303772,0,,0
-10,5,50,0,1,526458,1,4537.243,40.77481,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,0,63.1,540,0,0,0,1.098612,0,0,3.931826,6.984716,1,0,0,63.1,8.420296,1.098612,,0
-10,5,50,0,2,526458,1,4537.243,41.77481,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,0,63.1,540,0,0,0,1.098612,0,0,3.931826,6.984716,1,0,0,63.1,8.420296,1.098612,,0
-10,5,50,0,3,526458,1,4537.243,42.77481,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,0,63.1,540,0,0,0,1.098612,0,0,3.931826,6.984716,1,0,0,63.1,8.420296,1.098612,,0
-10,5,50,0,4,526458,1,4537.243,43.77481,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,75.5,10.3,0,63.1,540,0,0,0,1.098612,0,0,3.931826,6.984716,1,0,0,63.1,8.420296,1.098612,,0
-10,5,50,0,5,526458,1,4537.243,44.77481,1,10,1,66.64411,0,0,0,2310.217,2376.861,1,0,0,1,0,3,75.5,10.3,0,63.1,540,0,0,0,1.098612,0,0,3.931826,6.984716,1,0,0,63.1,8.420296,1.098612,7.773536,1
-10,5,50,0,1,526459,1,4537.243,13.32786,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,74.1,540,0,1,0,1.098612,0,0,3.931826,6.984716,1,0,0,74.1,8.420296,1.098612,,0
-10,5,50,0,2,526459,1,4537.243,14.32786,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,74.1,540,0,1,0,1.098612,0,0,3.931826,6.984716,1,0,0,74.1,8.420296,1.098612,,0
-10,5,50,0,3,526459,1,4537.243,15.32786,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,74.1,540,0,1,0,1.098612,0,0,3.931826,6.984716,1,0,0,74.1,8.420296,1.098612,,0
-10,5,50,0,4,526459,1,4537.243,16.32786,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,74.1,540,0,1,0,1.098612,0,0,3.931826,6.984716,1,0,0,74.1,8.420296,1.098612,,0
-10,5,50,0,5,526459,1,4537.243,17.32786,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,74.1,540,0,1,0,1.098612,0,0,3.931826,6.984716,1,0,0,74.1,8.420296,1.098612,,0
-10,5,50,0,1,526460,1,4537.243,11.78097,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,76.7,10.57626,0,88.9,540,0,1,1,1.098612,0,0,3.931826,6.984716,1,0,0,88.9,8.420296,1.098612,,0
-10,5,50,0,2,526460,1,4537.243,12.78097,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,76.7,10.57626,0,88.9,540,0,1,1,1.098612,0,0,3.931826,6.984716,1,0,0,88.9,8.420296,1.098612,,0
-10,5,50,0,3,526460,1,4537.243,13.78097,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,76.7,10.57626,0,88.9,540,0,1,1,1.098612,0,0,3.931826,6.984716,1,0,0,88.9,8.420296,1.098612,,0
-10,5,50,0,4,526460,1,4537.243,14.78097,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,76.7,10.57626,0,88.9,540,0,1,1,1.098612,0,0,3.931826,6.984716,1,0,0,88.9,8.420296,1.098612,,0
-10,5,50,0,5,526460,1,4537.243,15.78097,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,76.7,10.57626,0,88.9,540,0,1,1,1.098612,0,0,3.931826,6.984716,1,0,0,88.9,8.420296,1.098612,,0
-13,5,0,0,1,526462,1,1185.868,14.36277,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,78.2,0,0,75,450,450,1,1,2.197225,6.109248,1,4.564348,6.160541,1,0,0,75,7.079073,2.197225,,0
-13,5,0,0,2,526462,1,1185.868,15.36277,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,78.2,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,75,7.079073,1.791759,,0
-13,5,0,0,3,526462,1,1185.868,16.36276,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,78.2,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,75,7.079073,1.791759,,0
-13,5,0,0,1,526463,1,1185.868,40.42163,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,80.3,17.2,1,38.6,450,450,0,0,2.197225,6.109248,1,4.564348,6.160541,1,0,0,38.6,7.079073,2.197225,,0
-13,5,0,0,2,526463,1,1185.868,41.42163,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,17.2,1,38.6,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,38.6,7.079073,1.791759,,0
-13,5,0,0,3,526463,1,1185.868,42.42163,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,17.2,1,38.6,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,38.6,7.079073,1.791759,,0
-13,5,0,0,1,526464,1,1185.868,9.995893,0,8,1,0,0,0,0,0,0,0,0,0,0,0,9,66.7,10.57626,0,70.4,450,450,1,0,2.197225,6.109248,1,4.564348,6.160541,1,0,0,70.4,7.079073,2.197225,,0
-13,5,0,0,2,526464,1,1185.868,10.99589,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,66.7,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,7.079073,1.791759,,0
-13,5,0,0,3,526464,1,1185.868,11.99589,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,66.7,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,70.4,7.079073,1.791759,,0
-13,5,0,0,1,526465,1,1185.868,18.98973,1,9,1,0,0,0,0,0,0,0,0,0,0,0,9,61.7,6.9,0,63.6,450,450,0,0,2.197225,6.109248,1,4.564348,6.160541,1,0,0,63.6,7.079073,2.197225,,0
-13,5,0,0,1,526466,1,1185.868,11.0883,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,85,10.57626,0,85.2,450,450,1,1,2.197225,6.109248,1,4.564348,6.160541,1,0,0,85.2,7.079073,2.197225,,0
-13,5,0,0,2,526466,1,1185.868,12.0883,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,85,10.57626,0,85.2,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,85.2,7.079073,1.791759,,0
-13,5,0,0,3,526466,1,1185.868,13.0883,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,85,10.57626,0,85.2,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,85.2,7.079073,1.791759,,0
-13,5,0,0,1,526467,1,1185.868,15.44969,0,8,1,0,0,0,0,0,0,0,0,0,0,0,9,83,3.4,0,68.2,450,450,1,0,2.197225,6.109248,1,4.564348,6.160541,1,0,0,68.2,7.079073,2.197225,,0
-13,5,0,0,2,526467,1,1185.868,16.44969,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,83,3.4,0,68.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,7.079073,1.791759,,0
-13,5,0,0,3,526467,1,1185.868,17.44969,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,83,3.4,0,68.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,7.079073,1.791759,,0
-13,5,0,0,1,526468,1,1185.868,12.8679,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,63.3,10.57626,0,81.5,450,450,1,1,2.197225,6.109248,1,4.564348,6.160541,1,0,0,81.5,7.079073,2.197225,,0
-13,5,0,0,2,526468,1,1185.868,13.8679,1,8,1,2.250563,0,0,0,0,2.250563,0,0,0,1,0,6,63.3,10.57626,0,81.5,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,81.5,7.079073,1.791759,.8111802,1
-13,5,0,0,3,526468,1,1185.868,14.8679,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,63.3,10.57626,0,81.5,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,81.5,7.079073,1.791759,,0
-13,5,0,0,1,526469,1,1185.868,17.78234,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,59,3.4,0,43.8,450,450,1,1,2.197225,6.109248,1,4.564348,6.160541,1,0,0,43.8,7.079073,2.197225,,0
-10,5,50,1,1,526470,1,4288.563,10.60643,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,1,59.3,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,59.3,8.36394,1.386294,,0
-10,5,50,1,2,526470,1,4288.563,11.60643,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,1,59.3,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,59.3,8.36394,1.386294,,0
-10,5,50,1,3,526470,1,4288.563,12.60643,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,1,59.3,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,59.3,8.36394,1.386294,,0
-10,5,50,1,4,526470,1,4288.563,13.60643,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,1,59.3,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,59.3,8.36394,1.386294,,0
-10,5,50,1,5,526470,1,4288.563,14.60643,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,1,59.3,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,59.3,8.36394,1.386294,,0
-10,5,50,1,1,526472,1,4288.563,8.013689,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,70.4,960.6,960.6,1,0,1.386294,6.867558,0,3.931826,7.560705,0,0,0,70.4,8.36394,1.386294,,0
-10,5,50,1,2,526472,1,4288.563,9.013689,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,70.4,960.6,960.6,1,0,1.386294,6.867558,0,3.931826,7.560705,0,0,0,70.4,8.36394,1.386294,,0
-10,5,50,1,3,526472,1,4288.563,10.01369,0,10,1,11.42615,0,0,0,0,11.42615,0,0,0,0,0,4,83.3,10.57626,0,70.4,960.6,960.6,1,0,1.386294,6.867558,0,3.931826,7.560705,0,0,0,70.4,8.36394,1.386294,2.435905,1
-10,5,50,1,4,526472,1,4288.563,11.01369,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,70.4,960.6,960.6,1,0,1.386294,6.867558,0,3.931826,7.560705,0,0,0,70.4,8.36394,1.386294,,0
-10,5,50,1,5,526472,1,4288.563,12.01369,0,10,1,21.28028,0,0,0,0,21.28028,0,0,0,0,0,4,83.3,10.57626,0,70.4,960.6,960.6,1,0,1.386294,6.867558,0,3.931826,7.560705,0,0,0,70.4,8.36394,1.386294,3.057781,1
-10,5,50,1,1,526473,1,4288.563,9.442847,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,66.7,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,66.7,8.36394,1.386294,,0
-10,5,50,1,2,526473,1,4288.563,10.44285,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,66.7,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,66.7,8.36394,1.386294,,0
-10,5,50,1,3,526473,1,4288.563,11.44285,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,66.7,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,66.7,8.36394,1.386294,,0
-10,5,50,1,4,526473,1,4288.563,12.44285,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,66.7,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,66.7,8.36394,1.386294,,0
-10,5,50,1,5,526473,1,4288.563,13.44285,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,66.7,960.6,960.6,1,1,1.386294,6.867558,0,3.931826,7.560705,0,0,0,66.7,8.36394,1.386294,,0
-10,5,50,1,1,526474,1,4288.563,30.08077,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,56.4,3.4,0,62.5,960.6,960.6,0,0,1.386294,6.867558,0,3.931826,7.560705,0,1,0,62.5,8.36394,1.386294,,0
-10,5,50,1,2,526474,1,4288.563,31.08077,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,56.4,3.4,0,62.5,960.6,960.6,0,0,1.386294,6.867558,0,3.931826,7.560705,0,1,0,62.5,8.36394,1.386294,,0
-10,5,50,1,3,526474,1,4288.563,32.08076,1,10,1,23.2755,0,0,0,0,23.2755,0,0,0,1,0,4,56.4,3.4,0,62.5,960.6,960.6,0,0,1.386294,6.867558,0,3.931826,7.560705,0,1,0,62.5,8.36394,1.386294,3.147401,1
-10,5,50,1,4,526474,1,4288.563,33.08076,1,10,1,19.36219,0,0,0,0,19.36219,0,0,0,1,0,4,56.4,3.4,0,62.5,960.6,960.6,0,0,1.386294,6.867558,0,3.931826,7.560705,0,1,0,62.5,8.36394,1.386294,2.963322,1
-10,5,50,1,5,526474,1,4288.563,34.08076,1,10,1,10.38062,0,0,0,0,10.38062,0,0,0,0,0,4,56.4,3.4,0,62.5,960.6,960.6,0,0,1.386294,6.867558,0,3.931826,7.560705,0,1,0,62.5,8.36394,1.386294,2.339941,1
-11,5,0,1,1,526482,1,9806.964,59.19781,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,13.8,0,88.1,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,88.1,9.19095,1.098612,,0
-11,5,0,1,2,526482,1,9806.964,60.19781,0,9,1,66.41222,0,0,0,0,66.41222,0,0,0,0,0,3,64.4,13.8,0,88.1,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,88.1,9.19095,1.098612,4.195881,1
-11,5,0,1,3,526482,1,9806.964,61.19781,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,64.4,13.8,0,88.1,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,88.1,9.19095,1.098612,,0
-11,5,0,0,1,526483,1,9806.964,32.15879,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,3.4,0,62.5,0,777.6,0,0,1.098612,6.656212,0,0,0,0,0,0,62.5,9.19095,1.098612,,0
-11,5,0,0,2,526483,1,9806.964,33.15879,1,11,1,22.13741,6.240458,0,0,0,28.37786,0,0,0,3,0,3,77.7,3.4,0,62.5,0,777.6,0,0,1.098612,6.656212,0,0,0,0,0,0,62.5,9.19095,1.098612,3.345609,1
-11,5,0,0,3,526483,1,9806.964,34.15879,1,11,1,26.82927,21.28223,0,0,0,48.1115,0,0,0,2,1,3,77.7,3.4,0,62.5,0,777.6,0,0,1.098612,6.656212,0,0,0,0,0,0,62.5,9.19095,1.098612,3.873521,1
-11,5,0,0,1,526484,1,9806.964,50.9514,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,79.1,20.7,0,70.2,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,70.2,9.19095,1.098612,,0
-11,5,0,0,2,526484,1,9806.964,51.9514,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,79.1,20.7,0,70.2,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,70.2,9.19095,1.098612,,0
-11,5,0,0,3,526484,1,9806.964,52.9514,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,79.1,20.7,0,70.2,0,777.6,0,0,1.098612,6.656212,0,0,0,0,1,0,70.2,9.19095,1.098612,,0
-13,5,0,1,1,526485,1,3130.205,18.55989,1,9,1,0,0,0,0,306.7393,306.7393,1,1,0,0,0,4,82.4,0,1,72.7,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.386294,5.725998,1
-13,5,0,1,2,526485,1,3130.205,19.55989,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,0,1,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,,0
-13,5,0,1,3,526485,1,3130.205,20.55989,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,82.4,0,1,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,,0
-13,5,0,1,4,526485,1,3130.205,21.55989,1,9,1,10.9558,7.457499,0,0,208.538,226.9513,1,1,0,2,0,5,82.4,0,1,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,5.424735,1
-13,5,0,1,5,526485,1,3130.205,22.55989,1,9,1,167.6844,1.876501,0,0,855.9177,1025.479,1,0,0,7,0,7,82.4,0,1,72.7,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.94591,6.932915,1
-13,5,0,1,1,526486,1,3130.205,48.23272,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,13.8,0,84.1,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,84.1,8.049173,1.386294,,0
-13,5,0,1,2,526486,1,3130.205,49.23272,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,13.8,0,84.1,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,84.1,8.049173,1.609438,,0
-13,5,0,1,3,526486,1,3130.205,50.23272,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,83.5,13.8,0,84.1,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,84.1,8.049173,1.609438,,0
-13,5,0,1,4,526486,1,3130.205,51.23272,1,10,1,11.33358,0,0,0,0,11.33358,0,0,0,1,0,5,83.5,13.8,0,84.1,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,84.1,8.049173,1.609438,2.42777,1
-13,5,0,1,5,526486,1,3130.205,52.23272,1,10,1,8.576329,0,25.68782,0,0,34.26415,0,0,0,1,0,7,83.5,13.8,0,84.1,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,84.1,8.049173,1.94591,3.5341,1
-13,5,0,1,1,526487,1,3130.205,22.91034,1,14,1,8.671952,0,0,0,0,8.671952,0,0,0,0,0,4,63.8,0,0,72.7,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.386294,2.160094,1
-13,5,0,1,2,526487,1,3130.205,23.91034,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,63.8,0,0,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,,0
-13,5,0,1,3,526487,1,3130.205,24.91034,1,14,1,30.10097,9.785444,0,0,0,39.88641,0,0,0,3,1,5,63.8,0,0,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,3.686036,1
-13,5,0,1,4,526487,1,3130.205,25.91034,1,14,1,55.91235,0,0,0,630.5251,686.4375,1,0,0,3,0,5,63.8,0,0,72.7,450,0,0,0,1.609438,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.609438,6.531515,1
-13,5,0,1,5,526487,1,3130.205,26.91034,1,14,1,13.20755,0,0,0,0,13.20755,0,0,0,2,0,7,63.8,0,0,72.7,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,72.7,8.049173,1.94591,2.580788,1
-13,5,0,1,1,526488,1,3130.205,3.154004,0,10,1,3.964321,0,0,0,0,3.964321,0,0,0,1,0,4,77.40034,10.57626,0,81.5,450,0,1,0,1.386294,0,1,4.564348,6.160541,1,0,0,81.5,8.049173,1.386294,1.377335,1
-13,5,0,1,2,526488,1,3130.205,4.154004,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,81.5,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,81.5,8.049173,1.609438,,0
-13,5,0,1,3,526488,1,3130.205,5.154004,0,10,1,56.45772,3.496003,0,0,0,59.95372,0,0,0,3,1,5,77.40034,10.57626,0,81.5,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,81.5,8.049173,1.609438,4.093573,1
-13,5,0,1,4,526488,1,3130.205,6.154004,0,10,1,19.0782,0,0,0,0,19.0782,0,0,0,1,0,5,77.40034,10.57626,0,81.5,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,81.5,8.049173,1.609438,2.948546,1
-13,5,0,1,5,526488,1,3130.205,7.154004,0,10,1,65.1801,0,0,0,0,65.1801,0,0,0,2,1,7,77.40034,10.57626,0,81.5,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,8.049173,1.94591,4.177154,1
-16,5,95,1,1,526489,1,8746.032,25.44285,1,12,1,35.77201,.8379413,0,0,0,36.60995,0,0,0,0,0,3,56.4,17.2,1,53.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.076469,1.098612,3.60032,1
-16,5,95,1,2,526489,1,8746.032,26.44285,1,12,1,30.53435,3.843511,0,0,461.8321,496.2099,1,0,0,3,0,3,56.4,17.2,1,53.4,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.076469,1.098612,6.206999,1
-16,5,95,1,3,526489,1,8746.032,27.44285,1,12,1,318.4669,18.19164,0,0,0,336.6585,0,0,0,7,0,4,56.4,17.2,1,53.4,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,53.4,9.076469,1.386294,5.819069,1
-16,5,95,1,1,526490,1,8746.032,2.732375,1,12,1,56.4228,1.650362,0,0,0,58.07316,0,0,0,1,0,3,77.40034,10.57626,0,85.2,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.076469,1.098612,4.061704,1
-16,5,95,1,2,526490,1,8746.032,3.732375,1,12,1,0,2.167939,0,0,0,2.167939,0,0,0,0,0,3,77.40034,10.57626,0,85.2,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.076469,1.098612,.7737769,1
-16,5,95,1,3,526490,1,8746.032,4.732375,1,12,1,15.67944,3.376307,0,0,0,19.05575,0,0,0,2,0,4,77.40034,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,85.2,9.076469,1.386294,2.947369,1
-16,5,95,1,1,526491,1,8746.032,27.93429,0,12,1,14.03658,6.358996,0,0,0,20.39558,0,0,0,3,0,3,57.4,13.8,0,54.5,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.076469,1.098612,3.015318,1
-16,5,95,1,2,526491,1,8746.032,28.93429,0,12,1,35.49618,8.053435,0,0,0,43.54962,0,0,0,4,0,3,57.4,13.8,0,54.5,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.076469,1.098612,3.773901,1
-16,5,95,1,3,526491,1,8746.032,29.93429,0,12,1,25.08711,5.979094,0,0,0,31.0662,0,0,0,3,0,4,57.4,13.8,0,54.5,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,54.5,9.076469,1.386294,3.436121,1
-11,5,0,1,1,526508,0,4352.791,60.84873,0,6,1,14.88728,0,0,0,0,14.88728,0,0,0,1,0,2,80.9,10.3,0,73.9,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,73.9,8.378802,.6931472,2.700507,1
-11,5,0,1,2,526508,0,4352.791,61.84873,0,6,1,77.48092,4.770992,33.74046,0,0,115.9924,0,0,0,3,0,2,80.9,10.3,0,73.9,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,73.9,8.378802,.6931472,4.753524,1
-11,5,0,1,3,526508,0,4352.791,62.84873,0,6,1,54.3554,16.09756,0,0,0,70.45296,0,0,0,4,0,2,80.9,10.3,0,73.9,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,73.9,8.378802,.6931472,4.254945,1
-11,5,0,1,1,526509,0,4352.791,59.82204,1,12,1,46.7886,147.6478,0,0,0,194.4364,0,0,0,5,0,2,85.1,10.3,0,59.1,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,59.1,8.378802,.6931472,5.270105,1
-11,5,0,1,2,526509,0,4352.791,60.82204,1,12,1,173.2824,197.3664,55.57252,0,0,426.2214,0,0,0,6,0,2,85.1,10.3,0,59.1,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,59.1,8.378802,.6931472,6.054959,1
-11,5,0,1,3,526509,0,4352.791,61.82204,1,12,1,54.3554,282.9024,0,0,0,337.2578,0,0,0,8,0,2,85.1,10.3,0,59.1,0,565.28,0,0,.6931472,6.337321,0,0,0,1,0,0,59.1,8.378802,.6931472,5.820848,1
-14,5,95,1,1,526511,1,7497.361,57.16632,1,10,1,47.07631,91.32805,0,0,0,138.4044,0,0,0,5,0,2,94.7,10.3,0,64.8,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,64.8,8.92244,.6931472,4.93018,1
-14,5,95,1,2,526511,1,7497.361,58.16632,1,10,1,32.12483,112.4782,0,0,0,144.603,0,0,0,4,0,2,94.7,10.3,0,64.8,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,64.8,8.92244,.6931472,4.973992,1
-14,5,95,1,3,526511,1,7497.361,59.16632,1,10,1,27.34539,97.33277,0,0,0,124.6782,0,0,0,4,0,2,94.7,10.3,0,64.8,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,64.8,8.92244,.6931472,4.825736,1
-14,5,95,1,4,526511,1,7497.361,60.16632,1,10,1,30.22289,70.09822,0,0,0,100.3211,0,0,0,4,0,2,94.7,10.3,0,64.8,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,64.8,8.92244,.6931472,4.608376,1
-14,5,95,1,5,526511,1,7497.361,61.16632,1,10,1,37.73585,102.0583,0,0,0,139.7942,0,0,0,5,0,2,94.7,10.3,0,64.8,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,64.8,8.92244,.6931472,4.940171,1
-14,5,95,1,1,526512,1,7497.361,58.91307,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,87.4,10.3,0,69,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,69,8.92244,.6931472,,0
-14,5,95,1,2,526512,1,7497.361,59.91307,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,87.4,10.3,0,69,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,69,8.92244,.6931472,,0
-14,5,95,1,3,526512,1,7497.361,60.91307,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,87.4,10.3,0,69,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,69,8.92244,.6931472,,0
-14,5,95,1,4,526512,1,7497.361,61.91307,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,87.4,10.3,0,69,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,69,8.92244,.6931472,,0
-14,5,95,1,5,526512,1,7497.361,62.91307,0,9,1,8.576329,0,0,0,0,8.576329,0,0,0,1,0,2,87.4,10.3,0,69,650,650,0,0,.6931472,6.476973,0,4.564348,6.528265,0,1,0,69,8.92244,.6931472,2.149006,1
-13,5,0,1,1,526513,0,13789.04,32.14237,0,20,1,134.2028,40.80354,0,0,0,175.0063,0,0,0,9,0,3,86.2,20.7,0,53.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,53.4,9.531702,1.098612,5.164822,1
-13,5,0,1,2,526513,0,13789.04,33.14237,0,20,1,54.02342,42.31583,102.0023,0,0,198.3415,0,0,0,5,1,3,86.2,20.7,0,53.4,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,53.4,9.531702,1.098612,5.28999,1
-13,5,0,1,3,526513,0,13789.04,34.14237,0,20,1,43.2247,36.31561,111.4923,0,0,191.0326,0,0,0,4,2,4,86.2,20.7,0,53.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,53.4,9.531702,1.386294,5.252444,1
-16,5,95,0,1,526517,0,7100.871,33.68378,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,97.3,0,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,8.868114,1.098612,,0
-16,5,95,0,2,526517,0,7100.871,34.68378,0,15,1,28.71175,10.26445,0,0,0,38.9762,0,0,0,3,1,3,97.3,0,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,8.868114,1.098612,3.662951,1
-16,5,95,0,3,526517,0,7100.871,35.68378,0,15,1,24.35678,1.766724,0,0,0,26.1235,0,0,0,2,0,3,97.3,0,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,8.868114,1.098612,3.262835,1
-16,5,95,0,1,526518,0,7100.871,30.53525,1,15,1,0,0,0,0,0,0,0,0,0,0,0,3,99.5,3.4,0,98.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,98.9,8.868114,1.098612,,0
-16,5,95,0,2,526518,0,7100.871,31.53525,1,15,1,159.8036,0,7.555724,0,0,167.3593,0,0,0,1,6,3,99.5,3.4,0,98.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,98.9,8.868114,1.098612,5.120143,1
-16,5,95,0,3,526518,0,7100.871,32.53525,1,15,1,506.3465,0,0,0,0,506.3465,0,0,0,0,55,3,99.5,3.4,0,98.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,98.9,8.868114,1.098612,6.227221,1
-13,5,0,1,1,526519,0,7826.421,57.17728,1,11,1,98.68141,7.179924,32.02042,0,0,137.8818,0,0,0,2,0,2,84,10.3,0,68.2,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,68.2,8.965388,.6931472,4.926396,1
-13,5,0,1,2,526519,0,7826.421,58.17728,1,11,1,150,3.496183,23.0229,0,0,176.5191,0,0,0,8,0,2,84,10.3,0,68.2,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,68.2,8.965388,.6931472,5.173429,1
-13,5,0,1,3,526519,0,7826.421,59.17728,1,11,1,81.88153,9.331011,0,0,0,91.21255,0,0,0,2,0,2,84,10.3,0,68.2,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,68.2,8.965388,.6931472,4.513193,1
-13,5,0,1,1,526520,0,7826.421,57.28405,0,11,1,78.26456,144.4789,23.15185,0,0,245.8954,0,0,0,3,0,2,79.3,27.6,1,39.8,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,39.8,8.965388,.6931472,5.504906,1
-13,5,0,1,2,526520,0,7826.421,58.28405,0,11,1,76.71756,134.3359,6.729008,0,0,217.7824,0,0,0,2,0,2,79.3,27.6,1,39.8,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,39.8,8.965388,.6931472,5.383497,1
-13,5,0,1,3,526520,0,7826.421,59.28405,0,11,1,146.6899,159.8606,47.10104,0,0,353.6516,0,0,0,4,0,2,79.3,27.6,1,39.8,300,646.44,0,0,.6931472,6.47148,1,4.564348,5.755076,0,0,0,39.8,8.965388,.6931472,5.868312,1
-13,5,0,1,1,526546,0,5216.078,31.41957,0,17,1,31.90132,1.807741,31.59507,133.9855,0,65.30412,0,0,7,3,0,1,66.5,13.8,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,75,8.559692,0,4.179055,1
-13,5,0,1,2,526546,0,5216.078,32.41957,0,17,1,29.00763,0,7.541985,171.7557,0,36.54962,0,0,9,2,0,1,66.5,13.8,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,75,8.559692,0,3.598671,1
-13,5,0,1,3,526546,0,5216.078,33.41957,0,17,1,49.82578,0,24.64112,216.0279,0,74.4669,0,0,12,4,1,1,66.5,13.8,0,75,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,75,8.559692,0,4.310355,1
-7,5,25,0,1,526549,1,4071.685,11.81383,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,95,10.57626,.1442925,63,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,8.312057,1.791759,,0
-7,5,25,0,2,526549,1,4071.685,12.81383,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,95,10.57626,.1442925,63,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,8.312057,1.791759,,0
-7,5,25,0,3,526549,1,4071.685,13.81383,1,14,1,41.34948,3.847751,0,0,0,45.19723,0,0,0,3,0,6,95,10.57626,.1442925,63,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,63,8.312057,1.791759,3.811036,1
-7,5,25,0,1,526550,1,4071.685,17.24025,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,67.6,17.2,0,73.9,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.312057,1.791759,,0
-7,5,25,0,2,526550,1,4071.685,18.24025,1,14,1,9.491268,0,32.27031,0,0,41.76158,0,0,0,0,1,6,67.6,17.2,0,73.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.312057,1.791759,3.731977,1
-7,5,25,0,3,526550,1,4071.685,19.24025,1,14,1,19.37716,8.702422,0,0,0,28.07958,0,0,0,1,0,6,67.6,17.2,0,73.9,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,73.9,8.312057,1.791759,3.335043,1
-7,5,25,0,1,526551,1,4071.685,47.46064,1,14,1,89.29327,28.58654,0,0,0,117.8798,0,0,0,7,0,6,55.9,20.7,1,30.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,1,0,30.7,8.312057,1.791759,4.769666,1
-7,5,25,0,2,526551,1,4071.685,48.46064,1,14,1,109.9089,58.8041,32.27031,0,0,200.9833,0,0,0,6,1,6,55.9,20.7,1,30.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,1,0,30.7,8.312057,1.791759,5.303222,1
-7,5,25,0,3,526551,1,4071.685,49.46064,1,14,1,271.1073,66.73357,0,0,0,337.8408,0,0,0,9,14,6,55.9,20.7,1,30.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,1,0,30.7,8.312057,1.791759,5.822575,1
-7,5,25,0,1,526552,1,4071.685,10.05339,1,14,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,10.57626,.1442925,40.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,1,0,40.7,8.312057,1.791759,,0
-7,5,25,0,2,526552,1,4071.685,11.05339,1,14,1,0,0,0,0,904.328,904.328,1,0,0,0,0,6,86.7,10.57626,.1442925,40.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,1,0,40.7,8.312057,1.791759,6.807192,1
-7,5,25,0,3,526552,1,4071.685,12.05339,1,14,1,145.6747,23.9308,0,0,389.2733,558.8789,1,1,0,7,0,6,86.7,10.57626,.1442925,40.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,1,0,40.7,8.312057,1.791759,6.325933,1
-7,5,25,0,1,526553,1,4071.685,48.6653,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.1,13.8,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.312057,1.791759,,0
-7,5,25,0,2,526553,1,4071.685,49.6653,0,10,1,9.491268,0,32.27031,0,0,41.76158,0,0,0,0,1,6,93.1,13.8,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.312057,1.791759,3.731977,1
-7,5,25,0,3,526553,1,4071.685,50.6653,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.1,13.8,0,85.2,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,85.2,8.312057,1.791759,,0
-7,5,25,0,1,526554,1,4071.685,14.63655,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,84,3.4,0,69.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.312057,1.791759,,0
-7,5,25,0,2,526554,1,4071.685,15.63655,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,84,3.4,0,69.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.312057,1.791759,,0
-7,5,25,0,3,526554,1,4071.685,16.63655,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,84,3.4,0,69.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,69.3,8.312057,1.791759,,0
-11,5,0,0,1,526592,0,3431.644,19.34292,0,8,1,90.45435,2.76782,26.67778,0,0,119.9,0,0,0,3,1,2,77.7,20.7,0,54.5,0,92.4,0,0,.6931472,4.526127,0,0,0,0,0,1,54.5,8.141086,.6931472,4.786658,1
-11,5,0,0,2,526592,0,3431.644,20.34292,0,8,1,73.51838,10.76519,0,0,0,84.28357,0,0,0,5,1,2,77.7,20.7,0,54.5,0,92.4,0,0,.6931472,4.526127,0,0,0,0,0,1,54.5,8.141086,.6931472,4.434187,1
-11,5,0,0,3,526592,0,3431.644,21.34292,0,8,1,348.1901,47.09066,30.44655,0,0,425.7273,0,0,0,15,1,2,77.7,20.7,0,54.5,0,92.4,0,0,.6931472,4.526127,0,0,0,0,0,1,54.5,8.141086,.6931472,6.053799,1
-11,5,0,0,1,526593,0,3431.644,53.72211,1,7,1,209.0454,31.70488,34.18091,0,0,274.9312,0,0,0,14,1,2,84.6,24.1,0,67,0,92.4,0,0,.6931472,4.526127,0,0,0,0,1,0,67,8.141086,.6931472,5.616521,1
-11,5,0,0,2,526593,0,3431.644,54.72211,1,7,1,50.63766,18.89347,0,0,427.2318,496.7629,1,0,0,4,0,2,84.6,24.1,0,67,0,92.4,0,0,.6931472,4.526127,0,0,0,0,1,0,67,8.141086,.6931472,6.208113,1
-11,5,0,0,3,526593,0,3431.644,55.72211,1,7,1,319.0122,23.73816,30.44655,0,0,373.1969,0,0,0,7,2,2,84.6,24.1,0,67,0,92.4,0,0,.6931472,4.526127,0,0,0,0,1,0,67,8.141086,.6931472,5.922106,1
-17,5,25,1,1,526599,1,1638.505,43.96714,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,46.8,13.8,1,71.6,47.35,0,0,0,.6931472,0,0,3.258096,5.243861,1,0,0,71.6,7.40215,.6931472,,0
-17,5,25,1,2,526599,1,1638.505,44.96714,1,12,1,33.96947,3.622137,0,0,0,37.5916,0,0,0,7,0,2,46.8,13.8,1,71.6,47.35,0,0,0,.6931472,0,0,3.258096,5.243861,1,0,0,71.6,7.40215,.6931472,3.626781,1
-17,5,25,1,3,526599,1,1638.505,45.96714,1,12,1,24.39024,6.365854,0,0,0,30.7561,0,0,0,3,0,2,46.8,13.8,1,71.6,47.35,0,0,0,.6931472,0,0,3.258096,5.243861,1,0,0,71.6,7.40215,.6931472,3.426088,1
-17,5,25,1,1,526600,1,1638.505,15.25257,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,76.1,47.35,0,1,1,.6931472,0,0,3.258096,5.243861,0,0,0,76.1,7.40215,.6931472,,0
-17,5,25,1,2,526600,1,1638.505,16.25257,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,76.1,47.35,0,1,1,.6931472,0,0,3.258096,5.243861,0,0,0,76.1,7.40215,.6931472,,0
-17,5,25,1,3,526600,1,1638.505,17.25257,1,12,1,26.1324,0,0,0,0,26.1324,0,0,0,2,0,2,86.7,0,0,76.1,47.35,0,1,1,.6931472,0,0,3.258096,5.243861,0,0,0,76.1,7.40215,.6931472,3.263176,1
-16,5,95,1,1,526608,1,4859.824,4.440794,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,100,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,100,8.488963,1.791759,,0
-16,5,95,1,2,526608,1,4859.824,5.440794,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,100,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,100,8.488963,1.791759,,0
-16,5,95,1,3,526608,1,4859.824,6.440794,0,11,1,14.5772,1.99411,0,0,0,16.57131,0,0,0,2,0,6,77.40034,10.57626,0,100,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,100,8.488963,1.791759,2.807673,1
-16,5,95,1,4,526608,1,4859.824,7.440794,0,11,1,40.04533,3.456743,0,18.88931,0,43.50208,0,0,1,0,0,6,77.40034,10.57626,0,100,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,100,8.488963,1.791759,3.772809,1
-16,5,95,1,5,526608,1,4859.824,8.440794,0,11,1,33.27616,6.26072,0,0,0,39.53688,0,0,0,0,0,5,77.40034,10.57626,0,100,900,900,1,0,1.609438,6.802395,0,4.564348,6.853688,1,0,0,100,8.488963,1.609438,3.677234,1
-16,5,95,1,1,526609,1,4859.824,34.84189,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,62.3,20.7,0,66.7,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,66.7,8.488963,1.791759,,0
-16,5,95,1,2,526609,1,4859.824,35.84189,1,11,1,15.83295,5.323543,0,0,0,21.15649,0,0,0,2,0,6,62.3,20.7,0,66.7,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,66.7,8.488963,1.791759,3.051947,1
-16,5,95,1,3,526609,1,4859.824,36.84189,1,11,1,25.19983,8.169962,0,0,0,33.36979,0,0,0,4,0,6,62.3,20.7,0,66.7,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,66.7,8.488963,1.791759,3.507651,1
-16,5,95,1,4,526609,1,4859.824,37.84189,1,11,1,298.8289,71.5527,61.44692,0,1670.193,2102.021,2,0,0,12,0,6,62.3,20.7,0,66.7,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,66.7,8.488963,1.791759,7.650655,1
-16,5,95,1,5,526609,1,4859.824,38.84189,1,11,1,116.4666,40.55575,0,0,0,157.0223,0,0,0,5,0,5,62.3,20.7,0,66.7,900,900,0,0,1.609438,6.802395,0,4.564348,6.853688,0,1,0,66.7,8.488963,1.609438,5.056388,1
-16,5,95,1,1,526610,1,4859.824,40.32854,0,6,1,25.27255,7.408325,0,0,0,32.68087,0,0,0,0,0,6,61.2,0,0,54.8,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,54.8,8.488963,1.791759,3.48679,1
-16,5,95,1,2,526610,1,4859.824,41.32854,0,6,1,0,0,0,0,0,0,0,0,0,0,0,6,61.2,0,0,54.8,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,54.8,8.488963,1.791759,,0
-16,5,95,1,3,526610,1,4859.824,42.32854,0,6,1,0,8.350863,0,0,0,8.350863,0,0,0,0,0,6,61.2,0,0,54.8,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,54.8,8.488963,1.791759,2.122365,1
-16,5,95,1,4,526610,1,4859.824,43.32854,0,6,.8169399,0,0,0,0,0,0,0,0,0,0,0,6,61.2,0,0,54.8,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,0,1,0,54.8,8.488963,1.791759,,0
-16,5,95,1,1,526611,1,4859.824,10.34086,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,10.57626,0,88.9,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,,0
-16,5,95,1,2,526611,1,4859.824,11.34086,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,10.57626,0,88.9,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,,0
-16,5,95,1,3,526611,1,4859.824,12.34086,1,11,1,6.310475,1.001262,0,0,0,7.311738,0,0,0,1,0,6,83.3,10.57626,0,88.9,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,1.989481,1
-16,5,95,1,4,526611,1,4859.824,13.34086,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,83.3,10.57626,0,88.9,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,,0
-16,5,95,1,5,526611,1,4859.824,14.34086,1,11,1,35.16295,0,0,0,0,35.16295,0,0,0,2,0,5,83.3,10.57626,0,88.9,900,900,1,1,1.609438,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.609438,3.559993,1
-16,5,95,1,1,526612,1,4859.824,15.8193,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91,3.4,0,80.7,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,80.7,8.488963,1.791759,,0
-16,5,95,1,2,526612,1,4859.824,16.8193,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91,3.4,0,80.7,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,80.7,8.488963,1.791759,,0
-16,5,95,1,3,526612,1,4859.824,17.8193,1,11,1,8.687421,0,0,0,0,8.687421,0,0,0,1,0,6,91,3.4,0,80.7,900,900,1,1,1.791759,6.802395,0,4.564348,6.853688,1,0,0,80.7,8.488963,1.791759,2.161876,1
-16,5,95,1,4,526612,1,4859.824,18.8193,1,11,1,4.533434,4.760106,0,0,0,9.29354,0,0,0,1,0,6,91,3.4,0,80.7,900,900,0,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,80.7,8.488963,1.791759,2.22932,1
-16,5,95,1,5,526612,1,4859.824,19.8193,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,91,3.4,0,80.7,900,900,0,0,1.609438,6.802395,0,4.564348,6.853688,1,0,0,80.7,8.488963,1.609438,,0
-16,5,95,1,1,526613,1,4859.824,11.8193,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,10.57626,0,88.9,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,,0
-16,5,95,1,2,526613,1,4859.824,12.8193,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,10.57626,0,88.9,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,,0
-16,5,95,1,3,526613,1,4859.824,13.8193,0,11,1,16.40724,0,0,0,0,16.40724,0,0,0,0,0,6,78.3,10.57626,0,88.9,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,2.797723,1
-16,5,95,1,4,526613,1,4859.824,14.8193,0,11,1,102.3801,12.41028,0,0,0,114.7903,0,0,0,6,0,6,78.3,10.57626,0,88.9,900,900,1,0,1.791759,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.791759,4.743107,1
-16,5,95,1,5,526613,1,4859.824,15.8193,0,11,1,30.87479,0,0,0,0,30.87479,0,0,0,3,0,5,78.3,10.57626,0,88.9,900,900,1,0,1.609438,6.802395,0,4.564348,6.853688,1,0,0,88.9,8.488963,1.609438,3.42994,1
-13,5,0,1,1,526655,0,6674.895,51.12115,1,12,1,186.204,326.2378,22.00592,0,0,534.4478,0,0,0,9,0,3,74.5,24.1,0,28.4,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,1,28.4,8.806258,1.098612,6.281234,1
-13,5,0,1,2,526655,0,6674.895,52.12115,1,12,1,198.7471,386.6932,0,0,0,585.4404,0,0,0,10,0,3,74.5,24.1,0,28.4,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,1,28.4,8.806258,1.098612,6.372365,1
-13,5,0,1,3,526655,0,6674.895,53.12115,1,12,1,257.4395,508.4429,23.87543,0,0,789.7578,0,0,0,12,0,3,74.5,24.1,0,28.4,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,1,28.4,8.806258,1.098612,6.671726,1
-13,5,0,1,1,526656,0,6674.895,18.0397,1,10.96978,1,94.79475,82.39526,14.60008,0,355.6919,547.482,1,0,0,18,0,3,81.4,10.3,0,52.3,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,0,52.3,8.806258,1.098612,6.30533,1
-13,5,0,1,2,526656,0,6674.895,19.0397,1,10.96978,1,197.2285,33.94077,0,0,0,231.1693,0,0,0,13,0,3,81.4,10.3,0,52.3,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,0,52.3,8.806258,1.098612,5.443151,1
-13,5,0,1,3,526656,0,6674.895,20.0397,1,10.96978,1,285.8131,174.9481,0,0,3334.948,3795.709,2,0,0,11,5,3,81.4,10.3,0,52.3,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,0,0,52.3,8.806258,1.098612,8.241627,1
-13,5,0,1,1,526657,0,6674.895,55.40589,0,12,1,168.6839,35.52687,48.85315,0,842.9962,1096.06,1,0,0,6,0,3,81.4,10.3,1,48.9,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,1,0,48.9,8.806258,1.098612,6.999477,1
-13,5,0,1,2,526657,0,6674.895,56.40589,0,12,1,24.6773,24.25968,0,0,550.8732,599.8102,1,0,0,4,0,3,81.4,10.3,1,48.9,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,1,0,48.9,8.806258,1.098612,6.396613,1
-13,5,0,1,3,526657,0,6674.895,57.40589,0,12,1,131.8339,37.24913,18.3391,0,0,187.4221,0,0,0,5,0,3,81.4,10.3,1,48.9,450,646.36,0,0,1.098612,6.471356,1,4.564348,6.160541,0,1,0,48.9,8.806258,1.098612,5.233364,1
-11,5,0,1,1,526658,0,6100.871,25.79603,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,79.5,0,290.42,0,0,0,5.671328,0,0,0,0,0,0,79.5,8.716351,0,,0
-11,5,0,1,2,526658,0,6100.871,26.79603,0,14,1,57.70691,9.035687,0,0,62.64237,129.385,1,1,0,4,0,1,67,0,0,79.5,0,290.42,0,0,0,5.671328,0,0,0,0,0,0,79.5,8.716351,0,4.862792,1
-11,5,0,1,3,526658,0,6100.871,27.79603,0,14,1,130.4498,0,0,0,0,130.4498,0,0,0,3,0,1,67,0,0,79.5,0,290.42,0,0,0,5.671328,0,0,0,0,0,0,79.5,8.716351,0,4.870989,1
-14,5,95,1,1,526671,0,6674.895,29.11431,0,7,1,26.23783,0,0,0,0,26.23783,0,0,0,1,0,3,89.4,10.3,0,73.9,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,73.9,8.806258,1.098612,3.267202,1
-14,5,95,1,2,526671,0,6674.895,30.11431,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,10.3,0,73.9,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,73.9,8.806258,1.098612,,0
-14,5,95,1,3,526671,0,6674.895,31.11431,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,10.3,0,73.9,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,73.9,8.806258,1.098612,,0
-14,5,95,1,1,526672,0,6674.895,29.87269,1,8,1,66.0601,0,0,0,0,66.0601,0,0,0,3,0,3,43.6,20.7,0,45.5,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,45.5,8.806258,1.098612,4.190565,1
-14,5,95,1,2,526672,0,6674.895,30.87269,1,8,1,105.391,33.37889,0,0,0,138.7699,0,0,0,5,0,3,43.6,20.7,0,45.5,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,45.5,8.806258,1.098612,4.932817,1
-14,5,95,1,3,526672,0,6674.895,31.87269,1,8,1,89.61938,17.49135,34.25605,0,0,141.3668,0,0,0,2,1,3,43.6,20.7,0,45.5,313.5,396.24,0,0,1.098612,5.98202,0,4.564348,5.799093,1,0,0,45.5,8.806258,1.098612,4.951358,1
-11,5,0,1,1,526699,0,9155.146,30.56263,0,16,1,111.2992,38.88277,18.48498,0,0,168.6669,0,0,0,6,3,3,67,6.9,0,60.2,0,915.72,0,0,1.098612,6.819711,0,0,0,0,0,0,60.2,9.122181,1.098612,5.127926,1
-11,5,0,1,2,526699,0,9155.146,31.56263,0,16,1,58.84586,10.5391,46.78056,0,0,116.1655,0,0,0,7,0,4,67,6.9,0,60.2,0,915.72,0,0,1.386294,6.819711,0,0,0,0,0,0,60.2,9.122181,1.386294,4.755016,1
-11,5,0,1,3,526699,0,9155.146,32.56263,0,16,1,25.95156,27.12111,15.11419,0,0,68.18685,0,0,0,1,0,4,67,6.9,0,60.2,0,915.72,0,0,1.386294,6.819711,0,0,0,0,0,0,60.2,9.122181,1.386294,4.222252,1
-11,5,0,1,1,526700,0,9155.146,29.30595,1,16,1,24.54507,19.79687,0,0,883.6225,927.9645,1,0,0,1,0,3,86.7,10.3,0,81.8,0,915.72,0,0,1.098612,6.819711,0,0,0,1,0,0,81.8,9.122181,1.098612,6.832994,1
-11,5,0,1,2,526700,0,9155.146,30.30595,1,16,1,43.65983,8.686408,3.037206,0,0,55.38345,0,0,0,3,0,4,86.7,10.3,0,81.8,0,915.72,0,0,1.386294,6.819711,0,0,0,1,0,0,81.8,9.122181,1.386294,4.014281,1
-11,5,0,1,3,526700,0,9155.146,31.30595,1,16,1,0,1.6609,0,0,0,1.6609,0,0,0,0,0,4,86.7,10.3,0,81.8,0,915.72,0,0,1.386294,6.819711,0,0,0,1,0,0,81.8,9.122181,1.386294,.5073594,1
-13,5,0,0,1,526708,0,1901.178,23.40315,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66.5,10.3,0,67,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67,7.550755,0,,0
-13,5,0,0,2,526708,0,1901.178,24.40315,0,12,1,88.83827,0,0,0,0,88.83827,0,0,0,4,0,1,66.5,10.3,0,67,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67,7.550755,0,4.486817,1
-13,5,0,0,3,526708,0,1901.178,25.40315,0,12,1,6.401384,4.910035,0,0,0,11.31142,0,0,0,0,0,1,66.5,10.3,0,67,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,67,7.550755,0,2.425813,1
-11,5,0,1,1,526733,1,6674.895,19.26899,1,10,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,10.3,0,61.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,61.4,8.806258,1.098612,,0
-11,5,0,1,2,526733,1,6674.895,20.26899,1,10,1,6.870229,0,0,0,391.4122,398.2824,1,0,0,1,0,3,71.8,10.3,0,61.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,61.4,8.806258,1.098612,5.987162,1
-11,5,0,1,3,526733,1,6674.895,21.26899,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,71.8,10.3,0,61.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,61.4,8.806258,1.386294,,0
-11,5,0,1,1,526734,1,6674.895,38.83368,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,0,0,79.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,79.8,8.806258,1.098612,,0
-11,5,0,1,2,526734,1,6674.895,39.83368,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,0,0,79.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,79.8,8.806258,1.098612,,0
-11,5,0,1,3,526734,1,6674.895,40.83368,1,9,1,468.9895,15.45296,0,0,2681.882,3166.324,1,0,0,10,0,4,77.7,0,0,79.8,0,0,0,0,1.386294,0,0,0,0,1,0,0,79.8,8.806258,1.386294,8.060327,1
-6,5,25,1,1,526810,0,6674.895,12.87885,0,5,1,21.80377,1.154608,0,0,370.1685,393.1269,1,0,0,3,0,3,95,10.57626,0,92.6,498.11,498.11,1,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,92.6,8.806258,1.098612,5.974133,1
-6,5,25,1,2,526810,0,6674.895,13.87885,0,5,1,5.507113,4.584672,0,0,0,10.09179,0,0,0,1,0,3,95,10.57626,0,92.6,498.11,498.11,1,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,92.6,8.806258,1.098612,2.311722,1
-6,5,25,1,3,526810,0,6674.895,14.87885,0,5,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,92.6,498.11,498.11,1,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,92.6,8.806258,1.098612,,0
-6,5,25,1,4,526810,0,6674.895,15.87885,0,5,1,74.80166,0,0,0,0,74.80166,0,0,0,3,0,3,95,10.57626,0,92.6,498.11,498.11,1,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,92.6,8.806258,1.098612,4.31484,1
-6,5,25,1,5,526810,0,6674.895,16.87885,0,5,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,92.6,498.11,498.11,1,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,92.6,8.806258,1.098612,,0
-6,5,25,1,1,526811,0,6674.895,19.5373,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.3,0,51.1,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,51.1,8.806258,1.098612,,0
-6,5,25,1,2,526811,0,6674.895,20.5373,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.3,0,51.1,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,51.1,8.806258,1.098612,,0
-6,5,25,1,3,526811,0,6674.895,21.5373,0,8,1,33.65587,0,0,0,370.3576,404.0135,1,0,0,1,0,3,86.7,10.3,0,51.1,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,51.1,8.806258,1.098612,6.001448,1
-6,5,25,1,4,526811,0,6674.895,22.5373,0,8,1,0,2.942954,0,0,444.6543,447.5973,1,0,0,0,0,3,86.7,10.3,0,51.1,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,51.1,8.806258,1.098612,6.103894,1
-6,5,25,1,5,526811,0,6674.895,23.5373,0,8,1,0,0,0,0,365.3516,365.3516,1,0,0,0,0,3,86.7,10.3,0,51.1,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,51.1,8.806258,1.098612,5.90086,1
-6,5,25,1,1,526813,0,6674.895,54.36003,1,5,1,19.32607,0,19.82161,0,0,39.14767,0,0,0,1,1,3,72.3,6.9,0,46.6,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,46.6,8.806258,1.098612,3.667341,1
-6,5,25,1,2,526813,0,6674.895,55.36003,1,5,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,6.9,0,46.6,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,46.6,8.806258,1.098612,,0
-6,5,25,1,3,526813,0,6674.895,56.36003,1,5,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,6.9,0,46.6,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,46.6,8.806258,1.098612,,0
-6,5,25,1,4,526813,0,6674.895,57.36003,1,5,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,6.9,0,46.6,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,46.6,8.806258,1.098612,,0
-6,5,25,1,5,526813,0,6674.895,58.36003,1,5,1,6.174957,6.243568,0,0,0,12.41852,0,0,0,1,0,3,72.3,6.9,0,46.6,498.11,498.11,0,0,1.098612,6.210821,0,3.258096,7.597116,0,0,0,46.6,8.806258,1.098612,2.519189,1
-13,5,0,1,1,526817,0,4175.115,25.25667,1,14,1,31.73932,7.816335,26.44943,0,0,66.00508,0,0,0,2,0,2,91,3.4,0,86.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.9,8.337136,.6931472,4.189732,1
-13,5,0,1,2,526817,0,4175.115,26.25667,1,14,1,0,4.927866,0,0,0,4.927866,0,0,0,0,0,2,91,3.4,0,86.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.9,8.337136,.6931472,1.594906,1
-13,5,0,1,3,526817,0,4175.115,27.25667,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,91,3.4,0,86.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,86.9,8.337136,.6931472,,0
-13,5,0,1,1,526818,0,4175.115,7.86037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,0,85.2,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,85.2,8.337136,.6931472,,0
-13,5,0,1,2,526818,0,4175.115,8.86037,1,14,1,23.08276,0,0,0,0,23.08276,0,0,0,0,0,2,96.7,10.57626,0,85.2,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,85.2,8.337136,.6931472,3.139086,1
-13,5,0,1,3,526818,0,4175.115,9.86037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,0,85.2,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,85.2,8.337136,.6931472,,0
-11,5,0,1,1,526872,0,6674.895,26.84463,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,75,0,91,0,0,1.386294,4.510859,0,0,0,1,0,0,75,8.806258,1.386294,,0
-11,5,0,1,2,526872,0,6674.895,27.84463,0,12,1,188.232,0,0,0,0,188.232,0,0,0,2,15,4,84,3.4,0,75,0,91,0,0,1.386294,4.510859,0,0,0,1,0,0,75,8.806258,1.386294,5.237675,1
-11,5,0,1,3,526872,0,6674.895,28.84463,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,84,3.4,0,75,0,91,0,0,0,4.510859,0,0,0,1,0,0,75,8.806258,0,,0
-11,5,0,1,1,526873,0,6674.895,24.49829,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,48.4,13.8,0,40.9,0,91,0,0,1.386294,4.510859,0,0,0,1,0,0,40.9,8.806258,1.386294,,0
-11,5,0,1,2,526873,0,6674.895,25.49829,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,48.4,13.8,0,40.9,0,91,0,0,1.386294,4.510859,0,0,0,1,0,0,40.9,8.806258,1.386294,,0
-11,5,0,1,1,526874,0,6674.895,5.71937,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,81.5,0,91,1,1,1.386294,4.510859,0,0,0,1,0,0,81.5,8.806258,1.386294,,0
-11,5,0,1,2,526874,0,6674.895,6.71937,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,81.5,0,91,1,1,1.386294,4.510859,0,0,0,1,0,0,81.5,8.806258,1.386294,,0
-11,5,0,1,1,526905,0,12254.48,23.39494,1,12,1,60.02501,16.44018,0,0,1457.795,1534.26,1,0,0,4,0,2,93.1,13.8,0,85.2,0,624.78,0,0,.6931472,6.437399,0,0,0,0,0,0,85.2,9.413729,.6931472,7.335804,1
-7,5,25,0,1,526920,0,7929.339,57.2512,0,12,1,72.36012,0,0,0,0,72.36012,0,0,0,4,0,2,90.4,13.8,0,89.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,89.8,8.978451,.6931472,4.281655,1
-7,5,25,0,2,526920,0,7929.339,58.2512,0,12,1,32.11182,0,0,0,0,32.11182,0,0,0,3,0,2,90.4,13.8,0,89.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,89.8,8.978451,.6931472,3.469224,1
-7,5,25,0,3,526920,0,7929.339,59.2512,0,12,1,173.2419,0,0,0,0,173.2419,0,0,0,3,0,2,90.4,13.8,0,89.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,89.8,8.978451,.6931472,5.154689,1
-7,5,25,0,1,526921,0,7929.339,59.70431,1,10,1,24.40051,5.039966,0,0,0,29.44047,0,0,0,2,0,2,83,6.9,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.978451,.6931472,3.38237,1
-7,5,25,0,2,526921,0,7929.339,60.70431,1,10,1,28.71175,0,0,0,0,28.71175,0,0,0,1,0,2,83,6.9,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.978451,.6931472,3.357306,1
-7,5,25,0,3,526921,0,7929.339,61.70431,1,10,1,19.89708,0,0,0,0,19.89708,0,0,0,1,0,2,83,6.9,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.978451,.6931472,2.990573,1
-13,5,0,0,1,527049,1,166.4106,50.94045,1,12,1,15.23487,35.67499,0,0,0,50.90986,0,0,0,2,0,1,65.4,6.9,0,85.2,150,290.42,0,0,0,5.671328,1,4.564348,5.061929,0,0,0,85.2,5.12045,0,3.930057,1
-13,5,0,0,2,527049,1,166.4106,51.94045,1,12,1,7.593014,13.09415,0,0,0,20.68717,0,0,0,1,0,1,65.4,6.9,0,85.2,150,290.42,0,0,0,5.671328,1,4.564348,5.061929,0,0,0,85.2,5.12045,0,3.029514,1
-13,5,0,0,3,527049,1,166.4106,52.94045,1,12,1,13.84083,5.989619,0,0,0,19.83045,0,0,0,2,0,1,65.4,6.9,0,85.2,150,290.42,0,0,0,5.671328,1,4.564348,5.061929,0,0,0,85.2,5.12045,0,2.987219,1
-19,5,25,1,1,527069,1,6352.791,35.62765,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,0,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,8.756806,1.098612,,0
-19,5,25,1,2,527069,1,6352.791,36.62765,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,0,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,8.756806,1.098612,,0
-19,5,25,1,3,527069,1,6352.791,37.62765,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.6,0,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,8.756806,1.098612,,0
-19,5,25,1,1,527070,1,6352.791,9.081451,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,96.3,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.756806,1.098612,,0
-19,5,25,1,2,527070,1,6352.791,10.08145,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,96.3,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.756806,1.098612,,0
-19,5,25,1,3,527070,1,6352.791,11.08145,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,96.3,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.756806,1.098612,,0
-19,5,25,1,1,527071,1,6352.791,31.10746,1,12,1,124.8413,0,0,0,0,124.8413,0,0,0,7,0,3,89.4,3.4,0,71.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.756806,1.098612,4.827044,1
-19,5,25,1,2,527071,1,6352.791,32.10746,1,12,1,11.38952,0,0,0,0,11.38952,0,0,0,2,0,3,89.4,3.4,0,71.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.756806,1.098612,2.432694,1
-19,5,25,1,3,527071,1,6352.791,33.10746,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,89.4,3.4,0,71.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,71.6,8.756806,1.098612,,0
-16,5,95,1,1,527076,1,5160.266,12.86516,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,1,74.1,315.15,315.15,1,1,1.386294,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.386294,,0
-16,5,95,1,2,527076,1,5160.266,13.86516,1,10,1,72.13364,0,29.21792,0,0,101.3516,0,0,0,9,1,4,85,10.57626,1,74.1,315.15,315.15,1,1,1.386294,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.386294,4.618595,1
-16,5,95,1,3,527076,1,5160.266,14.86516,1,10,1,92.38754,0,26.62976,0,0,119.0173,0,0,0,0,1,5,85,10.57626,1,74.1,315.15,315.15,1,1,1.609438,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.609438,4.779269,1
-16,5,95,1,1,527077,1,5160.266,11.89596,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,1,74.1,315.15,315.15,1,0,1.386294,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.386294,,0
-16,5,95,1,2,527077,1,5160.266,12.89596,0,10,1,20.88079,0,28.42825,0,0,49.30904,0,0,0,1,1,4,85,10.57626,1,74.1,315.15,315.15,1,0,1.386294,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.386294,3.898107,1
-16,5,95,1,3,527077,1,5160.266,13.89596,0,10,1,133.564,0,27.34948,0,193.4256,354.3391,1,0,0,1,1,5,85,10.57626,1,74.1,315.15,315.15,1,0,1.609438,5.753049,0,4.564348,5.804342,1,0,0,74.1,8.548937,1.609438,5.870255,1
-16,5,95,1,1,527078,1,5160.266,30.40109,1,10,1,8.040627,2.094795,0,0,0,10.13542,0,0,0,0,0,4,74.5,13.8,0,69,315.15,315.15,0,0,1.386294,5.753049,0,4.564348,5.804342,0,0,0,69,8.548937,1.386294,2.316036,1
-16,5,95,1,2,527078,1,5160.266,31.40109,1,10,1,11.38952,0,28.67122,0,496.2035,536.2642,1,0,0,0,1,4,74.5,13.8,0,69,315.15,315.15,0,0,1.386294,5.753049,0,4.564348,5.804342,0,0,0,69,8.548937,1.386294,6.284627,1
-16,5,95,1,3,527078,1,5160.266,32.4011,1,10,1,241.8685,0,28.42561,0,0,270.2941,0,0,0,6,1,5,74.5,13.8,0,69,315.15,315.15,0,0,1.609438,5.753049,0,4.564348,5.804342,0,0,0,69,8.548937,1.609438,5.599511,1
-11,5,0,1,1,527083,0,5990.271,53.71937,0,12,1,115.5311,129.052,29.92806,0,1062.992,1337.503,1,0,0,15,0,3,81.9,17.2,1,40.9,0,512.72,0,0,1.098612,6.23973,0,0,0,0,0,1,40.9,8.698059,1.098612,7.19856,1
-11,5,0,1,2,527083,0,5990.271,54.71937,0,12,1,24.6773,155.6264,0,0,0,180.3037,0,0,0,4,0,3,81.9,17.2,1,40.9,0,512.72,0,0,1.098612,6.23973,0,0,0,0,0,1,40.9,8.698059,1.098612,5.194643,1
-11,5,0,1,3,527083,0,5990.271,55.71937,0,12,1,138.0623,239.2388,33.10727,0,0,410.4083,0,0,0,12,0,3,81.9,17.2,1,40.9,0,512.72,0,0,1.098612,6.23973,0,0,0,0,0,1,40.9,8.698059,1.098612,6.017152,1
-11,5,0,1,1,527084,0,5990.271,53.84531,1,12,1,276.9784,173.0004,0,0,0,449.9789,0,0,0,14,0,3,81.4,24.1,1,44.3,0,512.72,0,0,1.098612,6.23973,0,0,0,0,1,0,44.3,8.698059,1.098612,6.1092,1
-11,5,0,1,2,527084,0,5990.271,54.84531,1,12,1,119.59,111.5034,0,0,0,231.0934,0,0,0,16,0,3,81.4,24.1,1,44.3,0,512.72,0,0,1.098612,6.23973,0,0,0,0,1,0,44.3,8.698059,1.098612,5.442822,1
-11,5,0,1,3,527084,0,5990.271,55.84531,1,12,1,125.0865,233.9239,32.24913,0,0,391.2595,0,0,0,14,0,3,81.4,24.1,1,44.3,0,512.72,0,0,1.098612,6.23973,0,0,0,0,1,0,44.3,8.698059,1.098612,5.969371,1
-11,5,0,1,1,527085,0,5990.271,14.32991,1,12,1,62.20906,53.96953,29.92806,0,0,146.1066,0,0,0,8,0,3,85.6,3.4,0,89.3,0,512.72,1,1,1.098612,6.23973,0,0,0,0,0,0,89.3,8.698059,1.098612,4.984337,1
-11,5,0,1,2,527085,0,5990.271,15.32991,1,12,1,33.40926,33.65604,0,0,0,67.0653,0,0,0,4,0,3,85.6,3.4,0,89.3,0,512.72,1,1,1.098612,6.23973,0,0,0,0,0,0,89.3,8.698059,1.098612,4.205667,1
-11,5,0,1,3,527085,0,5990.271,16.32991,1,12,1,71.28027,31.6263,27.34602,0,0,130.2526,0,0,0,10,0,3,85.6,3.4,0,89.3,0,512.72,1,1,1.098612,6.23973,0,0,0,0,0,0,89.3,8.698059,1.098612,4.869475,1
-13,5,0,1,1,527088,1,3327.189,17.26215,1,7,1,0,0,28.18679,0,0,28.18679,0,0,0,0,0,2,86.7,0,0,92,450,450,1,1,.6931472,6.109248,1,4.564348,6.160541,0,1,0,92,8.110184,.6931472,3.338853,1
-13,5,0,1,2,527088,1,3327.189,18.26215,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,0,0,92,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,92,8.110184,.6931472,,0
-13,5,0,1,3,527088,1,3327.189,19.26215,1,7,1,99.14236,2.415094,0,0,0,101.5575,0,0,0,1,3,2,86.7,0,0,92,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,92,8.110184,.6931472,4.620625,1
-13,5,0,1,1,527089,1,3327.189,49.9603,1,7,1,33.65587,28.06058,0,0,0,61.71645,0,0,0,4,0,2,80.3,24.1,0,52.3,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,52.3,8.110184,.6931472,4.12255,1
-13,5,0,1,2,527089,1,3327.189,50.9603,1,7,1,85.37968,22.00227,0,0,0,107.3819,0,0,0,7,0,2,80.3,24.1,0,52.3,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,52.3,8.110184,.6931472,4.676392,1
-13,5,0,1,3,527089,1,3327.189,51.9603,1,7,1,337.5643,100.4185,32.247,0,0,470.2299,0,0,0,11,3,2,80.3,24.1,0,52.3,450,450,0,0,.6931472,6.109248,1,4.564348,6.160541,0,1,0,52.3,8.110184,.6931472,6.153222,1
-11,5,0,0,1,527119,0,8663.343,26.45311,1,14,1,152.6185,43.22195,27.49127,0,560.9227,784.2544,1,0,0,6,1,4,84.6,17.2,0,81.8,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,81.8,9.066972,1.386294,6.664733,1
-11,5,0,0,2,527119,0,8663.343,27.45311,1,14,1,63.62379,43.83126,0,0,0,107.455,0,0,0,5,0,4,84.6,17.2,0,81.8,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,81.8,9.066972,1.386294,4.677073,1
-11,5,0,0,3,527119,0,8663.343,28.45311,1,14,1,97.54549,33.71561,0,0,0,131.2611,0,0,0,3,1,4,84.6,17.2,0,81.8,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,81.8,9.066972,1.386294,4.877189,1
-11,5,0,0,4,527119,0,8663.343,29.45311,1,14,1,54.29005,6.51101,29.61276,0,0,90.41382,0,0,0,2,1,4,84.6,17.2,0,81.8,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,81.8,9.066972,1.386294,4.504397,1
-11,5,0,0,5,527119,0,8663.343,30.45311,1,14,1,30.41522,18.76125,23.59862,0,616.263,689.0381,1,0,0,0,1,4,84.6,17.2,0,81.8,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,81.8,9.066972,1.386294,6.535296,1
-11,5,0,0,1,527120,0,8663.343,26.81725,0,16,1,126.6833,7.127182,5.680798,0,0,139.4913,0,0,0,5,0,4,85.1,0,0,73.9,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,73.9,9.066972,1.386294,4.938002,1
-11,5,0,0,2,527120,0,8663.343,27.81725,0,16,1,6.915629,0,0,0,0,6.915629,0,0,0,1,0,4,85.1,0,0,73.9,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,73.9,9.066972,1.386294,1.933784,1
-11,5,0,0,3,527120,0,8663.343,28.81725,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,0,0,73.9,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,73.9,9.066972,1.386294,,0
-11,5,0,0,4,527120,0,8663.343,29.81725,0,16,1,43.28018,4.605163,0,0,0,47.88535,0,0,0,2,0,4,85.1,0,0,73.9,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,73.9,9.066972,1.386294,3.868809,1
-11,5,0,0,5,527120,0,8663.343,30.81725,0,16,1,20.76125,2.352941,0,0,0,23.11419,0,0,0,2,0,4,85.1,0,0,73.9,0,911.56,0,0,1.386294,6.815157,0,0,0,1,0,0,73.9,9.066972,1.386294,3.140447,1
-11,5,0,0,1,527121,0,8663.343,2.861054,1,14,1,20.44888,8.309227,0,0,0,28.7581,0,0,0,2,0,4,77.40034,10.57626,0,66.7,0,911.56,1,1,1.386294,6.815157,0,0,0,1,0,0,66.7,9.066972,1.386294,3.35892,1
-11,5,0,0,2,527121,0,8663.343,3.861054,1,14,1,0,.9589673,0,0,0,.9589673,0,0,0,0,0,4,77.40034,10.57626,0,66.7,0,911.56,1,1,1.386294,6.815157,0,0,0,1,0,0,66.7,9.066972,1.386294,-.0418983,1
-11,5,0,0,3,527121,0,8663.343,4.861054,1,14,1,65.17139,3.829877,0,0,0,69.00127,0,0,0,5,0,4,77.40034,10.57626,0,66.7,0,911.56,1,1,1.386294,6.815157,0,0,0,1,0,0,66.7,9.066972,1.386294,4.234125,1
-11,5,0,0,4,527121,0,8663.343,5.861054,1,14,1,12.14882,5.307517,0,0,0,17.45634,0,0,0,1,0,4,77.40034,10.57626,0,66.7,0,911.56,1,1,1.386294,6.815157,0,0,0,1,0,0,66.7,9.066972,1.386294,2.859703,1
-11,5,0,0,5,527121,0,8663.343,6.861054,1,14,1,25.95156,11.00346,0,0,0,36.95502,0,0,0,2,0,4,77.40034,10.57626,0,66.7,0,911.56,1,1,1.386294,6.815157,0,0,0,1,0,0,66.7,9.066972,1.386294,3.609701,1
-13,5,0,1,1,527125,0,199.4135,19.53456,1,12,1,58.96806,11.94103,0,0,795.8428,866.7518,1,0,0,2,0,1,59.6,0,0,69.3,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,69.3,5.300383,0,6.764753,1
-13,5,0,1,2,527125,0,199.4135,20.53456,1,12,1,22.78942,3.19052,0,0,0,25.97995,0,0,0,2,0,2,59.6,0,0,69.3,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,69.3,5.300383,.6931472,3.257325,1
-13,5,0,1,3,527125,0,199.4135,21.53456,1,12,1,34.59775,0,0,0,0,34.59775,0,0,0,0,0,2,59.6,0,0,69.3,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,69.3,5.300383,.6931472,3.543789,1
-13,5,0,1,4,527125,0,199.4135,22.53456,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,59.6,0,0,69.3,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,69.3,5.300383,.6931472,,0
-13,5,0,1,5,527125,0,199.4135,23.53456,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,59.6,0,0,69.3,150,150,0,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,69.3,5.300383,.6931472,,0
-7,5,25,0,1,527131,0,5484.383,15.68515,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,10.3,0,79.5,459.15,459.15,1,0,.6931472,6.129377,0,3.258096,7.515671,0,0,0,79.5,8.609842,.6931472,,0
-7,5,25,0,1,527133,0,5484.383,38.89664,1,12,1,104.6269,0,0,0,866.6111,971.238,1,0,0,9,0,2,68.1,6.9,0,56.8,459.15,459.15,0,0,.6931472,6.129377,0,3.258096,7.515671,1,0,0,56.8,8.609842,.6931472,6.878572,1
-13,5,0,1,1,527139,1,7584.229,57.83984,0,16,1,49.22171,0,0,0,0,49.22171,0,0,0,1,0,2,78.2,27.6,0,56.8,300,309.6,0,0,.6931472,5.735281,1,4.564348,5.755076,1,0,0,56.8,8.933958,.6931472,3.896335,1
-13,5,0,1,2,527139,1,7584.229,58.83984,0,16,.6065574,57.04571,90.07178,0,0,6083.491,6230.608,2,0,0,3,0,2,78.2,27.6,0,56.8,300,309.6,0,0,.6931472,5.735281,1,4.564348,5.755076,1,0,0,56.8,8.933958,.6931472,8.737229,1
-13,5,0,1,1,527140,1,7584.229,53.19096,1,15,1,46.69752,0,0,0,0,46.69752,0,0,0,3,0,2,78.7,34.5,1,40.5,300,309.6,0,0,.6931472,5.735281,1,4.564348,5.755076,0,1,0,40.5,8.933958,.6931472,3.843691,1
-13,5,0,1,2,527140,1,7584.229,54.19096,1,15,1,25.68946,10.82735,0,0,0,36.51681,0,0,0,1,0,2,78.7,34.5,1,40.5,300,309.6,0,0,.6931472,5.735281,1,4.564348,5.755076,0,1,0,40.5,8.933958,.6931472,3.597773,1
-13,5,0,1,3,527140,1,7584.229,55.19096,1,15,1,100.1715,20.50086,0,0,0,120.6724,0,0,0,2,0,1,78.7,34.5,1,40.5,300,309.6,0,0,0,5.735281,1,4.564348,5.755076,0,1,0,40.5,8.933958,0,4.793079,1
-5,5,25,1,1,527171,0,3406.452,24.65708,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,3.4,0,87.5,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,87.5,8.13372,.6931472,,0
-5,5,25,1,2,527171,0,3406.452,25.65708,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,3.4,0,87.5,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,87.5,8.13372,.6931472,,0
-5,5,25,1,3,527171,0,3406.452,26.65708,0,9,1,32.81447,0,34.68237,0,0,67.49684,0,0,0,1,1,2,66.5,3.4,0,87.5,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,87.5,8.13372,.6931472,4.212081,1
-5,5,25,1,4,527171,0,3406.452,27.65708,0,9,1,0,.6800151,0,0,0,.6800151,0,0,0,0,0,2,66.5,3.4,0,87.5,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,87.5,8.13372,.6931472,-.3856403,1
-5,5,25,1,5,527171,0,3406.452,28.65708,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,3.4,0,87.5,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,87.5,8.13372,.6931472,,0
-5,5,25,1,1,527172,0,3406.452,19.98083,1,12,1,27.75025,19.36075,0,0,0,47.111,0,0,0,1,1,2,55.3,17.2,0,84.1,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,84.1,8.13372,.6931472,3.852507,1
-5,5,25,1,2,527172,0,3406.452,20.98083,1,12,1,14.45617,11.07389,0,0,0,25.53006,0,0,0,1,0,2,55.3,17.2,0,84.1,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,84.1,8.13372,.6931472,3.239856,1
-5,5,25,1,3,527172,0,3406.452,21.98083,1,12,1,12.4106,18.81363,0,0,0,31.22423,0,0,0,1,0,2,55.3,17.2,0,84.1,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,84.1,8.13372,.6931472,3.441195,1
-5,5,25,1,4,527172,0,3406.452,22.98083,1,12,1,13.22252,10.88024,0,0,0,24.10276,0,0,0,1,0,2,55.3,17.2,0,84.1,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,84.1,8.13372,.6931472,3.182326,1
-5,5,25,1,5,527172,0,3406.452,23.98083,1,12,1,18.86792,17.06347,0,0,0,35.93139,0,0,0,2,0,2,55.3,17.2,0,84.1,283.9,321.6,0,0,.6931472,5.773309,0,3.258096,7.034916,0,0,0,84.1,8.13372,.6931472,3.581611,1
-14,5,95,0,1,527196,0,6674.895,28.53936,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,77.40034,10.57626,.1442925,,788.3,0,0,0,0,0,0,4.564348,6.721172,1,0,0,70.68995,8.806258,0,,0
-14,5,95,0,2,527196,0,6674.895,29.53936,0,16,1,12.003,5.258815,0,0,0,17.26182,0,0,0,2,0,1,77.40034,10.57626,.1442925,,788.3,0,0,0,0,0,0,4.564348,6.721172,1,0,0,70.68995,8.806258,0,2.848497,1
-14,5,95,0,3,527196,0,6674.895,30.53936,0,16,1,26.7253,0,0,0,0,26.7253,0,0,0,2,0,1,77.40034,10.57626,.1442925,,788.3,0,0,0,0,0,0,4.564348,6.721172,1,0,0,70.68995,8.806258,0,3.285611,1
-11,5,0,1,1,527211,0,7333.845,31.05544,1,18,1,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,78.4,0,18,0,0,0,2.890372,0,0,0,0,0,0,78.4,8.900392,0,,0
-11,5,0,1,2,527211,0,7333.845,32.05544,1,18,1,55.72519,1.125954,26.71756,0,0,83.5687,0,0,0,3,0,1,42,0,0,78.4,0,18,0,0,0,2.890372,0,0,0,0,0,0,78.4,8.900392,0,4.425669,1
-11,5,0,1,3,527211,0,7333.845,33.05544,1,18,1,64.98258,26.95122,0,196.8641,0,91.9338,0,0,16,3,0,1,42,0,0,78.4,0,18,0,0,0,2.890372,0,0,0,0,0,0,78.4,8.900392,0,4.521069,1
-13,5,0,1,1,527238,0,6674.895,29.34428,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,72.7,6.9,0,84.1,150,162.24,0,0,0,5.089077,1,4.564348,5.061929,0,0,0,84.1,8.806258,0,,0
-13,5,0,1,2,527238,0,6674.895,30.34428,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,72.7,6.9,0,84.1,150,162.24,0,0,0,5.089077,1,4.564348,5.061929,0,0,0,84.1,8.806258,0,,0
-13,5,0,1,3,527238,0,6674.895,31.34428,0,14,1,60.55363,0,0,0,0,60.55363,0,0,0,4,0,1,72.7,6.9,0,84.1,150,162.24,0,0,0,5.089077,1,4.564348,5.061929,0,0,0,84.1,8.806258,0,4.103529,1
-15,5,95,1,1,527280,1,7000.512,8.396988,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,78.3,10.57626,0,85.2,473.7,473.7,1,0,1.098612,6.160574,0,4.564348,6.211867,1,0,0,85.2,8.853882,1.098612,,0
-15,5,95,1,2,527280,1,7000.512,9.396988,0,14,1,11.81545,0,0,0,0,11.81545,0,0,0,1,0,4,78.3,10.57626,0,85.2,473.7,473.7,1,0,1.386294,6.160574,0,4.564348,6.211867,1,0,0,85.2,8.853882,1.386294,2.469408,1
-15,5,95,1,3,527280,1,7000.512,10.39699,0,14,1,2.368065,0,0,0,0,2.368065,0,0,0,1,0,4,78.3,10.57626,0,85.2,473.7,473.7,1,0,1.386294,6.160574,0,4.564348,6.211867,1,0,0,85.2,8.853882,1.386294,.8620731,1
-15,5,95,1,1,527281,1,7000.512,33.16906,1,14,1,0,0,0,0,288.2451,288.2451,1,1,0,0,0,3,61.2,20.7,0,64.8,473.7,473.7,0,0,1.098612,6.160574,0,4.564348,6.211867,0,1,0,64.8,8.853882,1.098612,5.663811,1
-15,5,95,1,2,527281,1,7000.512,34.16906,1,14,1,32.82071,1.099025,0,0,0,33.91973,0,0,0,1,0,4,61.2,20.7,0,64.8,473.7,473.7,0,0,1.386294,6.160574,0,4.564348,6.211867,0,1,0,64.8,8.853882,1.386294,3.523997,1
-15,5,95,1,3,527281,1,7000.512,35.16906,1,14,1,172.8687,0,0,0,1452.3,1625.169,1,0,0,5,0,4,61.2,20.7,0,64.8,473.7,473.7,0,0,1.386294,6.160574,0,4.564348,6.211867,0,1,0,64.8,8.853882,1.386294,7.393367,1
-15,5,95,1,1,527282,1,7000.512,3.485284,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,70.4,473.7,473.7,1,1,1.098612,6.160574,0,4.564348,6.211867,0,0,0,70.4,8.853882,1.098612,,0
-15,5,95,1,2,527282,1,7000.512,4.485284,1,14,1,26.44411,2.363091,0,0,0,28.8072,0,0,0,2,0,4,77.40034,10.57626,0,70.4,473.7,473.7,1,1,1.386294,6.160574,0,4.564348,6.211867,0,0,0,70.4,8.853882,1.386294,3.360626,1
-15,5,95,1,3,527282,1,7000.512,5.485284,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,473.7,473.7,1,1,1.386294,6.160574,0,4.564348,6.211867,0,0,0,70.4,8.853882,1.386294,,0
-11,5,0,1,1,527307,1,602.3461,26.21218,1,12,1,29.58375,3.840436,0,0,0,33.42418,0,0,0,1,0,5,72.9,6.9,0,58.3,0,0,0,0,1.609438,0,0,0,0,1,0,0,58.3,6.402491,1.609438,3.50928,1
-11,5,0,1,2,527307,1,602.3461,27.21218,1,12,1,0,0,0,0,888.7104,888.7104,2,0,0,0,0,5,72.9,6.9,0,58.3,0,0,0,0,1.609438,0,0,0,0,1,0,0,58.3,6.402491,1.609438,6.789772,1
-11,5,0,1,3,527307,1,602.3461,28.21218,1,12,1,10.51746,0,24.40051,0,0,34.91796,0,0,0,0,1,6,72.9,6.9,0,58.3,0,0,0,0,1.791759,0,0,0,0,1,0,0,58.3,6.402491,1.791759,3.553001,1
-11,5,0,1,4,527307,1,602.3461,29.21218,1,12,1,7.555724,0,0,0,0,7.555724,0,0,0,0,0,6,72.9,6.9,0,58.3,0,0,0,0,1.791759,0,0,0,0,1,0,0,58.3,6.402491,1.791759,2.022305,1
-11,5,0,1,5,527307,1,602.3461,30.21218,1,12,1,20.58319,0,0,0,0,20.58319,0,0,0,0,0,6,72.9,6.9,0,58.3,0,0,0,0,1.791759,0,0,0,0,1,0,0,58.3,6.402491,1.791759,3.024475,1
-11,5,0,1,1,527308,1,602.3461,30.10267,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.9,3.4,0,65.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,65.9,6.402491,1.609438,,0
-11,5,0,1,2,527308,1,602.3461,31.10267,0,12,1,9.178522,0,34.41946,0,0,43.59798,0,0,0,0,1,5,81.9,3.4,0,65.9,0,0,0,0,1.609438,0,0,0,0,1,0,0,65.9,6.402491,1.609438,3.775011,1
-11,5,0,1,3,527308,1,602.3461,32.10267,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,3.4,0,65.9,0,0,0,0,1.791759,0,0,0,0,1,0,0,65.9,6.402491,1.791759,,0
-11,5,0,1,4,527308,1,602.3461,33.10267,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,3.4,0,65.9,0,0,0,0,1.791759,0,0,0,0,1,0,0,65.9,6.402491,1.791759,,0
-11,5,0,1,5,527308,1,602.3461,34.10267,0,12,1,8.576329,0,23.67067,0,0,32.247,0,0,0,0,1,6,81.9,3.4,0,65.9,0,0,0,0,1.791759,0,0,0,0,1,0,0,65.9,6.402491,1.791759,3.473425,1
-11,5,0,1,1,527309,1,602.3461,3.838467,0,12,1,17.3439,1.650149,0,0,0,18.99405,0,0,0,2,0,5,77.40034,10.57626,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,6.402491,1.609438,2.944126,1
-11,5,0,1,2,527309,1,602.3461,4.838467,0,12,1,9.06379,0,0,0,0,9.06379,0,0,0,0,0,5,77.40034,10.57626,0,70.4,0,0,1,0,1.609438,0,0,0,0,1,0,0,70.4,6.402491,1.609438,2.204287,1
-11,5,0,1,3,527309,1,602.3461,5.838467,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,0,0,1,0,1.791759,0,0,0,0,1,0,0,70.4,6.402491,1.791759,,0
-11,5,0,1,4,527309,1,602.3461,6.838467,0,12,1,7.555724,0,0,0,0,7.555724,0,0,0,0,0,6,77.40034,10.57626,0,70.4,0,0,1,0,1.791759,0,0,0,0,1,0,0,70.4,6.402491,1.791759,2.022305,1
-11,5,0,1,5,527309,1,602.3461,7.838467,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,0,0,1,0,1.791759,0,0,0,0,1,0,0,70.4,6.402491,1.791759,,0
-11,5,0,1,1,527310,1,602.3461,5.927447,0,12,1,14.12289,2.368682,0,0,0,16.49158,0,0,0,0,0,5,88.3,10.57626,0,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,6.402491,1.609438,2.80285,1
-11,5,0,1,2,527310,1,602.3461,6.927447,0,12,1,118.8619,0,0,0,0,118.8619,0,0,0,1,0,5,88.3,10.57626,0,74.1,0,0,1,0,1.609438,0,0,0,0,1,0,0,74.1,6.402491,1.609438,4.777962,1
-11,5,0,1,3,527310,1,602.3461,7.927447,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,6.402491,1.791759,,0
-11,5,0,1,4,527310,1,602.3461,8.927447,0,12,1,11.33358,0,0,0,0,11.33358,0,0,0,0,0,6,88.3,10.57626,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,6.402491,1.791759,2.42777,1
-11,5,0,1,5,527310,1,602.3461,9.927447,0,12,1,11.57804,0,0,0,0,11.57804,0,0,0,1,0,6,88.3,10.57626,0,74.1,0,0,1,0,1.791759,0,0,0,0,1,0,0,74.1,6.402491,1.791759,2.449111,1
-11,5,0,1,1,527311,1,1029.186,55.12115,1,11,1,57.13077,3.432078,54.13457,0,0,114.6974,0,0,0,1,2,2,75,10.3,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,1,0,71.6,6.937495,.6931472,4.742298,1
-11,5,0,1,2,527311,1,1029.186,56.12115,1,11,1,10.63022,18.51177,0,0,0,29.14199,0,0,0,2,0,2,75,10.3,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,1,0,71.6,6.937495,.6931472,3.37218,1
-11,5,0,1,3,527311,1,1029.186,57.12115,1,11,1,80.27682,21.61938,0,0,0,101.8962,0,0,0,6,0,2,75,10.3,0,71.6,0,0,0,0,.6931472,0,0,0,0,0,1,0,71.6,6.937495,.6931472,4.623955,1
-11,5,0,1,1,527313,1,1029.186,17.67556,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,0,0,81,0,0,1,1,.6931472,0,0,0,0,0,0,0,81,6.937495,.6931472,,0
-11,5,0,1,2,527313,1,1029.186,18.67556,1,11,1,48.59529,0,29.4609,0,0,78.05619,0,0,0,3,0,2,85.6,0,0,81,0,0,0,0,.6931472,0,0,0,0,0,0,0,81,6.937495,.6931472,4.357429,1
-11,5,0,1,3,527313,1,1029.186,19.67556,1,11,1,25.08651,2.83737,.6920415,0,0,28.61592,0,0,0,3,0,2,85.6,0,0,81,0,0,0,0,.6931472,0,0,0,0,0,0,0,81,6.937495,.6931472,3.353963,1
-15,5,95,1,1,527315,0,7402.458,13.61259,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,55.6,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,55.6,8.909702,1.609438,,0
-15,5,95,1,2,527315,0,7402.458,14.61259,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,55.6,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,55.6,8.909702,1.609438,,0
-15,5,95,1,1,527316,0,7402.458,16.79398,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,91.5,0,0,95,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,95,8.909702,1.609438,,0
-15,5,95,1,2,527316,0,7402.458,17.79398,0,10,1,10.20992,0,0,0,0,10.20992,0,0,0,0,0,5,91.5,0,0,95,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,95,8.909702,1.609438,2.32336,1
-15,5,95,1,1,527317,0,7402.458,18.91034,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,84.6,10.3,1,86.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.909702,1.609438,,0
-15,5,95,1,2,527317,0,7402.458,19.91034,0,7,1,29.77099,0,0,0,0,29.77099,0,0,0,1,0,5,84.6,10.3,1,86.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.909702,1.609438,3.393534,1
-15,5,95,1,1,527318,0,7402.458,40.3833,0,11,1,10.20842,0,0,0,0,10.20842,0,0,0,0,0,5,71.3,6.9,1,63.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,63.6,8.909702,1.609438,2.323213,1
-15,5,95,1,2,527318,0,7402.458,41.3833,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,71.3,6.9,1,63.6,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,63.6,8.909702,1.609438,,0
-15,5,95,1,1,527320,0,7402.458,38.7488,1,10,1,24.67035,0,0,0,0,24.67035,0,0,0,0,0,5,58,27.6,1,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,67,8.909702,1.609438,3.205602,1
-15,5,95,1,2,527320,0,7402.458,39.7488,1,10,1,27.48092,0,0,0,0,27.48092,0,0,0,0,0,5,58,27.6,1,67,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,67,8.909702,1.609438,3.313492,1
-11,5,0,1,1,527325,0,136.7128,38.41478,1,11,1,8.081667,0,0,0,0,8.081667,0,0,0,0,0,1,39.4,17.2,0,31.8,0,0,0,0,0,0,0,0,0,1,0,0,31.8,4.92517,0,2.089598,1
-11,5,0,1,2,527325,0,136.7128,39.41478,1,11,1,19.84733,0,0,0,0,19.84733,0,0,0,2,0,1,39.4,17.2,0,31.8,0,0,0,0,0,0,0,0,0,1,0,0,31.8,4.92517,0,2.988069,1
-11,5,0,1,3,527325,0,136.7128,40.41478,1,11,1,0,0,0,0,0,0,0,0,0,0,0,1,39.4,17.2,0,31.8,0,0,0,0,0,0,0,0,0,1,0,0,31.8,4.92517,0,,0
-10,5,50,0,1,527356,0,3452.125,24.15879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,3.4,0,81.8,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,1,0,0,81.8,8.147035,.6931472,,0
-10,5,50,0,2,527356,0,3452.125,25.15879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,3.4,0,81.8,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,1,0,0,81.8,8.147035,.6931472,,0
-10,5,50,0,3,527356,0,3452.125,26.15879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,3.4,0,81.8,600,600,0,0,.6931472,6.39693,0,3.931826,7.090077,1,0,0,81.8,8.147035,.6931472,,0
-10,5,50,0,1,527357,0,3452.125,5.620808,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.3,10.57626,.1442925,85.2,600,600,1,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,85.2,8.147035,.6931472,,0
-10,5,50,0,2,527357,0,3452.125,6.620808,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.3,10.57626,.1442925,85.2,600,600,1,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,85.2,8.147035,.6931472,,0
-10,5,50,0,3,527357,0,3452.125,7.620808,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.3,10.57626,.1442925,85.2,600,600,1,0,.6931472,6.39693,0,3.931826,7.090077,0,1,0,85.2,8.147035,.6931472,,0
-11,5,0,1,1,527392,1,4545.977,49.71937,1,17,1,24.93766,34.27431,36.30923,0,0,95.52119,0,0,0,4,0,3,83,37.9,1,48.9,0,124.32,0,0,1.098612,4.822859,0,0,0,1,0,0,48.9,8.422217,1.098612,4.559348,1
-11,5,0,1,2,527392,1,4545.977,50.71937,1,17,1,88.05901,29.23006,20.13831,0,0,137.4274,0,0,0,7,0,3,83,37.9,1,48.9,0,124.32,0,0,1.098612,4.822859,0,0,0,1,0,0,48.9,8.422217,1.098612,4.923096,1
-11,5,0,1,3,527392,1,4545.977,51.71937,1,17,1,157.6386,13.18239,52.81422,0,1048.244,1271.879,1,0,0,7,0,3,83,37.9,1,48.9,0,124.32,0,0,1.098612,4.822859,0,0,0,1,0,0,48.9,8.422217,1.098612,7.148251,1
-11,5,0,1,4,527392,1,4545.977,52.71937,1,17,1,29.2331,14.2369,0,0,0,43.47001,0,0,0,2,0,3,83,37.9,1,48.9,0,124.32,0,0,1.098612,4.822859,0,0,0,1,0,0,48.9,8.422217,1.098612,3.772071,1
-11,5,0,1,5,527392,1,4545.977,53.71937,1,17,1,94.46367,32.76471,33.10727,0,0,160.3356,0,0,0,2,2,3,83,37.9,1,48.9,0,124.32,0,0,1.098612,4.822859,0,0,0,1,0,0,48.9,8.422217,1.098612,5.07727,1
-11,5,0,1,1,527393,1,4545.977,6.579055,0,17,1,7.481297,5.236908,0,0,0,12.7182,0,0,0,1,0,3,98.3,10.57626,0,85.2,0,124.32,1,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,2.543034,1
-11,5,0,1,2,527393,1,4545.977,7.579055,0,17,1,20.74689,0,0,0,586.9064,607.6533,1,0,0,2,0,3,98.3,10.57626,0,85.2,0,124.32,1,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,6.409605,1
-11,5,0,1,3,527393,1,4545.977,8.579056,0,17,1,0,0,0,0,0,0,0,0,0,0,0,3,98.3,10.57626,0,85.2,0,124.32,1,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,,0
-11,5,0,1,4,527393,1,4545.977,9.579056,0,17,1,7.593014,0,0,0,0,7.593014,0,0,0,1,0,3,98.3,10.57626,0,85.2,0,124.32,1,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,2.027229,1
-11,5,0,1,5,527393,1,4545.977,10.57906,0,17,1,41.86851,0,0,0,0,41.86851,0,0,0,0,0,3,98.3,10.57626,0,85.2,0,124.32,1,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,3.734534,1
-11,5,0,1,1,527394,1,4545.977,14.68857,1,17,1,5.985037,0,0,0,0,5.985037,0,0,0,1,0,3,67.6,10.3,0,85.2,0,124.32,1,1,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,1.789263,1
-11,5,0,1,2,527394,1,4545.977,15.68857,1,17,1,6.915629,0,0,0,0,6.915629,0,0,0,1,0,3,67.6,10.3,0,85.2,0,124.32,1,1,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,1.933784,1
-11,5,0,1,3,527394,1,4545.977,16.68857,1,17,1,6.771054,0,0,0,0,6.771054,0,0,0,1,0,3,67.6,10.3,0,85.2,0,124.32,1,1,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,1.912657,1
-11,5,0,1,4,527394,1,4545.977,17.68857,1,17,1,66.05923,0,0,0,0,66.05923,0,0,0,1,0,3,67.6,10.3,0,85.2,0,124.32,1,1,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,4.190552,1
-11,5,0,1,5,527394,1,4545.977,18.68857,1,17,1,0,0,0,0,0,0,0,0,0,0,0,3,67.6,10.3,0,85.2,0,124.32,0,0,1.098612,4.822859,0,0,0,0,0,0,85.2,8.422217,1.098612,,0
-16,5,95,1,1,527442,0,10665.13,28.55031,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,20.7,1,36.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,36.4,9.274829,.6931472,,0
-16,5,95,1,2,527442,0,10665.13,29.55031,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,20.7,1,36.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,36.4,9.274829,.6931472,,0
-16,5,95,1,3,527442,0,10665.13,30.55031,1,16,1,134.8199,56.76844,0,0,0,191.5883,0,0,0,26,0,2,72.3,20.7,1,36.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,36.4,9.274829,.6931472,5.255349,1
-16,5,95,1,1,527443,0,10665.13,31.21697,0,16,1,6.310475,5.763567,0,0,0,12.07404,0,0,0,1,0,2,79.8,13.8,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.274829,.6931472,2.491058,1
-16,5,95,1,2,527443,0,10665.13,32.21698,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,79.8,13.8,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.274829,.6931472,,0
-16,5,95,1,3,527443,0,10665.13,33.21698,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,79.8,13.8,0,73.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,73.9,9.274829,.6931472,,0
-18,5,25,0,1,527452,0,2046.595,49.54141,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,77.7,10.3,0,62.5,570.86,570.86,0,0,0,6.347144,0,3.258096,7.733438,1,0,0,62.5,7.624421,0,,0
-18,5,25,0,2,527452,0,2046.595,50.54141,1,12,1,7.555724,5.761239,0,0,0,13.31696,0,0,0,1,0,1,77.7,10.3,0,62.5,570.86,570.86,0,0,0,6.347144,0,3.258096,7.733438,1,0,0,62.5,7.624421,0,2.589039,1
-18,5,25,0,3,527452,0,2046.595,51.54141,1,12,1,120.0686,8.161235,0,0,0,128.2298,0,0,0,3,0,1,77.7,10.3,0,62.5,570.86,570.86,0,0,0,6.347144,0,3.258096,7.733438,1,0,0,62.5,7.624421,0,4.853824,1
-5,5,25,0,1,527467,0,5640.553,32.60506,0,13,1,12.62095,0,42.06984,0,0,54.69079,0,0,0,0,1,4,91.5,6.9,0,85.2,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,85.2,8.637915,1.386294,4.001695,1
-5,5,25,0,2,527467,0,5640.553,33.60506,0,13,1,4.533434,6.120136,0,0,0,10.65357,0,0,0,1,0,4,91.5,6.9,0,85.2,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,85.2,8.637915,1.386294,2.365895,1
-5,5,25,0,3,527467,0,5640.553,34.60506,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,91.5,6.9,0,85.2,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,85.2,8.637915,1.386294,,0
-5,5,25,0,1,527468,0,5640.553,28.1232,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,3.4,0,63.6,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,63.6,8.637915,1.386294,,0
-5,5,25,0,2,527468,0,5640.553,29.1232,1,9,1,5.666792,0,0,0,0,5.666792,0,0,0,1,0,4,80.3,3.4,0,63.6,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,63.6,8.637915,1.386294,1.734623,1
-5,5,25,0,3,527468,0,5640.553,30.1232,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,3.4,0,63.6,172.49,226,0,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,63.6,8.637915,1.386294,,0
-5,5,25,0,1,527469,0,5640.553,10.09172,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,.1442925,96.3,172.49,226,1,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,96.3,8.637915,1.386294,,0
-5,5,25,0,2,527469,0,5640.553,11.09172,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,.1442925,96.3,172.49,226,1,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,96.3,8.637915,1.386294,,0
-5,5,25,0,3,527469,0,5640.553,12.09172,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,.1442925,96.3,172.49,226,1,0,1.386294,5.420535,0,3.258096,6.536633,0,0,0,96.3,8.637915,1.386294,,0
-5,5,25,0,1,527470,0,5640.553,7.359343,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,.1442925,74.1,172.49,226,1,1,1.386294,5.420535,0,3.258096,6.536633,0,0,0,74.1,8.637915,1.386294,,0
-5,5,25,0,2,527470,0,5640.553,8.359343,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,.1442925,74.1,172.49,226,1,1,1.386294,5.420535,0,3.258096,6.536633,0,0,0,74.1,8.637915,1.386294,,0
-5,5,25,0,3,527470,0,5640.553,9.359343,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,.1442925,74.1,172.49,226,1,1,1.386294,5.420535,0,3.258096,6.536633,0,0,0,74.1,8.637915,1.386294,,0
-13,5,0,0,1,527540,1,5890.323,30.16838,0,12,1,47.62141,0,0,0,0,47.62141,0,0,0,0,0,4,86.2,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,64.8,8.681236,1.386294,3.863282,1
-13,5,0,0,2,527540,1,5890.323,31.16838,0,12,1,31.6659,0,0,0,517.2097,548.8756,1,0,0,0,0,4,86.2,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,64.8,8.681236,1.386294,6.307872,1
-13,5,0,0,3,527540,1,5890.323,32.16838,0,12,1,17.24863,0,0,0,0,17.24863,0,0,0,1,0,4,86.2,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,64.8,8.681236,1.386294,2.847733,1
-13,5,0,0,4,527540,1,5890.323,33.16838,0,12,1,52.13449,23.10162,.6233472,0,4577.635,4653.495,2,0,0,6,0,4,86.2,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,64.8,8.681236,1.386294,8.445374,1
-13,5,0,0,5,527540,1,5890.323,34.16838,0,12,1,143.3962,3.667238,0,0,1972.213,2119.276,1,0,0,3,0,4,86.2,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,64.8,8.681236,1.386294,7.65883,1
-13,5,0,0,1,527541,1,5890.323,6.444901,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.681236,1.386294,,0
-13,5,0,0,2,527541,1,5890.323,7.444901,1,12,1,24.41487,0,0,0,0,24.41487,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.681236,1.386294,3.195192,1
-13,5,0,0,3,527541,1,5890.323,8.444901,1,12,1,7.993269,0,0,0,0,7.993269,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.681236,1.386294,2.0786,1
-13,5,0,0,4,527541,1,5890.323,9.444901,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.681236,1.386294,,0
-13,5,0,0,5,527541,1,5890.323,10.4449,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.681236,1.386294,,0
-13,5,0,0,1,527542,1,5890.323,31.92334,1,12,1,24.28147,9.132805,0,0,0,33.41427,0,0,0,1,0,4,66.5,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,8.681236,1.386294,3.508983,1
-13,5,0,0,2,527542,1,5890.323,32.92334,1,12,1,11.47315,0,0,0,1408.444,1419.917,1,0,0,2,0,4,66.5,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,8.681236,1.386294,7.258354,1
-13,5,0,0,3,527542,1,5890.323,33.92334,1,12,1,8.413967,0,0,0,0,8.413967,0,0,0,0,0,4,66.5,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,8.681236,1.386294,2.129893,1
-13,5,0,0,4,527542,1,5890.323,34.92334,1,12,1,20.02267,0,0,0,0,20.02267,0,0,0,3,0,4,66.5,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,8.681236,1.386294,2.996865,1
-13,5,0,0,5,527542,1,5890.323,35.92334,1,12,1,96.05489,0,0,0,4772.556,4868.611,1,0,0,2,0,4,66.5,6.9,0,64.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,64.8,8.681236,1.386294,8.490564,1
-13,5,0,0,1,527543,1,5890.323,10.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.681236,1.386294,,0
-13,5,0,0,2,527543,1,5890.323,11.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.681236,1.386294,,0
-13,5,0,0,3,527543,1,5890.323,12.12183,0,12,1,41.64914,0,0,0,0,41.64914,0,0,0,2,0,4,78.3,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.681236,1.386294,3.729281,1
-13,5,0,0,4,527543,1,5890.323,13.12183,0,12,1,7.555724,0,0,0,0,7.555724,0,0,0,1,0,4,78.3,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.681236,1.386294,2.022305,1
-13,5,0,0,5,527543,1,5890.323,14.12183,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.3,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.681236,1.386294,,0
-14,5,95,0,1,527550,1,3455.709,26.55168,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,3.4,.1442925,72.7,325,325,0,0,1.386294,5.783825,0,4.564348,5.835118,1,0,0,72.7,8.148072,1.386294,,0
-14,5,95,0,2,527550,1,3455.709,27.55168,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,3.4,.1442925,72.7,325,325,0,0,1.386294,5.783825,0,4.564348,5.835118,1,0,0,72.7,8.148072,1.386294,,0
-14,5,95,0,3,527550,1,3455.709,28.55168,0,12,1,13.84083,0,0,0,0,13.84083,0,0,0,0,0,5,77.40034,3.4,.1442925,72.7,325,325,0,0,1.609438,5.783825,0,4.564348,5.835118,1,0,0,72.7,8.148072,1.609438,2.627623,1
-14,5,95,0,1,527551,1,3455.709,26.16564,1,14,1,49.14515,0,0,0,0,49.14515,0,0,0,0,0,4,85.1,6.9,0,76.1,325,325,0,0,1.386294,5.783825,0,4.564348,5.835118,1,0,0,76.1,8.148072,1.386294,3.894778,1
-14,5,95,0,2,527551,1,3455.709,27.16564,1,14,1,0,2.566439,0,0,1035.307,1037.874,1,0,0,0,0,4,85.1,6.9,0,76.1,325,325,0,0,1.386294,5.783825,0,4.564348,5.835118,1,0,0,76.1,8.148072,1.386294,6.94493,1
-14,5,95,0,3,527551,1,3455.709,28.16564,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,85.1,6.9,0,76.1,325,325,0,0,1.609438,5.783825,0,4.564348,5.835118,1,0,0,76.1,8.148072,1.609438,,0
-14,5,95,0,1,527552,1,3455.709,6.603696,1,14,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,.1442925,85.2,325,325,1,1,1.386294,5.783825,0,4.564348,5.835118,0,0,0,85.2,8.148072,1.386294,,0
-14,5,95,0,2,527552,1,3455.709,7.603696,1,14,1,18.60289,7.285497,0,0,0,25.88838,0,0,0,4,0,4,85,10.57626,.1442925,85.2,325,325,1,1,1.386294,5.783825,0,4.564348,5.835118,0,0,0,85.2,8.148072,1.386294,3.253794,1
-14,5,95,0,3,527552,1,3455.709,8.603696,1,14,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,.1442925,85.2,325,325,1,1,1.609438,5.783825,0,4.564348,5.835118,0,0,0,85.2,8.148072,1.609438,,0
-11,5,0,0,1,527557,0,6674.895,3.928816,0,12,1,30.46974,15.59458,0,0,584.6382,630.7025,1,0,0,6,0,3,77.40034,10.57626,0,88.9,0,496.2,1,0,1.098612,6.206979,0,0,0,0,0,0,88.9,8.806258,1.098612,6.446834,1
-11,5,0,0,2,527557,0,6674.895,4.928816,0,12,1,25.81625,6.305998,0,0,0,32.12225,0,0,0,4,0,3,77.40034,10.57626,0,88.9,0,496.2,1,0,1.098612,6.206979,0,0,0,0,0,0,88.9,8.806258,1.098612,3.469549,1
-11,5,0,0,3,527557,0,6674.895,5.928816,0,12,1,45.15571,0,0,0,0,45.15571,0,0,0,4,0,4,77.40034,10.57626,0,88.9,0,496.2,1,0,1.386294,6.206979,0,0,0,0,0,0,88.9,8.806258,1.386294,3.810117,1
-11,5,0,0,1,527558,0,6674.895,24.30116,0,11,1,78.29031,0,0,0,0,78.29031,0,0,0,2,0,3,76.1,6.9,0,64.8,0,496.2,0,0,1.098612,6.206979,0,0,0,1,0,0,64.8,8.806258,1.098612,4.360424,1
-11,5,0,0,2,527558,0,6674.895,25.30116,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,76.1,6.9,0,64.8,0,496.2,0,0,1.098612,6.206979,0,0,0,1,0,0,64.8,8.806258,1.098612,,0
-11,5,0,0,3,527558,0,6674.895,26.30116,0,11,1,20.76125,4.307959,0,0,0,25.0692,0,0,0,2,0,4,76.1,6.9,0,64.8,0,496.2,0,0,1.386294,6.206979,0,0,0,1,0,0,64.8,8.806258,1.386294,3.22164,1
-11,5,0,0,1,527559,0,6674.895,23.75086,1,12,1,8.463818,4.502751,0,0,0,12.96657,0,0,0,1,0,3,73.4,3.4,0,73.9,0,496.2,0,0,1.098612,6.206979,0,0,0,1,0,0,73.9,8.806258,1.098612,2.562374,1
-11,5,0,0,2,527559,0,6674.895,24.75086,1,12,1,28.09415,12.61959,0,0,676.5376,717.2513,1,0,0,1,0,3,73.4,3.4,0,73.9,0,496.2,0,0,1.098612,6.206979,0,0,0,1,0,0,73.9,8.806258,1.098612,6.575426,1
-11,5,0,0,3,527559,0,6674.895,25.75086,1,12,1,30.44983,0,0,0,827.6816,858.1315,1,0,0,2,0,4,73.4,3.4,0,73.9,0,496.2,0,0,1.386294,6.206979,0,0,0,1,0,0,73.9,8.806258,1.386294,6.754757,1
-13,5,0,1,1,527637,0,6175.115,34.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,66,13.8,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,79.5,8.728445,0,,0
-13,5,0,1,2,527637,0,6175.115,35.22313,0,12,1,51.52672,0,0,0,0,51.52672,0,0,0,1,0,1,66,13.8,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,79.5,8.728445,0,3.942101,1
-13,5,0,1,3,527637,0,6175.115,36.22313,0,12,1,9.756098,0,0,0,0,9.756098,0,0,0,1,0,1,66,13.8,0,79.5,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,79.5,8.728445,0,2.277893,1
-11,5,0,1,1,527651,1,0,4.4846,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,74.1,0,0,1,0,.6931472,0,0,0,0,0,1,0,74.1,0,.6931472,,0
-11,5,0,1,2,527651,1,0,5.4846,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,74.1,0,0,1,0,.6931472,0,0,0,0,0,1,0,74.1,0,.6931472,,0
-11,5,0,1,3,527651,1,0,6.4846,0,8,1,10.38062,0,0,0,0,10.38062,0,0,0,0,0,2,77.40034,10.57626,0,74.1,0,0,1,0,.6931472,0,0,0,0,0,1,0,74.1,0,.6931472,2.339941,1
-11,5,0,1,1,527652,1,0,24.98289,1,8,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,2,61.7,6.9,1,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,0,.6931472,2.358944,1
-11,5,0,1,2,527652,1,0,25.98289,1,8,1,19.74184,0,0,0,0,19.74184,0,0,0,2,0,2,61.7,6.9,1,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,0,.6931472,2.98274,1
-11,5,0,1,3,527652,1,0,26.98289,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,61.7,6.9,1,70.5,0,0,0,0,.6931472,0,0,0,0,1,0,0,70.5,0,.6931472,,0
-11,5,0,1,1,527674,1,10589.86,17.37988,1,8,1,10.63377,0,22.96895,0,0,33.60272,0,0,0,0,1,4,70.7,6.9,1,63.6,0,787.6,1,1,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,3.514607,1
-11,5,0,1,2,527674,1,10589.86,18.37988,1,8,1,0,0,23.66412,0,0,23.66412,0,0,0,0,0,4,70.7,6.9,1,63.6,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,3.16396,1
-11,5,0,1,3,527674,1,10589.86,19.37988,1,8,1,68.29269,6.620209,22.29965,0,0,97.21255,0,0,0,2,1,4,70.7,6.9,1,63.6,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,4.5769,1
-11,5,0,1,1,527675,1,10589.86,41.34155,1,8,1,10.63377,0,23.81965,0,0,34.45342,0,0,0,0,1,4,62.3,10.3,0,56.8,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,56.8,9.267747,1.386294,3.539608,1
-11,5,0,1,2,527675,1,10589.86,42.34155,1,8,1,9.541985,0,38.50382,0,0,48.0458,0,0,0,0,1,4,62.3,10.3,0,56.8,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,56.8,9.267747,1.386294,3.872155,1
-11,5,0,1,3,527675,1,10589.86,43.34155,1,8,1,8.710801,0,19.29617,0,0,28.00697,0,0,0,0,1,4,62.3,10.3,0,56.8,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,56.8,9.267747,1.386294,3.332453,1
-11,5,0,1,1,527676,1,10589.86,20.09583,1,10,1,10.63377,0,22.96895,0,0,33.60272,0,0,0,0,1,4,62.2,13.8,0,63.6,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,3.514607,1
-11,5,0,1,2,527676,1,10589.86,21.09583,1,10,1,9.541985,1.431298,27.48092,0,0,38.4542,0,0,0,0,1,4,62.2,13.8,0,63.6,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,3.649468,1
-11,5,0,1,3,527676,1,10589.86,22.09583,1,10,1,8.710801,0,24.04181,0,0,32.75261,0,0,0,0,1,4,62.2,13.8,0,63.6,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,63.6,9.267747,1.386294,3.488983,1
-11,5,0,1,1,527677,1,10589.86,43.64682,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,0,0,60.2,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,60.2,9.267747,1.386294,,0
-11,5,0,1,2,527677,1,10589.86,44.64682,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,0,0,60.2,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,60.2,9.267747,1.386294,,0
-11,5,0,1,3,527677,1,10589.86,45.64682,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,0,0,60.2,0,787.6,0,0,1.386294,6.66899,0,0,0,0,1,0,60.2,9.267747,1.386294,,0
-18,5,25,0,1,527705,1,0,41.81519,1,10,1,0,0,0,0,0,0,0,0,0,0,0,1,67.6,3.4,0,55.7,466.8,0,0,0,0,0,0,3.258096,7.532195,0,0,1,55.7,0,0,,0
-18,5,25,0,2,527705,1,0,42.81519,1,10,1,22.77904,0,0,0,0,22.77904,0,0,0,1,1,1,67.6,3.4,0,55.7,466.8,0,0,0,0,0,0,3.258096,7.532195,0,0,1,55.7,0,0,3.125841,1
-18,5,25,0,3,527705,1,0,43.81519,1,10,1,0,0,0,0,0,0,0,0,0,0,0,1,67.6,3.4,0,55.7,466.8,0,0,0,0,0,0,3.258096,7.532195,0,0,1,55.7,0,0,,0
-13,5,0,0,1,527710,1,0,22.80903,1,11,1,43.66227,0,24.67035,0,0,68.33263,0,0,0,2,1,1,59,13.8,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,55.7,0,0,4.224387,1
-13,5,0,0,2,527710,1,0,23.80903,1,11,1,56.79389,0,11.45038,0,0,68.24428,0,0,0,0,1,1,59,13.8,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,55.7,0,0,4.223094,1
-13,5,0,0,3,527710,1,0,24.80903,1,11,1,90.59233,5.905923,0,0,0,96.49826,0,0,0,1,0,1,59,13.8,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,1,0,0,55.7,0,0,4.569525,1
-18,5,25,0,1,527737,0,9861.239,29.69473,0,16,1,10.83785,0,0,0,0,10.83785,0,0,0,1,0,4,90.4,3.4,0,88.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.196468,1.386294,2.383044,1
-18,5,25,0,2,527737,0,9861.239,30.69473,0,16,1,46.88672,0,14.82371,0,769.6924,831.4028,1,0,0,3,0,5,90.4,3.4,0,88.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.196468,1.609438,6.723114,1
-18,5,25,0,3,527737,0,9861.239,31.69473,0,16,1,319.6888,3.592693,0,0,0,323.2815,0,0,0,5,0,5,90.4,3.4,0,88.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.196468,1.609438,5.778523,1
-18,5,25,0,1,527738,0,9861.239,30.07803,1,16,1,12.29679,11.33806,0,0,785.3272,808.9621,1,0,0,0,0,4,85.6,6.9,0,87.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.196468,1.386294,6.695752,1
-18,5,25,0,2,527738,0,9861.239,31.07803,1,16,1,15.00375,2.621906,17.55439,0,0,35.18005,0,0,0,1,0,5,85.6,6.9,0,87.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.196468,1.609438,3.560479,1
-18,5,25,0,3,527738,0,9861.239,32.07803,1,16,1,10.14885,6.681326,0,0,0,16.83018,0,0,0,1,0,5,85.6,6.9,0,87.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,87.5,9.196468,1.609438,2.823174,1
-18,5,25,0,1,527739,0,9861.239,8.569473,1,16,1,23.96832,17.31138,0,0,0,41.2797,0,0,0,2,0,4,88.3,10.57626,.1442925,96.3,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.196468,1.386294,3.720371,1
-18,5,25,0,2,527739,0,9861.239,9.569473,1,16,1,0,11.41785,0,0,0,11.41785,0,0,0,0,0,5,88.3,10.57626,.1442925,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.196468,1.609438,2.435178,1
-18,5,25,0,3,527739,0,9861.239,10.56947,1,16,1,11.84032,2.182003,0,0,0,14.02233,0,0,0,1,0,5,88.3,10.57626,.1442925,96.3,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.196468,1.609438,2.640651,1
-18,5,25,0,1,527740,0,9861.239,4.722793,0,16,1,0,20.15006,0,0,0,20.15006,0,0,0,0,0,4,77.40034,10.57626,0,100,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,100,9.196468,1.386294,3.003207,1
-18,5,25,0,2,527740,0,9861.239,5.722793,0,16,1,0,3.619655,0,0,0,3.619655,0,0,0,0,0,5,77.40034,10.57626,0,100,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.196468,1.609438,1.286379,1
-18,5,25,0,3,527740,0,9861.239,6.722793,0,16,1,18.60622,12.28349,0,0,0,30.88972,0,0,0,2,0,5,77.40034,10.57626,0,100,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.196468,1.609438,3.430423,1
-11,5,0,0,1,527791,1,0,8.481862,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,88.3,10.57626,0,100,0,0,1,1,.6931472,0,0,0,0,0,0,0,100,0,.6931472,,0
-11,5,0,0,1,527792,1,0,41.88091,1,12,1,0,0,36.16273,0,0,36.16273,0,0,0,0,0,2,74.5,3.4,1,81.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,81.8,0,.6931472,3.588029,1
-11,5,0,0,2,527792,1,0,42.88091,1,12,1,24.80297,4.376449,0,0,0,29.17942,0,0,0,0,0,1,74.5,3.4,1,81.8,0,0,0,0,0,0,0,0,0,0,1,0,81.8,0,0,3.373464,1
-11,5,0,0,3,527792,1,0,43.88091,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,3.4,1,81.8,0,0,0,0,0,0,0,0,0,0,1,0,81.8,0,0,,0
-11,5,0,0,4,527792,1,0,44.88091,1,12,1,40.17176,0,0,0,0,40.17176,0,0,0,0,0,1,74.5,3.4,1,81.8,0,0,0,0,0,0,0,0,0,0,1,0,81.8,0,0,3.693164,1
-11,5,0,0,5,527792,1,0,45.88091,1,12,1,5.226481,0,0,0,1706.969,1712.195,1,0,0,1,0,1,74.5,3.4,1,81.8,0,0,0,0,0,0,0,0,0,0,1,0,81.8,0,0,7.445531,1
-16,5,95,0,1,527795,1,6674.895,4.15332,0,10,1,5.896806,0,0,0,0,5.896806,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,1.774411,1
-16,5,95,0,2,527795,1,6674.895,5.15332,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,3,527795,1,6674.895,6.15332,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,4,527795,1,6674.895,7.15332,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527795,1,6674.895,8.153319,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527796,1,3062.17,37.47844,0,12,1,0,0,0,0,55.8968,55.8968,1,0,0,0,0,1,35.6,13.8,0,42,869.1,0,0,0,0,0,0,4.564348,6.818751,1,0,0,42,8.027205,0,4.023507,1
-16,5,95,0,2,527796,1,3062.17,38.47844,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,35.6,13.8,0,42,869.1,0,0,0,0,0,0,4.564348,6.818751,1,0,0,42,8.027205,0,,0
-16,5,95,0,3,527796,1,3062.17,39.47844,0,12,1,0,0,0,0,11025.43,11025.43,2,0,0,0,0,1,35.6,13.8,0,42,869.1,0,0,0,0,0,0,4.564348,6.818751,1,0,0,42,8.027205,0,9.30796,1
-16,5,95,0,4,527796,1,3062.17,40.47844,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,35.6,13.8,0,42,869.1,0,0,0,0,0,0,4.564348,6.818751,1,0,0,42,8.027205,0,,0
-16,5,95,0,5,527796,1,3062.17,41.47844,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,35.6,13.8,0,42,869.1,0,0,0,0,0,0,4.564348,6.818751,1,0,0,42,8.027205,0,,0
-16,5,95,0,1,527797,1,6674.895,7.263518,1,10,1,5.896806,0,0,0,0,5.896806,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,1,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,1.774411,1
-16,5,95,0,2,527797,1,6674.895,8.263518,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,1,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,3,527797,1,6674.895,9.263518,1,10,1,10.42101,0,0,0,0,10.42101,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,1,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,2.343824,1
-16,5,95,0,4,527797,1,6674.895,10.26352,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,1,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527797,1,6674.895,11.26352,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,1,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527798,1,6674.895,6.193018,0,10,1,5.896806,0,0,0,0,5.896806,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,1.774411,1
-16,5,95,0,2,527798,1,6674.895,7.193018,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,3,527798,1,6674.895,8.193019,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,4,527798,1,6674.895,9.193019,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527798,1,6674.895,10.19302,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527799,1,6674.895,35.35934,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,2,527799,1,6674.895,36.35934,1,10,1,8.659982,0,0,0,0,8.659982,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,2.158713,1
-16,5,95,0,3,527799,1,6674.895,37.35934,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,4,527799,1,6674.895,38.35934,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527799,1,6674.895,39.35934,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527800,1,6674.895,14.63929,0,10,1,35.38084,0,0,0,691.4005,726.7813,1,0,0,2,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,6.588625,1
-16,5,95,0,2,527800,1,6674.895,15.63929,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,3,527800,1,6674.895,16.63929,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,4,527800,1,6674.895,17.63929,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527800,1,6674.895,18.63929,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,0,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527801,1,6674.895,8.695415,0,10,1,5.896806,0,0,0,0,5.896806,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,1.774411,1
-16,5,95,0,2,527801,1,6674.895,9.695415,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,3,527801,1,6674.895,10.69541,0,10,1,68.23676,0,0,0,0,68.23676,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,4.222983,1
-16,5,95,0,4,527801,1,6674.895,11.69541,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,5,527801,1,6674.895,12.69541,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,1,527802,1,6674.895,10.95414,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-16,5,95,0,2,527802,1,6674.895,11.95414,0,10,1,36.46308,0,0,0,0,36.46308,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,3.5963,1
-16,5,95,0,3,527802,1,6674.895,12.95414,0,10,1,14.58941,0,0,0,0,14.58941,0,0,0,1,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,2.680296,1
-16,5,95,0,4,527802,1,6674.895,13.95414,0,10,1,8.064516,0,0,0,0,8.064516,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,2.087474,1
-16,5,95,0,5,527802,1,6674.895,14.95414,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,869.1,0,1,0,1.94591,0,0,4.564348,6.818751,1,0,0,70.68995,8.806258,1.94591,,0
-5,5,25,0,1,527876,1,1556.068,48.24367,0,12,1,33.86622,52.54102,0,0,0,86.40723,0,0,0,7,0,1,75,6.9,0,60.2,33.05,0,0,0,0,0,0,3.258096,4.884316,1,0,0,60.2,7.35056,0,4.459072,1
-5,5,25,0,2,527876,1,1556.068,49.24367,0,12,1,37.58973,92.67473,0,0,0,130.2645,0,0,0,4,0,1,75,6.9,0,60.2,33.05,0,0,0,0,0,0,3.258096,4.884316,1,0,0,60.2,7.35056,0,4.869566,1
-5,5,25,0,3,527876,1,1556.068,50.24367,0,12,1,54.2024,48.78559,0,0,0,102.988,0,0,0,2,0,1,75,6.9,0,60.2,33.05,0,0,0,0,0,0,3.258096,4.884316,1,0,0,60.2,7.35056,0,4.634613,1
-13,5,0,1,1,527895,0,1524.322,35.24983,0,17,1,25.01042,0,34.76448,0,0,59.77491,0,0,0,2,0,1,60.6,13.8,0,80.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,80.7,7.32996,0,4.090586,1
-13,5,0,1,2,527895,0,1524.322,36.24983,0,17,1,237.8094,1.425356,14.82371,0,0,254.0585,0,0,0,5,0,1,60.6,13.8,0,80.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,80.7,7.32996,0,5.537565,1
-13,5,0,1,3,527895,0,1524.322,37.24983,0,17,1,128.5521,0,29.19824,0,0,157.7503,0,0,0,6,0,1,60.6,13.8,0,80.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,80.7,7.32996,0,5.061014,1
-11,5,0,0,1,527903,1,6674.895,37.7577,1,11,1,10.57977,0,23.69869,0,0,34.27846,0,0,0,0,1,3,58.5,37.9,0,60.2,0,0,0,0,1.098612,0,0,0,0,1,0,0,60.2,8.806258,1.098612,3.534517,1
-11,5,0,0,2,527903,1,6674.895,38.7577,1,11,1,185.877,0,26.1959,0,946.8489,1158.922,1,0,0,3,1,3,58.5,37.9,0,60.2,0,0,0,0,1.098612,0,0,0,0,1,0,0,60.2,8.806258,1.098612,7.055245,1
-11,5,0,0,3,527903,1,6674.895,39.7577,1,11,1,41.52249,6.089965,13.84083,0,0,61.45329,0,0,0,4,1,2,58.5,37.9,0,60.2,0,0,0,0,.6931472,0,0,0,0,1,0,0,60.2,8.806258,.6931472,4.118278,1
-11,5,0,0,1,527904,1,6674.895,5.051335,1,11,1,10.57977,0,22.85231,0,0,33.43208,0,0,0,0,1,3,77.40034,10.57626,.1442925,55.6,0,0,1,1,1.098612,0,0,0,0,1,0,0,55.6,8.806258,1.098612,3.509516,1
-11,5,0,0,2,527904,1,6674.895,6.051335,1,11,1,9.491268,0,22.01974,0,0,31.51101,0,0,0,0,1,3,77.40034,10.57626,.1442925,55.6,0,0,1,1,1.098612,0,0,0,0,1,0,0,55.6,8.806258,1.098612,3.450337,1
-11,5,0,0,1,527906,1,6674.895,9.826146,0,11,1,23.2755,0,22.85231,0,0,46.1278,0,0,0,1,1,3,95,10.57626,.1442925,55.6,0,0,1,0,1.098612,0,0,0,0,1,0,0,55.6,8.806258,1.098612,3.831416,1
-11,5,0,0,2,527906,1,6674.895,10.82615,0,11,1,17.08428,0,0,0,0,17.08428,0,0,0,1,0,3,95,10.57626,.1442925,55.6,0,0,1,0,1.098612,0,0,0,0,1,0,0,55.6,8.806258,1.098612,2.838159,1
-11,5,0,0,3,527906,1,6674.895,11.82615,0,11,1,26.98962,0,20.41522,0,0,47.40485,0,0,0,1,1,2,95,10.57626,.1442925,55.6,0,0,1,0,.6931472,0,0,0,0,1,0,0,55.6,8.806258,.6931472,3.858724,1
-11,5,0,0,1,527964,1,7592.934,54.61465,0,7,1,29.62336,0,51.05375,0,0,80.67711,0,0,0,1,0,5,82.4,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,1,0,0,75,8.935105,1.609438,4.390455,1
-11,5,0,0,2,527964,1,7592.934,55.61465,0,7,1,0,3.481397,0,0,0,3.481397,0,0,0,0,0,5,82.4,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,1,0,0,75,8.935105,1.609438,1.247434,1
-11,5,0,0,3,527964,1,7592.934,56.61465,0,7,1,13.84083,2.692042,31.3045,0,0,47.83737,0,0,0,1,1,5,82.4,10.3,0,75,0,0,0,0,1.609438,0,0,0,0,1,0,0,75,8.935105,1.609438,3.867807,1
-11,5,0,0,1,527965,1,7592.934,51.75907,1,5,1,0,16.79645,0,0,0,16.79645,0,0,0,0,0,5,86.5,20.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,1,55.7,8.935105,1.609438,2.821167,1
-11,5,0,0,2,527965,1,7592.934,52.75907,1,5,1,25.81625,15.85801,21.71602,0,0,63.39028,0,0,0,3,0,5,86.5,20.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,1,55.7,8.935105,1.609438,4.149311,1
-11,5,0,0,3,527965,1,7592.934,53.75907,1,5,1,76.47059,21.34602,0,0,0,97.81661,0,0,0,6,0,5,86.5,20.7,0,,0,0,0,0,1.609438,0,0,0,0,0,0,1,55.7,8.935105,1.609438,4.583095,1
-11,5,0,0,1,527966,1,7592.934,8.895277,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,8.935105,1.609438,,0
-11,5,0,0,2,527966,1,7592.934,9.895277,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,8.935105,1.609438,,0
-11,5,0,0,3,527966,1,7592.934,10.89528,1,5,1,8.650519,0,0,0,0,8.650519,0,0,0,0,1,5,100,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,8.935105,1.609438,2.157619,1
-11,5,0,0,1,527967,1,7592.934,14.68309,1,5,1,10.57977,0,0,0,0,10.57977,0,0,0,0,1,5,88.3,3.4,0,72.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,72.6,8.935105,1.609438,2.358944,1
-11,5,0,0,2,527967,1,7592.934,15.68309,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,3.4,0,72.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,72.6,8.935105,1.609438,,0
-11,5,0,0,3,527967,1,7592.934,16.68309,1,5,1,8.650519,0,28.42561,0,0,37.07613,0,0,0,0,1,5,88.3,3.4,0,72.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,72.6,8.935105,1.609438,3.612973,1
-11,5,0,0,1,527968,1,6674.895,5.226557,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,100,10.57626,0,70.4,0,0,1,1,0,0,0,0,0,0,0,0,70.4,8.806258,0,,0
-11,5,0,0,2,527968,1,6674.895,6.226557,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,100,10.57626,0,70.4,0,0,1,1,0,0,0,0,0,0,0,0,70.4,8.806258,0,,0
-11,5,0,0,3,527968,1,6674.895,7.226557,1,12,1,11.07266,0,0,0,0,11.07266,0,0,0,2,0,1,100,10.57626,0,70.4,0,0,1,1,0,0,0,0,0,0,0,0,70.4,8.806258,0,2.40448,1
-11,5,0,0,1,527969,1,7592.934,27.74264,1,10,1,42.69996,0,0,0,0,42.69996,0,0,0,0,0,5,93.4,6.9,0,70.2,0,0,0,0,1.609438,0,0,0,0,0,0,1,70.2,8.935105,1.609438,3.754198,1
-11,5,0,0,2,527969,1,7592.934,28.74264,1,10,1,118.47,0,0,0,0,118.47,0,0,0,1,0,5,93.4,6.9,0,70.2,0,0,0,0,1.609438,0,0,0,0,0,0,1,70.2,8.935105,1.609438,4.77466,1
-11,5,0,0,3,527969,1,7592.934,29.74264,1,10,1,85.53633,0,0,0,0,85.53633,0,0,0,1,0,5,93.4,6.9,0,70.2,0,0,0,0,1.609438,0,0,0,0,0,0,1,70.2,8.935105,1.609438,4.448941,1
-11,5,0,1,1,527970,1,6878.648,13.72211,1,8,1,30.89293,0,32.16251,0,0,63.05544,0,0,0,2,1,5,100,10.57626,0,96.3,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,96.3,8.836323,1.609438,4.144014,1
-11,5,0,1,2,527970,1,6878.648,14.72211,1,8,1,24.6773,3.382688,15.18603,0,0,43.24601,0,0,0,3,1,5,100,10.57626,0,96.3,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,96.3,8.836323,1.609438,3.766905,1
-11,5,0,1,3,527970,1,6878.648,15.72211,1,8,1,115.917,0,30.3218,0,0,146.2388,0,0,0,5,1,5,100,10.57626,0,96.3,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,96.3,8.836323,1.609438,4.98524,1
-11,5,0,1,1,527972,1,6878.648,50.10267,0,8,1,14.81168,0,42.31908,0,0,57.13077,0,0,0,0,1,5,64.4,10.3,1,70,0,416,0,0,1.609438,6.030685,0,0,0,0,1,0,70,8.836323,1.609438,4.045343,1
-11,5,0,1,2,527972,1,6878.648,51.10267,0,8,1,18.98254,3.109339,24.6773,0,0,46.76917,0,0,0,1,1,5,64.4,10.3,1,70,0,416,0,0,1.609438,6.030685,0,0,0,0,1,0,70,8.836323,1.609438,3.845224,1
-11,5,0,1,3,527972,1,6878.648,52.10267,0,8,1,16.95502,0,16.609,0,0,33.56401,0,0,0,1,1,5,64.4,10.3,1,70,0,416,0,0,1.609438,6.030685,0,0,0,0,1,0,70,8.836323,1.609438,3.513454,1
-11,5,0,1,1,527973,1,6878.648,40.71458,1,8,1,30.68134,4.879391,0,0,0,35.56073,0,0,0,1,0,5,95.2,6.9,0,83,0,416,0,0,1.609438,6.030685,0,0,0,0,0,0,83,8.836323,1.609438,3.571242,1
-11,5,0,1,2,527973,1,6878.648,41.71458,1,8,1,6.833713,0,0,0,857.631,864.4647,1,0,0,1,0,5,95.2,6.9,0,83,0,416,0,0,1.609438,6.030685,0,0,0,0,0,0,83,8.836323,1.609438,6.762111,1
-11,5,0,1,3,527973,1,6878.648,42.71458,1,8,1,48.44291,0,40.83045,0,796.8858,886.1592,1,0,0,2,1,5,95.2,6.9,0,83,0,416,0,0,1.609438,6.030685,0,0,0,0,0,0,83,8.836323,1.609438,6.786897,1
-11,5,0,1,1,527974,1,6878.648,11.55647,0,8,1,7.617435,2.264071,0,0,0,9.881507,0,0,0,1,0,5,78.3,10.57626,0,85.2,0,416,1,0,1.609438,6.030685,0,0,0,1,0,0,85.2,8.836323,1.609438,2.290665,1
-11,5,0,1,2,527974,1,6878.648,12.55647,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,78.3,10.57626,0,85.2,0,416,1,0,1.609438,6.030685,0,0,0,1,0,0,85.2,8.836323,1.609438,,0
-11,5,0,1,3,527974,1,6878.648,13.55647,0,8,1,20.76125,0,29.06574,0,0,49.82699,0,0,0,0,2,5,78.3,10.57626,0,85.2,0,416,1,0,1.609438,6.030685,0,0,0,1,0,0,85.2,8.836323,1.609438,3.908557,1
-11,5,0,1,1,527975,.4758801,502.3041,19.5154,1,10,1,10.51746,0,0,0,0,10.51746,0,0,0,2,0,1,58,0,0,69.3,0,18,0,0,0,2.890372,0,0,0,1,0,0,69.3,6.221195,0,2.353037,1
-11,5,0,1,2,527975,.4758801,502.3041,20.5154,1,10,1,75.93502,5.515678,0,0,0,81.4507,0,0,0,3,0,1,58,0,0,69.3,0,18,0,0,0,2.890372,0,0,0,1,0,0,69.3,6.221195,0,4.399998,1
-11,5,0,1,3,527975,.4758801,502.3041,21.5154,1,10,1,110.1201,16.13722,37.73585,0,0,163.9931,0,0,0,7,1,1,58,0,0,69.3,0,18,0,0,0,2.890372,0,0,0,1,0,0,69.3,6.221195,0,5.099824,1
-11,5,0,1,1,527976,1,6878.648,9.010267,1,8,1,12.69573,0,28.77698,0,0,41.47271,0,0,0,0,1,5,83.3,10.57626,0,70.4,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,70.4,8.836323,1.609438,3.725035,1
-11,5,0,1,2,527976,1,6878.648,10.01027,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,70.4,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,70.4,8.836323,1.609438,,0
-11,5,0,1,3,527976,1,6878.648,11.01027,1,8,1,10.38062,0,38.75433,0,0,49.13495,0,0,0,0,1,5,83.3,10.57626,0,70.4,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,70.4,8.836323,1.609438,3.894571,1
-13,5,0,1,1,527994,1,6674.895,12.34771,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.806258,1.386294,,0
-13,5,0,1,2,527994,1,6674.895,13.34771,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.806258,1.386294,,0
-13,5,0,1,3,527994,1,6674.895,14.34771,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,66.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.806258,1.386294,,0
-13,5,0,1,1,527995,1,6674.895,32.46817,1,12,1,15.23487,4.418113,0,0,0,19.65298,0,0,0,2,0,4,58,20.7,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,8.806258,1.386294,2.978229,1
-13,5,0,1,2,527995,1,6674.895,33.46817,1,12,1,59.22551,0,0,0,0,59.22551,0,0,0,2,0,4,58,20.7,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,8.806258,1.386294,4.081352,1
-13,5,0,1,3,527995,1,6674.895,34.46817,1,12,1,19.37716,7.916955,0,0,506.2284,533.5225,1,0,0,2,0,4,58,20.7,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.8,8.806258,1.386294,6.279501,1
-13,5,0,1,1,527996,1,6674.895,34.73785,0,7,1,234.4477,8.539991,0,0,0,242.9877,0,0,0,4,18,4,78.7,10.3,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.7,8.806258,1.386294,5.493011,1
-13,5,0,1,2,527996,1,6674.895,35.73785,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,78.7,10.3,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.7,8.806258,1.386294,,0
-13,5,0,1,3,527996,1,6674.895,36.73785,0,7,1,284.4291,24.57093,0,0,0,309,0,0,0,10,0,4,78.7,10.3,0,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.7,8.806258,1.386294,5.733341,1
-13,5,0,1,1,527997,1,6674.895,11.00342,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.806258,1.386294,,0
-13,5,0,1,2,527997,1,6674.895,12.00342,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.806258,1.386294,,0
-13,5,0,1,3,527997,1,6674.895,13.00342,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.806258,1.386294,,0
-18,5,25,1,1,528013,1,7266.257,17.69747,1,10,1,8.081667,0,0,0,0,8.081667,0,0,0,0,0,4,76.6,6.9,0,57.5,362.31,362.31,1,1,1.386294,5.8925,0,3.258096,7.278795,1,0,0,57.5,8.891134,1.386294,2.089598,1
-18,5,25,1,2,528013,1,7266.257,18.69747,1,10,1,0,0,9.923664,0,0,9.923664,0,0,0,0,0,4,76.6,6.9,0,57.5,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,1,0,0,57.5,8.891134,1.386294,2.294922,1
-18,5,25,1,3,528013,1,7266.257,19.69747,1,10,1,19.16376,4.857143,0,0,0,24.02091,0,0,0,0,1,4,76.6,6.9,0,57.5,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,1,0,0,57.5,8.891134,1.386294,3.178925,1
-18,5,25,1,1,528014,1,7266.257,16.3258,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92,3.4,0,64.8,362.31,362.31,1,0,1.386294,5.8925,0,3.258096,7.278795,1,0,0,64.8,8.891134,1.386294,,0
-18,5,25,1,2,528014,1,7266.257,17.3258,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92,3.4,0,64.8,362.31,362.31,1,0,1.386294,5.8925,0,3.258096,7.278795,1,0,0,64.8,8.891134,1.386294,,0
-18,5,25,1,3,528014,1,7266.257,18.3258,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92,3.4,0,64.8,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,1,0,0,64.8,8.891134,1.386294,,0
-18,5,25,1,1,528015,1,7266.257,41.12526,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,10.3,1,47.7,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,0,1,0,47.7,8.891134,1.386294,,0
-18,5,25,1,2,528015,1,7266.257,42.12526,1,10,1,34.35115,45.17176,0,0,0,79.5229,0,0,0,0,0,4,73.4,10.3,1,47.7,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,0,1,0,47.7,8.891134,1.386294,4.376045,1
-18,5,25,1,3,528015,1,7266.257,43.12526,1,10,1,0,8.170732,0,0,0,8.170732,0,0,0,0,0,4,73.4,10.3,1,47.7,362.31,362.31,0,0,1.386294,5.8925,0,3.258096,7.278795,0,1,0,47.7,8.891134,1.386294,2.100559,1
-18,5,25,1,1,528018,1,7266.257,10.8282,1,10,1,8.081667,0,0,0,0,8.081667,0,0,0,0,0,4,83.3,10.57626,0,63,362.31,362.31,1,1,1.386294,5.8925,0,3.258096,7.278795,1,0,0,63,8.891134,1.386294,2.089598,1
-18,5,25,1,2,528018,1,7266.257,11.8282,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,63,362.31,362.31,1,1,1.386294,5.8925,0,3.258096,7.278795,1,0,0,63,8.891134,1.386294,,0
-18,5,25,1,3,528018,1,7266.257,12.8282,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,63,362.31,362.31,1,1,1.386294,5.8925,0,3.258096,7.278795,1,0,0,63,8.891134,1.386294,,0
-13,5,0,1,1,528054,1,4384.537,31.98083,1,16,1,25.52106,6.444067,0,0,0,31.96512,0,0,0,3,0,1,64.9,3.4,0,60.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,60.2,8.386067,0,3.464645,1
-13,5,0,1,2,528054,1,4384.537,32.98083,1,16,1,20.99237,0,0,0,0,20.99237,0,0,0,4,0,1,64.9,3.4,0,60.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,60.2,8.386067,0,3.044159,1
-13,5,0,1,3,528054,1,4384.537,33.98083,1,16,1,12.19512,0,0,0,0,12.19512,0,0,0,2,0,1,64.9,3.4,0,60.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,60.2,8.386067,0,2.501036,1
-14,5,95,1,1,528069,0,8094.214,48.80219,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,77.3,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,77.3,8.999028,.6931472,,0
-14,5,95,1,2,528069,0,8094.214,49.80219,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,77.3,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,77.3,8.999028,.6931472,,0
-14,5,95,1,3,528069,0,8094.214,50.80219,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,81.4,6.9,0,77.3,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,77.3,8.999028,.6931472,,0
-14,5,95,1,1,528073,0,8094.214,57.21834,0,6,1,38.70693,26.13356,0,0,0,64.84049,0,0,0,5,0,2,64.4,20.7,0,53.4,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,53.4,8.999028,.6931472,4.17193,1
-14,5,95,1,2,528073,0,8094.214,58.21834,0,6,1,11.45038,8.870229,0,0,0,20.32061,0,0,0,2,0,2,64.4,20.7,0,53.4,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,53.4,8.999028,.6931472,3.011636,1
-14,5,95,1,3,528073,0,8094.214,59.21834,0,6,1,4.181185,4.132404,0,0,0,8.313589,0,0,0,1,0,2,64.4,20.7,0,53.4,749.95,749.95,0,0,.6931472,6.620007,0,4.564348,6.6713,1,0,0,53.4,8.999028,.6931472,2.117891,1
-13,5,0,0,1,528125,1,4133.128,26.92402,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.7,0,0,79.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,79.5,8.327032,1.098612,,0
-13,5,0,0,2,528125,1,4133.128,27.92402,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,0,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,79.5,8.327032,1.386294,,0
-13,5,0,0,3,528125,1,4133.128,28.92402,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,77.7,0,0,79.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,79.5,8.327032,1.386294,,0
-13,5,0,0,1,528126,1,4133.128,24.65982,1,11,1,140.2878,0,0,0,349.5557,489.8434,1,1,0,12,0,3,82.4,10.3,0,88.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.327032,1.098612,6.194086,1
-13,5,0,0,2,528126,1,4133.128,25.65982,1,11,1,32.27031,0,0,0,0,32.27031,0,0,0,2,0,4,82.4,10.3,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.327032,1.386294,3.474148,1
-13,5,0,0,3,528126,1,4133.128,26.65982,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,10.3,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.6,8.327032,1.386294,,0
-13,5,0,0,1,528127,1,4133.128,6.872005,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,10.57626,0,88.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.327032,1.098612,,0
-13,5,0,0,2,528127,1,4133.128,7.872005,1,11,1,11.38952,0,0,0,0,11.38952,0,0,0,1,0,4,83.3,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.327032,1.386294,2.432694,1
-13,5,0,0,3,528127,1,4133.128,8.872005,1,11,1,8.650519,0,21.5917,0,0,30.24221,0,0,0,1,0,4,83.3,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.327032,1.386294,3.409239,1
-13,5,0,1,1,528160,0,4416.794,22.37098,1,11,1,0,6.03047,0,0,0,6.03047,0,0,0,0,0,4,80.9,13.8,0,93.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,93.2,8.393395,1.386294,1.796825,1
-13,5,0,1,2,528160,0,4416.794,23.37098,1,11,1,38.72437,0,0,0,389.142,427.8664,1,0,0,1,0,4,80.9,13.8,0,93.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,93.2,8.393395,1.386294,6.058811,1
-13,5,0,1,3,528160,0,4416.794,24.37098,1,11,1,0,0,0,0,2020.363,2020.363,1,0,0,0,0,4,80.9,13.8,0,93.2,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,93.2,8.393395,1.386294,7.611032,1
-13,5,0,1,1,528161,0,4416.794,23.39494,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,94.1,10.3,0,92,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,1,0,92,8.393395,1.386294,,0
-13,5,0,1,2,528161,0,4416.794,24.39494,0,7,1,0,3.796507,0,0,213.7434,217.5399,1,0,0,0,0,4,94.1,10.3,0,92,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,1,0,92,8.393395,1.386294,5.382382,1
-13,5,0,1,3,528161,0,4416.794,25.39494,0,7,1,19.03114,0,0,0,0,19.03114,0,0,0,1,0,4,94.1,10.3,0,92,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,1,0,92,8.393395,1.386294,2.946077,1
-13,5,0,0,1,528162,0,4416.794,3.129364,1,11,1,6.347863,0,0,0,0,6.347863,0,0,0,0,0,4,77.40034,10.57626,0,85.2,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,1,0,85.2,8.393395,1.386294,1.848118,1
-13,5,0,0,2,528162,0,4416.794,4.129364,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,85.2,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,1,0,85.2,8.393395,1.386294,,0
-13,5,0,0,3,528162,0,4416.794,5.129364,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,85.2,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,1,0,85.2,8.393395,1.386294,,0
-11,5,0,0,1,528185,1,1028.162,52.23819,1,4,1,33.60272,0,0,0,0,33.60272,0,0,0,1,0,1,51.1,20.7,1,60.2,0,71.4,0,0,0,4.268298,0,0,0,1,0,0,60.2,6.9365,0,3.514607,1
-11,5,0,0,2,528185,1,1028.162,53.23819,1,4,1,11.45038,0,0,0,0,11.45038,0,0,0,1,0,1,51.1,20.7,1,60.2,0,71.4,0,0,0,4.268298,0,0,0,1,0,0,60.2,6.9365,0,2.438023,1
-11,5,0,0,3,528185,1,1028.162,54.23819,1,4,1,32.40418,0,29.26829,0,0,61.67247,0,0,0,0,1,1,51.1,20.7,1,60.2,0,71.4,0,0,0,4.268298,0,0,0,1,0,0,60.2,6.9365,0,4.121838,1
-11,5,0,1,1,528195,1,6674.895,39.41136,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,62.8,6.9,0,46.6,0,96,0,0,0,4.564348,0,0,0,1,0,0,46.6,8.806258,0,,0
-11,5,0,1,2,528195,1,6674.895,40.41136,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,62.8,6.9,0,46.6,0,96,0,0,0,4.564348,0,0,0,1,0,0,46.6,8.806258,0,,0
-11,5,0,1,3,528195,1,6674.895,41.41136,0,10,1,0,0,0,0,0,0,0,0,0,0,0,1,62.8,6.9,0,46.6,0,96,0,0,0,4.564348,0,0,0,1,0,0,46.6,8.806258,0,,0
-13,5,0,0,1,528263,1,3371.224,53.2731,1,11,1,68.77866,3.309712,0,0,0,72.08837,0,0,0,5,0,1,69.7,10.3,0,61.4,150,268.84,0,0,0,5.594116,1,4.564348,5.061929,1,0,0,61.4,8.123327,0,4.277893,1
-13,5,0,0,2,528263,1,3371.224,54.2731,1,11,1,0,34.83871,0,0,0,34.83871,0,0,0,0,0,1,69.7,10.3,0,61.4,150,268.84,0,0,0,5.594116,1,4.564348,5.061929,1,0,0,61.4,8.123327,0,3.550729,1
-13,5,0,0,3,528263,1,3371.224,55.2731,1,11,1,44.65494,17.49323,0,0,0,62.14817,0,0,0,4,0,1,69.7,10.3,0,61.4,150,268.84,0,0,0,5.594116,1,4.564348,5.061929,1,0,0,61.4,8.123327,0,4.129521,1
-11,5,0,1,1,528326,0,10274.49,49.20739,1,16,1,86.96729,39.20713,38.65213,0,0,164.8266,0,0,0,11,0,4,92,6.9,0,85.2,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,85.2,9.237516,1.386294,5.104894,1
-11,5,0,1,2,528326,0,10274.49,50.20739,1,16,1,76.87012,33.50161,0,0,0,110.3717,0,0,0,9,0,4,92,6.9,0,85.2,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,85.2,9.237516,1.386294,4.703854,1
-11,5,0,1,3,528326,0,10274.49,51.20739,1,16,1,203.1973,53.47497,68.2541,0,0,324.9264,0,0,0,19,1,4,92,6.9,0,85.2,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,85.2,9.237516,1.386294,5.783599,1
-11,5,0,1,4,528326,0,10274.49,52.20739,1,16,1,1351.53,35.63657,0,0,3167.737,4554.904,3,0,0,30,0,4,92,6.9,0,85.2,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,85.2,9.237516,1.386294,8.42396,1
-11,5,0,1,5,528326,0,10274.49,53.20739,1,16,1,360.5489,42.4048,25.72899,0,844.7341,1273.417,1,0,0,27,0,4,92,6.9,0,85.2,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,85.2,9.237516,1.386294,7.149459,1
-11,5,0,1,1,528327,0,10274.49,17.11431,0,16,1,54.50941,16.31814,0,0,0,70.82755,0,0,0,8,0,4,96.8,3.4,0,92,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,92,9.237516,1.386294,4.260248,1
-11,5,0,1,2,528327,0,10274.49,18.11431,0,16,1,71.13354,14.10739,0,0,0,85.24094,0,0,0,9,0,4,96.8,3.4,0,92,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,92,9.237516,1.386294,4.445482,1
-11,5,0,1,3,528327,0,10274.49,19.11431,0,16,1,45.85612,16.3273,.8413967,0,0,63.02482,0,0,0,6,0,4,96.8,3.4,0,92,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,92,9.237516,1.386294,4.143528,1
-11,5,0,1,4,528327,0,10274.49,20.11431,0,16,1,19.2671,4.91122,29.07442,0,0,53.25274,0,0,0,2,0,4,96.8,3.4,0,92,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,92,9.237516,1.386294,3.975049,1
-11,5,0,1,5,528327,0,10274.49,21.11431,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,3.4,0,92,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,92,9.237516,1.386294,,0
-11,5,0,1,1,528328,0,10274.49,46.98152,0,16,1,14.8662,0,40.19822,0,0,55.06442,0,0,0,1,0,4,77.7,6.9,0,62.5,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,62.5,9.237516,1.386294,4.008504,1
-11,5,0,1,2,528328,0,10274.49,47.98152,0,16,1,42.68013,.8673704,0,0,0,43.5475,0,0,0,1,0,4,77.7,6.9,0,62.5,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,62.5,9.237516,1.386294,3.773852,1
-11,5,0,1,3,528328,0,10274.49,48.98152,0,16,1,65.20824,4.530921,38.50232,0,0,108.2415,0,0,0,2,0,4,77.7,6.9,0,62.5,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,62.5,9.237516,1.386294,4.684365,1
-11,5,0,1,4,528328,0,10274.49,49.98152,0,16,1,45.14545,6.241027,0,0,0,51.38647,0,0,0,1,0,4,77.7,6.9,0,62.5,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,62.5,9.237516,1.386294,3.939375,1
-11,5,0,1,5,528328,0,10274.49,50.98152,0,16,1,79.61235,14.55918,36.74443,0,0,130.916,0,0,0,8,0,4,77.7,6.9,0,62.5,0,354.12,0,0,1.386294,5.869636,0,0,0,0,0,0,62.5,9.237516,1.386294,4.874556,1
-11,5,0,1,1,528330,0,10274.49,13.67556,0,16,1,63.42914,.7680872,27.82953,0,0,92.02676,0,0,0,6,0,4,86.7,10.57626,0,88.9,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,88.9,9.237516,1.386294,4.522079,1
-11,5,0,1,2,528330,0,10274.49,14.67556,0,16,1,10.09637,0,0,0,0,10.09637,0,0,0,1,0,4,86.7,10.57626,0,88.9,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,88.9,9.237516,1.386294,2.312176,1
-11,5,0,1,3,528330,0,10274.49,15.67556,0,16,1,61.84266,8.872528,27.2276,0,0,97.94279,0,0,0,8,0,4,86.7,10.57626,0,88.9,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,88.9,9.237516,1.386294,4.584383,1
-11,5,0,1,4,528330,0,10274.49,16.67556,0,16,1,64.60143,29.38799,0,75.55724,0,93.98943,0,0,4,9,0,4,86.7,10.57626,0,88.9,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,88.9,9.237516,1.386294,4.543182,1
-11,5,0,1,5,528330,0,10274.49,17.67556,0,16,1,57.63293,66.23328,25.72899,377.3585,0,149.5952,0,0,22,7,0,4,86.7,10.57626,0,88.9,0,354.12,1,0,1.386294,5.869636,0,0,0,0,0,0,88.9,9.237516,1.386294,5.007933,1
-14,5,95,0,1,528359,0,11026.98,24.29295,1,16,1,19.65602,17.02703,0,0,0,36.68305,0,0,0,2,0,2,60.1,27.6,0,72.6,850,850,0,0,.6931472,6.745236,0,4.564348,6.79653,1,0,0,72.6,9.308191,.6931472,3.602315,1
-14,5,95,0,2,528359,0,11026.98,25.29295,1,16,1,8.204193,0,0,0,157.247,165.4512,1,0,0,1,0,2,60.1,27.6,0,72.6,850,850,0,0,.6931472,6.745236,0,4.564348,6.79653,1,0,0,72.6,9.308191,.6931472,5.108676,1
-11,5,0,1,1,528553,0,14946.04,6.099932,0,16,1,44.10307,3.587711,0,0,0,47.69078,0,0,0,2,0,3,68.3,10.57626,0,74.1,0,469.68,1,0,1.098612,6.152051,0,0,0,1,0,0,74.1,9.612268,1.098612,3.864738,1
-11,5,0,1,2,528553,0,14946.04,7.099932,0,16,1,35.79624,33.64846,0,0,0,69.4447,0,0,0,4,0,4,68.3,10.57626,0,74.1,0,469.68,1,0,1.386294,6.152051,0,0,0,1,0,0,74.1,9.612268,1.386294,4.240531,1
-11,5,0,1,3,528553,0,14946.04,8.099932,0,16,1,14.72444,11.15271,0,0,0,25.87716,0,0,0,2,0,4,68.3,10.57626,0,74.1,0,469.68,1,0,1.386294,6.152051,0,0,0,1,0,0,74.1,9.612268,1.386294,3.253361,1
-11,5,0,1,4,528553,0,14946.04,9.099932,0,16,1,148.47,18.26596,0,0,0,166.7359,0,0,0,7,0,4,68.3,10.57626,0,74.1,0,469.68,1,0,1.386294,6.152051,0,0,0,1,0,0,74.1,9.612268,1.386294,5.116411,1
-11,5,0,1,5,528553,0,14946.04,10.09993,0,16,1,20.92624,20.50429,0,0,0,41.43053,0,0,0,2,0,4,68.3,10.57626,0,74.1,0,469.68,1,0,1.386294,6.152051,0,0,0,1,0,0,74.1,9.612268,1.386294,3.724018,1
-11,5,0,1,1,528554,0,14946.04,35.95072,0,18,1,19.82161,0,0,0,0,19.82161,0,0,0,1,0,3,86.2,6.9,0,86.4,0,469.68,0,0,1.098612,6.152051,0,0,0,1,0,0,86.4,9.612268,1.098612,2.986773,1
-11,5,0,1,2,528554,0,14946.04,36.95072,0,18,1,13.76778,0,24.81872,0,0,38.58651,0,0,0,1,0,4,86.2,6.9,0,86.4,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,86.4,9.612268,1.386294,3.652903,1
-11,5,0,1,3,528554,0,14946.04,37.95072,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,86.2,6.9,0,86.4,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,86.4,9.612268,1.386294,,0
-11,5,0,1,4,528554,0,14946.04,38.95072,0,18,1,18.13374,2.859841,0,0,0,20.99358,0,0,0,3,0,4,86.2,6.9,0,86.4,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,86.4,9.612268,1.386294,3.044217,1
-11,5,0,1,5,528554,0,14946.04,39.95072,0,18,1,13.72213,0,30.67924,0,0,44.40137,0,0,0,1,0,4,86.2,6.9,0,86.4,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,86.4,9.612268,1.386294,3.79327,1
-11,5,0,1,1,528555,0,14946.04,36.3614,1,16,1,11.89296,12.05154,0,0,545.2428,569.1873,1,0,0,2,0,3,63.8,24.1,0,96.6,0,469.68,0,0,1.098612,6.152051,0,0,0,1,0,0,96.6,9.612268,1.098612,6.34421,1
-11,5,0,1,2,528555,0,14946.04,37.3614,1,16,1,56.44791,34.51124,29.59156,0,0,120.5507,0,0,0,8,0,4,63.8,24.1,0,96.6,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,96.6,9.612268,1.386294,4.79207,1
-11,5,0,1,3,528555,0,14946.04,38.3614,1,16,1,82.45688,0,0,0,373.5801,456.037,1,0,0,2,8,4,63.8,24.1,0,96.6,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,96.6,9.612268,1.386294,6.122574,1
-11,5,0,1,4,528555,0,14946.04,39.3614,1,16,1,30.60068,1.938043,0,0,0,32.53872,0,0,0,2,0,4,63.8,24.1,0,96.6,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,96.6,9.612268,1.386294,3.482431,1
-11,5,0,1,5,528555,0,14946.04,40.3614,1,16,1,42.19554,6.542024,2.401372,0,0,51.13894,0,0,0,5,0,4,63.8,24.1,0,96.6,0,469.68,0,0,1.386294,6.152051,0,0,0,1,0,0,96.6,9.612268,1.386294,3.934546,1
-14,5,95,0,1,528562,.4758801,798.7711,19.01711,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,71.6,0,0,0,0,0,0,0,4.564348,0,1,0,0,71.6,6.684326,0,,0
-14,5,95,0,2,528562,.4758801,798.7711,20.01711,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,71.6,0,0,0,0,0,0,0,4.564348,0,1,0,0,71.6,6.684326,0,,0
-14,5,95,0,3,528562,.4758801,798.7711,21.01711,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,71.8,3.4,0,71.6,0,0,0,0,0,0,0,4.564348,0,1,0,0,71.6,6.684326,0,,0
-11,5,0,1,1,528589,1,6674.895,35.70979,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,75.5,10.3,0,54.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.5,8.806258,1.386294,,0
-11,5,0,1,2,528589,1,6674.895,36.70979,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,75.5,10.3,0,54.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.5,8.806258,1.386294,,0
-11,5,0,1,3,528589,1,6674.895,37.70979,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,75.5,10.3,0,54.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,54.5,8.806258,1.386294,,0
-11,5,0,1,1,528590,1,6674.895,46.38193,1,12,1,10.51746,0,0,0,846.8658,857.3832,1,0,0,2,0,4,80.3,10.3,0,73.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,73.9,8.806258,1.386294,6.753885,1
-11,5,0,1,2,528590,1,6674.895,47.38193,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,10.3,0,73.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,73.9,8.806258,1.386294,,0
-11,5,0,1,3,528590,1,6674.895,48.38193,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,10.3,0,73.9,0,0,0,0,1.386294,0,0,0,0,1,0,0,73.9,8.806258,1.386294,,0
-11,5,0,1,1,528591,1,6674.895,8.060233,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,75,10.57626,0,66.7,0,0,1,0,1.386294,0,0,0,0,0,0,0,66.7,8.806258,1.386294,,0
-11,5,0,1,2,528591,1,6674.895,9.060233,0,12,1,19.2671,0,0,0,0,19.2671,0,0,0,0,0,4,75,10.57626,0,66.7,0,0,1,0,1.386294,0,0,0,0,0,0,0,66.7,8.806258,1.386294,2.958399,1
-11,5,0,1,3,528591,1,6674.895,10.06023,0,12,1,10.2916,0,0,0,0,10.2916,0,0,0,0,0,4,75,10.57626,0,66.7,0,0,1,0,1.386294,0,0,0,0,0,0,0,66.7,8.806258,1.386294,2.331328,1
-11,5,0,1,1,528601,0,13216.59,59.91513,0,12,1,0,4.738409,0,0,0,4.738409,0,0,0,0,0,2,98.4,6.9,0,93.2,0,303,0,0,.6931472,5.713733,0,0,0,0,0,0,93.2,9.489304,.6931472,1.555701,1
-11,5,0,1,2,528601,0,13216.59,60.91513,0,12,1,83.11069,23.56107,31.60305,0,0,138.2748,0,0,0,4,0,2,98.4,6.9,0,93.2,0,303,0,0,.6931472,5.713733,0,0,0,0,0,0,93.2,9.489304,.6931472,4.929243,1
-11,5,0,1,3,528601,0,13216.59,61.91513,0,12,1,43.37979,88.1115,0,0,0,131.4913,0,0,0,2,0,2,98.4,6.9,0,93.2,0,303,0,0,.6931472,5.713733,0,0,0,0,0,0,93.2,9.489304,.6931472,4.878941,1
-11,5,0,1,1,528602,0,13216.59,60.69542,1,10,1,214.3769,17.33305,0,0,0,231.7099,0,0,0,4,1,2,99.5,17.2,0,81.8,0,303,0,0,.6931472,5.713733,0,0,0,0,1,0,81.8,9.489304,.6931472,5.445486,1
-11,5,0,1,2,528602,0,13216.59,61.69542,1,10,1,66.12595,29.17939,31.35878,0,497.7099,624.374,1,0,0,3,0,2,99.5,17.2,0,81.8,0,303,0,0,.6931472,5.713733,0,0,0,0,1,0,81.8,9.489304,.6931472,6.436749,1
-11,5,0,1,3,528602,0,13216.59,62.69542,1,10,1,6.968641,10.1777,0,0,0,17.14634,0,0,0,1,0,2,99.5,17.2,0,81.8,0,303,0,0,.6931472,5.713733,0,0,0,0,1,0,81.8,9.489304,.6931472,2.841785,1
-18,5,25,0,1,528603,1,4663.93,25.97947,0,12,1,14.8662,12.33399,27.39346,0,0,54.59366,0,0,0,1,0,1,64.9,13.8,0,59.1,748,748,0,0,0,6.617403,0,3.258096,8.003697,1,0,0,59.1,8.447828,0,3.999918,1
-18,5,25,0,1,528611,1,6674.895,27.25804,0,13,1,330.4738,4.862843,30.92269,0,986.3591,1352.618,1,0,0,2,7,1,88.3,20.7,0,51.1,80,0,0,0,0,0,0,3.258096,5.768321,1,0,0,51.1,8.806258,0,7.209797,1
-18,5,25,0,2,528611,1,6674.895,28.25804,0,13,1,212.5864,0,27.20148,0,0,239.7879,0,0,0,1,5,1,88.3,20.7,0,51.1,80,0,0,0,0,0,0,3.258096,5.768321,1,0,0,51.1,8.806258,0,5.479755,1
-18,5,25,0,3,528611,1,6674.895,29.25804,0,13,1,168.7897,0,12.69573,0,598.8997,780.3851,1,0,0,5,2,1,88.3,20.7,0,51.1,80,0,0,0,0,0,0,3.258096,5.768321,1,0,0,51.1,8.806258,0,6.659788,1
-18,5,25,0,4,528611,1,6674.895,30.25804,0,13,1,64.54062,0,0,0,1393.888,1458.428,1,0,0,1,3,1,88.3,20.7,0,51.1,80,0,0,0,0,0,0,3.258096,5.768321,1,0,0,51.1,8.806258,0,7.285115,1
-18,5,25,0,5,528611,1,6674.895,31.25804,0,13,1,0,0,0,62.28374,11821.64,11821.64,2,0,27,0,0,1,88.3,20.7,0,51.1,80,0,0,0,0,0,0,3.258096,5.768321,1,0,0,51.1,8.806258,0,9.377687,1
-13,5,0,0,1,528619,1,86.53354,6.551677,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,98.3,10.57626,0,63,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,63,4.472022,1.791759,,0
-13,5,0,0,2,528619,1,86.53354,7.551677,0,12,1,18.03341,2.129841,0,0,0,20.16325,0,0,0,0,0,6,98.3,10.57626,0,63,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,63,4.472022,1.791759,3.003862,1
-13,5,0,0,3,528619,1,86.53354,8.551677,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,98.3,10.57626,0,63,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,63,4.472022,1.791759,,0
-13,5,0,0,1,528620,1,86.53354,11.9425,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,66.7,10.57626,0,55.6,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,55.6,4.472022,1.791759,,0
-13,5,0,0,2,528620,1,86.53354,12.9425,0,12,1,5.694761,0,0,0,0,5.694761,0,0,0,2,0,6,66.7,10.57626,0,55.6,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,55.6,4.472022,1.791759,1.739547,1
-13,5,0,0,3,528620,1,86.53354,13.9425,0,12,1,129.7751,0,0,0,886.1592,1015.934,1,0,0,1,0,6,66.7,10.57626,0,55.6,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,55.6,4.472022,1.791759,6.923564,1
-13,5,0,0,1,528621,1,86.53354,4,0,12,1,14.38849,0,0,0,0,14.38849,0,0,0,1,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,4.472022,1.791759,2.666429,1
-13,5,0,0,2,528621,1,86.53354,5,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,4.472022,1.791759,,0
-13,5,0,0,3,528621,1,86.53354,6,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,4.472022,1.791759,,0
-13,5,0,0,1,528622,1,86.53354,30.14921,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,85.1,6.9,0,78.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,78.4,4.472022,1.791759,,0
-13,5,0,0,2,528622,1,86.53354,31.14921,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,85.1,6.9,0,78.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,78.4,4.472022,1.791759,,0
-13,5,0,0,3,528622,1,86.53354,32.14921,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,85.1,6.9,0,78.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,78.4,4.472022,1.791759,,0
-13,5,0,0,1,528623,1,86.53354,9.722108,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,,0
-13,5,0,0,2,528623,1,86.53354,10.72211,1,12,1,1.898254,0,0,0,0,1.898254,0,0,0,0,0,6,90,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,.6409343,1
-13,5,0,0,3,528623,1,86.53354,11.72211,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,90,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,,0
-13,5,0,0,1,528624,1,86.53354,11.1102,0,12,1,0,1.671604,0,0,0,1.671604,0,0,0,0,0,6,78.3,10.57626,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,.5137836,1
-13,5,0,0,2,528624,1,86.53354,12.1102,0,12,1,4.176158,0,0,0,0,4.176158,0,0,0,1,0,6,78.3,10.57626,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,1.429392,1
-13,5,0,0,3,528624,1,86.53354,13.1102,0,12,1,82.00692,0,0,0,0,82.00692,0,0,0,4,0,6,78.3,10.57626,0,74.1,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,4.472022,1.791759,4.406804,1
-16,5,95,1,1,528705,1,3779.314,51.37303,1,11,1,87.08456,128.8809,0,0,0,215.9655,0,0,0,5,0,1,86.7,6.9,0,50,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,50,8.237562,0,5.375119,1
-16,5,95,1,2,528705,1,3779.314,52.37303,1,11,1,57.04571,159.8036,37.77862,0,0,254.6279,0,0,0,3,1,1,86.7,6.9,0,50,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,50,8.237562,0,5.539803,1
-16,5,95,1,3,528705,1,3779.314,53.37303,1,11,1,17.15266,189.1595,0,0,0,206.3122,0,0,0,3,0,1,86.7,6.9,0,50,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,50,8.237562,0,5.329391,1
-11,5,0,0,1,528709,0,3533.538,16.11225,0,12,1,28.34514,0,0,0,0,28.34514,0,0,0,1,1,3,71.8,6.9,0,67,0,216.96,1,0,1.098612,5.379713,0,0,0,0,0,0,67,8.170338,1.098612,3.344456,1
-11,5,0,0,2,528709,0,3533.538,17.11225,0,12,1,23.63091,0,0,0,0,23.63091,0,0,0,2,0,3,71.8,6.9,0,67,0,216.96,1,0,1.098612,5.379713,0,0,0,0,0,0,67,8.170338,1.098612,3.162555,1
-11,5,0,0,3,528709,0,3533.538,18.11225,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,6.9,0,67,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,0,67,8.170338,1.098612,,0
-11,5,0,0,1,528710,0,3533.538,49.01574,1,12,1,56.69029,69.31638,13.33889,0,0,139.3456,0,0,0,5,1,3,68.1,13.8,0,75,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,1,75,8.170338,1.098612,4.936957,1
-11,5,0,0,2,528710,0,3533.538,50.01574,1,12,1,29.63241,26.55289,56.26406,0,0,112.4494,0,0,0,2,2,3,68.1,13.8,0,75,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,1,75,8.170338,1.098612,4.722503,1
-11,5,0,0,3,528710,0,3533.538,51.01574,1,12,1,25.03383,22.83829,0,0,0,47.87212,0,0,0,3,0,3,68.1,13.8,0,75,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,1,75,8.170338,1.098612,3.868533,1
-11,5,0,0,1,528711,0,3533.538,53.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,95.7,0,0,92,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,0,92,8.170338,1.098612,,0
-11,5,0,0,2,528711,0,3533.538,54.71937,0,12,1,58.13953,0,30.0075,0,0,88.14703,0,0,0,1,1,3,95.7,0,0,92,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,0,92,8.170338,1.098612,4.479006,1
-11,5,0,0,3,528711,0,3533.538,55.71937,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,95.7,0,0,92,0,216.96,0,0,1.098612,5.379713,0,0,0,0,0,0,92,8.170338,1.098612,,0
-13,5,0,0,1,528723,0,6674.895,50.23682,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,70.68995,8.806258,1.386294,,0
-13,5,0,0,1,528724,0,6674.895,16.10678,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,150,1,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.806258,1.386294,,0
-13,5,0,0,1,528725,0,6674.895,40.0219,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,70.68995,8.806258,1.386294,,0
-13,5,0,0,1,528726,0,6674.895,12.08214,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,150,1,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.806258,1.386294,,0
-18,5,25,1,1,528734,1,14212.32,12.00548,0,12,1,12.96758,0,0,0,0,12.96758,0,0,0,1,0,5,81.7,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,2.562453,1
-18,5,25,1,2,528734,1,14212.32,13.00548,0,12,1,38.72752,4.098663,0,0,0,42.82619,0,0,0,6,0,5,81.7,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,3.75715,1
-18,5,25,1,3,528734,1,14212.32,14.00548,0,12,1,20.73635,0,0,0,0,20.73635,0,0,0,2,0,5,81.7,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,3.031888,1
-18,5,25,1,4,528734,1,14212.32,15.00548,0,12,1,19.36219,0,0,0,0,19.36219,0,0,0,3,0,5,81.7,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,2.963322,1
-18,5,25,1,5,528734,1,14212.32,16.00548,0,12,1,24.22145,0,0,0,0,24.22145,0,0,0,2,0,5,81.7,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,3.187239,1
-18,5,25,1,1,528735,1,14212.32,6.403833,0,12,1,13.46633,1.586035,0,0,0,15.05237,0,0,0,1,0,5,90,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,2.711535,1
-18,5,25,1,2,528735,1,14212.32,7.403833,0,12,1,5.532504,0,0,0,0,5.532504,0,0,0,1,0,5,90,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,1.71064,1
-18,5,25,1,3,528735,1,14212.32,8.403833,0,12,1,14.81168,0,0,0,0,14.81168,0,0,0,1,0,5,90,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,2.695416,1
-18,5,25,1,4,528735,1,14212.32,9.403833,0,12,1,23.53835,0,0,0,0,23.53835,0,0,0,3,0,5,90,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,3.158631,1
-18,5,25,1,5,528735,1,14212.32,10.40383,0,12,1,26.6436,0,0,0,0,26.6436,0,0,0,2,0,5,90,10.57626,0,96.3,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.561934,1.609438,3.282549,1
-18,5,25,1,1,528736,1,14212.32,11.27721,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,74.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.561934,1.609438,,0
-18,5,25,1,2,528736,1,14212.32,12.27721,1,12,1,13.83126,1.304749,26.85108,0,0,41.98709,0,0,0,1,0,5,85,10.57626,0,74.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.561934,1.609438,3.737362,1
-18,5,25,1,3,528736,1,14212.32,13.27721,1,12,1,34.27846,4.672027,16.7245,0,0,55.67499,0,0,0,5,0,5,85,10.57626,0,74.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.561934,1.609438,4.019531,1
-18,5,25,1,4,528736,1,14212.32,14.27721,1,12,1,17.84358,6.685649,0,0,0,24.52923,0,0,0,3,0,5,85,10.57626,0,74.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.561934,1.609438,3.199866,1
-18,5,25,1,5,528736,1,14212.32,15.27721,1,12,1,12.11073,4.096886,0,0,0,16.20761,0,0,0,1,0,5,85,10.57626,0,74.1,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.561934,1.609438,2.785481,1
-18,5,25,1,1,528737,1,14212.32,31.13758,0,13,1,23.4414,0,29.42643,0,0,52.86783,0,0,0,2,1,5,92.6,3.4,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,9.561934,1.609438,3.967795,1
-18,5,25,1,2,528737,1,14212.32,32.13758,0,13,1,47.02628,8.091287,0,0,0,55.11757,0,0,0,2,0,5,92.6,3.4,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,9.561934,1.609438,4.009469,1
-18,5,25,1,3,528737,1,14212.32,33.13758,0,13,1,41.47271,18.51883,29.92806,0,0,89.91959,0,0,0,5,0,5,92.6,3.4,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,9.561934,1.609438,4.498916,1
-18,5,25,1,4,528737,1,14212.32,34.13758,0,13,1,159.0737,58.53835,0,0,0,217.612,0,0,0,7,0,5,92.6,3.4,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,9.561934,1.609438,5.382714,1
-18,5,25,1,5,528737,1,14212.32,35.13758,0,13,1,20.76125,6.138408,0,0,0,26.89965,0,0,0,2,0,5,92.6,3.4,0,83,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,83,9.561934,1.609438,3.292114,1
-18,5,25,1,1,528738,1,14212.32,30.62012,1,12,1,194.7132,1.236908,0,0,567.5811,763.5312,1,1,0,5,0,5,81.4,20.7,0,65.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.561934,1.609438,6.637954,1
-18,5,25,1,2,528738,1,14212.32,31.62012,1,12,1,60.62702,0,0,0,0,60.62702,0,0,0,4,0,5,81.4,20.7,0,65.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.561934,1.609438,4.104741,1
-18,5,25,1,3,528738,1,14212.32,32.62012,1,12,1,24.54507,0,0,0,0,24.54507,0,0,0,1,0,5,81.4,20.7,0,65.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.561934,1.609438,3.200511,1
-18,5,25,1,4,528738,1,14212.32,33.62012,1,12,1,89.59757,4.631739,0,0,528.9559,623.1852,1,0,0,3,0,5,81.4,20.7,0,65.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.561934,1.609438,6.434844,1
-18,5,25,1,5,528738,1,14212.32,34.62012,1,12,1,13.84083,0,25.32872,0,0,39.16955,0,0,0,1,0,5,81.4,20.7,0,65.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.561934,1.609438,3.6679,1
-15,5,95,1,1,528827,1,6674.895,19.47433,0,8,1,4.206984,0,0,0,0,4.206984,0,0,0,1,0,3,85.2,3.4,0,81.8,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,1,0,0,81.8,8.806258,1.098612,1.436746,1
-15,5,95,1,2,528827,1,6674.895,20.47433,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,85.2,3.4,0,81.8,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,1,0,0,81.8,8.806258,1.098612,,0
-15,5,95,1,3,528827,1,6674.895,21.47433,0,8,1,134.8199,0,24.01372,0,0,158.8336,0,0,0,1,1,3,85.2,3.4,0,81.8,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,1,0,0,81.8,8.806258,1.098612,5.067857,1
-15,5,95,1,1,528828,1,6674.895,18.12457,1,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,3,53.2,10.3,0,56,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,0,0,0,56,8.806258,1.098612,,0
-15,5,95,1,2,528828,1,6674.895,19.12457,1,10.96978,1,11.33358,0,35.5119,0,0,46.84549,0,0,0,0,1,3,53.2,10.3,0,56,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,0,0,0,56,8.806258,1.098612,3.846855,1
-15,5,95,1,3,528828,1,6674.895,20.12457,1,10.96978,1,9.433962,22.4048,0,0,0,31.83876,0,0,0,1,0,3,53.2,10.3,0,56,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,0,0,0,56,8.806258,1.098612,3.460685,1
-15,5,95,1,1,528829,1,6674.895,42.63929,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,3.4,0,75,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,1,0,0,75,8.806258,1.098612,,0
-15,5,95,1,2,528829,1,6674.895,43.63929,0,12,.7704918,15.48923,0,0,0,0,15.48923,0,0,0,0,0,3,80.3,3.4,0,75,772.5,772.5,0,0,1.098612,6.649632,0,4.564348,6.700925,1,0,0,75,8.806258,1.098612,2.740145,1
-13,5,0,0,1,528869,0,10214.08,26.14374,1,17,1,34.15233,12.2801,25.04177,0,0,71.47421,0,0,0,4,0,2,75.5,3.4,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,9.23162,.6931472,4.269337,1
-13,5,0,0,2,528869,0,10214.08,27.14374,1,17,1,9.11577,2.269827,0,0,0,11.3856,0,0,0,1,0,2,75.5,3.4,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,9.23162,.6931472,2.432349,1
-13,5,0,0,3,528869,0,10214.08,28.14374,1,17,1,80.65861,25.5148,0,0,392.2468,498.4202,1,0,0,3,0,2,75.5,3.4,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,9.23162,.6931472,6.211443,1
-13,5,0,0,4,528869,0,10214.08,29.14374,1,17,1,36.009,21.03901,0,0,0,57.04801,0,0,0,1,0,2,75.5,3.4,0,73.9,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,73.9,9.23162,.6931472,4.043893,1
-13,5,0,0,5,528869,0,10214.08,30.14374,1,17,1,28.75507,3.991881,4.573748,0,458.0514,495.3721,1,0,0,3,0,3,75.5,3.4,0,73.9,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,73.9,9.23162,1.098612,6.205309,1
-13,5,0,0,1,528870,0,10214.08,26.27242,0,19,1,29.48403,4.933661,0,0,0,34.41769,0,0,0,2,0,2,64.9,10.3,0,51.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,51.1,9.23162,.6931472,3.538571,1
-13,5,0,0,2,528870,0,10214.08,27.27242,0,19,1,20.51048,5.911577,0,0,0,26.42206,0,0,0,1,0,2,64.9,10.3,0,51.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,51.1,9.23162,.6931472,3.274199,1
-13,5,0,0,3,528870,0,10214.08,28.27242,0,19,1,8.336807,5.581492,0,0,0,13.9183,0,0,0,1,0,2,64.9,10.3,0,51.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,51.1,9.23162,.6931472,2.633204,1
-13,5,0,0,4,528870,0,10214.08,29.27242,0,19,1,65.26632,11.56414,0,0,0,76.83046,0,0,0,4,0,2,64.9,10.3,0,51.1,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,51.1,9.23162,.6931472,4.341601,1
-13,5,0,0,5,528870,0,10214.08,30.27242,0,19,1,7.780785,2.87889,0,0,0,10.65968,0,0,0,1,0,3,64.9,10.3,0,51.1,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,51.1,9.23162,1.098612,2.366468,1
-11,5,0,0,1,528871,0,6674.895,47.9562,1,16,1,48.77032,32.58024,185.6107,0,0,266.9612,0,0,0,5,0,3,92.6,17.2,1,75,0,356.04,0,0,1.098612,5.875043,0,0,0,1,0,0,75,8.806258,1.098612,5.587103,1
-11,5,0,0,2,528871,0,6674.895,48.9562,1,16,1,42.76069,22.003,27.69692,0,0,92.46062,0,0,0,3,0,3,92.6,17.2,1,75,0,356.04,0,0,1.098612,5.875043,0,0,0,1,0,0,75,8.806258,1.098612,4.526783,1
-11,5,0,0,3,528871,0,6674.895,49.9562,1,16,1,17.92963,17.26996,33.80244,0,0,69.00203,0,0,0,2,0,3,92.6,17.2,1,75,0,356.04,0,0,1.098612,5.875043,0,0,0,1,0,0,75,8.806258,1.098612,4.234136,1
-11,5,0,0,1,528873,0,6674.895,13.44832,1,16,1,56.06503,0,3.584827,0,0,59.64985,0,0,0,5,0,3,100,10.57626,.1442925,100,0,356.04,1,1,1.098612,5.875043,0,0,0,0,0,0,100,8.806258,1.098612,4.088492,1
-11,5,0,0,2,528873,0,6674.895,14.44832,1,16,1,10.12753,0,0,0,0,10.12753,0,0,0,1,0,3,100,10.57626,.1442925,100,0,356.04,1,1,1.098612,5.875043,0,0,0,0,0,0,100,8.806258,1.098612,2.315258,1
-11,5,0,0,3,528873,0,6674.895,15.44832,1,16,1,37.21245,0,22.86536,0,0,60.07781,0,0,0,3,0,3,100,10.57626,.1442925,100,0,356.04,1,1,1.098612,5.875043,0,0,0,0,0,0,100,8.806258,1.098612,4.095641,1
-11,5,0,0,1,528874,0,6674.895,10.53799,0,16,1,10.00417,0,21.6757,0,0,31.67987,0,0,0,1,0,3,98.3,10.57626,.1442925,85.2,0,356.04,1,0,1.098612,5.875043,0,0,0,0,0,0,85.2,8.806258,1.098612,3.455681,1
-11,5,0,0,2,528874,0,6674.895,11.53799,0,16,1,23.25581,0,0,0,0,23.25581,0,0,0,2,0,3,98.3,10.57626,.1442925,85.2,0,356.04,1,0,1.098612,5.875043,0,0,0,0,0,0,85.2,8.806258,1.098612,3.146555,1
-11,5,0,0,3,528874,0,6674.895,12.53799,0,16,1,38.90392,0,0,0,0,38.90392,0,0,0,2,0,3,98.3,10.57626,.1442925,85.2,0,356.04,1,0,1.098612,5.875043,0,0,0,0,0,0,85.2,8.806258,1.098612,3.661095,1
-11,5,0,1,1,528940,1,6674.895,40.98563,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,0,0,98.9,0,214.8,0,0,1.386294,5.369708,0,0,0,0,0,0,98.9,8.806258,1.386294,,0
-11,5,0,1,2,528940,1,6674.895,41.98563,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.3,0,0,98.9,0,214.8,0,0,1.386294,5.369708,0,0,0,0,0,0,98.9,8.806258,1.386294,,0
-11,5,0,1,3,528940,1,6674.895,42.98563,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,0,0,98.9,0,214.8,0,0,1.098612,5.369708,0,0,0,0,0,0,98.9,8.806258,1.098612,,0
-11,5,0,1,1,528941,1,6674.895,3.378508,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,77.8,0,214.8,1,0,1.386294,5.369708,0,0,0,0,1,0,77.8,8.806258,1.386294,,0
-11,5,0,1,2,528941,1,6674.895,4.378508,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,77.8,0,214.8,1,0,1.386294,5.369708,0,0,0,0,1,0,77.8,8.806258,1.386294,,0
-11,5,0,1,3,528941,1,6674.895,5.378508,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,77.8,0,214.8,1,0,1.098612,5.369708,0,0,0,0,1,0,77.8,8.806258,1.098612,,0
-11,5,0,1,1,528943,1,6674.895,16.68172,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,13.8,0,70.5,0,214.8,1,1,1.386294,5.369708,0,0,0,1,0,0,70.5,8.806258,1.386294,,0
-11,5,0,1,2,528943,1,6674.895,17.68172,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,13.8,0,70.5,0,214.8,1,1,1.386294,5.369708,0,0,0,1,0,0,70.5,8.806258,1.386294,,0
-11,5,0,1,1,528944,1,6674.895,17.93019,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,3.4,0,79.5,0,214.8,1,0,1.386294,5.369708,0,0,0,0,0,0,79.5,8.806258,1.386294,,0
-11,5,0,1,2,528944,1,6674.895,18.93019,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,61.7,3.4,0,79.5,0,214.8,0,0,1.386294,5.369708,0,0,0,0,0,0,79.5,8.806258,1.386294,,0
-11,5,0,1,3,528944,1,6674.895,19.93019,0,12,1,9.407665,0,0,0,0,9.407665,0,0,0,2,0,3,61.7,3.4,0,79.5,0,214.8,0,0,1.098612,5.369708,0,0,0,0,0,0,79.5,8.806258,1.098612,2.241525,1
-13,5,0,1,1,529000,1,2422.939,23.86037,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,10.3,0,73.9,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,73.9,7.793149,1.098612,,0
-13,5,0,1,2,529000,1,2422.939,24.86037,1,12,1,0,0,0,0,529.771,529.771,1,0,0,0,0,3,72.3,10.3,0,73.9,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,0,73.9,7.793149,1.098612,6.272445,1
-13,5,0,1,3,529000,1,2422.939,25.86037,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,72.3,10.3,0,73.9,450,0,0,0,1.386294,0,1,4.564348,6.160541,0,0,0,73.9,7.793149,1.386294,,0
-13,5,0,1,1,529001,1,2422.939,52.19439,1,8,1,0,9.302424,12.26712,0,0,21.56955,0,0,0,0,0,3,87.8,10.3,1,80.7,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,80.7,7.793149,1.098612,3.071282,1
-13,5,0,1,2,529001,1,2422.939,53.19439,1,8,1,15.26718,1.755725,4.48855,0,0,21.51145,0,0,0,1,0,3,87.8,10.3,1,80.7,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,80.7,7.793149,1.098612,3.068585,1
-13,5,0,1,3,529001,1,2422.939,54.19439,1,8,1,109.4425,3.449477,0,0,0,112.892,0,0,0,4,0,4,87.8,10.3,1,80.7,450,0,0,0,1.386294,0,1,4.564348,6.160541,1,0,0,80.7,7.793149,1.386294,4.726431,1
-16,5,95,0,1,529006,0,5763.441,45.86174,1,9,1,7.617435,0,0,0,0,7.617435,0,0,0,1,0,3,72.9,27.6,0,72.7,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,72.7,8.659464,1.098612,2.03044,1
-16,5,95,0,2,529006,0,5763.441,46.86174,1,9,1,45.55809,0,0,0,0,45.55809,0,0,0,1,0,3,72.9,27.6,0,72.7,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,72.7,8.659464,1.098612,3.818988,1
-16,5,95,0,3,529006,0,5763.441,47.86174,1,9,1,1056.332,27.40484,0,0,4047.405,5131.142,2,0,0,6,0,3,72.9,27.6,0,72.7,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,72.7,8.659464,1.098612,8.543083,1
-16,5,95,0,1,529007,0,5763.441,7.986311,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,85,10.57626,0,92.6,873.9,873.9,1,1,1.098612,6.772966,0,4.564348,6.824259,0,0,0,92.6,8.659464,1.098612,,0
-16,5,95,0,2,529007,0,5763.441,8.986311,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,85,10.57626,0,92.6,873.9,873.9,1,1,1.098612,6.772966,0,4.564348,6.824259,0,0,0,92.6,8.659464,1.098612,,0
-16,5,95,0,3,529007,0,5763.441,9.986311,1,9,1,17.30104,0,0,0,0,17.30104,0,0,0,2,0,3,85,10.57626,0,92.6,873.9,873.9,1,1,1.098612,6.772966,0,4.564348,6.824259,0,0,0,92.6,8.659464,1.098612,2.850767,1
-16,5,95,0,1,529008,0,5763.441,21.39083,0,10,1,6.347863,0,0,0,0,6.347863,0,0,0,1,0,3,73.4,6.9,0,86.4,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,86.4,8.659464,1.098612,1.848118,1
-16,5,95,0,2,529008,0,5763.441,22.39083,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,6.9,0,86.4,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,86.4,8.659464,1.098612,,0
-16,5,95,0,3,529008,0,5763.441,23.39083,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,6.9,0,86.4,873.9,873.9,0,0,1.098612,6.772966,0,4.564348,6.824259,1,0,0,86.4,8.659464,1.098612,,0
-15,5,95,0,1,529014,1,0,4.323066,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,99.4,490.1,490.1,1,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,99.4,0,.6931472,,0
-15,5,95,0,2,529014,1,0,5.323066,0,10,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,99.4,490.1,490.1,1,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,99.4,0,.6931472,,0
-15,5,95,0,3,529014,1,0,6.323066,0,10,1,23.71331,0,0,0,0,23.71331,0,0,0,1,0,2,77.40034,10.57626,0,99.4,490.1,490.1,1,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,99.4,0,.6931472,3.166037,1
-15,5,95,0,4,529014,1,0,7.323066,0,10,1,24.80916,0,0,0,0,24.80916,0,0,0,1,1,2,77.40034,10.57626,0,99.4,490.1,490.1,1,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,99.4,0,.6931472,3.211213,1
-15,5,95,0,5,529014,1,0,8.323067,0,10,1,71.42857,0,0,0,0,71.42857,0,0,0,3,0,2,77.40034,10.57626,0,99.4,490.1,490.1,1,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,99.4,0,.6931472,4.268698,1
-15,5,95,0,1,529015,1,0,20.79398,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,10.3,0,84.1,490.1,490.1,0,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,84.1,0,.6931472,,0
-15,5,95,0,2,529015,1,0,21.79398,1,10,1,83.50951,0,0,0,0,83.50951,0,0,0,1,0,2,66.5,10.3,0,84.1,490.1,490.1,0,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,84.1,0,.6931472,4.424961,1
-15,5,95,0,3,529015,1,0,22.79398,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,66.5,10.3,0,84.1,490.1,490.1,0,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,84.1,0,.6931472,,0
-15,5,95,0,4,529015,1,0,23.79398,1,10,1,94.8855,0,26.33588,0,0,121.2214,0,0,0,3,1,2,66.5,10.3,0,84.1,490.1,490.1,0,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,84.1,0,.6931472,4.797618,1
-15,5,95,0,5,529015,1,0,24.79398,1,10,1,79.2683,0,0,0,0,79.2683,0,0,0,4,0,2,66.5,10.3,0,84.1,490.1,490.1,0,0,.6931472,6.19461,0,4.564348,6.245903,1,0,0,84.1,0,.6931472,4.372838,1
-11,5,0,0,1,529017,0,6149.001,46.3436,1,10,1,313.5844,164.4139,0,0,0,477.9983,0,0,0,12,0,2,66,20.7,1,50,0,1027.2,0,0,.6931472,6.934592,0,0,0,0,1,0,50,8.724208,.6931472,6.169607,1
-11,5,0,0,2,529017,0,6149.001,47.3436,1,10,1,111.6173,0,0,0,3307.137,3418.755,1,0,0,8,0,2,66,20.7,1,50,0,1027.2,0,0,.6931472,6.934592,0,0,0,0,1,0,50,8.724208,.6931472,8.137032,1
-11,5,0,0,3,529017,0,6149.001,48.3436,1,10,1,61.88235,.6920415,0,0,0,62.57439,0,0,0,4,0,2,66,20.7,1,50,0,1027.2,0,0,.6931472,6.934592,0,0,0,0,1,0,50,8.724208,.6931472,4.136356,1
-11,5,0,0,1,529018,0,6149.001,48.1807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,10.3,0,73.9,0,1027.2,0,0,.6931472,6.934592,0,0,0,1,0,0,73.9,8.724208,.6931472,,0
-11,5,0,0,2,529018,0,6149.001,49.1807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,10.3,0,73.9,0,1027.2,0,0,.6931472,6.934592,0,0,0,1,0,0,73.9,8.724208,.6931472,,0
-11,5,0,0,3,529018,0,6149.001,50.1807,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,85.6,10.3,0,73.9,0,1027.2,0,0,.6931472,6.934592,0,0,0,1,0,0,73.9,8.724208,.6931472,,0
-14,5,95,1,1,529047,0,1347.158,61.42368,1,7,1,161.846,65.04041,48.49001,0,0,275.3764,0,0,0,7,0,1,50.5,24.1,0,64.8,147.7,392.56,0,0,0,5.97269,0,4.564348,5.046476,0,1,0,64.8,7.206495,0,5.618139,1
-14,5,95,1,2,529047,0,1347.158,62.42368,1,7,1,276.9084,110.729,0,0,0,387.6374,0,0,0,13,0,1,50.5,24.1,0,64.8,147.7,392.56,0,0,0,5.97269,0,4.564348,5.046476,0,1,0,64.8,7.206495,0,5.96007,1
-14,5,95,1,3,529047,0,1347.158,63.42368,1,7,1,142.5087,106.0767,0,0,0,248.5854,0,0,0,5,0,1,50.5,24.1,0,64.8,147.7,392.56,0,0,0,5.97269,0,4.564348,5.046476,0,1,0,64.8,7.206495,0,5.515786,1
-13,5,0,0,1,529077,1,380.4403,27.16222,1,12,1,7.194244,0,0,0,0,7.194244,0,0,0,1,0,2,84.6,6.9,0,76.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.2,5.943954,.6931472,1.973281,1
-13,5,0,0,2,529077,1,380.4403,28.16222,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,6.9,0,76.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.2,5.943954,.6931472,,0
-13,5,0,0,3,529077,1,380.4403,29.16222,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,6.9,0,76.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,76.2,5.943954,.6931472,,0
-13,5,0,0,1,529078,1,380.4403,9.21013,1,12,1,12.90732,0,0,0,0,12.90732,0,0,0,1,0,2,91.7,10.57626,0,81.5,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,81.5,5.943954,.6931472,2.557795,1
-13,5,0,0,2,529078,1,380.4403,10.21013,1,12,1,10.25057,0,0,0,0,10.25057,0,0,0,1,0,2,91.7,10.57626,0,81.5,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,81.5,5.943954,.6931472,2.327333,1
-13,5,0,0,3,529078,1,380.4403,11.21013,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91.7,10.57626,0,81.5,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,1,0,0,81.5,5.943954,.6931472,,0
-10,5,50,1,1,529123,0,9816.692,55.64134,1,12,1,243.7579,60.14812,3.173931,48.66695,0,307.08,0,0,3,11,5,2,30.9,41.4,0,71.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,71.6,9.191941,.6931472,5.727108,1
-10,5,50,1,2,529123,0,9816.692,56.64134,1,12,1,99.84814,39.57859,0,0,0,139.4267,0,0,0,4,0,2,30.9,41.4,0,71.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,71.6,9.191941,.6931472,4.937539,1
-10,5,50,1,3,529123,0,9816.692,57.64134,1,12,1,155.0173,67.9481,28.78893,166.09,0,251.7543,0,0,8,8,2,2,30.9,41.4,0,71.6,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,71.6,9.191941,.6931472,5.528454,1
-10,5,50,1,1,529124,0,9816.692,60.29021,0,12,1,35.97122,14.93017,42.74228,40.20313,0,93.64368,0,0,3,2,1,2,60.6,17.2,0,62.5,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,62.5,9.191941,.6931472,4.539497,1
-10,5,50,1,2,529124,0,9816.692,61.29021,0,12,1,0,12.53227,0,0,0,12.53227,0,0,0,0,0,2,60.6,17.2,0,62.5,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,62.5,9.191941,.6931472,2.528307,1
-10,5,50,1,3,529124,0,9816.692,62.29021,0,12,1,53.63322,8.00346,40.70242,0,0,102.3391,0,0,0,3,0,2,60.6,17.2,0,62.5,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,1,0,0,62.5,9.191941,.6931472,4.628292,1
-17,5,25,0,1,529162,1,0,31.69336,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,0,0,69.3,300.35,0,0,0,0,0,0,3.258096,7.091243,1,0,0,69.3,0,0,,0
-17,5,25,0,2,529162,1,0,32.69336,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,85.6,0,0,69.3,300.35,0,0,0,0,0,0,3.258096,7.091243,1,0,0,69.3,0,0,,0
-17,5,25,0,3,529162,1,0,33.69336,0,14,1,8.710801,0,23.19164,0,0,31.90244,0,0,0,0,1,1,85.6,0,0,69.3,300.35,0,0,0,0,0,0,3.258096,7.091243,1,0,0,69.3,0,0,3.462682,1
-17,5,25,0,1,529164,1,3291.859,24.72827,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,54.3,0,0,53.4,315,315,0,0,0,5.752573,0,3.258096,7.138867,0,1,0,53.4,8.099511,0,,0
-17,5,25,0,2,529164,1,3291.859,25.72827,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,54.3,0,0,53.4,315,315,0,0,.6931472,5.752573,0,3.258096,7.138867,0,1,0,53.4,8.099511,.6931472,,0
-17,5,25,0,3,529164,1,3291.859,26.72827,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,54.3,0,0,53.4,315,315,0,0,1.098612,5.752573,0,3.258096,7.138867,0,1,0,53.4,8.099511,1.098612,,0
-13,5,0,1,1,529286,0,13305.17,19.86858,1,10,1,105.2522,20.40434,32.94706,0,0,158.6036,0,0,0,7,0,5,87.2,6.9,0,77.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,77.3,9.495983,1.609438,5.066408,1
-13,5,0,1,2,529286,0,13305.17,20.86858,1,10,1,13.12828,0,0,0,688.6722,701.8005,1,0,0,2,0,5,87.2,6.9,0,77.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,77.3,9.495983,1.609438,6.553649,1
-13,5,0,1,3,529286,0,13305.17,21.86858,1,10,1,37.55074,11.37686,0,0,0,48.9276,0,0,0,4,0,5,87.2,6.9,0,77.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,77.3,9.495983,1.609438,3.890342,1
-13,5,0,1,1,529287,0,13305.17,18.34634,0,10.96978,1,49.18716,11.0421,0,0,607.3364,667.5657,1,0,0,3,0,5,87.8,13.8,0,87.5,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,87.5,9.495983,1.609438,6.503638,1
-13,5,0,1,2,529287,0,13305.17,19.34634,0,10.96978,1,120.7802,35.12378,0,0,318.4546,474.3586,1,0,0,10,0,5,87.8,13.8,0,87.5,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,87.5,9.495983,1.609438,6.161963,1
-13,5,0,1,3,529287,0,13305.17,20.34634,0,10.96978,1,259.4959,24.57713,0,0,0,284.0731,0,0,0,16,0,5,87.8,13.8,0,87.5,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,87.5,9.495983,1.609438,5.649231,1
-13,5,0,1,1,529288,0,13305.17,22.35455,0,10,1,6.252605,7.057107,0,45.85244,507.2947,520.6044,1,0,2,1,0,5,50.5,24.1,1,13.6,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,13.6,9.495983,1.609438,6.254991,1
-13,5,0,1,2,529288,0,13305.17,23.35455,0,10,1,17.62941,0,0,0,0,17.62941,0,0,0,2,0,5,50.5,24.1,1,13.6,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,13.6,9.495983,1.609438,2.869568,1
-13,5,0,1,3,529288,0,13305.17,24.35455,0,10,1,95.39919,16.18403,0,0,813.9377,925.521,1,0,0,2,0,5,50.5,24.1,1,13.6,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,13.6,9.495983,1.609438,6.830357,1
-13,5,0,1,1,529289,0,13305.17,49.73032,1,9,1,210.2543,31.07545,47.68653,0,0,289.0163,0,0,0,5,0,5,73.9,20.7,0,69.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,69.3,9.495983,1.609438,5.666483,1
-13,5,0,1,2,529289,0,13305.17,50.73032,1,9,1,16.87922,72.26182,0,0,0,89.14104,0,0,0,3,0,5,73.9,20.7,0,69.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,69.3,9.495983,1.609438,4.49022,1
-13,5,0,1,3,529289,0,13305.17,51.73032,1,9,1,51.42084,153.3018,26.38701,0,1691.475,1922.585,2,1,0,6,0,5,73.9,20.7,0,69.3,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,0,1,0,69.3,9.495983,1.609438,7.561426,1
-13,5,0,1,1,529290,0,13305.17,43.36208,0,12,1,61.69237,59.68737,45.51897,0,0,166.8987,0,0,0,2,0,5,77.7,20.7,1,51.1,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,51.1,9.495983,1.609438,5.117387,1
-13,5,0,1,2,529290,0,13305.17,44.36208,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.7,20.7,1,51.1,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,51.1,9.495983,1.609438,,0
-13,5,0,1,3,529290,0,13305.17,45.36208,0,12,1,41.44114,17.68606,41.52571,0,985.4533,1086.106,1,0,0,2,0,5,77.7,20.7,1,51.1,450,300,0,0,1.609438,5.703783,1,4.564348,6.160541,1,0,0,51.1,9.495983,1.609438,6.990354,1
-19,5,25,0,1,529350,1,7578.085,9.716633,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,,0
-19,5,25,0,2,529350,1,7578.085,10.71663,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,,0
-19,5,25,0,3,529350,1,7578.085,11.71663,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,,0
-19,5,25,0,1,529351,1,7578.085,31.13484,0,12,1,11.84934,1.523487,0,0,0,13.37283,0,0,0,1,0,6,86.2,3.4,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,2.593225,1
-19,5,25,0,2,529351,1,7578.085,32.13484,0,12,1,56.56796,0,0,0,0,56.56796,0,0,0,4,0,6,86.2,3.4,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,4.035443,1
-19,5,25,0,3,529351,1,7578.085,33.13484,0,12,1,56.05536,5.927336,0,0,0,61.9827,0,0,0,8,0,6,86.2,3.4,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,4.126855,1
-19,5,25,0,1,529352,1,7578.085,27.96715,1,8,1,22.00592,8.366484,0,0,0,30.37241,0,0,0,2,0,6,86.2,6.9,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,3.413535,1
-19,5,25,0,2,529352,1,7578.085,28.96715,1,8,1,40.05315,2.972665,0,0,0,43.02582,0,0,0,4,0,6,86.2,6.9,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,3.7618,1
-19,5,25,0,3,529352,1,7578.085,29.96715,1,8,1,24.6782,5.913495,0,0,0,30.5917,0,0,0,5,0,6,86.2,6.9,0,64.8,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,64.8,8.933147,1.791759,3.420729,1
-19,5,25,0,1,529353,1,7578.085,5.760438,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,92.6,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,92.6,8.933147,1.791759,,0
-19,5,25,0,2,529353,1,7578.085,6.760438,1,8,1,5.694761,1.442673,0,0,0,7.137434,0,0,0,1,0,6,77.40034,10.57626,0,92.6,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,92.6,8.933147,1.791759,1.965353,1
-19,5,25,0,3,529353,1,7578.085,7.760438,1,8,1,15.57093,4.051903,0,0,0,19.62284,0,0,0,3,0,6,77.40034,10.57626,0,92.6,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,1,0,0,92.6,8.933147,1.791759,2.976694,1
-19,5,25,0,1,529354,1,7578.085,8.684463,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,,0
-19,5,25,0,2,529354,1,7578.085,9.684463,0,8,1,11.38952,0,0,0,0,11.38952,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,2.432694,1
-19,5,25,0,3,529354,1,7578.085,10.68446,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,88.9,8.933147,1.791759,,0
-13,5,0,0,1,529360,0,9569.381,29.3306,0,16,1,94.44678,0,0,0,0,94.44678,0,0,0,1,0,4,73.9,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.166429,1.386294,4.548037,1
-13,5,0,0,2,529360,0,9569.381,30.3306,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.166429,1.386294,,0
-13,5,0,0,3,529360,0,9569.381,31.3306,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,0,0,90.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,90.9,9.166429,1.386294,,0
-13,5,0,0,1,529361,0,9569.381,26.49418,1,12,1,12.62095,0,12.62095,0,0,25.2419,0,0,0,0,1,4,76.1,13.8,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.166429,1.386294,3.228505,1
-13,5,0,0,2,529361,0,9569.381,27.49418,1,12,1,15.11145,11.96827,0,0,0,27.07971,0,0,0,3,0,4,76.1,13.8,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.166429,1.386294,3.298785,1
-13,5,0,0,3,529361,0,9569.381,28.49418,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,76.1,13.8,0,65.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.166429,1.386294,,0
-13,5,0,0,1,529362,0,9569.381,4.068446,1,12,1,10.09676,0,0,0,0,10.09676,0,0,0,1,0,4,77.40034,10.57626,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.166429,1.386294,2.312215,1
-13,5,0,0,2,529362,0,9569.381,5.068446,1,12,1,5.289006,0,0,0,0,5.289006,0,0,0,1,0,4,77.40034,10.57626,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.166429,1.386294,1.66563,1
-13,5,0,0,3,529362,0,9569.381,6.068446,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,100,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,100,9.166429,1.386294,,0
-6,5,25,0,1,529428,0,5291.496,23.04723,1,12,1,78.30424,7.321696,31.12219,0,0,116.7481,0,0,0,3,0,4,78.2,13.8,0,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,65.9,8.574045,1.386294,4.760019,1
-6,5,25,0,2,529428,0,5291.496,24.04723,1,12,1,0,1.129553,0,0,0,1.129553,0,0,0,0,0,4,78.2,13.8,0,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,65.9,8.574045,1.386294,.1218218,1
-6,5,25,0,3,529428,0,5291.496,25.04723,1,12,1,20.31316,0,0,0,0,20.31316,0,0,0,2,0,4,78.2,13.8,0,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,65.9,8.574045,1.386294,3.011269,1
-6,5,25,0,4,529428,0,5291.496,26.04723,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,13.8,0,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,65.9,8.574045,1.386294,,0
-6,5,25,0,5,529428,0,5291.496,27.04723,1,12,1,44.9827,9.875433,23.91696,0,0,78.77509,0,0,0,3,1,4,78.2,13.8,0,65.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,65.9,8.574045,1.386294,4.366597,1
-6,5,25,0,1,529429,0,5291.496,.7967146,0,12,1,26.93267,9.895262,0,0,0,36.82793,0,0,0,3,0,4,77.40034,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.574045,1.386294,3.606256,1
-6,5,25,0,2,529429,0,5291.496,1.796715,0,12,1,34.1171,0,0,0,0,34.1171,0,0,0,2,0,4,77.40034,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.574045,1.386294,3.529799,1
-6,5,25,0,3,529429,0,5291.496,2.796715,0,12,1,5.07829,0,0,0,0,5.07829,0,0,0,1,0,4,77.40034,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.574045,1.386294,1.624975,1
-6,5,25,0,4,529429,0,5291.496,3.796715,0,12,1,41.38193,4.552012,0,0,0,45.93394,0,0,0,3,0,4,77.40034,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.574045,1.386294,3.827204,1
-6,5,25,0,5,529429,0,5291.496,4.796715,0,12,1,11.07266,4.543252,0,0,0,15.61592,0,0,0,1,0,4,77.40034,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.574045,1.386294,2.748291,1
-6,5,25,0,1,529430,0,5291.496,4.898015,0,12,1,21.44638,7.371571,0,0,0,28.81796,0,0,0,3,0,4,77.40034,10.57626,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.574045,1.386294,3.360999,1
-6,5,25,0,2,529430,0,5291.496,5.898015,0,12,1,13.83126,0,0,0,0,13.83126,0,0,0,1,0,4,77.40034,10.57626,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.574045,1.386294,2.626931,1
-6,5,25,0,3,529430,0,5291.496,6.898015,0,12,1,12.69573,0,29.62336,0,0,42.31908,0,0,0,0,1,4,77.40034,10.57626,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.574045,1.386294,3.745238,1
-6,5,25,0,4,529430,0,5291.496,7.898015,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.574045,1.386294,,0
-6,5,25,0,5,529430,0,5291.496,8.898015,0,12,1,9.688581,7.688581,0,0,0,17.37716,0,0,0,2,0,4,77.40034,10.57626,0,77.8,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,77.8,8.574045,1.386294,2.855157,1
-6,5,25,0,1,529431,0,5291.496,24.65708,0,13,1,19.95012,0,33.19701,0,0,53.14713,0,0,0,2,0,4,73.9,3.4,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.574045,1.386294,3.973064,1
-6,5,25,0,2,529431,0,5291.496,25.65708,0,13,1,46.33472,2.720148,15.34348,0,0,64.39834,0,0,0,2,0,4,73.9,3.4,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.574045,1.386294,4.165088,1
-6,5,25,0,3,529431,0,5291.496,26.65708,0,13,1,8.463818,0,37.85019,0,0,46.31401,0,0,0,1,0,4,73.9,3.4,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.574045,1.386294,3.835444,1
-6,5,25,0,4,529431,0,5291.496,27.65708,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,73.9,3.4,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.574045,1.386294,,0
-6,5,25,0,5,529431,0,5291.496,28.65708,0,13,1,11.5917,0,27.52941,0,0,39.12111,0,0,0,0,0,4,73.9,3.4,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,76.1,8.574045,1.386294,3.666662,1
-11,5,0,1,1,529434,1,5832.565,6.554415,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,66.7,0,0,1,1,1.098612,0,0,0,0,0,0,0,66.7,8.671384,1.098612,,0
-11,5,0,1,2,529434,1,5832.565,7.554415,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,66.7,0,0,1,1,1.098612,0,0,0,0,0,0,0,66.7,8.671384,1.098612,,0
-11,5,0,1,3,529434,1,5832.565,8.554415,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,66.7,0,0,1,1,1.098612,0,0,0,0,0,0,0,66.7,8.671384,1.098612,,0
-11,5,0,1,1,529435,1,5832.565,31.89322,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,60.6,13.8,0,89.8,0,0,0,0,1.098612,0,0,0,0,0,1,0,89.8,8.671384,1.098612,,0
-11,5,0,1,2,529435,1,5832.565,32.89322,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,60.6,13.8,0,89.8,0,0,0,0,1.098612,0,0,0,0,0,1,0,89.8,8.671384,1.098612,,0
-11,5,0,1,3,529435,1,5832.565,33.89322,1,14,1,0,0,0,0,925.2595,925.2595,1,0,0,0,0,3,60.6,13.8,0,89.8,0,0,0,0,1.098612,0,0,0,0,0,1,0,89.8,8.671384,1.098612,6.830074,1
-11,5,0,1,1,529436,1,5832.565,8.380561,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.671384,1.098612,,0
-11,5,0,1,2,529436,1,5832.565,9.380561,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.671384,1.098612,,0
-11,5,0,1,3,529436,1,5832.565,10.38056,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,77.8,0,0,1,0,1.098612,0,0,0,0,0,0,0,77.8,8.671384,1.098612,,0
-13,5,0,0,1,529478,0,13794.16,32.19439,1,13,1,63.90182,0,0,0,0,63.90182,0,0,0,6,0,4,75.5,10.3,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,75,9.532073,1.386294,4.157348,1
-13,5,0,0,2,529478,0,13794.16,33.19439,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,75.5,10.3,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,75,9.532073,1.386294,,0
-13,5,0,0,3,529478,0,13794.16,34.19439,1,13,1,3.460208,0,0,0,0,3.460208,0,0,0,0,0,4,75.5,10.3,0,75,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,75,9.532073,1.386294,1.241329,1
-13,5,0,0,1,529479,0,13794.16,9.848049,1,13,1,12.69573,0,0,0,0,12.69573,0,0,0,2,0,4,96.7,10.57626,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.532073,1.386294,2.541265,1
-13,5,0,0,2,529479,0,13794.16,10.84805,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.532073,1.386294,,0
-13,5,0,0,3,529479,0,13794.16,11.84805,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,0,85.2,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.532073,1.386294,,0
-13,5,0,0,1,529480,0,13794.16,12.50376,0,13,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,4,81.7,10.57626,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.532073,1.386294,2.358944,1
-13,5,0,0,2,529480,0,13794.16,13.50376,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.532073,1.386294,,0
-13,5,0,0,3,529480,0,13794.16,14.50376,0,13,1,6.920415,0,0,0,978.5294,985.4498,1,0,0,0,0,4,81.7,10.57626,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.532073,1.386294,6.893098,1
-13,5,0,0,1,529498,0,5562.212,31.73443,1,13,1,147.6936,18.38341,0,0,1706.094,1872.171,1,0,0,10,0,4,67,6.9,0,52.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,52.3,8.623931,1.386294,7.534854,1
-13,5,0,0,2,529498,0,5562.212,32.73443,1,13,1,50.49355,0,0,0,1763.098,1813.592,1,0,0,5,0,4,67,6.9,0,52.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,52.3,8.623931,1.386294,7.503065,1
-13,5,0,0,3,529498,0,5562.212,33.73443,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,67,6.9,0,52.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,52.3,8.623931,1.386294,,0
-13,5,0,0,1,529499,0,5562.212,6.19028,1,13,1,17.77402,1.95091,0,0,0,19.72493,0,0,0,3,0,4,86.7,10.57626,0,70.4,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,70.4,8.623931,1.386294,2.981883,1
-13,5,0,0,2,529499,0,5562.212,7.19028,1,13,1,5.694761,0,0,0,0,5.694761,0,0,0,1,0,4,86.7,10.57626,0,70.4,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,70.4,8.623931,1.386294,1.739547,1
-13,5,0,0,3,529499,0,5562.212,8.190281,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,10.57626,0,70.4,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,70.4,8.623931,1.386294,,0
-13,5,0,0,1,529500,0,5562.212,30.75975,0,12,1,13.54211,0,0,0,0,13.54211,0,0,0,2,0,4,76.1,17.2,1,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,68.2,8.623931,1.386294,2.605804,1
-13,5,0,0,2,529500,0,5562.212,31.75975,0,12,1,15.94533,0,0,0,0,15.94533,0,0,0,1,0,4,76.1,17.2,1,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,68.2,8.623931,1.386294,2.769166,1
-13,5,0,0,3,529500,0,5562.212,32.75975,0,12,1,36.50519,0,24.91349,0,0,61.41869,0,0,0,2,1,4,76.1,17.2,1,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,1,0,0,68.2,8.623931,1.386294,4.117714,1
-11,5,0,0,1,529586,0,6674.895,31.13758,1,5,1,9.255363,9.150189,0,0,915.0189,933.4245,3,0,0,0,0,4,45.2,34.5,1,27.3,0,416,0,0,1.386294,6.030685,0,0,0,0,0,1,27.3,8.806258,1.386294,6.83886,1
-11,5,0,0,2,529586,0,6674.895,32.13758,1,5,1,77.82395,8.828863,32.48961,0,839.4409,958.5833,1,0,0,3,1,5,45.2,34.5,1,27.3,0,416,0,0,1.609438,6.030685,0,0,0,0,0,1,27.3,8.806258,1.609438,6.865457,1
-11,5,0,0,3,529586,0,6674.895,33.13758,1,5,1,231.3894,66.10635,0,0,1683.053,1980.549,2,0,0,10,0,6,45.2,34.5,1,27.3,0,416,0,0,1.791759,6.030685,0,0,0,0,0,1,27.3,8.806258,1.791759,7.591129,1
-11,5,0,0,1,529587,0,6674.895,16.29295,1,5,1,9.255363,0,0,0,0,9.255363,0,0,0,1,0,4,61.2,6.9,0,54.5,0,416,1,1,1.386294,6.030685,0,0,0,0,1,0,54.5,8.806258,1.386294,2.225203,1
-11,5,0,0,2,529587,0,6674.895,17.29295,1,5,1,223.1772,52.3385,0,0,904.0423,1179.558,2,0,0,10,0,5,61.2,6.9,0,54.5,0,416,1,1,1.609438,6.030685,0,0,0,0,1,0,54.5,8.806258,1.609438,7.072895,1
-11,5,0,0,3,529587,0,6674.895,18.29295,1,5,1,226.2436,57.66724,0,0,1072.041,1355.952,2,0,0,12,2,6,61.2,6.9,0,54.5,0,416,0,0,1.791759,6.030685,0,0,0,0,1,0,54.5,8.806258,1.791759,7.212259,1
-11,5,0,0,1,529588,0,6674.895,15.3128,1,5,1,0,0,0,0,0,0,0,0,0,0,0,4,64.9,0,0,68.2,0,416,1,1,1.386294,6.030685,0,0,0,1,0,0,68.2,8.806258,1.386294,,0
-11,5,0,0,2,529588,0,6674.895,16.3128,1,5,1,5.666792,.9444655,0,0,0,6.611258,0,0,0,0,0,5,64.9,0,0,68.2,0,416,1,1,1.609438,6.030685,0,0,0,1,0,0,68.2,8.806258,1.609438,1.888774,1
-11,5,0,0,3,529588,0,6674.895,17.3128,1,5,1,84.39108,6.765008,0,0,0,91.15609,0,0,0,2,0,6,64.9,0,0,68.2,0,416,1,1,1.791759,6.030685,0,0,0,1,0,0,68.2,8.806258,1.791759,4.512573,1
-11,5,0,0,1,529589,0,6674.895,39.82478,0,5,1,14.0934,0,0,0,0,14.0934,0,0,0,1,0,4,61.7,17.2,0,50,0,416,0,0,1.386294,6.030685,0,0,0,1,0,0,50,8.806258,1.386294,2.645706,1
-11,5,0,0,2,529589,0,6674.895,40.82478,0,5,1,13.22252,0,35.5119,0,0,48.73442,0,0,0,0,1,5,61.7,17.2,0,50,0,416,0,0,1.609438,6.030685,0,0,0,1,0,0,50,8.806258,1.609438,3.886385,1
-11,5,0,0,3,529589,0,6674.895,41.82478,0,5,1,104.2882,13.55403,0,0,692.0583,809.9005,1,0,0,4,0,6,61.7,17.2,0,50,0,416,0,0,1.791759,6.030685,0,0,0,1,0,0,50,8.806258,1.791759,6.696911,1
-13,5,0,1,1,529627,0,11451.1,38.14921,0,12,1,52.47567,8.929327,0,0,0,61.40499,0,0,0,1,0,2,87.2,10.3,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.345928,.6931472,4.117491,1
-13,5,0,1,2,529627,0,11451.1,39.14921,0,12,1,93.96355,9.757024,0,0,0,103.7206,0,0,0,3,0,2,87.2,10.3,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.345928,.6931472,4.6417,1
-13,5,0,1,3,529627,0,11451.1,40.14921,0,12,1,66.43599,0,17.99308,0,0,84.42907,0,0,0,2,0,2,87.2,10.3,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.345928,.6931472,4.435912,1
-13,5,0,1,1,529628,0,11451.1,34.0835,1,12,1,219.2129,134.0034,0,0,0,353.2162,0,0,0,11,0,2,61.7,13.8,1,55.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.7,9.345928,.6931472,5.867081,1
-13,5,0,1,2,529628,0,11451.1,35.0835,1,12,1,54.6697,91.64768,0,62.64237,0,146.3174,0,0,3,1,0,2,61.7,13.8,1,55.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.7,9.345928,.6931472,4.985778,1
-13,5,0,1,3,529628,0,11451.1,36.0835,1,12,1,123.8754,96.83391,0,152.2491,0,220.7093,0,0,8,4,0,2,61.7,13.8,1,55.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,55.7,9.345928,.6931472,5.396847,1
-19,5,25,1,1,529663,1,1564.223,58.25325,1,5,1,0,0,0,0,0,0,0,0,0,0,0,1,56.4,31,1,46.6,405.6,0,0,0,0,0,0,3.258096,7.391662,0,1,0,46.6,7.355783,0,,0
-19,5,25,1,2,529663,1,1564.223,59.25325,1,5,1,0,2.937127,0,0,414.8692,417.8063,1,0,0,0,0,1,56.4,31,1,46.6,405.6,0,0,0,0,0,0,3.258096,7.391662,0,1,0,46.6,7.355783,0,6.035018,1
-19,5,25,1,3,529663,1,1564.223,60.25325,1,5,1,53.84939,7.421119,0,0,0,61.27051,0,0,0,3,0,1,56.4,31,1,46.6,405.6,0,0,0,0,0,0,3.258096,7.391662,0,1,0,46.6,7.355783,0,4.115299,1
-19,5,25,1,4,529663,1,1564.223,61.25325,1,5,1,165.2814,14.46165,0,0,663.7703,843.5134,1,0,0,10,0,1,56.4,31,1,46.6,405.6,0,0,0,0,0,0,3.258096,7.391662,0,1,0,46.6,7.355783,0,6.737576,1
-19,5,25,1,5,529663,1,1564.223,62.25325,1,5,1,401.7153,3.403087,0,0,0,405.1183,0,0,0,22,0,1,56.4,31,1,46.6,405.6,0,0,0,0,0,0,3.258096,7.391662,0,1,0,46.6,7.355783,0,6.004179,1
-13,5,0,1,1,529706,1,8124.936,53.3744,0,12,1,19.04359,10.34702,27.08422,0,0,56.47482,0,0,0,2,1,6,84,13.8,0,55.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.002816,1.791759,4.033795,1
-13,5,0,1,2,529706,1,8124.936,54.3744,0,12,1,133.6371,29.89749,0,0,1121.488,1285.023,1,0,0,5,0,5,84,13.8,0,55.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.002816,1.609438,7.158532,1
-13,5,0,1,3,529706,1,8124.936,55.3744,0,12,1,54.32526,41.34948,25.60554,0,0,121.2803,0,0,0,6,1,5,84,13.8,0,55.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,55.7,9.002816,1.609438,4.798104,1
-13,5,0,1,1,529707,1,8124.936,18.92676,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,69.7,0,0,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,61.4,9.002816,1.791759,,0
-13,5,0,1,1,529708,1,8124.936,15.81383,1,7,1,0,0,0,0,0,0,0,0,0,0,0,6,72.3,0,0,83.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.002816,1.791759,,0
-13,5,0,1,2,529708,1,8124.936,16.81383,1,7,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,0,0,83.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.002816,1.609438,,0
-13,5,0,1,3,529708,1,8124.936,17.81383,1,7,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,0,0,83.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,83.7,9.002816,1.609438,,0
-13,5,0,1,1,529709,1,8124.936,50.11636,1,7,1,116.2717,5.696149,30.89293,0,0,152.8608,0,0,0,4,1,6,74.5,6.9,0,76.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.002816,1.791759,5.029528,1
-13,5,0,1,2,529709,1,8124.936,51.11636,1,7,1,92.0653,6.643888,0,0,0,98.70919,0,0,0,3,0,5,74.5,6.9,0,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.002816,1.609438,4.592178,1
-13,5,0,1,3,529709,1,8124.936,52.11636,1,7,1,48.44291,30.25952,27.68166,0,0,106.3841,0,0,0,4,1,5,74.5,6.9,0,76.1,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,76.1,9.002816,1.609438,4.667056,1
-13,5,0,1,1,529710,1,8124.936,20.53114,1,10,1,8.040627,4.274228,0,0,0,12.31485,0,0,0,0,0,6,69.1,0,0,80.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.002816,1.791759,2.510806,1
-13,5,0,1,2,529710,1,8124.936,21.53114,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,69.1,0,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.002816,1.609438,,0
-13,5,0,1,3,529710,1,8124.936,22.53114,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,69.1,0,0,80.7,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,80.7,9.002816,1.609438,,0
-13,5,0,1,1,529711,1,8124.936,17.31691,1,7,1,64.57893,2.285231,0,0,0,66.86416,0,0,0,4,0,6,73.9,0,0,78.4,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.002816,1.791759,4.202663,1
-13,5,0,1,2,529711,1,8124.936,18.31691,1,7,1,95.52012,0,0,0,0,95.52012,0,0,0,1,0,5,73.9,0,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.002816,1.609438,4.559337,1
-13,5,0,1,3,529711,1,8124.936,19.31691,1,7,1,0,0,0,0,0,0,0,0,0,0,0,5,73.9,0,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.002816,1.609438,,0
-5,5,25,1,1,529844,0,9597.542,40.59685,1,12,1,90.17439,20.94428,0,0,0,111.1187,0,0,0,4,0,4,62.8,13.8,0,75,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,75,9.169367,1.386294,4.710599,1
-5,5,25,1,2,529844,0,9597.542,41.59685,1,12,1,8.015267,16.24427,0,0,0,24.25954,0,0,0,1,0,4,62.8,13.8,0,75,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,75,9.169367,1.386294,3.18881,1
-5,5,25,1,3,529844,0,9597.542,42.59685,1,12,1,6.271777,16.20209,0,0,0,22.47387,0,0,0,1,0,4,62.8,13.8,0,75,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,75,9.169367,1.386294,3.112353,1
-5,5,25,1,1,529845,0,9597.542,3.022587,1,12,1,17.01404,5.776266,0,0,0,22.7903,0,0,0,2,0,4,77.40034,10.57626,0,96.3,728.15,1103.76,1,1,1.386294,7.006478,0,3.258096,7.976801,0,0,0,96.3,9.169367,1.386294,3.126335,1
-5,5,25,1,2,529845,0,9597.542,4.022587,1,12,1,12.21374,2.099237,0,0,0,14.31298,0,0,0,2,0,4,77.40034,10.57626,0,96.3,728.15,1103.76,1,1,1.386294,7.006478,0,3.258096,7.976801,0,0,0,96.3,9.169367,1.386294,2.661167,1
-5,5,25,1,3,529845,0,9597.542,5.022587,1,12,1,13.24042,1.557491,0,0,0,14.79791,0,0,0,2,0,4,77.40034,10.57626,0,96.3,728.15,1103.76,1,1,1.386294,7.006478,0,3.258096,7.976801,0,0,0,96.3,9.169367,1.386294,2.694486,1
-5,5,25,1,1,529847,0,9597.542,37.40178,0,13,1,7.656316,3.998299,0,0,0,11.65462,0,0,0,1,0,4,89.9,10.3,0,79.5,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,79.5,9.169367,1.386294,2.455702,1
-5,5,25,1,2,529847,0,9597.542,38.40178,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,89.9,10.3,0,79.5,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,79.5,9.169367,1.386294,,0
-5,5,25,1,3,529847,0,9597.542,39.40178,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,89.9,10.3,0,79.5,728.15,1103.76,0,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,79.5,9.169367,1.386294,,0
-5,5,25,1,1,529848,0,9597.542,6.160164,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,66.7,728.15,1103.76,1,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,66.7,9.169367,1.386294,,0
-5,5,25,1,2,529848,0,9597.542,7.160164,0,12,1,15.64886,4.71374,0,0,302.2901,322.6527,1,0,0,2,0,4,88.3,10.57626,0,66.7,728.15,1103.76,1,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,66.7,9.169367,1.386294,5.776577,1
-5,5,25,1,3,529848,0,9597.542,8.160164,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,66.7,728.15,1103.76,1,0,1.386294,7.006478,0,3.258096,7.976801,0,0,0,66.7,9.169367,1.386294,,0
-11,5,0,0,1,529882,1,8878.136,46.38193,0,18,1,12.69573,3.085061,32.16251,0,0,47.94329,0,0,0,0,1,1,91,0,0,96.6,0,0,0,0,0,0,0,0,0,0,0,0,96.6,9.091459,0,3.870019,1
-11,5,0,0,2,529882,1,8878.136,47.38193,0,18,1,57.32726,0,0,0,0,57.32726,0,0,0,4,0,1,91,0,0,96.6,0,0,0,0,0,0,0,0,0,0,0,0,96.6,9.091459,0,4.048776,1
-11,5,0,0,3,529882,1,8878.136,48.38193,0,18,1,6.920415,0,0,0,0,6.920415,0,0,0,1,0,1,91,0,0,96.6,0,0,0,0,0,0,0,0,0,0,0,0,96.6,9.091459,0,1.934476,1
-17,5,25,1,1,529940,0,8997.439,50.37098,1,12,1,56.37358,41.52713,0,0,2500.21,2598.111,2,0,0,8,0,3,41,31,1,42,672,672,0,0,1.098612,6.510258,0,3.258096,7.896553,1,0,0,42,9.104807,1.098612,7.86254,1
-17,5,25,1,2,529940,0,8997.439,51.37098,1,12,1,30.22289,0,29.46732,0,0,59.69022,0,0,0,3,0,3,41,31,1,42,672,672,0,0,1.098612,6.510258,0,3.258096,7.896553,1,0,0,42,9.104807,1.098612,4.089168,1
-17,5,25,1,3,529940,0,8997.439,52.37098,1,12,1,134.8199,53.45454,0,0,2031.715,2219.99,1,0,0,7,0,3,41,31,1,42,672,672,0,0,1.098612,6.510258,0,3.258096,7.896553,1,0,0,42,9.104807,1.098612,7.705258,1
-17,5,25,1,1,529942,0,8997.439,14.19302,0,12,1,14.0934,1.093816,0,0,0,15.18721,0,0,0,1,0,3,93.6,6.9,0,89.8,672,672,1,0,1.098612,6.510258,0,3.258096,7.896553,0,0,0,89.8,9.104807,1.098612,2.720454,1
-17,5,25,1,2,529942,0,8997.439,15.19302,0,12,1,7.93351,0,0,0,0,7.93351,0,0,0,2,0,3,93.6,6.9,0,89.8,672,672,1,0,1.098612,6.510258,0,3.258096,7.896553,0,0,0,89.8,9.104807,1.098612,2.071095,1
-17,5,25,1,3,529942,0,8997.439,16.19302,0,12,1,16.46655,0,0,0,0,16.46655,0,0,0,2,0,3,93.6,6.9,0,89.8,672,672,1,0,1.098612,6.510258,0,3.258096,7.896553,0,0,0,89.8,9.104807,1.098612,2.801331,1
-17,5,25,1,1,529943,0,8997.439,11.65229,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,96.3,672,672,1,1,1.098612,6.510258,0,3.258096,7.896553,0,0,0,96.3,9.104807,1.098612,,0
-17,5,25,1,2,529943,0,8997.439,12.65229,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,96.3,672,672,1,1,1.098612,6.510258,0,3.258096,7.896553,0,0,0,96.3,9.104807,1.098612,,0
-17,5,25,1,3,529943,0,8997.439,13.65229,1,12,1,105.3173,0,0,0,0,105.3173,0,0,0,1,0,3,86.7,10.57626,0,96.3,672,672,1,1,1.098612,6.510258,0,3.258096,7.896553,0,0,0,96.3,9.104807,1.098612,4.656978,1
-13,5,0,1,1,529981,1,6674.895,25.99315,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,83,10.3,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,68.2,8.806258,0,,0
-13,5,0,1,2,529981,1,6674.895,26.99315,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,83,10.3,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,68.2,8.806258,0,,0
-13,5,0,1,3,529981,1,6674.895,27.99315,0,13,1,0,0,0,0,0,0,0,0,0,0,0,1,83,10.3,0,68.2,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,68.2,8.806258,0,,0
-18,5,25,1,1,530141,0,9047.619,13.69747,0,10,1,38.29877,2.175201,29.04782,0,0,69.5218,0,0,0,3,0,5,66.7,10.57626,1,37,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,37,9.110368,1.609438,4.241641,1
-18,5,25,1,2,530141,0,9047.619,14.69747,0,10,1,64.54062,1.355353,0,0,0,65.89597,0,0,0,2,0,5,66.7,10.57626,1,37,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,37,9.110368,1.609438,4.188077,1
-18,5,25,1,3,530141,0,9047.619,15.69747,0,10,1,20.76125,0,17.99308,0,0,38.75433,0,0,0,2,0,5,66.7,10.57626,1,37,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,37,9.110368,1.609438,3.657242,1
-18,5,25,0,1,530142,0,9047.619,34.84189,0,8,1,49.93652,18.5019,35.37876,0,0,103.8172,0,0,0,4,0,5,54.3,27.6,1,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,56.8,9.110368,1.609438,4.642632,1
-18,5,25,0,2,530142,0,9047.619,35.84189,0,8,1,4.93546,8.921792,0,0,0,13.85725,0,0,0,1,0,5,54.3,27.6,1,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,56.8,9.110368,1.609438,2.628809,1
-18,5,25,0,3,530142,0,9047.619,36.84189,0,8,1,121.2803,20.99654,0,0,6394.585,6536.862,2,0,0,5,0,5,54.3,27.6,1,56.8,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,56.8,9.110368,1.609438,8.785213,1
-18,5,25,1,1,530143,0,9047.619,12.35318,1,10,1,14.81168,0,24.64664,0,0,39.45832,0,0,0,1,0,5,70,10.57626,0,92.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.110368,1.609438,3.675245,1
-18,5,25,1,2,530143,0,9047.619,13.35318,1,10,1,21.26044,7.042521,0,0,0,28.30296,0,0,0,2,0,5,70,10.57626,0,92.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.110368,1.609438,3.342967,1
-18,5,25,1,3,530143,0,9047.619,14.35318,1,10,1,23.87543,9.972319,10.38408,0,0,44.23183,0,0,0,3,0,5,70,10.57626,0,92.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.110368,1.609438,3.789445,1
-18,5,25,1,1,530144,0,9047.619,32.15058,1,10,1,39.35675,51.47271,0,0,0,90.82945,0,0,0,4,0,5,18.6,37.9,1,18.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,1,18.2,9.110368,1.609438,4.508984,1
-18,5,25,1,2,530144,0,9047.619,33.15058,1,10,1,68.1473,32.79043,31.58694,0,0,132.5247,0,0,0,5,0,5,18.6,37.9,1,18.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,1,18.2,9.110368,1.609438,4.886769,1
-18,5,25,1,3,530144,0,9047.619,34.15058,1,10,1,34.25605,44.58823,7.612457,0,0,86.45675,0,0,0,5,0,5,18.6,37.9,1,18.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,1,18.2,9.110368,1.609438,4.459644,1
-18,5,25,1,1,530145,0,9047.619,6.266941,0,10,1,42.53068,19.79264,0,0,370.1523,432.4757,2,0,0,6,0,5,86.7,10.57626,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.9,9.110368,1.609438,6.069526,1
-18,5,25,1,2,530145,0,9047.619,7.266941,0,10,1,6.454062,8.09795,0,0,0,14.55201,0,0,0,1,0,5,86.7,10.57626,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.9,9.110368,1.609438,2.677729,1
-18,5,25,1,3,530145,0,9047.619,8.26694,0,10,1,11.07266,5.99308,0,0,0,17.06574,0,0,0,2,0,5,86.7,10.57626,0,51.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,51.9,9.110368,1.609438,2.837073,1
-11,5,0,1,1,530283,0,12511.44,47.3347,1,12,1,88.20615,14.42517,0,0,0,102.6313,0,0,0,6,0,3,86.2,17.2,0,72.7,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,72.7,9.434479,1.098612,4.631143,1
-11,5,0,1,2,530283,0,12511.44,48.3347,1,12,1,73.88711,15.86967,0,0,484.626,574.3828,1,0,0,3,0,3,86.2,17.2,0,72.7,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,72.7,9.434479,1.098612,6.353296,1
-11,5,0,1,3,530283,0,12511.44,49.3347,1,12,1,35.75936,11.56921,0,0,0,47.32856,0,0,0,3,0,3,86.2,17.2,0,72.7,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,72.7,9.434479,1.098612,3.857114,1
-11,5,0,1,4,530283,0,12511.44,50.3347,1,12,1,64.22365,19.12354,34.57499,0,0,117.9222,0,0,0,5,0,3,86.2,17.2,0,72.7,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,72.7,9.434479,1.098612,4.770025,1
-11,5,0,1,5,530283,0,12511.44,51.3347,1,12,1,26.41509,9.756433,0,0,0,36.17153,0,0,0,2,0,4,86.2,17.2,0,72.7,0,299.52,0,0,1.386294,5.702181,0,0,0,0,0,0,72.7,9.434479,1.386294,3.588272,1
-11,5,0,1,1,530284,0,12511.44,56.99658,0,12,1,152.1308,14.09812,50.90188,0,356.2934,573.4242,1,0,0,9,0,3,91,13.8,0,62.5,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,62.5,9.434479,1.098612,6.351626,1
-11,5,0,1,2,530284,0,12511.44,57.99658,0,12,1,45.89261,0,17.18219,0,0,63.07481,0,0,0,0,0,3,91,13.8,0,62.5,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,62.5,9.434479,1.098612,4.144321,1
-11,5,0,1,3,530284,0,12511.44,58.99658,0,12,1,27.34539,35.09887,41.96466,0,1047.539,1151.948,1,0,0,2,0,3,91,13.8,0,62.5,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,62.5,9.434479,1.098612,7.04921,1
-11,5,0,1,4,530284,0,12511.44,59.99658,0,12,1,64.60143,5.772573,23.57386,0,0,93.94787,0,0,0,4,0,3,91,13.8,0,62.5,0,299.52,0,0,1.098612,5.702181,0,0,0,0,0,0,62.5,9.434479,1.098612,4.54274,1
-11,5,0,1,5,530284,0,12511.44,60.99658,0,12,1,72.04117,16.12007,130.4151,0,1752.316,1970.892,2,0,0,7,0,4,91,13.8,0,62.5,0,299.52,0,0,1.386294,5.702181,0,0,0,0,0,0,62.5,9.434479,1.386294,7.586242,1
-11,5,0,1,1,530285,0,12511.44,17.88638,0,12,1,86.47176,16.17939,0,0,0,102.6511,0,0,0,9,0,3,55.9,3.4,0,39.8,0,299.52,1,0,1.098612,5.702181,0,0,0,1,0,0,39.8,9.434479,1.098612,4.631336,1
-11,5,0,1,2,530285,0,12511.44,18.88638,0,12,1,6.883892,0,0,0,0,6.883892,0,0,0,1,0,3,55.9,3.4,0,39.8,0,299.52,0,0,1.098612,5.702181,0,0,0,1,0,0,39.8,9.434479,1.098612,1.929184,1
-11,5,0,1,3,530285,0,12511.44,19.88638,0,12,1,15.98654,.9171224,0,0,0,16.90366,0,0,0,2,0,3,55.9,3.4,0,39.8,0,299.52,0,0,1.098612,5.702181,0,0,0,1,0,0,39.8,9.434479,1.098612,2.82753,1
-11,5,0,1,4,530285,0,12511.44,20.88638,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.9,3.4,0,39.8,0,299.52,0,0,1.098612,5.702181,0,0,0,1,0,0,39.8,9.434479,1.098612,,0
-11,5,0,1,5,530285,0,12511.44,21.88638,0,12,1,18.86792,0,0,0,0,18.86792,0,0,0,3,0,4,55.9,3.4,0,39.8,0,299.52,0,0,1.386294,5.702181,0,0,0,1,0,0,39.8,9.434479,1.386294,2.937463,1
-6,5,25,1,1,530320,0,13530.98,13.97399,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,93.3,10.57626,0,100,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.512811,1.098612,,0
-6,5,25,1,2,530320,0,13530.98,14.97399,1,12,1,17.00038,0,0,0,0,17.00038,0,0,0,1,0,3,93.3,10.57626,0,100,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.512811,1.098612,2.833236,1
-6,5,25,1,3,530320,0,13530.98,15.97399,1,12,1,6.174957,8.209263,0,0,0,14.38422,0,0,0,1,0,3,93.3,10.57626,0,100,750,750,1,1,1.098612,6.620073,0,3.258096,8.006368,0,0,0,100,9.512811,1.098612,2.666132,1
-6,5,25,1,1,530321,0,13530.98,34.19576,1,12,1,16.82793,0,0,0,0,16.82793,0,0,0,2,0,3,91,6.9,0,90.9,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.512811,1.098612,2.82304,1
-6,5,25,1,2,530321,0,13530.98,35.19576,1,12,1,48.35663,0,0,0,0,48.35663,0,0,0,2,0,3,91,6.9,0,90.9,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.512811,1.098612,3.878603,1
-6,5,25,1,3,530321,0,13530.98,36.19576,1,12,1,9.605489,0,0,0,0,9.605489,0,0,0,1,0,3,91,6.9,0,90.9,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,90.9,9.512811,1.098612,2.262335,1
-6,5,25,1,1,530322,0,13530.98,34.5024,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,91.5,6.9,0,89.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.512811,1.098612,,0
-6,5,25,1,2,530322,0,13530.98,35.5024,0,10,1,32.30072,0,0,0,0,32.30072,0,0,0,1,0,3,91.5,6.9,0,89.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.512811,1.098612,3.475089,1
-6,5,25,1,3,530322,0,13530.98,36.5024,0,10,1,9.262436,0,0,0,0,9.262436,0,0,0,2,0,3,91.5,6.9,0,89.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,89.8,9.512811,1.098612,2.225967,1
-19,5,25,1,1,530367,0,5839.734,57.26215,1,12,1,34.91796,8.645351,0,0,0,43.56332,0,0,0,2,0,1,80.9,20.7,1,60.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,60.2,8.672612,0,3.774215,1
-19,5,25,1,2,530367,0,5839.734,58.26215,1,12,1,6.800151,19.966,0,0,0,26.76615,0,0,0,1,0,1,80.9,20.7,1,60.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,60.2,8.672612,0,3.287138,1
-19,5,25,1,3,530367,0,5839.734,59.26215,1,12,1,0,19.12521,0,0,0,19.12521,0,0,0,0,0,1,80.9,20.7,1,60.2,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,60.2,8.672612,0,2.951008,1
-11,5,0,0,1,530487,0,7363.031,16.93908,0,12,1,12.62095,0,33.65587,0,0,46.27682,0,0,0,0,1,4,94.1,6.9,0,68.2,0,0,1,0,1.386294,0,0,0,0,0,0,0,68.2,8.904363,1.386294,3.834641,1
-11,5,0,0,2,530487,0,7363.031,17.93908,0,12,1,34.00076,0,17.00038,0,0,51.00113,0,0,0,1,1,4,94.1,6.9,0,68.2,0,0,1,0,1.386294,0,0,0,0,0,0,0,68.2,8.904363,1.386294,3.931848,1
-11,5,0,0,3,530487,0,7363.031,18.93908,0,12,1,12.00686,0,26.07204,0,0,38.0789,0,0,0,0,1,4,94.1,6.9,0,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,8.904363,1.386294,3.63966,1
-11,5,0,0,1,530489,0,7363.031,14.44216,0,12,1,7.57257,1.661759,0,0,0,9.234329,0,0,0,1,0,4,85.6,0,0,76.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.1,8.904363,1.386294,2.222928,1
-11,5,0,0,2,530489,0,7363.031,15.44216,0,12,1,28.33396,0,0,0,0,28.33396,0,0,0,2,0,4,85.6,0,0,76.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.1,8.904363,1.386294,3.344061,1
-11,5,0,0,3,530489,0,7363.031,16.44216,0,12,1,607.2041,2.469983,0,0,0,609.6741,0,0,0,2,0,4,85.6,0,0,76.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,76.1,8.904363,1.386294,6.412924,1
-11,5,0,0,1,530491,0,7363.031,40.91171,0,11,1,14.72444,0,30.29028,0,0,45.01472,0,0,0,0,1,4,91.5,3.4,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.904363,1.386294,3.80699,1
-11,5,0,0,2,530491,0,7363.031,41.91171,0,11,1,13.22252,0,29.46732,0,0,42.68984,0,0,0,0,1,4,91.5,3.4,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.904363,1.386294,3.753961,1
-11,5,0,0,3,530491,0,7363.031,42.91171,0,11,1,12.00686,3.392796,41.3825,0,0,56.78216,0,0,0,0,1,4,91.5,3.4,0,75,0,0,0,0,1.386294,0,0,0,0,0,0,0,75,8.904363,1.386294,4.039222,1
-11,5,0,0,1,530492,0,7363.031,39.43874,1,12,1,53.42869,21.67438,34.91796,0,592.9744,702.9954,1,0,0,4,1,4,72.9,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,8.904363,1.386294,6.55535,1
-11,5,0,0,2,530492,0,7363.031,40.43874,1,12,1,29.84511,0,0,0,0,29.84511,0,0,0,5,0,4,72.9,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,8.904363,1.386294,3.396021,1
-11,5,0,0,3,530492,0,7363.031,41.43874,1,12,1,18.86792,5.938251,38.0789,0,0,62.88508,0,0,0,1,1,4,72.9,13.8,1,60.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,60.2,8.904363,1.386294,4.141309,1
-17,5,25,0,1,530493,0,8637.993,25.9822,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,3.4,0,88.6,576.75,576.75,0,0,.6931472,6.357409,0,3.258096,7.743703,1,0,0,88.6,9.064041,.6931472,,0
-17,5,25,0,2,530493,0,8637.993,26.9822,0,14,1,0,1.305326,0,0,0,1.305326,0,0,0,0,0,2,86.7,3.4,0,88.6,576.75,576.75,0,0,.6931472,6.357409,0,3.258096,7.743703,1,0,0,88.6,9.064041,.6931472,.2664531,1
-17,5,25,0,3,530493,0,8637.993,27.9822,0,14,1,6.08931,8.108931,0,0,0,14.19824,0,0,0,1,0,3,86.7,3.4,0,88.6,576.75,576.75,0,0,1.098612,6.357409,0,3.258096,7.743703,1,0,0,88.6,9.064041,1.098612,2.653118,1
-17,5,25,0,1,530494,0,8637.993,24.91171,1,12,1,16.04835,0,0,0,0,16.04835,0,0,0,0,0,2,83,0,0,73.9,576.75,576.75,0,0,.6931472,6.357409,0,3.258096,7.743703,1,0,0,73.9,9.064041,.6931472,2.775606,1
-17,5,25,0,2,530494,0,8637.993,25.91171,1,12,1,175.5439,6.665416,.3750938,0,1373.593,1556.178,2,0,0,7,2,2,83,0,0,73.9,576.75,576.75,0,0,.6931472,6.357409,0,3.258096,7.743703,1,0,0,73.9,9.064041,.6931472,7.349988,1
-17,5,25,0,3,530494,0,8637.993,26.91171,1,12,1,30.6157,3.616374,0,0,0,34.23207,0,0,0,1,0,3,83,0,0,73.9,576.75,576.75,0,0,1.098612,6.357409,0,3.258096,7.743703,1,0,0,73.9,9.064041,1.098612,3.533163,1
-18,5,25,1,1,530495,1,2794.675,35.68789,1,12,1,0,0,0,0,965.9235,965.9235,1,0,0,0,0,3,67,27.6,1,58,504.3,504.3,0,0,1.098612,6.223171,0,3.258096,7.609466,1,0,0,58,7.935829,1.098612,6.873085,1
-18,5,25,1,2,530495,1,2794.675,36.68789,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,67,27.6,1,58,504.3,504.3,0,0,1.098612,6.223171,0,3.258096,7.609466,1,0,0,58,7.935829,1.098612,,0
-18,5,25,1,3,530495,1,2794.675,37.68789,1,12,1,17.15266,0,17.45455,0,0,34.6072,0,0,0,1,0,3,67,27.6,1,58,504.3,504.3,0,0,1.098612,6.223171,0,3.258096,7.609466,1,0,0,58,7.935829,1.098612,3.544062,1
-18,5,25,1,1,530496,1,2794.675,11.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,0,74.1,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,74.1,7.935829,1.098612,,0
-18,5,25,1,2,530496,1,2794.675,12.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,0,74.1,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,74.1,7.935829,1.098612,,0
-18,5,25,1,3,530496,1,2794.675,13.99726,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,0,74.1,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,74.1,7.935829,1.098612,,0
-18,5,25,1,1,530497,1,2794.675,14.59548,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,10.3,0,52.3,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,52.3,7.935829,1.098612,,0
-18,5,25,1,2,530497,1,2794.675,15.59548,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,10.3,0,52.3,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,52.3,7.935829,1.098612,,0
-18,5,25,1,3,530497,1,2794.675,16.59548,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,10.3,0,52.3,504.3,504.3,1,0,1.098612,6.223171,0,3.258096,7.609466,0,0,0,52.3,7.935829,1.098612,,0
-10,5,50,0,1,530512,0,4944.701,35.86584,1,12,1,40.85035,0,29.59566,0,0,70.44602,0,0,0,1,1,3,96.3,6.9,0,94.3,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,94.3,8.506274,1.098612,4.254847,1
-10,5,50,0,2,530512,0,4944.701,36.86584,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,96.3,6.9,0,94.3,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,94.3,8.506274,1.098612,,0
-10,5,50,0,3,530512,0,4944.701,37.86584,1,12,1,58.52503,0,0,0,0,58.52503,0,0,0,2,1,3,96.3,6.9,0,94.3,1000,0,0,0,1.098612,0,0,3.931826,7.600903,1,0,0,94.3,8.506274,1.098612,4.069455,1
-10,5,50,0,1,530513,0,4944.701,13.97399,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,100,1000,0,1,0,1.098612,0,0,3.931826,7.600903,0,0,0,100,8.506274,1.098612,,0
-10,5,50,0,2,530513,0,4944.701,14.97399,0,12,1,47.63691,0,0,0,0,47.63691,0,0,0,2,0,3,95,10.57626,0,100,1000,0,1,0,1.098612,0,0,3.931826,7.600903,0,0,0,100,8.506274,1.098612,3.863608,1
-10,5,50,0,3,530513,0,4944.701,15.97399,0,12,1,36.87415,0,0,0,0,36.87415,0,0,0,4,0,3,95,10.57626,0,100,1000,0,1,0,1.098612,0,0,3.931826,7.600903,0,0,0,100,8.506274,1.098612,3.607511,1
-10,5,50,0,1,530514,0,4944.701,9.533196,1,12,1,14.58941,0,0,0,0,14.58941,0,0,0,0,1,3,85,10.57626,0,85.2,1000,0,1,1,1.098612,0,0,3.931826,7.600903,0,0,0,85.2,8.506274,1.098612,2.680296,1
-10,5,50,0,2,530514,0,4944.701,10.5332,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85,10.57626,0,85.2,1000,0,1,1,1.098612,0,0,3.931826,7.600903,0,0,0,85.2,8.506274,1.098612,,0
-10,5,50,0,3,530514,0,4944.701,11.5332,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,85,10.57626,0,85.2,1000,0,1,1,1.098612,0,0,3.931826,7.600903,0,0,0,85.2,8.506274,1.098612,,0
-11,5,0,0,1,530594,1,6674.895,9.83436,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,.1442925,92.6,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,92.6,8.806258,1.386294,,0
-11,5,0,0,2,530594,1,6674.895,10.83436,0,14,1,15.11145,0,0,0,0,15.11145,0,0,0,2,0,4,96.7,10.57626,.1442925,92.6,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,92.6,8.806258,1.386294,2.715453,1
-11,5,0,0,3,530594,1,6674.895,11.83436,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,96.7,10.57626,.1442925,92.6,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,92.6,8.806258,1.386294,,0
-11,5,0,0,1,530595,1,6674.895,32.98015,1,14,1,264.1986,10.97602,0,0,1844.342,2119.516,1,0,0,3,0,4,90.4,17.2,0,27.3,0,18,0,0,1.386294,2.890372,0,0,0,1,0,0,27.3,8.806258,1.386294,7.658943,1
-11,5,0,0,2,530595,1,6674.895,33.98015,1,14,1,72.53494,7.287495,28.33396,0,0,108.1564,0,0,0,3,1,4,90.4,17.2,0,27.3,0,18,0,0,1.386294,2.890372,0,0,0,1,0,0,27.3,8.806258,1.386294,4.683578,1
-11,5,0,0,3,530595,1,6674.895,34.98015,1,14,1,73.75643,4.305317,0,0,0,78.06175,0,0,0,4,0,4,90.4,17.2,0,27.3,0,18,0,0,1.386294,2.890372,0,0,0,1,0,0,27.3,8.806258,1.386294,4.3575,1
-11,5,0,0,1,530596,1,6674.895,34.73511,0,13,1,21.45562,3.151031,0,0,316.7859,341.3925,1,0,0,2,0,4,93.1,6.9,0,92,0,18,0,0,1.386294,2.890372,0,0,0,0,0,0,92,8.806258,1.386294,5.833033,1
-11,5,0,0,2,530596,1,6674.895,35.73511,0,13,1,13.22252,4.533434,29.07442,0,0,46.83038,0,0,0,1,0,4,93.1,6.9,0,92,0,18,0,0,1.386294,2.890372,0,0,0,0,0,0,92,8.806258,1.386294,3.846532,1
-11,5,0,0,3,530596,1,6674.895,36.73511,0,13,1,107.0326,5.008576,0,0,0,112.0412,0,0,0,3,0,4,93.1,6.9,0,92,0,18,0,0,1.386294,2.890372,0,0,0,0,0,0,92,8.806258,1.386294,4.718866,1
-13,5,0,0,1,530717,0,5423.963,29.94114,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,59,6.9,0,88.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,88.6,8.598766,0,,0
-13,5,0,0,2,530717,0,5423.963,30.94114,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,59,6.9,0,88.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,88.6,8.598766,0,,0
-13,5,0,0,3,530717,0,5423.963,31.94114,0,14,1,0,0,0,0,0,0,0,0,0,0,0,1,59,6.9,0,88.6,150,150,0,0,0,5.010635,1,4.564348,5.061929,0,0,0,88.6,8.598766,0,,0
-11,5,0,1,1,530789,0,8797.235,33.98494,1,4,1,93.37224,19.0371,25.57732,300.1251,0,137.9867,0,0,17,10,0,5,23.4,24.1,0,40.9,0,195,0,0,1.609438,5.273,0,0,0,1,0,0,40.9,9.082307,1.609438,4.927157,1
-11,5,0,1,2,530789,0,8797.235,34.98494,1,4,1,45.85521,0,0,0,0,45.85521,0,0,0,2,0,5,23.4,24.1,0,40.9,0,195,0,0,1.609438,5.273,0,0,0,1,0,0,40.9,9.082307,1.609438,3.825489,1
-11,5,0,1,3,530789,0,8797.235,35.98494,1,4,1,6.08931,0,0,0,0,6.08931,0,0,0,1,0,5,23.4,24.1,0,40.9,0,195,0,0,1.609438,5.273,0,0,0,1,0,0,40.9,9.082307,1.609438,1.806535,1
-11,5,0,1,1,530790,0,8797.235,9.092402,0,4,1,10.83785,0,0,0,0,10.83785,0,0,0,2,0,5,85,10.57626,0,37,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,37,9.082307,1.609438,2.383044,1
-11,5,0,1,2,530790,0,8797.235,10.0924,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,37,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,37,9.082307,1.609438,,0
-11,5,0,1,3,530790,0,8797.235,11.0924,0,4,1,10.14885,0,0,0,0,10.14885,0,0,0,1,0,5,85,10.57626,0,37,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,37,9.082307,1.609438,2.31736,1
-11,5,0,1,1,530791,0,8797.235,14.77344,0,4,1,30.0125,0,0,0,0,30.0125,0,0,0,4,0,5,77.7,3.4,0,70.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,70.5,9.082307,1.609438,3.401614,1
-11,5,0,1,2,530791,0,8797.235,15.77344,0,4,1,32.53939,0,0,0,0,32.53939,0,0,0,2,0,5,77.7,3.4,0,70.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,70.5,9.082307,1.609438,3.482451,1
-11,5,0,1,3,530791,0,8797.235,16.77344,0,4,1,7.104195,0,0,0,0,7.104195,0,0,0,1,0,5,77.7,3.4,0,70.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,70.5,9.082307,1.609438,1.960685,1
-11,5,0,1,1,530792,0,8797.235,13.07324,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,81.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,81.5,9.082307,1.609438,,0
-11,5,0,1,2,530792,0,8797.235,14.07324,0,4,1,72.3931,0,0,0,885.9715,958.3646,1,0,0,7,0,5,100,10.57626,0,81.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,81.5,9.082307,1.609438,6.865228,1
-11,5,0,1,3,530792,0,8797.235,15.07324,0,4,1,28.75507,0,0,0,910.6901,939.4452,1,0,0,3,0,5,100,10.57626,0,81.5,0,195,1,0,1.609438,5.273,0,0,0,1,0,0,81.5,9.082307,1.609438,6.84529,1
-11,5,0,1,1,530793,0,8797.235,38.87748,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,74.5,6.9,0,62.5,0,195,0,0,1.609438,5.273,0,0,0,0,1,0,62.5,9.082307,1.609438,,0
-11,5,0,1,2,530793,0,8797.235,39.87748,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,74.5,6.9,0,62.5,0,195,0,0,1.609438,5.273,0,0,0,0,1,0,62.5,9.082307,1.609438,,0
-11,5,0,1,3,530793,0,8797.235,40.87748,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,74.5,6.9,0,62.5,0,195,0,0,1.609438,5.273,0,0,0,0,1,0,62.5,9.082307,1.609438,,0
-16,5,95,0,1,530876,0,9033.794,48.28474,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,42,24.1,0,50,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,50,9.108838,.6931472,,0
-16,5,95,0,2,530876,0,9033.794,49.28474,0,12,1,13.28778,0,31.51101,0,0,44.79879,0,0,0,0,1,2,42,24.1,0,50,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,50,9.108838,.6931472,3.802181,1
-16,5,95,0,3,530876,0,9033.794,50.28474,0,12,1,154.3253,0,0,0,0,154.3253,0,0,0,2,0,2,42,24.1,0,50,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,50,9.108838,.6931472,5.039063,1
-16,5,95,0,1,530877,0,9033.794,16.63792,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,46.8,6.9,0,65.9,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.108838,.6931472,,0
-16,5,95,0,2,530877,0,9033.794,17.63792,1,12,1,0,.6795748,0,0,0,.6795748,0,0,0,0,0,2,46.8,6.9,0,65.9,1000,1000,1,1,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.108838,.6931472,-.386288,1
-16,5,95,0,3,530877,0,9033.794,18.63792,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,46.8,6.9,0,65.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.108838,.6931472,,0
-14,5,95,1,1,530994,0,6387.609,24.47091,1,14,1,27.09462,0,21.6757,0,0,48.77032,0,0,0,1,1,2,73.9,17.2,0,71.6,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,71.6,8.762272,.6931472,3.887122,1
-14,5,95,1,2,530994,0,6387.609,25.47091,1,14,1,41.26031,0,39.24606,0,0,80.50638,0,0,0,3,1,2,73.9,17.2,0,71.6,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,71.6,8.762272,.6931472,4.388336,1
-14,5,95,1,3,530994,0,6387.609,26.47091,1,14,1,0,17.26319,0,0,0,17.26319,0,0,0,0,0,2,73.9,17.2,0,71.6,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,71.6,8.762272,.6931472,2.848577,1
-14,5,95,1,1,530995,0,6387.609,24.94182,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,92,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,92,8.762272,.6931472,,0
-14,5,95,1,2,530995,0,6387.609,25.94182,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,92,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,92,8.762272,.6931472,,0
-14,5,95,1,3,530995,0,6387.609,26.94182,0,13,1,0,1.075778,0,0,0,1.075778,0,0,0,0,0,2,85.1,0,0,92,592,592,0,0,.6931472,6.383507,0,4.564348,6.4348,0,0,0,92,8.762272,.6931472,.0730442,1
-11,5,0,0,1,531476,0,10963.64,7.597536,1,10.96978,1,4.987531,6.354115,0,0,0,11.34165,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,2.428481,1
-11,5,0,0,2,531476,0,10963.64,8.597536,1,10.96978,1,101.8903,28.93038,0,0,0,130.8206,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.873827,1
-11,5,0,0,3,531476,0,10963.64,9.597536,1,10.96978,1,21.15954,12.16674,0,0,0,33.32628,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,3.506346,1
-11,5,0,0,4,531476,0,10963.64,10.59754,1,10.96978,1,102.8853,3.701595,0,0,0,106.5869,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.668961,1
-11,5,0,0,5,531476,0,10963.64,11.59754,1,10.96978,1,0,2.681661,0,0,0,2.681661,0,0,0,0,0,5,77.40034,10.57626,.1442925,,0,0,1,1,1.609438,0,0,0,0,0,0,0,70.68995,9.30243,1.609438,.9864364,1
-11,5,0,0,1,531477,0,10963.64,27.06366,1,10.96978,1,92.76808,25.94015,0,0,0,118.7082,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.776669,1
-11,5,0,0,2,531477,0,10963.64,28.06366,1,10.96978,1,51.40618,14.63808,33.56385,0,0,99.60812,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.601243,1
-11,5,0,0,3,531477,0,10963.64,29.06366,1,10.96978,1,40.20313,31.10453,0,0,0,71.30766,0,0,0,5,0,4,77.40034,10.57626,.1442925,,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.267004,1
-11,5,0,0,4,531477,0,10963.64,30.06366,1,10.96978,1,21.82992,11.1997,0,0,549.3546,582.3842,1,0,0,2,0,4,77.40034,10.57626,.1442925,,0,0,0,0,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,6.36713,1
-11,5,0,0,5,531477,0,10963.64,31.06366,1,10.96978,1,297.7509,26.6436,0,0,0,324.3945,0,0,0,4,0,5,77.40034,10.57626,.1442925,,0,0,0,0,1.609438,0,0,0,0,0,0,0,70.68995,9.30243,1.609438,5.78196,1
-11,5,0,0,1,531478,0,10963.64,6.310746,1,10.96978,1,55.3616,9.276808,0,0,0,64.6384,0,0,0,2,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,4.168809,1
-11,5,0,0,2,531478,0,10963.64,7.310746,1,10.96978,1,0,9.681881,0,0,0,9.681881,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,2.270256,1
-11,5,0,0,3,531478,0,10963.64,8.310746,1,10.96978,1,25.39145,23.46593,0,0,0,48.85738,0,0,0,4,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,3.888906,1
-11,5,0,0,4,531478,0,10963.64,9.310746,1,10.96978,1,11.38952,16.23007,0,0,0,27.61959,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,9.30243,1.386294,3.318525,1
-11,5,0,0,5,531478,0,10963.64,10.31075,1,10.96978,1,30.10381,8.391004,0,0,773.7024,812.1972,1,0,0,1,0,5,77.40034,10.57626,.1442925,,0,0,1,1,1.609438,0,0,0,0,0,0,0,70.68995,9.30243,1.609438,6.699743,1
-11,5,0,0,1,531479,0,8663.343,.1916496,0,14,1,97.75561,21.76559,0,0,0,119.5212,0,0,0,14,0,4,77.40034,10.57626,0,85.2,0,911.56,1,0,1.386294,6.815157,0,0,0,0,0,0,85.2,9.066972,1.386294,4.783494,1
-11,5,0,0,2,531479,0,8663.343,1.19165,0,14,1,71.00046,14.08022,0,0,0,85.08068,0,0,0,12,0,4,77.40034,10.57626,0,85.2,0,911.56,1,0,1.386294,6.815157,0,0,0,0,0,0,85.2,9.066972,1.386294,4.4436,1
-11,5,0,0,3,531479,0,8663.343,2.191649,0,14,1,90.13966,8.573847,0,0,0,98.7135,0,0,0,10,0,4,77.40034,10.57626,0,85.2,0,911.56,1,0,1.386294,6.815157,0,0,0,0,0,0,85.2,9.066972,1.386294,4.592222,1
-11,5,0,0,4,531479,0,8663.343,3.191649,0,14,1,34.92787,17.58542,13.26879,0,0,65.78208,0,0,0,5,0,4,77.40034,10.57626,0,85.2,0,911.56,1,0,1.386294,6.815157,0,0,0,0,0,0,85.2,9.066972,1.386294,4.186347,1
-11,5,0,0,5,531479,0,8663.343,4.191649,0,14,1,23.87543,10.07266,0,0,0,33.9481,0,0,0,3,0,4,77.40034,10.57626,0,85.2,0,911.56,1,0,1.386294,6.815157,0,0,0,0,0,0,85.2,9.066972,1.386294,3.524833,1
-11,5,0,1,1,531480,0,3374.194,19.28542,1,12,1,107.7307,50.96259,7.481297,0,1157.257,1323.431,2,0,0,6,0,2,69.1,6.9,1,60.2,0,0,0,0,.6931472,0,0,0,0,0,0,0,60.2,8.124207,.6931472,7.187983,1
-11,5,0,1,2,531480,0,3374.194,20.28542,1,12,1,223.1443,90.4426,0,0,0,313.5869,0,0,0,18,0,3,69.1,6.9,1,60.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,60.2,8.124207,1.098612,5.748076,1
-11,5,0,1,3,531480,0,3374.194,21.28542,1,12,1,109.1832,121.7055,3.597122,44.43504,0,234.4858,0,0,3,11,0,3,69.1,6.9,1,60.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,60.2,8.124207,1.098612,5.457395,1
-11,5,0,1,4,531480,0,3374.194,22.28542,1,12,1,80.48595,34.1306,4.024298,526.3857,211.8451,330.486,1,0,37,7,0,3,69.1,6.9,1,60.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,60.2,8.124207,1.098612,5.800564,1
-11,5,0,1,5,531480,0,3374.194,23.28542,1,12,1,57.43945,10.58477,3.66782,84.77509,1602.699,1674.391,2,0,6,4,0,3,69.1,6.9,1,60.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,60.2,8.124207,1.098612,7.423205,1
-11,5,0,1,1,531481,0,3374.194,22.74607,0,12,1,19.95012,6.758105,0,0,917.207,943.9152,1,0,0,0,4,2,55.9,10.3,0,52.3,0,0,0,0,.6931472,0,0,0,0,0,0,0,52.3,8.124207,.6931472,6.850036,1
-11,5,0,1,2,531481,0,3374.194,23.74607,0,12,1,165.2835,18.4094,0,0,0,183.6929,0,0,0,7,0,3,55.9,10.3,0,52.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,52.3,8.124207,1.098612,5.213265,1
-11,5,0,1,3,531481,0,3374.194,24.74607,0,12,1,38.93356,6.271688,30.04655,29.62336,0,75.2518,0,0,2,5,0,3,55.9,10.3,0,52.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,52.3,8.124207,1.098612,4.32084,1
-11,5,0,1,4,531481,0,3374.194,25.74607,0,12,1,129.8405,5.846621,0,86.37054,0,135.6872,0,0,7,2,0,3,55.9,10.3,0,52.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,52.3,8.124207,1.098612,4.910352,1
-11,5,0,1,5,531481,0,3374.194,26.74607,0,12,1,13.84083,0,21.71626,0,0,35.55709,0,0,0,1,0,3,55.9,10.3,0,52.3,0,0,0,0,1.098612,0,0,0,0,0,0,0,52.3,8.124207,1.098612,3.57114,1
-15,5,95,1,1,531486,1,1874.04,14.91581,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,3.4,0,78.4,288,0,1,0,.6931472,0,0,4.564348,5.714254,0,0,0,78.4,7.536385,.6931472,,0
-15,5,95,1,2,531486,1,1874.04,15.91581,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,3.4,0,78.4,288,0,1,0,.6931472,0,0,4.564348,5.714254,0,0,0,78.4,7.536385,.6931472,,0
-15,5,95,1,3,531486,1,1874.04,16.91581,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,3.4,0,78.4,288,0,1,0,.6931472,0,0,4.564348,5.714254,0,0,0,78.4,7.536385,.6931472,,0
-10,5,50,1,1,531491,0,10283.87,25.00479,0,14,1,30.72349,1.838454,32.98315,0,0,65.5451,0,0,0,1,0,2,81.4,20.7,0,60.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,60.2,9.238429,.6931472,4.182738,1
-10,5,50,1,2,531491,0,10283.87,26.00479,0,14,1,9.178522,0,0,0,0,9.178522,0,0,0,1,0,2,81.4,20.7,0,60.2,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,0,60.2,9.238429,.6931472,2.216866,1
-10,5,50,1,3,531491,0,10283.87,27.00479,0,14,1,0,5.061001,34.56458,0,0,39.62558,0,0,0,0,0,3,81.4,20.7,0,60.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,60.2,9.238429,1.098612,3.679475,1
-10,5,50,1,4,531491,0,10283.87,28.00479,0,14,1,7.555724,2.474499,13.75142,0,0,23.78164,0,0,0,1,0,3,81.4,20.7,0,60.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,60.2,9.238429,1.098612,3.168914,1
-10,5,50,1,5,531491,0,10283.87,29.00479,0,14,1,10.2916,0,30.06175,0,0,40.35334,0,0,0,0,1,3,81.4,20.7,0,60.2,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,60.2,9.238429,1.098612,3.697674,1
-11,5,0,1,1,531496,1,602.3461,.3312799,0,12,1,9.910803,5.193261,0,0,0,15.10406,0,0,0,2,0,5,77.40034,10.57626,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,6.402491,1.609438,2.714964,1
-11,5,0,1,2,531496,1,602.3461,1.33128,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,0,0,1,0,1.609438,0,0,0,0,0,0,0,77.8,6.402491,1.609438,,0
-11,5,0,1,3,531496,1,602.3461,2.33128,0,12,1,0,0,0,0,352.9659,352.9659,1,0,0,0,0,6,77.40034,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.402491,1.791759,5.866372,1
-11,5,0,1,4,531496,1,602.3461,3.33128,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.402491,1.791759,,0
-11,5,0,1,5,531496,1,602.3461,4.33128,0,12,1,450.4288,0,0,0,0,450.4288,0,0,0,3,0,6,77.40034,10.57626,0,77.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,77.8,6.402491,1.791759,6.1102,1
-13,5,0,1,1,531520,1,2422.939,8.81588,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,66.7,450,0,1,1,1.098612,0,1,4.564348,6.160541,0,0,0,66.7,7.793149,1.098612,,0
-13,5,0,1,2,531520,1,2422.939,9.81588,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,66.7,450,0,1,1,1.098612,0,1,4.564348,6.160541,0,0,0,66.7,7.793149,1.098612,,0
-13,5,0,1,3,531520,1,2422.939,10.81588,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,95,10.57626,0,66.7,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,66.7,7.793149,1.386294,,0
-13,5,0,0,1,531524,0,13794.16,27.98083,0,10.96978,1,11.42615,0,0,0,0,11.42615,0,0,0,1,0,4,74.5,3.4,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,87.5,9.532073,1.386294,2.435905,1
-13,5,0,0,2,531524,0,13794.16,28.98083,0,10.96978,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,3.4,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,87.5,9.532073,1.386294,,0
-13,5,0,0,3,531524,0,13794.16,29.98083,0,10.96978,1,5.190311,0,0,0,0,5.190311,0,0,0,1,0,4,74.5,3.4,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,87.5,9.532073,1.386294,1.646794,1
-13,5,0,0,1,531542,0,4835.125,32.31759,1,13,1,30.89293,0,0,0,0,30.89293,0,0,0,2,0,2,84,17.2,0,73.9,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,73.9,8.48387,.6931472,3.430527,1
-13,5,0,0,2,531542,0,4835.125,33.31759,1,13,1,75.55049,0,0,38.72437,0,75.55049,0,0,6,5,0,2,84,17.2,0,73.9,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,73.9,8.48387,.6931472,4.324801,1
-13,5,0,0,3,531542,0,4835.125,34.31759,1,13,1,156.0554,0,0,0,444.6367,600.692,1,0,0,2,0,2,84,17.2,0,73.9,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,73.9,8.48387,.6931472,6.398082,1
-13,5,0,0,1,531543,0,4835.125,28.23545,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,3.4,1,76.1,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,76.1,8.48387,.6931472,,0
-13,5,0,0,2,531543,0,4835.125,29.23545,0,14,1,11.38952,0,25.05695,0,0,36.44647,0,0,0,0,1,2,78.7,3.4,1,76.1,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,76.1,8.48387,.6931472,3.595845,1
-13,5,0,0,3,531543,0,4835.125,30.23545,0,14,1,13.14879,0,0,0,0,13.14879,0,0,0,0,0,2,78.7,3.4,1,76.1,300,394.56,0,0,.6931472,5.977771,1,4.564348,5.755076,1,0,0,76.1,8.48387,.6931472,2.57633,1
-11,5,0,0,1,531544,0,14134.67,13.8371,1,12,1,16.82793,0,22.75137,0,0,39.5793,0,0,0,2,0,5,90,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.556457,1.609438,3.678306,1
-11,5,0,0,2,531544,0,14134.67,14.8371,1,12,1,23.42274,0,5.500566,0,0,28.92331,0,0,0,2,0,5,90,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.556457,1.609438,3.364648,1
-11,5,0,0,3,531544,0,14134.67,15.8371,1,12,1,13.72213,0,9.989708,0,0,23.71184,0,0,0,1,0,5,90,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.556457,1.609438,3.165974,1
-11,5,0,0,1,531545,0,14134.67,49.14442,0,18,1,16.82793,0,24.939,0,0,41.76693,0,0,0,1,0,5,70.7,3.4,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.556457,1.609438,3.732105,1
-11,5,0,0,2,531545,0,14134.67,50.14442,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,3.4,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.556457,1.609438,,0
-11,5,0,0,3,531545,0,14134.67,51.14442,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,3.4,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.556457,1.609438,,0
-11,5,0,0,1,531546,0,14134.67,9.182752,0,12,1,5.679428,0,0,0,0,5.679428,0,0,0,1,0,5,83.3,10.57626,0,92.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,92.6,9.556457,1.609438,1.736851,1
-11,5,0,0,2,531546,0,14134.67,10.18275,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,92.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,92.6,9.556457,1.609438,,0
-11,5,0,0,3,531546,0,14134.67,11.18275,0,12,1,13.72213,3.204117,0,0,0,16.92624,0,0,0,1,0,5,83.3,10.57626,0,92.6,0,0,1,0,1.609438,0,0,0,0,0,0,0,92.6,9.556457,1.609438,2.828865,1
-11,5,0,0,1,531547,0,14134.67,10.39014,1,12,1,11.14851,0,0,0,0,11.14851,0,0,0,2,0,5,91.7,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,9.556457,1.609438,2.411305,1
-11,5,0,0,2,531547,0,14134.67,11.39014,1,12,1,9.82244,2.334718,0,0,0,12.15716,0,0,0,2,0,5,91.7,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,9.556457,1.609438,2.497918,1
-11,5,0,0,3,531547,0,14134.67,12.39014,1,12,1,27.44425,10.69983,0,0,0,38.14408,0,0,0,2,0,5,91.7,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,9.556457,1.609438,3.641371,1
-11,5,0,0,1,531548,0,14134.67,39.36208,1,12,1,25.45225,3.920909,0,0,0,29.37316,0,0,0,2,0,5,91,20.7,0,54.5,0,0,0,0,1.609438,0,0,0,0,1,0,0,54.5,9.556457,1.609438,3.380081,1
-11,5,0,0,2,531548,0,14134.67,40.36208,1,12,1,11.71137,0,23.94787,0,0,35.65924,0,0,0,3,0,5,91,20.7,0,54.5,0,0,0,0,1.609438,0,0,0,0,1,0,0,54.5,9.556457,1.609438,3.574008,1
-11,5,0,0,3,531548,0,14134.67,41.36208,1,12,1,56.26072,5.15952,17.09091,0,0,78.51115,0,0,0,7,0,5,91,20.7,0,54.5,0,0,0,0,1.609438,0,0,0,0,1,0,0,54.5,9.556457,1.609438,4.363241,1
-18,5,25,0,1,531553,0,10407.07,4.25462,1,16,1,18.93143,10.26504,0,0,0,29.19647,0,0,0,3,0,4,77.40034,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.250337,1.386294,3.374048,1
-18,5,25,0,2,531553,0,10407.07,5.25462,1,16,1,65.73479,26.5017,0,0,0,92.2365,0,0,0,10,0,4,77.40034,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.250337,1.386294,4.524356,1
-18,5,25,0,3,531553,0,10407.07,6.25462,1,16,1,53.17324,4.504288,2.360206,0,0,60.03773,0,0,0,4,0,4,77.40034,10.57626,0,92.6,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.250337,1.386294,4.094973,1
-18,5,25,0,1,531554,0,10407.07,2.527036,1,16,1,87.50526,30.14304,0,0,236.4325,354.0808,1,0,0,10,0,4,77.40034,10.57626,0,81.5,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.250337,1.386294,5.869525,1
-18,5,25,0,2,531554,0,10407.07,3.527036,1,16,1,11.33358,5.640347,0,0,0,16.97393,0,0,0,2,0,4,77.40034,10.57626,0,81.5,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.250337,1.386294,2.831679,1
-18,5,25,0,3,531554,0,10407.07,4.527036,1,16,1,12.34991,1.385935,0,0,0,13.73585,0,0,0,2,0,4,77.40034,10.57626,0,81.5,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.250337,1.386294,2.620009,1
-18,5,25,0,1,531555,0,10407.07,29.14168,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,83.5,6.9,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.250337,1.386294,,0
-18,5,25,0,2,531555,0,10407.07,30.14168,1,16,1,27.57839,13.05251,0,0,0,40.6309,0,0,0,3,0,4,83.5,6.9,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.250337,1.386294,3.704529,1
-18,5,25,0,3,531555,0,10407.07,31.14168,1,16,1,43.56775,14.10292,0,0,0,57.67067,0,0,0,4,0,4,83.5,6.9,0,86.4,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,86.4,9.250337,1.386294,4.054749,1
-18,5,25,0,1,531556,0,10407.07,28.47365,0,14,1,6.310475,5.023139,0,0,0,11.33361,0,0,0,1,0,4,78.2,10.3,0,77.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.250337,1.386294,2.427773,1
-18,5,25,0,2,531556,0,10407.07,29.47365,0,14,1,55.91235,3.891198,24.5561,0,0,84.35965,0,0,0,4,1,4,78.2,10.3,0,77.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.250337,1.386294,4.435089,1
-18,5,25,0,3,531556,0,10407.07,30.47365,0,14,1,17.15266,1.629503,0,0,0,18.78216,0,0,0,0,1,4,78.2,10.3,0,77.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,77.3,9.250337,1.386294,2.932908,1
-10,5,50,0,1,531557,0,9566.82,31.2553,1,12,1,15.90812,0,0,0,0,15.90812,0,0,0,0,0,4,87.8,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.166161,1.386294,2.76683,1
-10,5,50,0,2,531557,0,9566.82,32.25531,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,87.8,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.166161,1.386294,,0
-10,5,50,0,3,531557,0,9566.82,33.25531,1,12,1,69.68641,0,0,0,0,69.68641,0,0,0,1,0,4,87.8,24.1,0,69.3,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,69.3,9.166161,1.386294,4.244005,1
-10,5,50,0,1,531558,0,9566.82,11.82204,1,12,1,25.94641,0,0,0,0,25.94641,0,0,0,1,0,4,56.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.166161,1.386294,3.256033,1
-10,5,50,0,2,531558,0,9566.82,12.82204,1,12,1,48.0916,0,0,0,0,48.0916,0,0,0,2,0,4,56.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.166161,1.386294,3.873108,1
-10,5,50,0,3,531558,0,9566.82,13.82204,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,56.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.166161,1.386294,,0
-10,5,50,0,1,531559,0,9566.82,37.28679,0,7,1,57.42237,23.81965,0,0,0,81.24203,0,0,0,2,0,4,65.4,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.166161,1.386294,4.397433,1
-10,5,50,0,2,531559,0,9566.82,38.28679,0,7,1,38.54962,6.744275,0,0,0,45.29389,0,0,0,5,0,4,65.4,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.166161,1.386294,3.813172,1
-10,5,50,0,3,531559,0,9566.82,39.28679,0,7,1,26.91638,0,0,0,0,26.91638,0,0,0,1,0,4,65.4,13.8,0,78.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,78.4,9.166161,1.386294,3.292735,1
-10,5,50,0,1,531560,0,9566.82,9.174538,0,12,1,36.96299,3.441089,4.155678,0,0,44.55976,0,0,0,1,0,4,73.3,10.57626,1,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.166161,1.386294,3.796831,1
-10,5,50,0,2,531560,0,9566.82,10.17454,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,1,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.166161,1.386294,,0
-10,5,50,0,3,531560,0,9566.82,11.17454,0,12,1,0,0,0,0,940.1742,940.1742,1,0,0,0,0,4,73.3,10.57626,1,77.8,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,77.8,9.166161,1.386294,6.846065,1
-11,5,0,1,1,531578,0,9454.173,13.04312,0,12,1,6.310475,2.806058,0,0,0,9.116533,0,0,0,1,0,7,86.7,10.57626,0,77.8,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,77.8,9.154317,1.94591,2.21009,1
-11,5,0,1,2,531578,0,9454.173,14.04312,0,12,1,123.1583,11.90782,0,0,0,135.0661,0,0,0,7,1,7,86.7,10.57626,0,77.8,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,77.8,9.154317,1.94591,4.905765,1
-11,5,0,1,3,531578,0,9454.173,15.04312,0,12,1,81.98971,83.53345,0,0,0,165.5232,0,0,0,7,1,7,86.7,10.57626,0,77.8,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,77.8,9.154317,1.94591,5.109111,1
-11,5,0,1,1,531579,0,9454.173,12.01917,0,12,1,97.18132,0,24.8212,0,0,122.0025,0,0,0,1,1,7,80,10.57626,0,51.9,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,51.9,9.154317,1.94591,4.804042,1
-11,5,0,1,2,531579,0,9454.173,13.01917,0,12,1,51.75671,9.255761,13.22252,0,0,74.23499,0,0,0,3,1,7,80,10.57626,0,51.9,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,51.9,9.154317,1.94591,4.307236,1
-11,5,0,1,3,531579,0,9454.173,14.01917,0,12,1,168.4391,3.087479,0,0,0,171.5266,0,0,0,7,0,7,80,10.57626,0,51.9,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,51.9,9.154317,1.94591,5.144738,1
-11,5,0,1,1,531580,0,9454.173,10.85284,0,12,1,25.2419,1.615482,0,0,0,26.85738,0,0,0,1,1,7,88.3,10.57626,0,74.1,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,74.1,9.154317,1.94591,3.290541,1
-11,5,0,1,2,531580,0,9454.173,11.85284,0,12,1,94.82433,17.75595,0,0,0,112.5803,0,0,0,8,0,7,88.3,10.57626,0,74.1,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,74.1,9.154317,1.94591,4.723667,1
-11,5,0,1,3,531580,0,9454.173,12.85284,0,12,1,42.53859,27.18696,0,0,0,69.72556,0,0,0,5,1,7,88.3,10.57626,0,74.1,0,537.86,1,0,1.94591,6.287598,0,0,0,0,1,0,74.1,9.154317,1.94591,4.244567,1
-11,5,0,1,1,531581,0,9454.173,38.72416,0,13,1,21.98149,2.267564,0,0,0,24.24905,0,0,0,1,0,7,92,6.9,0,77.3,0,537.86,0,0,1.94591,6.287598,0,0,0,0,0,0,77.3,9.154317,1.94591,3.188378,1
-11,5,0,1,2,531581,0,9454.173,39.72416,0,13,1,43.44541,26.72837,35.13411,0,0,105.3079,0,0,0,2,1,7,92,6.9,0,77.3,0,537.86,0,0,1.94591,6.287598,0,0,0,0,0,0,77.3,9.154317,1.94591,4.656888,1
-11,5,0,1,3,531581,0,9454.173,40.72416,0,13,1,51.11492,28.98799,22.29846,0,0,102.4014,0,0,0,5,1,7,92,6.9,0,77.3,0,537.86,0,0,1.94591,6.287598,0,0,0,0,0,0,77.3,9.154317,1.94591,4.6289,1
-11,5,0,1,1,531590,0,9454.173,33.11704,1,12,1,4.206984,9.402608,0,0,0,13.60959,0,0,0,1,0,7,56.4,10.3,0,72.7,0,537.86,0,0,1.94591,6.287598,0,0,0,0,1,0,72.7,9.154317,1.94591,2.610775,1
-11,5,0,1,2,531590,0,9454.173,34.11704,1,12,1,103.2301,14.22743,0,0,0,117.4575,0,0,0,7,0,7,56.4,10.3,0,72.7,0,537.86,0,0,1.94591,6.287598,0,0,0,0,1,0,72.7,9.154317,1.94591,4.766077,1
-11,5,0,1,3,531590,0,9454.173,35.11704,1,12,1,98.79932,64.06518,4.288165,0,2347.856,2515.009,1,0,0,9,1,7,56.4,10.3,0,72.7,0,537.86,0,0,1.94591,6.287598,0,0,0,0,1,0,72.7,9.154317,1.94591,7.830031,1
-11,5,0,1,1,531591,0,9454.173,9.004791,0,12,1,40.28187,5.212453,0,0,0,45.49432,0,0,0,2,0,7,88.3,10.57626,0,92.6,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,92.6,9.154317,1.94591,3.817587,1
-11,5,0,1,2,531591,0,9454.173,10.00479,0,12,1,67.62373,8.783528,0,0,0,76.40726,0,0,0,3,0,7,88.3,10.57626,0,92.6,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,92.6,9.154317,1.94591,4.336078,1
-11,5,0,1,3,531591,0,9454.173,11.00479,0,12,1,41.50943,6.861063,0,0,0,48.3705,0,0,0,3,0,7,88.3,10.57626,0,92.6,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,92.6,9.154317,1.94591,3.87889,1
-11,5,0,1,1,531592,0,9454.173,14.32717,0,12,1,110.223,5.363904,284.3921,0,2814.893,3214.872,1,0,0,6,0,7,92,3.4,0,85.2,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,85.2,9.154317,1.94591,8.075542,1
-11,5,0,1,2,531592,0,9454.173,15.32717,0,12,1,220.2493,1.794484,9.369097,0,1444.061,1675.474,1,0,0,6,28,7,92,3.4,0,85.2,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,85.2,9.154317,1.94591,7.423851,1
-11,5,0,1,3,531592,0,9454.173,16.32717,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,92,3.4,0,85.2,0,537.86,1,0,1.94591,6.287598,0,0,0,0,0,0,85.2,9.154317,1.94591,,0
-11,5,0,1,1,531596,1,6674.895,2.491444,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,96.3,0,0,1,1,1.098612,0,0,0,0,0,0,0,96.3,8.806258,1.098612,,0
-11,5,0,1,2,531596,1,6674.895,3.491444,1,9,1,10.68702,1.48855,0,0,0,12.17557,0,0,0,1,0,3,77.40034,10.57626,0,96.3,0,0,1,1,1.098612,0,0,0,0,0,0,0,96.3,8.806258,1.098612,2.499432,1
-11,5,0,1,3,531596,1,6674.895,4.491444,1,9,1,67.59582,12.14286,0,0,0,79.73868,0,0,0,3,0,4,77.40034,10.57626,0,96.3,0,0,1,1,1.386294,0,0,0,0,0,0,0,96.3,8.806258,1.386294,4.378755,1
-11,5,0,1,1,531597,0,12254.48,32.75565,0,14,1,6.252605,0,0,0,0,6.252605,0,0,0,1,0,2,88.3,6.9,0,95.5,0,624.78,0,0,.6931472,6.437399,0,0,0,0,0,0,95.5,9.413729,.6931472,1.832998,1
-14,5,95,0,1,531605,0,11026.98,43.30185,0,20,1,17.19902,0,0,0,0,17.19902,0,0,0,2,0,2,86.7,13.8,0,87.5,850,850,0,0,.6931472,6.745236,0,4.564348,6.79653,0,0,0,87.5,9.308191,.6931472,2.844852,1
-14,5,95,0,2,531605,0,11026.98,44.30185,0,20,1,11.39471,0,15.49681,0,0,26.89152,0,0,0,1,0,2,86.7,13.8,0,87.5,850,850,0,0,.6931472,6.745236,0,4.564348,6.79653,0,0,0,87.5,9.308191,.6931472,3.291811,1
-11,5,0,1,1,531619,0,2306.708,21.54415,1,9,1,15.73798,1.38239,0,0,0,17.12037,0,0,0,1,0,1,59.6,3.4,0,59.1,0,0,0,0,0,0,0,0,0,0,0,0,59.1,7.74401,0,2.840269,1
-11,5,0,1,2,531619,0,2306.708,22.54415,1,9,1,11.45038,5.568702,0,0,0,17.01908,0,0,0,1,0,1,59.6,3.4,0,59.1,0,0,0,0,0,0,0,0,0,0,0,0,59.1,7.74401,0,2.834335,1
-11,5,0,1,3,531619,0,2306.708,23.54415,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,59.6,3.4,0,59.1,0,0,0,0,0,0,0,0,0,0,0,0,59.1,7.74401,0,,0
-11,5,0,0,1,531634,1,5341.014,2.116359,1,13,1,7.993269,0,0,0,0,7.993269,0,0,0,0,0,4,77.40034,10.57626,0,59.3,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,59.3,8.583358,1.386294,2.0786,1
-11,5,0,0,2,531634,1,5341.014,3.116359,1,13,1,33.62297,1.983377,0,0,0,35.60635,0,0,0,2,0,4,77.40034,10.57626,0,59.3,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,59.3,8.583358,1.386294,3.572524,1
-11,5,0,0,3,531634,1,5341.014,4.116359,1,13,1,34.30532,0,0,0,0,34.30532,0,0,0,1,1,4,77.40034,10.57626,0,59.3,0,592.32,1,1,1.386294,6.384047,0,0,0,0,0,0,59.3,8.583358,1.386294,3.5353,1
-11,5,0,0,2,531637,0,6637.537,.6605065,0,9,1,70.2157,24.13492,0,0,0,94.35062,0,0,0,10,0,4,77.40034,10.57626,.1442925,,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,70.68995,8.800647,1.386294,4.547018,1
-11,5,0,0,3,531637,0,6637.537,1.660506,0,9,1,59.31847,2.393774,0,0,447.8334,509.5457,1,0,0,7,0,4,77.40034,10.57626,.1442925,,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,70.68995,8.800647,1.386294,6.23352,1
-11,5,0,0,4,531637,0,6637.537,2.660506,0,9,1,13.22252,1.016245,0,0,0,14.23876,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,70.68995,8.800647,1.386294,2.655968,1
-11,5,0,0,5,531637,0,6637.537,3.660506,0,9,1,9.605489,1.588336,0,0,0,11.19382,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,357.64,1,0,1.386294,5.879527,0,0,0,0,0,0,70.68995,8.800647,1.386294,2.415362,1
-19,5,25,0,1,531648,0,12647.21,34.38467,0,16,1,37.51563,0,0,0,0,37.51563,0,0,0,4,0,2,80.3,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,3.624758,1
-19,5,25,0,2,531648,0,12647.21,35.38467,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,80.3,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,,0
-19,5,25,0,3,531648,0,12647.21,36.38467,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,80.3,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,79.5,9.445271,.6931472,,0
-14,5,95,0,1,531650,1,3421.403,2.001369,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,55.6,142.55,142.55,1,1,1.098612,4.959693,0,4.564348,5.010986,0,0,0,55.6,8.138098,1.098612,,0
-14,5,95,0,2,531650,1,3421.403,3.001369,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,55.6,142.55,142.55,1,1,1.098612,4.959693,0,4.564348,5.010986,0,0,0,55.6,8.138098,1.098612,,0
-14,5,95,0,3,531650,1,3421.403,4.001369,1,12,1,31.35888,0,0,0,0,31.35888,0,0,0,0,0,3,77.40034,10.57626,0,55.6,142.55,142.55,1,1,1.098612,4.959693,0,4.564348,5.010986,0,0,0,55.6,8.138098,1.098612,3.445498,1
-11,5,0,0,1,531653,1,3942.652,1.94935,0,13,1,30.41259,0,0,0,0,30.41259,0,0,0,4,0,4,77.40034,10.57626,0,85.2,0,0,1,0,1.386294,0,0,0,0,0,0,0,85.2,8.279862,1.386294,3.414857,1
-11,5,0,0,2,531653,1,3942.652,2.94935,0,13,1,0,1.133588,0,0,0,1.133588,0,0,0,0,0,5,77.40034,10.57626,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,8.279862,1.609438,.1253877,1
-11,5,0,0,3,531653,1,3942.652,3.94935,0,13,1,10.45296,0,0,0,0,10.45296,0,0,0,0,1,6,77.40034,10.57626,0,85.2,0,0,1,0,1.791759,0,0,0,0,0,0,0,85.2,8.279862,1.791759,2.346885,1
-13,5,0,0,1,531654,.4758801,13789.04,34.83915,1,10.96978,1,45.01472,36.5671,0,0,0,81.58183,0,0,0,3,0,3,77.1,6.9,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,67,9.531702,1.098612,4.401607,1
-13,5,0,0,2,531654,.4758801,13789.04,35.83915,1,10.96978,1,60.44579,7.370608,0,0,626.7473,694.5637,1,0,0,5,0,3,77.1,6.9,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,67,9.531702,1.098612,6.543284,1
-13,5,0,0,3,531654,.4758801,13789.04,36.83915,1,10.96978,1,529.6569,32.53516,0,0,579.0737,1141.266,1,0,0,8,0,4,77.1,6.9,1,67,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,67,9.531702,1.386294,7.039893,1
-13,5,0,0,2,531663,0,199.4135,.6386037,0,12,1,98.90611,20.07748,0,0,0,118.9836,0,0,0,11,0,2,77.40034,10.57626,.1442925,,150,150,1,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,70.68995,5.300383,.6931472,4.778986,1
-13,5,0,0,3,531663,0,199.4135,1.638604,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,150,150,1,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,70.68995,5.300383,.6931472,,0
-13,5,0,0,4,531663,0,199.4135,2.638604,0,12,1,5.626407,0,0,0,0,5.626407,0,0,0,1,0,2,77.40034,10.57626,.1442925,,150,150,1,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,70.68995,5.300383,.6931472,1.727471,1
-13,5,0,0,5,531663,0,199.4135,3.638604,0,12,1,16.32273,0,0,0,0,16.32273,0,0,0,0,0,2,77.40034,10.57626,.1442925,,150,150,1,0,.6931472,5.010635,1,4.564348,5.061929,0,0,0,70.68995,5.300383,.6931472,2.792559,1
-14,5,95,0,1,531667,0,6674.895,1.804244,0,8,1,18.83199,0,0,0,0,18.83199,0,0,0,1,0,3,77.40034,10.57626,.1442925,,313.5,396.24,1,0,1.098612,5.98202,0,4.564348,5.799093,0,0,0,70.68995,8.806258,1.098612,2.935557,1
-14,5,95,0,2,531667,0,6674.895,2.804244,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,313.5,396.24,1,0,1.098612,5.98202,0,4.564348,5.799093,0,0,0,70.68995,8.806258,1.098612,,0
-14,5,95,0,3,531667,0,6674.895,3.804244,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,313.5,396.24,1,0,1.098612,5.98202,0,4.564348,5.799093,0,0,0,70.68995,8.806258,1.098612,,0
-16,5,95,0,1,531673,0,7100.871,1.568789,0,15,1,62.26336,0,0,0,0,62.26336,0,0,0,5,0,3,77.40034,10.57626,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.868114,1.098612,4.131373,1
-16,5,95,0,2,531673,0,7100.871,2.568789,0,15,1,85.37968,24.62788,0,0,258.7835,368.7911,1,0,0,12,0,3,77.40034,10.57626,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.868114,1.098612,5.91023,1
-16,5,95,0,3,531673,0,7100.871,3.568789,0,15,1,238.422,5.516295,0,0,0,243.9382,0,0,0,3,17,3,77.40034,10.57626,0,92.6,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,92.6,8.868114,1.098612,5.496915,1
-11,5,0,0,2,531682,0,14946.04,.4469541,0,16,1,86.27811,27.51262,0,0,0,113.7907,0,0,0,11,0,4,77.40034,10.57626,.1442925,,0,469.68,1,0,1.386294,6.152051,0,0,0,0,0,0,70.68995,9.612268,1.386294,4.734361,1
-11,5,0,0,3,531682,0,14946.04,1.446954,0,16,1,128.7337,29.84855,0,0,0,158.5822,0,0,0,12,0,4,77.40034,10.57626,.1442925,,0,469.68,1,0,1.386294,6.152051,0,0,0,0,0,0,70.68995,9.612268,1.386294,5.066273,1
-11,5,0,0,4,531682,0,14946.04,2.446954,0,16,1,214.2048,9.217982,0,0,0,223.4227,0,0,0,5,14,4,77.40034,10.57626,.1442925,,0,469.68,1,0,1.386294,6.152051,0,0,0,0,0,0,70.68995,9.612268,1.386294,5.409066,1
-11,5,0,0,5,531682,0,14946.04,3.446954,0,16,1,393.825,11.01887,0,0,0,404.8439,0,0,0,4,34,4,77.40034,10.57626,.1442925,,0,469.68,1,0,1.386294,6.152051,0,0,0,0,0,0,70.68995,9.612268,1.386294,6.003501,1
-11,5,0,0,2,531683,0,3374.194,.3292266,0,12,1,242.1392,62.98294,11.503,0,0,316.6252,0,0,0,28,0,3,77.40034,10.57626,.1442925,,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.68995,8.124207,1.098612,5.757719,1
-11,5,0,0,3,531683,0,3374.194,1.329227,0,12,1,78.29031,40.28354,16.15319,0,0,134.727,0,0,0,11,0,3,77.40034,10.57626,.1442925,,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.68995,8.124207,1.098612,4.903251,1
-11,5,0,0,4,531683,0,3374.194,2.329226,0,12,1,39.10402,12.25513,13.42065,0,0,64.7798,0,0,0,5,0,3,77.40034,10.57626,.1442925,,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.68995,8.124207,1.098612,4.170994,1
-11,5,0,0,5,531683,0,3374.194,3.329226,0,12,1,9.688581,0,0,0,0,9.688581,0,0,0,1,0,3,77.40034,10.57626,.1442925,,0,0,1,0,1.098612,0,0,0,0,0,0,0,70.68995,8.124207,1.098612,2.270948,1
-5,5,25,0,2,531688,1,0,.8083504,0,6,1,1.823154,0,0,0,0,1.823154,0,0,0,0,1,9,77.40034,10.57626,.1442925,,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,70.68995,0,2.197225,.600568,1
-5,5,25,0,3,531688,1,0,1.80835,0,6,1,9.587328,0,0,0,0,9.587328,0,0,0,1,0,9,77.40034,10.57626,.1442925,,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,70.68995,0,2.197225,2.260442,1
-5,5,25,0,4,531688,1,0,2.808351,0,6,1,11.25281,0,0,0,0,11.25281,0,0,0,0,0,9,77.40034,10.57626,.1442925,,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,70.68995,0,2.197225,2.420618,1
-5,5,25,0,5,531688,1,0,3.808351,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,333.75,333.75,1,0,2.197225,5.810392,0,3.258096,7.196687,0,0,0,70.68995,0,2.197225,,0
-16,5,95,0,2,531689,0,10012.9,.2498289,0,12,1,39.18856,0,0,0,0,39.18856,0,0,0,5,0,2,77.40034,10.57626,.1442925,,1000,1000,1,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.21173,.6931472,3.668385,1
-16,5,95,0,3,531689,0,10012.9,1.249829,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,1000,1000,1,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.21173,.6931472,,0
-16,5,95,0,4,531689,0,10012.9,2.249829,0,12,1,5.31511,0,0,0,0,5.31511,0,0,0,1,0,2,77.40034,10.57626,.1442925,,1000,1000,1,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.21173,.6931472,1.670554,1
-16,5,95,0,5,531689,0,10012.9,3.249829,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,1000,1000,1,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.21173,.6931472,,0
-13,5,0,0,1,531691,.4758801,13789.04,1.253936,1,10.96978,1,29.02819,16.13378,0,0,0,45.16197,0,0,0,5,0,3,77.40034,10.57626,0,88.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.531702,1.098612,3.810255,1
-13,5,0,0,2,531691,.4758801,13789.04,2.253936,1,10.96978,1,15.86702,10.19267,0,0,0,26.05969,0,0,0,3,0,3,77.40034,10.57626,0,88.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.531702,1.098612,3.26039,1
-13,5,0,0,3,531691,.4758801,13789.04,3.253936,1,10.96978,1,20.24014,16.07547,0,0,0,36.31561,0,0,0,4,0,4,77.40034,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.531702,1.386294,3.592248,1
-13,5,0,0,2,531692,1,3130.205,.2799453,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.609438,,0
-13,5,0,0,3,531692,1,3130.205,1.279945,1,10,1,6.310475,2.52419,0,0,0,8.834665,0,0,0,0,1,5,77.40034,10.57626,.1442925,,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.609438,2.178683,1
-13,5,0,0,4,531692,1,3130.205,2.279945,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,0,1,1,1.609438,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.609438,,0
-13,5,0,0,5,531692,1,3130.205,3.279945,1,10,1,12.34991,13.94511,0,0,0,26.29502,0,0,0,2,0,7,77.40034,10.57626,.1442925,,450,0,1,1,1.94591,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.94591,3.26938,1
-13,5,0,0,1,531695,0,9569.381,1.399042,0,12,1,105.5953,17.45898,0,0,0,123.0543,0,0,0,15,0,4,77.40034,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.166429,1.386294,4.812625,1
-13,5,0,0,2,531695,0,9569.381,2.399042,0,12,1,13.97809,6.845486,0,0,0,20.82357,0,0,0,2,0,4,77.40034,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.166429,1.386294,3.036086,1
-13,5,0,0,3,531695,0,9569.381,3.399042,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,48.1,9.166429,1.386294,,0
-11,5,0,0,1,531696,0,9155.146,1.180014,0,16,1,49.09014,31.81972,0,0,0,80.90986,0,0,0,8,0,3,77.40034,10.57626,0,88.9,0,915.72,1,0,1.098612,6.819711,0,0,0,0,0,0,88.9,9.122181,1.098612,4.393336,1
-11,5,0,0,2,531696,0,9155.146,2.180014,0,16,1,107.2513,32.61959,11.8451,0,0,151.716,0,0,0,11,0,4,77.40034,10.57626,0,88.9,0,915.72,1,0,1.386294,6.819711,0,0,0,0,0,0,88.9,9.122181,1.386294,5.02201,1
-11,5,0,0,3,531696,0,9155.146,3.180014,0,16,1,57.09343,10.9135,0,0,0,68.00692,0,0,0,9,0,4,77.40034,10.57626,0,88.9,0,915.72,1,0,1.386294,6.819711,0,0,0,0,0,0,88.9,9.122181,1.386294,4.219609,1
-16,5,95,0,1,531698,1,8781.362,2.009583,0,14,1,13.61123,2.177797,0,0,0,15.78903,0,0,0,2,0,10,77.40034,10.57626,0,88.9,1000,1000,1,0,2.302585,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.302585,2.759315,1
-16,5,95,0,2,531698,1,8781.362,3.009583,0,14,1,22.51908,0,0,0,0,22.51908,0,0,0,0,0,12,77.40034,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.484907,3.114363,1
-16,5,95,0,3,531698,1,8781.362,4.009583,0,14,1,6.271777,0,0,0,0,6.271777,0,0,0,1,0,12,77.40034,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.484907,1.83606,1
-16,5,95,0,1,531707,1,5160.266,21.90007,0,12,1,5.353364,0,0,0,0,5.353364,0,0,0,0,1,4,73.4,13.8,0,71.6,315.15,315.15,0,0,1.386294,5.753049,0,4.564348,5.804342,0,0,0,71.6,8.548937,1.386294,1.677725,1
-16,5,95,0,2,531707,1,5160.266,22.90007,0,12,1,9.491268,0,24.29765,0,0,33.78891,0,0,0,0,1,4,73.4,13.8,0,71.6,315.15,315.15,0,0,1.386294,5.753049,0,4.564348,5.804342,0,0,0,71.6,8.548937,1.386294,3.520133,1
-16,5,95,0,3,531707,1,5160.266,23.90007,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,13.8,0,71.6,315.15,315.15,0,0,1.609438,5.753049,0,4.564348,5.804342,0,0,0,71.6,8.548937,1.609438,,0
-11,5,0,0,1,531715,1,769.5853,4.873374,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,,0
-11,5,0,0,2,531715,1,769.5853,5.873374,1,12,1,6.870229,0,0,0,0,6.870229,0,0,0,1,0,6,77.40034,10.57626,0,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,1.927197,1
-11,5,0,0,3,531715,1,769.5853,6.873374,1,12,1,20.90592,0,0,0,0,20.90592,0,0,0,1,0,6,77.40034,10.57626,0,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,3.040033,1
-11,5,0,0,1,531716,1,769.5853,5.79603,1,12,1,0,0,22.33943,0,0,22.33943,0,0,0,0,0,6,68.3,10.57626,.1442925,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,3.106353,1
-11,5,0,0,2,531716,1,769.5853,6.79603,1,12,1,60.66794,3.664122,11.9084,0,0,76.24046,0,0,0,6,0,6,68.3,10.57626,.1442925,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,4.333892,1
-11,5,0,0,3,531716,1,769.5853,7.79603,1,12,1,0,4.463415,18.11847,0,0,22.58188,0,0,0,0,0,6,68.3,10.57626,.1442925,74.1,0,0,1,1,1.791759,0,0,0,0,0,0,0,74.1,6.647151,1.791759,3.117148,1
-16,5,95,0,1,531718,1,8781.362,.9445585,0,14,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,0,88.9,1000,1000,1,0,2.302585,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.302585,,0
-16,5,95,0,2,531718,1,8781.362,1.944559,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.484907,,0
-16,5,95,0,3,531718,1,8781.362,2.944559,0,14,1,10.45296,0,0,0,0,10.45296,0,0,0,0,0,12,77.40034,10.57626,0,88.9,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,88.9,9.080501,2.484907,2.346885,1
-13,5,0,0,1,531723,.4758801,3640.553,19.70705,1,9,1,77.86712,3.046974,0,0,0,80.91409,0,0,0,6,0,2,89.4,10.3,0,79.5,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,0,0,0,79.5,8.200166,.6931472,4.393388,1
-13,5,0,0,2,531723,.4758801,3640.553,20.70705,1,9,1,0,3.048595,0,0,0,3.048595,0,0,0,0,0,2,89.4,10.3,0,79.5,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,0,0,0,79.5,8.200166,.6931472,1.114681,1
-13,5,0,0,3,531723,.4758801,3640.553,21.70705,1,9,1,63.14879,21.59516,0,0,0,84.74394,0,0,0,3,0,2,89.4,10.3,0,79.5,300,375.44,0,0,.6931472,5.928099,1,4.564348,5.755076,0,0,0,79.5,8.200166,.6931472,4.439634,1
-11,5,0,0,1,531728,.4758801,5534.05,1.979466,1,10.96978,1,5.04838,7.618847,0,0,0,12.66723,0,0,0,1,0,2,77.40034,10.57626,0,77.8,0,687.18,1,1,.6931472,6.532596,0,0,0,0,0,0,77.8,8.618855,.6931472,2.539018,1
-11,5,0,0,2,531728,.4758801,5534.05,2.979466,1,10.96978,1,20.02267,2.976955,0,0,0,22.99962,0,0,0,2,0,2,77.40034,10.57626,0,77.8,0,687.18,1,1,.6931472,6.532596,0,0,0,0,0,0,77.8,8.618855,.6931472,3.135478,1
-11,5,0,0,3,531728,.4758801,5534.05,3.979466,1,10.96978,1,12.69297,0,0,0,0,12.69297,0,0,0,1,0,2,77.40034,10.57626,0,77.8,0,687.18,1,1,.6931472,6.532596,0,0,0,0,0,0,77.8,8.618855,.6931472,2.541048,1
-11,5,0,0,1,531729,.4758801,5534.05,33.75222,1,10.96978,1,40.38704,0,28.18679,0,0,68.57383,0,0,0,2,1,2,80.9,17.2,0,79.5,0,687.18,0,0,.6931472,6.532596,0,0,0,0,0,0,79.5,8.618855,.6931472,4.227911,1
-11,5,0,0,2,531729,.4758801,5534.05,34.75222,1,10.96978,1,134.303,19.31621,18.13374,0,0,171.7529,0,0,0,10,1,2,80.9,17.2,0,79.5,0,687.18,0,0,.6931472,6.532596,0,0,0,0,0,0,79.5,8.618855,.6931472,5.146057,1
-11,5,0,0,3,531729,.4758801,5534.05,35.75222,1,10.96978,1,111.4923,5.571184,27.1012,0,0,144.1647,0,0,0,7,1,2,80.9,17.2,0,79.5,0,687.18,0,0,.6931472,6.532596,0,0,0,0,0,0,79.5,8.618855,.6931472,4.970956,1
-11,5,0,0,3,531731,1,602.3461,.9568788,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.68995,6.402491,1.791759,,0
-11,5,0,0,4,531731,1,602.3461,1.956879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.68995,6.402491,1.791759,,0
-11,5,0,0,5,531731,1,602.3461,2.956879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.68995,6.402491,1.791759,,0
-14,5,95,0,1,531752,1,3455.709,2.206708,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,325,325,1,0,1.386294,5.783825,0,4.564348,5.835118,0,0,0,88.9,8.148072,1.386294,,0
-14,5,95,0,2,531752,1,3455.709,3.206708,0,14,1,13.66743,0,0,0,0,13.66743,0,0,0,2,0,4,77.40034,10.57626,0,88.9,325,325,1,0,1.386294,5.783825,0,4.564348,5.835118,0,0,0,88.9,8.148072,1.386294,2.615015,1
-14,5,95,0,3,531752,1,3455.709,4.206708,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,88.9,325,325,1,0,1.609438,5.783825,0,4.564348,5.835118,0,0,0,88.9,8.148072,1.609438,,0
-13,5,0,0,1,531789,0,17808.5,.6926762,0,12,1,36.15483,5.23607,0,0,0,41.3909,0,0,0,4,0,5,77.40034,10.57626,0,100,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,100,9.787487,1.609438,3.723061,1
-13,5,0,0,2,531789,0,17808.5,1.692676,0,12,1,7.633588,0,0,0,0,7.633588,0,0,0,1,0,5,77.40034,10.57626,0,100,450,864,1,0,1.609438,6.761573,1,4.564348,6.160541,0,0,0,100,9.787487,1.609438,2.032558,1
-19,5,25,0,1,531794,1,7578.085,.9774128,0,8,1,111.2992,1.671604,0,0,0,112.9708,0,0,0,2,0,6,77.40034,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.933147,1.791759,4.727129,1
-19,5,25,0,2,531794,1,7578.085,1.977413,0,8,1,27.7145,6.605923,0,0,0,34.32043,0,0,0,5,0,6,77.40034,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.933147,1.791759,3.535741,1
-19,5,25,0,3,531794,1,7578.085,2.977413,0,8,1,21.6263,1.740484,0,0,0,23.36678,0,0,0,4,0,6,77.40034,10.57626,0,88.9,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.933147,1.791759,3.151315,1
-5,5,25,0,1,531808,1,5774.706,.6570842,1,12,1,0,1.726619,0,0,0,1.726619,0,0,0,0,0,5,77.40034,10.57626,0,92.6,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,0,0,0,92.6,8.661416,1.609438,.5461649,1
-5,5,25,0,2,531808,1,5774.706,1.657084,1,12,1,13.51557,0,0,0,0,13.51557,0,0,0,0,0,5,77.40034,10.57626,0,92.6,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,0,0,0,92.6,8.661416,1.609438,2.603842,1
-5,5,25,0,3,531808,1,5774.706,2.657084,1,12,1,37.71626,0,0,0,0,37.71626,0,0,0,0,0,5,77.40034,10.57626,0,92.6,80.25,646.36,1,1,1.609438,6.471356,0,3.258096,5.771441,0,0,0,92.6,8.661416,1.609438,3.630091,1
-10,5,50,0,3,531809,0,10283.87,.5626283,0,12,1,74.04291,7.021456,0,0,0,81.06437,0,0,0,8,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,70.68995,9.238429,1.098612,4.395244,1
-10,5,50,0,4,531809,0,10283.87,1.562628,0,12,1,31.35625,17.44239,0,0,0,48.79864,0,0,0,4,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,70.68995,9.238429,1.098612,3.887702,1
-10,5,50,0,5,531809,0,10283.87,2.562628,0,12,1,17.49571,0,0,0,0,17.49571,0,0,0,2,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,70.68995,9.238429,1.098612,2.861956,1
-13,5,0,0,3,531816,0,9755.425,.3052704,0,14,1,75.32797,17.15616,0,0,0,92.48413,0,0,0,10,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.185681,1.386294,4.527037,1
-13,5,0,0,4,531816,0,9755.425,1.30527,0,14,1,24.29765,7.437357,0,0,0,31.735,0,0,0,3,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.185681,1.386294,3.45742,1
-13,5,0,0,5,531816,0,9755.425,2.30527,0,14,1,20.76125,0,0,0,0,20.76125,0,0,0,3,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.185681,1.386294,3.033088,1
-6,5,25,0,1,531821,1,1484.895,5.91102,1,6,1,0,0,0,0,0,0,0,0,0,0,0,2,80,10.57626,.1442925,88.9,190.4,0,1,1,.6931472,0,0,3.258096,6.635421,0,0,0,88.9,7.303772,.6931472,,0
-6,5,25,0,2,531821,1,1484.895,6.91102,1,6,1,0,0,0,0,0,0,0,0,0,0,0,2,80,10.57626,.1442925,88.9,190.4,0,1,1,.6931472,0,0,3.258096,6.635421,0,0,0,88.9,7.303772,.6931472,,0
-11,5,0,0,1,531822,1,3942.652,15.3128,1,13,1,27.00978,0,27.64781,0,0,54.65759,0,0,0,1,1,4,51.6,10.3,0,60,0,0,1,1,1.386294,0,0,0,0,0,0,0,60,8.279862,1.386294,4.001088,1
-11,5,0,0,2,531822,1,3942.652,16.3128,1,13,1,18.12977,0,0,0,0,18.12977,0,0,0,2,0,5,51.6,10.3,0,60,0,0,1,1,1.609438,0,0,0,0,0,0,0,60,8.279862,1.609438,2.897555,1
-11,5,0,0,3,531822,1,3942.652,17.3128,1,13,1,18.43902,0,23.91638,0,0,42.3554,0,0,0,2,1,6,51.6,10.3,0,60,0,0,1,1,1.791759,0,0,0,0,0,0,0,60,8.279862,1.791759,3.746096,1
-13,5,0,0,1,531836,0,4416.794,.2080767,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,81.5,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.393395,1.386294,,0
-13,5,0,0,2,531836,0,4416.794,1.208077,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,81.5,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.393395,1.386294,,0
-13,5,0,0,3,531836,0,4416.794,2.208077,1,11,1,42.56055,0,0,0,0,42.56055,0,0,0,2,0,4,77.40034,10.57626,0,81.5,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,81.5,8.393395,1.386294,3.750928,1
-13,5,0,0,1,531841,0,5562.212,.2847365,1,13,1,9.310199,5.83157,.6347863,0,0,15.77656,0,0,0,4,0,4,77.40034,10.57626,0,96.3,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,96.3,8.623931,1.386294,2.758525,1
-13,5,0,0,2,531841,0,5562.212,1.284737,1,13,1,5.694761,0,0,0,0,5.694761,0,0,0,1,0,4,77.40034,10.57626,0,96.3,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,96.3,8.623931,1.386294,1.739547,1
-13,5,0,0,3,531841,0,5562.212,2.284736,1,13,1,35.58131,0,0,0,0,35.58131,0,0,0,4,0,4,77.40034,10.57626,0,96.3,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,96.3,8.623931,1.386294,3.57182,1
-11,5,0,0,1,531844,0,11392.73,1.185489,0,12,1,52.89886,30.75751,0,0,0,83.65637,0,0,0,8,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,0,0,0,63,9.340818,1.386294,4.426718,1
-11,5,0,0,2,531844,0,11392.73,2.185489,0,12,1,51.6325,17.97646,0,0,0,69.60896,0,0,0,7,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,0,0,0,63,9.340818,1.386294,4.242893,1
-11,5,0,0,3,531844,0,11392.73,3.185489,0,12,1,44.29066,20.11419,0,0,0,64.40485,0,0,0,8,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,0,0,0,63,9.340818,1.386294,4.165189,1
-13,5,0,0,3,531853,1,6326.1,.1382615,0,11,1,69.4033,10.80829,0,0,0,80.21159,0,0,0,11,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.752597,1.386294,4.384668,1
-13,5,0,0,4,531853,1,6326.1,1.138261,0,11,1,61.88307,0,0,0,134.0167,195.8998,1,0,0,9,0,3,77.40034,10.57626,.1442925,,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.752597,1.098612,5.277603,1
-13,5,0,0,5,531853,1,6326.1,2.138262,0,11,1,42.90657,0,0,0,0,42.90657,0,0,0,2,0,3,77.40034,10.57626,.1442925,,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.752597,1.098612,3.759025,1
-11,5,0,0,1,531854,0,6674.895,.2190281,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,91,1,0,1.386294,4.510859,0,0,0,0,0,0,70.68995,8.806258,1.386294,,0
-11,5,0,0,2,531854,0,6674.895,1.219028,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,91,1,0,1.386294,4.510859,0,0,0,0,0,0,70.68995,8.806258,1.386294,,0
-11,5,0,0,1,531860,1,6674.895,59.06092,0,6,1,42.06984,4.122844,0,0,0,46.19268,0,0,0,1,0,4,78.2,0,1,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,8.806258,1.386294,3.832821,1
-11,5,0,0,2,531860,1,6674.895,60.06092,0,6,1,0,0,0,0,1106.158,1106.158,1,0,0,0,0,4,78.2,0,1,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,8.806258,1.386294,7.008648,1
-11,5,0,0,3,531860,1,6674.895,61.06092,0,6,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,0,1,68.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,68.2,8.806258,1.386294,,0
-13,5,0,0,1,531866,1,18474.65,.2765229,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,1,66.7,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.824209,2.079442,,0
-13,5,0,0,2,531866,1,18474.65,1.276523,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,1,66.7,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.824209,2.079442,,0
-13,5,0,0,3,531866,1,18474.65,2.276523,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,1,66.7,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.824209,2.079442,,0
-11,5,0,0,1,531881,1,6674.895,.2628337,0,14,1,33.65587,2.368532,0,0,0,36.0244,0,0,0,4,0,4,77.40034,10.57626,0,100,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,100,8.806258,1.386294,3.584197,1
-11,5,0,0,2,531881,1,6674.895,1.262834,0,14,1,24.5561,3.796751,0,0,0,28.35285,0,0,0,3,0,4,77.40034,10.57626,0,100,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,100,8.806258,1.386294,3.344728,1
-11,5,0,0,3,531881,1,6674.895,2.262834,0,14,1,20.92624,6.569468,0,0,0,27.49571,0,0,0,3,0,4,77.40034,10.57626,0,100,0,18,1,0,1.386294,2.890372,0,0,0,0,0,0,100,8.806258,1.386294,3.31403,1
-13,5,0,0,1,531882,1,1185.868,.238193,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,0,66.7,450,450,1,1,2.197225,6.109248,1,4.564348,6.160541,0,0,0,66.7,7.079073,2.197225,,0
-11,5,0,0,2,531891,1,3942.652,.9863107,0,13,1,22.13741,0,0,0,0,22.13741,0,0,0,3,0,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,8.279862,1.609438,3.097269,1
-11,5,0,0,3,531891,1,3942.652,1.986311,0,13,1,8.710801,1.515679,0,0,0,10.22648,0,0,0,1,0,6,77.40034,10.57626,.1442925,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,8.279862,1.791759,2.32498,1
-11,5,0,0,1,531894,0,8507.937,24.52019,0,9,1,0,.8753647,0,0,0,.8753647,0,0,0,0,0,5,91.5,0,0,84.1,0,1189.12,0,0,1.609438,7.080969,0,0,0,0,0,0,84.1,9.048872,1.609438,-.1331147,1
-11,5,0,0,2,531894,0,8507.937,25.52019,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,91.5,0,0,84.1,0,1189.12,0,0,1.609438,7.080969,0,0,0,0,0,0,84.1,9.048872,1.609438,,0
-11,5,0,0,3,531894,0,8507.937,26.52019,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,91.5,0,0,84.1,0,1189.12,0,0,1.609438,7.080969,0,0,0,0,0,0,84.1,9.048872,1.609438,,0
-11,5,0,0,4,531902,1,0,.7905544,0,11,1,71.45038,9.103053,0,0,0,80.55344,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,0,1.386294,4.388921,1
-11,5,0,0,5,531902,1,0,1.790554,0,11,1,0,3.466899,0,0,0,3.466899,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,0,1.386294,1.243261,1
-15,5,95,0,1,531923,0,9990.783,.0328542,0,12,1,93.10199,6.40711,0,0,0,99.5091,0,0,0,14,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.209518,1.098612,4.600249,1
-15,5,95,0,2,531923,0,9990.783,1.032854,0,12,1,86.18072,16.46165,1.26044,0,0,103.9028,0,0,0,8,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.209518,1.098612,4.643456,1
-15,5,95,0,3,531923,0,9990.783,2.032854,0,12,1,11.41868,1.626298,0,0,0,13.04498,0,0,0,2,0,3,77.40034,10.57626,.1442925,,1000,1000,1,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.209518,1.098612,2.568404,1
-16,5,95,0,2,531930,1,8781.362,.4414784,1,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,.1442925,,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.080501,2.484907,,0
-16,5,95,0,3,531930,1,8781.362,1.441478,1,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,.1442925,,1000,1000,1,1,2.484907,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.080501,2.484907,,0
-16,5,95,0,2,531931,1,8781.362,.4414784,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,.1442925,,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.080501,2.484907,,0
-16,5,95,0,3,531931,1,8781.362,1.441478,0,14,1,0,0,0,0,0,0,0,0,0,0,0,12,77.40034,10.57626,.1442925,,1000,1000,1,0,2.484907,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.080501,2.484907,,0
-14,5,95,0,2,531946,1,51.71531,.523614,0,8,1,44.41914,0,0,0,0,44.41914,0,0,0,6,0,6,77.40034,10.57626,.1442925,,140.6,140.6,1,0,1.791759,4.945919,0,4.564348,4.997212,0,0,0,70.68995,3.964906,1.791759,3.79367,1
-14,5,95,0,3,531946,1,51.71531,1.523614,0,8,1,6.228374,0,0,0,0,6.228374,0,0,0,1,0,6,77.40034,10.57626,.1442925,,140.6,140.6,1,0,1.791759,4.945919,0,4.564348,4.997212,0,0,0,70.68995,3.964906,1.791759,1.829115,1
-11,5,0,0,2,531956,0,6674.895,.4387406,0,5,1,168.1149,32.38383,0,0,0,200.4987,0,0,0,17,0,5,77.40034,10.57626,.1442925,,0,416,1,0,1.609438,6.030685,0,0,0,0,0,0,70.68995,8.806258,1.609438,5.300807,1
-11,5,0,0,3,531956,0,6674.895,1.438741,0,5,1,81.98971,12.247,0,0,0,94.23671,0,0,0,12,0,6,77.40034,10.57626,.1442925,,0,416,1,0,1.791759,6.030685,0,0,0,0,0,0,70.68995,8.806258,1.791759,4.54581,1
-18,5,25,0,2,531961,0,9861.239,.4934976,1,16,1,5.626407,12.62941,0,0,0,18.25581,0,0,0,1,0,5,77.40034,10.57626,.1442925,,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.68995,9.196468,1.609438,2.904484,1
-18,5,25,0,3,531961,0,9861.239,1.493498,1,16,1,0,22.66576,0,0,0,22.66576,0,0,0,0,0,5,77.40034,10.57626,.1442925,,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.68995,9.196468,1.609438,3.120856,1
-17,5,25,0,2,531962,1,3291.859,.2580424,0,9,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,315,315,1,0,.6931472,5.752573,0,3.258096,7.138867,0,0,0,70.68995,8.099511,.6931472,,0
-17,5,25,0,3,531962,1,3291.859,1.258042,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,315,315,1,0,1.098612,5.752573,0,3.258096,7.138867,0,0,0,70.68995,8.099511,1.098612,,0
-13,5,0,0,2,531966,0,7991.295,.0499658,0,16,1,77.09924,16.5229,0,0,0,93.62214,0,0,0,11,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.986234,1.386294,4.539267,1
-13,5,0,0,2,531967,0,9026.113,.0308008,0,12,1,90.45802,18.25954,0,0,0,108.7176,0,0,0,10,0,7,77.40034,10.57626,.1442925,,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.107988,1.94591,4.688753,1
-13,5,0,0,3,531967,0,9026.113,1.030801,0,12,1,47.38676,16.18467,0,0,0,63.57143,0,0,0,6,0,7,77.40034,10.57626,.1442925,,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.107988,1.94591,4.152164,1
-11,5,0,0,2,531977,0,9155.146,.0472279,0,16,1,95.29233,16.07821,0,0,0,111.3705,0,0,0,13,0,4,77.40034,10.57626,.1442925,,0,915.72,1,0,1.386294,6.819711,0,0,0,0,0,0,70.68995,9.122181,1.386294,4.712863,1
-11,5,0,0,3,531977,0,9155.146,1.047228,0,16,1,47.75087,22.9654,0,0,0,70.71626,0,0,0,8,0,4,77.40034,10.57626,.1442925,,0,915.72,1,0,1.386294,6.819711,0,0,0,0,0,0,70.68995,9.122181,1.386294,4.258676,1
-16,5,95,0,3,531978,1,8746.032,.9185489,1,12,1,51.21951,1.087108,0,0,0,52.30662,0,0,0,2,0,4,77.40034,10.57626,.1442925,,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.076469,1.386294,3.957123,1
-13,5,0,0,3,531979,.4758801,13789.04,.9760438,1,10.96978,1,49.39966,10.98799,0,0,0,60.38765,0,0,0,7,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.531702,1.386294,4.100785,1
-11,5,0,0,3,531982,1,5952.381,.9267625,1,12,1,20.48443,0,0,0,0,20.48443,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,199.2,1,1,1.386294,5.294309,0,0,0,0,0,0,70.68995,8.691714,1.386294,3.019665,1
-13,5,0,0,2,531983,1,4133.128,.321013,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.327032,1.386294,,0
-13,5,0,0,3,531983,1,4133.128,1.321013,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.327032,1.386294,,0
-14,5,95,0,4,531984,0,11896.19,.2402464,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,753.2,1173,1,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,70.68995,9.384057,1.609438,,0
-14,5,95,0,5,531984,0,11896.19,1.240246,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,753.2,1173,1,0,1.609438,7.06732,0,4.564348,6.675624,0,0,0,70.68995,9.384057,1.609438,,0
-13,5,0,0,5,531989,1,3130.205,.971937,0,10,1,23.49914,7.54717,0,0,0,31.04631,0,0,0,2,0,7,77.40034,10.57626,.1442925,,450,0,1,0,1.94591,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.94591,3.43548,1
-14,5,95,0,3,531990,1,3455.709,.8199863,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,325,325,1,0,1.609438,5.783825,0,4.564348,5.835118,0,0,0,70.68995,8.148072,1.609438,,0
-17,5,25,0,3,531999,0,8637.993,.9869952,1,12,1,43.97835,5.855886,0,0,0,49.83424,0,0,0,6,0,3,77.40034,10.57626,.1442925,,576.75,576.75,1,1,1.098612,6.357409,0,3.258096,7.743703,0,0,0,70.68995,9.064041,1.098612,3.908702,1
-15,5,95,0,2,532003,1,7000.512,.0965092,0,14,1,37.13428,2.363091,0,0,0,39.49738,0,0,0,0,0,4,77.40034,10.57626,.1442925,,473.7,473.7,1,0,1.386294,6.160574,0,4.564348,6.211867,0,0,0,70.68995,8.853882,1.386294,3.676234,1
-15,5,95,0,3,532003,1,7000.512,1.096509,0,14,1,5.074425,0,0,0,0,5.074425,0,0,0,1,0,4,77.40034,10.57626,.1442925,,473.7,473.7,1,0,1.386294,6.160574,0,4.564348,6.211867,0,0,0,70.68995,8.853882,1.386294,1.624213,1
-13,5,0,0,3,532025,1,2422.939,.5626283,1,8,1,10.45296,0,0,0,0,10.45296,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,0,1,1,1.386294,0,1,4.564348,6.160541,0,0,0,70.68995,7.793149,1.386294,2.346885,1
-11,5,0,0,3,532028,1,6674.895,.8227242,1,9,1,109.5819,5.888502,0,0,0,115.4704,0,0,0,5,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.806258,1.386294,4.749014,1
-16,5,95,0,3,532029,1,5160.266,.6584531,1,10,1,78.89273,0,0,0,0,78.89273,0,0,0,6,0,5,77.40034,10.57626,.1442925,,315.15,315.15,1,1,1.609438,5.753049,0,4.564348,5.804342,0,0,0,70.68995,8.548937,1.609438,4.368089,1
-11,5,0,0,3,532035,.4758801,1475.166,.6830938,1,9,1,68.67388,28.38972,0,0,0,97.0636,0,0,0,5,0,2,77.40034,10.57626,.1442925,,0,0,1,1,.6931472,0,0,0,0,0,0,0,70.68995,7.297204,.6931472,4.575366,1
-11,5,0,0,3,532040,1,1426.523,.3080082,1,7,1,85.29412,30.3045,0,0,0,115.5986,0,0,0,6,0,7,77.40034,10.57626,.1442925,,0,0,1,1,1.94591,0,0,0,0,0,0,0,70.68995,7.263696,1.94591,4.750124,1
-11,5,0,0,5,532041,0,10963.64,.3258042,0,10.96978,1,258.8235,31.25952,8.99654,0,0,299.0796,0,0,0,18,0,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,9.30243,1.609438,5.70071,1
-11,5,0,0,3,532042,1,3942.652,.2231348,1,13,1,72.8223,1.602787,0,0,0,74.42509,0,0,0,5,0,6,77.40034,10.57626,.1442925,,0,0,1,1,1.791759,0,0,0,0,0,0,0,70.68995,8.279862,1.791759,4.309793,1
-11,5,0,0,3,532043,1,1998.976,.3874059,0,11,1,138.2353,0,0,0,0,138.2353,0,0,0,8,0,6,77.40034,10.57626,.1442925,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,7.600891,1.791759,4.928957,1
-11,5,0,0,3,532046,0,6674.895,.3189596,1,12,1,75.0865,6.314879,0,0,0,81.40138,0,0,0,11,0,4,77.40034,10.57626,.1442925,,0,496.2,1,1,1.386294,6.206979,0,0,0,0,0,0,70.68995,8.806258,1.386294,4.399392,1
-11,5,0,0,5,532048,0,12511.44,.2902122,1,12,1,35.33448,0,0,0,0,35.33448,0,0,0,5,0,4,77.40034,10.57626,.1442925,,0,299.52,1,1,1.386294,5.702181,0,0,0,0,0,0,70.68995,9.434479,1.386294,3.564859,1
-13,5,0,0,5,532165,1,3130.205,.3285421,1,10,1,55.74614,0,0,0,0,55.74614,0,0,0,6,0,7,77.40034,10.57626,.1442925,,450,0,1,1,1.94591,0,1,4.564348,6.160541,0,0,0,70.68995,8.049173,1.94591,4.020808,1
-15,5,95,0,3,532175,1,6674.895,.7679672,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,772.5,772.5,1,1,1.098612,6.649632,0,4.564348,6.700925,0,0,0,70.68995,8.806258,1.098612,,0
-11,5,0,0,3,532185,0,6674.895,.1300479,0,5,1,79.58833,19.09091,0,0,0,98.67924,0,0,0,11,0,6,77.40034,10.57626,.1442925,,0,416,1,0,1.791759,6.030685,0,0,0,0,0,0,70.68995,8.806258,1.791759,4.591875,1
-13,5,0,0,5,532189,0,10214.08,0,1,17,1,68.67388,19.30988,0,0,0,87.98376,0,0,0,10,0,3,77.40034,10.57626,.1442925,,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.68995,9.23162,1.098612,4.477152,1
-17,5,25,0,3,532206,1,3291.859,.2422998,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,315,315,1,0,1.098612,5.752573,0,3.258096,7.138867,0,0,0,70.68995,8.099511,1.098612,,0
-14,6,95,0,1,625875,1,4305.684,46.2204,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,53.4,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,53.4,8.367924,.6931472,,0
-14,6,95,0,2,625875,1,4305.684,47.2204,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,53.4,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,53.4,8.367924,.6931472,,0
-14,6,95,0,3,625875,1,4305.684,48.2204,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,64.4,10.3,0,53.4,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,53.4,8.367924,.6931472,,0
-14,6,95,0,1,625877,1,4305.684,45.21834,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,6.9,0,69.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,69.3,8.367924,.6931472,,0
-14,6,95,0,2,625877,1,4305.684,46.21834,1,10,1,19.2671,41.63581,13.5323,0,288.6286,363.0638,1,0,0,2,0,2,68.1,6.9,0,69.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,69.3,8.367924,.6931472,5.894578,1
-14,6,95,0,3,625877,1,4305.684,47.21834,1,10,1,22.64151,43.72556,13.82504,0,0,80.19211,0,0,0,2,0,2,68.1,6.9,0,69.3,400,400,0,0,.6931472,5.991465,0,4.564348,6.042758,0,0,0,69.3,8.367924,.6931472,4.384425,1
-14,6,95,1,1,625878,0,10709.17,52.13963,1,12,1,10.57977,24.57469,47.65976,0,0,82.81422,0,0,0,0,1,2,77.1,10.3,0,65.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.278949,.6931472,4.4166,1
-14,6,95,1,2,625878,0,10709.17,53.13963,1,12,1,0,32.42976,0,0,0,32.42976,0,0,0,0,0,2,77.1,10.3,0,65.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.278949,.6931472,3.479077,1
-14,6,95,1,3,625878,0,10709.17,54.13963,1,12,1,17.64706,32.61592,43.25259,0,0,93.51557,0,0,0,1,1,2,77.1,10.3,0,65.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,65.9,9.278949,.6931472,4.538128,1
-14,6,95,1,1,625879,0,10709.17,55.29637,0,8,1,24.96826,3.068134,0,0,0,28.03639,0,0,0,1,1,2,93.1,3.4,0,94.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,94.3,9.278949,.6931472,3.333503,1
-14,6,95,1,2,625879,0,10709.17,56.29637,0,8,1,5.31511,5.516325,0,0,174.2597,185.0911,1,0,0,1,0,2,93.1,3.4,0,94.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,94.3,9.278949,.6931472,5.220848,1
-14,6,95,1,3,625879,0,10709.17,57.29637,0,8,1,15.57093,1.775087,42.43253,0,0,59.77855,0,0,0,1,1,2,93.1,3.4,0,94.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,94.3,9.278949,.6931472,4.090647,1
-17,6,25,1,1,625884,1,3120.84,9.801506,0,12,1,40.20313,3.808718,0,0,0,44.01185,0,0,0,2,0,2,100,10.57626,0,85.2,265,550.72,1,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,85.2,8.046178,.6931472,3.784459,1
-17,6,25,1,2,625884,1,3120.84,10.80151,0,12,1,16.70463,0,0,0,0,16.70463,0,0,0,3,0,2,100,10.57626,0,85.2,265,550.72,1,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,85.2,8.046178,.6931472,2.815686,1
-17,6,25,1,3,625884,1,3120.84,11.80151,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,100,10.57626,0,85.2,265,550.72,1,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,85.2,8.046178,.6931472,,0
-17,6,25,1,1,625885,1,3120.84,31.46612,1,12,1,65.59458,14.17689,0,0,0,79.77148,0,0,0,4,0,2,92,6.9,0,77.3,265,550.72,0,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,77.3,8.046178,.6931472,4.379166,1
-17,6,25,1,2,625885,1,3120.84,32.46612,1,12,1,202.3538,1.765376,0,0,0,204.1192,0,0,0,5,0,2,92,6.9,0,77.3,265,550.72,0,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,77.3,8.046178,.6931472,5.318704,1
-17,6,25,1,3,625885,1,3120.84,33.46612,1,12,1,15.57093,1.99654,32.87197,0,0,50.43945,0,0,0,1,1,2,92,6.9,0,77.3,265,550.72,0,0,.6931472,6.311226,0,3.258096,6.966024,0,0,0,77.3,8.046178,.6931472,3.920774,1
-11,6,0,1,1,625900,0,10571.85,13.25394,0,12,1,27.93017,1.870324,0,0,0,29.8005,0,0,0,1,0,4,85,10.57626,0,81.5,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,81.5,9.266045,1.386294,3.394525,1
-11,6,0,1,2,625900,0,10571.85,14.25394,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,81.5,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,81.5,9.266045,1.386294,,0
-11,6,0,1,3,625900,0,10571.85,15.25394,0,12,1,121.2442,6.771054,.740584,0,0,128.7558,0,0,0,2,0,4,85,10.57626,0,81.5,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,81.5,9.266045,1.386294,4.857918,1
-11,6,0,1,4,625900,0,10571.85,16.25393,0,12,1,82.38421,0,0,0,0,82.38421,0,0,0,3,0,4,85,10.57626,0,81.5,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,81.5,9.266045,1.386294,4.411394,1
-11,6,0,1,5,625900,0,10571.85,17.25393,0,12,1,11.41868,0,0,0,0,11.41868,0,0,0,1,0,4,85,10.57626,0,81.5,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,81.5,9.266045,1.386294,2.435251,1
-11,6,0,1,1,625901,0,10571.85,39.48802,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,87.8,0,0,86.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,0,86.4,9.266045,1.386294,,0
-11,6,0,1,2,625901,0,10571.85,40.48802,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,87.8,0,0,86.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,0,86.4,9.266045,1.386294,,0
-11,6,0,1,3,625901,0,10571.85,41.48802,0,10,1,12.27254,5.933136,0,0,0,18.20567,0,0,0,2,0,4,87.8,0,0,86.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,0,86.4,9.266045,1.386294,2.901733,1
-11,6,0,1,4,625901,0,10571.85,42.48802,0,10,1,124.9051,24.03569,0,0,560.3644,709.3052,1,0,0,5,0,4,87.8,0,0,86.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,0,86.4,9.266045,1.386294,6.564286,1
-11,6,0,1,5,625901,0,10571.85,43.48802,0,10,1,230.1038,2.422145,36.20415,0,0,268.7301,0,0,0,1,21,4,87.8,0,0,86.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,0,86.4,9.266045,1.386294,5.593708,1
-11,6,0,1,1,625902,0,10571.85,41.38261,1,12,1,318.7032,91.33665,34.91272,0,0,444.9526,0,0,0,18,0,4,62.8,17.2,0,53.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,1,53.4,9.266045,1.386294,6.097968,1
-11,6,0,1,2,625902,0,10571.85,42.38261,1,12,1,110.189,60.74228,0,0,0,170.9313,0,0,0,4,0,4,62.8,17.2,0,53.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,1,53.4,9.266045,1.386294,5.141262,1
-11,6,0,1,3,625902,0,10571.85,43.38261,1,12,1,83.79179,51.84088,0,0,0,135.6327,0,0,0,9,0,4,62.8,17.2,0,53.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,1,53.4,9.266045,1.386294,4.90995,1
-11,6,0,1,4,625902,0,10571.85,44.38261,1,12,1,62.26272,139.2483,0,0,1414.958,1616.469,2,0,0,4,0,4,62.8,17.2,0,53.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,1,53.4,9.266045,1.386294,7.388,1
-11,6,0,1,5,625902,0,10571.85,45.38261,1,12,1,313.1488,97.0346,36.20415,0,0,446.3875,0,0,0,3,23,4,62.8,17.2,0,53.4,0,280.04,0,0,1.386294,5.634933,0,0,0,0,0,1,53.4,9.266045,1.386294,6.101188,1
-11,6,0,1,1,625903,0,10571.85,16.39973,0,12,1,97.75561,2.493766,0,0,0,100.2494,0,0,0,1,0,4,91,6.9,0,63.6,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,63.6,9.266045,1.386294,4.607661,1
-11,6,0,1,2,625903,0,10571.85,17.39973,0,12,1,91.74735,3.918857,0,0,0,95.66621,0,0,0,9,0,4,91,6.9,0,63.6,0,280.04,1,0,1.386294,5.634933,0,0,0,1,0,0,63.6,9.266045,1.386294,4.560865,1
-11,6,0,1,3,625903,0,10571.85,18.39973,0,12,1,16.08125,6.45366,0,0,0,22.53491,0,0,0,1,0,4,91,6.9,0,63.6,0,280.04,0,0,1.386294,5.634933,0,0,0,1,0,0,63.6,9.266045,1.386294,3.115066,1
-11,6,0,1,4,625903,0,10571.85,19.39973,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91,6.9,0,63.6,0,280.04,0,0,1.386294,5.634933,0,0,0,1,0,0,63.6,9.266045,1.386294,,0
-11,6,0,1,5,625903,0,10571.85,20.39973,0,12,1,14.18685,7.269896,0,0,127.3356,148.7924,1,0,0,0,0,4,91,6.9,0,63.6,0,280.04,0,0,1.386294,5.634933,0,0,0,1,0,0,63.6,9.266045,1.386294,5.002552,1
-11,6,0,1,1,625904,0,7864.516,18.97604,1,11,1,22.29931,40.22795,0,0,0,62.52726,0,0,0,2,0,4,76.6,10.3,0,76.1,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,76.1,8.970243,1.386294,4.135602,1
-11,6,0,1,2,625904,0,7864.516,19.97604,1,11,1,48.18724,27.77421,32.14318,0,0,108.1046,0,0,0,5,0,4,76.6,10.3,0,76.1,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,76.1,8.970243,1.386294,4.6831,1
-11,6,0,1,3,625904,0,7864.516,20.97604,1,11,1,44.17333,38.59487,16.40724,0,0,99.17543,0,0,0,3,0,4,76.6,10.3,0,76.1,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,76.1,8.970243,1.386294,4.59689,1
-11,6,0,1,4,625904,0,7864.516,21.97604,1,11,1,30.97847,10.21156,0,0,0,41.19003,0,0,0,2,0,5,76.6,10.3,0,76.1,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,76.1,8.970243,1.609438,3.718196,1
-11,6,0,1,5,625904,0,7864.516,22.97604,1,11,1,79.24529,17.44425,21.56775,0,0,118.2573,0,0,0,2,0,5,76.6,10.3,0,76.1,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,76.1,8.970243,1.609438,4.772862,1
-11,6,0,1,1,625905,0,7864.516,40.32033,0,12,1,13.87512,0,39.68285,0,0,53.55798,0,0,0,2,0,4,88.8,0,1,96.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,96.6,8.970243,1.386294,3.980765,1
-11,6,0,1,2,625905,0,7864.516,41.32033,0,12,1,13.76778,0,13.36393,0,0,27.13171,0,0,0,1,0,4,88.8,0,1,96.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,96.6,8.970243,1.386294,3.300703,1
-11,6,0,1,3,625905,0,7864.516,42.32033,0,12,1,8.834665,0,21.03492,0,0,29.86958,0,0,0,1,0,4,88.8,0,1,96.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,96.6,8.970243,1.386294,3.396841,1
-11,6,0,1,4,625905,0,7864.516,43.32033,0,12,1,28.33396,0,0,0,0,28.33396,0,0,0,1,0,5,88.8,0,1,96.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,96.6,8.970243,1.609438,3.344061,1
-11,6,0,1,5,625905,0,7864.516,44.32033,0,12,1,13.72213,0,33.49228,0,0,47.21441,0,0,0,1,0,5,88.8,0,1,96.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,96.6,8.970243,1.609438,3.854699,1
-11,6,0,1,1,625906,0,7864.516,16.12868,1,12,1,34.68781,4.876115,25.76809,0,0,65.33201,0,0,0,3,0,4,81.4,3.4,0,71.6,0,525.76,1,1,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,4.179482,1
-11,6,0,1,2,625906,0,7864.516,17.12868,1,12,1,26.38825,3.946764,18.13676,0,322.8545,371.3263,1,0,0,3,0,4,81.4,3.4,0,71.6,0,525.76,1,1,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,5.917081,1
-11,6,0,1,3,625906,0,7864.516,18.12868,1,12,1,22.29701,18.93143,0,0,1142.617,1183.845,1,0,0,1,0,4,81.4,3.4,0,71.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,7.076523,1
-11,6,0,1,4,625906,0,7864.516,19.12868,1,12,1,35.13411,38.25463,24.93389,0,0,98.32263,0,0,0,3,0,5,81.4,3.4,0,71.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,71.6,8.970243,1.609438,4.588254,1
-11,6,0,1,5,625906,0,7864.516,20.12868,1,12,1,36.19211,57.46141,0,0,0,93.65352,0,0,0,3,0,5,81.4,3.4,0,71.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,71.6,8.970243,1.609438,4.539602,1
-11,6,0,1,1,625907,0,7864.516,37.28679,1,12,1,22.29931,31.29336,0,0,0,53.59267,0,0,0,2,0,4,93.1,10.3,0,71.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,3.981412,1
-11,6,0,1,2,625907,0,7864.516,38.28679,1,12,1,31.6659,33.79991,0,0,0,65.46581,0,0,0,1,0,4,93.1,10.3,0,71.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,4.181528,1
-11,6,0,1,3,625907,0,7864.516,39.28679,1,12,1,100.9676,31.43879,0,0,0,132.4064,0,0,0,4,0,4,93.1,10.3,0,71.6,0,525.76,0,0,1.386294,6.264845,0,0,0,0,0,0,71.6,8.970243,1.386294,4.885876,1
-11,6,0,1,4,625907,0,7864.516,40.28679,1,12,1,24.5561,33.0034,0,0,0,57.5595,0,0,0,3,0,5,93.1,10.3,0,71.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,71.6,8.970243,1.609438,4.052819,1
-11,6,0,1,5,625907,0,7864.516,41.28679,1,12,1,27.78731,88.95026,0,0,0,116.7376,0,0,0,2,0,5,93.1,10.3,0,71.6,0,525.76,0,0,1.609438,6.264845,0,0,0,0,0,0,71.6,8.970243,1.609438,4.759928,1
-14,6,95,0,1,625912,1,3400.922,50.4011,1,7,1,0,1.248413,0,0,0,1.248413,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,.2218732,1
-14,6,95,0,2,625912,1,3400.922,51.4011,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,3,625912,1,3400.922,52.4011,1,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.302585,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.302585,,0
-14,6,95,0,1,625913,1,3400.922,16.56126,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,625913,1,3400.922,17.56126,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,1,625914,1,3400.922,11.93977,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,625914,1,3400.922,12.93977,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,3,625914,1,3400.922,13.93977,0,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.302585,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.302585,,0
-14,6,95,0,1,625915,1,3400.922,15.44969,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,625915,1,3400.922,16.44969,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,3,625915,1,3400.922,17.44969,1,7,1,0,4.757785,0,0,0,4.757785,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.302585,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.302585,1.559782,1
-14,6,95,0,1,625916,1,3400.922,18.24504,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,625916,1,3400.922,19.24504,1,7,1,8.352316,13.11693,0,0,277.5247,298.9939,1,0,0,1,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.197225,5.700423,1
-14,6,95,0,3,625916,1,3400.922,20.24504,1,7,1,13.49481,4.259516,0,0,0,17.75433,0,0,0,1,0,10,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.302585,3.883624,0,4.564348,3.934917,1,0,0,70.68995,8.132095,2.302585,2.876629,1
-15,6,95,1,1,625924,0,20927.29,43.40315,1,9,1,17.92414,14.79783,0,0,0,32.72197,0,0,0,3,0,2,60.6,17.2,0,61.4,700,1032.64,0,0,.6931472,6.939874,0,4.564348,6.602374,1,0,0,61.4,9.948857,.6931472,3.488047,1
-15,6,95,1,1,625925,0,20927.29,47.86584,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2,80.3,10.3,1,60.2,700,1032.64,0,0,.6931472,6.939874,0,4.564348,6.602374,1,0,0,60.2,9.948857,.6931472,,0
-14,6,95,1,1,625949,1,3984.164,33.82067,1,11,1,22.29931,33.1219,0,0,0,55.42121,0,0,0,2,2,4,69.1,3.4,1,68.1,294,409.6,0,0,1.386294,6.015181,0,4.564348,5.734873,0,1,0,68.1,8.290334,1.386294,4.014962,1
-14,6,95,1,2,625949,1,3984.164,34.82067,1,11,1,6.883892,10.5553,0,0,0,17.43919,0,0,0,1,0,5,69.1,3.4,1,68.1,294,409.6,0,0,1.609438,6.015181,0,4.564348,5.734873,0,1,0,68.1,8.290334,1.609438,2.85872,1
-14,6,95,1,3,625949,1,3984.164,35.82067,1,11,1,14.72444,9.852756,0,0,0,24.5772,0,0,0,1,0,6,69.1,3.4,1,68.1,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,0,1,0,68.1,8.290334,1.791759,3.201819,1
-14,6,95,1,4,625949,1,3984.164,36.82067,1,11,1,75.55724,16.81149,40.04533,0,0,132.414,0,0,0,9,1,6,69.1,3.4,1,68.1,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,0,1,0,68.1,8.290334,1.791759,4.885934,1
-14,6,95,1,5,625949,1,3984.164,37.82067,1,11,1,25.72899,47.18696,0,0,0,72.91595,0,0,0,3,0,6,69.1,3.4,1,68.1,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,0,1,0,68.1,8.290334,1.791759,4.289308,1
-14,6,95,1,1,625950,1,3984.164,17.84257,1,11,1,23.78593,13.13181,0,0,315.6591,352.5768,1,0,0,2,0,4,80.9,3.4,1,61.4,294,409.6,1,1,1.386294,6.015181,0,4.564348,5.734873,1,0,0,61.4,8.290334,1.386294,5.865269,1
-14,6,95,1,2,625950,1,3984.164,18.84257,1,11,1,4.589261,8.031207,0,0,302.8912,315.5117,1,0,0,0,0,5,80.9,3.4,1,61.4,294,409.6,0,0,1.609438,6.015181,0,4.564348,5.734873,1,0,0,61.4,8.290334,1.609438,5.754196,1
-14,6,95,1,3,625950,1,3984.164,19.84257,1,11,1,26.92469,4.101809,0,0,0,31.0265,0,0,0,2,0,6,80.9,3.4,1,61.4,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,61.4,8.290334,1.791759,3.434842,1
-14,6,95,1,4,625950,1,3984.164,20.84257,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,80.9,3.4,1,61.4,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,61.4,8.290334,1.791759,,0
-14,6,95,1,5,625950,1,3984.164,21.84257,1,11,1,38.76501,7.375643,0,0,0,46.14065,0,0,0,3,0,6,80.9,3.4,1,61.4,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,61.4,8.290334,1.791759,3.831694,1
-14,6,95,1,1,625951,1,3984.164,47.89049,0,9,1,33.69673,54.29633,0,0,0,87.99306,0,0,0,7,0,4,72.3,13.8,1,58,294,409.6,0,0,1.386294,6.015181,0,4.564348,5.734873,1,0,0,58,8.290334,1.386294,4.477258,1
-14,6,95,1,2,625951,1,3984.164,48.89049,0,9,1,123.4511,92.81781,0,0,0,216.2689,0,0,0,13,0,5,72.3,13.8,1,58,294,409.6,0,0,1.609438,6.015181,0,4.564348,5.734873,1,0,0,58,8.290334,1.609438,5.376523,1
-14,6,95,1,3,625951,1,3984.164,49.89049,0,9,1,93.81573,112.3223,0,0,0,206.138,0,0,0,7,0,6,72.3,13.8,1,58,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,58,8.290334,1.791759,5.328546,1
-14,6,95,1,4,625951,1,3984.164,50.89049,0,9,1,140.5365,128.7873,0,0,0,269.3238,0,0,0,17,0,6,72.3,13.8,1,58,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,58,8.290334,1.791759,5.595914,1
-14,6,95,1,5,625951,1,3984.164,51.89049,0,9,1,34.30532,130.0206,0,0,0,164.3259,0,0,0,10,0,6,72.3,13.8,1,58,294,409.6,0,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,58,8.290334,1.791759,5.101851,1
-14,6,95,1,1,625952,1,3984.164,13.02669,0,11,1,4.955401,4.088206,0,0,0,9.043608,0,0,0,1,0,4,80,10.57626,1,63,294,409.6,1,0,1.386294,6.015181,0,4.564348,5.734873,1,0,0,63,8.290334,1.386294,2.202058,1
-14,6,95,1,2,625952,1,3984.164,14.02669,0,11,1,49.56402,12.7352,0,0,0,62.29922,0,0,0,1,0,5,80,10.57626,1,63,294,409.6,1,0,1.609438,6.015181,0,4.564348,5.734873,1,0,0,63,8.290334,1.609438,4.131949,1
-14,6,95,1,3,625952,1,3984.164,15.02669,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,80,10.57626,1,63,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,63,8.290334,1.791759,,0
-14,6,95,1,4,625952,1,3984.164,16.02669,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,80,10.57626,1,63,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,63,8.290334,1.791759,,0
-14,6,95,1,5,625952,1,3984.164,17.02669,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,80,10.57626,1,63,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,1,0,0,63,8.290334,1.791759,,0
-6,6,25,1,1,625956,1,1024.066,53.83984,1,9,1,14.81168,0,0,0,0,14.81168,0,0,0,2,0,1,70.7,17.2,1,50,250,0,0,0,0,0,0,3.258096,6.907755,1,0,0,50,6.932512,0,2.695416,1
-6,6,25,1,2,625956,1,1024.066,54.83984,1,9,1,5.694761,11.18071,0,0,0,16.87547,0,0,0,1,0,1,70.7,17.2,1,50,250,0,0,0,0,0,0,3.258096,6.907755,1,0,0,50,6.932512,0,2.825861,1
-6,6,25,1,3,625956,1,1024.066,55.83984,1,9,1,12.80277,0,0,0,0,12.80277,0,0,0,1,0,1,70.7,17.2,1,50,250,0,0,0,0,0,0,3.258096,6.907755,1,0,0,50,6.932512,0,2.549661,1
-11,6,0,0,1,625958,0,8844.342,39.54004,1,12,1,0,21.51872,0,0,0,21.51872,0,0,0,0,0,3,71.8,31,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,9.087646,1.098612,3.068923,1
-11,6,0,0,2,625958,0,8844.342,40.54004,1,12,1,30.60068,26.38836,31.73404,0,0,88.72308,0,0,0,2,0,3,71.8,31,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,9.087646,1.098612,4.48552,1
-11,6,0,0,3,625958,0,8844.342,41.54004,1,12,1,25.04288,109.7702,0,0,0,134.813,0,0,0,2,0,3,71.8,31,1,63.6,0,0,0,0,1.098612,0,0,0,0,1,0,0,63.6,9.087646,1.098612,4.903889,1
-11,6,0,0,1,625959,0,8844.342,18.05339,0,10.62774,1,47.95961,6.352545,0,0,0,54.31216,0,0,0,4,0,3,78.2,10.3,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,9.087646,1.098612,3.994748,1
-11,6,0,0,2,625959,0,8844.342,19.05339,0,10.62774,1,17.00038,5.421232,0,0,0,22.42161,0,0,0,3,0,3,78.2,10.3,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,9.087646,1.098612,3.110025,1
-11,6,0,0,3,625959,0,8844.342,20.05339,0,10.62774,1,0,5.166381,0,0,0,5.166381,0,0,0,0,0,3,78.2,10.3,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,9.087646,1.098612,1.642172,1
-11,6,0,0,1,625960,0,8844.342,43.37029,0,12,1,0,6.895246,0,0,0,6.895246,0,0,0,0,0,3,83,20.7,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.087646,1.098612,1.930832,1
-11,6,0,0,2,625960,0,8844.342,44.37029,0,12,1,260.6725,1.122025,0,0,0,261.7945,0,0,0,1,22,3,83,20.7,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.087646,1.098612,5.56756,1
-11,6,0,0,3,625960,0,8844.342,45.37029,0,12,1,123.4991,6.542024,42.06861,0,0,172.1098,0,0,0,1,9,3,83,20.7,0,73.9,0,0,0,0,1.098612,0,0,0,0,1,0,0,73.9,9.087646,1.098612,5.148132,1
-15,6,95,1,1,625967,1,3530.792,21.40452,1,9,1,30.46683,13.41523,0,0,0,43.88206,0,0,0,2,0,2,75.5,13.8,1,52.3,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,52.3,8.16956,.6931472,3.781506,1
-15,6,95,1,2,625967,1,3530.792,22.40452,1,9,1,12.76208,0,0,0,237.01,249.7721,1,1,0,0,0,2,75.5,13.8,1,52.3,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,52.3,8.16956,.6931472,5.520549,1
-15,6,95,1,3,625967,1,3530.792,23.40452,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,75.5,13.8,1,52.3,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,52.3,8.16956,.6931472,,0
-15,6,95,1,4,625967,1,3530.792,24.40452,1,9,1,23.25581,7.464366,0,0,0,30.72018,0,0,0,0,0,2,75.5,13.8,1,52.3,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,52.3,8.16956,.6931472,3.42492,1
-15,6,95,1,5,625967,1,3530.792,25.40452,1,9,1,0,0,0,0,0,0,0,0,0,0,0,2,75.5,13.8,1,52.3,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,52.3,8.16956,.6931472,,0
-15,6,95,1,1,625968,1,3530.792,27.2334,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,76.1,10.3,1,56.8,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,56.8,8.16956,.6931472,,0
-15,6,95,1,2,625968,1,3530.792,28.2334,0,12,.8109589,0,0,0,0,0,0,0,0,0,0,0,2,76.1,10.3,1,56.8,499.2,509.08,0,0,.6931472,6.232605,0,4.564348,6.2643,1,0,0,56.8,8.16956,.6931472,,0
-11,6,0,0,1,625976,0,3890.425,29.86174,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,60.6,10.3,0,90.9,0,366.48,0,0,.6931472,5.903944,0,0,0,1,0,0,90.9,8.266531,.6931472,,0
-11,6,0,0,2,625976,0,3890.425,30.86174,1,12,1,125.9542,0,7.633588,0,0,133.5878,0,0,0,1,15,2,60.6,10.3,0,90.9,0,366.48,0,0,.6931472,5.903944,0,0,0,1,0,0,90.9,8.266531,.6931472,4.894759,1
-11,6,0,0,3,625976,0,3890.425,31.86174,1,12,1,22.64808,0,0,0,0,22.64808,0,0,0,2,0,2,60.6,10.3,0,90.9,0,366.48,0,0,.6931472,5.903944,0,0,0,1,0,0,90.9,8.266531,.6931472,3.120075,1
-11,6,0,0,1,625977,0,3890.425,9.32512,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.3,10.57626,0,88.9,0,366.48,1,0,.6931472,5.903944,0,0,0,0,1,0,88.9,8.266531,.6931472,,0
-11,6,0,0,2,625977,0,3890.425,10.32512,0,12,1,7.633588,0,0,0,0,7.633588,0,0,0,2,0,2,68.3,10.57626,0,88.9,0,366.48,1,0,.6931472,5.903944,0,0,0,0,1,0,88.9,8.266531,.6931472,2.032558,1
-11,6,0,0,3,625977,0,3890.425,11.32512,0,12,1,13.24042,0,0,0,0,13.24042,0,0,0,2,0,2,68.3,10.57626,0,88.9,0,366.48,1,0,.6931472,5.903944,0,0,0,0,1,0,88.9,8.266531,.6931472,2.583274,1
-11,6,0,1,1,625993,0,11349.56,23.33196,1,15,1,9.415262,15.9663,33.69673,0,517.9633,577.0416,1,0,0,1,0,2,76.1,6.9,1,85.2,0,60,0,0,.6931472,4.094345,0,0,0,1,0,0,85.2,9.337023,.6931472,6.357914,1
-11,6,0,1,2,625993,0,11349.56,24.33196,1,15,1,39.92657,10.95916,0,0,0,50.88573,0,0,0,3,0,3,76.1,6.9,1,85.2,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,85.2,9.337023,1.098612,3.929582,1
-11,6,0,1,3,625993,0,11349.56,25.33196,1,15,1,73.62222,2.801851,0,0,0,76.42406,0,0,0,4,0,3,76.1,6.9,1,85.2,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,85.2,9.337023,1.098612,4.336298,1
-11,6,0,1,4,625993,0,11349.56,26.33196,1,15,1,51.75671,17.90329,0,0,0,69.66,0,0,0,4,0,3,76.1,6.9,1,85.2,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,85.2,9.337023,1.098612,4.243626,1
-11,6,0,1,5,625993,0,11349.56,27.33196,1,15,1,23.32762,4.991424,2.744425,0,706.9811,738.0446,1,0,0,2,0,3,76.1,6.9,1,85.2,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,85.2,9.337023,1.098612,6.604004,1
-11,6,0,1,1,625994,0,11349.56,24.81862,0,16,1,43.11199,0,37.50248,0,0,80.61447,0,0,0,4,0,2,76.6,10.3,0,56.8,0,60,0,0,.6931472,4.094345,0,0,0,1,0,0,56.8,9.337023,.6931472,4.389678,1
-11,6,0,1,2,625994,0,11349.56,25.81862,0,16,1,686.0945,0,2.294631,0,2794.86,3483.249,1,0,0,14,15,3,76.6,10.3,0,56.8,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,56.8,9.337023,1.098612,8.155721,1
-11,6,0,1,3,625994,0,11349.56,26.81862,0,16,1,274.2953,41.71645,22.08666,0,0,338.0984,0,0,0,13,4,3,76.6,10.3,0,56.8,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,56.8,9.337023,1.098612,5.823337,1
-11,6,0,1,4,625994,0,11349.56,27.81862,0,16,1,53.64564,39.1122,20.28712,0,0,113.045,0,0,0,7,0,3,76.6,10.3,0,56.8,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,56.8,9.337023,1.098612,4.727786,1
-11,6,0,1,5,625994,0,11349.56,28.81862,0,16,1,5.488851,25.48885,28.34648,0,0,59.32418,0,0,0,1,0,3,76.6,10.3,0,56.8,0,60,0,0,1.098612,4.094345,0,0,0,1,0,0,56.8,9.337023,1.098612,4.083017,1
-13,6,0,1,1,626008,0,7417.307,28.91718,0,17,1,0,9.627592,0,0,0,9.627592,0,0,0,0,0,2,82.4,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.911706,.6931472,2.264633,1
-13,6,0,1,2,626008,0,7417.307,29.91718,0,17,1,11.38952,0,26.57555,0,0,37.96507,0,0,0,0,1,2,82.4,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.911706,.6931472,3.636667,1
-13,6,0,1,3,626008,0,7417.307,30.91718,0,17,1,325.2595,0,41.52249,0,0,366.782,0,0,0,1,29,2,82.4,0,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.911706,.6931472,5.904768,1
-13,6,0,1,1,626009,0,7417.307,27.46338,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,90.4,13.8,0,78.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,78.4,8.911706,.6931472,,0
-13,6,0,1,2,626009,0,7417.307,28.46338,1,12,1,14.42673,0,0,0,0,14.42673,0,0,0,1,0,2,90.4,13.8,0,78.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,78.4,8.911706,.6931472,2.669083,1
-13,6,0,1,3,626009,0,7417.307,29.46338,1,12,1,25.95156,0,32.87197,0,0,58.82353,0,0,0,1,1,2,90.4,13.8,0,78.4,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,78.4,8.911706,.6931472,4.074542,1
-11,6,0,0,1,626533,0,6219.941,29.51951,1,12,1,33.20119,0,29.73241,0,0,62.9336,0,0,0,2,1,4,97.9,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.735677,1.386294,4.14208,1
-11,6,0,0,2,626533,0,6219.941,30.51951,1,12,1,59.20147,20.65167,0,0,0,79.85314,0,0,0,2,0,4,97.9,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.735677,1.386294,4.380189,1
-11,6,0,0,3,626533,0,6219.941,31.51951,1,12,1,47.95961,21.1443,0,21.03492,0,69.10391,0,0,1,5,0,4,97.9,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.735677,1.386294,4.235611,1
-11,6,0,0,4,626533,0,6219.941,32.51951,1,12,1,26.06725,28.70797,0,66.11258,0,54.77522,0,0,3,3,0,4,97.9,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.735677,1.386294,4.003238,1
-11,6,0,0,5,626533,0,6219.941,33.51951,1,12,1,134.4768,16.29502,0,18.86792,0,150.7719,0,0,1,5,0,4,97.9,6.9,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,8.735677,1.386294,5.015768,1
-11,6,0,0,1,626534,0,6219.941,6.55989,0,12,1,4.955401,7.056491,0,0,0,12.01189,0,0,0,1,0,4,98.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,8.735677,1.386294,2.485897,1
-11,6,0,0,2,626534,0,6219.941,7.55989,0,12,1,0,4.589261,0,0,0,4.589261,0,0,0,0,0,4,98.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,8.735677,1.386294,1.523719,1
-11,6,0,0,3,626534,0,6219.941,8.559891,0,12,1,0,5.153555,0,0,0,5.153555,0,0,0,0,0,4,98.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,8.735677,1.386294,1.639687,1
-11,6,0,0,4,626534,0,6219.941,9.559891,0,12,1,0,6.120136,0,0,0,6.120136,0,0,0,0,0,4,98.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,8.735677,1.386294,1.811584,1
-11,6,0,0,5,626534,0,6219.941,10.55989,0,12,1,5.831904,1.457976,0,0,0,7.28988,0,0,0,1,0,4,98.3,10.57626,0,88.9,0,0,1,0,1.386294,0,0,0,0,0,0,0,88.9,8.735677,1.386294,1.986487,1
-11,6,0,0,1,626535,0,6219.941,28.79398,0,12,1,9.910803,4.088206,38.15659,0,0,52.1556,0,0,0,0,1,4,96.3,3.4,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.735677,1.386294,3.954232,1
-11,6,0,0,2,626535,0,6219.941,29.79398,0,12,1,0,4.589261,0,0,0,4.589261,0,0,0,0,0,4,96.3,3.4,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.735677,1.386294,1.523719,1
-11,6,0,0,3,626535,0,6219.941,30.79398,0,12,1,6.310475,0,27.34539,147.2444,0,33.65587,0,0,8,1,0,4,96.3,3.4,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.735677,1.386294,3.516187,1
-11,6,0,0,4,626535,0,6219.941,31.79398,0,12,1,0,12.65584,0,0,0,12.65584,0,0,0,0,0,4,96.3,3.4,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.735677,1.386294,2.538119,1
-11,6,0,0,5,626535,0,6219.941,32.79398,0,12,1,0,6.7753,28.34648,0,0,35.12178,0,0,0,0,0,4,96.3,3.4,0,86.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,86.4,8.735677,1.386294,3.558822,1
-10,6,50,0,1,626540,0,10082.44,20.76386,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,17.2,0,62.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,62.5,9.21865,1.098612,,0
-10,6,50,0,2,626540,0,10082.44,21.76386,0,10,1,0,0,0,0,0,0,0,0,0,0,0,3,72.3,17.2,0,62.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,62.5,9.21865,1.098612,,0
-10,6,50,0,3,626540,0,10082.44,22.76386,0,10,1,15.43739,0,28.34648,0,0,43.78388,0,0,0,1,0,3,72.3,17.2,0,62.5,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,62.5,9.21865,1.098612,3.779266,1
-10,6,50,1,1,626541,0,10082.44,61.84531,0,10,1,35.75936,13.04165,0,0,0,48.80101,0,0,0,5,0,3,58,20.7,0,48.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,48.9,9.21865,1.098612,3.887751,1
-10,6,50,1,2,626541,0,10082.44,62.84531,0,10,1,73.29052,17.8504,136.003,0,641.4809,868.6249,1,0,0,5,0,3,58,20.7,0,48.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,48.9,9.21865,1.098612,6.766912,1
-10,6,50,1,3,626541,0,10082.44,63.84531,0,10,1,0,2.144082,0,0,0,2.144082,0,0,0,0,0,3,58,20.7,0,48.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,1,0,48.9,9.21865,1.098612,.7627116,1
-10,6,50,1,1,626542,0,10082.44,61.49487,1,11,1,0,19.66765,0,0,0,19.66765,0,0,0,0,0,3,73.9,6.9,0,75,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,75,9.21865,1.098612,2.978975,1
-10,6,50,1,2,626542,0,10082.44,62.49487,1,11,1,15.11145,0,37.02304,0,0,52.13449,0,0,0,1,0,3,73.9,6.9,0,75,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,75,9.21865,1.098612,3.953827,1
-10,6,50,1,3,626542,0,10082.44,63.49487,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,73.9,6.9,0,75,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,75,9.21865,1.098612,,0
-11,6,0,0,1,626597,0,0,25.34155,0,12,1,8.463818,3.135844,0,0,0,11.59966,0,0,0,2,0,1,74.5,0,0,75,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,75,0,0,2.450976,1
-11,6,0,0,2,626597,0,0,26.34155,0,12,1,33.02961,9.350798,0,0,0,42.38041,0,0,0,3,0,1,74.5,0,0,75,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,75,0,0,3.746686,1
-11,6,0,0,3,626597,0,0,27.34155,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,74.5,0,0,75,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,75,0,0,,0
-11,6,0,0,1,626598,0,1011.777,25.34155,0,13,1,33.43208,3.508252,0,0,0,36.94033,0,0,0,4,0,1,61.7,10.3,0,81.8,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,81.8,6.920451,0,3.609304,1
-11,6,0,0,2,626598,0,1011.777,26.34155,0,13,1,3.796507,17.1792,0,0,0,20.9757,0,0,0,1,0,1,61.7,10.3,0,81.8,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,81.8,6.920451,0,3.043365,1
-11,6,0,0,3,626598,0,1011.777,27.34155,0,13,1,10.38062,4.792387,0,0,0,15.17301,0,0,0,3,0,1,61.7,10.3,0,81.8,0,154.44,0,0,0,5.039806,0,0,0,0,1,0,81.8,6.920451,0,2.719518,1
-11,6,0,0,1,626740,1,5123.912,57.1499,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,66.1,13.8,0,60.2,0,192.48,0,0,.6931472,5.259992,0,0,0,1,0,0,60.2,8.541868,.6931472,,0
-11,6,0,0,2,626740,1,5123.912,58.1499,0,8,1,13.66743,0,0,0,0,13.66743,0,0,0,2,0,2,66.1,13.8,0,60.2,0,192.48,0,0,.6931472,5.259992,0,0,0,1,0,0,60.2,8.541868,.6931472,2.615015,1
-11,6,0,0,3,626740,1,5123.912,59.1499,0,8,1,9.342561,0,0,0,0,9.342561,0,0,0,1,0,3,66.1,13.8,0,60.2,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,60.2,8.541868,1.098612,2.23458,1
-11,6,0,0,1,626741,1,5123.912,37.53867,1,12,1,84.21498,19.17055,0,0,0,103.3855,0,0,0,6,0,2,67,17.2,0,62.5,0,192.48,0,0,.6931472,5.259992,0,0,0,0,1,0,62.5,8.541868,.6931472,4.638465,1
-11,6,0,0,2,626741,1,5123.912,38.53867,1,12,1,216.0213,10.20121,0,0,2616.173,2842.396,2,0,0,10,0,2,67,17.2,0,62.5,0,192.48,0,0,.6931472,5.259992,0,0,0,0,1,0,62.5,8.541868,.6931472,7.952403,1
-11,6,0,0,3,626741,1,5123.912,39.53867,1,12,1,49.82699,0,31.14187,0,0,80.96886,0,0,0,3,0,3,67,17.2,0,62.5,0,192.48,0,0,1.098612,5.259992,0,0,0,0,1,0,62.5,8.541868,1.098612,4.394064,1
-16,6,95,1,1,626754,1,0,41.87269,1,6,1,23.78593,67.6115,0,0,0,91.39742,0,0,0,2,0,1,81.9,6.9,1,69.3,315.15,315.05,0,0,0,5.752731,0,4.564348,5.804342,0,1,0,69.3,0,0,4.515217,1
-16,6,95,1,2,626754,1,0,42.87269,1,6,1,11.47315,4.589261,0,0,0,16.06241,0,0,0,1,0,1,81.9,6.9,1,69.3,315.15,315.05,0,0,0,5.752731,0,4.564348,5.804342,0,1,0,69.3,0,0,2.776482,1
-16,6,95,1,3,626754,1,0,43.87269,1,6,1,34.49726,25.87295,2.734539,0,0,63.10476,0,0,0,3,0,1,81.9,6.9,1,69.3,315.15,315.05,0,0,0,5.752731,0,4.564348,5.804342,0,1,0,69.3,0,0,4.144796,1
-16,6,95,1,4,626754,1,0,44.87269,1,6,1,47.22327,37.84284,0,0,0,85.06612,0,0,0,4,0,1,81.9,6.9,1,69.3,315.15,315.05,0,0,0,5.752731,0,4.564348,5.804342,0,1,0,69.3,0,0,4.443429,1
-16,6,95,1,5,626754,1,0,45.87269,1,6,1,37.04974,38.21269,35.67753,0,0,110.94,0,0,0,4,0,1,81.9,6.9,1,69.3,315.15,315.05,0,0,0,5.752731,0,4.564348,5.804342,0,1,0,69.3,0,0,4.708989,1
-13,6,0,1,1,626798,1,6735.316,30.06434,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,52.1,3.4,0,59.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,59.1,8.815269,0,,0
-13,6,0,1,2,626798,1,6735.316,31.06434,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,52.1,3.4,0,59.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,59.1,8.815269,0,,0
-13,6,0,1,3,626798,1,6735.316,32.06434,0,12,1,19.03114,0,38.97232,0,0,58.00346,0,0,0,1,0,1,52.1,3.4,0,59.1,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,59.1,8.815269,0,4.060503,1
-6,6,25,1,1,626875,1,1656.426,61.48118,1,2,1,72.78883,36.16166,38.08718,0,0,147.0377,0,0,0,7,1,2,83,24.1,1,52.3,318,318,0,0,.6931472,5.762052,0,3.258096,7.148346,0,1,0,52.3,7.413021,.6931472,4.990689,1
-6,6,25,1,2,626875,1,1656.426,62.48118,1,2,1,120.3493,123.8041,0,0,0,244.1534,0,0,0,19,0,2,83,24.1,1,52.3,318,318,0,0,.6931472,5.762052,0,3.258096,7.148346,0,1,0,52.3,7.413021,.6931472,5.497797,1
-6,6,25,1,3,626875,1,1656.426,63.48118,1,2,1,46.02076,58.73356,0,0,0,104.7543,0,0,0,6,0,2,83,24.1,1,52.3,318,318,0,0,.6931472,5.762052,0,3.258096,7.148346,0,1,0,52.3,7.413021,.6931472,4.651618,1
-6,6,25,1,1,626876,.5112414,6735.316,18.987,1,10.5,1,0,0,0,0,0,0,0,0,0,0,0,2,49.5,3.4,0,58,100,0,0,0,.6931472,0,0,3.258096,5.991465,0,0,0,58,8.815269,.6931472,,0
-6,6,25,1,2,626876,.5112414,6735.316,19.987,1,10.5,1,0,0,0,0,0,0,0,0,0,0,0,2,49.5,3.4,0,58,100,0,0,0,.6931472,0,0,3.258096,5.991465,0,0,0,58,8.815269,.6931472,,0
-6,6,25,1,3,626876,.5112414,6735.316,20.987,1,10.5,1,32.17993,9.038062,0,0,0,41.21799,0,0,0,3,0,2,49.5,3.4,0,58,100,0,0,0,.6931472,0,0,3.258096,5.991465,0,0,0,58,8.815269,.6931472,3.718875,1
-6,6,25,1,1,626877,1,1656.426,13.69199,0,2,1,6.347863,2.433347,0,0,0,8.78121,0,0,0,1,0,2,90,10.57626,0,92.6,318,318,1,0,.6931472,5.762052,0,3.258096,7.148346,0,0,0,92.6,7.413021,.6931472,2.172614,1
-6,6,25,1,2,626877,1,1656.426,14.69199,0,2,1,14.80638,0,0,0,0,14.80638,0,0,0,2,0,2,90,10.57626,0,92.6,318,318,1,0,.6931472,5.762052,0,3.258096,7.148346,0,0,0,92.6,7.413021,.6931472,2.695058,1
-6,6,25,1,3,626877,1,1656.426,15.69199,0,2,1,26.98962,2.477509,0,0,0,29.46713,0,0,0,3,0,2,90,10.57626,0,92.6,318,318,1,0,.6931472,5.762052,0,3.258096,7.148346,0,0,0,92.6,7.413021,.6931472,3.383275,1
-13,6,0,1,1,626878,1,1982.991,51.36482,0,12,1,0,0,0,0,113.217,113.217,1,1,0,0,0,2,52.1,34.5,1,22.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,22.7,7.592866,.6931472,4.729306,1
-13,6,0,1,2,626878,1,1982.991,52.36482,0,12,1,9.22084,0,32.27294,0,0,41.49377,0,0,0,0,1,2,52.1,34.5,1,22.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,22.7,7.592866,.6931472,3.725543,1
-13,6,0,1,3,626878,1,1982.991,53.36482,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,34.5,1,22.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,22.7,7.592866,.6931472,,0
-13,6,0,1,4,626878,1,1982.991,54.36482,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,34.5,1,22.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,22.7,7.592866,.6931472,,0
-13,6,0,1,5,626878,1,1982.991,55.36482,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,52.1,34.5,1,22.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,22.7,7.592866,.6931472,,0
-13,6,0,1,1,626879,1,1982.991,55.26625,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,53.7,10.3,1,30.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,30.7,7.592866,.6931472,,0
-13,6,0,1,2,626879,1,1982.991,56.26625,1,8,1,9.22084,0,32.27294,0,0,41.49377,0,0,0,0,1,2,53.7,10.3,1,30.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,30.7,7.592866,.6931472,3.725543,1
-13,6,0,1,3,626879,1,1982.991,57.26625,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,53.7,10.3,1,30.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,30.7,7.592866,.6931472,,0
-13,6,0,1,4,626879,1,1982.991,58.26625,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,53.7,10.3,1,30.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,30.7,7.592866,.6931472,,0
-13,6,0,1,5,626879,1,1982.991,59.26625,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,53.7,10.3,1,30.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,30.7,7.592866,.6931472,,0
-13,6,0,1,1,626927,0,6735.316,36.38604,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,81.9,3.4,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,63.6,8.815269,1.609438,,0
-13,6,0,1,2,626927,0,6735.316,37.38604,1,17,1,5.343512,0,0,0,0,5.343512,0,0,0,1,0,5,81.9,3.4,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,63.6,8.815269,1.609438,1.675883,1
-13,6,0,1,3,626927,0,6735.316,38.38604,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,81.9,3.4,0,63.6,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,63.6,8.815269,1.609438,,0
-13,6,0,1,1,626928,0,6735.316,37.39357,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,89.9,13.8,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.815269,1.609438,,0
-13,6,0,1,2,626928,0,6735.316,38.39357,0,16,1,5.343512,0,0,0,0,5.343512,0,0,0,1,0,5,89.9,13.8,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.815269,1.609438,1.675883,1
-13,6,0,1,3,626928,0,6735.316,39.39357,0,16,1,0,0,0,0,0,0,0,0,0,0,0,5,89.9,13.8,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.815269,1.609438,,0
-13,6,0,1,1,626929,0,6735.316,9.932922,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.815269,1.609438,,0
-13,6,0,1,2,626929,0,6735.316,10.93292,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.815269,1.609438,,0
-13,6,0,1,3,626929,0,6735.316,11.93292,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,85.2,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.815269,1.609438,,0
-13,6,0,1,1,626930,0,6735.316,14.20397,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,81.8,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.609438,,0
-13,6,0,1,2,626930,0,6735.316,15.20397,0,17,1,43.12977,0,28.62595,0,0,71.75572,0,0,0,1,1,5,86.2,3.4,0,81.8,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.609438,4.273268,1
-13,6,0,1,3,626930,0,6735.316,16.20397,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,86.2,3.4,0,81.8,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.609438,,0
-13,6,0,1,1,626931,0,6735.316,7.824778,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.815269,1.609438,,0
-13,6,0,1,2,626931,0,6735.316,8.824778,0,17,1,2.671756,0,0,0,0,2.671756,0,0,0,1,0,5,83.3,10.57626,0,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.815269,1.609438,.9827359,1
-13,6,0,1,3,626931,0,6735.316,9.824778,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,85.2,8.815269,1.609438,,0
-19,6,25,1,1,626942,1,13454.69,38.62286,0,16,1,7.57257,0,0,0,0,7.57257,0,0,0,0,0,3,79.8,3.4,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,9.507157,1.098612,2.024533,1
-19,6,25,1,2,626942,1,13454.69,39.62286,0,16,1,40.80091,0,0,0,0,40.80091,0,0,0,6,0,3,79.8,3.4,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,9.507157,1.098612,3.708704,1
-19,6,25,1,3,626942,1,13454.69,40.62286,0,16,1,17.15266,4.596912,0,0,0,21.74957,0,0,0,1,0,3,79.8,3.4,0,96.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,96.6,9.507157,1.098612,3.079594,1
-19,6,25,1,1,626943,1,13454.69,37.86995,1,18,1,22.71771,5.258729,0,0,0,27.97644,0,0,0,2,0,3,88.8,10.3,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.507157,1.098612,3.331363,1
-19,6,25,1,2,626943,1,13454.69,38.86995,1,18,1,28.71175,13.54741,0,0,0,42.25916,0,0,0,4,0,3,88.8,10.3,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.507157,1.098612,3.743821,1
-19,6,25,1,3,626943,1,13454.69,39.86995,1,18,1,36.02058,8.147512,32.82333,0,0,76.99142,0,0,0,4,0,3,88.8,10.3,0,63.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,63.6,9.507157,1.098612,4.343694,1
-19,6,25,1,1,626944,1,13454.69,11.46064,0,18,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.507157,1.098612,,0
-19,6,25,1,2,626944,1,13454.69,12.46064,0,18,1,216.4715,0,0,0,0,216.4715,0,0,0,1,0,3,88.3,10.57626,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.507157,1.098612,5.377459,1
-19,6,25,1,3,626944,1,13454.69,13.46064,0,18,1,19.55403,0,33.89022,0,0,53.44425,0,0,0,2,0,3,88.3,10.57626,0,92.6,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.507157,1.098612,3.978639,1
-13,6,0,0,1,626945,0,8023.042,35.23888,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,87.8,10.3,0,86.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.990197,1.609438,,0
-13,6,0,0,2,626945,0,8023.042,36.23888,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,87.8,10.3,0,86.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.990197,1.609438,,0
-13,6,0,0,3,626945,0,8023.042,37.23888,1,12,1,13.72213,0,0,0,0,13.72213,0,0,0,1,0,5,87.8,10.3,0,86.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,86.4,8.990197,1.609438,2.61901,1
-13,6,0,0,1,626946,0,8023.042,14.35181,1,12,1,14.72444,0,17.66933,0,0,32.39377,0,0,0,1,0,5,92.6,6.9,0,80.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,80.7,8.990197,1.609438,3.477966,1
-13,6,0,0,2,626946,0,8023.042,15.35181,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,92.6,6.9,0,80.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,80.7,8.990197,1.609438,,0
-13,6,0,0,3,626946,0,8023.042,16.35181,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,92.6,6.9,0,80.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,80.7,8.990197,1.609438,,0
-13,6,0,0,1,626947,0,8023.042,8.966461,0,12,1,5.469079,6.411443,0,0,0,11.88052,0,0,0,1,0,5,95,10.57626,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.990197,1.609438,2.4749,1
-13,6,0,0,2,626947,0,8023.042,9.966461,0,12,1,0,5.232338,0,0,0,5.232338,0,0,0,0,0,5,95,10.57626,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.990197,1.609438,1.654858,1
-13,6,0,0,3,626947,0,8023.042,10.96646,0,12,1,19.89708,6.00343,0,0,0,25.90051,0,0,0,1,1,5,95,10.57626,0,70.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.4,8.990197,1.609438,3.254263,1
-13,6,0,0,1,626948,0,8023.042,35.68789,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,84.6,6.9,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.990197,1.609438,,0
-13,6,0,0,2,626948,0,8023.042,36.68789,0,12,1,0,4.684548,0,0,0,4.684548,0,0,0,0,0,5,84.6,6.9,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.990197,1.609438,1.54427,1
-13,6,0,0,3,626948,0,8023.042,37.68789,0,12,1,27.44425,5.022298,0,0,0,32.46655,0,0,0,3,0,5,84.6,6.9,0,78.4,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,78.4,8.990197,1.609438,3.48021,1
-13,6,0,0,1,626967,0,10599.08,58.29979,1,11,1,72.94706,178.1409,33.34723,0,0,284.4352,0,0,0,5,1,1,85.1,34.5,1,50,150,209.04,0,0,0,5.342525,1,4.564348,5.061929,0,1,0,50,9.268617,0,5.650506,1
-13,6,0,0,2,626967,0,10599.08,59.29979,1,11,1,63.39085,185.5326,0,0,555.1388,804.0623,1,0,0,6,0,1,85.1,34.5,1,50,150,209.04,0,0,0,5.342525,1,4.564348,5.061929,0,1,0,50,9.268617,0,6.689677,1
-13,6,0,0,3,626967,0,10599.08,60.29979,1,11,1,62.58458,156.3227,0,0,345.0609,563.9682,1,0,0,5,0,1,85.1,34.5,1,50,150,209.04,0,0,0,5.342525,1,4.564348,5.061929,0,1,0,50,9.268617,0,6.334998,1
-13,6,0,0,1,626978,0,4300.051,25.38261,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,62.2,6.9,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,,0
-13,6,0,0,2,626978,0,4300.051,26.38261,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,62.2,6.9,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,,0
-13,6,0,0,3,626978,0,4300.051,27.38261,0,7,1,0,0,0,0,0,0,0,0,0,0,0,3,62.2,6.9,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,,0
-13,6,0,0,1,626979,0,4300.051,22.20397,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,92,3.4,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,,0
-13,6,0,0,2,626979,0,4300.051,23.20397,1,8,1,48.21564,42.50949,0,0,539.4837,630.2088,1,0,0,3,0,3,92,3.4,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,6.446051,1
-13,6,0,0,3,626979,0,4300.051,24.20397,1,8,1,15.57093,51.06574,0,0,0,66.63668,0,0,0,2,0,3,92,3.4,0,85.2,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,85.2,8.366614,1.098612,4.199255,1
-13,6,0,0,1,626980,0,4300.051,6.491444,0,8,1,13.54211,0,0,0,0,13.54211,0,0,0,0,0,3,88.3,10.57626,.1442925,100,450,0,1,0,1.098612,0,1,4.564348,6.160541,1,0,0,100,8.366614,1.098612,2.605804,1
-13,6,0,0,2,626980,0,4300.051,7.491444,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,.1442925,100,450,0,1,0,1.098612,0,1,4.564348,6.160541,1,0,0,100,8.366614,1.098612,,0
-13,6,0,0,3,626980,0,4300.051,8.491445,0,8,1,29.06574,.8442907,0,0,0,29.91003,0,0,0,0,0,3,88.3,10.57626,.1442925,100,450,0,1,0,1.098612,0,1,4.564348,6.160541,1,0,0,100,8.366614,1.098612,3.398194,1
-17,6,25,1,1,626995,0,7335.381,27.64956,1,6,1,12.76053,0,0,0,0,12.76053,0,0,0,1,0,3,79.8,20.7,0,37.5,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,37.5,8.900601,1.098612,2.546357,1
-17,6,25,1,2,626995,0,7335.381,28.64956,1,6,1,185.8779,0,0,0,0,185.8779,0,0,0,4,0,3,79.8,20.7,0,37.5,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,37.5,8.900601,1.098612,5.22509,1
-17,6,25,1,3,626995,0,7335.381,29.64956,1,6,1,18.11847,0,0,0,0,18.11847,0,0,0,1,0,3,79.8,20.7,0,37.5,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,37.5,8.900601,1.098612,2.896932,1
-17,6,25,1,1,626996,0,7335.381,8.29295,1,6,1,0,2.020417,0,0,0,2.020417,0,0,0,0,0,3,86.7,10.57626,0,70.4,692.3,692.3,1,1,1.098612,6.54002,0,3.258096,7.926314,0,0,0,70.4,8.900601,1.098612,.7033038,1
-17,6,25,1,2,626996,0,7335.381,9.29295,1,6,1,29.00763,0,0,0,0,29.00763,0,0,0,0,0,3,86.7,10.57626,0,70.4,692.3,692.3,1,1,1.098612,6.54002,0,3.258096,7.926314,0,0,0,70.4,8.900601,1.098612,3.367559,1
-17,6,25,1,3,626996,0,7335.381,10.29295,1,6,1,14.98258,0,0,0,0,14.98258,0,0,0,0,0,3,86.7,10.57626,0,70.4,692.3,692.3,1,1,1.098612,6.54002,0,3.258096,7.926314,0,0,0,70.4,8.900601,1.098612,2.706888,1
-17,6,25,1,1,626997,0,7335.381,44.35044,0,6,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,10.3,0,69.3,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,69.3,8.900601,1.098612,,0
-17,6,25,1,2,626997,0,7335.381,45.35044,0,6,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,10.3,0,69.3,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,69.3,8.900601,1.098612,,0
-17,6,25,1,3,626997,0,7335.381,46.35044,0,6,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,10.3,0,69.3,692.3,692.3,0,0,1.098612,6.54002,0,3.258096,7.926314,1,0,0,69.3,8.900601,1.098612,,0
-13,6,0,1,1,627004,1,6735.316,25.40452,1,11,1,48.66695,0,0,0,0,48.66695,0,0,0,0,0,4,70.7,6.9,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,88.6,8.815269,1.386294,3.885,1
-13,6,0,1,2,627004,1,6735.316,26.40452,1,11,1,27.7145,6.59833,0,0,0,34.31283,0,0,0,2,0,4,70.7,6.9,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,88.6,8.815269,1.386294,3.535519,1
-13,6,0,1,3,627004,1,6735.316,27.40452,1,11,1,12.45675,0,0,0,0,12.45675,0,0,0,0,0,4,70.7,6.9,0,88.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,88.6,8.815269,1.386294,2.522262,1
-13,6,0,1,1,627005,1,6735.316,3.214237,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,70.4,8.815269,1.386294,,0
-13,6,0,1,2,627005,1,6735.316,4.214237,0,11,1,11.00987,0,0,0,0,11.00987,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,70.4,8.815269,1.386294,2.398792,1
-13,6,0,1,3,627005,1,6735.316,5.214237,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,70.4,8.815269,1.386294,,0
-13,6,0,1,1,627006,1,6735.316,8.079397,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,1,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,48.1,8.815269,1.386294,,0
-13,6,0,1,2,627006,1,6735.316,9.079397,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,1,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,48.1,8.815269,1.386294,,0
-13,6,0,1,3,627006,1,6735.316,10.0794,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,1,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,48.1,8.815269,1.386294,,0
-13,6,0,1,1,627007,1,6735.316,4.939083,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,60,10.57626,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.815269,1.386294,,0
-13,6,0,1,2,627007,1,6735.316,5.939083,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,60,10.57626,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.815269,1.386294,,0
-13,6,0,1,3,627007,1,6735.316,6.939083,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,60,10.57626,0,77.8,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,77.8,8.815269,1.386294,,0
-16,6,95,0,1,627010,1,289.2985,4.815879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,,0
-16,6,95,0,2,627010,1,289.2985,5.815879,1,12,1,18.88931,0,0,0,0,18.88931,0,0,0,2,0,6,77.40034,10.57626,0,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,2.938596,1
-16,6,95,0,3,627010,1,289.2985,6.815879,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,,0
-16,6,95,0,1,627011,1,289.2985,12.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,95,10.57626,.1442925,51.9,99,286,1,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,51.9,5.67091,1.791759,,0
-16,6,95,0,2,627011,1,289.2985,13.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,95,10.57626,.1442925,51.9,99,286,1,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,51.9,5.67091,1.791759,,0
-16,6,95,0,3,627011,1,289.2985,14.59138,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,95,10.57626,.1442925,51.9,99,286,1,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,51.9,5.67091,1.791759,,0
-16,6,95,0,1,627012,1,289.2985,19.85216,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,94.7,0,0,72.6,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,72.6,5.67091,1.791759,,0
-16,6,95,0,2,627012,1,289.2985,20.85216,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,94.7,0,0,72.6,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,72.6,5.67091,1.791759,,0
-16,6,95,0,3,627012,1,289.2985,21.85216,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,94.7,0,0,72.6,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,72.6,5.67091,1.791759,,0
-16,6,95,0,1,627013,1,289.2985,22.71869,1,12,1,11.35886,0,0,0,0,11.35886,0,0,0,1,0,6,54.8,34.5,0,56.8,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,56.8,5.67091,1.791759,2.429998,1
-16,6,95,0,2,627013,1,289.2985,23.71869,1,12,1,56.66793,2.077824,0,0,386.4753,445.221,1,0,0,5,0,6,54.8,34.5,0,56.8,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,56.8,5.67091,1.791759,6.098571,1
-16,6,95,0,3,627013,1,289.2985,24.71869,1,12,1,27.78731,6.106347,0,0,0,33.89365,0,0,0,0,0,6,54.8,34.5,0,56.8,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,0,0,0,56.8,5.67091,1.791759,3.523228,1
-16,6,95,0,1,627014,1,289.2985,45.08693,1,12,1,36.60076,42.23811,0,0,0,78.83887,0,0,0,4,0,6,62.2,27.6,1,54.5,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,1,0,0,54.5,5.67091,1.791759,4.367406,1
-16,6,95,0,2,627014,1,289.2985,46.08693,1,12,1,26.44503,59.23687,24.93389,0,0,110.6158,0,0,0,2,0,6,62.2,27.6,1,54.5,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,1,0,0,54.5,5.67091,1.791759,4.706063,1
-16,6,95,0,3,627014,1,289.2985,47.08693,1,12,1,0,20.01715,0,0,0,20.01715,0,0,0,0,0,6,62.2,27.6,1,54.5,99,286,0,0,1.791759,5.655992,0,4.564348,4.646413,1,0,0,54.5,5.67091,1.791759,2.99659,1
-16,6,95,0,1,627015,1,289.2985,10.7269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,96.7,10.57626,.1442925,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,,0
-16,6,95,0,2,627015,1,289.2985,11.7269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,96.7,10.57626,.1442925,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,,0
-16,6,95,0,3,627015,1,289.2985,12.7269,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,96.7,10.57626,.1442925,70.4,99,286,1,1,1.791759,5.655992,0,4.564348,4.646413,0,0,0,70.4,5.67091,1.791759,,0
-13,6,0,1,1,627016,1,6735.316,11.39767,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.815269,1.791759,,0
-13,6,0,1,2,627016,1,6735.316,12.39767,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.815269,1.791759,,0
-13,6,0,1,3,627016,1,6735.316,13.39767,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.815269,1.791759,,0
-13,6,0,1,4,627016,1,6735.316,14.39767,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.815269,1.791759,,0
-13,6,0,1,5,627016,1,6735.316,15.39767,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,88.3,10.57626,0,77.8,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.815269,1.94591,,0
-13,6,0,1,1,627017,1,6735.316,35.0527,1,11,1,5.985037,3.890274,0,0,0,9.875312,0,0,0,1,0,6,55.3,3.4,0,56.8,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.815269,1.791759,2.290038,1
-13,6,0,1,2,627017,1,6735.316,36.0527,1,11,1,61.77962,0,0,0,0,61.77962,0,0,0,3,0,6,55.3,3.4,0,56.8,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.815269,1.791759,4.123574,1
-13,6,0,1,3,627017,1,6735.316,37.0527,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,55.3,3.4,0,56.8,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.815269,1.791759,,0
-13,6,0,1,4,627017,1,6735.316,38.0527,1,11,1,16.32498,0,0,0,1152.999,1169.324,1,0,0,2,0,6,55.3,3.4,0,56.8,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.815269,1.791759,7.064181,1
-13,6,0,1,5,627017,1,6735.316,39.0527,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,55.3,3.4,0,56.8,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,56.8,8.815269,1.94591,,0
-13,6,0,1,1,627018,1,6735.316,34.51609,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,72.2,3.4,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.815269,1.791759,,0
-13,6,0,1,2,627018,1,6735.316,35.51609,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,72.2,3.4,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.815269,1.791759,,0
-13,6,0,1,3,627018,1,6735.316,36.51609,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,72.2,3.4,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.815269,1.791759,,0
-13,6,0,1,4,627018,1,6735.316,37.51609,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,72.2,3.4,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.815269,1.791759,,0
-13,6,0,1,5,627018,1,6735.316,38.51609,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,72.2,3.4,0,68.2,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,68.2,8.815269,1.94591,,0
-13,6,0,1,1,627019,1,6735.316,1.998631,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.815269,1.791759,,0
-13,6,0,1,2,627019,1,6735.316,2.998631,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.815269,1.791759,,0
-13,6,0,1,3,627019,1,6735.316,3.998631,0,11,1,16.92764,4.020313,0,0,0,20.94795,0,0,0,1,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.815269,1.791759,3.042041,1
-13,6,0,1,4,627019,1,6735.316,4.998631,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,70.4,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.815269,1.791759,,0
-13,6,0,1,5,627019,1,6735.316,5.998631,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,70.4,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.815269,1.94591,,0
-13,6,0,1,1,627020,1,6735.316,13.54962,1,11,1,9.975062,0,0,0,0,9.975062,0,0,0,0,1,6,91.7,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.815269,1.791759,2.300088,1
-13,6,0,1,2,627020,1,6735.316,14.54962,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.815269,1.791759,,0
-13,6,0,1,3,627020,1,6735.316,15.54962,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.815269,1.791759,,0
-13,6,0,1,4,627020,1,6735.316,16.54962,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,10.57626,0,74.1,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.815269,1.791759,,0
-13,6,0,1,5,627020,1,6735.316,17.54962,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,91.7,10.57626,0,74.1,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,74.1,8.815269,1.94591,,0
-13,6,0,1,1,627021,1,6735.316,14.77071,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,59.5,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.5,8.815269,1.791759,,0
-13,6,0,1,2,627021,1,6735.316,15.77071,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,59.5,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.5,8.815269,1.791759,,0
-13,6,0,1,3,627021,1,6735.316,16.7707,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,59.5,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.5,8.815269,1.791759,,0
-13,6,0,1,4,627021,1,6735.316,17.7707,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,3.4,0,59.5,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.5,8.815269,1.791759,,0
-13,6,0,1,5,627021,1,6735.316,18.7707,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70.7,3.4,0,59.5,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.5,8.815269,1.94591,,0
-13,6,0,0,1,627045,0,2840.246,51.80288,0,6,1,23.97981,10.09676,0,0,0,34.07657,0,0,0,0,0,3,84.6,34.5,1,25,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,25,7.951998,1.098612,3.52861,1
-13,6,0,0,2,627045,0,2840.246,52.80288,0,6,1,61.57915,0,0,0,0,61.57915,0,0,0,0,0,3,84.6,34.5,1,25,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,25,7.951998,1.098612,4.120323,1
-13,6,0,0,3,627045,0,2840.246,53.80288,0,6,1,52.14408,13.60206,31.21784,0,544.7684,641.7324,1,1,0,1,0,3,84.6,34.5,1,25,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,25,7.951998,1.098612,6.464171,1
-13,6,0,0,1,627046,0,2840.246,18.74333,0,8,1,11.35886,5.027345,0,0,0,16.3862,0,0,0,0,0,3,58.5,3.4,0,70.5,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,70.5,7.951998,1.098612,2.79644,1
-13,6,0,0,2,627046,0,2840.246,19.74333,0,8,1,66.49036,0,0,0,0,66.49036,0,0,1,0,0,3,58.5,3.4,0,70.5,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,70.5,7.951998,1.098612,4.197057,1
-13,6,0,0,3,627046,0,2840.246,20.74333,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,58.5,3.4,0,70.5,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,70.5,7.951998,1.098612,,0
-13,6,0,0,1,627047,0,2840.246,42.21766,1,6,1,14.72444,26.39462,0,0,0,41.11906,0,0,0,1,0,3,72.3,6.9,1,31.8,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,31.8,7.951998,1.098612,3.716472,1
-13,6,0,0,2,627047,0,2840.246,43.21766,1,6,1,11.33358,31.14847,0,0,843.2188,885.7008,2,0,0,2,0,3,72.3,6.9,1,31.8,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,31.8,7.951998,1.098612,6.786379,1
-13,6,0,0,3,627047,0,2840.246,44.21766,1,6,1,64.494,8.384219,35.67753,0,672.3842,780.9399,2,1,0,1,0,3,72.3,6.9,1,31.8,450,0,0,0,1.098612,0,1,4.564348,6.160541,0,0,1,31.8,7.951998,1.098612,6.660498,1
-16,6,95,0,1,627109,0,3156.17,22.32444,1,13,1,43.58866,0,0,0,0,43.58866,0,0,0,5,0,1,69.7,6.9,0,76.1,639.6,639.6,0,0,0,6.460843,0,4.564348,6.512136,1,0,0,76.1,8.057431,0,3.774797,1
-16,6,95,0,2,627109,0,3156.17,23.32444,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,69.7,6.9,0,76.1,639.6,639.6,0,0,0,6.460843,0,4.564348,6.512136,1,0,0,76.1,8.057431,0,,0
-16,6,95,0,3,627109,0,3156.17,24.32444,1,13,1,0,0,0,0,0,0,0,0,0,0,0,1,69.7,6.9,0,76.1,639.6,639.6,0,0,0,6.460843,0,4.564348,6.512136,1,0,0,76.1,8.057431,0,,0
-10,6,50,0,1,627110,0,1026.626,24.6078,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,3.4,0,84.1,640.5,640.5,0,0,0,6.462249,0,3.931826,7.155396,0,0,0,84.1,6.935006,0,,0
-10,6,50,0,2,627110,0,1026.626,25.6078,1,14,1,6.800151,6.346807,0,0,0,13.14696,0,0,0,1,0,1,79.8,3.4,0,84.1,640.5,640.5,0,0,0,6.462249,0,3.931826,7.155396,0,0,0,84.1,6.935006,0,2.57619,1
-10,6,50,0,3,627110,0,1026.626,26.6078,1,14,1,0,0,0,0,0,0,0,0,0,0,0,1,79.8,3.4,0,84.1,640.5,640.5,0,0,0,6.462249,0,3.931826,7.155396,0,0,0,84.1,6.935006,0,,0
-11,6,0,1,1,627145,0,4485.044,51.93155,1,11,1,405.8474,139.5292,45.58969,0,0,590.9663,0,0,0,40,1,2,77.1,17.2,0,67,0,203.44,0,0,.6931472,5.315371,0,0,0,1,0,0,67,8.408727,.6931472,6.381759,1
-11,6,0,1,2,627145,0,4485.044,52.93155,1,11,1,150.0688,241.7393,0,0,0,391.8082,0,0,0,12,0,2,77.1,17.2,0,67,0,203.44,0,0,.6931472,5.315371,0,0,0,1,0,0,67,8.408727,.6931472,5.970772,1
-11,6,0,1,3,627145,0,4485.044,53.93155,1,11,1,117.7955,215.7636,40.38704,0,0,373.9461,0,0,0,9,1,2,77.1,17.2,0,67,0,203.44,0,0,.6931472,5.315371,0,0,0,1,0,0,67,8.408727,.6931472,5.924112,1
-11,6,0,1,4,627145,0,4485.044,54.93155,1,11,1,436.7208,118.1035,0,0,0,554.8243,0,0,0,9,48,2,77.1,17.2,0,67,0,203.44,0,0,.6931472,5.315371,0,0,0,1,0,0,67,8.408727,.6931472,6.318652,1
-11,6,0,1,5,627145,0,4485.044,55.93155,1,11,1,132.7616,237.6089,42.06861,0,0,412.4391,0,0,0,3,10,2,77.1,17.2,0,67,0,203.44,0,0,.6931472,5.315371,0,0,0,1,0,0,67,8.408727,.6931472,6.022089,1
-11,6,0,1,1,627146,0,4485.044,18.33539,0,5,1,23.29039,0,0,0,0,23.29039,0,0,0,3,0,2,84.6,6.9,0,88.1,0,203.44,0,0,.6931472,5.315371,0,0,0,0,0,0,88.1,8.408727,.6931472,3.148041,1
-11,6,0,1,2,627146,0,4485.044,19.33539,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,84.6,6.9,0,88.1,0,203.44,0,0,.6931472,5.315371,0,0,0,0,0,0,88.1,8.408727,.6931472,,0
-11,6,0,1,3,627146,0,4485.044,20.33539,0,5,1,0,2.419016,0,0,0,2.419016,0,0,0,0,0,2,84.6,6.9,0,88.1,0,203.44,0,0,.6931472,5.315371,0,0,0,0,0,0,88.1,8.408727,.6931472,.8833607,1
-11,6,0,1,4,627146,0,4485.044,21.33539,0,5,1,162.0703,6.460144,7.555724,0,0,176.0861,0,0,0,3,8,2,84.6,6.9,0,88.1,0,203.44,0,0,.6931472,5.315371,0,0,0,0,0,0,88.1,8.408727,.6931472,5.170973,1
-11,6,0,1,5,627146,0,4485.044,22.33539,0,5,1,220.5832,15.46484,0,0,616.1235,852.1715,2,0,0,6,0,2,84.6,6.9,0,88.1,0,203.44,0,0,.6931472,5.315371,0,0,0,0,0,0,88.1,8.408727,.6931472,6.747788,1
-11,6,0,1,1,627151,0,5334.311,17.52225,0,10,1,18.67322,8.152334,0,0,0,26.82555,0,0,0,3,0,6,66,10.3,0,65.9,0,446.16,1,0,1.791759,6.100677,0,0,0,1,0,0,65.9,8.582103,1.791759,3.289355,1
-11,6,0,1,2,627151,0,5334.311,18.52225,0,10,1,69.73564,18.29991,115.3145,0,2309.48,2512.831,1,0,0,2,0,6,66,10.3,0,65.9,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,65.9,8.582103,1.791759,7.829165,1
-11,6,0,1,3,627151,0,5334.311,19.52225,0,10,1,8.336807,19.23718,0,0,0,27.57399,0,0,0,1,0,6,66,10.3,0,65.9,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,65.9,8.582103,1.791759,3.316873,1
-11,6,0,1,4,627151,0,5334.311,20.52225,0,10,1,62.64066,21.66166,0,0,0,84.30232,0,0,0,1,0,6,66,10.3,0,65.9,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,65.9,8.582103,1.791759,4.43441,1
-11,6,0,1,5,627151,0,5334.311,21.52225,0,10,1,0,8.778755,0,0,0,8.778755,0,0,0,0,0,6,66,10.3,0,65.9,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,65.9,8.582103,1.791759,2.172335,1
-11,6,0,0,1,627152,0,5334.311,19.23614,0,8,1,34.39803,8.511057,0,0,0,42.90909,0,0,0,2,0,6,55.9,6.9,0,58,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,58,8.582103,1.791759,3.759084,1
-11,6,0,0,2,627152,0,5334.311,20.23614,0,8,1,11.39471,5.355515,0,0,0,16.75023,0,0,0,0,0,6,55.9,6.9,0,58,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,58,8.582103,1.791759,2.818412,1
-11,6,0,0,3,627152,0,5334.311,21.23614,0,8,1,14.17257,3.334723,0,0,0,17.5073,0,0,0,0,0,6,55.9,6.9,0,58,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,58,8.582103,1.791759,2.862618,1
-11,6,0,0,4,627152,0,5334.311,22.23614,0,8,1,0,0,0,0,0,0,0,0,0,0,0,6,55.9,6.9,0,58,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,58,8.582103,1.791759,,0
-11,6,0,0,5,627152,0,5334.311,23.23614,0,8,1,26.04871,2.317321,0,0,0,28.36604,0,0,0,1,0,6,55.9,6.9,0,58,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,58,8.582103,1.791759,3.345192,1
-11,6,0,1,1,627153,0,5334.311,13.00753,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,60,10.57626,0,55.6,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,55.6,8.582103,1.791759,,0
-11,6,0,1,2,627153,0,5334.311,14.00753,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,60,10.57626,0,55.6,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,55.6,8.582103,1.791759,,0
-11,6,0,1,3,627153,0,5334.311,15.00753,1,10,1,5.002084,2.501042,0,0,0,7.503126,0,0,0,1,0,6,60,10.57626,0,55.6,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,55.6,8.582103,1.791759,2.01532,1
-11,6,0,1,4,627153,0,5334.311,16.00753,1,10,1,10.87772,4.444861,0,0,0,15.32258,0,0,0,0,0,6,60,10.57626,0,55.6,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,55.6,8.582103,1.791759,2.729328,1
-11,6,0,1,5,627153,0,5334.311,17.00753,1,10,1,27.0636,0,0,0,0,27.0636,0,0,0,2,0,6,60,10.57626,0,55.6,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,55.6,8.582103,1.791759,3.29819,1
-11,6,0,1,1,627154,0,5334.311,40.23272,1,10,1,20.63882,0,45.20885,0,0,65.84766,0,0,0,1,1,6,63.8,17.2,0,53.4,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,53.4,8.582103,1.791759,4.187344,1
-11,6,0,1,2,627154,0,5334.311,41.23272,1,10,1,40.56518,38.96992,0,0,0,79.5351,0,0,0,5,0,6,63.8,17.2,0,53.4,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,53.4,8.582103,1.791759,4.376198,1
-11,6,0,1,3,627154,0,5334.311,42.23272,1,10,1,6.252605,55.23135,0,0,0,61.48395,0,0,0,1,0,6,63.8,17.2,0,53.4,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,53.4,8.582103,1.791759,4.118776,1
-11,6,0,1,4,627154,0,5334.311,43.23272,1,10,1,39.75994,26.25657,0,0,0,66.0165,0,0,0,1,0,6,63.8,17.2,0,53.4,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,53.4,8.582103,1.791759,4.189905,1
-11,6,0,1,5,627154,0,5334.311,44.23272,1,10,1,28.75507,63.21042,25.37212,0,406.9689,524.3065,1,0,0,2,0,6,63.8,17.2,0,53.4,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,53.4,8.582103,1.791759,6.262076,1
-11,6,0,1,1,627155,0,5334.311,41.21834,0,8,1,9.82801,0,45.20885,0,0,55.03685,0,0,0,0,1,6,64.4,20.7,0,47.7,0,446.16,0,0,1.791759,6.100677,0,0,0,0,1,0,47.7,8.582103,1.791759,4.008003,1
-11,6,0,1,2,627155,0,5334.311,42.21834,0,8,1,27.8031,60.02735,0,0,0,87.83044,0,0,0,5,0,6,64.4,20.7,0,47.7,0,446.16,0,0,1.791759,6.100677,0,0,0,0,1,0,47.7,8.582103,1.791759,4.475408,1
-11,6,0,1,3,627155,0,5334.311,43.21834,0,8,1,6.252605,56.33597,0,0,0,62.58858,0,0,0,1,0,6,64.4,20.7,0,47.7,0,446.16,0,0,1.791759,6.100677,0,0,0,0,1,0,47.7,8.582103,1.791759,4.136583,1
-11,6,0,1,4,627155,0,5334.311,44.21834,0,8,1,25.13128,33.02701,39.75994,0,0,97.91823,0,0,0,1,0,6,64.4,20.7,0,47.7,0,446.16,0,0,1.791759,6.100677,0,0,0,0,1,0,47.7,8.582103,1.791759,4.584133,1
-11,6,0,1,5,627155,0,5334.311,45.21834,0,8,1,8.11908,27.33424,0,0,0,35.45332,0,0,0,1,0,6,64.4,20.7,0,47.7,0,446.16,0,0,1.791759,6.100677,0,0,0,0,1,0,47.7,8.582103,1.791759,3.568217,1
-11,6,0,1,1,627156,0,5334.311,15.97262,1,10,1,28.00983,5.847666,31.94103,0,0,65.79852,0,0,0,2,1,6,80.9,6.9,0,69.3,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,69.3,8.582103,1.791759,4.186597,1
-11,6,0,1,2,627156,0,5334.311,16.97262,1,10,1,36.46308,16.18049,0,0,0,52.64357,0,0,0,2,0,6,80.9,6.9,0,69.3,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,69.3,8.582103,1.791759,3.963544,1
-11,6,0,1,3,627156,0,5334.311,17.97262,1,10,1,71.69654,30.42935,0,0,0,102.1259,0,0,0,5,0,6,80.9,6.9,0,69.3,0,446.16,1,1,1.791759,6.100677,0,0,0,1,0,0,69.3,8.582103,1.791759,4.626206,1
-11,6,0,1,4,627156,0,5334.311,18.97262,1,10,1,16.50413,27.64441,24.006,0,0,68.15454,0,0,0,2,0,6,80.9,6.9,0,69.3,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,69.3,8.582103,1.791759,4.221778,1
-11,6,0,1,5,627156,0,5334.311,19.97262,1,10,1,95.73748,66.1705,0,0,0,161.908,0,0,0,4,0,6,80.9,6.9,0,69.3,0,446.16,0,0,1.791759,6.100677,0,0,0,1,0,0,69.3,8.582103,1.791759,5.087028,1
-5,6,25,0,1,627207,0,8730.671,29.94114,0,10,1,24.8212,0,0,0,0,24.8212,0,0,0,2,0,4,82.4,6.9,0,71.6,670,670,0,0,1.386294,6.507277,0,3.258096,7.893572,0,1,0,71.6,9.074712,1.386294,3.211698,1
-5,6,25,0,2,627207,0,8730.671,30.94114,0,10,1,127.3139,0,0,0,0,127.3139,0,0,0,1,0,4,82.4,6.9,0,71.6,670,670,0,0,1.386294,6.507277,0,3.258096,7.893572,0,1,0,71.6,9.074712,1.386294,4.846656,1
-5,6,25,0,3,627207,0,8730.671,31.94114,0,10,1,13.37907,0,0,0,0,13.37907,0,0,0,0,0,5,82.4,6.9,0,71.6,670,670,0,0,1.609438,6.507277,0,3.258096,7.893572,0,1,0,71.6,9.074712,1.609438,2.593692,1
-5,6,25,0,1,627208,0,8730.671,7.394935,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,95,10.57626,.1442925,77.8,670,670,1,0,1.386294,6.507277,0,3.258096,7.893572,1,0,0,77.8,9.074712,1.386294,,0
-5,6,25,0,2,627208,0,8730.671,8.394935,0,8,1,44.95655,0,0,0,0,44.95655,0,0,0,2,0,4,95,10.57626,.1442925,77.8,670,670,1,0,1.386294,6.507277,0,3.258096,7.893572,1,0,0,77.8,9.074712,1.386294,3.805696,1
-5,6,25,0,3,627208,0,8730.671,9.394935,0,8,1,59.3482,0,0,0,0,59.3482,0,0,0,3,0,5,95,10.57626,.1442925,77.8,670,670,1,0,1.609438,6.507277,0,3.258096,7.893572,1,0,0,77.8,9.074712,1.609438,4.083422,1
-5,6,25,0,1,627209,0,8730.671,9.886379,1,8,1,14.72444,0,0,0,0,14.72444,0,0,0,1,0,4,93.3,10.57626,.1442925,88.9,670,670,1,1,1.386294,6.507277,0,3.258096,7.893572,1,0,0,88.9,9.074712,1.386294,2.689509,1
-5,6,25,0,2,627209,0,8730.671,10.88638,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,10.57626,.1442925,88.9,670,670,1,1,1.386294,6.507277,0,3.258096,7.893572,1,0,0,88.9,9.074712,1.386294,,0
-5,6,25,0,3,627209,0,8730.671,11.88638,1,8,1,9.948542,4.459691,0,0,0,14.40823,0,0,0,2,0,5,93.3,10.57626,.1442925,88.9,670,670,1,1,1.609438,6.507277,0,3.258096,7.893572,1,0,0,88.9,9.074712,1.609438,2.6678,1
-5,6,25,0,1,627210,0,8730.671,27.21424,1,8,1,61.00126,5.04838,0,0,0,66.04964,0,0,0,2,0,4,86.7,10.3,0,73.9,670,670,0,0,1.386294,6.507277,0,3.258096,7.893572,0,1,0,73.9,9.074712,1.386294,4.190407,1
-5,6,25,0,2,627210,0,8730.671,28.21424,1,8,1,10.57801,3.966755,0,0,750.6611,765.2059,2,0,0,0,0,4,86.7,10.3,0,73.9,670,670,0,0,1.386294,6.507277,0,3.258096,7.893572,0,1,0,73.9,9.074712,1.386294,6.640145,1
-5,6,25,0,3,627210,0,8730.671,29.21424,1,8,1,20.24014,1.715266,0,0,381.8525,403.8079,1,0,0,1,0,5,86.7,10.3,0,73.9,670,670,0,0,1.609438,6.507277,0,3.258096,7.893572,0,1,0,73.9,9.074712,1.609438,6.000939,1
-18,6,25,1,1,627224,0,1896.569,19.70705,1,10,1,72.36564,46.48328,31.31612,0,0,150.165,0,0,0,9,0,5,67,3.4,0,64.8,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,1,0,0,64.8,7.548329,1.609438,5.011735,1
-18,6,25,1,2,627224,0,1896.569,20.70705,1,10,1,59.98481,56.92103,0,0,0,116.9058,0,0,0,5,0,5,67,3.4,0,64.8,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,1,0,0,64.8,7.548329,1.609438,4.761369,1
-18,6,25,1,3,627224,0,1896.569,21.70705,1,10,1,43.94464,52.23529,12.45675,0,750.519,859.1557,1,0,0,4,0,6,67,3.4,0,64.8,173.5,173.5,0,0,1.791759,5.156178,0,3.258096,6.542472,1,0,0,64.8,7.548329,1.791759,6.75595,1
-18,6,25,1,1,627226,0,1896.569,17.02122,0,12,1,39.35675,2.115954,0,0,0,41.47271,0,0,0,0,0,5,77.7,6.9,0,97.7,173.5,173.5,1,0,1.609438,5.156178,0,3.258096,6.542472,0,0,0,97.7,7.548329,1.609438,3.725035,1
-18,6,25,1,2,627226,0,1896.569,18.02122,0,12,1,43.65983,4.396355,0,0,0,48.05619,0,0,0,0,0,5,77.7,6.9,0,97.7,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,0,0,0,97.7,7.548329,1.609438,3.872371,1
-18,6,25,1,3,627226,0,1896.569,19.02122,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.7,6.9,0,97.7,173.5,173.5,0,0,1.791759,5.156178,0,3.258096,6.542472,0,0,0,97.7,7.548329,1.791759,,0
-18,6,25,1,1,627227,0,1896.569,44.51745,1,12,1,24.12188,84.68049,0,0,0,108.8024,0,0,0,3,0,5,45.2,24.1,1,47.7,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,0,1,0,47.7,7.548329,1.609438,4.689533,1
-18,6,25,1,2,627227,0,1896.569,45.51745,1,12,1,28.4738,110.5277,0,0,0,139.0015,0,0,0,4,0,5,45.2,24.1,1,47.7,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,0,1,0,47.7,7.548329,1.609438,4.934485,1
-18,6,25,1,3,627227,0,1896.569,46.51745,1,12,1,53.2872,60.91003,35.29412,0,498.9619,648.4533,1,0,0,5,0,6,45.2,24.1,1,47.7,173.5,173.5,0,0,1.791759,5.156178,0,3.258096,6.542472,0,1,0,47.7,7.548329,1.791759,6.47459,1
-18,6,25,1,1,627228,0,1896.569,18.42574,1,9,1,37.66399,39.91536,0,0,0,77.57935,0,0,0,4,0,5,31.9,6.9,0,73.9,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,1,0,0,73.9,7.548329,1.609438,4.351301,1
-18,6,25,1,2,627228,0,1896.569,19.42574,1,9,1,18.98254,10.44039,0,0,609.0699,638.4928,1,0,0,0,0,5,31.9,6.9,0,73.9,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,1,0,0,73.9,7.548329,1.609438,6.45911,1
-18,6,25,1,3,627228,0,1896.569,20.42574,1,9,1,6.228374,22.97578,0,0,0,29.20415,0,0,0,1,0,6,31.9,6.9,0,73.9,173.5,173.5,0,0,1.791759,5.156178,0,3.258096,6.542472,1,0,0,73.9,7.548329,1.791759,3.374311,1
-18,6,25,1,1,627229,0,1896.569,50.48323,0,16,1,9.310199,137.7148,0,0,0,147.025,0,0,0,1,0,5,91,17.2,1,75,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,0,0,0,75,7.548329,1.609438,4.990602,1
-18,6,25,1,2,627229,0,1896.569,51.48323,0,16,1,5.31511,133.6447,0,0,0,138.9598,0,0,0,1,0,5,91,17.2,1,75,173.5,173.5,0,0,1.609438,5.156178,0,3.258096,6.542472,0,0,0,75,7.548329,1.609438,4.934185,1
-18,6,25,1,3,627229,0,1896.569,52.48323,0,16,1,21.79931,143.474,39.66436,0,0,204.9377,0,0,0,2,0,6,91,17.2,1,75,173.5,173.5,0,0,1.791759,5.156178,0,3.258096,6.542472,0,0,0,75,7.548329,1.791759,5.322706,1
-16,6,95,0,1,627239,1,1725.55,26.29706,0,5,1,0,0,0,0,0,0,0,0,0,0,0,3,54.3,6.9,0,57.5,756,0,0,0,1.098612,0,0,4.564348,6.679335,1,0,0,57.5,7.453881,1.098612,,0
-16,6,95,0,2,627239,1,1725.55,27.29706,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,54.3,6.9,0,57.5,756,0,0,0,1.386294,0,0,4.564348,6.679335,1,0,0,57.5,7.453881,1.386294,,0
-16,6,95,0,3,627239,1,1725.55,28.29706,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,54.3,6.9,0,57.5,756,0,0,0,1.386294,0,0,4.564348,6.679335,1,0,0,57.5,7.453881,1.386294,,0
-16,6,95,0,1,627240,1,1725.55,24.30664,1,12,1,0,0,0,0,295.3872,295.3872,1,0,0,0,0,3,38.8,17.2,0,59.1,756,0,0,0,1.098612,0,0,4.564348,6.679335,0,1,0,59.1,7.453881,1.098612,5.688287,1
-16,6,95,0,2,627240,1,1725.55,25.30664,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,38.8,17.2,0,59.1,756,0,0,0,1.386294,0,0,4.564348,6.679335,0,1,0,59.1,7.453881,1.386294,,0
-16,6,95,0,3,627240,1,1725.55,26.30664,1,12,1,0,1.449827,0,0,0,1.449827,0,0,0,0,0,4,38.8,17.2,0,59.1,756,0,0,0,1.386294,0,0,4.564348,6.679335,0,1,0,59.1,7.453881,1.386294,.3714442,1
-16,6,95,0,1,627241,1,1725.55,3.195072,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,64.8,756,0,1,1,1.098612,0,0,4.564348,6.679335,0,0,0,64.8,7.453881,1.098612,,0
-16,6,95,0,2,627241,1,1725.55,4.195072,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,64.8,756,0,1,1,1.386294,0,0,4.564348,6.679335,0,0,0,64.8,7.453881,1.386294,,0
-16,6,95,0,3,627241,1,1725.55,5.195072,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,64.8,756,0,1,1,1.386294,0,0,4.564348,6.679335,0,0,0,64.8,7.453881,1.386294,,0
-15,6,95,1,1,627247,1,9989.247,34.69405,0,12,1,222.4585,4.147171,0,0,0,226.6057,0,0,0,2,28,4,65.4,3.4,0,90.9,350,350,0,0,1.386294,5.857933,0,4.564348,5.909226,1,0,0,90.9,9.209365,1.386294,5.423212,1
-15,6,95,1,1,627248,1,9989.247,11.75086,1,12,1,9.783071,0,0,0,0,9.783071,0,0,0,1,0,4,68.3,10.57626,1,51.9,350,350,1,1,1.386294,5.857933,0,4.564348,5.909226,1,0,0,51.9,9.209365,1.386294,2.280653,1
-15,6,95,1,1,627249,1,9989.247,3.986311,0,12,1,12.76053,6.061251,0,0,0,18.82178,0,0,0,2,0,4,77.40034,10.57626,0,70.4,350,350,1,0,1.386294,5.857933,0,4.564348,5.909226,1,0,0,70.4,9.209365,1.386294,2.935014,1
-15,6,95,1,1,627250,1,9989.247,33.21287,1,12,1,45.51255,8.430455,0,0,0,53.943,0,0,0,3,0,4,64.9,10.3,1,69.3,350,350,0,0,1.386294,5.857933,0,4.564348,5.909226,1,0,0,69.3,9.209365,1.386294,3.987928,1
-13,6,0,0,1,627265,1,6735.316,22.54073,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.2,0,0,95.5,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,95.5,8.815269,1.098612,,0
-13,6,0,0,2,627265,1,6735.316,23.54073,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.2,0,0,95.5,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,95.5,8.815269,1.098612,,0
-13,6,0,0,3,627265,1,6735.316,24.54073,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,70.2,0,0,95.5,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,95.5,8.815269,1.098612,,0
-13,6,0,0,1,627266,1,213.5177,16.33402,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,78.2,0,0,82.1,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,82.1,5.368392,1.94591,,0
-13,6,0,0,2,627266,1,213.5177,17.33402,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,78.2,0,0,82.1,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,82.1,5.368392,2.079442,,0
-13,6,0,0,3,627266,1,213.5177,18.33402,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,78.2,0,0,82.1,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,82.1,5.368392,2.079442,,0
-13,6,0,0,1,627267,1,213.5177,43.57837,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,89.9,10.3,0,84.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,84.1,5.368392,1.94591,,0
-13,6,0,0,2,627267,1,213.5177,44.57837,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,89.9,10.3,0,84.1,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,84.1,5.368392,2.079442,,0
-13,6,0,0,3,627267,1,213.5177,45.57837,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,89.9,10.3,0,84.1,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,84.1,5.368392,2.079442,,0
-13,6,0,0,1,627268,1,213.5177,41.78234,1,10,1,19.46678,0,30.89293,0,0,50.35971,0,0,0,1,1,7,88.3,6.9,0,,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,1,0,0,86.4,5.368392,1.94591,3.919191,1
-13,6,0,0,2,627268,1,213.5177,42.78234,1,10,1,7.213364,0,0,0,0,7.213364,0,0,0,0,0,8,88.3,6.9,0,,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,86.4,5.368392,2.079442,1.975935,1
-13,6,0,0,3,627268,1,213.5177,43.78234,1,10,1,8.650519,0,32.87197,0,0,41.52249,0,0,0,0,1,8,88.3,6.9,0,,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,1,0,0,86.4,5.368392,2.079442,3.726235,1
-13,6,0,0,1,627269,1,213.5177,14.69678,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,100,10.57626,0,81.5,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,81.5,5.368392,1.94591,,0
-13,6,0,0,2,627269,1,213.5177,15.69678,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,100,10.57626,0,81.5,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,81.5,5.368392,2.079442,,0
-13,6,0,0,3,627269,1,213.5177,16.69678,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,100,10.57626,0,81.5,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,81.5,5.368392,2.079442,,0
-13,6,0,0,1,627270,1,213.5177,13.14168,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,51.9,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,51.9,5.368392,1.94591,,0
-13,6,0,0,2,627270,1,213.5177,14.14168,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,86.7,10.57626,0,51.9,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,0,0,0,51.9,5.368392,2.079442,,0
-13,6,0,0,3,627270,1,213.5177,15.14168,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,86.7,10.57626,0,51.9,450,450,1,1,2.079442,6.109248,1,4.564348,6.160541,0,0,0,51.9,5.368392,2.079442,,0
-13,6,0,0,1,627271,1,213.5177,17.83984,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,72.3,0,0,84.1,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,84.1,5.368392,1.94591,,0
-13,6,0,0,2,627271,1,213.5177,18.83984,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,72.3,0,0,84.1,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,84.1,5.368392,2.079442,,0
-13,6,0,0,3,627271,1,213.5177,19.83984,1,10,1,32.17993,0,0,0,428.3737,460.5536,1,0,0,0,0,8,72.3,0,0,84.1,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,84.1,5.368392,2.079442,6.132429,1
-13,6,0,0,1,627272,1,213.5177,19.49897,1,10,1,8.463818,0,0,0,0,8.463818,1,1,0,0,0,7,71.3,0,0,73.9,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,73.9,5.368392,1.94591,2.1358,1
-13,6,0,0,2,627272,1,213.5177,20.49897,1,10,1,0,4.745634,0,0,0,4.745634,0,0,0,0,0,8,71.3,0,0,73.9,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,73.9,5.368392,2.079442,1.557225,1
-13,6,0,0,3,627272,1,213.5177,21.49897,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,71.3,0,0,73.9,450,450,0,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,73.9,5.368392,2.079442,,0
-11,6,0,1,1,627299,0,4264.209,28.93908,1,16,1,75.32797,163.0343,0,0,0,238.3623,0,0,0,6,0,1,63.3,6.9,1,22.7,0,30,0,0,0,3.401197,0,0,0,0,0,1,22.7,8.358247,0,5.473792,1
-11,6,0,1,2,627299,0,4264.209,29.93908,1,16,1,80.29613,73.49658,0,0,4009.112,4162.904,1,0,0,8,0,1,63.3,6.9,1,22.7,0,30,0,0,0,3.401197,0,0,0,0,0,1,22.7,8.358247,0,8.333968,1
-11,6,0,1,3,627299,0,4264.209,30.93908,1,16,1,110.3806,53.3737,32.87197,0,1222.145,1418.772,2,0,0,3,1,1,63.3,6.9,1,22.7,0,30,0,0,0,3.401197,0,0,0,0,0,1,22.7,8.358247,0,7.257547,1
-7,6,25,1,1,627367,1,4681.525,12.76934,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,48.1,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,48.1,8.451592,1.386294,,0
-7,6,25,1,2,627367,1,4681.525,13.76934,0,11,1,10.02735,0,0,0,0,10.02735,0,0,0,0,0,4,85,10.57626,0,48.1,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,48.1,8.451592,1.386294,2.305316,1
-7,6,25,1,3,627367,1,4681.525,14.76934,0,11,1,44.18508,3.180492,0,0,0,47.36557,0,0,0,3,0,4,85,10.57626,0,48.1,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,48.1,8.451592,1.386294,3.857896,1
-7,6,25,1,4,627367,1,4681.525,15.76934,0,11,1,26.25657,3.447112,0,0,0,29.70368,0,0,0,1,0,4,85,10.57626,0,48.1,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,48.1,8.451592,1.386294,3.391271,1
-7,6,25,1,5,627367,1,4681.525,16.76934,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,48.1,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,48.1,8.451592,1.386294,,0
-7,6,25,1,1,627368,1,4681.525,33.69199,1,11,1,0,12.64865,0,0,0,12.64865,0,0,0,0,0,4,80.9,6.9,0,64.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,64.5,8.451592,1.386294,2.53755,1
-7,6,25,1,2,627368,1,4681.525,34.69199,1,11,1,9.11577,0,29.62625,0,0,38.74202,0,0,0,0,1,4,80.9,6.9,0,64.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,64.5,8.451592,1.386294,3.656925,1
-7,6,25,1,3,627368,1,4681.525,35.69199,1,11,1,9.170487,0,0,0,0,9.170487,0,0,0,1,0,4,80.9,6.9,0,64.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,64.5,8.451592,1.386294,2.215991,1
-7,6,25,1,4,627368,1,4681.525,36.69199,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,6.9,0,64.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,64.5,8.451592,1.386294,,0
-7,6,25,1,5,627368,1,4681.525,37.69199,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,6.9,0,64.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,64.5,8.451592,1.386294,,0
-7,6,25,1,1,627369,1,4681.525,37.22382,0,12,1,0,3.921376,0,0,0,3.921376,0,0,0,0,0,4,95.2,0,0,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.451592,1.386294,1.366443,1
-7,6,25,1,2,627369,1,4681.525,38.22382,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95.2,0,0,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.451592,1.386294,,0
-7,6,25,1,3,627369,1,4681.525,39.22382,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95.2,0,0,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.451592,1.386294,,0
-7,6,25,1,4,627369,1,4681.525,40.22382,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95.2,0,0,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.451592,1.386294,,0
-7,6,25,1,5,627369,1,4681.525,41.22382,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,95.2,0,0,70.5,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.5,8.451592,1.386294,,0
-11,6,0,0,1,627370,0,13767.03,23.1896,1,10,1,64.78754,26.81952,0,0,0,91.60707,0,0,0,3,0,3,75.5,13.8,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,9.530105,1.098612,4.517509,1
-11,6,0,0,2,627370,0,13767.03,24.1896,1,10,1,4.533434,36.64526,0,0,430.6762,471.8549,1,0,0,1,0,3,75.5,13.8,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,9.530105,1.098612,6.156672,1
-11,6,0,0,3,627370,0,13767.03,25.1896,1,10,1,0,4.116638,0,0,0,4.116638,0,0,0,0,0,4,75.5,13.8,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.530105,1.386294,1.415037,1
-11,6,0,0,1,627371,0,13767.03,6.332649,1,10,1,13.04165,3.575936,0,0,88.76736,105.3849,1,0,0,1,0,3,76.7,10.57626,.1442925,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,9.530105,1.098612,4.65762,1
-11,6,0,0,2,627371,0,13767.03,7.332649,1,10,1,21.15602,6.233472,0,0,0,27.3895,0,0,0,0,0,3,76.7,10.57626,.1442925,85.2,0,0,1,1,1.098612,0,0,0,0,0,0,0,85.2,9.530105,1.098612,3.31016,1
-11,6,0,0,3,627371,0,13767.03,8.332649,1,10,1,57.63293,12.95026,0,0,0,70.58319,0,0,0,2,0,4,76.7,10.57626,.1442925,85.2,0,0,1,1,1.386294,0,0,0,0,0,0,0,85.2,9.530105,1.386294,4.256792,1
-11,6,0,0,1,627372,0,13767.03,27.31828,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,79.3,0,0,85.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.2,9.530105,1.098612,,0
-11,6,0,0,2,627372,0,13767.03,28.31828,0,12,1,104.8357,1.261806,0,0,0,106.0975,0,0,0,1,0,3,79.3,0,0,85.2,0,0,0,0,1.098612,0,0,0,0,0,0,0,85.2,9.530105,1.098612,4.664358,1
-11,6,0,0,3,627372,0,13767.03,29.31828,0,12,1,5.488851,0,0,0,0,5.488851,0,0,0,1,0,4,79.3,0,0,85.2,0,0,0,0,1.386294,0,0,0,0,0,0,0,85.2,9.530105,1.386294,1.702719,1
-13,6,0,1,1,627388,1,9834.102,5.544148,0,13,1,47.21395,0,0,0,0,47.21395,0,0,0,2,0,5,90,10.57626,0,81.5,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.193713,1.609438,3.854689,1
-13,6,0,1,2,627388,1,9834.102,6.544148,0,13,1,4.580153,3.541985,0,0,0,8.122137,0,0,0,1,0,5,90,10.57626,0,81.5,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.193713,1.609438,2.094593,1
-13,6,0,1,3,627388,1,9834.102,7.544148,0,13,1,28.223,0,0,0,0,28.223,0,0,0,1,0,5,90,10.57626,0,81.5,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,81.5,9.193713,1.609438,3.340137,1
-13,6,0,1,1,627389,1,9834.102,9.475701,1,13,1,127.6053,8.294343,0,0,0,135.8996,0,0,0,3,0,5,88.3,10.57626,0,66.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.193713,1.609438,4.911916,1
-13,6,0,1,2,627389,1,9834.102,10.4757,1,13,1,9.160305,2.320611,0,0,0,11.48092,0,0,0,2,0,5,88.3,10.57626,0,66.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.193713,1.609438,2.440686,1
-13,6,0,1,3,627389,1,9834.102,11.4757,1,13,1,8.36237,14.93031,0,0,0,23.29268,0,0,0,2,0,5,88.3,10.57626,0,66.7,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,1,0,0,66.7,9.193713,1.609438,3.148139,1
-13,6,0,1,1,627390,1,9834.102,31.58385,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,0,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.193713,1.609438,,0
-13,6,0,1,2,627390,1,9834.102,32.58385,0,13,1,20.99237,0,1.908397,0,0,22.90076,0,0,0,2,0,5,61.7,0,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.193713,1.609438,3.13117,1
-13,6,0,1,3,627390,1,9834.102,33.58385,0,13,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,0,0,67,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,67,9.193713,1.609438,,0
-13,6,0,1,1,627391,1,9834.102,31.18686,1,13,1,110.5912,60.24245,0,0,0,170.8337,0,0,0,3,0,5,76.1,10.3,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.193713,1.609438,5.14069,1
-13,6,0,1,2,627391,1,9834.102,32.18686,1,13,1,226.3359,40.72519,3.076336,0,0,270.1374,0,0,0,16,0,5,76.1,10.3,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.193713,1.609438,5.598931,1
-13,6,0,1,3,627391,1,9834.102,33.18686,1,13,1,34.3554,3.466899,3.362369,0,0,41.18467,0,0,0,12,0,5,76.1,10.3,0,65.9,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.193713,1.609438,3.718066,1
-17,6,25,0,1,627400,0,9584.741,14.33265,1,10,1,160.9004,11.6882,0,0,0,172.5886,0,0,0,5,0,3,84,6.9,0,72.7,602.55,602.55,1,1,1.098612,6.401171,0,3.258096,7.787465,1,0,0,72.7,9.168032,1.098612,5.15091,1
-17,6,25,0,2,627400,0,9584.741,15.33265,1,10,1,38.25956,0,0,0,0,38.25956,0,0,0,1,0,3,84,6.9,0,72.7,602.55,602.55,1,1,1.098612,6.401171,0,3.258096,7.787465,1,0,0,72.7,9.168032,1.098612,3.644393,1
-17,6,25,0,3,627400,0,9584.741,16.33265,1,10,1,44.31664,2.503383,0,0,0,46.82003,0,0,0,1,0,3,84,6.9,0,72.7,602.55,602.55,1,1,1.098612,6.401171,0,3.258096,7.787465,1,0,0,72.7,9.168032,1.098612,3.846311,1
-17,6,25,0,1,627402,0,9584.741,41.90554,0,8,1,0,3.051271,0,0,0,3.051271,0,0,0,0,0,3,82.4,17.2,0,69.3,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,69.3,9.168032,1.098612,1.115558,1
-17,6,25,0,2,627402,0,9584.741,42.90554,0,8,1,24.94374,0,2.663166,0,0,27.6069,0,0,0,0,0,3,82.4,17.2,0,69.3,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,69.3,9.168032,1.098612,3.318066,1
-17,6,25,0,3,627402,0,9584.741,43.90554,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,17.2,0,69.3,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,69.3,9.168032,1.098612,,0
-17,6,25,0,1,627403,0,9584.741,37.97947,1,10,1,2.084202,2.484369,0,0,0,4.56857,0,0,0,0,0,3,81.4,20.7,0,83,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,83,9.168032,1.098612,1.5192,1
-17,6,25,0,2,627403,0,9584.741,38.97947,1,10,1,15.00375,0,36.75919,0,0,51.76294,0,0,0,1,0,3,81.4,20.7,0,83,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,83,9.168032,1.098612,3.946674,1
-17,6,25,0,3,627403,0,9584.741,39.97947,1,10,1,38.56563,4.43843,0,0,0,43.00406,0,0,0,3,0,3,81.4,20.7,0,83,602.55,602.55,0,0,1.098612,6.401171,0,3.258096,7.787465,1,0,0,83,9.168032,1.098612,3.761295,1
-11,6,0,1,1,627421,0,15191.2,57.80151,1,12,1,130.3271,84.03865,0,0,0,214.3657,0,0,0,11,0,1,64.9,6.9,1,59.1,0,153,0,0,0,5.030438,0,0,0,1,0,0,59.1,9.628537,0,5.367683,1
-11,6,0,1,2,627421,0,15191.2,58.80151,1,12,1,62.41395,94.32767,53.23543,0,0,209.9771,0,0,0,11,1,1,64.9,6.9,1,59.1,0,153,0,0,0,5.030438,0,0,0,1,0,0,59.1,9.628537,0,5.346998,1
-11,6,0,1,3,627421,0,15191.2,59.80151,1,12,1,88.76736,158.9651,0,0,0,247.7324,0,0,0,9,0,1,64.9,6.9,1,59.1,0,153,0,0,0,5.030438,0,0,0,1,0,0,59.1,9.628537,0,5.512349,1
-11,6,0,1,4,627421,0,15191.2,60.80151,1,12,1,57.4235,177.6275,43.8232,0,389.1198,667.994,1,0,0,7,1,1,64.9,6.9,1,59.1,0,153,0,0,0,5.030438,0,0,0,1,0,0,59.1,9.628537,0,6.504279,1
-11,6,0,1,5,627421,0,15191.2,61.80151,1,12,1,39.45111,188.5283,30.87479,0,0,258.8542,0,0,0,2,1,1,64.9,6.9,1,59.1,0,153,0,0,0,5.030438,0,0,0,1,0,0,59.1,9.628537,0,5.556265,1
-13,6,0,1,1,627428,1,6735.316,18.52156,0,8,1,0,0,0,0,0,0,0,0,0,0,0,10,86.2,0,0,75,450,150,0,0,2.302585,5.010635,1,4.564348,6.160541,1,0,0,75,8.815269,2.302585,,0
-13,6,0,1,1,627429,1,6735.316,12.23819,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,98.3,10.57626,0,74.1,450,150,1,1,2.302585,5.010635,1,4.564348,6.160541,0,1,0,74.1,8.815269,2.302585,,0
-13,6,0,1,2,627429,1,6735.316,13.23819,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,98.3,10.57626,0,74.1,450,150,1,1,2.197225,5.010635,1,4.564348,6.160541,0,1,0,74.1,8.815269,2.197225,,0
-13,6,0,1,3,627429,1,6735.316,14.23819,1,12,1,44.31664,0,0,0,0,44.31664,0,0,0,0,0,7,98.3,10.57626,0,74.1,450,150,1,1,1.94591,5.010635,1,4.564348,6.160541,0,1,0,74.1,8.815269,1.94591,3.79136,1
-13,6,0,1,1,627430,1,6735.316,16.07118,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,64.9,10.57626,0,59.1,450,150,1,0,2.302585,5.010635,1,4.564348,6.160541,0,1,0,59.1,8.815269,2.302585,,0
-13,6,0,1,2,627430,1,6735.316,17.07118,0,12,1,40.13503,0,7.014254,0,0,47.14929,0,0,0,3,0,9,64.9,10.57626,0,59.1,450,150,1,0,2.197225,5.010635,1,4.564348,6.160541,0,1,0,59.1,8.815269,2.197225,3.853319,1
-13,6,0,1,3,627430,1,6735.316,18.07118,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,64.9,10.57626,0,59.1,450,150,0,0,1.94591,5.010635,1,4.564348,6.160541,0,1,0,59.1,8.815269,1.94591,,0
-13,6,0,1,1,627431,1,6735.316,10.72142,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,70,10.57626,0,66.7,450,150,1,1,2.302585,5.010635,1,4.564348,6.160541,1,0,0,66.7,8.815269,2.302585,,0
-13,6,0,1,2,627431,1,6735.316,11.72142,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,70,10.57626,0,66.7,450,150,1,1,2.197225,5.010635,1,4.564348,6.160541,1,0,0,66.7,8.815269,2.197225,,0
-13,6,0,1,1,627432,1,6735.316,43.44422,1,12,1,5.002084,0,0,0,0,5.002084,0,0,0,1,0,10,48.9,13.8,1,35.2,450,150,0,0,2.302585,5.010635,1,4.564348,6.160541,1,0,0,35.2,8.815269,2.302585,1.609855,1
-13,6,0,1,2,627432,1,6735.316,44.44422,1,12,1,190.5476,9.39985,38.63466,0,1208.177,1446.759,2,0,0,29,0,9,48.9,13.8,1,35.2,450,150,0,0,2.197225,5.010635,1,4.564348,6.160541,1,0,0,35.2,8.815269,2.197225,7.277081,1
-13,6,0,1,3,627432,1,6735.316,45.44422,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,48.9,13.8,1,35.2,450,150,0,0,1.94591,5.010635,1,4.564348,6.160541,1,0,0,35.2,8.815269,1.94591,,0
-13,6,0,1,1,627433,1,6735.316,19.93703,1,10,1,0,0,0,0,0,0,0,0,0,0,0,10,52.7,17.2,0,50,450,150,0,0,2.302585,5.010635,1,4.564348,6.160541,0,0,0,50,8.815269,2.302585,,0
-13,6,0,1,2,627433,1,6735.316,20.93703,1,10,1,0,0,0,0,0,0,0,0,0,0,0,9,52.7,17.2,0,50,450,150,0,0,2.197225,5.010635,1,4.564348,6.160541,0,0,0,50,8.815269,2.197225,,0
-13,6,0,1,3,627433,1,6735.316,21.93703,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,52.7,17.2,0,50,450,150,0,0,1.94591,5.010635,1,4.564348,6.160541,0,0,0,50,8.815269,1.94591,,0
-13,6,0,1,1,627434,1,6735.316,46.29432,0,4,1,177.1572,40.97541,42.03835,0,6574.406,6834.577,3,0,0,0,0,10,53.2,20.7,0,40.5,450,150,0,0,2.302585,5.010635,1,4.564348,6.160541,1,0,0,40.5,8.815269,2.302585,8.82975,1
-13,6,0,1,2,627434,1,6735.316,47.29432,0,4,1,67.51688,90.55889,31.11403,0,2477.119,2666.309,2,0,0,6,0,9,53.2,20.7,0,40.5,450,150,0,0,2.197225,5.010635,1,4.564348,6.160541,1,0,0,40.5,8.815269,2.197225,7.888451,1
-13,6,0,1,1,627435,1,6735.316,13.39083,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,85,10.57626,0,66.7,450,150,1,0,2.302585,5.010635,1,4.564348,6.160541,1,0,0,66.7,8.815269,2.302585,,0
-13,6,0,1,2,627435,1,6735.316,14.39083,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,85,10.57626,0,66.7,450,150,1,0,2.197225,5.010635,1,4.564348,6.160541,1,0,0,66.7,8.815269,2.197225,,0
-13,6,0,1,3,627435,1,6735.316,15.39083,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,66.7,450,150,1,0,1.94591,5.010635,1,4.564348,6.160541,1,0,0,66.7,8.815269,1.94591,,0
-13,6,0,0,1,627465,0,3349.206,58.51609,1,11,1,166.7376,10.52744,8.507018,0,0,185.772,0,0,0,2,16,2,88.3,10.3,1,56.8,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,1,0,0,56.8,8.116777,.6931472,5.22452,1
-13,6,0,0,2,627465,0,3349.206,59.51609,1,11,1,151.5267,13.77863,26.71756,0,0,192.0229,0,0,0,0,21,2,88.3,10.3,1,56.8,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,1,0,0,56.8,8.116777,.6931472,5.257615,1
-13,6,0,0,3,627465,0,3349.206,60.51609,1,11,1,160.6272,110.0871,35.75958,0,0,306.4739,0,0,0,8,17,2,88.3,10.3,1,56.8,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,1,0,0,56.8,8.116777,.6931472,5.725132,1
-13,6,0,0,1,627466,0,3349.206,61.10883,0,13,1,102.0842,0,101.4972,0,0,203.5815,0,0,0,0,10,2,94.1,0,0,61.4,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,0,0,0,61.4,8.116777,.6931472,5.316066,1
-13,6,0,0,2,627466,0,3349.206,62.10883,0,13,1,180.5343,0,26.71756,0,0,207.2519,0,0,0,5,10,2,94.1,0,0,61.4,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,0,0,0,61.4,8.116777,.6931472,5.333935,1
-13,6,0,0,3,627466,0,3349.206,63.10883,0,13,1,36.58537,2.700348,35.75958,0,0,75.0453,0,0,0,1,5,2,94.1,0,0,61.4,300,150,0,0,.6931472,5.010635,1,4.564348,5.755076,0,0,0,61.4,8.116777,.6931472,4.318092,1
-11,6,0,1,1,627475,0,9348.694,35.48528,0,14,1,136.963,84.01106,0,0,0,220.9741,0,0,0,12,5,5,73.9,13.8,0,76.1,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.1,9.143099,1.609438,5.398046,1
-11,6,0,1,2,627475,0,9348.694,36.48528,0,14,1,90.07633,36.35496,32.06107,0,0,158.4924,0,0,0,8,0,5,73.9,13.8,0,76.1,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.1,9.143099,1.609438,5.065706,1
-11,6,0,1,3,627475,0,9348.694,37.48528,0,14,1,72.8223,25.58885,0,0,0,98.41115,0,0,0,8,0,5,73.9,13.8,0,76.1,0,0,0,0,1.609438,0,0,0,0,0,0,0,76.1,9.143099,1.609438,4.589154,1
-11,6,0,1,1,627476,0,9348.694,4.84052,1,12,1,217.7797,14.35559,11.05912,0,0,243.1944,0,0,0,8,30,5,77.40034,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,5.493861,1
-11,6,0,1,2,627476,0,9348.694,5.84052,1,12,1,17.17557,7.954198,11.1145,0,323.5687,359.813,1,0,0,4,0,5,77.40034,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,5.885584,1
-11,6,0,1,3,627476,0,9348.694,6.84052,1,12,1,6.968641,0,0,0,0,6.968641,0,0,0,2,0,5,77.40034,10.57626,0,85.2,0,0,1,1,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,1.94142,1
-11,6,0,1,1,627477,0,9348.694,31.84394,1,12,1,52.53084,44.31306,32.73501,0,0,129.5789,0,0,0,8,0,5,88.8,17.2,0,79.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,79.5,9.143099,1.609438,4.86429,1
-11,6,0,1,2,627477,0,9348.694,32.84394,1,12,1,162.2137,1.812977,0,0,0,164.0267,0,0,0,3,12,5,88.8,17.2,0,79.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,79.5,9.143099,1.609438,5.100029,1
-11,6,0,1,3,627477,0,9348.694,33.84394,1,12,1,31.70732,3.222996,0,0,0,34.93031,0,0,0,3,0,5,88.8,17.2,0,79.5,0,0,0,0,1.609438,0,0,0,0,0,0,0,79.5,9.143099,1.609438,3.553355,1
-11,6,0,1,1,627478,0,9348.694,8.416153,0,12,1,15.73798,16.58869,0,0,0,32.32667,0,0,0,3,0,5,93.3,10.57626,0,74.1,0,0,1,0,1.609438,0,0,0,0,0,0,0,74.1,9.143099,1.609438,3.475893,1
-11,6,0,1,2,627478,0,9348.694,9.416153,0,12,1,43.89313,14.02672,1.022901,0,324.9237,383.8664,1,0,0,6,0,5,93.3,10.57626,0,74.1,0,0,1,0,1.609438,0,0,0,0,0,0,0,74.1,9.143099,1.609438,5.950294,1
-11,6,0,1,3,627478,0,9348.694,10.41615,0,12,1,19.16376,2.073171,25.78397,0,0,47.0209,0,0,0,2,0,5,93.3,10.57626,0,74.1,0,0,1,0,1.609438,0,0,0,0,0,0,0,74.1,9.143099,1.609438,3.850592,1
-16,6,95,0,1,627492,0,10337.43,11.6742,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,92.6,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,,0
-16,6,95,0,2,627492,0,10337.43,12.6742,1,11,1,33.62297,0,1.133358,0,0,34.75633,0,0,0,6,0,8,85,10.57626,0,92.6,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,3.548362,1
-16,6,95,0,3,627492,0,10337.43,13.6742,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,92.6,1000,1000,1,1,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,,0
-16,6,95,0,1,627493,0,10337.43,14.07803,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,90,10.57626,0,92.6,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,,0
-16,6,95,0,2,627493,0,10337.43,15.07803,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,90,10.57626,0,92.6,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,,0
-16,6,95,0,3,627493,0,10337.43,16.07803,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,90,10.57626,0,92.6,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,92.6,9.243624,2.079442,,0
-16,6,95,0,1,627494,0,10337.43,3.405886,0,11,1,130.8372,0,0,0,0,130.8372,0,0,0,2,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.243624,2.079442,4.873954,1
-16,6,95,0,2,627494,0,10337.43,4.405886,0,11,1,53.64564,0,0,0,279.184,332.8296,1,0,0,2,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.243624,2.079442,5.807631,1
-16,6,95,0,3,627494,0,10337.43,5.405886,0,11,1,102.2298,0,0,0,0,102.2298,0,0,0,4,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.243624,2.079442,4.627223,1
-16,6,95,0,1,627495,0,10337.43,32.83231,1,11,1,19.35213,0,0,0,0,19.35213,0,0,0,2,0,8,43.6,3.4,0,67,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,67,9.243624,2.079442,2.962802,1
-16,6,95,0,2,627495,0,10337.43,33.83231,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,43.6,3.4,0,67,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,67,9.243624,2.079442,,0
-16,6,95,0,3,627495,0,10337.43,34.83231,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,43.6,3.4,0,67,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,67,9.243624,2.079442,,0
-16,6,95,0,1,627496,0,10337.43,33.34702,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8,62.8,0,0,88.6,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,88.6,9.243624,2.079442,,0
-16,6,95,0,2,627496,0,10337.43,34.34702,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8,62.8,0,0,88.6,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,88.6,9.243624,2.079442,,0
-16,6,95,0,3,627496,0,10337.43,35.34702,0,4,1,21.2693,0,0,0,0,21.2693,0,0,0,0,0,8,62.8,0,0,88.6,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,88.6,9.243624,2.079442,3.057265,1
-16,6,95,0,1,627497,0,10337.43,10.71595,0,11,1,22.29701,0,0,0,0,22.29701,0,0,0,0,0,8,85,10.57626,0,48.1,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.243624,2.079442,3.104453,1
-16,6,95,0,2,627497,0,10337.43,11.71595,0,11,1,58.17907,0,0,0,0,58.17907,0,0,0,3,0,8,85,10.57626,0,48.1,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.243624,2.079442,4.063526,1
-16,6,95,0,3,627497,0,10337.43,12.71595,0,11,1,389.7084,0,0,0,689.8799,1079.588,1,0,0,2,0,8,85,10.57626,0,48.1,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,1,0,0,48.1,9.243624,2.079442,6.984335,1
-11,6,0,1,1,627530,.5112414,7290.834,21.83436,1,12,1,31.97308,2.629365,0,0,0,34.60244,0,0,0,2,0,3,86.2,0,0,85.2,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,85.2,8.89451,1.098612,3.543924,1
-11,6,0,1,2,627530,.5112414,7290.834,22.83436,1,12,1,5.289006,0,0,0,0,5.289006,0,0,0,1,0,3,86.2,0,0,85.2,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,85.2,8.89451,1.098612,1.66563,1
-11,6,0,1,3,627530,.5112414,7290.834,23.83436,1,12,1,26.41509,4.373928,0,0,366.3808,397.1698,1,0,0,2,0,3,86.2,0,0,85.2,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,85.2,8.89451,1.098612,5.984364,1
-13,6,0,1,1,627532,1,4247.507,52.15332,1,3,1,3.685504,0,0,0,0,3.685504,0,0,0,1,0,7,75.4,31,1,34.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,34.1,8.354323,1.94591,1.304407,1
-13,6,0,1,2,627532,1,4247.507,53.15332,1,3,1,7.292616,0,0,0,373.2908,380.5834,1,0,0,2,0,7,75.4,31,1,34.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,34.1,8.354323,1.94591,5.941705,1
-13,6,0,1,3,627532,1,4247.507,54.15332,1,3,1,37.51563,0,0,0,1205.919,1243.435,1,0,0,7,0,7,75.4,31,1,34.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,34.1,8.354323,1.94591,7.125633,1
-13,6,0,1,4,627532,1,4247.507,55.15332,1,3,1,19.12978,0,0,0,0,19.12978,0,0,0,1,0,7,75.4,31,1,34.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,34.1,8.354323,1.94591,2.951246,1
-13,6,0,1,5,627532,1,4247.507,56.15332,1,3,1,6.7659,11.5088,0,0,0,18.2747,0,0,0,2,0,7,75.4,31,1,34.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,34.1,8.354323,1.94591,2.905517,1
-13,6,0,1,1,627533,1,4247.507,21.0705,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,0,0,67,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,67,8.354323,1.94591,,0
-13,6,0,1,2,627533,1,4247.507,22.0705,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,0,0,67,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,67,8.354323,1.94591,,0
-13,6,0,1,3,627533,1,4247.507,23.0705,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,0,0,67,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,67,8.354323,1.94591,,0
-13,6,0,1,4,627533,1,4247.507,24.0705,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,0,0,67,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,67,8.354323,1.94591,,0
-13,6,0,1,5,627533,1,4247.507,25.0705,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,0,0,67,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,67,8.354323,1.94591,,0
-13,6,0,1,1,627536,1,4247.507,19.37029,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,3.4,0,71.4,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,71.4,8.354323,1.94591,,0
-13,6,0,1,2,627536,1,4247.507,20.37029,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,3.4,0,71.4,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,71.4,8.354323,1.94591,,0
-13,6,0,1,3,627536,1,4247.507,21.37029,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,3.4,0,71.4,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,71.4,8.354323,1.94591,,0
-13,6,0,1,4,627536,1,4247.507,22.37029,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,3.4,0,71.4,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,71.4,8.354323,1.94591,,0
-13,6,0,1,5,627536,1,4247.507,23.37029,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,73.4,3.4,0,71.4,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,71.4,8.354323,1.94591,,0
-13,6,0,1,1,627537,1,4247.507,17.18001,1,3,1,39.31204,0,0,0,0,39.31204,0,0,0,1,0,7,83,10.3,0,63.6,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,1,0,63.6,8.354323,1.94591,3.671531,1
-13,6,0,1,2,627537,1,4247.507,18.18001,1,3,1,30.99362,0,0,0,0,30.99362,0,0,0,2,0,7,83,10.3,0,63.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,63.6,8.354323,1.94591,3.433781,1
-13,6,0,1,3,627537,1,4247.507,19.18001,1,3,1,15.00625,0,0,0,0,15.00625,0,0,0,1,0,7,83,10.3,0,63.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,63.6,8.354323,1.94591,2.708467,1
-13,6,0,1,4,627537,1,4247.507,20.18001,1,3,1,22.13053,19.93999,0,0,0,42.07052,0,0,0,2,0,7,83,10.3,0,63.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,63.6,8.354323,1.94591,3.739347,1
-13,6,0,1,5,627537,1,4247.507,21.18001,1,3,1,30.44655,15.12179,0,0,0,45.56834,0,0,0,2,0,7,83,10.3,0,63.6,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,63.6,8.354323,1.94591,3.819213,1
-13,6,0,1,1,627539,1,4247.507,12.92813,0,3,1,0,0,0,0,0,0,0,0,0,0,0,7,76.7,10.57626,0,66.7,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.354323,1.94591,,0
-13,6,0,1,2,627539,1,4247.507,13.92813,0,3,1,13.67366,0,0,0,0,13.67366,0,0,0,1,0,7,76.7,10.57626,0,66.7,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.354323,1.94591,2.615471,1
-13,6,0,1,3,627539,1,4247.507,14.92813,0,3,1,0,0,0,0,0,0,0,0,0,0,0,7,76.7,10.57626,0,66.7,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.354323,1.94591,,0
-13,6,0,1,4,627539,1,4247.507,15.92813,0,3,1,0,0,0,0,0,0,0,0,0,0,0,7,76.7,10.57626,0,66.7,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.354323,1.94591,,0
-13,6,0,1,5,627539,1,4247.507,16.92813,0,3,1,0,0,0,0,0,0,0,0,0,0,0,7,76.7,10.57626,0,66.7,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.354323,1.94591,,0
-6,6,25,1,1,627600,1,11735.28,12.63518,1,17,1,22.09254,9.378908,0,0,0,31.47145,0,0,0,2,0,5,100,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,3.449081,1
-6,6,25,1,2,627600,1,11735.28,13.63518,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,,0
-6,6,25,1,3,627600,1,11735.28,14.63518,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,,0
-6,6,25,1,1,627601,1,11735.28,14.43395,0,17,1,82.11755,20.77115,0,0,0,102.8887,0,0,0,3,0,5,91.7,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.37044,1.609438,4.633648,1
-6,6,25,1,2,627601,1,11735.28,15.43395,0,17,1,28.88222,0,0,0,0,28.88222,0,0,0,3,0,5,91.7,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.37044,1.609438,3.363226,1
-6,6,25,1,3,627601,1,11735.28,16.43395,0,17,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.37044,1.609438,,0
-6,6,25,1,1,627602,1,11735.28,32.27105,0,16,1,0,3.418091,0,0,0,3.418091,0,0,0,0,0,5,63.3,3.4,1,48.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,48.9,9.37044,1.609438,1.229082,1
-6,6,25,1,2,627602,1,11735.28,33.27105,0,16,1,22.13053,11.06527,0,0,0,33.1958,0,0,0,3,0,5,63.3,3.4,1,48.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,48.9,9.37044,1.609438,3.502423,1
-6,6,25,1,3,627602,1,11735.28,34.27105,0,16,1,39.58051,5.074425,37.24966,0,0,81.9046,0,0,0,3,0,5,63.3,3.4,1,48.9,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,48.9,9.37044,1.609438,4.405555,1
-6,6,25,1,1,627603,1,11735.28,33.98768,1,17,1,32.09671,6.773656,0,0,828.0533,866.9237,1,0,0,3,0,5,94.1,27.6,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.37044,1.609438,6.764951,1
-6,6,25,1,2,627603,1,11735.28,34.98768,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,27.6,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.37044,1.609438,,0
-6,6,25,1,3,627603,1,11735.28,35.98768,1,17,1,0,0,0,0,0,0,0,0,0,0,0,5,94.1,27.6,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,72.7,9.37044,1.609438,,0
-13,6,0,0,1,627616,1,0,25.9165,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,74.3,3.4,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,,0
-13,6,0,0,2,627616,1,0,26.9165,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,74.3,3.4,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,,0
-13,6,0,0,3,627616,1,0,27.9165,0,7,1,11.49826,3.41115,0,0,0,14.90941,0,0,0,0,0,5,74.3,3.4,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,2.701993,1
-13,6,0,1,1,627617,1,0,19.85489,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,6.9,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,,0
-13,6,0,1,2,627617,1,0,20.85489,1,9,1,15.26718,8.641221,0,0,0,23.9084,0,0,0,1,0,5,73.4,6.9,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,3.17423,1
-13,6,0,1,3,627617,1,0,21.85489,1,9,1,5.923345,8.909408,0,0,798.2578,813.0906,1,0,0,1,0,5,73.4,6.9,0,69.3,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,69.3,0,1.609438,6.700842,1
-13,6,0,1,1,627618,1,0,3.649555,1,9,1,8.932369,0,0,0,0,8.932369,0,0,0,1,0,5,77.40034,10.57626,0,85.2,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,85.2,0,1.609438,2.189682,1
-13,6,0,1,2,627618,1,0,4.649555,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,85.2,0,1.609438,,0
-13,6,0,1,3,627618,1,0,5.649555,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,85.2,0,1.609438,,0
-14,6,95,1,1,627711,1,9537.635,14.59548,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,3.4,0,75,640,640,1,1,1.609438,6.461468,0,4.564348,6.512762,1,0,0,75,9.163106,1.609438,,0
-14,6,95,1,2,627711,1,9537.635,15.59548,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,3.4,0,75,640,640,1,1,1.609438,6.461468,0,4.564348,6.512762,1,0,0,75,9.163106,1.609438,,0
-14,6,95,1,3,627711,1,9537.635,16.59548,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,3.4,0,75,640,640,1,1,1.609438,6.461468,0,4.564348,6.512762,1,0,0,75,9.163106,1.609438,,0
-14,6,95,1,1,627713,1,9537.635,13.10062,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,92.6,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,92.6,9.163106,1.609438,,0
-14,6,95,1,2,627713,1,9537.635,14.10062,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,92.6,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,92.6,9.163106,1.609438,,0
-14,6,95,1,3,627713,1,9537.635,15.10062,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,92.6,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,92.6,9.163106,1.609438,,0
-14,6,95,1,1,627714,1,9537.635,37.18002,1,12,1,0,0,33.00889,0,0,33.00889,0,0,0,0,0,5,73.4,24.1,1,47.6,640,640,0,0,1.609438,6.461468,0,4.564348,6.512762,1,0,0,47.6,9.163106,1.609438,3.496777,1
-14,6,95,1,2,627714,1,9537.635,38.18002,1,12,1,26.1959,0,0,0,0,26.1959,0,0,0,1,0,5,73.4,24.1,1,47.6,640,640,0,0,1.609438,6.461468,0,4.564348,6.512762,1,0,0,47.6,9.163106,1.609438,3.265603,1
-14,6,95,1,3,627714,1,9537.635,39.18002,1,12,1,10.72664,0,0,0,0,10.72664,0,0,0,0,0,5,73.4,24.1,1,47.6,640,640,0,0,1.609438,6.461468,0,4.564348,6.512762,1,0,0,47.6,9.163106,1.609438,2.372731,1
-14,6,95,1,1,627715,1,9537.635,17.0486,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,3.4,0,67,640,640,1,1,1.609438,6.461468,0,4.564348,6.512762,1,0,0,67,9.163106,1.609438,,0
-14,6,95,1,2,627715,1,9537.635,18.0486,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,3.4,0,67,640,640,0,0,1.609438,6.461468,0,4.564348,6.512762,1,0,0,67,9.163106,1.609438,,0
-14,6,95,1,3,627715,1,9537.635,19.0486,1,12,1,0,0,0,0,12.11073,12.11073,1,1,0,0,0,5,75,3.4,0,67,640,640,0,0,1.609438,6.461468,0,4.564348,6.512762,1,0,0,67,9.163106,1.609438,2.494092,1
-14,6,95,1,1,627716,1,9537.635,7.134839,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,10.57626,0,85.2,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,85.2,9.163106,1.609438,,0
-14,6,95,1,2,627716,1,9537.635,8.134839,0,12,1,11.76917,0,0,0,0,11.76917,0,0,0,0,0,5,75,10.57626,0,85.2,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,85.2,9.163106,1.609438,2.465484,1
-14,6,95,1,3,627716,1,9537.635,9.134839,0,12,1,18.68512,0,0,0,0,18.68512,0,0,0,0,0,5,75,10.57626,0,85.2,640,640,1,0,1.609438,6.461468,0,4.564348,6.512762,0,0,0,85.2,9.163106,1.609438,2.927727,1
-13,6,0,1,1,627717,0,7954.941,8.388775,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.981674,1.386294,,0
-13,6,0,1,2,627717,0,7954.941,9.388775,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.981674,1.386294,,0
-13,6,0,1,3,627717,0,7954.941,10.38877,1,13,1,17.83876,3.530017,0,0,0,21.36878,0,0,0,1,0,4,85,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.981674,1.386294,3.061931,1
-13,6,0,1,1,627718,0,7954.941,29.16359,1,13,1,21.03492,0,0,0,0,21.03492,0,0,0,1,0,4,77.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.981674,1.386294,3.046184,1
-13,6,0,1,2,627718,0,7954.941,30.16359,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.981674,1.386294,,0
-13,6,0,1,3,627718,0,7954.941,31.16359,1,13,1,7.54717,4.559176,0,0,0,12.10635,0,0,0,1,0,4,77.1,10.3,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.981674,1.386294,2.49373,1
-13,6,0,1,1,627719,0,7954.941,31.33744,0,14,1,25.2419,0,0,0,0,25.2419,0,0,0,0,0,4,74.5,13.8,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.981674,1.386294,3.228505,1
-13,6,0,1,2,627719,0,7954.941,32.33744,0,14,1,7.555724,0,0,0,0,7.555724,0,0,0,1,0,4,74.5,13.8,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.981674,1.386294,2.022305,1
-13,6,0,1,3,627719,0,7954.941,33.33744,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,74.5,13.8,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,8.981674,1.386294,,0
-11,6,0,0,1,627725,0,3916.539,8.071184,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,.1442925,100,0,124.32,1,0,.6931472,4.822859,0,0,0,0,0,0,100,8.273219,.6931472,,0
-11,6,0,0,2,627725,0,3916.539,9.071184,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,96.7,10.57626,.1442925,100,0,124.32,1,0,.6931472,4.822859,0,0,0,0,0,0,100,8.273219,.6931472,,0
-11,6,0,0,3,627725,0,3916.539,10.07118,0,12,1,16.26298,3.685121,0,0,0,19.9481,0,0,0,3,0,2,96.7,10.57626,.1442925,100,0,124.32,1,0,.6931472,4.822859,0,0,0,0,0,0,100,8.273219,.6931472,2.993134,1
-11,6,0,0,1,627726,0,3916.539,46.78987,1,12,1,10.57977,13.22471,33.85527,0,0,57.65976,0,0,0,0,1,2,81.9,10.3,0,89.8,0,124.32,0,0,.6931472,4.822859,0,0,0,0,0,0,89.8,8.273219,.6931472,4.054559,1
-11,6,0,0,2,627726,0,3916.539,47.78987,1,12,1,18.98254,73.22703,0,0,0,92.20956,0,0,0,1,1,2,81.9,10.3,0,89.8,0,124.32,0,0,.6931472,4.822859,0,0,0,0,0,0,89.8,8.273219,.6931472,4.524064,1
-11,6,0,0,3,627726,0,3916.539,48.78987,1,12,1,169.8962,88.59862,34.60208,0,1874.74,2167.837,2,0,0,9,1,2,81.9,10.3,0,89.8,0,124.32,0,0,.6931472,4.822859,0,0,0,0,0,0,89.8,8.273219,.6931472,7.681485,1
-11,6,0,1,1,627744,1,5922.683,44.99384,1,3,1,134.2226,57.87828,0,0,0,192.1009,0,0,0,7,0,5,63.3,17.2,0,44.3,0,154.8,0,0,1.609438,5.042134,0,0,0,0,0,1,44.3,8.686713,1.609438,5.25802,1
-11,6,0,1,2,627744,1,5922.683,45.99384,1,3,1,240.8102,60.08627,31.88297,0,886.7217,1219.501,2,0,0,9,1,5,63.3,17.2,0,44.3,0,154.8,0,0,1.609438,5.042134,0,0,0,0,0,1,44.3,8.686713,1.609438,7.106197,1
-11,6,0,1,3,627744,1,5922.683,46.99384,1,3,1,117.659,55.93708,0,0,0,173.5961,0,0,0,5,0,5,63.3,17.2,0,44.3,0,154.8,0,0,1.609438,5.042134,0,0,0,0,0,1,44.3,8.686713,1.609438,5.156731,1
-11,6,0,1,1,627745,1,5922.683,48.0794,0,3,1,43.76824,2.146728,0,0,0,45.91496,0,0,0,3,0,5,74.5,10.3,0,63.6,0,154.8,0,0,1.609438,5.042134,0,0,0,1,0,0,63.6,8.686713,1.609438,3.826791,1
-11,6,0,1,2,627745,1,5922.683,49.0794,0,3,1,77.26932,0,0,0,0,77.26932,0,0,0,2,0,5,74.5,10.3,0,63.6,0,154.8,0,0,1.609438,5.042134,0,0,0,1,0,0,63.6,8.686713,1.609438,4.347297,1
-11,6,0,1,3,627745,1,5922.683,50.0794,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5,74.5,10.3,0,63.6,0,154.8,0,0,1.609438,5.042134,0,0,0,1,0,0,63.6,8.686713,1.609438,,0
-11,6,0,1,1,627746,1,5922.683,17.36071,1,3,1,67.52814,10.94206,0,0,0,78.4702,0,0,0,3,0,5,68.1,13.8,0,51.1,0,154.8,1,1,1.609438,5.042134,0,0,0,0,1,0,51.1,8.686713,1.609438,4.362719,1
-11,6,0,1,2,627746,1,5922.683,18.36071,1,3,1,68.26707,7.051763,0,0,0,75.31883,0,0,0,1,0,5,68.1,13.8,0,51.1,0,154.8,0,0,1.609438,5.042134,0,0,0,0,1,0,51.1,8.686713,1.609438,4.32173,1
-11,6,0,1,3,627746,1,5922.683,19.36071,1,3,1,66.81326,13.49797,0,0,0,80.31123,0,0,0,3,0,5,68.1,13.8,0,51.1,0,154.8,0,0,1.609438,5.042134,0,0,0,0,1,0,51.1,8.686713,1.609438,4.38591,1
-11,6,0,1,1,627747,1,5922.683,15.1321,1,3,1,88.37016,15.94414,0,0,0,104.3143,0,0,0,2,0,5,61.7,13.8,0,59.1,0,154.8,1,1,1.609438,5.042134,0,0,0,1,0,0,59.1,8.686713,1.609438,4.647408,1
-11,6,0,1,2,627747,1,5922.683,16.1321,1,3,1,130.9077,25.95649,0,0,0,156.8642,0,0,0,6,0,5,61.7,13.8,0,59.1,0,154.8,1,1,1.609438,5.042134,0,0,0,1,0,0,59.1,8.686713,1.609438,5.05538,1
-11,6,0,1,3,627747,1,5922.683,17.1321,1,3,1,59.20162,19.53654,0,0,488.8363,567.5744,1,0,0,4,0,5,61.7,13.8,0,59.1,0,154.8,1,1,1.609438,5.042134,0,0,0,1,0,0,59.1,8.686713,1.609438,6.341372,1
-11,6,0,1,1,627748,1,5922.683,9.960301,0,3,1,116.7153,6.773656,0,0,0,123.489,0,0,0,7,0,5,83.3,10.57626,0,74.1,0,154.8,1,0,1.609438,5.042134,0,0,0,1,0,0,74.1,8.686713,1.609438,4.816152,1
-11,6,0,1,2,627748,1,5922.683,10.9603,0,3,1,107.2768,2.006752,26.25657,0,0,135.5401,0,0,0,5,1,5,83.3,10.57626,0,74.1,0,154.8,1,0,1.609438,5.042134,0,0,0,1,0,0,74.1,8.686713,1.609438,4.909268,1
-11,6,0,1,3,627748,1,5922.683,11.9603,0,3,1,79.83762,3.366035,2.537212,0,0,85.74087,0,0,0,4,0,5,83.3,10.57626,0,74.1,0,154.8,1,0,1.609438,5.042134,0,0,0,1,0,0,74.1,8.686713,1.609438,4.45133,1
-11,6,0,0,1,627761,1,6735.316,14.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,52.1,6.9,0,62.5,0,0,1,0,2.302585,0,0,0,0,1,0,0,62.5,8.815269,2.302585,,0
-11,6,0,0,2,627761,1,6735.316,15.22313,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,52.1,6.9,0,62.5,0,0,1,0,2.197225,0,0,0,0,1,0,0,62.5,8.815269,2.197225,,0
-11,6,0,0,3,627761,1,6735.316,16.22313,0,12,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,9,52.1,6.9,0,62.5,0,0,1,0,2.197225,0,0,0,0,1,0,0,62.5,8.815269,2.197225,2.358944,1
-11,6,0,0,4,627761,1,6735.316,17.22313,0,12,1,7.593014,0,0,0,0,7.593014,0,0,0,1,0,9,52.1,6.9,0,62.5,0,0,1,0,2.197225,0,0,0,0,1,0,0,62.5,8.815269,2.197225,2.027229,1
-11,6,0,0,5,627761,1,6735.316,18.22313,0,12,1,24.91349,5.550173,0,0,0,30.46367,0,0,0,3,0,9,52.1,6.9,0,62.5,0,0,0,0,2.197225,0,0,0,0,1,0,0,62.5,8.815269,2.197225,3.416535,1
-11,6,0,0,1,627762,1,6735.316,13.09788,1,12,1,0,.7930174,0,0,0,.7930174,0,0,0,0,0,10,71.7,10.57626,0,66.7,0,0,1,1,2.302585,0,0,0,0,1,0,0,66.7,8.815269,2.302585,-.23191,1
-11,6,0,0,2,627762,1,6735.316,14.09788,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,71.7,10.57626,0,66.7,0,0,1,1,2.197225,0,0,0,0,1,0,0,66.7,8.815269,2.197225,,0
-11,6,0,0,3,627762,1,6735.316,15.09788,1,12,1,0,.8463817,0,0,0,.8463817,0,0,0,0,0,9,71.7,10.57626,0,66.7,0,0,1,1,2.197225,0,0,0,0,1,0,0,66.7,8.815269,2.197225,-.1667848,1
-11,6,0,0,4,627762,1,6735.316,16.09788,1,12,1,19.36219,6.529993,0,0,0,25.89218,0,0,0,3,0,9,71.7,10.57626,0,66.7,0,0,1,1,2.197225,0,0,0,0,1,0,0,66.7,8.815269,2.197225,3.253941,1
-11,6,0,0,5,627762,1,6735.316,17.09788,1,12,1,6.920415,4.013841,0,0,0,10.93426,0,0,0,1,0,9,71.7,10.57626,0,66.7,0,0,1,1,2.197225,0,0,0,0,1,0,0,66.7,8.815269,2.197225,2.391901,1
-11,6,0,0,1,627763,1,6735.316,17.38535,0,12,1,12.46883,8.703242,0,0,367.0823,388.2544,1,0,0,2,0,10,73.4,6.9,0,67,0,0,1,0,2.302585,0,0,0,0,1,0,0,67,8.815269,2.302585,5.961661,1
-11,6,0,0,1,627764,1,6735.316,11.92334,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,81.7,10.57626,0,70.4,0,0,1,1,2.302585,0,0,0,0,1,0,0,70.4,8.815269,2.302585,,0
-11,6,0,0,2,627764,1,6735.316,12.92334,1,12,1,0,1.470724,0,0,0,1.470724,0,0,0,0,0,9,81.7,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,.3857547,1
-11,6,0,0,3,627764,1,6735.316,13.92334,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,81.7,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,0,4,627764,1,6735.316,14.92334,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,81.7,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,0,5,627764,1,6735.316,15.92334,1,12,1,16.609,10.10381,0,0,0,26.7128,0,0,0,2,0,9,81.7,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,3.285143,1
-11,6,0,0,1,627765,1,6735.316,16.12047,1,12,1,0,2.334165,0,0,0,2.334165,0,0,0,0,0,10,60.6,3.4,0,64.8,0,0,1,1,2.302585,0,0,0,0,1,0,0,64.8,8.815269,2.302585,.847654,1
-11,6,0,0,2,627765,1,6735.316,17.12047,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,60.6,3.4,0,64.8,0,0,1,1,2.197225,0,0,0,0,1,0,0,64.8,8.815269,2.197225,,0
-11,6,0,0,3,627765,1,6735.316,18.12047,1,12,1,23.2755,25.20948,0,0,0,48.48498,0,0,0,3,0,9,60.6,3.4,0,64.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,64.8,8.815269,2.197225,3.881254,1
-11,6,0,0,4,627765,1,6735.316,19.12047,1,12,1,20.59605,20.01519,0,0,0,40.61124,0,0,0,1,0,9,60.6,3.4,0,64.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,64.8,8.815269,2.197225,3.704045,1
-11,6,0,0,5,627765,1,6735.316,20.12047,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,60.6,3.4,0,64.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,64.8,8.815269,2.197225,,0
-11,6,0,0,1,627766,1,6735.316,53.21287,0,10,1,0,0,0,0,0,0,0,0,0,0,0,10,73.4,13.8,0,75,0,0,0,0,2.302585,0,0,0,0,1,0,0,75,8.815269,2.302585,,0
-11,6,0,0,2,627766,1,6735.316,54.21287,0,10,1,24.89627,32.72937,0,0,195.9428,253.5685,1,1,0,4,0,9,73.4,13.8,0,75,0,0,0,0,2.197225,0,0,0,0,1,0,0,75,8.815269,2.197225,5.535634,1
-11,6,0,0,3,627766,1,6735.316,55.21287,0,10,1,75.32797,31.33305,0,0,0,106.661,0,0,0,10,0,9,73.4,13.8,0,75,0,0,0,0,2.197225,0,0,0,0,1,0,0,75,8.815269,2.197225,4.669656,1
-11,6,0,0,4,627766,1,6735.316,56.21287,0,10,1,59.98481,78.94457,0,0,0,138.9294,0,0,0,10,0,9,73.4,13.8,0,75,0,0,0,0,2.197225,0,0,0,0,1,0,0,75,8.815269,2.197225,4.933966,1
-11,6,0,0,5,627766,1,6735.316,57.21287,0,10,1,72.31834,66.15917,33.56401,0,0,172.0415,0,0,0,9,0,9,73.4,13.8,0,75,0,0,0,0,2.197225,0,0,0,0,1,0,0,75,8.815269,2.197225,5.147736,1
-11,6,0,0,1,627767,1,6735.316,45.30595,1,12,1,80.29926,2.857855,0,0,0,83.1571,0,0,0,7,0,10,65.4,17.2,0,56.8,0,0,0,0,2.302585,0,0,0,0,1,0,0,56.8,8.815269,2.302585,4.420732,1
-11,6,0,0,2,627767,1,6735.316,46.30595,1,12,1,18.44168,10.62241,0,0,0,29.06409,0,0,0,2,0,9,65.4,17.2,0,56.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,56.8,8.815269,2.197225,3.369503,1
-11,6,0,0,3,627767,1,6735.316,47.30595,1,12,1,6.347863,7.173085,0,0,0,13.52095,0,0,0,1,0,9,65.4,17.2,0,56.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,56.8,8.815269,2.197225,2.60424,1
-11,6,0,0,4,627767,1,6735.316,48.30595,1,12,1,14.42673,0,0,0,0,14.42673,0,0,0,1,0,9,65.4,17.2,0,56.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,56.8,8.815269,2.197225,2.669083,1
-11,6,0,0,5,627767,1,6735.316,49.30595,1,12,1,51.55709,33.35986,0,0,0,84.91695,0,0,0,6,0,9,65.4,17.2,0,56.8,0,0,0,0,2.197225,0,0,0,0,1,0,0,56.8,8.815269,2.197225,4.441674,1
-11,6,0,0,1,627768,1,6735.316,9.823409,1,12,1,0,1.451372,0,0,0,1.451372,0,0,0,0,0,10,87.3,10.57626,0,77.8,0,0,1,1,2.302585,0,0,0,0,1,0,0,77.8,8.815269,2.302585,.372509,1
-11,6,0,0,2,627768,1,6735.316,10.82341,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,87.3,10.57626,0,77.8,0,0,1,1,2.197225,0,0,0,0,1,0,0,77.8,8.815269,2.197225,,0
-11,6,0,0,3,627768,1,6735.316,11.82341,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,87.3,10.57626,0,77.8,0,0,1,1,2.197225,0,0,0,0,1,0,0,77.8,8.815269,2.197225,,0
-11,6,0,0,4,627768,1,6735.316,12.82341,1,12,1,6.454062,0,0,0,0,6.454062,0,0,0,1,0,9,87.3,10.57626,0,77.8,0,0,1,1,2.197225,0,0,0,0,1,0,0,77.8,8.815269,2.197225,1.86471,1
-11,6,0,0,5,627768,1,6735.316,13.82341,1,12,1,20.0692,8.280277,0,0,0,28.34948,0,0,0,3,0,9,87.3,10.57626,0,77.8,0,0,1,1,2.197225,0,0,0,0,1,0,0,77.8,8.815269,2.197225,3.344609,1
-11,6,0,0,1,627785,1,6735.316,31.83299,1,12,1,367.3297,20.16928,27.59204,0,1038.934,1454.025,1,0,0,5,36,3,81.4,13.8,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,8.815269,1.098612,7.282091,1
-11,6,0,0,2,627785,1,6735.316,32.83299,1,12,1,189.8254,7.406986,0,0,940.0152,1137.248,1,0,0,6,13,3,81.4,13.8,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,8.815269,1.098612,7.036366,1
-11,6,0,0,3,627785,1,6735.316,33.83299,1,12,1,278.5467,6.027682,28.38754,0,0,312.9619,0,0,0,3,25,3,81.4,13.8,0,72.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,72.7,8.815269,1.098612,5.746082,1
-11,6,0,0,1,627786,1,6735.316,3.022587,0,12,1,19.04359,1.231485,27.50741,0,0,47.78248,0,0,0,1,1,3,77.40034,10.57626,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.815269,1.098612,3.866659,1
-11,6,0,0,2,627786,1,6735.316,4.022587,0,12,1,73.65224,10.05315,0,0,0,83.70539,0,0,0,4,11,3,77.40034,10.57626,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.815269,1.098612,4.427303,1
-11,6,0,0,3,627786,1,6735.316,5.022587,0,12,1,101.7301,1.179931,19.72318,0,0,122.6332,0,0,0,0,10,3,77.40034,10.57626,0,96.3,0,0,1,0,1.098612,0,0,0,0,0,0,0,96.3,8.815269,1.098612,4.809198,1
-11,6,0,0,1,627787,1,6735.316,33.76591,0,12,1,242.0652,24.07533,8.463818,0,0,274.6043,0,0,0,2,32,3,77.1,17.2,0,64.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.8,8.815269,1.098612,5.615331,1
-11,6,0,0,2,627787,1,6735.316,34.76591,0,12,1,276.7654,0,0,0,0,276.7654,0,0,0,0,31,3,77.1,17.2,0,64.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.8,8.815269,1.098612,5.62317,1
-11,6,0,0,3,627787,1,6735.316,35.76591,0,12,1,194.1176,0,0,0,0,194.1176,0,0,0,1,21,3,77.1,17.2,0,64.8,0,0,0,0,1.098612,0,0,0,0,1,0,0,64.8,8.815269,1.098612,5.268465,1
-7,6,25,0,1,627809,1,4621.608,43.28268,1,11,1,63.94615,11.96045,0,0,0,75.90661,0,0,0,2,0,2,84.6,6.9,0,67,750,0,0,0,.6931472,0,0,3.258096,8.006368,1,0,0,67,8.438714,.6931472,4.329504,1
-7,6,25,0,2,627809,1,4621.608,44.28268,1,11,1,23.23385,0,0,0,237.6275,260.8614,1,0,0,1,0,2,84.6,6.9,0,67,750,0,0,0,.6931472,0,0,3.258096,8.006368,1,0,0,67,8.438714,.6931472,5.563989,1
-7,6,25,0,3,627809,1,4621.608,45.28268,1,11,1,211.6638,0,37.73585,0,0,249.3997,0,0,0,2,1,1,84.6,6.9,0,67,750,0,0,0,0,0,0,3.258096,8.006368,1,0,0,67,8.438714,0,5.519057,1
-13,6,0,1,1,627814,1,10992.32,26.33539,0,12,1,104.5281,0,0,0,0,104.5281,0,0,0,5,0,4,78.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,4.649457,1
-13,6,0,1,2,627814,1,10992.32,27.33539,0,12,1,46.69704,0,0,0,0,46.69704,0,0,0,2,0,4,78.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,3.843681,1
-13,6,0,1,3,627814,1,10992.32,28.33539,0,12,1,109.6886,0,0,0,246.0208,355.7094,1,1,0,2,0,4,78.7,3.4,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,5.874114,1
-13,6,0,1,1,627815,1,10992.32,5.24846,0,12,1,11.42615,0,0,0,0,11.42615,0,0,0,0,0,4,77.40034,10.57626,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.305043,1.386294,2.435905,1
-13,6,0,1,2,627815,1,10992.32,6.24846,0,12,1,4.555809,0,0,0,0,4.555809,0,0,0,1,0,4,77.40034,10.57626,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.305043,1.386294,1.516403,1
-13,6,0,1,3,627815,1,10992.32,7.24846,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,92.6,9.305043,1.386294,,0
-13,6,0,1,1,627816,1,10992.32,25.11157,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,,0
-13,6,0,1,2,627816,1,10992.32,26.11157,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,,0
-13,6,0,1,3,627816,1,10992.32,27.11157,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,6.9,0,83,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,83,9.305043,1.386294,,0
-11,6,0,1,1,627897,1,6911.83,28.16701,1,12,1,243.2432,38.06879,32.43243,0,622.113,935.8575,2,0,0,15,2,3,26.6,20.7,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.841134,1.098612,6.841463,1
-11,6,0,1,2,627897,1,6911.83,29.16701,1,12,1,81.13036,11.42206,23.701,0,0,116.2534,0,0,0,6,0,3,26.6,20.7,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.841134,1.098612,4.755773,1
-11,6,0,1,3,627897,1,6911.83,30.16701,1,12,1,77.94914,61.5048,0,0,0,139.4539,0,0,0,6,0,3,26.6,20.7,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.841134,1.098612,4.937734,1
-11,6,0,1,4,627897,1,6911.83,31.16701,1,12,1,142.5356,56.96549,28.50713,0,0,228.0083,0,0,0,11,0,3,26.6,20.7,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.841134,1.098612,5.429382,1
-11,6,0,1,5,627897,1,6911.83,32.16701,1,12,1,109.1001,90.0406,0,0,649.8647,849.0054,1,0,0,8,0,3,26.6,20.7,0,59.1,0,0,0,0,1.098612,0,0,0,0,0,0,0,59.1,8.841134,1.098612,6.744066,1
-11,6,0,1,1,627898,1,6911.83,4.454483,1,12,1,30.46683,2.088452,0,0,0,32.55528,0,0,0,2,1,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.5,8.841134,1.098612,3.48294,1
-11,6,0,1,2,627898,1,6911.83,5.454483,1,12,1,30.53783,0,0,0,0,30.53783,0,0,0,0,0,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.5,8.841134,1.098612,3.418966,1
-11,6,0,1,3,627898,1,6911.83,6.454483,1,12,1,64.61025,13.41392,0,0,0,78.02418,0,0,0,4,0,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.5,8.841134,1.098612,4.357019,1
-11,6,0,1,4,627898,1,6911.83,7.454483,1,12,1,0,3.788447,0,0,0,3.788447,0,0,0,0,0,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.5,8.841134,1.098612,1.331956,1
-11,6,0,1,5,627898,1,6911.83,8.454483,1,12,1,32.47632,2.537212,0,0,0,35.01353,0,0,0,1,0,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,0,0,0,81.5,8.841134,1.098612,3.555735,1
-11,6,0,1,1,627899,1,6911.83,7.879535,1,12,1,56.51105,4.235872,24.57002,0,0,85.31696,0,0,0,4,1,3,61.7,10.57626,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,8.841134,1.098612,4.446373,1
-11,6,0,1,2,627899,1,6911.83,8.879535,1,12,1,36.00729,0,2.278943,0,0,38.28624,0,0,0,2,0,3,61.7,10.57626,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,8.841134,1.098612,3.64509,1
-11,6,0,1,3,627899,1,6911.83,9.879535,1,12,1,64.19341,5.835765,30.0125,0,0,100.0417,0,0,0,4,1,3,61.7,10.57626,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,8.841134,1.098612,4.605587,1
-11,6,0,1,4,627899,1,6911.83,10.87953,1,12,1,43.13578,7.314329,0,0,0,50.45011,0,0,0,1,0,3,61.7,10.57626,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,8.841134,1.098612,3.920985,1
-11,6,0,1,5,627899,1,6911.83,11.87953,1,12,1,16.57645,2.689445,0,0,0,19.2659,0,0,0,2,0,3,61.7,10.57626,0,77.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,77.8,8.841134,1.098612,2.958337,1
-13,6,0,1,1,627935,1,1759.531,30.0616,1,11,1,44.88778,9.441397,0,0,0,54.32918,0,0,0,7,0,7,55.9,13.8,0,56.8,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,56.8,7.473371,1.94591,3.995061,1
-13,6,0,1,2,627935,1,1759.531,31.0616,1,11,1,13.83126,0,0,0,0,13.83126,0,0,0,1,0,7,55.9,13.8,0,56.8,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,56.8,7.473371,1.94591,2.626931,1
-13,6,0,1,3,627935,1,1759.531,32.0616,1,11,1,19.04359,0,0,0,0,19.04359,0,0,0,2,0,7,55.9,13.8,0,56.8,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,56.8,7.473371,1.94591,2.94673,1
-13,6,0,1,4,627935,1,1759.531,33.0616,1,11,1,30.75171,3.139711,0,0,0,33.89142,0,0,0,4,0,7,55.9,13.8,0,56.8,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,56.8,7.473371,1.94591,3.523162,1
-13,6,0,1,5,627935,1,1759.531,34.0616,1,11,1,175.0865,37.15225,0,0,0,212.2388,0,0,0,10,0,7,55.9,13.8,0,56.8,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,56.8,7.473371,1.94591,5.357712,1
-13,6,0,1,1,627936,1,1759.531,32.40247,0,12,1,12.46883,4.014963,0,0,0,16.48379,0,0,0,2,0,7,83,3.4,0,75,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,75,7.473371,1.94591,2.802377,1
-13,6,0,1,2,627936,1,1759.531,33.40247,0,12,1,4.61042,0,0,0,0,4.61042,0,0,0,1,0,7,83,3.4,0,75,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,75,7.473371,1.94591,1.528319,1
-13,6,0,1,3,627936,1,1759.531,34.40247,0,12,1,25.81464,7.321202,0,0,0,33.13585,0,0,0,1,0,7,83,3.4,0,75,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,75,7.473371,1.94591,3.500616,1
-13,6,0,1,4,627936,1,1759.531,35.40247,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,83,3.4,0,75,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,75,7.473371,1.94591,,0
-13,6,0,1,5,627936,1,1759.531,36.40247,0,12,1,32.52595,1.276817,0,0,0,33.80277,0,0,0,3,0,7,83,3.4,0,75,450,0,0,0,1.94591,0,1,4.564348,6.160541,1,0,0,75,7.473371,1.94591,3.520543,1
-13,6,0,1,1,627937,1,1759.531,3.041752,0,11,1,19.95012,12.26933,0,0,0,32.21945,0,0,0,4,0,7,77.40034,10.57626,0,96.3,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,96.3,7.473371,1.94591,3.47257,1
-13,6,0,1,2,627937,1,1759.531,4.041752,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,96.3,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,96.3,7.473371,1.94591,,0
-13,6,0,1,3,627937,1,1759.531,5.041752,0,11,1,0,.647482,0,0,0,.647482,0,0,0,0,0,7,77.40034,10.57626,0,96.3,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,96.3,7.473371,1.94591,-.4346642,1
-13,6,0,1,4,627937,1,1759.531,6.041752,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,96.3,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,96.3,7.473371,1.94591,,0
-13,6,0,1,5,627937,1,1759.531,7.041752,0,11,1,5.882353,0,0,0,0,5.882353,0,0,0,1,0,7,77.40034,10.57626,0,96.3,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,96.3,7.473371,1.94591,1.771957,1
-13,6,0,1,1,627938,1,1759.531,8.150581,0,11,1,21.44638,5.431421,0,0,0,26.87781,0,0,0,2,0,7,86.7,10.57626,0,66.7,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,3.291301,1
-13,6,0,1,2,627938,1,1759.531,9.150581,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,66.7,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,3,627938,1,1759.531,10.15058,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,66.7,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,4,627938,1,1759.531,11.15058,0,11,1,12.90812,0,0,0,0,12.90812,0,0,0,1,0,7,86.7,10.57626,0,66.7,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,2.557857,1
-13,6,0,1,5,627938,1,1759.531,12.15058,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,66.7,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,1,627939,1,1759.531,9.492128,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,77.8,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,77.8,7.473371,1.94591,,0
-13,6,0,1,2,627939,1,1759.531,10.49213,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,77.8,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,77.8,7.473371,1.94591,,0
-13,6,0,1,3,627939,1,1759.531,11.49213,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,77.8,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,77.8,7.473371,1.94591,,0
-13,6,0,1,4,627939,1,1759.531,12.49213,0,11,1,33.78891,0,0,0,0,33.78891,0,0,0,2,0,7,86.7,10.57626,0,77.8,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,77.8,7.473371,1.94591,3.520133,1
-13,6,0,1,5,627939,1,1759.531,13.49213,0,11,1,5.882353,2.508651,0,0,0,8.391004,0,0,0,1,0,7,86.7,10.57626,0,77.8,450,0,1,0,1.94591,0,1,4.564348,6.160541,1,0,0,77.8,7.473371,1.94591,2.12716,1
-13,6,0,1,1,627940,1,1759.531,5.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,83.3,10.57626,0,81.5,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,7.473371,1.94591,,0
-13,6,0,1,2,627940,1,1759.531,6.262149,1,11,1,9.681881,3.208852,0,0,0,12.89073,0,0,0,1,0,7,83.3,10.57626,0,81.5,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,7.473371,1.94591,2.556509,1
-13,6,0,1,3,627940,1,1759.531,7.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,83.3,10.57626,0,81.5,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,7.473371,1.94591,,0
-13,6,0,1,4,627940,1,1759.531,8.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,83.3,10.57626,0,81.5,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,7.473371,1.94591,,0
-13,6,0,1,5,627940,1,1759.531,9.262149,1,11,1,0,1.017301,0,0,0,1.017301,0,0,0,0,0,7,83.3,10.57626,0,81.5,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,81.5,7.473371,1.94591,.0171531,1
-13,6,0,1,1,627941,1,1759.531,10.8501,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70,10.57626,0,66.7,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,2,627941,1,1759.531,11.8501,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70,10.57626,0,66.7,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,3,627941,1,1759.531,12.8501,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70,10.57626,0,66.7,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,4,627941,1,1759.531,13.8501,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70,10.57626,0,66.7,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,1,5,627941,1,1759.531,14.8501,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,70,10.57626,0,66.7,450,0,1,1,1.94591,0,1,4.564348,6.160541,1,0,0,66.7,7.473371,1.94591,,0
-13,6,0,0,1,627984,0,1259.824,55.1102,1,5,1,24.93766,2.618454,8.478803,0,0,36.03491,0,0,0,4,0,2,53.7,37.9,1,23.9,300,527.52,0,0,.6931472,6.268187,1,4.564348,5.755076,0,0,1,23.9,7.139521,.6931472,3.584488,1
-13,6,0,0,2,627984,0,1259.824,56.1102,1,5,1,124.9424,36.84186,24.66574,0,623.3287,809.7787,1,1,0,7,1,1,53.7,37.9,1,23.9,300,527.52,0,0,0,6.268187,1,4.564348,5.755076,0,0,1,23.9,7.139521,0,6.696761,1
-13,6,0,0,3,627984,0,1259.824,57.1102,1,5,1,273.8045,87.60051,0,0,1041.05,1402.454,2,0,0,29,0,1,53.7,37.9,1,23.9,300,527.52,0,0,0,6.268187,1,4.564348,5.755076,0,0,1,23.9,7.139521,0,7.245979,1
-13,6,0,0,4,627984,0,1259.824,58.1102,1,5,1,22.77904,27.62718,0,0,0,50.40623,0,0,0,5,0,1,53.7,37.9,1,23.9,300,527.52,0,0,0,6.268187,1,4.564348,5.755076,0,0,1,23.9,7.139521,0,3.920115,1
-13,6,0,0,1,627985,0,1259.824,56.67351,0,3,1,72.3192,167.9551,0,0,0,240.2743,0,0,0,5,0,2,59,27.6,1,19.3,300,527.52,0,0,.6931472,6.268187,1,4.564348,5.755076,0,0,1,19.3,7.139521,.6931472,5.481781,1
-10,6,50,1,1,627990,0,11746.54,4.380561,1,7,1,26.66102,9.784173,0,0,275.7723,312.2175,1,0,0,3,0,4,77.40034,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.3714,1.386294,5.7437,1
-10,6,50,1,2,627990,0,11746.54,5.380561,1,7,1,32.64996,4.164768,0,0,0,36.81473,0,0,0,3,0,4,77.40034,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.3714,1.386294,3.605898,1
-10,6,50,1,3,627990,0,11746.54,6.380561,1,7,1,5.190311,3.384083,0,0,0,8.574394,0,0,0,1,0,4,77.40034,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.3714,1.386294,2.14878,1
-10,6,50,1,1,627991,0,11746.54,25.77413,1,7,1,13.54211,0,0,0,0,13.54211,0,0,0,1,0,4,77.1,10.3,1,36.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,36.4,9.3714,1.386294,2.605804,1
-10,6,50,1,2,627991,0,11746.54,26.77413,1,7,1,45.93774,16.79955,0,0,427.4867,490.224,2,0,0,3,0,4,77.1,10.3,1,36.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,36.4,9.3714,1.386294,6.194862,1
-10,6,50,1,3,627991,0,11746.54,27.77413,1,7,1,135.9862,11.01038,0,0,970.5883,1117.585,1,0,0,4,0,4,77.1,10.3,1,36.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,1,0,0,36.4,9.3714,1.386294,7.018925,1
-10,6,50,1,1,627992,0,11746.54,31.21971,0,6,1,65.17139,5.501481,0,0,0,70.67287,0,0,0,2,0,4,82.4,13.8,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,84.1,9.3714,1.386294,4.258062,1
-10,6,50,1,2,627992,0,11746.54,32.21971,0,6,1,15.18603,0,27.33485,0,0,42.52088,0,0,0,1,0,4,82.4,13.8,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,84.1,9.3714,1.386294,3.749995,1
-10,6,50,1,3,627992,0,11746.54,33.21971,0,6,1,19.72318,0,13.84083,0,0,33.56401,0,0,0,0,0,4,82.4,13.8,0,84.1,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,1,0,84.1,9.3714,1.386294,3.513454,1
-10,6,50,1,1,627993,0,11746.54,6.773443,1,7,1,0,2.166737,0,0,0,2.166737,0,0,0,0,0,4,85,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,1,0,85.2,9.3714,1.386294,.7732224,1
-10,6,50,1,2,627993,0,11746.54,7.773443,1,7,1,16.32498,.7555049,0,0,0,17.08049,0,0,0,2,0,4,85,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,1,0,85.2,9.3714,1.386294,2.837937,1
-10,6,50,1,3,627993,0,11746.54,8.773443,1,7,1,53.63322,1.795848,0,0,0,55.42907,0,0,0,4,0,4,85,10.57626,0,85.2,1000,1000,1,1,1.386294,6.907755,0,3.931826,7.600903,0,1,0,85.2,9.3714,1.386294,4.015104,1
-11,6,0,1,1,628044,1,4507.918,49.81246,0,3,1,113.1814,21.97721,0,0,0,135.1586,0,0,0,12,0,5,82.4,10.3,1,52.3,0,279.24,0,0,1.609438,5.632071,0,0,0,0,0,1,52.3,8.413813,1.609438,4.906449,1
-11,6,0,1,2,628044,1,4507.918,50.81246,0,3,1,11.47315,5.736577,42.2212,0,0,59.43093,0,0,0,0,1,5,82.4,10.3,1,52.3,0,279.24,0,0,1.609438,5.632071,0,0,0,0,0,1,52.3,8.413813,1.609438,4.084815,1
-11,6,0,1,3,628044,1,4507.918,51.81246,0,3,1,42.91123,4.080774,25.2419,0,0,72.23391,0,0,0,2,0,5,82.4,10.3,1,52.3,0,279.24,0,0,1.609438,5.632071,0,0,0,0,0,1,52.3,8.413813,1.609438,4.27991,1
-11,6,0,1,4,628044,1,4507.918,52.81246,0,3,1,11.33358,0,40.04533,0,0,51.37892,0,0,0,0,1,5,82.4,10.3,1,52.3,0,279.24,0,0,1.609438,5.632071,0,0,0,0,0,1,52.3,8.413813,1.609438,3.939228,1
-11,6,0,1,5,628044,1,4507.918,53.81246,0,3,1,165.3516,28.4048,0,0,0,193.7564,0,0,0,11,0,5,82.4,10.3,1,52.3,0,279.24,0,0,1.609438,5.632071,0,0,0,0,0,1,52.3,8.413813,1.609438,5.266602,1
-11,6,0,1,1,628045,.5112414,0,19.96441,1,11,1,62.43806,21.68484,0,0,0,84.12289,0,0,0,5,0,2,85.1,6.9,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.7,0,.6931472,4.432279,1
-11,6,0,1,2,628045,.5112414,0,20.96441,1,11,1,54.61221,29.37127,0,0,0,83.98348,0,0,0,2,0,2,85.1,6.9,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.7,0,.6931472,4.43062,1
-11,6,0,1,3,628045,.5112414,0,21.96441,1,11,1,55.11148,28.29197,0,0,0,83.40345,0,0,0,3,0,2,85.1,6.9,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.7,0,.6931472,4.42369,1
-11,6,0,1,4,628045,.5112414,0,22.96441,1,11,1,0,4.627881,0,0,0,4.627881,0,0,0,0,0,2,85.1,6.9,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.7,0,.6931472,1.532099,1
-11,6,0,1,5,628045,.5112414,0,23.96441,1,11,1,77.87307,38.90223,0,0,0,116.7753,0,0,0,3,0,2,85.1,6.9,0,72.7,0,0,0,0,.6931472,0,0,0,0,0,1,0,72.7,0,.6931472,4.760252,1
-11,6,0,1,1,628046,1,4507.918,17.44832,1,9,1,34.19227,6.442022,0,0,0,40.63429,0,0,0,3,1,5,43.6,3.4,0,47.7,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,47.7,8.413813,1.609438,3.704612,1
-11,6,0,1,2,628046,1,4507.918,18.44832,1,9,1,57.36576,6.76916,0,0,0,64.13493,0,0,0,2,0,5,43.6,3.4,0,47.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,47.7,8.413813,1.609438,4.160989,1
-11,6,0,1,3,628046,1,4507.918,19.44832,1,9,1,31.55238,0,38.28355,0,0,69.83593,0,0,0,2,1,5,43.6,3.4,0,47.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,47.7,8.413813,1.609438,4.246149,1
-11,6,0,1,4,628046,1,4507.918,20.44832,1,9,1,0,0,0,0,0,0,0,0,0,0,0,5,43.6,3.4,0,47.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,47.7,8.413813,1.609438,,0
-11,6,0,1,5,628046,1,4507.918,21.44832,1,9,1,39.45111,9.948542,31.21784,0,0,80.61749,0,0,0,2,1,5,43.6,3.4,0,47.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,47.7,8.413813,1.609438,4.389716,1
-11,6,0,1,1,628047,1,4507.918,15.44969,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,69.7,3.4,0,55.7,0,279.24,1,0,1.609438,5.632071,0,0,0,0,1,0,55.7,8.413813,1.609438,,0
-11,6,0,1,2,628047,1,4507.918,16.44969,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,69.7,3.4,0,55.7,0,279.24,1,0,1.609438,5.632071,0,0,0,0,1,0,55.7,8.413813,1.609438,,0
-11,6,0,1,3,628047,1,4507.918,17.44969,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,69.7,3.4,0,55.7,0,279.24,1,0,1.609438,5.632071,0,0,0,0,1,0,55.7,8.413813,1.609438,,0
-11,6,0,1,4,628047,1,4507.918,18.44969,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,69.7,3.4,0,55.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,55.7,8.413813,1.609438,,0
-11,6,0,1,5,628047,1,4507.918,19.44969,0,9,1,46.31218,11.54374,0,0,0,57.85592,0,0,0,3,0,5,69.7,3.4,0,55.7,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,55.7,8.413813,1.609438,4.057956,1
-11,6,0,1,1,628048,1,4507.918,13.77687,1,9,1,84.24182,3.607532,0,0,0,87.84936,0,0,0,4,0,5,90,10.57626,0,81.5,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,81.5,8.413813,1.609438,4.475624,1
-11,6,0,1,2,628048,1,4507.918,14.77687,1,9,1,47.72832,9.178522,0,0,0,56.90684,0,0,0,3,0,5,90,10.57626,0,81.5,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,81.5,8.413813,1.609438,4.041416,1
-11,6,0,1,3,628048,1,4507.918,15.77687,1,9,1,50.06311,4.627682,0,0,0,54.69079,0,0,0,2,0,5,90,10.57626,0,81.5,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,81.5,8.413813,1.609438,4.001695,1
-11,6,0,1,4,628048,1,4507.918,16.77687,1,9,1,23.42274,0,0,0,0,23.42274,0,0,0,0,0,5,90,10.57626,0,81.5,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,81.5,8.413813,1.609438,3.153708,1
-11,6,0,1,5,628048,1,4507.918,17.77687,1,9,1,44.25386,3.910806,0,0,0,48.16467,0,0,0,2,0,5,90,10.57626,0,81.5,0,279.24,1,1,1.609438,5.632071,0,0,0,0,1,0,81.5,8.413813,1.609438,3.874626,1
-11,6,0,1,1,628049,1,4507.918,46.84189,1,9,1,87.7106,21.56591,0,0,0,109.2765,0,0,0,4,0,5,64.9,13.8,0,54.5,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,54.5,8.413813,1.609438,4.693882,1
-11,6,0,1,2,628049,1,4507.918,47.84189,1,9,1,32.12483,15.02983,49.10509,0,0,96.25975,0,0,0,1,1,5,64.9,13.8,0,54.5,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,54.5,8.413813,1.609438,4.56705,1
-11,6,0,1,3,628049,1,4507.918,48.84189,1,9,1,176.2726,35.23349,0,0,2219.184,2430.69,3,0,0,10,0,5,64.9,13.8,0,54.5,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,54.5,8.413813,1.609438,7.79593,1
-11,6,0,1,4,628049,1,4507.918,49.84189,1,9,1,89.15754,86.09747,43.8232,0,0,219.0782,0,0,0,3,1,5,64.9,13.8,0,54.5,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,54.5,8.413813,1.609438,5.389429,1
-11,6,0,1,5,628049,1,4507.918,50.84189,1,9,1,74.78559,87.32419,0,0,0,162.1098,0,0,0,8,0,5,64.9,13.8,0,54.5,0,279.24,0,0,1.609438,5.632071,0,0,0,0,1,0,54.5,8.413813,1.609438,5.088274,1
-16,6,95,1,1,628059,0,12826.42,12.19713,1,18,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.45934,1.386294,,0
-16,6,95,1,2,628059,0,12826.42,13.19713,1,18,1,338.1055,34.18375,26.57555,0,0,398.8648,0,0,0,10,17,4,83.3,10.57626,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.45934,1.386294,5.988623,1
-16,6,95,1,3,628059,0,12826.42,14.19713,1,18,1,5.536332,1.422145,0,0,0,6.958477,0,0,0,1,0,4,83.3,10.57626,0,81.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,81.5,9.45934,1.386294,1.939961,1
-16,6,95,1,1,628060,0,12826.42,8.933607,1,18,1,0,4.337706,0,0,0,4.337706,0,0,0,0,0,4,86.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,74.1,9.45934,1.386294,1.467346,1
-16,6,95,1,2,628060,0,12826.42,9.933607,1,18,1,59.60516,19.01291,28.4738,0,362.9461,470.038,2,0,0,4,1,4,86.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,74.1,9.45934,1.386294,6.152813,1
-16,6,95,1,3,628060,0,12826.42,10.93361,1,18,1,85.46712,5.356401,0,0,0,90.82353,0,0,0,4,0,4,86.7,10.57626,0,74.1,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,74.1,9.45934,1.386294,4.508918,1
-16,6,95,1,1,628061,0,12826.42,35.56468,1,18,1,45.28142,10.6094,0,0,0,55.89082,0,0,0,2,0,4,76.1,20.7,0,52.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,52.3,9.45934,1.386294,4.0234,1
-16,6,95,1,2,628061,0,12826.42,36.56468,1,18,1,304.8595,52.11465,0,0,0,356.9742,0,0,0,8,25,4,76.1,20.7,0,52.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,52.3,9.45934,1.386294,5.877664,1
-16,6,95,1,3,628061,0,12826.42,37.56468,1,18,1,43.59862,0,0,0,0,43.59862,0,0,0,7,0,4,76.1,20.7,0,52.3,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,52.3,9.45934,1.386294,3.775025,1
-13,6,0,0,1,628079,.5112414,6735.316,7.616701,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.57626,0,74.1,300,0,1,1,.6931472,0,1,4.564348,5.755076,1,0,0,74.1,8.815269,.6931472,,0
-13,6,0,0,2,628079,.5112414,6735.316,8.616701,1,12,1,3.777862,0,0,0,0,3.777862,0,0,0,1,0,2,86.7,10.57626,0,74.1,300,0,1,1,.6931472,0,1,4.564348,5.755076,1,0,0,74.1,8.815269,.6931472,1.329158,1
-13,6,0,0,3,628079,.5112414,6735.316,9.616701,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.7,10.57626,0,74.1,300,0,1,1,.6931472,0,1,4.564348,5.755076,1,0,0,74.1,8.815269,.6931472,,0
-13,6,0,1,1,628080,1,6735.316,18.63107,1,10.62774,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.815269,1.098612,,0
-13,6,0,1,2,628080,1,6735.316,19.63107,1,10.62774,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.815269,1.098612,,0
-13,6,0,1,3,628080,1,6735.316,20.63107,1,10.62774,1,0,0,0,0,0,0,0,0,0,0,0,3,71.3,3.4,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,8.815269,1.098612,,0
-13,6,0,0,1,628081,1,6735.316,29.32238,0,14,1,11.67153,0,0,0,0,11.67153,0,0,0,0,0,3,85.1,0,0,81.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,2.457153,1
-13,6,0,0,2,628081,1,6735.316,30.32238,0,14,1,11.25281,2.666917,0,0,0,13.91973,0,0,0,0,0,3,85.1,0,0,81.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,2.633307,1
-13,6,0,0,3,628081,1,6735.316,31.32238,0,14,1,40.2571,0,0,0,345.7375,385.9946,1,0,0,0,0,3,85.1,0,0,81.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,5.955823,1
-13,6,0,0,1,628083,1,6735.316,16.44901,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,0,0,65.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.815269,1.098612,,0
-13,6,0,0,2,628083,1,6735.316,17.44901,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,73.4,0,0,65.9,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.815269,1.098612,,0
-13,6,0,0,3,628083,1,6735.316,18.44901,1,14,1,10.14885,0,0,0,0,10.14885,0,0,0,0,0,3,73.4,0,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,8.815269,1.098612,2.31736,1
-13,6,0,0,1,628084,.5112414,6735.316,27.39767,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,3.4,0,48.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,48.8,8.815269,.6931472,,0
-13,6,0,0,2,628084,.5112414,6735.316,28.39767,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,3.4,0,48.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,48.8,8.815269,.6931472,,0
-13,6,0,0,3,628084,.5112414,6735.316,29.39767,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,68.1,3.4,0,48.8,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,48.8,8.815269,.6931472,,0
-11,6,0,0,1,628085,1,6735.316,25.577,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,0,2,628085,1,6735.316,26.577,1,11,1,105.6857,4.590102,32.11182,0,0,142.3876,0,0,0,2,1,3,77.40034,10.57626,.1442925,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,4.958553,1
-11,6,0,0,3,628085,1,6735.316,27.577,1,11,1,14.40823,18.6964,0,0,1060.892,1093.997,2,0,0,3,0,3,77.40034,10.57626,.1442925,,0,0,0,0,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,6.997593,1
-11,6,0,0,1,628088,1,6735.316,7.498973,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,0,2,628088,1,6735.316,8.498973,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,0,3,628088,1,6735.316,9.498973,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-17,6,25,1,1,628089,1,652.8418,10.69405,0,2,1,0,0,0,16.82793,0,0,0,0,2,0,0,4,80,10.57626,0,77.8,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,77.8,6.482865,1.386294,,0
-17,6,25,1,2,628089,1,652.8418,11.69405,0,2,1,0,0,0,272.006,0,0,0,0,32,0,0,4,80,10.57626,0,77.8,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,77.8,6.482865,1.386294,,0
-17,6,25,1,3,628089,1,652.8418,12.69405,0,2,1,8.576329,0,0,0,0,8.576329,0,0,0,1,0,4,80,10.57626,0,77.8,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,77.8,6.482865,1.386294,2.149006,1
-17,6,25,1,1,628090,1,652.8418,11.32101,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,70.4,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,0,1,0,70.4,6.482865,1.386294,,0
-17,6,25,1,2,628090,1,652.8418,12.32101,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,70.4,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,0,1,0,70.4,6.482865,1.386294,,0
-17,6,25,1,3,628090,1,652.8418,13.32101,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,70.4,20.9,20.9,1,0,1.386294,3.039749,0,3.258096,4.426044,0,1,0,70.4,6.482865,1.386294,,0
-17,6,25,0,1,628091,1,652.8418,21.21561,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,63.3,0,1,47.6,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,47.6,6.482865,1.386294,,0
-17,6,25,0,2,628091,1,652.8418,22.21561,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,63.3,0,1,47.6,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,47.6,6.482865,1.386294,,0
-17,6,25,0,3,628091,1,652.8418,23.21561,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,63.3,0,1,47.6,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,1,0,0,47.6,6.482865,1.386294,,0
-17,6,25,1,1,628092,1,652.8418,56.74469,1,2,1,0,30.63525,0,0,0,30.63525,0,0,0,0,0,4,75,34.5,1,50,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,0,0,1,50,6.482865,1.386294,3.422151,1
-17,6,25,1,2,628092,1,652.8418,57.74469,1,2,1,4.533434,11.38648,0,0,0,15.91991,0,0,0,1,0,4,75,34.5,1,50,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,0,0,1,50,6.482865,1.386294,2.76757,1
-17,6,25,1,3,628092,1,652.8418,58.74469,1,2,1,56.94683,29.12521,0,0,0,86.07204,0,0,0,8,0,4,75,34.5,1,50,20.9,20.9,0,0,1.386294,3.039749,0,3.258096,4.426044,0,0,1,50,6.482865,1.386294,4.455184,1
-13,6,0,1,1,628101,0,6121.408,22.11362,0,12,1,7.481297,3.112219,0,0,0,10.59352,0,0,0,1,0,2,72.3,6.9,1,56.8,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,0,1,0,56.8,8.71971,.6931472,2.360242,1
-13,6,0,1,2,628101,0,6121.408,23.11362,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,6.9,1,56.8,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,0,1,0,56.8,8.71971,.6931472,,0
-13,6,0,1,3,628101,0,6121.408,24.11362,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,6.9,1,56.8,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,0,1,0,56.8,8.71971,.6931472,,0
-13,6,0,1,4,628101,0,6121.408,25.11362,0,12,1,0,2.277904,0,0,0,2.277904,0,0,0,0,0,2,72.3,6.9,1,56.8,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,0,1,0,56.8,8.71971,.6931472,.8232558,1
-13,6,0,1,5,628101,0,6121.408,26.11362,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,6.9,1,56.8,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,0,1,0,56.8,8.71971,.6931472,,0
-13,6,0,1,1,628102,0,6121.408,22.09993,1,14,1,12.46883,20.33915,0,0,0,32.80798,0,0,0,1,0,2,71.3,3.4,0,65.9,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,1,0,0,65.9,8.71971,.6931472,3.490672,1
-13,6,0,1,2,628102,0,6121.408,23.09993,1,14,1,23.97418,28.46934,0,0,0,52.44352,0,0,0,3,0,2,71.3,3.4,0,65.9,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,1,0,0,65.9,8.71971,.6931472,3.959737,1
-13,6,0,1,3,628102,0,6121.408,24.09993,1,14,1,16.92764,0,36.39441,0,0,53.32205,0,0,0,1,1,2,71.3,3.4,0,65.9,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,1,0,0,65.9,8.71971,.6931472,3.97635,1
-13,6,0,1,4,628102,0,6121.408,25.09993,1,14,1,11.38952,0,0,0,0,11.38952,0,0,0,1,0,2,71.3,3.4,0,65.9,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,1,0,0,65.9,8.71971,.6931472,2.432694,1
-13,6,0,1,5,628102,0,6121.408,26.09993,1,14,1,17.99308,1.920415,0,0,0,19.91349,0,0,0,2,0,2,71.3,3.4,0,65.9,300,380.68,0,0,.6931472,5.941959,1,4.564348,5.755076,1,0,0,65.9,8.71971,.6931472,2.991398,1
-11,6,0,1,1,628112,1,3700.973,31.75907,1,12,1,81.70071,45.65236,0,0,0,127.3531,0,0,0,10,0,6,85.1,3.4,0,67,0,168.4,0,0,1.791759,5.126342,0,0,0,1,0,0,67,8.216621,1.791759,4.846963,1
-11,6,0,1,2,628112,1,3700.973,32.75907,1,12,1,42.76069,41.24156,0,0,357.0893,441.0915,1,0,0,6,0,6,85.1,3.4,0,67,0,168.4,0,0,1.791759,5.126342,0,0,0,1,0,0,67,8.216621,1.791759,6.089252,1
-11,6,0,1,3,628112,1,3700.973,33.75907,1,12,1,24.35724,21.73545,0,0,0,46.09269,0,0,0,3,0,7,85.1,3.4,0,67,0,168.4,0,0,1.94591,5.126342,0,0,0,1,0,0,67,8.216621,1.94591,3.830654,1
-11,6,0,1,1,628113,1,3700.973,5.995893,0,12,1,6.252605,4.793664,0,0,0,11.04627,0,0,0,1,0,6,81.7,10.57626,0,77.8,0,168.4,1,0,1.791759,5.126342,0,0,0,1,0,0,77.8,8.216621,1.791759,2.402093,1
-11,6,0,1,2,628113,1,3700.973,6.995893,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.7,10.57626,0,77.8,0,168.4,1,0,1.791759,5.126342,0,0,0,1,0,0,77.8,8.216621,1.791759,,0
-11,6,0,1,3,628113,1,3700.973,7.995893,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,81.7,10.57626,0,77.8,0,168.4,1,0,1.94591,5.126342,0,0,0,1,0,0,77.8,8.216621,1.94591,,0
-11,6,0,1,1,628114,1,3700.973,4.657084,1,12,1,11.25469,0,0,0,0,11.25469,0,0,0,2,0,6,77.40034,10.57626,0,63,0,168.4,1,1,1.791759,5.126342,0,0,0,1,0,0,63,8.216621,1.791759,2.420785,1
-11,6,0,1,2,628114,1,3700.973,5.657084,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,63,0,168.4,1,1,1.791759,5.126342,0,0,0,1,0,0,63,8.216621,1.791759,,0
-11,6,0,1,3,628114,1,3700.973,6.657084,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,63,0,168.4,1,1,1.94591,5.126342,0,0,0,1,0,0,63,8.216621,1.94591,,0
-11,6,0,1,1,628115,1,3700.973,33.71115,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,10.3,0,55.7,0,168.4,0,0,1.791759,5.126342,0,0,0,0,1,0,55.7,8.216621,1.791759,,0
-11,6,0,1,2,628115,1,3700.973,34.71115,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,79.3,10.3,0,55.7,0,168.4,0,0,1.791759,5.126342,0,0,0,0,1,0,55.7,8.216621,1.791759,,0
-11,6,0,1,3,628115,1,3700.973,35.71115,0,10,1,19.28281,2.993911,0,0,0,22.27673,0,0,0,3,0,7,79.3,10.3,0,55.7,0,168.4,0,0,1.94591,5.126342,0,0,0,0,1,0,55.7,8.216621,1.94591,3.103542,1
-13,6,0,0,1,628135,0,5225.294,5.144422,1,12,1,10.20842,0,0,0,0,10.20842,0,0,0,0,0,4,80,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,74.1,8.561458,1.386294,2.323213,1
-13,6,0,0,2,628135,0,5225.294,6.144422,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,74.1,8.561458,1.386294,,0
-13,6,0,0,3,628135,0,5225.294,7.144422,1,12,1,28.91986,0,0,0,0,28.91986,0,0,0,0,0,4,80,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,74.1,8.561458,1.386294,3.364529,1
-13,6,0,0,1,628136,0,5225.294,28.96372,1,12,1,6.380264,0,0,31.90132,0,6.380264,0,0,2,1,0,4,73.4,10.3,0,77.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,77.3,8.561458,1.386294,1.853209,1
-13,6,0,0,2,628136,0,5225.294,29.96372,1,12,1,20.99237,0,0,0,0,20.99237,0,0,0,1,1,4,73.4,10.3,0,77.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,77.3,8.561458,1.386294,3.044159,1
-13,6,0,0,3,628136,0,5225.294,30.96372,1,12,1,18.4669,0,0,0,0,18.4669,0,0,0,0,0,4,73.4,10.3,0,77.3,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,77.3,8.561458,1.386294,2.91598,1
-13,6,0,0,1,628137,0,5225.294,6.973306,1,12,1,5.104211,0,0,0,0,5.104211,0,0,0,1,0,4,81.7,10.57626,0,92.6,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,92.6,8.561458,1.386294,1.630066,1
-13,6,0,0,2,628137,0,5225.294,7.973306,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,92.6,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,92.6,8.561458,1.386294,,0
-13,6,0,0,3,628137,0,5225.294,8.973306,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,92.6,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,0,0,0,92.6,8.561458,1.386294,,0
-13,6,0,0,1,628138,0,5225.294,34.5243,0,14,1,37.00553,0,0,74.43641,0,37.00553,0,0,4,0,0,4,87.8,6.9,0,58,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,58,8.561458,1.386294,3.611067,1
-13,6,0,0,2,628138,0,5225.294,35.5243,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,87.8,6.9,0,58,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,58,8.561458,1.386294,,0
-13,6,0,0,3,628138,0,5225.294,36.5243,0,14,1,6.968641,0,0,0,0,6.968641,0,0,0,1,0,4,87.8,6.9,0,58,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,58,8.561458,1.386294,1.94142,1
-13,6,0,1,1,628142,0,6735.316,46.84189,0,3,1,79.09129,5.04838,5.889777,0,0,90.02945,0,0,0,4,0,3,86.9,13.8,0,77.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.815269,1.098612,4.500137,1
-13,6,0,1,2,628142,0,6735.316,47.84189,0,3,1,21.9116,0,0,0,0,21.9116,0,0,0,2,0,3,86.9,13.8,0,77.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.815269,1.098612,3.087016,1
-13,6,0,1,3,628142,0,6735.316,48.84189,0,3,1,34.99142,22.18525,0,0,0,57.17667,0,0,0,3,0,3,86.9,13.8,0,77.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.815269,1.098612,4.046146,1
-13,6,0,1,1,628143,0,6735.316,33.21834,1,12,1,23.55911,0,0,0,0,23.55911,0,0,0,2,0,3,75.5,6.9,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,60.2,8.815269,1.098612,3.159513,1
-13,6,0,1,2,628143,0,6735.316,34.21834,1,12,1,72.53494,30.97847,0,0,4268.228,4371.742,1,0,0,3,0,3,75.5,6.9,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,60.2,8.815269,1.098612,8.382916,1
-13,6,0,1,3,628143,0,6735.316,35.21834,1,12,1,70.66895,75.00858,0,0,730.7032,876.3808,1,0,0,6,0,3,75.5,6.9,0,60.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,60.2,8.815269,1.098612,6.775801,1
-13,6,0,1,1,628144,0,6735.316,4.090349,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.815269,1.098612,,0
-13,6,0,1,2,628144,0,6735.316,5.090349,0,12,1,23.04496,2.670948,0,0,0,25.7159,0,0,0,3,0,3,77.40034,10.57626,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.815269,1.098612,3.24711,1
-13,6,0,1,3,628144,0,6735.316,6.090349,0,12,1,13.03602,3.979417,0,0,0,17.01544,0,0,0,2,0,3,77.40034,10.57626,0,88.9,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.815269,1.098612,2.834121,1
-13,6,0,0,1,628154,0,6415.836,1.399042,0,11,1,26.11753,0,0,0,419.8895,446.007,2,0,0,0,0,4,77.40034,10.57626,0,63,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,63,8.766681,1.386294,6.100335,1
-13,6,0,0,2,628154,0,6415.836,2.399042,0,11,1,41.26101,0,0,0,0,41.26101,0,0,0,0,0,4,77.40034,10.57626,0,63,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,63,8.766681,1.386294,3.719918,1
-13,6,0,0,3,628154,0,6415.836,3.399042,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,63,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63,8.766681,1.609438,,0
-13,6,0,0,4,628154,0,6415.836,4.399042,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,63,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63,8.766681,1.609438,,0
-13,6,0,0,5,628154,0,6415.836,5.399042,0,11,1,9.407665,0,12.19512,0,0,21.60279,0,0,0,1,0,5,77.40034,10.57626,0,63,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,63,8.766681,1.609438,3.072822,1
-13,6,0,0,1,628155,0,6415.836,23.90417,1,11,1,19.08589,10.92416,0,0,0,30.01005,0,0,0,0,0,4,68.6,27.6,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.766681,1.386294,3.401532,1
-13,6,0,0,2,628155,0,6415.836,24.90417,1,11,1,5.099676,0,0,0,841.91,847.0098,2,0,0,0,0,4,68.6,27.6,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.766681,1.386294,6.741712,1
-13,6,0,0,3,628155,0,6415.836,25.90417,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,68.6,27.6,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.766681,1.609438,,0
-13,6,0,0,4,628155,0,6415.836,26.90417,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,68.6,27.6,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.766681,1.609438,,0
-13,6,0,0,5,628155,0,6415.836,27.90417,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,68.6,27.6,0,77.3,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,77.3,8.766681,1.609438,,0
-13,6,0,0,1,628156,0,6415.836,4.306639,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.766681,1.386294,,0
-13,6,0,0,2,628156,0,6415.836,5.306639,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,92.6,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.766681,1.386294,,0
-13,6,0,0,3,628156,0,6415.836,6.306639,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.766681,1.609438,,0
-13,6,0,0,4,628156,0,6415.836,7.306639,0,11,1,27.48092,0,0,0,0,27.48092,0,0,0,0,0,5,77.40034,10.57626,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.766681,1.609438,3.313492,1
-13,6,0,0,5,628156,0,6415.836,8.30664,0,11,1,12.19512,0,20.20906,0,0,32.40418,0,0,0,0,1,5,77.40034,10.57626,0,92.6,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,92.6,8.766681,1.609438,3.478287,1
-13,6,0,0,1,628157,0,6415.836,30.91855,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,54.3,27.6,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,8.766681,1.386294,,0
-13,6,0,0,2,628157,0,6415.836,31.91855,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,54.3,27.6,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,8.766681,1.386294,,0
-13,6,0,0,3,628157,0,6415.836,32.91855,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,54.3,27.6,0,70.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.5,8.766681,1.609438,,0
-13,6,0,0,4,628157,0,6415.836,33.91855,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,54.3,27.6,0,70.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.5,8.766681,1.609438,,0
-13,6,0,0,5,628157,0,6415.836,34.91855,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,54.3,27.6,0,70.5,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,70.5,8.766681,1.609438,,0
-11,6,0,1,1,628177,0,10731.18,35.43053,0,12,1,96.48752,11.32882,0,0,0,107.8163,0,0,0,1,0,4,71.8,6.9,0,80.7,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,80.7,9.281002,1.386294,4.680429,1
-11,6,0,1,2,628177,0,10731.18,36.43053,0,12,1,0,1.613516,0,0,0,1.613516,0,0,0,0,0,4,71.8,6.9,0,80.7,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,80.7,9.281002,1.386294,.4784154,1
-11,6,0,1,3,628177,0,10731.18,37.43053,0,12,1,183.391,29.32526,0,0,0,212.7163,0,0,0,8,6,4,71.8,6.9,0,80.7,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,80.7,9.281002,1.386294,5.359959,1
-11,6,0,1,1,628178,0,10731.18,34.03149,1,14,1,0,2.750741,0,0,0,2.750741,0,0,0,0,0,4,73.4,10.3,0,73.9,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,73.9,9.281002,1.386294,1.01187,1
-11,6,0,1,2,628178,0,10731.18,35.03149,1,14,1,40.24298,7.877752,0,0,0,48.12073,0,0,0,5,0,4,73.4,10.3,0,73.9,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,73.9,9.281002,1.386294,3.873713,1
-11,6,0,1,3,628178,0,10731.18,36.03149,1,14,1,16.26298,7.525951,0,0,0,23.78893,0,0,0,1,0,4,73.4,10.3,0,73.9,0,192.48,0,0,1.386294,5.259992,0,0,0,1,0,0,73.9,9.281002,1.386294,3.16922,1
-11,6,0,1,1,628179,0,10731.18,8.073922,0,14,1,5.07829,0,0,0,0,5.07829,0,0,0,1,0,4,85,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,1.624975,1
-11,6,0,1,2,628179,0,10731.18,9.073922,0,14,1,12.52847,0,0,0,0,12.52847,0,0,0,1,0,4,85,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,2.528004,1
-11,6,0,1,3,628179,0,10731.18,10.07392,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,,0
-11,6,0,1,1,628180,0,10731.18,4.375085,0,14,1,17.77402,3.70292,0,0,0,21.47694,0,0,0,3,0,4,77.40034,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,3.06698,1
-11,6,0,1,2,628180,0,10731.18,5.375085,0,14,1,5.31511,0,0,0,233.8648,239.1799,1,0,0,1,0,4,77.40034,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,5.477216,1
-11,6,0,1,3,628180,0,10731.18,6.375085,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,0,192.48,1,0,1.386294,5.259992,0,0,0,1,0,0,70.4,9.281002,1.386294,,0
-13,6,0,1,1,628190,1,2625.704,28.44901,1,12,1,25.6626,3.639041,0,0,0,29.30164,0,0,0,1,0,2,62.8,6.9,0,44.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,44.3,7.873485,.6931472,3.377644,1
-13,6,0,1,2,628190,1,2625.704,29.44901,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.8,6.9,0,44.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,44.3,7.873485,.6931472,,0
-13,6,0,1,3,628190,1,2625.704,30.44901,1,12,1,52.83019,0,0,0,275.4717,328.3019,1,0,0,3,0,2,62.8,6.9,0,44.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,44.3,7.873485,.6931472,5.793933,1
-11,6,0,0,1,628191,0,11577.06,46.86379,0,8,1,0,3.164611,0,0,0,3.164611,0,0,0,0,0,2,91,3.4,0,54.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,54.5,9.356867,.6931472,1.15203,1
-11,6,0,0,2,628191,0,11577.06,47.86379,0,8,1,0,1.633588,0,0,0,1.633588,0,0,0,0,0,2,91,3.4,0,54.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,54.5,9.356867,.6931472,.4907787,1
-11,6,0,0,3,628191,0,11577.06,48.86379,0,8,1,105.5749,1.362369,32.05575,0,0,138.993,0,0,0,3,0,2,91,3.4,0,54.5,0,0,0,0,.6931472,0,0,0,0,0,0,0,54.5,9.356867,.6931472,4.934424,1
-10,6,50,1,1,628192,1,6735.316,29.04586,1,11,1,19.77282,2.629365,0,0,0,22.40219,0,0,0,1,0,3,70.7,17.2,0,59.1,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,1,0,59.1,8.815269,1.098612,3.109159,1
-10,6,50,1,2,628192,1,6735.316,30.04586,1,11,1,31.16736,0,26.44503,0,0,57.61239,0,0,0,1,1,3,70.7,17.2,0,59.1,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,1,0,59.1,8.815269,1.098612,4.053738,1
-10,6,50,1,3,628192,1,6735.316,31.04586,1,11,1,71.35506,43.61921,0,0,661.0635,776.0377,2,0,0,3,0,3,70.7,17.2,0,59.1,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,1,0,59.1,8.815269,1.098612,6.654201,1
-10,6,50,1,1,628194,1,6735.316,28.42163,0,5,1,45.01472,3.773664,0,0,0,48.78839,0,0,0,0,0,3,67,3.4,0,50,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,0,1,50,8.815269,1.098612,3.887492,1
-10,6,50,1,2,628194,1,6735.316,29.42163,0,5,1,238.0053,29.98867,26.82282,0,607.858,902.6747,2,1,0,7,1,3,67,3.4,0,50,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,0,1,50,8.815269,1.098612,6.805362,1
-10,6,50,1,3,628194,1,6735.316,30.42163,0,5,1,157.4614,31.74957,0,0,0,189.211,0,0,0,2,0,3,67,3.4,0,50,353.25,434.88,0,0,1.098612,6.07507,0,3.931826,6.560323,0,0,1,50,8.815269,1.098612,5.242863,1
-13,6,0,1,1,628199,0,17794.68,13.06502,0,12,1,79.46678,0,8.463818,0,0,87.9306,0,0,0,5,0,6,75,10.57626,0,85.2,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,85.2,9.786711,1.791759,4.476548,1
-13,6,0,1,1,628200,0,17794.68,15.06913,0,12,1,233.284,0,0,0,0,233.284,0,0,0,8,0,6,75,0,0,64.3,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,64.3,9.786711,1.791759,5.452257,1
-13,6,0,1,1,628201,0,17794.68,17.16085,0,12,1,64.7482,0,0,0,0,64.7482,0,0,0,3,0,6,95.2,0,0,91.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,91.7,9.786711,1.791759,4.170506,1
-13,6,0,1,1,628202,0,17794.68,35.78918,1,12,1,78.79814,0,0,0,0,78.79814,0,0,0,3,0,6,70.2,24.1,1,62.5,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,62.5,9.786711,1.791759,4.366889,1
-13,6,0,1,1,628203,0,17794.68,37.89733,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,73.3,3.4,0,85.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.786711,1.791759,,0
-13,6,0,1,1,628204,0,17794.68,16.14784,1,12,1,8.463818,0,0,0,0,8.463818,0,0,0,1,0,6,68.1,6.9,1,63.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,63.6,9.786711,1.791759,2.1358,1
-7,6,25,1,1,628290,0,4987.683,34.45037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,0,0,87.5,750,1291.68,0,0,1.098612,7.163699,0,3.258096,8.006368,0,0,0,87.5,8.514927,1.098612,,0
-7,6,25,1,2,628290,0,4987.683,35.45037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,0,0,87.5,750,1291.68,0,0,1.098612,7.163699,0,3.258096,8.006368,0,0,0,87.5,8.514927,1.098612,,0
-7,6,25,1,3,628290,0,4987.683,36.45037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,0,0,87.5,750,1291.68,0,0,1.098612,7.163699,0,3.258096,8.006368,0,0,0,87.5,8.514927,1.098612,,0
-7,6,25,1,4,628290,0,4987.683,37.45037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,0,0,87.5,750,1291.68,0,0,1.098612,7.163699,0,3.258096,8.006368,0,0,0,87.5,8.514927,1.098612,,0
-7,6,25,1,5,628290,0,4987.683,38.45037,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,71.8,0,0,87.5,750,1291.68,0,0,1.098612,7.163699,0,3.258096,8.006368,0,0,0,87.5,8.514927,1.098612,,0
-7,6,25,1,1,628291,0,4987.683,13.24298,1,14,1,8.353808,0,0,0,0,8.353808,0,0,0,1,0,3,96.7,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,2.122718,1
-7,6,25,1,2,628291,0,4987.683,14.24298,1,14,1,14.58523,0,0,0,0,14.58523,0,0,0,1,0,3,96.7,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,2.68001,1
-7,6,25,1,3,628291,0,4987.683,15.24298,1,14,1,17.5073,3.955815,0,0,0,21.46311,0,0,0,2,0,3,96.7,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,3.066336,1
-7,6,25,1,4,628291,0,4987.683,16.24298,1,14,1,30.75769,3.597149,0,0,0,34.35484,0,0,0,5,0,3,96.7,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,3.536743,1
-7,6,25,1,5,628291,0,4987.683,17.24298,1,14,1,16.23816,0,0,0,0,16.23816,0,0,0,1,0,3,96.7,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,2.787364,1
-7,6,25,1,1,628292,0,4987.683,11.35661,1,14,1,20.63882,0,0,0,0,20.63882,0,0,0,2,0,3,95,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,3.027174,1
-7,6,25,1,2,628292,0,4987.683,12.35661,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,,0
-7,6,25,1,3,628292,0,4987.683,13.35661,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,,0
-7,6,25,1,4,628292,0,4987.683,14.35661,1,14,1,20.63016,0,30.75769,0,0,51.38785,0,0,0,2,0,3,95,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,3.939402,1
-7,6,25,1,5,628292,0,4987.683,15.35661,1,14,1,0,0,0,0,0,0,0,0,0,0,0,3,95,10.57626,0,100,750,1291.68,1,1,1.098612,7.163699,0,3.258096,8.006368,0,0,0,100,8.514927,1.098612,,0
-10,6,50,1,1,628296,0,10311.83,38.20397,1,12,1,12.62095,4.732857,0,0,0,17.35381,0,0,0,1,0,4,60.6,17.2,0,61.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.241144,1.386294,2.853812,1
-10,6,50,1,2,628296,0,10311.83,39.20397,1,12,1,34.75633,0,0,0,0,34.75633,0,0,0,0,0,4,60.6,17.2,0,61.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.241144,1.386294,3.548362,1
-10,6,50,1,3,628296,0,10311.83,40.20397,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,60.6,17.2,0,61.4,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,61.4,9.241144,1.386294,,0
-10,6,50,1,1,628297,0,10311.83,35.5729,0,12,1,24.8212,13.25621,0,0,0,38.07741,0,0,0,12,0,4,51.6,13.8,0,83,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,83,9.241144,1.386294,3.639621,1
-10,6,50,1,2,628297,0,10311.83,36.5729,0,12,1,24.17831,13.77786,26.44503,0,0,64.40121,0,0,0,9,0,4,51.6,13.8,0,83,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,83,9.241144,1.386294,4.165133,1
-10,6,50,1,3,628297,0,10311.83,37.5729,0,12,1,0,4.974271,0,0,0,4.974271,0,0,0,0,0,4,51.6,13.8,0,83,1000,1000,0,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,83,9.241144,1.386294,1.604279,1
-10,6,50,1,1,628298,0,10311.83,10.35729,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.241144,1.386294,,0
-10,6,50,1,2,628298,0,10311.83,11.35729,0,12,1,6.044579,0,0,0,0,6.044579,0,0,0,2,0,4,91.7,10.57626,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.241144,1.386294,1.799162,1
-10,6,50,1,3,628298,0,10311.83,12.35729,0,12,1,23.67067,0,24.91595,0,0,48.58662,0,0,0,2,0,4,91.7,10.57626,0,92.6,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,92.6,9.241144,1.386294,3.883348,1
-10,6,50,1,1,628299,0,10311.83,8.06297,0,12,1,26.504,0,0,0,0,26.504,0,0,0,2,0,4,91.7,10.57626,0,74.1,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.241144,1.386294,3.277296,1
-10,6,50,1,2,628299,0,10311.83,9.06297,0,12,1,4.155648,0,0,0,0,4.155648,0,0,0,2,0,4,91.7,10.57626,0,74.1,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.241144,1.386294,1.424468,1
-10,6,50,1,3,628299,0,10311.83,10.06297,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,0,74.1,1000,1000,1,0,1.386294,6.907755,0,3.931826,7.600903,0,0,0,74.1,9.241144,1.386294,,0
-13,6,0,1,1,628300,0,12312.61,28.77481,0,16,1,19.45137,0,35.67082,0,0,55.1222,0,0,0,1,2,3,83,17.2,0,70.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.418461,1.098612,4.009552,1
-13,6,0,1,2,628300,0,12312.61,29.77481,0,16,1,82.98755,10.07838,31.8119,0,0,124.8778,0,0,0,5,5,4,83,17.2,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.418461,1.386294,4.827336,1
-13,6,0,1,3,628300,0,12312.61,30.77481,0,16,1,51.20609,0,0,0,0,51.20609,0,0,0,0,9,4,83,17.2,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.418461,1.386294,3.935858,1
-13,6,0,1,4,628300,0,12312.61,31.77481,0,16,1,105.1632,8.101747,0,0,0,113.265,0,0,0,4,3,4,83,17.2,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.418461,1.386294,4.72973,1
-13,6,0,1,5,628300,0,12312.61,32.77481,0,16,1,38.75433,0,0,0,0,38.75433,0,0,0,1,0,4,83,17.2,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,70.5,9.418461,1.386294,3.657242,1
-13,6,0,1,1,628301,0,12312.61,3.775496,0,16,1,32.41895,0,0,0,0,32.41895,0,0,0,2,1,3,77.40034,10.57626,0,66.7,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.418461,1.098612,3.478743,1
-13,6,0,1,2,628301,0,12312.61,4.775496,0,16,1,18.90272,16.15491,0,0,0,35.05763,0,0,0,3,1,4,77.40034,10.57626,0,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.418461,1.386294,3.556993,1
-13,6,0,1,3,628301,0,12312.61,5.775496,0,16,1,10.57977,0,0,0,0,10.57977,0,0,0,1,1,4,77.40034,10.57626,0,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.418461,1.386294,2.358944,1
-13,6,0,1,4,628301,0,12312.61,6.775496,0,16,1,37.58542,6.871678,0,0,438.6105,483.0676,1,0,0,5,0,4,77.40034,10.57626,0,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.418461,1.386294,6.180157,1
-13,6,0,1,5,628301,0,12312.61,7.775496,0,16,1,8.650519,0,0,0,0,8.650519,0,0,0,1,1,4,77.40034,10.57626,0,66.7,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,66.7,9.418461,1.386294,2.157619,1
-13,6,0,1,1,628302,0,12312.61,26.99247,1,16,1,31.42145,20.0798,0,0,903.7407,955.2419,1,0,0,1,4,3,85.1,3.4,0,85.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.418461,1.098612,6.861965,1
-13,6,0,1,2,628302,0,12312.61,27.99247,1,16,1,35.03919,7.183033,0,0,0,42.22222,0,0,0,3,3,4,85.1,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.418461,1.386294,3.742947,1
-13,6,0,1,3,628302,0,12312.61,28.99247,1,16,1,264.9175,12.5857,0,0,0,277.5032,0,0,0,13,13,4,85.1,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.418461,1.386294,5.625833,1
-13,6,0,1,4,628302,0,12312.61,29.99247,1,16,1,31.13136,3.356112,0,0,0,34.48747,0,0,0,2,5,4,85.1,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.418461,1.386294,3.540596,1
-13,6,0,1,5,628302,0,12312.61,30.99247,1,16,1,58.82353,1.678201,0,0,0,60.50173,0,0,0,1,5,4,85.1,3.4,0,85.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.418461,1.386294,4.102672,1
-11,6,0,0,1,628316,0,18904.76,47.23614,1,16,1,32.51355,202.0717,0,0,0,234.5853,0,0,0,4,0,3,88.3,24.1,0,61.4,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,61.4,9.847222,1.098612,5.457819,1
-11,6,0,0,2,628316,0,18904.76,48.23614,1,16,1,30.75769,277.9295,0,0,0,308.6872,0,0,0,4,0,3,88.3,24.1,0,61.4,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,61.4,9.847222,1.098612,5.732328,1
-11,6,0,0,3,628316,0,18904.76,49.23614,1,16,1,40.2571,411.8133,0,0,300.0677,752.138,1,0,0,1,0,3,88.3,24.1,0,61.4,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,61.4,9.847222,1.098612,6.62292,1
-11,6,0,0,1,628317,0,18904.76,16.86242,0,16,1,10.42101,0,0,0,0,10.42101,0,0,0,1,0,3,87.8,3.4,0,83,0,86.24,1,0,1.098612,4.457134,0,0,0,0,0,0,83,9.847222,1.098612,2.343824,1
-11,6,0,0,2,628317,0,18904.76,17.86242,0,16,1,9.377344,10.43511,0,0,0,19.81245,0,0,0,1,0,3,87.8,3.4,0,83,0,86.24,1,0,1.098612,4.457134,0,0,0,0,0,0,83,9.847222,1.098612,2.986311,1
-11,6,0,0,3,628317,0,18904.76,18.86242,0,16,1,33.8295,0,34.71922,0,0,68.54871,0,0,0,0,1,3,87.8,3.4,0,83,0,86.24,0,0,1.098612,4.457134,0,0,0,0,0,0,83,9.847222,1.098612,4.227545,1
-11,6,0,0,1,628318,0,18904.76,49.28405,0,15,1,65.02709,6.461025,0,0,0,71.48812,0,0,0,2,0,3,81.9,27.6,0,69.3,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,69.3,9.847222,1.098612,4.269531,1
-11,6,0,0,2,628318,0,18904.76,50.28405,0,15,1,9.377344,0,0,0,0,9.377344,0,0,0,1,0,3,81.9,27.6,0,69.3,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,69.3,9.847222,1.098612,2.238297,1
-11,6,0,0,3,628318,0,18904.76,51.28405,0,15,1,85.25034,19.2253,44.86806,0,0,149.3437,0,0,0,2,1,3,81.9,27.6,0,69.3,0,86.24,0,0,1.098612,4.457134,0,0,0,1,0,0,69.3,9.847222,1.098612,5.00625,1
-13,6,0,1,1,628319,0,15753.71,33.6345,1,16,1,39.13228,35.30413,0,0,0,74.43641,0,0,0,2,0,4,38.8,20.7,0,68.2,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,68.2,9.664895,1.386294,4.309945,1
-13,6,0,1,2,628319,0,15753.71,34.6345,1,16,1,50.38168,43.0916,0,0,465.2672,558.7405,1,0,0,1,2,4,38.8,20.7,0,68.2,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,68.2,9.664895,1.386294,6.325685,1
-13,6,0,1,3,628319,0,15753.71,35.6345,1,16,1,45.12195,5.968641,0,0,307.5261,358.6167,1,0,0,3,0,4,38.8,20.7,0,68.2,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,68.2,9.664895,1.386294,5.882254,1
-13,6,0,1,1,628320,0,15753.71,8.281999,1,16,1,53.16887,0,0,0,0,53.16887,0,0,0,3,0,4,70,10.57626,0,88.9,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,88.9,9.664895,1.386294,3.973473,1
-13,6,0,1,2,628320,0,15753.71,9.281999,1,16,1,7.251908,0,0,0,0,7.251908,0,0,0,1,0,4,70,10.57626,0,88.9,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,88.9,9.664895,1.386294,1.981265,1
-13,6,0,1,3,628320,0,15753.71,10.282,1,16,1,88.32753,0,0,0,0,88.32753,0,0,0,3,1,4,70,10.57626,0,88.9,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,88.9,9.664895,1.386294,4.481052,1
-13,6,0,1,1,628321,0,15753.71,36.79398,0,17,1,156.1038,0,30.62527,0,0,186.729,0,0,0,3,10,4,76.6,10.3,0,51.1,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,51.1,9.664895,1.386294,5.229659,1
-13,6,0,1,2,628321,0,15753.71,37.79398,0,17,1,6.870229,0,0,0,0,6.870229,0,0,0,0,2,4,76.6,10.3,0,51.1,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,51.1,9.664895,1.386294,1.927197,1
-13,6,0,1,3,628321,0,15753.71,38.79398,0,17,1,149.8258,23.93728,0,0,0,173.7631,0,0,0,3,13,4,76.6,10.3,0,51.1,450,819.72,0,0,1.386294,6.708963,1,4.564348,6.160541,0,0,0,51.1,9.664895,1.386294,5.157692,1
-13,6,0,1,1,628322,0,15753.71,3.192334,1,16,1,42.96044,10.20842,36.71629,0,0,89.88515,0,0,0,7,0,4,77.40034,10.57626,0,92.6,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,92.6,9.664895,1.386294,4.498533,1
-13,6,0,1,2,628322,0,15753.71,4.192334,1,16,1,15.64886,1.240458,12.30534,0,0,29.19466,0,0,0,3,0,4,77.40034,10.57626,0,92.6,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,92.6,9.664895,1.386294,3.373986,1
-13,6,0,1,3,628322,0,15753.71,5.192334,1,16,1,29.26829,4.236934,0,0,0,33.50523,0,0,0,3,0,4,77.40034,10.57626,0,92.6,450,819.72,1,1,1.386294,6.708963,1,4.564348,6.160541,0,0,0,92.6,9.664895,1.386294,3.511701,1
-11,6,0,0,1,628323,0,0,50.15195,1,8,1,668.2794,392.9407,0,0,3182.583,4243.803,1,0,0,4,5,1,51.1,31,1,18.2,0,584.16,0,0,0,6.370175,0,0,0,0,0,1,18.2,0,0,8.353215,1
-11,6,0,0,2,628323,0,0,51.15195,1,8,.5136612,254.2501,133.8874,3.777862,0,4745.372,5137.288,3,0,0,0,18,1,51.1,31,1,18.2,0,584.16,0,0,0,6.370175,0,0,0,0,0,1,18.2,0,0,8.54428,1
-13,6,0,1,1,628385,0,8787.507,31.8987,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,84,17.2,0,62.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.0812,1.098612,,0
-13,6,0,1,2,628385,0,8787.507,32.8987,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,84,17.2,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.0812,1.386294,,0
-13,6,0,1,3,628385,0,8787.507,33.8987,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,84,17.2,0,62.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,62.5,9.0812,1.386294,,0
-13,6,0,1,1,628386,0,8787.507,30.23135,1,13,1,20.41684,36.53339,0,0,2868.141,2925.092,1,0,0,3,0,3,93.6,10.3,0,89.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.0812,1.098612,7.981081,1
-13,6,0,1,2,628386,0,8787.507,31.23135,1,13,1,10.30534,38.92748,0,0,0,49.23283,0,0,0,1,0,4,93.6,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.0812,1.386294,3.896561,1
-13,6,0,1,3,628386,0,8787.507,32.23135,1,13,1,61.67247,49.87457,0,0,0,111.547,0,0,0,3,0,4,93.6,10.3,0,89.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,89.8,9.0812,1.386294,4.714447,1
-13,6,0,1,1,628387,0,8787.507,4.665298,0,13,1,60.82518,17.50319,0,0,0,78.32837,0,0,0,9,0,3,77.40034,10.57626,0,85.2,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.0812,1.098612,4.36091,1
-13,6,0,1,2,628387,0,8787.507,5.665298,0,13,1,75.57252,17.42366,0,0,241.9847,334.9809,1,0,0,13,0,4,77.40034,10.57626,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.0812,1.386294,5.814074,1
-13,6,0,1,3,628387,0,8787.507,6.665298,0,13,1,41.81185,5.069686,0,0,0,46.88153,0,0,0,4,0,4,77.40034,10.57626,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,85.2,9.0812,1.386294,3.847624,1
-11,6,0,0,1,628395,1,10875.66,37.50856,0,10,1,11.97007,32.82793,61.18204,0,0,105.98,0,0,0,0,1,5,76.1,6.9,0,80.7,0,0,0,0,1.609438,0,0,0,0,0,1,0,80.7,9.294374,1.609438,4.663251,1
-11,6,0,0,3,628395,1,10875.66,39.50856,0,10,1,2.962336,52.02708,31.53195,0,0,86.52137,0,0,0,1,0,6,76.1,6.9,0,80.7,0,0,0,0,1.791759,0,0,0,0,0,1,0,80.7,9.294374,1.791759,4.460392,1
-11,6,0,0,4,628395,1,10875.66,40.50856,0,10,1,26.57555,66.67426,60.29233,0,0,153.5421,0,0,0,4,0,5,76.1,6.9,0,80.7,0,0,0,0,1.609438,0,0,0,0,0,1,0,80.7,9.294374,1.609438,5.033975,1
-11,6,0,0,5,628395,1,10875.66,41.50856,0,10,1,0,72.6436,36.2872,0,0,108.9308,0,0,0,0,0,5,76.1,6.9,0,80.7,0,0,0,0,1.609438,0,0,0,0,0,1,0,80.7,9.294374,1.609438,4.690713,1
-11,6,0,0,1,628396,1,10875.66,8.427105,1,12,1,26.93267,2.593516,0,0,0,29.52618,0,0,0,1,1,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,3.385278,1
-11,6,0,0,2,628396,1,10875.66,9.427105,1,12,1,8.298756,2.766252,0,0,0,11.06501,0,0,0,1,0,4,75,10.57626,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,1,0,55.6,9.294374,1.386294,2.403788,1
-11,6,0,0,3,628396,1,10875.66,10.4271,1,12,1,130.3428,0,18.92509,0,0,149.2679,0,0,0,3,10,6,75,10.57626,0,55.6,0,0,1,1,1.791759,0,0,0,0,0,1,0,55.6,9.294374,1.791759,5.005743,1
-11,6,0,0,4,628396,1,10875.66,11.4271,1,12,1,31.89066,5.182232,17.76765,0,0,54.84055,0,0,0,3,1,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,4.00443,1
-11,6,0,0,5,628396,1,10875.66,12.4271,1,12,1,11.41868,0,23.391,0,0,34.80969,0,0,0,2,0,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,3.549896,1
-11,6,0,0,1,628397,1,10875.66,36.70636,1,12,1,279.3018,89.29676,31.42145,0,3287.282,3687.302,4,0,0,11,1,5,62.2,17.2,1,60.2,0,0,0,0,1.609438,0,0,0,0,0,1,0,60.2,9.294374,1.609438,8.21265,1
-11,6,0,0,2,628397,1,10875.66,37.70636,1,12,1,449.0549,341.3693,39.29922,20.74689,1751.729,2581.452,2,0,1,21,1,4,62.2,17.2,1,60.2,0,0,0,0,1.386294,0,0,0,0,0,1,0,60.2,9.294374,1.386294,7.856107,1
-11,6,0,0,3,628397,1,10875.66,38.70636,1,12,1,566.6526,465.2053,37.35506,19.04359,372.408,1441.621,1,0,1,19,60,6,62.2,17.2,1,60.2,0,0,0,0,1.791759,0,0,0,0,0,1,0,60.2,9.294374,1.791759,7.273523,1
-11,6,0,0,1,628398,1,10875.66,8.427105,1,12,1,37.90524,5.411471,0,0,0,43.31671,0,0,0,2,1,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,3.768538,1
-11,6,0,0,2,628398,1,10875.66,9.427105,1,12,1,44.26003,4.379899,17.74089,0,0,66.38082,0,0,0,5,0,4,75,10.57626,0,55.6,0,0,1,1,1.386294,0,0,0,0,0,1,0,55.6,9.294374,1.386294,4.195408,1
-11,6,0,0,3,628398,1,10875.66,10.4271,1,12,1,65.59458,1.946678,18.92509,0,0,86.46635,0,0,0,2,1,6,75,10.57626,0,55.6,0,0,1,1,1.791759,0,0,0,0,0,1,0,55.6,9.294374,1.791759,4.459755,1
-11,6,0,0,4,628398,1,10875.66,11.4271,1,12,1,100.9871,5.713743,17.76765,0,0,124.4685,0,0,0,4,7,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,4.824053,1
-11,6,0,0,5,628398,1,10875.66,12.4271,1,12,1,15.57093,8.840831,23.391,0,0,47.80277,0,0,0,2,0,5,75,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,1,0,55.6,9.294374,1.609438,3.867084,1
-11,6,0,0,1,628399,1,10875.66,16.74196,1,12,1,12.46883,6.418952,27.43142,0,0,46.3192,0,0,0,0,1,5,58.5,6.9,0,68.2,0,0,1,1,1.609438,0,0,0,0,0,1,0,68.2,9.294374,1.609438,3.835557,1
-11,6,0,0,3,628399,1,10875.66,18.74196,1,12,1,126.9573,8.887008,23.69869,0,0,159.543,0,0,0,3,11,6,58.5,6.9,0,68.2,0,0,0,0,1.791759,0,0,0,0,0,1,0,68.2,9.294374,1.791759,5.072313,1
-11,6,0,0,4,628399,1,10875.66,19.74196,1,12,1,31.32118,5.46697,0,0,0,36.78815,0,0,0,3,0,5,58.5,6.9,0,68.2,0,0,0,0,1.609438,0,0,0,0,0,1,0,68.2,9.294374,1.609438,3.605176,1
-11,6,0,0,5,628399,1,10875.66,20.74196,1,12,1,34.25605,12.94118,0,0,0,47.19723,0,0,0,4,0,5,58.5,6.9,0,68.2,0,0,0,0,1.609438,0,0,0,0,0,1,0,68.2,9.294374,1.609438,3.854335,1
-11,6,0,1,1,628414,1,6735.316,58.79808,0,4,1,52.1666,28.66218,0,0,0,80.82877,0,0,0,8,0,1,80.3,10.3,1,64.3,0,0,0,0,0,0,0,0,0,0,0,0,64.3,8.815269,0,4.392333,1
-11,6,0,1,2,628414,1,6735.316,59.79808,0,4,1,99.35777,14.92255,32.11182,0,0,146.3921,0,0,0,4,1,1,80.3,10.3,1,64.3,0,0,0,0,0,0,0,0,0,0,0,0,64.3,8.815269,0,4.986289,1
-11,6,0,1,3,628414,1,6735.316,60.79808,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,80.3,10.3,1,64.3,0,0,0,0,0,0,0,0,0,0,0,0,64.3,8.815269,0,,0
-13,6,0,0,1,628422,1,1714.286,2.951403,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,450,150,1,0,1.609438,5.010635,1,4.564348,6.160541,1,0,0,77.8,7.447335,1.609438,,0
-13,6,0,0,2,628422,1,1714.286,3.951403,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,77.8,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,77.8,7.447335,1.791759,,0
-13,6,0,0,3,628422,1,1714.286,4.951403,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,77.8,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,77.8,7.447335,1.791759,,0
-13,6,0,0,1,628423,1,1714.286,6.075291,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,74.1,450,150,1,0,1.609438,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.609438,,0
-13,6,0,0,2,628423,1,1714.286,7.075291,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,76.7,10.57626,0,74.1,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.791759,,0
-13,6,0,0,3,628423,1,1714.286,8.075291,0,10,1,10.38062,0,0,0,0,10.38062,0,0,0,0,0,6,76.7,10.57626,0,74.1,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.791759,2.339941,1
-13,6,0,0,1,628424,1,1714.286,23.19233,1,10,1,21.15954,4.062632,0,0,458.7389,483.9611,1,0,0,3,0,5,61.7,3.4,0,47.7,450,150,0,0,1.609438,5.010635,1,4.564348,6.160541,1,0,0,47.7,7.447335,1.609438,6.182004,1
-13,6,0,0,2,628424,1,1714.286,24.19233,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,61.7,3.4,0,47.7,450,150,0,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,47.7,7.447335,1.791759,,0
-13,6,0,0,3,628424,1,1714.286,25.19233,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,61.7,3.4,0,47.7,450,150,0,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,47.7,7.447335,1.791759,,0
-13,6,0,0,1,628425,1,1714.286,26.72964,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,65.4,3.4,0,69.3,450,150,0,0,1.609438,5.010635,1,4.564348,6.160541,0,0,1,69.3,7.447335,1.609438,,0
-13,6,0,0,2,628425,1,1714.286,27.72964,0,12,1,36.44647,0,0,0,0,36.44647,0,0,0,0,0,6,65.4,3.4,0,69.3,450,150,0,0,1.791759,5.010635,1,4.564348,6.160541,0,0,1,69.3,7.447335,1.791759,3.595845,1
-13,6,0,0,3,628425,1,1714.286,28.72964,0,12,1,69.89619,1.366782,0,0,0,71.26298,0,0,0,2,0,6,65.4,3.4,0,69.3,450,150,0,0,1.791759,5.010635,1,4.564348,6.160541,0,0,1,69.3,7.447335,1.791759,4.266377,1
-13,6,0,0,1,628426,1,1714.286,7.405886,0,10,1,6.347863,0,0,0,0,6.347863,0,0,0,1,0,5,76.7,10.57626,0,74.1,450,150,1,0,1.609438,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.609438,1.848118,1
-13,6,0,0,2,628426,1,1714.286,8.405887,0,10,1,5.694761,0,0,0,0,5.694761,0,0,0,1,0,6,76.7,10.57626,0,74.1,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.791759,1.739547,1
-13,6,0,0,3,628426,1,1714.286,9.405887,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,76.7,10.57626,0,74.1,450,150,1,0,1.791759,5.010635,1,4.564348,6.160541,1,0,0,74.1,7.447335,1.791759,,0
-10,6,50,0,1,628429,0,2283.871,37.08693,0,9,1,61.94252,0,0,0,0,61.94252,0,0,0,2,0,1,92.6,0,0,76.1,531.9,531.9,0,0,0,6.276455,0,3.931826,6.969603,0,0,0,76.1,7.734065,0,4.126207,1
-10,6,50,0,2,628429,0,2283.871,38.08693,0,9,1,0,0,0,0,0,0,0,0,0,0,0,1,92.6,0,0,76.1,531.9,531.9,0,0,0,6.276455,0,3.931826,6.969603,0,0,0,76.1,7.734065,0,,0
-10,6,50,0,3,628429,0,2283.871,39.08693,0,9,1,10.93816,0,0,0,0,10.93816,0,0,0,2,0,1,92.6,0,0,76.1,531.9,531.9,0,0,0,6.276455,0,3.931826,6.969603,0,0,0,76.1,7.734065,0,2.392257,1
-10,6,50,0,4,628429,0,2283.871,40.08693,0,9,1,185.1152,0,0,0,0,185.1152,0,0,0,1,15,1,92.6,0,0,76.1,531.9,531.9,0,0,0,6.276455,0,3.931826,6.969603,0,0,0,76.1,7.734065,0,5.220978,1
-10,6,50,0,5,628429,0,2283.871,41.08693,0,9,1,14.06518,0,0,0,0,14.06518,0,0,0,2,0,1,92.6,0,0,76.1,531.9,531.9,0,0,0,6.276455,0,3.931826,6.969603,0,0,0,76.1,7.734065,0,2.643702,1
-11,6,0,1,1,628437,0,6735.316,35.44422,1,6,1,103.2586,14.17689,29.62336,0,1146.001,1293.06,1,0,0,4,0,7,78.2,17.2,0,69.3,0,216.48,0,0,1.94591,5.377498,0,0,0,0,0,1,69.3,8.815269,1.94591,7.164766,1
-11,6,0,1,2,628437,0,6735.316,36.44422,1,6,1,112.9461,34.16856,37.96507,0,0,185.0797,0,0,0,10,0,7,78.2,17.2,0,69.3,0,216.48,0,0,1.94591,5.377498,0,0,0,0,0,1,69.3,8.815269,1.94591,5.220787,1
-11,6,0,1,3,628437,0,6735.316,37.44422,1,6,1,80.96886,50.11765,29.97578,50.17301,300.346,461.4083,1,0,3,4,0,8,78.2,17.2,0,69.3,0,216.48,0,0,2.079442,5.377498,0,0,0,0,0,1,69.3,8.815269,2.079442,6.134284,1
-11,6,0,1,1,628438,0,6735.316,43.05544,0,5,1,14.81168,2.539145,35.12484,0,0,52.47567,0,0,0,1,0,7,77.7,27.6,0,45.5,0,216.48,0,0,1.94591,5.377498,0,0,0,1,0,0,45.5,8.815269,1.94591,3.96035,1
-11,6,0,1,2,628438,0,6735.316,44.05544,0,5,1,34.16856,21.15034,0,0,0,55.3189,0,0,0,3,0,7,77.7,27.6,0,45.5,0,216.48,0,0,1.94591,5.377498,0,0,0,1,0,0,45.5,8.815269,1.94591,4.013115,1
-11,6,0,1,3,628438,0,6735.316,45.05544,0,5,1,29.58478,19.07612,0,0,0,48.6609,0,0,0,3,0,8,77.7,27.6,0,45.5,0,216.48,0,0,2.079442,5.377498,0,0,0,1,0,0,45.5,8.815269,2.079442,3.884876,1
-11,6,0,1,1,628439,0,6735.316,4.580424,0,6,1,50.35971,24.45197,0,0,0,74.81168,0,0,0,2,0,7,77.40034,10.57626,0,88.9,0,216.48,1,0,1.94591,5.377498,0,0,0,0,0,1,88.9,8.815269,1.94591,4.314974,1
-11,6,0,1,2,628439,0,6735.316,5.580424,0,6,1,55.80865,9.859529,0,0,0,65.66818,0,0,0,6,0,7,77.40034,10.57626,0,88.9,0,216.48,1,0,1.94591,5.377498,0,0,0,0,0,1,88.9,8.815269,1.94591,4.184615,1
-11,6,0,1,3,628439,0,6735.316,6.580424,0,6,1,49.82699,15.20415,0,0,0,65.03114,0,0,0,6,0,8,77.40034,10.57626,0,88.9,0,216.48,1,0,2.079442,5.377498,0,0,0,0,0,1,88.9,8.815269,2.079442,4.174866,1
-11,6,0,1,1,628440,0,6735.316,18.22313,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,74.8,0,0,67,0,216.48,0,0,1.94591,5.377498,0,0,0,0,0,0,67,8.815269,1.94591,,0
-11,6,0,1,3,628440,0,6735.316,20.22313,0,7,1,56.40138,29.14533,2.595156,43.25259,0,88.14187,0,0,4,0,0,8,74.8,0,0,67,0,216.48,0,0,2.079442,5.377498,0,0,0,0,0,0,67,8.815269,2.079442,4.478948,1
-11,6,0,1,1,628441,0,6735.316,14.40931,1,6,1,46.97419,11.10876,0,0,0,58.08295,0,0,0,3,0,7,61.2,3.4,0,61.4,0,216.48,1,1,1.94591,5.377498,0,0,0,1,0,0,61.4,8.815269,1.94591,4.061872,1
-11,6,0,1,2,628441,0,6735.316,15.40931,1,6,1,63.81929,11.23766,0,0,0,75.05695,0,0,0,7,0,7,61.2,3.4,0,61.4,0,216.48,1,1,1.94591,5.377498,0,0,0,1,0,0,61.4,8.815269,1.94591,4.318247,1
-11,6,0,1,3,628441,0,6735.316,16.40931,1,6,1,17.30104,16.21107,0,0,0,33.51211,0,0,0,1,0,8,61.2,3.4,0,61.4,0,216.48,1,1,2.079442,5.377498,0,0,0,1,0,0,61.4,8.815269,2.079442,3.511907,1
-11,6,0,1,1,628442,0,6735.316,9.831622,0,6,1,46.97419,8.992805,0,0,0,55.96699,0,0,0,2,0,7,95,10.57626,0,66.7,0,216.48,1,0,1.94591,5.377498,0,0,0,0,0,0,66.7,8.815269,1.94591,4.024762,1
-11,6,0,1,2,628442,0,6735.316,10.83162,0,6,1,9.491268,3.287775,0,0,0,12.77904,0,0,0,1,0,7,95,10.57626,0,66.7,0,216.48,1,0,1.94591,5.377498,0,0,0,0,0,0,66.7,8.815269,1.94591,2.547807,1
-11,6,0,1,3,628442,0,6735.316,11.83162,0,6,1,49.48097,2.743945,0,0,0,52.22491,0,0,0,1,0,8,95,10.57626,0,66.7,0,216.48,1,0,2.079442,5.377498,0,0,0,0,0,0,66.7,8.815269,2.079442,3.95556,1
-11,6,0,1,1,628443,0,6735.316,17.13621,0,6,1,8.463818,4.655099,0,0,0,13.11892,0,0,0,2,0,7,70.2,3.4,0,95.5,0,216.48,1,0,1.94591,5.377498,0,0,0,1,0,0,95.5,8.815269,1.94591,2.574055,1
-11,6,0,1,2,628443,0,6735.316,18.13621,0,6,1,0,3.416857,0,0,0,3.416857,0,0,0,0,0,7,70.2,3.4,0,95.5,0,216.48,0,0,1.94591,5.377498,0,0,0,1,0,0,95.5,8.815269,1.94591,1.228721,1
-11,6,0,1,3,628443,0,6735.316,19.13621,0,6,1,0,3.615917,0,0,0,3.615917,0,0,0,0,0,8,70.2,3.4,0,95.5,0,216.48,0,0,2.079442,5.377498,0,0,0,1,0,0,95.5,8.815269,2.079442,1.285345,1
-16,6,95,1,1,628455,1,6735.316,55.93429,1,3,1,96.48752,24.43927,35.97122,0,435.8866,592.7846,1,0,0,4,1,1,63.3,17.2,1,52.5,364.5,364.5,0,0,0,5.898527,0,4.564348,5.94982,0,0,1,52.5,8.815269,0,6.384831,1
-16,6,95,1,2,628455,1,6735.316,56.93429,1,3,1,0,9.168565,0,0,0,9.168565,0,0,0,0,0,1,63.3,17.2,1,52.5,364.5,364.5,0,0,0,5.898527,0,4.564348,5.94982,0,0,1,52.5,8.815269,0,2.215781,1
-16,6,95,1,3,628455,1,6735.316,57.93429,1,3,1,13.84083,0,34.60208,0,0,48.44291,0,0,0,1,0,1,63.3,17.2,1,52.5,364.5,364.5,0,0,0,5.898527,0,4.564348,5.94982,0,0,1,52.5,8.815269,0,3.880386,1
-11,6,0,1,1,628466,1,6491.04,39.20876,0,12,1,42.91123,11.56921,0,0,0,54.48044,0,0,0,2,0,8,76.1,0,1,50,0,0,0,0,2.079442,0,0,0,0,0,1,0,50,8.778332,2.079442,3.997842,1
-11,6,0,1,2,628466,1,6491.04,40.20876,0,12,1,5.666792,6.120136,0,0,0,11.78693,0,0,0,1,0,8,76.1,0,1,50,0,0,0,0,2.079442,0,0,0,0,0,1,0,50,8.778332,2.079442,2.466991,1
-11,6,0,1,3,628466,1,6491.04,41.20876,0,12,1,5.145798,0,0,0,0,5.145798,0,0,0,1,0,8,76.1,0,1,50,0,0,0,0,2.079442,0,0,0,0,0,1,0,50,8.778332,2.079442,1.63818,1
-11,6,0,1,1,628467,1,6491.04,10.80904,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,96.7,10.57626,0,88.9,0,0,1,1,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,,0
-11,6,0,1,2,628467,1,6491.04,11.80904,1,12,1,5.666792,2.247828,0,0,0,7.91462,0,0,0,1,0,8,96.7,10.57626,0,88.9,0,0,1,1,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,2.068712,1
-11,6,0,1,3,628467,1,6491.04,12.80904,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,96.7,10.57626,0,88.9,0,0,1,1,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,,0
-11,6,0,1,1,628468,1,6491.04,14.48323,0,12,1,5.04838,0,0,0,0,5.04838,0,0,0,1,0,8,85.1,10.3,0,64.8,0,0,1,0,2.079442,0,0,0,0,1,0,0,64.8,8.778332,2.079442,1.619067,1
-11,6,0,1,2,628468,1,6491.04,15.48323,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85.1,10.3,0,64.8,0,0,1,0,2.079442,0,0,0,0,1,0,0,64.8,8.778332,2.079442,,0
-11,6,0,1,3,628468,1,6491.04,16.48323,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85.1,10.3,0,64.8,0,0,1,0,2.079442,0,0,0,0,1,0,0,64.8,8.778332,2.079442,,0
-11,6,0,1,1,628469,1,6491.04,3.249829,0,12,1,18.09003,3.155238,0,0,0,21.24527,0,0,0,3,0,8,77.40034,10.57626,0,88.9,0,0,1,0,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,3.056134,1
-11,6,0,1,2,628469,1,6491.04,4.249829,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,88.9,0,0,1,0,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,,0
-11,6,0,1,3,628469,1,6491.04,5.249829,0,12,1,5.831904,6.7753,0,0,0,12.6072,0,0,0,1,0,8,77.40034,10.57626,0,88.9,0,0,1,0,2.079442,0,0,0,0,1,0,0,88.9,8.778332,2.079442,2.534268,1
-11,6,0,1,1,628470,1,6491.04,39.19507,1,12,1,0,3.344552,0,0,0,3.344552,0,0,0,0,0,8,79.8,3.4,0,76.1,0,0,0,0,2.079442,0,0,0,0,0,1,0,76.1,8.778332,2.079442,1.207333,1
-11,6,0,1,2,628470,1,6491.04,40.19507,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,79.8,3.4,0,76.1,0,0,0,0,2.079442,0,0,0,0,0,1,0,76.1,8.778332,2.079442,,0
-11,6,0,1,3,628470,1,6491.04,41.19507,1,12,1,41.85249,2.401372,0,0,0,44.25386,0,0,0,3,0,8,79.8,3.4,0,76.1,0,0,0,0,2.079442,0,0,0,0,0,1,0,76.1,8.778332,2.079442,3.789943,1
-11,6,0,1,1,628471,1,6491.04,7.764545,0,12,1,5.889777,1.051746,0,0,0,6.941523,0,0,0,1,0,8,96.7,10.57626,0,96.3,0,0,1,0,2.079442,0,0,0,0,1,0,0,96.3,8.778332,2.079442,1.937521,1
-11,6,0,1,2,628471,1,6491.04,8.764544,0,12,1,10.57801,1.492255,0,0,0,12.07027,0,0,0,2,0,8,96.7,10.57626,0,96.3,0,0,1,0,2.079442,0,0,0,0,1,0,0,96.3,8.778332,2.079442,2.490745,1
-11,6,0,1,3,628471,1,6491.04,9.764544,0,12,1,5.831904,4.336192,0,0,0,10.1681,0,0,0,1,0,8,96.7,10.57626,0,96.3,0,0,1,0,2.079442,0,0,0,0,1,0,0,96.3,8.778332,2.079442,2.319255,1
-11,6,0,1,1,628472,1,6491.04,12.2601,0,12,1,8.413967,0,28.18679,0,0,36.60076,0,0,0,0,1,8,93.3,10.57626,0,70.4,0,0,1,0,2.079442,0,0,0,0,1,0,0,70.4,8.778332,2.079442,3.600069,1
-11,6,0,1,2,628472,1,6491.04,13.2601,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,93.3,10.57626,0,70.4,0,0,1,0,2.079442,0,0,0,0,1,0,0,70.4,8.778332,2.079442,,0
-11,6,0,1,3,628472,1,6491.04,14.2601,0,12,1,6.51801,0,0,0,0,6.51801,0,0,0,1,0,8,93.3,10.57626,0,70.4,0,0,1,0,2.079442,0,0,0,0,1,0,0,70.4,8.778332,2.079442,1.874569,1
-11,6,0,1,1,628473,1,6491.04,15.436,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,87.8,3.4,0,79.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,79.8,8.778332,2.079442,,0
-11,6,0,1,2,628473,1,6491.04,16.436,1,12,1,16.62259,0,0,0,0,16.62259,0,0,0,1,1,8,87.8,3.4,0,79.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,79.8,8.778332,2.079442,2.810763,1
-11,6,0,1,3,628473,1,6491.04,17.436,1,12,1,8.576329,0,29.15952,0,0,37.73585,0,0,0,0,1,8,87.8,3.4,0,79.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,79.8,8.778332,2.079442,3.63061,1
-7,6,25,0,1,628480,0,13028.15,56.2026,0,14,1,22.60171,0,0,0,0,22.60171,0,0,0,1,0,2,83.5,17.2,0,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.4,9.474945,.6931472,3.118026,1
-7,6,25,0,2,628480,0,13028.15,57.2026,0,14,1,58.87807,0,51.46036,0,0,110.3384,0,0,0,4,0,2,83.5,17.2,0,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.4,9.474945,.6931472,4.703552,1
-7,6,25,0,3,628480,0,13028.15,58.2026,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,83.5,17.2,0,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.4,9.474945,.6931472,,0
-7,6,25,0,4,628480,0,13028.15,59.2026,0,14,1,35.49618,0,38.54962,0,308.0153,382.0611,1,0,0,2,1,2,83.5,17.2,0,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.4,9.474945,.6931472,5.94558,1
-7,6,25,0,5,628480,0,13028.15,60.2026,0,14,1,9.407665,0,27.87457,0,0,37.28223,0,0,0,0,0,2,83.5,17.2,0,61.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.4,9.474945,.6931472,3.618517,1
-7,6,25,0,1,628481,0,13028.15,44.11225,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,74.5,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.474945,.6931472,,0
-7,6,25,0,2,628481,0,13028.15,45.11225,1,17,1,84.37645,0,44.50626,0,0,128.8827,0,0,0,9,0,2,74.5,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.474945,.6931472,4.858903,1
-7,6,25,0,3,628481,0,13028.15,46.11225,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,74.5,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.474945,.6931472,,0
-7,6,25,0,4,628481,0,13028.15,47.11225,1,17,1,11.83206,23.72901,9.389313,0,0,44.95038,0,0,0,1,0,2,74.5,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.474945,.6931472,3.805559,1
-7,6,25,0,5,628481,0,13028.15,48.11225,1,17,1,12.54355,35.777,26.1324,0,1030.662,1105.115,1,0,0,1,0,2,74.5,3.4,0,79.5,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.474945,.6931472,7.007705,1
-13,6,0,0,1,628485,0,5711.726,5.040383,0,8,1,6.347863,5.196784,0,0,0,11.54465,0,0,0,1,0,4,83.3,10.57626,.1442925,70.4,450,174.72,1,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,70.4,8.650452,1.386294,2.446222,1
-13,6,0,0,2,628485,0,5711.726,6.040383,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,.1442925,70.4,450,174.72,1,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,70.4,8.650452,1.386294,,0
-13,6,0,0,3,628485,0,5711.726,7.040383,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,.1442925,70.4,450,174.72,1,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,70.4,8.650452,1.386294,,0
-13,6,0,0,1,628486,0,5711.726,11.95893,1,8,1,6.347863,2.048244,0,0,0,8.396107,0,0,0,1,0,4,85,10.57626,.1442925,88.9,450,174.72,1,1,1.386294,5.163185,1,4.564348,6.160541,1,0,0,88.9,8.650452,1.386294,2.127768,1
-13,6,0,0,2,628486,0,5711.726,12.95893,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,.1442925,88.9,450,174.72,1,1,1.386294,5.163185,1,4.564348,6.160541,1,0,0,88.9,8.650452,1.386294,,0
-13,6,0,0,3,628486,0,5711.726,13.95893,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,.1442925,88.9,450,174.72,1,1,1.386294,5.163185,1,4.564348,6.160541,1,0,0,88.9,8.650452,1.386294,,0
-13,6,0,0,1,628487,0,5711.726,27.60027,1,8,1,129.4964,47.51164,0,0,226.8303,403.8383,1,0,0,7,7,4,60.6,20.7,0,44.3,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,44.3,8.650452,1.386294,6.001015,1
-13,6,0,0,2,628487,0,5711.726,28.60027,1,8,1,5.694761,9.396356,0,0,462.7942,477.8853,1,0,0,1,0,4,60.6,20.7,0,44.3,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,44.3,8.650452,1.386294,6.169371,1
-13,6,0,0,3,628487,0,5711.726,29.60027,1,8,1,235.6401,5.307959,0,0,0,240.9481,0,0,0,0,20,4,60.6,20.7,0,44.3,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,44.3,8.650452,1.386294,5.484581,1
-13,6,0,0,1,628488,0,5711.726,31.51814,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,13.8,0,81,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,81,8.650452,1.386294,,0
-13,6,0,0,2,628488,0,5711.726,32.51814,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,13.8,0,81,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,81,8.650452,1.386294,,0
-13,6,0,0,3,628488,0,5711.726,33.51814,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,85.1,13.8,0,81,450,174.72,0,0,1.386294,5.163185,1,4.564348,6.160541,1,0,0,81,8.650452,1.386294,,0
-6,6,25,0,1,628489,1,6524.27,15.82478,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,76.6,0,0,52.9,750,750,1,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,52.9,8.783438,2.079442,,0
-6,6,25,0,2,628489,1,6524.27,16.82478,0,12,1,6.883892,0,0,0,0,6.883892,0,0,0,1,0,8,76.6,0,0,52.9,750,750,1,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,52.9,8.783438,2.079442,1.929184,1
-6,6,25,0,1,628490,1,6524.27,18.00411,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,78.7,0,.1442925,65.5,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.783438,2.079442,,0
-6,6,25,0,2,628490,1,6524.27,19.00411,1,10,1,9.178522,0,33.50161,0,0,42.68013,0,0,0,0,1,8,78.7,0,.1442925,65.5,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.783438,2.079442,3.753733,1
-6,6,25,0,3,628490,1,6524.27,20.00411,1,10,1,2.944889,5.742533,0,0,0,8.687421,0,0,0,1,0,7,78.7,0,.1442925,65.5,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.783438,1.94591,2.161876,1
-6,6,25,0,4,628490,1,6524.27,21.00411,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,78.7,0,.1442925,65.5,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.783438,1.94591,,0
-6,6,25,0,5,628490,1,6524.27,22.00411,1,10,1,0,6.140652,0,0,0,6.140652,0,0,0,0,0,7,78.7,0,.1442925,65.5,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,65.5,8.783438,1.94591,1.814931,1
-6,6,25,0,1,628491,1,6524.27,4.572211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,47.5,750,750,1,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,47.5,8.783438,2.079442,,0
-6,6,25,0,2,628491,1,6524.27,5.572211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,47.5,750,750,1,0,2.079442,6.620073,0,3.258096,8.006368,1,0,0,47.5,8.783438,2.079442,,0
-6,6,25,0,3,628491,1,6524.27,6.572211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,47.5,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,47.5,8.783438,1.94591,,0
-6,6,25,0,4,628491,1,6524.27,7.572211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,47.5,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,47.5,8.783438,1.94591,,0
-6,6,25,0,5,628491,1,6524.27,8.572211,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,47.5,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,47.5,8.783438,1.94591,,0
-6,6,25,0,1,628492,1,6524.27,11.24709,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,77.8,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,77.8,8.783438,2.079442,,0
-6,6,25,0,2,628492,1,6524.27,12.24709,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,77.8,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,77.8,8.783438,2.079442,,0
-6,6,25,0,3,628492,1,6524.27,13.24709,1,12,1,14.72444,8.380311,29.02819,0,0,52.13294,0,0,0,1,1,7,85,10.57626,0,77.8,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,77.8,8.783438,1.94591,3.953797,1
-6,6,25,0,4,628492,1,6524.27,14.24709,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,77.8,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,77.8,8.783438,1.94591,,0
-6,6,25,0,5,628492,1,6524.27,15.24709,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,77.8,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,77.8,8.783438,1.94591,,0
-6,6,25,0,1,628493,1,6524.27,12.71732,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,86.7,10.57626,0,96.3,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,2.079442,,0
-6,6,25,0,2,628493,1,6524.27,13.71732,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,86.7,10.57626,0,96.3,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,2.079442,,0
-6,6,25,0,3,628493,1,6524.27,14.71732,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,4,628493,1,6524.27,15.71732,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,5,628493,1,6524.27,16.71732,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,1,628494,1,6524.27,9.267625,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,96.3,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,2.079442,,0
-6,6,25,0,2,628494,1,6524.27,10.26762,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,85,10.57626,0,96.3,750,750,1,1,2.079442,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,2.079442,,0
-6,6,25,0,3,628494,1,6524.27,11.26762,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,4,628494,1,6524.27,12.26762,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,5,628494,1,6524.27,13.26762,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,85,10.57626,0,96.3,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,96.3,8.783438,1.94591,,0
-6,6,25,0,1,628495,1,6524.27,54.0178,0,7,1,0,0,0,0,0,0,0,0,0,0,0,8,81.4,3.4,1,55.7,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,0,1,0,55.7,8.783438,2.079442,,0
-6,6,25,0,2,628495,1,6524.27,55.0178,0,7,1,0,7.687012,0,0,0,7.687012,0,0,0,0,0,8,81.4,3.4,1,55.7,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,0,1,0,55.7,8.783438,2.079442,2.039532,1
-6,6,25,0,3,628495,1,6524.27,56.0178,0,7,1,10.51746,2.082457,0,0,0,12.59992,0,0,0,1,0,7,81.4,3.4,1,55.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,55.7,8.783438,1.94591,2.53369,1
-6,6,25,0,4,628495,1,6524.27,57.0178,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,81.4,3.4,1,55.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,55.7,8.783438,1.94591,,0
-6,6,25,0,5,628495,1,6524.27,58.0178,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,81.4,3.4,1,55.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,55.7,8.783438,1.94591,,0
-6,6,25,0,1,628496,1,6524.27,43.9562,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.7,10.3,0,66.7,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,0,1,0,66.7,8.783438,2.079442,,0
-6,6,25,0,2,628496,1,6524.27,44.9562,1,12,1,160.1652,0,43.59798,0,0,203.7632,0,0,0,2,1,8,77.7,10.3,0,66.7,750,750,0,0,2.079442,6.620073,0,3.258096,8.006368,0,1,0,66.7,8.783438,2.079442,5.316958,1
-6,6,25,0,3,628496,1,6524.27,45.9562,1,12,1,0,.9465713,0,0,0,.9465713,0,0,0,0,0,7,77.7,10.3,0,66.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,66.7,8.783438,1.94591,-.054909,1
-6,6,25,0,4,628496,1,6524.27,46.9562,1,12,1,11.33358,0,36.26747,0,0,47.60106,0,0,0,0,1,7,77.7,10.3,0,66.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,66.7,8.783438,1.94591,3.862855,1
-6,6,25,0,5,628496,1,6524.27,47.9562,1,12,1,19.21098,0,0,0,0,19.21098,0,0,0,2,0,7,77.7,10.3,0,66.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,66.7,8.783438,1.94591,2.955482,1
-15,6,95,0,1,628506,1,6735.316,4.695414,0,7,1,0,2.615319,0,0,0,2.615319,0,0,0,0,0,5,77.40034,10.57626,0,92.6,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,92.6,8.815269,1.609438,.9613863,1
-15,6,95,0,2,628506,1,6735.316,5.695414,0,7,1,20.12149,6.602126,0,0,0,26.72361,0,0,0,1,0,5,77.40034,10.57626,0,92.6,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,92.6,8.815269,1.609438,3.285547,1
-15,6,95,0,3,628506,1,6735.316,6.695414,0,7,1,0,5.259516,0,0,0,5.259516,0,0,0,0,0,5,77.40034,10.57626,0,92.6,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,92.6,8.815269,1.609438,1.660039,1
-15,6,95,0,1,628507,1,6735.316,47.14579,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,72.1,13.8,1,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,1,0,0,70.5,8.815269,1.609438,,0
-15,6,95,0,2,628507,1,6735.316,48.14579,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,72.1,13.8,1,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,1,0,0,70.5,8.815269,1.609438,,0
-15,6,95,0,3,628507,1,6735.316,49.14579,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,72.1,13.8,1,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,1,0,0,70.5,8.815269,1.609438,,0
-15,6,95,0,1,628508,1,6735.316,19.84121,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,69.1,0,0,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,70.5,8.815269,1.609438,,0
-15,6,95,0,2,628508,1,6735.316,20.84121,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,69.1,0,0,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,70.5,8.815269,1.609438,,0
-15,6,95,0,3,628508,1,6735.316,21.84121,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,69.1,0,0,70.5,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,70.5,8.815269,1.609438,,0
-15,6,95,0,1,628509,1,6735.316,10.03149,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,77.8,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,77.8,8.815269,1.609438,,0
-15,6,95,0,2,628509,1,6735.316,11.03149,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,77.8,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,77.8,8.815269,1.609438,,0
-15,6,95,0,3,628509,1,6735.316,12.03149,0,7,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,0,77.8,296,624,1,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,77.8,8.815269,1.609438,,0
-15,6,95,0,1,628510,1,6735.316,42.2204,1,7,1,0,0,0,0,0,0,0,0,0,0,0,5,63.3,6.9,0,65.9,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,65.9,8.815269,1.609438,,0
-15,6,95,0,2,628510,1,6735.316,43.2204,1,7,1,7.972665,2.638572,0,0,318.5269,329.1382,1,0,0,1,0,5,63.3,6.9,0,65.9,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,65.9,8.815269,1.609438,5.796478,1
-15,6,95,0,3,628510,1,6735.316,44.2204,1,7,1,0,2.076125,0,0,0,2.076125,0,0,0,0,0,5,63.3,6.9,0,65.9,296,624,0,0,1.609438,6.436151,0,4.564348,5.741653,0,1,0,65.9,8.815269,1.609438,.730503,1
-14,6,95,1,1,628511,0,8835.795,25.42642,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,27.6,1,75,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,75,9.086679,1.609438,,0
-14,6,95,1,2,628511,0,8835.795,26.42642,1,8,1,6.883892,8.031207,0,0,0,14.9151,0,0,0,1,0,5,85.6,27.6,1,75,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,75,9.086679,1.609438,2.702374,1
-14,6,95,1,3,628511,0,8835.795,27.42642,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,85.6,27.6,1,75,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,75,9.086679,1.609438,,0
-14,6,95,1,4,628511,0,8835.795,28.42642,1,8,1,53.64564,11.01624,0,0,0,64.66188,0,0,0,4,0,5,85.6,27.6,1,75,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,75,9.086679,1.609438,4.169172,1
-14,6,95,1,5,628511,0,8835.795,29.42642,1,8,1,81.98971,9.859348,0,0,0,91.84906,0,0,0,2,0,5,85.6,27.6,1,75,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,75,9.086679,1.609438,4.520146,1
-14,6,95,1,1,628512,0,8835.795,5.733059,0,8,1,0,3.538157,0,0,0,3.538157,0,0,0,0,0,5,83.3,10.57626,0,63,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,63,9.086679,1.609438,1.263606,1
-14,6,95,1,2,628512,0,8835.795,6.733059,0,8,1,5.507113,5.162919,0,0,0,10.67003,0,0,0,1,0,5,83.3,10.57626,0,63,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,63,9.086679,1.609438,2.367439,1
-14,6,95,1,3,628512,0,8835.795,7.733059,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,83.3,10.57626,0,63,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,63,9.086679,1.609438,,0
-14,6,95,1,4,628512,0,8835.795,8.73306,0,8,1,62.33472,4.608991,0,0,402.7201,469.6638,1,0,0,1,0,5,83.3,10.57626,0,63,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,63,9.086679,1.609438,6.152017,1
-14,6,95,1,5,628512,0,8835.795,9.73306,0,8,1,10.63465,8.315609,0,0,0,18.95026,0,0,0,1,0,5,83.3,10.57626,0,63,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,63,9.086679,1.609438,2.941818,1
-14,6,95,1,1,628513,0,8835.795,30.05339,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,67,6.9,1,60.2,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,60.2,9.086679,1.609438,,0
-14,6,95,1,2,628513,0,8835.795,31.05339,0,9,1,21.56953,0,0,0,0,21.56953,0,0,0,0,0,5,67,6.9,1,60.2,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,60.2,9.086679,1.609438,3.071281,1
-14,6,95,1,3,628513,0,8835.795,32.05339,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,67,6.9,1,60.2,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,60.2,9.086679,1.609438,,0
-14,6,95,1,4,628513,0,8835.795,33.05339,0,9,1,5.666792,6.505478,0,0,0,12.17227,0,0,0,1,0,5,67,6.9,1,60.2,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,60.2,9.086679,1.609438,2.499161,1
-14,6,95,1,5,628513,0,8835.795,34.05339,0,9,1,44.25386,13.7187,0,0,0,57.97256,0,0,0,0,0,5,67,6.9,1,60.2,700,700,0,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,60.2,9.086679,1.609438,4.05997,1
-14,6,95,1,1,628514,0,8835.795,7.15948,1,8,1,4.955401,2.601586,0,0,0,7.556987,0,0,0,1,0,5,78.3,10.57626,0,85.2,700,700,1,1,1.609438,6.55108,0,4.564348,6.602374,0,0,0,85.2,9.086679,1.609438,2.022473,1
-14,6,95,1,2,628514,0,8835.795,8.15948,1,8,1,12.39101,8.949059,0,0,0,21.34007,0,0,0,2,0,5,78.3,10.57626,0,85.2,700,700,1,1,1.609438,6.55108,0,4.564348,6.602374,0,0,0,85.2,9.086679,1.609438,3.060586,1
-14,6,95,1,3,628514,0,8835.795,9.15948,1,8,1,46.27682,0,0,0,270.509,316.7859,1,0,0,4,0,5,78.3,10.57626,0,85.2,700,700,1,1,1.609438,6.55108,0,4.564348,6.602374,0,0,0,85.2,9.086679,1.609438,5.758226,1
-14,6,95,1,4,628514,0,8835.795,10.15948,1,8,1,15.11145,0,0,0,0,15.11145,0,0,0,1,0,5,78.3,10.57626,0,85.2,700,700,1,1,1.609438,6.55108,0,4.564348,6.602374,0,0,0,85.2,9.086679,1.609438,2.715453,1
-14,6,95,1,5,628514,0,8835.795,11.15948,1,8,1,21.61235,0,0,0,0,21.61235,0,0,0,2,0,5,78.3,10.57626,0,85.2,700,700,1,1,1.609438,6.55108,0,4.564348,6.602374,0,0,0,85.2,9.086679,1.609438,3.073265,1
-14,6,95,1,1,628515,0,8835.795,3.989048,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,77.8,9.086679,1.609438,,0
-14,6,95,1,2,628515,0,8835.795,4.989048,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,77.8,9.086679,1.609438,,0
-14,6,95,1,3,628515,0,8835.795,5.989048,0,8,1,29.44888,0,0,0,0,29.44888,0,0,0,0,0,5,77.40034,10.57626,0,77.8,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,77.8,9.086679,1.609438,3.382656,1
-14,6,95,1,4,628515,0,8835.795,6.989048,0,8,1,17.37816,14.3181,0,0,0,31.69626,0,0,0,0,0,5,77.40034,10.57626,0,77.8,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,77.8,9.086679,1.609438,3.456199,1
-14,6,95,1,5,628515,0,8835.795,7.989048,0,8,1,67.92453,12.20926,0,0,0,80.13379,0,0,0,2,0,5,77.40034,10.57626,0,77.8,700,700,1,0,1.609438,6.55108,0,4.564348,6.602374,0,0,0,77.8,9.086679,1.609438,4.383698,1
-10,6,50,1,1,628518,0,7758.944,4.971937,0,9,1,7.481297,3.21197,0,0,0,10.69327,0,0,0,1,0,3,77.40034,10.57626,0,85.2,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,85.2,8.956731,1.098612,2.369614,1
-10,6,50,1,2,628518,0,7758.944,5.971937,0,9,1,24.43522,6.473029,0,0,0,30.90825,0,0,0,1,0,3,77.40034,10.57626,0,85.2,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,85.2,8.956731,1.098612,3.431023,1
-10,6,50,1,3,628518,0,7758.944,6.971937,0,9,1,14.81168,0,0,0,0,14.81168,0,0,0,2,0,3,77.40034,10.57626,0,85.2,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,85.2,8.956731,1.098612,2.695416,1
-10,6,50,1,4,628518,0,7758.944,7.971937,0,9,1,26.1959,12.92711,0,0,0,39.12301,0,0,0,5,0,3,77.40034,10.57626,0,85.2,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,85.2,8.956731,1.098612,3.666711,1
-10,6,50,1,5,628518,0,7758.944,8.971937,0,9,1,88.23529,17.30104,1.730104,0,0,107.2664,0,0,0,2,0,3,77.40034,10.57626,0,85.2,1000,1000,1,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,85.2,8.956731,1.098612,4.675316,1
-10,6,50,1,1,628519,0,7758.944,26.32717,1,9,1,32.41895,6.199501,35.91022,0,0,74.52868,0,0,0,2,1,3,77.1,13.8,0,69.3,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,69.3,8.956731,1.098612,4.311184,1
-10,6,50,1,2,628519,0,7758.944,27.32717,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,77.1,13.8,0,69.3,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,69.3,8.956731,1.098612,,0
-10,6,50,1,3,628519,0,7758.944,28.32717,1,9,1,10.57977,0,33.43208,0,0,44.01185,0,0,0,0,1,3,77.1,13.8,0,69.3,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,69.3,8.956731,1.098612,3.784459,1
-10,6,50,1,4,628519,0,7758.944,29.32717,1,9,1,37.58542,0,0,0,0,37.58542,0,0,0,1,0,3,77.1,13.8,0,69.3,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,69.3,8.956731,1.098612,3.626616,1
-10,6,50,1,5,628519,0,7758.944,30.32717,1,9,1,19.03114,0,0,0,0,19.03114,0,0,0,1,0,3,77.1,13.8,0,69.3,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,69.3,8.956731,1.098612,2.946077,1
-10,6,50,1,1,628520,0,7758.944,28.98836,0,11,1,27.43142,0,0,0,0,27.43142,0,0,0,3,0,3,85.6,6.9,0,71.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,71.6,8.956731,1.098612,3.311689,1
-10,6,50,1,2,628520,0,7758.944,29.98836,0,11,1,13.83126,0,0,0,29.96773,43.79898,1,1,0,2,0,3,85.6,6.9,0,71.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,71.6,8.956731,1.098612,3.779611,1
-10,6,50,1,3,628520,0,7758.944,30.98836,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,71.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,71.6,8.956731,1.098612,,0
-10,6,50,1,4,628520,0,7758.944,31.98836,0,11,1,22.39939,2.346241,0,0,0,24.74563,0,0,0,3,0,3,85.6,6.9,0,71.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,71.6,8.956731,1.098612,3.208649,1
-10,6,50,1,5,628520,0,7758.944,32.98837,0,11,1,83.04498,17.30104,1.730104,0,0,102.0761,0,0,0,2,0,3,85.6,6.9,0,71.6,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,71.6,8.956731,1.098612,4.625719,1
-13,6,0,0,1,628529,1,4009.729,12.0219,1,2,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,.1442925,51.9,450,452.88,1,1,1.098612,6.115627,1,4.564348,6.160541,1,0,0,51.9,8.296728,1.098612,,0
-13,6,0,0,2,628529,1,4009.729,13.0219,1,2,1,3.796507,0,0,0,0,3.796507,0,0,0,1,0,3,68.3,10.57626,.1442925,51.9,450,452.88,1,1,1.098612,6.115627,1,4.564348,6.160541,1,0,0,51.9,8.296728,1.098612,1.334081,1
-13,6,0,0,3,628529,1,4009.729,14.0219,1,2,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,.1442925,51.9,450,452.88,1,1,1.098612,6.115627,1,4.564348,6.160541,1,0,0,51.9,8.296728,1.098612,,0
-13,6,0,0,1,628530,1,4009.729,53.10062,1,2,1,15.65806,4.909014,0,0,0,20.56708,0,0,0,3,0,3,68.1,10.3,0,62.5,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,62.5,8.296728,1.098612,3.023691,1
-13,6,0,0,2,628530,1,4009.729,54.10062,1,2,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,10.3,0,62.5,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,62.5,8.296728,1.098612,,0
-13,6,0,0,3,628530,1,4009.729,55.10062,1,2,1,0,0,0,0,0,0,0,0,0,0,0,3,68.1,10.3,0,62.5,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,62.5,8.296728,1.098612,,0
-13,6,0,0,1,628531,1,4009.729,56.72553,0,4,1,98.60347,37.00804,0,0,0,135.6115,0,0,0,20,0,3,64.9,3.4,1,54.8,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,54.8,8.296728,1.098612,4.909794,1
-13,6,0,0,2,628531,1,4009.729,57.72553,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3,64.9,3.4,1,54.8,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,54.8,8.296728,1.098612,,0
-13,6,0,0,3,628531,1,4009.729,58.72553,0,4,1,6.920415,0,0,0,0,6.920415,0,0,0,2,0,3,64.9,3.4,1,54.8,450,452.88,0,0,1.098612,6.115627,1,4.564348,6.160541,1,0,0,54.8,8.296728,1.098612,1.934476,1
-13,6,0,0,1,628533,.5112414,4556.067,26.09446,0,10.62774,1,48.80101,0,0,0,661.3378,710.1389,1,0,0,1,0,3,62.8,17.2,1,47.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.424435,1.098612,6.565461,1
-13,6,0,0,2,628533,.5112414,4556.067,27.09446,0,10.62774,1,0,5.111447,0,0,0,5.111447,0,0,0,0,0,4,62.8,17.2,1,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.424435,1.386294,1.631482,1
-13,6,0,0,3,628533,.5112414,4556.067,28.09446,0,10.62774,1,0,2.315609,0,0,0,2.315609,0,0,0,0,0,4,62.8,17.2,1,47.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,47.7,8.424435,1.386294,.8396727,1
-11,6,0,1,1,628545,0,10488.56,5.100616,0,12,1,126.7813,5.149877,0,0,0,131.9312,0,0,0,4,9,5,73.3,10.57626,0,18.5,0,0,1,0,1.609438,0,0,0,0,1,0,0,18.5,9.258136,1.609438,4.88228,1
-11,6,0,1,2,628545,0,10488.56,6.100616,0,12,1,328.6235,14.17502,0,0,0,342.7986,0,0,0,8,24,5,73.3,10.57626,0,18.5,0,0,1,0,1.609438,0,0,0,0,1,0,0,18.5,9.258136,1.609438,5.837143,1
-11,6,0,1,3,628545,0,10488.56,7.100616,0,12,1,198.416,4.272614,0,0,0,202.6886,0,0,0,1,20,5,73.3,10.57626,0,18.5,0,0,1,0,1.609438,0,0,0,0,1,0,0,18.5,9.258136,1.609438,5.311671,1
-11,6,0,1,4,628545,0,10488.56,8.100616,0,12,1,94.14854,0,0,0,0,94.14854,0,0,0,2,6,5,73.3,10.57626,0,18.5,0,0,1,0,1.609438,0,0,0,0,1,0,0,18.5,9.258136,1.609438,4.544874,1
-11,6,0,1,5,628545,0,10488.56,9.100616,0,12,1,39.58051,10.49391,0,0,0,50.07442,0,0,0,5,0,5,73.3,10.57626,0,18.5,0,0,1,0,1.609438,0,0,0,0,1,0,0,18.5,9.258136,1.609438,3.91351,1
-11,6,0,1,1,628546,0,10488.56,1.486653,0,12,1,7.371007,0,0,0,0,7.371007,0,0,0,1,0,5,77.40034,10.57626,0,81.5,0,0,1,0,1.609438,0,0,0,0,0,0,0,81.5,9.258136,1.609438,1.997554,1
-11,6,0,1,2,628546,0,10488.56,2.486653,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,81.5,0,0,1,0,1.609438,0,0,0,0,0,0,0,81.5,9.258136,1.609438,,0
-11,6,0,1,3,628546,0,10488.56,3.486653,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,81.5,0,0,1,0,1.609438,0,0,0,0,0,0,0,81.5,9.258136,1.609438,,0
-11,6,0,1,4,628546,0,10488.56,4.486653,0,12,1,51.38785,0,0,0,0,51.38785,0,0,0,3,0,5,77.40034,10.57626,0,81.5,0,0,1,0,1.609438,0,0,0,0,0,0,0,81.5,9.258136,1.609438,3.939402,1
-11,6,0,1,5,628546,0,10488.56,5.486653,0,12,1,46.34641,0,0,0,0,46.34641,0,0,0,2,0,5,77.40034,10.57626,0,81.5,0,0,1,0,1.609438,0,0,0,0,0,0,0,81.5,9.258136,1.609438,3.836144,1
-11,6,0,1,1,628547,0,10488.56,29.25667,0,14,1,12.28501,0,0,0,0,12.28501,0,0,0,3,0,5,92.6,6.9,0,84.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,84.1,9.258136,1.609438,2.50838,1
-11,6,0,1,2,628547,0,10488.56,30.25667,0,14,1,30.99362,7.976299,0,0,0,38.96992,0,0,0,1,0,5,92.6,6.9,0,84.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,84.1,9.258136,1.609438,3.66279,1
-11,6,0,1,3,628547,0,10488.56,31.25667,0,14,1,34.59775,13.18466,0,0,0,47.78241,0,0,0,3,0,5,92.6,6.9,0,84.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,84.1,9.258136,1.609438,3.866657,1
-11,6,0,1,4,628547,0,10488.56,32.25667,0,14,1,0,5.791448,0,0,0,5.791448,0,0,0,0,0,5,92.6,6.9,0,84.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,84.1,9.258136,1.609438,1.756382,1
-11,6,0,1,5,628547,0,10488.56,33.25667,0,14,1,5.751015,0,0,0,0,5.751015,0,0,0,1,0,5,92.6,6.9,0,84.1,0,0,0,0,1.609438,0,0,0,0,1,0,0,84.1,9.258136,1.609438,1.749376,1
-11,6,0,1,1,628548,0,10488.56,26.93771,1,12,1,105.1597,28.83538,0,0,0,133.9951,0,0,0,8,0,5,59,13.8,1,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,9.258136,1.609438,4.897803,1
-11,6,0,1,2,628548,0,10488.56,27.93771,1,12,1,71.5588,17.48405,37.37466,114.1522,0,126.4175,0,0,6,2,1,5,59,13.8,1,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,9.258136,1.609438,4.83959,1
-11,6,0,1,3,628548,0,10488.56,28.93771,1,12,1,261.0463,10.49604,0,15.83993,148.3952,419.9375,1,0,1,6,23,5,59,13.8,1,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,9.258136,1.609438,6.040106,1
-11,6,0,1,4,628548,0,10488.56,29.93771,1,12,1,186.0465,6.226557,28.50713,14.25356,180.1875,400.9677,1,0,1,5,15,5,59,13.8,1,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,9.258136,1.609438,5.993881,1
-11,6,0,1,5,628548,0,10488.56,30.93771,1,12,1,115.3586,5.280785,0,0,0,120.6394,0,0,0,4,6,5,59,13.8,1,46.6,0,0,0,0,1.609438,0,0,0,0,1,0,0,46.6,9.258136,1.609438,4.792806,1
-11,6,0,1,1,628549,0,10488.56,7.00616,1,12,1,5.896806,0,0,0,0,5.896806,0,0,0,1,0,5,51.7,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.258136,1.609438,1.774411,1
-11,6,0,1,2,628549,0,10488.56,8.00616,1,12,1,13.67366,0,0,0,0,13.67366,0,0,0,1,0,5,51.7,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.258136,1.609438,2.615471,1
-11,6,0,1,3,628549,0,10488.56,9.00616,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,51.7,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.258136,1.609438,,0
-11,6,0,1,4,628549,0,10488.56,10.00616,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,51.7,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.258136,1.609438,,0
-11,6,0,1,5,628549,0,10488.56,11.00616,1,12,1,23.34235,0,0,0,0,23.34235,0,0,0,2,0,5,51.7,10.57626,0,55.6,0,0,1,1,1.609438,0,0,0,0,0,0,0,55.6,9.258136,1.609438,3.15027,1
-17,6,25,1,1,628551,0,6735.316,52.92539,1,12,1,200.6938,76.5114,0,0,0,277.2051,0,0,0,8,13,2,80.9,20.7,1,61.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.9,8.815269,.6931472,5.624758,1
-17,6,25,1,2,628551,0,6735.316,53.92539,1,12,1,379.9908,84.43323,0,0,1736.806,2201.23,1,0,0,12,33,2,80.9,20.7,1,61.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.9,8.815269,.6931472,7.696772,1
-17,6,25,1,3,628551,0,6735.316,54.92539,1,12,1,673.1174,169.7097,90.87084,0,471.6029,1405.301,1,0,0,21,22,2,80.9,20.7,1,61.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.9,8.815269,.6931472,7.248007,1
-17,6,25,1,4,628551,0,6735.316,55.92539,1,12,.8497268,589.932,297.7144,0,0,4651.303,5538.95,4,0,0,18,28,2,80.9,20.7,1,61.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,61.9,8.815269,.6931472,8.61956,1
-17,6,25,1,1,628552,0,6735.316,51.04175,0,7,1,95.14371,8.052527,0,0,0,103.1962,0,0,0,3,0,2,82.4,6.9,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.815269,.6931472,4.636632,1
-17,6,25,1,2,628552,0,6735.316,52.04175,0,7,1,175.3098,22.60211,0,0,0,197.9119,0,0,0,7,1,2,82.4,6.9,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.815269,.6931472,5.287822,1
-17,6,25,1,3,628552,0,6735.316,53.04175,0,7,1,246.1085,0,44.59402,0,0,290.7026,0,0,0,3,46,2,82.4,6.9,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.815269,.6931472,5.672301,1
-17,6,25,1,4,628552,0,6735.316,54.04175,0,7,1,303.5512,42.25538,20.77824,0,0,366.5848,0,0,0,15,7,2,82.4,6.9,0,86.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.815269,.6931472,5.90423,1
-17,6,25,1,5,628552,0,6735.316,55.04175,0,7,1,506.6895,25.45111,35.27616,0,0,567.4168,0,0,0,14,0,1,82.4,6.9,0,86.4,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,86.4,8.815269,0,6.341094,1
-11,6,0,1,1,628564,0,15859.19,54.79808,0,16,1,18.6204,17.92636,0,0,0,36.54676,0,0,0,1,0,2,83,20.7,0,72.7,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,72.7,9.671568,.6931472,3.598593,1
-11,6,0,1,2,628564,0,15859.19,55.79808,0,16,1,45.93774,35.7631,0,0,0,81.70084,0,0,0,2,0,2,83,20.7,0,72.7,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,72.7,9.671568,.6931472,4.403064,1
-11,6,0,1,3,628564,0,15859.19,56.79808,0,16,1,15.91695,35.95502,37.24221,0,0,89.11419,0,0,0,1,1,2,83,20.7,0,72.7,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,72.7,9.671568,.6931472,4.489919,1
-11,6,0,1,1,628565,0,15859.19,52.79671,1,21,1,97.75709,49.36098,0,0,0,147.1181,0,0,0,4,0,2,87.2,20.7,0,61.4,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,61.4,9.671568,.6931472,4.991235,1
-11,6,0,1,2,628565,0,15859.19,53.79671,1,21,1,129.6507,34.40395,98.54214,0,1100,1362.597,1,0,0,6,0,2,87.2,20.7,0,61.4,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,61.4,9.671568,.6931472,7.217147,1
-11,6,0,1,3,628565,0,15859.19,54.79671,1,21,1,101.0381,41.77509,0,0,0,142.8132,0,0,0,7,0,2,87.2,20.7,0,61.4,0,339.36,0,0,.6931472,5.827062,0,0,0,1,0,0,61.4,9.671568,.6931472,4.961537,1
-19,6,25,1,1,628582,0,8778.802,26.2642,1,16,1,65.17139,25.60728,32.16251,0,0,122.9412,0,0,0,5,0,3,83.5,13.8,0,81.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.080209,1.098612,4.811706,1
-19,6,25,1,2,628582,0,8778.802,27.2642,1,16,1,39.86333,29.84055,0,0,0,69.70387,0,0,0,2,0,3,83.5,13.8,0,81.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.080209,1.098612,4.244256,1
-19,6,25,1,3,628582,0,8778.802,28.2642,1,16,1,27.68166,21.23875,0,0,0,48.92041,0,0,0,3,0,3,83.5,13.8,0,81.8,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,81.8,9.080209,1.098612,3.890195,1
-19,6,25,1,1,628583,0,8778.802,27.34018,0,16,1,28.35379,6.982649,34.27846,0,0,69.6149,0,0,0,4,0,3,90.4,6.9,0,88.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.080209,1.098612,4.242979,1
-19,6,25,1,2,628583,0,8778.802,28.34018,0,16,1,7.593014,0,0,0,0,7.593014,0,0,0,1,0,3,90.4,6.9,0,88.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.080209,1.098612,2.027229,1
-19,6,25,1,3,628583,0,8778.802,29.34018,0,16,1,6.920415,0,0,0,0,6.920415,0,0,0,1,0,3,90.4,6.9,0,88.6,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,88.6,9.080209,1.098612,1.934476,1
-11,6,0,1,1,628643,0,7922.171,26.15195,0,16,1,38.51037,10.68557,0,0,0,49.19594,0,0,0,5,0,3,51.6,6.9,0,36.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,36.4,8.977547,1.098612,3.895811,1
-11,6,0,1,2,628643,0,7922.171,27.15195,0,16,1,15.18603,0,30.37206,0,0,45.55809,0,0,0,0,1,3,51.6,6.9,0,36.4,0,0,0,0,1.098612,0,0,0,0,1,0,0,36.4,8.977547,1.098612,3.818988,1
-11,6,0,1,3,628643,0,7922.171,28.15195,0,16,1,26.7474,3.768166,0,0,0,30.51557,0,0,0,2,0,4,51.6,6.9,0,36.4,0,0,0,0,1.386294,0,0,0,0,1,0,0,36.4,8.977547,1.386294,3.418237,1
-11,6,0,1,1,628644,0,7922.171,25.03217,1,15,1,118.9166,40.24968,28.77698,0,0,187.9433,0,0,0,4,0,3,75.5,17.2,0,83,0,0,0,0,1.098612,0,0,0,0,0,0,0,83,8.977547,1.098612,5.23614,1
-11,6,0,1,2,628644,0,7922.171,26.03217,1,15,1,38.1549,11.68565,0,0,1114.465,1164.305,2,0,0,3,0,3,75.5,17.2,0,83,0,0,0,0,1.098612,0,0,0,0,0,0,0,83,8.977547,1.098612,7.05988,1
-11,6,0,1,3,628644,0,7922.171,27.03217,1,15,1,76.98962,7.709342,34.25605,0,0,118.955,0,0,0,2,1,4,75.5,17.2,0,83,0,0,0,0,1.386294,0,0,0,0,0,0,0,83,8.977547,1.386294,4.778746,1
-11,6,0,1,1,628652,0,14948.8,54.42026,0,12,1,31.73932,68.57808,0,0,0,100.3174,0,0,0,4,0,2,66.5,10.3,0,52.3,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,52.3,9.612453,.6931472,4.608339,1
-11,6,0,1,2,628652,0,14948.8,55.42026,0,12,1,0,64.21792,0,0,0,64.21792,0,0,0,0,0,2,66.5,10.3,0,52.3,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,52.3,9.612453,.6931472,4.162282,1
-11,6,0,1,3,628652,0,14948.8,56.42026,0,12,1,25.25952,42.53633,0,0,0,67.79585,0,0,0,2,0,2,66.5,10.3,0,52.3,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,52.3,9.612453,.6931472,4.216501,1
-11,6,0,1,1,628654,0,14948.8,50.26968,1,12,1,56.70758,25.37452,35.12484,0,0,117.2069,0,0,0,8,0,2,53.2,20.7,0,54.5,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,54.5,9.612453,.6931472,4.763941,1
-11,6,0,1,2,628654,0,14948.8,51.26968,1,12,1,42.52088,61.98937,0,0,0,104.5103,0,0,0,8,0,2,53.2,20.7,0,54.5,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,54.5,9.612453,.6931472,4.649285,1
-11,6,0,1,3,628654,0,14948.8,52.26968,1,12,1,41.17647,106.0657,0,0,0,147.2422,0,0,0,7,0,2,53.2,20.7,0,54.5,0,261.76,0,0,.6931472,5.567428,0,0,0,1,0,0,54.5,9.612453,.6931472,4.992079,1
-13,6,0,1,1,628655,0,12001.02,46.84463,1,9,1,37.02145,62.34329,11.42196,0,671.4346,782.2213,1,0,0,2,0,2,62.8,37.9,1,45.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,45.5,9.392831,.6931472,6.662138,1
-13,6,0,1,2,628655,0,12001.02,47.84463,1,9,1,35.88969,139.0555,49.67133,0,0,224.6165,0,0,0,2,0,2,62.8,37.9,1,45.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,45.5,9.392831,.6931472,5.414395,1
-13,6,0,1,3,628655,0,12001.02,48.84463,1,9,1,100.1715,107.825,31.45798,0,927.6158,1167.07,2,0,0,5,0,2,62.8,37.9,1,45.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,1,0,45.5,9.392831,.6931472,7.062252,1
-13,6,0,1,1,628656,0,12001.02,53.24572,0,8,1,16.82793,28.27093,5.111485,0,284.3921,334.6024,1,0,0,1,0,2,89.4,24.1,1,43.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,43.2,9.392831,.6931472,5.812943,1
-13,6,0,1,2,628656,0,12001.02,54.24572,0,8,1,217.6048,26.51681,34.37854,0,1269.739,1548.24,2,0,0,9,0,2,89.4,24.1,1,43.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,43.2,9.392831,.6931472,7.344874,1
-13,6,0,1,3,628656,0,12001.02,55.24572,0,8,1,75.47169,41.73585,153.1492,0,0,270.3568,0,0,0,8,0,2,89.4,24.1,1,43.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,43.2,9.392831,.6931472,5.599742,1
-7,6,25,1,1,628674,0,3386.585,38.20671,1,12,1,217.5907,11.85911,0,0,0,229.4498,0,0,0,2,28,3,72.9,13.8,0,68.8,568.8,568.8,0,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,68.8,8.127872,1.098612,5.435684,1
-7,6,25,1,2,628674,0,3386.585,39.20671,1,12,1,165.0413,3.87847,13.12828,0,0,182.048,0,0,0,1,22,3,72.9,13.8,0,68.8,568.8,568.8,0,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,68.8,8.127872,1.098612,5.20427,1
-7,6,25,1,3,628674,0,3386.585,40.20671,1,12,1,194.5196,2.655616,0,0,0,197.1752,0,0,0,0,23,3,72.9,13.8,0,68.8,568.8,568.8,0,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,68.8,8.127872,1.098612,5.284093,1
-7,6,25,1,1,628675,0,3386.585,14.5024,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,85.2,568.8,568.8,1,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,85.2,8.127872,1.098612,,0
-7,6,25,1,2,628675,0,3386.585,15.5024,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,85.2,568.8,568.8,1,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,85.2,8.127872,1.098612,,0
-7,6,25,1,3,628675,0,3386.585,16.5024,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,0,85.2,568.8,568.8,1,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,85.2,8.127872,1.098612,,0
-7,6,25,1,1,628676,0,3386.585,17.38809,1,12,1,25.8441,8.274281,0,0,0,34.11838,0,0,0,4,0,3,82.1,3.4,0,88.6,568.8,568.8,1,1,1.098612,6.343529,0,3.258096,7.729823,1,0,0,88.6,8.127872,1.098612,3.529836,1
-7,6,25,1,2,628676,0,3386.585,18.38809,1,12,1,146.2866,7.929482,0,0,0,154.216,0,0,0,2,17,3,82.1,3.4,0,88.6,568.8,568.8,0,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,88.6,8.127872,1.098612,5.038354,1
-7,6,25,1,3,628676,0,3386.585,19.38809,1,12,1,70.70365,14.44858,0,0,0,85.15223,0,0,0,4,5,3,82.1,3.4,0,88.6,568.8,568.8,0,0,1.098612,6.343529,0,3.258096,7.729823,1,0,0,88.6,8.127872,1.098612,4.44444,1
-11,6,0,1,1,628761,0,8062.468,54.42026,0,14,1,8.463818,0,29.62336,0,0,38.08718,0,0,0,0,1,2,94.7,6.9,0,81.8,0,192.48,0,0,.6931472,5.259992,0,0,0,0,0,0,81.8,8.995099,.6931472,3.639878,1
-11,6,0,1,2,628761,0,8062.468,55.42026,0,14,1,29.61276,11.959,0,0,0,41.57175,0,0,0,3,0,2,94.7,6.9,0,81.8,0,192.48,0,0,.6931472,5.259992,0,0,0,0,0,0,81.8,8.995099,.6931472,3.727421,1
-11,6,0,1,3,628761,0,8062.468,56.42026,0,14,1,3.460208,103.8062,0,0,0,107.2664,0,0,0,2,0,2,94.7,6.9,0,81.8,0,192.48,0,0,.6931472,5.259992,0,0,0,0,0,0,81.8,8.995099,.6931472,4.675316,1
-11,6,0,1,1,628762,0,8062.468,57.92471,1,13,1,13.9653,26.34363,31.73932,0,0,72.04824,0,0,0,1,1,2,90.4,10.3,0,80.7,0,192.48,0,0,.6931472,5.259992,0,0,0,1,0,0,80.7,8.995099,.6931472,4.277336,1
-11,6,0,1,2,628762,0,8062.468,58.92471,1,13,1,89.59757,60.83903,0,0,0,150.4366,0,0,0,8,0,2,90.4,10.3,0,80.7,0,192.48,0,0,.6931472,5.259992,0,0,0,1,0,0,80.7,8.995099,.6931472,5.013542,1
-11,6,0,1,3,628762,0,8062.468,59.92471,1,13,1,41.52249,183.564,0,0,1247.059,1472.145,1,0,0,5,0,2,90.4,10.3,0,80.7,0,192.48,0,0,.6931472,5.259992,0,0,0,1,0,0,80.7,8.995099,.6931472,7.294476,1
-11,6,0,0,1,628810,1,6735.316,18.9514,1,11,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,4,55.3,3.4,0,55.7,0,152.88,0,0,1.386294,5.029653,0,0,0,0,1,0,55.7,8.815269,1.386294,1.600478,1
-11,6,0,0,2,628810,1,6735.316,19.9514,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,55.3,3.4,0,55.7,0,152.88,0,0,1.386294,5.029653,0,0,0,0,1,0,55.7,8.815269,1.386294,,0
-11,6,0,0,3,628810,1,6735.316,20.9514,1,11,1,7.151872,0,0,0,0,7.151872,0,0,0,1,0,4,55.3,3.4,0,55.7,0,152.88,0,0,1.386294,5.029653,0,0,0,0,1,0,55.7,8.815269,1.386294,1.967374,1
-11,6,0,0,4,628810,1,6735.316,21.9514,1,11,1,21.53381,1.64337,0,0,0,23.17718,1,1,0,2,0,3,55.3,3.4,0,55.7,0,152.88,0,0,1.098612,5.029653,0,0,0,0,1,0,55.7,8.815269,1.098612,3.143168,1
-11,6,0,0,5,628810,1,6735.316,22.9514,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,55.3,3.4,0,55.7,0,152.88,0,0,1.386294,5.029653,0,0,0,0,1,0,55.7,8.815269,1.386294,,0
-11,6,0,0,1,628811,1,6735.316,56.27926,1,7,1,4.955401,4.122894,0,0,0,9.078296,0,0,0,1,0,4,51.1,10.3,1,43.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,43.2,8.815269,1.386294,2.205886,1
-11,6,0,0,2,628811,1,6735.316,57.27926,1,7,1,211.5649,2.868288,0,0,459.385,673.8182,1,0,0,15,0,4,51.1,10.3,1,43.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,43.2,8.815269,1.386294,6.51296,1
-11,6,0,0,3,628811,1,6735.316,58.27926,1,7,1,120.7404,21.45562,0,0,0,142.196,0,0,0,2,0,4,51.1,10.3,1,43.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,43.2,8.815269,1.386294,4.957207,1
-11,6,0,0,4,628811,1,6735.316,59.27926,1,7,1,8.311296,0,0,0,0,8.311296,0,0,0,1,0,3,51.1,10.3,1,43.2,0,152.88,0,0,1.098612,5.029653,0,0,0,0,0,1,43.2,8.815269,1.098612,2.117615,1
-11,6,0,0,5,628811,1,6735.316,60.27926,1,7,1,13.72213,18.97084,0,0,0,32.69297,0,0,0,2,0,4,51.1,10.3,1,43.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,43.2,8.815269,1.386294,3.48716,1
-11,6,0,0,1,628812,1,6735.316,58.60369,0,1.5,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,13.8,0,51.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,51.2,8.815269,1.386294,,0
-11,6,0,0,2,628812,1,6735.316,59.60369,0,1.5,1,6.883892,0,0,0,0,6.883892,0,0,0,1,0,4,58.5,13.8,0,51.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,51.2,8.815269,1.386294,1.929184,1
-11,6,0,0,3,628812,1,6735.316,60.60369,0,1.5,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,13.8,0,51.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,51.2,8.815269,1.386294,,0
-11,6,0,0,4,628812,1,6735.316,61.60369,0,1.5,1,0,0,0,0,0,0,0,0,0,0,0,3,58.5,13.8,0,51.2,0,152.88,0,0,1.098612,5.029653,0,0,0,0,0,1,51.2,8.815269,1.098612,,0
-11,6,0,0,5,628812,1,6735.316,62.60369,0,1.5,1,0,0,0,0,0,0,0,0,0,0,0,4,58.5,13.8,0,51.2,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,1,51.2,8.815269,1.386294,,0
-13,6,0,0,1,628817,0,9209.934,30.91855,1,13,1,84.13967,30.0589,0,0,0,114.1986,0,0,0,6,0,3,50,24.1,1,36.4,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,1,0,36.4,9.128146,1.098612,4.737939,1
-13,6,0,0,2,628817,0,9209.934,31.91855,1,13,1,133.3585,83.55119,0,0,280.5062,497.416,1,0,0,22,0,3,50,24.1,1,36.4,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,1,0,36.4,9.128146,1.098612,6.209426,1
-13,6,0,0,3,628817,0,9209.934,32.91855,1,13,1,363.4648,89.5506,0,0,1151.76,1604.775,1,0,0,13,0,3,50,24.1,1,36.4,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,1,0,36.4,9.128146,1.098612,7.380739,1
-13,6,0,0,1,628818,0,9209.934,33.54141,0,14,1,31.55238,11.0854,35.33866,0,0,77.97644,0,0,0,2,0,3,84.6,0,0,77.3,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,77.3,9.128146,1.098612,4.356407,1
-13,6,0,0,2,628818,0,9209.934,34.54141,0,14,1,0,0,0,0,0,0,0,0,0,0,0,3,84.6,0,0,77.3,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,77.3,9.128146,1.098612,,0
-13,6,0,0,3,628818,0,9209.934,35.54141,0,14,1,0,4.06518,0,0,0,4.06518,0,0,0,0,0,3,84.6,0,0,77.3,450,869.36,0,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,77.3,9.128146,1.098612,1.402458,1
-13,6,0,0,1,628819,0,9209.934,11.98357,0,13,1,15.14514,0,0,0,0,15.14514,0,0,0,2,0,3,86.7,10.57626,0,88.9,450,869.36,1,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,88.9,9.128146,1.098612,2.71768,1
-13,6,0,0,2,628819,0,9209.934,12.98357,0,13,1,44.95655,0,0,0,0,44.95655,0,0,0,4,0,3,86.7,10.57626,0,88.9,450,869.36,1,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,88.9,9.128146,1.098612,3.805696,1
-13,6,0,0,3,628819,0,9209.934,13.98357,0,13,1,5.145798,2.288165,0,0,0,7.433962,0,0,0,1,0,3,86.7,10.57626,0,88.9,450,869.36,1,0,1.098612,6.767757,1,4.564348,6.160541,0,0,0,88.9,9.128146,1.098612,2.006059,1
-11,6,0,1,1,628833,0,10121.86,41.06776,1,12,1,71.09606,0,0,0,0,71.09606,0,0,0,0,14,3,81.9,20.7,1,83,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,83,9.222552,1.098612,4.264032,1
-11,6,0,1,2,628833,0,10121.86,42.06776,1,12,1,141.6097,6.613515,24.29765,0,0,172.5209,0,0,0,3,17,3,81.9,20.7,1,83,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,83,9.222552,1.098612,5.150518,1
-11,6,0,1,3,628833,0,10121.86,43.06776,1,12,1,31.14187,4.086505,0,0,0,35.22837,0,0,0,0,4,3,81.9,20.7,1,83,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,83,9.222552,1.098612,3.561852,1
-11,6,0,1,1,628834,0,10121.86,14.14647,1,12,1,102.8354,0,26.66102,0,0,129.4964,0,0,0,1,10,3,71.3,6.9,0,63.6,0,192.48,1,1,1.098612,5.259992,0,0,0,0,0,0,63.6,9.222552,1.098612,4.863653,1
-11,6,0,1,2,628834,0,10121.86,15.14647,1,12,1,25.05695,0,0,0,0,25.05695,0,0,0,0,5,3,71.3,6.9,0,63.6,0,192.48,1,1,1.098612,5.259992,0,0,0,0,0,0,63.6,9.222552,1.098612,3.221151,1
-11,6,0,1,3,628834,0,10121.86,16.14647,1,12,1,13.84083,0,13.84083,0,0,27.68166,0,0,0,1,0,3,71.3,6.9,0,63.6,0,192.48,1,1,1.098612,5.259992,0,0,0,0,0,0,63.6,9.222552,1.098612,3.32077,1
-11,6,0,1,1,628835,0,10121.86,46.07803,0,6,1,126.9573,36.2463,36.39441,0,0,199.598,0,0,0,6,15,3,60.6,20.7,1,42,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,42,9.222552,1.098612,5.296305,1
-11,6,0,1,2,628835,0,10121.86,47.07803,0,6,1,107.4412,30.36826,0,0,0,137.8094,0,0,0,4,2,3,60.6,20.7,1,42,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,42,9.222552,1.098612,4.925872,1
-11,6,0,1,3,628835,0,10121.86,48.07803,0,6,1,243.5986,41.0692,55.23529,0,0,339.9031,0,0,0,3,15,3,60.6,20.7,1,42,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,42,9.222552,1.098612,5.82866,1
-11,6,0,1,1,628836,0,3125.96,22.10267,1,12,1,19.88997,0,27.50741,0,0,47.39738,0,0,0,2,0,1,92,6.9,0,81.8,0,0,0,0,0,0,0,0,0,0,0,0,81.8,8.047816,0,3.858567,1
-11,6,0,1,2,628836,0,3125.96,23.10267,1,12,1,10.63022,3.18527,0,0,0,13.81549,0,0,0,2,0,1,92,6.9,0,81.8,0,0,0,0,0,0,0,0,0,0,0,0,81.8,8.047816,0,2.62579,1
-11,6,0,1,3,628836,0,3125.96,24.10267,1,12,1,31.48789,5.290658,0,0,0,36.77855,0,0,0,3,0,1,92,6.9,0,81.8,0,0,0,0,0,0,0,0,0,0,0,0,81.8,8.047816,0,3.604915,1
-17,6,25,0,1,628837,0,11835.64,20.30664,1,12,1,44.59402,23.41186,36.18006,0,0,104.186,0,0,0,3,0,2,77.40034,10.57626,.1442925,,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,70.68995,9.378955,.6931472,4.646177,1
-17,6,25,0,2,628837,0,11835.64,21.30664,1,12,1,65.73479,27.01927,0,0,0,92.75406,0,0,0,8,0,2,77.40034,10.57626,.1442925,,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,70.68995,9.378955,.6931472,4.529952,1
-17,6,25,0,3,628837,0,11835.64,22.30664,1,12,1,274.4425,46.76158,0,0,0,321.2041,0,0,0,2,23,2,77.40034,10.57626,.1442925,,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,70.68995,9.378955,.6931472,5.772077,1
-11,6,0,1,1,628848,0,15649.26,13.49487,1,12,1,5.835765,0,0,0,0,5.835765,0,0,0,1,0,3,88.3,10.57626,0,100,0,192.48,1,1,1.098612,5.259992,0,0,0,1,0,0,100,9.658242,1.098612,1.764005,1
-11,6,0,1,2,628848,0,15649.26,14.49487,1,12,1,13.12828,0,0,0,0,13.12828,0,0,0,2,0,3,88.3,10.57626,0,100,0,192.48,1,1,1.098612,5.259992,0,0,0,1,0,0,100,9.658242,1.098612,2.574769,1
-11,6,0,1,3,628848,0,15649.26,15.49487,1,12,1,21.31258,2.537212,0,0,0,23.8498,0,0,0,3,0,3,88.3,10.57626,0,100,0,192.48,1,1,1.098612,5.259992,0,0,0,1,0,0,100,9.658242,1.098612,3.171776,1
-11,6,0,1,1,628850,0,15649.26,17.34976,0,12,1,5.002084,0,0,0,0,5.002084,0,0,0,1,0,3,80.9,3.4,0,62.5,0,192.48,1,0,1.098612,5.259992,0,0,0,1,0,0,62.5,9.658242,1.098612,1.609855,1
-11,6,0,1,2,628850,0,15649.26,18.34976,0,12,1,6.751688,0,0,0,0,6.751688,0,0,0,1,0,3,80.9,3.4,0,62.5,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,62.5,9.658242,1.098612,1.909793,1
-11,6,0,1,3,628850,0,15649.26,19.34976,0,12,1,6.08931,10.57172,0,0,0,16.66103,0,0,0,1,0,3,80.9,3.4,0,62.5,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,62.5,9.658242,1.098612,2.813072,1
-11,6,0,1,1,628853,0,15649.26,44.01917,1,12,1,12.08837,0,0,0,0,12.08837,0,0,0,1,0,3,71.8,3.4,0,90.9,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,90.9,9.658242,1.098612,2.492244,1
-11,6,0,1,2,628853,0,15649.26,45.01917,1,12,1,57.38935,34.70367,0,0,2930.983,3023.076,3,0,0,4,0,3,71.8,3.4,0,90.9,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,90.9,9.658242,1.098612,8.01403,1
-11,6,0,1,3,628853,0,15649.26,46.01917,1,12,1,19.28281,27.0636,0,0,0,46.34641,0,0,0,2,0,3,71.8,3.4,0,90.9,0,192.48,0,0,1.098612,5.259992,0,0,0,1,0,0,90.9,9.658242,1.098612,3.836144,1
-13,6,0,0,1,628854,1,8773.682,28.44901,1,13,1,109.1832,43.90182,32.16251,0,0,185.2476,0,0,0,4,4,2,69.1,10.3,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,9.079626,.6931472,5.221693,1
-13,6,0,0,2,628854,1,8773.682,29.44901,1,13,1,5.694761,2.38041,0,0,0,8.075171,0,0,0,1,0,2,69.1,10.3,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,9.079626,.6931472,2.088794,1
-13,6,0,0,3,628854,1,8773.682,30.44901,1,13,1,109.3426,9,28.5917,0,1488.159,1635.093,2,0,0,6,0,2,69.1,10.3,0,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,9.079626,.6931472,7.399455,1
-13,6,0,0,1,628855,1,8773.682,31.57016,0,17,1,2.539145,0,0,0,0,2.539145,0,0,0,0,0,2,79.8,0,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.079626,.6931472,.9318275,1
-13,6,0,0,2,628855,1,8773.682,32.57016,0,17,1,0,2.961276,0,0,0,2.961276,0,0,0,0,0,2,79.8,0,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.079626,.6931472,1.08562,1
-13,6,0,0,3,628855,1,8773.682,33.57016,0,17,1,37.71626,7.470588,28.5917,0,0,73.77855,0,0,0,1,0,2,79.8,0,0,77.3,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,77.3,9.079626,.6931472,4.301068,1
-17,6,25,1,1,628911,1,4195.601,8.22998,1,12,1,4.955401,0,0,0,0,4.955401,0,0,0,0,1,3,56.7,10.57626,0,70.4,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,70.4,8.342031,1.098612,1.600478,1
-17,6,25,1,2,628911,1,4195.601,9.22998,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,70.4,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,70.4,8.342031,1.098612,,0
-17,6,25,1,3,628911,1,4195.601,10.22998,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,70.4,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,70.4,8.342031,1.098612,,0
-17,6,25,1,4,628911,1,4195.601,11.22998,1,12,1,12.08916,2.002267,0,0,0,14.09142,0,0,0,0,0,3,56.7,10.57626,0,70.4,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,70.4,8.342031,1.098612,2.645566,1
-17,6,25,1,5,628911,1,4195.601,12.22998,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,56.7,10.57626,0,70.4,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,70.4,8.342031,1.098612,,0
-17,6,25,1,1,628912,1,4195.601,25.41821,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,58.5,10.3,0,50,182,182,0,0,1.098612,5.204007,0,3.258096,6.590301,0,0,0,50,8.342031,1.098612,,0
-17,6,25,1,2,628912,1,4195.601,26.41821,1,12,1,9.178522,1.835704,33.50161,0,0,44.51583,0,0,0,0,1,3,58.5,10.3,0,50,182,182,0,0,1.098612,5.204007,0,3.258096,6.590301,0,0,0,50,8.342031,1.098612,3.795845,1
-17,6,25,1,3,628912,1,4195.601,27.41821,1,12,1,10.09676,0,0,0,0,10.09676,0,0,0,0,0,3,58.5,10.3,0,50,182,182,0,0,1.098612,5.204007,0,3.258096,6.590301,0,0,0,50,8.342031,1.098612,2.312215,1
-17,6,25,1,4,628912,1,4195.601,28.41821,1,12,1,5.289006,6.135247,0,0,0,11.42425,0,0,0,1,0,3,58.5,10.3,0,50,182,182,0,0,1.098612,5.204007,0,3.258096,6.590301,0,0,0,50,8.342031,1.098612,2.435739,1
-17,6,25,1,5,628912,1,4195.601,29.41821,1,12,1,20.24014,0,29.15952,0,0,49.39966,0,0,0,2,1,3,58.5,10.3,0,50,182,182,0,0,1.098612,5.204007,0,3.258096,6.590301,0,0,0,50,8.342031,1.098612,3.899944,1
-17,6,25,1,1,628913,1,4195.601,5.801506,1,12,1,21.80377,4.088206,0,0,0,25.89197,0,0,0,2,1,3,68.3,10.57626,0,81.5,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,81.5,8.342031,1.098612,3.253933,1
-17,6,25,1,2,628913,1,4195.601,6.801506,1,12,1,21.56953,7.154658,0,0,0,28.72419,0,0,0,2,0,3,68.3,10.57626,0,81.5,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,81.5,8.342031,1.098612,3.357739,1
-17,6,25,1,3,628913,1,4195.601,7.801506,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,68.3,10.57626,0,81.5,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,81.5,8.342031,1.098612,,0
-17,6,25,1,4,628913,1,4195.601,8.801506,1,12,1,35.88969,14.03098,0,0,0,49.92067,0,0,0,5,0,3,68.3,10.57626,0,81.5,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,81.5,8.342031,1.098612,3.910435,1
-17,6,25,1,5,628913,1,4195.601,9.801506,1,12,1,64.83705,0,0,0,0,64.83705,0,0,0,3,0,3,68.3,10.57626,0,81.5,182,182,1,1,1.098612,5.204007,0,3.258096,6.590301,0,0,0,81.5,8.342031,1.098612,4.171877,1
-13,6,0,0,1,628945,0,6907.322,8.550308,1,10,1,30.89293,10.15658,0,0,332.2048,373.2543,1,0,0,5,0,4,81.7,10.57626,.1442925,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.840482,1.386294,5.92226,1
-13,6,0,0,2,628945,0,6907.322,9.550308,1,10,1,20.50114,1.461655,0,0,0,21.96279,0,0,0,4,0,4,81.7,10.57626,.1442925,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.840482,1.386294,3.08935,1
-13,6,0,0,3,628945,0,6907.322,10.55031,1,10,1,24.56747,3.460208,0,0,345.3287,373.3564,1,0,0,3,0,4,81.7,10.57626,.1442925,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.840482,1.386294,5.922534,1
-13,6,0,0,1,628946,0,6907.322,27.30185,1,10,1,121.879,13.12738,22.85231,0,0,157.8587,0,0,0,3,1,4,70.2,20.7,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,8.840482,1.386294,5.0617,1
-13,6,0,0,2,628946,0,6907.322,28.30185,1,10,1,16.32498,4.688686,0,0,0,21.01367,0,0,0,1,0,4,70.2,20.7,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,8.840482,1.386294,3.045173,1
-13,6,0,0,3,628946,0,6907.322,29.30185,1,10,1,6.920415,0,0,0,0,6.920415,0,0,0,1,0,4,70.2,20.7,0,58,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,58,8.840482,1.386294,1.934476,1
-13,6,0,0,1,628947,0,6907.322,29.17454,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.8,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.840482,1.386294,,0
-13,6,0,0,2,628947,0,6907.322,30.17454,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.8,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.840482,1.386294,,0
-13,6,0,0,3,628947,0,6907.322,31.17454,0,12,1,228.7197,0,28.3737,0,1122.958,1380.052,2,0,0,4,0,4,88.8,6.9,0,81.8,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.8,8.840482,1.386294,7.229877,1
-13,6,0,1,1,629079,1,1756.272,6.16564,1,9,1,40.20313,4.316547,0,0,0,44.51968,0,0,0,2,0,4,70,10.57626,.1442925,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,7.471518,1.386294,3.795931,1
-13,6,0,1,2,629079,1,1756.272,7.16564,1,9,1,35.30752,4.350797,0,0,0,39.65831,0,0,0,4,0,4,70,10.57626,.1442925,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,7.471518,1.386294,3.680301,1
-13,6,0,1,3,629079,1,1756.272,8.16564,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,70,10.57626,.1442925,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,7.471518,1.386294,,0
-13,6,0,1,1,629080,1,1756.272,7.60575,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,7.471518,1.386294,,0
-13,6,0,1,2,629080,1,1756.272,8.605749,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,7.471518,1.386294,,0
-13,6,0,1,3,629080,1,1756.272,9.605749,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,80,10.57626,0,37,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,37,7.471518,1.386294,,0
-13,6,0,1,1,629081,1,1756.272,42.70226,1,9,1,36.8176,3.23741,35.97122,0,0,76.02624,0,0,0,2,1,4,70.7,37.9,1,47.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.5,7.471518,1.386294,4.331079,1
-13,6,0,1,2,629081,1,1756.272,43.70226,1,9,1,17.08428,1.526196,0,0,0,18.61048,0,0,0,4,0,4,70.7,37.9,1,47.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.5,7.471518,1.386294,2.923725,1
-13,6,0,1,3,629081,1,1756.272,44.70226,1,9,1,37.02422,0,0,0,0,37.02422,0,0,0,0,0,4,70.7,37.9,1,47.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,47.5,7.471518,1.386294,3.611572,1
-13,6,0,1,1,629096,0,7438.3,32.65709,0,12,1,239.526,6.982649,0,0,0,246.5087,0,0,0,2,12,6,70.7,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,5.507397,1
-13,6,0,1,2,629096,0,7438.3,33.65709,0,12,1,0,1.898254,0,0,0,1.898254,0,0,0,0,0,6,70.7,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,.6409343,1
-13,6,0,1,3,629096,0,7438.3,34.65709,0,12,1,0,1.051903,0,0,0,1.051903,0,0,0,0,0,6,70.7,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,.050601,1
-13,6,0,1,1,629097,0,7438.3,33.31964,1,9,1,26.66102,34.89632,0,0,426.9996,488.5569,1,0,0,1,0,6,58,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,6.191456,1
-13,6,0,1,2,629097,0,7438.3,34.31964,1,9,1,11.38952,22.11465,0,0,0,33.50418,0,0,0,2,0,6,58,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,3.51167,1
-13,6,0,1,3,629097,0,7438.3,35.31964,1,9,1,60.55363,9.231833,0,0,484.7751,554.5605,1,0,0,2,0,6,58,13.8,0,68.2,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,68.2,8.914532,1.791759,6.318176,1
-13,6,0,1,1,629098,0,7438.3,12.98289,1,9,1,43.16547,0,0,0,0,43.16547,0,0,0,2,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,3.765041,1
-13,6,0,1,2,629098,0,7438.3,13.98289,1,9,1,0,2.84738,0,0,0,2.84738,0,0,0,0,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,1.046399,1
-13,6,0,1,3,629098,0,7438.3,14.98289,1,9,1,5.882353,0,0,0,0,5.882353,0,0,0,1,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,1.771957,1
-13,6,0,1,1,629099,0,7438.3,14.10541,1,9,1,12.69573,2.221752,0,0,0,14.91748,0,0,0,1,0,6,83.3,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.914532,1.791759,2.702533,1
-13,6,0,1,2,629099,0,7438.3,15.10541,1,9,1,9.870919,13.85725,0,0,0,23.72817,0,0,0,2,0,6,83.3,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.914532,1.791759,3.166663,1
-13,6,0,1,3,629099,0,7438.3,16.10541,1,9,1,24.22145,1.903114,0,0,420.0692,446.1938,1,0,0,2,0,6,83.3,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.914532,1.791759,6.100753,1
-13,6,0,1,1,629100,0,7438.3,8.188911,1,9,1,11.84934,13.54211,0,0,0,25.39145,0,0,0,1,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,3.234412,1
-13,6,0,1,2,629100,0,7438.3,9.188911,1,9,1,0,2.84738,0,0,0,2.84738,0,0,0,0,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,1.046399,1
-13,6,0,1,3,629100,0,7438.3,10.18891,1,9,1,0,0,0,0,0,0,0,0,0,0,0,6,85,10.57626,0,88.9,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,88.9,8.914532,1.791759,,0
-16,6,95,1,1,629125,1,2132.104,36.24093,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,84.6,6.9,0,65.9,356.7,0,0,0,0,0,0,4.564348,5.928188,1,0,0,65.9,7.665334,0,,0
-16,6,95,1,2,629125,1,2132.104,37.24093,1,12,1,2.671756,2.328244,0,0,1621.374,1626.374,2,1,0,0,0,1,84.6,6.9,0,65.9,356.7,0,0,0,0,0,0,4.564348,5.928188,1,0,0,65.9,7.665334,0,7.394108,1
-16,6,95,1,3,629125,1,2132.104,38.24093,1,12,1,0,0,0,0,1233.449,1233.449,1,0,0,0,0,1,84.6,6.9,0,65.9,356.7,0,0,0,0,0,0,4.564348,5.928188,1,0,0,65.9,7.665334,0,7.11757,1
-15,6,95,1,1,629142,1,4487.39,24.23545,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.1,3.4,0,77.3,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.3,8.409249,1.94591,,0
-15,6,95,1,2,629142,1,4487.39,25.23545,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.1,3.4,0,77.3,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.3,8.409249,1.94591,,0
-15,6,95,1,3,629142,1,4487.39,26.23545,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.1,3.4,0,77.3,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.3,8.409249,1.94591,,0
-15,6,95,1,1,629143,1,4487.39,3.876797,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,2,629143,1,4487.39,4.876797,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,3,629143,1,4487.39,5.876797,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,1,629144,1,4487.39,2.819986,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,2,629144,1,4487.39,3.819986,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,3,629144,1,4487.39,4.819986,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,77.8,8.409249,1.94591,,0
-15,6,95,1,1,629145,1,4487.39,26.00685,0,10,1,0,3.990025,0,0,0,3.990025,0,0,0,0,0,7,80.9,13.8,0,75,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,75,8.409249,1.94591,1.383798,1
-15,6,95,1,2,629145,1,4487.39,27.00685,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,80.9,13.8,0,75,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,75,8.409249,1.94591,,0
-15,6,95,1,3,629145,1,4487.39,28.00685,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,80.9,13.8,0,75,820,820,0,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,75,8.409249,1.94591,,0
-15,6,95,1,1,629146,1,4487.39,5.639973,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,2,629146,1,4487.39,6.639973,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,3,629146,1,4487.39,7.639973,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,1,629147,1,4487.39,6.554415,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,2,629147,1,4487.39,7.554415,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,3,629147,1,4487.39,8.554415,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,89.1,10.57626,0,74.1,820,820,1,0,1.94591,6.709304,0,4.564348,6.760598,1,0,0,74.1,8.409249,1.94591,,0
-15,6,95,1,1,629149,1,1798.771,25.56331,1,12,1,25.81464,0,0,0,0,25.81464,1,1,0,2,0,3,79.8,10.3,0,55.7,80.9,80.9,0,0,1.098612,4.393214,0,4.564348,4.444507,0,1,0,55.7,7.495415,1.098612,3.250942,1
-15,6,95,1,2,629149,1,1798.771,26.56331,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,10.3,0,55.7,80.9,80.9,0,0,1.386294,4.393214,0,4.564348,4.444507,0,1,0,55.7,7.495415,1.386294,,0
-15,6,95,1,3,629149,1,1798.771,27.56331,1,12,1,21.10727,0,0,0,0,21.10727,0,0,0,0,0,4,79.8,10.3,0,55.7,80.9,80.9,0,0,1.386294,4.393214,0,4.564348,4.444507,0,1,0,55.7,7.495415,1.386294,3.049617,1
-15,6,95,1,1,629150,1,1798.771,5.467488,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,91.7,10.57626,0,70.4,80.9,80.9,1,1,1.098612,4.393214,0,4.564348,4.444507,0,1,0,70.4,7.495415,1.098612,,0
-15,6,95,1,2,629150,1,1798.771,6.467488,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,0,70.4,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,1,0,70.4,7.495415,1.386294,,0
-15,6,95,1,3,629150,1,1798.771,7.467488,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,0,70.4,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,1,0,70.4,7.495415,1.386294,,0
-15,6,95,1,1,629151,1,1798.771,4.314853,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,70.4,80.9,80.9,1,1,1.098612,4.393214,0,4.564348,4.444507,0,0,0,70.4,7.495415,1.098612,,0
-15,6,95,1,2,629151,1,1798.771,5.314853,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,0,0,70.4,7.495415,1.386294,,0
-15,6,95,1,3,629151,1,1798.771,6.314853,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,0,0,70.4,7.495415,1.386294,,0
-10,6,50,0,1,629174,1,6735.316,41.84258,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,1000,0,0,0,.6931472,0,0,3.931826,7.600903,0,0,0,70.68995,8.815269,.6931472,,0
-10,6,50,0,2,629174,1,6735.316,42.84258,1,7,1,119.2103,28.94837,37.20577,0,895.2164,1080.581,1,0,0,14,0,2,77.40034,10.57626,.1442925,,1000,0,0,0,.6931472,0,0,3.931826,7.600903,0,0,0,70.68995,8.815269,.6931472,6.985254,1
-10,6,50,0,3,629174,1,6735.316,43.84258,1,7,1,82.35294,13.78893,0,0,0,96.14187,0,0,0,9,0,1,77.40034,10.57626,.1442925,,1000,0,0,0,0,0,0,3.931826,7.600903,0,0,0,70.68995,8.815269,0,4.565825,1
-10,6,50,0,1,629175,1,6735.316,19.17864,0,8,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,1000,0,0,0,.6931472,0,0,3.931826,7.600903,0,0,0,70.68995,8.815269,.6931472,,0
-10,6,50,0,2,629175,1,6735.316,20.17864,0,8,1,37.96507,2.505695,0,0,0,40.47077,0,0,0,2,0,2,77.40034,10.57626,.1442925,,1000,0,0,0,.6931472,0,0,3.931826,7.600903,0,0,0,70.68995,8.815269,.6931472,3.70058,1
-11,6,0,0,1,629176,0,7813.108,21.07324,1,11,1,170.5459,45.44646,0,0,193.3982,409.3906,1,0,0,13,0,2,58.5,3.4,0,51.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,51.1,8.963686,.6931472,6.01467,1
-11,6,0,0,2,629176,0,7813.108,22.07324,1,11,1,698.1777,108.6484,0,0,0,806.8261,0,0,0,18,63,2,58.5,3.4,0,51.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,51.1,8.963686,.6931472,6.693108,1
-11,6,0,0,3,629176,0,7813.108,23.07324,1,11,1,371.6263,86.31142,0,0,600.346,1058.284,1,0,0,16,29,2,58.5,3.4,0,51.1,0,0,0,0,.6931472,0,0,0,0,1,0,0,51.1,8.963686,.6931472,6.964404,1
-11,6,0,0,1,629177,0,7813.108,22.48323,0,11,1,34.27846,12.24291,0,0,0,46.52137,0,0,0,2,0,2,64.9,6.9,0,80.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,80.7,8.963686,.6931472,3.839912,1
-11,6,0,0,2,629177,0,7813.108,23.48323,0,11,1,45.55809,6.719818,0,0,0,52.2779,0,0,0,2,0,2,64.9,6.9,0,80.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,80.7,8.963686,.6931472,3.956574,1
-11,6,0,0,3,629177,0,7813.108,24.48323,0,11,1,323.5294,15.70934,0,0,0,339.2388,0,0,0,7,27,2,64.9,6.9,0,80.7,0,0,0,0,.6931472,0,0,0,0,1,0,0,80.7,8.963686,.6931472,5.826704,1
-11,6,0,0,1,629207,0,2275.073,57.54963,0,7,1,0,0,0,0,0,0,0,0,0,0,0,1,89.4,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.730207,0,,0
-11,6,0,0,2,629207,0,2275.073,58.54963,0,7,1,0,0,0,0,0,0,0,0,0,0,0,1,89.4,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.730207,0,,0
-11,6,0,0,3,629207,0,2275.073,59.54963,0,7,1,29.77456,0,0,0,0,29.77456,0,0,0,2,0,1,89.4,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.730207,0,3.393655,1
-11,6,0,0,4,629207,0,2275.073,60.54963,0,7,1,3.816794,0,0,0,0,3.816794,0,0,0,0,0,1,89.4,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.730207,0,1.339411,1
-11,6,0,0,5,629207,0,2275.073,61.54963,0,7,1,15.33101,0,34.01742,0,0,49.34843,0,0,0,1,0,1,89.4,3.4,0,59.1,0,0,0,0,0,0,0,0,0,1,0,0,59.1,7.730207,0,3.898906,1
-15,6,95,1,1,629226,1,1446.334,47.32923,1,6,1,23.94015,18.22444,21.94514,0,0,64.10973,0,0,0,4,0,2,60.6,24.1,1,55.7,197.1,197.1,0,0,.6931472,5.283711,0,4.564348,5.335004,0,0,1,55.7,7.277479,.6931472,4.160596,1
-15,6,95,1,2,629226,1,1446.334,48.32923,1,6,1,58.09129,68.39558,0,0,0,126.4869,0,0,0,7,0,2,60.6,24.1,1,55.7,197.1,197.1,0,0,.6931472,5.283711,0,4.564348,5.335004,0,0,1,55.7,7.277479,.6931472,4.840138,1
-15,6,95,1,3,629226,1,1446.334,49.32923,1,6,1,56.70758,37.44393,0,0,0,94.1515,0,0,0,6,0,1,60.6,24.1,1,55.7,197.1,197.1,0,0,0,5.283711,0,4.564348,5.335004,0,0,1,55.7,7.277479,0,4.544905,1
-15,6,95,1,4,629226,1,1446.334,50.32923,1,6,1,48.97494,67.34624,29.61276,0,0,145.9339,0,0,0,4,0,1,60.6,24.1,1,55.7,197.1,197.1,0,0,0,5.283711,0,4.564348,5.335004,0,0,1,55.7,7.277479,0,4.983154,1
-15,6,95,1,5,629226,1,1446.334,51.32923,1,6,1,149.827,80.29412,21.45329,0,0,251.5744,0,0,0,7,10,1,60.6,24.1,1,55.7,197.1,197.1,0,0,0,5.283711,0,4.564348,5.335004,0,0,1,55.7,7.277479,0,5.527739,1
-15,6,95,1,1,629227,1,1446.334,22.37098,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,72.3,20.7,0,56.8,197.1,197.1,0,0,.6931472,5.283711,0,4.564348,5.335004,0,0,1,56.8,7.277479,.6931472,,0
-15,6,95,1,2,629227,1,1446.334,23.37098,1,12,1,10.14292,15.16828,0,0,0,25.3112,0,0,0,2,0,2,72.3,20.7,0,56.8,197.1,197.1,0,0,.6931472,5.283711,0,4.564348,5.335004,0,0,1,56.8,7.277479,.6931472,3.231247,1
-11,6,0,1,1,629231,0,6757.771,31.50171,0,12,1,8.977556,1.526185,0,0,0,10.50374,0,0,0,1,0,1,42.6,17.2,1,38.6,0,0,0,0,0,0,0,0,0,0,1,0,38.6,8.818597,0,2.351731,1
-11,6,0,1,2,629231,0,6757.771,32.50171,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,42.6,17.2,1,38.6,0,0,0,0,0,0,0,0,0,0,1,0,38.6,8.818597,0,,0
-11,6,0,1,3,629231,0,6757.771,33.50171,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,42.6,17.2,1,38.6,0,0,0,0,0,0,0,0,0,0,1,0,38.6,8.818597,0,,0
-11,6,0,1,4,629231,0,6757.771,34.50171,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,42.6,17.2,1,38.6,0,0,0,0,0,0,0,0,0,0,1,0,38.6,8.818597,0,,0
-11,6,0,1,5,629231,0,6757.771,35.50171,0,12,1,8.304499,0,21.45329,0,0,29.75779,0,0,0,1,0,1,42.6,17.2,1,38.6,0,0,0,0,0,0,0,0,0,0,1,0,38.6,8.818597,0,3.393091,1
-11,6,0,1,1,629234,1,5576.037,27.50171,1,16,1,58.40034,31.18493,0,0,0,89.58527,0,0,0,6,0,1,25,24.1,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,8.626413,0,4.495191,1
-11,6,0,1,2,629234,1,5576.037,28.50171,1,16,1,63.85725,42.12984,0,0,0,105.9871,0,0,0,4,0,1,25,24.1,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,8.626413,0,4.663317,1
-11,6,0,1,3,629234,1,5576.037,29.50171,1,16,1,182.0069,50.3045,0,0,411.2803,643.5917,1,0,0,6,0,1,25,24.1,0,68.2,0,0,0,0,0,0,0,0,0,1,0,0,68.2,8.626413,0,6.467064,1
-18,6,25,1,1,629235,0,6070.661,8.621492,1,8,1,0,4.020313,0,0,0,4.020313,0,0,0,0,0,7,83.3,10.57626,0,70.4,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.711388,1.94591,1.39136,1
-18,6,25,1,2,629235,0,6070.661,9.621492,1,8,1,0,2.471526,0,0,0,2.471526,0,0,0,0,0,7,83.3,10.57626,0,70.4,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.711388,1.94591,.9048358,1
-18,6,25,1,3,629235,0,6070.661,10.62149,1,8,1,0,0,0,0,0,0,0,0,0,0,0,7,83.3,10.57626,0,70.4,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.4,8.711388,1.94591,,0
-18,6,25,1,1,629236,0,6070.661,13.06229,1,8,1,12.69573,0,0,0,3811.257,3823.953,1,0,0,0,0,7,90,10.57626,0,51.9,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,0,1,0,51.9,8.711388,1.94591,8.24904,1
-18,6,25,1,2,629236,0,6070.661,14.06229,1,8,1,0,2.471526,0,0,0,2.471526,0,0,0,0,0,7,90,10.57626,0,51.9,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,0,1,0,51.9,8.711388,1.94591,.9048358,1
-18,6,25,1,3,629236,0,6070.661,15.06229,1,8,1,0,0,0,0,0,0,0,0,0,0,0,7,90,10.57626,0,51.9,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,0,1,0,51.9,8.711388,1.94591,,0
-18,6,25,1,1,629237,0,6070.661,14.89665,0,8,1,0,4.020313,0,0,0,4.020313,0,0,0,0,0,7,76.1,6.9,0,81.8,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,81.8,8.711388,1.94591,1.39136,1
-18,6,25,1,2,629237,0,6070.661,15.89665,0,8,1,0,2.471526,0,0,0,2.471526,0,0,0,0,0,7,76.1,6.9,0,81.8,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,81.8,8.711388,1.94591,.9048358,1
-18,6,25,1,3,629237,0,6070.661,16.89665,0,8,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,6.9,0,81.8,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,81.8,8.711388,1.94591,,0
-18,6,25,1,1,629238,0,6070.661,43.23614,0,4,1,106.6441,14.38849,0,0,0,121.0326,0,0,0,1,0,7,85.6,13.8,0,60.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,60.7,8.711388,1.94591,4.79606,1
-18,6,25,1,2,629238,0,6070.661,44.23614,0,4,1,52.77145,10.59226,0,0,0,63.3637,0,0,0,2,0,7,85.6,13.8,0,60.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,60.7,8.711388,1.94591,4.148891,1
-18,6,25,1,3,629238,0,6070.661,45.23614,0,4,1,117.6471,4.186851,42.43253,0,0,164.2664,0,0,0,4,1,7,85.6,13.8,0,60.7,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,60.7,8.711388,1.94591,5.10149,1
-18,6,25,1,1,629239,0,6070.661,5.982204,0,8,1,14.81168,4.020313,0,0,0,18.83199,0,0,0,1,0,7,83.3,10.57626,.1442925,63,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,63,8.711388,1.94591,2.935557,1
-18,6,25,1,2,629239,0,6070.661,6.982204,0,8,1,21.64009,2.471526,30.37206,0,0,54.48368,0,0,0,2,0,7,83.3,10.57626,.1442925,63,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,63,8.711388,1.94591,3.997901,1
-18,6,25,1,3,629239,0,6070.661,7.982204,0,8,1,24.22145,0,13.84083,0,0,38.06228,0,0,0,1,1,7,83.3,10.57626,.1442925,63,750,750,1,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,63,8.711388,1.94591,3.639224,1
-18,6,25,1,1,629240,0,6070.661,42.29158,1,8,1,4.231909,11.25688,0,0,0,15.48879,0,0,0,1,0,7,79.8,31,0,59.2,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,59.2,8.711388,1.94591,2.740116,1
-18,6,25,1,2,629240,0,6070.661,43.29158,1,8,1,146.3553,6.473045,0,0,0,152.8284,0,0,0,8,0,7,79.8,31,0,59.2,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,59.2,8.711388,1.94591,5.029316,1
-18,6,25,1,3,629240,0,6070.661,44.29158,1,8,1,46.19377,4.32526,32.87197,0,0,83.39101,0,0,0,4,1,7,79.8,31,0,59.2,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,0,1,0,59.2,8.711388,1.94591,4.423541,1
-18,6,25,1,1,629241,0,6070.661,17.08693,1,8,1,0,4.020313,0,0,0,4.020313,0,0,0,0,0,7,73.9,10.3,0,70.2,750,750,1,1,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.2,8.711388,1.94591,1.39136,1
-18,6,25,1,2,629241,0,6070.661,18.08693,1,8,1,46.31739,15.05695,0,0,0,61.37434,0,0,0,4,0,7,73.9,10.3,0,70.2,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.2,8.711388,1.94591,4.116992,1
-18,6,25,1,3,629241,0,6070.661,19.08693,1,8,1,38.23529,7.214533,0,0,0,45.44983,0,0,0,5,0,7,73.9,10.3,0,70.2,750,750,0,0,1.94591,6.620073,0,3.258096,8.006368,1,0,0,70.2,8.711388,1.94591,3.816609,1
-16,6,95,1,1,629274,0,9686.124,28.65161,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,3.4,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.178553,.6931472,,0
-16,6,95,1,2,629274,0,9686.124,29.65161,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,71.3,3.4,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.178553,.6931472,,0
-16,6,95,1,3,629274,0,9686.124,30.65161,0,18,1,5.488851,0,0,0,0,5.488851,0,0,0,1,0,2,71.3,3.4,1,72.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,72.7,9.178553,.6931472,1.702719,1
-13,6,0,1,1,629322,1,24177.68,17.63724,1,8,1,6.347863,0,0,0,0,6.347863,0,0,0,1,0,3,45.7,6.9,0,45.5,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,45.5,10.09323,1.098612,1.848118,1
-13,6,0,1,2,629322,1,24177.68,18.63724,1,8,1,34.16856,0,0,0,0,34.16856,0,0,0,2,0,3,45.7,6.9,0,45.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,45.5,10.09323,1.098612,3.531306,1
-13,6,0,1,3,629322,1,24177.68,19.63724,1,8,1,0,2.252595,0,0,0,2.252595,0,0,0,0,0,3,45.7,6.9,0,45.5,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,45.5,10.09323,1.098612,.8120829,1
-13,6,0,1,1,629323,1,24177.68,52.0438,0,8,1,71.73085,38.87431,33.85527,0,895.895,1040.355,1,0,0,5,2,3,89.4,6.9,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,10.09323,1.098612,6.947318,1
-13,6,0,1,2,629323,1,24177.68,53.0438,0,8,1,11.38952,9.483675,18.98254,0,0,39.85573,0,0,0,0,1,3,89.4,6.9,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,10.09323,1.098612,3.685266,1
-13,6,0,1,3,629323,1,24177.68,54.0438,0,8,1,12.11073,1.885813,32.87197,0,0,46.86851,0,0,0,0,1,3,89.4,6.9,0,76.1,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,76.1,10.09323,1.098612,3.847346,1
-13,6,0,1,1,629325,1,24177.68,50.97604,1,8,1,155.7342,33.66483,46.97419,0,0,236.3733,0,0,0,4,7,3,66,13.8,1,50,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,50,10.09323,1.098612,5.465412,1
-13,6,0,1,2,629325,1,24177.68,51.97604,1,8,1,194.7608,51.6287,0,0,0,246.3895,0,0,0,18,0,3,66,13.8,1,50,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,50,10.09323,1.098612,5.506914,1
-13,6,0,1,3,629325,1,24177.68,52.97604,1,8,1,96.19377,33.70242,42.43253,0,0,172.3287,0,0,0,6,1,3,66,13.8,1,50,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,1,0,50,10.09323,1.098612,5.149404,1
-11,6,0,1,1,629326,.5112414,13244.75,31.32923,1,13,1,42.91123,4.228018,2.949095,0,0,50.08835,0,0,0,3,0,4,61.2,10.3,0,81.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,81.8,9.491432,1.386294,3.913788,1
-11,6,0,1,2,629326,.5112414,13244.75,32.32923,1,13,1,20.77824,5.417454,0,292.7843,0,26.19569,0,0,14,3,0,4,61.2,10.3,0,81.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,81.8,9.491432,1.386294,3.265595,1
-11,6,0,1,3,629326,.5112414,13244.75,33.32923,1,13,1,122.47,1.73928,24.91595,259.8628,412.0069,561.1321,1,0,14,4,0,4,61.2,10.3,0,81.8,0,0,0,0,1.386294,0,0,0,0,0,0,0,81.8,9.491432,1.386294,6.329957,1
-11,6,0,1,1,629327,0,13244.75,32.24093,0,16,1,68.57383,1.430374,0,0,0,70.0042,0,0,0,3,0,4,80.3,6.9,0,87.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,87.5,9.491432,1.386294,4.248555,1
-11,6,0,1,2,629327,0,13244.75,33.24093,0,16,1,0,0,0,0,0,0,0,0,0,0,0,4,80.3,6.9,0,87.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,87.5,9.491432,1.386294,,0
-11,6,0,1,3,629327,0,13244.75,34.24093,0,16,1,63.80789,3.036021,32.93311,87.47856,0,99.77702,0,0,5,7,0,4,80.3,6.9,0,87.5,0,0,0,0,1.386294,0,0,0,0,0,0,0,87.5,9.491432,1.386294,4.602938,1
-11,6,0,1,1,629328,.5112414,13244.75,8.03833,1,13,1,53.00799,8.969289,0,0,0,61.97728,0,0,0,7,0,4,65,10.57626,0,44.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,44.4,9.491432,1.386294,4.126768,1
-11,6,0,1,2,629328,.5112414,13244.75,9.03833,1,13,1,68.75708,27.33661,0,0,333.9819,430.0756,1,0,0,12,0,4,65,10.57626,0,44.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,44.4,9.491432,1.386294,6.063961,1
-11,6,0,1,3,629328,.5112414,13244.75,10.03833,1,13,1,124.1852,3.948542,0,0,0,128.1338,0,0,1,7,0,4,65,10.57626,0,44.4,0,0,1,1,1.386294,0,0,0,0,0,0,0,44.4,9.491432,1.386294,4.853075,1
-13,6,0,1,1,629329,0,3669.739,13.05407,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,37,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,37,8.208148,1.609438,,0
-13,6,0,1,2,629329,0,3669.739,14.05407,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,37,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,37,8.208148,1.609438,,0
-13,6,0,1,3,629329,0,3669.739,15.05407,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,76.7,10.57626,0,37,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,37,8.208148,1.609438,,0
-13,6,0,1,1,629330,0,3669.739,26.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,0,0,67.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,67.9,8.208148,1.609438,,0
-13,6,0,1,2,629330,0,3669.739,27.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,0,0,67.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,67.9,8.208148,1.609438,,0
-13,6,0,1,3,629330,0,3669.739,28.27515,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,0,0,67.9,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,1,0,67.9,8.208148,1.609438,,0
-13,6,0,1,1,629332,0,3669.739,3.805613,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,63,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,63,8.208148,1.609438,,0
-13,6,0,1,2,629332,0,3669.739,4.805613,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,63,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,63,8.208148,1.609438,,0
-13,6,0,1,3,629332,0,3669.739,5.805613,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,63,450,0,1,0,1.609438,0,1,4.564348,6.160541,1,0,0,63,8.208148,1.609438,,0
-13,6,0,1,1,629333,0,3669.739,14.88569,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,66.5,13.8,0,56.8,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,56.8,8.208148,1.609438,,0
-13,6,0,1,2,629333,0,3669.739,15.88569,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,66.5,13.8,0,56.8,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,56.8,8.208148,1.609438,,0
-13,6,0,1,3,629333,0,3669.739,16.88569,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,66.5,13.8,0,56.8,450,0,1,1,1.609438,0,1,4.564348,6.160541,1,0,0,56.8,8.208148,1.609438,,0
-13,6,0,1,1,629334,0,3669.739,60.15058,1,5,1,12.69573,0,40.62632,0,0,53.32205,0,0,0,0,1,5,90.4,3.4,0,61.4,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,61.4,8.208148,1.609438,3.97635,1
-13,6,0,1,2,629334,0,3669.739,61.15058,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,3.4,0,61.4,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,61.4,8.208148,1.609438,,0
-13,6,0,1,3,629334,0,3669.739,62.15058,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,90.4,3.4,0,61.4,450,0,0,0,1.609438,0,1,4.564348,6.160541,0,0,0,61.4,8.208148,1.609438,,0
-11,6,0,0,1,629339,0,8513.057,51.25804,1,3,1,432.8986,65.99916,36.18006,0,1098.023,1633.101,2,0,0,19,46,2,71.3,37.9,1,54.5,0,231.48,0,0,.6931472,5.444493,0,0,0,0,1,0,54.5,9.049474,.6931472,7.398236,1
-11,6,0,0,2,629339,0,8513.057,52.25804,1,3,1,333.5852,97.4915,0,0,0,431.0767,0,0,0,15,32,2,71.3,37.9,1,54.5,0,231.48,0,0,.6931472,5.444493,0,0,0,0,1,0,54.5,9.049474,.6931472,6.066286,1
-11,6,0,0,3,629339,0,8513.057,53.25804,1,3,1,410.9777,114.3705,0,0,0,525.3482,0,0,0,17,28,1,71.3,37.9,1,54.5,0,231.48,0,0,0,5.444493,0,0,0,0,1,0,54.5,9.049474,0,6.264061,1
-11,6,0,0,1,629340,0,8513.057,56.22998,0,6,1,310.0547,169.3101,39.54565,0,6631.889,7150.799,1,0,0,28,0,2,78.1,20.7,1,58,0,231.48,0,0,.6931472,5.444493,0,0,0,1,0,0,58,9.049474,.6931472,8.874979,1
-11,6,0,0,2,629340,0,8513.057,57.22998,0,6,1,341.1409,202.9052,29.08953,0,1306.762,1879.898,2,0,0,32,0,2,78.1,20.7,1,58,0,231.48,0,0,.6931472,5.444493,0,0,0,1,0,0,58,9.049474,.6931472,7.538973,1
-11,6,0,1,1,629341,0,10837.69,25.94114,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,0,0,84.1,0,24,0,0,1.098612,3.178054,0,0,0,0,0,0,84.1,9.290877,1.098612,,0
-11,6,0,1,2,629341,0,10837.69,26.94114,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,0,0,84.1,0,24,0,0,1.098612,3.178054,0,0,0,0,0,0,84.1,9.290877,1.098612,,0
-11,6,0,1,3,629341,0,10837.69,27.94114,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,0,0,84.1,0,24,0,0,1.098612,3.178054,0,0,0,0,0,0,84.1,9.290877,1.098612,,0
-11,6,0,1,1,629342,0,10837.69,25.99315,1,12,1,115.1079,42.05671,23.2755,0,0,180.4401,0,0,0,5,1,3,55.9,27.6,1,34.1,0,24,0,0,1.098612,3.178054,0,0,0,1,0,0,34.1,9.290877,1.098612,5.195399,1
-11,6,0,1,2,629342,0,10837.69,26.99315,1,12,1,80.1063,17.51329,0,0,389.5216,487.1412,1,0,0,7,0,3,55.9,27.6,1,34.1,0,24,0,0,1.098612,3.178054,0,0,0,1,0,0,34.1,9.290877,1.098612,6.188554,1
-11,6,0,1,3,629342,0,10837.69,27.99315,1,12,1,63.49481,34.73702,24.91349,0,1021.107,1144.253,2,0,0,6,1,3,55.9,27.6,1,34.1,0,24,0,0,1.098612,3.178054,0,0,0,1,0,0,34.1,9.290877,1.098612,7.042507,1
-17,6,25,1,1,629344,0,0,59.32375,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,73.9,24.1,1,63.6,252.6,412.2,0,0,0,6.021509,0,3.258096,6.918102,0,1,0,63.6,0,0,,0
-17,6,25,1,2,629344,0,0,60.32375,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,73.9,24.1,1,63.6,252.6,412.2,0,0,0,6.021509,0,3.258096,6.918102,0,1,0,63.6,0,0,,0
-17,6,25,1,3,629344,0,0,61.32375,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,73.9,24.1,1,63.6,252.6,412.2,0,0,0,6.021509,0,3.258096,6.918102,0,1,0,63.6,0,0,,0
-10,6,50,0,1,629363,1,2209.421,34.88022,1,7,1,29.02819,0,0,0,0,29.02819,0,0,0,0,0,2,54.3,24.1,0,52.3,315.15,315.15,0,0,.6931472,5.753049,0,3.931826,6.446196,0,1,0,52.3,7.700938,.6931472,3.368267,1
-10,6,50,0,2,629363,1,2209.421,35.88022,1,7,1,5.666792,0,0,0,0,5.666792,0,0,0,1,0,2,54.3,24.1,0,52.3,315.15,315.15,0,0,.6931472,5.753049,0,3.931826,6.446196,0,1,0,52.3,7.700938,.6931472,1.734623,1
-10,6,50,0,3,629363,1,2209.421,36.88022,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,54.3,24.1,0,52.3,315.15,315.15,0,0,0,5.753049,0,3.931826,6.446196,0,1,0,52.3,7.700938,0,,0
-10,6,50,0,1,629364,1,2209.421,15.55647,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,59.6,17.2,1,47.7,315.15,315.15,1,1,.6931472,5.753049,0,3.931826,6.446196,1,0,0,47.7,7.700938,.6931472,,0
-10,6,50,0,2,629364,1,2209.421,16.55647,1,7,1,0,0,0,0,0,0,0,0,0,0,0,2,59.6,17.2,1,47.7,315.15,315.15,1,1,.6931472,5.753049,0,3.931826,6.446196,1,0,0,47.7,7.700938,.6931472,,0
-19,6,25,0,1,629385,0,9709.678,31.06366,1,12,1,23.60623,4.771472,0,0,0,28.3777,0,0,0,2,0,4,81.9,13.8,0,92,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92,9.180982,1.386294,3.345604,1
-19,6,25,0,2,629385,0,9709.678,32.06366,1,12,1,27.3528,6.026889,8.808531,0,0,42.18822,0,0,0,3,0,4,81.9,13.8,0,92,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92,9.180982,1.386294,3.742141,1
-19,6,25,0,3,629385,0,9709.678,33.06366,1,12,1,22.96895,7.01829,4.147171,0,0,34.13441,0,0,0,2,0,4,81.9,13.8,0,92,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92,9.180982,1.386294,3.530306,1
-19,6,25,0,4,629385,0,9709.678,34.06366,1,12,1,185.1145,44.08397,0,0,0,229.1985,0,0,0,8,10,4,81.9,13.8,0,92,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92,9.180982,1.386294,5.434588,1
-19,6,25,0,5,629385,0,9709.678,35.06366,1,12,1,67.24738,9.494774,0,0,0,76.74216,0,0,0,3,0,4,81.9,13.8,0,92,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,92,9.180982,1.386294,4.340451,1
-19,6,25,0,1,629386,0,9709.678,1.130732,0,12,1,13.05876,16.58965,0,0,0,29.64842,0,0,0,3,0,4,77.40034,10.57626,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,3.389409,1
-19,6,25,0,2,629386,0,9709.678,2.130732,0,12,1,30.11127,15.87854,0,2.341215,0,45.9898,0,0,1,5,0,4,77.40034,10.57626,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,3.82842,1
-19,6,25,0,3,629386,0,9709.678,3.130732,0,12,1,16.58869,6.380264,0,0,0,22.96895,0,0,0,3,0,4,77.40034,10.57626,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,3.134143,1
-19,6,25,0,4,629386,0,9709.678,4.130733,0,12,1,46.56488,20.22901,0,0,0,66.79389,0,0,0,7,0,4,77.40034,10.57626,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,4.201612,1
-19,6,25,0,5,629386,0,9709.678,5.130733,0,12,1,30.66202,2.351916,0,0,0,33.01394,0,0,0,4,0,4,77.40034,10.57626,0,88.9,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,3.49693,1
-19,6,25,0,1,629387,0,9709.678,6.442163,1,12,1,293.8222,22.9784,0,0,0,316.8006,0,0,0,16,0,4,90,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,5.758273,1
-19,6,25,0,2,629387,0,9709.678,7.442163,1,12,1,37.08855,7.185906,0,0,0,44.27446,0,0,0,5,0,4,90,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,3.790408,1
-19,6,25,0,3,629387,0,9709.678,8.442163,1,12,1,74.22373,18.92812,0,0,0,93.15185,0,0,0,8,0,4,90,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,4.534231,1
-19,6,25,0,4,629387,0,9709.678,9.442163,1,12,1,51.9084,12.30916,8.488549,0,0,72.70611,0,0,0,6,0,4,90,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,4.286426,1
-19,6,25,0,5,629387,0,9709.678,10.44216,1,12,1,68.29269,20.22648,22.10453,0,0,110.6237,0,0,0,7,0,4,90,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.9,9.180982,1.386294,4.706134,1
-19,6,25,0,1,629388,0,9709.678,31.06913,0,12,1,4.018081,1.25565,0,0,0,5.273732,0,0,0,1,0,4,91,0,0,93.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,93.2,9.180982,1.386294,1.662738,1
-19,6,25,0,2,629388,0,9709.678,32.06913,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91,0,0,93.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,93.2,9.180982,1.386294,,0
-19,6,25,0,3,629388,0,9709.678,33.06913,0,12,1,0,2.488303,0,0,0,2.488303,0,0,0,0,0,4,91,0,0,93.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,93.2,9.180982,1.386294,.9116009,1
-19,6,25,0,4,629388,0,9709.678,34.06913,0,12,1,7.251908,5.343512,0,0,0,12.59542,0,0,0,1,0,4,91,0,0,93.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,93.2,9.180982,1.386294,2.533333,1
-19,6,25,0,5,629388,0,9709.678,35.06913,0,12,1,19.5122,4.442509,0,0,0,23.9547,0,0,0,2,0,4,91,0,0,93.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,93.2,9.180982,1.386294,3.176165,1
-6,6,25,0,1,629404,0,10442.91,7.671458,0,14,1,0,6.941523,0,0,0,6.941523,0,0,0,0,0,5,93.3,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.253774,1.609438,1.937521,1
-6,6,25,0,2,629404,0,10442.91,8.671458,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.253774,1.609438,,0
-6,6,25,0,3,629404,0,10442.91,9.671458,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,10.57626,0,70.4,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.4,9.253774,1.609438,,0
-6,6,25,0,1,629405,0,10442.91,38.82546,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,13.8,0,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.253774,1.609438,,0
-6,6,25,0,2,629405,0,10442.91,39.82546,0,14,1,9.444654,4.125425,0,0,0,13.57008,0,0,0,1,0,5,79.8,13.8,0,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.253774,1.609438,2.607867,1
-6,6,25,0,3,629405,0,10442.91,40.82546,0,14,1,12.00686,0,0,0,696.0549,708.0618,1,0,0,1,0,5,79.8,13.8,0,54.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,54.5,9.253774,1.609438,6.562531,1
-6,6,25,0,1,629406,0,10442.91,13.87269,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,80,10.57626,0,66.7,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.253774,1.609438,,0
-6,6,25,0,2,629406,0,10442.91,14.87269,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,80,10.57626,0,66.7,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.253774,1.609438,,0
-6,6,25,0,3,629406,0,10442.91,15.87269,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,80,10.57626,0,66.7,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,66.7,9.253774,1.609438,,0
-6,6,25,0,1,629407,0,10442.91,34.28337,1,14,1,53.21834,0,0,0,0,53.21834,0,0,0,6,0,5,74.5,24.1,1,46.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.253774,1.609438,3.974403,1
-6,6,25,0,2,629407,0,10442.91,35.28337,1,14,1,40.42312,0,0,0,0,40.42312,0,0,0,3,0,5,74.5,24.1,1,46.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.253774,1.609438,3.699402,1
-6,6,25,0,3,629407,0,10442.91,36.28337,1,14,1,15.43739,0,24.01372,0,538.0789,577.53,1,0,0,1,1,5,74.5,24.1,1,46.6,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,46.6,9.253774,1.609438,6.35876,1
-6,6,25,0,1,629408,0,10442.91,9.344285,0,14,1,67.31174,0,0,0,0,67.31174,0,0,0,5,0,5,88.3,10.57626,0,74.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.253774,1.609438,4.209335,1
-6,6,25,0,2,629408,0,10442.91,10.34429,0,14,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,74.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.253774,1.609438,,0
-6,6,25,0,3,629408,0,10442.91,11.34429,0,14,1,29.15952,0,0,0,0,29.15952,0,0,0,4,0,5,88.3,10.57626,0,74.1,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,74.1,9.253774,1.609438,3.372782,1
-11,6,0,0,1,629409,0,13102.92,17.34155,1,11,1,0,5.384939,0,0,0,5.384939,0,0,0,0,0,3,81.4,6.9,0,64.8,0,197.4,1,1,1.098612,5.285232,0,0,0,0,0,0,64.8,9.480666,1.098612,1.683606,1
-11,6,0,0,2,629409,0,13102.92,18.34155,1,11,1,6.422365,10.65735,0,0,0,17.07971,0,0,0,1,0,3,81.4,6.9,0,64.8,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,64.8,9.480666,1.098612,2.837891,1
-11,6,0,0,3,629409,0,13102.92,19.34155,1,11,1,79.93139,19.46827,0,0,0,99.39966,0,0,0,2,0,3,81.4,6.9,0,64.8,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,64.8,9.480666,1.098612,4.599149,1
-11,6,0,0,1,629410,0,13102.92,38.66393,1,11,1,14.72444,21.35044,30.29028,0,0,66.36517,0,0,0,1,0,3,84,10.3,0,73.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,73.9,9.480666,1.098612,4.195172,1
-11,6,0,0,2,629410,0,13102.92,39.66393,1,11,1,35.88969,33.24518,0,0,0,69.13487,0,0,0,3,0,3,84,10.3,0,73.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,73.9,9.480666,1.098612,4.236059,1
-11,6,0,0,3,629410,0,13102.92,40.66393,1,11,1,21.61235,27.01544,33.49228,0,0,82.12007,0,0,0,2,0,3,84,10.3,0,73.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,73.9,9.480666,1.098612,4.408183,1
-11,6,0,0,1,629411,0,13102.92,40.73101,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,10.3,0,90.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,90.9,9.480666,1.098612,,0
-11,6,0,0,2,629411,0,13102.92,41.73101,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.3,10.3,0,90.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,90.9,9.480666,1.098612,,0
-11,6,0,0,3,629411,0,13102.92,42.73101,0,12,1,13.72213,0,39.32418,0,0,53.04631,0,0,0,1,0,3,80.3,10.3,0,90.9,0,197.4,0,0,1.098612,5.285232,0,0,0,0,0,0,90.9,9.480666,1.098612,3.971165,1
-11,6,0,1,1,629412,0,12463.39,56.55305,0,4,1,27.50741,1.438849,39.77994,0,0,68.7262,0,0,0,2,0,3,80.3,17.2,0,79.5,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,79.5,9.430631,1.098612,4.230131,1
-11,6,0,1,2,629412,0,12463.39,57.55305,0,4,1,0,3.849658,0,0,0,3.849658,0,0,0,0,0,3,80.3,17.2,0,79.5,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,79.5,9.430631,1.098612,1.347984,1
-11,6,0,1,3,629412,0,12463.39,58.55305,0,4,1,0,8.965398,0,0,0,8.965398,0,0,0,0,0,3,80.3,17.2,0,79.5,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,79.5,9.430631,1.098612,2.193372,1
-11,6,0,1,1,629414,0,12463.39,11.56194,1,12,1,0,1.6843,0,0,0,1.6843,0,0,0,0,0,3,88.3,10.57626,0,100,0,144.36,1,1,1.098612,4.97231,0,0,0,0,0,0,100,9.430631,1.098612,.5213498,1
-11,6,0,1,2,629414,0,12463.39,12.56194,1,12,1,12.90812,3.974943,0,0,0,16.88307,0,0,0,1,0,3,88.3,10.57626,0,100,0,144.36,1,1,1.098612,4.97231,0,0,0,0,0,0,100,9.430631,1.098612,2.826311,1
-11,6,0,1,3,629414,0,12463.39,13.56194,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,10.57626,0,100,0,144.36,1,1,1.098612,4.97231,0,0,0,0,0,0,100,9.430631,1.098612,,0
-11,6,0,1,1,629415,0,12463.39,48.13689,1,12,1,38.08718,0,39.77994,0,0,77.86712,0,0,0,2,0,3,79.8,31,0,69.3,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,69.3,9.430631,1.098612,4.355004,1
-11,6,0,1,2,629415,0,12463.39,49.13689,1,12,1,73.65224,1.621109,0,0,391.0403,466.3136,1,0,0,2,0,3,79.8,31,0,69.3,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,69.3,9.430631,1.098612,6.144858,1
-11,6,0,1,3,629415,0,12463.39,50.13689,1,12,1,62.62976,6.695502,0,0,0,69.32526,0,0,0,1,0,3,79.8,31,0,69.3,0,144.36,0,0,1.098612,4.97231,0,0,0,1,0,0,69.3,9.430631,1.098612,4.238809,1
-13,6,0,1,1,629424,0,5762.929,7.318275,1,9,1,29.20017,0,0,0,0,29.20017,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.659374,1.386294,3.374175,1
-13,6,0,1,2,629424,0,5762.929,8.318275,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.659374,1.386294,,0
-13,6,0,1,3,629424,0,5762.929,9.318275,1,9,1,5.536332,0,0,0,0,5.536332,0,0,0,1,0,4,85,10.57626,0,77.8,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,77.8,8.659374,1.386294,1.711332,1
-13,6,0,1,1,629425,0,5762.929,35.66051,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.9,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.659374,1.386294,,0
-13,6,0,1,2,629425,0,5762.929,36.66051,0,12,1,0,0,0,0,252.4677,252.4677,1,0,0,0,0,4,81.9,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.659374,1.386294,5.531283,1
-13,6,0,1,3,629425,0,5762.929,37.66051,0,12,1,5.190311,0,0,0,271.2803,276.4706,1,0,0,1,0,4,81.9,10.3,0,76.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,76.1,8.659374,1.386294,5.622105,1
-13,6,0,1,1,629426,0,5762.929,12.52293,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.659374,1.386294,,0
-13,6,0,1,2,629426,0,5762.929,13.52293,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,73.3,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.659374,1.386294,,0
-13,6,0,1,3,629426,0,5762.929,14.52293,1,9,1,29.41176,0,0,0,413.8408,443.2526,1,0,0,2,0,4,73.3,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,81.5,8.659374,1.386294,6.09414,1
-13,6,0,1,1,629427,0,5762.929,34.20397,1,9,1,28.35379,0,0,0,568.7685,597.1223,1,0,0,1,0,4,69.1,10.3,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.659374,1.386294,6.392122,1
-13,6,0,1,2,629427,0,5762.929,35.20397,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,69.1,10.3,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.659374,1.386294,,0
-13,6,0,1,3,629427,0,5762.929,36.20397,1,9,1,0,0,0,0,0,0,0,0,0,0,0,4,69.1,10.3,0,61.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.659374,1.386294,,0
-11,6,0,0,1,629437,1,293.9068,59.91513,1,5,1,43.33193,30.37442,29.44888,0,0,103.1552,0,0,0,5,0,2,84.6,10.3,0,64.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,64.8,5.686659,.6931472,4.636235,1
-11,6,0,0,2,629437,1,293.9068,60.91513,1,5,1,28.33396,35.47412,0,0,407.2535,471.0616,1,0,0,7,0,2,84.6,10.3,0,64.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,64.8,5.686659,.6931472,6.154989,1
-11,6,0,0,3,629437,1,293.9068,61.91513,1,5,1,45.62607,40.41166,0,0,0,86.03773,0,0,0,13,0,2,84.6,10.3,0,64.8,0,0,0,0,.6931472,0,0,0,0,0,1,0,64.8,5.686659,.6931472,4.454786,1
-11,6,0,0,1,629438,1,293.9068,17.94661,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.2,0,0,67,0,0,1,0,.6931472,0,0,0,0,0,1,0,67,5.686659,.6931472,,0
-11,6,0,0,2,629438,1,293.9068,18.94661,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.2,0,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,5.686659,.6931472,,0
-11,6,0,0,3,629438,1,293.9068,19.94661,0,5,1,0,0,0,0,0,0,0,0,0,0,0,2,86.2,0,0,67,0,0,0,0,.6931472,0,0,0,0,0,1,0,67,5.686659,.6931472,,0
-16,6,95,1,1,629462,1,6735.316,25.39357,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,81.8,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.8,8.815269,1.609438,,0
-16,6,95,1,2,629462,1,6735.316,26.39357,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,81.8,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.8,8.815269,1.609438,,0
-16,6,95,1,3,629462,1,6735.316,27.39357,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,78.2,0,0,81.8,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.8,8.815269,1.609438,,0
-16,6,95,1,1,629463,1,6735.316,5.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,10.57626,0,81.5,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.5,8.815269,1.609438,,0
-16,6,95,1,2,629463,1,6735.316,6.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,10.57626,0,81.5,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.5,8.815269,1.609438,,0
-16,6,95,1,3,629463,1,6735.316,7.262149,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,86.7,10.57626,0,81.5,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,1,0,0,81.5,8.815269,1.609438,,0
-16,6,95,1,1,629464,1,6735.316,22.75428,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,0,0,69.3,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,69.3,8.815269,1.609438,,0
-16,6,95,1,2,629464,1,6735.316,23.75428,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,0,0,69.3,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,69.3,8.815269,1.609438,,0
-16,6,95,1,3,629464,1,6735.316,24.75428,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,0,0,69.3,1000,263.18,0,0,1.609438,5.572838,0,4.564348,6.959049,1,0,0,69.3,8.815269,1.609438,,0
-16,6,95,1,1,629465,1,6735.316,3.370294,1,11,1,10.42101,0,0,0,0,10.42101,0,0,0,0,0,5,77.40034,10.57626,0,66.7,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,66.7,8.815269,1.609438,2.343824,1
-16,6,95,1,2,629465,1,6735.316,4.370294,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,66.7,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,66.7,8.815269,1.609438,,0
-16,6,95,1,3,629465,1,6735.316,5.370294,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,66.7,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,66.7,8.815269,1.609438,,0
-11,6,0,1,1,629468,1,7187.404,16.0575,1,5,1,5.07829,0,0,0,0,5.07829,0,0,0,1,0,13,12.2,17.2,1,52.3,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,52.3,8.880224,2.564949,1.624975,1
-11,6,0,1,2,629468,1,7187.404,17.0575,1,5,1,17.84358,8.10934,0,0,0,25.95292,0,0,0,3,0,13,12.2,17.2,1,52.3,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,52.3,8.880224,2.564949,3.256284,1
-11,6,0,1,3,629468,1,7187.404,18.0575,1,5,1,21.79931,6.647059,0,0,0,28.44637,0,0,0,2,0,14,12.2,17.2,1,52.3,0,106.56,0,0,2.639057,4.668708,0,0,0,1,0,0,52.3,8.880224,2.639057,3.348021,1
-11,6,0,1,1,629469,1,7187.404,5.702943,0,5,1,5.07829,1.904359,0,0,0,6.982649,0,0,0,1,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,1.943428,1
-11,6,0,1,2,629469,1,7187.404,6.702943,0,5,1,5.31511,1.905847,0,0,0,7.220957,0,0,0,1,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,1.976987,1
-11,6,0,1,3,629469,1,7187.404,7.702943,0,5,1,25.60554,0,0,0,0,25.60554,0,0,0,2,0,14,100,10.57626,0,100,0,106.56,1,0,2.639057,4.668708,0,0,0,1,0,0,100,8.880224,2.639057,3.242809,1
-11,6,0,1,1,629470,1,7187.404,10.12731,0,5,1,0,0,0,0,0,0,0,0,0,0,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,,0
-11,6,0,1,2,629470,1,7187.404,11.12731,0,5,1,0,1.602126,0,0,0,1.602126,0,0,0,0,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,.4713315,1
-11,6,0,1,3,629470,1,7187.404,12.12731,0,5,1,0,0,0,0,0,0,0,0,0,0,0,14,100,10.57626,0,100,0,106.56,1,0,2.639057,4.668708,0,0,0,1,0,0,100,8.880224,2.639057,,0
-11,6,0,1,1,629471,1,7187.404,14.81177,0,5,1,0,1.37537,0,0,0,1.37537,0,0,0,0,0,13,54.3,13.8,0,50,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,50,8.880224,2.564949,.318723,1
-11,6,0,1,2,629471,1,7187.404,15.81177,0,5,1,9.111617,2.403189,0,0,0,11.51481,0,0,0,1,0,13,54.3,13.8,0,50,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,50,8.880224,2.564949,2.443634,1
-11,6,0,1,3,629471,1,7187.404,16.81177,0,5,1,7.958477,0,0,0,0,7.958477,0,0,0,1,0,14,54.3,13.8,0,50,0,106.56,1,0,2.639057,4.668708,0,0,0,1,0,0,50,8.880224,2.639057,2.074238,1
-11,6,0,1,1,629472,1,7187.404,13.33333,1,5,1,0,0,0,0,0,0,0,0,0,0,0,13,58.3,10.57626,0,74.1,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,74.1,8.880224,2.564949,,0
-11,6,0,1,2,629472,1,7187.404,14.33333,1,5,1,0,0,0,0,0,0,0,0,0,0,0,13,58.3,10.57626,0,74.1,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,74.1,8.880224,2.564949,,0
-11,6,0,1,3,629472,1,7187.404,15.33333,1,5,1,0,0,0,0,0,0,0,0,0,0,0,14,58.3,10.57626,0,74.1,0,106.56,1,1,2.639057,4.668708,0,0,0,1,0,0,74.1,8.880224,2.639057,,0
-11,6,0,1,1,629473,1,7187.404,5.702943,0,5,1,0,0,0,0,0,0,0,0,0,0,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,,0
-11,6,0,1,2,629473,1,7187.404,6.702943,0,5,1,22.01974,6.11997,0,0,0,28.13971,0,0,0,3,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,3.337182,1
-11,6,0,1,3,629473,1,7187.404,7.702943,0,5,1,0,0,0,0,0,0,0,0,0,0,0,14,100,10.57626,0,100,0,106.56,1,0,2.639057,4.668708,0,0,0,1,0,0,100,8.880224,2.639057,,0
-11,6,0,1,1,629474,1,7187.404,37.72758,1,5,1,23.69869,15.18832,0,0,0,38.88701,0,0,0,2,0,13,92,13.8,0,58,0,106.56,0,0,2.564949,4.668708,0,0,0,1,0,0,58,8.880224,2.564949,3.66066,1
-11,6,0,1,2,629474,1,7187.404,38.72758,1,5,1,24.29765,9.510251,0,0,392.1792,425.9871,1,0,0,3,0,13,92,13.8,0,58,0,106.56,0,0,2.564949,4.668708,0,0,0,1,0,0,58,8.880224,2.564949,6.054409,1
-11,6,0,1,3,629474,1,7187.404,39.72758,1,5,1,38.40831,19.79931,0,0,0,58.20761,0,0,0,4,0,14,92,13.8,0,58,0,106.56,0,0,2.639057,4.668708,0,0,0,1,0,0,58,8.880224,2.639057,4.064016,1
-11,6,0,1,1,629475,1,7187.404,7.975359,0,5,1,6.347863,0,0,0,0,6.347863,0,0,0,1,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,1.848118,1
-11,6,0,1,2,629475,1,7187.404,8.975359,0,5,1,4.555809,0,0,0,0,4.555809,0,0,0,1,0,13,100,10.57626,0,100,0,106.56,1,0,2.564949,4.668708,0,0,0,1,0,0,100,8.880224,2.564949,1.516403,1
-11,6,0,1,3,629475,1,7187.404,9.975359,0,5,1,79.23875,0,0,0,0,79.23875,0,0,0,1,0,14,100,10.57626,0,100,0,106.56,1,0,2.639057,4.668708,0,0,0,1,0,0,100,8.880224,2.639057,4.372466,1
-11,6,0,1,1,629476,1,7187.404,3.389459,1,5,1,0,0,0,0,0,0,0,0,0,0,0,13,77.40034,10.57626,0,85.2,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,85.2,8.880224,2.564949,,0
-11,6,0,1,2,629476,1,7187.404,4.389459,1,5,1,6.833713,0,0,0,0,6.833713,0,0,0,1,0,13,77.40034,10.57626,0,85.2,0,106.56,1,1,2.564949,4.668708,0,0,0,1,0,0,85.2,8.880224,2.564949,1.921868,1
-11,6,0,1,3,629476,1,7187.404,5.389459,1,5,1,0,0,0,0,0,0,0,0,0,0,0,14,77.40034,10.57626,0,85.2,0,106.56,1,1,2.639057,4.668708,0,0,0,1,0,0,85.2,8.880224,2.639057,,0
-11,6,0,1,1,629477,1,7187.404,43.18959,0,4,1,7.194244,1.904359,0,0,0,9.098603,0,0,0,1,0,13,88.8,3.4,0,76.1,0,106.56,0,0,2.564949,4.668708,0,0,0,1,0,0,76.1,8.880224,2.564949,2.208121,1
-11,6,0,1,2,629477,1,7187.404,44.18959,0,4,1,6.454062,0,0,0,0,6.454062,0,0,0,1,0,13,88.8,3.4,0,76.1,0,106.56,0,0,2.564949,4.668708,0,0,0,1,0,0,76.1,8.880224,2.564949,1.86471,1
-11,6,0,1,3,629477,1,7187.404,45.18959,0,4,1,0,3.401384,0,0,0,3.401384,0,0,0,0,0,14,88.8,3.4,0,76.1,0,106.56,0,0,2.639057,4.668708,0,0,0,1,0,0,76.1,8.880224,2.639057,1.224182,1
-16,6,95,1,1,629526,1,6143.369,5.741273,0,11,1,8.507018,0,0,0,188.0051,196.5121,1,0,0,1,0,5,75,10.57626,.1442925,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.723291,1.609438,5.280724,1
-16,6,95,1,2,629526,1,6143.369,6.741273,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,75,10.57626,.1442925,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.723291,1.609438,,0
-16,6,95,1,3,629526,1,6143.369,7.741273,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,75,10.57626,.1442925,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.723291,1.609438,,0
-16,6,95,1,1,629527,1,6143.369,45.10062,0,12,1,10.63377,3.29647,0,0,0,13.93024,0,0,0,1,0,5,85.6,0,0,80.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,80.7,8.723291,1.609438,2.634062,1
-16,6,95,1,2,629527,1,6143.369,46.10062,0,12,1,20.99237,0,0,0,0,20.99237,0,0,0,1,0,5,85.6,0,0,80.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,80.7,8.723291,1.609438,3.044159,1
-16,6,95,1,3,629527,1,6143.369,47.10062,0,12,1,33.10104,0,0,0,0,33.10104,0,0,0,2,0,5,85.6,0,0,80.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,80.7,8.723291,1.609438,3.499565,1
-16,6,95,1,1,629528,1,6143.369,13.6783,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,50,10.57626,0,66.7,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.723291,1.609438,,0
-16,6,95,1,2,629528,1,6143.369,14.6783,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,50,10.57626,0,66.7,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.723291,1.609438,,0
-16,6,95,1,3,629528,1,6143.369,15.6783,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,50,10.57626,0,66.7,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,66.7,8.723291,1.609438,,0
-16,6,95,1,1,629529,1,6143.369,4.517454,1,11,1,14.46193,1.701404,0,0,0,16.16333,0,0,0,3,0,5,77.40034,10.57626,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.8,8.723291,1.609438,2.782745,1
-16,6,95,1,2,629529,1,6143.369,5.517454,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.8,8.723291,1.609438,,0
-16,6,95,1,3,629529,1,6143.369,6.517454,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,1,0,0,77.8,8.723291,1.609438,,0
-16,6,95,1,1,629530,1,6143.369,31.436,1,11,1,86.77158,19.77882,0,0,0,106.5504,0,0,0,4,0,5,84.6,6.9,0,71.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.4,8.723291,1.609438,4.668618,1
-16,6,95,1,2,629530,1,6143.369,32.436,1,11,1,31.29771,0,0,0,0,31.29771,0,0,0,1,0,5,84.6,6.9,0,71.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.4,8.723291,1.609438,3.443545,1
-16,6,95,1,3,629530,1,6143.369,33.436,1,11,1,85.36585,0,0,0,0,85.36585,0,0,0,3,0,5,84.6,6.9,0,71.4,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.4,8.723291,1.609438,4.446946,1
-7,6,25,1,1,629570,0,4720.821,25.39357,1,16,1,18.95262,56.13466,0,0,0,75.08728,0,0,0,2,1,1,60.6,6.9,0,55.7,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,55.7,8.459949,0,4.318651,1
-7,6,25,1,2,629570,0,4720.821,26.39357,1,16,1,72.61411,110.5302,0,0,0,183.1443,0,0,0,4,0,1,60.6,6.9,0,55.7,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,55.7,8.459949,0,5.210274,1
-7,6,25,1,3,629570,0,4720.821,27.39357,1,16,1,137.3254,51.50656,29.82226,0,0,218.6543,0,0,0,8,2,1,60.6,6.9,0,55.7,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,55.7,8.459949,0,5.387492,1
-7,6,25,1,4,629570,0,4720.821,28.39357,1,16,1,26.1959,7.881549,0,0,0,34.07745,0,0,0,3,0,1,60.6,6.9,0,55.7,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,55.7,8.459949,0,3.528636,1
-7,6,25,1,5,629570,0,4720.821,29.39357,1,16,1,134.7751,12.76125,21.10727,0,0,168.6436,0,0,0,5,0,1,60.6,6.9,0,55.7,750,750,0,0,0,6.620073,0,3.258096,8.006368,1,0,0,55.7,8.459949,0,5.127788,1
-13,6,0,0,1,629576,1,9202.933,36.12594,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,74.5,6.9,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.127386,1.098612,,0
-13,6,0,0,2,629576,1,9202.933,37.12594,0,8,1,4.589261,18.81597,0,0,0,23.40523,0,0,0,1,0,3,74.5,6.9,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.127386,1.098612,3.15296,1
-13,6,0,0,3,629576,1,9202.933,38.12594,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,74.5,6.9,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.127386,1.098612,,0
-13,6,0,0,4,629576,1,9202.933,39.12594,0,8,1,74.80166,4.325652,0,0,0,79.12731,0,0,0,2,0,3,74.5,6.9,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.127386,1.098612,4.371058,1
-13,6,0,0,5,629576,1,9202.933,40.12594,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,74.5,6.9,0,71.6,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.127386,1.098612,,0
-13,6,0,0,1,629577,1,9202.933,12.90897,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,10.57626,0,55.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.127386,1.098612,,0
-13,6,0,0,2,629577,1,9202.933,13.90897,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,10.57626,0,55.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.127386,1.098612,,0
-13,6,0,0,3,629577,1,9202.933,14.90897,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,10.57626,0,55.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.127386,1.098612,,0
-13,6,0,0,4,629577,1,9202.933,15.90897,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,10.57626,0,55.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.127386,1.098612,,0
-13,6,0,0,5,629577,1,9202.933,16.90897,0,9,1,0,0,0,0,0,0,0,0,0,0,0,3,81.7,10.57626,0,55.6,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,55.6,9.127386,1.098612,,0
-13,6,0,0,1,629578,1,9202.933,34.94045,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,0,0,69.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.127386,1.098612,,0
-13,6,0,0,2,629578,1,9202.933,35.94045,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,0,0,69.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.127386,1.098612,,0
-13,6,0,0,3,629578,1,9202.933,36.94045,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,0,0,69.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.127386,1.098612,,0
-13,6,0,0,4,629578,1,9202.933,37.94045,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,0,0,69.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.127386,1.098612,,0
-13,6,0,0,5,629578,1,9202.933,38.94045,1,9,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,0,0,69.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.127386,1.098612,,0
-17,6,25,1,1,629584,0,11835.64,27.0527,0,12,1,14.72444,0,25.6626,0,0,40.38704,0,0,0,1,0,2,70.7,10.3,1,65.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.378955,.6931472,3.698509,1
-17,6,25,1,2,629584,0,11835.64,28.0527,0,12,1,9.066868,3.241405,0,0,0,12.30827,0,0,0,2,0,2,70.7,10.3,1,65.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.378955,.6931472,2.510272,1
-17,6,25,1,3,629584,0,11835.64,29.0527,0,12,1,296.741,1.725557,62.43568,0,0,360.9022,0,0,0,2,25,2,70.7,10.3,1,65.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,65.9,9.378955,.6931472,5.888607,1
-14,6,95,0,1,629614,0,8616.422,27.24435,1,16,1,293.3199,150.4018,3.139126,0,255.6504,702.5113,1,0,0,10,1,2,76.1,17.2,0,53.4,677.5,667.5,0,0,.6931472,6.50354,0,4.564348,6.569703,1,0,0,53.4,9.061542,.6931472,6.554661,1
-14,6,95,0,2,629614,0,8616.422,28.24435,1,16,1,286.0454,63.64859,0,0,1958.739,2308.433,3,0,0,10,0,2,76.1,17.2,0,53.4,677.5,667.5,0,0,.6931472,6.50354,0,4.564348,6.569703,1,0,0,53.4,9.061542,.6931472,7.744324,1
-14,6,95,0,3,629614,0,8616.422,29.24435,1,16,1,74.43641,12.91365,0,0,0,87.35007,0,0,0,5,0,3,76.1,17.2,0,53.4,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,1,0,0,53.4,9.061542,1.098612,4.469924,1
-14,6,95,0,4,629614,0,8616.422,30.24435,1,16,1,71.37405,18.33969,0,0,0,89.71374,0,0,0,4,0,3,76.1,17.2,0,53.4,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,1,0,0,53.4,9.061542,1.098612,4.496624,1
-14,6,95,0,5,629614,0,8616.422,31.24435,1,16,1,31.01045,5.195122,0,0,0,36.20557,0,0,0,2,0,3,76.1,17.2,0,53.4,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,1,0,0,53.4,9.061542,1.098612,3.589213,1
-14,6,95,0,1,629615,0,8616.422,30.23682,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,6.9,0,76.1,677.5,667.5,0,0,.6931472,6.50354,0,4.564348,6.569703,0,0,0,76.1,9.061542,.6931472,,0
-14,6,95,0,2,629615,0,8616.422,31.23682,0,16,1,17.15345,0,0,0,0,17.15345,0,0,0,0,0,2,89.9,6.9,0,76.1,677.5,667.5,0,0,.6931472,6.50354,0,4.564348,6.569703,0,0,0,76.1,9.061542,.6931472,2.8422,1
-14,6,95,0,3,629615,0,8616.422,32.23682,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,6.9,0,76.1,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,0,0,0,76.1,9.061542,1.098612,,0
-14,6,95,0,4,629615,0,8616.422,33.23682,0,16,1,7.633588,6.561069,0,0,0,14.19466,0,0,0,1,0,3,89.9,6.9,0,76.1,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,0,0,0,76.1,9.061542,1.098612,2.652866,1
-14,6,95,0,5,629615,0,8616.422,34.23682,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,6.9,0,76.1,677.5,667.5,0,0,1.098612,6.50354,0,4.564348,6.569703,0,0,0,76.1,9.061542,1.098612,,0
-13,6,0,0,1,629616,0,10029.33,26.45311,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,100,0,0,100,300,349.96,0,0,.6931472,5.857819,1,4.564348,5.755076,0,0,0,100,9.213368,.6931472,,0
-13,6,0,0,2,629616,0,10029.33,27.45311,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,100,0,0,100,300,349.96,0,0,.6931472,5.857819,1,4.564348,5.755076,0,0,0,100,9.213368,.6931472,,0
-13,6,0,0,3,629616,0,10029.33,28.45311,0,13,1,30.84619,0,0,0,0,30.84619,0,0,0,0,0,3,100,0,0,100,300,349.96,0,0,1.098612,5.857819,1,4.564348,5.755076,0,0,0,100,9.213368,1.098612,3.429013,1
-13,6,0,0,4,629616,0,10029.33,29.45311,0,13,1,37.50938,0,0,0,0,37.50938,0,0,0,1,0,4,100,0,0,100,300,349.96,0,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,100,9.213368,1.386294,3.624591,1
-13,6,0,0,5,629616,0,10029.33,30.45311,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,100,0,0,100,300,349.96,0,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,100,9.213368,1.386294,,0
-13,6,0,0,1,629617,0,10029.33,24.2601,1,16,1,0,0,0,0,0,0,0,0,0,0,0,2,80.9,13.8,0,84.1,300,349.96,0,0,.6931472,5.857819,1,4.564348,5.755076,0,0,0,84.1,9.213368,.6931472,,0
-13,6,0,0,2,629617,0,10029.33,25.2601,1,16,1,21.42206,12.76208,0,0,507.2926,541.4767,1,0,0,2,0,2,80.9,13.8,0,84.1,300,349.96,0,0,.6931472,5.857819,1,4.564348,5.755076,0,0,0,84.1,9.213368,.6931472,6.2943,1
-13,6,0,0,3,629617,0,10029.33,26.2601,1,16,1,32.51355,12.84702,0,0,563.1513,608.5119,1,0,0,1,0,3,80.9,13.8,0,84.1,300,349.96,0,0,1.098612,5.857819,1,4.564348,5.755076,0,0,0,84.1,9.213368,1.098612,6.411016,1
-13,6,0,0,4,629617,0,10029.33,27.2601,1,16,1,9.752439,0,0,0,0,9.752439,0,0,0,1,0,4,80.9,13.8,0,84.1,300,349.96,0,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,84.1,9.213368,1.386294,2.277517,1
-13,6,0,0,5,629617,0,10029.33,28.2601,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,13.8,0,84.1,300,349.96,0,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,84.1,9.213368,1.386294,,0
-13,6,0,1,1,629650,1,3534.05,23.55373,1,12,1,22.29701,20.39125,0,0,0,42.68826,0,0,0,0,0,4,69.7,10.3,1,36.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,36.4,8.170483,1.386294,3.753924,1
-13,6,0,1,2,629650,1,3534.05,24.55373,1,12,1,43.06762,16.02569,0,0,498.3,557.3932,1,0,0,4,0,4,69.7,10.3,1,36.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,36.4,8.170483,1.386294,6.323271,1
-13,6,0,1,3,629650,1,3534.05,25.55373,1,12,1,125.9005,55.11835,36.92281,0,1187.307,1405.249,2,0,0,7,1,4,69.7,10.3,1,36.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,36.4,8.170483,1.386294,7.24797,1
-13,6,0,1,1,629651,1,3534.05,25.85353,0,12,1,115.2713,2.734539,0,0,0,118.0059,0,0,0,2,0,4,85.6,10.3,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,69.3,8.170483,1.386294,4.770734,1
-13,6,0,1,2,629651,1,3534.05,26.85353,0,12,1,111.4469,19.81111,0,0,0,131.258,0,0,0,3,0,4,85.6,10.3,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,69.3,8.170483,1.386294,4.877165,1
-13,6,0,1,3,629651,1,3534.05,27.85353,0,12,1,26.75815,0,35.33448,0,0,62.09262,0,0,0,1,0,4,85.6,10.3,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,1,0,69.3,8.170483,1.386294,4.128627,1
-13,6,0,1,1,629652,1,3534.05,4.692676,0,12,1,31.55238,2.103492,0,0,0,33.65587,0,0,0,0,0,4,77.40034,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.170483,1.386294,3.516187,1
-13,6,0,1,2,629652,1,3534.05,5.692676,0,12,1,16.24481,0,0,0,0,16.24481,0,0,0,1,0,4,77.40034,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.170483,1.386294,2.787773,1
-13,6,0,1,3,629652,1,3534.05,6.692676,0,12,1,28.47341,0,0,0,0,28.47341,0,0,0,2,0,4,77.40034,10.57626,0,88.9,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.9,8.170483,1.386294,3.348971,1
-15,6,95,1,1,629653,1,10112.13,28.44901,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.3,13.8,0,48.9,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,48.9,9.22159,.6931472,,0
-15,6,95,1,2,629653,1,10112.13,29.44901,0,12,1,35.68717,5.068337,0,0,0,40.7555,0,0,0,2,0,3,62.3,13.8,0,48.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,48.9,9.22159,1.098612,3.707591,1
-15,6,95,1,3,629653,1,10112.13,30.44901,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,62.3,13.8,0,48.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,48.9,9.22159,1.098612,,0
-15,6,95,1,1,629654,1,10112.13,24.59411,1,12,1,41.04951,21.4854,0,0,497.2493,559.7842,1,0,0,2,0,2,46.3,20.7,0,47.7,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,47.7,9.22159,.6931472,6.327551,1
-15,6,95,1,2,629654,1,10112.13,25.59411,1,12,1,14.42673,0,0,0,0,14.42673,0,0,0,1,0,3,46.3,20.7,0,47.7,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,47.7,9.22159,1.098612,2.669083,1
-15,6,95,1,3,629654,1,10112.13,26.59411,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,46.3,20.7,0,47.7,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,47.7,9.22159,1.098612,,0
-13,6,0,1,1,629667,1,0,4.717317,1,3,1,0,2.052476,0,0,0,2.052476,0,0,0,0,0,6,77.40034,10.57626,1,63,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,1,63,0,1.791759,.7190467,1
-13,6,0,1,2,629667,1,0,5.717317,1,3,1,7.593014,0,0,0,0,7.593014,0,0,0,2,0,6,77.40034,10.57626,1,63,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,1,63,0,1.791759,2.027229,1
-13,6,0,1,3,629667,1,0,6.717317,1,3,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,1,63,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,1,63,0,1.791759,,0
-13,6,0,1,1,629668,1,0,16.55031,1,3,1,0,0,0,0,0,0,0,0,0,0,0,6,60.6,6.9,1,47.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,47.7,0,1.791759,,0
-13,6,0,1,2,629668,1,0,17.55031,1,3,1,0,0,0,0,0,0,0,0,0,0,0,6,60.6,6.9,1,47.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,1,0,0,47.7,0,1.791759,,0
-13,6,0,1,3,629668,1,0,18.55031,1,3,1,63.3218,6.903114,33.78201,0,0,104.0069,0,0,0,3,1,6,60.6,6.9,1,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,47.7,0,1.791759,4.644457,1
-13,6,0,1,1,629669,1,0,18.74607,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,75.5,13.8,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,53.4,0,1.791759,,0
-13,6,0,1,2,629669,1,0,19.74607,1,8,1,0,0,0,0,0,0,0,0,0,0,0,6,75.5,13.8,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,53.4,0,1.791759,,0
-13,6,0,1,3,629669,1,0,20.74607,1,8,1,14.53287,0,0,0,0,14.53287,0,0,0,0,0,6,75.5,13.8,0,53.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,53.4,0,1.791759,2.676413,1
-13,6,0,1,1,629670,1,0,25.89186,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,47.7,0,1.791759,,0
-13,6,0,1,2,629670,1,0,26.89186,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,47.7,0,1.791759,,0
-13,6,0,1,3,629670,1,0,27.89186,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,47.7,0,1.791759,,0
-13,6,0,1,1,629671,1,0,47.07734,1,3,1,13.54211,10.57977,35.97122,0,0,60.0931,0,0,0,1,1,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,47.7,0,1.791759,4.095895,1
-13,6,0,1,2,629671,1,0,48.07734,1,3,1,2.657555,4.536826,0,0,0,7.194381,0,0,0,1,0,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,47.7,0,1.791759,1.9733,1
-13,6,0,1,3,629671,1,0,49.07734,1,3,1,0,0,0,0,0,0,0,0,0,0,0,6,63.8,6.9,0,47.7,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,47.7,0,1.791759,,0
-13,6,0,1,1,629672,1,0,12.44627,0,3,1,31.31612,0,0,0,0,31.31612,0,0,0,1,0,6,78.3,10.57626,0,59.3,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,59.3,0,1.791759,3.444133,1
-13,6,0,1,2,629672,1,0,13.44627,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,10.57626,0,59.3,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,59.3,0,1.791759,,0
-13,6,0,1,3,629672,1,0,14.44627,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6,78.3,10.57626,0,59.3,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,1,59.3,0,1.791759,,0
-13,6,0,0,1,629689,1,6735.316,60.1013,0,7,1,0,0,0,0,0,0,0,0,0,0,0,1,72.4,0,0,45.5,150,274.64,0,0,0,5.615461,1,4.564348,5.061929,0,1,0,45.5,8.815269,0,,0
-13,6,0,0,2,629689,1,6735.316,61.1013,0,7,1,27.57839,0,22.66717,0,660.3702,710.6158,1,0,0,0,1,1,72.4,0,0,45.5,150,274.64,0,0,0,5.615461,1,4.564348,5.061929,0,1,0,45.5,8.815269,0,6.566132,1
-6,6,25,1,1,629719,1,129.5443,12.15058,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,73.3,10.57626,0,77.8,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,77.8,4.871713,2.302585,,0
-6,6,25,1,2,629719,1,129.5443,13.15058,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,73.3,10.57626,0,77.8,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,77.8,4.871713,2.302585,,0
-6,6,25,1,3,629719,1,129.5443,14.15058,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,73.3,10.57626,0,77.8,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,77.8,4.871713,2.302585,,0
-6,6,25,1,1,629720,1,129.5443,9.697468,0,12,1,9.35772,3.615483,0,0,0,12.9732,0,0,0,2,0,10,86.7,10.57626,0,59.3,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,0,0,59.3,4.871713,2.302585,2.562886,1
-6,6,25,1,2,629720,1,129.5443,10.69747,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,86.7,10.57626,0,59.3,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,0,0,59.3,4.871713,2.302585,,0
-6,6,25,1,3,629720,1,129.5443,11.69747,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,86.7,10.57626,0,59.3,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,0,0,0,59.3,4.871713,2.302585,,0
-6,6,25,1,1,629721,1,129.5443,5.308692,1,12,1,10.20842,2.126755,0,0,0,12.33518,0,0,0,0,0,10,76.7,10.57626,0,70.4,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,2.512455,1
-6,6,25,1,2,629721,1,129.5443,6.308692,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,76.7,10.57626,0,70.4,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,,0
-6,6,25,1,3,629721,1,129.5443,7.308692,1,12,1,85.01742,0,0,0,0,85.01742,0,0,0,2,0,10,76.7,10.57626,0,70.4,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,4.442856,1
-6,6,25,1,1,629722,1,129.5443,33.61807,1,12,1,29.34921,2.33943,0,0,0,31.68864,0,0,0,3,0,10,69.1,10.3,0,45.2,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,45.2,4.871713,2.302585,3.455958,1
-6,6,25,1,2,629722,1,129.5443,34.61807,1,12,1,20.61069,6.48855,0,0,0,27.09924,0,0,0,4,0,10,69.1,10.3,0,45.2,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,45.2,4.871713,2.302585,3.299505,1
-6,6,25,1,3,629722,1,129.5443,35.61807,1,12,1,185.3659,63.10104,0,0,397.9094,646.3763,1,0,0,12,0,10,69.1,10.3,0,45.2,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,0,1,0,45.2,4.871713,2.302585,6.471382,1
-6,6,25,1,1,629723,1,129.5443,4.024641,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,0,70.4,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,,0
-6,6,25,1,2,629723,1,129.5443,5.024641,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,0,70.4,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,,0
-6,6,25,1,3,629723,1,129.5443,6.024641,0,12,1,5.923345,0,0,0,0,5.923345,0,0,0,1,0,10,77.40034,10.57626,0,70.4,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,70.4,4.871713,2.302585,1.778901,1
-6,6,25,1,1,629724,1,129.5443,2.718686,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,0,81.5,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,81.5,4.871713,2.302585,,0
-6,6,25,1,2,629724,1,129.5443,3.718686,0,12,1,9.160305,0,0,0,0,9.160305,0,0,0,2,0,10,77.40034,10.57626,0,81.5,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,81.5,4.871713,2.302585,2.21488,1
-6,6,25,1,3,629724,1,129.5443,4.718686,0,12,1,13.58885,6.41115,0,0,262.3693,282.3693,1,0,0,3,0,10,77.40034,10.57626,0,81.5,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,81.5,4.871713,2.302585,5.643216,1
-6,6,25,1,1,629725,1,129.5443,8.251883,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,81.7,10.57626,0,85.2,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,85.2,4.871713,2.302585,,0
-6,6,25,1,2,629725,1,129.5443,9.251883,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,81.7,10.57626,0,85.2,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,85.2,4.871713,2.302585,,0
-6,6,25,1,3,629725,1,129.5443,10.25188,1,12,1,42.85714,3.815331,0,0,0,46.67247,0,0,0,1,0,10,81.7,10.57626,0,85.2,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,85.2,4.871713,2.302585,3.843155,1
-6,6,25,1,1,629726,1,129.5443,10.94319,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,80,10.57626,0,51.9,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,51.9,4.871713,2.302585,,0
-6,6,25,1,2,629726,1,129.5443,11.94319,1,12,1,24.80916,0,0,0,0,24.80916,0,0,0,0,0,10,80,10.57626,0,51.9,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,51.9,4.871713,2.302585,3.211213,1
-6,6,25,1,3,629726,1,129.5443,12.94319,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,80,10.57626,0,51.9,443.6,443.6,1,1,2.302585,6.094923,0,3.258096,7.481217,0,1,0,51.9,4.871713,2.302585,,0
-6,6,25,1,1,629727,1,129.5443,6.557153,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,88.3,10.57626,0,74.1,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,74.1,4.871713,2.302585,,0
-6,6,25,1,2,629727,1,129.5443,7.557153,0,12,1,7.633588,5.305344,0,0,0,12.93893,0,0,0,2,0,10,88.3,10.57626,0,74.1,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,74.1,4.871713,2.302585,2.560241,1
-6,6,25,1,3,629727,1,129.5443,8.557153,0,12,1,0,0,0,0,0,0,0,0,0,0,0,10,88.3,10.57626,0,74.1,443.6,443.6,1,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,74.1,4.871713,2.302585,,0
-6,6,25,1,1,629728,1,129.5443,35.62765,0,4,1,39.55764,20.62952,0,0,246.7035,306.8907,1,0,0,4,0,10,77.1,10.3,1,39.8,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,39.8,4.871713,2.302585,5.726491,1
-6,6,25,1,2,629728,1,129.5443,36.62765,0,4,1,78.05344,18.96947,2.480916,0,603.4351,702.9389,1,0,0,3,0,10,77.1,10.3,1,39.8,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,39.8,4.871713,2.302585,6.55527,1
-6,6,25,1,3,629728,1,129.5443,37.62765,0,4,1,31.35888,17.91289,7.236934,0,508.0139,564.5226,1,0,0,3,0,10,77.1,10.3,1,39.8,443.6,443.6,0,0,2.302585,6.094923,0,3.258096,7.481217,1,0,0,39.8,4.871713,2.302585,6.33598,1
-11,6,0,1,1,629739,.5112414,1825.397,18.78439,0,8,1,0,3.702146,0,0,0,3.702146,0,0,0,0,0,1,86.7,0,0,68.2,0,398.16,0,0,0,5.986854,0,0,0,1,0,0,68.2,7.5101,0,1.308913,1
-11,6,0,1,2,629739,.5112414,1825.397,19.78439,0,8,1,30.97847,5.156781,0,0,0,36.13525,0,0,0,1,0,1,86.7,0,0,68.2,0,398.16,0,0,0,5.986854,0,0,0,1,0,0,68.2,7.5101,0,3.587269,1
-11,6,0,1,3,629739,.5112414,1825.397,20.78439,0,8,1,0,0,0,0,0,0,0,0,0,0,0,1,86.7,0,0,68.2,0,398.16,0,0,0,5.986854,0,0,0,1,0,0,68.2,7.5101,0,,0
-11,6,0,0,1,629740,1,3662.058,54.31896,0,5,1,243.1637,0,0,0,0,243.1637,0,0,0,12,0,4,53.2,6.9,1,30.7,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,30.7,8.206054,1.386294,5.493735,1
-11,6,0,0,2,629740,1,3662.058,55.31896,0,5,1,187.0042,40.49868,0,0,0,227.5028,0,0,0,5,0,4,53.2,6.9,1,30.7,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,30.7,8.206054,1.386294,5.427163,1
-11,6,0,0,3,629740,1,3662.058,56.31896,0,5,1,195.1973,63.8422,0,0,0,259.0395,0,0,0,7,0,4,53.2,6.9,1,30.7,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,30.7,8.206054,1.386294,5.556981,1
-11,6,0,1,1,629741,1,3662.058,13.8809,0,10,1,27.34539,0,0,0,0,27.34539,0,0,0,1,0,4,95,10.57626,0,88.9,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,88.9,8.206054,1.386294,3.308548,1
-11,6,0,1,2,629741,1,3662.058,14.8809,0,10,1,72.53494,3.683415,0,0,0,76.21836,0,0,0,3,0,4,95,10.57626,0,88.9,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,88.9,8.206054,1.386294,4.333602,1
-11,6,0,1,3,629741,1,3662.058,15.8809,0,10,1,17.15266,0,0,0,0,17.15266,0,0,0,1,0,4,95,10.57626,0,88.9,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,88.9,8.206054,1.386294,2.842153,1
-11,6,0,1,1,629742,.5112414,1156.682,21.4976,1,12,1,15.14514,17.2907,0,0,0,32.43584,0,0,0,1,0,2,86.2,6.9,0,77.3,0,468,0,0,.6931472,6.148468,0,0,0,1,0,0,77.3,7.054175,.6931472,3.479264,1
-11,6,0,1,2,629742,.5112414,1156.682,22.4976,1,12,1,9.066868,4.287873,0,0,0,13.35474,0,0,0,0,0,2,86.2,6.9,0,77.3,0,468,0,0,.6931472,6.148468,0,0,0,1,0,0,77.3,7.054175,.6931472,2.591872,1
-11,6,0,1,3,629742,.5112414,1156.682,23.4976,1,12,1,82.67581,14.8542,33.49228,0,492.9674,623.9897,1,0,0,10,1,2,86.2,6.9,0,77.3,0,468,0,0,.6931472,6.148468,0,0,0,1,0,0,77.3,7.054175,.6931472,6.436134,1
-11,6,0,1,1,629743,1,3662.058,15.12936,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,95.7,0,0,76.1,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,76.1,8.206054,1.386294,,0
-11,6,0,1,2,629743,1,3662.058,16.12936,0,10,1,71.40159,0,0,0,0,71.40159,0,0,0,2,0,4,95.7,0,0,76.1,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,76.1,8.206054,1.386294,4.26832,1
-11,6,0,1,3,629743,1,3662.058,17.12936,0,10,1,45.28302,1.560892,0,0,0,46.84391,0,0,0,3,0,4,95.7,0,0,76.1,0,312,1,0,1.386294,5.743003,0,0,0,1,0,0,76.1,8.206054,1.386294,3.846821,1
-11,6,0,1,1,629744,1,3662.058,54.37098,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,6.9,1,42,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,42,8.206054,1.386294,,0
-11,6,0,1,2,629744,1,3662.058,55.37098,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,73.4,6.9,1,42,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,42,8.206054,1.386294,,0
-11,6,0,1,3,629744,1,3662.058,56.37098,1,10,1,34.30532,15.31732,35.20755,0,0,84.83018,0,0,0,1,1,4,73.4,6.9,1,42,0,312,0,0,1.386294,5.743003,0,0,0,0,1,0,42,8.206054,1.386294,4.440651,1
-13,6,0,0,1,629747,0,3086.021,43.83299,1,10,1,113.8383,72.92425,36.39441,0,0,223.157,0,0,0,9,0,2,78.7,20.7,1,47.7,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,0,1,47.7,8.034962,.6931472,5.407876,1
-13,6,0,0,2,629747,0,3086.021,44.83299,1,10,1,122.2475,46.13136,20.88079,0,2043.28,2232.54,1,0,0,14,0,2,78.7,20.7,1,47.7,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,0,1,47.7,8.034962,.6931472,7.710895,1
-13,6,0,0,3,629747,0,3086.021,45.83299,1,10,1,24.56747,6.851211,0,0,0,31.41869,0,0,0,2,0,2,78.7,20.7,1,47.7,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,0,1,47.7,8.034962,.6931472,3.447403,1
-13,6,0,0,1,629748,0,3086.021,43.20876,0,9,1,106.6441,0,0,0,0,106.6441,0,0,0,1,10,2,83.5,6.9,0,69.3,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,1,0,69.3,8.034962,.6931472,4.669497,1
-13,6,0,0,2,629748,0,3086.021,44.20876,0,9,1,17.46393,0,0,0,0,17.46393,0,0,0,1,0,2,83.5,6.9,0,69.3,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,1,0,69.3,8.034962,.6931472,2.860138,1
-13,6,0,0,3,629748,0,3086.021,45.20876,0,9,1,130.4498,18.68512,0,0,0,149.1349,0,0,0,2,4,2,83.5,6.9,0,69.3,300,814,0,0,.6931472,6.701961,1,4.564348,5.755076,0,1,0,69.3,8.034962,.6931472,5.004852,1
-17,6,25,0,1,629796,0,8273.9,3.132101,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,55.6,650,650,1,0,1.386294,6.476973,0,3.258096,7.863267,0,1,0,55.6,9.020982,1.386294,,0
-17,6,25,0,2,629796,0,8273.9,4.132102,0,8,1,48.18724,0,0,0,0,48.18724,0,0,0,0,0,4,77.40034,10.57626,0,55.6,650,650,1,0,1.386294,6.476973,0,3.258096,7.863267,0,1,0,55.6,9.020982,1.386294,3.875094,1
-17,6,25,0,3,629796,0,8273.9,5.132102,0,8,1,0,0,0,0,218.7632,218.7632,1,0,0,0,0,4,77.40034,10.57626,0,55.6,650,650,1,0,1.386294,6.476973,0,3.258096,7.863267,0,1,0,55.6,9.020982,1.386294,5.38799,1
-17,6,25,0,4,629796,0,8273.9,6.132102,0,8,1,3.777862,0,0,0,0,3.777862,0,0,0,1,0,4,77.40034,10.57626,0,55.6,650,650,1,0,1.386294,6.476973,0,3.258096,7.863267,0,1,0,55.6,9.020982,1.386294,1.329158,1
-17,6,25,0,5,629796,0,8273.9,7.132102,0,8,1,40.48027,0,0,0,0,40.48027,0,0,0,4,0,5,77.40034,10.57626,0,55.6,650,650,1,0,1.609438,6.476973,0,3.258096,7.863267,0,1,0,55.6,9.020982,1.609438,3.700815,1
-17,6,25,0,1,629797,0,8273.9,22.52977,0,7,1,4.955401,1.73439,0,0,0,6.689792,0,0,0,1,0,4,84,3.4,0,59.1,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,59.1,9.020982,1.386294,1.900583,1
-17,6,25,0,2,629797,0,8273.9,23.52977,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,59.1,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,59.1,9.020982,1.386294,,0
-17,6,25,0,3,629797,0,8273.9,24.52977,0,7,1,0,0,0,0,0,0,0,0,0,0,0,4,84,3.4,0,59.1,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,59.1,9.020982,1.386294,,0
-17,6,25,0,4,629797,0,8273.9,25.52977,0,7,1,3.777862,0,0,0,0,3.777862,0,0,0,1,0,4,84,3.4,0,59.1,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,59.1,9.020982,1.386294,1.329158,1
-17,6,25,0,5,629797,0,8273.9,26.52977,0,7,1,20.58319,0,0,0,491.9383,512.5214,2,1,0,2,0,5,84,3.4,0,59.1,650,650,0,0,1.609438,6.476973,0,3.258096,7.863267,0,0,0,59.1,9.020982,1.609438,6.239343,1
-17,6,25,0,1,629798,0,8273.9,21.40452,1,8,1,23.29039,14.0337,0,0,0,37.32408,0,0,0,2,0,4,78.7,10.3,0,60.2,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,60.2,9.020982,1.386294,3.619639,1
-17,6,25,0,2,629798,0,8273.9,22.40452,1,8,1,9.178522,0,0,0,0,9.178522,0,0,0,0,0,4,78.7,10.3,0,60.2,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,60.2,9.020982,1.386294,2.216866,1
-17,6,25,0,3,629798,0,8273.9,23.40452,1,8,1,48.80101,9.255363,0,0,0,58.05637,0,0,0,1,0,4,78.7,10.3,0,60.2,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,60.2,9.020982,1.386294,4.061415,1
-17,6,25,0,4,629798,0,8273.9,24.40452,1,8,1,52.89006,0,0,0,1145.825,1198.716,4,0,0,3,0,4,78.7,10.3,0,60.2,650,650,0,0,1.386294,6.476973,0,3.258096,7.863267,0,0,0,60.2,9.020982,1.386294,7.089006,1
-17,6,25,0,5,629798,0,8273.9,25.40452,1,8,1,105.3173,0,0,0,0,105.3173,0,0,0,8,0,5,78.7,10.3,0,60.2,650,650,0,0,1.609438,6.476973,0,3.258096,7.863267,0,0,0,60.2,9.020982,1.609438,4.656978,1
-15,6,95,1,1,629811,0,8913.467,58.05065,1,7,1,0,0,0,0,0,0,0,0,0,0,0,1,84,20.7,0,90.9,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,90.9,9.09543,0,,0
-15,6,95,1,2,629811,0,8913.467,59.05065,1,7,1,6.833713,0,0,0,0,6.833713,0,0,0,1,0,1,84,20.7,0,90.9,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,90.9,9.09543,0,1.921868,1
-15,6,95,1,3,629811,0,8913.467,60.05065,1,7,1,61.93772,36.93426,0,0,0,98.87197,0,0,0,2,0,1,84,20.7,0,90.9,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,90.9,9.09543,0,4.593826,1
-13,6,0,1,1,629860,0,8777.777,28.93908,1,8,1,31.13168,4.838031,0,0,0,35.96971,0,0,0,1,0,4,75.5,20.7,0,60.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,60.2,9.080092,1.386294,3.582677,1
-13,6,0,1,2,629860,0,8777.777,29.93908,1,8,1,460.8991,13.50586,27.20061,0,0,501.6056,0,0,0,22,26,4,75.5,20.7,0,60.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,60.2,9.080092,1.386294,6.217814,1
-13,6,0,1,3,629860,0,8777.777,30.93908,1,8,1,389.7084,5.022298,0,0,0,394.7307,0,0,0,1,37,4,75.5,20.7,0,60.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,60.2,9.080092,1.386294,5.978204,1
-13,6,0,1,1,629861,0,8777.777,31.45517,0,3,1,28.60749,3.050063,0,0,514.5141,546.1716,2,0,0,3,0,4,73.4,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.080092,1.386294,6.302933,1
-13,6,0,1,2,629861,0,8777.777,32.45517,0,3,1,13.22252,0,0,0,0,13.22252,0,0,0,1,0,4,73.4,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.080092,1.386294,2.581921,1
-13,6,0,1,3,629861,0,8777.777,33.45517,0,3,1,62.09262,0,0,0,0,62.09262,0,0,0,0,0,4,73.4,6.9,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,71.6,9.080092,1.386294,4.128627,1
-13,6,0,1,1,629862,0,8777.777,7.60575,0,8,1,18.09003,6.41565,0,0,0,24.50568,0,0,0,2,0,4,83.3,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.080092,1.386294,3.198905,1
-13,6,0,1,2,629862,0,8777.777,8.605749,0,8,1,26.44503,19.0782,0,0,0,45.52324,0,0,0,3,0,4,83.3,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.080092,1.386294,3.818223,1
-13,6,0,1,3,629862,0,8777.777,9.605749,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,48.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.1,9.080092,1.386294,,0
-13,6,0,1,1,629863,0,8777.777,12.68994,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.080092,1.386294,,0
-13,6,0,1,2,629863,0,8777.777,13.68994,1,8,1,13.6003,9.539101,0,0,0,23.1394,0,0,0,2,0,4,88.3,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.080092,1.386294,3.141537,1
-13,6,0,1,3,629863,0,8777.777,14.68994,1,8,1,5.145798,1.533448,0,0,0,6.679245,0,0,0,1,0,4,88.3,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.080092,1.386294,1.899005,1
-13,6,0,1,1,629864,0,817.2043,51.67419,1,7,1,68.36182,61.62151,44.18508,0,0,174.1684,0,0,0,6,1,2,19.7,37.9,1,27.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,1,27.3,6.707112,.6931472,5.160023,1
-13,6,0,1,2,629864,0,817.2043,52.67419,1,7,1,25.50638,105.6339,1.777944,0,0,132.9182,0,0,0,3,0,2,19.7,37.9,1,27.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,1,27.3,6.707112,.6931472,4.889734,1
-13,6,0,1,3,629864,0,817.2043,53.67419,1,7,1,63.59946,98.53857,343.9107,0,0,506.0487,0,0,0,7,1,2,19.7,37.9,1,27.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,0,0,1,27.3,6.707112,.6931472,6.226633,1
-13,6,0,1,1,629865,0,817.2043,20.92266,1,9,1,82.11755,25.00625,0,0,0,107.1238,0,0,0,2,0,2,33.5,20.7,1,19.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,19.3,6.707112,.6931472,4.673985,1
-13,6,0,1,2,629865,0,817.2043,21.92266,1,9,1,95.64891,33.30458,0,0,0,128.9535,0,0,0,5,0,2,33.5,20.7,1,19.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,19.3,6.707112,.6931472,4.859452,1
-13,6,0,1,3,629865,0,817.2043,22.92266,1,9,1,5.751015,12.60149,0,0,367.0501,385.4026,1,0,0,1,0,2,33.5,20.7,1,19.3,300,0,0,0,.6931472,0,1,4.564348,5.755076,1,0,0,19.3,6.707112,.6931472,5.954288,1
-13,6,0,0,1,629869,1,4897.593,5.366188,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,2,629869,1,4897.593,6.366188,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,3,629869,1,4897.593,7.366188,0,10,1,7.266436,0,0,0,0,7.266436,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,1.983266,1
-13,6,0,0,1,629870,1,4897.593,26.64476,1,10,1,71.09606,4.443504,0,0,0,75.53957,0,0,0,1,0,6,81.9,3.4,0,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.496703,1.791759,4.324656,1
-13,6,0,0,2,629870,1,4897.593,27.64476,1,10,1,49.3546,6.985573,0,0,0,56.34017,0,0,0,0,0,6,81.9,3.4,0,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.496703,1.791759,4.031408,1
-13,6,0,0,3,629870,1,4897.593,28.64476,1,10,1,0,3.972318,0,0,0,3.972318,0,0,0,0,0,6,81.9,3.4,0,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,1,0,59.1,8.496703,1.791759,1.37935,1
-13,6,0,0,1,629871,1,4897.593,8.561259,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,2,629871,1,4897.593,9.561259,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,3,629871,1,4897.593,10.56126,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,1,629872,1,4897.593,27.55921,0,6,1,77.02074,9.881507,0,0,0,86.90224,0,0,0,5,0,6,93.1,17.2,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,58,8.496703,1.791759,4.464784,1
-13,6,0,0,2,629872,1,4897.593,28.55921,0,6,1,21.64009,3.246014,0,0,0,24.8861,0,0,0,0,0,6,93.1,17.2,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,58,8.496703,1.791759,3.21431,1
-13,6,0,0,3,629872,1,4897.593,29.55921,0,6,1,10.38062,3.107266,0,0,0,13.48789,0,0,0,3,0,6,93.1,17.2,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,58,8.496703,1.791759,2.601792,1
-13,6,0,0,1,629873,1,4897.593,4.413415,1,10,1,5.07829,0,0,0,0,5.07829,0,0,0,1,0,6,77.40034,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.496703,1.791759,1.624975,1
-13,6,0,0,2,629873,1,4897.593,5.413415,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.496703,1.791759,,0
-13,6,0,0,3,629873,1,4897.593,6.413415,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,1,0,66.7,8.496703,1.791759,,0
-13,6,0,0,1,629874,1,4897.593,6.310746,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,2,629874,1,4897.593,7.310746,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-13,6,0,0,3,629874,1,4897.593,8.310746,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,100,10.57626,0,66.7,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,66.7,8.496703,1.791759,,0
-5,6,25,1,1,629885,0,7676.246,32.51745,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,90.9,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,90.9,8.946016,1.386294,,0
-5,6,25,1,2,629885,0,7676.246,33.51745,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,86.7,3.4,0,90.9,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,90.9,8.946016,1.386294,,0
-5,6,25,1,3,629885,0,7676.246,34.51745,0,12,1,10.42101,9.170487,0,0,0,19.5915,0,0,0,1,0,4,86.7,3.4,0,90.9,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,90.9,8.946016,1.386294,2.975096,1
-5,6,25,1,4,629885,0,7676.246,35.51745,0,12,1,32.25806,5.157539,0,0,0,37.4156,0,0,0,2,0,4,86.7,3.4,0,90.9,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,90.9,8.946016,1.386294,3.622088,1
-5,6,25,1,5,629885,0,7676.246,36.51745,0,12,1,0,12.31394,0,0,0,12.31394,0,0,0,0,0,4,86.7,3.4,0,90.9,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,90.9,8.946016,1.386294,2.510732,1
-5,6,25,1,1,629886,0,7676.246,30.4668,1,8,1,13.75921,20.95332,0,0,0,34.71253,0,0,0,1,0,4,81.9,0,0,86.4,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,1,0,0,86.4,8.946016,1.386294,3.547101,1
-5,6,25,1,2,629886,0,7676.246,31.4668,1,8,1,82.04193,33.04467,0,0,0,115.0866,0,0,0,3,0,4,81.9,0,0,86.4,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,1,0,0,86.4,8.946016,1.386294,4.745685,1
-5,6,25,1,3,629886,0,7676.246,32.4668,1,8,1,32.51355,0,0,0,0,32.51355,0,0,0,3,0,4,81.9,0,0,86.4,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,1,0,0,86.4,8.946016,1.386294,3.481657,1
-5,6,25,1,4,629886,0,7676.246,33.4668,1,8,1,93.77345,16.44786,0,0,0,110.2213,0,0,0,5,0,4,81.9,0,0,86.4,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,1,0,0,86.4,8.946016,1.386294,4.70249,1
-5,6,25,1,5,629886,0,7676.246,34.4668,1,8,1,12.17862,26.1502,0,0,550.4059,588.7348,1,0,0,1,0,4,81.9,0,0,86.4,737.5,737.5,0,0,1.386294,6.603266,0,3.258096,7.989561,1,0,0,86.4,8.946016,1.386294,6.377976,1
-5,6,25,1,1,629887,0,7676.246,9.300479,1,8,1,4.914005,6.633907,0,0,0,11.54791,0,0,0,1,0,4,81.7,10.57626,0,77.8,737.5,737.5,1,1,1.386294,6.603266,0,3.258096,7.989561,0,0,0,77.8,8.946016,1.386294,2.446505,1
-5,6,25,1,2,629887,0,7676.246,10.30048,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,77.8,737.5,737.5,1,1,1.386294,6.603266,0,3.258096,7.989561,0,0,0,77.8,8.946016,1.386294,,0
-5,6,25,1,3,629887,0,7676.246,11.30048,1,8,1,14.58941,0,20.84202,0,0,35.43143,0,0,0,1,0,4,81.7,10.57626,0,77.8,737.5,737.5,1,1,1.386294,6.603266,0,3.258096,7.989561,0,0,0,77.8,8.946016,1.386294,3.567599,1
-5,6,25,1,4,629887,0,7676.246,12.30048,1,8,1,5.626407,0,0,0,0,5.626407,0,0,0,1,0,4,81.7,10.57626,0,77.8,737.5,737.5,1,1,1.386294,6.603266,0,3.258096,7.989561,0,0,0,77.8,8.946016,1.386294,1.727471,1
-5,6,25,1,5,629887,0,7676.246,13.30048,1,8,1,13.5318,0,27.74019,0,0,41.27199,0,0,0,1,0,4,81.7,10.57626,0,77.8,737.5,737.5,1,1,1.386294,6.603266,0,3.258096,7.989561,0,0,0,77.8,8.946016,1.386294,3.720184,1
-5,6,25,1,1,629888,0,7676.246,12.33949,0,8,1,0,4.216216,0,0,0,4.216216,0,0,0,0,0,4,81.7,10.57626,0,81.5,737.5,737.5,1,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,81.5,8.946016,1.386294,1.438938,1
-5,6,25,1,2,629888,0,7676.246,13.33949,0,8,1,24.15679,3.19052,0,0,0,27.34731,0,0,0,1,0,4,81.7,10.57626,0,81.5,737.5,737.5,1,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,81.5,8.946016,1.386294,3.308618,1
-5,6,25,1,3,629888,0,7676.246,14.33949,0,8,1,19.5915,0,0,0,0,19.5915,0,0,0,2,0,4,81.7,10.57626,0,81.5,737.5,737.5,1,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,81.5,8.946016,1.386294,2.975096,1
-5,6,25,1,4,629888,0,7676.246,15.33949,0,8,1,25.88147,14.53488,0,0,0,40.41636,0,0,0,3,0,4,81.7,10.57626,0,81.5,737.5,737.5,1,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,81.5,8.946016,1.386294,3.699234,1
-5,6,25,1,5,629888,0,7676.246,16.33949,0,8,1,12.85521,12.24628,0,0,0,25.10149,0,0,0,2,0,4,81.7,10.57626,0,81.5,737.5,737.5,1,0,1.386294,6.603266,0,3.258096,7.989561,0,0,0,81.5,8.946016,1.386294,3.222927,1
-16,6,95,1,1,629889,1,8413.723,24.49555,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,0,0,72.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.037738,1.386294,,0
-16,6,95,1,2,629889,1,8413.723,25.49555,0,12,1,9.82244,5.383453,0,0,0,15.20589,0,0,0,1,0,4,84.6,0,0,72.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.037738,1.386294,2.721683,1
-16,6,95,1,3,629889,1,8413.723,26.49555,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,84.6,0,0,72.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,1,0,0,72.7,9.037738,1.386294,,0
-16,6,95,1,1,629890,1,962.6216,47.06913,0,6,1,0,6.625999,0,0,0,6.625999,0,0,0,0,0,7,83.5,3.4,0,76.1,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,76.1,6.870698,1.94591,1.891001,1
-16,6,95,1,2,629890,1,962.6216,48.06913,0,6,1,0,0,0,0,0,0,0,0,0,0,0,7,83.5,3.4,0,76.1,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,76.1,6.870698,1.94591,,0
-16,6,95,1,3,629890,1,962.6216,49.06913,0,6,1,0,0,0,0,0,0,0,0,0,0,0,7,83.5,3.4,0,76.1,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,76.1,6.870698,1.94591,,0
-16,6,95,1,1,629891,1,962.6216,11.60301,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,93.3,10.57626,0,96.3,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,96.3,6.870698,1.94591,,0
-16,6,95,1,2,629891,1,962.6216,12.60301,0,7,1,30.60068,0,0,0,0,30.60068,0,0,0,0,0,7,93.3,10.57626,0,96.3,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,96.3,6.870698,1.94591,3.421022,1
-16,6,95,1,3,629891,1,962.6216,13.60301,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,93.3,10.57626,0,96.3,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,96.3,6.870698,1.94591,,0
-16,6,95,1,1,629893,1,962.6216,40.06845,1,7,1,10.51746,16.40724,0,0,382.4148,409.3395,1,0,0,1,0,7,74.5,6.9,0,87.5,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,87.5,6.870698,1.94591,6.014545,1
-16,6,95,1,2,629893,1,962.6216,41.06845,1,7,1,26.06725,0,37.02304,0,0,63.09029,0,0,0,0,0,7,74.5,6.9,0,87.5,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,87.5,6.870698,1.94591,4.144567,1
-16,6,95,1,3,629893,1,962.6216,42.06845,1,7,1,38.76501,0,0,0,0,38.76501,0,0,0,0,0,7,74.5,6.9,0,87.5,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,87.5,6.870698,1.94591,3.657518,1
-16,6,95,1,1,629894,1,962.6216,15.03354,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,63.8,10.3,0,38.6,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,38.6,6.870698,1.94591,,0
-16,6,95,1,2,629894,1,962.6216,16.03354,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,63.8,10.3,0,38.6,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,38.6,6.870698,1.94591,,0
-16,6,95,1,3,629894,1,962.6216,17.03354,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,63.8,10.3,0,38.6,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,38.6,6.870698,1.94591,,0
-16,6,95,1,1,629895,1,962.6216,11.60301,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,85.2,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,1,2,629895,1,962.6216,12.60301,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,85.2,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,1,3,629895,1,962.6216,13.60301,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,85.2,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,0,1,629896,1,962.6216,4.873374,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,85.2,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,0,2,629896,1,962.6216,5.873374,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,85.2,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,0,3,629896,1,962.6216,6.873374,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,85.2,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,1,0,0,85.2,6.870698,1.94591,,0
-16,6,95,1,1,629897,.5112414,6735.316,20.88433,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,42.6,6.9,0,53.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,53.4,8.815269,0,,0
-16,6,95,1,2,629897,.5112414,6735.316,21.88433,0,11,1,13.22252,0,0,0,0,13.22252,0,0,0,0,0,1,42.6,6.9,0,53.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,53.4,8.815269,0,2.581921,1
-16,6,95,1,3,629897,.5112414,6735.316,22.88433,0,11,1,0,0,0,0,0,0,0,0,0,0,0,1,42.6,6.9,0,53.4,1000,1000,0,0,0,6.907755,0,4.564348,6.959049,1,0,0,53.4,8.815269,0,,0
-5,6,25,1,1,629903,1,0,60.27378,1,7,1,65.29137,0,0,0,0,65.29137,0,0,0,2,0,1,85.1,17.2,0,69.3,135.3,607.04,0,0,0,6.408595,0,3.258096,6.293789,0,1,0,69.3,0,0,4.17886,1
-5,6,25,1,2,629903,1,0,61.27378,1,7,1,15.26718,57.83588,32.82443,0,0,105.9275,0,0,0,1,0,1,85.1,17.2,0,69.3,135.3,607.04,0,0,0,6.408595,0,3.258096,6.293789,0,1,0,69.3,0,0,4.662755,1
-5,6,25,1,3,629903,1,0,62.27378,1,7,1,10.10453,71.74564,0,0,0,81.85017,0,0,0,2,0,1,85.1,17.2,0,69.3,135.3,607.04,0,0,0,6.408595,0,3.258096,6.293789,0,1,0,69.3,0,0,4.404891,1
-14,6,95,1,1,629909,0,3860.727,8.443532,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,90,10.57626,0,74.1,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,1,0,0,74.1,8.25887,1.386294,,0
-14,6,95,1,2,629909,0,3860.727,9.443532,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,90,10.57626,0,74.1,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,1,0,0,74.1,8.25887,1.386294,,0
-14,6,95,1,3,629909,0,3860.727,10.44353,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,90,10.57626,0,74.1,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,1,0,0,74.1,8.25887,1.386294,,0
-14,6,95,1,1,629910,0,3860.727,14.93498,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85.6,3.4,0,79.8,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,79.8,8.25887,1.386294,,0
-14,6,95,1,2,629910,0,3860.727,15.93498,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85.6,3.4,0,79.8,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,79.8,8.25887,1.386294,,0
-14,6,95,1,3,629910,0,3860.727,16.93498,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,85.6,3.4,0,79.8,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,79.8,8.25887,1.386294,,0
-14,6,95,1,1,629911,0,3860.727,41.21561,1,13,1,17.92414,0,0,0,0,17.92414,0,0,0,0,0,4,58,6.9,0,63.6,357,377.4,0,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,63.6,8.25887,1.386294,2.886148,1
-14,6,95,1,2,629911,0,3860.727,42.21561,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,58,6.9,0,63.6,357,377.4,0,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,63.6,8.25887,1.386294,,0
-14,6,95,1,3,629911,0,3860.727,43.21561,1,13,1,0,0,0,0,0,0,0,0,0,0,0,4,58,6.9,0,63.6,357,377.4,0,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,63.6,8.25887,1.386294,,0
-14,6,95,1,1,629912,0,3860.727,14.02875,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,0,55.6,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,55.6,8.25887,1.386294,,0
-14,6,95,1,2,629912,0,3860.727,15.02875,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,0,55.6,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,55.6,8.25887,1.386294,,0
-14,6,95,1,3,629912,0,3860.727,16.02875,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,76.7,10.57626,0,55.6,357,377.4,1,0,1.386294,5.933306,0,4.564348,5.929029,0,0,0,55.6,8.25887,1.386294,,0
-16,6,95,0,1,629920,0,2548.899,7.126626,1,12,1,21.87631,0,0,0,0,21.87631,0,0,0,3,0,7,73.3,10.57626,0,92.6,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,92.6,7.843809,1.94591,3.085404,1
-16,6,95,0,2,629920,0,2548.899,8.126626,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,73.3,10.57626,0,92.6,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,92.6,7.843809,1.94591,,0
-16,6,95,0,3,629920,0,2548.899,9.126626,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,73.3,10.57626,0,92.6,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,92.6,7.843809,1.94591,,0
-16,6,95,0,1,629921,0,2548.899,11.29637,0,12,1,75.72571,2.734539,0,0,530.5006,608.9609,2,0,0,5,0,7,78.3,10.57626,0,81.5,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,6.411754,1
-16,6,95,0,2,629921,0,2548.899,12.29637,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,81.5,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,,0
-16,6,95,0,3,629921,0,2548.899,13.29637,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,81.5,1000,1000,1,0,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,,0
-16,6,95,0,1,629922,0,2548.899,40.10951,0,12,1,8.413967,9.676063,0,0,0,18.09003,0,0,0,1,0,7,71.3,6.9,1,75,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,0,0,1,75,7.843809,1.94591,2.895361,1
-16,6,95,0,2,629922,0,2548.899,41.10951,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,71.3,6.9,1,75,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,0,0,1,75,7.843809,1.94591,,0
-16,6,95,0,3,629922,0,2548.899,42.10951,0,12,1,43.2247,0,39.45111,0,0,82.67581,0,0,0,1,8,7,71.3,6.9,1,75,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,0,0,1,75,7.843809,1.94591,4.414927,1
-16,6,95,0,1,629923,0,2548.899,9.130733,1,12,1,10.51746,0,25.2419,0,0,35.75936,0,0,0,1,0,7,86.7,10.57626,0,81.5,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,3.576812,1
-16,6,95,0,2,629923,0,2548.899,10.13073,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,86.7,10.57626,0,81.5,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,,0
-16,6,95,0,3,629923,0,2548.899,11.13073,1,12,1,10.2916,0,30.87479,0,0,41.16638,0,0,0,1,0,7,86.7,10.57626,0,81.5,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,81.5,7.843809,1.94591,3.717622,1
-16,6,95,0,1,629924,0,2548.899,17.95756,1,12,1,16.82793,0,33.65587,0,0,50.4838,0,0,0,2,0,7,71.3,17.2,0,55.7,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,55.7,7.843809,1.94591,3.921653,1
-16,6,95,0,2,629924,0,2548.899,18.95756,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,71.3,17.2,0,55.7,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,0,0,0,55.7,7.843809,1.94591,,0
-16,6,95,0,3,629924,0,2548.899,19.95756,1,12,1,80.61749,0,23.46484,0,0,104.0823,0,0,0,7,0,7,71.3,17.2,0,55.7,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,0,0,0,55.7,7.843809,1.94591,4.645182,1
-16,6,95,0,1,629925,0,2548.899,15.91239,1,12,1,10.51746,14.72444,27.34539,0,0,52.5873,0,0,0,1,0,7,55.3,3.4,0,56.8,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,56.8,7.843809,1.94591,3.962475,1
-16,6,95,0,2,629925,0,2548.899,16.91239,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,55.3,3.4,0,56.8,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,56.8,7.843809,1.94591,,0
-16,6,95,0,3,629925,0,2548.899,17.91239,1,12,1,0,5.780446,28.34648,0,0,34.12693,0,0,0,0,0,7,55.3,3.4,0,56.8,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,56.8,7.843809,1.94591,3.530087,1
-16,6,95,0,1,629926,0,2548.899,37.50034,1,12,1,198.5696,79.5162,29.44888,0,0,307.5347,0,0,0,4,14,7,43.6,3.4,0,64.8,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,64.8,7.843809,1.94591,5.728588,1
-16,6,95,0,2,629926,0,2548.899,38.50034,1,12,1,20.77824,0,0,0,0,20.77824,0,0,0,3,0,7,43.6,3.4,0,64.8,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,64.8,7.843809,1.94591,3.033906,1
-16,6,95,0,3,629926,0,2548.899,39.50034,1,12,1,270.6689,21.44082,25.72899,0,734.4769,1052.316,1,0,0,3,10,7,43.6,3.4,0,64.8,1000,1000,0,0,1.94591,6.907755,0,4.564348,6.959049,1,0,0,64.8,7.843809,1.94591,6.958748,1
-16,6,95,0,1,629932,0,13601.13,44.76386,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,94.7,6.9,0,88.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.517982,1.098612,,0
-16,6,95,0,2,629932,0,13601.13,45.76386,1,13,1,0,29.56107,0,0,0,29.56107,0,0,0,0,0,3,94.7,6.9,0,88.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.517982,1.098612,3.386458,1
-16,6,95,0,3,629932,0,13601.13,46.76386,1,13,1,12.19512,10.49129,0,0,0,22.68641,0,0,0,1,0,3,94.7,6.9,0,88.6,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,88.6,9.517982,1.098612,3.121766,1
-16,6,95,0,1,629933,0,13601.13,47.36756,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,13.8,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.517982,1.098612,,0
-16,6,95,0,2,629933,0,13601.13,48.36756,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,13.8,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.517982,1.098612,,0
-16,6,95,0,3,629933,0,13601.13,49.36756,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,78.2,13.8,0,77.3,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.3,9.517982,1.098612,,0
-16,6,95,0,1,629934,0,13601.13,16.60506,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,6.9,0,76.1,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.517982,1.098612,,0
-16,6,95,0,2,629934,0,13601.13,17.60506,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,6.9,0,76.1,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.517982,1.098612,,0
-16,6,95,0,3,629934,0,13601.13,18.60506,1,13,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,6.9,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,76.1,9.517982,1.098612,,0
-11,6,0,1,1,629944,0,3328.213,9.14716,1,8,1,15.56584,2.52419,0,0,354.6487,372.7387,1,0,0,2,0,3,86.7,10.57626,0,85.2,0,0,1,1,1.098612,0,0,0,0,1,0,0,85.2,8.110491,1.098612,5.920878,1
-11,6,0,1,2,629944,0,3328.213,10.14716,1,8,1,0,9.161315,0,0,0,9.161315,0,0,0,0,0,3,86.7,10.57626,0,85.2,0,0,1,1,1.098612,0,0,0,0,1,0,0,85.2,8.110491,1.098612,2.21499,1
-11,6,0,1,3,629944,0,3328.213,11.14716,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,10.57626,0,85.2,0,0,1,1,1.098612,0,0,0,0,1,0,0,85.2,8.110491,1.098612,,0
-11,6,0,1,1,629945,0,3328.213,46.45311,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,10.3,1,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.110491,1.098612,,0
-11,6,0,1,2,629945,0,3328.213,47.45311,0,8,1,103.1356,0,7.555724,0,0,110.6913,0,0,0,0,6,3,76.6,10.3,1,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.110491,1.098612,4.706746,1
-11,6,0,1,3,629945,0,3328.213,48.45311,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,76.6,10.3,1,59.1,0,0,0,0,1.098612,0,0,0,0,1,0,0,59.1,8.110491,1.098612,,0
-11,6,0,1,1,629946,0,3328.213,44.87885,1,8,1,25.2419,85.63315,33.65587,0,0,144.5309,0,0,0,3,1,3,71.3,17.2,1,22.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,22.7,8.110491,1.098612,4.973494,1
-11,6,0,1,2,629946,0,3328.213,45.87885,1,8,1,199.4711,100.2229,0,0,0,299.694,0,0,0,3,10,3,71.3,17.2,1,22.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,22.7,8.110491,1.098612,5.702762,1
-11,6,0,1,3,629946,0,3328.213,46.87885,1,8,1,47.68439,124.4014,0,0,1092.967,1265.053,1,0,0,2,0,3,71.3,17.2,1,22.7,0,0,0,0,1.098612,0,0,0,0,1,0,0,22.7,8.110491,1.098612,7.142869,1
-19,6,25,1,1,629947,1,6735.316,35.32375,1,8,1,10.42101,0,35.43143,0,0,45.85244,0,0,0,0,1,3,58.5,20.7,0,52.3,524.7,524.7,0,0,1.098612,6.262826,0,3.258096,7.649121,0,0,0,52.3,8.815269,1.098612,3.825428,1
-19,6,25,1,2,629947,1,6735.316,36.32375,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,58.5,20.7,0,52.3,524.7,524.7,0,0,1.098612,6.262826,0,3.258096,7.649121,0,0,0,52.3,8.815269,1.098612,,0
-19,6,25,1,3,629947,1,6735.316,37.32375,1,8,1,24.01894,4.566982,33.02774,0,0,61.61367,0,0,0,0,1,4,58.5,20.7,0,52.3,524.7,524.7,0,0,1.386294,6.262826,0,3.258096,7.649121,0,0,0,52.3,8.815269,1.386294,4.120884,1
-19,6,25,1,1,629950,1,6735.316,17.31143,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,53.7,27.6,1,51.1,524.7,524.7,1,1,1.098612,6.262826,0,3.258096,7.649121,0,0,0,51.1,8.815269,1.098612,,0
-19,6,25,1,2,629950,1,6735.316,18.31143,1,8,1,30.75769,0,0,0,516.8792,547.6369,1,0,0,4,0,3,53.7,27.6,1,51.1,524.7,524.7,0,0,1.098612,6.262826,0,3.258096,7.649121,0,0,0,51.1,8.815269,1.098612,6.305613,1
-19,6,25,1,3,629950,1,6735.316,19.31143,1,8,1,8.457375,0,23.68065,0,0,32.13802,0,0,0,0,1,4,53.7,27.6,1,51.1,524.7,524.7,0,0,1.386294,6.262826,0,3.258096,7.649121,0,0,0,51.1,8.815269,1.386294,3.47004,1
-19,6,25,1,1,629951,1,6735.316,3.425051,0,8,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,100,524.7,524.7,1,0,1.098612,6.262826,0,3.258096,7.649121,0,0,0,100,8.815269,1.098612,,0
-19,6,25,1,2,629951,1,6735.316,4.425051,0,8,1,22.13053,0,0,0,0,22.13053,0,0,0,0,0,3,77.40034,10.57626,0,100,524.7,524.7,1,0,1.098612,6.262826,0,3.258096,7.649121,0,0,0,100,8.815269,1.098612,3.096958,1
-19,6,25,1,3,629951,1,6735.316,5.425051,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,100,524.7,524.7,1,0,1.386294,6.262826,0,3.258096,7.649121,0,0,0,100,8.815269,1.386294,,0
-11,6,0,1,1,629952,0,7818.769,44.47639,1,13,1,102.7027,70.32433,0,0,0,173.027,0,0,0,6,0,3,43.6,20.7,1,39.8,0,307.92,0,0,1.098612,5.72984,0,0,0,0,1,0,39.8,8.96441,1.098612,5.153448,1
-11,6,0,1,2,629952,0,7818.769,45.47639,1,13,1,61.98724,74.58979,52.36098,0,0,188.938,0,0,0,5,0,3,43.6,20.7,1,39.8,0,307.92,0,0,1.098612,5.72984,0,0,0,0,1,0,39.8,8.96441,1.098612,5.241419,1
-11,6,0,1,3,629952,0,7818.769,46.47639,1,13,1,96.49854,61.25052,0,0,0,157.7491,0,0,0,4,0,3,43.6,20.7,1,39.8,0,307.92,0,0,1.098612,5.72984,0,0,0,0,1,0,39.8,8.96441,1.098612,5.061006,1
-11,6,0,1,4,629952,0,7818.769,47.47639,1,13,1,114.7787,103.0158,0,0,0,217.7944,0,0,0,9,0,2,43.6,20.7,1,39.8,0,307.92,0,0,.6931472,5.72984,0,0,0,0,1,0,39.8,8.96441,.6931472,5.383552,1
-11,6,0,1,5,629952,0,7818.769,48.47639,1,13,1,151.5562,143.6164,27.0636,0,0,322.2361,0,0,0,8,1,2,43.6,20.7,1,39.8,0,307.92,0,0,.6931472,5.72984,0,0,0,0,1,0,39.8,8.96441,.6931472,5.775285,1
-11,6,0,1,1,629953,0,7818.769,49.79055,0,7,1,73.71008,58.73219,0,0,0,132.4423,0,0,0,7,0,3,83,24.1,1,45.5,0,307.92,0,0,1.098612,5.72984,0,0,0,1,0,0,45.5,8.96441,1.098612,4.886147,1
-11,6,0,1,2,629953,0,7818.769,50.79055,0,7,1,160.8933,98.10847,44.21149,0,0,303.2133,0,0,0,12,0,3,83,24.1,1,45.5,0,307.92,0,0,1.098612,5.72984,0,0,0,1,0,0,45.5,8.96441,1.098612,5.714437,1
-11,6,0,1,3,629953,0,7818.769,51.79055,0,7,1,49.604,48.35348,0,0,268.862,366.8195,1,0,0,6,0,3,83,24.1,1,45.5,0,307.92,0,0,1.098612,5.72984,0,0,0,1,0,0,45.5,8.96441,1.098612,5.90487,1
-11,6,0,1,1,629954,0,7818.769,4.865161,0,13,1,34.39803,23.50368,0,0,0,57.90172,0,0,0,5,0,3,77.40034,10.57626,0,63,0,307.92,1,0,1.098612,5.72984,0,0,0,1,0,0,63,8.96441,1.098612,4.058747,1
-11,6,0,1,2,629954,0,7818.769,5.865161,0,13,1,48.31358,29.17047,0,0,366.9098,444.3938,1,0,0,6,0,3,77.40034,10.57626,0,63,0,307.92,1,0,1.098612,5.72984,0,0,0,1,0,0,63,8.96441,1.098612,6.096711,1
-11,6,0,1,3,629954,0,7818.769,6.865161,0,13,1,28.34514,15.00625,0,0,0,43.35139,0,0,0,4,0,3,77.40034,10.57626,0,63,0,307.92,1,0,1.098612,5.72984,0,0,0,1,0,0,63,8.96441,1.098612,3.769339,1
-11,6,0,1,4,629954,0,7818.769,7.865161,0,13,1,28.50713,25.5889,0,0,0,54.09602,0,0,0,4,0,2,77.40034,10.57626,0,63,0,307.92,1,0,.6931472,5.72984,0,0,0,1,0,0,63,8.96441,.6931472,3.990761,1
-11,6,0,1,5,629954,0,7818.769,8.865161,0,13,1,13.1935,8.907308,0,0,0,22.10081,0,0,0,1,0,2,77.40034,10.57626,0,63,0,307.92,1,0,.6931472,5.72984,0,0,0,1,0,0,63,8.96441,.6931472,3.095614,1
-13,6,0,1,1,629955,0,4858.679,5.218344,1,12,1,9.255363,0,0,0,0,9.255363,0,0,0,1,0,4,76.7,10.57626,0,51.9,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,51.9,8.488728,1.386294,2.225203,1
-13,6,0,1,2,629955,0,4858.679,6.218344,1,12,1,37.77862,10.40801,0,0,0,48.18663,0,0,0,3,0,4,76.7,10.57626,0,51.9,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,51.9,8.488728,1.386294,3.875082,1
-13,6,0,1,3,629955,0,4858.679,7.218344,1,12,1,33.96227,17.92453,0,0,0,51.88679,0,0,0,1,0,4,76.7,10.57626,0,51.9,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,51.9,8.488728,1.386294,3.949064,1
-13,6,0,1,1,629956,0,4858.679,10.3217,1,12,1,7.993269,0,0,0,0,7.993269,0,0,0,1,0,4,81.7,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,74.1,8.488728,1.386294,2.0786,1
-13,6,0,1,2,629956,0,4858.679,11.3217,1,12,1,5.666792,11.03136,0,0,0,16.69815,0,0,0,1,0,4,81.7,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,74.1,8.488728,1.386294,2.815298,1
-13,6,0,1,3,629956,0,4858.679,12.3217,1,12,1,0,20.42882,0,0,0,20.42882,0,0,0,0,0,4,81.7,10.57626,0,74.1,450,150,1,1,1.386294,5.010635,1,4.564348,6.160541,1,0,0,74.1,8.488728,1.386294,3.016947,1
-13,6,0,1,1,629957,0,4858.679,35.87406,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83,10.3,0,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,68.2,8.488728,1.386294,,0
-13,6,0,1,2,629957,0,4858.679,36.87406,1,12,1,29.08953,41.27314,0,0,0,70.36268,0,0,0,4,0,4,83,10.3,0,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,68.2,8.488728,1.386294,4.253663,1
-13,6,0,1,3,629957,0,4858.679,37.87406,1,12,1,63.80789,97.62608,0,0,501.5437,662.9777,1,0,0,5,0,4,83,10.3,0,68.2,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,68.2,8.488728,1.386294,6.496741,1
-13,6,0,1,1,629958,0,4858.679,37.23203,0,12,1,51.3252,0,2.103492,0,0,53.42869,0,0,0,4,0,4,69.1,6.9,0,65.9,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,65.9,8.488728,1.386294,3.978348,1
-13,6,0,1,2,629958,0,4858.679,38.23203,0,12,1,0,6.422365,0,0,0,6.422365,0,0,0,0,0,4,69.1,6.9,0,65.9,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,65.9,8.488728,1.386294,1.859786,1
-13,6,0,1,3,629958,0,4858.679,39.23203,0,12,1,27.78731,12.44254,0,0,0,40.22985,0,0,0,3,0,4,69.1,6.9,0,65.9,450,150,0,0,1.386294,5.010635,1,4.564348,6.160541,0,0,0,65.9,8.488728,1.386294,3.694609,1
-11,6,0,0,1,629959,0,10323.6,7.348392,0,12,1,57.13077,28.76428,0,0,0,85.89505,0,0,0,13,0,4,96.7,10.57626,0,55.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,55.6,9.242285,1.386294,4.453126,1
-11,6,0,0,2,629959,0,10323.6,8.348392,0,12,1,29.61276,15.09112,0,0,0,44.70387,0,0,0,7,0,4,96.7,10.57626,0,55.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,55.6,9.242285,1.386294,3.80006,1
-11,6,0,0,3,629959,0,10323.6,9.348392,0,12,1,20.41522,0,0,0,0,20.41522,0,0,0,3,0,4,96.7,10.57626,0,55.6,0,0,1,0,1.386294,0,0,0,0,1,0,0,55.6,9.242285,1.386294,3.016281,1
-11,6,0,0,1,629960,0,10323.6,32.14237,0,14,1,66.44096,26.94033,0,0,0,93.38129,0,0,0,1,0,4,88.3,3.4,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.242285,1.386294,4.536691,1
-11,6,0,0,2,629960,0,10323.6,33.14237,0,14,1,43.65983,36.32498,0,0,0,79.98482,0,0,0,1,0,4,88.3,3.4,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.242285,1.386294,4.381837,1
-11,6,0,0,3,629960,0,10323.6,34.14237,0,14,1,2.076125,32.87197,0,0,0,34.9481,0,0,0,0,0,4,88.3,3.4,0,72.7,0,0,0,0,1.386294,0,0,0,0,1,0,0,72.7,9.242285,1.386294,3.553864,1
-11,6,0,0,1,629961,0,10323.6,32.60233,1,12,1,40.83792,51.50233,13.54211,0,1005.501,1111.384,1,0,0,6,1,4,90.4,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,79.5,9.242285,1.386294,7.013361,1
-11,6,0,0,2,629961,0,10323.6,33.60233,1,12,1,40.81245,23.81169,0,0,0,64.62415,0,0,0,9,0,4,90.4,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,79.5,9.242285,1.386294,4.168588,1
-11,6,0,0,3,629961,0,10323.6,34.60233,1,12,1,495.6747,0,21.5917,0,0,517.2664,0,0,0,4,1,4,90.4,10.3,0,79.5,0,0,0,0,1.386294,0,0,0,0,1,0,0,79.5,9.242285,1.386294,6.248558,1
-11,6,0,0,1,629962,0,10323.6,4.684463,0,12,1,272.9581,17.99831,0,0,0,290.9564,0,0,0,20,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.242285,1.386294,5.673173,1
-11,6,0,0,2,629962,0,10323.6,5.684463,0,12,1,53.53075,24.44951,0,0,753.9863,831.9666,2,0,0,7,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.242285,1.386294,6.723792,1
-11,6,0,0,3,629962,0,10323.6,6.684463,0,12,1,48.78893,4.757785,0,0,0,53.54671,0,0,0,4,0,4,77.40034,10.57626,0,63,0,0,1,0,1.386294,0,0,0,0,1,0,0,63,9.242285,1.386294,3.980554,1
-6,6,25,0,1,629973,0,12762.93,27.80014,1,12,1,104.9513,2.666102,0,0,420.6517,528.2692,1,0,0,3,0,3,83.5,24.1,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.454378,1.098612,6.269606,1
-6,6,25,0,2,629973,0,12762.93,28.80014,1,12,1,25.81625,0,0,0,850.7972,876.6135,1,0,0,1,0,3,83.5,24.1,0,68.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.454378,1.098612,6.776066,1
-6,6,25,0,3,629973,0,12762.93,29.80014,1,12,1,12.11073,0,0,0,0,12.11073,0,0,0,1,0,5,83.5,24.1,0,68.2,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,68.2,9.454378,1.609438,2.494092,1
-6,6,25,0,1,629974,0,12762.93,31.77276,0,12,1,30.04655,0,0,0,0,30.04655,0,0,0,2,0,3,87.2,13.8,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.454378,1.098612,3.402748,1
-6,6,25,0,2,629974,0,12762.93,32.77276,0,12,1,26.1959,0,0,0,0,26.1959,0,0,0,2,0,3,87.2,13.8,0,79.5,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.454378,1.098612,3.265603,1
-6,6,25,0,3,629974,0,12762.93,33.77276,0,12,1,15.22491,0,0,0,0,15.22491,0,0,0,1,0,5,87.2,13.8,0,79.5,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,1,0,0,79.5,9.454378,1.609438,2.722933,1
-13,6,0,0,1,629982,1,12033.79,49.68104,0,10,1,0,10.42101,0,0,0,10.42101,0,0,0,0,0,3,84.6,10.3,0,58,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,1,0,58,9.395557,1.098612,2.343824,1
-13,6,0,0,2,629982,1,12033.79,50.68104,0,10,1,41.63541,9.624907,43.30083,0,0,94.56114,0,0,0,1,0,3,84.6,10.3,0,58,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,1,0,58,9.395557,1.098612,4.549247,1
-13,6,0,0,3,629982,1,12033.79,51.68104,0,10,1,675.2368,22.08728,117.6083,0,652.571,1467.503,1,0,0,9,26,3,84.6,10.3,0,58,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,1,0,58,9.395557,1.098612,7.291318,1
-13,6,0,0,1,629983,1,12033.79,41.0267,1,15,1,0,0,0,0,0,0,0,0,0,0,0,3,80.9,10.3,0,68.2,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,1,0,0,68.2,9.395557,1.098612,,0
-13,6,0,0,2,629983,1,12033.79,42.0267,1,15,1,7.876969,6.414104,0,0,0,14.29107,0,0,0,0,0,3,80.9,10.3,0,68.2,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,1,0,0,68.2,9.395557,1.098612,2.659635,1
-13,6,0,0,3,629983,1,12033.79,43.0267,1,15,1,107.2395,5.483762,0,0,0,112.7233,0,0,0,0,7,3,80.9,10.3,0,68.2,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,1,0,0,68.2,9.395557,1.098612,4.724936,1
-11,6,0,0,1,630014,0,9747.801,54.6694,1,11,1,115.4609,142.5223,31.95243,0,1217.047,1506.982,1,0,0,10,0,1,88.8,31,1,51.1,0,260.04,0,0,0,5.560835,0,0,0,0,1,0,51.1,9.184899,0,7.317864,1
-11,6,0,0,2,630014,0,9747.801,55.6694,1,11,1,58.28362,247.9211,11.93208,0,0,318.1367,0,0,0,8,0,1,88.8,31,1,51.1,0,260.04,0,0,0,5.560835,0,0,0,0,1,0,51.1,9.184899,0,5.762481,1
-11,6,0,0,3,630014,0,9747.801,56.6694,1,11,1,115.692,172.0656,0,0,0,287.7577,0,0,0,10,0,1,88.8,31,1,51.1,0,260.04,0,0,0,5.560835,0,0,0,0,1,0,51.1,9.184899,0,5.662119,1
-11,6,0,0,4,630014,0,9747.801,57.6694,1,11,1,143.181,116.9059,27.50283,0,0,287.5897,0,0,0,7,0,1,88.8,31,1,51.1,0,260.04,0,0,0,5.560835,0,0,0,0,1,0,51.1,9.184899,0,5.661535,1
-11,6,0,0,5,630014,0,9747.801,58.6694,1,11,1,173.2419,166.8439,0,0,0,340.0858,0,0,0,9,0,1,88.8,31,1,51.1,0,260.04,0,0,0,5.560835,0,0,0,0,1,0,51.1,9.184899,0,5.829198,1
-16,6,95,1,1,630041,0,9325.653,26.32444,0,12,1,4.206984,0,29.44888,0,0,33.65587,0,0,0,1,0,3,86.2,6.9,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.140632,1.098612,3.516187,1
-16,6,95,1,2,630041,0,9325.653,27.32444,0,12,1,9.066868,3.298073,18.13374,18.88931,0,30.49868,0,0,1,1,0,3,86.2,6.9,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.140632,1.098612,3.417683,1
-16,6,95,1,3,630041,0,9325.653,28.32444,0,12,1,126.5523,2.737564,0,37.73585,0,129.2899,0,0,2,2,0,3,86.2,6.9,0,90.9,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,0,0,0,90.9,9.140632,1.098612,4.862057,1
-16,6,95,1,1,630042,0,9325.653,23.49623,1,13,1,15.14514,1.95204,31.55238,0,0,48.64956,0,0,0,2,0,3,59.6,3.4,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,76.1,9.140632,1.098612,3.884643,1
-16,6,95,1,2,630042,0,9325.653,24.49623,1,13,1,16.62259,32.66339,15.11145,283.3396,358.8969,423.2943,1,0,15,1,0,3,59.6,3.4,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,76.1,9.140632,1.098612,6.048068,1
-16,6,95,1,3,630042,0,9325.653,25.49623,1,13,1,123.8422,22.74442,0,435.6775,1661.406,1807.993,1,0,23,6,0,3,59.6,3.4,0,76.1,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,76.1,9.140632,1.098612,7.499973,1
-19,6,25,0,1,630043,0,5065.028,28.72827,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,90.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.530313,1.386294,,0
-19,6,25,0,2,630043,0,5065.028,29.72827,0,8,1,3.777862,2.315829,0,0,0,6.093691,0,0,0,1,0,4,90.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.530313,1.386294,1.807254,1
-19,6,25,0,3,630043,0,5065.028,30.72827,0,8,1,0,0,0,0,0,0,0,0,0,0,0,4,90.4,0,0,75,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,75,8.530313,1.386294,,0
-19,6,25,1,1,630044,0,5065.028,6.266941,1,12,1,35.75936,0,24.40051,0,0,60.15987,0,0,0,3,0,4,86.7,10.57626,0,70.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,4.097005,1
-19,6,25,1,2,630044,0,5065.028,7.266941,1,12,1,6.422365,0,0,0,0,6.422365,0,0,0,1,0,4,86.7,10.57626,0,70.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,1.859786,1
-19,6,25,1,3,630044,0,5065.028,8.26694,1,12,1,42.19554,0,17.15266,0,0,59.3482,0,0,0,1,0,4,86.7,10.57626,0,70.4,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,4.083422,1
-19,6,25,1,1,630045,0,5065.028,7.624915,0,12,1,12.62095,0,26.504,0,0,39.12495,0,0,0,1,0,4,85,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,3.66676,1
-19,6,25,1,2,630045,0,5065.028,8.624914,0,12,1,24.17831,0,13.6003,0,0,37.77862,0,0,0,3,0,4,85,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,3.631743,1
-19,6,25,1,3,630045,0,5065.028,9.624914,0,12,1,13.72213,0,0,0,0,13.72213,0,0,0,2,0,4,85,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.530313,1.386294,2.61901,1
-19,6,25,1,1,630046,0,5065.028,26.28611,1,12,1,29.44888,3.89146,0,0,0,33.34034,0,0,0,1,0,4,88.3,6.9,0,58,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,58,8.530313,1.386294,3.506768,1
-19,6,25,1,2,630046,0,5065.028,27.28611,1,12,1,0,5.4779,0,0,0,5.4779,0,0,0,0,0,4,88.3,6.9,0,58,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,58,8.530313,1.386294,1.700722,1
-19,6,25,1,3,630046,0,5065.028,28.28611,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,58,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,58,8.530313,1.386294,,0
-13,6,0,1,1,630052,0,2579.109,52.56673,1,10,1,316.1236,53.21625,35.97122,0,0,405.311,0,0,0,9,30,1,61.2,37.9,1,58,150,268.8,0,0,0,5.593967,1,4.564348,5.061929,0,1,0,58,7.855587,0,6.004655,1
-13,6,0,1,2,630052,0,2579.109,53.56673,1,10,1,122.2475,41.9514,0,0,412.3007,576.4996,1,0,0,3,11,1,61.2,37.9,1,58,150,268.8,0,0,0,5.593967,1,4.564348,5.061929,0,1,0,58,7.855587,0,6.356975,1
-13,6,0,1,3,630052,0,2579.109,54.56673,1,10,1,52.24913,53.02768,10.38062,0,988.2353,1103.893,1,0,0,5,0,1,61.2,37.9,1,58,150,268.8,0,0,0,5.593967,1,4.564348,5.061929,0,1,0,58,7.855587,0,7.006598,1
-11,6,0,1,1,630063,0,5932.924,57.64545,0,4,1,283.1147,134.9979,2.750741,0,363.0977,783.9611,1,0,0,13,0,2,34,31,1,17,0,319.43,0,0,.6931472,5.766538,0,0,0,1,0,0,17,8.688441,.6931472,6.66436,1
-11,6,0,1,2,630063,0,5932.924,58.64545,0,4,1,58.46621,110.615,5.504935,0,0,174.5862,0,0,0,8,0,2,34,31,1,17,0,319.43,0,0,.6931472,5.766538,0,0,0,1,0,0,17,8.688441,.6931472,5.162418,1
-11,6,0,1,3,630063,0,5932.924,59.64545,0,4,1,145.6747,202.1003,36.89619,0,0,384.6713,0,0,0,15,0,2,34,31,1,17,0,319.43,0,0,.6931472,5.766538,0,0,0,1,0,0,17,8.688441,.6931472,5.952389,1
-11,6,0,1,1,630064,0,5932.924,55.13484,1,12,1,159.543,166.2336,45.70461,0,0,371.4812,0,0,0,10,13,2,68.6,27.6,1,45.5,0,319.43,0,0,.6931472,5.766538,0,0,0,0,1,0,45.5,8.688441,.6931472,5.917498,1
-11,6,0,1,2,630064,0,5932.924,56.13484,1,12,1,107.8208,199.8026,0,0,533.0296,840.653,1,0,0,6,0,2,68.6,27.6,1,45.5,0,319.43,0,0,.6931472,5.766538,0,0,0,0,1,0,45.5,8.688441,.6931472,6.734179,1
-11,6,0,1,3,630064,0,5932.924,57.13484,1,12,1,236.6782,267.5986,34.60208,0,623.5294,1162.408,1,0,0,14,0,2,68.6,27.6,1,45.5,0,319.43,0,0,.6931472,5.766538,0,0,0,0,1,0,45.5,8.688441,.6931472,7.058249,1
-13,6,0,0,1,630065,0,14799.79,47.06366,1,12,1,338.8725,123.9798,39.12495,0,0,501.9773,0,0,0,13,25,4,77.7,27.6,0,88.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.1,9.602436,1.386294,6.218555,1
-13,6,0,0,2,630065,0,14799.79,48.06366,1,12,1,340.0076,72.76917,26.44503,0,0,439.2218,0,0,0,5,30,4,77.7,27.6,0,88.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.1,9.602436,1.386294,6.085004,1
-13,6,0,0,3,630065,0,14799.79,49.06366,1,12,1,317.3242,45.99657,42.06861,0,0,405.3894,0,0,0,4,25,4,77.7,27.6,0,88.1,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,88.1,9.602436,1.386294,6.004848,1
-13,6,0,0,1,630066,0,14799.79,20.54757,1,11,1,110.223,25.88136,34.07657,0,0,170.1809,0,0,0,3,15,4,56.4,10.3,0,95.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,95.5,9.602436,1.386294,5.136862,1
-13,6,0,0,2,630066,0,14799.79,21.54757,1,11,1,32.48961,43.78542,0,0,0,76.27503,0,0,0,1,4,4,56.4,10.3,0,95.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,95.5,9.602436,1.386294,4.334346,1
-13,6,0,0,3,630066,0,14799.79,22.54757,1,11,1,35.33448,61.31046,14.62436,0,0,111.2693,0,0,0,4,0,4,56.4,10.3,0,95.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,95.5,9.602436,1.386294,4.711953,1
-13,6,0,0,1,630067,0,14799.79,4.164271,1,12,1,246.1085,22.03618,40.77829,0,460.244,769.167,1,0,0,17,17,4,77.40034,10.57626,0,40.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,40.7,9.602436,1.386294,6.645308,1
-13,6,0,0,2,630067,0,14799.79,5.164271,1,12,1,117.8693,27.37061,13.6003,0,0,158.8402,0,0,0,10,10,4,77.40034,10.57626,0,40.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,40.7,9.602436,1.386294,5.067899,1
-13,6,0,0,3,630067,0,14799.79,6.164271,1,12,1,90.90909,11.24185,51.73242,0,0,153.8834,0,0,0,11,0,4,77.40034,10.57626,0,40.7,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,40.7,9.602436,1.386294,5.036195,1
-13,6,0,0,1,630068,0,14799.79,57.22108,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.602436,1.386294,,0
-13,6,0,0,2,630068,0,14799.79,58.22108,0,12,1,33.24518,31.11069,26.44503,0,0,90.8009,0,0,0,1,1,4,82.4,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.602436,1.386294,4.508669,1
-13,6,0,0,3,630068,0,14799.79,59.22108,0,12,1,12.00686,0,42.06861,0,0,54.07547,0,0,0,0,1,4,82.4,6.9,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,68.2,9.602436,1.386294,3.990381,1
-6,6,25,0,1,630069,1,6735.316,25.16359,1,12,1,12.69573,0,37.07998,0,0,49.77571,0,0,0,0,1,3,63.8,3.4,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.815269,1.098612,3.907527,1
-6,6,25,0,2,630069,1,6735.316,26.16359,1,12,1,33.78891,22.25892,0,0,478.7396,534.7874,1,0,0,0,0,3,63.8,3.4,0,60.2,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.815269,1.098612,6.281869,1
-6,6,25,0,3,630069,1,6735.316,27.16359,1,12,1,58.13149,24.42561,38.97232,0,0,121.5294,0,0,0,3,1,4,63.8,3.4,0,60.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,60.2,8.815269,1.386294,4.800156,1
-6,6,25,0,1,630070,1,6735.316,5.735797,0,12,1,16.92764,0,0,0,0,16.92764,0,0,0,0,0,3,81.7,10.57626,0,70.4,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.815269,1.098612,2.828948,1
-6,6,25,0,2,630070,1,6735.316,6.735797,0,12,1,52.77145,6.192103,0,0,0,58.96355,0,0,0,2,0,3,81.7,10.57626,0,70.4,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.815269,1.098612,4.07692,1
-6,6,25,0,3,630070,1,6735.316,7.735797,0,12,1,11.41868,9.816609,0,0,0,21.23529,0,0,0,1,0,4,81.7,10.57626,0,70.4,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.4,8.815269,1.386294,3.055665,1
-6,6,25,0,1,630071,1,6735.316,26.5462,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,6.9,0,73.9,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,73.9,8.815269,1.098612,,0
-6,6,25,0,2,630071,1,6735.316,27.5462,0,12,1,5.694761,5.125285,0,0,0,10.82005,0,0,0,1,0,3,81.4,6.9,0,73.9,750,750,0,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,73.9,8.815269,1.098612,2.381401,1
-6,6,25,0,3,630071,1,6735.316,28.5462,0,12,1,14.18685,0,0,0,0,14.18685,0,0,0,0,0,4,81.4,6.9,0,73.9,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,73.9,8.815269,1.386294,2.652316,1
-11,6,0,0,1,630072,1,8102.918,3.723477,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,81.5,0,0,1,1,1.098612,0,0,0,0,1,0,0,81.5,9.000103,1.098612,,0
-11,6,0,0,2,630072,1,8102.918,4.723477,1,12,1,22.77904,0,0,0,0,22.77904,0,0,0,3,0,4,77.40034,10.57626,0,81.5,0,0,1,1,1.386294,0,0,0,0,1,0,0,81.5,9.000103,1.386294,3.125841,1
-11,6,0,0,3,630072,1,8102.918,5.723477,1,12,1,12.45675,6.83391,0,0,0,19.29066,0,0,0,0,0,4,77.40034,10.57626,0,81.5,0,0,1,1,1.386294,0,0,0,0,1,0,0,81.5,9.000103,1.386294,2.959621,1
-11,6,0,0,1,630073,1,8102.918,23.02533,1,12,1,19.04359,34.74397,0,0,528.5654,582.353,1,0,0,1,0,3,83,6.9,0,63.6,0,0,0,0,1.098612,0,0,0,0,0,0,0,63.6,9.000103,1.098612,6.367077,1
-11,6,0,0,2,630073,1,8102.918,24.02533,1,12,1,0,45.59605,0,0,0,45.59605,0,0,0,0,0,4,83,6.9,0,63.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,63.6,9.000103,1.386294,3.819821,1
-11,6,0,0,3,630073,1,8102.918,25.02533,1,12,1,27.68166,41.6609,0,0,0,69.34256,0,0,0,2,0,4,83,6.9,0,63.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,63.6,9.000103,1.386294,4.239059,1
-11,6,0,0,1,630074,1,8102.918,25.24572,0,12,1,59.24672,0,0,0,0,59.24672,0,0,0,4,0,3,81.4,3.4,0,67,0,0,0,0,1.098612,0,0,0,0,1,0,0,67,9.000103,1.098612,4.08171,1
-11,6,0,0,2,630074,1,8102.918,26.24572,0,12,1,0,2.46773,0,0,0,2.46773,0,0,0,0,0,4,81.4,3.4,0,67,0,0,0,0,1.386294,0,0,0,0,1,0,0,67,9.000103,1.386294,.9032986,1
-11,6,0,0,3,630074,1,8102.918,27.24572,0,12,1,37.02422,0,0,0,0,37.02422,0,0,0,0,0,4,81.4,3.4,0,67,0,0,0,0,1.386294,0,0,0,0,1,0,0,67,9.000103,1.386294,3.611572,1
-13,6,0,1,1,630081,0,6735.316,27.50445,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,60.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.815269,1.098612,,0
-13,6,0,1,2,630081,0,6735.316,28.50445,0,12,1,62.41395,28.10922,33.96053,0,0,124.4837,0,0,0,8,0,3,60.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.815269,1.098612,4.824175,1
-13,6,0,1,3,630081,0,6735.316,29.50445,0,12,1,306.2684,29.65924,0,0,0,335.9276,0,0,0,3,23,3,60.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.815269,1.098612,5.816896,1
-13,6,0,1,4,630081,0,6735.316,30.50445,0,12,1,396.6755,64.69588,28.71175,0,0,490.0831,0,0,0,6,32,3,60.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.815269,1.098612,6.194575,1
-13,6,0,1,5,630081,0,6735.316,31.50445,0,12,1,347.8559,50.2916,18.86792,0,0,417.0154,0,0,0,9,30,3,60.1,10.3,0,64.8,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,64.8,8.815269,1.098612,6.033123,1
-13,6,0,1,1,630082,0,6735.316,27.50171,1,12,1,53.51833,53.14172,35.67889,0,0,142.3389,0,0,0,4,0,3,48.9,17.2,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,8.815269,1.098612,4.958211,1
-13,6,0,1,2,630082,0,6735.316,28.50171,1,12,1,31.6659,19.96329,0,0,0,51.62919,0,0,0,4,0,3,48.9,17.2,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,8.815269,1.098612,3.944087,1
-13,6,0,1,3,630082,0,6735.316,29.50171,1,12,1,90.45015,73.20152,33.65587,0,0,197.3075,0,0,0,6,22,3,48.9,17.2,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,8.815269,1.098612,5.284763,1
-13,6,0,1,4,630082,0,6735.316,30.50171,1,12,1,492.6332,53.55119,0,0,0,546.1844,0,0,0,11,49,3,48.9,17.2,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,8.815269,1.098612,6.302957,1
-13,6,0,1,5,630082,0,6735.316,31.50171,1,12,1,404.1166,28.0789,0,0,285.4202,717.6158,1,0,0,8,26,3,48.9,17.2,0,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,8.815269,1.098612,6.575934,1
-11,6,0,0,1,630091,1,0,53.94661,0,2,1,17.3439,47.69574,35.67889,0,0,100.7185,0,0,0,3,1,2,79.3,24.1,1,58,0,0,0,0,.6931472,0,0,0,0,0,0,1,58,0,.6931472,4.61233,1
-11,6,0,0,1,630092,1,0,11.86858,1,2,1,4.955401,0,0,0,0,4.955401,0,0,0,1,0,2,95,10.57626,1,66.7,0,0,1,1,.6931472,0,0,0,0,0,1,0,66.7,0,.6931472,1.600478,1
-17,6,25,1,1,630107,1,1093.702,59.66598,1,5,1,184.9344,266.094,16.57215,0,421.0749,888.6754,1,0,0,13,0,1,25.5,37.9,1,10.2,252,512.04,0,0,0,6.238403,0,3.258096,6.915723,0,0,1,10.2,6.998238,0,6.789732,1
-10,6,50,0,1,630109,1,1264.721,33.40726,1,10,1,12.62095,0,33.65587,0,0,46.27682,0,0,0,0,1,6,80.3,10.3,0,,795,0,0,0,1.791759,0,0,3.931826,7.37149,0,1,0,63.6,7.143397,1.791759,3.834641,1
-10,6,50,0,2,630109,1,1264.721,34.40726,1,10,1,43.8232,0,15.11145,0,368.7193,427.654,1,0,0,3,1,6,80.3,10.3,0,,795,0,0,0,1.791759,0,0,3.931826,7.37149,0,1,0,63.6,7.143397,1.791759,6.058314,1
-10,6,50,0,3,630109,1,1264.721,35.40726,1,10,1,52.83019,0,0,0,0,52.83019,0,0,0,2,0,7,80.3,10.3,0,,795,0,0,0,1.94591,0,0,3.931826,7.37149,0,1,0,63.6,7.143397,1.94591,3.967083,1
-10,6,50,0,1,630110,1,1264.721,12.02738,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,50,10.57626,1,51.9,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,1,0,51.9,7.143397,1.791759,,0
-10,6,50,0,2,630110,1,1264.721,13.02738,1,10,1,35.88969,0,24.5561,0,0,60.44579,0,0,0,3,1,6,50,10.57626,1,51.9,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,1,0,51.9,7.143397,1.791759,4.101747,1
-10,6,50,0,3,630110,1,1264.721,14.02738,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,50,10.57626,1,51.9,795,0,1,1,1.94591,0,0,3.931826,7.37149,0,1,0,51.9,7.143397,1.94591,,0
-10,6,50,0,1,630111,1,1264.721,13.65092,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,85,10.57626,1,77.8,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,1,0,77.8,7.143397,1.791759,,0
-10,6,50,0,2,630111,1,1264.721,14.65092,1,10,1,11.33358,0,24.5561,0,0,35.88969,0,0,0,0,1,6,85,10.57626,1,77.8,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,1,0,77.8,7.143397,1.791759,3.58045,1
-10,6,50,0,3,630111,1,1264.721,15.65092,1,10,1,2.744425,0,0,0,0,2.744425,0,0,0,0,1,7,85,10.57626,1,77.8,795,0,1,1,1.94591,0,0,3.931826,7.37149,0,1,0,77.8,7.143397,1.94591,1.009572,1
-10,6,50,0,1,630112,1,1264.721,9.549623,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,45.5,10.57626,1,51.9,795,0,1,0,1.791759,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.791759,,0
-10,6,50,0,2,630112,1,1264.721,10.54962,0,10,1,11.33358,0,24.5561,0,0,35.88969,0,0,0,0,1,6,45.5,10.57626,1,51.9,795,0,1,0,1.791759,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.791759,3.58045,1
-10,6,50,0,3,630112,1,1264.721,11.54962,0,10,1,3.430532,0,0,0,0,3.430532,0,0,0,1,0,7,45.5,10.57626,1,51.9,795,0,1,0,1.94591,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.94591,1.232715,1
-10,6,50,0,1,630113,1,1264.721,10.86653,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,54.5,10.57626,1,51.9,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.791759,,0
-10,6,50,0,2,630113,1,1264.721,11.86653,1,10,1,11.33358,0,24.5561,0,0,35.88969,0,0,0,0,1,6,54.5,10.57626,1,51.9,795,0,1,1,1.791759,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.791759,3.58045,1
-10,6,50,0,3,630113,1,1264.721,12.86653,1,10,1,0,0,0,0,0,0,0,0,0,0,0,7,54.5,10.57626,1,51.9,795,0,1,1,1.94591,0,0,3.931826,7.37149,0,0,0,51.9,7.143397,1.94591,,0
-10,6,50,0,1,630114,1,1264.721,32.61876,0,9,1,27.34539,0,0,0,0,27.34539,0,0,0,1,0,6,60.6,3.4,0,,795,0,0,0,1.791759,0,0,3.931826,7.37149,0,1,0,78.4,7.143397,1.791759,3.308548,1
-10,6,50,0,2,630114,1,1264.721,33.61876,0,9,1,120.8916,0,24.5561,0,0,145.4477,0,0,0,7,1,6,60.6,3.4,0,,795,0,0,0,1.791759,0,0,3.931826,7.37149,0,1,0,78.4,7.143397,1.791759,4.979816,1
-10,6,50,0,3,630114,1,1264.721,34.61876,0,9,1,50.42882,0,0,0,0,50.42882,0,0,0,2,0,7,60.6,3.4,0,,795,0,0,0,1.94591,0,0,3.931826,7.37149,0,1,0,78.4,7.143397,1.94591,3.920563,1
-11,6,0,0,1,630122,.5112414,1202.253,19.39767,1,10,1,17.24863,0,0,0,0,17.24863,0,0,0,0,0,2,77.40034,3.4,.1442925,,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,2.847733,1
-11,6,0,0,2,630122,.5112414,1202.253,20.39767,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,3.4,.1442925,,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,,0
-11,6,0,0,3,630122,.5112414,1202.253,21.39767,1,10,1,0,0,0,0,371.1835,371.1835,1,0,0,0,0,2,77.40034,3.4,.1442925,,0,0,0,0,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,5.916697,1
-11,6,0,0,1,630123,1,4382.488,14.52704,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,72.1,3.4,0,64.8,0,0,1,1,1.386294,0,0,0,0,0,0,0,64.8,8.3856,1.386294,,0
-11,6,0,0,2,630123,1,4382.488,15.52704,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,72.1,3.4,0,64.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,64.8,8.3856,1.098612,,0
-11,6,0,0,3,630123,1,4382.488,16.52704,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,72.1,3.4,0,64.8,0,0,1,1,1.098612,0,0,0,0,0,0,0,64.8,8.3856,1.098612,,0
-11,6,0,0,1,630124,1,4382.488,59.35661,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,53.2,10.3,0,60.2,0,0,0,0,1.386294,0,0,0,0,0,1,0,60.2,8.3856,1.386294,,0
-11,6,0,0,2,630124,1,4382.488,60.35661,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,53.2,10.3,0,60.2,0,0,0,0,1.098612,0,0,0,0,0,1,0,60.2,8.3856,1.098612,,0
-11,6,0,0,3,630124,1,4382.488,61.35661,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,53.2,10.3,0,60.2,0,0,0,0,1.098612,0,0,0,0,0,1,0,60.2,8.3856,1.098612,,0
-11,6,0,0,1,630125,1,4382.488,53.9603,0,8,.3643835,0,0,0,0,216.239,216.239,1,1,0,0,0,4,84.1,3.4,0,65.9,0,0,0,0,1.386294,0,0,0,0,0,1,0,65.9,8.3856,1.386294,5.376384,1
-11,6,0,1,1,630157,0,11458.65,24.18344,0,16,1,22.94264,45.12718,30.92269,0,223.4414,322.4339,1,0,0,2,1,2,68.6,10.3,0,67,0,60,0,0,.6931472,4.094345,0,0,0,0,0,0,67,9.346587,.6931472,5.775898,1
-11,6,0,1,2,630157,0,11458.65,25.18344,0,16,1,38.26648,55.16828,32.73398,0,0,126.1687,0,0,0,3,1,3,68.6,10.3,0,67,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,67,9.346587,1.098612,4.83762,1
-11,6,0,1,3,630157,0,11458.65,26.18344,0,16,1,67.28735,99.6022,0,0,331.3373,498.2268,1,0,0,4,0,3,68.6,10.3,0,67,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,67,9.346587,1.098612,6.211055,1
-11,6,0,1,4,630157,0,11458.65,27.18344,0,16,1,35.68717,22.6082,36.02885,0,0,94.32422,0,0,0,4,0,4,68.6,10.3,0,67,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,67,9.346587,1.386294,4.546738,1
-11,6,0,1,5,630157,0,11458.65,28.18344,0,16,1,131.1419,0,0,0,0,131.1419,0,0,0,1,14,4,68.6,10.3,0,67,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,67,9.346587,1.386294,4.87628,1
-11,6,0,1,1,630158,0,11458.65,22.78166,1,16,1,14.96259,31.11222,0,0,549.6259,595.7007,2,0,0,3,0,2,83,17.2,0,83,0,60,0,0,.6931472,4.094345,0,0,0,0,0,0,83,9.346587,.6931472,6.389739,1
-11,6,0,1,2,630158,0,11458.65,23.78166,1,16,1,27.20148,8.298756,0,0,0,35.50023,0,0,0,2,0,3,83,17.2,0,83,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,83,9.346587,1.098612,3.569539,1
-11,6,0,1,3,630158,0,11458.65,24.78166,1,16,1,20.31316,15.22218,0,0,439.6953,475.2307,1,0,0,2,0,3,83,17.2,0,83,0,60,0,0,1.098612,4.094345,0,0,0,0,0,0,83,9.346587,1.098612,6.1638,1
-11,6,0,1,4,630158,0,11458.65,25.78166,1,16,1,14.20273,8.458618,4.096431,0,0,26.75778,0,0,0,1,0,4,83,17.2,0,83,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,83,9.346587,1.386294,3.286825,1
-11,6,0,1,5,630158,0,11458.65,26.78166,1,16,1,346.6263,0,22.14533,0,0,368.7716,0,0,0,7,30,4,83,17.2,0,83,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,83,9.346587,1.386294,5.910178,1
-11,6,0,1,1,630159,1,15066.05,18.19849,0,9,1,10.57977,7.270419,0,0,0,17.85019,0,0,0,0,0,6,71.3,0,0,64.8,0,163.2,0,0,1.791759,5.094976,0,0,0,0,0,0,64.8,9.620266,1.791759,2.882014,1
-11,6,0,1,1,630160,1,15066.05,16.34223,1,18,1,0,0,0,0,0,0,0,0,0,0,0,6,76.1,3.4,0,77.3,0,163.2,1,1,1.791759,5.094976,0,0,0,0,0,0,77.3,9.620266,1.791759,,0
-11,6,0,1,2,630160,1,15066.05,17.34223,1,18,1,13.28778,0,30.37206,0,0,43.65983,0,0,0,1,0,5,76.1,3.4,0,77.3,0,163.2,1,1,1.609438,5.094976,0,0,0,0,0,0,77.3,9.620266,1.609438,3.776428,1
-11,6,0,1,3,630160,1,15066.05,18.34223,1,18,1,12.45675,0,0,0,0,12.45675,0,0,0,0,0,5,76.1,3.4,0,77.3,0,163.2,0,0,1.609438,5.094976,0,0,0,0,0,0,77.3,9.620266,1.609438,2.522262,1
-11,6,0,1,1,630161,1,15066.05,7.039014,0,18,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,0,163.2,1,0,1.791759,5.094976,0,0,0,0,0,0,88.9,9.620266,1.791759,,0
-11,6,0,1,2,630161,1,15066.05,8.039015,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,88.9,0,163.2,1,0,1.609438,5.094976,0,0,0,0,0,0,88.9,9.620266,1.609438,,0
-11,6,0,1,3,630161,1,15066.05,9.039015,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,88.9,0,163.2,1,0,1.609438,5.094976,0,0,0,0,0,0,88.9,9.620266,1.609438,,0
-11,6,0,1,1,630162,1,15066.05,12.24914,0,18,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,88.9,0,163.2,1,0,1.791759,5.094976,0,0,0,0,0,0,88.9,9.620266,1.791759,,0
-11,6,0,1,2,630162,1,15066.05,13.24914,0,18,1,7.593014,0,0,0,0,7.593014,0,0,0,1,0,5,88.3,10.57626,0,88.9,0,163.2,1,0,1.609438,5.094976,0,0,0,0,0,0,88.9,9.620266,1.609438,2.027229,1
-11,6,0,1,3,630162,1,15066.05,14.24914,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,88.3,10.57626,0,88.9,0,163.2,1,0,1.609438,5.094976,0,0,0,0,0,0,88.9,9.620266,1.609438,,0
-11,6,0,1,1,630163,1,15066.05,49.65914,0,18,1,23.2755,1.675836,0,0,0,24.95133,0,0,0,0,0,6,91.5,0,0,77.4,0,163.2,0,0,1.791759,5.094976,0,0,0,1,0,0,77.4,9.620266,1.791759,3.216927,1
-11,6,0,1,2,630163,1,15066.05,50.65914,0,18,1,15.18603,0,33.02961,0,0,48.21564,0,0,0,1,0,5,91.5,0,0,77.4,0,163.2,0,0,1.609438,5.094976,0,0,0,1,0,0,77.4,9.620266,1.609438,3.875684,1
-11,6,0,1,3,630163,1,15066.05,51.65914,0,18,1,0,0,0,0,0,0,0,0,0,0,0,5,91.5,0,0,77.4,0,163.2,0,0,1.609438,5.094976,0,0,0,1,0,0,77.4,9.620266,1.609438,,0
-11,6,0,1,1,630164,1,15066.05,47.17317,1,18,1,0,0,0,0,0,0,0,0,0,0,0,6,85.1,13.8,0,71.6,0,163.2,0,0,1.791759,5.094976,0,0,0,1,0,0,71.6,9.620266,1.791759,,0
-11,6,0,1,2,630164,1,15066.05,48.17317,1,18,1,31.13136,9.943052,44.03948,0,0,85.11389,0,0,0,1,1,5,85.1,13.8,0,71.6,0,163.2,0,0,1.609438,5.094976,0,0,0,1,0,0,71.6,9.620266,1.609438,4.44399,1
-11,6,0,1,3,630164,1,15066.05,49.17317,1,18,1,2.422145,0,0,0,0,2.422145,0,0,0,0,0,5,85.1,13.8,0,71.6,0,163.2,0,0,1.609438,5.094976,0,0,0,1,0,0,71.6,9.620266,1.609438,.8846537,1
-18,6,25,1,1,630178,0,12082.44,9.563313,0,14,1,0,2.056708,0,0,0,2.056708,0,0,0,0,0,4,93.3,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,.7211065,1
-18,6,25,1,2,630178,0,12082.44,10.56331,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,93.3,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,,0
-18,6,25,1,3,630178,0,12082.44,11.56331,0,14,1,20.41522,3.391003,25.13149,0,0,48.93772,0,0,0,2,0,4,93.3,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,3.890548,1
-18,6,25,1,1,630179,0,12082.44,36.3833,1,14,1,131.824,29.99154,0,0,0,161.8155,0,0,0,6,0,4,92,13.8,0,88.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.6,9.399591,1.386294,5.086457,1
-18,6,25,1,2,630179,0,12082.44,37.3833,1,14,1,22.77904,2.46773,0,0,0,25.24677,0,0,0,3,0,4,92,13.8,0,88.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.6,9.399591,1.386294,3.228698,1
-18,6,25,1,3,630179,0,12082.44,38.3833,1,14,1,9.342561,0,0,0,0,9.342561,0,0,0,1,0,4,92,13.8,0,88.6,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,88.6,9.399591,1.386294,2.23458,1
-18,6,25,1,1,630180,0,12082.44,12.09856,0,14,1,5.501481,0,0,0,0,5.501481,0,0,0,1,0,4,91.7,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,1.705017,1
-18,6,25,1,2,630180,0,12082.44,13.09856,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,,0
-18,6,25,1,3,630180,0,12082.44,14.09856,0,14,1,39.44637,0,0,0,0,39.44637,0,0,0,1,0,4,91.7,10.57626,0,96.3,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,96.3,9.399591,1.386294,3.674942,1
-18,6,25,1,1,630181,0,12082.44,42.05339,0,16,1,88.87008,8.569615,0,0,0,97.4397,0,0,0,5,0,4,81.4,6.9,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.399591,1.386294,4.579234,1
-18,6,25,1,2,630181,0,12082.44,43.05339,0,16,1,41.76158,0,0,0,0,41.76158,0,0,0,2,0,4,81.4,6.9,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.399591,1.386294,3.731977,1
-18,6,25,1,3,630181,0,12082.44,44.05339,0,16,1,21.79931,11.609,0,0,0,33.40831,0,0,0,3,0,4,81.4,6.9,0,76.1,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,76.1,9.399591,1.386294,3.508805,1
-11,6,0,1,1,630182,1,1049.667,59.97262,1,7,1,49.51333,41.15531,35.97122,0,0,126.6399,0,0,0,4,1,2,87.8,6.9,0,70.5,0,171.6,0,0,.6931472,5.145166,0,0,0,0,0,0,70.5,6.957181,.6931472,4.841347,1
-11,6,0,1,2,630182,1,1049.667,60.97262,1,7,1,7.593014,13.24981,0,0,0,20.84282,0,0,0,1,0,2,87.8,6.9,0,70.5,0,171.6,0,0,.6931472,5.145166,0,0,0,0,0,0,70.5,6.957181,.6931472,3.03701,1
-11,6,0,1,3,630182,1,1049.667,61.97262,1,7,1,66.78201,88.72665,32.0519,0,0,187.5605,0,0,0,7,0,2,87.8,6.9,0,70.5,0,171.6,0,0,.6931472,5.145166,0,0,0,0,0,0,70.5,6.957181,.6931472,5.234102,1
-13,6,0,1,1,630185,0,6735.316,61.46201,0,12,1,43.33193,0,0,0,0,43.33193,0,0,0,4,0,2,82.4,17.2,1,31.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,31.8,8.815269,.6931472,3.76889,1
-13,6,0,1,2,630185,0,6735.316,62.46201,0,12,1,23.04496,8.964866,0,0,0,32.00982,0,0,0,3,0,2,82.4,17.2,1,31.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,31.8,8.815269,.6931472,3.466043,1
-13,6,0,1,1,630186,0,6735.316,57.24025,1,11,1,13.04165,0,0,0,0,13.04165,0,0,0,2,0,2,80.3,24.1,1,46.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,46.6,8.815269,.6931472,2.568148,1
-13,6,0,1,2,630186,0,6735.316,58.24025,1,11,1,68.3793,18.44352,38.64375,0,717.416,842.8825,1,0,0,7,0,2,80.3,24.1,1,46.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,46.6,8.815269,.6931472,6.736827,1
-13,6,0,1,3,630186,0,6735.316,59.24025,1,11,1,130.3602,12.96741,0,0,0,143.3276,0,0,0,9,0,1,80.3,24.1,1,46.6,300,300,0,0,0,5.703783,1,4.564348,5.755076,1,0,0,46.6,8.815269,0,4.965133,1
-10,6,50,0,1,630189,1,3579.621,58.75702,0,3,1,0,0,0,0,0,0,0,0,0,0,0,2,69.9,3.4,1,57.1,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,57.1,8.183291,.6931472,,0
-10,6,50,0,2,630189,1,3579.621,59.75702,0,3,1,0,0,0,0,0,0,0,0,0,0,0,2,69.9,3.4,1,57.1,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,57.1,8.183291,.6931472,,0
-10,6,50,0,3,630189,1,3579.621,60.75702,0,3,1,0,0,0,0,0,0,0,0,0,0,0,2,69.9,3.4,1,57.1,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,57.1,8.183291,.6931472,,0
-10,6,50,1,1,630190,1,3579.621,48.68172,1,9,1,67.73244,12.7135,0,0,0,80.44594,0,0,0,3,0,2,89.9,20.7,1,56,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,56,8.183291,.6931472,4.387585,1
-10,6,50,1,2,630190,1,3579.621,49.68172,1,9,1,26.44503,4.280317,0,0,0,30.72535,0,0,0,2,0,2,89.9,20.7,1,56,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,56,8.183291,.6931472,3.425088,1
-10,6,50,1,3,630190,1,3579.621,50.68172,1,9,1,17.15266,24.01715,0,0,0,41.16981,0,0,0,2,0,2,89.9,20.7,1,56,1000,1000,0,0,.6931472,6.907755,0,3.931826,7.600903,0,0,1,56,8.183291,.6931472,3.717705,1
-11,6,0,0,1,630191,0,2842.806,48.14237,0,15,1,110.223,398.3719,34.85065,54.69079,755.5743,1299.02,2,0,6,12,0,1,48.9,20.7,0,48.9,0,155.48,0,0,0,5.046517,0,0,0,1,0,0,48.9,7.952899,0,7.169365,1
-11,6,0,0,2,630191,0,2842.806,49.14237,0,15,1,184.7374,562.2176,39.58066,5.666792,0,786.5357,0,0,1,21,0,1,48.9,20.7,0,48.9,0,155.48,0,0,0,5.046517,0,0,0,1,0,0,48.9,7.952899,0,6.667638,1
-11,6,0,0,3,630191,0,2842.806,50.14237,0,15,.8931507,131.3894,583.8319,41.79417,6.346484,330.7032,1087.719,1,0,1,16,0,1,48.9,20.7,0,48.9,0,155.48,0,0,0,5.046517,0,0,0,1,0,0,48.9,7.952899,0,6.991838,1
-15,6,95,0,1,630246,1,6735.316,14.98426,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,50.5,6.9,0,84.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,84.5,8.815269,1.386294,,0
-15,6,95,0,2,630246,1,6735.316,15.98426,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,50.5,6.9,0,84.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,84.5,8.815269,1.386294,,0
-15,6,95,0,3,630246,1,6735.316,16.98426,1,10,1,14.87889,0,0,0,0,14.87889,0,0,0,0,0,4,50.5,6.9,0,84.5,1000,1000,1,1,1.386294,6.907755,0,4.564348,6.959049,1,0,0,84.5,8.815269,1.386294,2.699944,1
-15,6,95,0,1,630247,1,6735.316,52.0794,1,10,1,9.310199,0,0,0,0,9.310199,0,0,0,1,0,4,68.5,27.6,0,40,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,40,8.815269,1.386294,2.23111,1
-15,6,95,0,2,630247,1,6735.316,53.0794,1,10,1,343.5839,0,0,0,0,343.5839,0,0,0,9,0,4,68.5,27.6,0,40,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,40,8.815269,1.386294,5.839431,1
-15,6,95,0,3,630247,1,6735.316,54.0794,1,10,1,6.920415,0,0,0,0,6.920415,0,0,0,1,0,4,68.5,27.6,0,40,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,40,8.815269,1.386294,1.934476,1
-15,6,95,0,1,630250,1,6735.316,14.95962,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92.6,6.9,0,90.9,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,90.9,8.815269,1.386294,,0
-15,6,95,0,2,630250,1,6735.316,15.95962,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92.6,6.9,0,90.9,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,90.9,8.815269,1.386294,,0
-15,6,95,0,3,630250,1,6735.316,16.95962,0,10,1,0,0,0,0,0,0,0,0,0,0,0,4,92.6,6.9,0,90.9,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,1,0,90.9,8.815269,1.386294,,0
-15,6,95,0,1,630251,1,6735.316,55.64682,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,70.68995,8.815269,1.386294,,0
-15,6,95,0,2,630251,1,6735.316,56.64682,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,70.68995,8.815269,1.386294,,0
-15,6,95,0,3,630251,1,6735.316,57.64682,0,5,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,1,70.68995,8.815269,1.386294,,0
-11,6,0,0,1,630259,0,10823.86,41.1718,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,80.9,3.4,0,75,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,75,9.2896,1.098612,,0
-11,6,0,0,2,630259,0,10823.86,42.1718,1,12,1,15.64886,0,0,0,0,15.64886,0,0,0,1,0,3,80.9,3.4,0,75,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,75,9.2896,1.098612,2.750398,1
-11,6,0,0,3,630259,0,10823.86,43.1718,1,12,1,26.48084,0,29.61672,0,0,56.09756,0,0,0,2,0,3,80.9,3.4,0,75,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,75,9.2896,1.098612,4.027092,1
-11,6,0,0,1,630260,0,10823.86,43.91239,0,18,1,22.11825,5.423224,0,0,0,27.54147,0,0,0,3,0,3,72.3,13.8,0,70.5,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,70.5,9.2896,1.098612,3.315693,1
-11,6,0,0,2,630260,0,10823.86,44.91239,0,18,1,55.72519,8.812977,0,0,1277.481,1342.019,1,0,0,3,0,3,72.3,13.8,0,70.5,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,70.5,9.2896,1.098612,7.201931,1
-11,6,0,0,3,630260,0,10823.86,45.91239,0,18,1,165.8537,3.254355,39.2439,0,219.1638,427.5157,1,0,0,8,0,3,72.3,13.8,0,70.5,0,229.65,0,0,1.098612,5.436556,0,0,0,1,0,0,70.5,9.2896,1.098612,6.057991,1
-11,6,0,0,1,630261,0,10823.86,9.138946,0,12,1,53.16887,0,0,0,0,53.16887,0,0,0,6,0,3,76.7,10.57626,0,70.4,0,229.65,1,0,1.098612,5.436556,0,0,0,1,0,0,70.4,9.2896,1.098612,3.973473,1
-11,6,0,0,2,630261,0,10823.86,10.13895,0,12,1,5.343512,0,0,0,0,5.343512,0,0,0,1,0,3,76.7,10.57626,0,70.4,0,229.65,1,0,1.098612,5.436556,0,0,0,1,0,0,70.4,9.2896,1.098612,1.675883,1
-11,6,0,0,3,630261,0,10823.86,11.13895,0,12,1,18.11847,0,0,0,0,18.11847,0,0,0,2,0,3,76.7,10.57626,0,70.4,0,229.65,1,0,1.098612,5.436556,0,0,0,1,0,0,70.4,9.2896,1.098612,2.896932,1
-7,6,25,1,1,630265,1,3338.966,18.20945,1,10.62774,1,155.6584,5.04838,0,0,0,160.7068,0,0,0,4,0,5,80.9,6.9,0,67,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,1,0,0,67,8.113716,1.609438,5.079581,1
-7,6,25,1,2,630265,1,3338.966,19.20945,1,10.62774,1,18.13374,22.57272,0,0,0,40.70646,0,0,0,2,0,5,80.9,6.9,0,67,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,1,0,0,67,8.113716,1.609438,3.706387,1
-7,6,25,1,3,630265,1,3338.966,20.20945,1,10.62774,1,20.92624,31.18353,0,0,197.2556,249.3654,1,1,0,1,0,5,80.9,6.9,0,67,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,1,0,0,67,8.113716,1.609438,5.518919,1
-7,6,25,1,1,630267,1,3338.966,56.71184,1,8,1,78.03954,93.50021,37.86285,0,0,209.4026,0,0,0,6,0,5,88.8,27.6,0,63.6,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,63.6,8.113716,1.609438,5.344259,1
-7,6,25,1,2,630267,1,3338.966,57.71184,1,8,1,44.20098,74.06498,0,0,0,118.266,0,0,0,5,0,5,88.8,27.6,0,63.6,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,63.6,8.113716,1.609438,4.772936,1
-7,6,25,1,3,630267,1,3338.966,58.71184,1,8,1,9.605489,6.020583,0,0,0,15.62607,0,0,0,1,0,5,88.8,27.6,0,63.6,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,63.6,8.113716,1.609438,2.748941,1
-7,6,25,1,1,630269,1,3338.966,16.16427,0,8,1,10.51746,2.587295,0,0,0,13.10475,0,0,0,2,0,5,68.1,3.4,0,60.2,720,720,1,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,60.2,8.113716,1.609438,2.572975,1
-7,6,25,1,2,630269,1,3338.966,17.16427,0,8,1,35.88969,4.608991,0,0,0,40.49868,0,0,0,1,0,5,68.1,3.4,0,60.2,720,720,1,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,60.2,8.113716,1.609438,3.701269,1
-7,6,25,1,3,630269,1,3338.966,18.16427,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5,68.1,3.4,0,60.2,720,720,0,0,1.609438,6.579251,0,3.258096,7.965546,0,1,0,60.2,8.113716,1.609438,,0
-10,6,50,1,1,630290,1,5414.076,11.45243,0,11,1,4.914005,9.58231,0,0,0,14.49631,0,0,0,1,0,5,85,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.596942,1.609438,2.673894,1
-10,6,50,1,2,630290,1,5414.076,12.45243,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.596942,1.609438,,0
-10,6,50,1,3,630290,1,5414.076,13.45243,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.596942,1.609438,,0
-10,6,50,1,4,630290,1,5414.076,14.45243,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.596942,1.609438,,0
-10,6,50,1,5,630290,1,5414.076,15.45243,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,85,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,74.1,8.596942,1.609438,,0
-10,6,50,1,1,630291,1,5414.076,41.6345,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,17.2,1,59.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,59.1,8.596942,1.609438,,0
-10,6,50,1,2,630291,1,5414.076,42.6345,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,17.2,1,59.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,59.1,8.596942,1.609438,,0
-10,6,50,1,3,630291,1,5414.076,43.6345,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,17.2,1,59.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,59.1,8.596942,1.609438,,0
-10,6,50,1,4,630291,1,5414.076,44.6345,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,17.2,1,59.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,59.1,8.596942,1.609438,,0
-10,6,50,1,5,630291,1,5414.076,45.6345,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.1,17.2,1,59.1,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,59.1,8.596942,1.609438,,0
-10,6,50,1,1,630293,1,5414.076,15.97262,0,11,1,12.28501,0,40.88452,0,0,53.16953,0,0,0,1,0,5,80.9,10.3,0,71.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,71.6,8.596942,1.609438,3.973485,1
-10,6,50,1,2,630293,1,5414.076,16.97262,0,11,1,8.659982,0,0,0,0,8.659982,0,0,0,1,0,5,80.9,10.3,0,71.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,71.6,8.596942,1.609438,2.158713,1
-10,6,50,1,3,630293,1,5414.076,17.97262,0,11,1,9.170487,0,0,0,0,9.170487,0,0,0,1,0,5,80.9,10.3,0,71.6,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,71.6,8.596942,1.609438,2.215991,1
-10,6,50,1,4,630293,1,5414.076,18.97262,0,11,1,0,0,29.64741,0,0,29.64741,0,0,0,0,0,5,80.9,10.3,0,71.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,71.6,8.596942,1.609438,3.389375,1
-10,6,50,1,5,630293,1,5414.076,19.97262,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,80.9,10.3,0,71.6,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,71.6,8.596942,1.609438,,0
-10,6,50,1,1,630294,1,5414.076,36.46817,1,11,1,39.31204,18.79607,0,0,0,58.10811,0,0,0,4,0,5,76.1,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,60.2,8.596942,1.609438,4.062305,1
-10,6,50,1,2,630294,1,5414.076,37.46817,1,11,1,41.93254,18.45943,0,0,0,60.39198,0,0,0,3,0,5,76.1,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,60.2,8.596942,1.609438,4.100856,1
-10,6,50,1,3,630294,1,5414.076,38.46817,1,11,1,23.34306,5.731555,0,0,0,29.07461,0,0,0,3,0,5,76.1,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,60.2,8.596942,1.609438,3.369865,1
-10,6,50,1,4,630294,1,5414.076,39.46817,1,11,1,109.9025,14.19355,0,0,0,124.096,0,0,0,4,0,5,76.1,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,60.2,8.596942,1.609438,4.821055,1
-10,6,50,1,5,630294,1,5414.076,40.46817,1,11,1,63.93776,11.14682,48.90054,0,0,123.9851,0,0,0,3,0,5,76.1,10.3,0,60.2,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,60.2,8.596942,1.609438,4.820161,1
-11,6,0,1,1,630300,1,1087.558,57.61259,1,6,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,1,75.5,17.2,0,81.8,0,381.28,0,0,0,5.943534,0,0,0,1,0,0,81.8,6.992609,0,2.358944,1
-11,6,0,1,2,630300,1,1087.558,58.61259,1,6,1,21.26044,5.08732,30.00759,0,0,56.35535,0,0,0,2,0,1,75.5,17.2,0,81.8,0,381.28,0,0,0,5.943534,0,0,0,1,0,0,81.8,6.992609,0,4.031677,1
-11,6,0,1,3,630300,1,1087.558,59.61259,1,6,1,0,0,0,0,0,0,0,0,0,0,0,1,75.5,17.2,0,81.8,0,381.28,0,0,0,5.943534,0,0,0,1,0,0,81.8,6.992609,0,,0
-11,6,0,1,1,630304,0,2888.889,59.80835,1,9,1,0,0,0,0,0,0,0,0,0,0,0,1,81.4,27.6,0,53.4,0,0,0,0,0,0,0,0,0,0,1,0,53.4,7.968973,0,,0
-11,6,0,1,2,630304,0,2888.889,60.80835,1,9,1,90.35687,46.55657,40.85801,0,0,177.7715,0,0,0,9,1,1,81.4,27.6,0,53.4,0,0,0,0,0,0,0,0,0,0,1,0,53.4,7.968973,0,5.180499,1
-11,6,0,1,3,630304,0,2888.889,61.80835,1,9,1,121.1073,98.86505,38.97232,0,0,258.9446,0,0,0,13,1,1,81.4,27.6,0,53.4,0,0,0,0,0,0,0,0,0,0,1,0,53.4,7.968973,0,5.556614,1
-14,6,95,1,1,630306,1,0,22.10814,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.1,3.4,0,73.9,225,174.25,0,0,1.386294,5.160491,0,4.564348,5.467394,0,1,0,73.9,0,1.386294,,0
-14,6,95,1,2,630306,1,0,23.10814,1,12,1,0,0,0,0,0,0,1,1,0,0,0,4,77.1,3.4,0,73.9,225,174.25,0,0,1.386294,5.160491,0,4.564348,5.467394,0,1,0,73.9,0,1.386294,,0
-14,6,95,1,1,630308,1,0,16.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91,3.4,0,86.4,225,174.25,1,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,86.4,0,1.386294,,0
-14,6,95,1,2,630308,1,0,17.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,91,3.4,0,86.4,225,174.25,1,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,86.4,0,1.386294,,0
-14,6,95,1,3,630308,1,0,18.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91,3.4,0,86.4,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,86.4,0,.6931472,,0
-14,6,95,1,4,630308,1,0,19.12047,0,12,1,7.876969,0,0,0,0,7.876969,0,0,0,1,0,2,91,3.4,0,86.4,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,86.4,0,.6931472,2.063943,1
-14,6,95,1,5,630308,1,0,20.12047,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,91,3.4,0,86.4,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,86.4,0,.6931472,,0
-14,6,95,1,1,630309,1,0,1.741273,0,12,1,78.62408,0,0,0,0,78.62408,0,0,0,0,0,4,77.40034,10.57626,0,85.2,225,174.25,1,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,85.2,0,1.386294,4.364678,1
-14,6,95,1,2,630309,1,0,2.741273,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,85.2,225,174.25,1,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,85.2,0,1.386294,,0
-14,6,95,1,1,630310,1,2784.458,20.04928,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.4,0,0,58,78.95,0,0,0,0,0,0,4.564348,4.420108,1,0,0,58,7.932168,0,,0
-14,6,95,1,2,630310,1,2784.458,21.04928,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.4,0,0,58,78.95,0,0,0,0,0,0,4.564348,4.420108,1,0,0,58,7.932168,0,,0
-14,6,95,1,3,630310,1,2784.458,22.04928,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.4,0,0,58,78.95,0,0,0,0,0,0,4.564348,4.420108,1,0,0,58,7.932168,0,,0
-14,6,95,1,4,630310,1,2784.458,23.04928,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.4,0,0,58,78.95,0,0,0,0,0,0,4.564348,4.420108,1,0,0,58,7.932168,0,,0
-14,6,95,1,5,630310,1,2784.458,24.04928,0,12,1,0,0,0,0,0,0,0,0,0,0,0,1,75.4,0,0,58,78.95,0,0,0,0,0,0,4.564348,4.420108,1,0,0,58,7.932168,0,,0
-11,6,0,1,1,630326,1,14588.33,48.26557,1,18,1,132.8819,48.66695,0,0,455.3534,636.9022,1,0,0,9,0,4,73.9,17.2,0,62.5,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,62.5,9.588045,1.386294,6.456616,1
-11,6,0,1,2,630326,1,14588.33,49.26557,1,18,1,132.4981,64.44571,37.96507,0,0,234.9089,0,0,0,6,0,4,73.9,17.2,0,62.5,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,62.5,9.588045,1.386294,5.459198,1
-11,6,0,1,3,630326,1,14588.33,50.26557,1,18,1,69.55017,67.80276,0,0,0,137.3529,0,0,0,3,0,4,73.9,17.2,0,62.5,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,62.5,9.588045,1.386294,4.922554,1
-11,6,0,1,1,630327,1,14588.33,9.111567,0,18,1,39.77994,7.617435,0,0,418.959,466.3563,1,0,0,5,0,4,83.3,10.57626,0,77.8,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,77.8,9.588045,1.386294,6.14495,1
-11,6,0,1,2,630327,1,14588.33,10.11157,0,18,1,48.21564,5.694761,0,0,0,53.9104,0,0,0,2,0,4,83.3,10.57626,0,77.8,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,77.8,9.588045,1.386294,3.987324,1
-11,6,0,1,3,630327,1,14588.33,11.11157,0,18,1,37.02422,7.024221,0,0,0,44.04844,0,0,0,2,0,4,83.3,10.57626,0,77.8,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,77.8,9.588045,1.386294,3.78529,1
-11,6,0,1,1,630328,1,14588.33,46.57084,0,19,1,126.9573,121.35,42.74228,0,0,291.0495,0,0,0,9,0,4,86.2,17.2,0,52.3,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,52.3,9.588045,1.386294,5.673493,1
-11,6,0,1,2,630328,1,14588.33,47.57084,0,19,1,50.1139,145.1025,24.6773,0,0,219.8937,0,0,0,2,0,4,86.2,17.2,0,52.3,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,52.3,9.588045,1.386294,5.393144,1
-11,6,0,1,3,630328,1,14588.33,48.57084,0,19,1,53.63322,146.5917,0,0,0,200.2249,0,0,0,2,0,4,86.2,17.2,0,52.3,0,316.4,0,0,1.386294,5.757007,0,0,0,1,0,0,52.3,9.588045,1.386294,5.299441,1
-11,6,0,1,1,630329,1,14588.33,13.7358,0,18,1,30.46974,8.463818,0,0,0,38.93356,0,0,0,2,0,4,81.7,10.57626,0,96.3,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,96.3,9.588045,1.386294,3.661857,1
-11,6,0,1,2,630329,1,14588.33,14.7358,0,18,1,42.52088,2.372817,0,0,0,44.8937,0,0,0,3,0,4,81.7,10.57626,0,96.3,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,96.3,9.588045,1.386294,3.804297,1
-11,6,0,1,3,630329,1,14588.33,15.7358,0,18,1,24.91349,2.508651,0,0,0,27.42215,0,0,0,2,0,4,81.7,10.57626,0,96.3,0,316.4,1,0,1.386294,5.757007,0,0,0,1,0,0,96.3,9.588045,1.386294,3.311351,1
-11,6,0,0,1,630381,0,9750.128,55.25257,0,9,1,20.84202,101.5006,0,0,0,122.3426,0,0,0,2,0,3,81.9,24.1,1,73.9,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,73.9,9.185139,1.098612,4.806826,1
-11,6,0,0,2,630381,0,9750.128,56.25257,0,9,1,213.4284,148.856,30.0075,0,0,392.2918,0,0,0,26,1,3,81.9,24.1,1,73.9,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,73.9,9.185139,1.098612,5.972006,1
-11,6,0,0,3,630381,0,9750.128,57.25257,0,9,1,115.0203,148.4269,31.46144,0,0,294.9087,0,0,0,11,0,3,81.9,24.1,1,73.9,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,73.9,9.185139,1.098612,5.686666,1
-11,6,0,0,1,630382,0,9750.128,14.55441,1,10,1,213.0054,36.56524,31.67987,0,0,281.2505,0,0,0,8,1,3,88.3,10.57626,0,88.9,0,237.48,1,1,1.098612,5.470083,0,0,0,1,0,0,88.9,9.185139,1.098612,5.639246,1
-11,6,0,0,2,630382,0,9750.128,15.55441,1,10,1,109.1523,45.09002,7.486872,0,0,161.7292,0,0,0,14,0,3,88.3,10.57626,0,88.9,0,237.48,1,1,1.098612,5.470083,0,0,0,1,0,0,88.9,9.185139,1.098612,5.085923,1
-11,6,0,0,3,630382,0,9750.128,16.55441,1,10,1,93.36942,42.07375,31.33627,142.0839,0,166.7794,0,0,7,5,0,3,88.3,10.57626,0,88.9,0,237.48,1,1,1.098612,5.470083,0,0,0,1,0,0,88.9,9.185139,1.098612,5.116672,1
-11,6,0,0,1,630383,0,9750.128,45.0486,1,10,1,322.6344,219.7707,44.18508,0,333.4723,920.0625,1,0,0,34,1,3,69.7,44.8,1,34.1,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,34.1,9.185139,1.098612,6.824441,1
-11,6,0,0,2,630383,0,9750.128,46.0486,1,10,1,421.2303,314.6324,0,0,794.4486,1530.311,1,0,0,48,0,3,69.7,44.8,1,34.1,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,34.1,9.185139,1.098612,7.333227,1
-11,6,0,0,3,630383,0,9750.128,47.0486,1,10,1,358.5927,432.8383,41.48512,40.5954,1383.288,2216.204,2,0,2,31,1,3,69.7,44.8,1,34.1,0,237.48,0,0,1.098612,5.470083,0,0,0,1,0,0,34.1,9.185139,1.098612,7.703551,1
-13,6,0,1,1,630408,1,6735.316,38.68857,1,6,1,0,3.597122,0,0,0,3.597122,0,0,0,0,0,3,84,3.4,0,64.8,450,0,0,0,1.098612,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,1.098612,1.280134,1
-13,6,0,1,2,630408,1,6735.316,39.68857,1,6,1,0,0,0,0,0,0,0,0,0,0,0,2,84,3.4,0,64.8,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,.6931472,,0
-13,6,0,1,3,630408,1,6735.316,40.68857,1,6,1,34.25605,0,35.51211,0,0,69.76817,0,0,0,0,1,2,84,3.4,0,64.8,450,0,0,0,.6931472,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,.6931472,4.245178,1
-13,6,0,1,1,630409,1,6735.316,16.8104,0,6,1,24.54507,11.24841,0,0,0,35.79348,0,0,0,0,0,3,89.9,0,0,65.9,450,0,1,0,1.098612,0,1,4.564348,6.160541,0,1,0,65.9,8.815269,1.098612,3.577766,1
-13,6,0,1,1,630410,1,6735.316,15.8987,1,6,1,0,1.163775,0,0,0,1.163775,0,0,0,0,0,3,62.8,3.4,0,64.8,450,0,1,1,1.098612,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,1.098612,.1516689,1
-13,6,0,1,2,630410,1,6735.316,16.8987,1,6,1,8.352316,6.833713,0,0,0,15.18603,0,0,0,0,0,2,62.8,3.4,0,64.8,450,0,1,1,.6931472,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,.6931472,2.720376,1
-13,6,0,1,3,630410,1,6735.316,17.8987,1,6,1,53.97924,0,0,0,456.4014,510.3806,1,0,0,4,0,2,62.8,3.4,0,64.8,450,0,1,1,.6931472,0,1,4.564348,6.160541,1,0,0,64.8,8.815269,.6931472,6.235157,1
-16,6,95,1,1,630457,0,2698.534,33.50856,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,3.4,0,80.7,600,0,0,0,0,0,0,4.564348,6.448223,0,0,0,80.7,7.900835,0,,0
-16,6,95,1,2,630457,0,2698.534,34.50856,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,3.4,0,80.7,600,0,0,0,0,0,0,4.564348,6.448223,0,0,0,80.7,7.900835,0,,0
-16,6,95,1,3,630457,0,2698.534,35.50856,1,12,1,0,0,0,0,0,0,0,0,0,0,0,1,88.3,3.4,0,80.7,600,0,0,0,0,0,0,4.564348,6.448223,0,0,0,80.7,7.900835,0,,0
-5,6,25,1,1,630460,1,9018.434,54.80904,1,4,1,10.57977,0,42.74228,0,0,53.32205,0,0,0,0,1,2,88.3,20.7,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.107137,.6931472,3.97635,1
-5,6,25,1,2,630460,1,9018.434,55.80904,1,4,1,9.870919,0,0,0,0,9.870919,0,0,0,1,0,2,88.3,20.7,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.107137,.6931472,2.289593,1
-5,6,25,1,3,630460,1,9018.434,56.80904,1,4,1,10.38062,0,34.9481,0,0,45.32872,0,0,0,0,1,2,88.3,20.7,0,71.6,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,71.6,9.107137,.6931472,3.813941,1
-5,6,25,1,1,630461,1,9018.434,58.4887,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,89.4,17.2,0,73.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.107137,.6931472,,0
-5,6,25,1,2,630461,1,9018.434,59.4887,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,89.4,17.2,0,73.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.107137,.6931472,,0
-5,6,25,1,3,630461,1,9018.434,60.4887,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,89.4,17.2,0,73.9,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,1,0,0,73.9,9.107137,.6931472,,0
-13,6,0,0,1,630476,0,9551.906,6.874743,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.1646,1.386294,,0
-13,6,0,0,2,630476,0,9551.906,7.874743,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.1646,1.386294,,0
-13,6,0,0,1,630478,0,9551.906,38.93497,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,78.2,10.3,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.1646,1.386294,,0
-13,6,0,0,2,630478,0,9551.906,39.93497,0,12,1,14.82331,0,0,0,0,14.82331,0,0,0,1,0,4,78.2,10.3,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.1646,1.386294,2.696201,1
-13,6,0,0,1,630479,0,9551.906,14.88843,0,12,1,21.06046,0,0,0,0,21.06046,0,0,0,2,0,4,70.2,3.4,0,70.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.1646,1.386294,3.047397,1
-13,6,0,0,2,630479,0,9551.906,15.88843,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,70.2,3.4,0,70.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.1646,1.386294,,0
-13,6,0,0,1,630480,0,9551.906,37.59343,1,12,1,70.3667,0,0,0,0,70.3667,0,0,0,5,0,4,45.2,27.6,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,71.6,9.1646,1.386294,4.25372,1
-13,6,0,0,2,630480,0,9551.906,38.59343,1,12,1,9.178522,0,0,0,0,9.178522,0,0,0,1,0,4,45.2,27.6,0,71.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,71.6,9.1646,1.386294,2.216866,1
-18,6,25,0,1,630534,0,12182.8,25.7577,1,16,1,38.76615,0,0,0,0,38.76615,0,0,0,1,0,2,78.2,24.1,0,65.9,194.38,194.38,0,0,.6931472,5.269815,0,3.258096,6.656109,0,0,0,65.9,9.407862,.6931472,3.657547,1
-18,6,25,0,2,630534,0,12182.8,26.7577,1,16,1,101.6504,0,7.501875,0,494.3736,603.5259,1,0,0,2,8,2,78.2,24.1,0,65.9,194.38,194.38,0,0,.6931472,5.269815,0,3.258096,6.656109,0,0,0,65.9,9.407862,.6931472,6.402789,1
-18,6,25,0,3,630534,0,12182.8,27.7577,1,16,1,32.81461,1.911367,0,0,0,34.72598,0,0,0,3,0,3,78.2,24.1,0,65.9,194.38,194.38,0,0,1.098612,5.269815,0,3.258096,6.656109,0,0,0,65.9,9.407862,1.098612,3.547488,1
-10,6,50,1,1,630546,1,4512.033,39.80835,1,12,1,0,0,0,23.7599,0,0,0,0,3,0,0,8,75.5,13.8,0,59.5,1000,1000,0,0,2.079442,6.907755,0,3.931826,7.600903,0,1,0,59.5,8.414724,2.079442,,0
-10,6,50,1,2,630546,1,4512.033,40.80835,1,12,1,81.77044,0,43.51088,0,0,125.2813,0,0,0,4,0,8,75.5,13.8,0,59.5,1000,1000,0,0,2.079442,6.907755,0,3.931826,7.600903,0,1,0,59.5,8.414724,2.079442,4.830562,1
-10,6,50,1,3,630546,1,4512.033,41.80835,1,12,1,42.28687,0,0,0,0,42.28687,0,0,0,4,0,7,75.5,13.8,0,59.5,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,0,1,0,59.5,8.414724,1.94591,3.744477,1
-10,6,50,1,1,630547,1,4512.033,15.4935,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,72.9,3.4,0,64.8,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,64.8,8.414724,2.079442,,0
-10,6,50,1,2,630547,1,4512.033,16.4935,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,72.9,3.4,0,64.8,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,64.8,8.414724,2.079442,,0
-10,6,50,1,3,630547,1,4512.033,17.4935,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,72.9,3.4,0,64.8,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,64.8,8.414724,1.94591,,0
-10,6,50,1,1,630548,1,4512.033,11.62491,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,78.3,10.57626,0,77.8,1000,1000,1,0,2.079442,6.907755,0,3.931826,7.600903,1,0,0,77.8,8.414724,2.079442,,0
-10,6,50,1,2,630548,1,4512.033,12.62491,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,78.3,10.57626,0,77.8,1000,1000,1,0,2.079442,6.907755,0,3.931826,7.600903,1,0,0,77.8,8.414724,2.079442,,0
-10,6,50,1,3,630548,1,4512.033,13.62491,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,78.3,10.57626,0,77.8,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,77.8,8.414724,1.94591,,0
-10,6,50,1,1,630549,1,4512.033,43.87954,0,6,1,48.35348,13.33472,0,0,0,61.6882,0,0,0,6,0,8,70.2,6.9,0,63.6,1000,1000,0,0,2.079442,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,2.079442,4.122093,1
-10,6,50,1,2,630549,1,4512.033,44.87954,0,6,1,16.87922,1.725431,45.68267,0,325.9565,390.2438,1,0,0,1,1,8,70.2,6.9,0,63.6,1000,1000,0,0,2.079442,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,2.079442,5.966772,1
-10,6,50,1,3,630549,1,4512.033,45.87954,0,6,1,14.54668,0,0,0,0,14.54668,0,0,0,2,0,7,70.2,6.9,0,63.6,1000,1000,0,0,1.94591,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,1.94591,2.677363,1
-10,6,50,1,1,630550,1,4512.033,13.44559,0,12,1,0,0,0,36.26511,0,0,0,0,5,0,0,8,56.7,10.57626,0,63,1000,1000,1,0,2.079442,6.907755,0,3.931826,7.600903,0,1,0,63,8.414724,2.079442,,0
-10,6,50,1,2,630550,1,4512.033,14.44559,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,56.7,10.57626,0,63,1000,1000,1,0,2.079442,6.907755,0,3.931826,7.600903,0,1,0,63,8.414724,2.079442,,0
-10,6,50,1,3,630550,1,4512.033,15.44559,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,56.7,10.57626,0,63,1000,1000,1,0,1.94591,6.907755,0,3.931826,7.600903,0,1,0,63,8.414724,1.94591,,0
-10,6,50,1,1,630551,1,4512.033,5.94935,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,91.7,10.57626,0,77.8,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,77.8,8.414724,2.079442,,0
-10,6,50,1,2,630551,1,4512.033,6.94935,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,91.7,10.57626,0,77.8,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,77.8,8.414724,2.079442,,0
-10,6,50,1,1,630552,1,4512.033,15.22245,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,76.1,3.4,0,63.6,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,2.079442,,0
-10,6,50,1,2,630552,1,4512.033,16.22245,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,76.1,3.4,0,63.6,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,2.079442,,0
-10,6,50,1,3,630552,1,4512.033,17.22245,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,76.1,3.4,0,63.6,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,1,0,0,63.6,8.414724,1.94591,,0
-5,6,25,1,1,630557,0,16710.19,12.7666,0,18,1,18.93143,0,0,0,0,18.93143,0,0,0,1,0,4,68.3,10.57626,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.723834,1.386294,2.940823,1
-5,6,25,1,2,630557,0,16710.19,13.7666,0,18,1,18.88931,0,0,0,0,18.88931,0,0,0,0,0,4,68.3,10.57626,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.723834,1.386294,2.938596,1
-5,6,25,1,3,630557,0,16710.19,14.7666,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,68.3,10.57626,0,92.6,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,92.6,9.723834,1.386294,,0
-5,6,25,1,1,630558,0,16710.19,7.835729,0,18,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,81.5,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.723834,1.386294,,0
-5,6,25,1,2,630558,0,16710.19,8.835729,0,18,1,86.13525,17.29505,0,0,0,103.4303,0,0,0,4,0,4,85,10.57626,0,81.5,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.723834,1.386294,4.638898,1
-5,6,25,1,3,630558,0,16710.19,9.835729,0,18,1,9.948542,21.85935,0,0,0,31.80789,0,0,0,1,0,4,85,10.57626,0,81.5,750,750,1,0,1.386294,6.620073,0,3.258096,8.006368,0,0,0,81.5,9.723834,1.386294,3.459714,1
-5,6,25,1,1,630559,0,16710.19,38.19028,0,10.62774,1,0,52.98696,30.29028,50.4838,0,83.27724,0,0,4,0,0,4,75.5,13.8,1,44.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,44.3,9.723834,1.386294,4.422175,1
-5,6,25,1,2,630559,0,16710.19,39.19028,0,10.62774,1,200.6045,99.10087,0,783.9063,632.7919,932.4972,3,0,43,8,1,4,75.5,13.8,1,44.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,44.3,9.723834,1.386294,6.837866,1
-5,6,25,1,3,630559,0,16710.19,40.19028,0,10.62774,1,134.9914,118.6827,128.6449,483.705,1566.758,1949.077,1,0,28,4,0,4,75.5,13.8,1,44.3,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,44.3,9.723834,1.386294,7.575111,1
-5,6,25,1,1,630560,0,16710.19,35.98631,1,18,1,196.4661,19.878,0,50.4838,0,216.3441,0,0,4,5,0,4,79.3,17.2,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.723834,1.386294,5.37687,1
-5,6,25,1,2,630560,0,16710.19,36.98631,1,18,1,30.60068,43.53608,0,273.895,0,74.13676,0,0,16,4,0,4,79.3,17.2,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.723834,1.386294,4.305912,1
-5,6,25,1,3,630560,0,16710.19,37.98631,1,18,1,33.61921,26.13036,0,353.3448,0,59.74957,0,0,20,4,0,4,79.3,17.2,0,85.2,750,750,0,0,1.386294,6.620073,0,3.258096,8.006368,1,0,0,85.2,9.723834,1.386294,4.090162,1
-13,6,0,1,1,630561,0,9228.152,28.81588,0,13,1,45.58969,20.31715,2.552032,0,0,68.45887,0,0,0,5,1,2,63.3,0,0,66.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,66.7,9.130122,.6931472,4.226233,1
-13,6,0,1,2,630561,0,9228.152,29.81588,0,13,1,16.06241,32.81322,0,0,0,48.87563,0,0,0,4,0,2,63.3,0,0,66.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,66.7,9.130122,.6931472,3.889279,1
-13,6,0,1,3,630561,0,9228.152,30.81588,0,13,1,25.2419,0,0,0,0,25.2419,0,0,0,1,0,2,63.3,0,0,66.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,66.7,9.130122,.6931472,3.228505,1
-13,6,0,1,4,630561,0,9228.152,31.81588,0,13,1,0,0,0,0,0,0,0,0,0,0,0,2,63.3,0,0,66.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,66.7,9.130122,.6931472,,0
-13,6,0,1,5,630561,0,9228.152,32.81588,0,13,1,17.15266,0,0,0,0,17.15266,0,0,0,1,0,3,63.3,0,0,66.7,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,66.7,9.130122,1.098612,2.842153,1
-13,6,0,1,1,630562,0,9228.152,20.55031,1,12,1,126.3627,40.12884,13.61249,0,513.8751,693.9792,1,0,0,10,1,2,86.2,3.4,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.130122,.6931472,6.542442,1
-13,6,0,1,2,630562,0,9228.152,21.55031,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,86.2,3.4,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.130122,.6931472,,0
-13,6,0,1,3,630562,0,9228.152,22.55031,1,12,1,8.413967,0,0,0,343.8578,352.2718,1,0,0,0,0,2,86.2,3.4,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.130122,.6931472,5.864403,1
-13,6,0,1,4,630562,0,9228.152,23.55031,1,12,1,17.37816,0,0,0,498.3,515.6781,1,0,0,1,0,2,86.2,3.4,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,75,9.130122,.6931472,6.245483,1
-13,6,0,1,5,630562,0,9228.152,24.55031,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,86.2,3.4,0,75,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,0,0,0,75,9.130122,1.098612,,0
-16,6,95,1,1,630563,0,8136.713,41.57153,0,6,1,63.77657,25.11046,0,0,0,88.88704,0,0,0,5,4,2,85.1,3.4,1,59.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.004265,.6931472,4.487366,1
-16,6,95,1,2,630563,0,8136.713,42.57153,0,6,1,48.012,1.950488,40.96024,0,0,90.92273,0,0,0,4,2,2,85.1,3.4,1,59.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.004265,.6931472,4.51001,1
-16,6,95,1,3,630563,0,8136.713,43.57153,0,6,1,621.4479,30.30447,23.68065,0,0,675.433,0,0,0,6,43,2,85.1,3.4,1,59.1,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,1,0,0,59.1,9.004265,.6931472,6.515354,1
-16,6,95,1,1,630564,0,8136.713,41.51677,1,12,1,176.3235,133.8683,0,0,0,310.1917,0,0,0,13,17,2,64.4,41.4,0,37.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,37.5,9.004265,.6931472,5.737191,1
-16,6,95,1,2,630564,0,8136.713,42.51677,1,12,1,209.3023,86.7967,0,0,1077.644,1373.743,1,0,0,11,19,2,64.4,41.4,0,37.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,37.5,9.004265,.6931472,7.225295,1
-16,6,95,1,3,630564,0,8136.713,43.51677,1,12,1,591.3397,82.13802,22.86874,0,0,696.3464,0,0,0,13,84,2,64.4,41.4,0,37.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,1,0,37.5,9.004265,.6931472,6.545847,1
-13,6,0,1,1,630569,0,11727.86,17.20739,0,12,1,67.39346,.6442022,0,0,0,68.03766,0,0,0,1,0,4,88.3,6.9,0,87.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,87.5,9.369807,1.386294,4.220061,1
-13,6,0,1,2,630569,0,11727.86,18.20739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,87.5,9.369807,1.386294,,0
-13,6,0,1,3,630569,0,11727.86,19.20739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,87.5,9.369807,1.386294,,0
-13,6,0,1,4,630569,0,11727.86,20.20739,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,6.9,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,87.5,9.369807,1.386294,,0
-13,6,0,1,5,630569,0,11727.86,21.20739,0,12,1,0,5.595197,0,0,0,5.595197,0,0,0,0,0,4,88.3,6.9,0,87.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,87.5,9.369807,1.386294,1.721909,1
-13,6,0,1,1,630570,0,11727.86,40.47365,0,13,1,44.59861,15.60951,0,0,499.0089,559.217,1,0,0,6,0,4,70.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.369807,1.386294,6.326538,1
-13,6,0,1,2,630570,0,11727.86,41.47365,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,70.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.369807,1.386294,,0
-13,6,0,1,3,630570,0,11727.86,42.47365,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,70.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.369807,1.386294,,0
-13,6,0,1,4,630570,0,11727.86,43.47365,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,70.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.369807,1.386294,,0
-13,6,0,1,5,630570,0,11727.86,44.47365,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,70.7,13.8,0,68.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.369807,1.386294,,0
-13,6,0,1,1,630571,0,11727.86,37.21561,1,12,1,52.03172,8.70664,43.11199,0,0,103.8503,0,0,0,3,1,4,68.1,20.7,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.369807,1.386294,4.642951,1
-13,6,0,1,2,630571,0,11727.86,38.21561,1,12,1,16.06241,1.262047,0,0,0,17.32446,0,0,0,1,0,4,68.1,20.7,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.369807,1.386294,2.852119,1
-13,6,0,1,3,630571,0,11727.86,39.21561,1,12,1,20.19352,3.786285,0,0,0,23.97981,0,0,0,2,0,4,68.1,20.7,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.369807,1.386294,3.177212,1
-13,6,0,1,4,630571,0,11727.86,40.21561,1,12,1,0,3.536079,0,0,0,3.536079,0,0,0,0,0,4,68.1,20.7,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.369807,1.386294,1.263018,1
-13,6,0,1,5,630571,0,11727.86,41.21561,1,12,1,25.72899,16.05832,33.49228,0,1405.146,1480.425,1,0,0,1,1,4,68.1,20.7,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.369807,1.386294,7.300085,1
-13,6,0,1,1,630572,0,11727.86,12.9473,1,12,1,113.4787,1.982161,30.72349,0,0,146.1843,0,0,0,2,1,4,81.7,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.369807,1.386294,4.984869,1
-13,6,0,1,2,630572,0,11727.86,13.9473,1,12,1,17.89812,0,13.76778,0,0,31.6659,0,0,0,0,0,4,81.7,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.369807,1.386294,3.45524,1
-13,6,0,1,3,630572,0,11727.86,14.9473,1,12,1,33.65587,8.624316,0,0,0,42.28019,0,0,0,1,0,4,81.7,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.369807,1.386294,3.744318,1
-13,6,0,1,4,630572,0,11727.86,15.9473,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.7,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.369807,1.386294,,0
-13,6,0,1,5,630572,0,11727.86,16.9473,1,12,1,10.2916,7.488851,35.20755,0,0,52.98799,0,0,0,0,1,4,81.7,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.369807,1.386294,3.970065,1
-11,6,0,1,1,630582,1,6682.028,35.72622,1,12,1,13.46235,2.103492,0,0,0,15.56584,0,0,0,2,0,6,86.7,13.8,1,72.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,72.7,8.807326,1.791759,2.745079,1
-11,6,0,1,2,630582,1,6682.028,36.72622,1,12,1,7.555724,0,28.71175,0,0,36.26747,0,0,0,0,1,6,86.7,13.8,1,72.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,72.7,8.807326,1.791759,3.590921,1
-11,6,0,1,3,630582,1,6682.028,37.72622,1,12,1,54.54546,24.42196,0,0,414.7513,493.7187,1,0,0,4,0,6,86.7,13.8,1,72.7,0,0,0,0,1.791759,0,0,0,0,0,0,0,72.7,8.807326,1.791759,6.201966,1
-11,6,0,1,1,630583,1,6682.028,15.23614,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,0,0,71.6,0,0,1,1,1.791759,0,0,0,0,1,0,0,71.6,8.807326,1.791759,,0
-11,6,0,1,2,630583,1,6682.028,16.23614,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,0,0,71.6,0,0,1,1,1.791759,0,0,0,0,1,0,0,71.6,8.807326,1.791759,,0
-11,6,0,1,3,630583,1,6682.028,17.23614,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,0,0,71.6,0,0,1,1,1.791759,0,0,0,0,1,0,0,71.6,8.807326,1.791759,,0
-11,6,0,1,1,630584,1,6682.028,14.1191,0,12,1,12.62095,3.155238,27.34539,0,0,43.12158,0,0,0,1,1,6,75,3.4,0,83,0,0,1,0,1.791759,0,0,0,0,1,0,0,83,8.807326,1.791759,3.764024,1
-11,6,0,1,2,630584,1,6682.028,15.1191,0,12,1,9.444654,0,0,0,0,9.444654,0,0,0,1,0,6,75,3.4,0,83,0,0,1,0,1.791759,0,0,0,0,1,0,0,83,8.807326,1.791759,2.245449,1
-11,6,0,1,3,630584,1,6682.028,16.1191,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75,3.4,0,83,0,0,1,0,1.791759,0,0,0,0,1,0,0,83,8.807326,1.791759,,0
-11,6,0,1,1,630585,1,6682.028,40.83231,0,7,1,79.86958,53.52966,0,0,826.2516,959.6508,2,0,0,7,0,6,83,6.9,0,64.8,0,0,0,0,1.791759,0,0,0,0,0,0,0,64.8,8.807326,1.791759,6.86657,1
-11,6,0,1,2,630585,1,6682.028,41.83231,0,7,1,108.8969,28.70041,0,0,0,137.5973,0,0,0,5,0,6,83,6.9,0,64.8,0,0,0,0,1.791759,0,0,0,0,0,0,0,64.8,8.807326,1.791759,4.924331,1
-11,6,0,1,3,630585,1,6682.028,42.83231,0,7,1,185.2487,50.6175,25.72899,0,407.5472,669.1424,1,0,0,10,1,6,83,6.9,0,64.8,0,0,0,0,1.791759,0,0,0,0,0,0,0,64.8,8.807326,1.791759,6.505997,1
-11,6,0,1,1,630586,1,6682.028,5.229295,0,12,1,5.04838,1.893143,0,0,0,6.941523,0,0,0,1,0,6,86.7,10.57626,0,88.9,0,0,1,0,1.791759,0,0,0,0,1,0,0,88.9,8.807326,1.791759,1.937521,1
-11,6,0,1,2,630586,1,6682.028,6.229295,0,12,1,73.29052,1.756706,0,0,0,75.04723,0,0,0,4,0,6,86.7,10.57626,0,88.9,0,0,1,0,1.791759,0,0,0,0,1,0,0,88.9,8.807326,1.791759,4.318118,1
-11,6,0,1,3,630586,1,6682.028,7.229295,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,86.7,10.57626,0,88.9,0,0,1,0,1.791759,0,0,0,0,1,0,0,88.9,8.807326,1.791759,,0
-11,6,0,1,1,630587,1,6682.028,16.84326,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,83,3.4,0,67,0,0,1,0,1.791759,0,0,0,0,1,0,0,67,8.807326,1.791759,,0
-11,6,0,1,2,630587,1,6682.028,17.84326,0,12,1,38.1564,0,0,0,0,38.1564,0,0,0,1,0,6,83,3.4,0,67,0,0,1,0,1.791759,0,0,0,0,1,0,0,67,8.807326,1.791759,3.641694,1
-11,6,0,1,3,630587,1,6682.028,18.84326,0,12,1,17.83876,0,0,0,0,17.83876,0,0,0,1,0,6,83,3.4,0,67,0,0,0,0,1.791759,0,0,0,0,1,0,0,67,8.807326,1.791759,2.881374,1
-11,6,0,1,1,630608,1,10933.14,42.40657,1,7,1,0,8.304668,0,0,0,8.304668,0,0,0,0,0,4,77.40034,10.3,.1442925,,0,424.32,0,0,1.386294,6.050488,0,0,0,0,1,0,70.68995,9.299645,1.386294,2.116818,1
-11,6,0,1,2,630608,1,10933.14,43.40657,1,7,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.3,.1442925,,0,424.32,0,0,1.791759,6.050488,0,0,0,0,1,0,70.68995,9.299645,1.791759,,0
-11,6,0,1,3,630608,1,10933.14,44.40657,1,7,1,10.42101,0,42.10088,0,0,52.52188,0,0,0,0,1,7,77.40034,10.3,.1442925,,0,424.32,0,0,1.94591,6.050488,0,0,0,0,1,0,70.68995,9.299645,1.94591,3.96123,1
-11,6,0,1,4,630608,1,10933.14,45.40657,1,7,1,78.3946,33.21455,0,0,0,111.6092,0,0,0,9,0,8,77.40034,10.3,.1442925,,0,424.32,0,0,2.079442,6.050488,0,0,0,0,1,0,70.68995,9.299645,2.079442,4.715003,1
-11,6,0,1,5,630608,1,10933.14,46.40657,1,7,1,29.43166,105.8999,0,0,0,135.3315,0,0,0,3,0,8,77.40034,10.3,.1442925,,0,424.32,0,0,2.079442,6.050488,0,0,0,0,1,0,70.68995,9.299645,2.079442,4.907728,1
-11,6,0,1,1,630609,1,10933.14,49.30322,0,3,1,18.67322,16.22604,0,0,0,34.89926,0,0,0,5,0,4,75,10.3,0,45.5,0,424.32,0,0,1.386294,6.050488,0,0,0,1,0,0,45.5,9.299645,1.386294,3.552466,1
-11,6,0,1,2,630609,1,10933.14,50.30322,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.3,0,45.5,0,424.32,0,0,1.791759,6.050488,0,0,0,1,0,0,45.5,9.299645,1.791759,,0
-11,6,0,1,3,630609,1,10933.14,51.30322,0,3,1,10.42101,0,46.26928,0,0,56.69029,0,0,0,0,1,7,75,10.3,0,45.5,0,424.32,0,0,1.94591,6.050488,0,0,0,1,0,0,45.5,9.299645,1.94591,4.037603,1
-11,6,0,1,4,630609,1,10933.14,52.30322,0,3,1,103.5259,97.81696,0,0,357.8394,559.1823,1,0,0,14,0,8,75,10.3,0,45.5,0,424.32,0,0,2.079442,6.050488,0,0,0,1,0,0,45.5,9.299645,2.079442,6.326476,1
-11,6,0,1,5,630609,1,10933.14,53.30322,0,3,1,54.1272,256.6035,41.48512,0,0,352.2158,0,0,0,7,1,8,75,10.3,0,45.5,0,424.32,0,0,2.079442,6.050488,0,0,0,1,0,0,45.5,9.299645,2.079442,5.864244,1
-11,6,0,0,1,630637,1,10120.33,32.93634,1,12,1,42.91123,15.52377,0,0,198.1489,256.5839,1,0,0,5,0,5,37.2,27.6,1,30.7,0,359.84,0,0,1.609438,5.88566,0,0,0,1,0,0,30.7,9.2224,1.609438,5.547456,1
-11,6,0,0,2,630637,1,10120.33,33.93634,1,12,1,0,6.139025,0,0,0,6.139025,0,0,0,0,0,5,37.2,27.6,1,30.7,0,359.84,0,0,1.609438,5.88566,0,0,0,1,0,0,30.7,9.2224,1.609438,1.814666,1
-11,6,0,0,3,630637,1,10120.33,34.93634,1,12,1,48.71355,13.5163,0,0,0,62.22985,0,0,0,2,0,5,37.2,27.6,1,30.7,0,359.84,0,0,1.609438,5.88566,0,0,0,1,0,0,30.7,9.2224,1.609438,4.130835,1
-11,6,0,0,1,630638,1,10120.33,9.429158,1,12,1,17.66933,0,0,0,0,17.66933,0,0,0,2,0,5,75,10.57626,0,77.8,0,359.84,1,1,1.609438,5.88566,0,0,0,0,0,0,77.8,9.2224,1.609438,2.87183,1
-11,6,0,0,2,630638,1,10120.33,10.42916,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,10.57626,0,77.8,0,359.84,1,1,1.609438,5.88566,0,0,0,0,0,0,77.8,9.2224,1.609438,,0
-11,6,0,0,3,630638,1,10120.33,11.42916,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75,10.57626,0,77.8,0,359.84,1,1,1.609438,5.88566,0,0,0,0,0,0,77.8,9.2224,1.609438,,0
-11,6,0,0,1,630639,1,10120.33,6.310746,0,12,1,33.23517,6.142196,0,0,0,39.37737,0,0,0,4,0,5,61.7,10.57626,0,77.8,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,77.8,9.2224,1.609438,3.673191,1
-11,6,0,0,2,630639,1,10120.33,7.310746,0,12,1,4.533434,5.761239,0,0,0,10.29467,0,0,0,1,0,5,61.7,10.57626,0,77.8,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,77.8,9.2224,1.609438,2.331627,1
-11,6,0,0,3,630639,1,10120.33,8.310746,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,61.7,10.57626,0,77.8,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,77.8,9.2224,1.609438,,0
-11,6,0,0,1,630640,1,10120.33,28.33949,0,12,1,32.39377,.9465713,0,0,0,33.34034,0,0,0,1,0,5,70.7,10.3,0,63.6,0,359.84,0,0,1.609438,5.88566,0,0,0,0,0,0,63.6,9.2224,1.609438,3.506768,1
-11,6,0,0,2,630640,1,10120.33,29.33949,0,12,1,9.066868,6.762372,0,0,0,15.82924,0,0,0,2,0,5,70.7,10.3,0,63.6,0,359.84,0,0,1.609438,5.88566,0,0,0,0,0,0,63.6,9.2224,1.609438,2.761859,1
-11,6,0,0,3,630640,1,10120.33,30.33949,0,12,1,41.40652,0,0,0,0,41.40652,0,0,0,3,0,5,70.7,10.3,0,63.6,0,359.84,0,0,1.609438,5.88566,0,0,0,0,0,0,63.6,9.2224,1.609438,3.723438,1
-11,6,0,0,1,630641,1,10120.33,11.98083,0,12,1,146.8237,0,0,0,580.5637,727.3875,1,0,0,5,0,5,81.7,10.57626,1,66.7,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,66.7,9.2224,1.609438,6.589459,1
-11,6,0,0,2,630641,1,10120.33,12.98083,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,1,66.7,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,66.7,9.2224,1.609438,,0
-11,6,0,0,3,630641,1,10120.33,13.98083,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.7,10.57626,1,66.7,0,359.84,1,0,1.609438,5.88566,0,0,0,1,0,0,66.7,9.2224,1.609438,,0
-11,6,0,0,1,630658,0,844.8541,36.46817,0,7,1,12.50521,0,31.26303,0,0,43.76824,0,0,0,0,1,3,67,13.8,0,45.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,45.5,6.740347,1.098612,3.778908,1
-11,6,0,0,2,630658,0,844.8541,37.46817,0,7,1,35.25882,12.13053,18.75469,0,0,66.14404,0,0,0,3,1,3,67,13.8,0,45.5,0,0,0,0,1.098612,0,0,0,0,1,0,0,45.5,6.740347,1.098612,4.191835,1
-11,6,0,1,1,630659,0,844.8541,36.49555,1,7,1,170.9045,341.8008,29.17883,245.9358,2110.671,2652.555,4,0,15,7,1,3,30,17.2,1,28.4,0,0,0,0,1.098612,0,0,0,0,0,0,1,28.4,6.740347,1.098612,7.883279,1
-11,6,0,1,2,630659,0,844.8541,37.49555,1,7,1,0,0,0,0,0,0,2,0,15,18,0,3,30,17.2,1,28.4,0,0,0,0,1.098612,0,0,0,0,0,0,1,28.4,6.740347,1.098612,,0
-13,6,0,0,1,630661,1,2479.775,58.19849,1,6,1,0,0,0,0,0,0,0,0,0,0,0,3,89.9,6.9,1,66.7,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,66.7,7.816326,1.098612,,0
-13,6,0,0,2,630661,1,2479.775,59.19849,1,6,1,0,0,35.88969,0,0,35.88969,0,0,0,0,0,4,89.9,6.9,1,66.7,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,66.7,7.816326,1.386294,3.58045,1
-13,6,0,0,3,630661,1,2479.775,60.19849,1,6,1,25.90051,0,27.44425,0,0,53.34477,0,0,0,1,1,4,89.9,6.9,1,66.7,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,66.7,7.816326,1.386294,3.976776,1
-13,6,0,0,1,630662,1,2479.775,17.45106,0,6,1,0,0,0,0,0,0,0,0,0,0,0,3,82.4,10.3,0,55.7,450,300,1,0,1.098612,5.703783,1,4.564348,6.160541,0,0,0,55.7,7.816326,1.098612,,0
-13,6,0,0,2,630662,1,2479.775,18.45106,0,6,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,10.3,0,55.7,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,55.7,7.816326,1.386294,,0
-13,6,0,0,3,630662,1,2479.775,19.45106,0,6,1,0,0,0,0,0,0,0,0,0,0,0,4,82.4,10.3,0,55.7,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,0,0,0,55.7,7.816326,1.386294,,0
-13,6,0,0,1,630663,1,2479.775,20.89254,1,12,1,21.03492,0,0,0,906.1843,927.2192,1,0,0,1,0,3,58.5,10.3,0,60.2,450,300,0,0,1.098612,5.703783,1,4.564348,6.160541,1,0,0,60.2,7.816326,1.098612,6.83219,1
-13,6,0,0,2,630663,1,2479.775,21.89254,1,12,1,16.24481,0,0,0,0,16.24481,0,0,0,0,0,4,58.5,10.3,0,60.2,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,1,0,0,60.2,7.816326,1.386294,2.787773,1
-13,6,0,0,3,630663,1,2479.775,22.89254,1,12,1,35.67753,0,0,0,1153.345,1189.022,1,0,0,0,0,4,58.5,10.3,0,60.2,450,300,0,0,1.386294,5.703783,1,4.564348,6.160541,1,0,0,60.2,7.816326,1.386294,7.080887,1
-11,6,0,1,1,630677,0,6267.742,30.36003,0,7,1,7.433102,10.53023,0,0,0,17.96333,0,0,0,1,0,3,70.7,6.9,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,2.888332,1
-11,6,0,1,2,630677,0,6267.742,31.36003,0,7,1,58.74254,2.753557,0,0,0,61.4961,0,0,0,3,0,3,70.7,6.9,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,4.118974,1
-11,6,0,1,3,630677,0,6267.742,32.36003,0,7,1,0,9.465714,0,0,0,9.465714,0,0,0,0,0,3,70.7,6.9,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,2.247676,1
-11,6,0,1,4,630677,0,6267.742,33.36003,0,7,1,15.48923,3.830752,0,0,0,19.31998,0,0,0,1,0,3,70.7,6.9,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,2.96114,1
-11,6,0,1,5,630677,0,6267.742,34.36003,0,7,1,0,1.351629,0,0,0,1.351629,0,0,0,0,0,3,70.7,6.9,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,.3013109,1
-11,6,0,1,1,630678,0,6267.742,12.24914,0,7,1,106.0456,0,0,0,0,106.0456,0,0,0,1,0,3,88.3,10.57626,0,63,0,816,1,0,1.098612,6.704414,0,0,0,1,0,0,63,8.743331,1.098612,4.663869,1
-11,6,0,1,2,630678,0,6267.742,13.24914,0,7,1,17.89812,4.589261,0,0,0,22.48738,0,0,0,0,0,3,88.3,10.57626,0,63,0,816,1,0,1.098612,6.704414,0,0,0,1,0,0,63,8.743331,1.098612,3.112954,1
-11,6,0,1,3,630678,0,6267.742,14.24914,0,7,1,25.2419,3.634834,0,0,0,28.87674,0,0,0,2,0,3,88.3,10.57626,0,63,0,816,1,0,1.098612,6.704414,0,0,0,1,0,0,63,8.743331,1.098612,3.363036,1
-11,6,0,1,4,630678,0,6267.742,15.24914,0,7,1,5.666792,1.62448,0,0,0,7.291273,0,0,0,1,0,3,88.3,10.57626,0,63,0,816,1,0,1.098612,6.704414,0,0,0,1,0,0,63,8.743331,1.098612,1.986678,1
-11,6,0,1,5,630678,0,6267.742,16.24914,0,7,1,12.00686,6.586621,0,0,410.6346,429.2281,1,0,0,1,0,3,88.3,10.57626,0,63,0,816,1,0,1.098612,6.704414,0,0,0,1,0,0,63,8.743331,1.098612,6.061988,1
-11,6,0,1,1,630679,0,6267.742,35.98631,1,7,1,169.9703,52.49257,24.77701,0,412.7849,660.0248,1,0,0,11,1,3,78.7,10.3,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,6.492277,1
-11,6,0,1,2,630679,0,6267.742,36.98631,1,7,1,48.18724,15.48876,0,0,948.1414,1011.817,2,0,0,5,1,3,78.7,10.3,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,6.919503,1
-11,6,0,1,3,630679,0,6267.742,37.98631,1,7,1,201.9352,8.203618,0,0,0,210.1388,0,0,0,1,25,3,78.7,10.3,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,5.347768,1
-11,6,0,1,4,630679,0,6267.742,38.98631,1,7,1,58.55686,12.91273,24.5561,0,0,96.02569,0,0,0,5,2,3,78.7,10.3,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,4.564616,1
-11,6,0,1,5,630679,0,6267.742,39.98631,1,7,1,156.4323,18.06861,0,0,0,174.5009,0,0,0,7,0,3,78.7,10.3,0,70.5,0,816,0,0,1.098612,6.704414,0,0,0,0,1,0,70.5,8.743331,1.098612,5.16193,1
-13,6,0,1,1,630685,0,8846.902,38.39562,0,12,1,138.4098,19.02819,0,0,676.483,833.9209,1,0,0,13,0,2,81.9,6.9,1,68.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,68.2,9.087935,.6931472,6.726139,1
-13,6,0,1,2,630685,0,8846.902,39.39562,0,12,1,26.44503,0,0,0,0,26.44503,0,0,0,3,0,2,81.9,6.9,1,68.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,68.2,9.087935,.6931472,3.275068,1
-13,6,0,1,3,630685,0,8846.902,40.39562,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,81.9,6.9,1,68.2,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,68.2,9.087935,.6931472,,0
-13,6,0,1,1,630686,0,8846.902,35.08282,1,12,1,165.3345,23.33193,0,21.03492,878.8389,1067.505,2,0,1,1,0,2,85.6,6.9,0,87.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,1,87.5,9.087935,.6931472,6.97308,1
-13,6,0,1,2,630686,0,8846.902,36.08282,1,12,1,129.5807,77.09483,0,134.1141,1522.478,1729.154,1,0,6,6,0,2,85.6,6.9,0,87.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,1,87.5,9.087935,.6931472,7.455388,1
-13,6,0,1,3,630686,0,8846.902,37.08282,1,12,1,92.2813,27.17324,0,149.2281,441.3379,560.7925,2,0,7,6,0,2,85.6,6.9,0,87.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,1,87.5,9.087935,.6931472,6.329351,1
-13,6,0,0,1,630694,1,6735.316,30.11636,0,11,1,10.51746,0,31.55238,0,0,42.06984,0,0,0,0,1,4,68.8,3.4,0,50,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,50,8.815269,1.386294,3.739331,1
-13,6,0,0,2,630694,1,6735.316,31.11636,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,68.8,3.4,0,50,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,50,8.815269,1.609438,,0
-13,6,0,0,3,630694,1,6735.316,32.11636,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,68.8,3.4,0,50,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,50,8.815269,1.609438,,0
-13,6,0,0,1,630695,1,6735.316,6.450377,0,10,1,35.75936,1.022297,27.34539,0,0,64.12705,0,0,0,1,1,4,93.3,10.57626,.1442925,74.1,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,8.815269,1.386294,4.160866,1
-13,6,0,0,2,630695,1,6735.316,7.450377,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,10.57626,.1442925,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,74.1,8.815269,1.609438,,0
-13,6,0,0,3,630695,1,6735.316,8.450377,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,93.3,10.57626,.1442925,74.1,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,74.1,8.815269,1.609438,,0
-13,6,0,0,1,630696,1,6735.316,24.06297,1,10,1,26.92469,9.301641,0,0,307.1098,343.3362,1,0,0,3,0,4,88.8,0,0,60.2,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.815269,1.386294,5.83871,1
-13,6,0,0,2,630696,1,6735.316,25.06297,1,10,1,10.20023,8.772195,0,0,0,18.97242,0,0,0,1,0,5,88.8,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.815269,1.609438,2.942986,1
-13,6,0,0,3,630696,1,6735.316,26.06297,1,10,1,17.15266,0,0,0,0,17.15266,0,0,0,2,0,5,88.8,0,0,60.2,450,450,0,0,1.609438,6.109248,1,4.564348,6.160541,1,0,0,60.2,8.815269,1.609438,2.842153,1
-17,6,25,0,1,630706,0,9352.791,32.07118,1,11,1,33.17737,0,0,0,0,33.17737,0,0,0,1,0,2,52.1,24.1,1,53.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,53.4,9.143537,.6931472,3.501868,1
-17,6,25,0,2,630706,0,9352.791,33.07118,1,11,1,30.91603,17.64886,0,0,0,48.56488,0,0,0,2,0,2,52.1,24.1,1,53.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,53.4,9.143537,.6931472,3.882901,1
-17,6,25,0,3,630706,0,9352.791,34.07118,1,11,1,302.7874,0,0,0,0,302.7874,0,0,0,2,27,2,52.1,24.1,1,53.4,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,1,0,53.4,9.143537,.6931472,5.713031,1
-17,6,25,0,1,630707,0,9352.791,31.59206,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,64.8,9.143537,.6931472,,0
-17,6,25,0,2,630707,0,9352.791,32.59206,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,73.9,0,0,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,64.8,9.143537,.6931472,,0
-17,6,25,0,3,630707,0,9352.791,33.59206,0,12,1,455.0523,12.223,0,0,0,467.2753,0,0,0,4,40,2,73.9,0,0,64.8,750,750,0,0,.6931472,6.620073,0,3.258096,8.006368,0,0,0,64.8,9.143537,.6931472,6.146918,1
-18,6,25,1,1,630728,1,6901.69,53.48391,0,12,1,17.66933,0,16.82793,0,200.2524,234.7497,1,1,0,1,1,1,89.9,6.9,0,88.6,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,88.6,8.839666,0,5.45852,1
-18,6,25,1,2,630728,1,6901.69,54.48391,0,12,1,17.37816,37.14394,0,0,0,54.5221,0,0,0,2,0,1,89.9,6.9,0,88.6,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,88.6,8.839666,0,3.998606,1
-18,6,25,1,3,630728,1,6901.69,55.48391,0,12,1,54.54546,36.60034,38.63808,0,0,129.7839,0,0,0,5,0,1,89.9,6.9,0,88.6,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,88.6,8.839666,0,4.86587,1
-11,6,0,1,1,630732,0,1177.675,33.21287,0,12,.7835616,96.48752,8.675412,0,0,0,105.1629,0,0,0,3,0,5,80.9,6.9,0,73.9,0,386.72,0,0,1.609438,5.957701,0,0,0,1,0,0,73.9,7.072146,1.609438,4.655511,1
-11,6,0,1,1,630733,0,1177.675,30.45859,1,12,1,16.08125,0,0,0,0,16.08125,0,0,0,1,0,5,79.3,6.9,0,92,0,386.72,0,0,1.609438,5.957701,0,0,0,1,0,0,92,7.072146,1.609438,2.777654,1
-11,6,0,1,2,630733,0,1177.675,31.45859,1,12,1,45.17844,4.707669,0,0,0,49.8861,0,0,0,1,0,4,79.3,6.9,0,92,0,386.72,0,0,1.386294,5.957701,0,0,0,1,0,0,92,7.072146,1.386294,3.909743,1
-11,6,0,1,3,630733,0,1177.675,32.45859,1,12,1,10.38062,0,0,0,0,10.38062,0,0,0,0,0,4,79.3,6.9,0,92,0,386.72,0,0,1.386294,5.957701,0,0,0,1,0,0,92,7.072146,1.386294,2.339941,1
-11,6,0,1,1,630734,0,1177.675,11.58385,1,12,1,28.77698,0,0,0,0,28.77698,0,0,0,3,0,5,81.7,10.57626,0,100,0,386.72,1,1,1.609438,5.957701,0,0,0,0,0,0,100,7.072146,1.609438,3.359576,1
-11,6,0,1,2,630734,0,1177.675,12.58385,1,12,1,22.01974,0,0,0,0,22.01974,0,0,0,1,0,4,81.7,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,3.091939,1
-11,6,0,1,3,630734,0,1177.675,13.58385,1,12,1,54.32526,0,0,0,0,54.32526,0,0,0,3,0,4,81.7,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,3.994989,1
-11,6,0,1,1,630735,0,1177.675,4.375085,1,12,1,14.81168,7.300042,0,0,0,22.11172,0,0,0,2,0,5,77.40034,10.57626,0,100,0,386.72,1,1,1.609438,5.957701,0,0,0,0,0,0,100,7.072146,1.609438,3.096108,1
-11,6,0,1,2,630735,0,1177.675,5.375085,1,12,1,26.1959,2.813212,0,0,0,29.00911,0,0,0,1,0,4,77.40034,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,3.36761,1
-11,6,0,1,3,630735,0,1177.675,6.375085,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,,0
-11,6,0,1,1,630736,0,1177.675,9.516769,1,12,1,16.08125,0,0,0,0,16.08125,0,0,0,3,0,5,80,10.57626,0,100,0,386.72,1,1,1.609438,5.957701,0,0,0,0,0,0,100,7.072146,1.609438,2.777654,1
-11,6,0,1,2,630736,0,1177.675,10.51677,1,12,1,11.38952,1.340167,0,0,0,12.72969,0,0,0,2,0,4,80,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,2.543937,1
-11,6,0,1,3,630736,0,1177.675,11.51677,1,12,1,37.37024,0,0,0,0,37.37024,0,0,0,1,0,4,80,10.57626,0,100,0,386.72,1,1,1.386294,5.957701,0,0,0,0,0,0,100,7.072146,1.386294,3.620875,1
-10,6,50,1,1,630746,1,10221.2,34.93224,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,67,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67,9.232317,1.098612,,0
-10,6,50,1,2,630746,1,10221.2,35.93224,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,67,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67,9.232317,1.098612,,0
-10,6,50,1,3,630746,1,10221.2,36.93224,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85.6,6.9,0,67,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,1,0,0,67,9.232317,1.098612,,0
-10,6,50,1,1,630747,1,10221.2,34.8857,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,3.4,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.232317,1.098612,,0
-10,6,50,1,2,630747,1,10221.2,35.8857,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,81.4,3.4,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.232317,1.098612,,0
-10,6,50,1,3,630747,1,10221.2,36.8857,0,12,1,0,0,0,0,229.2683,229.2683,1,0,0,0,0,3,81.4,3.4,0,73.9,1000,1000,0,0,1.098612,6.907755,0,3.931826,7.600903,0,0,0,73.9,9.232317,1.098612,5.434893,1
-13,6,0,1,1,630751,0,13844.34,11.90691,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,85,10.57626,0,92.6,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.535704,1.386294,,0
-13,6,0,1,2,630751,0,13844.34,12.90691,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,85,10.57626,0,92.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.535704,1.098612,,0
-13,6,0,1,3,630751,0,13844.34,13.90691,1,16,1,4.116638,0,0,0,0,4.116638,0,0,0,1,0,3,85,10.57626,0,92.6,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,92.6,9.535704,1.098612,1.415037,1
-13,6,0,1,1,630752,0,13844.34,41.6783,0,16,.5835617,114.43,56.47876,0,0,485.0652,655.9739,1,0,0,7,0,4,79.8,17.2,1,48.9,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,48.9,9.535704,1.386294,6.486121,1
-13,6,0,1,1,630753,0,13844.34,10.34086,0,16,1,8.413967,0,0,0,0,8.413967,0,0,0,1,0,4,83.3,10.57626,0,85.2,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.535704,1.386294,2.129893,1
-13,6,0,1,2,630753,0,13844.34,11.34086,0,16,1,0,0,0,0,0,0,0,0,0,0,0,3,83.3,10.57626,0,85.2,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.535704,1.098612,,0
-13,6,0,1,3,630753,0,13844.34,12.34086,0,16,1,9.948542,0,0,0,0,9.948542,0,0,0,1,0,3,83.3,10.57626,0,85.2,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,85.2,9.535704,1.098612,2.297426,1
-13,6,0,1,1,630754,0,13844.34,38.40383,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,88.3,0,0,77.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.535704,1.386294,,0
-13,6,0,1,2,630754,0,13844.34,39.40383,1,16,1,14.35588,0,0,0,0,14.35588,0,0,0,1,0,3,88.3,0,0,77.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.535704,1.098612,2.664159,1
-13,6,0,1,3,630754,0,13844.34,40.40383,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,88.3,0,0,77.3,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,77.3,9.535704,1.098612,,0
-13,6,0,0,1,630762,0,5402.97,16.70089,1,12,1,28.35379,0,0,0,0,28.35379,0,0,0,1,0,2,75,6.9,0,80.7,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,8.594889,.6931472,3.344761,1
-13,6,0,0,2,630762,0,5402.97,17.70089,1,12,1,12.90812,0,0,0,0,12.90812,0,0,0,2,0,2,75,6.9,0,80.7,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,8.594889,.6931472,2.557857,1
-13,6,0,0,3,630762,0,5402.97,18.70089,1,12,1,32.87197,28.20069,13.84083,0,0,74.9135,0,0,0,2,1,2,75,6.9,0,80.7,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,80.7,8.594889,.6931472,4.316334,1
-13,6,0,0,1,630764,0,5402.97,47.29364,1,12,1,31.73932,0,23.2755,0,0,55.01481,0,0,0,1,1,2,78.2,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,56.8,8.594889,.6931472,4.007603,1
-13,6,0,0,2,630764,0,5402.97,48.29364,1,12,1,54.29005,19.81017,0,0,0,74.10023,0,0,0,7,0,2,78.2,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,56.8,8.594889,.6931472,4.305418,1
-13,6,0,0,3,630764,0,5402.97,49.29364,1,12,1,40.13841,0,27.68166,0,0,67.82007,0,0,0,0,1,2,78.2,10.3,0,56.8,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,56.8,8.594889,.6931472,4.216858,1
-11,6,0,1,1,630785,0,14529.44,44.37235,0,12,1,108.3369,0,31.73932,0,0,140.0762,0,0,0,2,16,4,80.9,3.4,0,80.7,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,80.7,9.584002,1.386294,4.942186,1
-11,6,0,1,2,630785,0,14529.44,45.37235,0,12,1,186.7882,0,0,0,0,186.7882,0,0,0,2,14,4,80.9,3.4,0,80.7,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,80.7,9.584002,1.386294,5.229975,1
-11,6,0,1,3,630785,0,14529.44,46.37235,0,12,1,117.6471,0,62.15571,0,0,179.8028,0,0,0,1,12,4,80.9,3.4,0,80.7,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,80.7,9.584002,1.386294,5.191861,1
-14,6,95,0,1,630809,0,5339.478,20.58316,1,9,1,378.491,70.34598,35.84827,0,963.7349,1448.42,2,0,0,20,0,5,66.5,20.7,0,73.9,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,73.9,8.583071,1.609438,7.278229,1
-14,6,95,0,2,630809,0,5339.478,21.58316,1,9,1,266.3166,141.7367,0,0,361.5904,769.6437,1,0,0,24,0,5,66.5,20.7,0,73.9,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,73.9,8.583071,1.609438,6.645927,1
-14,6,95,0,3,630809,0,5339.478,22.58316,1,9,1,229.1949,78.97835,27.95332,226.6576,1512.821,1848.948,3,0,11,17,0,5,66.5,20.7,0,73.9,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,73.9,8.583071,1.609438,7.522372,1
-14,6,95,0,1,630810,0,5339.478,24.30116,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,3.4,0,75,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,75,8.583071,1.609438,,0
-14,6,95,0,2,630810,0,5339.478,25.30116,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,3.4,0,75,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,75,8.583071,1.609438,,0
-14,6,95,0,3,630810,0,5339.478,26.30116,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,81.4,3.4,0,75,308,660,0,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,75,8.583071,1.609438,,0
-14,6,95,0,1,630811,0,5339.478,2.863792,0,9,1,61.69237,12.1509,0,0,0,73.84327,0,0,0,9,0,5,77.40034,10.57626,0,48.1,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,48.1,8.583071,1.609438,4.301945,1
-14,6,95,0,2,630811,0,5339.478,3.863792,0,9,1,38.63466,10.62266,0,0,0,49.25731,0,0,0,4,0,5,77.40034,10.57626,0,48.1,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,48.1,8.583071,1.609438,3.897058,1
-14,6,95,0,3,630811,0,5339.478,4.863792,0,9,1,54.80379,20.6157,0,0,0,75.41949,0,0,0,5,0,5,77.40034,10.57626,0,48.1,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,1,0,0,48.1,8.583071,1.609438,4.323066,1
-11,6,0,1,1,630813,1,7290.834,22.97878,0,12,1,15.98654,0,31.97308,0,0,47.95961,0,0,0,1,1,3,62.2,10.3,1,56.8,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,56.8,8.89451,1.098612,3.870359,1
-11,6,0,1,2,630813,1,7290.834,23.97878,0,12,1,32.8674,4.756328,0,0,0,37.62373,0,0,0,2,0,3,62.2,10.3,1,56.8,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,56.8,8.89451,1.098612,3.627635,1
-11,6,0,1,3,630813,1,7290.834,24.97878,0,12,1,13.72213,11.73585,0,0,0,25.45798,0,0,0,2,0,3,62.2,10.3,1,56.8,0,240.48,0,0,1.098612,5.482637,0,0,0,1,0,0,56.8,8.89451,1.098612,3.237029,1
-17,6,25,1,1,630819,1,4638.709,5.853525,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,81.7,10.57626,1,55.6,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,55.6,8.442407,1.94591,,0
-17,6,25,1,2,630819,1,4638.709,6.853525,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,81.7,10.57626,1,55.6,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,55.6,8.442407,1.94591,,0
-17,6,25,1,3,630819,1,4638.709,7.853525,1,11,1,10.51746,0,31.55238,0,0,42.06984,0,0,0,0,1,7,81.7,10.57626,1,55.6,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,55.6,8.442407,1.94591,3.739331,1
-17,6,25,1,4,630819,1,4638.709,8.853525,1,11,1,11.33358,0,0,0,0,11.33358,0,0,0,0,1,7,81.7,10.57626,1,55.6,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,55.6,8.442407,1.94591,2.42777,1
-17,6,25,1,5,630819,1,4638.709,9.853525,1,11,1,159.8285,0,24.01372,0,0,183.8422,0,0,0,0,1,7,81.7,10.57626,1,55.6,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,55.6,8.442407,1.94591,5.214078,1
-17,6,25,1,1,630820,1,4638.709,11.67967,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,55,10.57626,0,70.4,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,70.4,8.442407,1.94591,,0
-17,6,25,1,2,630820,1,4638.709,12.67967,0,11,1,21.56953,0,25.24094,0,0,46.81046,0,0,0,0,1,7,55,10.57626,0,70.4,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,70.4,8.442407,1.94591,3.846107,1
-17,6,25,1,3,630820,1,4638.709,13.67967,0,11,1,18.93143,0,0,0,0,18.93143,0,0,0,0,0,7,55,10.57626,0,70.4,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,70.4,8.442407,1.94591,2.940823,1
-17,6,25,1,4,630820,1,4638.709,14.67967,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,55,10.57626,0,70.4,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,70.4,8.442407,1.94591,,0
-17,6,25,1,5,630820,1,4638.709,15.67967,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,55,10.57626,0,70.4,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,70.4,8.442407,1.94591,,0
-17,6,25,1,1,630821,1,4638.709,9.908282,1,11,1,9.910803,0,0,0,0,9.910803,0,0,0,0,0,7,90,10.57626,1,59.3,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,59.3,8.442407,1.94591,2.293625,1
-17,6,25,1,2,630821,1,4638.709,10.90828,1,11,1,11.47315,0,25.24094,0,0,36.71409,0,0,0,0,1,7,90,10.57626,1,59.3,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,59.3,8.442407,1.94591,3.603161,1
-17,6,25,1,3,630821,1,4638.709,11.90828,1,11,1,29.44888,0,0,0,0,29.44888,0,0,0,0,0,7,90,10.57626,1,59.3,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,59.3,8.442407,1.94591,3.382656,1
-17,6,25,1,4,630821,1,4638.709,12.90828,1,11,1,18.32263,0,0,0,0,18.32263,0,0,0,0,0,7,90,10.57626,1,59.3,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,59.3,8.442407,1.94591,2.908137,1
-17,6,25,1,5,630821,1,4638.709,13.90828,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,90,10.57626,1,59.3,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,1,0,59.3,8.442407,1.94591,,0
-17,6,25,1,1,630822,1,4638.709,27.36756,1,11,1,99.60357,24.46977,0,0,0,124.0733,0,0,0,2,0,7,77.7,10.3,0,42,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,0,0,1,42,8.442407,1.94591,4.820873,1
-17,6,25,1,2,630822,1,4638.709,28.36756,1,11,1,34.87838,0,44.05691,0,0,78.9353,0,0,0,0,1,7,77.7,10.3,0,42,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,0,0,1,42,8.442407,1.94591,4.368629,1
-17,6,25,1,3,630822,1,4638.709,29.36756,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.7,10.3,0,42,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,0,0,1,42,8.442407,1.94591,,0
-17,6,25,1,4,630822,1,4638.709,30.36756,1,11,1,11.33358,0,38.1564,0,0,49.48999,0,0,0,0,1,7,77.7,10.3,0,42,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,0,0,1,42,8.442407,1.94591,3.90177,1
-17,6,25,1,5,630822,1,4638.709,31.36756,1,11,1,16.1235,0,0,0,0,16.1235,0,0,0,0,0,7,77.7,10.3,0,42,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,0,0,1,42,8.442407,1.94591,2.780278,1
-17,6,25,1,1,630823,1,4638.709,29.63176,0,12,1,28.74133,7.680872,0,0,0,36.4222,0,0,0,5,0,7,58,20.7,0,44.3,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,44.3,8.442407,1.94591,3.595178,1
-17,6,25,1,2,630823,1,4638.709,30.63176,0,12,1,4.589261,4.396512,0,0,0,8.985773,0,0,0,1,0,7,58,20.7,0,44.3,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,44.3,8.442407,1.94591,2.195642,1
-17,6,25,1,3,630823,1,4638.709,31.63176,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,58,20.7,0,44.3,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,44.3,8.442407,1.94591,,0
-17,6,25,1,4,630823,1,4638.709,32.63176,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,58,20.7,0,44.3,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,44.3,8.442407,1.94591,,0
-17,6,25,1,5,630823,1,4638.709,33.63176,0,12,1,32.93311,0,0,0,0,32.93311,0,0,0,1,0,7,58,20.7,0,44.3,426.45,426.45,0,0,1.94591,6.055495,0,3.258096,7.44179,1,0,0,44.3,8.442407,1.94591,3.494478,1
-17,6,25,1,1,630824,1,4638.709,1.984942,1,11,1,18.33499,2.725471,0,0,0,21.06046,0,0,0,0,0,7,77.40034,10.57626,1,81.5,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,0,0,81.5,8.442407,1.94591,3.047397,1
-17,6,25,1,2,630824,1,4638.709,2.984942,1,11,1,9.178522,0,0,0,0,9.178522,0,0,0,0,0,7,77.40034,10.57626,1,81.5,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,0,0,81.5,8.442407,1.94591,2.216866,1
-17,6,25,1,3,630824,1,4638.709,3.984942,1,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,1,81.5,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,0,0,81.5,8.442407,1.94591,,0
-17,6,25,1,4,630824,1,4638.709,4.984942,1,11,1,10.20023,0,0,0,0,10.20023,0,0,0,0,0,7,77.40034,10.57626,1,81.5,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,0,0,81.5,8.442407,1.94591,2.32241,1
-17,6,25,1,5,630824,1,4638.709,5.984942,1,11,1,12.00686,0,0,0,0,12.00686,0,0,0,0,1,7,77.40034,10.57626,1,81.5,426.45,426.45,1,1,1.94591,6.055495,0,3.258096,7.44179,0,0,0,81.5,8.442407,1.94591,2.485478,1
-18,6,25,0,1,630837,.5112414,2469.534,22.52977,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,61.7,0,0,56.8,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,56.8,7.81219,.6931472,,0
-18,6,25,0,2,630837,.5112414,2469.534,23.52977,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,61.7,0,0,56.8,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,56.8,7.81219,.6931472,,0
-18,6,25,0,3,630837,.5112414,2469.534,24.52977,0,12,1,16.46655,0,0,0,0,16.46655,0,0,0,0,0,2,61.7,0,0,56.8,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,56.8,7.81219,.6931472,2.801331,1
-18,6,25,0,1,630838,1,6735.316,13.33881,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.57626,.1442925,66.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,66.7,8.815269,1.791759,,0
-18,6,25,0,2,630838,1,6735.316,14.33881,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.57626,.1442925,66.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,66.7,8.815269,1.791759,,0
-18,6,25,0,3,630838,1,6735.316,15.33881,1,10,1,10.2916,0,0,0,0,10.2916,0,0,0,0,1,6,75,10.57626,.1442925,66.7,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,66.7,8.815269,1.791759,2.331328,1
-18,6,25,0,1,630839,1,6735.316,47.15948,1,10,1,6.731174,2.027766,0,0,0,8.75894,0,0,0,1,0,6,80.9,3.4,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,83,8.815269,1.791759,2.170075,1
-18,6,25,0,2,630839,1,6735.316,48.15948,1,10,1,17.75595,0,0,0,2425.765,2443.521,3,0,0,2,0,6,80.9,3.4,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,83,8.815269,1.791759,7.801195,1
-18,6,25,0,3,630839,1,6735.316,49.15948,1,10,1,24.01372,0,43.2247,0,0,67.23842,0,0,0,2,1,6,80.9,3.4,0,83,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,1,0,0,83,8.815269,1.791759,4.208245,1
-18,6,25,0,1,630840,1,6735.316,9.371663,0,10,1,37.44215,0,0,0,0,37.44215,0,0,0,1,0,6,93.3,10.57626,.1442925,100,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,3.622797,1
-18,6,25,0,2,630840,1,6735.316,10.37166,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,10.57626,.1442925,100,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,,0
-18,6,25,0,3,630840,1,6735.316,11.37166,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,10.57626,.1442925,100,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,,0
-18,6,25,0,1,630841,1,6735.316,21.73032,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,24.1,1,47.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,47.7,8.815269,1.791759,,0
-18,6,25,0,2,630841,1,6735.316,22.73032,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,24.1,1,47.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,47.7,8.815269,1.791759,,0
-18,6,25,0,3,630841,1,6735.316,23.73032,0,11,1,20.24014,0,0,0,0,20.24014,0,0,0,0,0,6,70.7,24.1,1,47.7,750,750,0,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,47.7,8.815269,1.791759,3.007668,1
-18,6,25,0,1,630843,1,6735.316,14.42026,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,6.9,0,77.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.3,8.815269,1.791759,,0
-18,6,25,0,2,630843,1,6735.316,15.42026,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,6.9,0,77.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.3,8.815269,1.791759,,0
-18,6,25,0,3,630843,1,6735.316,16.42026,0,10,1,0,0,0,0,0,0,0,0,0,0,0,6,80.3,6.9,0,77.3,750,750,1,0,1.791759,6.620073,0,3.258096,8.006368,0,0,0,77.3,8.815269,1.791759,,0
-11,6,0,1,1,630895,0,10931.39,37.17454,0,16,1,56.28439,12.46297,29.62336,0,0,98.37071,0,0,0,4,1,4,92.6,6.9,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.299485,1.386294,4.588743,1
-11,6,0,1,2,630895,0,10931.39,38.17454,0,16,1,45.55809,20.99089,0,0,0,66.54897,0,0,0,2,2,4,92.6,6.9,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.299485,1.386294,4.197938,1
-11,6,0,1,3,630895,0,10931.39,39.17454,0,16,1,173.3564,34.23529,35.51211,0,0,243.1038,0,0,0,6,1,4,92.6,6.9,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,9.299485,1.386294,5.493488,1
-11,6,0,1,1,630896,0,10931.39,7.110198,0,14,1,86.33093,21.47694,0,0,0,107.8079,0,0,0,8,0,4,85,10.57626,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.299485,1.386294,4.680351,1
-11,6,0,1,2,630896,0,10931.39,8.110198,0,14,1,29.99241,19.59757,0,0,0,49.58998,0,0,0,3,1,4,85,10.57626,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.299485,1.386294,3.903789,1
-11,6,0,1,3,630896,0,10931.39,9.110198,0,14,1,185.4671,66.87543,24.22145,0,0,276.564,0,0,0,3,1,4,85,10.57626,0,74.1,0,0,1,0,1.386294,0,0,0,0,0,0,0,74.1,9.299485,1.386294,5.622442,1
-11,6,0,1,1,630897,0,10931.39,33.80698,1,14,1,24.54507,62.73804,0,0,0,87.28311,0,0,0,3,0,4,84,10.3,0,61.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,61.4,9.299485,1.386294,4.469157,1
-11,6,0,1,2,630897,0,10931.39,34.80698,1,14,1,82.00455,107.388,34.16856,0,0,223.5611,0,0,0,5,1,4,84,10.3,0,61.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,61.4,9.299485,1.386294,5.409685,1
-11,6,0,1,3,630897,0,10931.39,35.80698,1,14,1,252.2491,191.4118,0,0,0,443.6609,0,0,0,11,0,4,84,10.3,0,61.4,0,0,0,0,1.386294,0,0,0,0,0,0,0,61.4,9.299485,1.386294,6.09506,1
-11,6,0,1,1,630898,0,10931.39,8.758385,0,14,1,44.43504,14.81168,0,0,0,59.24672,0,0,0,5,0,4,86.7,10.57626,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.299485,1.386294,4.08171,1
-11,6,0,1,2,630898,0,10931.39,9.758385,0,14,1,73.65224,16.40471,28.4738,0,0,118.5308,0,0,0,10,1,4,86.7,10.57626,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.299485,1.386294,4.775172,1
-11,6,0,1,3,630898,0,10931.39,10.75838,0,14,1,132.1799,8.387544,13.84083,0,0,154.4083,0,0,0,5,0,4,86.7,10.57626,0,81.5,0,0,1,0,1.386294,0,0,0,0,0,0,0,81.5,9.299485,1.386294,5.0396,1
-11,6,0,1,1,630899,1,4096.262,14.51608,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,3.4,0,76.1,0,0,1,0,1.609438,0,0,0,0,0,1,0,76.1,8.318074,1.609438,,0
-11,6,0,1,2,630899,1,4096.262,15.51608,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,3.4,0,76.1,0,0,1,0,1.609438,0,0,0,0,0,1,0,76.1,8.318074,1.609438,,0
-11,6,0,1,3,630899,1,4096.262,16.51608,0,11,1,26.41509,3.138937,0,0,0,29.55403,0,0,0,2,0,5,73.4,3.4,0,76.1,0,0,1,0,1.609438,0,0,0,0,0,1,0,76.1,8.318074,1.609438,3.38622,1
-11,6,0,1,1,630900,1,4096.262,34.53251,0,7,1,40.80774,0,0,0,0,40.80774,0,0,0,1,0,5,88.8,3.4,0,69,0,0,0,0,1.609438,0,0,0,0,1,0,0,69,8.318074,1.609438,3.708872,1
-11,6,0,1,2,630900,1,4096.262,35.53251,0,7,1,77.44617,10.16245,0,0,0,87.60861,0,0,0,3,0,5,88.8,3.4,0,69,0,0,0,0,1.609438,0,0,0,0,1,0,0,69,8.318074,1.609438,4.472879,1
-11,6,0,1,3,630900,1,4096.262,36.53251,0,7,1,26.41509,0,0,0,0,26.41509,0,0,0,2,0,5,88.8,3.4,0,69,0,0,0,0,1.609438,0,0,0,0,1,0,0,69,8.318074,1.609438,3.273936,1
-11,6,0,1,1,630901,1,4096.262,6.20397,1,11,1,18.51073,1.682793,0,0,0,20.19352,0,0,0,1,0,5,83.3,10.57626,0,59.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,59.3,8.318074,1.609438,3.005362,1
-11,6,0,1,2,630901,1,4096.262,7.20397,1,11,1,79.71288,0,0,0,0,79.71288,0,0,0,4,0,5,83.3,10.57626,0,59.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,59.3,8.318074,1.609438,4.378431,1
-11,6,0,1,3,630901,1,4096.262,8.20397,1,11,1,13.72213,0,0,0,0,13.72213,0,0,0,1,0,5,83.3,10.57626,0,59.3,0,0,1,1,1.609438,0,0,0,0,0,0,0,59.3,8.318074,1.609438,2.61901,1
-11,6,0,1,1,630902,1,4096.262,7.578371,1,11,1,17.66933,0,0,0,0,17.66933,0,0,0,3,0,5,100,10.57626,0,77.8,0,0,1,1,1.609438,0,0,0,0,1,0,0,77.8,8.318074,1.609438,2.87183,1
-11,6,0,1,2,630902,1,4096.262,8.578371,1,11,1,88.40196,10.10578,0,0,0,98.50774,0,0,0,3,0,5,100,10.57626,0,77.8,0,0,1,1,1.609438,0,0,0,0,1,0,0,77.8,8.318074,1.609438,4.590135,1
-11,6,0,1,3,630902,1,4096.262,9.578371,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,100,10.57626,0,77.8,0,0,1,1,1.609438,0,0,0,0,1,0,0,77.8,8.318074,1.609438,,0
-11,6,0,1,1,630903,1,4096.262,32.79124,1,11,1,26.92469,0,0,0,0,26.92469,0,0,0,3,0,5,84,10.3,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,62.5,8.318074,1.609438,3.293044,1
-11,6,0,1,2,630903,1,4096.262,33.79124,1,11,1,59.31243,31.0918,0,0,0,90.40423,0,0,0,7,0,5,84,10.3,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,62.5,8.318074,1.609438,4.504291,1
-11,6,0,1,3,630903,1,4096.262,34.79124,1,11,1,59.3482,39.03945,0,0,0,98.38765,0,0,0,4,0,5,84,10.3,0,62.5,0,0,0,0,1.609438,0,0,0,0,0,1,0,62.5,8.318074,1.609438,4.588915,1
-13,6,0,1,1,630909,1,6517.302,16.28747,1,17,1,9.82801,0,0,0,0,9.82801,0,0,0,0,0,2,83.5,3.4,0,85.2,300,454.42,1,1,.6931472,6.119022,1,4.564348,5.755076,0,0,0,85.2,8.78237,.6931472,2.285236,1
-13,6,0,1,2,630909,1,6517.302,17.28747,1,17,1,11.39471,0,0,0,0,11.39471,0,0,0,1,0,2,83.5,3.4,0,85.2,300,454.42,1,1,.6931472,6.119022,1,4.564348,5.755076,0,0,0,85.2,8.78237,.6931472,2.433149,1
-13,6,0,1,3,630909,1,6517.302,18.28747,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,83.5,3.4,0,85.2,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,85.2,8.78237,.6931472,,0
-13,6,0,1,4,630909,1,6517.302,19.28747,1,17,1,10.50263,0,0,0,0,10.50263,0,0,0,0,0,2,83.5,3.4,0,85.2,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,85.2,8.78237,.6931472,2.351625,1
-13,6,0,1,5,630909,1,6517.302,20.28747,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,83.5,3.4,0,85.2,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,85.2,8.78237,.6931472,,0
-13,6,0,1,1,630910,1,6517.302,46.33812,1,17,1,21.62162,0,38.82064,0,0,60.44226,0,0,0,1,0,2,89.6,6.9,0,72.7,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,72.7,8.78237,.6931472,4.101688,1
-13,6,0,1,2,630910,1,6517.302,47.33812,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,89.6,6.9,0,72.7,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,72.7,8.78237,.6931472,,0
-13,6,0,1,3,630910,1,6517.302,48.33812,1,17,1,0,0,0,0,0,0,0,0,0,0,0,2,89.6,6.9,0,72.7,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,72.7,8.78237,.6931472,,0
-13,6,0,1,4,630910,1,6517.302,49.33812,1,17,1,16.87922,0,0,0,0,16.87922,0,0,0,1,0,2,89.6,6.9,0,72.7,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,72.7,8.78237,.6931472,2.826083,1
-13,6,0,1,5,630910,1,6517.302,50.33812,1,17,1,28.07848,3.599459,0,0,0,31.67794,0,0,0,3,0,2,89.6,6.9,0,72.7,300,454.42,0,0,.6931472,6.119022,1,4.564348,5.755076,0,0,0,72.7,8.78237,.6931472,3.455621,1
-11,6,0,1,1,630947,0,6735.316,14.73785,0,16,1,12.69573,3.343208,0,0,0,16.03893,0,0,0,2,0,4,94.1,3.4,0,96.4,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.4,8.815269,1.386294,2.775019,1
-11,6,0,1,2,630947,0,6735.316,15.73785,0,16,1,51.25285,16.15414,0,0,0,67.40698,0,0,0,6,0,4,94.1,3.4,0,96.4,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.4,8.815269,1.386294,4.210749,1
-11,6,0,1,3,630947,0,6735.316,16.73785,0,16,1,41.52249,22.30104,0,0,0,63.82353,0,0,0,6,0,4,94.1,3.4,0,96.4,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.4,8.815269,1.386294,4.156122,1
-11,6,0,1,1,630948,0,6735.316,39.17043,0,20,1,26.66102,86.74566,0,0,0,113.4067,0,0,0,1,0,4,93.1,3.4,0,98.9,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,98.9,8.815269,1.386294,4.73098,1
-11,6,0,1,2,630948,0,6735.316,40.17043,0,20,1,268.4131,150.5277,0,0,0,418.9408,0,0,0,8,0,4,93.1,3.4,0,98.9,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,98.9,8.815269,1.386294,6.03773,1
-11,6,0,1,3,630948,0,6735.316,41.17043,0,20,1,55.0173,128.1107,0,0,0,183.128,0,0,0,5,0,4,93.1,3.4,0,98.9,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,98.9,8.815269,1.386294,5.210186,1
-11,6,0,1,1,630949,0,6735.316,9.404517,0,16,1,72.78883,11.23995,0,0,0,84.02878,0,0,0,6,0,4,98.3,10.57626,0,96.3,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.3,8.815269,1.386294,4.431159,1
-11,6,0,1,2,630949,0,6735.316,10.40452,0,16,1,112.3766,8.378891,0,0,0,120.7555,0,0,0,5,0,4,98.3,10.57626,0,96.3,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.3,8.815269,1.386294,4.793768,1
-11,6,0,1,3,630949,0,6735.316,11.40452,0,16,1,91.34948,3.100346,0,0,0,94.44983,0,0,0,4,0,4,98.3,10.57626,0,96.3,0,197.4,1,0,1.386294,5.285232,0,0,0,0,0,0,96.3,8.815269,1.386294,4.548069,1
-11,6,0,1,1,630950,0,6735.316,36.7091,1,16,1,148.1168,41.84934,0,0,0,189.9661,0,0,0,24,0,4,76.6,10.3,0,78.4,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,78.4,8.815269,1.386294,5.246846,1
-11,6,0,1,2,630950,0,6735.316,37.7091,1,16,1,28.4738,6.833713,0,0,0,35.30752,0,0,0,12,0,4,76.6,10.3,0,78.4,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,78.4,8.815269,1.386294,3.564096,1
-11,6,0,1,3,630950,0,6735.316,38.7091,1,16,1,70.24222,18.67128,0,0,0,88.9135,0,0,0,9,0,4,76.6,10.3,0,78.4,0,197.4,0,0,1.386294,5.285232,0,0,0,0,0,0,78.4,8.815269,1.386294,4.487664,1
-19,6,25,1,1,630954,0,8146.627,27.2334,1,11,1,9.910803,15.39643,0,0,0,25.30724,0,0,0,2,0,5,70.7,10.3,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,1,0,72.7,9.005482,1.609438,3.23109,1
-19,6,25,1,2,630954,0,8146.627,28.2334,1,11,1,0,6.654428,0,0,0,6.654428,0,0,0,0,0,5,70.7,10.3,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,1,0,72.7,9.005482,1.609438,1.895283,1
-19,6,25,1,3,630954,0,8146.627,29.2334,1,11,1,33.65587,0,0,0,0,33.65587,0,0,0,2,0,5,70.7,10.3,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,1,0,72.7,9.005482,1.609438,3.516187,1
-19,6,25,1,4,630954,0,8146.627,30.2334,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,10.3,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,1,0,72.7,9.005482,1.609438,,0
-19,6,25,1,5,630954,0,8146.627,31.2334,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,70.7,10.3,0,72.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,1,0,72.7,9.005482,1.609438,,0
-19,6,25,1,1,630955,0,8146.627,7.466119,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,29.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,29.6,9.005482,1.609438,,0
-19,6,25,1,2,630955,0,8146.627,8.466119,1,11,1,2.294631,3.327214,0,0,0,5.621845,0,0,0,1,0,5,90,10.57626,0,29.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,29.6,9.005482,1.609438,1.72666,1
-19,6,25,1,3,630955,0,8146.627,9.466119,1,11,1,8.413967,0,23.13841,0,0,31.55238,0,0,0,0,1,5,90,10.57626,0,29.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,29.6,9.005482,1.609438,3.451649,1
-19,6,25,1,4,630955,0,8146.627,10.46612,1,11,1,9.444654,0,15.11145,0,0,24.5561,0,0,0,0,1,5,90,10.57626,0,29.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,29.6,9.005482,1.609438,3.20096,1
-19,6,25,1,5,630955,0,8146.627,11.46612,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,29.6,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,1,0,0,29.6,9.005482,1.609438,,0
-19,6,25,1,1,630956,0,8146.627,4.89254,0,11,1,30.22795,0,0,0,0,30.22795,0,0,0,1,0,5,77.40034,10.57626,0,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.005482,1.609438,3.408767,1
-19,6,25,1,2,630956,0,8146.627,5.89254,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.005482,1.609438,,0
-19,6,25,1,3,630956,0,8146.627,6.89254,0,11,1,32.39377,0,0,0,0,32.39377,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.005482,1.609438,3.477966,1
-19,6,25,1,4,630956,0,8146.627,7.89254,0,11,1,46.84549,0,0,0,0,46.84549,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.005482,1.609438,3.846855,1
-19,6,25,1,5,630956,0,8146.627,8.892539,0,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.005482,1.609438,,0
-19,6,25,1,1,630957,0,8146.627,29.28679,0,12,1,111.9921,31.62537,0,0,0,143.6174,0,0,0,6,0,5,77.1,6.9,0,76.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,76.1,9.005482,1.609438,4.967153,1
-19,6,25,1,2,630957,0,8146.627,30.28679,0,12,1,27.53557,34.64433,0,0,0,62.1799,0,0,0,8,0,5,77.1,6.9,0,76.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,76.1,9.005482,1.609438,4.130032,1
-19,6,25,1,3,630957,0,8146.627,31.28679,0,12,1,48.80101,4.177535,0,0,0,52.97855,0,0,0,5,0,5,77.1,6.9,0,76.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,76.1,9.005482,1.609438,3.969887,1
-19,6,25,1,4,630957,0,8146.627,32.28679,0,12,1,52.89006,0,0,0,0,52.89006,0,0,0,9,0,5,77.1,6.9,0,76.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,76.1,9.005482,1.609438,3.968215,1
-19,6,25,1,5,630957,0,8146.627,33.28679,0,12,1,26.75815,0,0,0,0,26.75815,0,0,0,3,0,5,77.1,6.9,0,76.1,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,76.1,9.005482,1.609438,3.286839,1
-19,6,25,1,1,630958,0,8146.627,2.850103,1,11,1,2.477701,4.38553,0,0,0,6.863231,0,0,0,1,0,5,77.40034,10.57626,0,77.8,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,77.8,9.005482,1.609438,1.926178,1
-19,6,25,1,2,630958,0,8146.627,3.850103,1,11,1,3.212483,2.413951,0,0,0,5.626434,0,0,0,1,0,5,77.40034,10.57626,0,77.8,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,77.8,9.005482,1.609438,1.727476,1
-19,6,25,1,3,630958,0,8146.627,4.850103,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,77.8,9.005482,1.609438,,0
-19,6,25,1,4,630958,0,8146.627,5.850103,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,77.8,9.005482,1.609438,,0
-19,6,25,1,5,630958,0,8146.627,6.850103,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,77.8,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,77.8,9.005482,1.609438,,0
-13,6,0,0,1,630962,.5112414,3575.525,19.14305,0,8,1,22.71771,0,0,0,0,22.71771,0,0,0,0,0,3,59.6,6.9,0,67,450,552,0,0,1.098612,6.313548,1,4.564348,6.160541,0,0,0,67,8.182147,1.098612,3.123145,1
-13,6,0,0,2,630962,.5112414,3575.525,20.14305,0,8,1,14.35588,0,0,0,0,14.35588,0,0,0,0,0,3,59.6,6.9,0,67,450,552,0,0,1.098612,6.313548,1,4.564348,6.160541,0,0,0,67,8.182147,1.098612,2.664159,1
-13,6,0,0,3,630962,.5112414,3575.525,21.14305,0,8,1,36.70669,0,0,0,0,36.70669,0,0,0,0,0,3,59.6,6.9,0,67,450,552,0,0,1.098612,6.313548,1,4.564348,6.160541,0,0,0,67,8.182147,1.098612,3.602959,1
-14,6,95,1,1,630969,0,6735.316,61.17728,0,19,1,286.4956,0,0,0,0,286.4956,0,0,0,11,0,2,89.9,0,0,86.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.815269,.6931472,5.657723,1
-14,6,95,1,2,630969,0,6735.316,62.17728,0,19,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,86.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.815269,.6931472,,0
-14,6,95,1,3,630969,0,6735.316,63.17728,0,19,1,0,0,0,0,0,0,0,0,0,0,0,2,89.9,0,0,86.4,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,86.4,8.815269,.6931472,,0
-14,6,95,1,1,630971,0,6735.316,52.95277,1,12,1,68.15314,3.786285,43.14682,0,0,115.0862,0,0,0,4,0,2,66.5,31,0,52.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,52.3,8.815269,.6931472,4.745682,1
-14,6,95,1,2,630971,0,6735.316,53.95277,1,12,1,22.66717,0,0,0,0,22.66717,0,0,0,1,0,2,66.5,31,0,52.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,52.3,8.815269,.6931472,3.120918,1
-14,6,95,1,3,630971,0,6735.316,54.95277,1,12,1,61.74957,0,0,0,0,61.74957,0,0,0,3,1,2,66.5,31,0,52.3,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,52.3,8.815269,.6931472,4.123087,1
-16,6,95,0,1,630974,1,6656.426,7.058179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,2,630974,1,6656.426,8.058179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,3,630974,1,6656.426,9.058179,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,1,630975,1,6656.426,30.80903,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,3.4,0,71.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.2,8.803488,1.609438,,0
-16,6,95,0,2,630975,1,6656.426,31.80903,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,3.4,0,71.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.2,8.803488,1.609438,,0
-16,6,95,0,3,630975,1,6656.426,32.80904,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.3,3.4,0,71.2,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,71.2,8.803488,1.609438,,0
-16,6,95,0,1,630976,1,6656.426,4.213552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,2,630976,1,6656.426,5.213552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,3,630976,1,6656.426,6.213552,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,100,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,100,8.803488,1.609438,,0
-16,6,95,0,1,630977,1,6656.426,30.40931,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.6,3.4,0,81.8,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.803488,1.609438,,0
-16,6,95,0,2,630977,1,6656.426,31.40931,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.6,3.4,0,81.8,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.803488,1.609438,,0
-16,6,95,0,3,630977,1,6656.426,32.40931,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,93.6,3.4,0,81.8,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.8,8.803488,1.609438,,0
-5,6,25,1,1,630980,1,1327.189,14.15469,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,79.8,6.9,0,79.5,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,79.5,7.191572,2.079442,,0
-5,6,25,1,2,630980,1,1327.189,15.15469,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,79.8,6.9,0,79.5,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,79.5,7.191572,2.079442,,0
-5,6,25,1,3,630980,1,1327.189,16.15469,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,6.9,0,79.5,431.4,431.4,1,0,1.791759,6.067036,0,3.258096,7.45333,0,0,0,79.5,7.191572,1.791759,,0
-5,6,25,1,1,630981,1,1327.189,35.20329,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.1,13.8,0,70.5,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,70.5,7.191572,2.079442,,0
-5,6,25,1,2,630981,1,1327.189,36.20329,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.1,13.8,0,70.5,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,70.5,7.191572,2.079442,,0
-5,6,25,1,3,630981,1,1327.189,37.20329,1,12,1,169.1252,10.36021,0,0,1097.427,1276.912,1,0,0,7,0,6,77.1,13.8,0,70.5,431.4,431.4,0,0,1.791759,6.067036,0,3.258096,7.45333,0,0,0,70.5,7.191572,1.791759,7.1522,1
-5,6,25,1,1,630982,1,1327.189,15.57837,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,67.6,3.4,0,48.8,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,48.8,7.191572,2.079442,,0
-5,6,25,1,2,630982,1,1327.189,16.57837,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,67.6,3.4,0,48.8,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,48.8,7.191572,2.079442,,0
-5,6,25,1,1,630983,1,1327.189,12.82135,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,88.3,10.57626,0,92.6,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,92.6,7.191572,2.079442,,0
-5,6,25,1,2,630983,1,1327.189,13.82135,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,88.3,10.57626,0,92.6,431.4,431.4,1,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,92.6,7.191572,2.079442,,0
-5,6,25,1,3,630983,1,1327.189,14.82135,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,92.6,431.4,431.4,1,0,1.791759,6.067036,0,3.258096,7.45333,0,0,0,92.6,7.191572,1.791759,,0
-5,6,25,0,1,630985,1,1327.189,37.06503,0,7,1,0,0,0,0,0,0,0,0,0,0,0,8,86.2,3.4,0,77.3,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,77.3,7.191572,2.079442,,0
-5,6,25,0,2,630985,1,1327.189,38.06503,0,7,1,0,0,0,0,0,0,0,0,0,0,0,8,86.2,3.4,0,77.3,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,77.3,7.191572,2.079442,,0
-5,6,25,0,3,630985,1,1327.189,39.06503,0,7,1,36.02058,2.521441,0,0,2085.42,2123.962,1,0,0,3,0,6,86.2,3.4,0,77.3,431.4,431.4,0,0,1.791759,6.067036,0,3.258096,7.45333,0,0,0,77.3,7.191572,1.791759,7.661038,1
-5,6,25,1,1,630986,1,1327.189,19.2909,1,7,1,5.04838,.6310475,0,0,0,5.679428,0,0,0,1,0,8,79.8,3.4,0,76.1,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,76.1,7.191572,2.079442,1.736851,1
-5,6,25,1,2,630986,1,1327.189,20.2909,1,7,1,0,0,0,0,415.187,415.187,1,0,0,0,0,8,79.8,3.4,0,76.1,431.4,431.4,0,0,2.079442,6.067036,0,3.258096,7.45333,0,0,0,76.1,7.191572,2.079442,6.028729,1
-5,6,25,1,1,630987,1,1327.189,11.53183,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,91.7,10.57626,0,74.1,431.4,431.4,1,1,2.079442,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,2.079442,,0
-5,6,25,1,2,630987,1,1327.189,12.53183,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,91.7,10.57626,0,74.1,431.4,431.4,1,1,2.079442,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,2.079442,,0
-5,6,25,1,3,630987,1,1327.189,13.53183,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,91.7,10.57626,0,74.1,431.4,431.4,1,1,1.791759,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,1.791759,,0
-5,6,25,1,1,630988,1,1327.189,9.782341,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,95,10.57626,0,74.1,431.4,431.4,1,1,2.079442,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,2.079442,,0
-5,6,25,1,2,630988,1,1327.189,10.78234,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,95,10.57626,0,74.1,431.4,431.4,1,1,2.079442,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,2.079442,,0
-5,6,25,1,3,630988,1,1327.189,11.78234,1,12,1,7.54717,0,0,0,0,7.54717,0,0,0,1,0,6,95,10.57626,0,74.1,431.4,431.4,1,1,1.791759,6.067036,0,3.258096,7.45333,0,0,0,74.1,7.191572,1.791759,2.021173,1
-18,6,25,1,1,631009,0,7493.087,17.39904,0,12,1,122.0482,25.48455,8.463818,0,0,155.9966,0,0,0,6,0,4,89.9,3.4,0,63.6,750,967.6,1,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,63.6,8.921869,1.386294,5.049834,1
-18,6,25,1,2,631009,0,7493.087,18.39904,0,12,1,56.56796,16.68945,0,0,0,73.2574,0,0,0,3,0,4,89.9,3.4,0,63.6,750,967.6,0,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,63.6,8.921869,1.386294,4.293979,1
-18,6,25,1,3,631009,0,7493.087,19.39904,0,12,1,78.89273,25.61246,25.55017,0,0,130.0554,0,0,0,6,0,5,89.9,3.4,0,63.6,750,967.6,0,0,1.609438,6.874819,0,3.258096,8.006368,1,0,0,63.6,8.921869,1.609438,4.86796,1
-18,6,25,1,1,631010,0,7493.087,44.52567,1,12,1,0,6.948794,0,0,0,6.948794,0,0,0,0,0,4,91.5,17.2,0,73.9,750,967.6,0,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,73.9,8.921869,1.386294,1.938568,1
-18,6,25,1,2,631010,0,7493.087,45.52567,1,12,1,0,10.23918,0,0,0,10.23918,0,0,0,0,0,4,91.5,17.2,0,73.9,750,967.6,0,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,73.9,8.921869,1.386294,2.326221,1
-18,6,25,1,3,631010,0,7493.087,46.52567,1,12,1,115.5709,28.19377,0,0,0,143.7647,0,0,0,4,0,5,91.5,17.2,0,73.9,750,967.6,0,0,1.609438,6.874819,0,3.258096,8.006368,1,0,0,73.9,8.921869,1.609438,4.968178,1
-18,6,25,1,1,631011,0,7493.087,15.41684,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,96.8,3.4,0,97.7,750,967.6,1,1,1.386294,6.874819,0,3.258096,8.006368,1,0,0,97.7,8.921869,1.386294,,0
-18,6,25,1,2,631011,0,7493.087,16.41684,1,12,1,30.75171,18.67122,0,0,587.6993,637.1223,1,0,0,1,0,4,96.8,3.4,0,97.7,750,967.6,1,1,1.386294,6.874819,0,3.258096,8.006368,1,0,0,97.7,8.921869,1.386294,6.456962,1
-18,6,25,1,3,631011,0,7493.087,17.41684,1,12,1,43.25259,20.81661,0,0,0,64.06921,0,0,0,3,0,5,96.8,3.4,0,97.7,750,967.6,1,1,1.609438,6.874819,0,3.258096,8.006368,1,0,0,97.7,8.921869,1.609438,4.159964,1
-18,6,25,1,1,631012,0,7493.087,44.33128,0,12,1,8.887008,18.3157,0,0,0,27.20271,0,0,0,1,0,4,79.3,10.3,1,53.4,750,967.6,0,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,53.4,8.921869,1.386294,3.303317,1
-18,6,25,1,2,631012,0,7493.087,45.33128,0,12,1,7.213364,28.15869,0,0,0,35.37206,0,0,0,0,0,4,79.3,10.3,1,53.4,750,967.6,0,0,1.386294,6.874819,0,3.258096,8.006368,1,0,0,53.4,8.921869,1.386294,3.565922,1
-18,6,25,1,3,631012,0,7493.087,46.33128,0,12,1,118.6851,36.6436,0,0,0,155.3287,0,0,0,7,0,5,79.3,10.3,1,53.4,750,967.6,0,0,1.609438,6.874819,0,3.258096,8.006368,1,0,0,53.4,8.921869,1.609438,5.045544,1
-11,6,0,1,1,631014,0,2694.316,23.64134,1,12,1,353.576,42.72112,0,0,0,396.2971,0,0,0,7,62,3,88.3,10.3,0,83,0,514.56,0,0,1.098612,6.243312,0,0,0,1,0,0,83,7.899271,1.098612,5.982164,1
-11,6,0,1,2,631014,0,2694.316,24.64134,1,12,1,373.9939,19.71526,0,0,0,393.7092,0,0,0,8,36,3,88.3,10.3,0,83,0,514.56,0,0,1.098612,6.243312,0,0,0,1,0,0,83,7.899271,1.098612,5.975613,1
-11,6,0,1,3,631014,0,2694.316,25.64134,1,12,1,275.0865,69.33564,0,0,0,344.4221,0,0,0,8,38,3,88.3,10.3,0,83,0,514.56,0,0,1.098612,6.243312,0,0,0,1,0,0,83,7.899271,1.098612,5.841868,1
-11,6,0,1,1,631015,0,2694.316,5.727584,1,12,1,136.9022,17.07575,0,0,0,153.978,0,0,0,4,18,3,81.7,10.57626,0,70.4,0,514.56,1,1,1.098612,6.243312,0,0,0,0,0,0,70.4,7.899271,1.098612,5.03681,1
-11,6,0,1,2,631015,0,2694.316,6.727584,1,12,1,168.9446,14.6697,0,0,0,183.6143,0,0,0,4,22,3,81.7,10.57626,0,70.4,0,514.56,1,1,1.098612,6.243312,0,0,0,0,0,0,70.4,7.899271,1.098612,5.212837,1
-11,6,0,1,3,631015,0,2694.316,7.727584,1,12,1,131.4879,28.68858,0,0,0,160.1765,0,0,0,8,20,3,81.7,10.57626,0,70.4,0,514.56,1,1,1.098612,6.243312,0,0,0,0,0,0,70.4,7.899271,1.098612,5.076276,1
-11,6,0,0,1,631016,0,2694.316,24.11773,0,12,1,228.9463,4.020313,0,0,0,232.9666,0,0,0,4,36,3,77.7,13.8,0,52.3,0,514.56,0,0,1.098612,6.243312,0,0,0,0,0,0,52.3,7.899271,1.098612,5.450895,1
-11,6,0,0,2,631016,0,2694.316,25.11773,0,12,1,169.3242,59.3432,0,0,0,228.6674,0,0,0,4,10,3,77.7,13.8,0,52.3,0,514.56,0,0,1.098612,6.243312,0,0,0,0,0,0,52.3,7.899271,1.098612,5.432269,1
-11,6,0,0,3,631016,0,2694.316,26.11773,0,12,1,67.47404,18.85121,0,0,0,86.32526,0,0,0,0,13,3,77.7,13.8,0,52.3,0,514.56,0,0,1.098612,6.243312,0,0,0,0,0,0,52.3,7.899271,1.098612,4.458122,1
-18,6,25,1,1,631017,0,8286.227,61.99863,0,11,1,27.34539,0,0,0,0,27.34539,0,0,0,1,0,2,86.7,20.7,1,72.7,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,72.7,9.02247,.6931472,3.308548,1
-18,6,25,1,2,631017,0,8286.227,62.99863,0,11,1,53.64564,5.572346,0,0,450.6989,509.9169,1,0,0,3,0,2,86.7,20.7,1,72.7,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,72.7,9.02247,.6931472,6.234248,1
-18,6,25,1,3,631017,0,8286.227,63.99863,0,11,1,15.43739,0,0,0,0,15.43739,0,0,0,1,0,2,86.7,20.7,1,72.7,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,72.7,9.02247,.6931472,2.736793,1
-18,6,25,1,1,631018,0,8286.227,61.1718,1,14,1,37.02145,0,0,0,0,37.02145,0,0,0,1,0,2,92,24.1,1,69.3,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,69.3,9.02247,.6931472,3.611498,1
-18,6,25,1,2,631018,0,8286.227,62.1718,1,14,1,30.22289,22.72384,0,0,0,52.94673,0,0,0,1,0,2,92,24.1,1,69.3,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,69.3,9.02247,.6931472,3.969286,1
-18,6,25,1,3,631018,0,8286.227,63.1718,1,14,1,77.18697,4.013722,0,0,1608.576,1689.777,1,0,0,4,0,2,92,24.1,1,69.3,750,936,0,0,.6931472,6.841616,0,3.258096,8.006368,1,0,0,69.3,9.02247,.6931472,7.432352,1
-11,6,0,0,1,631022,0,12691.24,28.23545,1,10,1,14.72444,6.731174,0,0,0,21.45562,0,0,0,1,0,5,98.4,3.4,0,89.8,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,89.8,9.448747,1.609438,3.065986,1
-11,6,0,0,2,631022,0,12691.24,29.23545,1,10,1,105.4023,29.14243,0,0,0,134.5448,0,0,0,8,0,5,98.4,3.4,0,89.8,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,89.8,9.448747,1.609438,4.901897,1
-11,6,0,0,3,631022,0,12691.24,30.23545,1,10,1,37.3928,34.79245,0,0,0,72.18525,0,0,0,4,0,5,98.4,3.4,0,89.8,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,89.8,9.448747,1.609438,4.279236,1
-11,6,0,0,1,631023,0,12691.24,35.11567,0,12,1,36.18006,11.88473,33.65587,0,0,81.72066,0,0,0,2,1,5,89.4,6.9,0,76.1,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,76.1,9.448747,1.609438,4.403307,1
-11,6,0,0,2,631023,0,12691.24,36.11567,0,12,1,11.33358,0,18.88931,0,0,30.22289,0,0,0,0,1,5,89.4,6.9,0,76.1,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,76.1,9.448747,1.609438,3.4086,1
-11,6,0,0,3,631023,0,12691.24,37.11567,0,12,1,10.2916,0,0,0,0,10.2916,0,0,0,0,0,5,89.4,6.9,0,76.1,0,193.96,0,0,1.609438,5.267652,0,0,0,0,0,0,76.1,9.448747,1.609438,2.331328,1
-11,6,0,0,1,631024,0,12691.24,6.622861,1,10,1,13.88305,4.396298,0,0,0,18.27934,0,0,0,0,0,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,2.905772,1
-11,6,0,0,2,631024,0,12691.24,7.622861,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,,0
-11,6,0,0,3,631024,0,12691.24,8.622861,1,10,1,21.9554,5.924528,24.01372,0,0,51.89365,0,0,0,2,1,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,3.949197,1
-11,6,0,0,1,631025,0,12691.24,8.188911,1,10,1,43.75263,0,0,0,0,43.75263,0,0,0,2,0,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,3.778552,1
-11,6,0,0,2,631025,0,12691.24,9.188911,1,10,1,20.02267,5.251228,0,0,0,25.2739,0,0,0,2,0,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,3.229772,1
-11,6,0,0,3,631025,0,12691.24,10.18891,1,10,1,0,0,0,0,0,0,0,0,0,0,0,5,91.7,10.57626,.1442925,81.5,0,193.96,1,1,1.609438,5.267652,0,0,0,0,0,0,81.5,9.448747,1.609438,,0
-16,6,95,0,1,631035,1,0,9.971252,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,10.57626,0,77.8,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.8,0,1.098612,,0
-16,6,95,0,2,631035,1,0,10.97125,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,10.57626,0,77.8,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.8,0,1.098612,,0
-16,6,95,0,3,631035,1,0,11.97125,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,10.57626,0,77.8,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,77.8,0,1.098612,,0
-16,6,95,0,1,631036,1,0,7.118412,1,12,1,3.365587,0,0,0,0,3.365587,0,0,0,1,0,3,75,10.57626,0,51.9,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.9,0,1.098612,1.213602,1
-16,6,95,0,2,631036,1,0,8.118412,1,12,1,4.155648,4.382319,0,0,0,8.537968,0,0,0,1,0,3,75,10.57626,0,51.9,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.9,0,1.098612,2.144523,1
-16,6,95,0,3,631036,1,0,9.118412,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,75,10.57626,0,51.9,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,1,0,0,51.9,0,1.098612,,0
-16,6,95,0,1,631037,1,0,31.29637,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.9,17.2,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,0,1.098612,,0
-16,6,95,0,2,631037,1,0,32.29637,1,12,1,17.75595,14.27276,0,0,0,32.02871,0,0,0,2,0,3,55.9,17.2,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,0,1.098612,3.466633,1
-16,6,95,0,3,631037,1,0,33.29637,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,55.9,17.2,1,67,1000,1000,0,0,1.098612,6.907755,0,4.564348,6.959049,1,0,0,67,0,1.098612,,0
-15,6,95,0,1,631074,0,6395.801,9.952087,0,5,1,90.45015,3.996634,0,0,0,94.44678,0,0,0,1,0,5,93.3,10.57626,.1442925,81.5,1000,1000,1,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,81.5,8.763554,1.609438,4.548037,1
-15,6,95,0,1,631075,0,6395.801,16.93634,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,84.6,3.4,0,88.1,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,88.1,8.763554,1.609438,,0
-15,6,95,0,1,631076,0,6395.801,7.581109,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,.1442925,74.1,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,74.1,8.763554,1.609438,,0
-15,6,95,0,1,631077,0,6395.801,34.39562,1,5,1,0,0,0,0,0,0,0,0,0,0,0,5,73.4,13.8,0,70.5,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,1,0,0,70.5,8.763554,1.609438,,0
-15,6,95,0,1,631078,0,6395.801,36.9911,0,7,1,27.34539,0,0,0,0,27.34539,0,0,0,2,0,5,58.5,24.1,0,55.7,1000,1000,0,0,1.609438,6.907755,0,4.564348,6.959049,0,0,0,55.7,8.763554,1.609438,3.308548,1
-11,6,0,1,1,631086,0,1228.879,39.78097,0,16,1,71.09606,6.876852,13.54211,0,0,91.51502,0,0,0,2,1,5,65.4,10.3,0,73.9,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,73.9,7.114671,1.609438,4.516503,1
-11,6,0,1,2,631086,0,1228.879,40.78097,0,16,1,20.50114,8.731967,0,0,0,29.2331,0,0,0,2,0,5,65.4,10.3,0,73.9,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,73.9,7.114671,1.609438,3.375302,1
-11,6,0,1,3,631086,0,1228.879,41.78097,0,16,1,168.1661,6.920415,28.41869,0,0,203.5052,0,0,0,5,1,5,65.4,10.3,0,73.9,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,73.9,7.114671,1.609438,5.315691,1
-11,6,0,1,1,631087,0,1228.879,13.45927,0,13,1,20.73635,7.723233,0,0,0,28.45959,0,0,0,2,0,5,50,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,3.348485,1
-11,6,0,1,2,631087,0,1228.879,14.45927,0,13,1,19.36219,0,0,0,0,19.36219,0,0,0,2,0,5,50,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,2.963322,1
-11,6,0,1,3,631087,0,1228.879,15.45927,0,13,1,50.17301,4.757785,0,0,0,54.9308,0,0,0,3,1,5,50,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,4.006074,1
-11,6,0,1,1,631088,0,1228.879,34.71595,1,13,1,124.8413,85.06136,0,0,0,209.9027,0,0,0,17,0,5,53.7,6.9,0,69.3,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,69.3,7.114671,1.609438,5.346644,1
-11,6,0,1,2,631088,0,1228.879,35.71595,1,13,1,266.1352,55.31131,0,0,0,321.4465,0,0,0,19,0,5,53.7,6.9,0,69.3,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,69.3,7.114671,1.609438,5.772831,1
-11,6,0,1,3,631088,0,1228.879,36.71595,1,13,1,245.6747,41.34948,0,0,0,287.0242,0,0,0,20,0,5,53.7,6.9,0,69.3,0,826.8,0,0,1.609438,6.717563,0,0,0,0,0,0,69.3,7.114671,1.609438,5.659566,1
-11,6,0,1,1,631089,0,1228.879,6.880219,1,13,1,10.15658,6.03047,0,0,0,16.18705,0,0,0,2,0,5,91.7,10.57626,0,96.3,0,826.8,1,1,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,2.784212,1
-11,6,0,1,2,631089,0,1228.879,7.880219,1,13,1,20.88079,8.731967,0,0,0,29.61276,0,0,0,3,0,5,91.7,10.57626,0,96.3,0,826.8,1,1,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,3.388205,1
-11,6,0,1,3,631089,0,1228.879,8.880219,1,13,1,86.50519,0,0,0,0,86.50519,0,0,0,7,0,5,91.7,10.57626,0,96.3,0,826.8,1,1,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,4.460205,1
-11,6,0,1,1,631090,0,1228.879,12.37509,0,13,1,46.1278,5.07829,0,0,0,51.20609,0,0,0,4,0,5,85,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,3.935858,1
-11,6,0,1,2,631090,0,1228.879,13.37509,0,13,1,50.49355,10.82005,0,0,0,61.31359,0,0,0,6,0,5,85,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,4.116002,1
-11,6,0,1,3,631090,0,1228.879,14.37509,0,13,1,116.609,1.989619,0,0,0,118.5986,0,0,0,3,0,5,85,10.57626,0,96.3,0,826.8,1,0,1.609438,6.717563,0,0,0,0,0,0,96.3,7.114671,1.609438,4.775745,1
-13,6,0,1,1,631139,0,2251.92,57.31691,1,6,1,0,0,0,0,0,0,0,0,0,0,0,1,87.2,24.1,0,78.4,150,260.52,0,0,0,5.56268,1,4.564348,5.061929,0,0,1,78.4,7.719983,0,,0
-13,6,0,1,2,631139,0,2251.92,58.31691,1,6,1,15.11145,11.02758,0,0,0,26.13902,0,0,0,2,0,1,87.2,24.1,0,78.4,150,260.52,0,0,0,5.56268,1,4.564348,5.061929,0,0,1,78.4,7.719983,0,3.263429,1
-13,6,0,1,3,631139,0,2251.92,59.31691,1,6,1,8.576329,15.35163,0,0,0,23.92796,0,0,0,1,0,1,87.2,24.1,0,78.4,150,260.52,0,0,0,5.56268,1,4.564348,5.061929,0,0,1,78.4,7.719983,0,3.175048,1
-15,6,95,1,1,631169,1,6735.316,15.5373,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,6.9,0,51.1,391.3,391.3,1,1,.6931472,5.969474,0,4.564348,6.020768,0,1,0,51.1,8.815269,.6931472,,0
-15,6,95,1,2,631169,1,6735.316,16.5373,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,78.7,6.9,0,51.1,391.3,391.3,1,1,.6931472,5.969474,0,4.564348,6.020768,0,1,0,51.1,8.815269,.6931472,,0
-15,6,95,1,1,631170,1,6735.316,57.06503,1,8,1,20.31316,14.2573,0,0,0,34.57046,0,0,0,2,0,2,89.4,20.7,1,47.7,391.3,391.3,0,0,.6931472,5.969474,0,4.564348,6.020768,0,1,0,47.7,8.815269,.6931472,3.543,1
-15,6,95,1,2,631170,1,6735.316,58.06503,1,8,1,47.83599,4.290053,0,0,0,52.12605,0,0,0,0,0,2,89.4,20.7,1,47.7,391.3,391.3,0,0,.6931472,5.969474,0,4.564348,6.020768,0,1,0,47.7,8.815269,.6931472,3.953665,1
-15,6,95,1,3,631170,1,6735.316,59.06503,1,8,1,0,7.148789,0,0,3523.495,3530.644,2,0,0,0,0,1,89.4,20.7,1,47.7,391.3,391.3,0,0,0,5.969474,0,4.564348,6.020768,0,1,0,47.7,8.815269,0,8.169235,1
-14,6,95,0,1,631171,0,4238.095,55.9206,1,12,1,0,7.617435,0,0,0,7.617435,0,0,0,0,0,1,64.9,20.7,0,78.4,526.25,526.25,0,0,0,6.265776,0,4.564348,6.31707,1,0,0,78.4,8.352105,0,2.03044,1
-14,6,95,0,2,631171,0,4238.095,56.9206,1,12,1,60.74411,33.98254,0,0,0,94.72665,0,0,0,5,0,1,64.9,20.7,0,78.4,526.25,526.25,0,0,0,6.265776,0,4.564348,6.31707,1,0,0,78.4,8.352105,0,4.550995,1
-14,6,95,0,3,631171,0,4238.095,57.9206,1,12,1,0,20.59862,0,0,0,20.59862,0,0,0,0,0,1,64.9,20.7,0,78.4,526.25,526.25,0,0,0,6.265776,0,4.564348,6.31707,1,0,0,78.4,8.352105,0,3.025224,1
-17,6,25,1,1,631176,0,5403.073,.8268309,1,14,1,44.38903,12.84289,20.58354,0,0,77.81546,0,0,0,6,0,4,77.40034,10.57626,0,85.2,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,0,0,0,85.2,8.594909,1.386294,4.35434,1
-17,6,25,1,2,631176,0,5403.073,1.826831,1,14,1,24.89627,12.17612,25.89212,0,0,62.9645,0,0,0,4,0,4,77.40034,10.57626,0,85.2,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,0,0,0,85.2,8.594909,1.386294,4.142571,1
-17,6,25,1,3,631176,0,5403.073,2.826831,1,14,1,48.24376,17.14346,30.80829,0,0,96.19551,0,0,0,8,0,4,77.40034,10.57626,0,85.2,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,0,0,0,85.2,8.594909,1.386294,4.566383,1
-17,6,25,1,4,631176,0,5403.073,3.826831,1,14,1,34.16856,22.89294,26.8489,0,0,83.9104,0,0,0,6,0,4,77.40034,10.57626,0,85.2,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,0,0,0,85.2,8.594909,1.386294,4.429749,1
-17,6,25,1,5,631176,0,5403.073,4.826831,1,14,1,58.82353,26.65052,13.67474,0,0,99.14879,0,0,0,11,0,4,77.40034,10.57626,0,85.2,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,0,0,0,85.2,8.594909,1.386294,4.596622,1
-17,6,25,1,1,631177,0,5403.073,5.155373,1,14,1,46.88279,9.710723,0,0,276.3092,332.9027,1,0,0,6,0,4,70,10.57626,0,63,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,1,0,0,63,8.594909,1.386294,5.80785,1
-17,6,25,1,2,631177,0,5403.073,6.155373,1,14,1,68.23421,11.81651,0,0,0,80.05071,0,0,0,9,0,4,70,10.57626,0,63,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,1,0,0,63,8.594909,1.386294,4.38266,1
-17,6,25,1,3,631177,0,5403.073,7.155373,1,14,1,77.02074,28.05332,0,0,0,105.0741,0,0,0,9,1,4,70,10.57626,0,63,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,1,0,0,63,8.594909,1.386294,4.654665,1
-17,6,25,1,4,631177,0,5403.073,8.155373,1,14,1,23.918,10.97191,0,0,0,34.8899,0,0,0,3,0,4,70,10.57626,0,63,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,1,0,0,63,8.594909,1.386294,3.552197,1
-17,6,25,1,5,631177,0,5403.073,9.155373,1,14,1,15.57093,11.79931,0,0,0,27.37024,0,0,0,3,0,4,70,10.57626,0,63,480.5,480.5,1,1,1.386294,6.174827,0,3.258096,7.561121,1,0,0,63,8.594909,1.386294,3.309456,1
-17,6,25,1,1,631178,0,5403.073,32.80767,0,14,1,12.46883,2.76808,0,0,0,15.23691,0,0,0,1,0,4,85.6,17.2,0,67,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,67,8.594909,1.386294,2.723721,1
-17,6,25,1,2,631178,0,5403.073,33.80767,0,14,1,167.3582,3.692946,0,0,0,171.0512,0,0,0,0,28,4,85.6,17.2,0,67,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,67,8.594909,1.386294,5.141963,1
-17,6,25,1,3,631178,0,5403.073,34.80767,0,14,1,56.70758,26.95303,0,236.9869,0,83.6606,0,0,15,1,8,4,85.6,17.2,0,67,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,67,8.594909,1.386294,4.426768,1
-17,6,25,1,4,631178,0,5403.073,35.80767,0,14,1,304.1002,71.99316,0,287.5854,783.9788,1160.072,2,0,14,3,18,4,85.6,17.2,0,67,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,67,8.594909,1.386294,7.056238,1
-17,6,25,1,5,631178,0,5403.073,36.80767,0,14,1,31.14187,88.25259,33.21799,107.0934,0,152.6125,0,0,7,0,4,4,85.6,17.2,0,67,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,67,8.594909,1.386294,5.027902,1
-17,6,25,1,1,631179,0,5403.073,31.65503,1,14,1,26.93267,14.48878,0,0,0,41.42145,0,0,0,3,0,4,65.4,24.1,0,75,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,75,8.594909,1.386294,3.723799,1
-17,6,25,1,2,631179,0,5403.073,32.65503,1,14,1,35.96127,0,0,0,0,35.96127,0,0,0,2,0,4,65.4,24.1,0,75,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,75,8.594909,1.386294,3.582443,1
-17,6,25,1,3,631179,0,5403.073,33.65503,1,14,1,62.63225,9.238256,0,0,0,71.87051,0,0,0,3,1,4,65.4,24.1,0,75,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,75,8.594909,1.386294,4.274866,1
-17,6,25,1,4,631179,0,5403.073,34.65503,1,14,1,32.27031,24.90509,0,377.7525,0,57.1754,0,0,18,4,0,4,65.4,24.1,0,75,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,75,8.594909,1.386294,4.046124,1
-17,6,25,1,5,631179,0,5403.073,35.65503,1,14,1,24.22145,15.89965,0,129.7578,0,40.12111,0,0,7,1,1,4,65.4,24.1,0,75,480.5,480.5,0,0,1.386294,6.174827,0,3.258096,7.561121,1,0,0,75,8.594909,1.386294,3.691903,1
-18,6,25,1,1,631184,1,5726.217,16.44353,1,14,1,39.80344,0,0,0,0,39.80344,0,0,0,0,3,4,47.9,24.1,1,40.9,665.6,665.6,1,1,1.386294,6.500689,0,3.258096,7.886983,0,0,0,40.9,8.652985,1.386294,3.683953,1
-18,6,25,1,2,631184,1,5726.217,17.44353,1,14,1,37.83045,0,0,0,0,37.83045,0,0,0,2,0,4,47.9,24.1,1,40.9,665.6,665.6,1,1,1.386294,6.500689,0,3.258096,7.886983,0,0,0,40.9,8.652985,1.386294,3.633114,1
-18,6,25,1,3,631184,1,5726.217,18.44353,1,14,1,11.25469,7.190496,0,0,789.4956,807.9408,1,0,0,2,0,4,47.9,24.1,1,40.9,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,40.9,8.652985,1.386294,6.694489,1
-18,6,25,1,4,631184,1,5726.217,19.44353,1,14,1,24.006,4.088522,0,0,0,28.09452,0,0,0,1,0,4,47.9,24.1,1,40.9,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,40.9,8.652985,1.386294,3.335575,1
-18,6,25,1,1,631185,1,5726.217,14.4668,0,14,1,28.50123,0,0,0,258.4767,286.9779,1,0,0,2,0,4,80.9,3.4,0,73.9,665.6,665.6,1,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,73.9,8.652985,1.386294,5.659405,1
-18,6,25,1,2,631185,1,5726.217,15.4668,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,3.4,0,73.9,665.6,665.6,1,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,73.9,8.652985,1.386294,,0
-18,6,25,1,3,631185,1,5726.217,16.4668,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,3.4,0,73.9,665.6,665.6,1,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,73.9,8.652985,1.386294,,0
-18,6,25,1,4,631185,1,5726.217,17.4668,0,14,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,3.4,0,73.9,665.6,665.6,1,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,73.9,8.652985,1.386294,,0
-18,6,25,1,5,631185,1,5726.217,18.4668,0,14,1,6.427605,0,0,0,0,6.427605,0,0,0,0,0,3,80.9,3.4,0,73.9,665.6,665.6,0,0,1.098612,6.500689,0,3.258096,7.886983,0,0,0,73.9,8.652985,1.098612,1.860602,1
-18,6,25,1,1,631186,1,5726.217,42.55442,1,14,1,11.79361,15.72482,0,0,662.8993,690.4177,1,0,0,2,0,4,63.3,13.8,0,76.1,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,76.1,8.652985,1.386294,6.537297,1
-18,6,25,1,2,631186,1,5726.217,43.55442,1,14,1,0,45.23701,0,0,0,45.23701,0,0,0,0,0,4,63.3,13.8,0,76.1,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,76.1,8.652985,1.386294,3.811916,1
-18,6,25,1,3,631186,1,5726.217,44.55442,1,14,1,20.84202,10.94206,0,0,0,31.78408,0,0,0,1,1,4,63.3,13.8,0,76.1,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,76.1,8.652985,1.386294,3.458966,1
-18,6,25,1,4,631186,1,5726.217,45.55442,1,14,1,15.00375,9.958739,3.750938,0,506.0015,534.7149,1,0,0,1,0,4,63.3,13.8,0,76.1,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,76.1,8.652985,1.386294,6.281734,1
-18,6,25,1,5,631186,1,5726.217,46.55442,1,14,1,107.5778,11.11637,26.04871,0,0,144.7429,0,0,0,2,0,3,63.3,13.8,0,76.1,665.6,665.6,0,0,1.098612,6.500689,0,3.258096,7.886983,0,0,0,76.1,8.652985,1.098612,4.974959,1
-18,6,25,1,1,631187,1,5726.217,18.37919,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,6.9,0,86.4,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,86.4,8.652985,1.386294,,0
-18,6,25,1,2,631187,1,5726.217,19.37919,0,11,1,0,3.076572,0,0,269.7311,272.8076,1,0,0,0,0,4,80.9,6.9,0,86.4,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,86.4,8.652985,1.386294,5.608767,1
-18,6,25,1,3,631187,1,5726.217,20.37919,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,6.9,0,86.4,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,86.4,8.652985,1.386294,,0
-18,6,25,1,4,631187,1,5726.217,21.37919,0,11,1,0,0,0,0,0,0,0,0,0,0,0,4,80.9,6.9,0,86.4,665.6,665.6,0,0,1.386294,6.500689,0,3.258096,7.886983,0,0,0,86.4,8.652985,1.386294,,0
-18,6,25,1,5,631187,1,5726.217,22.37919,0,11,1,31.46144,0,0,0,238.8363,270.2977,1,1,0,0,0,3,80.9,6.9,0,86.4,665.6,665.6,0,0,1.098612,6.500689,0,3.258096,7.886983,0,0,0,86.4,8.652985,1.098612,5.599524,1
-11,6,0,0,1,631216,0,8950.146,6.431211,0,12,1,45.09415,20.94153,28.76115,0,0,94.79683,0,0,0,5,0,4,78.3,10.57626,0,100,0,475.2,1,0,1.386294,6.163736,0,0,0,0,0,0,100,9.099537,1.386294,4.551736,1
-11,6,0,0,2,631216,0,8950.146,7.431211,0,12,1,63.79073,32.81322,13.60257,0,0,110.2065,0,0,0,5,0,4,78.3,10.57626,0,100,0,475.2,1,0,1.386294,6.163736,0,0,0,0,0,0,100,9.099537,1.386294,4.702356,1
-11,6,0,0,3,631216,0,8950.146,8.431211,0,12,1,21.03492,12.93647,27.34539,0,0,61.31679,0,0,0,3,0,4,78.3,10.57626,0,100,0,475.2,1,0,1.386294,6.163736,0,0,0,0,0,0,100,9.099537,1.386294,4.116054,1
-11,6,0,0,4,631216,0,8950.146,9.431211,0,12,1,52.13449,13.25274,22.55761,0,0,87.94484,0,0,0,8,0,4,78.3,10.57626,0,100,0,475.2,1,0,1.386294,6.163736,0,0,0,0,0,0,100,9.099537,1.386294,4.47671,1
-11,6,0,0,5,631216,0,8950.146,10.43121,0,12,1,109.777,11.32076,56.58319,0,0,177.681,0,0,0,8,0,4,78.3,10.57626,0,100,0,475.2,1,0,1.386294,6.163736,0,0,0,0,0,0,100,9.099537,1.386294,5.179989,1
-11,6,0,0,1,631217,0,8950.146,10.70226,1,12,1,25.27255,.9018831,30.09911,0,0,56.27354,0,0,0,2,0,4,63.3,10.57626,0,92.6,0,475.2,1,1,1.386294,6.163736,0,0,0,0,0,0,92.6,9.099537,1.386294,4.030224,1
-11,6,0,0,2,631217,0,8950.146,11.70226,1,12,1,30.74805,3.900872,14.79578,0,0,49.4447,0,0,0,2,0,4,63.3,10.57626,0,92.6,0,475.2,1,1,1.386294,6.163736,0,0,0,0,0,0,92.6,9.099537,1.386294,3.900855,1
-11,6,0,0,3,631217,0,8950.146,12.70226,1,12,1,25.2419,3.575936,34.78334,0,0,63.60118,0,0,0,2,0,4,63.3,10.57626,0,92.6,0,475.2,1,1,1.386294,6.163736,0,0,0,0,0,0,92.6,9.099537,1.386294,4.152632,1
-11,6,0,0,4,631217,0,8950.146,13.70226,1,12,1,17.75595,10.86135,16.81904,0,0,45.43634,0,0,0,2,0,4,63.3,10.57626,0,92.6,0,475.2,1,1,1.386294,6.163736,0,0,0,0,0,0,92.6,9.099537,1.386294,3.816312,1
-11,6,0,0,5,631217,0,8950.146,14.70226,1,12,1,23.67067,.6483705,0,0,0,24.31904,0,0,0,3,0,4,63.3,10.57626,0,92.6,0,475.2,1,1,1.386294,6.163736,0,0,0,0,0,0,92.6,9.099537,1.386294,3.19126,1
-11,6,0,0,1,631218,0,8950.146,31.23614,0,14,1,11.89296,4.088206,0,0,0,15.98117,0,0,0,2,0,4,77.1,0,0,85.2,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,85.2,9.099537,1.386294,2.771411,1
-11,6,0,0,2,631218,0,8950.146,32.23614,0,14,1,22.94631,0,0,0,0,22.94631,0,0,0,2,0,4,77.1,0,0,85.2,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,85.2,9.099537,1.386294,3.133157,1
-11,6,0,0,3,631218,0,8950.146,33.23614,0,14,1,25.2419,5.363904,0,0,408.4981,439.1039,1,0,0,2,0,4,77.1,0,0,85.2,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,85.2,9.099537,1.386294,6.084736,1
-11,6,0,0,4,631218,0,8950.146,34.23614,0,14,1,13.22252,0,0,0,0,13.22252,0,0,0,1,0,4,77.1,0,0,85.2,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,85.2,9.099537,1.386294,2.581921,1
-11,6,0,0,5,631218,0,8950.146,35.23614,0,14,1,66.55231,8.576329,0,0,0,75.12865,0,0,0,3,0,4,77.1,0,0,85.2,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,85.2,9.099537,1.386294,4.319202,1
-11,6,0,0,1,631219,0,8950.146,30.43121,1,12,1,63.92468,11.33796,0,0,1334.737,1410,2,0,0,8,0,4,72.3,10.3,1,77.3,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,77.3,9.099537,1.386294,7.251345,1
-11,6,0,0,2,631219,0,8950.146,31.43121,1,12,1,93.62093,10.44057,0,0,0,104.0615,0,0,0,5,3,4,72.3,10.3,1,77.3,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,77.3,9.099537,1.386294,4.644982,1
-11,6,0,0,3,631219,0,8950.146,32.43121,1,12,1,187.6315,5.574253,32.48633,0,0,225.692,0,0,0,4,41,4,72.3,10.3,1,77.3,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,77.3,9.099537,1.386294,5.419171,1
-11,6,0,0,4,631219,0,8950.146,33.43121,1,12,1,147.3366,0,0,0,0,147.3366,0,0,0,2,24,4,72.3,10.3,1,77.3,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,77.3,9.099537,1.386294,4.99272,1
-11,6,0,0,5,631219,0,8950.146,34.43121,1,12,1,267.2384,0,27.86621,0,0,295.1046,0,0,0,2,16,4,72.3,10.3,1,77.3,0,475.2,0,0,1.386294,6.163736,0,0,0,0,0,0,77.3,9.099537,1.386294,5.68733,1
-11,6,0,1,1,631230,1,2852.535,17.67556,1,10,1,24.8212,0,0,0,0,24.8212,0,0,0,2,0,5,84,6.9,0,67,0,805.04,1,1,1.609438,6.690892,0,0,0,0,1,0,67,7.956314,1.609438,3.211698,1
-11,6,0,1,2,631230,1,2852.535,18.67556,1,10,1,0,1.605591,0,0,0,1.605591,0,0,0,0,0,5,84,6.9,0,67,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,67,7.956314,1.609438,.473492,1
-11,6,0,1,3,631230,1,2852.535,19.67556,1,10,1,0,1.584906,0,0,0,1.584906,0,0,0,0,0,5,84,6.9,0,67,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,67,7.956314,1.609438,.4605249,1
-11,6,0,1,1,631231,1,2852.535,23.07187,1,12,1,19.35213,0,0,0,0,19.35213,0,0,0,2,0,5,69.1,3.4,0,72.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,72.7,7.956314,1.609438,2.962802,1
-11,6,0,1,2,631231,1,2852.535,24.07187,1,12,1,22.66717,0,0,0,0,22.66717,0,0,0,0,0,5,69.1,3.4,0,72.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,72.7,7.956314,1.609438,3.120918,1
-11,6,0,1,3,631231,1,2852.535,25.07187,1,12,1,15.43739,9.307033,0,0,0,24.74442,0,0,0,1,0,5,69.1,3.4,0,72.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,72.7,7.956314,1.609438,3.2086,1
-11,6,0,1,1,631232,1,2852.535,50.92676,1,10,1,31.13168,4.291123,35.75936,0,0,71.18216,0,0,0,1,1,5,92.6,3.4,0,80.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,80.7,7.956314,1.609438,4.265242,1
-11,6,0,1,2,631232,1,2852.535,51.92676,1,10,1,13.6003,11.68493,0,0,0,25.28523,0,0,0,2,0,5,92.6,3.4,0,80.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,80.7,7.956314,1.609438,3.23022,1
-11,6,0,1,3,631232,1,2852.535,52.92676,1,10,1,39.79417,3.090909,35.20755,0,0,78.09262,0,0,0,2,1,5,92.6,3.4,0,80.7,0,805.04,0,0,1.609438,6.690892,0,0,0,0,1,0,80.7,7.956314,1.609438,4.357895,1
-11,6,0,1,1,631233,1,2852.535,10.34086,0,10,1,55.95288,6.752209,0,0,182.1624,244.8675,1,0,0,3,0,5,80,10.57626,0,85.2,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,85.2,7.956314,1.609438,5.500717,1
-11,6,0,1,2,631233,1,2852.535,11.34086,0,10,1,5.666792,5.723461,0,0,0,11.39025,0,0,0,1,0,5,80,10.57626,0,85.2,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,85.2,7.956314,1.609438,2.432758,1
-11,6,0,1,3,631233,1,2852.535,12.34086,0,10,1,7.54717,0,0,0,0,7.54717,0,0,0,1,0,5,80,10.57626,0,85.2,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,85.2,7.956314,1.609438,2.021173,1
-11,6,0,1,1,631234,1,2852.535,13.31964,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,81.5,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,81.5,7.956314,1.609438,,0
-11,6,0,1,2,631234,1,2852.535,14.31964,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,81.5,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,81.5,7.956314,1.609438,,0
-11,6,0,1,3,631234,1,2852.535,15.31964,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,90,10.57626,0,81.5,0,805.04,1,0,1.609438,6.690892,0,0,0,0,1,0,81.5,7.956314,1.609438,,0
-13,6,0,1,1,631238,0,9514.956,13.46201,1,10,1,38.65213,49.77205,0,0,0,88.42418,0,0,0,1,0,4,76.7,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.160726,1.386294,4.482145,1
-13,6,0,1,2,631238,0,9514.956,14.46201,1,10,1,51.85865,25.92933,0,0,0,77.78798,0,0,0,2,0,4,76.7,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.160726,1.386294,4.353987,1
-13,6,0,1,3,631238,0,9514.956,15.46201,1,10,1,37.86285,20.92133,0,0,0,58.78418,0,0,0,1,0,4,76.7,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.160726,1.386294,4.073873,1
-13,6,0,1,4,631238,0,9514.956,16.46201,1,10,1,54.40121,20.97469,0,0,0,75.3759,0,0,0,2,0,4,76.7,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.160726,1.386294,4.322488,1
-13,6,0,1,5,631238,0,9514.956,17.46201,1,10,1,70.3259,27.91767,0,0,0,98.24357,0,0,0,3,0,4,76.7,10.57626,0,81.5,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,81.5,9.160726,1.386294,4.58745,1
-13,6,0,1,1,631239,0,9514.956,14.49144,1,10,1,64.91576,5.584737,0,0,0,70.5005,0,0,0,3,0,4,86.2,3.4,0,78.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.160726,1.386294,4.25562,1
-13,6,0,1,2,631239,0,9514.956,15.49144,1,10,1,16.06241,0,0,0,0,16.06241,0,0,0,1,0,4,86.2,3.4,0,78.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.160726,1.386294,2.776482,1
-13,6,0,1,3,631239,0,9514.956,16.49144,1,10,1,14.72444,0,0,0,0,14.72444,0,0,0,1,0,4,86.2,3.4,0,78.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.160726,1.386294,2.689509,1
-13,6,0,1,4,631239,0,9514.956,17.49144,1,10,1,32.11182,1.507367,24.93389,0,0,58.55308,0,0,0,3,0,4,86.2,3.4,0,78.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.160726,1.386294,4.069934,1
-13,6,0,1,5,631239,0,9514.956,18.49144,1,10,1,5.488851,4.795883,0,0,0,10.28473,0,0,0,1,0,4,86.2,3.4,0,78.4,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,78.4,9.160726,1.386294,2.330661,1
-13,6,0,1,1,631240,0,9514.956,34.78439,0,12,1,24.28147,0,0,0,334.4896,358.7711,1,0,0,2,0,4,86.2,3.4,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.160726,1.386294,5.882684,1
-13,6,0,1,2,631240,0,9514.956,35.78439,0,12,1,11.47315,0,33.04268,0,0,44.51583,0,0,0,0,1,4,86.2,3.4,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.160726,1.386294,3.795845,1
-13,6,0,1,3,631240,0,9514.956,36.78439,0,12,1,26.504,5.502735,0,0,349.1796,381.1864,1,0,0,2,0,4,86.2,3.4,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.160726,1.386294,5.943288,1
-13,6,0,1,4,631240,0,9514.956,37.78439,0,12,1,5.666792,9.085757,0,0,0,14.75255,0,0,0,1,0,4,86.2,3.4,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.160726,1.386294,2.691416,1
-13,6,0,1,5,631240,0,9514.956,38.78439,0,12,1,28.13036,5.632933,24.91595,0,0,58.67924,0,0,0,2,0,4,86.2,3.4,0,70.5,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.5,9.160726,1.386294,4.072086,1
-13,6,0,1,1,631241,0,9514.956,34.77892,1,10,1,27.25471,6.575818,0,0,0,33.83052,0,0,0,2,0,4,89.4,17.2,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.160726,1.386294,3.521363,1
-13,6,0,1,2,631241,0,9514.956,35.77892,1,10,1,0,1.298761,0,0,0,1.298761,0,0,0,0,0,4,89.4,17.2,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.160726,1.386294,.2614107,1
-13,6,0,1,3,631241,0,9514.956,36.77892,1,10,1,31.97308,0,0,0,0,31.97308,0,0,0,1,0,4,89.4,17.2,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.160726,1.386294,3.464894,1
-13,6,0,1,4,631241,0,9514.956,37.77892,1,10,1,26.44503,2.293162,0,0,0,28.73819,0,0,0,2,0,4,89.4,17.2,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.160726,1.386294,3.358227,1
-13,6,0,1,5,631241,0,9514.956,38.77892,1,10,1,19.89708,5.893653,0,0,0,25.79074,0,0,0,2,0,4,89.4,17.2,0,92,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,92,9.160726,1.386294,3.250015,1
-10,6,50,0,1,631242,0,12531.49,14.0397,0,9,1,237.6946,1.661759,0,0,0,239.3563,0,0,0,0,21,5,90,10.57626,.1442925,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.43608,1.609438,5.477953,1
-10,6,50,0,2,631242,0,12531.49,15.0397,0,9,1,146.581,0,0,0,0,146.581,0,0,0,0,13,5,90,10.57626,.1442925,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.43608,1.609438,4.987578,1
-10,6,50,0,3,631242,0,12531.49,16.0397,0,9,1,46.31218,18.93653,0,0,444.94,510.1887,1,0,0,3,0,5,90,10.57626,.1442925,85.2,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,85.2,9.43608,1.609438,6.234781,1
-10,6,50,0,1,631243,0,12531.49,38.01232,1,9,1,18.93143,8.329827,0,0,0,27.26125,0,0,0,1,0,5,95.7,0,0,72.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,72.5,9.43608,1.609438,3.305466,1
-10,6,50,0,2,631243,0,12531.49,39.01232,1,9,1,41.55648,7.536834,0,0,0,49.09331,0,0,0,1,2,5,95.7,0,0,72.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,72.5,9.43608,1.609438,3.893723,1
-10,6,50,0,3,631243,0,12531.49,40.01232,1,9,1,67.78731,24.28816,30.87479,0,1111.835,1234.786,1,0,0,4,1,5,95.7,0,0,72.5,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,72.5,9.43608,1.609438,7.118653,1
-10,6,50,0,1,631244,0,12531.49,18.60643,1,9,1,135.8856,22.86496,29.44888,0,0,188.1994,0,0,0,8,3,5,89.4,13.8,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,90.9,9.43608,1.609438,5.237502,1
-10,6,50,0,2,631244,0,12531.49,19.60643,1,9,1,46.84549,0,0,0,0,46.84549,0,0,0,1,5,5,89.4,13.8,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,90.9,9.43608,1.609438,3.846855,1
-10,6,50,0,3,631244,0,12531.49,20.60643,1,9,1,27.1012,32.65866,0,0,0,59.75986,0,0,0,1,0,5,89.4,13.8,0,90.9,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,0,1,0,90.9,9.43608,1.609438,4.090334,1
-10,6,50,0,1,631245,0,12531.49,15.98905,1,9,1,51.3252,10.71098,0,0,0,62.03618,0,0,0,4,0,5,91.7,10.57626,.1442925,85.2,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.43608,1.609438,4.127718,1
-10,6,50,0,2,631245,0,12531.49,16.98905,1,9,1,7.555724,2.417831,0,0,0,9.973555,0,0,0,1,0,5,91.7,10.57626,.1442925,85.2,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.43608,1.609438,2.299937,1
-10,6,50,0,3,631245,0,12531.49,17.98905,1,9,1,37.04974,32.29846,0,0,687.8216,757.1698,2,0,0,1,0,5,91.7,10.57626,.1442925,85.2,1000,1000,1,1,1.609438,6.907755,0,3.931826,7.600903,0,0,0,85.2,9.43608,1.609438,6.629588,1
-10,6,50,0,1,631246,0,12531.49,42.63381,0,6,1,45.01472,0,0,0,0,45.01472,0,0,0,0,10,5,87.2,0,0,81.8,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,81.8,9.43608,1.609438,3.80699,1
-10,6,50,0,2,631246,0,12531.49,43.63381,0,6,1,11.33358,0,0,0,0,11.33358,0,0,0,0,2,5,87.2,0,0,81.8,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,81.8,9.43608,1.609438,2.42777,1
-10,6,50,0,3,631246,0,12531.49,44.63381,0,6,1,26.41509,0,34.30532,0,0,60.72041,0,0,0,0,1,5,87.2,0,0,81.8,1000,1000,0,0,1.609438,6.907755,0,3.931826,7.600903,1,0,0,81.8,9.43608,1.609438,4.10628,1
-13,6,0,1,1,631252,0,11887.98,20.8679,0,13,1,19.82161,37.53221,0,0,0,57.35382,0,0,0,4,0,3,86.7,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.383367,1.098612,4.04924,1
-13,6,0,1,2,631252,0,11887.98,21.8679,0,13,1,290.9592,55.12621,0,0,0,346.0854,0,0,0,8,0,3,86.7,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.383367,1.098612,5.846685,1
-13,6,0,1,3,631252,0,11887.98,22.8679,0,13,1,0,1.682793,0,0,0,1.682793,0,0,0,0,0,3,86.7,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.383367,1.098612,.5204551,1
-13,6,0,1,4,631252,0,11887.98,23.8679,0,13,1,0,0,0,0,0,0,0,0,0,0,0,3,86.7,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.383367,1.098612,,0
-13,6,0,1,5,631252,0,11887.98,24.8679,0,13,1,0,2.058319,0,0,0,2.058319,0,0,0,0,0,3,86.7,6.9,0,65.9,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,65.9,9.383367,1.098612,.7218897,1
-13,6,0,1,1,631253,0,11887.98,45.31691,1,12,1,44.59861,25.6442,41.22894,0,0,111.4718,0,0,0,5,0,3,72.9,24.1,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.383367,1.098612,4.713771,1
-13,6,0,1,2,631253,0,11887.98,46.31691,1,12,1,0,24.78201,0,0,0,24.78201,0,0,0,0,0,3,72.9,24.1,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.383367,1.098612,3.210118,1
-13,6,0,1,3,631253,0,11887.98,47.31691,1,12,1,44.17333,24.50568,0,0,0,68.67901,0,0,0,0,19,3,72.9,24.1,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.383367,1.098612,4.229444,1
-13,6,0,1,4,631253,0,11887.98,48.31691,1,12,1,0,6.800151,0,0,0,6.800151,0,0,0,0,0,3,72.9,24.1,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.383367,1.098612,1.916945,1
-13,6,0,1,5,631253,0,11887.98,49.31691,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,72.9,24.1,1,67,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,67,9.383367,1.098612,,0
-13,6,0,1,1,631254,0,11887.98,50.18754,0,12,1,14.8662,138.999,53.30525,0,0,207.1705,0,0,0,1,0,3,71.8,24.1,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.383367,1.098612,5.333542,1
-13,6,0,1,2,631254,0,11887.98,51.18754,0,12,1,0,132.056,4.671868,0,0,136.7279,0,0,0,0,0,3,71.8,24.1,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.383367,1.098612,4.917993,1
-13,6,0,1,3,631254,0,11887.98,52.18754,0,12,1,0,112.8523,4.202776,0,0,117.0551,0,0,0,0,0,3,71.8,24.1,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.383367,1.098612,4.762645,1
-13,6,0,1,4,631254,0,11887.98,53.18754,0,12,1,23.80053,134.9641,59.42577,0,0,218.1904,0,0,0,2,0,3,71.8,24.1,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.383367,1.098612,5.385368,1
-13,6,0,1,5,631254,0,11887.98,54.18754,0,12,1,0,148.4563,1.629503,0,0,150.0858,0,0,0,0,0,3,71.8,24.1,0,68.2,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,1,0,0,68.2,9.383367,1.098612,5.011207,1
-6,6,25,1,1,631256,0,2313.364,43.92608,0,14,1,17.77402,34.33347,0,0,0,52.10749,0,0,0,1,0,1,97.9,10.3,0,98.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,98.9,7.74689,0,3.953309,1
-6,6,25,1,2,631256,0,2313.364,44.92608,0,14,1,35.68717,36.97798,0,0,0,72.66515,0,0,0,3,0,1,97.9,10.3,0,98.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,98.9,7.74689,0,4.285862,1
-6,6,25,1,3,631256,0,2313.364,45.92608,0,14,1,43.94464,34.58477,0,0,662.2838,740.8132,1,0,0,4,0,1,97.9,10.3,0,98.9,750,750,0,0,0,6.620073,0,3.258096,8.006368,0,0,0,98.9,7.74689,0,6.607749,1
-13,6,0,1,1,631260,0,6735.316,54.75975,0,12,1,63.94615,2.734539,0,0,0,66.68069,0,0,0,4,7,2,83.5,10.3,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.815269,.6931472,4.199915,1
-13,6,0,1,2,631260,0,6735.316,55.75975,0,12,1,142.8032,12.00227,0,0,638.2886,793.0941,1,0,0,1,14,2,83.5,10.3,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.815269,.6931472,6.675942,1
-13,6,0,1,3,631260,0,6735.316,56.75975,0,12,1,0,0,0,0,0,0,1,0,0,3,1,2,83.5,10.3,0,75,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,75,8.815269,.6931472,,0
-13,6,0,1,1,631261,0,6735.316,52.78302,1,15,1,312.5789,223.5423,63.10476,0,413.5465,1012.772,2,0,0,17,19,2,62.8,31,1,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.815269,.6931472,6.920447,1
-13,6,0,1,2,631261,0,6735.316,53.78302,1,15,1,716.6604,291.8965,0,124.6694,0,1008.557,0,0,6,17,41,2,62.8,31,1,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.815269,.6931472,6.916276,1
-13,6,0,1,3,631261,0,6735.316,54.78302,1,15,1,375.6432,284.0206,102.916,82.33276,2545.455,3308.034,3,0,4,21,11,2,62.8,31,1,54.5,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,1,0,0,54.5,8.815269,.6931472,8.10411,1
-11,6,0,1,1,631274,0,12312.34,36.61876,0,9,1,244.6043,8.252222,0,0,0,252.8565,0,0,0,15,18,4,85.6,3.4,0,81.8,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,81.8,9.418439,1.386294,5.532822,1
-11,6,0,1,2,631274,0,12312.34,37.61876,0,9,1,108.5801,1.867882,0,0,0,110.448,0,0,0,2,1,4,85.6,3.4,0,81.8,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,81.8,9.418439,1.386294,4.704545,1
-11,6,0,1,3,631274,0,12312.34,38.61876,0,9,1,46.7128,0,0,0,0,46.7128,0,0,0,1,0,4,85.6,3.4,0,81.8,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,81.8,9.418439,1.386294,3.844018,1
-11,6,0,1,1,631275,0,12312.34,33.7358,1,10,1,41.47271,11.10876,0,0,0,52.58146,0,0,0,3,0,4,78.7,13.8,1,68.2,0,60,0,0,1.386294,4.094345,0,0,0,1,0,0,68.2,9.418439,1.386294,3.962364,1
-11,6,0,1,2,631275,0,12312.34,34.7358,1,10,1,96.05164,33.82688,0,0,0,129.8785,0,0,0,3,0,4,78.7,13.8,1,68.2,0,60,0,0,1.386294,4.094345,0,0,0,1,0,0,68.2,9.418439,1.386294,4.8666,1
-11,6,0,1,3,631275,0,12312.34,35.7358,1,10,1,105.8824,28.10381,32.79585,0,1123.644,1290.426,1,0,0,6,0,4,78.7,13.8,1,68.2,0,60,0,0,1.386294,4.094345,0,0,0,1,0,0,68.2,9.418439,1.386294,7.162727,1
-11,6,0,1,1,631276,0,12312.34,13.92471,0,10,1,51.62928,0,0,0,0,51.62928,0,0,0,6,0,4,95,10.57626,1,88.9,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,88.9,9.418439,1.386294,3.944089,1
-11,6,0,1,2,631276,0,12312.34,14.92471,0,10,1,21.26044,4.138193,0,0,0,25.39863,0,0,0,3,0,4,95,10.57626,1,88.9,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,88.9,9.418439,1.386294,3.234695,1
-11,6,0,1,3,631276,0,12312.34,15.92471,0,10,1,128.3737,5.626297,0,0,0,134,0,0,0,8,0,4,95,10.57626,1,88.9,0,60,1,0,1.386294,4.094345,0,0,0,1,0,0,88.9,9.418439,1.386294,4.89784,1
-11,6,0,1,1,631277,0,12312.34,16.97467,1,10,1,22.42912,13.11892,0,0,0,35.54803,0,0,0,2,0,4,92,3.4,0,90.9,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,90.9,9.418439,1.386294,3.570885,1
-11,6,0,1,2,631277,0,12312.34,17.97467,1,10,1,31.89066,34.51025,0,0,0,66.40091,0,0,0,3,0,4,92,3.4,0,90.9,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,90.9,9.418439,1.386294,4.195711,1
-11,6,0,1,3,631277,0,12312.34,18.97467,1,10,1,45.32872,34.7128,0,0,0,80.04152,0,0,0,4,0,4,92,3.4,0,90.9,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,90.9,9.418439,1.386294,4.382545,1
-11,6,0,0,1,631278,1,3690.22,60.14511,0,10,1,130.8879,0,32.93039,0,0,163.8183,0,0,0,4,0,6,92,3.4,0,80.7,0,0,0,0,1.791759,0,0,0,0,0,1,0,80.7,8.213713,1.791759,5.098758,1
-11,6,0,0,2,631278,1,3690.22,61.14511,0,10,1,25.88147,1.676669,24.006,0,0,51.56414,0,0,0,4,0,6,92,3.4,0,80.7,0,0,0,0,1.791759,0,0,0,0,0,1,0,80.7,8.213713,1.791759,3.942827,1
-11,6,0,0,3,631278,1,3690.22,62.14511,0,10,1,16.23816,7.560893,0,0,0,23.79905,0,0,0,0,0,6,92,3.4,0,80.7,0,0,0,0,1.791759,0,0,0,0,0,1,0,80.7,8.213713,1.791759,3.169646,1
-11,6,0,0,1,631279,.5112414,6735.316,20.21903,0,10.62774,1,49.604,4.501876,0,0,0,54.10588,0,0,0,2,0,1,50.5,10.57626,.1442925,56,0,0,0,0,0,0,0,0,0,0,0,0,56,8.815269,0,3.990943,1
-11,6,0,0,2,631279,.5112414,6735.316,21.21903,0,10.62774,1,0,0,0,0,0,0,0,0,0,0,0,1,50.5,10.57626,.1442925,56,0,0,0,0,0,0,0,0,0,0,0,0,56,8.815269,0,,0
-11,6,0,0,3,631279,.5112414,6735.316,22.21903,0,10.62774,1,12.85521,8.389716,0,0,360.2842,381.5291,1,0,0,3,0,1,50.5,10.57626,.1442925,56,0,0,0,0,0,0,0,0,0,0,0,0,56,8.815269,0,5.944187,1
-11,6,0,0,1,631280,1,3690.22,15.34292,0,9,1,30.84619,5.627345,0,0,0,36.47353,0,0,0,0,0,6,79.8,6.9,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,8.213713,1.791759,3.596587,1
-11,6,0,0,2,631280,1,3690.22,16.34292,0,9,1,7.501875,4.459865,0,0,0,11.96174,0,0,0,2,0,6,79.8,6.9,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,8.213713,1.791759,2.481713,1
-11,6,0,0,3,631280,1,3690.22,17.34292,0,9,1,0,0,0,0,0,0,0,0,0,0,0,6,79.8,6.9,0,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,8.213713,1.791759,,0
-11,6,0,0,1,631281,1,3690.22,22.14647,0,10,1,14.58941,1.642351,0,0,162.1509,178.3827,1,1,0,1,0,6,75,0,0,87.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,87.5,8.213713,1.791759,5.183931,1
-11,6,0,0,2,631281,1,3690.22,23.14647,0,10,1,28.50713,1.669167,0,0,0,30.17629,0,0,0,0,0,6,75,0,0,87.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,87.5,8.213713,1.791759,3.407057,1
-11,6,0,0,3,631281,1,3690.22,24.14647,0,10,1,17.59134,2.486468,0,0,0,20.07781,0,0,0,0,0,6,75,0,0,87.5,0,0,0,0,1.791759,0,0,0,0,0,0,0,87.5,8.213713,1.791759,2.999615,1
-11,6,0,0,1,631282,1,3690.22,52.58043,1,9,1,138.8078,15.08128,0,0,0,153.8891,0,0,0,16,0,6,92,10.3,1,59.1,0,0,0,0,1.791759,0,0,0,0,0,1,0,59.1,8.213713,1.791759,5.036232,1
-11,6,0,0,2,631282,1,3690.22,53.58043,1,9,1,94.89873,23.12078,0,0,0,118.0195,0,0,0,9,0,6,92,10.3,1,59.1,0,0,0,0,1.791759,0,0,0,0,0,1,0,59.1,8.213713,1.791759,4.77085,1
-11,6,0,0,3,631282,1,3690.22,54.58043,1,9,1,87.9567,60.9912,0,0,0,148.9479,0,0,0,10,0,6,92,10.3,1,59.1,0,0,0,0,1.791759,0,0,0,0,0,1,0,59.1,8.213713,1.791759,5.003597,1
-11,6,0,0,1,631285,1,1190.476,24.04654,1,12,1,0,1.667361,0,0,0,1.667361,0,0,0,0,0,3,86.2,3.4,0,77.3,0,329.16,0,0,1.098612,5.796544,0,0,0,1,0,0,77.3,7.082948,1.098612,.5112424,1
-11,6,0,0,2,631285,1,1190.476,25.04654,1,12,1,16.12903,0,0,0,0,16.12903,0,0,0,1,0,3,86.2,3.4,0,77.3,0,329.16,0,0,1.098612,5.796544,0,0,0,1,0,0,77.3,7.082948,1.098612,2.780621,1
-11,6,0,0,3,631285,1,1190.476,26.04654,1,12,1,45.66982,13.97158,0,0,0,59.64141,0,0,0,4,0,3,86.2,3.4,0,77.3,0,329.16,0,0,1.098612,5.796544,0,0,0,1,0,0,77.3,7.082948,1.098612,4.08835,1
-11,6,0,1,1,631288,0,9949.82,27.20055,0,12,1,363.0627,8.502314,29.44888,0,0,401.0139,0,0,0,5,35,4,77.7,17.2,0,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.20541,1.386294,5.993996,1
-11,6,0,1,2,631288,0,9949.82,28.20055,0,12,1,120.8916,10.39668,0,0,0,131.2883,0,0,0,4,7,5,77.7,17.2,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.20541,1.609438,4.877395,1
-11,6,0,1,3,631288,0,9949.82,29.20055,0,12,1,200,4.727273,24.01372,0,0,228.741,0,0,0,4,15,5,77.7,17.2,0,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.20541,1.609438,5.43259,1
-11,6,0,1,1,631289,0,9949.82,5.779603,1,11,1,158.6033,0,0,0,0,158.6033,0,0,0,0,28,4,95,10.57626,0,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,9.20541,1.386294,5.066406,1
-11,6,0,1,2,631289,0,9949.82,6.779603,1,11,1,67.24594,11.24669,0,0,0,78.49263,0,0,0,3,6,5,95,10.57626,0,81.5,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.5,9.20541,1.609438,4.363005,1
-11,6,0,1,3,631289,0,9949.82,7.779603,1,11,1,89.87993,3.859348,24.01372,0,0,117.753,0,0,0,1,15,5,95,10.57626,0,81.5,0,0,1,1,1.609438,0,0,0,0,0,0,0,81.5,9.20541,1.609438,4.768589,1
-11,6,0,1,1,631290,0,9949.82,26.33813,1,11,1,206.9836,16.25578,31.55238,0,451.83,706.6218,1,0,0,2,32,4,78.2,3.4,1,71.6,0,0,0,0,1.386294,0,0,0,0,0,0,0,71.6,9.20541,1.386294,6.560495,1
-11,6,0,1,2,631290,0,9949.82,27.33813,1,11,1,243.6721,2.697393,0,0,0,246.3695,0,0,0,0,29,5,78.2,3.4,1,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.20541,1.609438,5.506832,1
-11,6,0,1,3,631290,0,9949.82,28.33813,1,11,1,184.2196,3.413379,0,0,0,187.6329,0,0,0,1,17,5,78.2,3.4,1,71.6,0,0,0,0,1.609438,0,0,0,0,0,0,0,71.6,9.20541,1.609438,5.234488,1
-11,6,0,1,1,631291,0,9949.82,3.405886,1,11,1,228.4392,7.888094,0,0,0,236.3273,0,0,0,4,27,4,77.40034,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.20541,1.386294,5.465218,1
-11,6,0,1,2,631291,0,9949.82,4.405886,1,11,1,94.82433,6.664148,0,0,0,101.4885,0,0,0,3,11,5,77.40034,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,9.20541,1.609438,4.619946,1
-11,6,0,1,3,631291,0,9949.82,5.405886,1,11,1,79.58833,1.554031,0,0,0,81.14236,0,0,0,1,13,5,77.40034,10.57626,0,88.9,0,0,1,1,1.609438,0,0,0,0,0,0,0,88.9,9.20541,1.609438,4.396205,1
-11,6,0,1,1,631296,1,6278.034,15.37303,1,11,1,30.89293,0,28.35379,0,0,59.24672,0,0,0,1,1,8,74.3,13.8,0,54.5,0,0,1,1,2.079442,0,0,0,0,1,0,0,54.5,8.744971,2.079442,4.08171,1
-11,6,0,1,2,631296,1,6278.034,16.37303,1,11,1,17.08428,0,0,0,0,17.08428,0,0,0,3,0,8,74.3,13.8,0,54.5,0,0,1,1,2.079442,0,0,0,0,1,0,0,54.5,8.744971,2.079442,2.838159,1
-11,6,0,1,3,631296,1,6278.034,17.37303,1,11,1,30.44983,2.058824,29.41176,0,0,61.92041,0,0,0,4,1,8,74.3,13.8,0,54.5,0,0,1,1,2.079442,0,0,0,0,1,0,0,54.5,8.744971,2.079442,4.12585,1
-11,6,0,1,1,631297,1,6278.034,38.21766,0,7,1,35.12484,2.725349,25.39145,0,0,63.24164,0,0,0,4,1,8,54.3,10.3,1,39.8,0,0,0,0,2.079442,0,0,0,0,1,0,0,39.8,8.744971,2.079442,4.146963,1
-11,6,0,1,2,631297,1,6278.034,39.21766,0,7,1,33.78891,0,15.18603,0,237.2817,286.2567,1,0,0,0,1,8,54.3,10.3,1,39.8,0,0,0,0,2.079442,0,0,0,0,1,0,0,39.8,8.744971,2.079442,5.656889,1
-11,6,0,1,3,631297,1,6278.034,40.21766,0,7,1,28.3737,4.913495,24.22145,0,0,57.50865,0,0,0,2,1,8,54.3,10.3,1,39.8,0,0,0,0,2.079442,0,0,0,0,1,0,0,39.8,8.744971,2.079442,4.051935,1
-11,6,0,1,1,631298,1,6278.034,10.83915,1,11,1,28.35379,1.92975,0,0,0,30.28354,0,0,0,2,0,8,90,10.57626,0,74.1,0,0,1,1,2.079442,0,0,0,0,0,1,0,74.1,8.744971,2.079442,3.410604,1
-11,6,0,1,2,631298,1,6278.034,11.83915,1,11,1,5.31511,0,0,0,0,5.31511,0,0,0,1,0,8,90,10.57626,0,74.1,0,0,1,1,2.079442,0,0,0,0,0,1,0,74.1,8.744971,2.079442,1.670554,1
-11,6,0,1,3,631298,1,6278.034,12.83915,1,11,1,19.37716,2.249135,24.22145,0,0,45.84775,0,0,0,2,1,8,90,10.57626,0,74.1,0,0,1,1,2.079442,0,0,0,0,0,1,0,74.1,8.744971,2.079442,3.825326,1
-11,6,0,1,1,631299,1,6278.034,6.707735,1,11,1,10.15658,0,0,0,0,10.15658,0,0,0,0,0,8,80,10.57626,1,74.1,0,0,1,1,2.079442,0,0,0,0,1,0,0,74.1,8.744971,2.079442,2.318122,1
-11,6,0,1,2,631299,1,6278.034,7.707735,1,11,1,42.90053,0,0,0,0,42.90053,0,0,0,4,0,8,80,10.57626,1,74.1,0,0,1,1,2.079442,0,0,0,0,1,0,0,74.1,8.744971,2.079442,3.758884,1
-11,6,0,1,3,631299,1,6278.034,8.707734,1,11,1,12.80277,0,0,0,0,12.80277,0,0,0,3,0,8,80,10.57626,1,74.1,0,0,1,1,2.079442,0,0,0,0,1,0,0,74.1,8.744971,2.079442,2.549661,1
-11,6,0,1,1,631300,1,6278.034,14.44216,1,11,1,10.57977,0,0,0,0,10.57977,0,0,0,0,0,8,73.4,6.9,1,69.3,0,0,1,1,2.079442,0,0,0,0,1,0,0,69.3,8.744971,2.079442,2.358944,1
-11,6,0,1,2,631300,1,6278.034,15.44216,1,11,1,134.3964,0,25.05695,0,0,159.4533,0,0,0,9,1,8,73.4,6.9,1,69.3,0,0,1,1,2.079442,0,0,0,0,1,0,0,69.3,8.744971,2.079442,5.071751,1
-11,6,0,1,3,631300,1,6278.034,16.44216,1,11,1,84.08305,29.25606,13.84083,0,0,127.1799,0,0,0,8,1,8,73.4,6.9,1,69.3,0,0,1,1,2.079442,0,0,0,0,1,0,0,69.3,8.744971,2.079442,4.845603,1
-11,6,0,1,1,631301,1,6278.034,34.15469,1,11,1,0,0,0,0,0,0,0,0,0,0,0,8,76.1,10.3,0,51.1,0,0,0,0,2.079442,0,0,0,0,1,0,0,51.1,8.744971,2.079442,,0
-11,6,0,1,2,631301,1,6278.034,35.15469,1,11,1,31.89066,0,0,0,0,31.89066,0,0,0,6,0,8,76.1,10.3,0,51.1,0,0,0,0,2.079442,0,0,0,0,1,0,0,51.1,8.744971,2.079442,3.462313,1
-11,6,0,1,3,631301,1,6278.034,36.15469,1,11,1,15.22491,43.96194,0,0,0,59.18685,0,0,0,3,0,8,76.1,10.3,0,51.1,0,0,0,0,2.079442,0,0,0,0,1,0,0,51.1,8.744971,2.079442,4.080699,1
-11,6,0,1,1,631302,1,6278.034,12.5859,1,11,1,14.81168,4.731274,0,0,0,19.54295,0,0,0,1,0,8,61.7,10.57626,0,77.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,77.8,8.744971,2.079442,2.972615,1
-11,6,0,1,2,631302,1,6278.034,13.5859,1,11,1,7.593014,0,26.57555,0,0,34.16856,0,0,0,0,1,8,61.7,10.57626,0,77.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,77.8,8.744971,2.079442,3.531306,1
-11,6,0,1,3,631302,1,6278.034,14.5859,1,11,1,38.75433,1.730104,0,0,0,40.48443,0,0,0,2,0,8,61.7,10.57626,0,77.8,0,0,1,1,2.079442,0,0,0,0,1,0,0,77.8,8.744971,2.079442,3.700917,1
-13,6,0,1,1,631308,1,1989.247,3.173169,1,12,1,0,4.020313,0,0,109.6064,113.6267,1,1,0,0,0,3,77.40034,10.57626,0,85.2,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,85.2,7.596014,1.098612,4.732919,1
-13,6,0,1,2,631308,1,1989.247,4.173169,1,12,.1530055,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,85.2,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,85.2,7.596014,1.098612,,0
-13,6,0,1,1,631309,1,1989.247,24.57221,1,12,1,70.24968,3.118917,0,0,0,73.3686,0,0,0,4,0,3,42,6.9,1,63.6,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,63.6,7.596014,1.098612,4.295496,1
-13,6,0,1,2,631309,1,1989.247,25.57221,1,12,1,72.13364,5.550494,27.33485,0,857.631,962.65,1,0,0,5,0,3,42,6.9,1,63.6,300,300,0,0,1.098612,5.703783,1,4.564348,5.755076,1,0,0,63.6,7.596014,1.098612,6.86969,1
-13,6,0,1,3,631309,1,1989.247,26.57221,1,12,1,36.33218,13.3391,0,0,191.6955,241.3668,1,0,0,3,0,1,42,6.9,1,63.6,300,300,0,0,0,5.703783,1,4.564348,5.755076,1,0,0,63.6,7.596014,0,5.486318,1
-11,6,0,1,1,631310,1,6735.316,20.47091,0,9,1,50.7829,2.32755,0,0,0,53.11045,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,3.972374,1
-11,6,0,1,2,631310,1,6735.316,21.47091,0,9,1,0,1.708428,0,0,0,1.708428,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,.5355738,1
-11,6,0,1,3,631310,1,6735.316,22.47091,0,9,1,0,0,0,0,0,0,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,,0
-11,6,0,1,1,631311,1,6735.316,18.51335,1,8,1,0,0,0,0,0,0,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,,0
-11,6,0,1,1,631312,1,6735.316,17.59617,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,77.1,0,0,55.7,0,0,1,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,,0
-11,6,0,1,2,631312,1,6735.316,18.59617,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,,0
-11,6,0,1,3,631312,1,6735.316,19.59617,0,0,1,31.14187,0,0,0,0,31.14187,0,0,0,0,0,9,77.1,0,0,55.7,0,0,0,0,2.197225,0,0,0,0,1,0,0,55.7,8.815269,2.197225,3.438553,1
-11,6,0,1,1,631313,1,6735.316,12.02464,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,58.3,10.57626,1,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,1,2,631313,1,6735.316,13.02464,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,58.3,10.57626,1,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,1,3,631313,1,6735.316,14.02464,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,58.3,10.57626,1,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,1,1,631314,1,6735.316,15.03901,0,0,1,12.69573,2.539145,0,0,0,15.23487,0,0,0,0,0,9,58.3,10.57626,1,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,2.723587,1
-11,6,0,1,2,631314,1,6735.316,16.03901,0,0,1,0,0,0,56.94761,0,0,0,0,1,0,0,9,58.3,10.57626,1,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,1,3,631314,1,6735.316,17.03901,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,58.3,10.57626,1,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,1,1,631315,1,6735.316,16.55852,1,0,1,50.35971,13.43631,0,0,315.7004,379.4964,1,0,0,0,0,9,77.1,3.4,0,51.1,0,0,1,1,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,5.938845,1
-11,6,0,1,2,631315,1,6735.316,17.55852,1,0,1,52.01215,0,32.64996,0,0,84.66211,0,0,0,0,1,9,77.1,3.4,0,51.1,0,0,1,1,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,4.438668,1
-11,6,0,1,3,631315,1,6735.316,18.55852,1,0,1,35.98616,2.49827,38.97232,0,0,77.45675,0,0,0,2,1,9,77.1,3.4,0,51.1,0,0,0,0,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,4.34972,1
-11,6,0,0,1,631316,.5112414,6735.316,29.59617,1,7,1,32.93039,5.210505,0,0,0,38.14089,0,0,0,4,0,4,79.8,10.3,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,8.815269,1.386294,3.641287,1
-11,6,0,0,2,631316,.5112414,6735.316,30.59617,1,7,1,9.752439,4.793698,0,0,0,14.54614,0,0,0,0,0,4,79.8,10.3,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,8.815269,1.386294,2.677325,1
-11,6,0,0,3,631316,.5112414,6735.316,31.59617,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,10.3,0,83,0,0,0,0,1.386294,0,0,0,0,1,0,0,83,8.815269,1.386294,,0
-11,6,0,1,1,631317,1,6735.316,50.05065,1,0,1,64.7482,16.57639,0,0,0,81.32458,0,0,0,5,0,9,67.6,10.3,0,40.9,0,0,0,0,2.197225,0,0,0,0,1,0,0,40.9,8.815269,2.197225,4.398448,1
-11,6,0,1,2,631317,1,6735.316,51.05065,1,0,1,137.0539,41.22627,36.44647,0,0,214.7267,0,0,0,4,1,9,67.6,10.3,0,40.9,0,0,0,0,2.197225,0,0,0,0,1,0,0,40.9,8.815269,2.197225,5.369366,1
-11,6,0,1,3,631317,1,6735.316,52.05065,1,0,1,47.05882,82.61938,0,0,0,129.6782,0,0,0,3,0,9,67.6,10.3,0,40.9,0,0,0,0,2.197225,0,0,0,0,1,0,0,40.9,8.815269,2.197225,4.865056,1
-11,6,0,1,1,631318,1,6735.316,19.5729,0,9,1,0,0,0,0,0,0,0,0,0,0,0,9,77.1,0,0,51.1,0,0,0,0,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,,0
-11,6,0,1,2,631318,1,6735.316,20.5729,0,9,1,0,14.2369,0,22.77904,1382.878,1397.115,3,0,1,0,0,9,77.1,0,0,51.1,0,0,0,0,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,7.242165,1
-11,6,0,1,3,631318,1,6735.316,21.5729,0,9,1,11.24568,0,0,51.90311,181.6609,192.9066,1,0,2,0,0,9,77.1,0,0,51.1,0,0,0,0,2.197225,0,0,0,0,1,0,0,51.1,8.815269,2.197225,5.262206,1
-13,6,0,1,1,631319,0,6735.316,49.62628,1,12,1,1.965602,33.04668,0,0,0,35.01228,0,0,0,1,0,1,70.7,31,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.815269,0,3.555699,1
-13,6,0,1,2,631319,0,6735.316,50.62628,1,12,1,33.72835,55.35551,0,0,0,89.08386,0,0,0,16,0,1,70.7,31,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.815269,0,4.489578,1
-13,6,0,1,3,631319,0,6735.316,51.62628,1,12,1,410.5877,19.9875,0,0,0,430.5752,0,0,0,16,28,1,70.7,31,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.815269,0,6.065122,1
-13,6,0,1,4,631319,0,6735.316,52.62628,1,12,1,163.1658,160.2776,0,0,0,323.4434,0,0,0,17,8,1,70.7,31,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.815269,0,5.779024,1
-13,6,0,1,5,631319,0,6735.316,53.62628,1,12,1,305.4804,220.3112,35.39581,0,0,561.1874,0,0,0,11,25,1,70.7,31,0,73.9,150,150,0,0,0,5.010635,1,4.564348,5.061929,1,0,0,73.9,8.815269,0,6.330055,1
-11,6,0,1,1,631331,1,5319.648,29.19644,1,12,1,69.28747,8.230958,27.02703,0,0,104.5455,0,0,0,3,1,7,55.9,20.7,0,40.9,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,40.9,8.57935,1.94591,4.649622,1
-11,6,0,1,2,631331,1,5319.648,30.19644,1,12,1,96.17138,14.81313,0,0,11.39471,122.3792,1,1,0,2,0,7,55.9,20.7,0,40.9,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,40.9,8.57935,1.94591,4.807125,1
-11,6,0,1,3,631331,1,5319.648,31.19644,1,12,1,66.27762,23.28053,0,0,0,89.55815,0,0,0,4,0,7,55.9,20.7,0,40.9,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,40.9,8.57935,1.94591,4.494888,1
-11,6,0,1,4,631331,1,5319.648,32.19644,1,12,1,64.14104,14.79745,28.50713,0,0,107.4456,0,0,0,2,1,8,55.9,20.7,0,40.9,0,206.44,0,0,2.079442,5.33001,0,0,0,1,0,0,40.9,8.57935,2.079442,4.676985,1
-11,6,0,1,5,631331,1,5319.648,33.19644,1,12,1,84.23545,21.88769,0,0,0,106.1231,0,0,0,3,0,8,55.9,20.7,0,40.9,0,206.44,0,0,2.079442,5.33001,0,0,0,1,0,0,40.9,8.57935,2.079442,4.6646,1
-11,6,0,1,1,631332,1,5319.648,6.743327,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,75,10.57626,0,59.3,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,59.3,8.57935,1.94591,,0
-11,6,0,1,2,631332,1,5319.648,7.743327,1,12,1,36.00729,3.988149,0,0,0,39.99544,0,0,0,1,0,7,75,10.57626,0,59.3,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,59.3,8.57935,1.94591,3.688766,1
-11,6,0,1,3,631332,1,5319.648,8.743326,1,12,1,95.45644,8.107545,0,0,743.6432,847.2072,2,0,0,8,0,7,75,10.57626,0,59.3,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,59.3,8.57935,1.94591,6.741945,1
-11,6,0,1,4,631332,1,5319.648,9.743326,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,75,10.57626,0,59.3,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,59.3,8.57935,2.079442,,0
-11,6,0,1,5,631332,1,5319.648,10.74333,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,75,10.57626,0,59.3,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,59.3,8.57935,2.079442,,0
-11,6,0,1,1,631333,1,5319.648,11.41136,1,12,1,9.82801,0,27.02703,0,0,36.85504,0,0,0,0,1,7,66.7,10.57626,0,63,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,3.606992,1
-11,6,0,1,2,631333,1,5319.648,12.41136,1,12,1,48.76937,2.620784,0,0,0,51.39016,0,0,0,3,0,7,66.7,10.57626,0,63,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,3.939447,1
-11,6,0,1,3,631333,1,5319.648,13.41136,1,12,1,132.9721,19.61234,30.84619,0,4315.131,4498.562,2,0,0,7,0,7,66.7,10.57626,0,63,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,8.411513,1
-11,6,0,1,4,631333,1,5319.648,14.41136,1,12,1,67.14178,15.71643,0,0,0,82.85822,0,0,0,5,0,8,66.7,10.57626,0,63,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,63,8.57935,2.079442,4.417131,1
-11,6,0,1,5,631333,1,5319.648,15.41136,1,12,1,100.1353,44.82409,25.71042,0,0,170.6698,0,0,0,4,0,8,66.7,10.57626,0,63,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,63,8.57935,2.079442,5.139731,1
-11,6,0,1,1,631334,1,5319.648,9.382615,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,68.3,10.57626,0,63,0,206.44,1,0,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,,0
-11,6,0,1,2,631334,1,5319.648,10.38262,0,12,1,70.19143,4.216044,0,0,0,74.40748,0,0,0,5,0,7,68.3,10.57626,0,63,0,206.44,1,0,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,4.309556,1
-11,6,0,1,3,631334,1,5319.648,11.38262,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,68.3,10.57626,0,63,0,206.44,1,0,1.94591,5.33001,0,0,0,1,0,0,63,8.57935,1.94591,,0
-11,6,0,1,4,631334,1,5319.648,12.38262,0,12,1,60.76519,4.782445,0,0,0,65.54764,0,0,0,2,0,8,68.3,10.57626,0,63,0,206.44,1,0,2.079442,5.33001,0,0,0,1,0,0,63,8.57935,2.079442,4.182777,1
-11,6,0,1,5,631334,1,5319.648,13.38262,0,12,1,17.59134,0,0,0,0,17.59134,0,0,0,1,0,8,68.3,10.57626,0,63,0,206.44,1,0,2.079442,5.33001,0,0,0,1,0,0,63,8.57935,2.079442,2.867407,1
-11,6,0,1,1,631335,1,5319.648,32.31211,0,9,1,35.38084,1.149877,0,0,0,36.53071,0,0,0,1,1,7,78.7,3.4,0,68.2,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,68.2,8.57935,1.94591,3.598153,1
-11,6,0,1,2,631335,1,5319.648,33.31211,0,9,1,19.59891,0,0,0,356.4266,376.0255,1,0,0,1,0,7,78.7,3.4,0,68.2,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,68.2,8.57935,1.94591,5.929657,1
-11,6,0,1,3,631335,1,5319.648,34.31211,0,9,1,0,0,0,0,0,0,0,0,0,0,0,7,78.7,3.4,0,68.2,0,206.44,0,0,1.94591,5.33001,0,0,0,1,0,0,68.2,8.57935,1.94591,,0
-11,6,0,1,4,631335,1,5319.648,35.31211,0,9,1,84.3961,18.9985,0,0,0,103.3946,0,0,0,2,0,8,78.7,3.4,0,68.2,0,206.44,0,0,2.079442,5.33001,0,0,0,1,0,0,68.2,8.57935,2.079442,4.638553,1
-11,6,0,1,5,631335,1,5319.648,36.31211,0,9,1,49.05277,4.634641,0,0,263.1935,316.8809,1,0,0,2,0,8,78.7,3.4,0,68.2,0,206.44,0,0,2.079442,5.33001,0,0,0,1,0,0,68.2,8.57935,2.079442,5.758526,1
-11,6,0,1,1,631336,1,5319.648,8.221766,1,12,1,20.14742,2.810811,0,0,0,22.95823,0,0,0,1,0,7,71.7,10.57626,0,55.6,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,55.6,8.57935,1.94591,3.133677,1
-11,6,0,1,2,631336,1,5319.648,9.221766,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,71.7,10.57626,0,55.6,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,55.6,8.57935,1.94591,,0
-11,6,0,1,3,631336,1,5319.648,10.22177,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,71.7,10.57626,0,55.6,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,55.6,8.57935,1.94591,,0
-11,6,0,1,4,631336,1,5319.648,11.22177,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,71.7,10.57626,0,55.6,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,55.6,8.57935,2.079442,,0
-11,6,0,1,5,631336,1,5319.648,12.22177,1,12,1,17.59134,0,0,0,0,17.59134,0,0,0,1,0,8,71.7,10.57626,0,55.6,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,55.6,8.57935,2.079442,2.867407,1
-11,6,0,1,1,631337,1,5319.648,5.497604,1,12,1,32.43243,1.405405,0,0,345.946,379.7838,1,0,0,0,0,7,75,10.57626,0,74.1,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,74.1,8.57935,1.94591,5.939602,1
-11,6,0,1,2,631337,1,5319.648,6.497604,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,75,10.57626,0,74.1,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,74.1,8.57935,1.94591,,0
-11,6,0,1,3,631337,1,5319.648,7.497604,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,75,10.57626,0,74.1,0,206.44,1,1,1.94591,5.33001,0,0,0,1,0,0,74.1,8.57935,1.94591,,0
-11,6,0,1,4,631337,1,5319.648,8.497604,1,12,1,43.88597,3.938485,0,0,0,47.82446,0,0,0,3,0,8,75,10.57626,0,74.1,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,74.1,8.57935,2.079442,3.867537,1
-11,6,0,1,5,631337,1,5319.648,9.497604,1,12,1,29.76996,6.529093,0,0,0,36.29905,0,0,0,1,0,8,75,10.57626,0,74.1,0,206.44,1,1,2.079442,5.33001,0,0,0,1,0,0,74.1,8.57935,2.079442,3.591792,1
-13,6,0,0,1,631338,1,9940.604,5.629021,1,10,1,10.51746,0,0,0,0,10.51746,0,0,0,0,0,4,90,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.204484,1.386294,2.353037,1
-13,6,0,0,2,631338,1,9940.604,6.629021,1,10,1,49.86777,0,0,0,800.5289,850.3967,1,0,0,4,0,4,90,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.204484,1.386294,6.745703,1
-13,6,0,0,3,631338,1,9940.604,7.629021,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,90,10.57626,0,74.1,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,1,0,0,74.1,9.204484,1.386294,,0
-13,6,0,0,1,631340,1,9940.604,27.73717,0,9,1,28.18679,0,0,0,0,28.18679,0,0,0,1,0,4,80.9,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.204484,1.386294,3.338853,1
-13,6,0,0,2,631340,1,9940.604,28.73717,0,9,1,69.89044,0,0,0,0,69.89044,0,0,0,3,0,4,80.9,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.204484,1.386294,4.246929,1
-13,6,0,0,3,631340,1,9940.604,29.73717,0,9,1,81.3036,0,0,0,0,81.3036,0,0,0,4,0,4,80.9,3.4,0,69.3,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,69.3,9.204484,1.386294,4.39819,1
-13,6,0,0,1,631341,1,9940.604,28.77481,1,10,1,116.1127,21.30837,0,0,0,137.4211,0,0,0,6,0,4,82.4,3.4,0,63.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,63.6,9.204484,1.386294,4.92305,1
-13,6,0,0,2,631341,1,9940.604,29.77481,1,10,1,91.36758,0,0,0,0,91.36758,0,0,0,5,0,4,82.4,3.4,0,63.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,63.6,9.204484,1.386294,4.514891,1
-13,6,0,0,3,631341,1,9940.604,30.77481,1,10,1,24.5283,2.024014,0,0,0,26.55231,0,0,0,2,0,4,82.4,3.4,0,63.6,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,1,0,0,63.6,9.204484,1.386294,3.279117,1
-11,6,0,1,1,631367,0,10634.41,41.39631,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,85.1,6.9,0,81.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,81.8,9.271944,1.098612,,0
-11,6,0,1,2,631367,0,10634.41,42.39631,0,11,1,11.33358,16.40347,0,0,0,27.73706,0,0,0,3,0,3,85.1,6.9,0,81.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,81.8,9.271944,1.098612,3.322769,1
-11,6,0,1,3,631367,0,10634.41,43.39631,0,11,1,30.18868,11.80789,24.01372,0,0,66.01029,0,0,0,5,0,3,85.1,6.9,0,81.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,81.8,9.271944,1.098612,4.189811,1
-11,6,0,1,1,631368,0,10634.41,39.15127,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,24.1,0,56.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,56.8,9.271944,1.098612,,0
-11,6,0,1,2,631368,0,10634.41,40.15127,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.8,24.1,0,56.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,56.8,9.271944,1.098612,,0
-11,6,0,1,3,631368,0,10634.41,41.15127,1,12,1,33.61921,10.18868,40.01029,0,0,83.81818,0,0,0,4,0,3,88.8,24.1,0,56.8,0,144.36,0,0,1.098612,4.97231,0,0,0,0,0,0,56.8,9.271944,1.098612,4.42865,1
-11,6,0,1,1,631370,0,10634.41,12.71732,0,12,1,27.34539,0,0,0,0,27.34539,0,0,0,2,0,3,91.7,10.57626,0,92.6,0,144.36,1,0,1.098612,4.97231,0,0,0,0,0,0,92.6,9.271944,1.098612,3.308548,1
-11,6,0,1,2,631370,0,10634.41,13.71732,0,12,1,25.31167,4.998111,0,0,0,30.30978,0,0,0,4,0,3,91.7,10.57626,0,92.6,0,144.36,1,0,1.098612,4.97231,0,0,0,0,0,0,92.6,9.271944,1.098612,3.411471,1
-11,6,0,1,3,631370,0,10634.41,14.71732,0,12,1,13.72213,4.425386,0,0,0,18.14751,0,0,0,3,0,3,91.7,10.57626,0,92.6,0,144.36,1,0,1.098612,4.97231,0,0,0,0,0,0,92.6,9.271944,1.098612,2.898534,1
-13,6,0,1,1,631379,1,6906.158,14.16016,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,75,8.840314,1.791759,,0
-13,6,0,1,2,631379,1,6906.158,15.16016,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,75,8.840314,1.791759,,0
-13,6,0,1,3,631379,1,6906.158,16.16016,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,75,8.840314,1.791759,,0
-13,6,0,1,4,631379,1,6906.158,17.16016,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92,0,0,75,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,75,8.840314,1.791759,,0
-13,6,0,1,5,631379,1,6906.158,18.16016,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,92,0,0,75,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,75,8.840314,1.791759,,0
-13,6,0,1,1,631380,1,6906.158,16.70363,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,0,0,58,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,8.840314,1.791759,,0
-13,6,0,1,2,631380,1,6906.158,17.70363,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,0,0,58,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,8.840314,1.791759,,0
-13,6,0,1,3,631380,1,6906.158,18.70363,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,0,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,8.840314,1.791759,,0
-13,6,0,1,4,631380,1,6906.158,19.70363,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,0,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,8.840314,1.791759,,0
-13,6,0,1,5,631380,1,6906.158,20.70363,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,81.9,0,0,58,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,58,8.840314,1.791759,,0
-13,6,0,1,1,631381,1,6906.158,50.141,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,10.3,1,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.840314,1.791759,,0
-13,6,0,1,2,631381,1,6906.158,51.141,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,10.3,1,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.840314,1.791759,,0
-13,6,0,1,3,631381,1,6906.158,52.141,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,10.3,1,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.840314,1.791759,,0
-13,6,0,1,4,631381,1,6906.158,53.141,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,10.3,1,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.840314,1.791759,,0
-13,6,0,1,5,631381,1,6906.158,54.141,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6,70.7,10.3,1,59.1,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.840314,1.791759,,0
-13,6,0,1,1,631382,1,6906.158,12.14784,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.840314,1.791759,,0
-13,6,0,1,2,631382,1,6906.158,13.14784,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.840314,1.791759,,0
-13,6,0,1,3,631382,1,6906.158,14.14784,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.840314,1.791759,,0
-13,6,0,1,4,631382,1,6906.158,15.14784,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.840314,1.791759,,0
-13,6,0,1,5,631382,1,6906.158,16.14784,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.3,10.57626,0,77.8,450,450,1,0,1.791759,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.840314,1.791759,,0
-13,6,0,1,1,631383,1,6906.158,43.71252,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.8,10.3,1,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.840314,1.791759,,0
-13,6,0,1,2,631383,1,6906.158,44.71252,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,88.8,10.3,1,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.840314,1.791759,,0
-13,6,0,1,3,631383,1,6906.158,45.71252,1,12,1,0,0,0,0,1636.932,1636.932,2,0,0,0,0,6,88.8,10.3,1,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.840314,1.791759,7.400579,1
-13,6,0,1,4,631383,1,6906.158,46.71252,1,12,1,6.376594,6.901725,0,0,436.9843,450.2626,0,0,0,1,0,6,88.8,10.3,1,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.840314,1.791759,6.109831,1
-13,6,0,1,5,631383,1,6906.158,47.71252,1,12,1,36.53586,41.70162,0,0,1150.203,1228.44,1,0,0,4,0,6,88.8,10.3,1,61.4,450,450,0,0,1.791759,6.109248,1,4.564348,6.160541,1,0,0,61.4,8.840314,1.791759,7.113501,1
-18,6,25,0,1,631462,1,6735.316,7.000684,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,10.57626,.1442925,100,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,,0
-18,6,25,0,2,631462,1,6735.316,8.000685,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,10.57626,.1442925,100,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,,0
-18,6,25,0,3,631462,1,6735.316,9.000685,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,93.3,10.57626,.1442925,100,750,750,1,1,1.791759,6.620073,0,3.258096,8.006368,0,0,0,100,8.815269,1.791759,,0
-11,6,0,0,1,631465,1,1190.476,6.154688,1,12,1,8.336807,4.272614,0,0,0,12.60942,0,0,0,2,0,3,100,10.57626,.1442925,92.6,0,329.16,1,1,1.098612,5.796544,0,0,0,1,0,0,92.6,7.082948,1.098612,2.534444,1
-11,6,0,0,2,631465,1,1190.476,7.154688,1,12,1,7.501875,2.674419,0,0,0,10.17629,0,0,0,2,0,3,100,10.57626,.1442925,92.6,0,329.16,1,1,1.098612,5.796544,0,0,0,1,0,0,92.6,7.082948,1.098612,2.320061,1
-11,6,0,0,3,631465,1,1190.476,8.154689,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,100,10.57626,.1442925,92.6,0,329.16,1,1,1.098612,5.796544,0,0,0,1,0,0,92.6,7.082948,1.098612,,0
-11,6,0,0,1,631466,1,3690.22,7.520876,0,9,1,10.00417,3.463943,0,0,0,13.46811,0,0,0,2,0,6,100,10.57626,.1442925,64.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,64.8,8.213713,1.791759,2.600325,1
-11,6,0,0,2,631466,1,3690.22,8.520876,0,9,1,22.88072,8.210803,0,0,0,31.09152,0,0,0,1,0,6,100,10.57626,.1442925,64.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,64.8,8.213713,1.791759,3.436935,1
-11,6,0,0,3,631466,1,3690.22,9.520876,0,9,1,15.89987,4.008796,0,0,0,19.90866,0,0,0,0,0,6,100,10.57626,.1442925,64.8,0,0,1,0,1.791759,0,0,0,0,0,0,0,64.8,8.213713,1.791759,2.991155,1
-11,6,0,0,1,631468,1,6735.316,10.94045,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,.1442925,77.8,0,0,1,1,2.197225,0,0,0,0,0,0,0,77.8,8.815269,2.197225,,0
-11,6,0,0,2,631468,1,6735.316,11.94045,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,.1442925,77.8,0,0,1,1,2.197225,0,0,0,0,0,0,0,77.8,8.815269,2.197225,,0
-11,6,0,0,3,631468,1,6735.316,12.94045,1,0,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,.1442925,77.8,0,0,1,1,2.197225,0,0,0,0,0,0,0,77.8,8.815269,2.197225,,0
-11,6,0,0,1,631469,.5112414,6735.316,8.906229,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,.1442925,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,8.815269,1.386294,,0
-11,6,0,0,2,631469,.5112414,6735.316,9.906229,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,.1442925,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,8.815269,1.386294,,0
-11,6,0,0,3,631469,.5112414,6735.316,10.90623,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,91.7,10.57626,.1442925,81.5,0,0,1,1,1.386294,0,0,0,0,0,0,0,81.5,8.815269,1.386294,,0
-11,6,0,0,1,631472,1,6735.316,8.479124,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,90,10.57626,0,70.4,0,0,1,1,2.302585,0,0,0,0,1,0,0,70.4,8.815269,2.302585,,0
-11,6,0,0,2,631472,1,6735.316,9.479124,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,0,3,631472,1,6735.316,10.47912,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,0,4,631472,1,6735.316,11.47912,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,90,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-11,6,0,0,5,631472,1,6735.316,12.47912,1,12,1,8.304499,0,0,0,0,8.304499,0,0,0,1,0,9,90,10.57626,0,70.4,0,0,1,1,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,2.116797,1
-11,6,0,0,1,631473,1,6735.316,5.812457,0,12,1,0,2.982544,0,0,0,2.982544,0,0,0,0,0,10,88.3,10.57626,0,70.4,0,0,1,0,2.302585,0,0,0,0,1,0,0,70.4,8.815269,2.302585,1.092777,1
-11,6,0,0,2,631473,1,6735.316,6.812457,0,12,1,6.915629,3.499308,0,0,0,10.41494,0,0,0,1,0,9,88.3,10.57626,0,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,2.343241,1
-11,6,0,0,3,631473,1,6735.316,7.812457,0,12,1,7.617435,3.829877,0,0,0,11.44731,0,0,0,1,0,9,88.3,10.57626,0,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,2.437755,1
-11,6,0,0,4,631473,1,6735.316,8.812457,0,12,1,6.454062,5.125285,0,0,0,11.57935,0,0,0,1,0,9,88.3,10.57626,0,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,2.449223,1
-11,6,0,0,5,631473,1,6735.316,9.812457,0,12,1,0,0,0,0,0,0,0,0,0,0,0,9,88.3,10.57626,0,70.4,0,0,1,0,2.197225,0,0,0,0,1,0,0,70.4,8.815269,2.197225,,0
-16,6,95,1,1,631487,0,12826.42,36.22177,0,18,1,10.57977,0,0,0,0,10.57977,0,0,0,1,0,4,77.7,17.2,1,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.45934,1.386294,2.358944,1
-16,6,95,1,2,631487,0,12826.42,37.22177,0,18,1,34.16856,24.54442,32.64996,0,0,91.36295,0,0,0,2,1,4,77.7,17.2,1,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.45934,1.386294,4.51484,1
-16,6,95,1,3,631487,0,12826.42,38.22177,0,18,1,5.190311,0,0,0,0,5.190311,0,0,0,1,0,4,77.7,17.2,1,68.2,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,68.2,9.45934,1.386294,1.646794,1
-11,6,0,1,1,631489,0,10837.69,2.2423,1,12,1,22.85231,2.107491,0,0,0,24.9598,0,0,0,4,0,3,77.40034,10.57626,0,74.1,0,24,1,1,1.098612,3.178054,0,0,0,0,0,0,74.1,9.290877,1.098612,3.217266,1
-11,6,0,1,2,631489,0,10837.69,3.2423,1,12,1,20.50114,4.28246,0,0,0,24.7836,0,0,0,3,0,3,77.40034,10.57626,0,74.1,0,24,1,1,1.098612,3.178054,0,0,0,0,0,0,74.1,9.290877,1.098612,3.210182,1
-11,6,0,1,3,631489,0,10837.69,4.2423,1,12,1,60.20761,28.92042,0,0,0,89.12803,0,0,0,8,0,3,77.40034,10.57626,0,74.1,0,24,1,1,1.098612,3.178054,0,0,0,0,0,0,74.1,9.290877,1.098612,4.490074,1
-11,6,0,0,1,631492,0,6219.941,.2956879,1,12,1,116.9475,19.37562,59.44995,0,0,195.773,0,0,0,11,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,8.735677,1.386294,5.276956,1
-11,6,0,0,2,631492,0,6219.941,1.295688,1,12,1,51.85865,22.71684,33.40064,0,0,107.9761,0,0,0,7,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,8.735677,1.386294,4.68191,1
-11,6,0,0,3,631492,0,6219.941,2.295688,1,12,1,0,19.0366,17.50105,0,0,36.53765,0,0,0,0,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,8.735677,1.386294,3.598343,1
-11,6,0,0,4,631492,0,6219.941,3.295688,1,12,1,46.84549,7.65017,0,0,0,54.49566,0,0,0,2,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,8.735677,1.386294,3.998121,1
-11,6,0,0,5,631492,0,6219.941,4.295688,1,12,1,17.83876,13.12178,0,0,0,30.96055,0,0,0,3,0,4,77.40034,10.57626,0,100,0,0,1,1,1.386294,0,0,0,0,0,0,0,100,8.735677,1.386294,3.432714,1
-11,6,0,1,1,631495,0,4633.431,20.39425,0,10.62774,1,49.05848,18.96432,0,0,0,68.0228,0,0,0,4,0,1,94.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.441269,0,4.219843,1
-11,6,0,1,2,631495,0,4633.431,21.39425,0,10.62774,1,73.42818,29.05461,0,0,0,102.4828,0,0,0,5,0,1,94.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.441269,0,4.629695,1
-11,6,0,1,3,631495,0,4633.431,22.39425,0,10.62774,1,78.67059,10.07573,0,0,0,88.74632,0,0,0,4,0,1,94.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.441269,0,4.485782,1
-11,6,0,1,4,631495,0,4633.431,23.39425,0,10.62774,1,421.9872,1.507367,0,0,3135.625,3559.12,1,0,0,6,14,2,94.1,3.4,0,86.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,86.4,8.441269,.6931472,8.177269,1
-11,6,0,1,5,631495,0,4633.431,24.39425,0,10.62774,1,12.34991,5.622642,0,0,0,17.97256,0,0,0,0,3,1,94.1,3.4,0,86.4,0,0,0,0,0,0,0,0,0,0,0,0,86.4,8.441269,0,2.888846,1
-6,6,25,0,1,631497,1,1759.531,25.3525,1,12,1,0,0,0,0,213.0823,213.0823,1,0,0,0,0,3,75.5,6.9,0,46.6,750,0,0,0,1.098612,0,0,3.258096,8.006368,0,0,0,46.6,7.473371,1.098612,5.361678,1
-6,6,25,0,2,631497,1,1759.531,26.3525,1,12,1,19.2749,0,25.24094,0,211.5649,256.0808,1,0,0,0,1,3,75.5,6.9,0,46.6,750,0,0,0,1.098612,0,0,3.258096,8.006368,0,0,0,46.6,7.473371,1.098612,5.545493,1
-6,6,25,0,3,631497,1,1759.531,27.3525,1,12,1,16.82793,0,15.56584,0,326.4619,358.8557,1,0,0,0,1,4,75.5,6.9,0,46.6,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,46.6,7.473371,1.386294,5.88292,1
-6,6,25,0,4,631497,1,1759.531,28.3525,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75.5,6.9,0,46.6,750,0,0,0,1.609438,0,0,3.258096,8.006368,0,0,0,46.6,7.473371,1.609438,,0
-6,6,25,0,5,631497,1,1759.531,29.3525,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,75.5,6.9,0,46.6,750,0,0,0,1.609438,0,0,3.258096,8.006368,0,0,0,46.6,7.473371,1.609438,,0
-6,6,25,0,1,631498,1,1759.531,25.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,0,0,63.6,750,0,0,0,1.098612,0,0,3.258096,8.006368,0,0,0,63.6,7.473371,1.098612,,0
-6,6,25,0,2,631498,1,1759.531,26.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,79.8,0,0,63.6,750,0,0,0,1.098612,0,0,3.258096,8.006368,0,0,0,63.6,7.473371,1.098612,,0
-6,6,25,0,3,631498,1,1759.531,27.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,79.8,0,0,63.6,750,0,0,0,1.386294,0,0,3.258096,8.006368,0,0,0,63.6,7.473371,1.386294,,0
-6,6,25,0,4,631498,1,1759.531,28.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,0,0,63.6,750,0,0,0,1.609438,0,0,3.258096,8.006368,0,0,0,63.6,7.473371,1.609438,,0
-6,6,25,0,5,631498,1,1759.531,29.10335,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,79.8,0,0,63.6,750,0,0,0,1.609438,0,0,3.258096,8.006368,0,0,0,63.6,7.473371,1.609438,,0
-6,6,25,0,1,631499,1,1759.531,.7665982,0,12,1,8.424182,0,0,0,0,8.424182,0,0,0,0,0,3,77.40034,10.57626,0,85.2,750,0,1,0,1.098612,0,0,3.258096,8.006368,0,0,0,85.2,7.473371,1.098612,2.131106,1
-6,6,25,0,2,631499,1,1759.531,1.766598,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,85.2,750,0,1,0,1.098612,0,0,3.258096,8.006368,0,0,0,85.2,7.473371,1.098612,,0
-6,6,25,0,3,631499,1,1759.531,2.766598,0,12,1,8.413967,3.517038,0,0,0,11.93101,0,0,0,2,0,4,77.40034,10.57626,0,85.2,750,0,1,0,1.386294,0,0,3.258096,8.006368,0,0,0,85.2,7.473371,1.386294,2.479141,1
-6,6,25,0,4,631499,1,1759.531,3.766598,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,0,0,0,85.2,7.473371,1.609438,,0
-6,6,25,0,5,631499,1,1759.531,4.766598,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,750,0,1,0,1.609438,0,0,3.258096,8.006368,0,0,0,85.2,7.473371,1.609438,,0
-11,6,0,0,1,631502,1,6735.316,17.59891,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,59,3.4,0,52.3,0,152.88,1,1,1.386294,5.029653,0,0,0,0,0,0,52.3,8.815269,1.386294,,0
-11,6,0,0,2,631502,1,6735.316,18.59891,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,59,3.4,0,52.3,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,0,52.3,8.815269,1.386294,,0
-11,6,0,0,3,631502,1,6735.316,19.59891,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,59,3.4,0,52.3,0,152.88,0,0,1.386294,5.029653,0,0,0,0,0,0,52.3,8.815269,1.386294,,0
-17,6,25,0,1,631503,0,8273.9,.5393566,1,8,1,14.8662,3.017839,0,0,0,17.88404,0,0,0,2,0,4,77.40034,10.57626,0,66.7,650,650,1,1,1.386294,6.476973,0,3.258096,7.863267,0,0,0,66.7,9.020982,1.386294,2.883909,1
-17,6,25,0,2,631503,0,8273.9,1.539357,1,8,1,19.73382,0,0,0,0,19.73382,0,0,0,0,0,4,77.40034,10.57626,0,66.7,650,650,1,1,1.386294,6.476973,0,3.258096,7.863267,0,0,0,66.7,9.020982,1.386294,2.982334,1
-17,6,25,0,3,631503,0,8273.9,2.539357,1,8,1,0,2.52419,0,0,0,2.52419,0,0,0,0,0,4,77.40034,10.57626,0,66.7,650,650,1,1,1.386294,6.476973,0,3.258096,7.863267,0,0,0,66.7,9.020982,1.386294,.9259203,1
-17,6,25,0,4,631503,0,8273.9,3.539357,1,8,1,30.22289,0,0,0,0,30.22289,0,0,0,0,0,4,77.40034,10.57626,0,66.7,650,650,1,1,1.386294,6.476973,0,3.258096,7.863267,0,0,0,66.7,9.020982,1.386294,3.4086,1
-17,6,25,0,5,631503,0,8273.9,4.539357,1,8,1,3.430532,0,0,0,0,3.430532,0,0,0,1,0,5,77.40034,10.57626,0,66.7,650,650,1,1,1.609438,6.476973,0,3.258096,7.863267,0,0,0,66.7,9.020982,1.609438,1.232715,1
-13,6,0,1,1,631504,0,6735.316,.2354552,0,12,1,25.27255,2.636274,0,0,0,27.90882,0,0,0,4,0,3,77.40034,10.57626,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.815269,1.098612,3.328943,1
-13,6,0,1,2,631504,0,6735.316,1.235455,0,12,1,42.2212,21.34007,0,0,0,63.56127,0,0,0,7,0,3,77.40034,10.57626,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.815269,1.098612,4.152004,1
-13,6,0,1,3,631504,0,6735.316,2.235455,0,12,1,77.4085,73.57173,0,0,0,150.9802,0,0,0,13,0,3,77.40034,10.57626,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.815269,1.098612,5.017149,1
-13,6,0,1,4,631504,0,6735.316,3.235455,0,12,1,71.0238,50.61579,0,0,238.3831,360.0227,1,0,0,7,0,3,77.40034,10.57626,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.815269,1.098612,5.886167,1
-13,6,0,1,5,631504,0,6735.316,4.235455,0,12,1,219.554,46.54889,0,0,0,266.1029,0,0,0,9,25,3,77.40034,10.57626,0,100,450,450,1,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,100,8.815269,1.098612,5.583883,1
-17,6,25,1,1,631505,1,4638.709,.6105407,0,11,1,20.81269,5.540139,0,0,128.3449,154.6977,1,1,0,1,0,7,77.40034,10.57626,1,59.3,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,0,0,0,59.3,8.442407,1.94591,5.041473,1
-17,6,25,1,2,631505,1,4638.709,1.610541,0,11,1,9.178522,4.703993,0,0,0,13.88251,0,0,0,0,0,7,77.40034,10.57626,1,59.3,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,0,0,0,59.3,8.442407,1.94591,2.63063,1
-17,6,25,1,3,631505,1,4638.709,2.610541,0,11,1,11.77955,0,0,0,0,11.77955,0,0,0,0,0,7,77.40034,10.57626,1,59.3,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,0,0,0,59.3,8.442407,1.94591,2.466365,1
-17,6,25,1,4,631505,1,4638.709,3.610541,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,1,59.3,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,0,0,0,59.3,8.442407,1.94591,,0
-17,6,25,1,5,631505,1,4638.709,4.610541,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,1,59.3,426.45,426.45,1,0,1.94591,6.055495,0,3.258096,7.44179,0,0,0,59.3,8.442407,1.94591,,0
-11,6,0,1,1,631517,1,3700.973,2.726899,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,66.7,0,168.4,1,1,1.791759,5.126342,0,0,0,0,0,0,66.7,8.216621,1.791759,,0
-11,6,0,1,2,631517,1,3700.973,3.726899,1,12,1,13.12828,0,0,0,0,13.12828,0,0,0,3,0,6,77.40034,10.57626,0,66.7,0,168.4,1,1,1.791759,5.126342,0,0,0,0,0,0,66.7,8.216621,1.791759,2.574769,1
-11,6,0,1,3,631517,1,3700.973,4.726899,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,66.7,0,168.4,1,1,1.94591,5.126342,0,0,0,0,0,0,66.7,8.216621,1.94591,,0
-11,6,0,0,1,631518,0,11577.06,42.68036,1,9,1,80.81667,104.4534,47.21395,0,0,232.4841,0,0,0,5,1,2,72.9,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.356867,.6931472,5.448822,1
-11,6,0,0,2,631518,0,11577.06,43.68036,1,9,1,152.6718,122.6641,0,0,0,275.3359,0,0,0,8,0,2,72.9,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.356867,.6931472,5.617992,1
-11,6,0,0,3,631518,0,11577.06,44.68036,1,9,1,214.9826,105.4669,21.60279,0,256.0976,598.1498,1,0,0,12,0,2,72.9,10.3,0,65.9,0,0,0,0,.6931472,0,0,0,0,0,0,0,65.9,9.356867,.6931472,6.393841,1
-13,6,0,1,1,631521,0,7438.3,2.652977,1,9,1,0,1.028354,0,0,0,1.028354,0,0,0,0,0,6,77.40034,10.57626,0,92.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.914532,1.791759,.0279593,1
-13,6,0,1,2,631521,0,7438.3,3.652977,1,9,1,7.593014,4.745634,0,0,0,12.33865,0,0,0,1,0,6,77.40034,10.57626,0,92.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.914532,1.791759,2.512737,1
-13,6,0,1,3,631521,0,7438.3,4.652977,1,9,1,3.806228,0,0,0,0,3.806228,0,0,0,0,0,6,77.40034,10.57626,0,92.6,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,92.6,8.914532,1.791759,1.336639,1
-11,6,0,1,1,631523,1,7187.404,2.316222,0,5,1,0,0,0,0,0,0,0,0,0,0,0,13,77.40034,10.57626,0,85.2,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,85.2,8.880224,2.564949,,0
-11,6,0,1,2,631523,1,7187.404,3.316222,0,5,1,0,0,0,0,0,0,0,0,0,0,0,13,77.40034,10.57626,0,85.2,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,85.2,8.880224,2.564949,,0
-11,6,0,1,3,631523,1,7187.404,4.316222,0,5,1,0,0,0,0,0,0,0,0,0,0,0,14,77.40034,10.57626,0,85.2,0,106.56,1,0,2.639057,4.668708,0,0,0,0,0,0,85.2,8.880224,2.639057,,0
-11,6,0,1,1,631526,1,1049.667,16.27105,0,7,1,0,0,0,0,0,0,0,0,0,0,0,2,96.3,3.4,0,76.1,0,171.6,1,0,.6931472,5.145166,0,0,0,0,0,0,76.1,6.957181,.6931472,,0
-11,6,0,1,2,631526,1,1049.667,17.27105,0,7,1,0,0,0,0,0,0,0,0,0,0,0,2,96.3,3.4,0,76.1,0,171.6,1,0,.6931472,5.145166,0,0,0,0,0,0,76.1,6.957181,.6931472,,0
-11,6,0,1,3,631526,1,1049.667,18.27105,0,7,1,13.84083,0,0,0,0,13.84083,0,0,0,1,0,2,96.3,3.4,0,76.1,0,171.6,0,0,.6931472,5.145166,0,0,0,0,0,0,76.1,6.957181,.6931472,2.627623,1
-10,6,50,1,1,631529,1,10221.2,2.034223,1,16,1,8.507018,0,0,0,0,8.507018,0,0,0,1,0,3,77.40034,10.57626,0,59.3,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,59.3,9.232317,1.098612,2.140892,1
-10,6,50,1,2,631529,1,10221.2,3.034223,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,59.3,9.232317,1.098612,,0
-10,6,50,1,3,631529,1,10221.2,4.034223,1,16,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,59.3,1000,1000,1,1,1.098612,6.907755,0,3.931826,7.600903,0,0,0,59.3,9.232317,1.098612,,0
-11,6,0,1,1,631531,0,14529.44,33.68925,1,12,1,186.6272,0,0,0,0,186.6272,0,0,0,5,0,4,54.3,27.6,1,45.5,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,45.5,9.584002,1.386294,5.229113,1
-11,6,0,1,2,631531,0,14529.44,34.68925,1,12,1,200.8352,0,0,0,0,200.8352,0,0,0,4,15,4,54.3,27.6,1,45.5,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,45.5,9.584002,1.386294,5.302485,1
-11,6,0,1,3,631531,0,14529.44,35.68925,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,54.3,27.6,1,45.5,0,60,0,0,1.386294,4.094345,0,0,0,0,0,0,45.5,9.584002,1.386294,,0
-11,6,0,1,1,631532,0,14529.44,12.13689,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,83.3,10.57626,0,81.5,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,,0
-11,6,0,1,2,631532,0,14529.44,13.13689,1,12,1,11.76917,0,0,0,0,11.76917,0,0,0,1,0,4,83.3,10.57626,0,81.5,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,2.465484,1
-11,6,0,1,3,631532,0,14529.44,14.13689,1,12,1,4.152249,0,0,0,0,4.152249,0,0,0,1,0,4,83.3,10.57626,0,81.5,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,1.42365,1
-11,6,0,1,1,631533,0,14529.44,10.39562,0,12,1,72.36564,0,0,0,368.5992,440.9649,1,0,0,3,0,4,66.7,10.57626,0,81.5,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,6.088965,1
-11,6,0,1,2,631533,0,14529.44,11.39562,0,12,1,128.7016,0,13.28778,0,0,141.9894,0,0,0,2,13,4,66.7,10.57626,0,81.5,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,4.955752,1
-11,6,0,1,3,631533,0,14529.44,12.39562,0,12,1,32.17993,5.103806,0,0,0,37.28374,0,0,0,4,0,4,66.7,10.57626,0,81.5,0,60,1,0,1.386294,4.094345,0,0,0,0,0,0,81.5,9.584002,1.386294,3.618557,1
-11,6,0,0,1,631536,.5112414,6247.824,60.87885,1,12,1,41.8959,5.471858,0,0,0,47.36775,0,0,0,3,0,2,89.9,20.7,0,84.1,0,86.4,0,0,.6931472,4.458988,0,0,0,0,0,0,84.1,8.740149,.6931472,3.857942,1
-11,6,0,0,2,631536,.5112414,6247.824,61.87885,1,12,1,29.2331,9.635535,41.76158,0,0,80.63022,0,0,0,3,1,2,89.9,20.7,0,84.1,0,86.4,0,0,.6931472,4.458988,0,0,0,0,0,0,84.1,8.740149,.6931472,4.389874,1
-11,6,0,0,3,631536,.5112414,6247.824,62.87885,1,12,1,23.18339,4.84083,0,0,0,28.02422,0,0,0,5,0,2,89.9,20.7,0,84.1,0,86.4,0,0,.6931472,4.458988,0,0,0,0,0,0,84.1,8.740149,.6931472,3.333069,1
-11,6,0,0,1,631537,.5112414,6247.824,17.21561,0,12,1,101.1426,0,0,0,0,101.1426,0,0,0,4,0,2,84.6,10.3,0,79.5,0,86.4,1,0,.6931472,4.458988,0,0,0,0,0,0,79.5,8.740149,.6931472,4.616531,1
-11,6,0,0,2,631537,.5112414,6247.824,18.21561,0,12,1,26.57555,6.58694,0,0,0,33.16249,0,0,0,4,0,2,84.6,10.3,0,79.5,0,86.4,0,0,.6931472,4.458988,0,0,0,0,0,0,79.5,8.740149,.6931472,3.50142,1
-11,6,0,0,3,631537,.5112414,6247.824,19.21561,0,12,1,14.53287,0,0,0,0,14.53287,0,0,0,2,0,2,84.6,10.3,0,79.5,0,86.4,0,0,.6931472,4.458988,0,0,0,0,0,0,79.5,8.740149,.6931472,2.676413,1
-11,6,0,0,1,631540,.5112414,6735.316,2.340863,1,7,1,30.0125,4.376824,0,0,0,34.38933,0,0,0,3,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,3.537746,1
-11,6,0,0,2,631540,.5112414,6735.316,3.340863,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,,0
-11,6,0,0,3,631540,.5112414,6735.316,4.340862,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,,0
-17,6,25,0,1,631561,0,7391.193,17.88912,1,16,1,25.2419,1.682793,35.1788,0,0,62.10349,0,0,0,2,0,5,72.3,13.8,0,80.7,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.908179,1.609438,4.128802,1
-17,6,25,0,2,631561,0,7391.193,18.88912,1,16,1,0,0,0,0,0,0,0,0,0,0,0,5,72.3,13.8,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.908179,1.609438,,0
-17,6,25,0,3,631561,0,7391.193,19.88912,1,16,1,0,0,38.5283,0,0,38.5283,0,0,0,0,0,5,72.3,13.8,0,80.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,80.7,8.908179,1.609438,3.651393,1
-17,6,25,0,1,631562,0,7391.193,12.28747,0,16,1,56.37358,6.205301,0,0,301.83,364.4089,1,0,0,1,0,5,80,10.57626,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.908179,1.609438,5.898277,1
-17,6,25,0,2,631562,0,7391.193,13.28747,0,16,1,142.0476,0,0,0,0,142.0476,0,0,0,2,0,5,80,10.57626,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.908179,1.609438,4.956162,1
-17,6,25,0,3,631562,0,7391.193,14.28747,0,16,1,0,3.413379,0,0,0,3.413379,0,0,0,0,0,5,80,10.57626,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.908179,1.609438,1.227703,1
-17,6,25,0,1,631563,0,7391.193,41.41547,0,15,1,135.0442,0,0,0,0,135.0442,0,0,0,3,0,5,86.2,0,0,97.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,97.7,8.908179,1.609438,4.905602,1
-17,6,25,0,2,631563,0,7391.193,42.41547,0,15,1,0,7.347941,0,0,0,7.347941,0,0,0,0,0,5,86.2,0,0,97.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,97.7,8.908179,1.609438,1.99442,1
-17,6,25,0,3,631563,0,7391.193,43.41547,0,15,1,73.41338,11.73242,0,0,0,85.1458,0,0,0,6,0,5,86.2,0,0,97.7,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,97.7,8.908179,1.609438,4.444365,1
-17,6,25,0,1,631564,0,7391.193,38.58727,1,16,1,45.01472,41.12326,36.86159,0,0,122.9996,0,0,0,5,0,5,65.4,24.1,0,61.4,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.908179,1.609438,4.812181,1
-17,6,25,0,2,631564,0,7391.193,39.58727,1,16,1,25.31167,11.37136,0,0,0,36.68304,0,0,0,3,0,5,65.4,24.1,0,61.4,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.908179,1.609438,3.602314,1
-17,6,25,0,3,631564,0,7391.193,40.58727,1,16,1,83.36192,19.60549,48.02744,0,0,150.9949,0,0,0,2,1,5,65.4,24.1,0,61.4,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,61.4,8.908179,1.609438,5.017246,1
-17,6,25,0,1,631565,0,7391.193,16.39973,1,16,1,0,7.623055,0,0,0,7.623055,0,0,0,0,0,5,72.3,10.3,0,75,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,75,8.908179,1.609438,2.031177,1
-17,6,25,0,2,631565,0,7391.193,17.39973,1,16,1,13.22252,9.236872,0,0,0,22.45939,0,0,0,1,0,5,72.3,10.3,0,75,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,75,8.908179,1.609438,3.111709,1
-17,6,25,0,3,631565,0,7391.193,18.39973,1,16,1,0,3.773585,0,0,0,3.773585,0,0,0,0,0,5,72.3,10.3,0,75,750,750,0,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,75,8.908179,1.609438,1.328025,1
-19,6,25,0,1,631567,0,5479.263,11.27173,0,12,1,13.9653,0,0,0,0,13.9653,0,0,0,0,0,6,75,10.57626,0,81.5,696.3,884,1,0,1.791759,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,1.791759,2.636576,1
-19,6,25,0,2,631567,0,5479.263,12.27173,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75,10.57626,0,81.5,696.3,884,1,0,1.791759,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,1.791759,,0
-19,6,25,0,3,631567,0,5479.263,13.27173,0,12,1,70.93426,0,0,0,0,70.93426,0,0,0,1,0,8,75,10.57626,0,81.5,696.3,884,1,0,2.079442,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,2.079442,4.261754,1
-19,6,25,0,1,631569,0,5479.263,16.39425,1,12,1,41.04951,0,0,0,0,41.04951,0,0,0,3,0,6,41.5,10.3,1,45.5,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,45.5,8.608909,1.791759,3.714779,1
-19,6,25,0,2,631569,0,5479.263,17.39425,1,12,1,52.01215,1.932422,30.75171,0,0,84.69628,0,0,0,1,1,6,41.5,10.3,1,45.5,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,45.5,8.608909,1.791759,4.439072,1
-19,6,25,0,3,631569,0,5479.263,18.39425,1,12,1,26.6436,0,0,0,0,26.6436,0,0,0,2,0,8,41.5,10.3,1,45.5,696.3,884,0,0,2.079442,6.784457,0,3.258096,7.932075,0,0,0,45.5,8.608909,2.079442,3.282549,1
-19,6,25,0,1,631570,0,5479.263,17.92471,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,75,3.4,0,76.1,696.3,884,1,0,1.791759,6.784457,0,3.258096,7.932075,1,0,0,76.1,8.608909,1.791759,,0
-19,6,25,0,2,631570,0,5479.263,18.92471,0,12,1,6.454062,1.719818,0,0,0,8.17388,0,0,0,1,0,6,75,3.4,0,76.1,696.3,884,0,0,1.791759,6.784457,0,3.258096,7.932075,1,0,0,76.1,8.608909,1.791759,2.100944,1
-19,6,25,0,3,631570,0,5479.263,19.92471,0,12,1,0,0,0,0,0,0,0,0,0,0,0,8,75,3.4,0,76.1,696.3,884,0,0,2.079442,6.784457,0,3.258096,7.932075,1,0,0,76.1,8.608909,2.079442,,0
-19,6,25,0,1,631571,0,5479.263,39.42231,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,58,10.3,0,63.6,696.3,884,0,0,1.791759,6.784457,0,3.258096,7.932075,1,0,0,63.6,8.608909,1.791759,,0
-19,6,25,0,2,631571,0,5479.263,40.42231,1,12,1,7.593014,6.753986,0,0,2041.002,2055.349,3,1,0,0,0,6,58,10.3,0,63.6,696.3,884,0,0,1.791759,6.784457,0,3.258096,7.932075,1,0,0,63.6,8.608909,1.791759,7.628201,1
-19,6,25,0,3,631571,0,5479.263,41.42231,1,12,1,13.84083,4.065744,0,0,0,17.90657,0,0,0,1,0,8,58,10.3,0,63.6,696.3,884,0,0,2.079442,6.784457,0,3.258096,7.932075,1,0,0,63.6,8.608909,2.079442,2.885168,1
-19,6,25,0,1,631572,0,5479.263,8.109514,1,12,1,117.2239,0,0,0,0,117.2239,0,0,0,1,0,6,76.7,10.57626,0,81.5,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,1.791759,4.764085,1
-19,6,25,0,2,631572,0,5479.263,9.109514,1,12,1,25.05695,0,3.796507,0,0,28.85345,0,0,0,2,0,6,76.7,10.57626,0,81.5,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,1.791759,3.36223,1
-19,6,25,0,3,631572,0,5479.263,10.10951,1,12,1,28.02768,3.280277,0,0,0,31.30796,0,0,0,2,0,8,76.7,10.57626,0,81.5,696.3,884,1,1,2.079442,6.784457,0,3.258096,7.932075,0,0,0,81.5,8.608909,2.079442,3.443872,1
-19,6,25,0,1,631573,0,5479.263,13.40726,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,70,10.57626,0,63,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,63,8.608909,1.791759,,0
-19,6,25,0,2,631573,0,5479.263,14.40726,1,12,1,30.75171,24.04328,0,0,1713.743,1768.538,1,0,0,1,0,6,70,10.57626,0,63,696.3,884,1,1,1.791759,6.784457,0,3.258096,7.932075,0,0,0,63,8.608909,1.791759,7.477909,1
-19,6,25,0,3,631573,0,5479.263,15.40726,1,12,1,85.12111,15.79931,0,0,0,100.9204,0,0,0,6,0,8,70,10.57626,0,63,696.3,884,1,1,2.079442,6.784457,0,3.258096,7.932075,0,0,0,63,8.608909,2.079442,4.614332,1
-13,6,0,1,1,631598,1,6735.316,25.53046,0,12,1,0,0,0,0,0,0,0,0,0,0,0,3,88.5,0,0,81.8,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,,0
-13,6,0,1,2,631598,1,6735.316,26.53046,0,12,1,51.75671,0,0,0,0,51.75671,0,0,0,0,0,3,88.5,0,0,81.8,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,3.946554,1
-13,6,0,1,3,631598,1,6735.316,27.53046,0,12,1,23.32762,0,0,0,0,23.32762,0,0,0,0,0,3,88.5,0,0,81.8,450,150,0,0,1.098612,5.010635,1,4.564348,6.160541,0,0,0,81.8,8.815269,1.098612,3.149638,1
-7,6,25,1,1,631600,1,4681.525,.4791239,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.451592,1.386294,,0
-7,6,25,1,2,631600,1,4681.525,1.479124,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.451592,1.386294,,0
-7,6,25,1,3,631600,1,4681.525,2.479124,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.451592,1.386294,,0
-7,6,25,1,4,631600,1,4681.525,3.479124,1,11,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.451592,1.386294,,0
-7,6,25,1,5,631600,1,4681.525,4.479124,1,11,1,12.17862,4.364006,0,0,0,16.54263,0,0,0,0,0,4,77.40034,10.57626,0,88.9,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,88.9,8.451592,1.386294,2.80594,1
-13,6,0,1,1,631601,1,4247.507,.4599589,1,3,1,4.914005,2.579853,0,0,0,7.493857,0,0,0,1,0,7,77.40034,10.57626,0,77.8,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.354323,1.94591,2.014084,1
-13,6,0,1,2,631601,1,4247.507,1.459959,1,3,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.354323,1.94591,,0
-13,6,0,1,3,631601,1,4247.507,2.459959,1,3,1,20.84202,0,0,0,0,20.84202,0,0,0,0,0,7,77.40034,10.57626,0,77.8,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.354323,1.94591,3.036971,1
-13,6,0,1,4,631601,1,4247.507,3.459959,1,3,1,10.50263,0,0,0,0,10.50263,0,0,0,0,0,7,77.40034,10.57626,0,77.8,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.354323,1.94591,2.351625,1
-13,6,0,1,5,631601,1,4247.507,4.459959,1,3,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,77.8,450,450,1,1,1.94591,6.109248,1,4.564348,6.160541,0,0,0,77.8,8.354323,1.94591,,0
-13,6,0,1,1,631602,1,4247.507,56.78302,0,5,1,0,0,0,0,0,0,0,0,0,0,0,7,84,10.3,1,59.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.354323,1.94591,,0
-13,6,0,1,2,631602,1,4247.507,57.78302,0,5,1,0,0,0,0,0,0,0,0,0,0,0,7,84,10.3,1,59.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.354323,1.94591,,0
-13,6,0,1,3,631602,1,4247.507,58.78302,0,5,1,0,0,0,0,0,0,0,0,0,0,0,7,84,10.3,1,59.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.354323,1.94591,,0
-13,6,0,1,4,631602,1,4247.507,59.78302,0,5,1,0,0,0,0,0,0,0,0,0,0,0,7,84,10.3,1,59.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.354323,1.94591,,0
-13,6,0,1,5,631602,1,4247.507,60.78302,0,5,.9835616,68.33559,10.62585,0,0,8533.153,8612.114,4,0,0,4,0,7,84,10.3,1,59.1,450,450,0,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,59.1,8.354323,1.94591,9.060925,1
-13,6,0,1,1,631603,1,0,2.121834,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,88.9,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,88.9,0,1.609438,,0
-13,6,0,1,2,631603,1,0,3.121834,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,88.9,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,88.9,0,1.609438,,0
-13,6,0,1,3,631603,1,0,4.121834,0,9,1,63.41463,1.376307,0,0,0,64.79094,0,0,0,1,0,5,77.40034,10.57626,0,88.9,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,88.9,0,1.609438,4.171166,1
-13,6,0,1,1,631604,1,0,2.121834,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,85.2,0,1.609438,,0
-13,6,0,1,2,631604,1,0,3.121834,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,85.2,0,1.609438,,0
-13,6,0,1,3,631604,1,0,4.121834,0,9,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,450,0,1,0,1.609438,0,1,4.564348,6.160541,0,0,0,85.2,0,1.609438,,0
-10,6,50,1,1,631610,1,5414.076,.1916496,0,11,1,15.72482,4.299754,0,0,0,20.02457,0,0,0,3,0,5,77.40034,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,74.1,8.596942,1.609438,2.99696,1
-10,6,50,1,2,631610,1,5414.076,1.19165,0,11,1,10.93892,8.090246,0,0,0,19.02917,0,0,0,2,0,5,77.40034,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,74.1,8.596942,1.609438,2.945973,1
-10,6,50,1,3,631610,1,5414.076,2.191649,0,11,1,18.34097,3.126303,0,0,0,21.46728,0,0,0,2,0,5,77.40034,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,74.1,8.596942,1.609438,3.06653,1
-10,6,50,1,4,631610,1,5414.076,3.191649,0,11,1,4.501125,0,0,0,0,4.501125,0,0,0,1,0,5,77.40034,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,74.1,8.596942,1.609438,1.504327,1
-10,6,50,1,5,631610,1,5414.076,4.191649,0,11,1,9.133965,1.860622,0,0,0,10.99459,0,0,0,2,0,5,77.40034,10.57626,0,74.1,1000,1000,1,0,1.609438,6.907755,0,3.931826,7.600903,0,0,0,74.1,8.596942,1.609438,2.397403,1
-13,6,0,1,1,631613,1,6906.158,.7282683,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.840314,1.791759,,0
-13,6,0,1,2,631613,1,6906.158,1.728268,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.840314,1.791759,,0
-13,6,0,1,3,631613,1,6906.158,2.728268,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.840314,1.791759,,0
-13,6,0,1,4,631613,1,6906.158,3.728268,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.840314,1.791759,,0
-13,6,0,1,5,631613,1,6906.158,4.728268,1,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,96.3,450,450,1,1,1.791759,6.109248,1,4.564348,6.160541,0,0,0,96.3,8.840314,1.791759,,0
-13,6,0,1,1,631616,0,2938.856,19.41684,0,12,1,57.98526,0,0,0,0,57.98526,0,0,0,4,1,1,56.4,6.9,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,55.7,7.986116,0,4.060189,1
-13,6,0,1,2,631616,0,2938.856,20.41684,0,12,1,0,0,29.38924,0,0,29.38924,0,0,0,0,0,1,56.4,6.9,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,55.7,7.986116,0,3.380629,1
-13,6,0,1,3,631616,0,2938.856,21.41684,0,12,1,31.67987,0,11.25469,0,0,42.93456,0,0,0,0,1,1,56.4,6.9,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,55.7,7.986116,0,3.759677,1
-13,6,0,1,4,631616,0,2938.856,22.41684,0,12,1,0,0,10.53263,0,0,10.53263,0,0,0,0,0,1,56.4,6.9,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,55.7,7.986116,0,2.354478,1
-13,6,0,1,5,631616,0,2938.856,23.41684,0,12,1,24.35724,0,0,0,0,24.35724,0,0,0,1,0,1,56.4,6.9,0,55.7,150,0,0,0,0,0,1,4.564348,5.061929,0,0,0,55.7,7.986116,0,3.192829,1
-11,6,0,1,1,631617,1,10933.14,5.645448,0,7,1,0,2.810811,0,0,0,2.810811,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,424.32,1,0,1.386294,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.386294,1.033473,1
-11,6,0,1,2,631617,1,10933.14,6.645448,0,7,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,0,424.32,1,0,1.791759,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.791759,,0
-11,6,0,1,3,631617,1,10933.14,7.645448,0,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,0,424.32,1,0,1.94591,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.94591,,0
-11,6,0,1,4,631617,1,10933.14,8.645449,0,7,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,0,424.32,1,0,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,,0
-11,6,0,1,5,631617,1,10933.14,9.645449,0,7,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,0,424.32,1,0,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,,0
-11,6,0,1,1,631618,1,10933.14,24.20534,1,11,1,0,0,0,0,332.6781,332.6781,1,0,0,0,0,4,77.40034,20.7,.1442925,,0,424.32,0,0,1.386294,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.386294,5.807176,1
-11,6,0,1,2,631618,1,10933.14,25.20534,1,11,1,8.204193,11.45852,0,0,353.2361,372.8988,1,0,0,0,0,6,77.40034,20.7,.1442925,,0,424.32,0,0,1.791759,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.791759,5.921307,1
-11,6,0,1,3,631618,1,10933.14,26.20534,1,11,1,8.336807,9.012089,0,0,535.6398,552.9888,1,0,0,0,0,7,77.40034,20.7,.1442925,,0,424.32,0,0,1.94591,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.94591,6.315338,1
-11,6,0,1,4,631618,1,10933.14,27.20534,1,11,1,88.14703,3.132033,22.50563,0,0,113.7847,0,0,0,4,0,8,77.40034,20.7,.1442925,,0,424.32,0,0,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,4.734308,1
-11,6,0,1,5,631618,1,10933.14,28.20534,1,11,1,75.77808,45.53451,0,0,0,121.3126,0,0,0,9,0,8,77.40034,20.7,.1442925,,0,424.32,0,0,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,4.79837,1
-13,6,0,0,1,631622,1,6735.316,2.132786,1,12,1,29.44888,0,0,0,0,29.44888,0,0,0,0,0,3,77.40034,10.57626,.1442925,,450,150,1,1,1.098612,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.098612,3.382656,1
-13,6,0,0,2,631622,1,6735.316,3.132786,1,12,1,11.33358,0,0,0,0,11.33358,0,0,0,0,0,3,77.40034,10.57626,.1442925,,450,150,1,1,1.098612,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.098612,2.42777,1
-13,6,0,0,3,631622,1,6735.316,4.132786,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,450,150,1,1,1.098612,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,1,1,631623,.5112414,6735.316,24.83504,1,12,1,24.67035,24.15142,40.83369,0,0,89.65546,0,0,0,1,1,3,76.1,13.8,0,73.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,73.9,8.815269,1.098612,4.495974,1
-11,6,0,1,2,631623,.5112414,6735.316,25.83504,1,12,1,17.17557,51.79008,0,0,449.6183,518.584,1,0,0,1,0,3,76.1,13.8,0,73.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,73.9,8.815269,1.098612,6.251102,1
-11,6,0,1,3,631623,.5112414,6735.316,26.83504,1,12,1,137.9791,96.85017,33.44948,0,0,268.2787,0,0,0,13,1,4,76.1,13.8,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,8.815269,1.386294,5.592027,1
-11,6,0,1,1,631624,.5112414,6735.316,23.16222,0,8,1,11.48448,3.721821,0,0,0,15.2063,0,0,0,0,0,3,83,0,0,73.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,73.9,8.815269,1.098612,2.721709,1
-11,6,0,1,2,631624,.5112414,6735.316,24.16222,0,8,1,10.68702,1.866412,0,0,0,12.55344,0,0,0,0,0,3,83,0,0,73.9,0,0,0,0,1.098612,0,0,0,0,0,0,0,73.9,8.815269,1.098612,2.529994,1
-11,6,0,1,3,631624,.5112414,6735.316,25.16222,0,8,1,13.93728,5.383275,0,0,0,19.32056,0,0,0,2,0,4,83,0,0,73.9,0,0,0,0,1.386294,0,0,0,0,0,0,0,73.9,8.815269,1.386294,2.96117,1
-11,6,0,1,1,631625,.5112414,6735.316,4.692676,1,12,1,19.14079,5.6359,0,0,0,24.77669,0,0,0,3,0,3,77.40034,10.57626,0,88.9,0,0,1,1,1.098612,0,0,0,0,0,0,0,88.9,8.815269,1.098612,3.209903,1
-11,6,0,1,2,631625,.5112414,6735.316,5.692676,1,12,1,51.52672,20.69466,24.80916,0,0,97.03053,0,0,0,9,1,3,77.40034,10.57626,0,88.9,0,0,1,1,1.098612,0,0,0,0,0,0,0,88.9,8.815269,1.098612,4.575026,1
-11,6,0,1,3,631625,.5112414,6735.316,6.692676,1,12,1,43.90244,10.14634,10.45296,0,0,64.50174,0,0,0,6,1,4,77.40034,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,8.815269,1.386294,4.166692,1
-11,6,0,1,1,631626,.5112414,0,.2710472,0,11,1,40.63429,11.49653,0,0,0,52.13082,0,0,0,3,0,2,77.40034,10.57626,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,0,.6931472,3.953756,1
-11,6,0,1,2,631626,.5112414,0,1.271047,0,11,1,27.99449,15.48876,0,0,0,43.48325,0,0,0,4,0,2,77.40034,10.57626,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,0,.6931472,3.772376,1
-11,6,0,1,3,631626,.5112414,0,2.271047,0,11,1,32.39377,11.04333,0,0,0,43.43711,0,0,0,4,0,2,77.40034,10.57626,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,0,.6931472,3.771314,1
-11,6,0,1,4,631626,.5112414,0,3.271047,0,11,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,0,.6931472,,0
-11,6,0,1,5,631626,.5112414,0,4.271047,0,11,1,67.23842,11.25214,0,0,0,78.49056,0,0,0,5,0,2,77.40034,10.57626,0,100,0,0,1,0,.6931472,0,0,0,0,0,0,0,100,0,.6931472,4.362978,1
-7,6,25,1,1,631632,1,3338.966,2.590007,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,92.6,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,92.6,8.113716,1.609438,,0
-7,6,25,1,2,631632,1,3338.966,3.590007,1,8,1,7.555724,0,0,0,0,7.555724,0,0,0,1,0,5,77.40034,10.57626,0,92.6,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,92.6,8.113716,1.609438,2.022305,1
-7,6,25,1,3,631632,1,3338.966,4.590007,1,8,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,92.6,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,92.6,8.113716,1.609438,,0
-14,6,95,1,1,631633,1,0,24.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,62.2,6.9,0,79.5,225,174.25,0,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,79.5,0,1.386294,,0
-14,6,95,1,2,631633,1,0,25.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,62.2,6.9,0,79.5,225,174.25,0,0,1.386294,5.160491,0,4.564348,5.467394,0,0,0,79.5,0,1.386294,,0
-14,6,95,1,3,631633,1,0,26.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.2,6.9,0,79.5,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,79.5,0,.6931472,,0
-14,6,95,1,4,631633,1,0,27.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.2,6.9,0,79.5,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,79.5,0,.6931472,,0
-14,6,95,1,5,631633,1,0,28.67077,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,62.2,6.9,0,79.5,225,174.25,0,0,.6931472,5.160491,0,4.564348,5.467394,0,0,0,79.5,0,.6931472,,0
-11,6,0,0,2,631635,0,11349.56,.6988364,1,15,1,43.13905,28.47178,0,0,0,71.61083,0,0,0,8,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.337023,1.098612,4.271246,1
-11,6,0,0,3,631635,0,11349.56,1.698836,1,15,1,10.93816,5.258729,0,0,0,16.19689,0,0,0,2,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.337023,1.098612,2.784819,1
-11,6,0,0,4,631635,0,11349.56,2.698836,1,15,1,11.33358,4.004533,0,0,0,15.33812,0,0,0,2,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.337023,1.098612,2.730341,1
-11,6,0,0,5,631635,0,11349.56,3.698836,1,15,1,23.32762,9.231561,0,0,0,32.55918,0,0,0,2,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.337023,1.098612,3.483059,1
-16,6,95,0,1,631636,1,6735.316,2.075291,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,74.1,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,74.1,8.815269,1.609438,,0
-16,6,95,0,2,631636,1,6735.316,3.075291,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,74.1,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,74.1,8.815269,1.609438,,0
-16,6,95,0,3,631636,1,6735.316,4.075291,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,74.1,1000,263.18,1,1,1.609438,5.572838,0,4.564348,6.959049,0,0,0,74.1,8.815269,1.609438,,0
-11,6,0,0,1,631645,.5112414,2697.901,7.759069,1,10.62774,1,7.993269,5.363904,0,0,0,13.35717,0,0,0,1,0,2,76.7,10.57626,.1442925,74.1,0,0,1,1,.6931472,0,0,0,0,0,0,0,74.1,7.9006,.6931472,2.592054,1
-11,6,0,0,2,631645,.5112414,2697.901,8.759069,1,10.62774,1,27.20061,11.79071,0,0,0,38.99131,0,0,0,4,0,2,76.7,10.57626,.1442925,74.1,0,0,1,1,.6931472,0,0,0,0,0,0,0,74.1,7.9006,.6931472,3.663339,1
-11,6,0,0,3,631645,.5112414,2697.901,9.759069,1,10.62774,1,21.61235,4.291595,24.01372,0,0,49.91767,0,0,0,2,1,2,76.7,10.57626,.1442925,74.1,0,0,1,1,.6931472,0,0,0,0,0,0,0,74.1,7.9006,.6931472,3.910375,1
-11,6,0,0,1,631646,.5112414,2697.901,26.96235,1,10.62774,1,118.6369,34.95583,0,0,0,153.5928,0,0,0,6,0,2,58.5,13.8,1,53.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,53.4,7.9006,.6931472,5.034305,1
-11,6,0,0,2,631646,.5112414,2697.901,27.96235,1,10.62774,1,56.29014,42.42916,0,0,0,98.71931,0,0,0,4,0,2,58.5,13.8,1,53.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,53.4,7.9006,.6931472,4.59228,1
-11,6,0,0,3,631646,.5112414,2697.901,28.96235,1,10.62774,1,158.8336,18.18868,26.07204,0,1230.189,1443.575,1,0,0,5,1,2,58.5,13.8,1,53.4,0,0,0,0,.6931472,0,0,0,0,0,0,0,53.4,7.9006,.6931472,7.274878,1
-14,6,95,0,2,631652,1,3984.164,.9698836,1,11,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,294,409.6,1,1,1.609438,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.609438,,0
-14,6,95,0,3,631652,1,3984.164,1.969884,1,11,1,10.09676,0,0,0,0,10.09676,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,1,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,2.312215,1
-14,6,95,0,4,631652,1,3984.164,2.969884,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,1,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,,0
-14,6,95,0,5,631652,1,3984.164,3.969884,1,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,1,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,,0
-13,6,0,0,1,631656,1,6735.316,2.042437,1,12,1,10.00417,3.751563,0,0,0,13.75573,0,0,0,2,0,10,77.40034,10.57626,0,85.2,450,150,1,1,2.302585,5.010635,1,4.564348,6.160541,0,0,0,85.2,8.815269,2.302585,2.621456,1
-13,6,0,0,2,631656,1,6735.316,3.042437,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,0,85.2,450,150,1,1,2.197225,5.010635,1,4.564348,6.160541,0,0,0,85.2,8.815269,2.197225,,0
-13,6,0,0,3,631656,1,6735.316,4.042437,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,0,85.2,450,150,1,1,1.94591,5.010635,1,4.564348,6.160541,0,0,0,85.2,8.815269,1.94591,,0
-11,6,0,0,1,631657,0,9348.694,1.763176,0,12,1,170.1404,17.65206,91.21225,0,0,279.0047,0,0,0,3,28,5,77.40034,10.57626,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,5.631228,1
-11,6,0,0,2,631657,0,9348.694,2.763176,0,12,1,24.42748,3.816794,28.58015,0,0,56.82443,0,0,0,1,0,5,77.40034,10.57626,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,4.039966,1
-11,6,0,0,3,631657,0,9348.694,3.763176,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,0,85.2,0,0,1,0,1.609438,0,0,0,0,0,0,0,85.2,9.143099,1.609438,,0
-15,6,95,0,1,631660,1,4487.39,.054757,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,820,820,1,1,1.94591,6.709304,0,4.564348,6.760598,0,0,0,70.68995,8.409249,1.94591,,0
-15,6,95,0,2,631660,1,4487.39,1.054757,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,820,820,1,1,1.94591,6.709304,0,4.564348,6.760598,0,0,0,70.68995,8.409249,1.94591,,0
-15,6,95,0,3,631660,1,4487.39,2.054757,1,9,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,820,820,1,1,1.94591,6.709304,0,4.564348,6.760598,0,0,0,70.68995,8.409249,1.94591,,0
-11,6,0,0,2,631675,1,10875.66,.3675565,0,12,1,44.72107,18.29415,15.32503,0,0,78.34025,0,0,0,7,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,9.294374,1.386294,4.361062,1
-11,6,0,0,3,631675,1,10875.66,1.367556,0,12,1,140.0762,4.16843,34.32924,0,0,178.5739,0,0,0,3,12,6,77.40034,10.57626,.1442925,,0,0,1,0,1.791759,0,0,0,0,0,0,0,70.68995,9.294374,1.791759,5.185002,1
-11,6,0,0,4,631675,1,10875.66,2.367557,0,12,1,85.04176,5.618831,24.87472,0,0,115.5353,0,0,0,5,5,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,9.294374,1.609438,4.749576,1
-11,6,0,0,5,631675,1,10875.66,3.367557,0,12,1,46.36678,14.9827,25.91003,0,0,87.25951,0,0,0,4,0,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,9.294374,1.609438,4.468886,1
-16,6,95,0,1,631687,0,9686.124,27.49623,1,10.62774,1,57.21498,9.360538,0,0,104.7539,171.3294,1,0,0,4,0,2,70.7,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.178553,.6931472,5.143588,1
-16,6,95,0,2,631687,0,9686.124,28.49623,1,10.62774,1,63.46808,17.82395,0,0,0,81.29203,0,0,0,7,0,2,70.7,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.178553,.6931472,4.398048,1
-16,6,95,0,3,631687,0,9686.124,29.49623,1,10.62774,1,0,0,0,0,0,0,0,0,0,0,0,2,70.7,13.8,0,79.5,1000,1000,0,0,.6931472,6.907755,0,4.564348,6.959049,0,0,0,79.5,9.178553,.6931472,,0
-13,6,0,0,1,631693,1,9834.102,1.237509,0,13,1,81.66737,9.0302,80.39132,0,0,171.0889,0,0,0,12,0,5,77.40034,10.57626,0,44.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.193713,1.609438,5.142183,1
-13,6,0,0,2,631693,1,9834.102,2.237509,0,13,1,17.17557,0,13.49618,0,0,30.67175,0,0,0,3,0,5,77.40034,10.57626,0,44.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.193713,1.609438,3.423342,1
-13,6,0,0,3,631693,1,9834.102,3.237509,0,13,1,12.54355,0,0,0,0,12.54355,0,0,0,0,0,5,77.40034,10.57626,0,44.4,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,44.4,9.193713,1.609438,2.529207,1
-13,6,0,0,1,631694,0,7954.941,1.429158,0,13,1,31.13168,0,0,0,0,31.13168,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981674,1.386294,3.438226,1
-13,6,0,0,2,631694,0,7954.941,2.429158,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981674,1.386294,,0
-13,6,0,0,3,631694,0,7954.941,3.429158,0,13,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,70.4,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.981674,1.386294,,0
-13,6,0,0,1,631697,1,10992.32,1.149897,1,12,1,19.04359,0,0,0,0,19.04359,0,0,0,3,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.305043,1.386294,2.94673,1
-13,6,0,0,2,631697,1,10992.32,2.149897,1,12,1,4.555809,0,0,0,0,4.555809,0,0,0,1,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.305043,1.386294,1.516403,1
-13,6,0,0,3,631697,1,10992.32,3.149897,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.305043,1.386294,,0
-11,6,0,0,2,631703,0,11458.65,.1594798,1,16,1,39.18856,8.298756,0,0,0,47.48732,0,0,0,6,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.098612,3.860463,1
-11,6,0,0,3,631703,0,11458.65,1.15948,1,16,1,17.35082,10.57977,0,0,0,27.9306,0,0,0,3,0,3,77.40034,10.57626,.1442925,,0,60,1,1,1.098612,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.098612,3.329723,1
-11,6,0,0,4,631703,0,11458.65,2.15948,1,16,1,15.18603,1.803341,0,0,0,16.98937,0,0,0,2,0,4,77.40034,10.57626,.1442925,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.386294,2.832588,1
-11,6,0,0,5,631703,0,11458.65,3.15948,1,16,1,31.14187,5.737024,0,0,0,36.87889,0,0,0,6,0,4,77.40034,10.57626,.1442925,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.386294,3.607639,1
-13,6,0,0,1,631704,1,9940.604,1.377139,1,10,1,28.18679,3.050063,0,0,0,31.23685,0,0,0,2,0,4,77.40034,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.204484,1.386294,3.441599,1
-13,6,0,0,2,631704,1,9940.604,2.377139,1,10,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.204484,1.386294,,0
-13,6,0,0,3,631704,1,9940.604,3.377139,1,10,1,23.32762,0,0,0,519.7256,543.0532,1,0,0,2,0,4,77.40034,10.57626,0,88.9,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,88.9,9.204484,1.386294,6.297207,1
-13,6,0,0,2,631710,0,12312.61,.1430527,1,16,1,48.4094,11.66897,0,0,0,60.07838,0,0,0,8,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.418461,1.386294,4.09565,1
-13,6,0,0,3,631710,0,12312.61,1.143053,1,16,1,10.57977,3.427846,0,0,0,14.00762,0,0,0,2,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.418461,1.386294,2.639601,1
-13,6,0,0,4,631710,0,12312.61,2.143053,1,16,1,28.85345,8.800303,0,0,0,37.65376,0,0,0,5,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.418461,1.386294,3.628433,1
-13,6,0,0,5,631710,0,12312.61,3.143053,1,16,1,8.650519,2.00692,0,0,0,10.65744,0,0,0,1,1,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.418461,1.386294,2.366258,1
-6,6,25,0,1,631714,.5112414,6735.316,1.273101,0,10.5,1,50.7829,5.289886,0,0,0,56.07279,0,0,0,1,0,2,77.40034,10.57626,0,74.1,100,0,1,0,.6931472,0,0,3.258096,5.991465,0,0,0,74.1,8.815269,.6931472,4.02665,1
-6,6,25,0,2,631714,.5112414,6735.316,2.273101,0,10.5,1,45.653,3.113136,0,0,0,48.76614,0,0,0,5,0,2,77.40034,10.57626,0,74.1,100,0,1,0,.6931472,0,0,3.258096,5.991465,0,0,0,74.1,8.815269,.6931472,3.887036,1
-6,6,25,0,3,631714,.5112414,6735.316,3.273101,0,10.5,1,11.07266,7.802768,0,0,0,18.87543,0,0,0,2,0,2,77.40034,10.57626,0,74.1,100,0,1,0,.6931472,0,0,3.258096,5.991465,0,0,0,74.1,8.815269,.6931472,2.937861,1
-11,6,0,0,2,631726,1,10933.14,.9890486,1,7,1,10.93892,2.506837,0,0,0,13.44576,0,0,0,2,0,6,77.40034,10.57626,.1442925,,0,424.32,1,1,1.791759,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.791759,2.598664,1
-11,6,0,0,3,631726,1,10933.14,1.989049,1,7,1,8.336807,6.531888,0,0,0,14.8687,0,0,0,2,0,7,77.40034,10.57626,.1442925,,0,424.32,1,1,1.94591,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.94591,2.699258,1
-11,6,0,0,4,631726,1,10933.14,2.989048,1,7,1,20.25506,11.62791,0,0,0,31.88297,0,0,0,4,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,3.462072,1
-11,6,0,0,5,631726,1,10933.14,3.989048,1,7,1,8.457375,2.35115,0,0,0,10.80853,0,0,0,2,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,2.380335,1
-11,6,0,0,2,631727,1,10933.14,.9890486,1,7,1,38.28624,0,0,0,0,38.28624,0,0,0,5,0,6,77.40034,10.57626,.1442925,,0,424.32,1,1,1.791759,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.791759,3.64509,1
-11,6,0,0,3,631727,1,10933.14,1.989049,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,0,424.32,1,1,1.94591,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.94591,,0
-11,6,0,0,4,631727,1,10933.14,2.989048,1,7,1,19.12978,24.24231,0,0,0,43.37209,0,0,0,3,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,3.769816,1
-11,6,0,0,5,631727,1,10933.14,3.989048,1,7,1,3.38295,2.232747,0,0,0,5.615697,0,0,0,1,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,1.725566,1
-13,6,0,0,3,631733,0,10029.33,.9678302,0,16,1,72.94706,41.47562,0,0,544.3935,658.8162,1,0,0,14,0,3,77.40034,10.57626,.1442925,,300,349.96,1,0,1.098612,5.857819,1,4.564348,5.755076,0,0,0,70.68995,9.213368,1.098612,6.490445,1
-13,6,0,0,4,631733,0,10029.33,1.96783,0,16,1,18.37959,9.253563,14.43361,0,0,42.06676,0,0,0,4,0,4,77.40034,10.57626,.1442925,,300,349.96,1,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,70.68995,9.213368,1.386294,3.739258,1
-13,6,0,0,5,631733,0,10029.33,2.96783,0,16,1,5.074425,0,0,0,0,5.074425,0,0,0,1,0,4,77.40034,10.57626,.1442925,,300,349.96,1,0,1.386294,5.857819,1,4.564348,5.755076,0,0,0,70.68995,9.213368,1.386294,1.624213,1
-6,6,25,0,3,631736,1,1759.531,.9842573,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,750,0,1,1,1.386294,0,0,3.258096,8.006368,0,0,0,70.68995,7.473371,1.386294,,0
-6,6,25,0,4,631736,1,1759.531,1.984257,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,0,0,70.68995,7.473371,1.609438,,0
-6,6,25,0,5,631736,1,1759.531,2.984257,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,0,0,70.68995,7.473371,1.609438,,0
-13,6,0,0,3,631741,0,6415.836,.6913073,1,11,1,10.63377,0,0,0,0,10.63377,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.766681,1.609438,2.364035,1
-13,6,0,0,4,631741,0,6415.836,1.691307,1,11,1,16.41221,0,0,0,0,16.41221,0,0,0,1,0,5,77.40034,10.57626,.1442925,,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.766681,1.609438,2.798026,1
-13,6,0,0,5,631741,0,6415.836,2.691307,1,11,1,29.61672,0,0,0,386.7596,416.3763,1,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,1,1,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.766681,1.609438,6.03159,1
-14,6,95,0,1,631742,1,3400.922,3.030801,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,631742,1,3400.922,4.030801,0,7,1,0,2.84738,0,0,0,2.84738,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,1.046399,1
-14,6,95,0,3,631742,1,3400.922,5.030801,0,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,,0
-14,6,95,0,1,631743,1,3400.922,1.42642,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,631743,1,3400.922,2.42642,1,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,3,631743,1,3400.922,3.42642,1,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,,0
-14,6,95,0,1,631744,1,3400.922,19.71253,1,12,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,631744,1,3400.922,20.71253,1,12,1,0,0,0,0,217.5399,217.5399,1,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,5.382382,1
-14,6,95,0,3,631744,1,3400.922,21.71253,1,12,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,0,0,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,,0
-14,6,95,0,1,631745,1,3400.922,2.836413,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,2,631745,1,3400.922,3.836413,0,7,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.197225,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.197225,,0
-14,6,95,0,3,631745,1,3400.922,4.836413,0,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,,0
-6,6,25,0,1,631749,0,12762.93,2.288843,0,12,1,34.27846,0,0,0,0,34.27846,0,0,0,3,0,3,77.40034,10.57626,0,88.9,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.454378,1.098612,3.534517,1
-6,6,25,0,2,631749,0,12762.93,3.288843,0,12,1,25.05695,0,13.81929,0,0,38.87623,0,0,0,3,0,3,77.40034,10.57626,0,88.9,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.454378,1.098612,3.660383,1
-6,6,25,0,3,631749,0,12762.93,4.288843,0,12,1,5.882353,0,0,0,0,5.882353,0,0,0,1,0,5,77.40034,10.57626,0,88.9,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,88.9,9.454378,1.609438,1.771957,1
-11,6,0,0,1,631754,1,6735.316,2.748802,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,0,2,631754,1,6735.316,3.748802,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-11,6,0,0,3,631754,1,6735.316,4.748802,1,11,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.815269,1.098612,,0
-13,6,0,0,1,631755,0,6907.322,1.869952,1,10,1,28.35379,11.57427,0,0,0,39.92806,0,0,0,4,0,4,77.40034,10.57626,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.840482,1.386294,3.687079,1
-13,6,0,0,2,631755,0,6907.322,2.869952,1,10,1,149.962,0,0,0,1663.25,1813.212,1,0,0,2,0,4,77.40034,10.57626,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.840482,1.386294,7.502855,1
-13,6,0,0,3,631755,0,6907.322,3.869952,1,10,1,26.29758,2.249135,0,0,427.6817,456.2284,1,0,0,4,0,4,77.40034,10.57626,0,70.4,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.4,8.840482,1.386294,6.122993,1
-14,6,95,0,1,631756,0,5339.478,1.368925,0,9,1,110.4627,26.29846,0,0,0,136.7612,0,0,0,20,0,5,77.40034,10.57626,0,81.5,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,81.5,8.583071,1.609438,4.918236,1
-14,6,95,0,2,631756,0,5339.478,2.368925,0,9,1,237.8094,46.31658,0,0,0,284.126,0,0,0,21,0,5,77.40034,10.57626,0,81.5,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,81.5,8.583071,1.609438,5.649418,1
-14,6,95,0,3,631756,0,5339.478,3.368925,0,9,1,127.1989,56.48512,0,0,0,183.684,0,0,0,28,0,5,77.40034,10.57626,0,81.5,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,81.5,8.583071,1.609438,5.213217,1
-11,6,0,0,1,631757,0,12691.24,1.713895,0,10,1,15.14514,2.179218,0,0,0,17.32436,0,0,0,1,0,5,77.40034,10.57626,1,48.1,0,193.96,1,0,1.609438,5.267652,0,0,0,0,0,0,48.1,9.448747,1.609438,2.852113,1
-11,6,0,0,2,631757,0,12691.24,2.713895,0,10,1,72.53494,146.615,0,0,0,219.15,0,0,0,9,0,5,77.40034,10.57626,1,48.1,0,193.96,1,0,1.609438,5.267652,0,0,0,0,0,0,48.1,9.448747,1.609438,5.389756,1
-11,6,0,0,3,631757,0,12691.24,3.713895,0,10,1,108.7479,148.8233,0,0,0,257.5712,0,0,0,9,0,5,77.40034,10.57626,1,48.1,0,193.96,1,0,1.609438,5.267652,0,0,0,0,0,0,48.1,9.448747,1.609438,5.551296,1
-13,6,0,0,1,631760,.5112414,4556.067,2.696783,1,12,1,7.993269,1.973075,0,0,0,9.966344,0,0,0,1,0,3,77.40034,10.57626,1,63,450,450,1,1,1.098612,6.109248,1,4.564348,6.160541,0,0,0,63,8.424435,1.098612,2.299214,1
-13,6,0,0,2,631760,.5112414,4556.067,3.696783,1,12,1,5.289006,0,0,0,0,5.289006,0,0,0,1,0,4,77.40034,10.57626,1,63,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,63,8.424435,1.386294,1.66563,1
-13,6,0,0,3,631760,.5112414,4556.067,4.696783,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,1,63,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,63,8.424435,1.386294,,0
-13,6,0,0,1,631761,.5112414,4556.067,22.92676,1,12,1,0,0,0,0,287.7577,287.7577,1,0,0,0,0,3,54.8,20.7,1,55.7,450,450,0,0,1.098612,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.424435,1.098612,5.662119,1
-13,6,0,0,2,631761,.5112414,4556.067,23.92676,1,12,1,75.55724,5.851908,0,0,0,81.40914,0,0,0,6,0,4,54.8,20.7,1,55.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.424435,1.386294,4.399487,1
-13,6,0,0,3,631761,.5112414,4556.067,24.92676,1,12,1,64.83705,0,3.430532,0,0,68.26758,0,0,0,5,0,4,54.8,20.7,1,55.7,450,450,0,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,55.7,8.424435,1.386294,4.223435,1
-18,6,25,0,1,631762,0,12182.8,26.43121,0,12,1,0,0,0,0,0,0,0,0,0,0,0,2,93.1,0,0,86.4,194.38,194.38,0,0,.6931472,5.269815,0,3.258096,6.656109,0,0,0,86.4,9.407862,.6931472,,0
-18,6,25,0,2,631762,0,12182.8,27.43121,0,12,1,88.89722,0,7.501875,0,0,96.3991,0,0,0,0,12,2,93.1,0,0,86.4,194.38,194.38,0,0,.6931472,5.269815,0,3.258096,6.656109,0,0,0,86.4,9.407862,.6931472,4.568497,1
-18,6,25,0,3,631762,0,12182.8,28.43121,0,12,1,63.93776,0,0,0,0,63.93776,0,0,0,0,7,3,93.1,0,0,86.4,194.38,194.38,0,0,1.098612,5.269815,0,3.258096,6.656109,0,0,0,86.4,9.407862,1.098612,4.15791,1
-11,6,0,0,1,631767,1,4382.488,3.195072,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,63,0,0,1,1,1.386294,0,0,0,0,0,0,0,63,8.3856,1.386294,,0
-11,6,0,0,2,631767,1,4382.488,4.195072,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,63,0,0,1,1,1.098612,0,0,0,0,0,0,0,63,8.3856,1.098612,,0
-11,6,0,0,3,631767,1,4382.488,5.195072,1,8,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,63,0,0,1,1,1.098612,0,0,0,0,0,0,0,63,8.3856,1.098612,,0
-11,6,0,0,1,631768,.5112414,1202.253,1.998631,1,10,1,29.86958,2.03618,0,0,0,31.90576,0,0,0,3,0,2,77.40034,10.57626,.1442925,,0,0,1,1,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,3.462787,1
-11,6,0,0,2,631768,.5112414,1202.253,2.998631,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,0,0,1,1,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,,0
-11,6,0,0,3,631768,.5112414,1202.253,3.998631,1,10,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,0,0,1,1,.6931472,0,0,0,0,0,0,0,70.68995,7.092784,.6931472,,0
-11,6,0,0,1,631772,1,7187.404,.8405202,0,5,1,10.15658,4.655099,0,0,0,14.81168,0,0,0,2,0,13,77.40034,10.57626,0,40.7,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,40.7,8.880224,2.564949,2.695416,1
-11,6,0,0,2,631772,1,7187.404,1.84052,0,5,1,0,0,0,0,0,0,0,0,0,0,0,13,77.40034,10.57626,0,40.7,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,40.7,8.880224,2.564949,,0
-11,6,0,0,3,631772,1,7187.404,2.84052,0,5,1,5.882353,1.910035,0,0,0,7.792387,0,0,0,1,0,14,77.40034,10.57626,0,40.7,0,106.56,1,0,2.639057,4.668708,0,0,0,0,0,0,40.7,8.880224,2.639057,2.053147,1
-11,6,0,0,1,631773,1,7187.404,.8405202,0,5,1,5.07829,4.231909,0,0,0,9.310199,0,0,0,1,0,13,77.40034,10.57626,.1442925,100,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,100,8.880224,2.564949,2.23111,1
-11,6,0,0,2,631773,1,7187.404,1.84052,0,5,1,5.31511,4.04328,0,0,0,9.35839,0,0,0,1,0,13,77.40034,10.57626,.1442925,100,0,106.56,1,0,2.564949,4.668708,0,0,0,0,0,0,100,8.880224,2.564949,2.236273,1
-11,6,0,0,3,631773,1,7187.404,2.84052,0,5,1,144.9827,2.276817,0,0,504.1523,651.4117,1,0,0,3,0,14,77.40034,10.57626,.1442925,100,0,106.56,1,0,2.639057,4.668708,0,0,0,0,0,0,100,8.880224,2.639057,6.479142,1
-11,6,0,0,1,631784,1,3690.22,24.34223,0,14,1,6.669446,0,0,0,0,6.669446,0,0,0,1,0,6,88.8,0,0,78.4,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.4,8.213713,1.791759,1.897537,1
-11,6,0,0,2,631784,1,3690.22,25.34223,0,14,1,0,0,0,0,0,0,0,0,0,0,0,6,88.8,0,0,78.4,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.4,8.213713,1.791759,,0
-11,6,0,0,3,631784,1,3690.22,26.34223,0,14,1,0,1.742219,0,0,0,1.742219,0,0,0,0,0,6,88.8,0,0,78.4,0,0,0,0,1.791759,0,0,0,0,0,0,0,78.4,8.213713,1.791759,.5551597,1
-11,6,0,0,1,631785,1,1190.476,1.483915,1,12,1,12.50521,0,0,0,0,12.50521,0,0,0,2,0,3,77.40034,10.57626,0,96.3,0,329.16,1,1,1.098612,5.796544,0,0,0,0,0,0,96.3,7.082948,1.098612,2.526145,1
-11,6,0,0,2,631785,1,1190.476,2.483915,1,12,1,7.501875,8.053264,0,0,0,15.55514,0,0,0,2,0,3,77.40034,10.57626,0,96.3,0,329.16,1,1,1.098612,5.796544,0,0,0,0,0,0,96.3,7.082948,1.098612,2.744391,1
-11,6,0,0,3,631785,1,1190.476,3.483915,1,12,1,10.14885,13.24425,0,0,0,23.3931,0,0,0,3,0,3,77.40034,10.57626,0,96.3,0,329.16,1,1,1.098612,5.796544,0,0,0,0,0,0,96.3,7.082948,1.098612,3.152441,1
-13,6,0,0,1,631787,.5112414,479.2627,20.91444,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,38.8,27.6,1,53.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,53.6,6.174333,.6931472,,0
-13,6,0,0,2,631787,.5112414,479.2627,21.91444,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,38.8,27.6,1,53.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,53.6,6.174333,.6931472,,0
-13,6,0,0,3,631787,.5112414,479.2627,22.91444,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,38.8,27.6,1,53.6,300,300,0,0,.6931472,5.703783,1,4.564348,5.755076,0,0,0,53.6,6.174333,.6931472,,0
-13,6,0,0,1,631790,1,2625.704,1.177276,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.68995,7.873485,.6931472,,0
-13,6,0,0,2,631790,1,2625.704,2.177276,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.68995,7.873485,.6931472,,0
-13,6,0,0,3,631790,1,2625.704,3.177276,1,12,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,.1442925,,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,70.68995,7.873485,.6931472,,0
-13,6,0,0,1,631791,.5112414,479.2627,.862423,1,8,1,16.40724,0,0,0,0,16.40724,0,0,0,1,0,2,77.40034,10.57626,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.9,6.174333,.6931472,2.797723,1
-13,6,0,0,2,631791,.5112414,479.2627,1.862423,1,8,1,0,0,0,0,0,0,0,0,0,0,0,2,77.40034,10.57626,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.9,6.174333,.6931472,,0
-13,6,0,0,3,631791,.5112414,479.2627,2.862423,1,8,1,5.488851,0,0,0,0,5.488851,0,0,0,1,0,2,77.40034,10.57626,0,88.9,300,300,1,1,.6931472,5.703783,1,4.564348,5.755076,0,0,0,88.9,6.174333,.6931472,1.702719,1
-10,6,50,0,1,631798,1,4512.033,.769336,1,12,1,5.002084,0,0,0,0,5.002084,0,0,0,1,0,8,77.40034,10.57626,0,63,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,0,0,0,63,8.414724,2.079442,1.609855,1
-10,6,50,0,2,631798,1,4512.033,1.769336,1,12,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,63,1000,1000,1,1,2.079442,6.907755,0,3.931826,7.600903,0,0,0,63,8.414724,2.079442,,0
-10,6,50,0,3,631798,1,4512.033,2.769336,1,12,1,145.4668,0,0,0,0,145.4668,0,0,0,2,0,7,77.40034,10.57626,0,63,1000,1000,1,1,1.94591,6.907755,0,3.931826,7.600903,0,0,0,63,8.414724,1.94591,4.979948,1
-11,6,0,0,1,631799,1,3700.973,.7282683,0,12,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,0,81.5,0,168.4,1,0,1.791759,5.126342,0,0,0,0,0,0,81.5,8.216621,1.791759,,0
-11,6,0,0,2,631799,1,3700.973,1.728268,0,12,1,5.626407,3.765941,0,0,0,9.392348,0,0,0,1,0,6,77.40034,10.57626,0,81.5,0,168.4,1,0,1.791759,5.126342,0,0,0,0,0,0,81.5,8.216621,1.791759,2.239895,1
-11,6,0,0,3,631799,1,3700.973,2.728268,0,12,1,10.14885,1.67456,0,0,0,11.82341,0,0,0,2,0,7,77.40034,10.57626,0,81.5,0,168.4,1,0,1.94591,5.126342,0,0,0,0,0,0,81.5,8.216621,1.94591,2.470082,1
-13,6,0,0,1,631803,1,3534.05,.5338809,0,12,1,10.51746,13.52966,0,0,0,24.04712,0,0,0,2,0,4,77.40034,10.57626,0,63,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,63,8.170483,1.386294,3.180015,1
-13,6,0,0,2,631803,1,3534.05,1.533881,0,12,1,5.666792,4.291651,0,0,235.3608,245.3192,1,0,0,1,0,4,77.40034,10.57626,0,63,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,63,8.170483,1.386294,5.50256,1
-13,6,0,0,3,631803,1,3534.05,2.533881,0,12,1,0,5.979417,0,0,0,5.979417,0,0,0,0,0,4,77.40034,10.57626,0,63,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,63,8.170483,1.386294,1.788323,1
-14,6,95,0,3,631812,1,3984.164,.4941821,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,,0
-14,6,95,0,4,631812,1,3984.164,1.494182,0,11,1,29.08953,0,0,0,0,29.08953,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,3.370378,1
-14,6,95,0,5,631812,1,3984.164,2.494182,0,11,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,294,409.6,1,0,1.791759,6.015181,0,4.564348,5.734873,0,0,0,70.68995,8.290334,1.791759,,0
-11,6,0,0,1,631813,.5112414,13244.75,.6652977,1,13,1,66.89104,51.95625,0,0,0,118.8473,0,0,0,13,0,4,77.40034,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.491432,1.386294,4.777839,1
-11,6,0,0,2,631813,.5112414,13244.75,1.665298,1,13,1,58.93464,60.74424,0,0,0,119.6789,0,0,0,11,0,4,77.40034,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.491432,1.386294,4.784812,1
-11,6,0,0,3,631813,.5112414,13244.75,2.665298,1,13,1,87.82161,35.28645,25.72899,0,0,148.8371,0,0,0,12,0,4,77.40034,10.57626,0,88.9,0,0,1,1,1.386294,0,0,0,0,0,0,0,88.9,9.491432,1.386294,5.002852,1
-14,6,95,0,3,631815,0,8616.422,.3080082,1,16,1,72.73501,11.84602,0,0,0,84.58103,0,0,0,10,0,3,77.40034,10.57626,.1442925,,677.5,667.5,1,1,1.098612,6.50354,0,4.564348,6.569703,0,0,0,70.68995,9.061542,1.098612,4.43771,1
-14,6,95,0,4,631815,0,8616.422,1.308008,1,16,1,53.8168,11.33588,0,0,0,65.15267,0,0,0,10,0,3,77.40034,10.57626,.1442925,,677.5,667.5,1,1,1.098612,6.50354,0,4.564348,6.569703,0,0,0,70.68995,9.061542,1.098612,4.176733,1
-14,6,95,0,5,631815,0,8616.422,2.308008,1,16,1,39.72126,11.82927,0,0,0,51.55052,0,0,0,6,0,3,77.40034,10.57626,.1442925,,677.5,667.5,1,1,1.098612,6.50354,0,4.564348,6.569703,0,0,0,70.68995,9.061542,1.098612,3.942562,1
-11,6,0,0,3,631817,1,10933.14,.4722793,1,7,1,6.252605,0,0,0,0,6.252605,0,0,0,1,0,7,77.40034,10.57626,.1442925,,0,424.32,1,1,1.94591,6.050488,0,0,0,0,0,0,70.68995,9.299645,1.94591,1.832998,1
-11,6,0,0,4,631817,1,10933.14,1.472279,1,7,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,,0
-11,6,0,0,5,631817,1,10933.14,2.472279,1,7,1,9.133965,0,0,0,0,9.133965,0,0,0,2,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,2.212,1
-19,6,25,0,1,631823,0,8778.802,.4654346,0,16,1,66.01778,15.32374,19.36521,0,0,100.7067,0,0,0,11,0,3,77.40034,10.57626,0,85.2,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.080209,1.098612,4.612213,1
-19,6,25,0,2,631823,0,8778.802,1.465435,0,16,1,55.429,10.50494,24.08504,0,0,90.01898,0,0,0,7,0,3,77.40034,10.57626,0,85.2,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.080209,1.098612,4.500021,1
-19,6,25,0,3,631823,0,8778.802,2.465435,0,16,1,22.83737,4.737024,22.67128,0,0,50.24567,0,0,0,4,0,3,77.40034,10.57626,0,85.2,750,750,1,0,1.098612,6.620073,0,3.258096,8.006368,0,0,0,85.2,9.080209,1.098612,3.916924,1
-11,6,0,0,1,631824,1,6278.034,.3011636,0,11,1,25.39145,2.517986,0,0,0,27.90944,0,0,0,5,0,8,77.40034,10.57626,0,59.3,0,0,1,0,2.079442,0,0,0,0,0,0,0,59.3,8.744971,2.079442,3.328965,1
-11,6,0,0,2,631824,1,6278.034,1.301164,0,11,1,11.38952,0,0,0,0,11.38952,0,0,0,2,0,8,77.40034,10.57626,0,59.3,0,0,1,0,2.079442,0,0,0,0,0,0,0,59.3,8.744971,2.079442,2.432694,1
-11,6,0,0,3,631824,1,6278.034,2.301164,0,11,1,8.650519,9.262976,0,0,0,17.91349,0,0,0,2,0,8,77.40034,10.57626,0,59.3,0,0,1,0,2.079442,0,0,0,0,0,0,0,59.3,8.744971,2.079442,2.885554,1
-13,6,0,0,1,631837,1,1756.272,14.00137,0,9,1,16.50444,0,0,0,0,16.50444,0,0,0,2,0,4,68.6,17.2,0,67.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,67.5,7.471518,1.386294,2.80363,1
-13,6,0,0,2,631837,1,1756.272,15.00137,0,9,1,67.57783,.9681093,0,0,0,68.54594,0,0,0,0,0,4,68.6,17.2,0,67.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,67.5,7.471518,1.386294,4.227504,1
-13,6,0,0,3,631837,1,1756.272,16.00137,0,9,1,0,0,0,0,0,0,0,0,0,0,0,4,68.6,17.2,0,67.5,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,67.5,7.471518,1.386294,,0
-13,6,0,0,1,631855,0,8023.042,1.196441,0,12,1,326.4619,6.121161,0,0,401.7669,734.35,2,0,0,8,26,5,77.40034,10.57626,1,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.990197,1.609438,6.598986,1
-13,6,0,0,2,631855,0,8023.042,2.196441,0,12,1,115.9804,8.919532,0,0,0,124.8999,0,0,0,5,9,5,77.40034,10.57626,1,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.990197,1.609438,4.827513,1
-13,6,0,0,3,631855,0,8023.042,3.196441,0,12,1,95.19726,12.79588,345.4546,0,0,453.4477,0,0,0,3,10,5,77.40034,10.57626,1,85.2,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,85.2,8.990197,1.609438,6.11688,1
-16,6,95,0,1,631856,0,10337.43,20.23272,1,10,1,0,0,0,0,0,0,0,0,0,0,0,8,68.1,3.4,0,77.3,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.243624,2.079442,,0
-16,6,95,0,2,631856,0,10337.43,21.23272,1,10,1,29.46732,4.004533,0,0,0,33.47186,0,0,0,0,0,8,68.1,3.4,0,77.3,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.243624,2.079442,3.510705,1
-16,6,95,0,3,631856,0,10337.43,22.23272,1,10,1,72.72727,0,0,0,979.0737,1051.801,1,0,0,2,0,8,68.1,3.4,0,77.3,1000,1000,0,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,77.3,9.243624,2.079442,6.958259,1
-16,6,95,0,1,631857,0,10337.43,1.245722,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.243624,2.079442,,0
-16,6,95,0,2,631857,0,10337.43,2.245722,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.243624,2.079442,,0
-16,6,95,0,3,631857,0,10337.43,3.245722,0,11,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,0,81.5,1000,1000,1,0,2.079442,6.907755,0,4.564348,6.959049,0,0,0,81.5,9.243624,2.079442,,0
-10,6,50,0,1,631859,1,6735.316,.2710472,0,11,1,8.413967,0,0,0,0,8.413967,0,0,0,0,0,3,77.40034,10.57626,0,70.4,353.25,434.88,1,0,1.098612,6.07507,0,3.931826,6.560323,0,0,0,70.4,8.815269,1.098612,2.129893,1
-10,6,50,0,2,631859,1,6735.316,1.271047,0,11,1,63.09029,10.55535,0,0,0,73.64564,0,0,0,2,0,3,77.40034,10.57626,0,70.4,353.25,434.88,1,0,1.098612,6.07507,0,3.931826,6.560323,0,0,0,70.4,8.815269,1.098612,4.299265,1
-10,6,50,0,3,631859,1,6735.316,2.271047,0,11,1,10.63465,1.626072,0,0,0,12.26072,0,0,0,0,0,3,77.40034,10.57626,0,70.4,353.25,434.88,1,0,1.098612,6.07507,0,3.931826,6.560323,0,0,0,70.4,8.815269,1.098612,2.506401,1
-11,6,0,0,1,631861,.5112414,1156.682,.2327173,1,12,1,19.77282,5.384939,0,0,0,25.15776,0,0,0,3,0,2,77.40034,10.57626,0,92.6,0,468,1,1,.6931472,6.148468,0,0,0,0,0,0,92.6,7.054175,.6931472,3.225167,1
-11,6,0,0,2,631861,.5112414,1156.682,1.232717,1,12,1,69.13487,0,0,0,0,69.13487,0,0,0,6,0,2,77.40034,10.57626,0,92.6,0,468,1,1,.6931472,6.148468,0,0,0,0,0,0,92.6,7.054175,.6931472,4.236059,1
-11,6,0,0,3,631861,.5112414,1156.682,2.232717,1,12,1,20.92624,14.18525,0,0,0,35.11149,0,0,0,5,0,2,77.40034,10.57626,0,92.6,0,468,1,1,.6931472,6.148468,0,0,0,0,0,0,92.6,7.054175,.6931472,3.558528,1
-7,6,25,0,1,631862,1,3338.966,.2190281,1,8,1,51.3252,30.50063,0,0,0,81.82583,0,0,0,8,0,5,77.40034,10.57626,0,81.5,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,81.5,8.113716,1.609438,4.404593,1
-7,6,25,0,2,631862,1,3338.966,1.219028,1,8,1,47.60106,24.76388,0,0,285.6064,357.9713,1,0,0,7,0,5,77.40034,10.57626,0,81.5,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,81.5,8.113716,1.609438,5.880453,1
-7,6,25,0,3,631862,1,3338.966,2.219028,1,8,1,0,4.83705,0,0,0,4.83705,0,0,0,0,0,5,77.40034,10.57626,0,81.5,720,720,1,1,1.609438,6.579251,0,3.258096,7.965546,0,0,0,81.5,8.113716,1.609438,1.576305,1
-7,6,25,0,1,631867,1,4621.608,17.01574,1,11,1,0,0,0,0,0,0,0,0,0,0,0,2,85.1,0,0,75,750,0,1,1,.6931472,0,0,3.258096,8.006368,0,0,0,75,8.438714,.6931472,,0
-7,6,25,0,2,631867,1,4621.608,18.01574,1,11,1,19.2671,0,1.888931,0,0,21.15602,0,0,0,3,0,2,85.1,0,0,75,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,75,8.438714,.6931472,3.051925,1
-11,6,0,0,1,631868,.5112414,7290.834,.1341547,1,12,1,9.255363,1.893143,0,0,0,11.14851,0,0,0,2,0,3,77.40034,10.57626,0,85.2,0,240.48,1,1,1.098612,5.482637,0,0,0,0,0,0,85.2,8.89451,1.098612,2.411305,1
-11,6,0,0,2,631868,.5112414,7290.834,1.134155,1,12,1,5.289006,0,0,0,0,5.289006,0,0,0,1,0,3,77.40034,10.57626,0,85.2,0,240.48,1,1,1.098612,5.482637,0,0,0,0,0,0,85.2,8.89451,1.098612,1.66563,1
-11,6,0,0,3,631868,.5112414,7290.834,2.134155,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,85.2,0,240.48,1,1,1.098612,5.482637,0,0,0,0,0,0,85.2,8.89451,1.098612,,0
-16,6,95,0,1,631869,1,8413.723,25.26215,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,66.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.037738,1.386294,,0
-16,6,95,0,2,631869,1,8413.723,26.26215,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,81.4,3.4,0,66.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.037738,1.386294,,0
-16,6,95,0,3,631869,1,8413.723,27.26215,1,12,1,54.2024,0,0,0,458.6621,512.8645,1,0,0,2,0,4,81.4,3.4,0,66.7,1000,1000,0,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,66.7,9.037738,1.386294,6.240012,1
-16,6,95,0,1,631870,1,8413.723,.4134155,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,,0
-16,6,95,0,2,631870,1,8413.723,1.413415,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,,0
-16,6,95,0,3,631870,1,8413.723,2.413415,0,12,1,10.63465,0,0,0,0,10.63465,0,0,0,0,0,4,77.40034,10.57626,.1442925,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,2.364117,1
-16,6,95,0,1,631871,1,8413.723,3.5154,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,,0
-16,6,95,0,2,631871,1,8413.723,4.5154,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,0,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,,0
-16,6,95,0,3,631871,1,8413.723,5.5154,0,12,1,5.831904,0,0,0,0,5.831904,0,0,0,1,0,4,77.40034,10.57626,0,63,1000,1000,1,0,1.386294,6.907755,0,4.564348,6.959049,0,0,0,63,9.037738,1.386294,1.763344,1
-18,6,25,0,1,631875,.5112414,2469.534,19.58932,1,12,1,55.53218,16.31048,0,0,207.825,279.6676,1,0,0,4,0,2,85.1,6.9,0,78.4,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,78.4,7.81219,.6931472,5.633602,1
-18,6,25,0,2,631875,.5112414,2469.534,20.58932,1,12,1,14.35588,0,0,0,0,14.35588,0,0,0,1,0,2,85.1,6.9,0,78.4,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,78.4,7.81219,.6931472,2.664159,1
-18,6,25,0,3,631875,.5112414,2469.534,21.58932,1,12,1,24.69983,0,36.36364,0,0,61.06347,0,0,0,0,1,2,85.1,6.9,0,78.4,750,0,0,0,.6931472,0,0,3.258096,8.006368,0,0,0,78.4,7.81219,.6931472,4.111914,1
-13,6,0,0,1,631879,.5112414,3575.525,1.160849,1,10,1,51.7459,0,0,0,104.7539,156.4998,1,1,0,0,0,3,77.40034,10.57626,0,70.4,450,552,1,1,1.098612,6.313548,1,4.564348,6.160541,0,0,0,70.4,8.182147,1.098612,5.053055,1
-13,6,0,0,2,631879,.5112414,3575.525,2.160849,1,10,1,62.33472,0,0,0,0,62.33472,0,0,0,0,0,3,77.40034,10.57626,0,70.4,450,552,1,1,1.098612,6.313548,1,4.564348,6.160541,0,0,0,70.4,8.182147,1.098612,4.132518,1
-13,6,0,0,3,631879,.5112414,3575.525,3.160849,1,10,1,39.45111,0,0,0,637.9073,677.3585,2,0,0,1,0,3,77.40034,10.57626,0,70.4,450,552,1,1,1.098612,6.313548,1,4.564348,6.160541,0,0,0,70.4,8.182147,1.098612,6.518201,1
-13,6,0,0,1,631880,.5112414,3575.525,16.78303,1,10,1,37.86285,0,0,0,861.5902,899.4531,1,0,0,5,0,3,75,24.1,0,55.7,450,552,1,1,1.098612,6.313548,1,4.564348,6.160541,0,0,0,55.7,8.182147,1.098612,6.801787,1
-13,6,0,0,2,631880,.5112414,3575.525,17.78303,1,10,1,31.35625,0,0,0,0,31.35625,0,0,0,0,0,3,75,24.1,0,55.7,450,552,1,1,1.098612,6.313548,1,4.564348,6.160541,0,0,0,55.7,8.182147,1.098612,3.445414,1
-13,6,0,0,3,631880,.5112414,3575.525,18.78303,1,10,1,202.7444,14.75472,68.61063,0,0,286.1098,0,0,0,6,1,3,75,24.1,0,55.7,450,552,0,0,1.098612,6.313548,1,4.564348,6.160541,0,0,0,55.7,8.182147,1.098612,5.656375,1
-6,6,25,0,1,631883,1,11735.28,.29295,1,17,1,89.62067,1.69654,0,0,0,91.31721,0,0,0,8,0,5,77.40034,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,4.514339,1
-6,6,25,0,2,631883,1,11735.28,1.29295,1,17,1,33.38335,9.602401,0,0,0,42.98575,0,0,0,4,0,5,77.40034,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,3.760869,1
-6,6,25,0,3,631883,1,11735.28,2.29295,1,17,1,11.84032,0,0,0,0,11.84032,0,0,0,2,0,5,77.40034,10.57626,0,100,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,100,9.37044,1.609438,2.471511,1
-13,6,0,0,1,631884,1,12033.79,.6817248,1,15,1,31.26303,0,65.46061,0,0,96.72363,0,0,0,2,0,3,77.40034,10.57626,0,92.6,450,300,1,1,1.098612,5.703783,1,4.564348,6.160541,0,0,0,92.6,9.395557,1.098612,4.571858,1
-13,6,0,0,2,631884,1,12033.79,1.681725,1,15,1,0,4.219805,0,0,0,4.219805,0,0,0,0,0,3,77.40034,10.57626,0,92.6,450,300,1,1,1.098612,5.703783,1,4.564348,6.160541,0,0,0,92.6,9.395557,1.098612,1.439789,1
-13,6,0,0,3,631884,1,12033.79,2.681725,1,15,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,0,92.6,450,300,1,1,1.098612,5.703783,1,4.564348,6.160541,0,0,0,92.6,9.395557,1.098612,,0
-11,6,0,0,1,631885,0,844.8541,17.16906,1,7,1,119.2163,48.21175,0,0,0,167.4281,0,0,0,12,0,3,88.3,17.2,0,61.4,0,0,1,1,1.098612,0,0,0,0,0,0,0,61.4,6.740347,1.098612,5.120554,1
-11,6,0,0,2,631885,0,844.8541,18.16906,1,7,1,142.5356,37.61816,24.3811,0,261.8155,466.3503,1,0,0,9,1,3,88.3,17.2,0,61.4,0,0,0,0,1.098612,0,0,0,0,0,0,0,61.4,6.740347,1.098612,6.144937,1
-11,6,0,0,3,631885,0,844.8541,19.16906,1,7,1,11.84032,48.01421,0,0,492.5575,552.412,1,0,0,1,0,1,88.3,17.2,0,61.4,0,0,0,0,0,0,0,0,0,0,0,0,61.4,6.740347,0,6.314294,1
-14,6,95,0,1,631886,0,5339.478,.2655715,0,9,1,120.4669,20.38766,0,0,0,140.8545,0,0,0,20,0,5,77.40034,10.57626,0,85.2,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,85.2,8.583071,1.609438,4.947728,1
-14,6,95,0,2,631886,0,5339.478,1.265571,0,9,1,112.153,31.93548,0,0,0,144.0885,0,0,0,15,0,5,77.40034,10.57626,0,85.2,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,85.2,8.583071,1.609438,4.970428,1
-14,6,95,0,3,631886,0,5339.478,2.265572,0,9,1,76.11637,47.35115,0,0,0,123.4675,0,0,0,12,0,5,77.40034,10.57626,0,85.2,308,660,1,0,1.609438,6.49224,0,4.564348,5.781393,0,0,0,85.2,8.583071,1.609438,4.815978,1
-16,6,95,0,1,631887,1,6656.426,.1615332,1,12,1,0,0,0,0,297.2072,297.2072,1,0,0,0,0,5,77.40034,10.57626,.1442925,,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.68995,8.803488,1.609438,5.694429,1
-16,6,95,0,2,631887,1,6656.426,1.161533,1,12,1,7.876969,0,0,0,0,7.876969,0,0,0,0,0,5,77.40034,10.57626,.1442925,,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.68995,8.803488,1.609438,2.063943,1
-16,6,95,0,3,631887,1,6656.426,2.161533,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,1000,1000,1,1,1.609438,6.907755,0,4.564348,6.959049,0,0,0,70.68995,8.803488,1.609438,,0
-15,6,95,0,3,631890,1,3530.792,.1026694,1,9,1,8.336807,2.501042,0,0,0,10.83785,0,0,0,1,0,2,77.40034,10.57626,.1442925,,499.2,509.08,1,1,.6931472,6.232605,0,4.564348,6.2643,0,0,0,70.68995,8.16956,.6931472,2.383044,1
-15,6,95,0,4,631890,1,3530.792,1.102669,1,9,1,0,5.532633,0,0,0,5.532633,0,0,0,0,0,2,77.40034,10.57626,.1442925,,499.2,509.08,1,1,.6931472,6.232605,0,4.564348,6.2643,0,0,0,70.68995,8.16956,.6931472,1.710664,1
-15,6,95,0,5,631890,1,3530.792,2.102669,1,9,1,6.258457,0,0,0,0,6.258457,0,0,0,0,0,2,77.40034,10.57626,.1442925,,499.2,509.08,1,1,.6931472,6.232605,0,4.564348,6.2643,0,0,0,70.68995,8.16956,.6931472,1.833934,1
-13,6,0,0,2,631900,0,8787.507,.70705,0,13,1,319.8473,46.96565,22.61069,0,0,389.4237,0,0,0,25,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.0812,1.386294,5.964668,1
-13,6,0,0,3,631900,0,8787.507,1.70705,0,13,1,104.8781,22.64808,0,0,452.9617,580.4878,1,0,0,16,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,9.0812,1.386294,6.363869,1
-11,6,0,0,2,631901,0,9949.82,.8959616,0,11,1,106.5357,5.821685,0,0,0,112.3574,0,0,0,3,13,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,9.20541,1.609438,4.721685,1
-11,6,0,0,3,631901,0,9949.82,1.895962,0,11,1,156.0892,28.39108,0,0,0,184.4803,0,0,0,8,18,5,77.40034,10.57626,.1442925,,0,0,1,0,1.609438,0,0,0,0,0,0,0,70.68995,9.20541,1.609438,5.217543,1
-15,6,95,0,2,631903,1,1798.771,.9397673,1,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,0,0,70.68995,7.495415,1.386294,,0
-15,6,95,0,3,631903,1,1798.771,1.939767,1,12,1,11.07266,0,0,0,0,11.07266,0,0,0,0,0,4,77.40034,10.57626,.1442925,,80.9,80.9,1,1,1.386294,4.393214,0,4.564348,4.444507,0,0,0,70.68995,7.495415,1.386294,2.40448,1
-16,6,95,0,2,631904,1,1725.55,.742642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,756,0,1,0,1.386294,0,0,4.564348,6.679335,0,0,0,70.68995,7.453881,1.386294,,0
-16,6,95,0,3,631904,1,1725.55,1.742642,0,12,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,756,0,1,0,1.386294,0,0,4.564348,6.679335,0,0,0,70.68995,7.453881,1.386294,,0
-11,6,0,0,4,631908,0,4633.431,.7686516,0,10.62774,1,103.8912,4.892331,0,0,433.3207,542.1042,2,0,0,6,0,2,77.40034,10.57626,.1442925,,0,0,1,0,.6931472,0,0,0,0,0,0,0,70.68995,8.441269,.6931472,6.295458,1
-13,6,0,0,2,631909,1,213.5177,.742642,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,70.68995,5.368392,2.079442,,0
-13,6,0,0,3,631909,1,213.5177,1.742642,0,10,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,450,450,1,0,2.079442,6.109248,1,4.564348,6.160541,0,0,0,70.68995,5.368392,2.079442,,0
-16,6,95,0,1,631921,1,962.6216,5.180014,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,70.68995,6.870698,1.94591,,0
-16,6,95,0,2,631921,1,962.6216,6.180014,1,7,1,11.33358,0,0,0,0,11.33358,0,0,0,2,0,7,77.40034,10.57626,.1442925,,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,70.68995,6.870698,1.94591,2.42777,1
-16,6,95,0,3,631921,1,962.6216,7.180014,1,7,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,1000,1000,1,1,1.94591,6.907755,0,4.564348,6.959049,0,0,0,70.68995,6.870698,1.94591,,0
-11,6,0,0,1,631924,0,7922.171,.0793977,1,15,1,66.01778,14.28269,0,0,0,80.30047,0,0,0,9,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.977547,1.098612,4.385776,1
-11,6,0,0,2,631924,0,7922.171,1.079398,1,15,1,17.84358,3.454822,0,0,0,21.2984,0,0,0,3,0,3,77.40034,10.57626,.1442925,,0,0,1,1,1.098612,0,0,0,0,0,0,0,70.68995,8.977547,1.098612,3.058632,1
-11,6,0,0,3,631924,0,7922.171,2.079398,1,15,1,18.3391,4.044983,0,0,0,22.38408,0,0,0,2,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.977547,1.386294,3.10835,1
-11,6,0,0,1,631925,.5112414,6735.316,.3531828,1,7,1,4.168404,0,0,0,0,4.168404,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,1.427533,1
-11,6,0,0,2,631925,.5112414,6735.316,1.353183,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,,0
-11,6,0,0,3,631925,.5112414,6735.316,2.353183,1,7,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,,0
-11,6,0,0,2,631926,1,6735.316,.6358659,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,0,0,1,0,2.197225,0,0,0,0,0,0,0,70.68995,8.815269,2.197225,,0
-11,6,0,0,3,631926,1,6735.316,1.635866,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,77.40034,10.57626,.1442925,,0,0,1,0,2.197225,0,0,0,0,0,0,0,70.68995,8.815269,2.197225,,0
-13,6,0,0,1,631927,1,1989.247,.1149897,1,12,1,36.39441,0,0,0,0,36.39441,0,0,0,2,0,3,77.40034,10.57626,.1442925,,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.68995,7.596014,1.098612,3.594415,1
-13,6,0,0,2,631927,1,1989.247,1.11499,1,12,.1530055,18.60289,1.898254,0,0,0,20.50114,0,0,0,1,0,3,77.40034,10.57626,.1442925,,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.68995,7.596014,1.098612,3.02048,1
-16,6,95,0,1,631928,0,9325.653,.0273785,1,13,1,70.67732,21.07699,0,0,0,91.75431,0,0,0,14,0,3,77.40034,10.57626,.1442925,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.140632,1.098612,4.519114,1
-16,6,95,0,2,631928,0,9325.653,1.027379,1,13,1,64.60143,57.96373,0,0,0,122.5652,0,0,0,14,0,3,77.40034,10.57626,.1442925,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.140632,1.098612,4.808643,1
-16,6,95,0,3,631928,0,9325.653,2.027379,1,13,1,318.5763,51.61578,0,0,0,370.1921,0,0,0,14,0,3,77.40034,10.57626,.1442925,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.140632,1.098612,5.914022,1
-13,6,0,0,1,631929,1,6735.316,.0328542,0,12,1,5.002084,0,0,0,0,5.002084,0,0,0,1,0,10,77.40034,10.57626,.1442925,,450,150,1,0,2.302585,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,2.302585,1.609855,1
-13,6,0,0,2,631929,1,6735.316,1.032854,0,12,1,24.75619,2.606902,0,0,0,27.36309,0,0,0,1,0,9,77.40034,10.57626,.1442925,,450,150,1,0,2.197225,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,2.197225,3.309195,1
-13,6,0,0,3,631929,1,6735.316,2.032854,0,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,450,150,1,0,1.94591,5.010635,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.94591,,0
-13,6,0,0,2,631939,.5112414,4556.067,.6194388,1,12,1,18.13374,0,0,0,0,18.13374,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.424435,1.386294,2.897774,1
-13,6,0,0,3,631939,.5112414,4556.067,1.619439,1,12,1,5.831904,0,0,0,0,5.831904,0,0,0,1,0,4,77.40034,10.57626,.1442925,,450,450,1,1,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.424435,1.386294,1.763344,1
-13,6,0,0,2,631941,1,2479.775,.6468173,1,6,1,22.66717,0,0,0,0,22.66717,0,0,0,5,0,4,77.40034,10.57626,.1442925,,450,300,1,1,1.386294,5.703783,1,4.564348,6.160541,0,0,0,70.68995,7.816326,1.386294,3.120918,1
-13,6,0,0,3,631941,1,2479.775,1.646817,1,6,1,24.69983,0,0,0,0,24.69983,0,0,0,0,0,4,77.40034,10.57626,.1442925,,450,300,1,1,1.386294,5.703783,1,4.564348,6.160541,0,0,0,70.68995,7.816326,1.386294,3.206796,1
-11,6,0,0,4,631945,0,11458.65,.4784394,1,16,1,138.1929,8.595292,0,0,0,146.7882,0,0,0,9,0,4,77.40034,10.57626,.1442925,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.386294,4.98899,1
-11,6,0,0,5,631945,0,11458.65,1.478439,1,16,1,22.49135,15.56747,0,0,0,38.05882,0,0,0,5,0,4,77.40034,10.57626,.1442925,,0,60,1,1,1.386294,4.094345,0,0,0,0,0,0,70.68995,9.346587,1.386294,3.639133,1
-11,6,0,0,2,631948,1,8102.918,.4168378,0,12,1,72.51329,38.0372,0,0,0,110.5505,0,0,0,15,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,9.000103,1.386294,4.705472,1
-11,6,0,0,3,631948,1,8102.918,1.416838,0,12,1,36.33218,21.37716,0,0,0,57.70934,0,0,0,6,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,9.000103,1.386294,4.055419,1
-6,6,25,0,4,631949,1,1759.531,.5468857,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,0,0,70.68995,7.473371,1.609438,,0
-6,6,25,0,5,631949,1,1759.531,1.546886,1,12,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,750,0,1,1,1.609438,0,0,3.258096,8.006368,0,0,0,70.68995,7.473371,1.609438,,0
-15,6,95,0,2,631959,1,10112.13,.2772074,1,12,1,102.5057,12.03493,0,0,0,114.5406,0,0,0,16,0,3,77.40034,10.57626,.1442925,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.22159,1.098612,4.74093,1
-15,6,95,0,3,631959,1,10112.13,1.277207,1,12,1,0,0,0,0,0,0,0,0,0,0,0,3,77.40034,10.57626,.1442925,,1000,1000,1,1,1.098612,6.907755,0,4.564348,6.959049,0,0,0,70.68995,9.22159,1.098612,,0
-13,6,0,0,1,631964,1,6735.316,1.713895,0,10,1,53.42869,11.90156,0,0,0,65.33025,0,0,0,3,0,4,77.40034,10.57626,.1442925,,450,450,1,0,1.386294,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.386294,4.179455,1
-13,6,0,0,2,631964,1,6735.316,2.713895,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.609438,,0
-13,6,0,0,3,631964,1,6735.316,3.713895,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.609438,,0
-13,6,0,0,4,631970,0,10029.33,.3990417,1,16,1,52.13803,10.31133,0,0,0,62.44936,0,0,0,9,0,4,77.40034,10.57626,.1442925,,300,349.96,1,1,1.386294,5.857819,1,4.564348,5.755076,0,0,0,70.68995,9.213368,1.386294,4.134356,1
-13,6,0,0,5,631970,0,10029.33,1.399042,1,16,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,300,349.96,1,1,1.386294,5.857819,1,4.564348,5.755076,0,0,0,70.68995,9.213368,1.386294,,0
-13,6,0,0,2,631971,1,6735.316,.2224504,0,10,1,9.066868,1.911598,0,0,0,10.97847,0,0,0,2,0,5,77.40034,10.57626,.1442925,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.609438,2.395936,1
-13,6,0,0,3,631971,1,6735.316,1.22245,0,10,1,0,0,0,0,0,0,0,0,0,0,0,5,77.40034,10.57626,.1442925,,450,450,1,0,1.609438,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.609438,,0
-11,6,0,0,4,631972,1,5319.648,.284052,1,12,1,57.2018,12.64066,0,0,0,69.84246,0,0,0,12,0,8,77.40034,10.57626,.1442925,,0,206.44,1,1,2.079442,5.33001,0,0,0,0,0,0,70.68995,8.57935,2.079442,4.246242,1
-11,6,0,0,5,631972,1,5319.648,1.284052,1,12,1,47.023,7.154939,0,0,475.3045,529.4824,1,0,0,2,0,8,77.40034,10.57626,.1442925,,0,206.44,1,1,2.079442,5.33001,0,0,0,0,0,0,70.68995,8.57935,2.079442,6.2719,1
-13,6,0,0,2,631973,1,1714.286,.0362765,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,450,150,1,1,1.791759,5.010635,1,4.564348,6.160541,0,0,0,70.68995,7.447335,1.791759,,0
-13,6,0,0,3,631973,1,1714.286,1.036277,1,10,1,0,0,0,0,0,0,0,0,0,0,0,6,77.40034,10.57626,.1442925,,450,150,1,1,1.791759,5.010635,1,4.564348,6.160541,0,0,0,70.68995,7.447335,1.791759,,0
-11,6,0,0,4,631974,0,7864.516,.155373,1,12,1,58.55686,8.235739,0,0,0,66.79259,0,0,0,8,0,5,77.40034,10.57626,.1442925,,0,525.76,1,1,1.609438,6.264845,0,0,0,0,0,0,70.68995,8.970243,1.609438,4.201592,1
-11,6,0,0,5,631974,0,7864.516,1.155373,1,12,1,110.4631,17.91767,42.45626,0,0,170.8371,0,0,0,10,0,5,77.40034,10.57626,.1442925,,0,525.76,1,1,1.609438,6.264845,0,0,0,0,0,0,70.68995,8.970243,1.609438,5.14071,1
-11,6,0,0,3,631980,1,5123.912,.9459274,0,12,1,38.40831,0,0,0,0,38.40831,0,0,0,7,0,3,77.40034,10.57626,.1442925,,0,192.48,1,0,1.098612,5.259992,0,0,0,0,0,0,70.68995,8.541868,1.098612,3.648274,1
-11,6,0,0,4,631981,1,10933.14,.1252567,1,7,1,39.38485,11.24531,0,0,0,50.63016,0,0,0,7,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,3.924547,1
-11,6,0,0,5,631981,1,10933.14,1.125257,1,7,1,3.38295,1.809878,0,0,0,5.192828,0,0,0,1,0,8,77.40034,10.57626,.1442925,,0,424.32,1,1,2.079442,6.050488,0,0,0,0,0,0,70.68995,9.299645,2.079442,1.647278,1
-11,6,0,0,5,632004,1,6735.316,.8651608,1,7,1,18.86792,9.451115,0,0,0,28.31904,0,0,0,1,0,4,77.40034,10.57626,.1442925,,0,152.88,1,1,1.386294,5.029653,0,0,0,0,0,0,70.68995,8.815269,1.386294,3.343534,1
-18,6,25,0,3,632005,0,12182.8,.9240246,1,16,1,87.78755,1.894452,0,0,0,89.682,0,0,0,21,0,3,77.40034,10.57626,.1442925,,194.38,194.38,1,1,1.098612,5.269815,0,3.258096,6.656109,0,0,0,70.68995,9.407862,1.098612,4.49627,1
-14,6,95,0,3,632008,1,3400.922,.7761807,1,7,1,0,0,0,0,0,0,0,0,0,0,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,1,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,,0
-11,6,0,0,3,632010,1,7187.404,.7734429,0,5,1,15.57093,6.792387,0,0,0,22.36332,0,0,0,3,0,14,77.40034,10.57626,.1442925,,0,106.56,1,0,2.639057,4.668708,0,0,0,0,0,0,70.68995,8.880224,2.639057,3.107422,1
-6,6,25,0,3,632020,0,12762.93,.7679672,0,12,1,38.06228,0,11.87543,0,0,49.93772,0,0,0,5,0,5,77.40034,10.57626,.1442925,,750,750,1,0,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.68995,9.454378,1.609438,3.910777,1
-6,6,25,0,3,632021,0,12762.93,.7679672,1,12,1,67.12803,0,0,0,0,67.12803,0,0,0,8,0,5,77.40034,10.57626,.1442925,,750,750,1,1,1.609438,6.620073,0,3.258096,8.006368,0,0,0,70.68995,9.454378,1.609438,4.206602,1
-13,6,0,0,5,632022,0,9228.152,.7857632,1,12,1,68.78216,2.058319,21.76329,0,0,92.60378,0,0,0,8,0,3,77.40034,10.57626,.1442925,,300,300,1,1,1.098612,5.703783,1,4.564348,5.755076,0,0,0,70.68995,9.130122,1.098612,4.52833,1
-11,6,0,0,3,632024,0,13767.03,.7542779,0,10,1,116.9811,38.47684,0,0,0,155.458,0,0,0,11,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,9.530105,1.386294,5.046375,1
-11,6,0,0,3,632030,1,3700.973,.7405887,1,12,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,0,168.4,1,1,1.94591,5.126342,0,0,0,0,0,0,70.68995,8.216621,1.94591,,0
-11,6,0,0,3,632031,0,7922.171,.5982204,1,15,1,54.32526,7.865052,0,0,0,62.19031,0,0,0,6,0,4,77.40034,10.57626,.1442925,,0,0,1,1,1.386294,0,0,0,0,0,0,0,70.68995,8.977547,1.386294,4.130199,1
-11,6,0,0,3,632032,.5112414,6735.316,.4284737,0,12,1,92.68293,42.0662,0,0,0,134.7491,0,0,0,20,0,4,77.40034,10.57626,.1442925,,0,0,1,0,1.386294,0,0,0,0,0,0,0,70.68995,8.815269,1.386294,4.903415,1
-19,6,25,0,3,632036,0,5479.263,.7734429,1,12,1,11.76471,0,0,0,0,11.76471,0,0,0,2,0,8,77.40034,10.57626,.1442925,,696.3,884,1,1,2.079442,6.784457,0,3.258096,7.932075,0,0,0,70.68995,8.608909,2.079442,2.465104,1
-19,6,25,0,3,632037,0,5479.263,.6830938,0,12,1,5.882353,1.965398,0,0,0,7.847751,0,0,0,1,0,8,77.40034,10.57626,.1442925,,696.3,884,1,0,2.079442,6.784457,0,3.258096,7.932075,0,0,0,70.68995,8.608909,2.079442,2.060227,1
-10,6,50,0,3,632038,1,1264.721,.6119096,0,10,1,36.70669,0,0,0,0,36.70669,0,0,0,3,0,7,77.40034,10.57626,.1442925,,795,0,1,0,1.94591,0,0,3.931826,7.37149,0,0,0,70.68995,7.143397,1.94591,3.602959,1
-13,6,0,0,5,632045,1,6735.316,.3066393,0,11,1,0,0,0,0,0,0,0,0,0,0,0,7,77.40034,10.57626,.1442925,,450,450,1,0,1.94591,6.109248,1,4.564348,6.160541,0,0,0,70.68995,8.815269,1.94591,,0
-17,6,25,0,5,632050,0,8273.9,.4544832,1,8,1,34.64837,0,0,0,0,34.64837,0,0,0,5,0,5,77.40034,10.57626,.1442925,,650,650,1,1,1.609438,6.476973,0,3.258096,7.863267,0,0,0,70.68995,9.020982,1.609438,3.545251,1
-5,6,25,0,3,632051,0,8730.671,.275154,0,8,1,29.50257,4.51801,0,0,0,34.02058,0,0,0,0,0,5,77.40034,10.57626,.1442925,,670,670,1,0,1.609438,6.507277,0,3.258096,7.893572,0,0,0,70.68995,9.074712,1.609438,3.526966,1
-14,6,95,0,3,632058,1,3400.922,.3737166,0,7,1,5.882353,0,0,0,0,5.882353,0,0,0,1,0,10,77.40034,10.57626,.1442925,,48.6,48.6,1,0,2.302585,3.883624,0,4.564348,3.934917,0,0,0,70.68995,8.132095,2.302585,1.771957,1
-19,6,25,0,3,632064,1,6735.316,.5845311,1,8,1,0,0,0,0,0,0,0,0,0,0,0,4,77.40034,10.57626,.1442925,,524.7,524.7,1,1,1.386294,6.262826,0,3.258096,7.649121,0,0,0,70.68995,8.815269,1.386294,,0
-11,6,0,0,2,632073,0,6735.316,.4031485,1,6,1,11.38952,7.517084,0,0,0,18.90661,0,0,0,2,0,7,77.40034,10.57626,.1442925,,0,216.48,1,1,1.94591,5.377498,0,0,0,0,0,0,70.68995,8.815269,1.94591,2.939512,1
-11,6,0,0,3,632073,0,6735.316,1.403149,1,6,1,0,0,0,0,0,0,0,0,0,0,0,8,77.40034,10.57626,.1442925,,0,216.48,1,1,2.079442,5.377498,0,0,0,0,0,0,70.68995,8.815269,2.079442,,0
-18,6,25,0,3,632075,0,7493.087,.3052704,0,12,1,98.96194,16.81661,0,0,467.4741,583.2526,1,0,0,8,0,5,77.40034,10.57626,.1442925,,750,967.6,1,0,1.609438,6.874819,0,3.258096,8.006368,0,0,0,70.68995,8.921869,1.609438,6.36862,1
-18,6,25,0,3,632166,0,1896.569,.0561259,0,12,1,61.93772,4.865052,0,0,0,66.80276,0,0,0,8,0,6,77.40034,10.57626,.1442925,,173.5,173.5,1,0,1.791759,5.156178,0,3.258096,6.542472,0,0,0,70.68995,7.548329,1.791759,4.201745,1
-6,6,25,0,3,632167,1,6735.316,.1054073,1,12,1,28.02768,6.813149,0,0,0,34.84083,0,0,0,6,0,4,77.40034,10.57626,.1442925,,750,750,1,1,1.386294,6.620073,0,3.258096,8.006368,0,0,0,70.68995,8.815269,1.386294,3.55079,1
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/R_scotvote.s b/statsmodels/scikits/statsmodels/datasets/scotland/R_scotvote.s
deleted file mode 100644
index 8f00379..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/R_scotvote.s
+++ /dev/null
@@ -1,17 +0,0 @@
-### SETUP ###
-d <- read.table("./scotvote.csv",sep=",", header=T)
-attach(d)
-
-### MODEL ###
-m1 <- glm(YES ~ COUTAX * UNEMPF + MOR + ACT + GDP + AGE,
- family=Gamma)
-results <- summary.glm(m1)
-results
-results['coefficients']
-logLik(m1)
-scale <- results$disp
-Y <- YES
-mu <- m1$fitted
-llf <- -1/scale * sum(Y/mu+log(mu)+(scale-1)*log(Y)+log(scale)+scale*lgamma(1/scale))
-print(llf)
-print("This is the llf calculated with the formula")
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/__init__.py b/statsmodels/scikits/statsmodels/datasets/scotland/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/data.py b/statsmodels/scikits/statsmodels/datasets/scotland/data.py
deleted file mode 100644
index 009c3c0..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/data.py
+++ /dev/null
@@ -1,84 +0,0 @@
-"""Taxation Powers Vote for the Scottish Parliament 1997 dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission from the original author,
-who retains all rights."""
-TITLE = "Taxation Powers Vote for the Scottish Parliamant 1997"
-SOURCE = """
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-"""
-DESCRSHORT = """Taxation Powers' Yes Vote for Scottish Parliamanet-1997"""
-
-DESCRLONG = """
-This data is based on the example in Gill and describes the proportion of
-voters who voted Yes to grant the Scottish Parliament taxation powers.
-The data are divided into 32 council districts. This example's explanatory
-variables include the amount of council tax collected in pounds sterling as
-of April 1997 per two adults before adjustments, the female percentage of
-total claims for unemployment benefits as of January, 1998, the standardized
-mortality rate (UK is 100), the percentage of labor force participation,
-regional GDP, the percentage of children aged 5 to 15, and an interaction term
-between female unemployment and the council tax.
-
-The original source files and variable information are included in
-/scotland/src/
-"""
-
-NOTE = """
-Number of Observations - 32 (1 for each Scottish district)
-
-Number of Variables - 8
-
-Variable name definitions::
-
- YES - Proportion voting yes to granting taxation powers to the Scottish
- parliament.
- COUTAX - Amount of council tax collected in pounds steling as of April '97
- UNEMPF - Female percentage of total unemployment benefits claims as of
- January 1998
- MOR - The standardized mortality rate (UK is 100)
- ACT - Labor force participation (Short for active)
- GDP - GDP per county
- AGE - Percentage of children aged 5 to 15 in the county
- COUTAX_FEMALEUNEMP - Interaction between COUTAX and UNEMPF
-
-Council district names are included in the data file, though are not returned
-by load.
-"""
-
-import numpy as np
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the Scotvote data and returns a Dataset instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Load the Scotvote data and returns a Dataset instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = np.recfromtxt(open(filepath + '/scotvote.csv',"rb"), delimiter=",",
- names=True, dtype=float, usecols=(1,2,3,4,5,6,7,8))
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/scotvote.csv b/statsmodels/scikits/statsmodels/datasets/scotland/scotvote.csv
deleted file mode 100644
index 4c600b6..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/scotvote.csv
+++ /dev/null
@@ -1,33 +0,0 @@
-"COUNCILDIST","YES","COUTAX","UNEMPF","MOR","ACT","GDP","AGE","COUTAX_FEMALEUNEMP"
-"Aberdeen_City",60.3,712,21,105,82.4,13566,12.3,14952
-"Aberdeenshire",52.3,643,26.5,97,80.2,13566,15.3,17039.5
-"Angus",53.4,679,28.3,113,86.3,9611,13.9,19215.7
-"Argyll_and_Bute",57,801,27.1,109,80.4,9483,13.6,21707.1
-"Clackmannanshire",68.7,753,22,115,64.7,9265,14.6,16566
-"Dumfries_and_Galloway",48.8,714,24.3,107,79,9555,13.8,17350.2
-"Dundee_City",65.5,920,21.2,118,72.2,9611,13.3,19504
-"East_Ayrshire",70.5,779,20.5,114,75.2,9483,14.5,15969.5
-"East_Dunbartonshire",59.1,771,23.2,102,81.1,9483,14.2,17887.2
-"East_Lothian",62.7,724,20.5,112,80.3,12656,13.7,14842
-"East_Renfrewshire",51.6,682,23.8,96,83,9483,14.6,16231.6
-"Edinburgh_City",62,837,22.1,111,74.5,12656,11.6,18497.7
-"Eilean_Siar_(Western_Isles)",68.4,599,19.9,117,83.8,8298,15.1,11920.1
-"Falkirk",69.2,680,21.5,121,77.6,9265,13.7,14620
-"Fife",64.7,747,22.5,109,77.9,8314,14.4,16807.5
-"Glasgow_City",75,982,19.4,137,65.3,9483,13.3,19050.8
-"Highland",62.1,719,25.9,109,80.9,8298,14.9,18622.1
-"Inverclyde",67.2,831,18.5,138,80.2,9483,14.6,15373.5
-"Midlothian",67.7,858,19.4,119,84.8,12656,14.3,16645.2
-"Moray",52.7,652,27.2,108,86.4,13566,14.6,17734.4
-"North_Ayrshire",65.7,718,23.7,115,73.5,9483,15,17016.6
-"North_Lanarkshire",72.2,787,20.8,126,74.7,9483,14.9,16369.6
-"Orkney_Islands",47.4,515,26.8,106,87.8,8298,15.3,13802
-"Perth_and_Kinross",51.3,732,23,103,86.6,9611,13.8,16836
-"Renfrewshire",63.6,783,20.5,125,78.5,9483,14.1,16051.5
-"Scottish_Borders_The",50.7,612,23.7,100,80.6,9033,13.3,14504.4
-"Shetland_Islands",51.6,486,23.2,117,84.8,8298,15.9,11275.2
-"South_Ayrshire",56.2,765,23.6,105,79.2,9483,13.7,18054
-"South_Lanarkshire",67.6,793,21.7,125,78.4,9483,14.5,17208.1
-"Stirling",58.9,776,23,110,77.2,9265,13.6,17848
-"West_Dunbartonshire",74.7,978,19.3,130,71.5,9483,15.3,18875.4
-"West_Lothian",67.3,792,21.2,126,82.2,12656,15.1,16790.4
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland.readme b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland.readme
deleted file mode 100644
index 519006a..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland.readme
+++ /dev/null
@@ -1,27 +0,0 @@
-#########################################################################################################
-# #
-# This archive is part of the free distribution of data and statistical software code for #
-# "Generalized Linear Models: A Unified Approach", Jeff Gill, Sage QASS Series. You are #
-# free to use, modify, distribute, publish, etc. provided attribution. Please forward #
-# bugs, complaints, comments, and useful changes to: jgill@latte.harvard.edu. #
-# #
-#########################################################################################################
-
-Electoral Politics in Scotland. These data are from the 1997 vote that established a Scottish
-Parliament with taxing powers. The data are culled from several different official UK documents
-provided by the Office for National Statistics, the General Register Office for Scotland, the
-Scottish Office: Education and Industry Department, the Scottish Department for Education
-and Employment, The Scottish Office Office: Development Department, and David Boothroyd (thank you).
-The files in this zip archive are:
-
-scotland.readme this file
-scotvote.dat the data file with a header indicating
-
-scotland_births.html
-scotland_changes.html
-scotland_devolution.html
-scotland_econ_summary.html
-scotland_economics.html
-scotland_education.html
-scotland_housing.html
-scotland_population.html these are html files with various details on the variables included.
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_births.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_births.html
deleted file mode 100644
index cdc91d9..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_births.html
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-Cross-sectional dataset viewer v1.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dataset Display - Cross-Sectional
-
-
-
-
-
- Dataset Name:
-
- RT331602
-
-
-
- Title:
-
-
- Vital and social statistics: Scotland
-
-
-
-
-
-
- Description:
-
- Vital and social statistics: Scotland This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-
- Source:
-
- Office for National Statistics; General Register Office for Scotland
-
-
-
- Time Frame:
-
- 1996
-
-
-
-
-
- Geographic Coverage:
-
- United Kingdom
-
-
-
-
- Universe:
-
- UK live births
-
-
-
- Measure:
-
- various
-
-
-
-
-
-
- Units:
-
- See table
-
-
-
- Scalar:
-
- various
-
-
-
- Formula:
-
- none
-
-
-
-
-
-
-
-
-
-
-
-
- Table Dimensions
-
- Please select at least one item from each list and "Display Selection" or choose "Display All"
- To select list items either hold down 'Ctrl' key and click each item required, or click the first item and hold down the mouse button whilst scrolling down the list.
-
-
-
-
-
- Region
-
- 4
-
-
-
-
- Measure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Table
-
-
-
-
-
-
-
-Live births per 1,000 population 19961 Deaths per 1,000 population 19961 Perinatal mortality rate, 3 year average, 1994-19962 Infant mortality rate, 3 year average, 1994-19963 Percentage of live births outside marriage 1996 United Kingdom 12.5 10.9 8.8 6.1 36.0 Scotland 11.6 11.8 9.3 6.2 36.0 Aberdeen City 11.0 10.4 7.7 5.7 35.0 Aberdeenshire 11.3 9.0 9.0 3.8 24.0 Angus3 11.0 13.2 5.6 3.2 33.0 Argyll and Bute 10.5 13.8 8.6 7.0 33.0 Clackmannanshire 12.3 11.3 10.4 6.3 40.0 Dumfries and Galloway 10.9 12.8 8.8 7.8 34.0 Dundee City 11.5 13.1 8.6 6.8 51.0 East Ayrshire3 11.4 11.6 12.3 6.5 40.0 East Dunbartonshire 10.5 9.2 8.1 7.2 19.0 East Lothian 12.3 12.6 7.6 5.2 29.0 East Renfrewshire 11.5 9.5 7.4 6.2 19.0 Edinburgh, City of 11.4 11.7 8.1 6.4 33.0 Eilean Siar (Western Isles)23 9.7 14.9 11.2 5.7 19.0 Falkirk 11.7 11.7 7.9 4.8 34.0 Fife 11.0 11.4 8.7 7.1 37.0 Glasgow City 12.5 14.0 11.1 6.9 49.0 Highland 11.4 11.4 8.3 6.5 34.0 Inverclyde 11.7 14.5 11.5 8.0 45.0 Midlothian 11.2 10.7 10.8 6.0 35.0 Moray 12.4 11.0 9.8 7.4 26.0 North Ayrshire23 11.3 11.8 11.6 6.9 42.0 North Lanarkshire 12.5 11.1 11.6 8.5 38.0 Orkney Islands 10.9 11.6 7.5 1.4 30.0 Perth and Kinross3 10.5 12.6 9.8 5.9 29.0 Renfrewshire3 11.9 11.6 8.0 4.5 39.0 Scottish Borders, The3 10.7 12.8 8.0 4.9 28.0 Shetland Islands23 11.7 10.9 9.9 6.5 28.0 South Ayrshire 10.1 12.7 6.2 4.3 33.0 South Lanarkshire 11.5 11.3 9.2 5.1 33.0 Stirling 11.1 11.8 7.7 4.9 33.0 West Dunbartonshire 12.5 12.7 11.7 8.7 42.0 West Lothian 13.1 9.5 8.7 4.6 33.0
-
-
-
- Footnotes
- 1 - Births are on the basis of year of occurrence in England and Wales and year of registration in Scotland and Northern Ireland. Deaths relate to year of registration. 2 - Still births and deaths of infants under 1 week of age per 1,000 live and still births. Figures for some Council areas should be treated with caution as the perinatal mortality rate was based on fewer than 20 deaths. 3 - Deaths of infants under 1 year of age per 1,000 live births. Figures for some Council areas should be treated with caution as the infant mortality rate was based on fewer than 20 deaths. 4 - New Councils for Scotland
-
-
-
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_changes.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_changes.html
deleted file mode 100644
index 6af4699..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_changes.html
+++ /dev/null
@@ -1,364 +0,0 @@
-
-
- GENUKI: Administrative Areas of Scotland
-
-
-
-
-
-
-
-
-
-
-Administrative Areas of Scotland
-
-The first table below
-shows the historic counties and their administrative sub-divisions before
-the first round of changes and lists the successor regions for each, that
-is the post-change regions which contain some or all of the original county
-area. The second table shows the regions after the first round of changes
-and lists their successor unitary authorities. In all cases
-only the top-tier authority is shown - either the top-tier in a two-tier
-arrangement or a single tier authority (shown italicised).
-
-The tables also show the Chapman County Codes (CCC) for each county and
-region. These are unique 3 letter codes.
-
-For a brief description of the administrative changes in the United Kingdom
-see - Local Government Changes in the United
-Kingdom .
-
-The following abbreviations are used in these tables:
-
-
-
-Key
-
-(C)
-County of a City
-
-(U)
-Unitary Authority
-
-
-
-Single-tier local authorities are shown italicised.
-
-The links in the following table are to outline maps showing the location of each
-county.
-
-
-
-
-The links in the following table are to maps provided by the Scottish Office.
-
-
-
-Scotland - changes of 1996
-
-Administration 1975-1996
-CCC
-Successor Unitary Authorities
-
-Borders
-BOR
-The Scottish Borders (U)
-
-Central
-CEN
-Clackmannanshire (U)
-Falkirk (U)
-Stirling (U)
-
-Dumfries and Galloway
-DGY
-Dumfries and Galloway (U)
-
-Fife
-FIF
-Fife (U)
-
-Grampian
-GMP
-Aberdeenshire (U)
-Aberdeen City (U)
-Moray (U)
-
-Highland (8)
-HLD
-Highland (U)
-
-Lothian
-LTN
-City of Edinburgh (U)
-East Lothian (U)
-Midlothian (U)
-West Lothian (U)
-
-Orkney (5)
-OKI
-Orkney Islands (U)
-
-Shetland (7)
-SHI
-Shetland Islands (U)
-
-Strathclyde (9)
-STD
-Argyll and Bute (U)
-City of Glasgow (U)
-East Ayrshire (U)
-East Dunbartonshire (U)
-East Renfrewshire (U)
-Inverclyde (U)
-North Ayrshire (U)
-North Lanarkshire (U)
-Renfrewshire (U)
-South Ayrshire (U)
-South Lanarkshire (U)
-West Dunbartonshire (U)
-
-Tayside
-TAY
-Angus (U)
-Dundee City (U)
-Perth and Kinross (U)
-
-Western Isles (10)
-WIS
-Western Isles (U)
-
-
-
-Notes
-
-
- An old name for Angus is "Forfarshire".
- Includes islands: Islay, Jura and Mull.
- Consists of islands Arran and Bute.
- Includes islands: Lewis (part), North Uist, South
- Uist, and Skye.
- Also "Orkney Isles", or "Orkney Islands",
- but NOT "The Orkneys"!
- Includes part of the island of Lewis.
- Also "Shetland Isles", or "Shetland
- Islands", but NOT "The Shetlands"! Originally known as
-"Zetland".
- Includes the island of Skye.
- Includes islands: Arran, Bute, Islay, Jura and Mull.
- Includes islands: Lewis, North Uist and South Uist.
-
-
-
-
-© GENUKI and Contributors 1993, 1997
-
-Page created by Phil Lloyd in January 1993. Revised and updated in
-September 1997 by Brian Pears.
-
-[Last updated: 13th February 1999 - Brian Pears]
-
-
-
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_devolution.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_devolution.html
deleted file mode 100644
index 1617fe6..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_devolution.html
+++ /dev/null
@@ -1,233 +0,0 @@
-Devolution referendum 97 result
-
-Devolution referendum 97 result
-'The reason we need a parliament in Scotland is partly so that we can repair some of the damage done by the last Government to, for example, the health service and our manufacturing industry, and partly to ensure that anti-democratic experiments like using Scotland to rehearse the poll tax can never happen again.'
-The Duke of Hamilton & Brandon, whose ancestors resisted the 1707 Treaty of Union, 9 th September 1997.
-
-
-Devolution referendum 1997 - the results
-(See the note below concerning the Fife count by David Boothroyd).
-
-
-
-
Final votes
-
-I agree that there should be a Scottish Parliament 1,775,045 74.3 %
-
-I do not agree that there should be a Scottish Parliament 614,400 25.7 %
-
-
-
-I agree that a Scottish Parliament should have tax-varying powers 1,512,889 63.5 %
-
-I do not agree that a Scottish Parliament should have tax-varying powers 870,263 36.5 %
-
-
-Votes by Unitary Authority
-
-I agree that there should be a Scottish Parliament
-
-
-Authority Yes votes Yes % No votes No %
-
-Orkney 4,749 57.3 % 3,541 42.7 %
-
-Dumfries & Galloway 44,619 60.7 % 28,863 39.3 %
-
-Perthshire & Kinross 40,344 61.7 % 24,998 38.3 %
-
-East Renfrewshire 28,253 61.7 % 17,573 38.3 %
-
-Shetland 5,430 62.4 % 3,275 37.6 %
-
-Scottish Borders 33,855 62.8 % 20,060 37.2 %
-
-Aberdeenshire 61,621 63.9 % 34,878 36.1 %
-
-Angus 33,571 64.7 % 18,350 35.3 %
-
-South Ayrshire 40,161 66.9 % 19,909 33.1 %
-
-Moray 24,822 67.2 % 12,122 32.8 %
-
-Argyll & Bute 30,452 67.3 % 14,796 32.7 %
-
-Stirling 29,190 68.5 % 13,440 31.5 %
-
-East Dunbartonshire 40,917 69.8 % 17,725 30.2 %
-
-Aberdeen 65,035 71.8 % 25,580 28.2 %
-
-Edinburgh 155,900 71.9 % 60,832 28.1 %
-
-Highland 72,551 72.6 % 27,431 27.4 %
-
-East Lothian 33,525 74.2 % 11,665 25.8 %
-
-Dundee 49,252 76.0 % 15,553 24.0 %
-
-Fife 125,668 76.1 % 39,517 23.9 %
-
-North Ayrshire 51,304 76.3 % 15,931 23.7 %
-
-South Lanarkshire 114,908 77.8 % 32,762 22.2 %
-
-Inverclyde 31,680 78.0 % 8,945 22.0 %
-
-Renfrewshire 68,711 79.0 % 18,213 21.0 %
-
-Western Isles 9,977 79.4 % 2,589 20.6 %
-
-West Lothian 56,923 79.6 % 14,614 20.4 %
-
-Midlothian 31,681 79.9 % 7,979 20.1 %
-
-Clackmannanshire 18,790 80.0 % 4,706 20.0 %
-
-Falkirk 55,642 80.0 % 13,953 20.0 %
-
-East Ayrshire 49,131 81.1 % 11,426 18.9 %
-
-North Lanarkshire 123,063 82.6 % 26,010 17.4 %
-
-Glasgow 204,269 83.6 % 40,106 16.4 %
-
-West Dunbartonshire 39,051 84.7 % 7,058 15.3 %
-
-Scotland 1,775,045 74.3 % 614,400 25.7 %
-
-
-
I agree that a Scottish Parliament should have tax-varying powers
-
-
-Authority Yes votes Yes % No votes No %
-
-Orkney 3,917 47.4 % 4,344 52.6 %
-
-Dumfries & Galloway 35,737 48.8 % 37,499 51.2 %
-
-Scottish Borders 27,284 50.7 % 26,497 49.3 %
-
-Perthshire & Kinross 33,398 51.3 % 31,709 48.7 %
-
-East Renfrewshire 23,580 51.6 % 22,153 48.4 %
-
-Shetland 4,478 51.6 % 4,198 48.4 %
-
-Aberdeenshire 50,295 52.3 % 45,929 47.7 %
-
-Moray 19,326 52.7 % 17,344 47.3 %
-
-Angus 27,641 53.4 % 24,089 46.6 %
-
-South Ayrshire 33,679 56.2 % 26,217 43.8 %
-
-Argyll & Bute 25,746 57.0 % 19,429 43.0 %
-
-Stirling 25,044 58.9 % 17,487 41.1 %
-
-East Dunbartonshire 34,576 59.1 % 23,914 40.9 %
-
-Aberdeen 54,320 60.3 % 35,709 39.7 %
-
-Edinburgh 133,843 62.0 % 82,188 38.0 %
-
-Highland 61,359 62.1 % 37,525 37.9 %
-
-East Lothian 28,152 62.7 % 16,765 37.3 %
-
-Renfrewshire 55,075 63.6 % 31,537 36.4 %
-
-Fife 108,021 64.7 % 58,987 35.3 %
-
-Dundee 42,304 65.5 % 22,280 34.5 %
-
-North Ayrshire 43,990 65.7 % 22,991 34.3 %
-
-Inverclyde 27,194 67.2 % 13,277 32.8 %
-
-West Lothian 47,990 67.3 % 23,354 32.7 %
-
-South Lanarkshire 99,587 67.6 % 47,708 32.4 %
-
-Midlothian 26,776 67.7 % 12,762 32.3 %
-
-Western Isles 8,557 68.4 % 3,947 31.6 %
-
-Clackmannanshire 16,112 68.7 % 7,355 31.3 %
-
-Falkirk 48,064 69.2 % 21,403 30.8
-
-East Ayrshire 42,559 70.5 % 17,824 29.5 %
-
-North Lanarkshire 107,288 72.2 % 41,372 27.8 %
-
-West Dunbartonshire 34,408 74.7 % 11,628 25.3 %
-
-Glasgow 182,589 75.0 % 60,842 25.0 %
-
-Scotland 1,512,889 63.5 % 870,263 36.5 %
-
-
-
-
-
How Scotland voted, region by region, in 1979
-
-
-Region/Islands area Yes Votes % votes % electorate No Votes % votes % electorate Turnout
-Shetland Islands 2,020 27 14 5,466 73 36 50
-Orkney Islands 2,104 28 15 5,439 72 39 54
-Borders 20,746 40 27 30,780 60 40 67
-Dumfries & Galloway 27,162 40 26 40,239 60 38 64
-Grampian 94,944 48 28 101,485 52 30 58
-Tayside 91,482 49 31 93,325 51 32 63
-Lothian 187,221 50 33 186,421 50 33 66
-Highland 44,973 51 33 43,274 49 32 65
-Fife 86,252 54 35 74,436 46 30 65
-Strathclyde 596,519 54 34 508,599 46 29 63
-Central 71,296 55 36 59,105 45 30 66
-Western Isles 6,218 56 28 4,933 44 22 50
-Scotland 1,230,937 52 33* 1,153,502 48 31* 64*
-
-*Percentage on register of 3,747,112 as adjusted by Secretary of State.
-
-Note by David Boothroyd concerning the Fife count
-
-I have been doing some work developing my website (which is now at
-http://www.election.demon.co.uk/election.html ) and while preparing the
-results of the Scottish Parliament referendum I discovered a fairly big
-discrepancy in the count from Fife Council.
-
-The Scottish Office press release giving the results of the referendum
-(no. 1269/97) says that 166,554 people voted in Fife, which I presume
-represents the number marked on registers as voting. On the first question,
-the total number of votes (Yes, No and spoilt ballot papers) is 166,025.
-
-However on the second question, the total number of votes is 167,999 -
-1,445 more than the number of ballot papers which should have been issued,
-and 1,974 more than the number of ballot papers counted on the first question.
-
-All sources of results give the same figures and so I wrote to the Scottish
-Office to ask them how this discrepancy might have come about. Their reply
-suggests it may have resulted from voters demanding only the ballot paper
-for the second question, though presiding officers were instructed to give
-all voters both ballot papers, and such people would be marked as voting
-and therefore included anyway.
-
-The Scottish Office verified that the results which were issued were those
-which were certified by the counting officer in Fife and so they represent
-the result of the referendum in spite of being inaccurate.
-
-
-If anyone can shed any light on this please contact David Boothroyd at david@election.demon.co.uk
-
-
-
-
-
-
-
-Return to home page
-
-
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_econ_summary.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_econ_summary.html
deleted file mode 100644
index 4c32ad1..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_econ_summary.html
+++ /dev/null
@@ -1,234 +0,0 @@
-
-Scottish Economic Bulletin: Economic Review
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-The Scottish Economy
-Gross Domestic Product
-
-Provisional estimates of GDP (income measure) for each UK Government Office Region/country are now available for 1996 with the publication of the Regional Accounts.7 Estimates for 1995 were also made available at county/former Scottish region level.
-
-Scottish GDP in 1996 was £54.43 billion, 8.6 per cent of UK GDP. GDP per head was £10,614, 99.1 per cent of the UK average. This was the fourth highest of the 12 UK Government Office Regions/countries - below only London, South East and Eastern - for the fifth successive year.
-
-GDP per head in Scotland relative to the UK increased strongly between 1989 and 1992, reflecting the stronger performance of the Scottish economy in the 1990-1992 UK recession. Since 1992, GDP per head has fluctuated around 99 per cent of UK GDP per head, reaching a peak of 100.2 per cent in 1995.
-
-Table 2 shows GDP per head in the former Scottish regions in 1995.8 It is instructive to look at trends and, accordingly, Table 2 also provides data for 1989. GDP per head was well above the UK average in both Grampian (133 per cent) and Lothian (124 per cent) in 1995. Although Grampian showed the smallest increase in GDP per head over the 1993-1995 period (and fell slightly relative to the UK), the level of GDP per head was third only to London and Berkshire across the UK, followed by Lothian. All other Scottish regions were below the UK average and GDP per head in the Highlands and Islands and in Fife was amongst the lowest in the UK.
-
-Table 2: GDP in the Scottish Regions, 1989 and 1995
-
-
- GDP per head 1995 (£) GDP per head, 1990=100
-1989 1995
-Borders 9,003 80.1 88.3
-Central 9,265 89.1 90.8
-Dumfries and Galloway 9,555 86.4 93.7
-Fife 8,314 84.0 81.5
-Grampian 13,566 119.4 133.0
-Highlands and Islands 8,298 80.4 81.4
-Lothian 12,656 111.4 124.1
-Strathclyde 9,483 87.9 93.0
-Tayside 9,611 88.8 94.2
-
-Scotland 10,244 93.8 100.2
-
-UK 10,199 100.0 100.0
-
-
-Source: Office for National Statistics
-
-The improvement in Scottish GDP per head, relative to the UK, from 1989 has been evident across most Scottish regions. Lothian, Borders and Grampian have seen particularly marked improvements and only Fife had a lower relative level of GDP per head in 1995 than in 1989. Relative GDP per head in the Highlands and Islands has increased slightly but levels have fallen since the peak (of 88.8 per cent ) in 1991.
-
-
Index of Production and Construction
-The Scottish Office Education and Industry Department's quarterly Index of Production and Construction rose by 0.4 per cent in 1997 Q3. Excluding oil and gas, the Index rose by 0.5 per cent. At a broad sectoral level, output rose in manufacturing (0.9 per cent) and in electricity, gas and water supply (5.7 per cent), offset by falling output in construction (2.5 per cent) and mining and quarrying (1.8 per cent). The UK index (less oil and gas) rose by 0.7 per cent in 1997 Q3.
-
-An indication of the underlying trend in industrial output is obtained by comparing the last 4 quarters for which data are available (to 1997 Q3) with the previous 4 quarters (to 1996 Q3). Excluding oil and gas, the Index rose by 6.0 per cent over this period, as increases were recorded in manufacturing (7.4 per cent), construction (1.8 per cent), electricity, gas and water supply (5.7 per cent) and mining and quarrying (3.3 per cent). By comparison, the UK Index (less oil and gas) rose by 2.0 per cent over the same period.
-
-Since 1990, manufacturing output has increased by 25.6 per cent. Growth in UK manufacturing has been much more sluggish than in Scotland, growing by only 5.1 per cent over the same period. The influence of the electrical and instrument engineering sector (EIE) on Scottish manufacturing has been discussed in past editions of the Scottish Economic Bulletin and by outside commentators. Excluding EIE, manufacturing output in Scotland has declined by 7.7 per cent since 1990. UK manufacturing excluding EIE has increased by 1.8 per cent.
-
-In the year to 1997 Q3, the EIE sector continued to grow strongly - by 18.4 per cent. However, growth was also evident in 6 of the other 10 manufacturing sectors over the period. This is the continuation of a trend over the last year in which growth in the manufacturing sector has become more broadly based. Indeed as Chart 3 shows, manufacturing output excluding EIE has been increasing year-on-year in each quarter since 1996 Q4, a trend not seen since 1990 Q3. In the year to 1997 Q3, manufacturing output excluding EIE grew by 1.4 per cent, only slightly below the 1.5 per cent growth in the UK as a whole.
-
-
-CHART 3 HERE
-
-Exports
-
-The manufacturing sector accounts for most of Scotland's external trade with the rest of the world. Estimates from the 1994 Input-Output Tables9 9 indicate that around three quarters of trade is in manufacturing. The Scottish Council Development and Industry (SCDI) annual survey of Scottish Manufactured Exports for 1996 was published in December 1997. In current prices, the value of Scottish manufactured exports10 was estimated to have risen by 6.4 per cent in 1996 to £18.42 billion. This represents a slower rate of growth than in recent years (20.3 per cent in 1995 and 24.8 per cent in 1994) and can be compared with growth of 8.9 per cent in UK manufactured exports (to £155.18 billion) in 1996. For the first time since 1988, UK manufactured exports growth outpaced that of Scotland and Scotland's share of UK exports fell marginally from 12.1 per cent in 1995 to 11.9 per cent in 1996.
-
-As shown in Table 3, four sectors - Office Machinery, Radio/TV/Communication Equipment, Whisky and Chemicals - continued to dominate Scottish manufactured exports in 1996, accounting for 75 per cent of the total. The electronics sector11 had a more mixed export performance in 1996 than in recent years. Exports grew by 6.9 per cent to £10.21 billion (55.5 per cent of total manufactured exports). This compares with growth of over 42 per cent in 1995. Exports from the Office Machinery sector - the largest exporting sector - rose by 14.3 per cent in 1996 to £6.83 billion (37.1 per cent of total manufactured exports). While this rate of growth was considerably lower than in 1995, the sector still contributed over 77 per cent to the total growth in manufactured exports in 1996. Exports from the other major element of Scotland's electronics industry - the Radio/TV/Communication Equipment sector - declined by 7.3 per cent to £3.00 billion.
-
-Table 3: Top Exporting Sectors in Scotland, 1996
-
-
-Sector (SIC92) Value at current prices (£ million) Per cent of Total Nominal increase in value 1995-96: per cent Contribution to total export growth: per cent
-Office Machinery 6,825.0 37.1 14.3 77.5
-Radio, Television & Communication 3,003.8 16.3 -7.3 -21.6
- Equipment and Apparatus Whisky 2,278.1 12.4 0.1 0.1
-Chemicals and Chemical Products 1,706.4 9.3 9.2 13.1
-Machinery and Equipment nec 802.2 4.4 18.4 11.4
-Other Food Products & Beverages 446.0 2.4 -10.7 -4.8
-Fabricated Metal Products except Machinery and Equipment 411.1 2.2 37.3 10.2
-Pulp, Paper and Paper Products 387.0 2.1 -2.0 -0.7
-Coke, Refined Petroleum Products and Nuclear Fuel 332.0 1.8 69.6 12.4
-Other Transport Equipment 326.8 1.8 -22.4 -8.6
-
-Other sectors 1,896.2 10.3 6.8 11.1
-
-All Manufacturing Industries 18,414.6 100.0 6.3 100.0
-
-
-Source: Scottish Council Development and Industry
-
-Note: 1. Under SIC 92 Whisky is normally incorporated in the Food Products & Beverages sector.
-
-Exports from the whisky sector increased only marginally in 1996, up by 0.1 per cent to £2.28 billion (12.4 per cent of total manufactured exports). The Chemicals and Chemical Products sector experienced a further rise in exports in 1996, of 9.2 per cent to £1.71 billion (9.3 per cent of total manufactured exports). This follows growth of 9.0 per cent in 1995. An additional 19 industry sectors together represented 25 per cent of total manufactured exports in 1996. Export growth was recorded in 14 sectors.
-
-Overall the latest figures record a positive - and better than expected - performance by Scottish manufacturing in export markets during 1996. The SCDI quarterly index based on a selected panel survey of large exporters had provisionally estimated a fall of 6.8 per cent in manufactured exports. The rapid growth rates of recent years have slowed but export levels in most sectors continue to rise. Initial estimates from the SCDI quarterly index for 1997 suggest further growth of 12.0 per cent to £20.61 billion.
-
-Exports by Destination
-
-As shown in Table 4, the EU remained Scotland's main trading area in 1996 with a 58 per cent share of Scotland's exports. However, exports grew more modestly - by 2.9 per cent - in 1996. Six of the top ten individual country markets were in the EU, the others being the USA, Japan, Switzerland and Norway. The latest survey results confirm France as Scotland's largest export market for the fourth successive year, despite a drop in the actual value of exports of 5.4 per cent to £2.80 billion. (15.2 per cent of total Scottish manufactured exports).
-
-Table 4: Destination of Scottish Exports in 1996
-
-
- Value (£ million, current prices) Per cent of total Nominal percentage growth in 1996 Contribution to overall growth: per cent
-European Union 10,756 58.4 2.9 27.5
-North America 2,318 12.6 36.8 56.8
-Other Asia Pacific 1,556 8.4 -14.2 -23.5
-EFTA 1,072 5.8 16.4 13.7
-Japan 812 4.4 6.3 4.4
-Middle East 513 2.8 23.3 8.8
-Latin America 510 2.8 4.5 2.0
-Eastern Europe 396 2.2 53.5 12.6
-Africa 311 1.7 -0.6 -0.2
-Australasia 171 0.9 -11.9 -2.1
-
-
-Source: Scottish Council Development and Industry
-
-Exports to the USA rose by 38.3 per cent in 1996 to £2.22 billion. The USA was responsible for nearly 50 per cent of the increase in total Scottish exports and overtook Germany as the second largest market. There was a strong upturn in sales across the Office Machinery, Radio/TV/Communication Equipment, Coke/Petroleum and Chemicals sectors; the strength of the US economy a causal factor. North America displaced Other Asia Pacific as Scotland's second largest trading area.
-
-Exports to Japan continued to increase and remained the 7th largest country market for Scottish goods. Total exports to the Other Asia Pacific countries fell by 14.2 per cent in 1996, compared with strong growth of 30.9 per cent in 1995. However, this was almost entirely due to a large drop in exports to Malaysia; there were significant rises in exports to Hong Kong, Singapore and Taiwan. Elsewhere, exports to most other regions showed significant growth with sales to Eastern Europe up 53.5 per cent and exports to the Middle East up 23.3 per cent. Growth in sales were also recorded to the EFTA countries, while exports to Latin America continued to grow modestly. There was a marginal decline in sales to Africa following last year's significant increase, while exports to Australasia continued to decline.
-
-The Sterling Exchange Rate and Exports
-
-Inevitably, the strength of sterling has put pressure on Scottish exports. As one would expect, the exposure to exchange rate movements varies by sector in Scotland. This is illustrated in Table 5 which shows, at the broad sectoral level, the proportion of total domestic (i.e. Scottish) output dependent on exports outwith the UK (i.e. to the rest of the world, ROW) and the import content of that output from the same source. The table also shows the corresponding proportions for Scotland's trade with the rest of the UK (RUK).
-
-Table 5: The External Orientation of Scottish Industry, 1994
-
-
-Industry Proportion of domestic output dependent on : Components of gross domestic output
-Exports to RUK Exports to ROW Imports from RUK Imports from ROW
-Agriculture, Forestry and Fishing 19.7 12.9 7.4 1.4
-Mining and Quarrying 41.0 29.1 18.9 6.8
-Energy and Water Supply 6.4 1.0 7.8 7.7
-Manufacturing 26.7 41.8 18.8 18.2
-Construction 6.0 0.0 17.7 3.9
-Transport and Communication 20.0 8.4 8.9 2.5
-Distribution and Catering 14.1 0.0 5.7 1.0
-Financial and Business Services 12.3 5.8 10.8 1.9
-Other Services 4.1 2.7 4.1 1.2
-
-Whole Economy 16.5 16.3 12.0 7.3
-
-
-Source: The Scottish Office
-
-The manufacturing sector is clearly the most sensitive to the effects of exchange rate changes: over 40 per cent of output is exported to ROW and almost 20 per cent of inputs are imported from ROW. Within the sector (though not shown in the table), 2 industries - drink and electrical and instrument engineering - export more than two thirds of their output to ROW, while chemicals and electrical and instrument engineering also import more than a third of inputs. By contrast, the output of the service sector is much more dependent on the home market, relying less on exports to generate value added. The gross output of the service sector also embodies a lower import content.
-
-For manufacturing, available evidence from the SCDI for 1997 suggests that the strength of sterling is causing difficulties in terms of reduced margins and some job losses. However, as described above, it appears that it has not yet impacted upon the level of export sales, only profitability.
-
-Business survey evidence in Scotland does point to an adverse impact on exports resulting from sterling's strength but results are far from conclusive. The Scottish Chambers' Business Survey reported a decline in export orders and sales in 1997 Q4, as in Q3 and results from Scottish Engineering also revealed that export orders declined for the third successive quarter, falling in all sectors of the industry. By contrast, the CBI Industrial Trends Survey reported a return to growth in export orders and deliveries also increased significantly in the fourth quarter. However, optimism regarding export prospects fell markedly and, as one might expect, respondents continued to believe that prices would be the most important constraint on export orders over the coming months.
-
-One particular area in which the exchange rate may have been expected to affect activity levels is travel and tourism both to and from overseas. International Passenger Survey (IPS) evidence for the 12 months to November 1997 shows that the number of visitors to the UK rose by 3 per cent, compared with the year to November 1996. The number of visits from North America increased by 14 per cent, while the number of visits from Western Europe was broadly static. Visits from Other Areas rose by 4 per cent. The total number of UK residents' visits abroad during the 12 months ending November 1997 rose by 11 per cent compared with a year earlier. Visits to Western Europe increased by 12 per cent, while visits to North America and Other Areas increased by 2 per cent and 10 per cent respectively. Overseas earnings rose by 2 per cent in current prices in the year to November and expenditure by UK residents rose by 6 per cent. This resulted in an increase in the deficit on the travel account of the balance of payments from £3.8 billion to £4.6 billion over the period.
-
-The change in the composition of the tourism market appears to be consistent with the larger rise in sterling against the main European currencies over the last 18 months and has implications for Scotland. North America, Germany and France all account for higher proportions of overseas visits to Scotland than to the UK as a whole. However, a complicating factor is that US and French visitors tend to have a high propensity for travelling as part of a package holiday, paid for in advance with prices based on an exchange rate determined possibly months before the holiday is taken. Consequently, the impact of changes in exchange rates on visits from US and French residents may be delayed. By contrast, the principal types of Dutch and German holidaymakers to Scotland tend to travel independently and to holiday on an ad hoc basis at relatively short notice. The impact of the strength of sterling on these groups is likely to have been demonstrated relatively quickly.
-
-Some IPS data for Scotland are available to the third quarter of 1997. The total number of overnight visits from overseas tourists was broadly unchanged in the first 3 quarters of the year, compared with the same period in 1996. However, the total from Western Europe fell by 6 per cent and overnight visits from North America were broadly unchanged. By contrast, visits from Other Areas rose by 12 per cent. Evidence for Scotland from the United Kingdom Tourism Survey, covering the first 3 quarters of 1997, reported a 3 per cent fall in the number of tourist trips to Scotland by UK residents compared with the same period in 1996. This compares with growth rates of around 15 per cent in each of the previous 2 years. The value of these trips increased by 7 per cent in current prices, broadly equal to growth in the UK over the same period but lower than growth in 1995 and 1996.
-
-Labour Market
-
-Unemployment
-
-There are 2 main sources of unemployment data. An estimate of unemployment under the International Labour Office definition - ILO unemployment - is provided by the Labour Force Survey (LFS), a quarterly sample survey of households. The second measure of unemployment - the claimant count - is based on records of those claiming Jobseeker's Allowance and National Insurance Credits at Employment Service Offices. The Office for National Statistics announced on 3 February that (from April) its assessment of the labour market would give more weight than previously to the LFS, which is conducted according to internationally agreed definitions drawn up by the ILO.
-
-ILO unemployment (not seasonally adjusted) in Scotland fell by 32,000 in the year to Autumn (September to November) 1997 to 185,000. The rate of unemployment fell by 1.4 percentage points to 7.4 per cent of the workforce. ILO unemployment in the UK fell by 379,000 in the year to Autumn 1997 to 1,919,000 or 6.6 per cent, 0.8 percentage points below the Scottish rate. Unemployment fell in every Government Office Region (GOR) of the UK. Four GORs - Merseyside, North East, London and Northern Ireland - have higher ILO unemployment rates than Scotland.
-
-Claimant count unemployment (seasonally adjusted) in Scotland fell throughout 1997 but rose by 1,200 in January 1998 to 141,100, the first rise since April 1996. The rate of unemployment rose by 0.1 percentage point to 5.8 per cent of the workforce, 0.8 percentage points above the UK rate. Of the UK GORs, Merseyside, North East, and Northern Ireland have higher unemployment rates than Scotland, while London has the same rate.
-
-The claimant count measure of unemployment in Scotland remains significantly lower than the ILO measure. The difference between the ILO measure and the claimant count measure12 in Autumn 1997 was 42,000, a rise of 7,000 on Autumn 1996.
-
-In the July 1997 Budget, the Government set out a New Deal to help young people, the long term unemployed, lone parents and the disabled move from Welfare to Work. The New Deal for young claimants (aged 18-24) who have been unemployed for 6 months or more was launched in 12 "pathfinder" areas of the UK (including Tayside) in January and the programme will be launched nationally from April. The New Deal for long term unemployed adults (those aged 25 and over who have been unemployed for more than 2 years) will be launched in June.13
-
-Table 6 summarises the eligibility for the New Deal for these two groups in January 1998. It can be seen that, in Scotland there were 11,300 youth unemployed of over 6 months duration and 17,100 aged 25 and over who had been unemployed for 2 years or more in January 1998 (7.4 per cent and 11.3 per cent of total claimant unemployed, respectively). The total number in these 2 groups has fallen significantly over the last year - by 17,800 (38.5 per cent).
-
-Table 6: Claiment Count Unemployment for New Deal Target Groups
-
-
- Youth (18-24) Unemployment, over 6 months duration Adult (25+) Unemployment, over 2 years duration
-January 1997 January 1998 Percentage change January 1997 January 1998 Percentage change
-Scotland 18,100 11,300 -37.7 28,100 17,100 -39.1
-Per cent of claimant count 9.8 7.4 .. 15.2 11.3 ..
-UK 198,300 118,400 -40.3 357,000 216,300 -39.4
-Scotland as a percentage of the UK 9.1 9.5 .. 7.9 7.9 ..
-
-
-Source: Office for National Statistics
-Note: 1. Percentages calculated with reference to unrounded figures.
-
-Employment
-
-There are two main official sources of quarterly employment data: the Workforce in Employment series, which is a survey of employers, and the Labour Force Survey.
-
-An increase of 43,000 in total employment (not seasonally adjusted) in Scotland was recorded by the LFS over the year to Autumn 1997 to reach a new (Autumn) peak of 2,305,000. This was due to increases of 24,000 in the number of employees, 14,000 in the number of self-employed and 5,000 in the number of people either on government supported training and employment programmes or who were unpaid family workers. Given the fall of 32,000 in the level of ILO unemployment, the number of people classed as economically active increased by 10,000 in the year to Autumn 1997. Increases in total employment were evident in most UK GORs, falling only in the North East, Merseyside and Wales. In the UK as a whole, total employment increased by 456,000.
-
-An increase of 23,000 in the civilian workforce (not seasonally adjusted) was recorded by the Workforce in Employment series over the year to September 1997 to reach a new peak of 2,277,000, (7,000 higher than the 1991 peak and 202,000 above the trough in 1983). This comprised increases of 19,000 in the number of self-employed and 6,000 in the number of employees (comprising increases across the service sector (14,000) and decreases in manufacturing (5,000) and other sectors (3,000)) over the year, partly offset by a fall of 2,000 in the number on work-related government training programmes. Increases in the civilian workforce were evident in all GB regions, except East Anglia and Yorkshire and Humberside. In Great Britain as a whole, the civilian workforce increased by 349,000.
-
-The growth in the number of employees has been due to the increase in part-time employment.14 In the year to September 1997, part-time employment rose by 32,000 (17,000 males and 15,000 females), offset by a fall of 26,000 in full-time employment (24,000 males and 2,000 females). This is a continuation of a trend over the past few years in which part-time employment has increased - in each year since 1992 (data are available from 1991) - to a level 104,000 higher (46,000 males and 58,000 females) in 1997 than 5 years earlier. By contrast, full-time employment has fallen consistently and in September 1997 was 90,000 lower than 1992 levels (86,000 males and 4,000 females).
-
-
-
-
-
-7 Published in Economic Trends, February 1998.
-8 GDP estimates of the Scottish regions measure the value of goods and services produced in an area; they do not measure the income of the residents in an area, as is the case for Government Office Regions/countries of the UK. There is a wide variation between areas in terms of size and population; in order to compare the economic performance of areas it is necessary to use an indicator such as GDP per head of population. Resident population is used as the denominator. The implication of using this in conjunction with the workplace-based GDP figures is that the productivity of urban areas into which workers commute will tend to be overstated by this indicator, while that of surrounding areas in which they live will be understated.
-9 Input -Output Tables and Multipliers for Scotland, 1994, The Stationery Office.
-10 It should be noted that the data presented by the SCDI for Scottish manufactured exports refer to gross output. They do not measure the level of (or changes in) the value-added component of Scottish manufactured exports (that is, the wages and profits accruing to domestic suppliers of labour and capital).
-11 Electronics is classified by the SCDI as consisting of 4 industry groupings: Office Machinery, Electrical Machinery and Apparatus nec, Radio/TV/Communication Equipment and Apparatus and Medical, Precision and Optical Instruments, Watches and Clocks.
-12 Average of September to November levels (not seasonally adjusted).
-13 The New Deal for young people provides a period of advice and guidance -'the Gateway' - to find unsubsidised jobs. Thereafter, four options will be available: a subsidised job with an employer; a place on an Environment Task Force; a job in the voluntary sector; or full-time education or training. The first 3 options involve at least one day a week training and options 2 and 3 include top-ups to existing benefits. Long term unemployed adults under the New Deal will be able to benefit from two options: a subsidised job with an employer; or opportunities to study for up to 12 months in full-time employment-related courses designed to reach an accredited qualification.
-14 Part-time employment is defined here as working less than 30 hours per week.
-
-
-
-
-
-
-
-
-
-
-We welcome your comments on this site.
-
-Prepared 13 March 1998
-
-
-
-
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_economics.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_economics.html
deleted file mode 100644
index ca19f58..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_economics.html
+++ /dev/null
@@ -1,332 +0,0 @@
-
-
-
-
-
-Cross-sectional dataset viewer v1.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dataset Display - Cross-Sectional
-
-
-
-
-
- Dataset Name:
-
- RT331605
-
-
-
- Title:
-
-
- Labour market statistics: Scotland
-
-
-
-
-
-
- Description:
-
- Labour market statistics: Scotland This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-
- Source:
-
- Office for National Statistics
-
-
-
- Time Frame:
-
- 1996-1998
-
-
-
-
-
- Geographic Coverage:
-
- United Kingdom
-
-
-
-
- Universe:
-
- Various
-
-
-
- Measure:
-
- Various
-
-
-
-
-
-
- Units:
-
- See table
-
-
-
- Scalar:
-
- none
-
-
-
- Formula:
-
- various
-
-
-
-
-
- Substitution Details:
-
-
- Value
- Meaning
-
-
-
-
- ..
- Not Available
-
-
-
-
-
-
-
-
-
-
- Table Dimensions
-
- Please select at least one item from each list and "Display Selection" or choose "Display All"
- To select list items either hold down 'Ctrl' key and click each item required, or click the first item and hold down the mouse button whilst scrolling down the list.
-
-
-
-
-
- Region
-
- 7
-
-
-
-
- Measure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Table1
-
-
-
-
-
-
-
-Economically active 1996-97 (percentages)23 Total in employment: 1996-97 (thousands)34 In employment 1996-97 Manufacturing (percentages)13 ILO unemployment rate 1996-97 (percentages)13 Total claimant count: January 1998 (thousands) Claimant count: of which females: January 1998 (percentage) Claimant count: of which long-term unemployed January 1998 (percentages)5 Average gross weekly all persons full-time earnings, April 1997 (£)16 United Kingdom 78.6 26462.0 19.1 8.0 1479.3 23.2 26.2 366.3 Scotland 77.1 2277.0 17.1 8.7 152.2 22.0 22.4 336.8 Aberdeen City 82.4 113.0 14.3 4.9 3.6 21.0 17.6 404.8 Aberdeenshire 80.2 112.0 14.5 .. 2.8 26.5 16.3 330.9 Angus 86.3 59.0 16.9 .. 3.2 28.3 23.3 320.0 Argyll and Bute 80.4 41.0 .. 11.9 2.9 27.1 22.8 305.2 Clackmannanshire 64.7 17.0 .. .. 1.6 22.0 27.5 .. Dumfries and Galloway 79.0 67.0 17.7 .. 4.4 24.3 23.4 300.2 Dundee City 72.2 60.0 14.6 9.3 6.2 21.2 26.3 327.4 East Ayrshire 75.2 50.0 23.1 14.2 4.5 20.5 28.9 307.6 East Dunbartonshire 81.1 53.0 .. .. 2.2 23.2 17.3 329.2 East Lothian 80.3 41.0 .. .. 1.7 20.5 16.3 310.3 East Renfrewshire 83.0 42.0 16.8 .. 1.4 23.8 20.9 .. Edinburgh, City of 74.5 207.0 10.3 6.6 11.1 22.1 20.4 362.8 Eilean Siar (Western Isles) 83.8 15.0 .. .. 1.4 19.9 23.8 .. Falkirk 77.6 66.0 23.4 .. 4.5 21.5 19.9 335.6 Fife 77.9 147.0 21.7 9.3 11.1 22.5 22.7 325.2 Glasgow City 65.3 210.0 14.2 15.2 26.9 19.4 29.5 341.5 Highland 80.9 100.0 12.9 9.3 7.9 25.9 20.9 296.2 Inverclyde 80.2 39.0 26.5 .. 2.5 18.5 12.7 323.4 Midlothian 84.8 39.0 .. .. 1.6 19.4 13.7 309.0 Moray 86.4 43.0 14.3 .. 2.2 27.2 15.4 285.0 North Ayrshire 73.5 58.0 27.4 9.1 5.1 23.7 19.2 317.8 North Lanarkshire 74.7 133.0 21.2 12.4 10.7 20.8 20.1 336.7 Orkney Islands 87.8 10.0 .. .. 0.4 26.8 24.4 .. Perth and Kinross 86.6 66.0 11.3 .. 2.8 23.0 17.8 .. Renfrewshire 78.5 80.0 20.1 11.3 5.5 20.5 23.3 336.1 Scottish Borders, The 80.6 49.0 20.6 .. 2.1 23.7 12.3 303.5 Shetland Islands 84.8 11.0 .. .. 0.4 23.2 14.2 .. South Ayrshire 79.2 48.0 22.9 10.3 3.6 23.6 23.4 346.2 South Lanarkshire 78.4 146.0 22.0 8.3 8.2 21.7 21.8 319.1 Stirling 77.2 37.0 .. .. 2.1 23.0 19.5 346.6 West Dunbartonshire 71.5 36.0 .. 13.6 4.2 19.3 27.3 319.0 West Lothian 82.2 78.0 32.6 .. 3.5 21.2 10.2 335.5
-
-
-
- Footnotes
- 1 - In some cases sample sizes are too small to provide reliable estimates. 2 - Based on the population of working age. 3 - Data are from the Labour Force Survey and relate to the period March 1996 - February 1997. 4 - Includes those on government-supported employment and training programmes and unpaid family workers. 5 - Persons who have been claiming for more than 12 months as a percentage of all claimants. 6 - Average gross weekly earnings estimates have been derived from the New Earnings Survey and relate to full-time employees on adult rates whose pay for the survey pay-period was not affected by absence. 7 - New Councils for Scotland
-
-
-
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_education.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_education.html
deleted file mode 100644
index e4e0ba3..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_education.html
+++ /dev/null
@@ -1,337 +0,0 @@
-
-
-
-
-
-Cross-sectional dataset viewer v1.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dataset Display - Cross-Sectional
-
-
-
-
-
- Dataset Name:
-
- RT331603
-
-
-
- Title:
-
-
- Education and training: Scotland
-
-
-
-
-
-
- Description:
-
- Education and training: Scotland This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-
- Source:
-
- The Scottish Office Home Department; The Scottish Office Education and Industry Department; Department for Education and Employment
-
-
-
- Time Frame:
-
- 1995-1997
-
-
-
-
-
- Geographic Coverage:
-
- United Kingdom
-
-
-
-
- Universe:
-
- various
-
-
-
- Measure:
-
- various
-
-
-
-
-
-
- Units:
-
- See table
-
-
-
- Scalar:
-
- none
-
-
-
- Formula:
-
- none
-
-
-
-
-
- Substitution Details:
-
-
- Value
- Meaning
-
-
-
-
- -
- Negligible (less than half the final digit shown)
-
-
-
- ..
- Not Available
-
-
-
-
-
-
-
-
-
-
- Table Dimensions
-
- Please select at least one item from each list and "Display Selection" or choose "Display All"
- To select list items either hold down 'Ctrl' key and click each item required, or click the first item and hold down the mouse button whilst scrolling down the list.
-
-
-
-
-
- Region
-
- 8
-
-
-
-
- Measure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Table
-
-
-
-
-
-
-
-Day nursery places per 1,000 population aged under 5 years Nov. 19961 Children under 5 in education (percentages) Jan. 19972 Pupil/teacher ratio: primary schools (numbers) 1996/97 Pupil/teacher ratio: secondary schools (numbers) 1996/97 Pupils and students participating in post-compulsory education, (percentages) 1995/963 Percentage of pupils in last year of compulsory schooling with no graded results 1995/9645 Percentage of pupils in last year of compulsory schooling with 5 or more Grades 1-3 SCE Standard Grade (or equivalent) 1995/9645 Percentage of employees of working age receiving job-related training 1996-9767 United Kingdom .. 59.0 22.8 16.2 78.0 7.4 45.5 14.5 Scotland 80.6 39.0 19.6 13.0 93.0 3.6 53.6 12.5 Aberdeen City 126.0 50.0 19.9 12.9 113.0 1.9 53.0 15.4 Aberdeenshire 34.4 34.0 18.6 13.8 81.0 9.2 58.2 11.4 Angus 70.2 38.0 19.1 13.0 89.0 .. 62.0 .. Argyll and Bute 38.8 13.0 17.3 12.4 81.0 8.6 54.1 .. Clackmannanshire 90.9 47.0 21.2 13.4 78.0 .. 63.6 .. Dumfries and Galloway 21.3 44.0 18.9 12.7 93.0 2.7 60.2 .. Dundee City 114.3 59.0 18.0 12.2 117.0 0.6 46.9 .. East Ayrshire 43.4 43.0 21.0 13.5 89.0 6.4 50.2 .. East Dunbartonshire 76.2 11.0 22.2 13.9 94.0 .. 71.2 .. East Lothian 48.6 56.0 20.6 13.4 66.0 12.7 46.0 .. East Renfrewshire 146.0 33.0 22.3 14.0 91.0 .. 78.8 .. Edinburgh, City of 132.3 50.0 20.7 13.4 109.0 2.3 56.7 14.7 Eilean Siar (Western Isles) 12.6 .. 13.0 9.5 102.0 3.2 60.9 .. Falkirk 81.8 40.0 21.3 13.6 91.0 4.0 49.4 .. Fife 20.2 51.0 19.1 13.4 106.0 5.3 52.1 13.5 Glasgow City 99.8 53.0 19.3 12.4 88.0 12.7 41.9 15.3 Highland 41.5 19.0 17.3 11.8 94.0 .. 60.0 .. Inverclyde 105.8 27.0 21.4 13.6 95.0 .. 56.2 .. Midlothian 49.0 54.0 19.9 13.6 77.0 3.8 53.0 .. Moray 21.6 31.0 18.9 12.2 91.0 8.0 54.3 .. North Ayrshire 115.3 23.0 21.2 13.4 72.0 10.5 45.6 .. North Lanarkshire 64.4 25.0 20.2 13.4 94.0 2.3 47.5 11.8 Orkney Islands 31.8 52.0 15.1 10.9 97.0 - 69.3 .. Perth and Kinross 93.2 45.0 18.7 12.5 78.0 10.2 53.9 .. Renfrewshire 119.6 31.0 22.0 13.7 103.0 .. 55.9 15.5 Scottish Borders, The 56.9 22.0 18.5 12.1 92.0 1.3 61.7 .. Shetland Islands 14.8 42.0 12.7 8.1 79.0 .. 73.6 .. South Ayrshire 70.4 36.0 21.0 13.6 99.0 .. 61.9 .. South Lanarkshire 103.9 15.0 20.7 13.7 92.0 3.6 51.5 13.7 Stirling 200.5 46.0 19.5 13.3 81.0 2.9 61.4 .. West Dunbartonshire 81.9 47.0 20.3 14.0 108.0 .. 52.5 .. West Lothian 53.6 51.0 20.3 13.5 80.0 6.3 46.8 ..
-
-
-
- Footnotes
- 1 - Social Work Provision only (local authority and registered); includes Day Nurseries, Childrens Centres, Family Centres and Private Nursery Schools. Population data used mid-1996 estimates. 2 - Figures relate to all pupils as a percentage of the three and four year old population. 3 - In Scotland pupils in S5 at September 1995. The figure for the United Kingdom relates to 16 year olds in education at the beginning of the academic year. Some students in Scotland participate on short courses. They are counted for each course; hence there is double counting which results in some percentages being greater that 100. 4 - Pupils in their last year of compulsory schooling as a percentage of the school population of the same age. 5 - Figures relate to all schools. 6 - Males aged 16-64 and females aged 16-59. Job-related education or training received in the four weeks before interview. In some cases sample sizes are too small to provide reliable estimates. 7 - Data relate to the period March 1996 to February 1997. Figure for United Kingdom relates to Great Britain. 8 - New Councils for Scotland
-
-
-
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_housing.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_housing.html
deleted file mode 100644
index 1fc7b7b..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_housing.html
+++ /dev/null
@@ -1,333 +0,0 @@
-
-
-
-
-
-Cross-sectional dataset viewer v1.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dataset Display - Cross-Sectional
-
-
-
-
-
- Dataset Name:
-
- RT331604
-
-
-
- Title:
-
-
- Housing and households: Scotland
-
-
-
-
-
-
- Description:
-
- Housing and households: Scotland This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-
- Source:
-
- The Scottish Office Development Department
-
-
-
- Time Frame:
-
- 1996 and 1997
-
-
-
-
-
- Geographic Coverage:
-
- United Kingdom
-
-
-
-
- Universe:
-
- various
-
-
-
- Measure:
-
- various
-
-
-
-
-
-
- Units:
-
- See table
-
-
-
- Scalar:
-
- various
-
-
-
- Formula:
-
- none
-
-
-
-
-
- Substitution Details:
-
-
- Value
- Meaning
-
-
-
-
- .
- Not applicable
-
-
-
- ..
- Not available
-
-
-
-
-
-
-
-
-
-
- Table Dimensions
-
- Please select at least one item from each list and "Display Selection" or choose "Display All"
- To select list items either hold down 'Ctrl' key and click each item required, or click the first item and hold down the mouse button whilst scrolling down the list.
-
-
-
-
-
- Region
-
- 5
-
-
-
-
- Measure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Table
-
-
-
-
-
-
-
-Housing starts: private enterprise (numbers) 19961 Housing starts: housing associations, local authorities etc (numbers) 19962 Stock of dwellings (thousands) 19963 Households (thousands) 1996 Local authority tenants: average weekly unrebated rent per dwelling (£) April 1997 Council Tax (£) April 19974 United Kingdom 151826.0 31224.0 24607.0 24115.3 .. . Scotland 15759.0 4768.0 2232.0 2136.2 33.6 783.0 Aberdeen City 1142.0 136.0 100.0 96.8 27.5 712.0 Aberdeenshire 533.0 90.0 92.0 87.1 29.7 643.0 Angus 272.0 167.0 48.0 46.2 23.5 679.0 Argyll and Bute 300.0 266.0 43.0 37.7 35.0 801.0 Clackmannanshire 125.0 37.0 21.0 20.0 29.6 753.0 Dumfries and Galloway 388.0 159.0 66.0 62.3 32.7 714.0 Dundee City 182.0 151.0 72.0 67.5 36.8 920.0 East Ayrshire 262.0 30.0 51.0 50.1 26.9 779.0 East Dunbartonshire 236.0 6.0 42.0 41.3 29.6 771.0 East Lothian 469.0 165.0 38.0 36.3 28.8 724.0 East Renfrewshire 295.0 96.0 34.0 33.1 28.9 682.0 Edinburgh, City of 1496.0 525.0 206.0 198.2 43.8 837.0 Eilean Siar (Western Isles) 75.0 10.0 13.0 11.6 36.5 599.0 Falkirk 651.0 66.0 61.0 59.1 29.8 680.0 Fife 202.0 251.0 152.0 145.6 30.3 747.0 Glasgow City 1884.0 1056.0 286.0 271.9 40.4 982.0 Highland 664.0 161.0 95.0 85.8 38.5 719.0 Inverclyde 291.0 126.0 39.0 38.0 34.6 831.0 Midlothian 362.0 61.0 32.0 30.8 25.2 858.0 Moray 327.0 0.0 37.0 34.9 28.0 652.0 North Ayrshire 344.0 157.0 60.0 57.7 30.2 718.0 North Lanarkshire 1557.0 175.0 130.0 128.5 31.3 787.0 Orkney Islands 0.0 6.0 9.0 8.1 33.8 515.0 Perth and Kinross 448.0 147.0 59.0 55.0 28.2 732.0 Renfrewshire 732.0 66.0 77.0 75.1 32.5 783.0 Scottish Borders, The 245.0 98.0 49.0 44.9 29.7 612.0 Shetland Islands 131.0 21.0 10.0 8.9 36.1 486.0 South Ayrshire 182.0 80.0 49.0 47.6 30.7 765.0 South Lanarkshire 488.0 98.0 124.0 122.3 35.3 793.0 Stirling 341.0 66.0 34.0 33.1 33.6 776.0 West Dunbartonshire 193.0 139.0 42.0 40.4 33.4 978.0 West Lothian 942.0 156.0 61.0 60.3 28.3 792.0
-
-
-
- Footnotes
- 1 - Includes estimates for outstanding returns. 2 - Based on incomplete returns. 3 - Number of residential dwellings from the Council Tax Register. 4 - Amounts shown for Council Tax are headline Council Tax for the area of each billing authority for B and D, 2 adults before transitional relief and benefit. The ratios of other bands are: A 6/9, B7/9, C 8/9, E 11/9, F 13/9, G 15/9 and H 18/9. 5 - New Councils for Scotland
-
-
-
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.csv b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.csv
deleted file mode 100644
index 2b0974f..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.csv
+++ /dev/null
@@ -1,59 +0,0 @@
-Dataset Name:,"RT331601"
-Title:,"Area and population, 1996: Scotland"
-Description:,"Area and population, 1996: Scotland
-
-This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-"
-Source:,"Office for National Statistics; General Register Office for Scotland"
-Time Frame:,"1996"
-Geographic Coverage:,"United Kingdom"
-Universe:,"UK population"
-Measure:,"various"
-Units:,"See table"
-Scalar:,"various"
-Formula:,"none"
-====================================
-Table
- ,"Area (sq km)","Persons per sq km","Population (thousands) Males","Population (thousands) Females","Population (thousands) Total","Total population percentage change 1981-1996","Total period fertility rate (TPFR)<1>","Standardised mortality ratio (UK=100) (SMR)<2>","Percentage of population aged under 5","Percentage of population aged 5-15","Percentage of population aged 16 up to pension age<3>","Percentage of population of pension age or over<4>",
-
-"United Kingdom","242910.00","242.00","28856.00","29946.00","58801.00","4.30","1.72","100.00","6.40","14.20","61.30","18.10",
-"Scotland","78133.00","66.00","2486.00","2642.00","5128.00","-1.00","1.55","116.00","6.10","13.90","63.10","17.80",
-"Aberdeen City","186.00","1169.00","106.00","111.00","217.00","2.20","1.35","105.00","5.80","12.30","65.80","17.10",
-"Aberdeenshire","6318.00","36.00","113.00","114.00","227.00","20.40","1.64","97.00","6.50","15.30","63.80","15.30",
-"Angus","2181.00","51.00","54.00","57.00","111.00","4.90","1.67","113.00","6.00","13.90","61.60","19.40",
-"Argyll and Bute","6930.00","13.00","45.00","46.00","91.00","-0.10","1.70","109.00","5.50","13.60","61.10","20.80",
-"Clackmannanshire","157.00","312.00","24.00","25.00","49.00","1.20","1.76","115.00","6.60","14.60","63.00","16.70",
-"Dumfries and Galloway","6439.00","23.00","72.00","76.00","148.00","1.40","1.78","107.00","5.90","13.80","60.30","21.20",
-"Dundee City","65.00","2306.00","72.00","79.00","150.00","-11.40","1.57","118.00","5.90","13.30","62.00","19.90",
-"East Ayrshire","1252.00","98.00","59.00","63.00","122.00","-3.90","1.64","114.00","6.30","14.50","61.90","18.30",
-"East Dunbartonshire","172.00","645.00","54.00","57.00","111.00","1.00","1.56","102.00","5.80","14.20","64.50","16.50",
-"East Lothian","678.00","130.00","43.00","45.00","88.00","9.20","1.77","112.00","6.40","13.70","61.50","19.50",
-"East Renfrewshire","173.00","510.00","43.00","45.00","88.00","9.80","1.67","96.00","6.20","14.60","63.00","17.10",
-"Edinburgh, City of","262.00","1711.00","217.00","232.00","449.00","0.60","1.34","111.00","5.70","11.60","65.80","17.90",
-"Eilean Siar (Western Isles)","3134.00","9.00","14.00","15.00","29.00","-8.50","1.65","117.00","5.50","15.10","59.80","20.70",
-"Falkirk","299.00","478.00","69.00","74.00","143.00","-1.50","1.58","121.00","6.20","13.70","63.80","17.40",
-"Fife","1323.00","264.00","169.00","180.00","349.00","2.30","1.55","109.00","6.00","14.40","62.30","18.30",
-"Glasgow City","175.00","3522.00","294.00","322.00","616.00","-13.50","1.48","137.00","6.30","13.30","63.20","18.10",
-"Highland","25784.00","8.00","102.00","106.00","209.00","7.10","1.77","109.00","6.20","14.90","61.80","18.10",
-"Inverclyde","162.00","538.00","42.00","45.00","87.00","-13.90","1.66","138.00","6.20","14.60","61.70","18.60",
-"Midlothian","356.00","225.00","39.00","41.00","80.00","-4.20","1.61","119.00","6.10","14.30","64.20","16.40",
-"Moray","2238.00","39.00","43.00","44.00","87.00","3.60","1.76","108.00","6.60","14.60","61.80","18.00",
-"North Ayrshire","884.00","158.00","67.00","72.00","140.00","1.60","1.63","115.00","6.20","15.00","62.20","17.60",
-"North Lanarkshire","474.00","688.00","158.00","168.00","326.00","-4.60","1.66","126.00","6.40","14.90","63.80","15.90",
-"Orkney Islands","992.00","20.00","10.00","10.00","20.00","3.20","1.78","106.00","6.00","15.30","61.20","18.50",
-"Perth and Kinross","5311.00","25.00","64.00","69.00","133.00","8.80","1.61","103.00","5.60","13.80","60.70","20.90",
-"Renfrewshire","261.00","683.00","86.00","92.00","179.00","-3.50","1.59","125.00","6.30","14.10","63.70","17.00",
-"Scottish Borders, The","4734.00","22.00","51.00","55.00","106.00","4.80","1.67","100.00","5.80","13.30","60.20","21.80",
-"Shetland Islands","1438.00","16.00","12.00","11.00","23.00","-12.60","1.77","117.00","7.00","15.90","62.90","14.90",
-"South Ayrshire","1202.00","95.00","55.00","60.00","115.00","1.30","1.55","105.00","5.50","13.70","61.10","20.90",
-"South Lanarkshire","1771.00","174.00","149.00","159.00","307.00","-0.80","1.55","125.00","6.30","14.50","63.80","16.50",
-"Stirling","2196.00","38.00","40.00","43.00","83.00","3.10","1.55","110.00","5.70","13.60","63.80","17.90",
-"West Dunbartonshire","162.00","590.00","46.00","50.00","96.00","-9.50","1.70","130.00","6.40","15.30","61.40","17.80",
-"West Lothian","425.00","355.00","74.00","77.00","151.00","8.30","1.63","126.00","6.80","15.10","65.80","13.20",
-====================================
-Footnotes
-"1 - The total period fertility rate (TPFR) is the average number of children which would be born to a woman if the current pattern of fertility persisted throughout her child-bearing years."
-"2 - Adjusted for the age structure of the population."
-"3 - Pension age is 65 for males and 60 for females."
-"4 - New Councils for Scotland"
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.html b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.html
deleted file mode 100644
index 6ebc2ee..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotland_population.html
+++ /dev/null
@@ -1,326 +0,0 @@
-
-
-
-
-
-Cross-sectional dataset viewer v1.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dataset Display - Cross-Sectional
-
-
-
-
-
- Dataset Name:
-
- RT331601
-
-
-
- Title:
-
-
- Area and population, 1996: Scotland
-
-
-
-
-
-
- Description:
-
- Area and population, 1996: Scotland This dataset has been compiled from data published in Regional Trends 33, 1998 edition published on 25 June 1998.
-
-
- Source:
-
- Office for National Statistics; General Register Office for Scotland
-
-
-
- Time Frame:
-
- 1996
-
-
-
-
-
- Geographic Coverage:
-
- United Kingdom
-
-
-
-
- Universe:
-
- UK population
-
-
-
- Measure:
-
- various
-
-
-
-
-
-
- Units:
-
- See table
-
-
-
- Scalar:
-
- various
-
-
-
- Formula:
-
- none
-
-
-
-
-
-
-
-
-
-
-
-
- Table Dimensions
-
- Please select at least one item from each list and "Display Selection" or choose "Display All"
- To select list items either hold down 'Ctrl' key and click each item required, or click the first item and hold down the mouse button whilst scrolling down the list.
-
-
-
-
-
- Region
-
- 4
-
-
-
-
- Measure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Table
-
-
-
-
-
-
-
-Area (sq km) Persons per sq km Population (thousands) Males Population (thousands) Females Population (thousands) Total Total population percentage change 1981-1996 Total period fertility rate (TPFR)1 Standardised mortality ratio (UK=100) (SMR)2 Percentage of population aged under 5 Percentage of population aged 5-15 Percentage of population aged 16 up to pension age3 Percentage of population of pension age or over4 United Kingdom 242910.00 242.00 28856.00 29946.00 58801.00 4.30 1.72 100.00 6.40 14.20 61.30 18.10 Scotland 78133.00 66.00 2486.00 2642.00 5128.00 -1.00 1.55 116.00 6.10 13.90 63.10 17.80 Aberdeen City 186.00 1169.00 106.00 111.00 217.00 2.20 1.35 105.00 5.80 12.30 65.80 17.10 Aberdeenshire 6318.00 36.00 113.00 114.00 227.00 20.40 1.64 97.00 6.50 15.30 63.80 15.30 Angus 2181.00 51.00 54.00 57.00 111.00 4.90 1.67 113.00 6.00 13.90 61.60 19.40 Argyll and Bute 6930.00 13.00 45.00 46.00 91.00 -0.10 1.70 109.00 5.50 13.60 61.10 20.80 Clackmannanshire 157.00 312.00 24.00 25.00 49.00 1.20 1.76 115.00 6.60 14.60 63.00 16.70 Dumfries and Galloway 6439.00 23.00 72.00 76.00 148.00 1.40 1.78 107.00 5.90 13.80 60.30 21.20 Dundee City 65.00 2306.00 72.00 79.00 150.00 -11.40 1.57 118.00 5.90 13.30 62.00 19.90 East Ayrshire 1252.00 98.00 59.00 63.00 122.00 -3.90 1.64 114.00 6.30 14.50 61.90 18.30 East Dunbartonshire 172.00 645.00 54.00 57.00 111.00 1.00 1.56 102.00 5.80 14.20 64.50 16.50 East Lothian 678.00 130.00 43.00 45.00 88.00 9.20 1.77 112.00 6.40 13.70 61.50 19.50 East Renfrewshire 173.00 510.00 43.00 45.00 88.00 9.80 1.67 96.00 6.20 14.60 63.00 17.10 Edinburgh, City of 262.00 1711.00 217.00 232.00 449.00 0.60 1.34 111.00 5.70 11.60 65.80 17.90 Eilean Siar (Western Isles) 3134.00 9.00 14.00 15.00 29.00 -8.50 1.65 117.00 5.50 15.10 59.80 20.70 Falkirk 299.00 478.00 69.00 74.00 143.00 -1.50 1.58 121.00 6.20 13.70 63.80 17.40 Fife 1323.00 264.00 169.00 180.00 349.00 2.30 1.55 109.00 6.00 14.40 62.30 18.30 Glasgow City 175.00 3522.00 294.00 322.00 616.00 -13.50 1.48 137.00 6.30 13.30 63.20 18.10 Highland 25784.00 8.00 102.00 106.00 209.00 7.10 1.77 109.00 6.20 14.90 61.80 18.10 Inverclyde 162.00 538.00 42.00 45.00 87.00 -13.90 1.66 138.00 6.20 14.60 61.70 18.60 Midlothian 356.00 225.00 39.00 41.00 80.00 -4.20 1.61 119.00 6.10 14.30 64.20 16.40 Moray 2238.00 39.00 43.00 44.00 87.00 3.60 1.76 108.00 6.60 14.60 61.80 18.00 North Ayrshire 884.00 158.00 67.00 72.00 140.00 1.60 1.63 115.00 6.20 15.00 62.20 17.60 North Lanarkshire 474.00 688.00 158.00 168.00 326.00 -4.60 1.66 126.00 6.40 14.90 63.80 15.90 Orkney Islands 992.00 20.00 10.00 10.00 20.00 3.20 1.78 106.00 6.00 15.30 61.20 18.50 Perth and Kinross 5311.00 25.00 64.00 69.00 133.00 8.80 1.61 103.00 5.60 13.80 60.70 20.90 Renfrewshire 261.00 683.00 86.00 92.00 179.00 -3.50 1.59 125.00 6.30 14.10 63.70 17.00 Scottish Borders, The 4734.00 22.00 51.00 55.00 106.00 4.80 1.67 100.00 5.80 13.30 60.20 21.80 Shetland Islands 1438.00 16.00 12.00 11.00 23.00 -12.60 1.77 117.00 7.00 15.90 62.90 14.90 South Ayrshire 1202.00 95.00 55.00 60.00 115.00 1.30 1.55 105.00 5.50 13.70 61.10 20.90 South Lanarkshire 1771.00 174.00 149.00 159.00 307.00 -0.80 1.55 125.00 6.30 14.50 63.80 16.50 Stirling 2196.00 38.00 40.00 43.00 83.00 3.10 1.55 110.00 5.70 13.60 63.80 17.90 West Dunbartonshire 162.00 590.00 46.00 50.00 96.00 -9.50 1.70 130.00 6.40 15.30 61.40 17.80 West Lothian 425.00 355.00 74.00 77.00 151.00 8.30 1.63 126.00 6.80 15.10 65.80 13.20
-
-
-
- Footnotes
- 1 - The total period fertility rate (TPFR) is the average number of children which would be born to a woman if the current pattern of fertility persisted throughout her child-bearing years. 2 - Adjusted for the age structure of the population. 3 - Pension age is 65 for males and 60 for females. 4 - New Councils for Scotland
-
-
-
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.csv b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.csv
deleted file mode 100644
index b557cd0..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.csv
+++ /dev/null
@@ -1,33 +0,0 @@
-"PrivateHousingStarts" "PublicHousingStarts" "StockofDwellings" "Households" "LocalAuthorityRent" "CouncilTax" "Areas" "Density" "Males" "Females" "Population" "PopulationChange" "FertilityRate" "StdMortalityRatio" "PercentageUnder5" "Percentage5to15" "Percentage16topension" "PercentageOverPensionage" "InNursery" "InPreschool" "PrimaryPTRatio" "SecondaryPTRatio" "PostCompulsory" "NoGrade" "Grades" "InJobTraining" "Birthsper1000" "Deathsper1000" "PeriMortality" "InfantMortality" "PerBirthsOut" "Active" "TotalEmployment" "PerMfgEmployment" "PerUnemployment" "TotalClaimants" "PerClaimantFemale" "PerClaimLongT" "MeanWeekSal" "GDP" "Var.41" "Var.42"
-"Aberdeen_City" 1142 136 100 96.8 27.5 712 186 1169 106 111 217 2.2 1.35 105 5.8 12.3 65.8 17.1 126 50 19.9 12.9 113 1.9 53 15.4 11 10.4 7.7 5.7 35 82.4 113 14.3 4.9 3.6 21 17.6 404.8 13566 71.8 60.3
-"Aberdeenshire" 533 90 92 87.1 29.7 643 6318 36 113 114 227 20.4 1.64 97 6.5 15.3 63.8 15.3 34.4 34 18.6 13.8 81 9.2 58.2 11.4 11.3 9 9 3.8 24 80.2 112 14.5 NA 2.8 26.5 16.3 330.9 13566 63.9 52.3
-"Angus" 272 167 48 46.2 23.5 679 2181 51 54 57 111 4.9 1.67 113 6 13.9 61.6 19.4 70.2 38 19.1 13 89 NA 62 NA 11 13.2 5.6 3.2 33 86.3 59 16.9 NA 3.2 28.3 23.3 320 9611 64.7 53.4
-"Argyll_and_Bute" 300 266 43 37.7 35 801 6930 13 45 46 91 -0.1 1.7 109 5.5 13.6 61.1 20.8 38.8 13 17.3 12.4 81 8.6 54.1 NA 10.5 13.8 8.6 7 33 80.4 41 NA 11.9 2.9 27.1 22.8 305.2 9483 67.3 57
-"Clackmannanshire" 125 37 21 20 29.6 753 157 312 24 25 49 1.2 1.76 115 6.6 14.6 63 16.7 90.9 47 21.2 13.4 78 NA 63.6 NA 12.3 11.3 10.4 6.3 40 64.7 17 NA NA 1.6 22 27.5 NA 9265 80 68.7
-"Dumfries_and_Galloway" 388 159 66 62.3 32.7 714 6439 23 72 76 148 1.4 1.78 107 5.9 13.8 60.3 21.2 21.3 44 18.9 12.7 93 2.7 60.2 NA 10.9 12.8 8.8 7.8 34 79 67 17.7 NA 4.4 24.3 23.4 300.2 9555 60.7 48.8
-"Dundee_City" 182 151 72 67.5 36.8 920 65 2306 72 79 150 -11.4 1.57 118 5.9 13.3 62 19.9 114.3 59 18 12.2 117 0.6 46.9 NA 11.5 13.1 8.6 6.8 51 72.2 60 14.6 9.3 6.2 21.2 26.3 327.4 9611 76 65.5
-"East_Ayrshire" 262 30 51 50.1 26.9 779 1252 98 59 63 122 -3.9 1.64 114 6.3 14.5 61.9 18.3 43.4 43 21 13.5 89 6.4 50.2 NA 11.4 11.6 12.3 6.5 40 75.2 50 23.1 14.2 4.5 20.5 28.9 307.6 9483 81.1 70.5
-"East_Dunbartonshire" 236 6 42 41.3 29.6 771 172 645 54 57 111 1 1.56 102 5.8 14.2 64.5 16.5 76.2 11 22.2 13.9 94 NA 71.2 NA 10.5 9.2 8.1 7.2 19 81.1 53 NA NA 2.2 23.2 17.3 329.2 9483 69.8 59.1
-"East_Lothian" 469 165 38 36.3 28.8 724 678 130 43 45 88 9.2 1.77 112 6.4 13.7 61.5 19.5 48.6 56 20.6 13.4 66 12.7 46 NA 12.3 12.6 7.6 5.2 29 80.3 41 NA NA 1.7 20.5 16.3 310.3 12656 74.2 62.7
-"East_Renfrewshire" 295 96 34 33.1 28.9 682 173 510 43 45 88 9.8 1.67 96 6.2 14.6 63 17.1 146 33 22.3 14 91 NA 78.8 NA 11.5 9.5 7.4 6.2 19 83 42 16.8 NA 1.4 23.8 20.9 NA 9483 61.7 51.6
-"Edinburgh_City" 1496 525 206 198.2 43.8 837 262 1711 217 232 449 0.6 1.34 111 5.7 11.6 65.8 17.9 132.3 50 20.7 13.4 109 2.3 56.7 14.7 11.4 11.7 8.1 6.4 33 74.5 207 10.3 6.6 11.1 22.1 20.4 362.8 12656 71.9 62
-"Eilean_Siar_(Western_Isles)" 75 10 13 11.6 36.5 599 3134 9 14 15 29 -8.5 1.65 117 5.5 15.1 59.8 20.7 12.6 NA 13 9.5 102 3.2 60.9 NA 9.7 14.9 11.2 5.7 19 83.8 15 NA NA 1.4 19.9 23.8 NA 8298 79.4 68.4
-"Falkirk" 651 66 61 59.1 29.8 680 299 478 69 74 143 -1.5 1.58 121 6.2 13.7 63.8 17.4 81.8 40 21.3 13.6 91 4 49.4 NA 11.7 11.7 7.9 4.8 34 77.6 66 23.4 NA 4.5 21.5 19.9 335.6 9265 80 69.2
-"Fife" 202 251 152 145.6 30.3 747 1323 264 169 180 349 2.3 1.55 109 6 14.4 62.3 18.3 20.2 51 19.1 13.4 106 5.3 52.1 13.5 11 11.4 8.7 7.1 37 77.9 147 21.7 9.3 11.1 22.5 22.7 325.2 8314 76.1 64.7
-"Glasgow_City" 1884 1056 286 271.9 40.4 982 175 3522 294 322 616 -13.5 1.48 137 6.3 13.3 63.2 18.1 99.8 53 19.3 12.4 88 12.7 41.9 15.3 12.5 14 11.1 6.9 49 65.3 210 14.2 15.2 26.9 19.4 29.5 341.5 9483 83.6 75
-"Highland" 664 161 95 85.8 38.5 719 25784 8 102 106 209 7.1 1.77 109 6.2 14.9 61.8 18.1 41.5 19 17.3 11.8 94 NA 60 NA 11.4 11.4 8.3 6.5 34 80.9 100 12.9 9.3 7.9 25.9 20.9 296.2 8298 72.6 62.1
-"Inverclyde" 291 126 39 38 34.6 831 162 538 42 45 87 -13.9 1.66 138 6.2 14.6 61.7 18.6 105.8 27 21.4 13.6 95 NA 56.2 NA 11.7 14.5 11.5 8 45 80.2 39 26.5 NA 2.5 18.5 12.7 323.4 9483 78 67.2
-"Midlothian" 362 61 32 30.8 25.2 858 356 225 39 41 80 -4.2 1.61 119 6.1 14.3 64.2 16.4 49 54 19.9 13.6 77 3.8 53 NA 11.2 10.7 10.8 6 35 84.8 39 NA NA 1.6 19.4 13.7 309 12656 79.9 67.7
-"Moray" 327 0 37 34.9 28 652 2238 39 43 44 87 3.6 1.76 108 6.6 14.6 61.8 18 21.6 31 18.9 12.2 91 8 54.3 NA 12.4 11 9.8 7.4 26 86.4 43 14.3 NA 2.2 27.2 15.4 285 13566 67.2 52.7
-"North_Ayrshire" 344 157 60 57.7 30.2 718 884 158 67 72 140 1.6 1.63 115 6.2 15 62.2 17.6 115.3 23 21.2 13.4 72 10.5 45.6 NA 11.3 11.8 11.6 6.9 42 73.5 58 27.4 9.1 5.1 23.7 19.2 317.8 9483 76.3 65.7
-"North_Lanarkshire" 1557 175 130 128.5 31.3 787 474 688 158 168 326 -4.6 1.66 126 6.4 14.9 63.8 15.9 64.4 25 20.2 13.4 94 2.3 47.5 11.8 12.5 11.1 11.6 8.5 38 74.7 133 21.2 12.4 10.7 20.8 20.1 336.7 9483 82.6 72.2
-"Orkney_Islands" 0 6 9 8.1 33.8 515 992 20 10 10 20 3.2 1.78 106 6 15.3 61.2 18.5 31.8 52 15.1 10.9 97 0 69.3 NA 10.9 11.6 7.5 1.4 30 87.8 10 NA NA 0.4 26.8 24.4 NA 8298 57.3 47.4
-"Perth_and_Kinross" 448 147 59 55 28.2 732 5311 25 64 69 133 8.8 1.61 103 5.6 13.8 60.7 20.9 93.2 45 18.7 12.5 78 10.2 53.9 NA 10.5 12.6 9.8 5.9 29 86.6 66 11.3 NA 2.8 23 17.8 NA 9611 61.7 51.3
-"Renfrewshire" 732 66 77 75.1 32.5 783 261 683 86 92 179 -3.5 1.59 125 6.3 14.1 63.7 17 119.6 31 22 13.7 103 NA 55.9 15.5 11.9 11.6 8 4.5 39 78.5 80 20.1 11.3 5.5 20.5 23.3 336.1 9483 79 63.6
-"Scottish_Borders_The" 245 98 49 44.9 29.7 612 4734 22 51 55 106 4.8 1.67 100 5.8 13.3 60.2 21.8 56.9 22 18.5 12.1 92 1.3 61.7 NA 10.7 12.8 8 4.9 28 80.6 49 20.6 NA 2.1 23.7 12.3 303.5 9033 62.8 50.7
-"Shetland_Islands" 131 21 10 8.9 36.1 486 1438 16 12 11 23 -12.6 1.77 117 7 15.9 62.9 14.9 14.8 42 12.7 8.1 79 NA 73.6 NA 11.7 10.9 9.9 6.5 28 84.8 11 NA NA 0.4 23.2 14.2 NA 8298 62.4 51.6
-"South_Ayrshire" 182 80 49 47.6 30.7 765 1202 95 55 60 115 1.3 1.55 105 5.5 13.7 61.1 20.9 70.4 36 21 13.6 99 NA 61.9 NA 10.1 12.7 6.2 4.3 33 79.2 48 22.9 10.3 3.6 23.6 23.4 346.2 9483 66.9 56.2
-"South_Lanarkshire" 488 98 124 122.3 35.3 793 1771 174 149 159 307 -0.8 1.55 125 6.3 14.5 63.8 16.5 103.9 15 20.7 13.7 92 3.6 51.5 13.7 11.5 11.3 9.2 5.1 33 78.4 146 22 8.3 8.2 21.7 21.8 319.1 9483 77.8 67.6
-"Stirling" 341 66 34 33.1 33.6 776 2196 38 40 43 83 3.1 1.55 110 5.7 13.6 63.8 17.9 200.5 46 19.5 13.3 81 2.9 61.4 NA 11.1 11.8 7.7 4.9 33 77.2 37 NA NA 2.1 23 19.5 346.6 9265 68.5 58.9
-"West_Dunbartonshire" 193 139 42 40.4 33.4 978 162 590 46 50 96 -9.5 1.7 130 6.4 15.3 61.4 17.8 81.9 47 20.3 14 108 NA 52.5 NA 12.5 12.7 11.7 8.7 42 71.5 36 NA 13.6 4.2 19.3 27.3 319 9483 84.7 74.7
-"West_Lothian" 942 156 61 60.3 28.3 792 425 355 74 77 151 8.3 1.63 126 6.8 15.1 65.8 13.2 53.6 51 20.3 13.5 80 6.3 46.8 NA 13.1 9.5 8.7 4.6 33 82.2 78 32.6 NA 3.5 21.2 10.2 335.5 12656 79.6 67.3
diff --git a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.dat b/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.dat
deleted file mode 100644
index b557cd0..0000000
--- a/statsmodels/scikits/statsmodels/datasets/scotland/src/scotvote.dat
+++ /dev/null
@@ -1,33 +0,0 @@
-"PrivateHousingStarts" "PublicHousingStarts" "StockofDwellings" "Households" "LocalAuthorityRent" "CouncilTax" "Areas" "Density" "Males" "Females" "Population" "PopulationChange" "FertilityRate" "StdMortalityRatio" "PercentageUnder5" "Percentage5to15" "Percentage16topension" "PercentageOverPensionage" "InNursery" "InPreschool" "PrimaryPTRatio" "SecondaryPTRatio" "PostCompulsory" "NoGrade" "Grades" "InJobTraining" "Birthsper1000" "Deathsper1000" "PeriMortality" "InfantMortality" "PerBirthsOut" "Active" "TotalEmployment" "PerMfgEmployment" "PerUnemployment" "TotalClaimants" "PerClaimantFemale" "PerClaimLongT" "MeanWeekSal" "GDP" "Var.41" "Var.42"
-"Aberdeen_City" 1142 136 100 96.8 27.5 712 186 1169 106 111 217 2.2 1.35 105 5.8 12.3 65.8 17.1 126 50 19.9 12.9 113 1.9 53 15.4 11 10.4 7.7 5.7 35 82.4 113 14.3 4.9 3.6 21 17.6 404.8 13566 71.8 60.3
-"Aberdeenshire" 533 90 92 87.1 29.7 643 6318 36 113 114 227 20.4 1.64 97 6.5 15.3 63.8 15.3 34.4 34 18.6 13.8 81 9.2 58.2 11.4 11.3 9 9 3.8 24 80.2 112 14.5 NA 2.8 26.5 16.3 330.9 13566 63.9 52.3
-"Angus" 272 167 48 46.2 23.5 679 2181 51 54 57 111 4.9 1.67 113 6 13.9 61.6 19.4 70.2 38 19.1 13 89 NA 62 NA 11 13.2 5.6 3.2 33 86.3 59 16.9 NA 3.2 28.3 23.3 320 9611 64.7 53.4
-"Argyll_and_Bute" 300 266 43 37.7 35 801 6930 13 45 46 91 -0.1 1.7 109 5.5 13.6 61.1 20.8 38.8 13 17.3 12.4 81 8.6 54.1 NA 10.5 13.8 8.6 7 33 80.4 41 NA 11.9 2.9 27.1 22.8 305.2 9483 67.3 57
-"Clackmannanshire" 125 37 21 20 29.6 753 157 312 24 25 49 1.2 1.76 115 6.6 14.6 63 16.7 90.9 47 21.2 13.4 78 NA 63.6 NA 12.3 11.3 10.4 6.3 40 64.7 17 NA NA 1.6 22 27.5 NA 9265 80 68.7
-"Dumfries_and_Galloway" 388 159 66 62.3 32.7 714 6439 23 72 76 148 1.4 1.78 107 5.9 13.8 60.3 21.2 21.3 44 18.9 12.7 93 2.7 60.2 NA 10.9 12.8 8.8 7.8 34 79 67 17.7 NA 4.4 24.3 23.4 300.2 9555 60.7 48.8
-"Dundee_City" 182 151 72 67.5 36.8 920 65 2306 72 79 150 -11.4 1.57 118 5.9 13.3 62 19.9 114.3 59 18 12.2 117 0.6 46.9 NA 11.5 13.1 8.6 6.8 51 72.2 60 14.6 9.3 6.2 21.2 26.3 327.4 9611 76 65.5
-"East_Ayrshire" 262 30 51 50.1 26.9 779 1252 98 59 63 122 -3.9 1.64 114 6.3 14.5 61.9 18.3 43.4 43 21 13.5 89 6.4 50.2 NA 11.4 11.6 12.3 6.5 40 75.2 50 23.1 14.2 4.5 20.5 28.9 307.6 9483 81.1 70.5
-"East_Dunbartonshire" 236 6 42 41.3 29.6 771 172 645 54 57 111 1 1.56 102 5.8 14.2 64.5 16.5 76.2 11 22.2 13.9 94 NA 71.2 NA 10.5 9.2 8.1 7.2 19 81.1 53 NA NA 2.2 23.2 17.3 329.2 9483 69.8 59.1
-"East_Lothian" 469 165 38 36.3 28.8 724 678 130 43 45 88 9.2 1.77 112 6.4 13.7 61.5 19.5 48.6 56 20.6 13.4 66 12.7 46 NA 12.3 12.6 7.6 5.2 29 80.3 41 NA NA 1.7 20.5 16.3 310.3 12656 74.2 62.7
-"East_Renfrewshire" 295 96 34 33.1 28.9 682 173 510 43 45 88 9.8 1.67 96 6.2 14.6 63 17.1 146 33 22.3 14 91 NA 78.8 NA 11.5 9.5 7.4 6.2 19 83 42 16.8 NA 1.4 23.8 20.9 NA 9483 61.7 51.6
-"Edinburgh_City" 1496 525 206 198.2 43.8 837 262 1711 217 232 449 0.6 1.34 111 5.7 11.6 65.8 17.9 132.3 50 20.7 13.4 109 2.3 56.7 14.7 11.4 11.7 8.1 6.4 33 74.5 207 10.3 6.6 11.1 22.1 20.4 362.8 12656 71.9 62
-"Eilean_Siar_(Western_Isles)" 75 10 13 11.6 36.5 599 3134 9 14 15 29 -8.5 1.65 117 5.5 15.1 59.8 20.7 12.6 NA 13 9.5 102 3.2 60.9 NA 9.7 14.9 11.2 5.7 19 83.8 15 NA NA 1.4 19.9 23.8 NA 8298 79.4 68.4
-"Falkirk" 651 66 61 59.1 29.8 680 299 478 69 74 143 -1.5 1.58 121 6.2 13.7 63.8 17.4 81.8 40 21.3 13.6 91 4 49.4 NA 11.7 11.7 7.9 4.8 34 77.6 66 23.4 NA 4.5 21.5 19.9 335.6 9265 80 69.2
-"Fife" 202 251 152 145.6 30.3 747 1323 264 169 180 349 2.3 1.55 109 6 14.4 62.3 18.3 20.2 51 19.1 13.4 106 5.3 52.1 13.5 11 11.4 8.7 7.1 37 77.9 147 21.7 9.3 11.1 22.5 22.7 325.2 8314 76.1 64.7
-"Glasgow_City" 1884 1056 286 271.9 40.4 982 175 3522 294 322 616 -13.5 1.48 137 6.3 13.3 63.2 18.1 99.8 53 19.3 12.4 88 12.7 41.9 15.3 12.5 14 11.1 6.9 49 65.3 210 14.2 15.2 26.9 19.4 29.5 341.5 9483 83.6 75
-"Highland" 664 161 95 85.8 38.5 719 25784 8 102 106 209 7.1 1.77 109 6.2 14.9 61.8 18.1 41.5 19 17.3 11.8 94 NA 60 NA 11.4 11.4 8.3 6.5 34 80.9 100 12.9 9.3 7.9 25.9 20.9 296.2 8298 72.6 62.1
-"Inverclyde" 291 126 39 38 34.6 831 162 538 42 45 87 -13.9 1.66 138 6.2 14.6 61.7 18.6 105.8 27 21.4 13.6 95 NA 56.2 NA 11.7 14.5 11.5 8 45 80.2 39 26.5 NA 2.5 18.5 12.7 323.4 9483 78 67.2
-"Midlothian" 362 61 32 30.8 25.2 858 356 225 39 41 80 -4.2 1.61 119 6.1 14.3 64.2 16.4 49 54 19.9 13.6 77 3.8 53 NA 11.2 10.7 10.8 6 35 84.8 39 NA NA 1.6 19.4 13.7 309 12656 79.9 67.7
-"Moray" 327 0 37 34.9 28 652 2238 39 43 44 87 3.6 1.76 108 6.6 14.6 61.8 18 21.6 31 18.9 12.2 91 8 54.3 NA 12.4 11 9.8 7.4 26 86.4 43 14.3 NA 2.2 27.2 15.4 285 13566 67.2 52.7
-"North_Ayrshire" 344 157 60 57.7 30.2 718 884 158 67 72 140 1.6 1.63 115 6.2 15 62.2 17.6 115.3 23 21.2 13.4 72 10.5 45.6 NA 11.3 11.8 11.6 6.9 42 73.5 58 27.4 9.1 5.1 23.7 19.2 317.8 9483 76.3 65.7
-"North_Lanarkshire" 1557 175 130 128.5 31.3 787 474 688 158 168 326 -4.6 1.66 126 6.4 14.9 63.8 15.9 64.4 25 20.2 13.4 94 2.3 47.5 11.8 12.5 11.1 11.6 8.5 38 74.7 133 21.2 12.4 10.7 20.8 20.1 336.7 9483 82.6 72.2
-"Orkney_Islands" 0 6 9 8.1 33.8 515 992 20 10 10 20 3.2 1.78 106 6 15.3 61.2 18.5 31.8 52 15.1 10.9 97 0 69.3 NA 10.9 11.6 7.5 1.4 30 87.8 10 NA NA 0.4 26.8 24.4 NA 8298 57.3 47.4
-"Perth_and_Kinross" 448 147 59 55 28.2 732 5311 25 64 69 133 8.8 1.61 103 5.6 13.8 60.7 20.9 93.2 45 18.7 12.5 78 10.2 53.9 NA 10.5 12.6 9.8 5.9 29 86.6 66 11.3 NA 2.8 23 17.8 NA 9611 61.7 51.3
-"Renfrewshire" 732 66 77 75.1 32.5 783 261 683 86 92 179 -3.5 1.59 125 6.3 14.1 63.7 17 119.6 31 22 13.7 103 NA 55.9 15.5 11.9 11.6 8 4.5 39 78.5 80 20.1 11.3 5.5 20.5 23.3 336.1 9483 79 63.6
-"Scottish_Borders_The" 245 98 49 44.9 29.7 612 4734 22 51 55 106 4.8 1.67 100 5.8 13.3 60.2 21.8 56.9 22 18.5 12.1 92 1.3 61.7 NA 10.7 12.8 8 4.9 28 80.6 49 20.6 NA 2.1 23.7 12.3 303.5 9033 62.8 50.7
-"Shetland_Islands" 131 21 10 8.9 36.1 486 1438 16 12 11 23 -12.6 1.77 117 7 15.9 62.9 14.9 14.8 42 12.7 8.1 79 NA 73.6 NA 11.7 10.9 9.9 6.5 28 84.8 11 NA NA 0.4 23.2 14.2 NA 8298 62.4 51.6
-"South_Ayrshire" 182 80 49 47.6 30.7 765 1202 95 55 60 115 1.3 1.55 105 5.5 13.7 61.1 20.9 70.4 36 21 13.6 99 NA 61.9 NA 10.1 12.7 6.2 4.3 33 79.2 48 22.9 10.3 3.6 23.6 23.4 346.2 9483 66.9 56.2
-"South_Lanarkshire" 488 98 124 122.3 35.3 793 1771 174 149 159 307 -0.8 1.55 125 6.3 14.5 63.8 16.5 103.9 15 20.7 13.7 92 3.6 51.5 13.7 11.5 11.3 9.2 5.1 33 78.4 146 22 8.3 8.2 21.7 21.8 319.1 9483 77.8 67.6
-"Stirling" 341 66 34 33.1 33.6 776 2196 38 40 43 83 3.1 1.55 110 5.7 13.6 63.8 17.9 200.5 46 19.5 13.3 81 2.9 61.4 NA 11.1 11.8 7.7 4.9 33 77.2 37 NA NA 2.1 23 19.5 346.6 9265 68.5 58.9
-"West_Dunbartonshire" 193 139 42 40.4 33.4 978 162 590 46 50 96 -9.5 1.7 130 6.4 15.3 61.4 17.8 81.9 47 20.3 14 108 NA 52.5 NA 12.5 12.7 11.7 8.7 42 71.5 36 NA 13.6 4.2 19.3 27.3 319 9483 84.7 74.7
-"West_Lothian" 942 156 61 60.3 28.3 792 425 355 74 77 151 8.3 1.63 126 6.8 15.1 65.8 13.2 53.6 51 20.3 13.5 80 6.3 46.8 NA 13.1 9.5 8.7 4.6 33 82.2 78 32.6 NA 3.5 21.2 10.2 335.5 12656 79.6 67.3
diff --git a/statsmodels/scikits/statsmodels/datasets/spector/__init__.py b/statsmodels/scikits/statsmodels/datasets/spector/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/spector/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/spector/data.py b/statsmodels/scikits/statsmodels/datasets/spector/data.py
deleted file mode 100644
index 825006e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/spector/data.py
+++ /dev/null
@@ -1,67 +0,0 @@
-"""Spector and Mazzeo (1980) - Program Effectiveness Data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission of the original author, who
-retains all rights. """
-TITLE = __doc__
-SOURCE = """
-http://pages.stern.nyu.edu/~wgreene/Text/econometricanalysis.htm
-
-The raw data was downloaded from Bill Greene's Econometric Analysis web site,
-though permission was obtained from the original researcher, Dr. Lee Spector,
-Professor of Economics, Ball State University."""
-
-DESCRSHORT = """Experimental data on the effectiveness of the personalized
-system of instruction (PSI) program"""
-
-DESCRLONG = DESCRSHORT
-
-NOTE = """
-Number of Observations - 32
-
-Number of Variables - 4
-
-Variable name definitions::
-
- Grade - binary variable indicating whether or not a student's grade
- improved. 1 indicates an improvement.
- TUCE - Test score on economics test
- PSI - participation in program
- GPA - Student's grade point average
-"""
-
-import numpy as np
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the Spector dataset and returns a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=3, dtype=float)
-
-def load_pandas():
- """
- Load the Spector dataset and returns a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=3, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
-##### EDIT THE FOLLOWING TO POINT TO DatasetName.csv #####
- data = np.recfromtxt(open(filepath + '/spector.csv',"rb"), delimiter=" ",
- names=True, dtype=float, usecols=(1,2,3,4))
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/spector/spector.csv b/statsmodels/scikits/statsmodels/datasets/spector/spector.csv
deleted file mode 100644
index 32ac3a3..0000000
--- a/statsmodels/scikits/statsmodels/datasets/spector/spector.csv
+++ /dev/null
@@ -1,33 +0,0 @@
-'OBS' 'GPA' 'TUCE' 'PSI' 'GRADE'
-1 2.66 20 0 0
-2 2.89 22 0 0
-3 3.28 24 0 0
-4 2.92 12 0 0
-5 4 21 0 1
-6 2.86 17 0 0
-7 2.76 17 0 0
-8 2.87 21 0 0
-9 3.03 25 0 0
-10 3.92 29 0 1
-11 2.63 20 0 0
-12 3.32 23 0 0
-13 3.57 23 0 0
-14 3.26 25 0 1
-15 3.53 26 0 0
-16 2.74 19 0 0
-17 2.75 25 0 0
-18 2.83 19 0 0
-19 3.12 23 1 0
-20 3.16 25 1 1
-21 2.06 22 1 0
-22 3.62 28 1 1
-23 2.89 14 1 0
-24 3.51 26 1 0
-25 3.54 24 1 1
-26 2.83 27 1 1
-27 3.39 17 1 1
-28 2.67 24 1 0
-29 3.65 21 1 1
-30 4 23 1 1
-31 3.1 21 1 0
-32 2.39 19 1 1
diff --git a/statsmodels/scikits/statsmodels/datasets/stackloss/R_stackloss.s b/statsmodels/scikits/statsmodels/datasets/stackloss/R_stackloss.s
deleted file mode 100644
index 85dfbae..0000000
--- a/statsmodels/scikits/statsmodels/datasets/stackloss/R_stackloss.s
+++ /dev/null
@@ -1,30 +0,0 @@
-### SETUP ###
-d <- read.table("./stackloss.csv",sep=",", header=T)
-attach(d)
-library(MASS)
-
-
-m1 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC) # psi.huber default
-
-m2 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC, psi = psi.hampel, init = "lts")
-
-m3 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC, psi = psi.bisquare)
-
-results1 <- summary(m1)
-
-results2 <- summary(m2)
-
-results3 <- summary(m3)
-
-m4 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC, scale.est="Huber") # psi.huber default
-
-m5 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC, scale.est="Huber", psi = psi.hampel, init = "lts")
-
-m6 <- rlm(STACKLOSS ~ AIRFLOW + WATERTEMP + ACIDCONC, scale.est="Huber", psi = psi.bisquare)
-
-results4 <- summary(m4)
-
-results5 <- summary(m5)
-
-results6 <- summary(m6)
-
diff --git a/statsmodels/scikits/statsmodels/datasets/stackloss/__init__.py b/statsmodels/scikits/statsmodels/datasets/stackloss/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/stackloss/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/stackloss/data.py b/statsmodels/scikits/statsmodels/datasets/stackloss/data.py
deleted file mode 100644
index 54abd2d..0000000
--- a/statsmodels/scikits/statsmodels/datasets/stackloss/data.py
+++ /dev/null
@@ -1,64 +0,0 @@
-"""Stack loss data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain. """
-TITLE = __doc__
-SOURCE = """
-Brownlee, K. A. (1965), "Statistical Theory and Methodology in
-Science and Engineering", 2nd edition, New York:Wiley.
-"""
-
-DESCRSHORT = """Stack loss plant data of Brownlee (1965)"""
-
-DESCRLONG = """The stack loss plant data of Brownlee (1965) contains
-21 days of measurements from a plant's oxidation of ammonia to nitric acid.
-The nitric oxide pollutants are captured in an absorption tower."""
-
-NOTE = """
-Number of Observations - 21
-
-Number of Variables - 4
-
-Variable name definitions::
-
- STACKLOSS - 10 times the percentage of ammonia going into the plant that
- escapes from the absoroption column
- AIRFLOW - Rate of operation of the plant
- WATERTEMP - Cooling water temperature in the absorption tower
- ACIDCONC - Acid concentration of circulating acid minus 50 times 10.
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the stack loss data and returns a Dataset class instance.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Load the stack loss data and returns a Dataset class instance.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/stackloss.csv',"rb"), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/stackloss/stackloss.csv b/statsmodels/scikits/statsmodels/datasets/stackloss/stackloss.csv
deleted file mode 100644
index bfe135f..0000000
--- a/statsmodels/scikits/statsmodels/datasets/stackloss/stackloss.csv
+++ /dev/null
@@ -1,22 +0,0 @@
-"STACKLOSS","AIRFLOW","WATERTEMP","ACIDCONC"
-42,80,27,89
-37,80,27,88
-37,75,25,90
-28,62,24,87
-18,62,22,87
-18,62,23,87
-19,62,24,93
-20,62,24,93
-15,58,23,87
-14,58,18,80
-14,58,18,89
-13,58,17,88
-11,58,18,82
-12,58,19,93
-8,50,18,89
-7,50,18,86
-8,50,19,72
-8,50,19,79
-9,50,20,80
-15,56,20,82
-15,70,20,91
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/__init__.py b/statsmodels/scikits/statsmodels/datasets/star98/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/data.py b/statsmodels/scikits/statsmodels/datasets/star98/data.py
deleted file mode 100644
index 41d5c8d..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/data.py
+++ /dev/null
@@ -1,104 +0,0 @@
-"""Star98 Educational Testing dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """Used with express permission from the original author,
-who retains all rights."""
-TITLE = "Star98 Educational Dataset"
-SOURCE = """
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-"""
-DESCRSHORT = """Math scores for 303 student with 10 explanatory factors"""
-
-DESCRLONG = """
-This data is on the California education policy and outcomes (STAR program
-results for 1998. The data measured standardized testing by the California
-Department of Education that required evaluation of 2nd - 11th grade students
-by the the Stanford 9 test on a variety of subjects. This dataset is at
-the level of the unified school district and consists of 303 cases. The
-binary response variable represents the number of 9th graders scoring
-over the national median value on the mathematics exam.
-
-The data used in this example is only a subset of the original source.
-"""
-
-NOTE = """
-Number of Observations - 303 (counties in California).
-
-Number of Variables - 13 and 8 interaction terms.
-
-Definition of variables names::
-
- NABOVE - Total number of students above the national median for the math
- section.
- NBELOW - Total number of students below the national median for the math
- section.
- LOWINC - Percentage of low income students
- PERASIAN - Percentage of Asian student
- PERBLACK - Percentage of black students
- PERHISP - Percentage of Hispanic students
- PERMINTE - Percentage of minority teachers
- AVYRSEXP - Sum of teachers' years in educational service divided by the
- number of teachers.
- AVSALK - Total salary budget including benefits divided by the number of
- full-time teachers (in thousands)
- PERSPENK - Per-pupil spending (in thousands)
- PTRATIO - Pupil-teacher ratio.
- PCTAF - Percentage of students taking UC/CSU prep courses
- PCTCHRT - Percentage of charter schools
- PCTYRRND - Percentage of year-round schools
-
- The below variables are interaction terms of the variables defined above.
-
- PERMINTE_AVYRSEXP
- PEMINTE_AVSAL
- AVYRSEXP_AVSAL
- PERSPEN_PTRATIO
- PERSPEN_PCTAF
- PTRATIO_PCTAF
- PERMINTE_AVTRSEXP_AVSAL
- PERSPEN_PTRATIO_PCTAF
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the star98 data and returns a Dataset class instance.
-
- Returns
- -------
- Load instance:
- a class of the data with array attrbutes 'endog' and 'exog'
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=[0, 1], dtype=float)
-
-def load_pandas():
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=['NABOVE', 'NBELOW'],
- dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
-##### EDIT THE FOLLOWING TO POINT TO DatasetName.csv #####
- names = ["NABOVE","NBELOW","LOWINC","PERASIAN","PERBLACK","PERHISP",
- "PERMINTE","AVYRSEXP","AVSALK","PERSPENK","PTRATIO","PCTAF",
- "PCTCHRT","PCTYRRND","PERMINTE_AVYRSEXP","PERMINTE_AVSAL",
- "AVYRSEXP_AVSAL","PERSPEN_PTRATIO","PERSPEN_PCTAF","PTRATIO_PCTAF",
- "PERMINTE_AVYRSEXP_AVSAL","PERSPEN_PTRATIO_PCTAF"]
- data = recfromtxt(open(filepath + '/star98.csv',"rb"), delimiter=",",
- names=names, skip_header=1, dtype=float)
-
- # careful now
- nabove = data['NABOVE'].copy()
- nbelow = data['NBELOW'].copy()
-
- data['NABOVE'] = nbelow # successes
- data['NBELOW'] = nabove - nbelow # now failures
-
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/r_glm.s b/statsmodels/scikits/statsmodels/datasets/star98/r_glm.s
deleted file mode 100644
index 3de6c6e..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/r_glm.s
+++ /dev/null
@@ -1,37 +0,0 @@
-### SETUP
-#star.data <- as.matrix(read.csv("./star98.csv",header=T))
-#star.factors3 <- data.frame( LOWINC=star.data[,3], PERASIAN=star.data[,4], PERBLACK=star.data[,5],
-# PERHISP=star.data[,6], PERMINTE=star.data[,7], AVYRSEXP=star.data[,8], AVSAL=star.data[,9],
-# PERSPEN=star.data[,10], PTRATIO=star.data[,11], PCTAF=star.data[,12], PCTCHRT=star.data[,13],
-# PCTYRRND=star.data[,14], PERMINTE.AVYRSEXP=star.data[,15], PERMINTE.AVSAL=star.data[,16],
-# AVYRSEXP.AVSAL=star.data[,17], PERSPEN.PTRATIO=star.data[,18], PERSPEN.PCTAF=star.data[,19],
-# PTRATIO.PCTAF=star.data[,20], PERMINTE.AVYRSEXP.AVSAL=star.data[,21],
-# PERSPEN.PTRATIO.PCTAF=star.data[,22], MATHTOT=star.data[,1], PR50M=star.data[,2] )
-d <- read.table("./star98.csv", sep=",", header=T)
-attach(d)
-#attach(star.factors3)
-
-
-### MATH MODEL
-m1 <- glm(cbind(PR50M,MATHTOT-PR50M) ~ LOWINC + PERASIAN + PERBLACK + PERHISP +
- PERMINTE + AVYRSEXP + AVSALK + PERSPENK + PTRATIO + PCTAF + PCTCHRT + PCTYRRND +
- PERMINTE_AVYRSEXP + PERMINTE_AVSAL + AVYRSEXP_AVSAL + PERSPEN_PTRATIO + PERSPEN_PCTAF +
- PTRATIO_PCTAF + PERMINTE_AVYRSEXP_AVSAL + PERSPEN_PTRATIO_PCTAF,
- family=binomial)
-#as.numeric(m1$coef)
-#as.numeric(sqrt(diag(vcov(m1))))
-results <- summary.glm(m1)
-
-#star.logit.fit3 <- glm(cbind(PR50M,MATHTOT-PR50M) ~ LOWINC + PERASIAN + PERBLACK + PERHISP +
-# PERMINTE + AVYRSEXP + AVSAL + PERSPEN + PTRATIO + PCTAF + PCTCHRT + PCTYRRND +
-# PERMINTE.AVYRSEXP + PERMINTE.AVSAL + AVYRSEXP.AVSAL + PERSPEN.PTRATIO + PERSPEN.PCTAF +
-# PTRATIO.PCTAF + PERMINTE.AVYRSEXP.AVSAL + PERSPEN.PTRATIO.PCTAF,
-# family = binomial(), data=star.factors3)
-#results <- summary.glm(star.logit.fit3)
-# WITH R STYLE INTERACTIONS
-#star.logit.fit4 <- glm(cbind(PR50M,MATHTOT-PR50M) ~ LOWINC + PERASIAN + PERBLACK + PERHISP +
-# PERMINTE + AVYRSEXP + AVSAL + PERSPEN + PTRATIO + PCTAF + PCTCHRT + PCTYRRND +
-# PERMINTE*AVYRSEXP*AVSAL + PERSPEN*PTRATIO*PCTAF,
-# family = binomial(), data=star.factors3)
-
-
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/src/star.bi.dat b/statsmodels/scikits/statsmodels/datasets/star98/src/star.bi.dat
deleted file mode 100644
index a9456ec..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/src/star.bi.dat
+++ /dev/null
@@ -1,303 +0,0 @@
-161119 34.3973 23.29930 14.23528 11.41112 15.91837 14.70646 59157.32 4445.207 21.71025 57.03276 0 22.22222 805 467 807 452
-161127 17.36507 29.32838 8.234897 9.314884 13.63636 16.08324 59503.97 5267.598 20.44278 64.62264 0 0 182 140 184 144
-161143 32.64324 9.226386 42.40631 13.54372 28.83436 14.59559 60569.92 5482.922 18.95419 53.94191 0 0 566 357 571 337
-161150 11.90953 13.88309 3.796973 11.44311 11.11111 14.38939 58334.11 4165.093 21.63539 49.06103 0 7.142857 573 424 573 395
-161168 36.88889 12.1875 76.875 7.604167 43.58974 13.90568 63153.64 4324.902 18.77984 52.38095 0 0 62 15 65 8
-161176 20.93149 28.02351 4.643221 13.80816 15.37849 14.97755 66970.55 3916.104 24.51914 44.91578 0 2.380952 2234 1452 2247 1348
-161192 53.26898 8.447858 19.37483 37.90533 25.52553 14.67829 57621.95 4270.903 22.21278 32.28916 0 12.12121 1363 491 1364 477
-161200 15.19009 3.665781 2.649680 13.09207 6.203008 13.66197 63447.4 4309.734 24.59026 30.45267 0 0 904 579 912 565
-161234 28.21582 10.43042 6.786374 32.3343 13.46154 16.41760 57845.64 4527.603 21.74138 22.64574 0 0 519 218 525 205
-161242 32.77897 17.17831 12.48493 28.32329 27.25989 12.51864 57801.41 4648.917 20.26010 26.07099 0 0 1071 514 1067 469
-161259 59.97293 17.51736 50.94093 23.10134 52.34344 16.93283 57434.44 4693.069 21.31489 19.53216 3.296703 13.18681 2964 830 3016 784
-161275 0 19.74886 1.864536 2.587519 7.407407 15.86979 52193.46 5248.693 18.51182 80.37975 0 0 235 204 235 209
-161291 28.12111 12.69201 19.26582 26.84197 13.37209 14.42864 57240.45 3980.589 21.89844 31.65829 0 9.090909 547 241 556 195
-161309 36.99047 10.03236 15.42302 30.74434 13.50763 13.29753 58413.74 4197.615 23.12943 31.15079 0 0 685 315 688 206
-175093 12.92796 7.172996 4.825949 13.23840 6.185567 17.47108 65570.86 5382.009 20.68333 34.83146 0 0 259 179 252 136
-175101 4.700895 8.736718 1.745657 6.932029 7.127883 16.18176 67367.55 4607.673 24.65106 39.63415 0 0 922 765 925 694
-373981 20.25979 0.4857445 0.8025343 5.976769 2.439024 15.30949 51311.63 4025.593 24.82292 36.19403 0 91.66667 377 249 377 204
-461408 42.66827 2.836879 0.9456265 23.87707 10.63830 11.83962 55990.32 5151.626 17.91209 24.44444 0 0 66 40 69 31
-461424 33.12923 6.305412 2.766154 12.86616 6.17284 14.60144 58558.6 4004.401 22.73008 49.65517 4.347826 26.08696 1089 632 1092 601
-461432 29.39297 1.071155 0.765111 9.716909 4.477612 14.04527 53772.3 4518.034 21.18506 51.02041 0 0 116 82 115 64
-461473 52.99313 6.217371 0.3322259 38.72805 7.619048 14.17395 50695.12 4114.065 20.41136 23.27586 0 0 137 58 139 51
-461531 35.08836 0.8292167 0.388144 4.622442 4.135338 14.30221 55278.74 4148.228 21.91947 25 23.07692 15.38462 439 241 449 220
-561564 37.20441 0.5699482 1.113990 6.321244 5.357143 13.60247 50668.49 3975.448 24.86918 22.97872 0 8.333333 312 175 309 151
-661598 54.26829 0.5497862 0.5497862 40.74527 7.407407 14.87105 52537 4205.362 19.44511 36.28319 0 0 115 46 116 36
-661614 65.82397 0.2640845 3.873239 58.89085 6.557377 10.92652 46291.79 4469.798 19.52548 37.93103 0 0 80 29 81 15
-661622 78.54077 1.282051 0 78.4188 20.83333 11.47788 49267.19 3893.337 21.12311 19.23077 0 0 66 7 66 5
-761648 30.07553 3.626196 10.50386 20.94431 8.66575 13.69108 62341.2 4011.390 23.88905 23.85445 0 72.22222 1252 676 1259 541
-761697 28.24601 6.893424 19.81859 16.78005 12.74510 15.91555 59176.53 4225.738 22.18379 18 0 0 188 94 190 86
-761739 22.33375 2.523732 3.310952 14.03103 10.30928 16.15686 59230.72 4114.418 21.74332 34.42623 0 0 323 210 322 142
-761754 22.62465 7.697888 4.902207 16.77688 9.421586 15.32368 57128.58 3928.696 22.14162 37.63838 0 0 2390 1482 2394 1365
-761788 51.78493 4.598930 27.79679 35.10160 30.02481 15.97489 58788.93 4049.181 22.87300 85.11166 0 8.333333 646 239 648 201
-761796 51.23848 13.02024 35.10118 25.52703 25.82688 17.18977 62664.1 4347.936 22.8705 36.5 0 8.474576 1909 668 1949 585
-761804 1.895322 9.925228 1.633719 4.276349 4.503464 15.92369 59976.94 4035.189 23.34687 50.74503 0 0 1420 1235 1417 1247
-861820 42.51143 6.252442 0.4103165 10.17976 8.076923 14.70948 58233.81 4733.28 20.67364 15.50388 0 0 396 210 403 165
-961903 45.42344 1.501194 0.9041283 26.27090 5.338078 14.35703 55740.14 4323.754 21.53458 86.722 0 0 337 172 329 135
-973783 30.16965 0.7973734 0.5159475 2.251407 1.904762 14.23233 51822.37 4030.978 21.47295 32.45614 0 0 188 132 193 106
-1062117 23.43337 11.75065 2.871447 19.03101 15.94416 11.87890 53158.07 4242.702 22.70517 40.50633 0 0 2295 1584 2267 1496
-1062125 57.9224 0.871731 0.6475716 68.74222 18.93491 11.19787 61085.44 4258.425 24.4786 14.83516 0 0 277 89 272 68
-1062158 60.59908 7.196613 0.8466604 72.34243 24.76190 11.83632 51537.34 3807.79 21.07004 38.7931 0 0 146 50 144 55
-1062166 62.01977 19.65177 11.31566 45.23962 23.40485 14.67996 61095.3 4685.643 22.25973 27.47559 0 31.11111 4973 1641 5018 1455
-1062240 35.60339 2.518757 0.375134 67.73848 7.913669 15.34516 54702.22 6836.694 21.14435 41.57895 71.42857 0 195 109 196 84
-1062265 63.17132 1.40625 0.6009615 71.35817 16.79198 14.46149 55184.78 4478.657 22.25652 16.78657 0 6.25 614 178 617 136
-1062281 72.91667 1.238739 0.5630631 70.04505 3.921569 11.55763 39728.35 3899.132 18.23651 13.04348 0 0 62 12 64 6
-1062364 91.60484 0.2143623 0.1071811 98.821 62.18487 11.92754 55527.29 4223.126 21.68654 13.38583 0 40 190 27 189 21
-1062414 57.00249 4.322917 0.5859375 70.66406 23.48066 14.00443 52155.26 4382.061 21.71153 23.02326 0 0 550 198 552 132
-1062430 69.6452 3.972303 1.020408 76.71283 27.6 13.01188 53531.64 4180.037 22.50103 14.69194 0 0 284 114 290 78
-1073809 87.83718 0.4054054 1.216216 90.45045 32.40741 10.37561 51400.56 4317.728 20.49057 30.85106 0 0 143 26 146 16
-1073965 49.25084 10.15299 7.874184 42.32374 16.53944 10.08090 54568.74 4006.118 22.59174 37.66667 0 76.92308 581 221 585 211
-1073999 69.49807 5.350028 0.3130336 70.43256 22.64151 12.32314 54546.01 4283.101 22.15424 40 0 60 265 85 274 82
-1075127 87.77725 0.5334627 0.5819593 97.76916 40 12.20753 60303.18 3933.777 25.6375 47.16981 0 0 151 14 155 16
-1075234 86.54599 1.713710 0.2016129 92.2379 26.08696 14.58066 62758.26 5242.8 21.72113 19.17808 0 0 143 24 144 35
-1075275 21.60468 0.5405405 0.2910603 7.484407 1.526718 17.11242 62522.82 5879.966 19.48512 26.37363 0 0 143 102 143 90
-1075408 64.85075 0.6671114 3.068712 64.50967 14.92537 11.36918 47732.57 3511.9 21.48872 10.66667 0 0 67 24 67 23
-1162661 53.125 21.75227 0.9063444 20.74522 4.651163 15.73608 60020.66 4325.154 24.48113 47.11538 0 0 138 68 138 76
-1175481 44.97466 1.348412 0.8264463 33.18834 5.932203 16.25328 55653.8 4602.903 20.85538 49.19355 0 0 186 78 183 73
-1262901 76.32121 0 0.6559767 2.842566 30 14.78554 65665.47 5770.566 19.64964 25.92593 0 0 90 37 88 38
-1263040 33.91672 0.7147498 1.169591 2.988954 0 15.79261 56055.94 4427.872 21.31544 44.70588 0 0 114 67 109 23
-1275374 11.71617 0.5 0 4.666667 0 15.51220 54645.67 4893.857 20.32154 34.14634 0 0 59 40 59 40
-1363073 54.25667 0.5188067 0.2779322 80.21123 35.04274 14.95651 66530.25 4304.715 23.78075 33.89831 0 0 372 104 373 67
-1363099 43.95482 1.432902 0.0551116 97.51998 70.09967 14.58775 67370.06 4266.618 23.57191 15.82569 0 0 495 89 506 91
-1363107 74.30168 0.4219409 5.555556 71.58931 40.57971 12.21709 53519.74 4518.243 20.625 29.41176 0 0 99 32 98 36
-1363123 62.10008 1.554243 2.9427 82.64429 33.41289 15.20630 66125.09 4453.164 23.32139 31.30288 0 0 560 162 578 133
-1363149 63.91804 0.3990025 0.1496259 70.47382 26.88172 11.60701 56622.57 4245.811 21.68514 32.14286 0 0 158 41 162 19
-1363164 39.94452 0.7492287 2.688409 60.77567 24.5283 9.224783 51167.03 3708.859 20.85687 34.92063 0 0 179 66 179 75
-1363214 76.8279 0 3.005780 31.09827 20.40816 15.31852 60141.08 5355.161 18.99177 19.35484 0 0 49 14 50 4
-1463255 25.58849 0.7623888 0.5082592 11.01228 5.454545 16.50992 59805.55 4349.222 23.45035 40.71856 0 0 171 106 170 126
-1563404 68.64343 0.7808143 1.728946 76.8879 31.81818 12.21163 58861.69 3714.92 25.99096 14.03509 0 0 520 78 550 104
-1563677 40.599 1.107011 14.87085 24.53875 7.627119 15.24427 63042.2 4572.615 24.41998 32.48408 0 37.5 190 63 187 45
-1563685 31.86047 2.014723 12.43704 7.477722 9.848485 15.32667 63498 5767.594 20.30722 32.8 0 0 170 87 167 75
-1563776 49.35103 1.697439 8.219178 31.98332 9.45946 13.08426 58159.2 4284.445 23.42700 15.49296 0 33.33333 216 97 219 68
-1563800 51.46237 0.3612479 0.7553366 17.76683 2.739726 14.43697 62633.1 5763.701 21.05658 17.79141 0 0 195 80 193 58
-1563826 24.99504 0.4204204 2.722723 17.39740 4.524887 14.79 60455.09 4308.128 22.87165 29.72973 0 0 322 213 324 156
-1563842 65.89027 0.4718152 4.395332 78.91731 21.10092 14.93269 61803.9 4139.937 24.51174 14.01515 0 0 250 55 255 43
-1573742 32.59873 2.233486 4.79962 10.89815 5.629139 14.35102 62453.15 4537.569 22.04157 38.66279 0 0 458 256 463 208
-1573908 81.96457 0.3115265 0.2336449 92.01713 31.89655 13.13246 55369.86 4428.046 22.50856 23.68421 0 0 199 28 200 18
-1575168 37.83202 0.3584229 0.860215 13.69176 8.333333 10.38143 55942.07 4098.994 24.92174 0 0 0 91 49 91 47
-1663891 64.27918 0.4638219 4.050711 79.37539 17.36111 15.31545 66404.2 4605.861 22.67635 15.58442 0 0 191 61 197 45
-1673932 86.49362 0 0.7340946 89.96737 15.59633 11.06066 57641.57 4543.492 21.75277 26.19048 0 0 153 28 161 14
-1764014 45.57020 0.9541985 1.335878 22.08969 7.207207 14.75781 54040.6 4832.32 20.08333 50.9434 0 0 162 91 165 91
-1764022 73.609 0.8296107 5.966816 9.60434 6.329114 13.7825 54439.95 4354.388 20.61290 10.60606 0 100 201 66 206 52
-1764030 46.29523 0.6597031 1.869159 15.66795 3.448276 15.13131 58962.14 4361.361 21.41705 28.42105 0 0 146 88 147 85
-1764055 26.79575 0.7237636 0.3618818 8.685163 1.204819 11.29516 50096.41 3932.39 19.15049 40.69767 0 0 120 76 116 77
-1764063 52.91709 1.732926 2.854230 8.25688 6.25 14.98707 59995.4 5022.533 21.89956 37.70492 0 0 60 30 61 23
-1864204 41.9708 0 0.5714286 9.142857 3.030303 17.90429 55176.85 5259.958 18.96552 18.18182 0 0 42 15 43 8
-1964212 30.50552 32.46542 10.40141 32.65980 36.00406 15.25756 59289.09 4219.665 22.57679 49.73262 0 3.333333 1579 837 1599 879
-1964261 8.362214 52.59396 1.213040 9.888444 8.900524 15.98201 64415.47 4166.218 24.27460 60.84011 0 27.27273 771 540 771 640
-1964279 70.73827 0.9595613 3.152844 78.94106 25.95573 14.49885 64611.03 4379.243 23.98186 19.42446 0 11.11111 794 191 800 200
-1964287 62.87168 4.72375 1.793829 85.46998 27.21202 15.06211 67839.96 3819.118 27.50542 26.77165 0 0 972 272 1029 268
-1964295 79.6766 2.102924 2.102924 89.14344 45.6 14.39982 62084.61 4432.065 23.55966 20.98765 0 0 395 71 399 108
-1964303 49.17215 5.575448 18.15857 38.48009 12.27437 13.04228 58550.52 3988.183 23.88522 17.99729 0 7.142857 927 287 927 260
-1964311 9.733488 10.93985 3.571429 4.097744 10.81967 18.2 62455.76 6015.758 17.72469 61.88437 0 0 417 329 417 346
-1964329 25.84395 5.866005 4.823821 27.58313 9.501188 16.89201 62021.76 4054.136 24.11424 51.76471 0 0 803 450 804 426
-1964337 37.6798 5.688124 2.774695 36.95893 13.16667 14.46938 62400.43 4138.196 23.95766 32.4291 0 5.263158 995 517 992 436
-1964378 23.94770 5.265554 4.871017 36.61608 11.76471 15.32254 61534.67 4024.875 24.12297 38.72549 0 0 459 271 464 209
-1964394 20.80702 10.11185 12.00121 20.87364 11.70886 13.90775 61447.66 4401.148 21.54203 53.16973 0 0 482 323 483 338
-1964436 37.64495 8.548446 5.798903 50.82998 14.25993 13.90046 62290.03 4265.807 24.2564 42.08443 0 0 955 458 958 450
-1964444 33.51168 10.20237 17.91269 36.81218 18.65079 15.38502 62132.02 4282.612 22.95729 41.17647 0 0 386 174 388 144
-1964451 42.84095 5.595576 4.80418 63.33705 14.59948 12.29348 64631.93 3979.219 25.14150 23.26733 0 0 1300 637 1312 538
-1964469 61.40009 2.775971 13.20755 61.96053 30 16.06842 59303.74 4179.698 25.22527 15.01597 0 0 267 85 273 71
-1964527 68.0851 0.683527 0.580998 94.48052 51.81452 16.27428 65653 4338.243 22.49503 33.67003 0 0 662 152 682 130
-1964535 13.80008 6.320789 3.397881 14.87030 4.761905 11.92766 57362.05 4718.115 21.28874 38.99371 0 0 209 146 212 125
-1964568 50.67402 12.12724 1.119947 23.8668 12.23958 13.22109 73039 4224.937 26.67020 26.38655 0 34.48276 2339 1123 2327 1326
-1964576 14.82624 4.119138 1.292776 16.56527 6.329114 14.99266 63784.61 4130.35 24.90064 33.6 0 0 556 350 584 339
-1964634 69.00829 0.1925546 43.09138 55.36819 63.43907 15.01983 63040.99 3748.33 27.40275 38.88889 0 57.89474 1095 296 1111 222
-1964659 1.421801 26.20056 0.5414313 3.060264 8.205128 15.02579 63791.63 4705.506 21.59624 66.18182 0 0 326 293 326 287
-1964683 2.971741 7.57133 1.366449 4.975937 7.024793 17.00701 64749.85 4414.05 24.23913 60.62323 0 0 825 693 828 671
-1964725 64.2387 14.16632 20.33687 40.48983 29.10875 13.30980 59298.18 4210.309 22.98312 41.37823 2.325581 19.76744 5645 2145 5677 1930
-1964733 73.18394 4.308746 13.79525 68.52417 45.46139 20.54574 73073.07 4365.276 23.42095 49.30618 2.321981 32.19814 38418 10373 38852 9324
-1964774 59.29694 0.224649 12.05616 86.5273 52.48714 15.79301 67063.02 4064.954 27.05961 15.08475 0 50 951 171 939 113
-1964790 56.89858 1.915122 14.06465 48.07722 17.54386 14.42588 57193.3 4017.302 22.55472 25.94752 0 11.11111 398 183 401 144
-1964808 75.0343 4.879927 0.4471292 90.5185 59.52981 16.92341 67605.91 3810.285 27.99578 28.54167 0 25 2025 466 2093 377
-1964840 44.02203 4.939493 5.01597 62.97629 29.22002 15.62108 60665.56 3616.505 25.62582 21.50866 0 7.142857 1425 513 1436 388
-1964865 1.943602 30.02693 1.723209 3.941842 7.474227 18.94287 59821.21 3946.788 24.11441 89.13043 0 0 680 551 678 597
-1964873 58.22835 1.783620 14.61458 75.7082 35.24845 11.80146 63190.71 4370.215 24.5058 5.430712 0 73.33333 1080 248 1088 185
-1964881 61.8811 2.22193 32.00543 47.11193 42.18415 14.27299 64584.04 4443.599 23.86713 39.65517 0 0 1348 404 1352 365
-1964907 73.5053 6.393463 11.23378 71.20447 48.69857 16.68337 65628.77 4007.186 26.04422 8.27719 0 23.68421 1986 616 1983 575
-1964964 0.2653400 63.20234 0.4871712 3.345242 6.944444 15.90786 57543.38 4619.277 22.17736 78.1893 0 0 265 215 265 246
-1964980 26.09065 5.531472 8.617999 27.07647 22.2664 15.87400 65963.43 5063.35 22.31528 65.10638 0 0 735 500 753 429
-1965029 11.67883 32.08936 4.467806 18.21288 13.01775 16.19645 61169.62 4043.499 22.99094 64.07407 0 0 300 228 300 234
-1965052 27.32198 38.10775 1.445466 20.36794 7.359307 13.7875 59417.3 4035.891 23.64895 31.56499 0 0 384 246 376 237
-1965060 17.70193 28.47688 3.996755 15.83330 19.65726 13.31861 59555.29 3822.103 23.78323 45.95661 0 0 1726 1105 1732 1108
-1965094 47.30717 9.43911 9.122654 58.16237 17.52022 13.90339 56841.37 3907.338 24.42266 29.06178 0 0 629 233 627 194
-1973437 78.42391 0.05453864 35.72962 62.92736 80.17493 14.79315 58991.42 3743.125 28.09997 41.78905 0 2.564103 1810 308 1843 258
-1973445 40.23607 16.39995 2.539347 67.97602 28.90365 17.39357 62325.3 4103.139 25.05607 38.67849 0 0 1636 622 1647 609
-1973452 33.85063 18.78119 6.688608 55.35089 29.18239 16.1731 62277.31 4369.675 24.44574 30.26188 0 0 1204 554 1213 606
-1973460 6.196674 42.31389 5.721689 18.18054 17.73649 14.82445 60555.24 3982.78 24.25086 57.78547 0 0 1162 802 1171 831
-1975291 53.4557 36.40237 1.889589 43.47907 22.06573 14.12308 57663.26 3814.974 23.16667 0 11.11111 0 320 173 319 185
-1975309 28.17235 1.443203 1.722533 11.91806 7.446809 11.72804 58880.17 3806.893 24.82222 0 0 0 191 124 192 109
-1975333 7.197273 7.00382 1.819174 8.659269 7.936508 15.21719 64224.89 5093.928 21.58711 43.08943 0 0 296 263 299 242
-1975341 25.63993 7.277444 5.188422 23.18405 10.24845 16.50521 68096.37 5006.776 22.47522 51.54062 0 0 488 303 489 298
-2065193 59.28721 0.9413778 2.524604 41.63457 6.666667 12.20542 53265.82 3873.24 23.55149 25.40984 0 0 147 71 159 48
-2065243 60.0239 1.152145 3.543626 67.3538 26.82927 14.05485 56274.59 4064.557 23.45833 31.99405 0 45 1101 374 1130 362
-2165417 14.79229 4.893837 2.770585 11.10823 3.562341 16.62018 53794.99 4365.513 20.39636 48.08511 6.25 12.5 558 407 564 412
-2165458 34.76768 7.884136 5.198542 36.17878 8.536585 15.19114 53336.38 4458.969 20.96682 53.59281 0 0 278 161 277 144
-2173361 0 0.4801921 0.4801921 28.69148 7.407407 13.72615 60992.5 6459.384 16.40535 26 0 0 52 36 52 28
-2265532 27.00072 0.5113221 0.2921841 6.208912 1.459854 15.59845 51692.82 4183.603 21.53846 29.80132 0 0 223 140 225 112
-2365540 55.9322 0.8403361 1.344538 45.37815 0 12.756 48855.96 6406.862 14.31604 44.73684 0 0 38 23 38 21
-2365565 37.29968 1.162791 0.4152824 19.68439 2.272727 17.13074 56336.78 4990.487 19.47287 25.89928 0 0 188 103 188 98
-2365615 46.92754 0.969469 1.114166 22.81869 4.848485 17.4015 64535.71 4838.431 21.34488 33.33333 0 36.36364 492 241 489 240
-2365623 46.53846 0.8461538 0.6923077 11.57692 2.985075 17.472 56568.13 4611.976 20.82808 26.38037 0 0 170 90 171 67
-2373916 56.33117 0.5172414 0.6896552 3.965517 4.651163 12.49787 48867.6 6578.053 15.73298 34.21053 0 0 34 24 33 13
-2465698 37.78899 1.586639 0.2922756 17.32777 11.71171 13.41706 58102.55 4361.619 22.78612 20.8 0 16.66667 181 63 183 60
-2465722 41.43167 0.9155646 0 84.13021 25.58140 12.77143 55709.23 4140.527 22.18527 24.74227 0 0 46 4 48 14
-2465755 50.92824 1.244953 4.862046 53.17968 12.1673 12.07816 55074.62 4075.188 21.77028 33.93502 0 50 454 141 455 123
-2473619 52.40793 0.6143345 0.9556314 50.44369 8.333333 11.98961 53609.9 4080.966 21.15774 49.27536 0 0 106 29 108 23
-2475317 60.91821 0.1568013 6.31125 61.70129 15.44118 11.49135 54802.7 4750.999 18.81218 19.59459 0 0 179 48 181 33
-2573585 33.27773 0.75 0.75 10.41667 1.612903 11.68088 55854.74 4786.679 19.22953 32.78689 0 0 94 47 94 37
-2573593 64.85084 0 0 52.38095 4.761905 12.95532 50840.07 4851.063 18.40095 45.71429 0 0 47 15 47 19
-2673668 45.93373 0.3100775 0.7751938 14.10853 2.222222 14.03431 52320.31 6283.433 14.66970 76.92308 0 0 39 24 40 24
-2673692 21.84007 0.5828476 0.08326395 21.81515 4.83871 14.98485 60159.44 4806.483 20.59423 42.85714 0 0 92 58 93 45
-2765987 10.70682 2.977162 1.305057 7.544861 4.8 17.29423 69887.39 5676.651 20.67854 55.92105 0 0 202 156 201 149
-2766092 40.13453 8.813424 15.63724 25.22573 17.65705 19.47192 61011.63 4496.243 20.60704 28.90792 0 95.2381 761 365 773 255
-2766134 14.27955 4.711581 1.893439 7.089388 2.941176 17.54195 63909.55 4756.384 22.63210 48.17518 0 0 157 116 154 105
-2773825 40.66667 1.844262 1.285395 49.23621 20.15810 14.68534 56619.21 4356.072 21.57957 60.59783 0 0 353 124 357 107
-2775473 67.26937 0.2738788 0.4108182 86.51147 24.19355 11.88684 58893.12 4200.852 24.90864 11.30435 0 0 161 43 163 60
-2866241 45.67023 0.6825939 0.3412969 47.09898 4.545455 13.51122 54344.89 4650.725 20.97387 50 0 0 62 31 61 21
-2866266 32.70906 1.396074 1.776254 26.488 6.388527 15.47587 54785.13 3912.949 21.83841 29.25258 3.333333 0 1171 656 1198 587
-2866290 34.43425 0.7380074 0.4305043 37.45387 14.63415 15.64778 51434.44 4386.959 21.20205 44.14414 0 0 113 62 112 58
-3066449 16.15780 8.398994 2.179380 21.62615 4.897959 15.22727 57193.42 3825.952 25.22776 40.72022 0 0 449 323 455 300
-3066464 17.33803 4.709514 1.580624 16.95375 9.391933 12.69992 60779.38 3802.974 23.00043 44.82558 0 10.52632 2686 1934 2692 1804
-3066522 48.15608 28.71155 1.291070 44.05147 11.48612 15.67656 65184.42 3835.549 24.67322 20.3813 0 0 2986 1224 3007 1473
-3066555 9.316273 1.883830 1.216641 9.22292 7.619048 16.90641 70274.37 4481.474 24.26357 74.28571 0 0 188 154 188 145
-3066597 39.02544 4.683563 1.235117 34.12381 4.426788 16.00117 60202.04 4349.231 22.48276 42.87149 0 0 1186 759 1186 688
-3066621 36.01998 10.88242 2.085541 36.82177 9.424084 16.81767 56415.11 3586.935 25.44882 47.33026 2.564103 12.82051 1989 1054 1991 1035
-3066647 21.01388 8.124397 1.888460 25.92012 11.39742 15.15302 63101.53 4172.242 24.71715 36.56174 0 0 1873 1180 1875 1238
-3066670 73.27723 4.408512 1.079825 90.79082 26.48752 14.97092 69824.54 4102.145 25.03219 21.72937 0 56.25 3331 666 3391 610
-3073635 10.53450 8.401664 2.167491 14.81068 6.056435 14.97990 60372.2 3840.866 22.19101 53.79189 0 0 2363 1654 2363 1607
-3073643 29.86897 8.276043 4.655274 41.6814 5.263158 13.01412 57831.15 3629.530 24.16947 39.59538 0 0 1053 569 1074 526
-3073650 10.51650 25.16370 3.039764 7.41078 9.255725 16.09776 62550.98 4352.488 22.65816 0 0 9.67742 1795 1400 1799 1421
-3073924 11.60025 8.99128 3.111006 11.53665 10.13333 15.09307 67284.94 4726.529 23.19879 49.59217 0 10 622 491 621 416
-3166944 23.35644 0.627574 0.4314571 17.70935 6.617647 13.59359 49513.03 4638.098 19.67842 44.13146 0 0 357 243 358 204
-3166951 28.66097 0.5628095 1.440792 17.42458 4.878049 13.33273 42658.39 3503.698 24.26859 27.46114 62.5 0 194 95 182 49
-3175085 17.13624 3.538945 1.372581 6.664462 4.651163 11.19239 52654.82 3596.095 23.04330 0 0 0 438 346 445 276
-3266969 36.66211 0.6635333 1.216478 6.856511 2.717391 16.15405 56500.12 4912.702 21.23209 33.19328 0 0 289 182 288 132
-3366977 42.29029 4.021226 7.222877 47.15802 17.24138 13.00708 62390.7 3758.198 25.18195 41.66667 0 70.58824 1079 356 1078 280
-3366985 75.52987 13.36851 13.85224 36.69745 20.29703 13.81733 60074.78 4456.322 21.89966 41.81818 0 12.5 316 95 335 54
-3366993 58.74644 1.151316 3.426535 34.64912 9.027778 15.96616 59270.44 4070.74 24.75627 26.25 0 12.5 219 103 219 53
-3367033 41.51139 3.604238 4.644538 41.77843 11.37321 13.54297 64063.46 4083.554 25.23114 34.63727 0 34.28571 2104 989 2122 849
-3367058 55.99125 1.264684 2.467791 60.04168 15.80882 12.68737 64123.52 3937.206 25.2138 43.17181 4.347826 0 1428 486 1434 387
-3367082 62.40778 1.435897 2.666667 29.23077 9.03328 15.50251 59735.05 3916.537 24.51756 21.42857 0 5.263158 1090 534 1085 456
-3367090 50.21092 1.388811 5.304256 53.2545 23.78976 13.27531 62068.72 3826.458 24.66667 26.38353 0 4.166667 1177 424 1199 300
-3367124 43.06891 3.265436 23.67600 35.35328 23.12358 14.01194 58401.16 4173.917 24.09220 25.59242 2.857143 22.85714 2269 885 2300 644
-3367173 62.50497 1.157494 5.942876 53.49124 8.933333 13.07002 57242.97 4143.368 24.20104 13.75405 0 9.52381 1210 460 1226 319
-3367181 55.91289 0.6329114 10.52215 52.08333 10.79545 14.11026 61885.48 4694.474 22.19581 20.93023 0 0 233 75 238 93
-3367215 47.23435 3.598305 10.32666 40.11093 21.7477 10.97662 61445.65 4384.205 23.56853 33.77246 0 19.04762 2371 1091 2388 860
-3367249 64.1791 1.007308 3.851471 50.81967 7.446809 13.11981 58040.66 3564.449 26.02162 11.93182 12.5 25 306 92 306 92
-3373676 85.51459 0.1381215 0.2762431 96.16713 36.46532 11.92077 61385.59 4099.012 25.27964 13.54680 0 0 838 92 862 86
-3375176 38.11647 1.790807 4.072428 30.11209 11.41869 13.05375 62326.66 3960.634 25.39694 25.38330 0 83.33333 994 457 990 307
-3375192 18.16999 1.957028 3.825099 17.78432 8.097928 12.19485 64156.11 3664.265 25.5498 25.86806 6.25 81.25 1028 617 1029 587
-3375200 18.21645 2.105698 3.437242 17.84682 15.19337 9.219296 59134.67 3774.601 25.86148 38.25666 0 100 669 408 674 290
-3375242 54.84387 1.897597 23.57961 45.82304 21.23894 10.90779 58447.44 3799.078 25.54149 31.80212 0 0 647 214 656 177
-3467314 36.94477 15.21258 19.09346 16.26987 17.40431 12.27789 58331.63 3762.583 23.11697 29.58015 0 33.33333 2805 1318 2817 1239
-3467330 26.11432 5.308799 9.912578 8.671743 9.722222 14.26319 51104.65 3845.847 22.19777 27.70919 4.347826 30.43478 957 584 957 555
-3467348 33.11538 1.770956 1.180638 35.72609 9.166667 11.77256 51742.2 4581.189 22.21333 23.98374 0 0 347 180 349 154
-3467413 35.97884 1.407285 1.034768 36.92053 11.90476 14.73511 51080.37 4420.624 20.18018 45.3125 0 0 171 91 174 82
-3467439 59.40643 23.87054 21.95251 23.50613 27.45747 14.0033 61997.03 4125.407 24.82678 38.74261 1.298701 10.38961 3322 1329 3398 1325
-3467447 28.84975 4.59477 5.959822 8.972135 7.187223 12.61622 58872.75 4335.660 21.75074 39.28442 1.219512 6.097561 3282 2100 3310 1787
-3473973 29.30606 7.97491 13.87097 10.28674 10.69959 13.23241 55944.13 3811.049 22.28951 78.96825 0 42.85714 388 244 391 266
-3475283 37.95538 6.22615 29.74493 26.23017 12.23404 10.66611 57672.68 3312.515 22.42841 0 14.28571 14.28571 411 193 412 136
-3575259 35.75375 2.109375 0.625 40.46875 16.66667 11.91818 61919.85 4272.916 22.22222 0 0 0 114 72 114 58
-3667611 50.62411 1.101449 11.78261 38.13043 19.26910 14.40147 57100.62 4203.244 22.98675 12.98701 0 0 459 184 467 149
-3667637 40.70337 0.449312 0.954788 11.42937 3.521127 13.88148 57824.88 3838.359 25.36429 35.42857 0 100 273 158 280 143
-3667678 25.95567 6.023256 5.232558 38.20266 18.69852 15.21277 62270.05 3664.259 24.16969 29.01554 0 10 2137 1133 2132 1002
-3667686 44.45212 2.019903 9.084639 63.68608 19.09425 11.89511 59625.26 3811.724 24.03023 34.44593 0 48 1302 430 1304 352
-3667710 39.99806 1.101044 11.80547 65.77463 19.71081 12.96852 60468.72 3939.782 24.37131 18.2534 0 56.25 2213 575 2259 407
-3667777 46.74229 1.503836 8.194373 13.34015 4.504505 13.40194 62286.07 4128.065 22.62928 13.5 5.882353 0 660 290 667 280
-3667801 54.40152 1.161946 3.776325 17.28395 2.941176 16.79467 61234.99 4903.238 21.27721 40.35088 0 10 101 42 103 45
-3667843 34.60404 8.123958 7.962554 30.9894 15.03356 14.84909 60477.27 3763.685 24.72111 24.77432 0 50 1262 681 1261 580
-3667850 57.88502 2.875776 27.39844 51.59111 24.49393 12.17399 59096.31 3838.001 25.16211 13.23944 0 70.83333 1662 482 1750 368
-3667868 24.70073 0.979605 1.268669 13.05605 10.27668 15.79196 62201.87 3995.416 24.43908 31.28655 0 0 457 279 488 229
-3667876 70.23575 3.366044 19.61802 50.84942 25.21964 11.67938 61672.89 4147.682 23.98684 22.39521 0 42.62295 3036 911 3080 739
-3667918 44.91996 1.618203 16.41763 36.17087 15.53398 10.97167 61492.85 4057.497 26.51144 13.97059 15 20 998 389 1011 354
-3667959 27.57103 0.7626423 0.7743752 19.66444 6.060606 11.88049 63432.72 3784.39 25.07162 25 0 70 626 313 626 244
-3673890 46.96416 2.107896 18.18507 12.04001 7.913669 11.09907 60618.41 5342.537 20.25289 18.34862 0 0 179 98 180 74
-3673957 20.98413 0.8261886 2.088854 16.67966 4.054054 8.420029 53764.2 3823.18 22.52066 10.24845 9.090909 0 482 294 482 241
-3675044 47.6781 0.955685 5.308634 31.19068 11.89711 12.19179 62220.1 3865.725 24.81302 13.34405 0 61.11111 1035 424 1057 328
-3675051 62.31156 1.224847 2.274716 17.93526 5.263158 10.46923 59114.49 4587.305 20.48736 26.08696 0 0 81 32 81 17
-3675069 30.64712 7.226302 11.49032 28.47964 11.45631 13.98121 59659.77 3922.567 23.51056 35.31353 6.666667 6.666667 905 507 910 473
-3675077 43.73161 1.65699 17.27445 20.43186 5.168986 13.20700 62106.35 3058.089 24.52082 35.83916 13.33333 86.66667 889 471 880 352
-3768031 12.89092 1.749271 2.587464 10.49563 8.661417 15.07955 59963.79 4346.546 22.36994 58.82353 0 0 199 163 200 152
-3768098 43.17715 2.752435 1.797588 43.81089 8.999082 14.07094 58398.9 3882.451 23.42240 29.01186 4 44 1607 820 1610 757
-3768114 49.18965 0.8987701 4.328288 36.21097 10.14085 16.56101 66966.72 4540.894 24.11054 22.46094 0 0 536 316 538 285
-3768163 7.723036 0.1381215 0.6906077 9.254144 5 15.96932 62789.97 5092.907 19.09561 32.07547 0 0 54 48 54 40
-3768213 48.69423 0.1632209 1.468988 25.29924 4.301075 12.16262 52084.4 4470.921 20.17877 40.86957 0 0 142 68 143 47
-3768296 10.58816 8.755863 2.760139 7.792208 11.01512 14.19155 58198.62 3718.169 22.87571 46.68874 0 0 2347 1831 2349 1785
-3768304 35.02365 0.7042254 0.8766887 19.61771 7.491857 13.51452 57168.13 3976.03 23.11592 39.73684 0 0 510 342 509 280
-3768338 64.15235 9.492747 16.92434 35.27733 25.08497 12.29597 62782.7 4952.585 22.19313 31.24032 4.166667 28.57143 8470 3812 8479 3392
-3768452 40.05977 2.53262 6.127555 37.38501 11.09091 12.81245 65164.45 4103.446 23.64449 34.33243 3.703704 81.48148 1691 846 1707 683
-3773551 26.92308 2.594662 1.762880 26.13284 13.33333 15.28393 62997.11 4261.82 24.32617 43.44473 0 0 594 410 595 357
-3773569 54.9774 1.804259 14.86001 41.52190 16.01344 13.17371 57811.14 3832.582 23.35025 44.7178 0 0 1303 573 1317 435
-3773791 49.26504 2.389785 2.553705 44.13769 11.06472 13.66803 60657.16 4097.092 24.63998 29.65517 0 83.33333 734 338 749 330
-3868478 64.55428 41.36902 16.19322 21.20412 43.73746 15.28547 52885.51 5230.051 17.93118 48.83066 2.654867 1.769912 3624 1740 3633 1925
-3968502 36.41286 0.9198423 0.3285151 26.64258 5.673759 14.19245 53510.44 3846.512 23.32055 26.41509 0 0 197 126 200 114
-3968569 44.12983 19.62769 10.69226 17.62653 14.7343 13.20137 53970.81 4022.264 21.56064 29.83539 0 0 629 327 634 279
-3968577 40.58286 1.936027 0.3367003 34.21717 7.207207 16.12520 52198.86 3727.909 22.02652 39.28571 0 0 190 89 193 60
-3968585 48.76863 19.79547 5.832491 23.64881 11.27119 15.08360 59465.23 4469.021 22.00292 30.33708 0 62.85714 1916 824 1932 638
-3968593 35.13317 2.449629 4.936003 29.09547 11.32638 13.80978 56910.66 3589.197 24.38578 36.2426 0 0 1189 606 1207 591
-3968650 13.77399 0.7308161 0.4872107 21.84328 2.564103 14.55039 51683 3786.43 20.59880 29.72973 0 0 173 119 173 130
-3968676 68.72708 20.87249 13.34830 42.18544 33.74755 12.67768 66654.75 4527.226 22.94049 18.20926 0 21.95122 2218 554 2323 558
-3975499 26.57033 4.436534 5.981941 26.72339 14.19624 10.59350 55631.9 3616.366 23.96260 26.28676 0 0 745 417 749 397
-4068700 18.07366 1.065779 1.648626 9.342215 3.284672 14.97258 60464.24 4506.425 23.30425 45.45455 0 0 438 324 437 293
-4068759 38.07467 1.538031 1.165175 30.20134 8.932039 13.48316 55684.26 3887.088 21.21927 25.90361 0 0 730 518 727 465
-4068809 22.46579 2.346382 2.090835 12.61471 5.326877 16.19522 64397.68 4933.223 21.43327 25.63559 5.263158 0 669 482 676 453
-4068841 17.99781 0.6178288 1.41218 9.223301 4.587156 11.08730 50372.47 3667.019 19.39394 35.95506 0 0 175 114 174 96
-4075457 36.82691 1.330486 3.876478 27.18463 5.802048 14.22784 59653.03 4756.442 22.28147 39.81481 0 0 423 245 423 224
-4075465 27.08779 1.005025 0.3015075 21.60804 9.23077 12.86419 46347.38 4792.461 17.37132 41.33333 0 0 65 45 66 34
-4168890 19.30207 2.108511 0.5399846 25.09643 8.290155 13.32290 51768.27 4138.211 21.00933 48.80952 0 0 329 220 331 179
-4169070 31.91489 8.753316 4.823657 34.79713 11.89931 17.10861 57489.22 3823.838 23.52320 38.95447 0 0 707 325 705 303
-4269146 39.27727 1.385309 0.9664948 54.38144 21.32353 14.49774 60262.91 4158.069 22.21329 33.33333 0 0 232 123 235 108
-4269229 35.70633 4.651992 8.920774 32.86695 9.057301 17.08317 53117.72 4325.819 21.67377 42.91498 0 13.33333 740 363 754 302
-4369484 44.54203 2.308979 1.528165 62.94479 22.37197 15.48966 62890.81 4312.730 24.50787 20.19002 0 15.38462 562 242 590 171
-4369583 23.6491 5.235658 2.399232 33.46129 11.25 17.79609 60283.85 4361.515 23.73711 37.80488 0 0 716 437 715 400
-4369641 7.894435 17.389 4.916817 6.887782 13.52834 14.11575 66182.01 5970.823 18.74769 73.37526 0 0 598 514 605 538
-4369666 42.80784 12.24502 3.270391 49.41048 22.36951 16.57729 80565.04 5038.4 28.21085 38.10758 0 0 2185 1071 2216 975
-4369674 40.20545 18.39412 4.340957 25.20091 11.52 15.60997 65468.92 4317.319 23.7628 29.55112 0 0 898 476 908 463
-4373387 28.89357 31.45988 5.952142 18.42952 20.22727 14.80637 60774.92 4090.016 22.11977 26.72065 0 0 710 426 713 399
-4469799 56.34867 1.201376 0.587457 72.01376 19.71665 14.11421 59922.13 4282.146 22.53530 26.64756 4 20 1253 426 1269 393
-4469807 14.50640 1.659053 1.226256 4.087521 3.333333 17.28916 58616.28 4262.088 24.33353 60.58091 14.28571 0 346 253 345 204
-4569989 39.60894 0.7471264 0.2873563 8.908046 4.301075 16.49120 56131.94 4741.874 18.73638 28.82883 0 0 144 81 145 59
-4575267 49.37712 0.8405323 1.074014 4.809713 4.090909 14.58583 55396.61 4509.515 20.73813 34.48276 0 0 338 169 335 131
-4670177 32.10162 1.633166 0.6281407 8.354271 1.960784 14.40364 54122.02 2908.312 16.88889 43.24324 9.090909 0 121 88 121 80
-4870524 11.44366 4.562111 7.805057 10.15024 10.16260 15.17562 61419.34 4303.057 22.27944 40.4908 0 0 433 359 435 326
-4870532 40.81942 1.316920 1.774979 39.96565 12.64368 15.51333 57074.22 4262.563 20.02370 39.66480 0 16.66667 245 103 239 100
-4870540 28.11086 6.548673 21.01071 18.01584 13.24153 15.96551 59268.99 3955.489 22.88891 26.11607 0 34.61538 1486 728 1496 688
-4870565 22.71245 2.529475 15.34834 10.39657 18.22034 15.12085 62353.6 4900.856 20.22874 66.31016 0 0 320 189 323 155
-4870573 23.01924 2.829361 8.373287 16.74657 9.129815 14.62274 53901.88 4110.539 22.38147 40.26144 5.263158 10.52632 1044 585 1052 515
-4870581 35.46088 3.839582 35.21459 15.5493 23.87677 16.68085 68338.8 4364.927 25.67080 20.02275 0 56 1290 477 1324 450
-4970656 39.70868 0.4294479 0.6748466 25.09202 6.329114 15.62941 56854.04 3942.010 20.42161 43.83562 0 0 117 67 120 55
-4970953 30.76032 1.923440 0.7165755 22.40241 6.153846 15.85861 54122.34 4170.568 21.14767 23.37165 11.11111 11.11111 392 239 386 224
-4973882 19.67584 3.863969 3.644564 12.84739 5.99455 15.71779 59484.68 4081.602 22.29298 14.45087 0 0 612 373 616 320
-4975358 33.55805 1.379099 0.858106 26.50935 17.56757 11.02364 50731.47 3834.786 21.02305 0 0 0 236 132 234 108
-4975390 21.46387 0.8783784 0.4391892 34.05405 14.28571 16.46453 56837.35 4968.968 20.91327 46.48438 0 0 231 136 232 151
-5071043 51.20522 4.550344 3.431583 39.2642 10.04902 13.27732 56234.31 3767.504 23.17001 12.96703 0 41.66667 690 228 688 193
-5071068 42.13075 0.7830854 0.2349256 25.92013 1.724138 13.38175 49550.74 3282.389 21.30662 29.87013 0 0 118 63 120 55
-5071217 55.00726 0.673968 1.235608 64.5886 18.12081 13.32733 55535.15 4008.414 24.00409 13.07190 0 0 220 86 224 72
-5071308 42.6007 4.702023 1.366867 32.55878 9.221311 14.96416 59645.21 3932.407 24.17863 21.40625 0 50 747 388 733 359
-5073601 53.90428 1.221374 1.475827 53.43511 14.73684 12.70857 51297.37 4109.917 21.68662 28.86598 0 16.66667 120 44 120 31
-5171399 72.2977 12.32356 0.597177 45.33116 6.521739 12.38267 52194.34 4350.793 21.44379 17.72152 0 0 131 43 135 39
-5171464 49.25642 13.28312 2.939555 25.5282 14.10788 15.09745 57777.56 4165.932 23.06171 24.24242 0 25 767 360 776 303
-5271498 49.15907 0.8762706 1.892744 29.75815 3.597122 13.24340 55372.46 3941.387 20.91108 36.42384 0 0 204 82 207 79
-5271571 51.2931 0.1422475 0.56899 32.29018 2.564103 15.81222 53216.62 5045.576 19.64384 34.21053 0 0 40 18 41 19
-5375028 60.14599 0.4807692 0 5.128205 5.555556 16.13205 63507.83 6482.47 17.90831 42.42424 0 0 41 25 43 23
-5471860 84.09904 0.5628518 0.2412222 90.72635 18.78788 14.21739 58391.11 3952.910 22.75184 8.370044 0 0 258 46 259 91
-5471878 74.57442 0.8955831 0.2442499 80.46 15.98174 12.97066 53304.9 3688.748 22.96475 16.46586 0 0 343 103 342 96
-5471993 76.58037 1.721170 0.05737235 83.76363 23.68421 13.28494 58362.71 4115.279 22.61873 27.42857 0 0 243 51 250 40
-5472256 44.83328 7.621228 1.954371 43.13517 12.71111 14.47325 58322.98 4057.255 22.31273 35.91731 3.125 28.125 1726 794 1750 578
-5472272 72.66314 1.192504 0.2981261 79.25894 13.15789 14.81406 58001.31 4081.734 21.10603 36.13445 0 0 147 46 150 26
-5475325 92.3345 0.933553 0.1098298 83.0313 17.10526 14.40238 61350.21 3792.456 22.91892 0 0 100 137 15 134 23
-5575184 36.71642 0.4279601 0.8559201 4.707561 4.651163 13.26809 48160.47 4666.561 18.42667 70.27027 0 0 53 36 53 31
-5672454 51.80654 0.5471956 0.4377565 76.90834 15.52795 15.02404 56925.98 3897.079 23.48475 30.60109 0 16.66667 264 82 266 59
-5672520 23.28170 1.366251 0.8628955 18.64813 8.152174 14.22136 56808.01 3825.936 22.87717 35.54688 0 0 308 222 304 204
-5672603 15.68154 5.522166 1.674629 17.43977 6.917476 15.00022 57203.55 3831.574 23.20986 37.68719 0 0 1328 837 1338 736
-5672652 38.15821 2.905512 2.354871 33.44268 9.943978 15.35255 56413.61 3699.07 24.85112 34.36341 0 22.22222 1166 653 1170 526
-5673759 12.32702 5.661354 1.485200 14.53115 5.405405 15.73222 62750.24 4265.133 23.81032 41.16638 0 0 1425 1126 1431 1088
-5673874 1.247051 6.066291 1.000625 2.345216 4.72973 12.22485 55208.84 4079.327 20.98849 74.3421 0 0 249 212 248 186
-5673940 23.45529 3.861647 1.819697 29.78191 10.36585 10.28723 54402.98 4155.084 21.65256 21.14094 0 0 510 332 516 284
-5772678 17.89883 10.49096 3.372093 12.70026 14.92891 14.43766 49783.31 4254.717 20.06286 46.42032 0 0 583 461 591 455
-5772686 49.23581 0.77951 1.670379 43.76392 4.166667 11.36091 50433.17 5039.203 19.54545 27.08333 0 0 51 24 59 17
-5772694 62.23968 13.82086 3.956157 32.12879 15.88448 13.27089 52881.33 4324.174 20.98711 8 0 18.18182 331 116 342 96
-5772702 46.16188 1.150575 0.8004002 45.62281 13.33333 11.80714 48426.15 3945.069 19.8583 53.77358 0 0 147 63 154 37
-5772710 43.41431 3.648564 1.541204 46.31998 21.37767 14.40468 53796.16 3845.481 22.70884 29.89247 0 6.666667 593 255 595 208
-5872736 70.62104 20.46172 2.989345 17.42305 11.03286 16.56420 61705.66 3970.984 24.88647 15.14286 0 13.63636 699 259 709 199
-5872751 77.74827 5.998899 9.576225 11.11723 7.874016 16.91871 65099.57 6913.397 20.03252 23.52941 0 0 154 92 156 72
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/src/star98.dat b/statsmodels/scikits/statsmodels/datasets/star98/src/star98.dat
deleted file mode 100644
index 94e247c..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/src/star98.dat
+++ /dev/null
@@ -1,304 +0,0 @@
-CDS_CODE COUNTY DISTRICT LOWINC PERASIAN PERBLACK PERHISP PERMINTE AVYRSEXP AVSAL PERPSPEN PTRATIO PCT_AF PCTCHRT PCTYRRND READ MATH LANGUAGE LANGNCE MATHNCE READNCE READM11 READNC11 MATHM11 MATHNC11 LANGM11 LANGNC11 READM10 READNC10 MATHM10 MATHNC10 LANGM10 LANGNC10 READM9 READNCE9 MATHM9 MATHNCE9 LANGM9 LANGNCE9 READM8 READMCE8 MATHM8 MATHNCE8 LANGM8 LANGNCE8 READM7 READNCE7 MATHM7 MATHNCE7 LANGM7 LANGNCE7 READM6 READNCE6 MATHM6 MATHNCE6 LANGM6 LANGNCE6 READM5 READNCE5 MATHM5 MATHNCE5 LANGM5 LANGNCE5 READM4 READNCE4 MATHM4 MATHNCE4 LANGM4 LANGNCE4 READM3 READNCE3 MATHM3 MATHNCE3 LANGM3 LANGNCE3 READM2 READNCE2 MATHM2 MATHNCE2 LANGM2 LANGNCE2
-161119 ALAMEDA ALAMEDA CITY UNIFIED 34.397299903568 23.2993035015743 14.2352828928537 11.4111248926629 15.9183673469388 14.7064601769912 59157.3224489796 4445.20742295583 21.7102488401518 57.0327552986513 0 22.2222222222222 661.66460833221 654.852837393022 649.464497916387 54.1977416319398 53.2739960500329 49.0258864770123 700.8 40 702.9 50 683.6 49 688.9 31 696.5 49 671.2 39 689.8 40 695.2 57 674.8 54 694.4 55 685.1 54 670.4 56 680 52 674.2 53 664.9 59 665.1 53 661.7 55 649.6 54 656.3 53 647 53 646.4 57 643.7 57 622 52 634.9 59 616.7 55 598.9 54 613.1 57 581.2 53 570.5 55 590.9 57
-161127 ALAMEDA ALBANY CITY UNIFIED 17.3650687227623 29.3283833952076 8.2348970637867 9.31488356395545 13.6363636363636 16.0832386363636 59503.9675324675 5267.59838002025 20.4427792915531 64.622641509434 0 0 686.821559860904 682.097784342688 669.959373446047 72.8915962207857 76.2717872968981 71.290611028316 715.6 56 727.3 71 693.8 60 712.3 55 726.7 75 694.4 62 707.6 57 720.5 78 687.7 65 715.2 73 714.9 80 691.7 74 714.4 81 712.5 84 692.2 83 693.4 80 693.1 80 671.7 75 690.2 82 672.7 76 674.2 80 676.7 81 647.5 71 655.4 74 649.5 76 626 74 636.3 75 607.7 70 596.8 73 616.2 77
-161143 ALAMEDA BERKELEY UNIFIED 32.6432354357246 9.22638614946307 42.4063116370809 13.5437212360289 28.8343558282209 14.5955882352941 60569.9202453988 5482.92209072978 18.9541918755402 53.9419087136929 0 0 671.640665091155 661.550763788391 653.599950413223 56.2609917355372 56.6483357452967 56.1053342336259 717.7 58 720 66 692.6 58 707.9 51 716.1 67 689.7 57 707.8 58 710.6 70 688.9 67 702.3 62 690.3 59 678.1 63 685.7 57 672.8 50 667.3 61 673.6 61 664 57 655.8 60 661.1 58 651.7 56 643.1 53 648.3 60 623.1 52 630.9 55 612.9 50 589.3 43 604.8 48 574.9 47 559.5 42 577.1 40
-161150 ALAMEDA CASTRO VALLEY UNIFIED 11.9095333524191 13.8830897703549 3.79697286012526 11.4431106471816 11.1111111111111 14.3893861892583 58334.1081871345 4165.09303235908 21.6353887399464 49.0610328638498 0 7.14285714285714 676.513967201032 668.812306006938 660.962304147466 64.1185253456221 64.2161767390907 61.975677169707 716.3 57 713.7 61 691.9 58 708.3 51 705.5 54 685.9 54 704.7 54 705.1 66 684.6 63 709.9 69 701.2 69 683.7 68 697.9 68 691.1 68 676.8 70 677.8 66 675.9 67 660.5 65 665.9 62 659.8 63 653.1 63 654.4 65 637.1 61 644.6 65 629.4 61 615.8 65 622.2 63 600.4 64 589 66 607.4 69
-175093 ALAMEDA DUBLIN UNIFIED 12.927964941112 7.17299578059072 4.82594936708861 13.2383966244726 6.18556701030929 17.4710762331839 65570.8608247423 5382.00870253165 20.6833333333333 34.8314606741573 0 0 672.820427644139 662.700114372856 657.977207001522 62.6826484018265 60.5428898208159 60.2913325696831 711.7 52 707.9 55 690.3 56 703 45 706.1 55 685.4 53 701.4 50 706.8 69 682 60 705 64 688.2 57 681.1 66 694.6 64 679.7 58 671.9 66 676.5 64 673.8 65 660 63 668.8 65 660.3 64 655.3 66 659 69 639.6 63 646.7 67 635.8 66 613.5 63 623.2 64 593.7 59 579.7 57 601.4 63
-161168 ALAMEDA EMERY UNIFIED 36.8888888888889 12.1875 76.875 7.60416666666667 43.5897435897436 13.9056818181818 63153.641025641 4324.90208333333 18.7798408488064 52.3809523809524 0 0 634.917397881997 629.553768115942 624.377661169415 26.7661169415292 24.4666666666667 21.2692889561271 677.8 19 680.2 25 660.3 26 667.4 14 676.1 23 650.5 19 663.9 18 669.3 30 652.4 31 663.9 25 653 23 644.5 30 651.3 24 648.2 26 640.8 32 636.4 24 635.3 28 625.9 28 621.8 21 614.4 19 612.3 23 606.2 22 597.6 24 604.3 29 573.5 17 560.4 16 570.6 18 560.7 30 547.2 26 569.3 28
-161176 ALAMEDA FREMONT UNIFIED 20.9314901814986 28.0235116408892 4.64322070075198 13.8081633993367 15.3784860557769 14.9775459688826 66970.5521912351 3916.10429185959 24.5191372040221 44.9157829070493 0 2.38095238095238 672.231665367151 667.751934900543 659.896057692308 64.1000915750916 64.6254972875226 59.4770903086731 713.3 54 720.7 67 695.4 61 708.2 51 715.9 64 688.8 56 699.6 49 707.6 68 683.5 61 701.3 61 694.5 62 679.9 64 693.9 64 689.7 66 676.7 70 679.4 67 682.7 72 666.9 70 668 64 661.2 64 658.7 68 652.3 63 636.5 61 646.2 67 624 56 609.1 59 619.8 60 601 64 586.7 64 601.3 63
-161192 ALAMEDA HAYWARD UNIFIED 53.2689776217639 8.44785772029103 19.3748315817839 37.9053265067816 25.5255255255255 14.6782859680284 57621.947947948 4270.90330548819 22.2127790292853 32.289156626506 0 12.1212121212121 642.626397690466 636.33247468834 633.291838901472 39.561013590034 36.7048694813692 33.3479791578651 689.8 29 694 39 670.5 35 681.7 24 688.6 36 664.2 31 678.2 29 685.2 46 665.1 43 677.4 37 670.3 39 657 42 664.3 35 660 37 652.2 45 653.2 40 650.1 42 641.5 44 638.6 35 630.2 33 631.9 42 620.5 34 603.4 29 615.8 39 595 32 580.1 32 592.2 35 566.9 35 559.4 37 578.5 37
-161200 ALAMEDA LIVERMORE VALLEY JOINT UNIFIED 15.1900897052542 3.6657808347663 2.6496795372831 13.0920744098796 6.20300751879699 13.6619730185497 63447.3966165414 4309.73393778334 24.5902624724504 30.4526748971193 0 0 668.662054255087 658.826442204589 652.29882914137 57.2864267129228 57.3267209950676 56.071866112448 713.8 54 712.7 60 691.6 57 706.3 48 707.3 57 685.7 53 704.3 54 706.4 68 687.7 65 701 60 694.2 62 674.3 59 688.2 58 682.1 59 666.8 61 667.7 55 667.6 59 650.8 54 663 59 652.8 56 648.7 59 647.9 59 625.8 50 633.7 56 626 58 603.4 54 614.7 56 590.3 55 574.2 51 593.5 54
-161242 ALAMEDA NEW HAVEN UNIFIED 32.7789739401589 17.1783055654023 12.4849344204183 28.3232896136122 27.2598870056497 12.5186375321337 57801.4124293785 4648.91669620702 20.26010286554 26.0709914320685 0 0 654.289313771888 652.417934527718 647.614495897388 49.6735829482222 46.7383922708939 39.4493137718883 700.4 40 705.4 52 685.8 51 690.2 32 695.7 44 673.7 41 683.8 34 686 47 672.4 50 686.8 46 677.3 46 666.1 51 671.9 42 670.7 48 660.6 54 656.5 43 657.5 50 647.2 50 639.2 35 639.5 42 639.3 49 631.4 44 621.9 47 633.5 56 603.3 39 594.8 45 604.2 46 573.7 41 570.1 47 588.6 49
-161234 ALAMEDA NEWARK UNIFIED 28.2158234660926 10.4304198574069 6.78637443886982 32.3343015579614 13.4615384615385 16.4176039119804 57845.6401098901 4527.60324795353 21.7413793103448 22.6457399103139 0 0 651.806326987682 646.560586617782 642.048435474912 46.2571745972968 43.4252978918424 39.2136991414707 693.5 33 696.5 42 677.8 43 687.1 29 693.1 41 671.5 39 686.3 36 690.7 52 672.7 51 684 43 676.6 45 661.3 46 673.1 43 665.8 43 659.6 53 657.4 44 657.4 50 648.3 52 646.6 43 639.3 42 640.2 50 631.6 44 617.4 42 625.9 49 603.3 38 586.7 37 597.6 40 570.3 38 563.6 41 581 40
-161259 ALAMEDA OAKLAND UNIFIED 59.9729276290704 17.5173624075872 50.9409304756926 23.1013367186917 52.3434423001182 16.9328347826087 57434.4423001182 4693.06937495333 21.3148871700821 19.5321637426901 3.2967032967033 13.1868131868132 624.563806995628 620.398091796817 616.567219733771 28.6828906693584 28.4544450085108 24.1449718925671 683.7 24 689.8 35 670.7 35 673.7 18 683.6 31 658.8 26 669.3 21 677.1 38 657.9 36 669 29 663.1 32 647.5 32 651.6 24 651.8 29 640.7 32 636.6 24 631.9 25 625.3 28 626.8 25 621.6 25 617.5 28 606.4 22 594 22 602.8 28 582.5 23 573.1 26 579.8 24 556.9 28 552.3 31 566.7 26
-161275 ALAMEDA PIEDMONT CITY UNIFIED 0 19.7488584474886 1.86453576864536 2.58751902587519 7.40740740740741 15.8697860962567 52193.4567901235 5248.69292237443 18.5118219749652 80.379746835443 0 0 704.578132444021 695.271888310459 688.142389758179 83.8003793266951 82.8760056791292 82.5393044306813 743.2 81 743.9 85 720.1 82 733.1 76 734.1 80 712.2 79 738.6 83 733.2 87 714.2 85 724.5 80 724.8 85 700.6 81 719.3 85 712.6 85 700.6 88 702.2 85 701 85 680.2 81 695.1 85 684.9 84 689.1 88 683.2 85 658.4 79 666.2 81 667.2 86 643.9 85 656.1 87 619.5 78 593.9 71 629.1 86
-175101 ALAMEDA PLEASANTON UNIFIED 4.70089495996232 8.73671782762692 1.74565694046214 6.93202900995109 7.12788259958072 16.1817604355717 67367.5492662474 4607.67330072525 24.6510600706714 39.6341463414634 0 0 683.838015568723 678.03443586493 671.316753082152 73.9103583362139 73.4222657600553 69.0648309515511 718.5 59 718.9 65 697.9 64 716.1 59 717.2 66 696.5 64 712.5 61 715.3 75 695.9 72 714.1 72 705.2 72 694.2 77 703.2 72 698.1 74 686.5 79 682.7 70 685.8 75 670 73 680.2 75 673.8 76 671.9 79 669 76 652.1 75 656.4 75 646.5 74 631.8 78 638.8 77 607.4 70 600.2 76 616.3 77
-161291 ALAMEDA SAN LEANDRO UNIFIED 28.1211115719618 12.6920072897683 19.2658161936996 26.8419682374382 13.3720930232558 14.428640776699 57240.4481686047 3980.58939468888 21.8984351933865 31.6582914572864 0 9.09090909090909 651.912278410151 642.209956553223 639.349656069902 43.8430935118052 39.3631426502534 39.3356969583878 693.6 33 695.4 40 678.3 43 685.4 27 689.7 38 668.9 36 682.1 32 685.9 47 666.9 45 684.7 44 672 40 657.5 42 673.9 44 666 44 661.2 54 657.4 44 653.1 45 643.3 46 649.5 46 632.8 35 637.7 48 629.4 42 606.2 32 623.1 46 602.7 38 579.5 31 594.8 37 573.9 41 563.8 41 581.1 40
-161309 ALAMEDA SAN LORENZO UNIFIED 36.9904684648144 10.0323624595469 15.4230235783634 30.7443365695793 13.5076252723312 13.2975345167653 58413.7385620915 4197.61525658807 23.1294326241135 31.1507936507937 0 0 650.559694592323 638.287041796294 639.202783519361 43.6724541821689 35.5612065467334 37.6273465956851 691.3 31 691.2 37 672.9 38 685.6 28 690.8 39 666.7 34 680.2 30 683.6 45 666.5 44 685.2 44 666.5 35 661.1 46 677.5 47 665.6 43 662.1 56 655.8 43 642.8 35 645.4 49 643.1 39 628.4 31 635.5 46 628.1 40 604.1 30 622.6 45 598.1 34 575.6 28 592.3 35 570.8 38 555.8 33 581.4 41
-373981 AMADOR AMADOR COUNTY UNIFIED 20.2597946783993 .485744456177402 .802534318901795 5.97676874340021 2.4390243902439 15.3094936708861 51311.6292682927 4025.59281942978 24.8229166666667 36.1940298507463 0 91.6666666666667 670.250681818182 655.3 651.925882352941 54.4072829131653 51.1426197729161 54.4082386363636 712.8 53 704.7 53 694.3 60 703.9 47 695.3 48 679.2 47 702.3 52 696.4 58 678.3 57 701.6 61 682.3 52 672.7 58 690 61 675.3 54 667 61 670.6 58 659.7 53 647.7 52 656.6 53 640.8 46 640.9 51 638.2 51 613.9 43 627.9 52 619.7 57 594.7 49 605.6 50 579.8 51 570.9 54 591.9 57
-461408 BUTTE BIGGS UNIFIED 42.6682692307692 2.83687943262411 .945626477541371 23.8770685579196 10.6382978723404 11.8396226415094 55990.3191489362 5151.62647754137 17.9120879120879 24.4444444444444 0 0 654.831493506493 646.170872274143 638.868238993711 41.8977987421384 42.0809968847352 40.1103896103896 685.3 26 688.8 34 665.3 30 690.7 32 690.7 39 662 30 695.9 45 696.1 58 671 49 695.3 54 674.7 44 665.8 51 677.4 47 671.7 49 658.9 52 656.2 43 655.6 48 639.5 42 647.1 43 635.9 38 632.3 42 624.1 36 609.1 34 627.8 50 601.7 37 582.9 34 588.4 31 558.5 28 560.2 37 573.5 32
-461424 BUTTE CHICO UNIFIED 33.1292320991212 6.30541173132846 2.76615362791687 12.8661607206185 6.17283950617285 14.6014383561644 58558.5972222222 4004.40095042202 22.7300762863172 49.6551724137931 4.34782608695652 26.0869565217391 663.164911595194 653.503262518968 647.277658142665 50.4598154201115 49.4008915022762 48.6200058610921 710.2 50 714.3 62 690.3 56 706.1 48 707.8 57 685.2 53 699.7 49 702.3 64 680.9 59 695 54 684.3 53 671 56 683.1 53 675.8 54 664.7 59 664.4 52 658.3 50 647.2 50 651.4 47 637.7 40 635.9 46 638.2 50 612 37 622.8 46 608.1 42 590.3 41 598.5 41 573.6 40 561.1 38 579.6 38
-461432 BUTTE DURHAM UNIFIED 29.3929712460064 1.07115531752104 .765110941086458 9.71690895179801 4.47761194029852 14.0452702702703 53772.2985074627 4518.03442999235 21.1850649350649 51.0204081632653 0 0 675.541104294479 661.864705882353 662.146998982706 62.5757884028484 54.0425963488844 57.4836400817996 714.6 55 709.1 57 703.3 67 714 57 713.7 63 695.7 63 706.8 56 707.9 69 691.3 68 706.7 66 683.5 53 682.4 67 688.7 59 676.6 54 670.8 65 671.3 59 666.7 59 655.8 60 662.9 59 650.5 54 652.7 63 647.5 58 615.3 40 638 60 617.1 50 590.8 42 608.1 50 586.3 52 564.9 42 596.6 58
-461473 BUTTE GRIDLEY UNION 52.9931305201178 6.21737066919791 .332225913621263 38.7280493592786 7.61904761904762 14.1739495798319 50695.1238095238 4114.06454674893 20.411361410382 23.2758620689655 0 0 647.268098591549 643.146611909651 636.80674002751 40.9401650618982 40.8555783709788 34.6556338028169 694.8 34 697 43 675.4 40 688 30 697.1 46 668.2 35 687.6 37 691.6 54 675.5 54 678.5 38 670.8 39 653.4 38 668.2 38 653.9 32 654.1 46 649 36 653.3 46 641.8 44 640.6 37 635.5 38 634.7 44 613.9 28 602.9 29 614.6 38 590.8 28 591.1 42 589 32 573.2 40 562.8 40 579.5 38
-461531 BUTTE PARADISE UNIFIED 35.0883585352523 .829216654904728 .388143966125618 4.62244177840508 4.13533834586465 14.3022108843537 55278.7443609023 4148.22776993649 21.9194683346364 25 23.0769230769231 15.3846153846154 666.75602871998 653.663746369797 646.168135095448 48.0907978463045 47.7294288480155 50.525129982669 707.9 48 706.1 53 679.2 44 702.1 44 701.2 50 671.6 39 694.4 44 694.4 56 670.1 48 693.1 52 680.5 49 666.7 52 681.5 51 672.5 50 659.1 52 666.4 54 654.5 47 645.9 49 657.3 54 636.9 40 636.8 47 642 53 613.8 39 622.8 46 617.8 51 596.4 47 607.2 49 589.6 55 568.8 47 595.2 56
-561564 CALAVERAS CALAVERAS UNIFIED 37.2044140830268 .569948186528497 1.1139896373057 6.32124352331606 5.35714285714286 13.6024725274725 50668.494047619 3975.44792746114 24.8691767708998 22.9787234042553 0 8.33333333333333 662.25800647715 649.149032711924 643.041403757533 46.6157390996101 45.047836792121 47.6523929471033 699.5 39 700.3 47 679.4 45 694.4 36 699.8 49 668 35 694.9 44 693.2 55 669.7 48 693.9 53 680.3 49 664.3 50 686 56 669.5 47 661 54 666.8 54 663 55 650.1 54 655.8 52 635.2 38 639.1 50 641.1 53 609.8 35 624.7 47 610.9 45 582.5 34 598.2 41 576.7 43 562 39 581.4 41
-661598 COLUSA COLUSA UNIFIED 54.2682926829268 .549786194257789 .549786194257789 40.7452657299939 7.40740740740741 14.8710526315789 52537 4205.36224801466 19.4451145958987 36.283185840708 0 0 653.225547445255 646.493309545049 638.67279344859 38.926296633303 38.5388046387154 35.7308394160584 691.1 30 688.9 34 670.2 35 678.1 22 685.6 33 655.4 23 686.8 36 696.7 58 668.9 47 679.1 39 666.5 35 653.7 38 673.1 43 663 41 650.2 42 654.6 41 650.9 43 640.6 43 639 35 624.4 27 627.9 38 626.3 39 603.9 30 619.1 42 599 35 588.9 40 594.3 37 574.5 41 568.1 45 588 47
-661614 COLUSA PIERCE JOINT UNIFIED 65.8239700374532 .264084507042254 3.87323943661972 58.8908450704225 6.55737704918032 10.9265151515152 46291.7868852459 4469.79753521127 19.5254833040422 37.9310344827586 0 0 639.172727272727 633.277030162413 623.559159859977 25.7491248541424 27.4095127610209 24.9306220095694 687.1 27 683.2 28 660 26 678.2 22 682.8 30 656.2 24 663.6 18 672.8 34 649 28 669.4 30 655.6 25 642.8 28 659 30 644.5 23 635.4 27 634.6 23 629.6 23 621.9 24 624.1 23 624.8 28 620 30 616.2 30 602.1 28 608.7 33 581.8 22 573.9 26 573.3 20 557.4 27 549.5 28 560.4 19
-661622 COLUSA WILLIAMS UNIFIED 78.5407725321888 1.28205128205128 0 78.4188034188034 20.8333333333333 11.4778846153846 49267.1922916667 3893.3372008547 21.1231101511879 19.2307692307692 0 0 623.801777777778 624.58059914408 615.708849557522 19.3126843657817 21.2339514978602 15.0103703703704 661.9 10 676.5 22 648.2 16 664.9 13 679 26 639.6 13 652.6 11 665 26 639.1 20 645.7 13 651.1 21 627.6 16 640.4 16 647.8 25 628.5 20 628.7 18 634.6 28 618 21 610.6 14 603.4 12 602.1 16 592.5 14 581.3 13 594.7 22 573.5 16 558.5 15 572.4 19 556.7 26 545.9 24 576.9 34
-761648 CONTRA COSTA ANTIOCH UNIFIED 30.0755277257763 3.62619624120835 10.5038625619739 20.9443099273608 8.66574965612105 13.6910780669145 62341.1939477304 4011.39040701026 23.8890485771774 23.8544474393531 0 72.2222222222222 654.988955223881 642.419637634059 642.558945199835 48.5542645241038 42.4466200844979 44.2719734660033 699.6 39 698.4 46 680.8 46 696.1 38 697.2 47 675.8 43 690.9 41 691.8 54 675.9 54 690.9 51 674.4 44 665.3 50 677.4 48 661.8 40 660 54 658.4 46 650.5 44 645.1 49 650.8 47 636.5 40 640.1 50 632.9 46 609.1 36 626.3 50 605.2 42 582.9 36 598.9 42 573.1 43 559.2 40 584.2 47
-761697 CONTRA COSTA JOHN SWETT UNIFIED 28.246013667426 6.89342403628118 19.8185941043084 16.7800453514739 12.7450980392157 15.9155462184874 59176.5294117647 4225.73832199546 22.1837944664032 18 0 0 655.849803664921 645.640405904059 641.369559668156 44.1640076579451 42.0817958179582 40.6603403141361 701.6 41 695.7 43 682.3 48 689.9 33 693.4 47 672.5 41 689.3 40 688 50 673.1 52 687.5 48 678.3 47 664.4 49 672.4 44 669.3 48 657.4 50 657.2 44 656.5 50 642.1 45 640.7 38 626.1 31 629 39 624.7 38 605.1 34 616.7 41 601.9 41 582.2 37 593.7 38 562 36 545.8 29 573.1 36
-761739 CONTRA COSTA MARTINEZ UNIFIED 22.3337515683814 2.52373234545034 3.31095160916879 14.0310257003936 10.3092783505155 16.1568584070796 59230.7216494845 4114.41768927993 21.7433155080214 34.4262295081967 0 0 666.986131386861 653.039726027397 651.011405568601 54.859443139886 49.3724722765819 53.342402123424 709.8 50 712.9 58 687.6 53 700.2 42 703.5 53 678.1 46 696.5 46 700.1 62 676.8 55 700.2 59 677.4 46 673.6 59 687.8 58 668.9 47 667.1 61 668.3 56 652.1 44 648 51 659 55 642 45 644.5 55 645 56 619 44 636.1 58 623.2 56 594.9 45 609.7 51 589.3 55 574 51 598.4 60
-761754 CONTRA COSTA MT. DIABLO UNIFIED 22.6246525611209 7.69788789375297 4.90220696967161 16.7768756452108 9.42158616577221 15.3236785904965 57128.5825879547 3928.69554420915 22.1416213544241 37.6383763837638 0 0 663.753803895455 655.29439179166 651.228181140823 57.5844026823413 56.8430443382232 53.913434326619 707 47 709 57 687.9 53 702 45 706.7 60 683.5 51 699.4 50 703.6 65 682.9 62 698.4 58 688.6 58 675.1 60 687.6 59 680 58 669.1 63 670.3 58 663.6 57 655.3 59 660.9 58 650.9 56 649.8 60 646.3 58 625.9 54 634.6 58 613.8 51 595.7 50 607.9 51 581.4 52 571.4 55 592.7 57
-761788 CONTRA COSTA PITTSBURG UNIFIED 51.7849321068769 4.59893048128342 27.7967914438503 35.1016042780749 30.0248138957816 15.9748903508772 58788.9305210918 4049.18085561497 22.8729963008631 85.1116625310174 0 8.33333333333333 638.057359342254 630.487298832439 628.793177419355 35.1459677419355 31.2234143262859 29.0448170240206 692.7 32 690.8 36 674.7 40 680.8 23 685 33 663.4 30 674.1 25 678.2 39 662.9 41 678.1 38 666.2 35 656.2 41 659.9 31 654.5 32 648.7 40 645.5 33 639.5 32 631.6 34 632.1 29 623.2 26 623.8 34 615.7 29 601 27 615.5 39 585.1 24 575.2 27 584.3 28 556.6 26 552.6 30 569 27
-761804 CONTRA COSTA SAN RAMON VALLEY UNIFIED 1.89532160557704 9.92522790125986 1.63371914370583 4.27634948274096 4.50346420323325 15.9236921529175 59976.9376443418 4035.18872272867 23.3468734613491 50.7450331125828 0 0 687.436196062002 681.264960300878 673.262666202576 75.288827010094 75.4876027301853 71.8017036726714 720.5 61 724.5 71 701.7 68 719.4 63 722.3 71 700.5 68 716.3 65 719.3 79 700.1 76 717.3 75 719.1 82 695.6 78 708 76 709.8 83 689.1 81 690.4 77 690.4 79 674.7 77 684.4 78 674.4 77 672.6 79 670.5 77 652.6 75 656.3 75 646.9 74 622.9 71 636.1 75 608.6 71 589.8 67 613.3 75
-761796 CONTRA COSTA WEST CONTRA COSTA UNIFIED 51.2384774565749 13.0202355783751 35.1011778918756 25.5270311084265 25.8268824771288 17.1897748592871 62664.0950035187 4347.93612201752 22.8705015585152 36.5 0 8.47457627118644 639.248799428299 632.602881497267 628.976394317857 36.1087329583373 34.3111275826925 31.5787994282992 690.4 30 694.8 39 674.4 39 682.4 25 688.6 36 663 30 677.9 28 679.4 40 663.4 41 674.5 34 665.7 34 652.4 37 658 29 654.6 32 644.3 35 650.5 37 646.9 39 636.4 39 637.6 34 629.3 32 627.6 37 617.2 30 602.6 28 613.3 37 595.4 32 582.9 34 590.8 33 566.8 34 555.8 33 576.2 34
-861820 DEL NORTE DEL NORTE COUNTY UNIFIED 42.5114329268293 6.25244236029699 .41031652989449 10.1797577178585 8.07692307692308 14.7094827586207 58233.8115384615 4733.28038296209 20.6736353077816 15.5038759689922 0 0 654.110813174002 643.545233380481 636.959429065744 41.8500576701269 41.4144271570014 42.1262022733897 699 39 700.6 46 673.5 38 691.8 33 695.3 44 667.2 34 685.2 35 687.1 48 666.6 44 690.5 50 672.9 41 661.1 46 675.6 45 665.7 43 655.1 47 656.8 44 650.1 42 640.2 43 647.2 44 634.3 37 632.2 42 632.4 44 610.5 35 619.1 42 609.2 44 591.2 42 598.5 41 572.4 39 562.4 39 579.5 38
-973783 EL DORADO BLACK OAK MINE UNIFIED 30.1696469509399 .797373358348968 .515947467166979 2.25140712945591 1.90476190476191 14.2323275862069 51822.3714285714 4030.97842401501 21.4729458917836 32.4561403508772 0 0 671.052793471438 662.392478421702 654.1465625 56.355 57.1011097410604 55.08223477715 705.8 46 707.6 55 681.9 47 697.9 40 697.6 47 670.9 38 698.2 47 700.9 63 676.7 55 701.4 61 687.5 57 679.5 65 683.2 53 672.5 50 663.4 58 670.9 59 675.1 67 653.5 57 667.6 64 661.2 65 654.8 65 652.4 63 631.3 55 643.1 64 629 60 609.6 59 620.7 61 593.5 58 574.4 52 591.6 52
-961903 EL DORADO LAKE TAHOE UNIFIED 45.4234388366125 1.50119413169567 .904128283862163 26.2708973046742 5.33807829181495 14.3570287539936 55740.1387900356 4323.75400887069 21.5345821325648 86.7219917012448 0 0 655.848036826428 645.356022041459 644.127473404255 49.6300531914894 44.7874573602729 43.96452748443 695.8 35 697.4 43 675.1 40 697.6 39 696.4 45 675.4 42 692.2 41 695.5 57 676.1 54 690.4 50 673.4 42 671.7 57 675.7 46 665.6 43 665.1 59 658.7 46 653.6 46 650.5 54 652.7 49 641.8 45 643.8 54 632.9 45 615 40 629.9 52 607.4 42 589.4 40 598.8 41 579 45 569.8 47 585.3 44
-1073965 FRESNO CENTRAL UNIFIED 49.2508395763369 10.1529902642559 7.8741842302343 42.3237402375094 16.5394402035623 10.0809012875536 54568.7404580153 4006.11832673585 22.5917372337696 37.6666666666667 0 76.9230769230769 645.428 641.522896312638 634.864938828075 40.9228911783645 41.6585250551529 34.9438367346939 683.8 24 688.6 35 665.9 31 680.9 24 683.7 33 654.2 23 673.7 26 680 41 658 37 681.1 41 669.9 39 660.8 46 665.5 37 663.1 41 653.5 47 652.1 39 651.7 45 642.2 46 638.1 35 632.4 37 629.1 39 624.4 39 614.8 44 620.7 46 597.8 38 592.8 47 594.7 39 571.8 45 566.7 51 586.8 52
-1062117 FRESNO CLOVIS UNIFIED 23.433371722783 11.750645994832 2.87144702842377 19.031007751938 15.9441587068332 11.8789028213166 53158.0705363703 4242.7020994832 22.7051671732523 40.5063291139241 0 0 670.829070946691 669.983691062632 660.175030880537 62.7089730015881 64.6854327938072 55.8729220865118 710.2 50 711.5 59 690.5 56 703.4 45 704.1 53 681 48 699.3 49 701.6 63 682.2 60 703.5 63 695.2 64 685 69 691.8 62 686.1 64 676 70 673.7 61 683.2 73 662.4 66 661.2 57 660.4 64 652.9 63 644.3 55 638.2 62 639.1 61 624.2 57 622 71 623.1 64 595.7 60 597.9 74 609.4 70
-1062125 FRESNO COALINGA/HURON JOINT UNIFIED 57.9224030037547 .87173100871731 .647571606475716 68.7422166874222 18.9349112426035 11.1978723404255 61085.4437869823 4258.42515566625 24.4786015672092 14.8351648351648 0 0 634.785217079297 631.830958230958 622.751865266208 28.8927924664976 32.6072306072306 26.6347326874776 687.3 27 689.2 35 666.3 31 673 18 682.7 32 650 20 670 23 673.3 34 653.7 33 673.4 34 661 31 649.2 34 659.9 31 651.6 30 640.7 32 641.8 29 636.7 30 627.2 30 631 29 626.8 30 620.1 30 617.5 32 610.5 38 610.1 35 575.7 20 579.1 33 579 24 550.5 25 551.9 33 562 23
-1073809 FRESNO FIREBAUGH-LAS DELTAS UNIFIED 87.8371750858264 .405405405405405 1.21621621621622 90.4504504504505 32.4074074074074 10.3756097560976 51400.5555555556 4317.72837837838 20.4905660377359 30.8510638297872 0 0 629.51695945946 626.268102372035 615.682792207792 21.3207792207792 24.5274656679151 19.7959459459459 672.2 16 674.1 20 651.7 19 667 14 676.9 24 645.1 16 662.5 17 661.3 23 647.8 27 660.3 22 649.8 21 634.4 21 648.8 21 644.5 23 636.4 28 627.5 18 630.1 24 619.2 22 619.9 20 614.3 19 606.9 19 616.1 30 613.7 39 600.9 27 581 21 570.9 24 571 18 544.5 18 550.4 29 555.4 15
-1062158 FRESNO FOWLER UNIFIED 60.5990783410138 7.19661335841957 .846660395108184 72.3424270931326 24.7619047619048 11.8363247863248 51537.3428571429 3807.78974600188 21.0700389105058 38.7931034482759 0 0 635.323164218959 638.899266177452 627.946421404682 32.0481605351171 36.1320880587058 25.084779706275 690 30 694.6 41 673 38 679.1 22 692.2 40 658.5 26 670.9 23 683 44 660.7 39 673.1 33 669.2 38 650.8 35 655.5 27 659.5 37 643.9 35 641.9 29 647.4 40 635.7 38 622 21 624.6 28 622.9 33 611.6 26 607.5 33 606.9 32 577.2 19 576.6 29 575.6 21 549.8 21 556 33 567.3 25
-1062166 FRESNO FRESNO UNIFIED 62.0197740112994 19.6517667528081 11.3156615408234 45.2396182483433 23.4048481471162 14.6799561082663 61095.3050989134 4685.64291379884 22.2597299444003 27.4755927475593 0 31.1111111111111 632.640383670421 630.72546997266 623.040624146675 30.5068851180027 32.4933723013105 26.0484501837766 692 31 696.6 42 673.8 39 678.8 22 688.7 36 658.9 26 672.3 24 677.4 38 658.2 36 673.5 33 666 34 651.1 36 656.7 28 657 34 643.9 35 643.9 31 645.8 38 631.6 34 626.4 25 623.9 28 618.6 29 607.2 23 597.4 25 602.9 29 579.6 21 574.3 28 577.9 23 551.9 25 549.2 29 564.5 24
-1075234 FRESNO GOLDEN PLAINS UNIFIED 86.545988258317 1.71370967741935 .201612903225806 92.2379032258065 26.0869565217391 14.5806603773585 62758.2608695652 5242.80040322581 21.7211328976035 19.1780821917808 0 0 617.92496382055 623.329073033708 614.588491779843 21.0793423874196 22.8026685393258 13.6685962373372 665.8 12 677.7 23 655.7 22 657.7 9 674.1 22 640.4 13 655.1 12 664.7 26 646.3 26 661.1 23 660.5 30 641.8 27 635.3 13 646.6 24 632.4 24 623 15 628.4 23 620.5 23 610.4 14 611.4 17 610.3 22 591.2 13 589.4 18 597 24 565.3 12 566.6 21 569.3 17 535.7 13 544.2 23 552.1 13
-1073999 FRESNO KERMAN UNIFIED 69.4980694980695 5.35002845759818 .313033579965851 70.4325554923165 22.6415094339623 12.3231382978723 54546.0125786164 4283.10130904952 22.1542383683875 40 0 60 639.117610619469 631.208603832616 625.959092783505 27.9550515463918 27.4974579585452 24.4261061946903 680.9 21 682.1 27 662.2 28 668.7 15 676.4 24 649.9 19 668.4 21 670.5 32 654.5 33 673.2 33 663.2 32 645.7 30 661.4 33 659.3 36 646.3 38 641.3 28 641.6 34 627.5 30 630.1 28 619.5 23 620.2 30 607 22 592.9 21 599 25 574.7 17 571.6 25 577 22 552.3 23 539.2 20 563.8 22
-1062265 FRESNO KINGS CANYON JOINT UNIFIED 63.1713244228433 1.40625 .600961538461539 71.3581730769231 16.7919799498747 14.4614893617021 55184.7769423559 4478.65733173077 22.2565194252262 16.7865707434053 0 6.25 638.653324854651 636.555282685512 628.19417703263 34.4696232197584 37.1314487632509 30.5952034883721 692.9 32 695.3 40 672.6 37 684.6 27 691.6 40 665.6 33 679.7 30 686.8 47 666.2 44 670.6 31 660.9 30 647.2 32 661.2 32 655.8 33 647.7 39 646.9 34 648.6 41 636.3 39 633.2 30 633.4 36 625.3 35 615 29 609.3 35 609 33 590.3 28 585.9 37 586.3 30 563 32 558.1 36 568 26
-1062240 FRESNO KINGSBURG UNION 35.6033874382498 2.51875669882101 .37513397642015 67.7384780278671 7.91366906474819 15.3451612903226 54702.2225899281 6836.69390675241 21.1443530291698 41.5789473684211 71.4285714285714 0 659.55601965602 655.824398460058 646.9376953125 50.0771484375 50.7348411934552 45.3916461916462 684.7 25 690.8 36 667.3 32 685.3 27 692.4 41 660.8 28 682.4 32 689 50 667.3 45 696 55 677.3 46 669.6 55 683.5 54 672.6 50 662.9 57 663.8 51 660.4 53 651.2 54 654.3 51 643.1 46 641.3 51 637.9 50 630.8 56 634.8 57 614 48 613.3 63 611.8 53 597.7 62 589.2 66 606.2 68
-1062281 FRESNO LATON JOINT UNIFIED 72.9166666666667 1.23873873873874 .563063063063063 70.045045045045 3.92156862745098 11.5576271186441 39728.3529411765 3899.13175675676 18.2365145228216 13.0434782608696 0 0 635.926148409894 633.431208053691 626.668181818182 29.2020202020202 27.7852348993289 22.6678445229682 677.3 19 683.7 29 659 25 673.8 18 674.7 22 655 23 662.3 17 668 29 653.2 31 663.5 24 654 24 644.3 29 656.1 27 652.4 30 646.5 38 640.5 28 642.2 35 631.5 34 628.4 26 630.6 33 620.1 30 603.8 20 595.4 22 593.5 21 581.9 22 570.6 24 580.3 25 556.2 26 553.8 31 574.4 33
-1075127 FRESNO MENDOTA UNIFIED 87.7772534214252 .533462657613967 .5819592628516 97.7691561590689 40 12.2075268817204 60303.175 3933.77740058196 25.6375 47.1698113207547 0 0 622.616214335421 621.331699346405 613.684299191375 18.4973045822102 18.9797385620915 13.7035490605428 676.5 18 671.5 18 653.9 20 669 15 680.7 28 648 18 656.4 13 666.4 27 646.8 26 649.9 15 650.4 21 631.7 19 635.5 13 637.7 17 624.5 17 625.1 16 621.4 18 616.4 20 608.7 13 604.1 13 604.2 18 591.1 13 582.4 14 589.8 19 556.6 9 553.9 13 559.5 11 532.3 11 539 19 554.7 15
-1062364 FRESNO PARLIER UNIFIED 91.604841858649 .214362272240086 .107181136120043 98.8210075026795 62.1848739495798 11.9275362318841 55527.2941176471 4223.12647374062 21.6865417376491 13.3858267716535 0 40 616.066551893753 620.616848599905 610.251985922574 19.1895424836601 22.1860465116279 13.9183472700443 672.7 16 681.9 26 651.7 19 660.9 11 675.8 23 642.5 14 653.9 12 665.1 26 643.9 24 652.1 17 651.2 22 636.9 23 637.6 14 642 21 626.7 19 630.3 20 637.5 30 624.3 27 611 14 612.6 18 606.3 19 588.5 12 589 18 591.7 20 562.6 11 560.4 16 561.7 12 535.6 13 545.9 24 554 14
-1075408 FRESNO RIVERDALE JOINT UNIFIED 64.8507462686567 .66711140760507 3.06871247498332 64.5096731154103 14.9253731343284 11.3691780821918 47732.5671641791 3511.89993328886 21.4887218045113 10.6666666666667 0 0 644.658088235294 648.756526207606 634.010914760915 35.5135135135135 41.5817060637205 29.9044117647059 684 25 689.7 35 664.1 29 675.3 19 679.3 27 659.5 27 672.4 24 682.7 44 664.4 42 677.7 37 673.2 42 650.2 34 670.9 41 673.7 52 651.6 44 639.5 27 642.1 34 622.4 25 628.7 26 628.3 31 615.2 26 613 27 610.8 35 603.4 29 600.8 36 612.2 62 608.1 50 577.5 44 582.1 59 590.2 50
-1062414 FRESNO SANGER UNIFIED 57.0024891916678 4.32291666666667 .5859375 70.6640625 23.4806629834254 14.0044289044289 52155.2569060773 4382.06119791667 21.7115330121848 23.0232558139535 0 0 637.416965285554 632.764367398802 627.134107534748 31.840160936357 30.8818297331639 26.3355729749907 684.5 24 688.6 34 664.3 29 677.5 21 688.4 36 655.2 23 668.7 21 676.6 37 655.4 34 675.1 35 662.4 31 654.5 39 659.7 30 653.5 31 645.4 37 646.6 33 642.3 35 637.1 39 631.3 28 625 28 625.4 35 609.5 24 596.3 23 608.1 33 584.5 23 575.5 28 580.4 25 553.5 24 548.4 27 566.1 24
-1062430 FRESNO SELMA UNIFIED 69.6452036793693 3.97230320699708 1.02040816326531 76.7128279883382 27.6 13.0118794326241 53531.636 4180.03662536443 22.5010266940452 14.6919431279621 0 0 642.379013030219 638.60592632141 633.074566630553 38.6977248104009 38.217031500267 31.5431106182423 687.3 27 691.2 36 671.4 36 677.8 21 689.4 37 655.7 24 674.4 25 680.4 41 660.7 39 683.9 43 663.5 32 662.4 47 667.4 37 663.1 41 653.3 46 647.6 34 646.6 39 637.3 40 636.9 33 634.5 37 633 43 622.5 35 616.3 41 622.6 45 591.5 29 590.1 41 592.6 35 564 32 558.3 35 574.1 32
-1075275 FRESNO SIERRA UNIFIED 21.604680317593 .540540540540541 .291060291060291 7.48440748440749 1.52671755725191 17.1124161073826 62522.8244274809 5879.9659043659 19.4851166532582 26.3736263736264 0 0 680.277309941521 669.70080552359 658.152347417841 51.9900234741784 53.2784810126582 53.2520467836257 711.1 51 707.9 55 683.2 49 701.1 43 698.3 48 673 40 700.3 50 692.4 54 673.5 52 702.6 62 689.3 59 677.1 63 691.9 62 677.3 56 666.5 61 669.9 57 666.6 59 650.9 55 661.6 57 653.6 57 644.7 55 646.7 58 620.3 45 631 54 627.6 60 606.6 57 615.6 57 579.7 46 566.6 44 586.4 46
-1175481 GLENN ORLAND JOINT UNIFIED 44.9746621621622 1.34841235319704 .826446280991736 33.1883427577208 5.93220338983051 16.2532846715328 55653.8050847458 4602.90343627664 20.8553791887125 49.1935483870968 0 0 653.154290822408 643.173529411765 642.387649880096 45.0239808153477 39.0258823529412 39.0673420738975 703.1 43 699.9 47 688 54 687.7 29 690.1 38 669.3 36 687.7 37 687.2 49 673.3 51 682.9 42 671.7 41 666.3 52 667.7 38 654.9 32 657 50 651.7 39 645.4 38 646.8 50 639.5 36 625 28 623.7 34 633.9 46 611.1 36 623.7 46 605.6 41 590.4 41 594 37 572.7 40 560.9 38 580.8 40
-1162661 GLENN WILLOWS UNIFIED 53.125 21.7522658610272 .906344410876133 20.7452165156093 4.65116279069767 15.7360824742268 60020.6627906977 4325.15357502518 24.4811320754717 47.1153846153846 0 0 652.248719723183 650.23700947226 643.737198067633 45.9889579020014 45.4945872801083 37.9148788927336 691.8 31 693.1 39 677.2 42 690.2 32 692.1 41 674.5 42 679.5 30 683.6 45 669.9 48 689.5 49 685.6 54 667.6 53 664.5 35 666.6 44 654 46 654.8 42 651.3 44 643.3 47 640.5 37 637.8 40 636.3 46 630.1 42 620.4 45 621 44 601.9 37 602 53 601.8 44 578.9 45 572.6 50 587.4 47
-1275374 HUMBOLDT FERNDALE UNIFIED 11.7161716171617 .5 0 4.66666666666667 0 15.5121951219512 54645.6666666667 4893.85666666667 20.3215434083601 34.1463414634146 0 0 671.044444444444 664.697085201794 654.729306487696 57.5212527964206 59.7757847533632 55.0657596371882 718.1 59 723.3 72 689.6 56 712.5 55 711.6 63 692.2 60 698.7 48 703.4 66 668.9 47 698.4 58 693 62 676.2 62 694 63 695.4 73 672.1 67 668.4 56 671.7 65 651 55 661.4 58 656.1 60 655.5 65 640.2 52 611.8 37 632.9 55 620 53 606.1 55 609.5 50 576.4 43 565.7 42 591.7 53
-1262901 HUMBOLDT KLAMATH-TRINITY JOINT UNIFIED 76.3212079615649 0 .65597667638484 2.84256559766764 30 14.7855421686747 65665.4714285714 5770.56559766764 19.6496350364964 25.9259259259259 0 0 647.671180124224 637.66 628.449749373434 33.7769423558897 36.3312883435583 34.6608695652174 684.3 24 691.1 37 660.4 26 683.6 26 689.4 37 656.8 24 674.3 25 681.1 42 655.3 34 683.1 42 678.6 47 661.6 47 676.2 46 670.1 47 658.5 52 650 37 646.1 38 629.6 32 637.3 34 628.7 31 617.1 28 631.9 44 603.1 29 614.1 38 599.6 36 583.4 35 590.9 34 557.8 27 544.6 23 561.2 20
-1263040 HUMBOLDT SOUTHERN HUMBOLDT JOINT UNIFIE 33.9167169583585 .714749837556855 1.16959064327485 2.98895386614685 0 15.7926136363636 56055.9350649351 4427.87199480182 21.3154362416107 44.7058823529412 0 0 666.911310782241 645.515704154002 646.715384615385 48.0945945945946 39.0536980749747 49.9746300211417 715.8 57 707 55 692.5 59 709.5 51 691.3 40 681.4 49 693.9 43 688.8 50 668.7 47 693.2 53 660.6 30 656.8 41 673.1 43 657.6 35 657.8 50 672.8 60 656.2 49 653.5 58 652.4 48 632 34 634 44 646.3 57 616.6 41 631.5 53 614.1 48 576.9 29 599.2 42 578.7 45 554.2 32 582.4 41
-1363073 IMPERIAL BRAWLEY UNION 54.2566709021601 .518806744487678 .277932184546971 80.2112284602557 35.042735042735 14.9565055762082 66530.2478632479 4304.7152121549 23.78075097 33.89830508 0 0 640.308263570078 636.234013245033 632.318937957193 35.1953400162558 32.2733774834437 28.2425060761545 688 28 684.8 30 668.7 33 682.4 25 684 31 661.9 29 674.2 25 676.8 37 658.1 36 671.3 32 660.1 29 651.3 36 658.3 29 656.3 34 646.7 38 647.1 34 648.9 41 638.9 41 632.7 30 628 31 627.8 38 611.5 26 602.9 28 618.7 42 585.2 24 575.4 27 585.1 28 561 30 556.7 34 574.1 33
-1363099 IMPERIAL CALEXICO UNIFIED 43.954818017013 1.43290162579223 .0551116009920088 97.5199779553596 70.0996677740864 14.5877492877493 67370.0564784053 4266.61848994213 23.5719063545151 15.8256880733945 0 0 637.58567839196 641.629704962003 627.686793737236 24.8838211935557 28.0435851586947 18.5349474645957 674.8 17 684.6 30 657 23 666.5 13 681.6 29 648 18 665.1 18 675.4 36 653.7 32 662.4 24 658.6 28 643.7 29 645.1 19 647.2 25 635.2 26 632.7 21 635.1 28 625.9 28 621.3 21 622.2 25 613.4 25 598.1 17 598.7 25 598 24 571.7 16 572.5 25 573.9 20 549.8 21 546.7 25 561.1 20
-1363107 IMPERIAL CALIPATRIA UNIFIED 74.3016759776536 .421940928270042 5.55555555555556 71.5893108298172 40.5797101449275 12.2170886075949 53519.7391304348 4518.24331926864 20.625 29.4117647058824 0 0 636.260303030303 641.081281281281 629.831552419355 32.9153225806452 35.8938938938939 24.4060606060606 680.7 21 679.3 24 661.7 27 666.9 14 678.7 26 648.1 18 665.8 19 672.9 34 656.8 35 676.1 36 669.9 39 655.9 41 658 29 657.7 34 651.2 43 635.4 24 642.6 35 630.5 33 623.4 22 627.8 30 624.6 35 605.7 22 613.3 38 611.1 35 593.5 30 605.5 56 592.3 35 554.7 25 563.8 41 565.6 24
-1363123 IMPERIAL EL CENTRO UNION 62.1000820344545 1.55424308361828 2.94270023831727 82.6442855662626 33.4128878281623 15.2063025210084 66125.0906921241 4453.16423168584 23.3213859020311 31.3028764805415 0 0 646.318279404999 642.181461988304 635.553651897777 35.138363828822 34.3980994152047 28.9796043551603 687.7 27 686.7 32 668.1 33 680.1 23 682.8 30 656.5 24 675 26 676.6 37 658.3 36 671.6 32 660.7 30 651.1 36 656.6 28 654.7 32 645.5 37 649.6 36 653.1 45 639.8 42 629 26 627.6 30 623.4 33 617 31 609.2 34 618.3 41 591.7 29 583.8 35 589.7 33 569 36 562.3 39 580.7 39
-1363149 IMPERIAL HOLTVILLE UNIFIED 63.9180409795103 .399002493765586 .149625935162095 70.4738154613466 26.8817204301075 11.6070093457944 56622.5698924731 4245.81097256858 21.6851441241685 32.1428571428571 0 0 646.915160142349 641.476949860724 635.499860432659 37.3028611304955 36.0898328690808 32.202846975089 694.8 34 691.8 38 671.9 37 684.5 27 687.4 35 657.8 25 678.1 29 681 42 661.6 40 665.8 27 652.6 23 645.8 30 650.7 23 644.3 22 639.3 30 653.6 41 644.9 37 640.5 43 640.6 37 634.2 37 634.5 44 621.9 35 604.3 30 621.7 45 591.5 29 590.9 42 594.6 37 575.8 43 580.2 57 584.4 44
-1363164 IMPERIAL IMPERIAL UNIFIED 39.9445214979196 .749228735125606 2.68840899074482 60.7756721022477 24.5283018867924 9.22478260869565 51167.0283018868 3708.85940943147 20.8568738229755 34.9206349206349 0 0 648.104784978801 648.614979277679 637.713325401547 42.3599048185604 46.6820603907638 36.3301029678982 697 36 695.4 41 671.5 36 686.6 28 690.7 39 661.4 29 681.9 32 685.4 47 667.4 46 677.5 37 673 42 656.5 41 661.1 32 664.1 41 645.8 37 661.1 48 662.6 55 650 53 641.7 38 644.6 48 638.6 49 628.3 41 631.8 57 628.9 51 597.2 33 604.2 55 597 40 571 39 564.1 41 581.2 41
-1363214 IMPERIAL SAN PASQUAL VALLEY UNIFIED 76.8278965129359 0 3.00578034682081 31.0982658959538 20.4081632653061 15.3185185185185 60141.0816326531 5355.16069364162 18.9917695473251 19.3548387096774 0 0 629.748180242634 614.521440536013 615.989964788732 20.7411971830986 16.5175879396985 20.155979202773 681.4 22 672 18 660.3 25 669.6 15 673.2 21 650.2 19 660.3 15 664.1 25 646.1 25 666.9 28 648.2 19 638.2 24 662.7 33 644.4 23 637.3 28 623.7 15 607.4 10 608.4 15 615.7 17 597.9 9 603.2 17 605.6 22 576.9 11 591.5 20 571.5 15 557.5 15 568.9 17 553.9 25 530.3 14 559.7 19
-1463255 INYO BISHOP UNION 25.588491717524 .762388818297332 .508259212198221 11.0122829309615 5.45454545454545 16.5099173553719 59805.5454545455 4349.22151630665 23.4503510531595 40.7185628742515 0 0 665.129026548673 659.893040501997 647.360979827089 49.4184438040346 54.1928123217342 48.5286135693215 707.3 47 701.4 48 687.5 53 698.4 40 701 48 683.1 51 693.4 43 691.8 53 676.7 55 698 57 698.7 67 670.8 56 681 51 692 69 659.3 52 661.5 49 676.1 67 643.4 46 657.3 54 651.5 55 643.5 54 635.1 47 609.2 34 622.7 45 615 49 599.1 49 599.6 42 584 50 573.6 51 580.5 39
-1563404 KERN DELANO UNION 68.6434302908726 .780814277746793 1.72894590072504 76.8878973786949 31.8181818181818 12.2116310160428 58861.6878787879 3714.92013385388 25.9909638554217 14.0350877192982 0 0 628.471576763485 630.4126899577 619.339649525057 22.7148706190632 27.0755130816231 16.9576417704011 677.2 19 685.1 30 660.5 26 666.8 14 680.2 28 644.8 15 661.6 16 672.3 33 649.1 28 655.4 19 658.3 27 638 24 643 18 650.9 28 631.8 23 631.7 21 639.6 32 625.9 28 615.6 17 619.6 24 613.2 24 593.1 14 590.2 19 594.6 22 565.4 13 565.1 20 570.9 18 549.1 21 550.2 29 560 19
-1575168 KERN EL TEJON UNIFIED 37.8320172290022 .3584229390681 .860215053763441 13.6917562724014 8.33333333333334 10.3814285714286 55942.0666666667 4098.99426523297 24.9217391304348 0 0 0 656.297061704212 648.630488974113 642.803458213257 46.7867435158501 45.2895493767977 42.8873653281097 707.9 47 705.7 53 686 52 698.9 40 700.2 49 679.6 47 694.8 44 697.2 59 675.1 54 693.1 53 684.1 53 661.9 47 676.8 47 671.8 50 658.3 51 650.5 37 646.7 39 638.7 41 645.3 41 637.5 40 636.6 46 629.3 41 604.9 30 622.5 45 602.6 38 584.6 36 592.8 36 575.2 43 569.9 47 589.5 50
-1573908 KERN MCFARLAND UNIFIED 81.9645732689211 .311526479750779 .233644859813084 92.0171339563863 31.8965517241379 13.1324626865672 55369.8620689655 4428.04595015576 22.5085616438356 23.6842105263158 0 0 624.363516609393 624.61632196758 615.951785714286 21.5478110599078 22.5846841811068 16.9203894616266 669 13 672.7 18 651.7 19 669.7 15 674.8 22 645.5 16 663.4 17 668.3 29 651 30 653.2 18 651.9 22 634.3 21 638 15 642.5 21 625.4 18 632.8 21 631 25 624.7 27 615.8 17 616.2 20 608.2 20 603.5 20 598.5 25 601.3 27 568.4 14 565.9 20 571.7 19 543.9 18 544.5 23 558.9 18
-1563677 KERN MOJAVE UNIFIED 40.5990016638935 1.1070110701107 14.8708487084871 24.5387453874539 7.62711864406779 15.2442748091603 63042.2033898305 4572.61512915129 24.419983065199 32.484076433121 0 37.5 640.803693644758 630.078511087645 628.075648491265 34.137638962414 30.8104540654699 31.2036936447583 687.6 27 688.2 33 669.8 35 685.8 28 687.2 35 660 27 683 33 684.2 45 664.8 43 676.1 36 660.7 30 649.2 34 667.4 37 654.7 32 650.2 42 649.8 37 644.8 37 635.4 38 635.3 32 624.6 28 623.3 33 618.3 32 602.3 28 612.7 36 587.4 26 576.4 28 586.3 30 552.6 23 535.8 17 567.4 25
-1563685 KERN MUROC JOINT UNIFIED 31.8604651162791 2.01472297559086 12.4370399070128 7.47772181325068 9.84848484848484 15.3266666666667 63498 5767.59356838435 20.3072196620584 32.8 0 0 663.702340772999 654.100107469103 645.626877682404 53.1512875536481 56.0972595378829 54.5666848121938 711.2 51 703.1 50 686.6 52 699.3 41 696.1 45 667.9 35 700.7 50 694.8 56 672.3 50 693.2 53 680 49 658.7 43 685.7 56 674.6 52 661 54 673.7 61 670.5 63 656.7 61 658.1 54 651 55 647.2 57 648.5 59 630.2 55 636.4 58 624.5 57 613.3 63 616.1 57 593.6 58 588.4 65 595.2 57
-1573742 KERN SIERRA SANDS UNIFIED 32.5987279988168 2.2334864565183 4.79961983209251 10.898146681451 5.62913907284768 14.3510174418605 62453.1456953642 4537.56914303818 22.0415688903788 38.6627906976744 0 0 662.506528451698 650.898504875406 647.242869565218 51.0482608695652 47.435752979415 49.0284516982797 704.5 44 708.1 54 685.5 51 701 43 699.9 49 680.9 48 695 44 694.2 56 675.8 54 692.7 52 678.2 47 661.1 46 683.2 54 668.7 46 665 58 661.3 48 651 43 644.1 47 656.3 53 638.7 41 641.8 52 639.9 51 618.4 43 628.6 51 616.6 50 599.3 50 608.6 50 585.1 51 569.4 46 593 54
-1563776 KERN SOUTHERN KERN UNIFIED 49.3510324483776 1.697438951757 8.21917808219178 31.9833234067898 9.45945945945947 13.0842592592593 58159.2027027027 4284.44460988684 23.4270047978067 15.4929577464789 0 33.3333333333333 648.160764044944 638.358244680851 633.247085002225 39.1441922563418 38.2047872340426 38.645393258427 698.4 38 690.8 36 679.3 44 693.3 35 690.6 39 668.8 36 681.1 31 682.2 43 664.3 42 684 44 670.8 39 653.6 38 673 43 661.5 39 652.7 45 662 49 656.4 49 644.3 47 645.3 41 633.4 36 630.7 41 621.8 35 605 30 615.9 39 596.9 33 583.4 35 588.3 32 569.6 37 560.1 37 572.8 31
-1563800 KERN TAFT UNION 51.4623726585606 .361247947454844 .755336617405583 17.7668308702791 2.73972602739725 14.4369696969697 62633.095890411 5763.70114942529 21.0565780504431 17.7914110429448 0 0 644.816746411483 636.865050784857 627.733364355514 32.1526291298278 34.4307479224377 32.4698564593301 689.6 29 688.6 34 664.6 30 684.7 27 686.6 34 659 26 678.6 29 680.4 41 655.6 34 678.4 38 667.5 36 653 38 667 37 657.6 35 644.8 36 647.2 34 641.7 34 629.8 32 637.3 34 623.8 27 623.7 34 620.5 34 605.5 31 607.7 32 595.2 32 587 38 591.3 34 563.9 32 557 34 569.8 28
-1563826 KERN TEHACHAPI UNIFIED 24.9950445986125 .42042042042042 2.72272272272272 17.3973973973974 4.52488687782805 14.79 60455.0904977376 4308.12812812813 22.8716528162512 29.7297297297297 0 0 664.144418872267 649.835591306802 645.632324660634 50.2760180995475 47.4959074230878 51.5356731875719 704.6 44 696.8 43 679.8 45 702.7 44 695.4 44 675.3 42 692.5 42 689.5 51 671.1 49 700.8 60 683.8 52 671.2 57 691 61 676.9 55 666.3 61 671.3 59 669 61 653.1 57 659.5 56 646.1 49 643.4 54 639.3 51 613.2 38 626.2 49 612.9 47 592.7 43 602.5 44 584 50 562.5 40 586 45
-1563842 KERN WASCO UNION 65.8902691511387 .471815247082195 4.39533151229203 78.9173081698535 21.1009174311927 14.93269231 61803.9024390244 4139.93667742737 24.5117428924598 14.0151515151515 0 0 633.587433561124 631.382788990826 624.948731343284 27.0694029850746 25.8278899082569 20.7463933181473 679.6 21 680.3 25 666.2 31 673.9 18 679.5 27 658.3 26 663.8 18 672.7 33 657.2 35 667.7 28 657.5 27 642.2 27 655.2 27 656.4 34 641.3 33 637 25 635.6 29 631.3 33 621.8 21 617.8 22 616.3 27 602 19 590.4 19 601.3 27 575.4 18 570.1 23 571.3 18 540.1 15 539.3 19 553 14
-1663891 KINGS CORCORAN JOINT UNIFIED 64.279183175861 .463821892393321 4.05071119356834 79.3753865182437 17.3611111111111 15.3154545454545 66404.1944444444 4605.86147186147 22.6763485477178 15.5844155844156 0 0 638.988273615635 633.939674152356 626.044679891795 29.0036068530207 29.4297666226332 25.7328990228013 678.1 19 683 28 663.7 29 671.3 16 681.1 28 651.4 20 666.9 20 674.1 35 654.7 33 672.1 32 662.2 31 651.2 36 660.4 31 652.7 30 639.9 31 646.7 34 649.6 42 634 36 628.9 26 616.1 20 614 25 607.8 23 595 22 604.6 30 592.1 30 580.1 31 584.4 28 561.2 30 552.5 30 567.8 26
-1673932 KINGS REEF-SUNSET UNIFIED 86.4936207655081 0 .734094616639478 89.9673735725938 15.5963302752294 11.0606557377049 57641.5688073395 4543.49225122349 21.7527675276753 26.1904761904762 0 0 628.006722054381 614.202327044025 615.965977175464 19.9144079885877 16.6194968553459 16.5672205438066 671.1 15 672.3 19 652.6 19 661.4 11 669.5 18 643.8 15 659.7 15 663.4 24 644.7 24 659.5 22 650.5 21 637.1 23 645.6 19 637.8 17 634.2 25 626.4 17 617.3 15 615.5 19 619 19 607 14 606.4 19 597 16 584.5 15 593.9 21 559.1 10 551.5 12 561.8 13 547.8 20 528.6 13 558.6 18
-1764014 LAKE KELSEYVILLE UNIFIED 45.5701953657428 .954198473282443 1.33587786259542 22.0896946564885 7.20720720720721 14.7578125 54040.6036036036 4832.31965648855 20.0833333333333 50.9433962264151 0 0 661.984046164291 654.591859695566 646.073990734613 48.5221707478491 49.3653209794838 46.0855397148676 701.9 41 696.4 42 679.7 45 694.1 36 697.2 46 674.5 42 692 41 689.5 51 673.1 51 696.1 55 682.8 52 675.9 60 673.1 43 662.8 40 655.7 48 668.8 56 667.2 59 655.9 60 651.8 48 648 51 636.7 47 642.5 53 626.2 51 627.2 50 605.6 40 597.3 48 594.3 37 583.2 49 575.4 53 584.8 45
-1764022 LAKE KONOCTI UNIFIED 73.6089996959562 .829610721123165 5.96681557115507 9.60433950223357 6.32911392405063 13.7825 54439.9493670886 4354.3876834716 20.6129032258065 10.6060606060606 0 100 638.266855791962 624.112023328847 621.180950205573 28.9310187300137 28.0960071781068 31.0657210401891 696.7 36 691.8 39 673 38 687.6 30 684.4 34 662.3 30 678.4 30 677.7 39 657.4 37 674.2 34 660.2 30 644.9 30 655.3 28 647.7 26 633.3 25 649.5 37 641.5 35 625.4 28 635.7 33 615.7 21 617.2 28 617.9 32 591.2 21 604.2 30 585.7 27 563.7 21 578.6 24 552.7 27 541.7 24 563.5 25
-1764030 LAKE LAKEPORT UNIFIED 46.2952326249282 .659703133589885 1.86915887850467 15.6679494227598 3.44827586206897 15.1313131313131 58962.1379310345 4361.36118746564 21.4170506912442 28.4210526315789 0 0 658.686214953271 647.881014604151 644.126870229008 48.1656488549618 45.1775557263643 45.417445482866 707.7 47 699.9 47 683.6 49 694.7 36 697 46 668.8 36 703 52 699.2 61 680.4 58 694.9 54 691.5 60 669.6 55 683.4 52 676.7 54 666.4 59 662.4 49 656.7 48 647.5 50 647 42 632.2 34 636.4 47 626.6 38 609.2 34 624.3 46 611.3 44 591.8 41 603.4 44 574.7 40 553.3 30 580.4 39
-1764055 LAKE MIDDLETOWN UNIFIED 26.7957526545909 .723763570566948 .361881785283474 8.68516284680338 1.20481927710844 11.2951612903226 50096.4096385542 3932.38962605549 19.1504854368932 40.6976744186047 0 0 663.322495755518 657.100756938604 648.737091222031 52.0542168674699 52.7628259041211 48.4261460101868 701.7 41 705.9 53 681.2 47 695.3 37 698.3 47 670.4 37 693.1 42 698.8 61 672.8 50 696.2 55 692.1 61 674.5 60 679.8 50 669.1 47 663.3 57 667.8 55 670.5 62 655.6 60 648.6 45 642.9 46 639.5 50 643.8 55 621 45 634.7 57 618.4 52 599.4 50 606.5 48 586.1 52 580.5 58 594.3 56
-1764063 LAKE UPPER LAKE UNION 52.9170931422723 1.7329255861366 2.85423037716616 8.25688073394496 6.25 14.9870689655172 59995.3958333333 5022.53312945974 21.8995633187773 37.7049180327869 0 0 656.359604519774 651.16495132128 638.096332863188 37.3497884344147 41.8817802503477 37.9901129943503 705.2 45 696.9 44 684.8 50 698.5 40 696 44 673.7 41 682.6 33 683.8 45 665 43 689.6 49 671.7 40 656.7 41 660.3 31 649.2 27 636.2 27 648 35 651.7 42 632.1 34 646.9 43 643 46 629.4 39 620.2 33 609 34 612 36 608.1 43 602.7 53 586.7 30 559.6 29 561.6 39 568.6 27
-1864204 LASSEN WESTWOOD UNIFIED 41.970802919708 0 .571428571428571 9.14285714285714 3.03030303030303 17.9042857142857 55176.8484848485 5259.9580952381 18.9655172413793 18.1818181818182 0 0 652.683421052632 641.202067183463 631.90182767624 34.4229765013055 36.3927648578811 38.3631578947368 701.6 41 695.7 41 675.2 40 690.8 32 692.5 41 664.6 31 676.3 27 675.3 36 657.4 35 681.2 41 662.2 31 653.5 38 669.5 40 665 42 648.2 40 659.2 46 655.3 48 634.9 37 639.1 35 630.4 33 622.4 32 627.1 40 600.7 27 608.6 33 598.9 35 577.9 30 584.1 28 580.6 47 560.4 38 572.6 31
-1964212 LOS ANGELES ABC UNIFIED 30.5055227095651 32.4654190398698 10.4014103607269 32.6597956785101 36.0040567951318 15.2575630252101 59289.0862068966 4219.66476810415 22.576788291074 49.7326203208556 0 3.33333333333333 659.923843327729 663.76048998045 650.499602854484 52.5440273037543 57.6390518084067 44.8664923096083 705.6 45 717.5 63 688.2 54 697 39 712.7 61 678.8 46 691.2 41 703.8 64 677.2 55 691.7 51 693.7 61 671.3 56 682.4 53 689.5 65 668.6 62 663.8 51 670.7 61 653.7 57 650.4 47 650.8 54 643.9 54 632.2 44 623.3 47 627.7 50 603.7 38 600.8 51 605 47 574.9 41 572.3 49 586.4 45
-1975309 LOS ANGELES ACTON-AGUA DULCE UNIFIED 28.1723484848485 1.44320297951583 1.72253258845438 11.9180633147114 7.44680851063831 11.7280373831776 58880.170212766 3806.89338919926 24.8222222222222 0 0 0 663.988473520249 652.433478802993 652.670828105395 58.8782936010038 52.9339152119701 53.6859813084112 702.1 41 692.8 38 687.4 53 697 39 689.3 38 681.1 49 688.2 38 689.1 50 672.5 50 700.6 60 683.6 53 679.8 65 692.5 62 674.7 53 677.9 72 671.8 59 674.6 66 657.7 62 659.5 56 650.6 54 646 56 645 56 628.8 54 635.7 58 622.1 55 608.8 59 615.8 57 591.4 57 574.6 52 597.1 59
-1964261 LOS ANGELES ARCADIA UNIFIED 8.36221352711012 52.593956460522 1.21304018195603 9.88844362612369 8.90052356020942 15.9820135746606 64415.4659685864 4166.21780569696 24.2746044515956 60.840108401084 0 27.2727272727273 682.071046962516 691.294912131519 676.073383867277 73.9323512585812 77.8511904761905 62.3396524486572 717 58 740.3 82 706 71 710.2 53 725.7 73 700.4 68 704.6 54 727.1 83 700.6 76 705.7 65 719.7 82 688.2 72 694.3 64 712.9 83 684.2 76 681.7 69 701.8 85 674.4 76 673 68 678.1 79 671.8 79 658.6 68 643.9 67 658.6 76 632.3 63 622.9 71 635.7 74 604.3 67 594.5 71 613.1 74
-1964279 LOS ANGELES AZUSA UNIFIED 70.7382666782337 .959561343385881 3.15284441398218 78.9410555174777 25.9557344064386 14.4988495575221 64611.0342052314 4379.24306031528 23.9818631492168 19.4244604316547 0 11.1111111111111 630.515060402685 627.717457773394 619.018762369706 25.7844042749703 29.3741832079892 22.5122147651007 679 20 682.9 28 659.9 25 670.8 16 678.6 26 650.7 20 668.8 21 671.4 32 653.6 32 666.7 27 661.6 30 639.9 25 653.1 25 654.4 32 636.1 27 638.8 26 637.2 30 623.3 26 625.7 24 625.9 29 616.9 28 604.6 21 600.2 26 599.9 26 578.3 20 575.9 28 577.1 22 552.8 23 554.4 32 567.9 26
-1964287 LOS ANGELES BALDWIN PARK UNIFIED 62.871681687205 4.72375029897154 1.79382922745755 85.4699832575939 27.212020033389 15.062106017192 67839.958263773 3819.11803396317 27.5054157640393 26.7716535433071 0 0 627.079255415984 625.502389252614 620.852864742304 28.1941222638877 26.5887254485163 21.1458219552157 680 21 683.3 28 663.7 29 667.7 14 675.8 23 652.8 21 664.8 18 668.8 30 655.5 34 671 31 663.1 32 650 35 656.1 27 653 30 643.7 35 642.2 29 645.7 38 634.4 37 621.9 21 621.8 25 620.2 30 603.9 21 596.1 23 605.4 30 571.2 15 568.8 22 573.2 20 542.6 17 537.9 19 556.9 16
-1964295 LOS ANGELES BASSETT UNIFIED 79.6765957446809 2.10292357667977 2.10292357667977 89.1434433236451 45.6 14.3998207885305 62084.608 4432.06496837066 23.5596625150663 20.9876543209877 0 0 625.112745604964 627.803804077573 616.408769269649 23.1238311852413 26.8254599701641 18.82316442606 673.1 16 675.6 21 657.1 23 663 12 675.2 23 646.5 17 659.5 15 670.5 31 647.6 27 662.1 24 661.8 31 638.2 24 645 19 651.5 29 631.1 23 636.6 24 638.3 31 625 27 618.6 19 622.2 25 612.7 24 602.1 19 598.8 25 600.2 26 575.8 18 574.6 27 574.1 20 546.3 19 545.7 24 559.9 19
-1964303 LOS ANGELES BELLFLOWER UNIFIED 49.1721460825477 5.57544757033248 18.1585677749361 38.4800876872488 12.2743682310469 13.0422764227642 58550.5216606498 3988.18260869565 23.8852218555189 17.9972936400541 0 7.14285714285714 641.814845076401 641.600951888257 632.726298875201 38.4131762185324 41.0006207966891 32.1771010186757 686.5 27 686.6 32 668.3 33 679.8 23 683.6 31 659.3 27 678.5 29 678.8 40 661.4 39 670.8 31 664.6 33 650 34 661.9 32 662 39 653.5 46 651.9 39 657.3 49 640.7 43 637.8 34 637.7 41 630.3 40 623.9 37 620.1 45 621.7 45 596.9 33 595.5 46 594.4 37 566.6 34 570.3 48 580 38
-1964311 LOS ANGELES BEVERLY HILLS UNIFIED 9.73348783314021 10.9398496240602 3.57142857142857 4.09774436090226 10.8196721311475 18.2 62455.7573770492 6015.75751879699 17.7246909455396 61.8843683083512 0 0 690.567250257466 694.90896250642 681.280658436214 76.3996913580247 79.1928608115049 67.2659629248198 720.3 61 735.6 80 706 71 714.3 57 729.2 77 703.7 71 711.4 61 723.6 81 703.3 78 712.5 71 714.3 80 699.6 81 704.1 73 711.3 84 694.6 85 683.8 71 689.9 78 669.6 73 677.2 72 676.5 78 670.5 78 669.1 76 654.5 77 659.4 77 641 70 632.6 78 637 75 611.2 72 603.4 77 616.6 77
-1964329 LOS ANGELES BONITA UNIFIED 25.843945825753 5.86600496277916 4.82382133995037 27.5831265508685 9.50118764845605 16.8920124481328 62021.7553444181 4054.13568238213 24.1142443962401 51.764705882353 0 0 663.099746396156 658.021031171906 650.03186929488 52.8662521497553 53.0515585952913 48.306727175654 706 46 704.3 51 683.8 49 699.9 42 698.4 47 678.1 45 694.5 44 694 56 677.8 56 692 51 684.9 53 669.1 54 680 50 678.1 56 663.6 57 666.2 54 669.3 61 652.6 56 653.9 50 647.7 51 643.3 54 637.5 49 623.3 48 629.2 52 614.2 48 601.5 52 606.9 49 582.9 49 577.9 55 595.2 56
-1964337 LOS ANGELES BURBANK UNIFIED 37.6797976147452 5.6881243063263 2.77469478357381 36.9589345172031 13.1666666666667 14.4693832599119 62400.435 4138.19589345172 23.9576629974598 32.4290998766954 0 5.26315789473684 655.695169224715 652.230417919131 645.026701161769 49.5026847603241 49.3065063512072 43.0069854388036 701.1 40 701.4 48 682.2 47 694.7 36 701.4 50 675.9 43 684.1 34 687.9 49 667.8 46 688.5 48 678.8 47 668.1 53 676.8 47 668.2 46 662.2 56 661.1 48 663.3 55 649.3 53 651.1 47 645.2 48 643.4 54 636.1 48 627.9 53 629.6 52 605 40 596.6 47 600 42 575.3 42 573.2 50 588.4 48
-1964378 LOS ANGELES CHARTER OAK UNIFIED 23.9477040816327 5.26555386949924 4.87101669195751 36.6160849772382 11.7647058823529 15.3225396825397 61534.6654411765 4024.87496206373 24.1229724632214 38.7254901960784 0 0 655.798924731183 648.840342904359 640.007804980122 44.9202762084118 47.0877917785582 44.1773139363272 704.8 44 699.6 46 679 44 697.8 39 699.4 49 671 38 693.9 43 694.8 57 669.7 48 693.7 53 680.1 49 669.2 54 680.8 51 674.1 52 658.7 52 661.1 48 659.9 52 643.7 47 646.8 43 638.3 41 633.1 43 630.3 42 620.3 44 621.6 45 603.3 39 590.3 41 594.3 37 574.6 41 565.4 42 582.4 42
-1964394 LOS ANGELES CLAREMONT UNIFIED 20.8070229477899 10.1118500604595 12.0012091898428 20.8736396614268 11.7088607594937 13.9077464788732 61447.6582278481 4401.14782345828 21.542025148908 53.1697341513292 0 0 676.104095197256 668.467728327357 659.145744680851 59.1142553191489 59.8346340434508 57.3855060034305 718.3 59 724.6 70 695.3 61 713.2 56 716.2 66 691.2 59 702.4 52 709.3 70 682.9 60 702.2 61 699.9 68 680.5 66 685.8 56 686.1 64 669.1 63 680 67 672.9 64 662 66 664.9 61 646.3 50 649.6 59 648.1 59 622.8 47 630.7 53 622.2 55 594.2 45 611.5 53 582.5 48 568.8 46 588.6 49
-1973437 LOS ANGELES COMPTON UNIFIED 78.4239149752959 .0545386372158026 35.7296247060027 62.9273613525582 80.1749271137026 14.7931484502447 58991.4207968902 3743.12516617241 28.0999707687811 41.7890520694259 0 2.56410256410256 612.667656386702 613.706413351527 605.890224260388 19.7304401319837 22.4384906056471 16.2775590551181 667.5 13 672.3 19 651.7 19 660.6 11 671.3 20 642.6 14 653.1 12 660.1 22 643.7 23 659 21 651.7 22 635.9 22 638 15 640.9 20 627.9 20 625.4 16 627.8 22 617.2 21 614.7 16 617.3 21 606.2 19 594.6 15 590.3 19 593.5 21 570.1 15 570.7 24 573.2 20 550 22 551.7 30 558.5 17
-1964436 LOS ANGELES COVINA-VALLEY UNIFIED 37.6449529146237 8.54844606946984 5.79890310786106 50.8299817184644 14.2599277978339 13.9004615384615 62290.0270758123 4265.80702010969 24.2564009442528 42.0844327176781 0 0 653.860152895591 650.312752021288 641.89274360033 45.409372419488 46.8560024562481 40.6060320452403 701.5 41 701.1 48 680.3 45 691.6 34 692.5 42 669.9 37 684.8 35 687.6 49 667.8 47 687.3 47 680.2 49 661.1 46 672.2 43 669.4 47 653.3 46 657.4 44 658.3 51 645.5 49 644.3 41 641.4 44 637.2 47 631.7 44 620.7 45 625.1 48 603 38 598.8 50 602.2 44 572.7 40 566.4 44 585 45
-1964444 LOS ANGELES CULVER CITY UNIFIED 33.5116818262886 10.2023749790935 17.9126944305068 36.8121759491554 18.6507936507936 15.3850174216028 62132.0198412699 4282.61247700284 22.9572925060435 41.1764705882353 0 0 659.061115169223 649.806527353839 644.15641634981 46.8624049429658 44.7816388823668 44.1195519844169 706 46 702.8 49 685 50 694.6 36 695.1 43 672.5 39 684.4 34 687.6 49 668.8 47 688.1 47 673.5 41 663.6 48 682.6 52 669.4 46 664.7 58 665.5 53 649.4 42 648.3 52 654 50 647.1 50 641.8 52 636.8 48 617.9 42 625.4 48 607.1 42 592.2 43 598.2 40 570.8 38 565.6 43 579.2 37
-1964451 LOS ANGELES DOWNEY UNIFIED 42.8409459021704 5.5955762987013 4.8041801948052 63.3370535714286 14.5994832041344 12.2934807256236 64631.9341085271 3979.21940949675 25.1415032249572 23.2673267326733 0 0 651.33894611136 648.686241487882 645.34675671664 49.2248775419326 45.3423152961851 38.2581728616211 698.1 37 698.8 45 678.8 44 685.8 28 692 40 668.1 35 678.9 29 683.5 45 665.7 44 687.9 47 676.4 45 668.5 54 672.8 43 667.4 45 665.5 59 656.3 43 656.3 48 653.9 57 646.4 43 646.2 49 647 57 627.9 40 619.3 44 629.8 52 600.1 36 593.8 44 601.3 43 570.9 38 571.1 48 587.3 47
-1964469 LOS ANGELES DUARTE UNIFIED 61.4000866926745 2.77597050531338 13.2075471698113 61.9605291693776 30 16.0684210526316 59303.7388888889 4179.69811320755 25.2252747252747 15.0159744408946 0 0 634.506660104987 631.105498721228 626.154217262882 33.6727929110601 32.9437340153453 27.7286745406824 679.6 21 685.1 30 664.3 29 669.8 16 679.6 27 651.7 20 669.4 22 677.7 39 656.4 35 671.7 32 664.7 33 649.7 34 662.8 33 654.5 32 646.9 39 650.7 37 646 38 639.5 42 632.9 30 629.2 32 625 35 616.1 30 609.9 35 616.6 40 584.7 24 581.7 33 586.2 30 557.7 27 551.2 29 569.6 28
-1964527 LOS ANGELES EL RANCHO UNIFIED 68.0851063829787 .683526999316473 .580997949419002 94.4805194805195 51.8145161290323 16.2742753623188 65653 4338.24307928913 22.4950337703615 33.6700336700337 0 0 636.533907380608 629.92565662151 624.336384276997 28.9841067120761 28.1802598838817 25.4157742402316 682.5 23 684.1 29 667.2 32 673.8 18 684.4 32 656 24 669.6 22 676.7 37 659.1 37 668.9 29 658.3 28 646.5 31 653.9 25 646.9 25 635.3 27 640.3 28 635.3 28 624.4 27 628.2 26 620.6 24 617.6 28 609.2 24 595.8 23 602.6 28 589.8 28 576.1 28 585 29 560.8 30 550.6 29 570.1 28
-1964535 LOS ANGELES EL SEGUNDO UNIFIED 13.8000809388911 6.32078918523931 3.39788089148703 14.8702959444647 4.76190476190477 11.9276595744681 57362.0476190476 4718.11472415053 21.2887438825449 38.9937106918239 0 0 677.041884280594 669.538985579314 659.628335832084 62.2778610694653 64.9607160616609 60.9467485919099 710.2 50 710.8 59 689.9 56 711.2 54 707.5 59 690.9 59 707.1 57 708.1 69 689.6 68 702.7 62 689.7 59 674.6 60 688.8 59 682.9 61 661.5 55 674.7 62 680.5 71 653.3 57 664.6 61 660.4 66 653.1 64 662.9 72 643.4 71 645.3 68 631.9 67 609.9 63 623 66 601.8 69 589.1 72 605.9 70
-1964568 LOS ANGELES GLENDALE UNIFIED 50.674017547988 12.1272365805169 1.11994698475812 23.8667992047714 12.2395833333333 13.2210855949896 73039.0052083333 4224.93667992048 26.6702033598585 26.3865546218487 0 34.4827586206897 654.253990819555 657.112164532538 649.081694134326 52.2113680666312 53.7901683915103 40.357190605642 695.7 35 706.9 54 683 48 689.8 32 701.5 54 676.9 44 684.7 35 695.4 57 680.3 59 687.2 47 688.7 57 669.8 55 675.2 47 679.9 58 664.9 59 658 45 667.3 60 654.4 58 645.4 42 645.8 51 644.8 55 631.1 44 619.6 48 629.8 54 598.4 37 592.5 46 598.2 42 567.6 39 569.5 52 583.9 47
-1964576 LOS ANGELES GLENDORA UNIFIED 14.826244465316 4.1191381495564 1.29277566539924 16.5652724968314 6.32911392405063 14.9926553672316 63784.6075949367 4130.34993662864 24.900641025641 33.6 0 0 669.393686181076 664.820381845587 655.879660447134 58.4019162884518 59.4938871210853 53.6786929884275 704.3 44 712.6 59 687.7 54 698.2 40 705.6 55 678.2 45 693.5 43 700.1 62 678.9 57 700.3 59 689.1 58 673.6 59 691.2 61 680.9 59 671.1 65 673.1 61 668.8 61 656.8 61 663.4 59 653.1 57 650.6 61 649.8 61 635.1 60 639.1 61 624.5 57 611.1 61 616.7 58 588.1 54 585.3 63 602 64
-1973445 LOS ANGELES HACIENDA LA PUENTE UNIFIED 40.2360661714442 16.3999470969448 2.53934664726888 67.9760172816647 28.9036544850498 17.3935658153242 62325.3034330011 4103.13891460565 25.056066382597 38.6784850926672 0 0 642.964292922922 641.584377276038 632.63471999011 36.6834590184201 38.4453143966982 31.0369622808124 690.4 30 696 41 673.7 39 682.7 25 694.4 42 664.8 32 678.5 29 685.9 46 666.3 44 677.9 37 675 43 654.9 39 665.3 35 664.5 41 649.3 41 650.1 37 646.5 38 636.6 39 634.6 31 630.9 33 626.8 37 616.4 30 605.7 31 612 36 585.6 24 579 30 585.4 29 563.2 32 563.5 41 573.9 32
-1964634 LOS ANGELES INGLEWOOD UNIFIED 69.0082898372736 .192554557124519 43.0913758898355 55.3681876531684 63.4390651085142 15.0198263386397 63040.9899833055 3748.32979344148 27.4027459954233 38.8888888888889 0 57.8947368421053 634.693625077045 632.165754127812 627.247653302921 35.6359329765769 35.4114124390453 29.0958879985912 676.7 18 675 21 659.8 25 668.1 14 674.2 22 649.1 18 662.9 17 664 25 649.5 28 670.1 30 658.6 28 647.9 33 654.3 26 648.3 26 642.8 34 643.1 30 642.5 35 633.7 36 639.9 36 640.3 43 636 46 617.4 31 612.5 37 616.4 40 595.7 32 596.3 47 598.9 41 574.3 41 573.3 50 580.8 39
-1964659 LOS ANGELES LA CANADA UNIFIED 1.4218009478673 26.2005649717514 .541431261770245 3.06026365348399 8.20512820512821 15.0257918552036 63791.6307692308 4705.50564971751 21.5962441314554 66.1818181818182 0 0 695.106828057108 694.118644067797 679.942095416277 79.1699407545993 82.4656394453005 76.5555555555556 730.6 71 743.4 83 707.6 73 727.2 70 737.4 81 711.8 77 723.5 71 731.8 85 708.9 81 723.5 79 721.1 83 705 84 712.6 80 717.6 86 694.3 85 694.9 80 706.8 88 671.9 75 688 81 685.5 84 673.3 80 674.9 80 656 78 659.6 77 651 77 633.7 80 641.4 78 617.2 77 600.6 76 622.3 82
-1964683 LOS ANGELES LAS VIRGENES UNIFIED 2.97174111212397 7.57133035407357 1.36644895152974 4.97593674802338 7.02479338842976 17.0070127504554 64749.8450413223 4414.05010312822 24.2391304347826 60.6232294617564 0 0 684.553328569727 678.410719754977 672.994556044217 75.3633662189469 73.8972788314289 70.318566154579 722.7 64 725.1 72 711.1 76 720.2 64 719.3 71 705.2 72 714.6 65 718.2 78 699.3 76 714.3 73 710 77 695 78 707.4 77 707.9 82 691.4 83 687.8 75 693.7 82 674.1 77 681.9 76 672.3 75 670.8 78 668.3 76 646.9 71 655.8 75 639.7 70 624.1 73 632.9 72 595.7 61 578.9 57 604 66
-1964725 LOS ANGELES LONG BEACH UNIFIED 64.2386984600099 14.166317455883 20.3368720026074 40.4898263258369 29.1087489779231 13.3097951495173 59298.1777050968 4210.30880709596 22.9831165236645 41.3782252989302 2.32558139534884 19.7674418604651 639.333896392546 637.248315019538 631.351391051242 37.6159378596087 37.9077018135667 30.8294580270132 693 32 695.4 41 674.2 39 684.9 27 691.7 40 668.3 35 679.6 30 687 48 668.5 47 677.2 37 668.7 37 654.8 39 661.8 32 658.1 35 649.4 41 645.6 33 645.7 38 635.1 37 634.1 31 632 35 627.8 38 615.1 29 605.9 31 613.1 37 589 27 586.7 38 590 33 562.2 31 561.8 39 574.3 33
-1964733 LOS ANGELES LOS ANGELES UNIFIED 73.183943472326 4.30874594006731 13.7952471231427 68.5241685404818 45.4613868482351 20.5457412962458 73073.0746819566 4365.27608718017 23.4209491853797 49.3061754442912 2.32198142414861 32.1981424148607 632.955948121759 630.926125049489 624.165265009434 30.2164675932538 30.9511268824142 24.1795656528519 689.1 29 692 37 671.9 37 678.5 22 686.2 33 659.5 27 670.4 22 676.2 37 657.5 35 667.4 28 661.8 30 647.1 32 651.1 23 652 29 639.3 30 637.3 25 637.9 30 627.4 30 626.5 24 625.1 28 618.7 29 608 23 601.3 27 605.3 30 581.6 21 578.9 30 583.1 27 557.3 27 554.4 32 570.2 28
-1964774 LOS ANGELES LYNWOOD UNIFIED 59.296941237853 .224648985959438 12.0561622464899 86.5273010920437 52.4871355060034 15.7930124223603 67063.0171526587 4064.95432137286 27.0596092836868 15.0847457627119 0 50 618.290844222037 621.509246177233 613.061156723226 23.0633096150338 25.8221407493517 17.7372810675563 678.6 20 678 23 659.8 25 667.6 14 674.2 22 648.2 18 659.9 15 665.9 27 649.5 28 658.3 21 652.3 22 640.6 26 642.8 18 642.4 21 632.6 24 635.1 23 639.5 32 624.5 27 615.5 17 618.6 22 610.5 22 595.7 15 597.6 24 598.1 24 569 14 572.8 25 573.1 19 548.5 21 557.4 35 561.8 20
-1975333 LOS ANGELES MANHATTAN BEACH UNIFIED 7.19727345629511 7.00382026559942 1.81917409496089 8.65926869201383 7.93650793650794 15.2171875 64224.8888888889 5093.92796070584 21.5871073031416 43.089430894309 0 0 690.056717557252 683.397692112605 674.556118036123 74.1541592470109 74.6817144306366 71.3648854961832 717.6 58 717.5 65 695.5 62 712.9 56 709.6 59 691.1 59 713.9 63 709.9 71 692.9 70 721.8 78 714.1 78 707.1 85 711.8 80 706.7 81 691.1 83 696.8 82 708.4 88 680.3 81 689.6 81 681.9 83 673.7 80 677.6 82 661.2 81 661.8 79 648.3 75 632.5 79 640.4 77 613.9 74 598.3 74 617 78
-1964790 LOS ANGELES MONROVIA UNIFIED 56.8985750209556 1.91512180174659 14.064654512027 48.0772177110464 17.5438596491228 14.4258785942492 57193.298245614 4017.30228282519 22.5547183351274 25.9475218658892 0 11.1111111111111 645.345761124122 639.929743822263 635.35638225256 40.8038680318544 38.6701428247563 34.7861826697892 687.4 27 687.8 32 669.6 34 684.2 26 688.8 36 665.6 32 677.9 28 679.2 40 665.8 44 683.9 43 673.1 41 661.4 46 670.2 40 661.5 39 653.5 46 654 41 646.7 39 645 48 644.7 41 637.4 40 639.6 50 622.1 35 610.6 36 617.4 41 595.8 33 588.2 39 590.8 34 563.2 33 565.1 43 575.4 34
-1964808 LOS ANGELES MONTEBELLO UNIFIED 75.0342977348252 4.8799265642119 .447129193686891 90.5184921974475 59.5298068849706 16.9234065934066 67605.9101595298 3810.28506706938 27.995777027027 28.5416666666667 0 25 633.256956384986 628.919973223583 622.355320469712 25.1499663752522 24.3407546982695 20.808764940239 684.5 24 686.5 31 666.3 31 673.2 18 681.1 28 651.6 20 664.1 18 669.4 30 651.4 30 665.3 26 656.4 26 643.6 29 649.9 23 648.5 26 638.1 29 636.2 24 632.3 26 625 27 620.1 20 614.7 19 612.6 24 607.4 23 592.3 20 600.8 26 573.3 16 563.9 19 571.7 18 542.2 16 536.5 18 556.4 16
-1964840 LOS ANGELES NORWALK-LA MIRADA UNIFIED 44.0220253770649 4.93949345449638 5.01597012911062 62.9762922308696 29.2200232828871 15.6210774058577 60665.5646100116 3616.50474605245 25.6258156364931 21.5086646279307 0 7.14285714285714 639.250212154394 632.607114624506 627.880085696797 33.7937155682514 32.4326086956522 29.8602518477963 686.6 26 686.8 32 667.5 32 678.5 22 684.3 32 655.7 24 673.9 25 677.5 38 658.1 36 678.6 38 665.1 34 653.7 38 662.4 33 654.9 32 646 37 647.4 34 641.2 34 635.1 37 636.3 33 627.2 30 627.5 37 616.2 30 603.6 29 611.3 35 588.4 26 578.2 30 586.6 30 561 30 556.5 34 572.8 31
-1964865 LOS ANGELES PALOS VERDES PENINSULA UNIFIED 1.94360184248961 30.0269251480883 1.72320947765213 3.94184168012924 7.4742268041237 18.9428733031674 59821.2139175258 3946.78772213247 24.1144056678037 89.1304347826087 0 0 691.220889080708 696.583954688844 679.690504153538 78.8099398453165 84.1756524232865 73.5451014242555 730.5 71 745.9 85 715.6 79 720.6 64 737.4 81 711.4 77 720 68 732.5 86 703.7 78 717.1 75 727.8 86 698.5 80 706.1 75 721 88 694.2 83 690 76 704.6 87 671.2 74 683.5 77 682.9 82 674.3 80 671.9 78 665.7 84 661.1 78 648.8 76 635.8 81 642.1 79 617.4 77 608.7 82 619.8 80
-1964873 LOS ANGELES PARAMOUNT UNIFIED 58.2283516774964 1.78362031722521 14.6145775473678 75.7082021847806 35.2484472049689 11.8014563106796 63190.7142857143 4370.21483675863 24.5058004640371 5.43071161048689 0 73.3333333333333 621.628153616147 619.038806631794 616.064499361663 25.0995805216123 23.4514584626297 18.6787516352084 678 19 681.7 27 663.4 28 668.5 15 678.8 26 649.9 19 664.3 18 670.6 31 655.6 34 665 26 657.9 27 643.7 29 645 19 642.5 21 634.9 26 633.4 22 627.3 22 624.7 27 619.8 19 615.4 20 618 29 596.8 16 590.1 19 597.9 24 572.5 16 571.9 25 576.5 22 542.9 17 541.4 21 557.8 17
-1964881 LOS ANGELES PASADENA UNIFIED 61.8810986628117 2.22193005521956 32.0054343062495 47.1119291787186 42.1841541755889 14.2729885057471 64584.0385438972 4443.59943903936 23.867133609254 39.6551724137931 0 0 640.261998178379 638.447005395069 630.055227304324 35.4722647017934 37.419791026429 30.9504659146641 692.5 32 687.4 33 674.8 40 680.3 23 682.4 30 661.7 29 675.6 26 675.8 37 661.1 39 671 31 663.6 32 646.6 31 656.9 28 656.7 34 643.9 35 647.7 35 651.4 43 636.6 39 637 34 636.9 39 626.5 36 616.8 30 609.7 34 609.9 34 594.5 31 592.1 42 592.3 34 569.3 37 569.4 46 580.4 38
-1964907 LOS ANGELES POMONA UNIFIED 73.505306122449 6.3934630738523 11.2337824351297 71.2044660678643 48.6985726280437 16.6833691756272 65628.7707808564 4007.18603418164 26.0442219440968 8.2771896053898 0 23.6842105263158 633.616609392898 631.103751065644 625.687406073083 33.2647967061246 32.3901007973522 27.1438092262835 680.8 21 681.2 26 662.8 28 668.9 15 675.5 23 649.9 19 669.8 22 673.5 34 657 35 672.8 33 665.8 34 652.5 37 658.2 29 655 32 645.3 37 643.6 31 644 36 634.6 37 630.8 28 629 32 625.7 35 612.5 27 605.3 30 609.4 34 588 26 582 33 586.1 29 560.9 30 559.8 37 574.5 33
-1975341 LOS ANGELES REDONDO BEACH UNIFIED 25.6399317406143 7.27744401966139 5.18842162752594 23.1840524303659 10.2484472049689 16.5052083333333 68096.3695652174 5006.77607864555 22.4752168525403 51.5406162464986 0 0 662.997025878718 658.485319712448 650.223375639326 56.3864368251563 58.2854710556186 52.5876786404017 703.3 43 705.6 52 683.2 48 696.6 38 704 53 676 43 693.9 43 699.2 61 674.9 53 700 59 693 61 677.1 62 685.5 55 684.5 62 669.4 63 667.8 55 673.2 64 654.3 58 664.3 60 655.2 59 652.4 63 646.8 58 629.9 54 635.2 57 621.5 54 606.2 57 614.4 56 589 54 581.4 59 596 57
-1973452 LOS ANGELES ROWLAND UNIFIED 33.8506304558681 18.7811869625226 6.68860813249814 55.3508865059985 29.1823899371069 16.1730984340045 62277.3119496855 4369.67459390593 24.4457424714434 30.2618816682832 0 0 647.043888420569 652.661347437917 639.480387685291 44.3539338654504 50.7873808987921 36.0793930569392 695.9 35 704.1 51 676.8 42 686.1 28 699.8 48 667.6 34 682 32 694.1 55 667.6 46 684.7 44 685.8 54 661.7 47 670.1 40 674.6 52 657.3 50 656.3 43 661.5 53 648.2 51 638.7 35 645.1 48 634.9 45 622.8 35 621.1 45 624.2 47 598.4 34 604.5 54 600.4 42 567.9 35 572.3 49 581.5 40
-1975291 LOS ANGELES SAN GABRIEL UNIFIED 53.4556990709268 36.4023712486106 1.8895887365691 43.4790663208596 22.0657276995305 14.1230769230769 57663.2582159624 3814.97406446832 23.1666666666667 0 11.1111111111111 0 652.373269403656 651.826455658406 643.521950492097 50.5377274082911 54.3069573006868 43.7374887623614 693 32 704.7 52 676.6 42 687.9 30 698 50 668.8 36 690.4 41 693.5 56 679.2 58 691 51 687 57 673.3 59 678.3 50 679.5 58 666.9 61 660.2 48 670.4 63 649.9 54 648.6 45 647.8 52 643.1 53 631.4 45 624.7 53 626.8 51 604.3 42 598.6 52 602.9 46 580.9 51 570.1 52 584.8 48
-1964964 LOS ANGELES SAN MARINO UNIFIED .265339966832504 63.2023384215654 .48717115946736 3.34524196167587 6.94444444444444 15.9078616352201 57543.375 4619.27671321858 22.1773612112473 78.1893004115226 0 0 690.843953394938 703.648538245895 680.914090726616 78.169409875552 85.3384060873048 70.9003615910004 724 65 758 90 715 79 719.2 62 749.5 87 709.3 75 715.7 65 742.2 89 710.1 82 717.7 75 739.1 91 695.7 78 707.7 76 726.4 90 695.6 84 686.9 74 705.3 87 672.9 76 677.4 72 679.4 80 665.6 74 673.9 79 656.4 78 661.9 79 641 70 635.3 81 636.9 75 613.1 74 602.8 77 618.2 79
-1964980 LOS ANGELES SANTA MONICA-MALIBU UNIFIED 26.0906515580737 5.53147216923877 8.61799895959771 27.0764695682331 22.2664015904573 15.8740034662045 65963.4274353877 5063.35009537021 22.315280853634 65.1063829787234 0 0 672.518027812895 666.633357933579 658.063282423635 60.9182523785679 60.80036900369 57.6074589127687 709.8 50 713.6 60 690.5 56 701.5 44 705.5 53 682.4 50 696.5 46 699 60 680.7 59 703.3 63 688.3 56 679.5 64 691.2 61 683.9 61 673.6 68 676.7 64 673 64 658.3 62 670.2 66 666 69 659.3 69 654.4 64 637.8 62 638.5 60 628.4 60 612.4 62 619.6 60 593.9 59 584.1 61 599.3 61
-1965029 LOS ANGELES SOUTH PASADENA UNIFIED 11.6788321167883 32.0893561103811 4.46780551905388 18.2128777923785 13.0177514792899 16.1964467005076 61169.6213017752 4043.49855453351 22.9909365558912 64.0740740740741 0 0 684.429470771359 685.287564588357 669.604545454546 69.6936155447606 74.7888391319325 66.0823244552058 722.2 63 738.9 80 700.9 67 714.7 57 727 73 697.2 65 708 57 718.1 76 691.5 69 711.8 70 712.7 77 689.8 73 694.2 64 696.8 72 672.8 67 682 70 688.2 76 661.6 66 679.8 74 679.3 80 666.7 75 662.2 71 644.1 68 650.6 70 644.1 72 626.7 74 637.3 75 604.3 67 595.8 72 610.6 72
-1965052 LOS ANGELES TEMPLE CITY UNIFIED 27.3219814241486 38.107752956636 1.44546649145861 20.3679369250986 7.35930735930735 13.7875 59417.303030303 4035.89093298292 23.6489504242966 31.5649867374005 0 0 668.867083854819 672.304788029925 658.75127245509 60.2450099800399 64.9730673316708 52.4027534418023 704.9 45 718 64 685.4 51 695.5 37 715 62 681.4 49 694.9 44 711 71 685 63 701.7 61 697.2 65 680.4 65 685.4 55 691.4 69 673.3 67 676.1 64 683.3 73 663.5 66 657.3 54 651.7 55 649.9 60 643.7 55 635.7 60 639.5 61 621.2 54 617 66 618.6 60 595.1 60 587 64 601.4 63
-1965060 LOS ANGELES TORRANCE UNIFIED 17.7019320040674 28.4768777488364 3.99675477176651 15.8332977496904 19.6572580645161 13.3186108637578 59555.2883064516 3822.10277979418 23.7832310838446 45.956607495069 0 0 669.838492706645 669.997700028678 656.603946302511 58.3625737761833 63.3968454258675 53.6345797638342 706.4 46 713.2 60 686.6 52 700.6 42 709 58 681.9 49 699.2 48 711.1 71 682.8 61 700.4 60 696.8 65 676.2 61 690.1 60 688 65 669.2 63 669.5 57 675.1 66 653.9 57 661.4 58 659 62 651.8 62 648.5 59 640.2 64 641.2 63 620.3 53 612.2 62 615 56 590.4 56 583.8 61 599.3 61
-1973460 LOS ANGELES WALNUT VALLEY UNIFIED 6.19667389732466 42.3138875271378 5.72168919392114 18.1805448560824 17.7364864864865 14.8244477172312 60555.2364864865 3982.78030674417 24.2508591065292 57.7854671280277 0 0 675.635385172445 678.79409180563 664.452948625181 63.8897431259045 68.21642460104 56.1614012854169 714.1 54 729.9 75 696.3 62 706.7 49 720.5 69 691.2 59 700 49 714.1 74 689.7 67 704.2 63 703.8 71 683 68 694.5 64 700.6 76 677.8 72 675.5 63 683.7 73 662.9 67 661.9 58 661.1 65 655.5 66 645.6 57 633.6 58 641.2 63 616 50 608 58 612.6 54 591.8 57 578.4 56 597.6 59
-1965094 LOS ANGELES WEST COVINA UNIFIED 47.3071656777727 9.43910955914448 9.12265386294195 58.1623745089481 17.5202156334232 13.9033898305085 56841.371967655 3907.33773461371 24.4226579520697 29.0617848970252 0 0 646.576221907905 644.418671371587 637.665678554886 42.1999382430137 42.0662779993863 34.8972182932579 690.9 30 690 35 673.2 38 684.5 26 687.3 35 663.5 30 682.3 32 683.1 44 668.5 47 677.6 37 668.2 37 658.2 43 666.1 36 662.4 39 654.3 47 650.8 38 651.6 44 644.4 47 642 38 645.3 48 634.4 45 623 36 617 41 620.5 44 600.2 36 596.6 47 598.9 41 570.9 38 570.6 48 580.5 39
-2065193 MADERA CHOWCHILLA UNION 59.2872117400419 .94137783483098 2.52460419341036 41.6345742404793 6.66666666666667 12.2054166666667 53265.8190476191 3873.24005134788 23.5514918190568 25.4098360655738 0 0 642.458759783263 637.68853686636 630.755444964871 33.6891100702576 33.3064516129032 29.3991571342565 685.5 26 688.7 34 671.1 36 684.2 26 692.9 41 660 27 680.1 30 685.3 46 662.4 40 686.5 46 666.2 35 656 41 663.5 34 653.1 31 649.1 41 644.8 32 648.5 41 635.7 38 637.8 34 632.9 35 632.6 43 610.1 25 598.7 25 609.1 33 580.6 21 566.5 21 576 22 553.6 24 543.9 23 563 21
-2065243 MADERA MADERA UNIFIED 60.0239038812355 1.15214548172137 3.54362583297004 67.3538020800897 26.8292682926829 14.0548488664987 56274.5882352941 4064.55738930062 23.4583272301157 31.9940476190476 0 45 634.873307579102 632.891376291368 622.640314369921 29.2889166741091 33.3825949921205 26.8529249448124 684 24 688.3 33 660.7 26 676.9 21 682.6 30 648.5 18 674.2 25 680.3 41 653.2 32 674 34 666.9 35 650.4 35 657.4 29 659.6 37 643 34 643.7 31 647.6 41 630.8 33 626.9 25 626.9 31 618.7 29 608.6 25 600.3 29 604.2 30 583.9 25 575 29 582.4 27 553.8 28 547.3 29 566.1 27
-2165417 MARIN NOVATO UNIFIED 14.7922867865925 4.89383738995339 2.77058518902123 11.1082340756085 3.56234096692111 16.6201793721973 53794.9872773537 4365.51268772657 20.3963577932512 48.0851063829787 6.25 12.5 676.327673869621 670.308662832495 664.362228654125 67.1979015918958 65.5445722501797 61.5907027419648 717.7 58 718 65 699.3 65 709.2 52 707.6 57 689.2 57 708.1 57 706.3 68 688 65 706.9 66 703.2 71 685.3 70 697.1 67 698.7 75 683.9 77 676.7 65 685.2 75 666.6 70 670.1 66 664 68 661.8 71 655 65 637.4 62 644.9 66 629.8 61 605.8 56 621.1 62 593.5 58 579.7 57 606.4 68
-2165458 MARIN SAN RAFAEL CITY UN 34.7676767676768 7.88413581431038 5.19854210627278 36.1787838097065 8.53658536585365 15.1911371237458 53336.3807692308 4458.96873201611 20.9668168783286 53.5928143712575 0 0 670.195434083601 661.617473035439 655.652214080918 58.6352341510035 57.6804314329738 55.5993569131833 713.1 53 710.2 57 694.1 60 705.9 49 702.6 51 680.1 47 707 56 704.7 66 684.9 63 698.5 58 683.3 52 668.9 54 685.3 55 675.3 53 670.6 64 674.1 62 664.1 56 664.1 67 663.7 60 654 58 651.3 61 651.4 62 639.2 63 640.6 62 614.8 48 607.7 58 608.5 50 590.5 55 582.9 60 600.7 60
-2173361 MARIN SHORELINE UNIFIED 0 .480192076830732 .480192076830732 28.6914765906363 7.40740740740741 13.7261538461538 60992.5 6459.38415366147 16.4053537284895 26 0 0 670.308067542214 656.187862318841 650.405056179775 53.2621722846442 50.6322463768116 54.078799249531 709 49 699 45 688.7 54 703.3 45 699.4 47 681.9 50 692.1 41 686.7 48 671.9 50 701.2 61 683.1 52 677.2 63 692.9 63 670.3 48 666.8 61 683.6 71 677.5 69 660.9 65 672.5 68 656.8 60 655.6 65 648.5 60 611 36 620 43 625.8 57 601.8 52 606.5 48 578.1 44 577.5 55 585.2 45
-2265532 MARIPOSA MARIPOSA COUNTY UNIFIED 27.0007209805335 .511322132943755 .29218407596786 6.20891161431702 1.45985401459853 15.5984472049689 51692.8248175182 4183.60336011687 21.5384615384615 29.8013245033113 0 0 664.224974619289 650.738696939783 646.636458852868 51.3226932668329 49.3326752221125 51.4238578680203 706.6 47 703 50 681.6 48 702.4 46 694.9 48 673.7 42 696.2 47 690 53 672.9 53 698.9 59 679.9 50 676.3 62 684 56 666.1 45 663 57 663.2 51 660.9 56 649 54 655.9 53 636.9 43 638.9 50 641.1 55 618.6 49 628.8 54 614 53 591.5 47 599.2 44 571.7 46 566.3 52 581.5 47
-2365540 MENDOCINO ANDERSON VALLEY UNIFIED 55.9322033898305 .840336134453782 1.34453781512605 45.3781512605042 0 12.756 48855.9574468085 6406.86218487395 14.3160377358491 44.7368421052632 0 0 663.290476190476 663.766666666667 649.817894736842 48.6394736842105 53.8087855297158 42.7169312169312 704.5 44 716.5 61 692.3 56 694.5 36 703.4 51 677.1 45 676.1 27 681.5 42 667.6 46 694.9 54 683.4 53 673.8 58 680.9 52 675.8 51 664.9 58 652.5 39 660 53 641.2 44 664.6 60 663.7 67 648.9 59 630.4 43 629.7 54 617.3 41 594.6 30 601 52 589.7 32 580.9 47 582.7 60 582.2 43
-2365565 MENDOCINO FORT BRAGG UNIFIED 37.2996794871795 1.16279069767442 .415282392026578 19.6843853820598 2.27272727272727 17.1307432432432 56336.7803030303 4990.48712624585 19.4728682170543 25.8992805755396 0 0 662.634256472005 649.819894675249 645.872770795931 48.7175344105326 45.9631363370392 47.8657435279952 705.6 45 698.1 44 682.3 47 694.2 36 695.8 45 673.4 40 695.6 45 697.8 59 676.6 54 692.9 52 682.5 51 671 56 678.8 49 667.8 46 659.1 52 662.5 50 666.9 59 648.1 52 662.3 58 648.3 51 650.3 60 637.6 49 610.4 35 628.6 51 610.1 44 581.8 33 597.1 39 585.9 51 559 36 577.6 36
-2373916 MENDOCINO LAYTONVILLE UNIFIED 56.3311688311688 .517241379310345 .689655172413793 3.96551724137931 4.65116279069767 12.4978723404255 48867.6046511628 6578.05344827586 15.7329842931937 34.2105263157895 0 0 658.700571428571 644.085294117647 641.450287356322 43.1494252873563 36.9117647058824 42.5542857142857 693.1 33 687.5 32 672.8 38 699.4 41 689.9 38 669 36 688.6 38 680.9 42 654.4 33 702 61 672.2 41 679.4 65 673.6 43 661.9 39 652.5 45 658.8 46 650.6 44 647.3 51 654.8 51 638 39 638.3 49 630.7 43 605.8 31 619.6 43 602.6 38 586.8 38 589 32 562.2 30 548.2 26 578.9 36
-2365615 MENDOCINO UKIAH UNIFIED 46.9275405445618 .969468962523513 1.11416582260165 22.8186948343221 4.84848484848484 17.4014986376022 64535.7121212121 4838.43134133989 21.3448818897638 33.3333333333333 0 36.3636363636364 652.817643378519 645.442461600647 637.560484873601 39.9751346871115 40.8148746968472 38.4404588112617 705.6 46 706.9 54 685.2 51 698 40 696.4 45 674.5 41 688.2 37 689.1 50 669.4 47 686 45 679.2 48 660.3 45 667.4 38 668.8 46 650 42 655 42 653.5 45 637.1 40 644.8 41 633.3 36 630 40 624.3 37 602.9 28 610.3 34 596.8 33 580 32 589 32 557.1 27 547 25 571 29
-2365623 MENDOCINO WILLITS UNIFIED 46.5384615384615 .846153846153846 .692307692307692 11.5769230769231 2.98507462686567 17.472 56568.1268656716 4611.97576923077 20.8280757097792 26.3803680981595 0 0 658.926685714286 644.182815057283 640.649972451791 44.7129476584022 41.1047463175123 44.8982857142857 705.7 45 700 46 680.1 45 694.9 37 694.6 43 672.9 40 697.7 47 698.6 60 676.6 55 693.9 53 674.9 44 666.9 52 680.3 50 661.3 39 659.6 53 663.1 50 653.4 45 647.2 50 656.8 53 639.3 42 639.5 50 636.3 48 615 40 622.5 45 602.6 38 580.9 32 589.8 33 557.4 27 544.2 23 566.8 25
-2475317 MERCED DOS PALOS ORO LOMA JT. UNIFIED 60.9182098765432 .156801254410035 6.31125049000392 61.7012936103489 15.4411764705882 11.4913461538462 54802.6985294118 4750.99882399059 18.8121752041574 19.5945945945946 0 0 631.770659722222 629.861754780653 621.061990950226 26.993778280543 29.0989876265467 22.5873842592593 680.9 21 688 34 662.5 28 670.6 16 681.7 29 646.8 17 673.6 25 678.7 40 654.3 33 667.7 28 658.7 28 642.4 28 649.8 22 650.1 28 636.1 27 640.2 28 646.4 39 629.9 32 627.7 25 620.9 24 618.3 29 599.9 18 596.3 23 602 27 578.9 20 571.2 24 576.8 22 551.8 23 548.2 26 568.9 27
-2473619 MERCED GUSTINE UNIFIED 52.4079320113314 .614334470989761 .955631399317406 50.4436860068259 8.33333333333334 11.9896103896104 53609.9027777778 4080.96587030717 21.1577424023155 49.2753623188406 0 0 640.392330978809 634.424028906956 624.696633303003 28.8653321201092 31.8925022583559 26.6801210898083 686.5 26 690.3 36 665.9 31 685.9 28 689.4 38 658.6 26 673.2 24 676.8 38 655.1 33 672.8 33 662 31 648.5 33 670.7 41 661.2 38 651.3 43 640.7 28 640.9 34 627.9 30 629.8 27 626 29 622.8 33 599.8 18 596.6 23 595.4 23 569.2 14 568.8 22 572.8 19 560.7 30 554.5 32 563 21
-2465698 MERCED HILMAR UNIFIED 37.7889869693148 1.5866388308977 .292275574112735 17.3277661795407 11.7117117117117 13.4170634920635 58102.5495495496 4361.61920668058 22.7861163227017 20.8 0 16.6666666666667 651.254748941319 640.575577367206 636.812100058173 38.4729493891798 34.8556581986143 35.0725952813067 685.4 25 684 30 667.7 33 679.3 22 679.5 27 659.4 27 680.8 31 679.3 41 665.1 43 680.7 40 668 37 653 38 675.5 46 665.5 43 652.2 44 655.1 42 650.1 43 644.8 48 646 42 634.7 37 635.4 45 628.9 41 602.6 28 616.9 40 599.5 35 586.1 37 594.7 37 559.1 28 546.9 25 571.8 30
-2465722 MERCED LE GRAND UNION 41.4316702819957 .915564598168871 0 84.1302136317396 25.5813953488372 12.7714285714286 55709.2325581395 4140.52695829095 22.1852731591449 24.7422680412371 0 0 643.677083333333 645.689630681818 632.859677419355 25.2463343108504 27.5411931818182 18.0059523809524 682.2 23 686.4 32 663.1 28 665.9 13 681.8 29 650 19 668.9 21 672.1 33 654.2 33 657.9 21 664.3 33 646.7 32 642.9 18 652.2 30 636.3 27 632.1 21 630.5 24 625.9 28 610.4 14 607.6 14 610.7 22 588 11 584.5 15 589.9 19 569.7 15 568.2 22 572 20 547.5 20 550.8 28 551.7 13
-2465755 MERCED LOS BANOS UNIFIED 50.9282399143163 1.24495289367429 4.86204576043069 53.1796769851952 12.1673003802281 12.078156996587 55074.6235741445 4075.18842530283 21.7702805155421 33.9350180505415 0 50 638.536482875881 629.930409090909 625.650664451827 29.1734693877551 27.6852272727273 25.195530726257 685.1 25 687.3 32 665.9 31 674.2 18 679.9 27 654 22 669.2 21 674.5 35 652.4 31 671.6 32 663.4 32 647.2 32 663.2 34 658.4 36 648.2 39 643.1 30 640.1 33 634.3 37 624.6 23 617.6 22 616.8 27 611.7 26 597.8 24 606.8 31 584.5 23 565.8 20 576.3 22 546.8 19 537 18 559.8 19
-2573585 MODOC MODOC JOINT UNIFIED 33.2777314428691 .75 .75 10.4166666666667 1.61290322580645 11.6808823529412 55854.7419354839 4786.67916666667 19.2295345104334 32.7868852459016 0 0 659.431176470588 650.901276102088 639.167674418605 41.9476744186047 46.4164733178654 45.2776470588235 709.4 50 706.6 54 679.3 44 699.2 41 693.3 42 670.9 37 690.6 40 689 51 660.9 39 689.5 49 675.2 44 658 43 670.3 40 660.5 38 647.3 39 660 47 654.6 47 639.5 42 647.7 44 643.8 47 624.7 35 646.1 57 628.7 53 631.6 54 611.2 45 595 45 598 40 575.3 42 568.5 45 586.6 47
-2573593 MODOC TULELAKE BASIN JOINT UNIFIED 64.8508430609598 0 0 52.3809523809524 4.76190476190477 12.9553191489362 50840.0714285714 4851.06302521008 18.4009546539379 45.7142857142857 0 0 640.7754601227 638.625294117647 630.765029469548 35.9548133595285 37.8666666666667 30.2024539877301 693.7 33 691.1 37 675.7 41 687 29 695.7 44 666.9 34 671.6 23 679.2 40 656.1 34 671.8 32 674.2 43 653.6 38 666.5 37 675.6 54 659.2 52 648.6 36 650.7 43 640 42 627.6 25 631.1 34 623.6 34 610 24 594.7 22 605.6 30 598.8 34 585.2 36 590.6 33 562 30 550 28 567.5 26
-2673668 MONO EASTERN SIERRA UNIFIED 45.933734939759 .310077519379845 .775193798449613 14.1085271317829 2.22222222222223 14.0343137254902 52320.3111111111 6283.43255813954 14.6697038724374 76.9230769230769 0 0 664.066666666667 656.607675906184 644.631556503198 51.6183368869936 56.9424307036247 50.8013698630137 709.7 50 698.3 45 685.1 51 696.6 38 685.6 34 674.7 42 697.1 46 698 60 678.3 57 697.7 57 694.9 62 669.9 54 685.3 55 689.6 67 663.1 57 661.5 49 669.6 61 639.7 42 651.9 48 647 51 634 44 648.5 60 631.2 56 631.4 54 616.2 50 600 50 608.5 50 585.6 50 591.1 68 599.7 62
-2673692 MONO MAMMOTH UNIFIED 21.8400687876182 .582847626977519 .0832639467110741 21.8151540383014 4.83870967741935 14.9848484848485 60159.435483871 4806.48293089092 20.5942275042445 42.8571428571429 0 0 668.114354066986 654.781134259259 655.868557919622 59.5957446808511 53.09375 54.9138755980861 705.7 46 693.8 40 686.2 51 709.7 51 693.3 42 685.9 54 705 54 692.3 55 686.9 65 700.4 60 680.1 49 675.5 61 689.1 59 667.9 46 671 65 673.5 61 665.2 58 657 61 662 58 664.1 68 656.6 67 653.5 64 631.4 56 646.9 67 613.5 47 597 48 610.4 52 579.4 46 585.9 63 589.4 50
-2765987 MONTEREY CARMEL UNIFIED 10.706817231284 2.97716150081566 1.30505709624796 7.54486133768352 4.80000000000001 17.2942307692308 69887.392 5676.6513050571 20.6785411365564 55.921052631579 0 0 685.661973333333 677.989883474576 667.65821845175 69.2104984093319 71.0222457627119 68.8314666666667 724.7 66 721.3 67 694.2 60 718.2 61 719 68 690.1 58 709.7 59 708.5 70 681.8 60 709.8 69 702.2 69 689 73 697.5 67 694.5 71 682.4 76 681 69 684.2 74 668 71 682 76 670.8 73 667.2 75 673.7 79 646.5 70 649 70 644.1 72 634.1 80 636.1 74 607.6 70 591.5 68 612.5 74
-2775473 MONTEREY GONZALES UNIFIED 67.2693726937269 .273878808627182 .410818212940774 86.5114686751113 24.1935483870968 11.8868421052632 58893.1209677419 4200.85210544334 24.9086378737542 11.304347826087 0 0 641.562837480148 644.002448979592 631.401393908105 27.6288074341766 29.0015306122449 20.4552673372155 675.7 18 674.1 20 659 24 669.9 16 676.1 24 651.4 20 664.7 18 668.7 30 653 31 666.6 27 668.1 37 652.9 37 651.5 24 661 38 650.3 42 634.7 23 644.5 37 626.1 28 622.7 22 626.5 29 617.5 28 604.7 21 604.7 30 604 29 578.8 20 574.8 27 578.8 24 553.8 24 547.7 26 559.9 19
-2766092 MONTEREY MONTEREY PENINSULA UNIFIED 40.1345291479821 8.8134238913304 15.6372353176189 25.2257291250499 17.6570458404075 19.471915820029 61011.6332767402 4496.24306831802 20.6070396191124 28.9079229122056 0 95.2380952380952 653.881037456875 642.261085381784 639.283652789647 44.9874252228055 41.4812967581047 43.0559388861508 699.1 39 692.5 38 674.8 39 689.2 31 689.3 37 667.3 34 685.5 35 684.3 45 666.7 44 687.2 47 669.3 38 660.7 46 678.7 49 665.9 43 660 53 660.4 47 651.4 44 644.8 48 649.5 46 641 44 637 47 635.3 47 615.2 40 625.7 48 608.7 43 591.6 42 601.3 43 577.1 44 565.1 42 585.5 45
-2773825 MONTEREY NORTH MONTEREY COUNTY UNIFIED 40.6666666666667 1.84426229508197 1.28539493293592 49.2362146050671 20.1581027667984 14.6853448275862 56619.2134387352 4356.07228017884 21.5795724465558 60.5978260869565 0 0 646.961362367393 637.964190837625 633.754023307436 34.9500554938957 32.8462998102467 31.5178671133445 692 31 691.3 37 672.3 37 684.4 26 685.9 34 660.3 27 679.1 29 680.7 42 662.1 40 674.8 35 665.1 34 653.5 38 663.1 33 656.3 34 645.7 37 645.6 33 638.4 31 632.5 35 638.3 35 623.5 27 626.1 36 621.1 34 600.8 27 611.9 36 596.9 33 580.8 32 590.8 34 559.3 28 552.2 30 573.4 31
-2766134 MONTEREY PACIFIC GROVE UNIFIED 14.2795513373598 4.71158080140907 1.89343901365037 7.08938793483047 2.94117647058823 17.5419491525424 63909.5490196079 4756.38441215324 22.6321036889332 48.1751824817518 0 0 681.073791821561 669.929643296433 661.348655256724 64.1760391198044 64.9292742927429 65.1474597273854 719.7 60 716.7 64 692.9 59 715.5 58 706.7 56 694.4 63 712.2 61 707.9 70 690.3 68 709.7 69 702.2 70 684 69 698.6 68 693.7 71 672.1 66 677.8 66 682 72 657.1 61 670.1 66 662.1 66 657.1 67 663.5 72 640.9 65 651.9 72 637.5 68 609.6 60 620 61 599.4 63 576.7 54 593.1 55
-2866241 NAPA CALISTOGA JOINT UNIFIED 45.6702253855279 .68259385665529 .341296928327645 47.098976109215 4.54545454545455 13.5112244897959 54344.8863636364 4650.72468714448 20.9738717339667 50 0 0 651.626136363636 644.014660493827 642.586842105263 46.3684210526316 40.8425925925926 38.8019480519481 693.2 33 696.4 41 676.4 41 688.6 31 688.3 36 666.8 34 685.5 35 684.8 46 673 51 686.2 46 671.7 40 665.3 50 680.9 51 673 51 668.1 62 658.1 45 652.9 45 643.9 47 645.8 41 642.3 44 636.7 47 625.1 37 603.9 30 627.6 50 599.1 35 592.8 43 593.1 36 566.4 33 556.5 34 590.4 49
-2866266 NAPA NAPA VALLEY UNIFIED 32.7090648979061 1.39607354315986 1.77625428482393 26.4880024929885 6.38852672750979 15.4758720930233 54785.1342894394 3912.94858211281 21.8384091225143 29.2525773195876 3.33333333333333 0 661.755781448539 653.602858646089 645.835317212456 49.862496653877 50.1478428621536 47.9921038300962 707.6 48 708.2 55 683.5 49 696.7 38 697.8 46 674.5 41 695.8 45 694.6 56 675.6 54 693.2 53 681.2 50 666.8 52 680.3 50 672 50 660.1 54 665.4 53 663.8 56 650.3 54 654.2 50 642.8 46 642.1 52 639.2 51 620.4 45 627.3 50 614.1 47 599.4 50 604.9 47 577.6 44 571.1 48 585.4 45
-2866290 NAPA ST. HELENA UNIFIED 34.434250764526 .738007380073801 .43050430504305 37.4538745387454 14.6341463414634 15.6477777777778 51434.4390243902 4386.9594095941 21.2020460358056 44.1441441441441 0 0 671.938825591586 667.352487135506 655.775432525952 54.4567474048443 57.0694682675815 51.5530236634531 707.1 47 708.5 56 690.8 57 696.4 38 705.9 54 677.7 45 700.1 50 709.1 71 682.9 61 688.9 49 685 54 660.5 45 683.1 53 677 54 665.6 59 669.7 57 659.8 52 649.1 52 661.4 58 647.6 51 645.9 56 655.5 66 628.5 53 638.8 61 618.3 51 614.5 64 615.5 57 585.9 52 579.5 57 589.6 49
-3066449 ORANGE BREA-OLINDA UNIFIED 16.1578044596913 8.39899413243923 2.17937971500419 21.6261525565801 4.89795918367348 15.2272727272727 57193.4244897959 3825.95222129086 25.2277564921243 40.7202216066482 0 0 678.08792520838 676.768032786885 664.696648793566 65.8469615728329 69.0533894550288 60.8702410452805 709.9 50 724.2 70 690.5 56 709.4 52 718 67 688.1 56 698.5 48 712.1 72 682.2 60 705.4 65 698.5 66 680.5 65 698.1 67 688.6 66 680.9 74 679.1 67 683.1 73 670.2 73 669.1 65 669.9 73 658.5 68 653.2 64 645.8 69 646.9 68 633.9 65 619 68 626.6 67 606 69 589.7 67 610.8 73
-3066464 ORANGE CAPISTRANO UNIFIED 17.3380285722466 4.70951361577139 1.58062428436302 16.9537511823568 9.39193257074051 12.6999165275459 60779.3835039133 3802.97418728531 23.0004288952883 44.8255813953488 0 10.5263157894737 671.50029010734 664.568939854735 656.9490234375 63.8142361111111 65.2306343697449 61.3329344357412 721.1 62 721.2 69 698.7 65 713.7 57 714.3 66 692.3 60 708 58 710.6 71 689.5 68 706.2 65 697.8 66 680.6 66 693.5 63 687.5 65 672.8 67 676.1 64 679.9 71 657.4 61 665.7 62 657.6 61 650.5 61 652.4 63 633.8 59 641.4 63 626.8 59 611.4 62 618.9 60 595.2 60 587.1 65 605 67
-3066522 ORANGE GARDEN GROVE UNIFIED 48.1560822795015 28.7115519049283 1.29106955609927 44.0514680181755 11.4861186717474 15.6765557163531 65184.4246053348 3835.54895578469 24.6732224738965 20.3812982296868 0 0 644.83656906429 646.905817561278 637.042428705735 42.3321215919774 45.7674837108284 34.1665499681731 690.9 30 702.4 49 675.9 41 683.4 26 698.8 47 667.4 34 677.7 28 692.7 54 670.5 49 682.1 41 682.2 50 663.3 48 669.5 40 673.4 51 659.3 52 655.2 42 660.3 52 644.7 48 639.1 35 636.8 39 631.6 42 622.1 35 615.5 40 618.9 42 591.8 29 588.9 40 591 34 568.7 36 563 40 577.5 36
-3073650 ORANGE IRVINE UNIFIED 10.5164960182025 25.1636962837691 3.03976410389836 7.41078010493907 9.2557251908397 16.0977599323753 62550.9770992366 4352.4882702398 22.6581642900181 0 0 9.67741935483871 684.851803374055 685.089444252277 671.314190288104 72.8213289962825 76.8866020984665 68.4994764397906 720.5 61 735.6 79 702.4 68 715.9 59 725.7 73 696.1 64 713.9 63 725.4 82 697.8 74 714.4 72 711.5 77 692.2 75 702.3 71 704.2 78 684.8 78 689 76 701.2 84 673.5 76 676.7 72 675.6 77 666.4 75 665.2 73 649.9 73 653.9 73 638 68 626.3 74 632.4 71 607.9 70 596.1 72 612.9 74
-3066555 ORANGE LAGUNA BEACH UNIFIED 9.31627349060376 1.88383045525903 1.21664050235479 9.22291993720565 7.61904761904762 16.9064102564103 70274.3714285714 4481.47409733124 24.2635658914729 74.2857142857143 0 0 684.004074889868 677.346978021978 663.808360836084 67.2827282728273 72.2983516483517 69.2643171806167 727.2 68 724.5 71 705.3 71 719 62 710.9 61 693.6 62 719.2 68 716.5 77 695.5 72 714.8 73 704.7 71 685 70 703.5 72 694.7 72 676.1 71 680.1 68 685 75 651.8 55 677.4 72 674.9 77 659.4 69 660.8 70 643.3 67 641.9 63 638.8 69 632.2 79 627.7 68 607.1 70 597 73 609.1 71
-3073924 ORANGE LOS ALAMITOS UNIFIED 11.6002452483139 8.99127975489041 3.11100636342211 11.5366485976903 10.1333333333333 15.0930715935335 67284.9401866667 4726.52929766675 23.1987918725975 49.5921696574225 0 10 683.151620147578 676.998132780083 669.268828685259 69.4602390438247 68.4106287902968 64.971767725377 717.8 58 718.3 65 697.9 64 712.7 55 716.3 65 693.9 61 707.3 57 714.9 75 694.8 71 713.9 72 698.7 67 686.3 71 700.9 70 690.6 68 679 73 682.5 70 681.5 72 663.6 68 669.3 65 655.7 60 657.3 67 658.2 68 638 62 648 69 639.6 69 625.9 74 634.2 73 606 69 601 76 619.4 80
-3066597 ORANGE NEWPORT-MESA UNIFIED 39.0254420008624 4.68356306506596 1.23511684205326 34.1238081122474 4.42678774120317 16.0011663286004 60202.0374574347 4349.23086804012 22.4827586206897 42.8714859437751 0 0 662.048115315852 657.721892473118 652.410960005849 57.3834174161 56.1364157706093 49.8311978545888 702.7 42 701.3 47 682.3 47 700.4 42 699.9 48 680.6 48 693.6 43 694.4 56 676.8 55 699 58 691.1 59 679.2 64 683.9 54 679.7 57 670.3 64 668.3 56 672.3 63 661.3 64 653.6 50 655.2 58 647.9 58 640.1 51 630.8 55 636.2 58 616.1 49 610.3 60 614 55 588.1 53 579 56 598.8 59
-3066621 ORANGE ORANGE UNIFIED 36.019976669583 10.8824233307122 2.08554138603029 36.821771684502 9.42408376963351 16.8176700547303 56415.1108202443 3586.93545078464 25.4488217305271 47.3302570863547 2.56410256410256 12.8205128205128 657.097121487969 653.340421234853 646.768285012285 51.7346437346437 51.4449413348721 45.6142793878856 707.4 47 708.8 54 688.1 54 702.3 44 703.8 52 682.2 50 695.4 45 701.6 63 679.6 57 690.5 50 685.1 53 671.2 56 676.7 47 674.8 52 665.7 59 666.6 54 666.2 58 653.9 57 648.7 45 643.3 46 640.2 50 633.8 45 621.7 46 628.3 51 605.5 40 595 45 599.4 41 574.6 41 571.3 48 585.8 45
-3066647 ORANGE PLACENTIA-YORBA LINDA UNIFIED 21.0138794854435 8.12439729990357 1.88846030215365 25.9201221472195 11.3974231912785 15.153023465704 63101.5312190288 4172.24176309868 24.7171532846715 36.5617433414044 0 0 669.720971327595 666.268838856005 656.515978973547 60.006330544879 62.7434308790175 56.1279712705923 713.6 54 717.9 65 692.3 58 707.3 50 711 60 687.4 55 698.4 48 700.9 63 681.2 59 700.3 60 699.1 66 677.5 62 689.3 59 691 68 672.4 66 672.2 60 677.9 69 657.8 61 660.6 57 656.9 60 651.4 61 647 58 633.6 58 636.7 59 622.3 55 609.2 59 615.9 57 594 59 583.3 60 599.5 61
-3073635 ORANGE SADDLEBACK VALLEY UNIFIED 10.5344975854998 8.40166405402147 2.16749065476908 14.8106837091523 6.05643496214728 14.9799044585987 60372.2057811425 3840.86554925841 22.1910073196236 53.7918871252205 0 0 674.518041730873 671.646055990119 662.072027826377 66.466383404149 69.0351996706464 62.0291949523135 713.1 54 722.3 69 695 61 710.8 54 713.6 63 690 58 706.2 56 712 73 687.8 65 703.8 63 698.7 67 682 67 695.3 65 694 71 678.1 72 678.3 66 684.3 74 665.4 69 669.9 66 664.4 68 658 68 655.6 66 641.1 65 646.3 67 633.1 64 621.5 70 627.6 67 600.8 64 593.8 70 607.8 69
-3066670 ORANGE SANTA ANA UNIFIED 73.2772340256227 4.4085122200539 1.07982529504693 90.7908186971471 26.4875239923225 14.970924927416 69824.5398272553 4102.14481925472 25.0321867794005 21.729365524986 0 56.25 620.712644461482 623.755428773726 616.861563590674 26.7030852994555 29.2057133520329 19.6294119317375 679.8 21 686.3 32 664.6 30 668 15 682.5 32 651.4 21 659.5 15 670.2 31 651.4 31 663.1 25 656.6 26 645.4 30 645.5 20 650 28 638.2 30 632.4 21 635.4 29 626.7 30 620.4 21 623.5 28 616.7 28 599.5 19 596 27 601.1 28 571.1 18 572.6 28 572.8 20 542.4 21 548.7 32 559 22
-3073643 ORANGE TUSTIN UNIFIED 29.8689696247767 8.27604268971387 4.65527401296405 41.6813985464545 5.26315789473685 13.0141193595342 57831.146381579 3629.52956197211 24.1694687289845 39.5953757225434 0 0 653.79774335437 650.860966858654 643.780960137984 49.8789766193944 50.3713530355963 43.5576592082616 695.7 35 702.1 48 679.9 45 695 37 703.2 51 675 42 687.8 37 691.4 53 672.1 50 692.4 52 681.1 49 669.4 55 679 49 673.1 50 661.8 55 660.5 48 661.8 54 646.1 49 644.2 40 641.7 44 638.5 48 632.2 44 621.6 46 628.7 51 609.5 43 604.3 55 608.7 50 580.5 47 575.8 53 591.2 51
-3175085 PLACER ROCKLIN UNIFIED 17.136240833655 3.53894493137093 1.3725814453448 6.66446171655366 4.65116279069767 11.1923875432526 52654.8217054264 3596.09525384488 23.0433039294306 0 0 0 673.707947320618 662.480751278062 657.31606741573 62.7487640449438 60.8290731273616 61.4452770208901 716 57 715.2 63 695.3 62 713.2 56 709.2 60 688.7 57 705 54 708.1 70 686.7 65 710.1 69 692.4 61 683.7 69 696.8 66 679.4 58 674.4 69 678.7 67 670 62 660.2 65 664.7 61 654.9 59 651.8 62 652.5 63 629.8 54 639.1 61 630 62 609.6 60 615.2 57 592.3 57 584.8 62 597 59
-3166944 PLACER TAHOE-TRUCKEE UNIFIED 23.3564377231674 .627574034124338 .431457148460482 17.7093547754462 6.61764705882352 13.5935897435897 49513.0257352941 4638.09786232595 19.6784192173576 44.131455399061 0 0 666.170820668693 655.992460533479 648.804707520891 54.0721448467967 54.4324986390855 53.8347609836972 707.3 47 712.2 60 682.6 48 705.3 48 710 59 678.3 46 696.2 45 700 62 675.2 53 701.4 61 687 56 677.2 62 688.8 59 680.2 58 667.8 62 669.5 57 663 55 653.3 57 660.9 57 647.8 51 648.4 59 646.3 57 616.3 41 631.5 54 615.8 49 597.5 48 606.5 48 592.1 57 580.6 58 590.1 51
-3166951 PLACER WESTERN PLACER UNIFIED 28.6609686609687 .562809545249887 1.44079243583971 17.4245835209365 4.8780487804878 13.3327272727273 42658.3902439024 3503.69765871229 24.2685851318945 27.4611398963731 62.5 0 656.233281893004 645.500357507661 640.171112229492 44.5485656768999 42.8406537282942 43.2489711934156 698.9 38 695.1 41 679.6 45 691.5 33 698.9 48 670.6 38 689.2 39 694.3 56 669.5 48 688.7 48 668 36 659 44 676.9 47 676.4 54 656.5 50 661.5 49 655.6 48 651.3 55 648.5 45 630.4 33 630.5 41 635.9 48 614.6 39 626.5 49 611.6 46 590.5 41 598.9 41 572.5 40 559.2 36 579 37
-3266969 PLUMAS PLUMAS UNIFIED 36.6621067031464 .663533314901852 1.21647774398673 6.85651092065247 2.71739130434783 16.1540476190476 56500.125 4912.70168648051 21.2320916905444 33.1932773109244 0 0 668.071468144044 656.273361934477 650.500313479624 52.3761755485893 50.1907176287052 51.4273842500989 706.4 46 700.2 47 685.8 51 699.4 41 694.7 43 673.5 40 697.7 47 694.3 56 674.3 52 696.1 56 679.4 48 668.6 54 683.3 53 672.8 50 663.1 57 667.4 55 658.6 51 648.5 52 660.8 57 651.2 55 644.4 55 643.8 54 621.2 46 632.3 54 620.3 53 601.5 52 609.5 51 587.6 53 576.9 54 596.5 58
-3366977 RIVERSIDE ALVORD UNIFIED 42.2902910247004 4.02122641509434 7.22287735849057 47.1580188679245 17.2413793103448 13.0070779220779 62390.7051124438 3758.19761084906 25.181954887218 41.6666666666667 0 70.5882352941177 638.111402394775 630.693225584594 627.071274732972 34.6095254771494 33.3498968363136 30.1157474600871 687.5 27 687.6 33 667 32 678.2 21 684.7 32 655.2 23 676.4 27 681.1 42 660.5 38 674.4 34 662.9 32 655 40 660 31 656.5 34 649.7 42 649.6 37 648.7 42 636.3 39 636.4 34 627.3 31 626.3 36 616.8 31 601.7 30 611.6 37 583.6 25 573.6 28 582 27 559.1 32 550.6 32 569.9 31
-3366985 RIVERSIDE BANNING UNIFIED 75.5298651252409 13.3685136323659 13.8522427440633 36.6974494283201 20.2970297029703 13.8173333333333 60074.7807425743 4456.32191292876 21.8996590355577 41.8181818181818 0 12.5 634.098734577665 628.219981640147 620.879110554338 25.6636392107736 25.7264381884945 23.4349889275546 677.9 19 684.4 29 658.6 24 672.1 17 680.3 27 648.2 18 666.3 19 671.9 33 651.9 30 670.3 30 654.3 24 645.2 30 655.6 27 645.9 24 639.7 31 639.8 27 629.3 23 625.6 28 627.6 25 623 26 612 23 609.6 25 598 24 602.2 28 581.8 22 574.5 27 580.2 25 551.7 23 541 21 561 20
-3366993 RIVERSIDE BEAUMONT UNIFIED 58.7464387464387 1.15131578947368 3.4265350877193 34.6491228070176 9.02777777777779 15.9661585365854 59270.4442361111 4070.73959429825 24.7562674094708 26.25 0 12.5 645.879280347964 637.157724827056 633.962882603642 41.2026346377373 38.8439661798616 37.7323052589957 698.4 38 692.6 39 678.5 44 690.5 32 684.8 33 666.2 33 687.9 37 684.8 46 670.7 49 685.2 44 665.1 34 656.8 42 674.9 45 659.5 37 657.3 50 656 43 655.6 48 646.5 50 640.8 37 630.9 34 634.1 44 623.7 37 608.6 34 614.5 38 599.3 35 592.7 43 592.5 35 562.3 31 562.4 39 573 31
-3373676 RIVERSIDE COACHELLA VALLEY UNIFIED 85.5145886105639 .138121546961326 .276243093922652 96.1671270718232 36.4653243847875 11.9207692307692 61385.5887024609 4099.01191902624 25.2796420581656 13.5467980295567 0 0 612.505972615675 616.307526637951 605.373097282673 15.8368427243854 19.4258671503061 12.4275259678942 670.5 14 676.1 21 652.3 19 661 11 675.8 23 640.5 13 653.8 12 664.4 26 641.4 22 651.2 16 649 20 632.6 19 632.1 12 639.1 18 623.3 16 622 14 625.5 21 613.2 18 608.6 13 611.1 17 600.4 15 586.8 11 585.9 16 585 16 557.9 9 559.9 16 560.2 12 535.4 13 538 19 549.1 11
-3367033 RIVERSIDE CORONA-NORCO UNIFIED 41.5113871635611 3.60423802054992 4.64453762683653 41.7784321884703 11.3732097725358 13.5429739776952 64063.4574557709 4083.55417560257 25.2311373152183 34.6372688477952 0 34.2857142857143 649.575955248793 642.475290069264 639.372187638951 44.6634059582037 40.9677063572595 38.9997744394821 695 34 693.3 39 673.8 39 686.5 28 687.8 36 665.2 32 685.8 35 684.6 46 669 47 685.8 45 673.7 42 662.5 47 673.9 44 666 43 657.6 50 659.7 47 659.1 51 648.4 52 643.2 39 637.8 40 636.9 47 628 40 610.6 35 623.9 47 600.8 36 587.4 38 597.9 40 573 40 563.3 40 584.9 44
-3367058 RIVERSIDE DESERT SANDS UNIFIED 55.9912521615299 1.2646835922698 2.4677908298598 60.0416824554756 15.8088235294118 12.6873655913979 64123.518125 3937.20569865479 25.2138016019717 43.1718061674009 4.34782608695652 0 642.625749337795 640.398884858256 630.882184459367 35.1719884884199 37.7696493349456 31.2600027882337 692.2 32 690.1 35 669.9 35 682.6 25 686.7 34 659.8 27 680.7 31 684.9 46 663 41 675.3 35 664.5 33 650.9 35 662.7 33 663.9 41 647.5 39 649.2 36 647.7 40 635.3 38 635 32 636.5 39 630.3 40 618.9 32 609.7 35 613.7 37 587.8 26 584 35 584.3 28 563 31 561.6 39 574.1 32
-3367082 RIVERSIDE HEMET UNIFIED 62.4077800134138 1.43589743589744 2.66666666666667 29.2307692307692 9.03328050713154 15.5025143678161 59735.0526624406 3916.53708397436 24.517557734894 21.4285714285714 0 5.26315789473684 650.938309754281 645.971246796045 636.643406695025 41.9052154614389 44.9794031490297 40.3741623231571 703.7 43 701.6 48 678.6 43 692.4 34 691.6 40 667.1 34 686.7 36 688.1 50 665 43 687.6 47 675.5 44 663.3 48 674.6 44 664.1 41 659.5 53 659.6 47 659.5 51 643.8 47 648.5 45 645.5 49 635.1 45 625 38 616 41 615.9 39 600 36 592.5 43 591.1 34 567.7 35 566.7 44 575.7 34
-3367090 RIVERSIDE JURUPA UNIFIED 50.2109216989309 1.38881142283451 5.30425567516314 53.2545038764014 23.789764868603 13.2753071253071 62068.7191286307 3826.45784650566 24.6666666666667 26.3835263835264 0 4.16666666666667 638.791092144514 630.901365487503 627.674335051968 34.6180538505606 32.1523596582289 30.0636393768644 690.5 30 689.5 35 669 34 680.6 23 683.8 31 657.1 25 676.1 27 679.6 41 659.9 38 677.3 37 663.2 32 653.3 38 661.1 32 654.6 32 649.4 41 648.5 35 648.2 41 637.4 40 633.9 31 627.4 30 625.1 35 616.9 30 598.3 25 610 34 586.6 25 576.1 28 586.3 30 561 30 552.7 30 572.5 31
-3375176 RIVERSIDE LAKE ELSINORE UNIFIED 38.1164650109672 1.79080718975924 4.07242820189693 30.1120912648405 11.4186851211073 13.05374617737 62326.655449827 3960.63418584599 25.3969359331476 25.3833049403748 0 83.3333333333333 649.218096224461 642.148974546786 634.754570195195 41.2464339339339 42.5663797839224 39.5877977591564 696.1 35 694.7 40 670.8 36 689.4 31 692.9 41 666 33 686 35 688.6 50 668.6 47 684.1 44 667.9 36 656.3 41 674 44 665.4 43 655.4 48 657.1 44 656.1 48 644.4 47 645.2 41 639.6 43 632.3 42 630.3 42 615.9 41 619.7 43 601.5 37 590.9 42 593 35 573.3 40 564.2 41 580.4 39
-3367124 RIVERSIDE MORENO VALLEY UNIFIED 43.0689140716757 3.26543602800764 23.676002546149 35.3532781667728 23.1235784685368 14.0119418132612 58401.1608491281 4173.91743189052 24.0922034941892 25.5924170616114 2.85714285714286 22.8571428571429 642.660522821957 634.998522406493 629.402435943703 34.4060357271743 33.1140613973183 31.6017030627661 692.3 32 694.2 39 670.6 35 687 29 692.5 40 662.4 30 676.9 27 680.2 41 657.9 36 678.6 38 664.4 33 652.4 37 665.4 35 656 33 647.4 39 649.1 36 643.6 36 635 37 634.6 31 624.4 27 622.6 33 618.9 32 602.9 28 612.9 37 589.8 27 576.4 28 585.2 29 559.8 29 552.9 30 572.7 31
-3375200 RIVERSIDE MURRIETA VALLEY UNIFIED 18.2164543398024 2.10569777043765 3.43724194880264 17.8468208092486 15.1933701657459 9.21929611650485 59134.6718232044 3774.6010125929 25.86148169174 38.2566585956416 0 100 664.968239211877 655.571895604396 650.502999299229 56.3379117028732 54.6623626373626 53.4476203690856 706 46 701.7 48 682.7 48 702.5 44 698.8 48 680.6 48 699.1 48 702.4 64 678.3 57 695.8 55 676.8 46 671 56 683.9 54 672.8 51 662.9 57 667.3 55 671.7 63 651.2 55 662.3 58 653.8 58 649.6 60 651.1 62 633.2 58 643.2 65 621.3 54 601 52 614.2 56 589.5 55 578.8 56 596.9 58
-3367173 RIVERSIDE PALM SPRINGS UNIFIED 62.5049747000967 1.15749423932265 5.94287551578158 53.4912384116607 8.93333333333334 13.0700234192038 57242.9728133333 4143.36832699212 24.2010412494994 13.7540453074434 0 9.52380952380952 638.104933204571 636.219372751447 626.655804398614 33.8860871666801 38.3268418582825 30.6045388701111 690.7 30 689.8 35 669.8 34 682.3 25 687.3 35 658.3 26 677.2 28 680.4 41 658.5 36 676.8 36 663.8 33 651 36 664.6 35 657 34 647.8 39 645.2 32 640.1 33 632.1 34 635.8 32 637.2 40 628.3 38 617 30 612.7 38 611.4 35 588.7 27 593.5 44 587.1 30 561.9 30 568 45 572 30
-3367181 RIVERSIDE PALO VERDE UNIFIED 55.9128893390732 .632911392405063 10.5221518987342 52.0833333333333 10.7954545454545 14.1102564102564 61885.4805113636 4694.47362869198 22.1958121109225 20.9302325581395 0 0 642.057746478873 637.300819061802 629.136989409985 33.160363086233 34.7956068503351 30.516939474686 692.1 31 689.2 35 671.5 36 681.8 24 684.2 32 656.7 24 672.7 24 675.1 36 656.2 34 674.2 34 669.1 38 650 34 663.7 34 660.9 38 646.3 38 647.7 35 643.4 36 634.4 37 632 29 625.7 29 621.5 32 617.8 31 603.5 29 610.5 35 593.3 30 580.5 32 589.3 33 564.7 33 564.6 42 570.8 29
-3367215 RIVERSIDE RIVERSIDE UNIFIED 47.2343460276708 3.59830536819221 10.3266625787391 40.1109314900496 21.7477003942181 10.9766241299304 61445.6489947438 4384.20497268521 23.5685282566731 33.7724550898204 0 19.047619047619 652.423640417888 645.365187645035 639.211258767073 42.8254788564866 42.4636712811075 39.2414419622579 701.5 41 701.3 47 680.3 45 695 37 694.8 43 671.5 38 684.7 34 684.6 46 666.3 44 685.6 45 671.4 40 661.1 46 672.7 43 664.2 41 655.9 48 657.6 45 658.4 50 645.2 48 645.9 42 642.3 45 636.4 46 627.4 40 613.6 38 618.7 42 595.2 32 585.9 37 591.8 34 567.2 35 562.1 39 579.3 38
-3367249 RIVERSIDE SAN JACINTO UNIFIED 64.1791044776119 1.00730792020541 3.85147145960893 50.8196721311475 7.44680851063831 13.1198113207547 58040.6569680851 3564.44928500889 26.0216216216216 11.9318181818182 12.5 25 633.898633323641 630.169063926941 625.056898550725 32.6866666666667 32.3090753424658 27.9002617039837 686.4 26 687.1 32 673 37 685.5 27 685.8 33 670.4 37 677.5 28 678.3 39 663.5 42 674.5 34 669.2 38 651.1 36 659.4 30 653 30 645.8 37 648.3 35 642.9 35 635.6 38 630.7 28 625.4 28 617.1 28 611.4 26 597.2 24 604.5 29 587.6 26 585.4 36 583.5 27 549.8 21 553.3 31 566.2 24
-3375192 RIVERSIDE TEMECULA VALLEY UNIFIED 18.1699877999187 1.95702750786917 3.8250992199261 17.784316408923 8.09792843691149 12.194847972973 64156.1068361582 3664.26510606268 25.5497985031664 25.8680555555556 6.25 81.25 664.46675821574 654.871055332649 652.040092513924 58.8132729160767 56.1685173089484 54.7503551472677 709.6 50 702.7 50 687.3 53 703 45 699.2 51 681.1 49 697.3 47 699.7 62 680.9 60 695.8 55 686.4 55 671.6 57 687.3 58 677.3 56 668.1 62 670.5 58 667.7 60 657.1 61 661.2 58 653 57 653.2 63 647.9 59 628.8 55 638.8 61 620.7 55 603.2 55 612.7 55 591.2 58 577.4 57 599.9 63
-3375242 RIVERSIDE VAL VERDE UNIFIED 54.8438652569462 1.89759712553335 23.5796092521895 45.823040646755 21.2389380530973 10.9077922077922 58447.4374631269 3799.07750392993 25.5414949970571 31.8021201413428 0 0 637.066459230892 632.573991655077 627.424335378323 34.5670913953123 34.0865399474579 30.0086165629488 690.2 30 688.6 34 668.3 33 679.3 22 682.8 30 654 22 675.2 26 678.6 39 656.5 35 674.2 34 663.7 32 649.5 34 659.4 30 652.4 30 644.5 36 642.8 30 635.5 29 633.1 35 637.3 34 635.1 38 631.9 41 614.9 29 609.4 34 613.8 37 588.5 27 582.3 34 587.5 31 567.2 35 562 39 578.9 37
-3473973 SACRAMENTO CENTER JOINT UNIFIED 29.3060600267635 7.97491039426523 13.8709677419355 10.2867383512545 10.6995884773662 13.2324074074074 55944.1275720165 3811.04928315412 22.2895064288677 78.968253968254 0 42.8571428571429 662.739604722793 655.475031525851 650.780858585859 57.0383838383838 56.1669609079445 51.7995379876797 703.4 43 706 53 681.1 47 695.9 37 696.9 46 672.5 39 686.6 36 690.8 52 669.2 47 700.1 59 696.1 65 676.1 61 686.1 56 689.8 68 671.9 66 670.3 58 667.8 62 662.7 67 656.7 54 649.3 55 650.2 61 641.1 54 625.1 54 640.9 64 617.1 55 599.6 54 611.8 56 593.4 62 568 52 592.9 58
-3467314 SACRAMENTO ELK GROVE UNIFIED 36.9447663190421 15.2125780530885 19.0934646864194 16.269870885887 17.4043062200957 12.2778861360042 58331.6309808612 3762.5834017464 23.1169705126637 29.5801526717557 0 33.3333333333333 654.782969037773 648.209210391211 643.323938438074 47.4667059516794 45.1266043741657 42.0050387462209 692.9 32 697.5 43 675.4 40 688.4 30 693.9 42 667.9 35 686.8 36 692.7 54 671.3 49 685.7 45 677.4 46 660.8 46 674.5 44 668.2 45 655.9 48 661.5 49 657.8 50 649.5 53 648.3 44 638.2 41 641.1 51 630.8 43 612.8 37 626.7 49 609.6 44 592.9 44 605.1 47 584.7 50 571.4 49 593.7 54
-3467330 SACRAMENTO FOLSOM-CORDOVA UNIFIED 26.1143156790771 5.3087986463621 9.91257755217146 8.67174280879865 9.72222222222221 14.2631906077348 51104.6527777778 3845.84679921038 22.1977666289044 27.7091906721536 4.34782608695652 30.4347826086957 663.980873539868 658.512398760124 649.557049411291 54.2888195632485 56.1346865313469 51.1814118842052 703 43 703.8 50 683.1 48 697.9 40 700.6 49 674.3 41 693.8 43 700 61 675.2 53 697.6 57 688 57 676.5 61 682.1 52 679.3 57 669.5 64 669.5 57 672.5 64 655 59 661 57 654.6 58 647.3 57 642.7 54 627.1 52 630.5 53 617.4 50 605 55 609.4 51 590.7 56 580.3 57 592.9 53
-3467348 SACRAMENTO GALT JOINT UNION 33.1153765028475 1.77095631641086 1.18063754427391 35.7260920897285 9.16666666666667 11.7725563909774 51742.2041666667 4581.18913813459 22.2133333333333 23.9837398373984 0 0 656.585923753666 650.842329994729 644.455909694555 46.5211155378486 45.3125988402741 41.4806718208478 702.8 42 699.8 46 682.6 48 691.5 33 690.4 39 668.8 35 683.9 34 684.9 46 668.3 46 686.8 46 675.5 44 664.5 50 676.6 47 667.6 45 659.5 53 663.9 51 666.8 59 653.6 57 642.5 39 635.2 38 633.8 44 627.6 40 612.2 37 622.2 45 608.8 43 600.1 50 604.3 46 576.5 43 572.3 50 585.2 44
-3475283 SACRAMENTO NATOMAS UNIFIED 37.9553798362045 6.22614982928299 29.7449287005423 26.2301667001406 12.2340425531915 10.6661137440758 57672.6808510638 3312.51496284394 22.4284140969163 0 14.2857142857143 14.2857142857143 654.991544666866 642.894449262793 641.367069121642 43.5976456383942 38.1156403584851 39.4711682103376 694.8 34 688.5 35 673.4 38 684.6 27 684.9 32 660.9 28 680.5 31 679.1 40 663.6 41 686.6 46 670.9 39 663 48 674 44 661.6 39 660.7 54 658.8 46 651.4 44 647.6 50 648 44 637.1 40 636.7 47 626.2 38 607.8 33 623.7 47 607.7 42 591.8 43 599.5 41 575.1 42 557.4 35 581.3 40
-3467413 SACRAMENTO RIVER DELTA JOINT UNIFIED 35.978835978836 1.40728476821192 1.03476821192053 36.9205298013245 11.9047619047619 14.7351063829787 51080.373015873 4420.62417218543 20.1801801801802 45.3125 0 0 652.409325771897 645.858159509202 639.278937259923 41.1651728553137 42.3993865030675 38.5519848771267 697.9 37 698.6 45 680.1 45 688.8 30 692.1 40 669.4 36 681.4 31 689.3 51 667.8 46 691.1 50 680.4 49 659.2 44 676 46 671.1 49 657.4 50 654.3 41 654.5 47 640.6 43 641.3 38 633.5 36 628.4 38 630.5 43 612.6 37 616.7 40 594.6 31 580.1 32 591.1 34 569.6 37 560.6 38 576 34
-3467439 SACRAMENTO SACRAMENTO CITY UNIFIED 59.4064346159987 23.8705379883233 21.9525096978959 23.5061322048509 27.4574669187146 14.0032991803279 61997.025047259 4125.40662591591 24.8267842434226 38.742611499194 1.2987012987013 10.3896103896104 642.590368715732 637.104240392201 631.379925928053 37.3836812035256 37.4236729403809 33.106930463288 694.4 34 697.5 43 676.9 42 684.5 27 691.4 39 666.1 33 677.7 28 683 44 664.6 43 680.8 40 675 43 658 42 664 34 664.9 42 650.5 42 651.5 38 651.5 43 637.5 40 636 33 631.7 34 625.3 35 620.1 33 606.4 32 614.3 38 591.8 29 578.2 30 588.5 32 567.1 35 552 30 572.2 30
-3467447 SACRAMENTO SAN JUAN UNIFIED 28.8497509510099 4.59476973890503 5.95982189518574 8.97213454020946 7.18722271517302 12.6162215239592 58872.7457852706 4335.65953132512 21.750739140323 39.2844235634261 1.21951219512195 6.09756097560976 670.17213159824 662.936219245407 655.298383336865 58.550422330538 58.9531301507387 55.3249022482894 708 48 710.7 57 687.1 53 703.8 46 706.8 56 683.1 50 700.2 49 702.2 64 681.2 59 700.1 59 686.8 55 675.6 61 687.6 57 678.8 57 669.9 63 676.4 64 676.7 68 661.4 65 662.8 59 655.1 58 650.5 61 648.4 59 632.1 57 636.4 58 624.2 56 610.2 60 616.8 58 591.1 56 579.7 57 595.9 57
-3575259 SAN BENITO AROMAS/SAN JUAN UNIFIED 35.7537490134175 2.109375 .625 40.46875 16.6666666666667 11.9181818181818 61919.85 4272.915625 22.2222222222222 0 0 0 657.229098805646 644.65762886598 639.917678381257 48.8051118210863 48.5010309278351 49.1226927252986 702.3 42 694.2 39 678.6 44 691.7 33 696.3 43 667.8 35 690.2 39 695.3 56 668.4 47 700.6 60 680 49 676.8 62 677.5 47 673.1 51 663.5 57 674 61 674 66 653.3 57 651.1 47 644.2 47 635.3 45 636.1 48 609.9 35 619.4 43 609.5 44 596.5 47 598.4 41 591.7 57 571.3 49 587.3 47
-3675077 SAN BERNARDINO APPLE VALLEY UNIFIED 43.7316116377901 1.65699001891839 17.2744471263618 20.431861178159 5.16898608349901 13.2070035460993 62106.3459244533 3058.08872072542 24.5208208806535 35.8391608391608 13.3333333333333 86.6666666666667 652.699094870935 642.722250164006 639.455594713656 44.5601321585903 40.9465340039361 41.3233880880545 705.5 45 700.8 46 682.6 48 694.6 36 688.1 36 669.9 37 690.4 40 685.6 47 672.7 51 690.2 50 673.3 42 667 52 673.8 44 660 37 656.9 50 654.1 41 652.3 45 643.3 46 646 42 637.7 40 634.8 45 632.8 45 616.5 41 622.3 45 599.4 35 587 38 591.7 34 568.8 36 562.1 39 579.8 39
-3667611 SAN BERNARDINO BARSTOW UNIFIED 50.6241134751773 1.10144927536232 11.7826086956522 38.1304347826087 19.2691029900332 14.4014662756598 57100.6212624585 4203.24405797101 22.9867549668874 12.987012987013 0 0 644.092824226465 638.257651547266 630.222731201383 34.9842264477096 35.8380669775329 33.0118499012508 693.2 33 693.1 39 671.2 36 685.7 28 686.9 34 656.4 24 675.6 26 678.3 39 655.8 34 681.4 41 670.1 39 655 40 671.1 41 662.7 40 648.6 41 652.9 40 645 37 636.5 39 636.7 33 632.5 35 627.1 37 614.1 28 602 28 608.1 33 595.2 32 584.4 35 591.7 34 559.9 29 556.4 34 575.1 33
-3667637 SAN BERNARDINO BEAR VALLEY UNIFIED 40.7033727298933 .44931199101376 .954787980904241 11.4293737714125 3.52112676056338 13.8814814814815 57824.8802816902 3838.35888795282 25.3642857142857 35.4285714285714 0 100 662.867092034029 653.319750755287 647.145671412082 51.0623316660254 50.2843655589124 48.7935034802784 706.7 46 704.6 52 686.9 53 695 37 701.4 50 670.7 38 689.2 39 692.1 54 670.4 49 694.2 54 681.1 50 662.8 48 680 50 667.7 45 656.9 50 661.2 48 655.4 48 645.4 48 655.7 52 643.5 47 642.7 53 645 56 623.2 48 635.8 58 625 57 608.5 58 619.6 60 580.2 47 574.4 52 591.7 53
-3667678 SAN BERNARDINO CHINO UNIFIED 25.955670898506 6.02325581395349 5.23255813953488 38.202657807309 18.6985172981878 15.2127715355805 62270.0461285008 3664.25887043189 24.169686985173 29.0155440414508 0 10 655.456794936477 649.093457228997 645.536307072925 50.6846006038979 47.2450164244251 43.8672659725726 694.7 34 695.2 41 680 45 689.7 32 693.4 41 675.4 43 687.2 37 688.5 50 676.9 55 690.3 50 680.8 49 669 54 678.9 49 671.7 49 663.3 57 663.2 50 662.1 54 651.3 54 650.6 47 644.4 47 640.8 51 637.3 49 623.6 48 630.9 53 605.6 40 593.2 44 600.5 42 580.5 47 570.9 48 591.3 52
-3667686 SAN BERNARDINO COLTON JOINT UNIFIED 44.4521203103412 2.01990343876244 9.0846388806779 63.6860774460538 19.094247246022 11.8951140065147 59625.2607099143 3811.72376588827 24.0302328416433 34.4459279038718 0 48 634.139532950423 631.313346569601 626.092709725316 33.9203414996288 33.8149863960585 27.9621372430472 691.4 31 690.1 35 671.1 36 682.5 25 685.7 33 661.8 29 673 24 676.4 37 657.7 36 674 34 663.3 32 651.7 36 658.2 29 652.5 30 645.1 36 648.4 35 653.9 46 640.4 43 632.2 29 631.8 34 628 38 613.8 28 605.7 31 611.6 35 583.8 23 580.3 32 583.6 27 553.6 24 551.7 30 568.2 26
-3667710 SAN BERNARDINO FONTANA UNIFIED 39.998063204106 1.10104404176167 11.8054722188888 65.7746309852394 19.7108066971081 12.9685172647258 60468.7168949772 3939.78189127565 24.3713073776701 18.2534001431639 0 56.25 627.433972790867 625.397574910601 618.264922374043 25.880959431448 27.0517489415923 21.4247886356809 681.2 22 686.3 31 664.7 30 670.7 16 682.4 30 654.1 22 667.5 20 673.4 34 656.3 34 668.1 29 657.4 27 642.5 28 651.2 23 648.7 26 637.3 28 636 24 634.1 27 622.3 25 624 22 621.3 25 616.1 27 604.8 21 596.5 23 601.5 27 575.9 18 574.2 27 574.8 21 547.9 20 545.7 24 561.2 20
-3675044 SAN BERNARDINO HESPERIA UNIFIED 47.6781020421918 .955685016691759 5.30863389408915 31.1906787981934 11.8971061093248 12.1917877906977 62220.1045016077 3865.72474962362 24.8130160271977 13.3440514469453 0 61.1111111111111 645.811905419082 636.345861854387 632.887036026201 37.3387008733625 34.2974486621033 34.072499769988 697.9 37 693.7 39 674.4 39 690.1 32 688 36 666.6 34 683.1 33 681.5 43 664.7 43 678.8 38 667.3 36 654.8 39 668.8 39 659 36 651.9 44 651.1 38 644.5 37 637.8 40 634.5 31 625.7 29 625.6 35 619.3 33 600.6 27 612.5 36 593.9 31 579.3 31 589.5 32 561.4 30 552.3 30 573.6 32
-3675051 SAN BERNARDINO LUCERNE VALLEY UNIFIED 62.3115577889447 1.22484689413823 2.27471566054243 17.9352580927384 5.26315789473685 10.4692307692308 59114.4912280702 4587.3053368329 20.4873646209386 26.0869565217391 0 0 646.713190954774 636.121039903265 631.081157635468 35.2697044334975 34.2660217654172 33.7110552763819 684.9 25 677.6 23 665.5 30 694.1 35 684.9 33 665.9 33 683.4 33 682.1 44 663.3 41 676.3 36 660.9 30 648.1 33 653.2 25 646.6 24 634.8 26 648 35 643.4 36 625 27 640.7 37 636.1 39 631.1 41 632.8 44 613.1 38 623.5 46 594.1 31 577 29 592.5 35 567.1 35 562.6 40 577.1 36
-3667777 SAN BERNARDINO MORONGO UNIFIED 46.7422949503062 1.50383631713555 8.19437340153453 13.3401534526854 4.5045045045045 13.4019387755102 62286.0720720721 4128.06496163683 22.6292806251436 13.5 5.88235294117647 0 649.351451800232 645.395127543709 636.913963963964 43.5964835803546 46.3238750358269 40.457462253194 703.7 44 700.6 47 681.6 47 697.6 39 696.6 46 670.3 37 687.4 37 688.6 50 666.8 45 683.1 43 675.2 44 656.8 41 670.2 40 665.6 43 650 42 655.8 43 659.2 51 644.7 47 643.8 40 638.9 42 630.8 41 630.2 42 617.5 42 624.3 47 604.8 40 596.2 47 599.6 42 570.1 38 573.6 51 585.7 46
-3667801 SAN BERNARDINO NEEDLES UNIFIED 54.401519949335 1.16194625998548 3.7763253449528 17.283950617284 2.94117647058823 16.7946666666667 61234.9852941177 4903.2381989833 21.2772133526851 40.3508771929825 0 10 648.882936918304 640.701925025329 637.151745379877 44.7659137577002 42.2958459979737 40.3660806618408 698.2 37 694.5 40 680 45 688.5 30 690.3 39 669.2 36 683.9 34 680.9 42 668.6 47 683.2 43 675 44 659 44 675.1 45 669.9 48 655.2 48 656.5 43 648.3 41 644.1 47 639.3 36 628.8 32 632.7 43 632.9 45 620.2 45 625.8 49 597.3 33 588.7 40 593.6 36 588.4 53 573.2 50 590.9 52
-3667843 SAN BERNARDINO REDLANDS UNIFIED 34.6040390288178 8.12395760477753 7.96255447355679 30.9894011943832 15.0335570469799 14.8490898058252 60477.2657718121 3763.68477968473 24.7211127943809 24.7743229689067 0 50 656.081160748377 651.376363772792 643.838623810985 47.177124884934 47.9456741952427 42.7080565101184 694.5 34 701 47 675.2 40 694.7 37 699.9 49 675.2 42 688.4 38 694 56 673.9 52 691.8 51 680.7 49 667.5 52 678 48 673.2 50 662.2 55 659.3 46 658 50 645.8 49 650.6 47 642.1 45 638.5 48 631.3 43 614.7 39 622.3 45 604.8 39 594.5 45 600.6 43 576.9 43 572.3 50 585.8 45
-3667850 SAN BERNARDINO RIALTO UNIFIED 57.88501888376 2.87577590948377 27.3984442523768 51.5911055236898 24.4939271255061 12.1739946380697 59096.3066801619 3838.00078573112 25.1621099705255 13.2394366197183 0 70.8333333333333 630.819776598716 626.145838751625 623.00284021703 29.9329531613332 27.4568162115301 24.1199664898073 686.7 26 684.5 30 667.6 32 676.5 20 681.2 29 656.7 24 669.3 21 673 34 656.2 34 670.7 31 660 29 645.9 31 656.7 28 650.9 28 643.2 34 640.4 28 640.5 33 632.1 34 627.5 25 621.1 24 622.6 33 607.6 23 596.1 23 607.8 32 579.2 20 571.1 24 579.3 24 550 21 545.3 24 565.1 23
-3667868 SAN BERNARDINO RIM OF THE WORLD UNIFIED 24.7007250042151 .979604946202023 1.26866870081901 13.0560462502007 10.2766798418972 15.791958041958 62201.8656126482 3995.41560944275 24.4390832328106 31.2865497076023 0 0 663.493173758865 657.51976744186 651.892599080359 55.119115393037 53.1539621016365 48.792109929078 707.5 47 703.1 49 689.4 55 698.5 40 694.3 43 680.3 48 692.6 42 690.6 52 678.2 57 695 55 678.4 48 668.3 54 686.3 58 678.5 57 668.7 63 662.6 50 666.3 60 653 57 651.6 48 648.3 54 645.2 56 638.6 52 629.5 58 633.1 57 613 51 601.3 55 608.9 53 575 47 573 57 587.6 52
-3667876 SAN BERNARDINO SAN BERNARDINO CITY UNIFIED 70.2357454924486 3.36604410678485 19.6180225809855 50.849424923499 25.2196382428941 11.6793846153846 61672.8863049096 4147.68156589638 23.9868434683518 22.3952095808383 0 42.6229508196721 629.083041804347 626.491443928802 621.690639289877 29.5900654532413 29.2053692063679 23.6404037954346 688.8 28 692.9 39 672.1 37 675.9 20 685.5 33 657.5 25 669 21 675.5 36 656.6 35 669.5 30 660.8 30 648.5 33 653.6 25 652.2 29 641.8 33 638.9 26 638.9 32 629.1 31 624.2 23 623.2 26 618.5 29 606.5 22 597.1 24 605.1 30 580.3 21 574.1 26 581 25 551.8 23 546.6 25 565.5 23
-3673890 SAN BERNARDINO SILVER VALLEY UNIFIED 46.9641550841258 2.10789567702751 18.1850660950339 12.0400142908182 7.91366906474819 11.0990683229814 60618.4100719425 5342.53733476242 20.2528901734104 18.348623853211 0 0 650.362307692308 643.62908301682 635.705941143809 43.6912826207662 46.2045577862181 43.4203296703297 698.9 38 693 38 682 46 697.3 39 693.5 42 678.1 46 689.3 39 683.3 45 668.8 47 692.4 52 673.6 42 666.4 51 674.7 44 659.8 37 650.6 43 656.9 44 652.5 45 637.2 39 647.9 44 644 47 634.1 44 634.5 47 623.5 48 624.2 47 604.6 40 599.6 50 596.4 39 576.9 44 581 58 580 39
-3673957 SAN BERNARDINO SNOWLINE JOINT UNIFIED 20.984126984127 .826188620420889 2.08885424785659 16.6796570537802 4.05405405405406 8.42002881844381 53764.1993243243 3823.18035853468 22.5206611570248 10.2484472049689 9.09090909090909 0 662.535723570191 655.407981119931 648.334442523768 51.4716940363008 51.1527569191161 48.2629982668977 701.2 41 702.5 49 680.8 46 694.3 36 700.8 50 675.1 42 691.4 41 696.7 59 673.3 51 696.9 56 682.8 52 671.8 57 679.7 50 668.3 46 660.6 54 664.6 52 662.8 55 648.8 52 658.5 55 651.9 56 644.2 54 641.6 53 618.4 43 628.5 51 612.5 47 598.8 49 606.7 48 584.2 50 575.7 53 596.6 58
-3675069 SAN BERNARDINO UPLAND UNIFIED 30.647120055517 7.22630173564753 11.4903204272363 28.4796395193591 11.4563106796116 13.9812068965517 59659.7650485437 3922.56667222964 23.5105551211884 35.3135313531353 6.66666666666667 6.66666666666667 644.531339823829 632.309168925023 634.454106132436 50.2338278024163 44.4777175549533 46.7111729253593 677.6 19 674.3 19 653.2 20 677.6 21 677.1 24 655.7 24 682.2 32 677.1 38 669.7 48 692.3 52 683.8 52 669.1 54 683.2 53 674.4 52 664.8 59 664.5 52 663.2 55 651.6 55 649.7 46 639.2 42 637.7 48 634 46 613.3 38 628.1 50 605 40 586.7 38 600.1 42 576.2 43 561.5 39 588.5 49
-3667918 SAN BERNARDINO VICTOR VALLEY 44.9199607971251 1.61820323640647 16.4176328352657 36.1708723417447 15.5339805825243 10.971671388102 61492.8507936508 4057.49705499411 26.5114405414115 13.9705882352941 15 20 648.337447048856 642.959543184761 636.856736065727 40.8697600597517 40.029221379693 36.1985314882801 693.3 32 689.7 35 671.5 36 687.8 30 686.3 34 664.1 31 681.1 31 679.3 40 662.3 40 679.9 39 670.3 39 653.4 38 667.9 38 660.1 37 651.9 44 657 44 660.9 53 647.4 50 643.8 40 637.7 40 632.8 43 627.1 39 614.4 39 622.1 45 600 36 591.1 42 598 40 564.5 33 562.5 40 581.1 40
-3667959 SAN BERNARDINO YUCAIPA-CALIMESA JT. UNIFIED 27.5710334422932 .762642262114279 .77437521999296 19.6644374046697 6.06060606060606 11.880487804878 63432.7181818182 3784.39035550862 25.0716245047242 25 0 70 660.963865401208 653.070776566758 645.047559298728 47.8502921966311 48.70810626703 45.8515962036238 710 50 705.8 53 684.8 50 695 36 696.8 46 670.2 37 690.4 40 695.5 57 670.2 48 688.9 48 674.3 43 661.5 46 679.1 49 675.3 53 662.9 56 663.9 51 664.7 57 650 54 654.8 51 643.2 46 640.3 50 638.4 50 621.3 46 628.5 51 607.6 42 589 40 597.3 40 577 44 570.1 47 588.2 48
-3773551 SAN DIEGO CARLSBAD UNIFIED 26.9230769230769 2.59466170080695 1.76288019863439 26.1328367473619 13.3333333333333 15.2839285714286 62997.1121212121 4261.82011173184 24.3261749144102 43.4447300771208 0 0 675.131481481482 670.382800941493 660.844547008547 63.8950427350427 65.6696368527236 60.6031260618417 711.9 52 708.8 56 693.3 59 705.9 48 702.6 51 688.3 56 700.2 50 698.9 61 683.5 61 704.1 63 692.2 60 684.5 68 696 66 690.3 68 678 71 678.2 66 687.2 76 660.2 64 671.2 66 672.1 74 659.2 68 658.6 68 646.5 70 644 65 631.4 62 618.5 67 622.8 63 601.5 65 597.6 73 603.9 64
-3768031 SAN DIEGO CORONADO UNIFIED 12.8909229595728 1.74927113702624 2.58746355685131 10.4956268221574 8.66141732283464 15.0795454545455 59963.7874015748 4346.54555393586 22.3699421965318 58.8235294117647 0 0 685.812943528236 678.442246520875 668.551767048283 70.2528621204579 71.7176938369781 69.2713643178411 725 66 722.8 70 702.7 68 722 65 713.7 64 697 65 710.7 60 707.6 69 687 65 714.5 73 706.3 73 687.4 72 702.7 72 696.4 73 677.4 72 686.9 74 681.6 72 671.1 74 677.2 72 670.6 74 663.4 72 663.6 72 647.6 71 649 69 638 68 627.3 75 625.1 66 610 72 603.6 78 621.7 81
-3768098 SAN DIEGO ESCONDIDO UNION 43.1771475544595 2.75243544147209 1.7975877532086 43.8108860368022 8.99908172635445 14.0709437086093 58398.8970798898 3882.45098422762 23.4224049331963 29.0118577075099 4 44 654.3185102935 648.733153018358 641.556212530857 46.9538027506759 47.8680439661622 42.2829361983074 706 46 699.7 46 683.9 49 699.7 41 695.6 45 677 44 694.7 44 692 54 675.7 54 689.5 49 678.5 47 666 51 676.6 47 669.8 47 659.3 52 656.4 43 661.2 53 647 50 644.2 40 644.3 47 637.8 47 628.1 40 621 45 622.9 46 599.5 35 595.6 46 596.4 39 573 40 570.7 48 581.3 40
-3768114 SAN DIEGO FALLBROOK UNION 49.1896468311563 .898770104068117 4.3282876064333 36.2109744560076 10.1408450704225 16.5610126582279 66966.7211267606 4540.89427625355 24.1105354058722 22.4609375 0 0 658.178589678079 649.598358753316 644.485851117459 47.8462443286843 45.9941976127321 44.0805654913984 703.3 43 699.2 45 681.5 47 696.7 39 697.6 46 677 44 692.1 41 694.3 56 675.4 53 693.2 53 684.4 53 670.8 56 685 55 679.4 57 667 61 664.2 52 668.4 60 653.5 57 648.3 44 639.3 42 638.2 48 635.7 47 611.9 37 622.9 46 603.1 38 582.6 34 594.6 37 563.8 32 556.8 34 574.6 33
-3768163 SAN DIEGO JULIAN UNION 7.72303595206391 .138121546961326 .69060773480663 9.25414364640884 5 15.9693181818182 62789.975 5092.90745856354 19.0956072351421 32.0754716981132 0 0 674.98523364486 667.565988909427 655.901663585952 55.1293900184843 57.9334565619224 54.8616822429907 706 46 702.5 49 682.9 48 696.3 38 699 48 666.4 33 686.2 35 686.4 48 664.4 42 719.1 76 700.6 69 687.2 72 694.8 65 692 70 681.4 76 678.8 66 678.1 70 659.4 63 665 61 647.6 52 650.2 60 657.1 67 638.1 62 640.8 61 620.4 54 605.2 56 606.9 49 588.7 54 585.4 63 596.3 58
-3768213 SAN DIEGO MOUNTAIN EMPIRE UNIFIED 48.6942328618063 .163220892274211 1.4689880304679 25.2992383025027 4.3010752688172 12.1626213592233 52084.3978494624 4470.92056583243 20.1787709497207 40.8695652173913 0 0 655.573507462687 648.464296296296 641.53604826546 44.1809954751131 44.2 41.234328358209 692.9 33 687.6 33 669.6 34 691 33 693.3 41 670.5 37 683.4 33 690.3 52 662.7 41 687.5 47 669.8 38 660 45 673.3 43 663.5 41 657.1 50 660.4 47 658.5 51 642.3 45 645.9 42 638.3 41 636.9 46 637.8 49 614 39 626.5 49 602 37 593 44 600.1 42 582.4 48 580.2 58 591.2 51
-3773569 SAN DIEGO OCEANSIDE CITY UNIFIED 54.9773988083008 1.80425939219909 14.8600143575018 41.5218951902369 16.013437849944 13.1737055837563 57811.1422172453 3832.5821009811 23.3502479529466 44.7178002894356 0 0 640.598977391304 634.624421296296 630.728302937491 39.543366281498 37.8617919389978 34.5817739130435 690.5 30 690.9 36 671 36 684.5 26 688.2 36 662.9 30 678.3 29 680.1 41 662.8 41 684.3 44 669.9 38 663.5 49 667.3 37 659.9 37 652.7 45 653 40 652.3 44 641.6 44 639.4 36 633.6 36 630.8 41 622.9 35 610.4 35 618.8 42 594.4 31 583.1 34 591 34 567.1 35 563.4 41 576.4 34
-3768296 SAN DIEGO POWAY UNIFIED 10.5881569750025 8.75586330131785 2.76013912377549 7.79220779220779 11.0151187904968 14.1915538362347 58198.62275018 3718.16908644181 22.8757095906782 46.6887417218543 0 0 681.429950602305 677.907482088464 667.726259878223 70.3265967094183 72.5113475481574 66.1724152872866 716.6 57 721.2 69 698.6 65 711.9 54 713.2 63 693 61 706.7 56 713.1 74 691 68 711.1 70 704.7 72 687.3 71 701.8 71 696.1 73 682.1 76 684.5 72 687.1 76 667.1 71 678.7 73 674.4 76 666.8 75 667.2 75 648.9 72 653.8 73 638.2 68 629 76 632 71 602 66 598 74 610.5 72
-3768304 SAN DIEGO RAMONA CITY UNIFIED 35.0236546422235 .704225352112676 .876688703650474 19.6177062374246 7.49185667752444 13.5145161290323 57168.1302931596 3976.02960620868 23.1159175397094 39.7368421052632 0 0 670.183532751977 661.177163940965 652.80687851971 55.8986323411102 56.5917431192661 55.3364429121882 707 47 701.4 48 684.7 50 702 44 697.5 46 678.8 46 694.1 43 693.2 55 672.9 51 701.8 61 684.7 53 672.1 57 685.8 56 672.1 50 661.1 55 674.9 63 676.6 68 658.1 62 662.7 59 657.9 61 646 56 653.6 64 633.7 58 640.3 62 626.2 58 609.9 60 619.3 60 592.9 58 586.4 64 597.3 59
-3768338 SAN DIEGO SAN DIEGO CITY UNIFIED 64.1523473458116 9.49274671088837 16.9243412604654 35.2773273262256 25.0849652047257 12.2959692898273 62782.7030263797 4952.58531878518 22.193133902188 31.2403234130397 4.16666666666667 28.5714285714286 650.53792231777 646.218283229981 639.276522675464 45.5376015212436 46.3890985890177 40.3608356899636 699.9 39 700.5 47 682.1 47 691.5 33 694.8 43 671.8 39 686.7 36 689.2 50 670.9 49 684.1 44 674.6 43 662.2 47 671.1 41 667.8 45 657.2 50 656.6 44 656.5 49 644.7 48 645.9 42 641.8 46 636.7 47 628.2 41 616.1 43 621.9 46 602.2 39 595.1 47 597.9 40 573.3 43 570.6 50 581.7 43
-3773791 SAN DIEGO SAN MARCOS UNIFIED 49.2650415411303 2.38978517815547 2.55370546113364 44.1376930377017 11.0647181628393 13.668029739777 60657.1607515658 4097.09248554913 24.6399825973461 29.6551724137931 0 83.3333333333333 653.268111815711 651.195564163439 642.022429078014 48.4894883485309 51.2722728976634 43.4528277468617 702.4 42 699.2 46 681.9 47 688.3 30 693.6 42 669.6 36 681.7 32 689.4 50 668 46 684.6 44 677.1 46 662.2 47 670.4 40 673.8 51 658.4 51 663.5 51 671.2 63 651.3 55 653.3 50 648.9 52 642.3 52 638.9 50 626.2 51 631.3 54 613.2 47 606.7 57 607.6 49 578.4 44 573.8 51 585.4 45
-3768452 SAN DIEGO VISTA UNIFIED 40.0597659168258 2.53261999153227 6.12755475154921 37.3850121242446 11.0909090909091 12.812450748621 65164.4454545455 4103.44648012009 23.6444866920152 34.3324250681199 3.7037037037037 81.4814814814815 653.530254976898 645.181577922439 640.063129506615 45.9587804462613 45.2737439492572 43.5388739946381 701.8 41 698.1 44 678.7 44 694.3 36 693.3 42 668.6 35 690.3 40 690.6 52 671.1 49 688 48 673.6 43 664 49 678.9 50 668.2 46 659.4 53 659.8 47 655.6 48 643.4 47 647.3 44 639.6 44 637 47 632.1 45 614.6 43 623.3 47 602 41 589.2 43 596.9 41 570.2 42 564.7 47 583.3 46
-3868478 SAN FRANCISCO SAN FRANCISCO UNIFIED 64.5542826673561 41.3690232268428 16.1932237284246 21.2041241169046 43.7374605904271 15.2854677206851 52885.5067354543 5230.05073188323 17.9311759878063 48.8306565229642 2.65486725663717 1.76991150442478 658.739665223665 661.291423925138 647.996224272947 50.8723181275654 56.3745114262075 43.9237806637807 704 44 717.9 64 689.9 56 695.9 37 707.5 56 678.6 46 692.4 42 703.8 65 679.5 57 688.1 47 688.1 56 667.1 52 676.5 47 680.5 57 662.5 56 656.4 43 664.2 56 644.8 48 649.3 45 651.7 55 640.3 50 633.7 46 625.1 50 628 50 604.2 39 601.1 51 602.4 44 584.9 51 579.2 56 590.4 51
-3968502 SAN JOAQUIN ESCALON UNIFIED 36.4128595600677 .919842312746386 .328515111695138 26.6425755584757 5.67375886524822 14.1924528301887 53510.4397163121 3846.51215505913 23.3205521472393 26.4150943396226 0 0 661.910785749146 654.90570754717 649.375467177767 52.7709631049353 50.8150943396226 47.4553440702782 700.7 40 700.3 47 680.1 46 690.4 32 694.5 43 670 37 695.8 45 692.5 54 677.1 55 698.4 57 684.9 54 673.9 59 678 48 667.7 46 661.4 55 666.6 54 663.9 56 653.1 57 658.4 55 647.8 51 648.8 59 640.4 52 629.4 54 632.9 55 605.9 41 598.9 49 599.2 41 585.9 51 576.8 54 600.1 63
-3968569 SAN JOAQUIN LINCOLN UNIFIED 44.1298342541436 19.6276905177429 10.6922629435718 17.6265270506108 14.7342995169082 13.2013742071882 53970.809178744 4022.26410703898 21.5606361829026 29.8353909465021 0 0 653.120987453153 648.215219123506 643.269463793941 46.5541875911226 43.7188844621514 39.3379501385042 693.6 33 699 44 681.3 47 686.2 28 695.7 44 672.1 39 680.5 31 688.7 50 673.6 52 690.7 50 676.9 46 667.6 53 672.9 43 668.6 46 658.2 51 661.5 49 658.3 51 645.3 48 650.1 46 639.1 42 637.8 48 628.1 40 613.3 38 623.8 47 602.9 38 588.3 39 597.7 40 567 35 560.3 37 581.9 41
-3968577 SAN JOAQUIN LINDEN UNIFIED 40.5828621139626 1.93602693602694 .336700336700337 34.2171717171717 7.20720720720721 16.1252032520325 52198.8558558559 3727.90909090909 22.0265151515152 39.2857142857143 0 0 652.678872403561 644.666724237191 639.678812572759 40.9796274738068 38.2941853770869 36.4160237388724 692.7 32 694.7 40 672.1 37 690.1 32 687.3 35 666.3 33 683.1 33 685.2 47 664.4 42 682.6 42 666.9 36 658 42 675.1 45 663.4 41 656.3 49 651.5 38 649.1 41 640 42 638.8 35 630.9 33 635.2 45 629.3 41 609.9 35 622.7 46 597.9 34 582.7 34 593 36 560.9 30 563.5 41 578.1 37
-3968585 SAN JOAQUIN LODI UNIFIED 48.7686274509804 19.7954739870908 5.83249086243098 23.6488062835368 11.271186440678 15.083598265896 59465.2338983051 4469.02146356637 22.0029152019206 30.3370786516854 0 62.8571428571429 646.503272085196 639.40676819852 635.370433124489 39.6596022882049 37.8718249108046 34.3092203277603 693 33 697 44 675.4 40 685.1 28 693.5 44 664.9 32 683.1 34 687.4 49 668.3 47 682.2 42 669.2 39 659.8 45 667.1 39 662 40 653.5 47 651.9 39 645.5 39 639.1 42 635.7 33 627.1 32 627.5 38 619.5 34 602.9 32 616 41 588 29 573 29 586.2 31 555.8 31 548.3 32 570.1 33
-3968593 SAN JOAQUIN MANTECA UNIFIED 35.1331654962237 2.4496294935391 4.93600342948129 29.0954743095107 11.3263785394933 13.8097754293263 56910.6646795827 3589.19701145202 24.385775862069 36.2426035502959 0 0 653.420248760546 648.740296094614 639.964641555286 45.0128449921889 47.2959244448226 41.5854570757589 698.5 38 701.1 48 676.5 41 691.2 33 697.3 46 666.7 34 690.1 39 695.3 57 670.2 48 690.4 50 681.4 50 663.5 48 676.4 46 674.2 52 658.5 52 657.7 44 662.3 54 645.4 49 647.4 44 639.9 43 637.6 48 629.5 42 619.4 44 621.9 45 604.5 40 591.6 42 598.1 40 570.8 38 562.4 39 583.1 43
-3968650 SAN JOAQUIN RIPON UNIFIED 13.773987206823 .730816077953715 .48721071863581 21.8432805521721 2.56410256410257 14.5503875968992 51683 3786.43036946813 20.5988023952096 29.7297297297297 0 0 665.134521880065 664.102466487936 654.637203023758 59.0599352051836 61.3678284182306 52.5834683954619 699.4 39 696.3 43 674.3 39 695.8 37 695 44 671.6 39 689.1 39 692 54 670.1 48 703.2 62 701.8 70 683.2 68 687.2 57 690.3 68 670.8 65 664.4 52 676.8 68 661.1 65 657.4 54 654.2 58 650.6 61 650.9 62 638.3 63 641.3 63 625 57 619.4 68 625.4 65 597.2 61 594.1 70 609.5 69
-3968676 SAN JOAQUIN STOCKTON CITY UNIFIED 68.7270837543667 20.8724926357133 13.3482956936457 42.1854397531211 33.7475474166122 12.677675070028 66654.75147155 4527.22617477907 22.9404855129209 18.2092555331992 0 21.9512195121951 626.294401667588 625.040340654415 618.696566775791 27.7514060270293 29.0440487347704 22.2195516229208 683.5 24 686.3 31 666.9 32 674.3 18 683.1 30 655.5 23 668.5 21 677.4 38 657.9 36 664.5 26 660.9 30 642.7 28 647.7 21 650.1 27 636.5 28 638.3 26 638 31 628.6 31 620.6 20 618 23 615 26 603.1 20 595 23 602.9 29 575.9 19 573.8 28 577.2 23 554.5 27 552.7 33 565.1 25
-3975499 SAN JOAQUIN TRACY JOINT UNIFIED 26.5703275529865 4.43653412050703 5.98194130925508 26.7233894773398 14.19624217119 10.5934981684982 55631.8997912317 3616.36638305261 23.96259626 26.2867647 0 0 657.620744108147 652.641071428571 645.445892687559 48.9863485280152 48.9051926691729 43.6359612393827 700.1 39 701.8 48 679.5 45 694.9 36 696.3 45 672.4 40 690 39 693.5 55 673.3 51 693.1 52 685.9 54 666.6 52 678.2 48 675.3 53 661.4 55 664.1 51 662.1 54 648.9 52 653 49 645.6 49 646.7 57 633.6 45 620.3 45 628.4 51 607 41 593.8 44 603 45 572.7 40 567.4 44 584.4 44
-4068700 SAN LUIS OBISPO ATASCADERO UNIFIED 18.0736636245111 1.06577851790175 1.64862614487927 9.34221482098251 3.28467153284672 14.9725806451613 60464.2408759124 4506.42464612823 23.304248861912 45.4545454545455 0 0 678.001860465116 667.072236267525 661.377217835578 63.4382257315374 61.4366812227074 61.55 717.6 58 709.6 57 698.5 64 711.2 54 703.9 54 693.1 61 706.4 56 704.8 67 687.5 65 706.3 65 696.8 65 679.6 65 694.3 64 680.7 59 669.7 64 680 68 675.9 68 662.8 67 668.5 64 655.1 59 651.6 62 654.6 65 634.7 59 642.5 64 628.8 61 609.9 60 618.5 59 597 61 588.6 66 601.4 63
-4075465 SAN LUIS OBISPO COAST UNIFIED 27.0877944325482 1.00502512562814 .301507537688442 21.608040201005 9.23076923076923 12.8641891891892 46347.3846153846 4792.46130653266 17.3713235294118 41.3333333333333 0 0 675.78129395218 659.928201634877 656.442441054092 53.619972260749 46.7506811989101 52.4669479606188 709.9 50 705.2 52 682.7 48 698.4 40 696 44 673.6 41 698.5 48 693.3 54 674.4 52 701.2 61 681.6 51 681.1 66 687.4 57 664.2 42 670.9 65 679.2 67 668.5 61 664.2 68 669.3 65 640.7 42 647.6 58 649.9 61 610.4 35 629.9 53 617.3 50 598 48 606.7 48 566.6 35 554.9 32 587.2 48
-4068759 SAN LUIS OBISPO LUCIA MAR UNIFIED 38.0746712736347 1.53803131991051 1.16517524235645 30.2013422818792 8.93203883495146 13.4831597222222 55684.2582524272 3887.0884601044 21.2192704203014 25.9036144578313 0 0 668.336747668833 660.265566037736 653.880173742469 57.6306571388539 56.7943951165372 54.3489686352077 707.1 47 704.4 51 686.4 52 702.3 44 699.7 49 680.5 48 699.2 49 700.5 63 678.3 57 705.7 65 694 63 679 64 687.6 58 682.6 61 669.8 64 674.2 62 673.1 65 657.9 62 659.8 56 651.7 55 648.7 59 644 55 625.2 50 634.1 56 616.7 50 599.2 50 609.7 51 590.3 55 581.7 59 600.4 61
-4075457 SAN LUIS OBISPO PASO ROBLES JUSD 36.8269067436725 1.33048620236531 3.87647831800263 27.1846254927727 5.80204778156997 14.2278425655977 59653.0341296928 4756.44152431012 22.2814653608995 39.8148148148148 0 0 660.040743405276 650.914003759399 646.067205208585 49.2531950807813 47.344219924812 45.636690647482 705.3 45 700.3 48 683.6 49 701.2 44 697.8 50 679.4 47 694.3 44 694.7 57 676 55 695 55 681.4 51 668 54 677.5 48 672.1 50 659.2 53 662.2 50 656.8 50 645.3 49 649.2 46 638.8 43 636.4 46 633.6 46 610.3 38 625.9 50 603.8 41 589.8 43 599.7 43 566 38 561 42 583.4 46
-4068809 SAN LUIS OBISPO SAN LUIS COASTAL UNIFIED 22.4657866053046 2.34638169357649 2.0908351724939 12.6147055407132 5.32687651331719 16.19522417154 64397.6755447942 4933.22348704844 21.4332659251769 25.635593220339 5.26315789473684 0 683.558106585091 673.451621621622 664.669967373573 66.636541598695 67.3852146263911 66.9017871518274 725.5 66 722 69 698.4 65 718.1 61 712.2 62 690.7 59 710.2 59 711.6 72 688.4 66 707.2 66 695.1 64 683.8 68 693.4 63 689.3 67 674.7 69 685.6 73 686.4 76 667.8 71 678.7 73 661.7 65 660.1 70 664.6 73 642.7 67 646.1 67 638.3 68 612.8 63 622.5 63 605.6 68 591.8 68 606.8 68
-4068841 SAN LUIS OBISPO TEMPLETON UNIFIED 17.9978118161926 .617828773168579 1.41218005295675 9.22330097087379 4.58715596330275 11.0872950819672 50372.4678899083 3667.01941747573 19.3939393939394 35.9550561797753 0 0 673.663157894737 660.333891213389 658.17453565009 60.5056920311564 54.7489539748954 57.9606775559589 709.6 50 697.2 44 682.5 48 708.7 51 699.4 48 680.4 48 706 55 700.4 63 680 58 701.5 61 684.9 54 678.4 64 691.1 61 685.3 63 672.2 67 683.5 71 670.3 62 665.1 69 662.6 59 650.1 54 657.7 68 655.3 66 628.5 53 647.6 68 615.7 49 595.5 46 611.8 54 593.7 59 583.1 61 599.9 62
-4168890 SAN MATEO CABRILLO UNIFIED 19.3020719738277 2.1085111853947 .539984571869375 25.0964258164052 8.29015544041451 13.3228971962617 51768.2660621762 4138.21131653381 21.0093252879868 48.8095238095238 0 0 670.851140684411 658.191318803103 654.942991356633 58.6384817737693 54.8485408200961 56.5441064638783 717.4 58 716.1 63 695.1 61 700.3 42 698.2 47 677.9 45 705.5 55 700.2 62 685.8 63 701.8 61 684.9 53 682.4 67 693.7 64 684.3 62 670.4 65 673.8 61 665 57 654.8 59 659.7 56 652.6 56 647.2 57 649 60 624.5 49 638.8 60 621.9 54 603.7 54 611.6 53 583.7 49 569 46 591.1 52
-4169070 SAN MATEO SOUTH SAN FRANCISCO UNIFIED 31.9148936170213 8.75331564986738 4.82365654779448 34.7971313488555 11.8993135011442 17.1086138613861 57489.2173455378 3823.83839375184 23.5231970601746 38.9544688026981 0 0 657.938155779629 651.254546756409 645.310129153969 49.4857059933246 48.261205785479 44.5271079935701 699.2 38 699.5 46 681.2 47 697 39 701.6 50 680.4 48 692.1 41 693.5 55 679.2 57 683.6 43 675.7 44 658.8 44 674.8 45 670 47 657.1 50 662.1 49 658.5 51 647.2 51 653.9 50 646.9 50 643.9 54 633.1 45 618.6 43 626 49 609.2 44 604.1 54 606.4 48 584.1 50 565.9 43 586.6 47
-4269146 SANTA BARBARA CARPINTERIA UNIFIED 39.2772711921648 1.38530927835052 .966494845360825 54.3814432989691 21.3235294117647 14.4977419354839 60262.9117647059 4158.06894329897 22.2132943754565 33.3333333333333 0 0 657.955866983373 652.616290842154 647.817581395349 50.293023255814 47.7096180395766 42.8688836104513 696.3 35 694.9 40 679 44 692.5 34 692.8 41 679.9 47 679.9 30 690.1 51 671.4 49 689.5 49 679.8 48 671.4 56 669.7 40 668 45 658.4 50 658.7 46 654.8 47 646.3 49 652.3 48 644.3 47 640.7 51 643.5 55 629.1 54 635.9 58 601.5 37 597.9 48 596 39 587.3 53 577.1 54 596.5 57
-4269229 SANTA BARBARA LOMPOC UNIFIED 35.7063300538333 4.65199180108725 8.92077354959451 32.8669459049996 9.0573012939002 17.0831674958541 53117.7153419593 4325.81900008912 21.6737698566447 42.914979757085 0 13.3333333333333 652.84358281893 640.795576875156 636.877135995956 42.2170121334682 39.9328432594069 41.5646862139918 700.8 40 702.2 48 679.7 45 693.2 35 692.1 40 669.9 37 683.4 33 687.1 49 666.5 44 688.6 48 673.9 42 661.6 46 679.5 50 665.9 43 657.5 50 660.6 48 650.1 42 641.2 44 648.2 44 637.4 40 633.7 44 631.3 43 611.2 36 619.5 43 603.4 38 584.3 35 594.3 37 569.2 37 551 29 575.5 34
-4369484 SANTA CLARA GILROY UNIFIED 44.5420326223338 2.30897936419409 1.5281650864473 62.9447852760736 22.3719676549865 15.4896551724138 62890.8086253369 4312.72950362521 24.507874015748 20.1900237529691 0 15.3846153846154 650.112128626354 639.755846077948 637.302743902439 42.6212737127371 39.8852162473277 39.2345333799371 696.2 35 697.8 43 677.1 42 689.4 31 693 41 669.1 36 684.7 34 690.3 52 670.3 48 682.4 42 668.5 37 657.6 42 668.8 39 660.9 38 650.9 43 660.5 48 658.6 51 647.7 51 644.2 40 634.9 37 633.4 43 626.8 39 609 34 617.6 41 599.2 35 582.8 34 594.6 37 579.7 46 559.4 36 583.3 42
-4373387 SANTA CLARA MILPITAS UNIFIED 28.8935721812434 31.4598833701991 5.95214156444802 18.4295194047858 20.2272727272727 14.806374501992 60774.9181818182 4090.01588578323 22.1197740112994 26.7206477732794 0 0 662.136157941437 661.338135961734 648.919647918842 53.8408175443831 58.4918104073054 49.6240757172434 696.3 36 706.9 54 680.7 46 693.2 35 702.6 51 675.2 42 688.1 38 697.6 59 674.4 52 696.1 55 688.9 57 669.2 54 690.5 60 691.5 68 672.6 67 672.2 60 674.4 66 660.3 64 658 54 656.5 60 649 59 641.3 53 630.7 55 633.3 56 613.6 47 605.7 56 607.3 49 588.8 54 581.3 58 587.2 48
-4369583 SANTA CLARA MORGAN HILL UNIFIED 23.6490993995997 5.23565792279804 2.39923224568138 33.4612923864363 11.25 17.7960850111857 60283.845 4361.51503518874 23.7371134020619 37.8048780487805 0 0 666.216356483583 659.320322915124 649.390683043739 52.9802276812463 55.3657235965042 51.7793917385384 707.5 47 710.7 58 684.1 50 696.6 38 703.4 52 673.1 40 701 50 707 68 678.9 57 698.3 58 688.3 57 673.5 58 684.9 55 677.9 56 663.2 57 668.9 57 668.2 59 651.2 55 653.9 50 645.1 48 641.2 51 644.9 56 625.6 50 632.6 55 618 51 604.1 54 610.1 52 588.8 54 573.5 51 593 53
-4369641 SANTA CLARA PALO ALTO UNIFIED 7.89443488238669 17.3890007417612 4.91681678499523 6.8877821341528 13.528336380256 14.1157512116317 66182.0091407678 5970.82324891385 18.7476866132017 73.3752620545074 0 0 698.751069604087 698.750649145028 682.214690885915 81.8879859783302 86.2845155161495 81.1083971902937 739.9 79 754.8 89 719.9 82 730.8 74 745.8 86 710.1 76 729.9 77 743.6 90 708.6 81 724.1 80 731 87 706.7 85 714.6 81 719.1 87 695.7 85 702 85 711.2 89 681 81 697.4 86 694.1 88 682.4 85 686 86 662.7 82 663.7 80 660.4 82 639.3 82 647.4 82 622.7 80 613.5 84 624.1 82
-4369666 SANTA CLARA SAN JOSE UNIFIED 42.8078358208955 12.2450216712636 3.27039068893402 49.4104810111236 22.3695111847556 16.5772932330827 80565.0364540182 5038.39963022459 28.2108543235523 38.1075826312378 0 0 655.468175303962 647.038183888913 641.538434616608 45.6173810281351 45.3295807963555 42.4182885673339 704.3 44 706.1 52 685 50 694.2 36 699 47 675.4 42 688.9 38 695.1 56 673.3 51 687.1 47 680 48 662.9 47 674 44 669.5 46 657.1 49 657.6 45 653.9 46 641.8 44 649.3 45 640.3 43 639.3 49 631.9 44 614.4 39 623.1 46 606.8 41 590.8 41 600.2 42 574 40 561.4 39 580 38
-4369674 SANTA CLARA SANTA CLARA UNIFIED 40.20545013554 18.3941204753074 4.34095748334364 25.2009066556769 11.52 15.6099728629579 65468.92 4317.31904663782 23.7628014535844 29.5511221945137 0 0 655.844454600853 649.07458432304 643.911948427254 51.5725241747249 50.1679532858274 45.9975624619135 696.6 36 701.6 49 680.5 46 690.4 33 696.9 49 673.8 41 686 36 691.1 53 676.8 56 689.4 49 683.1 52 663.4 48 679.8 51 676.6 54 661.9 56 661.9 49 656.6 50 647.5 51 654.6 51 644.4 49 646.2 56 638.6 51 618.5 46 631.9 55 612.9 51 595.7 49 607.1 50 578.2 49 567.8 51 589.2 53
-4469799 SANTA CRUZ PAJARO VALLEY JOINT UNIFIED 56.3486693730266 1.20137602540355 .587456999206139 72.0137602540355 19.7166469893743 14.11421107628 59922.1286894923 4282.14601746494 22.5352977286679 26.647564469914 4 20 640.186193505742 639.3257624461 628.568499879217 32.5221837507046 37.3257546060368 28.6157151119557 690.3 30 690.3 35 668.8 33 682.8 25 689.1 37 660.8 28 677.9 28 682.3 43 661.3 39 676 36 668 36 653.8 38 660 31 660.2 37 645.9 37 644.4 31 647.1 39 633.4 35 631.4 28 634.5 37 622.7 33 611.3 26 608.3 33 605.8 30 585 24 586.2 37 583.8 27 557.8 27 561.9 39 567.2 25
-4469807 SANTA CRUZ SAN LORENZO VALLEY UNIFIED 14.506396331161 1.65905265688868 1.22625631161337 4.08752103871123 3.33333333333333 17.2891625615764 58616.2833333333 4262.08776148113 24.3335290663535 60.5809128630705 14.2857142857143 0 676.616056910569 662.310665329321 658.5132996633 60.0437710437711 55.7355399531929 59.2906504065041 714.7 55 706.8 54 689.2 55 704.1 46 696.8 46 679.9 47 701 50 698.3 61 681.6 59 707 66 687.2 56 681.2 66 692.1 62 666.9 45 673.7 67 680.7 68 676.7 68 661 65 672.6 68 659.9 63 657.3 67 654.8 65 627 51 638.8 61 627.1 59 611 61 612.5 54 590.3 55 573.8 51 597 59
-4569989 SHASTA FALL RIVER JOINT UNIFIED 39.608938547486 .747126436781609 .28735632183908 8.9080459770115 4.3010752688172 16.4912037037037 56131.9429032258 4741.87406896552 18.7363834422658 28.8288288288288 0 0 662.603135313531 651.091162420382 643.225383993533 44.8334680679062 45.3734076433121 45.9117161716172 701 40 700.6 47 675.5 41 696.1 37 693 42 667.9 35 690 39 690.6 52 667.7 46 692.3 52 674.4 43 667.2 52 673.7 44 665.6 43 650.2 42 659.4 47 664.9 57 646.5 50 658.9 55 643.7 47 637.2 47 647.9 59 621.4 46 633 55 611.3 45 584.7 36 598.3 40 577.1 44 564.2 41 579.8 39
-4575267 SHASTA GATEWAY UNIFIED 49.3771234428086 .84053233714686 1.07401354190988 4.80971281811814 4.09090909090909 14.5858299595142 55396.6149090909 4509.5146509456 20.7381288199342 34.4827586206897 0 0 653.934816312774 639.410946555055 634.704659498208 38.2245030954708 35.9034127495171 38.7081226828446 686.8 27 689.2 34 664.7 30 689.2 31 694.1 41 663.2 30 687.6 37 682.7 44 665.4 44 688.8 48 672.6 41 660.2 45 670 40 656.4 34 652.9 45 658.1 45 652 44 640.7 44 645 41 627.9 31 629 39 630.8 43 604.7 30 618.4 41 606 41 583.4 35 591.9 35 561.9 30 547.5 26 570.3 28
-4670177 SIERRA SIERRA-PLUMAS JOINT UNIFIED 32.1016166281755 1.63316582914573 .628140703517588 8.35427135678392 1.9607843137255 14.4036363636364 54122.0196078431 2908.31155778895 16.8888888888889 43.2432432432432 9.09090909090909 0 672.277259752617 658.577871939736 653.042403846154 54.8115384615385 52.5866290018832 55.6641294005709 705.5 45 694.5 41 680.2 45 707 49 697 46 680.6 47 697.2 47 690.7 53 675.4 54 706.7 65 692.3 61 678.7 63 688.6 59 676.7 55 662.8 55 673.1 61 662.3 55 653.7 57 662.3 58 652.3 55 648 58 644.7 56 627.2 52 637.4 59 625 57 604.6 54 613.3 55 590.3 56 574.4 52 592 54
-4870524 SOLANO BENICIA UNIFIED 11.443661971831 4.56211066324661 7.80505679736167 10.1502381824844 10.1626016260163 15.1756183745583 61419.337398374 4303.05734701356 22.2794428028704 40.4907975460123 0 0 681.573438639125 671.828107718202 664.123567802756 66.4998791394731 66.8773743688387 65.7105710814095 715.6 55 713.5 61 691.8 58 708.5 51 709.3 58 683.5 51 708.4 58 707.6 69 687.6 65 714.7 73 701.7 70 689.3 73 700.2 70 692.2 70 679 73 681.3 69 671.1 63 660.9 64 676.2 71 669.6 72 666.3 74 667.5 75 645.9 70 649 69 638.2 67 617 66 625.5 66 605.4 68 592.8 69 610.6 71
-4870532 SOLANO DIXON UNIFIED 40.8194233687405 1.3169195533925 1.77497852848554 39.965645576868 12.6436781609195 15.5133333333333 57074.224137931 4262.56283996565 20.0236966824645 39.6648044692738 0 16.6666666666667 655.642246903033 647.059762100082 639.990394295302 42.4987416107383 43.0689089417555 40.5057667663392 696.4 36 699.5 46 672.7 37 689.9 32 695.7 44 664 31 687 36 687.6 49 664.3 42 679.2 39 674.1 43 657 41 670.8 41 670.6 48 654.9 47 661.6 49 655.5 47 647.6 51 647.9 44 634.6 37 634.3 44 632.9 45 613.6 38 623.5 46 607.8 42 589 40 600.1 42 574.8 41 561 39 583.5 42
-4870540 SOLANO FAIRFIELD-SUISUN UNIFIED 28.1108624220201 6.54867256637168 21.0107126222636 18.0158360503027 13.2415254237288 15.9655090390105 59268.9862288136 3955.48863530508 22.8889128791968 26.1160714285714 0 34.6153846153846 653.017221528645 645.545050167224 640.046989921003 46.3172160174339 46.2223411371238 43.3465806630601 696.2 36 696.8 44 676.9 42 691.1 33 695.3 47 672.1 40 686.4 37 686.7 48 671.9 51 687.3 47 678.3 47 662.4 47 673.7 45 668.6 47 658.6 52 660.7 48 657.3 50 645.1 49 651.9 49 640.9 46 637.2 47 634.1 47 619.1 48 624.3 49 604.4 43 586.7 41 596.9 41 570.5 43 561.1 44 580 43
-4870565 SOLANO TRAVIS UNIFIED 22.7124538143882 2.52947481243301 15.3483386923901 10.3965702036442 18.2203389830508 15.1208487084871 62353.6016949153 4900.85551982851 20.2287440656021 66.3101604278075 0 0 666.224245224892 651.059872804361 649.958239070621 55.8654845612962 50.3058752271351 55.0418977202711 705.8 46 700.1 46 685 50 698.3 40 695 44 671.8 39 701 50 697.9 60 675.7 54 697.6 57 681.6 50 665.7 50 690.7 61 679.7 58 665.2 59 672 60 661.9 54 655.3 59 662.8 59 644.2 47 653.5 64 649.3 60 624.4 49 641.7 63 620.9 54 596.9 48 613.8 55 592.9 58 569 46 598.4 60
-4870573 SOLANO VACAVILLE UNIFIED 23.0192416525184 2.82936052400567 8.37328651495712 16.7465730299142 9.12981455064194 14.6227443609023 53901.8758915835 4110.53933418867 22.3814655172414 40.2614379084967 5.26315789473684 10.5263157894737 663.389330329715 654.597166998012 649.498064321 52.7524952112108 50.7088469184891 49.3357567069425 706 46 704.7 52 685.1 51 698.1 40 700.1 49 676.1 43 695.9 45 696.9 59 676.4 54 694.6 54 680.2 49 665.8 51 678.7 49 668.6 46 659.2 52 667.8 55 666.9 59 656.3 60 658.2 54 647.8 51 647.5 58 643.1 54 621.2 46 633.9 56 617.5 51 600.4 51 610.9 53 577.3 44 567.5 45 589.1 49
-4870581 SOLANO VALLEJO CITY UNIFIED 35.4608814127758 3.83958186752437 35.2145944316012 15.5493014373304 23.8767650834403 16.6808544303798 68338.8023106547 4364.92657553523 25.6707959936742 20.0227531285552 0 56 644.687722460014 638.51153312395 632.704359794658 38.5993601666543 38.9284931706961 34.8631073064504 693.7 33 693.7 40 675.2 40 687.1 29 691.8 41 666.1 33 680.4 31 687 48 665.6 44 677.6 37 668.4 37 653.5 38 661.2 32 656.4 34 648 40 654.3 41 654.6 47 639.4 43 640.5 38 631.1 35 629.4 40 623.1 37 609 37 616.1 41 594.9 34 581.4 35 588.8 33 563.3 36 555.2 37 573 35
-4970656 SONOMA CLOVERDALE UNIFIED 39.7086763774541 .429447852760736 .674846625766871 25.0920245398773 6.32911392405063 15.6294117647059 56854.0379746836 3942.01042944785 20.4216073781291 43.8356164383562 0 0 657.034640522876 649.894646098004 639.369549218031 43.8408463661454 47.7223230490018 44.2362278244631 708.5 48 702.7 50 677 42 703.2 45 696 45 674.8 42 693.4 42 696.2 58 673.4 52 689.4 49 678.9 48 664.6 50 679.8 49 671.4 49 653.2 45 663.9 51 674.4 66 648.5 52 644.5 41 641.3 44 628.6 39 635.8 48 613.7 38 624.9 48 600.9 36 588.5 39 592.7 35 566.5 34 562.9 40 576.7 35
-4973882 SONOMA COTATI-ROHNERT PARK UNIFIED 19.6758386732002 3.86396879570941 3.64456362749878 12.8473915163335 5.99455040871935 15.7177884615385 59484.6839237057 4081.60153583618 22.2929762230118 14.4508670520231 0 0 663.548165536429 651.999588053553 648.170283428969 53.6576247609112 50.8764160659114 51.4564423578508 705.4 45 704.9 52 687.3 53 698.6 40 699.4 48 677.2 44 694.3 44 694.2 56 676.1 54 698.3 57 684.1 53 672.6 58 688.9 59 676.1 54 667.8 61 666.4 54 664.4 57 649.7 53 661.9 58 652.3 56 650.5 61 646.2 57 623 47 632.8 55 614.4 48 594.8 46 604.6 47 581.1 47 562.6 40 587.9 48
-4975390 SONOMA HEALDSBURG UNIFIED 21.4638665843113 .878378378378378 .439189189189189 34.0540540540541 14.2857142857143 16.4645251396648 56837.3506493507 4968.96756756757 20.9132720105125 46.484375 0 0 667.173062015504 657.896311858077 648.388740458015 46.6307251908397 48.2278244631186 45.6545542635659 701.9 42 698.7 46 682.4 48 693.4 36 696.6 48 675 43 689.7 40 691.1 53 668.2 47 693.8 54 690 59 665.6 51 683.8 55 670.5 49 662.4 56 664.9 53 658.1 52 646.5 50 656.2 53 645.6 50 637.8 48 635 47 616.1 44 622.4 46 598.7 37 584.7 38 593.2 37 571.2 42 557.4 38 573.5 35
-4970953 SONOMA SONOMA VALLEY UNIFIED 30.7603241991509 1.92343956251179 .716575523288705 22.4024137280784 6.15384615384616 15.8586092715232 54122.3423076923 4170.56835753347 21.1476725521669 23.3716475095785 11.1111111111111 11.1111111111111 664.450211416491 653.566589625064 648.412269300754 52.0428905640759 50.2734976887519 50.3742071881607 708.2 48 706.5 53 684 49 700.7 43 697.5 46 677.4 44 700 49 698.2 60 678.3 56 694.3 54 685.6 54 671.9 57 682.4 52 675.5 54 664.9 59 667.8 55 666 58 653.7 58 661.1 57 649.1 53 646.2 56 644.5 56 616.9 41 629.7 52 609 43 591.9 43 599.6 41 577.9 44 564.1 41 587 46
-4975358 SONOMA WINDSOR UNIFIED 33.5580524344569 1.37909898866074 .858106037388906 26.5093472264787 17.5675675675676 11.0236363636364 50731.472972973 3834.78639288998 21.0230547550432 0 0 0 654.652495621716 641.131451275617 638.921030756442 48.0448877805486 45.0380593893768 46.2504378283713 703.4 43 692.3 38 682.7 48 697.6 39 694.9 44 675.6 43 696.2 45 692.8 54 676.9 55 695.5 55 678.5 47 668.7 54 680.6 50 670 48 659.7 53 663.9 51 660.4 53 644.8 48 649.6 46 636.3 39 636.4 46 631.2 43 617 41 623.4 46 608.4 42 592.7 43 599.2 41 578.4 45 566.4 43 588.1 48
-5071308 STANILAUS TURLOCK UNION 42.6006966151648 4.70202296336796 1.36686714051394 32.5587752870421 9.22131147540983 14.9641577060932 59645.2069672131 3932.406689 24.1786317567568 21.40625 0 50 653.922410473623 649.459038583175 642.323309224718 44.8226113437381 45.3544592030361 39.6056988833269 699.6 39 698.2 44 682.7 48 690.7 32 692.8 41 674.5 41 684 34 686 47 669.2 47 687.1 46 681.2 50 662.8 47 669.3 39 668.3 45 653.1 46 657.8 45 659.4 52 645 48 642.3 39 637.8 41 635.1 45 630.6 43 616.2 42 621.3 45 601.2 38 591.4 44 596.5 39 573.1 42 567.7 47 581.6 42
-5071043 STANISLAUS CERES UNIFIED 51.2052189296771 4.55034423407917 3.4315834767642 39.2641996557659 10.0490196078431 13.2773218142549 56234.306372549 3767.50398020654 23.1700146986771 12.967032967033 0 41.6666666666667 641.917007005515 635.964696577509 629.076138701146 33.683661475169 34.3288754673569 30.8339543896259 687.6 27 688.2 34 668.5 33 681.2 24 685.7 33 659.1 26 677.2 28 680.9 42 661.3 39 674.6 34 664.5 33 649.9 34 662.9 33 656.6 34 646 37 651 38 648.3 41 637.7 40 637.6 34 629.7 32 625.6 36 618.5 32 607.1 32 613.4 37 590.1 28 579.4 31 582.2 26 560.3 29 554.8 32 571.1 29
-5071068 STANISLAUS DENAIR UNIFIED 42.1307506053269 .783085356303837 .234925606891151 25.920125293657 1.72413793103449 13.381746031746 49550.7413793104 3282.38919342208 21.3066202090592 29.8701298701299 0 0 658.764412416851 647.720043103448 644.830065359477 47.6655773420479 41.9946120689655 43.8968957871397 692.4 32 688.9 35 672.3 37 683.3 25 678 26 664.3 32 683.1 33 680.6 42 668.5 47 692.2 51 679.4 48 664.7 50 670.6 41 665.1 43 650.1 42 658.6 46 649.5 42 649.2 53 654.6 51 637.5 40 639.2 50 634 46 605.9 31 623.3 46 616.3 50 597.1 48 614.6 56 592.6 58 584 61 596.5 58
-5073601 STANISLAUS NEWMAN-CROWS LANDING UNIFIED 53.904282115869 1.22137404580153 1.47582697201018 53.4351145038168 14.7368421052632 12.7085714285714 51297.3684210526 4109.91704834606 21.6866158868335 28.8659793814433 0 16.6666666666667 646.867903103709 644.301789709172 636.501729323308 40.2315789473684 40.7166293810589 34.1241483724451 688.8 28 695.2 41 671.8 37 681.7 24 687.2 35 662.8 30 673.1 24 679 40 660.1 38 679.7 39 663.2 32 657.3 43 666.6 37 658 35 651.9 44 646.6 33 648.6 41 634.8 37 632.7 30 630 33 623.6 34 621.8 35 615.2 40 616.1 39 596.2 33 596.7 47 599.4 41 596.1 61 588.6 65 598.9 61
-5071217 STANISLAUS PATTERSON JOINT UNIFIED 55.0072568940494 .67396798652064 1.23560797528784 64.588598708228 18.1208053691275 13.3273255813954 55535.1476510067 4008.41449031171 24.0040927694407 13.0718954248366 0 0 645.663875278396 636.918853820598 634.555903083701 37.1092511013216 34.749584717608 31.6178173719376 686.7 26 689.7 35 670 35 681.7 24 683.5 31 659.6 27 676.1 27 679.7 41 664 42 682.5 42 669.5 38 655 40 669.9 40 662.5 40 654.3 47 646.1 33 642.2 35 637.1 39 636.5 33 625 28 632.5 42 612.3 27 603 29 613.3 37 592.1 30 574.3 27 582.8 27 566.8 35 565.5 43 575.6 34
-5171399 SUTTER LIVE OAK UNIFIED 72.2976963969285 12.3235613463626 .597176981541802 45.3311617806732 6.52173913043478 12.3826732673267 52194.3369565217 4350.79261672096 21.4437869822485 17.7215189873418 0 0 640.02026295437 633.549270072993 626.57022556391 31.9917293233083 32.7766423357664 29.245939675174 686.9 27 688.7 34 663.4 29 682.6 25 687.5 36 657.9 26 669.9 22 677.1 38 650.6 29 673.9 34 664.9 34 651.3 36 657.5 28 655.3 33 642.3 34 643.2 30 640.4 33 630.6 33 634.7 32 619.8 24 623.9 34 624.9 38 608.9 34 619.4 42 585.6 24 580 32 580.9 25 565.4 33 553.5 31 573.2 32
-5171464 SUTTER YUBA CITY UNIFIED 49.2564175428626 13.2831159287158 2.93955539224692 25.5282013595444 14.1078838174274 15.0974452554745 57777.5580912863 4165.93174719824 23.0617071597506 24.2424242424242 0 25 646.224358074926 636.887817258883 634.064643050297 38.9446998377501 35.8145872294951 34.6318226462747 688.3 28 697.8 44 674.6 39 685.1 27 692.1 40 666.9 34 681.6 32 688.3 50 669.3 47 683.9 44 674.4 43 662.3 47 668.1 39 658.2 35 652.9 46 650.8 38 646.1 39 636.1 39 639.8 36 625.2 28 627.2 37 622.3 35 604.2 30 615.4 39 594.3 32 573.7 27 587.5 31 562.3 32 548.9 28 572.1 31
-5271498 TAHAMA CORNING UNION 49.1590749824807 .876270592358921 1.89274447949527 29.7581493165089 3.59712230215827 13.2433962264151 55372.4604316547 3941.38696109359 20.9110787172012 36.4238410596026 0 0 651.470603813559 639.559671805072 634.103220936084 36.3935581278309 34.4878170064644 35.4078389830508 698.1 37 694.3 40 673 38 684.8 27 689.4 37 662.6 30 681.6 32 684.4 46 665.8 44 680.9 40 670.8 39 654 39 660 31 651 28 642.2 33 651.4 38 641.9 34 635.3 38 639.6 36 626.1 29 620 30 627.9 40 600.6 27 613.7 37 600 36 577.1 29 590.3 33 571 38 557.1 35 581.9 41
-5271571 TEHAMA LOS MOLINOS UNIFIED 51.2931034482759 .142247510668563 .568990042674253 32.2901849217639 2.56410256410257 15.8122222222222 53216.6153846154 5045.57610241821 19.6438356164384 34.2105263157895 0 0 648.061303462322 639.214003944773 634.328427419355 33.5907258064516 31.3510848126233 30.3401221995927 683.6 24 686.5 32 662.8 28 686.3 28 686.2 34 664.4 31 676.2 27 684.1 45 664.6 43 685 44 672.9 42 656.7 41 656.6 28 650.8 28 649.3 41 651.6 39 646 39 627.9 30 636 33 616.8 21 621.6 32 612.7 27 600.8 26 608.5 33 592.2 30 564.2 19 589 32 557.3 26 547.9 26 570.4 28
-5375028 TRINITY MOUNTAIN VALLEY UNIFIED 60.1459854014599 .480769230769231 0 5.12820512820513 5.55555555555556 16.1320512820513 63507.8333333333 6482.46955128205 17.9083094555874 42.4242424242424 0 0 662.37205882353 650.207582938389 644.749373433584 42.4912280701754 42.6255924170616 44.5490196078431 702.5 42 704.1 50 685 50 699.4 41 689.2 37 676.9 43 691.4 41 686.5 48 667.5 46 698.1 57 680.5 50 667.7 53 672.6 43 662.4 40 647.2 39 648.8 36 632.8 26 624.3 27 650 46 628.5 31 629.8 40 643 54 617.7 43 625.2 48 609.7 45 608.3 59 596.6 40 578.2 46 569 46 580.3 40
-5471860 TULARE CUTLER-OROSI JOINT UNIFIED 84.0990371389271 .562851782363978 .241222192441705 90.7263468239078 18.7878787878788 14.2173913043478 58391.1082424242 3952.91040471723 22.7518427518428 8.37004405286344 0 0 625.407986243791 629.289962962963 619.331384383252 25.2493398717465 28.1814814814815 18.533053114253 677.3 19 678.9 24 661.7 27 668.2 14 677 24 648.9 18 663.6 18 673.9 35 650.4 29 661.9 24 667.6 36 649.1 34 648 21 651.6 29 639.9 31 631.9 21 637.1 30 621.6 24 614.4 16 621.7 25 611.2 23 599.6 18 595.7 23 599.2 25 571.2 15 578 30 577.7 23 545.9 19 546.6 25 559.7 19
-5471878 TULARE DINUBA UNION 74.5744216499345 .895583146753511 .244249949114594 80.4600040708325 15.9817351598174 12.970656637 53304.9005022831 3688.74829025036 22.9647513278609 16.4658634538153 0 0 636.254840613932 636.677197488584 626.026167956435 29.743766122098 32.8926940639269 24.8474025974026 682.8 23 686.7 32 663.8 29 671.7 17 681.4 29 651.5 20 668.3 21 676.5 37 653.9 32 671.8 32 666.6 35 647.9 33 652.7 25 657.3 34 643 34 648.6 35 653.2 45 637.7 40 627.9 26 628.1 31 620 30 612.1 26 605.4 31 608.8 33 577.9 19 571.6 24 576.4 22 557.3 27 554.8 32 569.1 27
-5475325 TULARE FARMERSVILLE UNIFIED 92.3344947735192 .933552992861065 .109829763866008 83.0313014827018 17.1052631578947 14.402380952381 61350.2075 3792.45582646897 22.9189189189189 0 0 100 611.61476793249 605.792740046838 600.900717131474 15.8725099601594 16.3692427790788 13.3316455696203 665.2 13 676 23 643.7 15 656.9 14 664.4 25 643.7 23 651.1 16 653.8 24 631.2 19 644 18 641.1 20 630.2 22 622.6 14 621.1 17 612.8 17 609.2 13 605.1 13 597.8 14 592.6 14 577.6 11 586.3 17 558.4 9 544.6 9 559.5 11 530 10 526.7 12 544.8 9
-5471993 TULARE LINDSAY UNIFIED 76.580373269115 1.72117039586919 .057372346528973 83.7636259323006 23.6842105263158 13.2849431818182 58362.7059868421 4115.27855708549 22.6187335092348 27.4285714285714 0 0 640.388823181549 640.34366359447 626.193461762989 26.1938120256859 30.7523041474654 23.0821998817268 685.3 25 684.6 30 663.6 29 672.6 17 682.5 30 650.2 19 669.4 22 678.4 39 655.6 34 664.8 26 655.1 25 637.4 23 645.7 19 645.9 24 631.3 23 633.6 22 634.2 28 621 24 628.3 26 633.3 36 620.6 31 608 24 598.6 25 602.4 28 584.7 24 583.3 34 580.5 25 559.8 30 568 45 570.9 29
-5472256 TULARE VISALIA UNIFIED 44.8332783096732 7.62122822798266 1.95437075803418 43.1351704963611 12.7111111111111 14.4732521602514 58322.98376 4057.25547877995 22.3127332301811 35.9173126614987 3.125 28.125 648.229390179976 640.968154273093 635.425015825517 38.9894688381194 37.4061278812935 35.2702545285107 694.4 34 695.9 41 673.8 39 689.7 32 693.1 41 667.4 34 682.5 32 685.3 46 667 45 684.5 44 667.9 36 660.4 45 668.3 39 660.6 38 653.8 46 656.5 44 651.9 44 640.5 43 638.5 35 629.5 32 626.5 37 619.3 32 603.9 29 611.6 35 590.9 28 581.3 33 588.5 32 564.4 32 557.7 35 575.7 34
-5472272 TULARE WOODLAKE UNION 72.663139329806 1.19250425894378 .298126064735946 79.2589437819421 13.1578947368421 14.8140625 58001.3071929825 4081.73411839864 21.1060329067642 36.1344537815126 0 0 640.209791122715 631.617446270544 627.961022364217 29.2447284345048 25.3400758533502 24.7630548302872 694.1 33 686.9 32 671 36 673.4 18 679.3 26 654.2 22 673.9 25 675.1 36 656.5 35 674.5 34 658.8 28 650.5 35 651.7 24 646.7 25 641.1 32 639.1 27 637.9 31 636.2 39 618.8 19 606.7 14 609.1 21 606.5 22 588.7 18 601.9 27 581.1 22 567.3 21 577.3 23 556 26 538.7 19 562.1 21
-5575184 TUOLUMNE BIG OAK FLAT-GROVELAND UNIFIED 36.7164179104478 .427960057061341 .855920114122682 4.70756062767475 4.65116279069767 13.268085106383 48160.4651162791 4666.56062767475 18.4266666666667 70.2702702702703 0 0 670.61387283237 659.356621880998 649.060931174089 48.2085020242915 47.8541266794626 49.4836223506744 701.6 41 694.6 41 679.9 45 694.7 36 687.4 35 670.5 38 684.2 34 683.5 45 659.2 38 702.6 62 691.7 59 667.1 51 682.2 52 670.3 48 667.7 62 656.5 43 645.5 38 642.1 45 661.6 58 656.3 60 648 59 650.7 61 629.5 54 634 56 619.6 53 597.4 48 597.5 40 610.5 72 587.7 65 593.5 56
-5673759 VENTURA CONEJO VALLEY UNIFIED 12.3270160618018 5.66135375698613 1.48519975160422 14.5311529703995 5.4054054054054 15.7322185061316 62750.2407862408 4265.1333057338 23.810318275154 41.1663807890223 0 0 682.02413435621 677.544326362702 667.723709777441 69.9877351340178 71.6343503599589 66.211486626581 721.7 62 725.9 72 700.8 67 715.4 58 717.1 66 695.7 63 711 60 716.7 77 691.1 68 713.5 72 708 74 689.6 73 702.2 71 699.3 75 682.8 76 684.1 71 688.9 78 671.2 74 670.9 67 666 69 660.3 70 660.1 69 640.4 65 648 69 635.5 66 620.5 69 628.3 68 604.9 67 595 71 610.3 72
-5672454 VENTURA FILLMORE UNIFIED 51.8065433854908 .547195622435021 .437756497948016 76.9083447332421 15.527950310559 15.024043715847 56925.9751552795 3897.07879616963 23.4847501622323 30.6010928961749 0 16.6666666666667 635.765689381933 628.433169996231 624.119392073875 28.9003462870335 26.434602336977 24.655705229794 684.6 25 680.1 26 665.4 30 678.8 22 677 24 653 22 663.3 17 667.6 29 649.8 29 670.7 31 659.4 29 644.4 29 654.5 26 648.5 26 639.9 31 644.6 32 637.2 30 637.1 39 626.9 25 619.8 23 621.2 31 609.2 24 593.1 21 603.7 29 585.1 24 574.7 27 578.9 24 551.2 22 549.7 28 565.3 24
-5673940 VENTURA MOORPARK UNIFIED 23.4552907241536 3.86164745103487 1.81969718016391 29.7819141547437 10.3658536585366 10.2872311827957 54402.9817073171 4155.08362272538 21.6525556600815 21.1409395973154 0 0 661.607069359756 652.657776530039 650.1753724307 56.6239864227796 52.736664795059 51.3782393292683 706.8 47 705.7 52 685.6 51 696 38 697.7 46 674.7 41 697.5 47 700.2 62 681.6 60 698.9 58 686 55 678.8 63 688.9 59 675.7 54 670.8 65 669.6 57 661.3 54 657.2 61 661.2 57 651.1 54 648.9 59 642.9 54 624.6 49 634.8 57 611.6 45 599.7 50 609.5 51 583.1 49 574.4 52 594.6 55
-5673874 VENTURA OAK PARK UNIFIED 1.24705089315807 6.06629143214509 1.00062539086929 2.34521575984991 4.72972972972973 12.2248502994012 55208.8378378378 4079.32739212008 20.988490182803 74.3421052631579 0 0 682.161725394897 670.000522088354 672.424153225806 76.9189516129032 69.8827309236948 70.796678817335 720.7 61 715.6 63 704.4 70 719.3 62 714.3 64 701.3 68 714.1 63 720.6 80 701.4 77 716.9 74 705.7 72 698.2 80 709.7 78 697.1 74 694.8 85 684.3 72 691.1 80 673.3 76 680.2 74 665.5 69 676.5 82 667.3 75 640.4 65 658.8 77 643.5 72 611.4 61 636.6 75 608.3 71 594.6 71 615.4 76
-5672520 VENTURA OJAI UNIFIED 23.2817037754114 1.36625119846596 .862895493767977 18.6481303930968 8.15217391304348 14.221359223301 56808.0108695652 3825.93600191755 22.8771733034212 35.546875 0 0 671.676079734219 660.902526246719 656.370046388337 58.2614314115308 55.6719160104987 55.8066445182724 705.2 45 707.1 54 682.6 48 706 48 708.6 58 682.5 50 697.6 47 699.6 62 674.6 53 708.4 67 696 65 684.8 69 691.6 61 680 58 671.2 65 678 66 670.2 62 663 67 663.6 59 645.4 48 653 63 649.3 60 626.3 51 637.7 59 617.1 50 598.3 49 609.8 51 583.4 49 570.5 48 591.1 51
-5672603 VENTURA SIMI VALLEY UNIFIED 15.6815375530144 5.52216571634047 1.67462885909488 17.4397698669543 6.91747572815534 15.0002183406114 57203.5497572816 3831.57374017568 23.2098614007114 37.6871880199667 0 0 667.169897138059 658.573027866352 653.045612437846 57.1392254359549 55.2870511576321 54.030788608215 710 50 711.9 58 689.4 55 704.6 47 703.9 53 682.6 50 700.5 50 701.6 63 682.9 61 698.4 58 684.7 54 672.7 58 688.3 58 676.4 54 668.2 62 672.3 60 671.6 63 656.4 60 660.6 57 652.1 55 650.4 61 645.7 57 627.6 52 634.7 57 621.8 55 602.4 53 613.9 55 583 49 571.4 49 592.4 53
-5672652 VENTURA VENTURA UNIFIED 38.1582125603865 2.90551227227462 2.35487083357741 33.4426805693867 9.94397759103642 15.3525516403402 56413.6120448179 3699.07023607287 24.8511202830189 34.3634116192831 0 22.2222222222222 663.126722987995 651.066852966466 648.690125295716 52.2804696398843 47.5606190885641 48.7767007558915 703.4 43 700.9 47 686.5 52 697.3 39 695.5 44 676.8 44 692.4 42 690.8 52 678.5 57 695.3 55 678.2 47 669.1 54 684.7 55 672.1 50 664.8 59 665.4 53 659.6 52 648.9 52 655.2 51 645.7 49 644.6 55 642.1 53 618.1 43 630.4 53 611.9 46 594 45 602.3 44 584.7 50 568.5 46 591.7 52
-5772678 YOLO DAVIS JOINT UNIFIED 17.8988326848249 10.4909560723514 3.37209302325581 12.7002583979328 14.9289099526066 14.4376582278481 49783.3127962085 4254.71718346253 20.062860136197 46.4203233256351 0 0 688.106229626947 680.838578317557 668.965033207683 71.1364207503141 74.2502232541525 71.5622962694676 722.8 64 728.6 74 697.7 64 718.2 61 724 71 693.5 61 718.6 67 728.8 84 697.9 74 714.9 73 711.8 77 691.7 74 703.3 72 700.2 76 684.8 77 695.3 81 698.3 84 673.2 76 683.6 77 671 74 668.6 76 672 78 645.7 69 651.3 71 644.8 73 617 66 629.9 69 605.7 68 589.9 67 605.1 67
-5772686 YOLO ESPARTO UNIFIED 49.235807860262 .779510022271715 1.67037861915368 43.7639198218263 4.16666666666666 11.3609090909091 50433.1666666667 5039.20267260579 19.5454545454545 27.0833333333333 0 0 640.121894409938 635.382379518072 625.547792998478 29.2648401826484 31.7394578313253 27.9472049689441 682.3 22 686.1 33 660.8 26 673.4 18 680.4 30 653.2 22 673.8 26 678.4 39 660 39 682.5 43 662 32 650.9 35 651.3 24 650.8 29 635.1 27 652.2 39 649.3 43 641.5 45 626.1 25 621.4 25 616.5 27 616.3 31 605.2 33 608.1 33 597.5 36 576.4 31 579.2 25 549.2 24 545.9 28 558.2 20
-5772694 YOLO WASHINGTON UNIFIED 62.2396784800877 13.8208597362562 3.95615687617743 32.1287891762288 15.884476534296 13.2708860759494 52881.3321299639 4324.17365987327 20.9871086556169 8 0 18.1818181818182 639.1435538262 633.124164397128 627.616834677419 32.3477822580645 31.2792770487745 27.7229571984436 686.6 26 693.3 38 668.6 33 682.4 25 688 35 661.6 29 675.2 26 677.4 38 661.5 40 676.5 36 665.4 34 652.1 37 659.5 30 653.6 31 642.7 34 638.4 26 637.7 30 627 29 626.6 24 620.5 24 620.8 31 615.3 29 600.1 26 609.9 34 589.8 27 578.6 30 585.5 29 559.5 29 552.1 30 570.2 28
-5772702 YOLO WINTERS JOINT UNIFIED 46.1618798955614 1.15057528764382 .80040020010005 45.6228114057029 13.3333333333333 11.8071428571429 48426.1523809524 3945.06903451726 19.8582995951417 53.7735849056604 0 0 650.807236842105 640.076315789474 634.960070175439 36.5312280701754 33.7548476454294 34.6834795321637 695.8 35 691.8 38 675.6 41 685.7 28 686.8 34 670.5 38 678.4 29 680.1 41 667.9 46 681.1 41 663.3 32 654.5 39 665.3 35 656.4 34 644.3 36 655 41 644.5 37 640.7 44 633.9 30 619.1 23 615.4 26 636.7 48 609.7 35 614.2 38 596.1 32 580.5 32 587.4 30 558.1 27 553 30 565.9 24
-5772710 YOLO WOODLAND JOINT UNIFIED 43.4143080008915 3.64856364017614 1.54120360662613 46.3199832249948 21.3776722090261 14.4046843177189 53796.1638954869 3845.48081358775 22.7088422081094 29.8924731182796 0 6.66666666666667 650.685780525502 642.281801889866 636.105199735887 41.0627269725982 40.8595633756924 38.3171904516572 694.7 34 701.1 47 674.4 39 689.2 31 696.2 44 668.7 36 687.9 37 692.5 54 671.3 49 681.7 41 670.2 39 658.5 43 669.1 39 660.8 38 653.4 46 655.4 42 650.2 43 641.4 44 646.4 43 634.6 37 630.8 41 629.1 41 609.4 34 617.7 41 598.3 34 585.6 37 591 34 572.1 39 562.9 40 578.3 37
-5872736 YUBA MARYSVILLE JOINT UNIFIED 70.6210416863598 20.4617205998422 2.98934490923441 17.423046566693 11.0328638497653 16.5641975308642 61705.6596244131 3970.9843133386 24.8864711447493 15.1428571428571 0 13.6363636363636 639.085190097259 631.172371396269 625.858513396716 30.7783059636992 30.1215375918598 28.466254052461 688.6 28 687.9 33 670.3 35 686.7 29 687.6 35 664 31 677.4 28 681.1 42 661.6 40 675.9 36 664.5 33 649.7 34 656.3 28 652.6 30 639.9 31 643.3 30 637.8 31 629.2 31 632.7 30 626.6 29 621.8 32 614.9 29 599.6 26 605.9 30 585.8 24 571.1 24 581.3 26 551.9 23 541.5 21 561.5 20
-5872751 YUBA WHEATLAND UNION 77.7482740308019 5.99889928453495 9.57622454595487 11.1172261970281 7.8740157480315 16.9187050359712 65099.5669291339 6913.39680792515 20.0325203252033 23.5294117647059 0 0 663.065659500291 648.575580736544 645.966781214204 52.1821305841924 48.9008498583569 52.2887855897734 706.7 46 699 46 683.1 49 701 43 703.5 53 678.3 45 694.1 43 699.9 62 676.9 55 694.7 54 676.2 45 666.7 52 690.7 61 675.3 53 671.1 66 669.9 57 664.4 57 651.2 55 655.3 51 643.6 47 638.3 48 647 58 619.6 44 632.6 55 619.2 52 590.2 41 603.9 46 587.6 53 566.7 44 589.2 50
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/src/star98.names b/statsmodels/scikits/statsmodels/datasets/star98/src/star98.names
deleted file mode 100644
index c029331..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/src/star98.names
+++ /dev/null
@@ -1,205 +0,0 @@
-
-18 variables and 303 cases
-
-Variable: CDS_CODE Type: Numeric
- County District Code
-
-Variable: COUNTY Type: String
-
-Variable: DISTRICT Type: String
-
-Variable: LOWINC Type: Numeric
- Percent Low Income Students
- This variable is the sum of students
- eligible for free or reduced lunch
- programs divided by the sum of
- students multiplied by 100. The
- district level percentages were
- aggregated from school level data
- Source: The National Center for
- Educational Statistics (NECS)
- Common Core of Data site,
- "http://nces.ed.gov/ccd/index.html"
-
-Variable: PERASIAN Type: Numeric
- Percent Asian Students
- This variable is the number of
- Asian Students divided by the
- the total number of students,
- multiplied by 100.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "ethdst97.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PERBLACK Type: Numeric
- Percent Black Students
- This variable is the number of
- Black Students divided by the
- the total number of students,
- multiplied by 100.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "ethdst97.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PERHISP Type: Numeric
- Percent Hispanic Students
- This variable is the number of
- Hispanic Students divided by the
- the total number of students,
- multiplied by 100.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "ethdst97.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PERMINTE Type: Numeric
- Percent Minority Teachers
- This variable is the number of
- minority (American Indians, Asians,
- Pacific Islanders, Filipinos, Hispanics
- And Blacks) teachers divided by the
- total number of teachers, then
- multiplied by 100.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "teaeth96.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: AVYRSEXP Type: Numeric
- Teachers' Experience
- This variable is the sum of years in
- educational service divided by the
- sum of teachers. The district level
- averages were aggregated from school
- level data.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "prcert96.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PTRATIO Type: Numeric
- Class Size
- This variable is enrollment divided
- By full-time equivalent teachers.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "cbeds96.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: AVSAL Type: Numeric
- Teacher Salary
- This variable is the total salary budget,
- including benefits, divided the number of
- full-time teachers.
- Source: School Business Services Division
- http://www.cde.ca.gov/ftpbranch/sbsdiv/
-Variable: PERPSPEN Type: Numeric
- Per-pupil Spending
- This variable is the total spending
- divided by total number of students.
- Source: School Business Services Division
- "http://www.cde.ca.gov/ftpbranch/sbsdiv/"
-
-Variable: PCT_AF Type: Numeric
- Percent Students Taking UC/CSU Prep Courses
- This variable is the percentage
- of students taking courses that
- meet University of California and
- California State University entry
- requirements.
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "cbeds96.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PCTCHRT Type: Numeric
- Percent Charter Schools
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "schlname.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: PCTYRRND Type: Numeric
- Percent Year-round Schools
- Source: The California Department
- of Education Educational Demographics
- Unit site, file "schlname.exe" at
- "http://www.cde.ca.gov/ftpbranch/retdiv/demo/newcbeds/"
-
-Variable: LANGUAGE Type: Numeric
- Mean Language Score, Grades 2-11
- This variable is the sum score for
- each grade(mean * test takers)
- divided by the sum of test takers
- for all grades.
- Source: The State of California
- Standardized Testing and Reporting
- site, "http://star.cde.ca.gov/index_index.html"
-
-Variable: MATH Type: Numeric
- Mean Math Score, Grades 2-11
- This variable is the sum score for
- each grade(mean * test takers)
- divided by the sum of test takers
- for all grades.
- Source: The State of California
- Standardized Testing and Reporting
- site, "http://star.cde.ca.gov/index_index.html"
-
-Variable: READ Type: Numeric
- Mean Reading Score, Grades 2-11
- This variable is the sum score for
- each grade(mean * test takers)
- divided by the sum of test takers
- for all grades.
- Source: The State of California
- Standardized Testing and Reporting
- site, "http://star.cde.ca.gov/index_index.html"
-
-Variable: LANGNCE Type: Numeric
- National Percentile Rank, Language
- National Percentile Rank is based on the mean
- NCE score for each district.
-
-Variable: MATHNCE Type: Numeric
- National Percentile Rank, Language
- National Percentile Rank is based on the mean
- NCE score for each district.
-
-Variable: READNCE Type: Numeric
- National Percentile Rank, Language
- National Percentile Rank is based on the mean
- NCE score for each district.
-
-Variables: READM(2-11)
- Mean reading score for individual grades.
- The grades are the number at the end
- of each variable name.
-
-Variables: MATHM(2-11)
- Mean math score for individual grades.
- The grades are the number at the end
- of each variable name.
-
-Variables: LANGM(2-11)
- Mean language score for individual grades.
- The grades are the number at the end
- of each variable name.
-
-Variables: READNCE(2-11)
- NCE percentile ranking for individual grades.
- The grades are the number at the end
- of each variable name.
-
-Variables: MATHCE(2-11)
- NCE percentile ranking for individual grades.
- The grades are the number at the end
- of each variable name.
-
-Variables: LANGNCE(2-11)
- NCE percentile ranking for individual grades.
- The grades are the number at the end
- of each variable name.
-
diff --git a/statsmodels/scikits/statsmodels/datasets/star98/star98.csv b/statsmodels/scikits/statsmodels/datasets/star98/star98.csv
deleted file mode 100644
index 3e1c73c..0000000
--- a/statsmodels/scikits/statsmodels/datasets/star98/star98.csv
+++ /dev/null
@@ -1,304 +0,0 @@
-"MATHTOT","PR50M","LOWINC","PERASIAN","PERBLACK","PERHISP","PERMINTE","AVYRSEXP","AVSALK","PERSPENK","PTRATIO","PCTAF","PCTCHRT","PCTYRRND","PERMINTE_AVYRSEXP","PERMINTE_AVSAL","AVYRSEXP_AVSAL","PERSPEN_PTRATIO","PERSPEN_PCTAF","PTRATIO_PCTAF","PERMINTE_AVYRSEXP_AVSAL","PERSPEN_PTRATIO_PCTAF"
-807.000000,452.000000,34.397300,23.299300,14.235280,11.411120,15.918370,14.706460,59.15732,4.445207,21.710250,57.032760,0.000000,22.222220,234.102872,941.68811,869.9948,96.50656,253.52242,1238.1955,13848.8985,5504.0352
-184.000000,144.000000,17.365070,29.328380,8.234897,9.314884,13.636360,16.083240,59.50397,5.267598,20.442780,64.622640,0.000000,0.000000,219.316851,811.41756,957.0166,107.68435,340.40609,1321.0664,13050.2233,6958.8468
-571.000000,337.000000,32.643240,9.226386,42.406310,13.543720,28.834360,14.595590,60.56992,5.482922,18.954190,53.941910,0.000000,0.000000,420.854496,1746.49488,884.0537,103.92435,295.75929,1022.4252,25491.1232,5605.8777
-573.000000,395.000000,11.909530,13.883090,3.796973,11.443110,11.111110,14.389390,58.33411,4.165093,21.635390,49.061030,0.000000,7.142857,159.882095,648.15671,839.3923,90.11341,204.34375,1061.4545,9326.5797,4421.0568
-65.000000,8.000000,36.888890,12.187500,76.875000,7.604167,43.589740,13.905680,63.15364,4.324902,18.779840,52.380950,0.000000,0.000000,606.144976,2752.85075,878.1943,81.22097,226.54248,983.7059,38280.2616,4254.4314
-2247.000000,1348.000000,20.931490,28.023510,4.643221,13.808160,15.378490,14.977550,66.97055,3.916104,24.519140,44.915780,0.000000,2.380952,230.332103,1029.90593,1003.0548,96.01950,175.89487,1101.2963,15425.4676,4312.7908
-1364.000000,477.000000,53.268980,8.447858,19.374830,37.905330,25.525530,14.678290,57.62195,4.270903,22.212780,32.289160,0.000000,12.121210,374.671132,1470.83081,845.7917,94.86863,137.90387,717.2320,21589.2812,3063.2283
-912.000000,565.000000,15.190090,3.665781,2.649680,13.092070,6.203008,13.661970,63.44740,4.309734,24.590260,30.452670,0.000000,0.000000,84.745309,393.56473,866.8165,105.97748,131.24291,748.8391,5376.8695,3227.2972
-525.000000,205.000000,28.215820,10.430420,6.786374,32.334300,13.461540,16.417600,57.84564,4.527603,21.741380,22.645740,0.000000,0.000000,221.006179,778.69140,949.6866,98.43634,102.53092,492.3496,12784.2439,2229.1637
-1067.000000,469.000000,32.778970,17.178310,12.484930,28.323290,27.259890,12.518640,57.80141,4.648917,20.260100,26.070990,0.000000,0.000000,341.256749,1575.66008,723.5950,94.18752,121.20187,528.2009,19725.1213,2455.5620
-3016.000000,784.000000,59.972930,17.517360,50.940930,23.101340,52.343440,16.932830,57.43444,4.693069,21.314890,19.532160,3.296703,13.186810,886.322571,3006.31616,972.5276,100.03225,91.66577,416.3258,50905.4405,1953.8459
-235.000000,209.000000,0.000000,19.748860,1.864536,2.587519,7.407407,15.869790,52.19346,5.248693,18.511820,80.379750,0.000000,0.000000,117.553994,386.61820,828.2992,97.16286,421.88863,1487.9755,6135.5497,7809.9264
-556.000000,195.000000,28.121110,12.692010,19.265820,26.841970,13.372090,14.428640,57.24045,3.980589,21.898440,31.658290,0.000000,9.090909,192.941073,765.42445,825.9018,87.16869,126.01864,693.2672,11044.0338,2759.6116
-688.000000,206.000000,36.990470,10.032360,15.423020,30.744340,13.507630,13.297530,58.41374,4.197615,23.129430,31.150790,0.000000,0.000000,179.618115,789.03119,776.7585,97.08844,130.75902,720.5000,10492.1659,3024.3817
-252.000000,136.000000,12.927960,7.172996,4.825949,13.238400,6.185567,17.471080,65.57086,5.382009,20.683330,34.831460,0.000000,0.000000,108.068536,405.59295,1145.5937,111.31787,187.46323,720.4306,7086.1468,3877.3639
-925.000000,694.000000,4.700895,8.736718,1.745657,6.932029,7.127883,16.181760,67.36755,4.607673,24.651060,39.634150,0.000000,0.000000,115.341692,480.18801,1090.1255,113.58402,182.62120,977.0238,7770.2872,4501.8062
-377.000000,204.000000,20.259790,0.485745,0.802534,5.976769,2.439024,15.309490,51.31163,4.025593,24.822920,36.194030,0.000000,91.666670,37.340214,125.15030,785.5549,99.92697,145.70243,898.4415,1915.9872,3616.7599
-69.000000,31.000000,42.668270,2.836879,0.945627,23.877070,10.638300,11.839620,55.99032,5.151626,17.912090,24.444440,0.000000,0.000000,125.953429,595.64182,662.9041,92.27639,125.92861,437.8510,7052.1728,2255.6446
-1092.000000,601.000000,33.129230,6.305412,2.766154,12.866160,6.172840,14.601440,58.55860,4.004401,22.730080,49.655170,4.347826,26.086960,90.132353,361.47287,855.0399,91.02036,198.83921,1128.6660,5278.0244,4519.6312
-115.000000,64.000000,29.392970,1.071155,0.765111,9.716909,4.477612,14.045270,53.77230,4.518034,21.185060,51.020410,0.000000,0.000000,62.889269,240.77150,755.2465,95.71482,230.51195,1080.8704,3381.7007,4883.4094
-139.000000,51.000000,52.993130,6.217371,0.332226,38.728050,7.619048,14.173950,50.69512,4.114065,20.411360,23.275860,0.000000,0.000000,107.992005,386.24855,718.5501,83.97366,95.75840,475.0920,5474.6677,1954.5592
-449.000000,220.000000,35.088360,0.829217,0.388144,4.622442,4.135338,14.302210,55.27874,4.148228,21.919470,25.000000,23.076920,15.384620,59.144472,228.59627,790.6081,90.92696,103.70570,547.9868,3269.4319,2273.1740
-309.000000,151.000000,37.204410,0.569948,1.113990,6.321244,5.357143,13.602470,50.66849,3.975448,24.869180,22.978720,0.000000,8.333333,72.870377,271.43835,689.2166,98.86613,91.35071,571.4619,3692.2320,2271.8172
-116.000000,36.000000,54.268290,0.549786,0.549786,40.745270,7.407407,14.871050,52.53700,4.205362,19.445110,36.283190,0.000000,0.000000,110.155920,389.16294,781.2804,81.77373,152.58395,705.5306,5787.2616,2967.0117
-81.000000,15.000000,65.823970,0.264085,3.873239,58.890850,6.557377,10.926520,46.29179,4.469798,19.525480,37.931030,0.000000,0.000000,71.649311,303.55272,505.8082,87.27495,169.54404,740.6216,3316.7749,3310.4288
-66.000000,5.000000,78.540770,1.282051,0.000000,78.418800,20.833330,11.477880,49.26719,3.893337,21.123110,19.230770,0.000000,0.000000,239.122462,1026.39963,565.4829,82.23939,74.87187,406.2137,11780.8918,1581.5267
-1259.000000,541.000000,30.075530,3.626196,10.503860,20.944310,8.665750,13.691080,62.34120,4.011390,23.889050,23.854450,0.000000,72.222220,118.643477,540.23325,853.5184,95.82830,95.68950,569.8601,7396.3767,2285.9313
-190.000000,86.000000,28.246010,6.893424,19.818590,16.780050,12.745100,15.915550,59.17653,4.225738,22.183790,18.000000,0.000000,0.000000,202.845276,754.21079,941.8270,93.74288,76.06328,399.3082,12003.6796,1687.3719
-322.000000,142.000000,22.333750,2.523732,3.310952,14.031030,10.309280,16.156860,59.23072,4.114418,21.743320,34.426230,0.000000,0.000000,166.565594,610.62608,956.9825,89.46111,141.64390,748.5405,9865.8000,3079.8087
-2394.000000,1365.000000,22.624650,7.697888,4.902207,16.776880,9.421586,15.323680,57.12858,3.928696,22.141620,37.638380,0.000000,0.000000,144.373369,538.24183,875.4201,86.98769,147.86975,833.3747,8247.8456,3274.0759
-648.000000,201.000000,51.784930,4.598930,27.796790,35.101600,30.024810,15.974890,58.78893,4.049181,22.873000,85.111660,0.000000,8.333333,479.643037,1765.12645,939.1467,92.61692,344.63252,1946.7590,28197.7009,7882.7796
-1949.000000,585.000000,51.238480,13.020240,35.101180,25.527030,25.826880,17.189770,62.66410,4.347936,22.870500,36.500000,0.000000,8.474576,443.958127,1618.41819,1077.1815,99.43947,158.69966,834.7733,27820.2365,3629.5407
-1417.000000,1247.000000,1.895322,9.925228,1.633719,4.276349,4.503464,15.923690,59.97694,4.035189,23.346870,50.745030,0.000000,0.000000,71.711765,270.10399,955.0542,94.20903,204.76579,1184.7376,4301.0522,4780.6402
-403.000000,165.000000,42.511430,6.252442,0.410317,10.179760,8.076923,14.709480,58.23381,4.733280,20.673640,15.503880,0.000000,0.000000,118.807337,470.35000,856.5891,97.85413,73.38421,320.5216,6918.6039,1517.1186
-329.000000,135.000000,45.423440,1.501194,0.904128,26.270900,5.338078,14.357030,55.74014,4.323754,21.534580,86.722000,0.000000,0.000000,76.638946,297.54522,800.2629,93.11023,374.96459,1867.5218,4271.8656,8074.7051
-193.000000,106.000000,30.169650,0.797373,0.515948,2.251407,1.904762,14.232330,51.82237,4.030978,21.472950,32.456140,0.000000,0.000000,27.109201,98.70928,737.5531,86.55699,130.82999,696.9291,1404.8631,2809.3058
-2267.000000,1496.000000,23.433370,11.750650,2.871447,19.031010,15.944160,11.878900,53.15807,4.242702,22.705170,40.506330,0.000000,0.000000,189.399082,847.56077,631.4594,96.33127,171.85629,919.7031,10068.0897,3902.0262
-272.000000,68.000000,57.922400,0.871731,0.647572,68.742220,18.934910,11.197870,61.08544,4.258425,24.478600,14.835160,0.000000,0.000000,212.030661,1156.64731,684.0268,104.24028,63.17442,363.1439,12951.9862,1546.4213
-144.000000,55.000000,60.599080,7.196613,0.846660,72.342430,24.761900,11.836320,51.53734,3.807790,21.070040,38.793100,0.000000,0.000000,293.089772,1276.16246,610.0124,80.23029,147.71598,817.3722,15105.0672,3112.3816
-5018.000000,1455.000000,62.019770,19.651770,11.315660,45.239620,23.404850,14.679960,61.09530,4.685643,22.259730,27.475590,0.000000,31.111110,343.582262,1429.92633,896.8766,104.30115,128.74081,611.5992,20991.2614,2865.7356
-196.000000,84.000000,35.603390,2.518757,0.375134,67.738480,7.913669,15.345160,54.70222,6.836694,21.144350,41.578950,71.428570,0.000000,121.436517,432.89526,839.4143,144.55745,284.26256,879.1599,6642.8471,6010.5470
-617.000000,136.000000,63.171320,1.406250,0.600962,71.358170,16.791980,14.461490,55.18478,4.478657,22.256520,16.786570,0.000000,6.250000,242.837051,926.66172,798.0541,99.67932,75.18129,373.6106,13400.9092,1673.2739
-64.000000,6.000000,72.916670,1.238739,0.563063,70.045050,3.921569,11.557630,39.72835,3.899132,18.236510,13.043480,0.000000,0.000000,45.324044,155.79747,459.1656,71.10656,50.85825,237.8676,1800.6495,927.4770
-189.000000,21.000000,91.604840,0.214362,0.107181,98.821000,62.184870,11.927540,55.52729,4.223126,21.686540,13.385830,0.000000,40.000000,741.712524,3452.95731,662.3040,91.58499,56.53005,290.2923,41185.2864,1225.9411
-552.000000,132.000000,57.002490,4.322917,0.585938,70.664060,23.480660,14.004430,52.15526,4.382061,21.711530,23.023260,0.000000,0.000000,328.833259,1224.63993,730.4047,95.14125,100.88933,499.8702,17150.3841,2190.4617
-290.000000,78.000000,69.645200,3.972303,1.020408,76.712830,27.600000,13.011880,53.53164,4.180037,22.501030,14.691940,0.000000,0.000000,359.127888,1477.47326,696.5473,94.05514,61.41285,330.5838,19224.7048,1381.8524
-146.000000,16.000000,87.837180,0.405405,1.216216,90.450450,32.407410,10.375610,51.40056,4.317728,20.490570,30.851060,0.000000,0.000000,336.246647,1665.75902,533.3122,88.47271,133.20649,632.1558,17283.2660,2729.4768
-585.000000,211.000000,49.250840,10.152990,7.874184,42.323740,16.539440,10.080900,54.56874,4.006118,22.591740,37.666670,0.000000,76.923080,166.732441,902.53640,550.1020,90.50518,150.89712,850.9556,9098.3792,3409.0286
-274.000000,82.000000,69.498070,5.350028,0.313034,70.432560,22.641510,12.323140,54.54601,4.283101,22.154240,40.000000,0.000000,60.000000,279.014498,1235.00403,672.1781,94.88885,171.32404,886.1696,15219.1276,3795.5539
-155.000000,16.000000,87.777250,0.533463,0.581959,97.769160,40.000000,12.207530,60.30318,3.933777,25.637500,47.169810,0.000000,0.000000,488.301200,2412.12720,736.1529,100.85221,185.55551,1209.3160,29446.1152,4757.1795
-144.000000,35.000000,86.545990,1.713710,0.201613,92.237900,26.086960,14.580660,62.75826,5.242800,21.721130,19.178080,0.000000,0.000000,380.365094,1637.17222,915.0569,113.87954,100.54684,416.5696,23871.0515,2183.9909
-143.000000,90.000000,21.604680,0.540541,0.291060,7.484407,1.526718,17.112420,62.52282,5.879966,19.485120,26.373630,0.000000,0.000000,26.125840,95.45471,1069.9168,114.57184,155.07605,513.8933,1633.4612,3021.6754
-67.000000,23.000000,64.850750,0.667111,3.068712,64.509670,14.925370,11.369180,47.73257,3.511900,21.488720,10.666670,0.000000,0.000000,169.689218,712.42627,542.6802,75.46624,37.46028,229.2131,8099.7025,804.9734
-138.000000,76.000000,53.125000,21.752270,0.906344,20.745220,4.651163,15.736080,60.02066,4.325154,24.481130,47.115380,0.000000,0.000000,73.191073,279.16587,944.4899,105.88466,203.78127,1153.4377,4392.9765,4988.7959
-183.000000,73.000000,44.974660,1.348412,0.826446,33.188340,5.932203,16.253280,55.65380,4.602903,20.855380,49.193550,0.000000,0.000000,96.417756,330.14964,904.5568,95.99529,226.43314,1025.9502,5366.0145,4722.3492
-88.000000,38.000000,76.321210,0.000000,0.655977,2.842566,30.000000,14.785540,65.66547,5.770566,19.649640,25.925930,0.000000,0.000000,443.566200,1969.96410,970.8994,113.38954,149.60729,509.4352,29126.9830,2939.7294
-109.000000,23.000000,33.916720,0.714750,1.169591,2.988954,0.000000,15.792610,56.05594,4.427872,21.315440,44.705880,0.000000,0.000000,0.000000,0.00000,885.2696,94.38204,197.95191,952.9255,0.0000,4219.4322
-59.000000,40.000000,11.716170,0.500000,0.000000,4.666667,0.000000,15.512200,54.64567,4.893857,20.321540,34.146340,0.000000,0.000000,0.000000,0.00000,847.6746,99.45071,167.10731,693.9062,0.0000,3395.8778
-373.000000,67.000000,54.256670,0.518807,0.277932,80.211230,35.042740,14.956510,66.53025,4.304715,23.780750,33.898310,0.000000,0.000000,524.117091,2331.40225,995.0603,102.36935,145.92256,806.1272,34869.6411,3470.1480
-506.000000,91.000000,43.954820,1.432902,0.055112,97.519980,70.099670,14.587750,67.37006,4.266618,23.571910,15.825690,0.000000,0.000000,1022.596461,4722.61897,982.7776,100.57234,67.52217,373.0417,68892.3849,1591.6266
-98.000000,36.000000,74.301680,0.421941,5.555556,71.589310,40.579710,12.217090,53.51974,4.518243,20.625000,29.411760,0.000000,0.000000,495.765969,2171.81553,653.8555,93.18876,132.88948,606.6176,26533.2658,2740.8455
-578.000000,133.000000,62.100080,1.554243,2.942700,82.644290,33.412890,15.206300,66.12509,4.453164,23.321390,31.302880,0.000000,0.000000,508.086429,2209.43036,1005.5180,103.85397,139.39686,730.0267,33597.2609,3250.9285
-162.000000,19.000000,63.918040,0.399003,0.149626,70.473820,26.881720,11.607010,56.62257,4.245811,21.685140,32.142860,0.000000,0.000000,312.016393,1522.11207,657.2187,92.07101,136.47251,697.0224,17667.1700,2959.4255
-179.000000,75.000000,39.944520,0.749229,2.688409,60.775670,24.528300,9.224783,51.16703,3.708859,20.856870,34.920630,0.000000,0.000000,226.268245,1255.04026,472.0047,77.35519,129.51569,728.3350,11577.4741,2701.2920
-50.000000,4.000000,76.827900,0.000000,3.005780,31.098270,20.408160,15.318520,60.14108,5.355161,18.991770,19.354840,0.000000,0.000000,312.622807,1227.36878,921.2723,101.70399,103.64828,367.5827,18801.4733,1968.4644
-170.000000,126.000000,25.588490,0.762389,0.508259,11.012280,5.454545,16.509920,59.80555,4.349222,23.450350,40.718560,0.000000,0.000000,90.054102,326.21206,987.3848,101.99078,177.09406,954.8645,5385.7351,4152.9176
-550.000000,104.000000,68.643430,0.780814,1.728946,76.887900,31.818180,12.211630,58.86169,3.714920,25.990960,14.035090,0.000000,0.000000,388.551841,1872.87185,718.7972,96.55434,52.13924,364.7855,22870.8180,1355.1488
-187.000000,45.000000,40.599000,1.107011,14.870850,24.538750,7.627119,15.244270,63.04220,4.572615,24.419980,32.484080,0.000000,37.500000,116.269861,480.83036,961.0323,111.66317,148.53719,793.2606,7329.9079,3627.2752
-167.000000,75.000000,31.860470,2.014723,12.437040,7.477722,9.848485,15.326670,63.49800,5.767594,20.307220,32.800000,0.000000,0.000000,150.944480,625.35910,973.2129,117.12380,189.17708,666.0768,9584.6726,3841.6606
-219.000000,68.000000,49.351030,1.697439,8.219178,31.983320,9.459460,13.084260,58.15920,4.284445,23.427000,15.492960,0.000000,33.333330,123.770034,550.15463,760.9701,100.37169,66.37874,362.9536,7198.3662,1555.0546
-193.000000,58.000000,51.462370,0.361248,0.755337,17.766830,2.739726,14.436970,62.63310,5.763701,21.056580,17.791410,0.000000,0.000000,39.553342,171.59753,904.2322,121.36383,102.54437,374.6262,2477.3484,2159.2337
-324.000000,156.000000,24.995040,0.420420,2.722723,17.397400,4.524887,14.790000,60.45509,4.308128,22.871650,29.729730,0.000000,0.000000,66.923079,273.55245,894.1308,98.53400,128.07948,679.9680,4045.8407,2929.3891
-255.000000,43.000000,65.890270,0.471815,4.395332,78.917310,21.100920,14.932690,61.80390,4.139937,24.511740,14.015150,0.000000,0.000000,315.093497,1304.11915,922.8985,101.47706,58.02184,343.5357,19474.0070,1422.2162
-463.000000,208.000000,32.598730,2.233486,4.799620,10.898150,5.629139,14.351020,62.45315,4.537569,22.041570,38.662790,0.000000,0.000000,80.783886,351.55746,896.2664,100.01514,175.43508,852.1886,5045.2082,3866.8645
-200.000000,18.000000,81.964570,0.311527,0.233645,92.017130,31.896550,13.132460,55.36986,4.428046,22.508560,23.684210,0.000000,0.000000,418.880167,1766.10751,727.1425,99.66894,104.87477,533.0975,23193.3362,2360.5801
-91.000000,47.000000,37.832020,0.358423,0.860215,13.691760,8.333333,10.381430,55.94207,4.098994,24.921740,0.000000,0.000000,0.000000,86.511913,466.18390,580.7587,102.15406,0.00000,0.0000,4839.6555,0.0000
-197.000000,45.000000,64.279180,0.463822,4.050711,79.375390,17.361110,15.315450,66.40420,4.605861,22.676350,15.584420,0.000000,0.000000,265.893212,1152.85062,1017.0102,104.44412,71.77967,353.3978,17656.4260,1627.7010
-161.000000,14.000000,86.493620,0.000000,0.734095,89.967370,15.596330,11.060660,57.64157,4.543492,21.752770,26.190480,0.000000,0.000000,172.505703,898.99695,637.5538,98.83354,118.99624,569.7155,9943.4996,2588.4978
-165.000000,91.000000,45.570200,0.954199,1.335878,22.089690,7.207207,14.757810,54.04060,4.832320,20.083330,50.943400,0.000000,0.000000,106.362592,389.48179,797.5209,97.04908,246.17481,1023.1131,5747.8983,4944.0100
-206.000000,52.000000,73.609000,0.829611,5.966816,9.604340,6.329114,13.782500,54.43995,4.354388,20.612900,10.606060,0.000000,100.000000,87.231014,344.55665,750.3186,89.75656,46.18290,218.6217,4748.8520,951.9635
-147.000000,85.000000,46.295230,0.659703,1.869159,15.667950,3.448276,15.131310,58.96214,4.361361,21.417050,28.421050,0.000000,0.000000,52.176933,203.31773,892.1744,93.40749,123.95446,608.6950,3076.4636,2654.7388
-116.000000,77.000000,26.795750,0.723764,0.361882,8.685163,1.204819,11.295160,50.09641,3.932390,19.150490,40.697670,0.000000,0.000000,13.608623,60.35711,565.8470,75.30720,160.03911,779.3803,681.7432,3064.8274
-61.000000,23.000000,52.917090,1.732926,2.854230,8.256880,6.250000,14.987070,59.99540,5.022533,21.899560,37.704920,0.000000,0.000000,93.669188,374.97125,899.1553,109.99126,189.37420,825.7212,5619.7204,4147.2118
-43.000000,8.000000,41.970800,0.000000,0.571429,9.142857,3.030303,17.904290,55.17685,5.259958,18.965520,18.181820,0.000000,0.000000,54.255424,167.20257,987.9023,99.75784,95.63561,344.8277,2993.6434,1813.7791
-1599.000000,879.000000,30.505520,32.465420,10.401410,32.659800,36.004060,15.257560,59.28909,4.219665,22.576790,49.732620,0.000000,3.333333,549.334106,2134.64795,904.6068,95.26649,209.85500,1122.8029,32569.5192,4737.8522
-771.000000,640.000000,8.362214,52.593960,1.213040,9.888444,8.900524,15.982010,64.41547,4.166218,24.274600,60.840110,0.000000,27.272730,142.248264,573.33144,1029.4887,101.13328,253.47316,1476.8693,9162.9888,6152.9596
-800.000000,200.000000,70.738270,0.959561,3.152844,78.941060,25.955730,14.498850,64.61103,4.379243,23.981860,19.424460,0.000000,11.111110,376.328236,1677.02645,936.7856,105.02239,85.06443,465.8347,24314.9549,2040.0033
-1029.000000,268.000000,62.871680,4.723750,1.793829,85.469980,27.212020,15.062110,67.83996,3.819118,27.505420,26.771650,0.000000,0.000000,409.870439,1846.06235,1021.8129,105.04644,102.24409,736.3655,27805.5942,2812.2666
-399.000000,108.000000,79.676600,2.102924,2.102924,89.143440,45.600000,14.399820,62.08461,4.432065,23.559660,20.987650,0.000000,0.000000,656.631792,2831.05822,894.0072,104.41794,93.01863,494.4619,40766.7287,2191.4873
-927.000000,260.000000,49.172150,5.575448,18.158570,38.480090,12.274370,13.042280,58.55052,3.988183,23.885220,17.997290,0.000000,7.142857,160.085770,718.67075,763.6323,95.25863,71.77649,429.8692,9373.1051,1714.3972
-417.000000,346.000000,9.733488,10.939850,3.571429,4.097744,10.819670,18.200000,62.45576,6.015758,17.724690,61.884370,0.000000,0.000000,196.917994,675.75071,1136.6948,106.62745,372.28139,1096.8813,12298.6630,6598.5723
-804.000000,426.000000,25.843950,5.866005,4.823821,27.583130,9.501188,16.892010,62.02176,4.054136,24.114240,51.764710,0.000000,0.000000,160.494163,589.28040,1047.6722,97.76241,209.86117,1248.2666,9954.1304,5060.6427
-992.000000,436.000000,37.679800,5.688124,2.774695,36.958930,13.166670,14.469380,62.40043,4.138196,23.957660,32.429100,0.000000,5.263158,190.513552,821.60587,902.8955,99.14149,134.19797,776.9254,11888.1275,3215.0694
-464.000000,209.000000,23.947700,5.265554,4.871017,36.616080,11.764710,15.322540,61.53467,4.024875,24.122970,38.725490,0.000000,0.000000,180.265240,723.93755,942.8674,97.09194,155.86526,934.1738,11092.5620,3759.9329
-483.000000,338.000000,20.807020,10.111850,12.001210,20.873640,11.708860,13.907750,61.44766,4.401148,21.542030,53.169730,0.000000,0.000000,162.843898,719.48205,854.5987,94.80966,234.00785,1145.3839,10006.3765,5041.0041
-958.000000,450.000000,37.644950,8.548446,5.798903,50.829980,14.259930,13.900460,62.29003,4.265807,24.256400,42.084430,0.000000,0.000000,198.219587,888.25147,865.8601,103.47312,179.52406,1020.8168,12347.1040,4354.6073
-388.000000,144.000000,33.511680,10.202370,17.912690,36.812180,18.650790,15.385020,62.13202,4.282612,22.957290,41.176470,0.000000,0.000000,286.942777,1158.81126,955.9024,98.31717,176.34284,945.3002,17828.3344,4048.3538
-1312.000000,538.000000,42.840950,5.595576,4.804180,63.337050,14.599480,12.293480,64.63193,3.979219,25.141500,23.267330,0.000000,0.000000,179.478415,943.59257,794.5513,100.04353,92.58580,584.9756,11600.0364,2327.7459
-273.000000,71.000000,61.400090,2.775971,13.207550,61.960530,30.000000,16.068420,59.30374,4.179698,25.225270,15.015970,0.000000,0.000000,482.052600,1779.11220,952.9174,105.43401,62.76222,378.7819,28587.5221,1583.1939
-682.000000,130.000000,68.085100,0.683527,0.580998,94.480520,51.814520,16.274280,65.65300,4.338243,22.495030,33.670030,0.000000,0.000000,843.244007,3401.77868,1068.4553,97.58891,146.06877,757.4083,55361.4988,3285.8214
-212.000000,125.000000,13.800080,6.320789,3.397881,14.870300,4.761905,11.927660,57.36205,4.718115,21.288740,38.993710,0.000000,0.000000,56.798384,273.15263,684.1950,100.44272,183.97681,830.1270,3258.0717,3916.6344
-2327.000000,1326.000000,50.674020,12.127240,1.119947,23.866800,12.239580,13.221090,73.03900,4.224937,26.670200,26.386550,0.000000,34.482760,161.820589,893.96668,965.6552,112.67991,111.48151,703.7346,11819.2140,2973.2342
-584.000000,339.000000,14.826240,4.119138,1.292776,16.565270,6.329114,14.992660,63.78461,4.130350,24.900640,33.600000,0.000000,0.000000,94.890254,403.70007,956.3010,102.84836,138.77976,836.6615,6052.5379,3455.7048
-1111.000000,222.000000,69.008290,0.192555,43.091380,55.368190,63.439070,15.019830,63.04099,3.748330,27.402750,38.888890,0.000000,57.894740,952.844047,3999.26178,946.8650,102.71455,145.76839,1065.6625,60068.2320,3994.4548
-326.000000,287.000000,1.421801,26.200560,0.541431,3.060264,8.205128,15.025790,63.79163,4.705506,21.596240,66.181820,0.000000,0.000000,123.288530,523.41849,958.5196,101.62124,311.41895,1429.2785,7864.7763,6725.4784
-828.000000,671.000000,2.971741,7.571330,1.366449,4.975937,7.024793,17.007010,64.74985,4.414050,24.239130,60.623230,0.000000,0.000000,119.470725,454.85429,1101.2013,106.99273,267.59397,1469.4544,7735.7115,6486.2450
-5677.000000,1930.000000,64.238700,14.166320,20.336870,40.489830,29.108750,13.309800,59.29818,4.210309,22.983120,41.378230,2.325581,19.767440,387.431641,1726.09590,789.2469,96.76604,174.21513,951.0008,22973.9912,4004.0073
-38852.000000,9324.000000,73.183940,4.308746,13.795250,68.524170,45.461390,20.545740,73.07307,4.365276,23.420950,49.306180,2.321981,32.198140,934.037899,3322.00333,1501.3403,102.23891,215.23508,1154.7976,68253.0168,5041.0101
-939.000000,113.000000,59.296940,0.224649,12.056160,86.527300,52.487140,15.793010,67.06302,4.064954,27.059610,15.084750,0.000000,50.000000,828.929927,3519.94612,1059.1269,109.99607,61.31881,408.1875,55590.5443,1659.2632
-401.000000,144.000000,56.898580,1.915122,14.064650,48.077220,17.543860,14.425880,57.19330,4.017302,22.554720,25.947520,0.000000,11.111110,253.085619,1003.39125,825.0637,90.60912,104.23902,585.2390,14474.8017,2351.0820
-2093.000000,377.000000,75.034300,4.879927,0.447129,90.518500,59.529810,16.923410,67.60591,3.810285,27.995780,28.541670,0.000000,25.000000,1007.447382,4024.56698,1144.1225,106.67190,108.75190,799.0463,68109.3970,3044.5942
-1436.000000,388.000000,44.022030,4.939493,5.015970,62.976290,29.220020,15.621080,60.66556,3.616505,25.625820,21.508660,0.000000,7.142857,456.448270,1772.64888,947.6616,92.67591,77.78618,551.1770,27690.6899,1993.3346
-678.000000,597.000000,1.943602,30.026930,1.723209,3.941842,7.474227,18.942870,59.82121,3.946788,24.114410,89.130430,0.000000,0.000000,141.583310,447.11730,1133.1854,95.17446,351.77891,2149.3277,8469.6849,8482.9409
-1088.000000,185.000000,58.228350,1.783620,14.614580,75.708200,35.248450,11.801460,63.19071,4.370215,24.505800,5.430712,0.000000,73.333330,415.983173,2227.37458,745.7426,107.09561,23.73338,133.0839,26286.2720,581.6054
-1352.000000,365.000000,61.881100,2.221930,32.005430,47.111930,42.184150,14.272990,64.58404,4.443599,23.867130,39.655170,0.000000,0.000000,602.093951,2724.42283,921.8074,106.05596,176.21167,946.4551,38885.6598,4205.6669
-1983.000000,575.000000,73.505300,6.393463,11.233780,71.204470,48.698570,16.683370,65.62877,4.007186,26.044220,8.277190,0.000000,23.684210,812.456262,3196.02725,1094.9091,104.36403,33.16824,215.5730,53320.5051,863.8409
-265.000000,246.000000,0.265340,63.202340,0.487171,3.345242,6.944444,15.907860,57.54338,4.619277,22.177360,78.189300,0.000000,0.000000,110.471243,399.60678,915.3920,102.44337,361.17804,1734.0323,6356.8887,8009.9753
-753.000000,429.000000,26.090650,5.531472,8.617999,27.076470,22.266400,15.874000,65.96343,5.063350,22.315280,65.106380,0.000000,0.000000,353.456834,1468.76812,1047.1035,112.99007,329.65639,1452.8671,23315.2251,7356.3746
-300.000000,234.000000,11.678830,32.089360,4.467806,18.212880,13.017750,16.196450,61.16962,4.043499,22.990940,64.074070,0.000000,0.000000,210.841337,796.29082,990.7307,92.96384,259.08344,1473.1231,12897.0845,5956.5718
-376.000000,237.000000,27.321980,38.107750,1.445466,20.367940,7.359307,13.787500,59.41730,4.035891,23.648950,31.564990,0.000000,0.000000,101.466445,437.27015,819.2160,95.44458,127.39286,746.4789,6028.8622,3012.7074
-1732.000000,1108.000000,17.701930,28.476880,3.996755,15.833300,19.657260,13.318610,59.55529,3.822103,23.783230,45.956610,0.000000,0.000000,261.807380,1170.69382,793.1937,90.90195,175.65090,1092.9966,15592.0144,4177.5457
-627.000000,194.000000,47.307170,9.439110,9.122654,58.162370,17.520220,13.903390,56.84137,3.907338,24.422660,29.061780,0.000000,0.000000,243.590452,995.87331,790.2877,95.42759,113.55420,709.7660,13846.0150,2773.2956
-1843.000000,258.000000,78.423910,0.054539,35.729620,62.927360,80.174930,14.793150,58.99142,3.743125,28.099970,41.789050,0.000000,2.564103,1186.039766,4729.63297,872.6689,105.18170,156.42164,1174.2711,69966.1700,4395.4433
-1647.000000,609.000000,40.236070,16.399950,2.539347,67.976020,28.903650,17.393570,62.32530,4.103139,25.056070,38.678490,0.000000,0.000000,502.737660,1801.42866,1084.0595,102.80854,158.70322,969.1310,31333.2755,3976.4790
-1213.000000,606.000000,33.850630,18.781190,6.688608,55.350890,29.182390,16.173100,62.27731,4.369675,24.445740,30.261880,0.000000,0.000000,471.969712,1817.40075,1007.2172,106.81994,132.23458,739.7741,29393.0040,3232.5722
-1171.000000,831.000000,6.196674,42.313890,5.721689,18.180540,17.736490,14.824450,60.55524,3.982780,24.250860,57.785470,0.000000,0.000000,262.933709,1074.03741,897.6981,96.58584,230.14681,1401.3473,15922.0139,5581.2582
-319.000000,185.000000,53.455700,36.402370,1.889589,43.479070,22.065730,14.123080,57.66326,3.814974,23.166670,0.000000,11.111110,0.000000,311.636070,1272.38193,814.3828,88.38024,0.00000,0.0000,17969.9517,0.0000
-192.000000,109.000000,28.172350,1.443203,1.722533,11.918060,7.446809,11.728040,58.88017,3.806893,24.822220,0.000000,0.000000,0.000000,87.336474,438.46938,690.5490,94.49554,0.00000,0.0000,5142.3864,0.0000
-299.000000,242.000000,7.197273,7.003820,1.819174,8.659269,7.936508,15.217190,64.22489,5.093928,21.587110,43.089430,0.000000,0.000000,120.771350,509.72135,977.3224,109.96318,219.49445,930.1763,7756.5267,4738.2509
-489.000000,298.000000,25.639930,7.277444,5.188422,23.184050,10.248450,16.505210,68.09637,5.006776,22.475220,51.540620,0.000000,0.000000,169.152819,697.88224,1123.9449,112.52839,258.05234,1158.3868,11518.6930,5799.7831
-159.000000,48.000000,59.287210,0.941378,2.524604,41.634570,6.666667,12.205420,53.26582,3.873240,23.551490,25.409840,0.000000,0.000000,81.369471,355.10548,650.1317,91.22057,98.41841,598.4396,4334.2116,2317.9002
-1130.000000,362.000000,60.023900,1.152145,3.543626,67.353800,26.829270,14.054850,56.27459,4.064557,23.458330,31.994050,0.000000,45.000000,377.081365,1509.80617,790.9309,95.34772,130.04164,750.5270,21220.0992,3050.5597
-564.000000,412.000000,14.792290,4.893837,2.770585,11.108230,3.562341,16.620180,53.79499,4.365513,20.396360,48.085110,6.250000,12.500000,59.206749,191.63610,894.0824,89.04057,209.91617,980.7612,3185.0265,4281.5258
-277.000000,144.000000,34.767680,7.884136,5.198542,36.178780,8.536585,15.191140,53.33638,4.458969,20.966820,53.592810,0.000000,0.000000,129.680458,455.31054,810.2404,93.49040,238.96868,1123.6708,6916.6862,5010.4133
-52.000000,28.000000,0.000000,0.480192,0.480192,28.691480,7.407407,13.726150,60.99250,6.459384,16.405350,26.000000,0.000000,0.000000,101.675180,451.79627,837.1922,105.96846,167.94398,426.5391,6201.4234,2755.1798
-225.000000,112.000000,27.000720,0.511322,0.292184,6.208912,1.459854,15.598450,51.69282,4.183603,21.538460,29.801320,0.000000,0.000000,22.771460,75.46397,806.3279,90.10837,124.67689,641.8745,1177.1210,2685.3482
-38.000000,21.000000,55.932200,0.840336,1.344538,45.378150,0.000000,12.756000,48.85596,6.406862,14.316040,44.736840,0.000000,0.000000,0.000000,0.00000,623.2066,91.72089,286.62276,640.4544,0.0000,4103.3029
-188.000000,98.000000,37.299680,1.162791,0.415282,19.684390,2.272727,17.130740,56.33678,4.990487,19.472870,25.899280,0.000000,0.000000,38.933495,128.03812,965.0907,97.17910,129.25002,504.3333,2193.3878,2516.8688
-489.000000,240.000000,46.927540,0.969469,1.114166,22.818690,4.848485,17.401500,64.53571,4.838431,21.344880,33.333330,0.000000,36.363640,84.370912,312.90042,1123.0182,103.27573,161.28102,711.4959,5444.9367,3442.5240
-171.000000,67.000000,46.538460,0.846154,0.692308,11.576920,2.985075,17.472000,56.56813,4.611976,20.828080,26.380370,0.000000,0.000000,52.155230,168.86011,988.3584,96.05861,121.66563,549.4525,2950.3239,2534.0615
-33.000000,13.000000,56.331170,0.517241,0.689655,3.965517,4.651163,12.497870,48.86760,6.578053,15.732980,34.210530,0.000000,0.000000,58.129631,227.29117,610.7409,103.49238,225.03868,538.2336,2840.6555,3540.5290
-183.000000,60.000000,37.788990,1.586639,0.292276,17.327770,11.711710,13.417060,58.10255,4.361619,22.786120,20.800000,0.000000,16.666670,157.136716,680.48022,779.5654,99.38437,90.72168,473.9513,9130.0439,2067.1950
-48.000000,14.000000,41.431670,0.915565,0.000000,84.130210,25.581400,12.771430,55.70923,4.140527,22.185270,24.742270,0.000000,0.000000,326.711059,1425.12010,711.4865,91.85871,102.44604,548.9139,18200.8216,2272.7930
-455.000000,123.000000,50.928240,1.244953,4.862046,53.179680,12.167300,12.078160,55.07462,4.075188,21.770280,33.935020,0.000000,50.000000,146.958596,670.10942,665.2001,88.71798,138.29159,738.7749,8093.6888,3010.6466
-108.000000,23.000000,52.407930,0.614335,0.955631,50.443690,8.333333,11.989610,53.60990,4.080966,21.157740,49.275360,0.000000,0.000000,99.913413,446.74915,642.7618,86.34402,201.09107,1042.5553,5356.3481,4254.6325
-181.000000,33.000000,60.918210,0.156801,6.311250,61.701290,15.441180,11.491350,54.80270,4.750999,18.812180,19.594590,0.000000,0.000000,177.440004,846.21836,629.7570,89.37665,93.09388,368.6170,9724.1913,1751.2988
-94.000000,37.000000,33.277730,0.750000,0.750000,10.416670,1.612903,11.680880,55.85474,4.786679,19.229530,32.786890,0.000000,0.000000,18.840126,90.08828,652.4325,92.04559,156.94032,630.4765,1052.3104,3017.8886
-47.000000,19.000000,64.850840,0.000000,0.000000,52.380950,4.761905,12.955320,50.84007,4.851063,18.400950,45.714290,0.000000,0.000000,61.692003,242.09558,658.6494,89.26417,221.76290,841.1864,3136.4258,4080.6480
-40.000000,24.000000,45.933730,0.310078,0.775194,14.108530,2.222222,14.034310,52.32031,6.283433,14.669700,76.923080,0.000000,0.000000,31.187352,116.26734,734.2794,92.17608,483.34102,1128.4385,1631.7319,7090.4678
-93.000000,45.000000,21.840070,0.582848,0.083264,21.815150,4.838710,14.984850,60.15944,4.806483,20.594230,42.857140,0.000000,0.000000,72.507344,291.09408,901.4802,98.98582,205.99211,882.6098,4362.0012,4242.2490
-201.000000,149.000000,10.706820,2.977162,1.305057,7.544861,4.800000,17.294230,69.88739,5.676651,20.678540,55.921050,0.000000,0.000000,83.012304,335.45947,1208.6486,117.38485,317.44428,1156.3657,5801.5133,6564.2843
-773.000000,255.000000,40.134530,8.813424,15.637240,25.225730,17.657050,19.471920,61.01163,4.496243,20.607040,28.907920,0.000000,95.238100,343.816665,1077.28540,1188.0136,92.65426,129.97703,595.7067,20976.8152,2678.4419
-154.000000,105.000000,14.279550,4.711581,1.893439,7.089388,2.941176,17.541950,63.90955,4.756384,22.632100,48.175180,0.000000,0.000000,51.593962,187.96923,1121.0981,107.64696,229.13966,1090.3055,3297.3469,5185.9116
-357.000000,107.000000,40.666670,1.844262,1.285395,49.236210,20.158100,14.685340,56.61921,4.356072,21.579570,60.597830,0.000000,0.000000,296.028552,1141.33570,831.4723,94.00216,263.96851,1307.6751,16760.9028,5696.3270
-163.000000,60.000000,67.269370,0.273879,0.410818,86.511470,24.193550,11.886840,58.89312,4.200852,24.908640,11.304350,0.000000,0.000000,287.584858,1424.83364,700.0531,104.63751,47.48790,281.5760,16936.7695,1182.8590
-61.000000,21.000000,45.670230,0.682594,0.341297,47.098980,4.545455,13.511220,54.34489,4.650725,20.973870,50.000000,0.000000,0.000000,61.414643,247.02225,734.2658,97.54370,232.53625,1048.6935,3337.5720,4877.1851
-1198.000000,587.000000,32.709060,1.396074,1.776254,26.488000,6.388527,15.475870,54.78513,3.912949,21.838410,29.252580,3.333333,0.000000,98.868013,349.99628,847.8475,85.45258,114.46385,638.8298,5416.4970,2499.7086
-112.000000,58.000000,34.434250,0.738007,0.430504,37.453870,14.634150,15.647780,51.43444,4.386959,21.202050,44.144140,0.000000,0.000000,228.991960,752.69931,804.8348,93.01252,193.65853,935.9463,11778.0732,4105.9579
-455.000000,300.000000,16.157800,8.398994,2.179380,21.626150,4.897959,15.227270,57.19342,3.825952,25.227760,40.720220,0.000000,0.000000,74.582544,280.13103,870.8996,96.52020,155.79361,1027.2799,4265.6308,3930.3237
-2692.000000,1804.000000,17.338030,4.709514,1.580624,16.953750,9.391933,12.699920,60.77938,3.802974,23.000430,44.825580,0.000000,10.526320,119.276798,570.83586,771.8933,87.47004,170.47052,1031.0076,7249.5698,3920.8952
-3007.000000,1473.000000,48.156080,28.711550,1.291070,44.051470,11.486120,15.676560,65.18442,3.835549,24.673220,20.381300,0.000000,0.000000,180.062849,748.71607,1021.8675,94.63534,78.17347,502.8723,11737.2924,1928.7913
-188.000000,145.000000,9.316273,1.883830,1.216641,9.222920,7.619048,16.906410,70.27437,4.481474,24.263570,74.285710,0.000000,0.000000,128.810749,535.42380,1188.0873,108.73656,332.90948,1802.4365,9052.0943,8077.5724
-1186.000000,688.000000,39.025440,4.683563,1.235117,34.123810,4.426788,16.001170,60.20204,4.349231,22.482760,42.871490,0.000000,0.000000,70.833787,266.50167,963.3031,97.78272,186.45801,963.8694,4264.3385,4192.0908
-1991.000000,1035.000000,36.019980,10.882420,2.085541,36.821770,9.424084,16.817670,56.41511,3.586935,25.448820,47.330260,2.564103,12.820510,158.491135,531.66074,948.7707,91.28326,169.77057,1204.4993,8941.2948,4320.4606
-1875.000000,1238.000000,21.013880,8.124397,1.888460,25.920120,11.397420,15.153020,63.10153,4.172242,24.717150,36.561740,0.000000,0.000000,172.705333,719.19464,956.1787,103.12593,152.54443,903.7020,10897.9708,3770.4635
-3391.000000,610.000000,73.277230,4.408512,1.079825,90.790820,26.487520,14.970920,69.82454,4.102145,25.032190,21.729370,0.000000,56.250000,396.542543,1849.47890,1045.3376,102.68567,89.13703,543.9337,27688.4006,2231.2950
-2363.000000,1607.000000,10.534500,8.401664,2.167491,14.810680,6.056435,14.979900,60.37220,3.840866,22.191010,53.791890,0.000000,0.000000,90.724791,365.64031,904.3695,85.23270,206.60744,1193.6964,5477.2552,4584.8278
-1074.000000,526.000000,29.868970,8.276043,4.655274,41.681400,5.263158,13.014120,57.83115,3.629530,24.169470,39.595380,0.000000,0.000000,68.495370,304.37448,752.6215,87.72382,143.71262,956.9993,3961.1660,3473.4578
-1799.000000,1421.000000,10.516500,25.163700,3.039764,7.410780,9.255725,16.097760,62.55098,4.352488,22.658160,0.000000,0.000000,9.677420,148.996440,578.95467,1006.9307,98.61937,0.00000,0.0000,9319.8733,0.0000
-621.000000,416.000000,11.600250,8.991280,3.111006,11.536650,10.133330,15.093070,67.28494,4.726529,23.198790,49.592170,0.000000,10.000000,152.943059,681.82050,1015.5363,109.64975,234.39883,1150.4783,10290.7645,5437.7692
-358.000000,204.000000,23.356440,0.627574,0.431457,17.709350,6.617647,13.593590,49.51303,4.638098,19.678420,44.131460,0.000000,0.000000,89.957580,327.65975,673.0598,91.27044,204.68604,868.4374,4454.0724,4027.8978
-182.000000,49.000000,28.660970,0.562810,1.440792,17.424580,4.878049,13.332730,42.65839,3.503698,24.268590,27.461140,62.500000,0.000000,65.037710,208.08972,568.7528,85.02981,96.21554,666.4431,2774.4040,2335.0155
-445.000000,276.000000,17.136240,3.538945,1.372581,6.664462,4.651163,11.192390,52.65482,3.596095,23.043300,0.000000,0.000000,0.000000,52.057630,244.90615,589.3333,82.86590,0.00000,0.0000,2741.0852,0.0000
-288.000000,132.000000,36.662110,0.663533,1.216478,6.856511,2.717391,16.154050,56.50012,4.912702,21.232090,33.193280,0.000000,0.000000,43.896870,153.53292,912.7058,104.30693,163.06869,704.7627,2480.1784,3462.2892
-1078.000000,280.000000,42.290290,4.021226,7.222877,47.158020,17.241380,13.007080,62.39070,3.758198,25.181950,41.666670,0.000000,70.588240,224.260009,1075.70177,811.5208,94.63875,156.59160,1049.2480,13991.7389,3943.2817
-335.000000,54.000000,75.529870,13.368510,13.852240,36.697450,20.297030,13.817330,60.07478,4.456322,21.899660,41.818180,0.000000,12.500000,280.450762,1219.33961,830.0731,97.59194,186.35528,915.8039,16848.0178,4081.1172
-219.000000,53.000000,58.746440,1.151316,3.426535,34.649120,9.027778,15.966160,59.27044,4.070740,24.756270,26.250000,0.000000,12.500000,144.138948,535.08037,946.3213,100.77634,106.85693,649.8521,8543.1789,2645.3789
-2122.000000,849.000000,41.511390,3.604238,4.644538,41.778430,11.373210,13.542970,64.06346,4.083554,25.231140,34.637270,0.000000,34.285710,154.027042,728.60718,867.6095,103.03272,141.44316,873.9378,9867.5052,3568.7722
-1434.000000,387.000000,55.991250,1.264684,2.467791,60.041680,15.808820,12.687370,64.12352,3.937206,25.213800,43.171810,4.347826,0.000000,200.572349,1013.71719,813.5588,99.27192,169.97631,1088.5254,12861.4050,4285.7487
-1085.000000,456.000000,62.407780,1.435897,2.666667,29.230770,9.033280,15.502510,59.73505,3.916537,24.517560,21.428570,0.000000,5.263158,140.038514,539.60343,926.0432,96.02393,83.92579,525.3763,8365.2076,2057.6555
-1199.000000,300.000000,50.210920,1.388811,5.304256,53.254500,23.789760,13.275310,62.06872,3.826458,24.666670,26.383530,0.000000,4.166667,315.816439,1476.59995,823.9815,94.38598,100.95547,650.7938,19602.3221,2490.2352
-2300.000000,644.000000,43.068910,3.265436,23.676000,35.353280,23.123580,14.011940,58.40116,4.173917,24.092200,25.592420,2.857143,22.857140,324.006216,1350.44390,818.3135,100.55884,106.82064,616.5777,18922.3388,2573.5441
-1226.000000,319.000000,62.504970,1.157494,5.942876,53.491240,8.933333,13.070020,57.24297,4.143368,24.201040,13.754050,0.000000,9.523810,116.758841,511.37051,748.1668,100.27381,56.98809,332.8623,6683.6228,1379.1711
-238.000000,93.000000,55.912890,0.632911,10.522150,52.083330,10.795450,14.110260,61.88548,4.694474,22.195810,20.930230,0.000000,0.000000,152.326606,668.08161,873.2202,104.19765,98.25642,464.5634,9426.8051,2180.8808
-2388.000000,860.000000,47.234350,3.598305,10.326660,40.110930,21.747700,10.976620,61.44565,4.384205,23.568530,33.772460,0.000000,19.047620,238.716239,1336.30156,674.4656,103.32927,148.06539,795.9672,14668.0745,3489.6835
-306.000000,92.000000,64.179100,1.007308,3.851471,50.819670,7.446809,13.119810,58.04066,3.564449,26.021620,11.931820,12.500000,25.000000,97.700719,432.21771,761.4824,92.75274,42.53036,310.4853,5670.6142,1106.7090
-862.000000,86.000000,85.514590,0.138122,0.276243,96.167130,36.465320,11.920770,61.38559,4.099012,25.279640,13.546800,0.000000,0.000000,434.694693,2238.44518,731.7635,103.62155,55.52850,342.4582,26683.9902,1403.7404
-990.000000,307.000000,38.116470,1.790807,4.072428,30.112090,11.418690,13.053750,62.32666,3.960634,25.396940,25.383300,0.000000,83.333330,149.056725,711.68881,813.5966,100.58798,100.53396,644.6581,9290.2078,2553.2550
-1029.000000,587.000000,18.169990,1.957028,3.825099,17.784320,8.097928,12.194850,64.15611,3.664265,25.549800,25.868060,6.250000,81.250000,98.753017,519.53156,782.3741,93.62124,94.78743,660.9238,6335.6094,2421.7998
-674.000000,290.000000,18.216450,2.105698,3.437242,17.846820,15.193370,9.219296,59.13467,3.774601,25.861480,38.256660,0.000000,100.000000,140.072175,898.45492,545.1800,97.61677,144.40363,989.3738,8283.1219,3734.4915
-656.000000,177.000000,54.843870,1.897597,23.579610,45.823040,21.238940,10.907790,58.44744,3.799078,25.541490,31.802120,0.000000,0.000000,231.669897,1241.36167,637.5324,97.03411,120.81873,812.2735,13540.5124,3085.8905
-2817.000000,1239.000000,36.944770,15.212580,19.093460,16.269870,17.404310,12.277890,58.33163,3.762583,23.116970,29.580150,0.000000,33.333330,213.688204,1015.22177,716.1893,86.97952,111.29777,683.8034,12464.7812,2572.8672
-957.000000,555.000000,26.114320,5.308799,9.912578,8.671743,9.722222,14.263190,51.10465,3.845847,22.197770,27.709190,4.347826,30.434780,138.669900,496.85075,728.9153,85.36923,106.56531,615.0822,7086.6767,2365.5121
-349.000000,154.000000,33.115380,1.770956,1.180638,35.726090,9.166667,11.772560,51.74220,4.581189,22.213330,23.983740,0.000000,0.000000,107.915137,474.30352,609.1382,101.76346,109.87405,532.7587,5583.7666,2440.6684
-174.000000,82.000000,35.978840,1.407285,1.034768,36.920530,11.904760,14.735110,51.08037,4.420624,20.180180,45.312500,0.000000,0.000000,175.417948,608.09955,752.6749,89.20899,200.30953,914.4144,8960.4137,4042.2823
-3398.000000,1325.000000,59.406430,23.870540,21.952510,23.506130,27.457470,14.003300,61.99703,4.125407,24.826780,38.742610,1.298701,10.389610,384.495190,1702.28159,868.1630,102.42057,159.82903,961.8543,23837.5598,3968.0403
-3310.000000,1787.000000,28.849750,4.594770,5.959822,8.972135,7.187223,12.616220,58.87275,4.335660,21.750740,39.284420,1.219512,6.097561,90.675587,423.13158,742.7516,94.30381,170.32389,854.4652,5338.3211,3704.6706
-391.000000,266.000000,29.306060,7.974910,13.870970,10.286740,10.699590,13.232410,55.94413,3.811049,22.289510,78.968250,0.000000,42.857140,141.581362,598.57925,740.2757,84.94641,300.95187,1760.1636,7920.6461,6708.0697
-412.000000,136.000000,37.955380,6.226150,29.744930,26.230170,12.234040,10.666110,57.67268,3.312515,22.428410,0.000000,14.285710,14.285710,130.489616,705.56987,615.1431,74.29444,0.00000,0.0000,7525.6859,0.0000
-114.000000,58.000000,35.753750,2.109375,0.625000,40.468750,16.666670,11.918180,61.91985,4.272916,22.222220,0.000000,0.000000,0.000000,198.636373,1031.99771,737.9719,94.95368,0.00000,0.0000,12299.5344,0.0000
-467.000000,149.000000,50.624110,1.101449,11.782610,38.130430,19.269100,14.401470,57.10062,4.203244,22.986750,12.987010,0.000000,0.000000,277.503366,1100.27756,822.3329,96.61892,54.58757,298.5292,15845.6142,1254.7909
-280.000000,143.000000,40.703370,0.449312,0.954788,11.429370,3.521127,13.881480,57.82488,3.838359,25.364290,35.428570,0.000000,100.000000,48.878454,203.60875,802.6949,97.35725,135.98757,898.6205,2826.3907,3449.2282
-2132.000000,1002.000000,25.955670,6.023256,5.232558,38.202660,18.698520,15.212770,62.27005,3.664259,24.169690,29.015540,0.000000,10.000000,284.456284,1164.35778,947.2999,88.56400,106.32045,701.2966,17713.1070,2569.7324
-1304.000000,352.000000,44.452120,2.019903,9.084639,63.686080,19.094250,11.895110,59.62526,3.811724,24.030230,34.445930,0.000000,48.000000,227.128204,1138.49962,709.2490,91.59660,131.29838,827.7436,13542.5782,3155.1302
-2259.000000,407.000000,39.998060,1.101044,11.805470,65.774630,19.710810,12.968520,60.46872,3.939782,24.371310,18.253400,0.000000,56.250000,255.620034,1191.88745,784.1898,96.01765,71.91442,444.8593,15457.0162,1752.6485
-667.000000,280.000000,46.742290,1.503836,8.194373,13.340150,4.504505,13.401940,62.28607,4.128065,22.629280,13.500000,5.882353,0.000000,60.369106,280.56791,834.7542,93.41514,55.72888,305.4953,3760.1543,1261.1044
-103.000000,45.000000,54.401520,1.161946,3.776325,17.283950,2.941176,16.794670,61.23499,4.903238,21.277210,40.350880,0.000000,10.000000,49.396080,180.10288,1028.4214,104.32722,197.84997,858.5541,3024.7685,4209.6953
-1261.000000,580.000000,34.604040,8.123958,7.962554,30.989400,15.033560,14.849090,60.47727,3.763685,24.721110,24.774320,0.000000,50.000000,223.234685,909.18867,898.0324,93.04247,93.24274,612.4487,13500.6243,2305.0639
-1750.000000,368.000000,57.885020,2.875776,27.398440,51.591110,24.493930,12.173990,59.09631,3.838001,25.162110,13.239440,0.000000,70.833330,298.188859,1447.50088,719.4379,96.57220,50.81298,333.1322,17621.8612,1278.5619
-488.000000,229.000000,24.700730,0.979605,1.268669,13.056050,10.276680,15.791960,62.20187,3.995416,24.439080,31.286550,0.000000,0.000000,162.288919,639.22871,982.2894,97.64429,125.00278,764.6145,10094.6743,3054.9530
-3080.000000,739.000000,70.235750,3.366044,19.618020,50.849420,25.219640,11.679380,61.67289,4.147682,23.986840,22.395210,0.000000,42.622950,294.549759,1555.36808,720.3011,99.48978,92.88821,537.1903,18165.7349,2228.0946
-1011.000000,354.000000,44.919960,1.618203,16.417630,36.170870,15.533980,10.971670,61.49285,4.057497,26.511440,13.970590,15.000000,20.000000,170.433702,955.22870,674.6793,107.57009,56.68563,370.3805,10480.4541,1502.8176
-626.000000,244.000000,27.571030,0.762642,0.774375,19.664440,6.060606,11.880490,63.43272,3.784390,25.071620,25.000000,0.000000,70.000000,72.002969,384.44072,753.6118,94.88079,94.60975,626.7905,4567.3442,2372.0197
-180.000000,74.000000,46.964160,2.107896,18.185070,12.040010,7.913669,11.099070,60.61841,5.342537,20.252890,18.348620,0.000000,0.000000,87.834366,479.71403,672.8080,108.20181,98.02818,371.6126,5324.3796,1985.3540
-482.000000,241.000000,20.984130,0.826189,2.088854,16.679660,4.054054,8.420029,53.76420,3.823180,22.520660,10.248450,9.090909,0.000000,34.135252,217.96297,452.6961,86.10054,39.18167,230.8019,1835.2545,882.3970
-1057.000000,328.000000,47.678100,0.955685,5.308634,31.190680,11.897110,12.191790,62.22010,3.865725,24.813020,13.344050,0.000000,61.111110,145.047067,740.23937,758.5744,95.92031,51.58443,331.1062,9024.8430,1279.9654
-81.000000,17.000000,62.311560,1.224847,2.274716,17.935260,5.263158,10.469230,59.11449,4.587305,20.487360,26.086960,0.000000,0.000000,55.101212,311.12890,618.8832,93.98177,119.66884,534.4529,3257.2800,2451.6986
-910.000000,473.000000,30.647120,7.226302,11.490320,28.479640,11.456310,13.981210,59.65977,3.922567,23.510560,35.313530,6.666667,6.666667,160.173076,683.48082,834.1158,92.22175,138.51969,830.2409,9555.8889,3256.6754
-880.000000,352.000000,43.731610,1.656990,17.274450,20.431860,5.168986,13.207000,62.10635,3.058089,24.520820,35.839160,13.333330,86.666670,68.266798,321.02685,820.2386,74.98685,109.59934,878.8056,4239.8017,2687.4657
-200.000000,152.000000,12.890920,1.749271,2.587464,10.495630,8.661417,15.079550,59.96379,4.346546,22.369940,58.823530,0.000000,0.000000,130.610271,519.37139,904.2270,97.23197,255.67918,1315.8788,7831.8868,5719.5279
-1610.000000,757.000000,43.177150,2.752435,1.797588,43.810890,8.999082,14.070940,58.39890,3.882451,23.422400,29.011860,4.000000,44.000000,126.625543,525.53649,821.7274,90.93632,112.63712,679.5274,7394.7924,2638.2318
-538.000000,285.000000,49.189650,0.898770,4.328288,36.210970,10.140850,16.561010,66.96672,4.540894,24.110540,22.460940,0.000000,0.000000,167.942718,679.09946,1109.0365,109.48341,101.99275,541.5454,11246.5730,2459.1002
-54.000000,40.000000,7.723036,0.138122,0.690608,9.254144,5.000000,15.969320,62.78997,5.092907,19.095610,32.075470,0.000000,0.000000,79.846600,313.94985,1002.7131,97.25217,163.35739,612.5007,5013.5656,3119.4089
-143.000000,47.000000,48.694230,0.163221,1.468988,25.299240,4.301075,12.162620,52.08440,4.470921,20.178770,40.869570,0.000000,0.000000,52.312341,224.01891,633.4828,90.21769,182.72462,824.6977,2724.6569,3687.1581
-2349.000000,1785.000000,10.588160,8.755863,2.760139,7.792208,11.015120,14.191550,58.19862,3.718169,22.875710,46.688740,0.000000,0.000000,156.321626,641.06478,825.9286,85.05576,173.59663,1068.0381,9097.7029,3971.1461
-509.000000,280.000000,35.023650,0.704225,0.876689,19.617710,7.491857,13.514520,57.16813,3.976030,23.115920,39.736840,0.000000,0.000000,101.248851,428.29545,772.5998,91.90959,157.99487,918.5536,5788.2075,3652.1967
-8479.000000,3392.000000,64.152350,9.492747,16.924340,35.277330,25.084970,12.295970,62.78270,4.952585,22.193130,31.240320,4.166667,28.571430,308.444039,1574.90215,771.9742,109.91336,154.72034,693.3205,19364.9495,3433.7286
-1707.000000,683.000000,40.059770,2.532620,6.127555,37.385010,11.090910,12.812450,65.16445,4.103446,23.644490,34.332430,3.703704,81.481480,142.101730,722.73305,834.9163,97.02389,140.88127,811.7728,9259.9811,3331.0658
-595.000000,357.000000,26.923080,2.594662,1.762880,26.132840,13.333330,15.283930,62.99711,4.261820,24.326170,43.444730,0.000000,0.000000,203.785682,839.96126,962.8434,103.67376,185.15362,1056.8439,12837.9090,4504.0784
-1317.000000,435.000000,54.977400,1.804259,14.860010,41.521900,16.013440,13.173710,57.81114,3.832582,23.350250,44.717800,0.000000,0.000000,210.956415,925.75522,761.5872,89.49175,171.38464,1044.1718,12195.6308,4001.8741
-749.000000,330.000000,49.265040,2.389785,2.553705,44.137690,11.064720,13.668030,60.65716,4.097092,24.639980,29.655170,0.000000,83.333330,151.232925,671.15449,829.0639,100.95226,121.49996,730.7028,9173.3597,2993.7566
-3633.000000,1925.000000,64.554280,41.369020,16.193220,21.204120,43.737460,15.285470,52.88551,5.230051,17.931180,48.830660,2.654867,1.769912,668.547633,2313.07788,808.3799,93.78099,255.38684,875.5914,35356.4825,4579.3874
-200.000000,114.000000,36.412860,0.919842,0.328515,26.642580,5.673759,14.192450,53.51044,3.846512,23.320550,26.415090,0.000000,0.000000,80.524541,303.60534,759.4442,89.70278,101.60596,616.0144,4308.9036,2369.5069
-634.000000,279.000000,44.129830,19.627690,10.692260,17.626530,14.734300,13.201370,53.97081,4.022264,21.560640,29.835390,0.000000,0.000000,194.512946,795.22211,712.4886,86.72259,120.00582,643.2701,10498.0213,2587.4022
-193.000000,60.000000,40.582860,1.936027,0.336700,34.217170,7.207207,16.125200,52.19886,3.727909,22.026520,39.285710,0.000000,0.000000,116.217654,376.20799,841.7171,82.11286,146.45355,865.3275,6066.4291,3225.8621
-1932.000000,638.000000,48.768630,19.795470,5.832491,23.648810,11.271190,15.083600,59.46523,4.469021,22.002920,30.337080,0.000000,62.857140,170.010121,670.24391,896.9497,98.33151,135.57705,667.5043,10109.6910,2983.0909
-1207.000000,591.000000,35.133170,2.449629,4.936003,29.095470,11.326380,13.809780,56.91066,3.589197,24.385780,36.242600,0.000000,0.000000,156.414816,644.59176,785.9237,87.52537,130.08183,883.8041,8901.6704,3172.1469
-173.000000,130.000000,13.773990,0.730816,0.487211,21.843280,2.564103,14.550390,51.68300,3.786430,20.598800,29.729730,0.000000,0.000000,37.308699,132.52054,752.0078,77.99591,112.56954,612.3968,1928.2255,2318.7975
-2323.000000,558.000000,68.727080,20.872490,13.348300,42.185440,33.747550,12.677680,66.65475,4.527226,22.940490,18.209260,0.000000,21.951220,427.840640,2249.43451,845.0276,103.85678,82.43744,417.7293,28517.6109,1891.1552
-749.000000,397.000000,26.570330,4.436534,5.981941,26.723390,14.196240,10.593500,55.63190,3.616366,23.962600,26.286760,0.000000,0.000000,150.387868,789.76380,589.3365,86.65753,95.06255,629.8991,8366.3629,2277.9457
-437.000000,293.000000,18.073660,1.065779,1.648626,9.342215,3.284672,14.972580,60.46424,4.506425,23.304250,45.454550,0.000000,0.000000,49.180014,198.60520,905.3057,105.01885,204.83752,1059.2842,2973.6322,4773.5848
-727.000000,465.000000,38.074670,1.538031,1.165175,30.201340,8.932039,13.483160,55.68426,3.887088,21.219270,25.903610,0.000000,0.000000,120.432111,497.37398,750.7998,82.48117,100.68961,549.6557,6706.1730,2136.5601
-676.000000,453.000000,22.465790,2.346382,2.090835,12.614710,5.326877,16.195220,64.39768,4.933223,21.433270,25.635590,5.263158,0.000000,86.269945,343.03852,1042.9346,105.73510,126.46608,549.4545,5555.5843,2710.5817
-174.000000,96.000000,17.997810,0.617829,1.412180,9.223301,4.587156,11.087300,50.37247,3.667019,19.393940,35.955060,0.000000,0.000000,50.859175,231.06638,558.4947,71.11795,131.84789,697.3103,2561.9023,2557.0500
-423.000000,224.000000,36.826910,1.330486,3.876478,27.184630,5.802048,14.227840,59.65303,4.756442,22.281470,39.814810,0.000000,0.000000,82.550611,346.10974,848.7338,105.98052,189.37683,887.1325,4924.3941,4219.5943
-66.000000,34.000000,27.087790,1.005025,0.301508,21.608040,9.230770,12.864190,46.34738,4.792461,17.371320,41.333330,0.000000,0.000000,118.746379,427.82200,596.2215,83.25137,198.08837,718.0145,5503.5836,3441.0565
-331.000000,179.000000,19.302070,2.108511,0.539985,25.096430,8.290155,13.322900,51.76827,4.138211,21.009330,48.809520,0.000000,0.000000,110.448906,429.16698,689.7035,86.94104,201.98409,1025.4553,5717.7488,4243.5505
-705.000000,303.000000,31.914890,8.753316,4.823657,34.797130,11.899310,17.108610,57.48922,3.823838,23.523200,38.954470,0.000000,0.000000,203.580654,684.08205,983.5606,89.94891,148.95558,916.3338,11703.6930,3503.9120
-235.000000,108.000000,39.277270,1.385309,0.966495,54.381440,21.323530,14.497740,60.26291,4.158069,22.213290,33.333330,0.000000,0.000000,309.142994,1285.01797,873.6760,92.36439,138.60229,740.4429,18629.8564,3078.8128
-754.000000,302.000000,35.706330,4.651992,8.920774,32.866950,9.057301,17.083170,53.11772,4.325819,21.673770,42.914980,0.000000,13.333330,154.727413,481.10318,907.4190,93.75681,185.64244,930.1294,8218.7674,4023.5715
-590.000000,171.000000,44.542030,2.308979,1.528165,62.944790,22.371970,15.489660,62.89081,4.312730,24.507870,20.190020,0.000000,15.384620,346.534209,1406.99131,974.1573,105.69583,87.07410,494.8144,21793.8171,2134.0008
-715.000000,400.000000,23.649100,5.235658,2.399232,33.461290,11.250000,17.796090,60.28385,4.361515,23.737110,37.804880,0.000000,0.000000,200.206013,678.19331,1072.8168,103.52976,164.88655,897.3786,12069.1892,3913.9302
-605.000000,538.000000,7.894435,17.389000,4.916817,6.887782,13.528340,14.115750,66.18201,5.970823,18.747690,73.375260,0.000000,0.000000,190.962665,895.33273,934.2087,111.93914,438.11069,1375.6166,12638.2930,8213.5634
-2216.000000,975.000000,42.807840,12.245020,3.270391,49.410480,22.369510,16.577290,80.56504,5.038400,28.210850,38.107580,0.000000,0.000000,370.825854,1802.20047,1335.5500,142.13755,192.00123,1075.0472,29875.5998,5416.5179
-908.000000,463.000000,40.205450,18.394120,4.340957,25.200910,11.520000,15.609970,65.46892,4.317319,23.762800,29.551120,0.000000,0.000000,179.826854,754.20196,1021.9679,102.59159,127.58161,702.2174,11773.0699,3031.6963
-713.000000,399.000000,28.893570,31.459880,5.952142,18.429520,20.227270,14.806370,60.77492,4.090016,22.119770,26.720650,0.000000,0.000000,299.492444,1229.31072,899.8560,90.47021,109.28789,591.0546,18201.6293,2417.4229
-1269.000000,393.000000,56.348670,1.201376,0.587457,72.013760,19.716650,14.114210,59.92213,4.282146,22.535300,26.647560,4.000000,20.000000,278.284939,1181.46366,845.7535,96.49944,114.10874,600.5108,16675.4263,2571.4747
-345.000000,204.000000,14.506400,1.659053,1.226256,4.087521,3.333333,17.289160,58.61628,4.262088,24.333530,60.580910,14.285710,0.000000,57.630528,195.38758,1013.4262,103.71165,258.20117,1474.1474,3378.0871,6282.9459
-145.000000,59.000000,39.608940,0.747126,0.287356,8.908046,4.301075,16.491200,56.13194,4.741874,18.736380,28.828830,0.000000,0.000000,70.929888,241.42768,925.6830,88.84555,136.70268,540.1479,3981.4322,2561.3133
-335.000000,131.000000,49.377120,0.840532,1.074014,4.809713,4.090909,14.585830,55.39661,4.509515,20.738130,34.482760,0.000000,0.000000,59.669303,226.62249,808.0055,93.51891,155.50052,715.1080,3305.4771,3224.7901
-121.000000,80.000000,32.101620,1.633166,0.628141,8.354271,1.960784,14.403640,54.12202,2.908312,16.888890,43.243240,9.090909,0.000000,28.242427,106.12159,779.5541,49.11816,125.76483,730.3303,1528.5372,2124.0284
-435.000000,326.000000,11.443660,4.562111,7.805057,10.150240,10.162600,15.175620,61.41934,4.303057,22.279440,40.490800,0.000000,0.000000,154.223756,624.18018,932.0766,95.86970,174.23422,902.1123,9472.3213,3881.8409
-239.000000,100.000000,40.819420,1.316920,1.774979,39.965650,12.643680,15.513330,57.07422,4.262563,20.023700,39.664800,0.000000,16.666670,196.145580,721.62817,885.4112,85.35228,169.07371,794.2361,11194.8560,3385.4812
-1496.000000,688.000000,28.110860,6.548673,21.010710,18.015840,13.241530,15.965510,59.26899,3.955489,22.888910,26.116070,0.000000,34.615380,211.407780,784.81211,946.2597,90.53683,103.30183,597.7684,12529.9256,2364.4662
-323.000000,155.000000,22.712450,2.529475,15.348340,10.396570,18.220340,15.120850,62.35360,4.900856,20.228740,66.310160,0.000000,0.000000,275.507028,1136.10379,942.8394,99.13814,324.97655,1341.3710,17178.8550,6573.8660
-1052.000000,515.000000,23.019240,2.829361,8.373287,16.746570,9.129815,14.622740,53.90188,4.110539,22.381470,40.261440,5.263158,10.526320,133.502911,492.11419,788.1932,91.99991,165.49622,901.1102,7196.0579,3704.0487
-1324.000000,450.000000,35.460880,3.839582,35.214590,15.549300,23.876770,16.680850,68.33880,4.364927,25.670800,20.022750,0.000000,56.000000,398.284819,1631.70981,1139.9493,112.05117,87.39784,514.0000,27218.3066,2243.5725
-120.000000,55.000000,39.708680,0.429448,0.674847,25.092020,6.329114,15.629410,56.85404,3.942010,20.421610,43.835620,0.000000,0.000000,98.920318,359.83570,888.5951,80.50219,172.80045,895.1939,5624.0197,3528.8634
-386.000000,224.000000,30.760320,1.923440,0.716576,22.402410,6.153846,15.858610,54.12234,4.170568,21.147670,23.371650,11.111110,11.111110,97.591444,333.06055,858.3051,88.19780,97.47306,494.2559,5281.8773,2061.3280
-616.000000,320.000000,19.675840,3.863969,3.644564,12.847390,5.994550,15.717790,59.48468,4.081602,22.292980,14.450870,0.000000,0.000000,94.221078,356.58389,934.9677,90.99107,58.98270,322.1530,5604.7107,1314.9001
-234.000000,108.000000,33.558050,1.379099,0.858106,26.509350,17.567570,11.023640,50.73147,3.834786,21.023050,0.000000,0.000000,0.000000,193.658567,891.22865,559.2455,80.61890,0.00000,0.0000,9824.5838,0.0000
-232.000000,151.000000,21.463870,0.878378,0.439189,34.054050,14.285710,16.464530,56.83735,4.968968,20.913270,46.484380,0.000000,0.000000,235.207501,811.96190,935.8003,103.91737,230.97940,972.1404,13368.5710,4830.5345
-688.000000,193.000000,51.205220,4.550344,3.431583,39.264200,10.049020,13.277320,56.23431,3.767504,23.170010,12.967030,0.000000,41.666670,133.424054,565.09971,746.6409,87.29311,48.85334,300.4462,7503.0096,1131.9323
-120.000000,55.000000,42.130750,0.783085,0.234926,25.920130,1.724138,13.381750,49.55074,3.282389,21.306620,29.870130,0.000000,0.000000,23.071984,85.43231,663.0756,69.93662,98.04539,636.4315,1143.2339,2089.0158
-224.000000,72.000000,55.007260,0.673968,1.235608,64.588600,18.120810,13.327330,55.53515,4.008414,24.004090,13.071900,0.000000,0.000000,241.502015,1006.34190,740.1353,96.21833,52.39759,313.7791,13411.8506,1257.7564
-733.000000,359.000000,42.600700,4.702023,1.366867,32.558780,9.221311,14.964160,59.64521,3.932407,24.178630,21.406250,0.000000,50.000000,137.989173,550.00703,892.5405,95.08021,84.17809,517.5738,8230.3932,2035.3108
-120.000000,31.000000,53.904280,1.221374,1.475827,53.435110,14.736840,12.708570,51.29737,4.109917,21.686620,28.865980,0.000000,16.666670,187.284163,755.96113,651.9162,89.13021,118.63678,626.0055,9607.1850,2572.8308
-135.000000,39.000000,72.297700,12.323560,0.597177,45.331160,6.521739,12.382670,52.19434,4.350793,21.443790,17.721520,0.000000,0.000000,80.756542,340.39786,646.3053,93.29749,77.10267,380.0166,4215.0344,1653.3734
-776.000000,303.000000,49.256420,13.283120,2.939555,25.528200,14.107880,15.097450,57.77756,4.165932,23.061710,24.242420,0.000000,25.000000,212.993013,815.11888,872.2938,96.07352,100.99227,559.0717,12306.2166,2329.0545
-207.000000,79.000000,49.159070,0.876271,1.892744,29.758150,3.597122,13.243400,55.37246,3.941387,20.911080,36.423840,0.000000,0.000000,47.638125,199.18149,733.3196,82.41866,143.56045,761.6618,2637.8402,3002.0040
-41.000000,19.000000,51.293100,0.142248,0.568990,32.290180,2.564103,15.812220,53.21662,5.045576,19.643840,34.210530,0.000000,0.000000,40.544161,136.45289,841.4729,99.11449,172.61183,672.0262,2157.6232,3390.7592
-43.000000,23.000000,60.145990,0.480769,0.000000,5.128205,5.555556,16.132050,63.50783,6.482470,17.908310,42.424240,0.000000,0.000000,89.622507,352.82131,1024.5115,116.09008,275.01386,759.7464,5691.7309,4925.0335
-259.000000,91.000000,84.099040,0.562852,0.241222,90.726350,18.787880,14.217390,58.39111,3.952910,22.751840,8.370044,0.000000,0.000000,267.114617,1097.04517,830.1692,89.93598,33.08603,190.4339,15597.1190,752.7681
-342.000000,96.000000,74.574420,0.895583,0.244250,80.460000,15.981740,12.970660,53.30490,3.688748,22.964750,16.465860,0.000000,0.000000,207.293716,851.90505,691.3997,84.71118,60.73841,378.1344,11049.7708,1394.8424
-250.000000,40.000000,76.580370,1.721170,0.057372,83.763630,23.684210,13.284940,58.36271,4.115279,22.618730,27.428570,0.000000,0.000000,314.643309,1382.27468,775.3451,93.08238,112.87622,620.3994,18363.4362,2553.1167
-1750.000000,578.000000,44.833280,7.621228,1.954371,43.135170,12.711110,14.473250,58.32298,4.057255,22.312730,35.917310,3.125000,28.125000,183.971073,741.34981,844.1231,90.52844,145.72569,801.4132,10729.7412,3251.5379
-150.000000,26.000000,72.663140,1.192504,0.298126,79.258940,13.157890,14.814060,58.00131,4.081734,21.106030,36.134450,0.000000,0.000000,194.921772,763.17486,859.2349,86.14920,147.49121,762.6548,11305.7181,3112.9540
-134.000000,23.000000,92.334500,0.933553,0.109830,83.031300,17.105260,14.402380,61.35021,3.792456,22.918920,0.000000,0.000000,100.000000,246.356455,1049.41129,883.5890,86.91900,0.00000,0.0000,15114.0202,0.0000
-53.000000,31.000000,36.716420,0.427960,0.855920,4.707561,4.651163,13.268090,48.16047,4.666561,18.426670,70.270270,0.000000,0.000000,61.712049,224.00220,638.9975,85.98918,327.92050,1294.8471,2972.0813,6042.4829
-266.000000,59.000000,51.806540,0.547196,0.437757,76.908340,15.527950,15.024040,56.92598,3.897079,23.484750,30.601090,0.000000,16.666670,233.292542,883.94377,855.2582,91.52193,119.25487,718.6589,13280.4066,2800.6707
-304.000000,204.000000,23.281700,1.366251,0.862896,18.648130,8.152174,14.221360,56.80801,3.825936,22.877170,35.546880,0.000000,0.000000,115.935001,463.10878,807.8872,87.52659,136.00009,813.2120,6586.0367,3111.2971
-1338.000000,736.000000,15.681540,5.522166,1.674629,17.439770,6.917476,15.000220,57.20355,3.831574,23.209860,37.687190,0.000000,0.000000,103.763662,395.70418,858.0658,88.93030,144.40126,874.7144,5935.6498,3351.5330
-1170.000000,526.000000,38.158210,2.905512,2.354871,33.442680,9.943978,15.352550,56.41361,3.699070,24.851120,34.363410,0.000000,22.222220,152.665419,560.97570,866.0928,91.92603,127.11266,853.9692,8612.4074,3158.8919
-1431.000000,1088.000000,12.327020,5.661354,1.485200,14.531150,5.405405,15.732220,62.75024,4.265133,23.810320,41.166380,0.000000,0.000000,85.039021,339.19046,987.2006,101.55418,175.58009,980.1847,5336.2190,4180.6180
-248.000000,186.000000,1.247051,6.066291,1.000625,2.345216,4.729730,12.224850,55.20884,4.079327,20.988490,74.342100,0.000000,0.000000,57.820240,261.12291,674.9198,85.61891,303.26574,1560.3284,3192.1884,6365.0899
-516.000000,284.000000,23.455290,3.861647,1.819697,29.781910,10.365850,10.287230,54.40298,4.155084,21.652560,21.140940,0.000000,0.000000,106.635883,563.93313,559.6560,89.96821,87.84238,457.7555,5801.3098,1902.0124
-591.000000,455.000000,17.898830,10.490960,3.372093,12.700260,14.928910,14.437660,49.78331,4.254717,20.062860,46.420320,0.000000,0.000000,215.538527,743.21055,718.7545,85.36179,197.50532,931.3244,10730.2213,3962.5217
-59.000000,17.000000,49.235810,0.779510,1.670379,43.763920,4.166667,11.360910,50.43317,5.039203,19.545450,27.083330,0.000000,0.000000,47.337129,210.13823,572.9667,98.49349,136.47840,529.3559,2387.3615,2667.5317
-342.000000,96.000000,62.239680,13.820860,3.956157,32.128790,15.884480,13.270890,52.88133,4.324174,20.987110,8.000000,0.000000,18.181820,210.801187,839.99243,701.7823,90.75192,34.59339,167.8969,11147.4471,726.0153
-154.000000,37.000000,46.161880,1.150575,0.800400,45.622810,13.333330,11.807140,48.42615,3.945069,19.858300,53.773580,0.000000,0.000000,157.428494,645.68184,571.7743,78.34236,212.14048,1067.8519,7623.6559,4212.7494
-595.000000,208.000000,43.414310,3.648564,1.541204,46.319980,21.377670,14.404680,53.79616,3.845481,22.708840,29.892470,0.000000,6.666667,307.938495,1150.03656,774.9165,87.32641,114.95093,678.8233,16565.9086,2610.4022
-709.000000,199.000000,70.621040,20.461720,2.989345,17.423050,11.032860,16.564200,61.70566,3.970984,24.886470,15.142860,0.000000,13.636360,182.750500,680.78991,1022.1049,98.82377,60.13205,376.8523,11276.7402,1496.4746
-156.000000,72.000000,77.748270,5.998899,9.576225,11.117230,7.874016,16.918710,65.09957,6.913397,20.032520,23.529410,0.000000,0.000000,133.218193,512.59506,1101.4007,138.49276,162.66815,471.3534,8672.4471,3258.6530
diff --git a/statsmodels/scikits/statsmodels/datasets/strikes/__init__.py b/statsmodels/scikits/statsmodels/datasets/strikes/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/strikes/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/strikes/data.py b/statsmodels/scikits/statsmodels/datasets/strikes/data.py
deleted file mode 100644
index eed2f5a..0000000
--- a/statsmodels/scikits/statsmodels/datasets/strikes/data.py
+++ /dev/null
@@ -1,70 +0,0 @@
-#! /usr/bin/env python
-"""U.S. Strike Duration Data"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This is public domain."""
-TITLE = __doc__
-SOURCE = """
-This is a subset of the data used in Kennan (1985). It was originally
-published by the Bureau of Labor Statistics.
-
-::
-
- Kennan, J. 1985. "The duration of contract strikes in US manufacturing.
- `Journal of Econometrics` 28.1, 5-28.
-"""
-
-DESCRSHORT = """Contains data on the length of strikes in US manufacturing and
-unanticipated industrial production."""
-
-DESCRLONG = """Contains data on the length of strikes in US manufacturing and
-unanticipated industrial production. The data is a subset of the data originally
-used by Kennan. The data here is data for the months of June only to avoid
-seasonal issues."""
-
-#suggested notes
-NOTE = """
-Number of observations - 62
-
-Number of variables - 2
-
-Variable name definitions::
-
- duration - duration of the strike in days
- iprod - unanticipated industrial production
-"""
-
-from numpy import recfromtxt, column_stack, array
-import scikits.statsmodels.tools.datautils as du
-from os.path import dirname, abspath
-
-def load():
- """
- Load the strikes data and return a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray(data, endog_idx=0, dtype=float)
-
-def load_pandas():
- """
- Load the strikes data and return a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- data = _get_data()
- return du.process_recarray_pandas(data, endog_idx=0, dtype=float)
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/strikes.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/strikes/strikes.csv b/statsmodels/scikits/statsmodels/datasets/strikes/strikes.csv
deleted file mode 100644
index 5ee2346..0000000
--- a/statsmodels/scikits/statsmodels/datasets/strikes/strikes.csv
+++ /dev/null
@@ -1,63 +0,0 @@
-duration, iprod
-7, .01138
-9, .01138
-13, .01138
-14, .01138
-26, .01138
-29, .01138
-52, .01138
-130, .01138
-9, .02299
-37, .02299
-41, .02299
-49, .02299
-52, .02299
-119, .02299
-3, -.03957
-17, -.03957
-19, -.03957
-28, -.03957
-72, -.03957
-99, -.03957
-104, -.03957
-114, -.03957
-152, -.03957
-153, -.03957
-216, -.03957
-15, -.05467
-61, -.05467
-98, -.05467
-2, .00535
-25, .00535
-85, .00535
-3, .07427
-10, .07427
-1, .06450
-2, .06450
-2, .06450
-3, .06450
-3, .06450
-4, .06450
-8, .06450
-11, .06450
-22, .06450
-23, .06450
-27, .06450
-32, .06450
-33, .06450
-35, .06450
-43, .06450
-43, .06450
-44, .06450
-100, .06450
-5, -.10443
-49, -.10443
-2, -.00700
-12, -.00700
-12, -.00700
-21, -.00700
-21, -.00700
-27, -.00700
-38, -.00700
-42, -.00700
-117, -.00700
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/R_sunspots.s b/statsmodels/scikits/statsmodels/datasets/sunspots/R_sunspots.s
deleted file mode 100644
index 8b533f3..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/R_sunspots.s
+++ /dev/null
@@ -1,9 +0,0 @@
-d <- read.table('./sunspots.csv', sep=',', header=T)
-attach(d)
-
-mod_ols <- ar(SUNACTIVITY, aic=FALSE, order.max=9, method="ols", intercept=FALSE)
-mod_yw <- ar(SUNACTIVITY, aic=FALSE, order.max=9, method="yw")
-mod_burg <- ar(SUNACTIVITY, aic=FALSE, order.max=9, method="burg")
-mod_mle <- ar(SUNACTIVITY, aic=FALSE, order.max=9, method="mle")
-
-select_ols <- ar(SUNACTIVITY, aic=TRUE, method="ols")
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/__init__.py b/statsmodels/scikits/statsmodels/datasets/sunspots/__init__.py
deleted file mode 100644
index d983730..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from data import *
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/arima_mod.R b/statsmodels/scikits/statsmodels/datasets/sunspots/arima_mod.R
deleted file mode 100644
index e6bae8f..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/arima_mod.R
+++ /dev/null
@@ -1,3 +0,0 @@
-dta <- read.csv('./sunspots.csv')
-attach(dta)
-arma_mod <- arima(SUNACTIVITY, order=c(9,0,0), xreg=rep(1,309), include.mean=FALSE)
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/data.py b/statsmodels/scikits/statsmodels/datasets/sunspots/data.py
deleted file mode 100644
index 481ee95..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/data.py
+++ /dev/null
@@ -1,69 +0,0 @@
-"""Yearly sunspots data 1700-2008"""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """This data is public domain."""
-TITLE = __doc__
-SOURCE = """
-http://www.ngdc.noaa.gov/stp/SOLAR/ftpsunspotnumber.html
-
-The original dataset contains monthly data on sunspot activity in the file
-./src/sunspots_yearly.dat. There is also sunspots_monthly.dat.
-"""
-
-DESCRSHORT = """Yearly (1700-2008) data on sunspots from the National
-Geophysical Data Center."""
-
-DESCRLONG = DESCRSHORT
-
-NOTE = """
-Number of Observations - 309 (Annual 1700 - 2008)
-Number of Variables - 1
-Variable name definitions::
-
- SUNACTIVITY - Number of sunspots for each year
-
-The data file contains a 'YEAR' variable that is not returned by load.
-"""
-
-from numpy import recfromtxt, column_stack, array
-from pandas import Series, DataFrame
-
-from scikits.statsmodels.tools import Dataset
-from os.path import dirname, abspath
-
-def load():
- """
- Load the yearly sunspot data and returns a data class.
-
- Returns
- --------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
-
- Notes
- -----
- This dataset only contains data for one variable, so the attributes
- data, raw_data, and endog are all the same variable. There is no exog
- attribute defined.
- """
- data = _get_data()
- endog_name = 'SUNACTIVITY'
- endog = array(data[endog_name], dtype=float)
- dataset = Dataset(data=data, names=[endog_name], endog=endog,
- endog_name=endog_name)
- return dataset
-
-def load_pandas():
- data = DataFrame(_get_data())
- # TODO: time series
- endog = Series(data['SUNACTIVITY'], index=data['YEAR'].astype(int))
- dataset = Dataset(data=data, names=list(data.columns),
- endog=endog, endog_name='volume')
- return dataset
-
-def _get_data():
- filepath = dirname(abspath(__file__))
- data = recfromtxt(open(filepath + '/sunspots.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- return data
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_monthly.dat b/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_monthly.dat
deleted file mode 100644
index eccfe86..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_monthly.dat
+++ /dev/null
@@ -1,323 +0,0 @@
- MONTHLY MEAN SUNSPOT NUMBERS
-===============================================================================
-Year Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
--------------------------------------------------------------------------------
-1749 58.0 62.6 70.0 55.7 85.0 83.5 94.8 66.3 75.9 75.5 158.6 85.2
-1750 73.3 75.9 89.2 88.3 90.0 100.0 85.4 103.0 91.2 65.7 63.3 75.4
-
-1751 70.0 43.5 45.3 56.4 60.7 50.7 66.3 59.8 23.5 23.2 28.5 44.0
-1752 35.0 50.0 71.0 59.3 59.7 39.6 78.4 29.3 27.1 46.6 37.6 40.0
-1753 44.0 32.0 45.7 38.0 36.0 31.7 22.0 39.0 28.0 25.0 20.0 6.7
-1754 0.0 3.0 1.7 13.7 20.7 26.7 18.8 12.3 8.2 24.1 13.2 4.2
-1755 10.2 11.2 6.8 6.5 0.0 0.0 8.6 3.2 17.8 23.7 6.8 20.0
-
-1756 12.5 7.1 5.4 9.4 12.5 12.9 3.6 6.4 11.8 14.3 17.0 9.4
-1757 14.1 21.2 26.2 30.0 38.1 12.8 25.0 51.3 39.7 32.5 64.7 33.5
-1758 37.6 52.0 49.0 72.3 46.4 45.0 44.0 38.7 62.5 37.7 43.0 43.0
-1759 48.3 44.0 46.8 47.0 49.0 50.0 51.0 71.3 77.2 59.7 46.3 57.0
-1760 67.3 59.5 74.7 58.3 72.0 48.3 66.0 75.6 61.3 50.6 59.7 61.0
-
-1761 70.0 91.0 80.7 71.7 107.2 99.3 94.1 91.1 100.7 88.7 89.7 46.0
-1762 43.8 72.8 45.7 60.2 39.9 77.1 33.8 67.7 68.5 69.3 77.8 77.2
-1763 56.5 31.9 34.2 32.9 32.7 35.8 54.2 26.5 68.1 46.3 60.9 61.4
-1764 59.7 59.7 40.2 34.4 44.3 30.0 30.0 30.0 28.2 28.0 26.0 25.7
-1765 24.0 26.0 25.0 22.0 20.2 20.0 27.0 29.7 16.0 14.0 14.0 13.0
-
-1766 12.0 11.0 36.6 6.0 26.8 3.0 3.3 4.0 4.3 5.0 5.7 19.2
-1767 27.4 30.0 43.0 32.9 29.8 33.3 21.9 40.8 42.7 44.1 54.7 53.3
-1768 53.5 66.1 46.3 42.7 77.7 77.4 52.6 66.8 74.8 77.8 90.6 111.8
-1769 73.9 64.2 64.3 96.7 73.6 94.4 118.6 120.3 148.8 158.2 148.1 112.0
-1770 104.0 142.5 80.1 51.0 70.1 83.3 109.8 126.3 104.4 103.6 132.2 102.3
-
-1771 36.0 46.2 46.7 64.9 152.7 119.5 67.7 58.5 101.4 90.0 99.7 95.7
-1772 100.9 90.8 31.1 92.2 38.0 57.0 77.3 56.2 50.5 78.6 61.3 64.0
-1773 54.6 29.0 51.2 32.9 41.1 28.4 27.7 12.7 29.3 26.3 40.9 43.2
-1774 46.8 65.4 55.7 43.8 51.3 28.5 17.5 6.6 7.9 14.0 17.7 12.2
-1775 4.4 0.0 11.6 11.2 3.9 12.3 1.0 7.9 3.2 5.6 15.1 7.9
-
-1776 21.7 11.6 6.3 21.8 11.2 19.0 1.0 24.2 16.0 30.0 35.0 40.0
-1777 45.0 36.5 39.0 95.5 80.3 80.7 95.0 112.0 116.2 106.5 146.0 157.3
-1778 177.3 109.3 134.0 145.0 238.9 171.6 153.0 140.0 171.7 156.3 150.3 105.0
-1779 114.7 165.7 118.0 145.0 140.0 113.7 143.0 112.0 111.0 124.0 114.0 110.0
-1780 70.0 98.0 98.0 95.0 107.2 88.0 86.0 86.0 93.7 77.0 60.0 58.7
-
-1781 98.7 74.7 53.0 68.3 104.7 97.7 73.5 66.0 51.0 27.3 67.0 35.2
-1782 54.0 37.5 37.0 41.0 54.3 38.0 37.0 44.0 34.0 23.2 31.5 30.0
-1783 28.0 38.7 26.7 28.3 23.0 25.2 32.2 20.0 18.0 8.0 15.0 10.5
-1784 13.0 8.0 11.0 10.0 6.0 9.0 6.0 10.0 10.0 8.0 17.0 14.0
-1785 6.5 8.0 9.0 15.7 20.7 26.3 36.3 20.0 32.0 47.2 40.2 27.3
-
-1786 37.2 47.6 47.7 85.4 92.3 59.0 83.0 89.7 111.5 112.3 116.0 112.7
-1787 134.7 106.0 87.4 127.2 134.8 99.2 128.0 137.2 157.3 157.0 141.5 174.0
-1788 138.0 129.2 143.3 108.5 113.0 154.2 141.5 136.0 141.0 142.0 94.7 129.5
-1789 114.0 125.3 120.0 123.3 123.5 120.0 117.0 103.0 112.0 89.7 134.0 135.5
-1790 103.0 127.5 96.3 94.0 93.0 91.0 69.3 87.0 77.3 84.3 82.0 74.0
-
-1791 72.7 62.0 74.0 77.2 73.7 64.2 71.0 43.0 66.5 61.7 67.0 66.0
-1792 58.0 64.0 63.0 75.7 62.0 61.0 45.8 60.0 59.0 59.0 57.0 56.0
-1793 56.0 55.0 55.5 53.0 52.3 51.0 50.0 29.3 24.0 47.0 44.0 45.7
-1794 45.0 44.0 38.0 28.4 55.7 41.5 41.0 40.0 11.1 28.5 67.4 51.4
-1795 21.4 39.9 12.6 18.6 31.0 17.1 12.9 25.7 13.5 19.5 25.0 18.0
-
-1796 22.0 23.8 15.7 31.7 21.0 6.7 26.9 1.5 18.4 11.0 8.4 5.1
-1797 14.4 4.2 4.0 4.0 7.3 11.1 4.3 6.0 5.7 6.9 5.8 3.0
-1798 2.0 4.0 12.4 1.1 0.0 0.0 0.0 3.0 2.4 1.5 12.5 9.9
-1799 1.6 12.6 21.7 8.4 8.2 10.6 2.1 0.0 0.0 4.6 2.7 8.6
-1800 6.9 9.3 13.9 0.0 5.0 23.7 21.0 19.5 11.5 12.3 10.5 40.1
-
-1801 27.0 29.0 30.0 31.0 32.0 31.2 35.0 38.7 33.5 32.6 39.8 48.2
-1802 47.8 47.0 40.8 42.0 44.0 46.0 48.0 50.0 51.8 38.5 34.5 50.0
-1803 50.0 50.8 29.5 25.0 44.3 36.0 48.3 34.1 45.3 54.3 51.0 48.0
-1804 45.3 48.3 48.0 50.6 33.4 34.8 29.8 43.1 53.0 62.3 61.0 60.0
-1805 61.0 44.1 51.4 37.5 39.0 40.5 37.6 42.7 44.4 29.4 41.0 38.3
-
-1806 39.0 29.6 32.7 27.7 26.4 25.6 30.0 26.3 24.0 27.0 25.0 24.0
-1807 12.0 12.2 9.6 23.8 10.0 12.0 12.7 12.0 5.7 8.0 2.6 0.0
-1808 0.0 4.5 0.0 12.3 13.5 13.5 6.7 8.0 11.7 4.7 10.5 12.3
-1809 7.2 9.2 0.9 2.5 2.0 7.7 0.3 0.2 0.4 0.0 0.0 0.0
-1810 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-
-1811 0.0 0.0 0.0 0.0 0.0 0.0 6.6 0.0 2.4 6.1 0.8 1.1
-1812 11.3 1.9 0.7 0.0 1.0 1.3 0.5 15.6 5.2 3.9 7.9 10.1
-1813 0.0 10.3 1.9 16.6 5.5 11.2 18.3 8.4 15.3 27.8 16.7 14.3
-1814 22.2 12.0 5.7 23.8 5.8 14.9 18.5 2.3 8.1 19.3 14.5 20.1
-1815 19.2 32.2 26.2 31.6 9.8 55.9 35.5 47.2 31.5 33.5 37.2 65.0
-
-1816 26.3 68.8 73.7 58.8 44.3 43.6 38.8 23.2 47.8 56.4 38.1 29.9
-1817 36.4 57.9 96.2 26.4 21.2 40.0 50.0 45.0 36.7 25.6 28.9 28.4
-1818 34.9 22.4 25.4 34.5 53.1 36.4 28.0 31.5 26.1 31.6 10.9 25.8
-1819 32.8 20.7 3.7 20.2 19.6 35.0 31.4 26.1 14.9 27.5 25.1 30.6
-1820 19.2 26.6 4.5 19.4 29.3 10.8 20.6 25.9 5.2 8.9 7.9 9.1
-
-1821 21.5 4.2 5.7 9.2 1.7 1.8 2.5 4.8 4.4 18.8 4.4 0.2
-1822 0.0 0.9 16.1 13.5 1.5 5.6 7.9 2.1 0.0 0.4 0.0 0.0
-1823 0.0 0.0 0.6 0.0 0.0 0.0 0.5 0.0 0.0 0.0 0.0 20.4
-1824 21.7 10.8 0.0 19.4 2.8 0.0 0.0 1.4 20.5 25.2 0.0 0.8
-1825 5.0 15.5 22.4 3.8 15.5 15.4 30.9 25.7 15.7 15.6 11.7 22.0
-
-1826 17.7 18.2 36.7 24.0 32.4 37.1 52.5 39.6 18.9 50.6 39.5 68.1
-1827 34.6 47.4 57.8 46.0 56.3 56.7 42.3 53.7 49.6 56.1 48.2 46.1
-1828 52.8 64.4 65.0 61.1 89.1 98.0 54.2 76.4 50.4 54.7 57.0 46.9
-1829 43.0 49.4 72.3 95.0 67.4 73.9 90.8 77.6 52.8 57.2 67.6 56.5
-1830 52.2 72.1 84.6 106.3 66.3 65.1 43.9 50.7 62.1 84.4 81.2 82.1
-
-1831 47.5 50.1 93.4 54.5 38.1 33.4 45.2 55.0 37.9 46.3 43.5 28.9
-1832 30.9 55.6 55.1 26.9 41.3 26.7 14.0 8.9 8.2 21.1 14.3 27.5
-1833 11.3 14.9 11.8 2.8 12.9 1.0 7.0 5.7 11.6 7.5 5.9 9.9
-1834 4.9 18.1 3.9 1.4 8.8 7.8 8.7 4.0 11.5 24.8 30.5 34.5
-1835 7.5 24.5 19.7 61.5 43.6 33.2 59.8 59.0 100.8 95.2 100.0 77.5
-
-1836 88.6 107.6 98.2 142.9 111.4 124.7 116.7 107.8 95.1 137.4 120.9 206.2
-1837 188.0 175.6 134.6 138.2 111.7 158.0 162.8 134.0 96.3 123.7 107.0 129.8
-1838 144.9 84.8 140.8 126.6 137.6 94.5 108.2 78.8 73.6 90.8 77.4 79.8
-1839 105.6 102.5 77.7 61.8 53.8 54.6 84.8 131.2 132.7 90.9 68.8 63.7
-1840 81.2 87.7 67.8 65.9 69.2 48.5 60.7 57.8 74.0 55.0 54.3 53.7
-
-1841 24.1 29.9 29.7 40.2 67.5 55.7 30.8 39.3 36.5 28.5 19.8 38.8
-1842 20.4 22.1 21.7 26.9 24.9 20.5 12.6 26.6 18.4 38.1 40.5 17.6
-1843 13.3 3.5 8.3 9.5 21.1 10.5 9.5 11.8 4.2 5.3 19.1 12.7
-1844 9.4 14.7 13.6 20.8 11.6 3.7 21.2 23.9 7.0 21.5 10.7 21.6
-1845 25.7 43.6 43.3 57.0 47.8 31.1 30.6 32.3 29.6 40.7 39.4 59.7
-
-1846 38.7 51.0 63.9 69.3 59.9 65.1 46.5 54.8 107.1 55.9 60.4 65.5
-1847 62.6 44.9 85.7 44.7 75.4 85.3 52.2 140.6 160.9 180.4 138.9 109.6
-1848 159.1 111.8 108.6 107.1 102.2 129.0 139.2 132.6 100.3 132.4 114.6 159.5
-1849 157.0 131.7 96.2 102.5 80.6 81.1 78.0 67.7 93.7 71.5 99.0 97.0
-1850 78.0 89.4 82.6 44.1 61.6 70.0 39.1 61.6 86.2 71.0 54.8 61.0
-
-1851 75.5 105.4 64.6 56.5 62.6 63.2 36.1 57.4 67.9 62.5 51.0 71.4
-1852 68.4 66.4 61.2 65.4 54.9 46.9 42.1 39.7 37.5 67.3 54.3 45.4
-1853 41.1 42.9 37.7 47.6 34.7 40.0 45.9 50.4 33.5 42.3 28.8 23.4
-1854 15.4 20.0 20.7 26.5 24.0 21.1 18.7 15.8 22.4 12.6 28.2 21.6
-1855 12.3 11.4 17.4 4.4 9.1 5.3 0.4 3.1 0.0 9.6 4.2 3.1
-
-1856 0.5 4.9 0.4 6.5 0.0 5.2 4.6 5.9 4.4 4.5 7.7 7.2
-1857 13.7 7.4 5.2 11.1 28.6 16.0 22.2 16.9 42.4 40.6 31.4 37.2
-1858 39.0 34.9 57.5 38.3 41.4 44.5 56.7 55.3 80.1 91.2 51.9 66.9
-1859 83.7 87.6 90.3 85.7 91.0 87.1 95.2 106.8 105.8 114.6 97.2 81.0
-1860 82.4 88.3 98.9 71.4 107.1 108.6 116.7 100.3 92.2 90.1 97.9 95.6
-
-1861 62.3 77.7 101.0 98.5 56.8 88.1 78.0 82.5 79.9 67.2 53.7 80.5
-1862 63.1 64.5 43.6 53.7 64.4 84.0 73.4 62.5 66.6 41.9 50.6 40.9
-1863 48.3 56.7 66.4 40.6 53.8 40.8 32.7 48.1 22.0 39.9 37.7 41.2
-1864 57.7 47.1 66.3 35.8 40.6 57.8 54.7 54.8 28.5 33.9 57.6 28.6
-1865 48.7 39.3 39.5 29.4 34.5 33.6 26.8 37.8 21.6 17.1 24.6 12.8
-
-1866 31.6 38.4 24.6 17.6 12.9 16.5 9.3 12.7 7.3 14.1 9.0 1.5
-1867 0.0 0.7 9.2 5.1 2.9 1.5 5.0 4.8 9.8 13.5 9.6 25.2
-1868 15.6 15.7 26.5 36.6 26.7 31.1 29.0 34.4 47.2 61.6 59.1 67.6
-1869 60.9 59.9 52.7 41.0 103.9 108.4 59.2 79.6 80.6 59.3 78.1 104.3
-1870 77.3 114.9 157.6 160.0 176.0 135.6 132.4 153.8 136.0 146.4 147.5 130.0
-
-1871 88.3 125.3 143.2 162.4 145.5 91.7 103.0 110.1 80.3 89.0 105.4 90.4
-1872 79.5 120.1 88.4 102.1 107.6 109.9 105.5 92.9 114.6 102.6 112.0 83.9
-1873 86.7 107.0 98.3 76.2 47.9 44.8 66.9 68.2 47.1 47.1 55.4 49.2
-1874 60.8 64.2 46.4 32.0 44.6 38.2 67.8 61.3 28.0 34.3 28.9 29.3
-1875 14.6 21.5 33.8 29.1 11.5 23.9 12.5 14.6 2.4 12.7 17.7 9.9
-
-1876 14.3 15.0 30.6 2.3 5.1 1.6 15.2 8.8 9.9 14.3 9.9 8.2
-1877 24.4 8.7 11.9 15.8 21.6 14.2 6.0 6.3 16.9 6.7 14.2 2.2
-1878 3.3 6.6 7.8 0.1 5.9 6.4 0.1 0.0 5.3 1.1 4.1 0.5
-1879 1.0 0.6 0.0 6.2 2.4 4.8 7.5 10.7 6.1 12.3 13.1 7.3
-1880 24.0 27.2 19.3 19.5 23.5 34.1 21.9 48.1 66.0 43.0 30.7 29.6
-
-1881 36.4 53.2 51.5 51.6 43.5 60.5 76.9 58.4 53.2 64.4 54.8 47.3
-1882 45.0 69.5 66.8 95.8 64.1 45.2 45.4 40.4 57.7 59.2 84.4 41.8
-1883 60.6 46.9 42.8 82.1 31.5 76.3 80.6 46.0 52.6 83.8 84.5 75.9
-1884 91.5 86.9 87.5 76.1 66.5 51.2 53.1 55.8 61.9 47.8 36.6 47.2
-1885 42.8 71.8 49.8 55.0 73.0 83.7 66.5 50.0 39.6 38.7 30.9 21.7
-
-1886 29.9 25.9 57.3 43.7 30.7 27.1 30.3 16.9 21.4 8.6 0.3 13.0
-1887 10.3 13.2 4.2 6.9 20.0 15.7 23.3 21.4 7.4 6.6 6.9 20.7
-1888 12.7 7.1 7.8 5.1 7.0 7.1 3.1 2.8 8.8 2.1 10.7 6.7
-1889 0.8 8.5 6.7 4.3 2.4 6.4 9.4 20.6 6.5 2.1 0.2 6.7
-1890 5.3 0.6 5.1 1.6 4.8 1.3 11.6 8.5 17.2 11.2 9.6 7.8
-
-1891 13.5 22.2 10.4 20.5 41.1 48.3 58.8 33.0 53.8 51.5 41.9 32.5
-1892 69.1 75.6 49.9 69.6 79.6 76.3 76.5 101.4 62.8 70.5 65.4 78.6
-1893 75.0 73.0 65.7 88.1 84.7 89.9 88.6 129.2 77.9 80.0 75.1 93.8
-1894 83.2 84.6 52.3 81.6 101.2 98.9 106.0 70.3 65.9 75.5 56.6 60.0
-1895 63.3 67.2 61.0 76.9 67.5 71.5 47.8 68.9 57.7 67.9 47.2 70.7
-
-1896 29.0 57.4 52.0 43.8 27.7 49.0 45.0 27.2 61.3 28.7 38.0 42.6
-1897 40.6 29.4 29.1 31.0 20.0 11.3 27.6 21.8 48.1 14.3 8.4 33.3
-1898 30.2 36.4 38.3 14.5 25.8 22.3 9.0 31.4 34.8 34.4 30.9 12.6
-1899 19.5 9.2 18.1 14.2 7.7 20.5 13.5 2.9 8.4 13.0 7.8 10.5
-1900 9.4 13.6 8.6 16.0 15.2 12.1 8.3 4.3 8.3 12.9 4.5 0.3
-
-1901 0.2 2.4 4.5 0.0 10.2 5.8 0.7 1.0 0.6 3.7 3.8 0.0
-1902 5.5 0.0 12.4 0.0 2.8 1.4 0.9 2.3 7.6 16.3 10.3 1.1
-1903 8.3 17.0 13.5 26.1 14.6 16.3 27.9 28.8 11.1 38.9 44.5 45.6
-1904 31.6 24.5 37.2 43.0 39.5 41.9 50.6 58.2 30.1 54.2 38.0 54.6
-1905 54.8 85.8 56.5 39.3 48.0 49.0 73.0 58.8 55.0 78.7 107.2 55.5
-
-1906 45.5 31.3 64.5 55.3 57.7 63.2 103.6 47.7 56.1 17.8 38.9 64.7
-1907 76.4 108.2 60.7 52.6 42.9 40.4 49.7 54.3 85.0 65.4 61.5 47.3
-1908 39.2 33.9 28.7 57.6 40.8 48.1 39.5 90.5 86.9 32.3 45.5 39.5
-1909 56.7 46.6 66.3 32.3 36.0 22.6 35.8 23.1 38.8 58.4 55.8 54.2
-1910 26.4 31.5 21.4 8.4 22.2 12.3 14.1 11.5 26.2 38.3 4.9 5.8
-
-1911 3.4 9.0 7.8 16.5 9.0 2.2 3.5 4.0 4.0 2.6 4.2 2.2
-1912 0.3 0.0 4.9 4.5 4.4 4.1 3.0 0.3 9.5 4.6 1.1 6.4
-1913 2.3 2.9 0.5 0.9 0.0 0.0 1.7 0.2 1.2 3.1 0.7 3.8
-1914 2.8 2.6 3.1 17.3 5.2 11.4 5.4 7.7 12.7 8.2 16.4 22.3
-1915 23.0 42.3 38.8 41.3 33.0 68.8 71.6 69.6 49.5 53.5 42.5 34.5
-
-1916 45.3 55.4 67.0 71.8 74.5 67.7 53.5 35.2 45.1 50.7 65.6 53.0
-1917 74.7 71.9 94.8 74.7 114.1 114.9 119.8 154.5 129.4 72.2 96.4 129.3
-1918 96.0 65.3 72.2 80.5 76.7 59.4 107.6 101.7 79.9 85.0 83.4 59.2
-1919 48.1 79.5 66.5 51.8 88.1 111.2 64.7 69.0 54.7 52.8 42.0 34.9
-1920 51.1 53.9 70.2 14.8 33.3 38.7 27.5 19.2 36.3 49.6 27.2 29.9
-
-1921 31.5 28.3 26.7 32.4 22.2 33.7 41.9 22.8 17.8 18.2 17.8 20.3
-1922 11.8 26.4 54.7 11.0 8.0 5.8 10.9 6.5 4.7 6.2 7.4 17.5
-1923 4.5 1.5 3.3 6.1 3.2 9.1 3.5 0.5 13.2 11.6 10.0 2.8
-1924 0.5 5.1 1.8 11.3 20.8 24.0 28.1 19.3 25.1 25.6 22.5 16.5
-1925 5.5 23.2 18.0 31.7 42.8 47.5 38.5 37.9 60.2 69.2 58.6 98.6
-
-1926 71.8 69.9 62.5 38.5 64.3 73.5 52.3 61.6 60.8 71.5 60.5 79.4
-1927 81.6 93.0 69.6 93.5 79.1 59.1 54.9 53.8 68.4 63.1 67.2 45.2
-1928 83.5 73.5 85.4 80.6 77.0 91.4 98.0 83.8 89.7 61.4 50.3 59.0
-1929 68.9 62.8 50.2 52.8 58.2 71.9 70.2 65.8 34.4 54.0 81.1 108.0
-1930 65.3 49.9 35.0 38.2 36.8 28.8 21.9 24.9 32.1 34.4 35.6 25.8
-
-1931 14.6 43.1 30.0 31.2 24.6 15.3 17.4 13.0 19.0 10.0 18.7 17.8
-1932 12.1 10.6 11.2 11.2 17.9 22.2 9.6 6.8 4.0 8.9 8.2 11.0
-1933 12.3 22.2 10.1 2.9 3.2 5.2 2.8 0.2 5.1 3.0 0.6 0.3
-1934 3.4 7.8 4.3 11.3 19.7 6.7 9.3 8.3 4.0 5.7 8.7 15.4
-1935 18.6 20.5 23.1 12.2 27.3 45.7 33.9 30.1 42.1 53.2 64.2 61.5
-
-1936 62.8 74.3 77.1 74.9 54.6 70.0 52.3 87.0 76.0 89.0 115.4 123.4
-1937 132.5 128.5 83.9 109.3 116.7 130.3 145.1 137.7 100.7 124.9 74.4 88.8
-1938 98.4 119.2 86.5 101.0 127.4 97.5 165.3 115.7 89.6 99.1 122.2 92.7
-1939 80.3 77.4 64.6 109.1 118.3 101.0 97.6 105.8 112.6 88.1 68.1 42.1
-1940 50.5 59.4 83.3 60.7 54.4 83.9 67.5 105.5 66.5 55.0 58.4 68.3
-
-1941 45.6 44.5 46.4 32.8 29.5 59.8 66.9 60.0 65.9 46.3 38.4 33.7
-1942 35.6 52.8 54.2 60.7 25.0 11.4 17.7 20.2 17.2 19.2 30.7 22.5
-1943 12.4 28.9 27.4 26.1 14.1 7.6 13.2 19.4 10.0 7.8 10.2 18.8
-1944 3.7 0.5 11.0 0.3 2.5 5.0 5.0 16.7 14.3 16.9 10.8 28.4
-1945 18.5 12.7 21.5 32.0 30.6 36.2 42.6 25.9 34.9 68.8 46.0 27.4
-
-1946 47.6 86.2 76.6 75.7 84.9 73.5 116.2 107.2 94.4 102.3 123.8 121.7
-1947 115.7 133.4 129.8 149.8 201.3 163.9 157.9 188.8 169.4 163.6 128.0 116.5
-1948 108.5 86.1 94.8 189.7 174.0 167.8 142.2 157.9 143.3 136.3 95.8 138.0
-1949 119.1 182.3 157.5 147.0 106.2 121.7 125.8 123.8 145.3 131.6 143.5 117.6
-1950 101.6 94.8 109.7 113.4 106.2 83.6 91.0 85.2 51.3 61.4 54.8 54.1
-
-1951 59.9 59.9 55.9 92.9 108.5 100.6 61.5 61.0 83.1 51.6 52.4 45.8
-1952 40.7 22.7 22.0 29.1 23.4 36.4 39.3 54.9 28.2 23.8 22.1 34.3
-1953 26.5 3.9 10.0 27.8 12.5 21.8 8.6 23.5 19.3 8.2 1.6 2.5
-1954 0.2 0.5 10.9 1.8 0.8 0.2 4.8 8.4 1.5 7.0 9.2 7.6
-1955 23.1 20.8 4.9 11.3 28.9 31.7 26.7 40.7 42.7 58.5 89.2 76.9
-
-1956 73.6 124.0 118.4 110.7 136.6 116.6 129.1 169.6 173.2 155.3 201.3 192.1
-1957 165.0 130.2 157.4 175.2 164.6 200.7 187.2 158.0 235.8 253.8 210.9 239.4
-1958 202.5 164.9 190.7 196.0 175.3 171.5 191.4 200.2 201.2 181.5 152.3 187.6
-1959 217.4 143.1 185.7 163.3 172.0 168.7 149.6 199.6 145.2 111.4 124.0 125.0
-1960 146.3 106.0 102.2 122.0 119.6 110.2 121.7 134.1 127.2 82.8 89.6 85.6
-
-1961 57.9 46.1 53.0 61.4 51.0 77.4 70.2 55.8 63.6 37.7 32.6 39.9
-1962 38.7 50.3 45.6 46.4 43.7 42.0 21.8 21.8 51.3 39.5 26.9 23.2
-1963 19.8 24.4 17.1 29.3 43.0 35.9 19.6 33.2 38.8 35.3 23.4 14.9
-1964 15.3 17.7 16.5 8.6 9.5 9.1 3.1 9.3 4.7 6.1 7.4 15.1
-1965 17.5 14.2 11.7 6.8 24.1 15.9 11.9 8.9 16.8 20.1 15.8 17.0
-
-1966 28.2 24.4 25.3 48.7 45.3 47.7 56.7 51.2 50.2 57.2 57.2 70.4
-1967 110.9 93.6 111.8 69.5 86.5 67.3 91.5 107.2 76.8 88.2 94.3 126.4
-1968 121.8 111.9 92.2 81.2 127.2 110.3 96.1 109.3 117.2 107.7 86.0 109.8
-1969 104.4 120.5 135.8 106.8 120.0 106.0 96.8 98.0 91.3 95.7 93.5 97.9
-1970 111.5 127.8 102.9 109.5 127.5 106.8 112.5 93.0 99.5 86.6 95.2 83.5
-
-1971 91.3 79.0 60.7 71.8 57.5 49.8 81.0 61.4 50.2 51.7 63.2 82.2
-1972 61.5 88.4 80.1 63.2 80.5 88.0 76.5 76.8 64.0 61.3 41.6 45.3
-1973 43.4 42.9 46.0 57.7 42.4 37.5 23.1 25.6 59.3 30.7 23.9 23.3
-1974 27.6 26.0 21.3 40.3 39.5 36.0 55.8 33.6 40.2 47.1 25.0 20.5
-1975 18.9 11.5 11.5 5.1 9.0 11.4 28.2 39.7 13.9 9.1 19.4 7.8
-
-1976 8.1 4.3 21.9 18.8 12.4 12.2 1.9 16.4 13.5 20.6 5.2 15.3
-1977 16.4 23.1 8.7 12.9 18.6 38.5 21.4 30.1 44.0 43.8 29.1 43.2
-1978 51.9 93.6 76.5 99.7 82.7 95.1 70.4 58.1 138.2 125.1 97.9 122.7
-1979 166.6 137.5 138.0 101.5 134.4 149.5 159.4 142.2 188.4 186.2 183.3 176.3
-1980 159.6 155.0 126.2 164.1 179.9 157.3 136.3 135.4 155.0 164.7 147.9 174.4
-
-1981 114.0 141.3 135.5 156.4 127.5 90.9 143.8 158.7 167.3 162.4 137.5 150.1
-1982 111.2 163.6 153.8 122.0 82.2 110.4 106.1 107.6 118.8 94.7 98.1 127.0
-1983 84.3 51.0 66.5 80.7 99.2 91.1 82.2 71.8 50.3 55.8 33.3 33.4
-1984 57.0 85.4 83.5 69.7 76.4 46.1 37.4 25.5 15.7 12.0 22.8 18.7
-1985 16.5 15.9 17.2 16.2 27.5 24.2 30.7 11.1 3.9 18.6 16.2 17.3
-
-1986 2.5 23.2 15.1 18.5 13.7 1.1 18.1 7.4 3.8 35.4 15.2 6.8
-1987 10.4 2.4 14.7 39.6 33.0 17.4 33.0 38.7 33.9 60.6 39.9 27.1
-1988 59.0 40.0 76.2 88.0 60.1 101.8 113.8 111.6 120.1 125.1 125.1 179.2
-1989 161.3 165.1 131.4 130.6 138.5 196.2 126.9 168.9 176.7 159.4 173.0 165.5
-1990 177.3 130.5 140.3 140.3 132.2 105.4 149.4 200.3 125.2 145.5 131.4 129.7
-
-1991 136.9 167.5 141.9 140.0 121.3 169.7 173.7 176.3 125.3 144.1 108.2 144.4
-1992 150.0 161.1 106.7 99.8 73.8 65.2 85.7 64.5 63.9 88.7 91.8 82.6
-1993 59.3 91.0 69.8 62.2 61.3 49.8 57.9 42.2 22.4 56.4 35.6 48.9
-1994 57.8 35.5 31.7 16.1 17.8 28.0 35.1 22.5 25.7 44.0 18.0 26.2
-1995 24.2 29.9 31.1 14.0 14.5 15.6 14.5 14.3 11.8 21.1 9.0 10.0
-
-1996 11.5 4.4 9.2 4.8 5.5 11.8 8.2 14.4 1.6 0.9 17.9 13.3
-1997 5.7 7.6 8.7 15.5 18.5 12.7 10.4 24.4 51.3 23.8 39.0 41.2
-1998 31.9 40.3 54.8 53.4 56.3 70.7 66.6 92.2 92.9 55.5 74.0 81.9
-1999 62.0 66.3 68.8 63.7 106.4 137.7 113.5 93.7 71.5 116.7 133.2 84.6
-2000 90.1 112.9 138.5 125.5 121.6 124.9 170.1 130.5 109.7 99.4 106.8 104.4
-
-2001 95.6 80.6 113.5 107.7 96.6 134.0 81.8 106.4 150.7 125.5 106.5 132.2
-2002 114.1 107.4 98.4 120.7 120.8 88.3 99.6 116.4 109.6 97.5 95.5 80.8
-2003 79.7 46.0 61.1 60.0 54.6 77.4 83.3 72.7 48.7 65.5 67.3 46.5
-2004 37.3 45.8 49.1 39.3 41.5 43.2 51.1 40.9 27.7 48.0 43.5 17.9
-2005 31.3 29.2 24.5 24.2 42.7 39.3 40.1 36.4 21.9 8.7 18.0 41.1
-2006 15.3 4.9 10.6 30.2 22.3 13.9 12.2 12.9 14.4 10.5 21.4 13.6
-2007 16.8 10.7 4.5 3.4 11.7 12.1 9.7 6.0 2.4 0.9 1.7 10.1
-2008 3.3 2.1 9.3 2.9 3.2 3.4 0.8 0.5 1.1 2.9 4.1 0.8
-2009 1.5 1.4 0.7 1.2 2.9 2.6
--------------------------------------------------------------------------------
-No observations were available during February 1824. The value shown was
-interpolated from the January and March monthly means of that year.
-
-
-Note: Data are preliminary after Dec 08.
-
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_yearly.dat b/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_yearly.dat
deleted file mode 100644
index 7cef7d7..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/src/sunspots_yearly.dat
+++ /dev/null
@@ -1,309 +0,0 @@
-1700 5
-1701 11
-1702 16
-1703 23
-1704 36
-1705 58
-1706 29
-1707 20
-1708 10
-1709 8
-1710 3
-1711 0
-1712 0
-1713 2
-1714 11
-1715 27
-1716 47
-1717 63
-1718 60
-1719 39
-1720 28
-1721 26
-1722 22
-1723 11
-1724 21
-1725 40
-1726 78
-1727 122
-1728 103
-1729 73
-1730 47
-1731 35
-1732 11
-1733 5
-1734 16
-1735 34
-1736 70
-1737 81
-1738 111
-1739 101
-1740 73
-1741 40
-1742 20
-1743 16
-1744 5
-1745 11
-1746 22
-1747 40
-1748 60
-1749 80.9
-1750 83.4
-1751 47.7
-1752 47.8
-1753 30.7
-1754 12.2
-1755 9.6
-1756 10.2
-1757 32.4
-1758 47.6
-1759 54.0
-1760 62.9
-1761 85.9
-1762 61.2
-1763 45.1
-1764 36.4
-1765 20.9
-1766 11.4
-1767 37.8
-1768 69.8
-1769 106.1
-1770 100.8
-1771 81.6
-1772 66.5
-1773 34.8
-1774 30.6
-1775 7.0
-1776 19.8
-1777 92.5
-1778 154.4
-1779 125.9
-1780 84.8
-1781 68.1
-1782 38.5
-1783 22.8
-1784 10.2
-1785 24.1
-1786 82.9
-1787 132.0
-1788 130.9
-1789 118.1
-1790 89.9
-1791 66.6
-1792 60.0
-1793 46.9
-1794 41.0
-1795 21.3
-1796 16.0
-1797 6.4
-1798 4.1
-1799 6.8
-1800 14.5
-1801 34.0
-1802 45.0
-1803 43.1
-1804 47.5
-1805 42.2
-1806 28.1
-1807 10.1
-1808 8.1
-1809 2.5
-1810 0.0
-1811 1.4
-1812 5.0
-1813 12.2
-1814 13.9
-1815 35.4
-1816 45.8
-1817 41.1
-1818 30.1
-1819 23.9
-1820 15.6
-1821 6.6
-1822 4.0
-1823 1.8
-1824 8.5
-1825 16.6
-1826 36.3
-1827 49.6
-1828 64.2
-1829 67.0
-1830 70.9
-1831 47.8
-1832 27.5
-1833 8.5
-1834 13.2
-1835 56.9
-1836 121.5
-1837 138.3
-1838 103.2
-1839 85.7
-1840 64.6
-1841 36.7
-1842 24.2
-1843 10.7
-1844 15.0
-1845 40.1
-1846 61.5
-1847 98.5
-1848 124.7
-1849 96.3
-1850 66.6
-1851 64.5
-1852 54.1
-1853 39.0
-1854 20.6
-1855 6.7
-1856 4.3
-1857 22.7
-1858 54.8
-1859 93.8
-1860 95.8
-1861 77.2
-1862 59.1
-1863 44.0
-1864 47.0
-1865 30.5
-1866 16.3
-1867 7.3
-1868 37.6
-1869 74.0
-1870 139.0
-1871 111.2
-1872 101.6
-1873 66.2
-1874 44.7
-1875 17.0
-1876 11.3
-1877 12.4
-1878 3.4
-1879 6.0
-1880 32.3
-1881 54.3
-1882 59.7
-1883 63.7
-1884 63.5
-1885 52.2
-1886 25.4
-1887 13.1
-1888 6.8
-1889 6.3
-1890 7.1
-1891 35.6
-1892 73.0
-1893 85.1
-1894 78.0
-1895 64.0
-1896 41.8
-1897 26.2
-1898 26.7
-1899 12.1
-1900 9.5
-1901 2.7
-1902 5.0
-1903 24.4
-1904 42.0
-1905 63.5
-1906 53.8
-1907 62.0
-1908 48.5
-1909 43.9
-1910 18.6
-1911 5.7
-1912 3.6
-1913 1.4
-1914 9.6
-1915 47.4
-1916 57.1
-1917 103.9
-1918 80.6
-1919 63.6
-1920 37.6
-1921 26.1
-1922 14.2
-1923 5.8
-1924 16.7
-1925 44.3
-1926 63.9
-1927 69.0
-1928 77.8
-1929 64.9
-1930 35.7
-1931 21.2
-1932 11.1
-1933 5.7
-1934 8.7
-1935 36.1
-1936 79.7
-1937 114.4
-1938 109.6
-1939 88.8
-1940 67.8
-1941 47.5
-1942 30.6
-1943 16.3
-1944 9.6
-1945 33.2
-1946 92.6
-1947 151.6
-1948 136.3
-1949 134.7
-1950 83.9
-1951 69.4
-1952 31.5
-1953 13.9
-1954 4.4
-1955 38.0
-1956 141.7
-1957 190.2
-1958 184.8
-1959 159.0
-1960 112.3
-1961 53.9
-1962 37.6
-1963 27.9
-1964 10.2
-1965 15.1
-1966 47.0
-1967 93.8
-1968 105.9
-1969 105.5
-1970 104.5
-1971 66.6
-1972 68.9
-1973 38.0
-1974 34.5
-1975 15.5
-1976 12.6
-1977 27.5
-1978 92.5
-1979 155.4
-1980 154.6
-1981 140.4
-1982 115.9
-1983 66.6
-1984 45.9
-1985 17.9
-1986 13.4
-1987 29.4
-1988 100.2
-1989 157.6
-1990 142.6
-1991 145.7
-1992 94.3
-1993 54.6
-1994 29.9
-1995 17.5
-1996 8.6
-1997 21.5
-1998 64.3
-1999 93.3
-2000 119.6
-2001 111.0
-2002 104.0
-2003 63.7
-2004 40.4
-2005 29.8
-2006 15.2
-2007 7.5
-2008 2.9
diff --git a/statsmodels/scikits/statsmodels/datasets/sunspots/sunspots.csv b/statsmodels/scikits/statsmodels/datasets/sunspots/sunspots.csv
deleted file mode 100644
index 5a2488a..0000000
--- a/statsmodels/scikits/statsmodels/datasets/sunspots/sunspots.csv
+++ /dev/null
@@ -1,310 +0,0 @@
-"YEAR","SUNACTIVITY"
-1700,5
-1701,11
-1702,16
-1703,23
-1704,36
-1705,58
-1706,29
-1707,20
-1708,10
-1709,8
-1710,3
-1711,0
-1712,0
-1713,2
-1714,11
-1715,27
-1716,47
-1717,63
-1718,60
-1719,39
-1720,28
-1721,26
-1722,22
-1723,11
-1724,21
-1725,40
-1726,78
-1727,122
-1728,103
-1729,73
-1730,47
-1731,35
-1732,11
-1733,5
-1734,16
-1735,34
-1736,70
-1737,81
-1738,111
-1739,101
-1740,73
-1741,40
-1742,20
-1743,16
-1744,5
-1745,11
-1746,22
-1747,40
-1748,60
-1749,80.9
-1750,83.4
-1751,47.7
-1752,47.8
-1753,30.7
-1754,12.2
-1755,9.6
-1756,10.2
-1757,32.4
-1758,47.6
-1759,54
-1760,62.9
-1761,85.9
-1762,61.2
-1763,45.1
-1764,36.4
-1765,20.9
-1766,11.4
-1767,37.8
-1768,69.8
-1769,106.1
-1770,100.8
-1771,81.6
-1772,66.5
-1773,34.8
-1774,30.6
-1775,7
-1776,19.8
-1777,92.5
-1778,154.4
-1779,125.9
-1780,84.8
-1781,68.1
-1782,38.5
-1783,22.8
-1784,10.2
-1785,24.1
-1786,82.9
-1787,132
-1788,130.9
-1789,118.1
-1790,89.9
-1791,66.6
-1792,60
-1793,46.9
-1794,41
-1795,21.3
-1796,16
-1797,6.4
-1798,4.1
-1799,6.8
-1800,14.5
-1801,34
-1802,45
-1803,43.1
-1804,47.5
-1805,42.2
-1806,28.1
-1807,10.1
-1808,8.1
-1809,2.5
-1810,0
-1811,1.4
-1812,5
-1813,12.2
-1814,13.9
-1815,35.4
-1816,45.8
-1817,41.1
-1818,30.1
-1819,23.9
-1820,15.6
-1821,6.6
-1822,4
-1823,1.8
-1824,8.5
-1825,16.6
-1826,36.3
-1827,49.6
-1828,64.2
-1829,67
-1830,70.9
-1831,47.8
-1832,27.5
-1833,8.5
-1834,13.2
-1835,56.9
-1836,121.5
-1837,138.3
-1838,103.2
-1839,85.7
-1840,64.6
-1841,36.7
-1842,24.2
-1843,10.7
-1844,15
-1845,40.1
-1846,61.5
-1847,98.5
-1848,124.7
-1849,96.3
-1850,66.6
-1851,64.5
-1852,54.1
-1853,39
-1854,20.6
-1855,6.7
-1856,4.3
-1857,22.7
-1858,54.8
-1859,93.8
-1860,95.8
-1861,77.2
-1862,59.1
-1863,44
-1864,47
-1865,30.5
-1866,16.3
-1867,7.3
-1868,37.6
-1869,74
-1870,139
-1871,111.2
-1872,101.6
-1873,66.2
-1874,44.7
-1875,17
-1876,11.3
-1877,12.4
-1878,3.4
-1879,6
-1880,32.3
-1881,54.3
-1882,59.7
-1883,63.7
-1884,63.5
-1885,52.2
-1886,25.4
-1887,13.1
-1888,6.8
-1889,6.3
-1890,7.1
-1891,35.6
-1892,73
-1893,85.1
-1894,78
-1895,64
-1896,41.8
-1897,26.2
-1898,26.7
-1899,12.1
-1900,9.5
-1901,2.7
-1902,5
-1903,24.4
-1904,42
-1905,63.5
-1906,53.8
-1907,62
-1908,48.5
-1909,43.9
-1910,18.6
-1911,5.7
-1912,3.6
-1913,1.4
-1914,9.6
-1915,47.4
-1916,57.1
-1917,103.9
-1918,80.6
-1919,63.6
-1920,37.6
-1921,26.1
-1922,14.2
-1923,5.8
-1924,16.7
-1925,44.3
-1926,63.9
-1927,69
-1928,77.8
-1929,64.9
-1930,35.7
-1931,21.2
-1932,11.1
-1933,5.7
-1934,8.7
-1935,36.1
-1936,79.7
-1937,114.4
-1938,109.6
-1939,88.8
-1940,67.8
-1941,47.5
-1942,30.6
-1943,16.3
-1944,9.6
-1945,33.2
-1946,92.6
-1947,151.6
-1948,136.3
-1949,134.7
-1950,83.9
-1951,69.4
-1952,31.5
-1953,13.9
-1954,4.4
-1955,38
-1956,141.7
-1957,190.2
-1958,184.8
-1959,159
-1960,112.3
-1961,53.9
-1962,37.6
-1963,27.9
-1964,10.2
-1965,15.1
-1966,47
-1967,93.8
-1968,105.9
-1969,105.5
-1970,104.5
-1971,66.6
-1972,68.9
-1973,38
-1974,34.5
-1975,15.5
-1976,12.6
-1977,27.5
-1978,92.5
-1979,155.4
-1980,154.6
-1981,140.4
-1982,115.9
-1983,66.6
-1984,45.9
-1985,17.9
-1986,13.4
-1987,29.4
-1988,100.2
-1989,157.6
-1990,142.6
-1991,145.7
-1992,94.3
-1993,54.6
-1994,29.9
-1995,17.5
-1996,8.6
-1997,21.5
-1998,64.3
-1999,93.3
-2000,119.6
-2001,111
-2002,104
-2003,63.7
-2004,40.4
-2005,29.8
-2006,15.2
-2007,7.5
-2008,2.9
diff --git a/statsmodels/scikits/statsmodels/datasets/template_data.py b/statsmodels/scikits/statsmodels/datasets/template_data.py
deleted file mode 100644
index 21b071c..0000000
--- a/statsmodels/scikits/statsmodels/datasets/template_data.py
+++ /dev/null
@@ -1,56 +0,0 @@
-#! /usr/bin/env python
-
-__all__ = ['COPYRIGHT','TITLE','SOURCE','DESCRSHORT','DESCRLONG','NOTE', 'load']
-
-"""Name of dataset."""
-
-__docformat__ = 'restructuredtext'
-
-COPYRIGHT = """E.g., This is public domain."""
-TITLE = """Title of the dataset"""
-SOURCE = """
-This section should provide a link to the original dataset if possible and
-attribution and correspondance information for the dataset's original author
-if so desired.
-"""
-
-DESCRSHORT = """A short description."""
-
-DESCRLONG = """A longer description of the dataset."""
-
-#suggested notes
-NOTE = """
-Number of observations:
-Number of variables:
-Variable name definitions:
-
-Any other useful information that does not fit into the above categories.
-"""
-
-import numpy as np
-from scikits.statsmodels.datasets import Dataset
-from os.path import dirname, abspath
-
-def load():
- """
- Load the data and return a Dataset class instance.
-
- Returns
- -------
- Dataset instance:
- See DATASET_PROPOSAL.txt for more information.
- """
- filepath = dirname(abspath(__file__))
-##### EDIT THE FOLLOWING TO POINT TO DatasetName.csv #####
- data = np.recfromtxt(open(filepath + '/DatasetName.csv', 'rb'), delimiter=",",
- names=True, dtype=float)
- names = list(data.dtype.names)
-##### SET THE INDEX #####
- endog = np.array(data[names[0]], dtype=float)
- endog_name = names[0]
-##### SET THE INDEX #####
- exog = np.column_stack(data[i] for i in names[1:]).astype(float)
- exog_name = names[1:]
- dataset = Dataset(data=data, names=names, endog=endog, exog=exog,
- endog_name = endog_name, exog_name=exog_name)
- return dataset
diff --git a/statsmodels/scikits/statsmodels/discrete/__init__.py b/statsmodels/scikits/statsmodels/discrete/__init__.py
deleted file mode 100644
index 8ec6816..0000000
--- a/statsmodels/scikits/statsmodels/discrete/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/discrete/discrete_model.py b/statsmodels/scikits/statsmodels/discrete/discrete_model.py
deleted file mode 100644
index d467f1c..0000000
--- a/statsmodels/scikits/statsmodels/discrete/discrete_model.py
+++ /dev/null
@@ -1,1577 +0,0 @@
-"""
-Limited dependent variable and qualitative variables.
-
-Includes binary outcomes, count data, (ordered) ordinal data and limited
-dependent variables.
-
-General References
---------------------
-
-A.C. Cameron and P.K. Trivedi. `Regression Analysis of Count Data`. Cambridge,
- 1998
-
-G.S. Madalla. `Limited-Dependent and Qualitative Variables in Econometrics`.
- Cambridge, 1983.
-
-W. Greene. `Econometric Analysis`. Prentice Hall, 5th. edition. 2003.
-"""
-
-__all__ = ["Poisson","Logit","Probit","MNLogit"]
-
-import numpy as np
-from scipy import stats, special, optimize # opt just for nbin
-from scipy.misc import factorial
-from matplotlib import pyplot as plt
-
-import scikits.statsmodels.tools.tools as tools
-from scikits.statsmodels.tools.decorators import (resettable_cache,
- cache_readonly)
-from scikits.statsmodels.regression.linear_model import OLS
-from scipy import stats, special, optimize # opt just for nbin
-from scipy.misc import factorial
-from scikits.statsmodels.tools.sm_exceptions import PerfectSeparationError
-#import numdifftools as nd #This will be removed when all have analytic hessians
-
-import scikits.statsmodels.base.model as base
-import scikits.statsmodels.regression.linear_model as lm
-import scikits.statsmodels.base.wrapper as wrap
-
-#TODO: add options for the parameter covariance/variance
-# ie., OIM, EIM, and BHHH see Green 21.4
-
-def _check_discrete_args(at, method):
- """
- Checks the arguments for margeff if the exogenous variables are discrete.
- """
- if method in ['dyex','eyex']:
- raise ValueError("%s not allowed for discrete variables" % method)
- if at in ['median', 'zero']:
- raise ValueError("%s not allowed for discrete variables" % at)
-
-def _isdummy(X):
- """
- Given an array X, returns a boolean column index for the dummy variables.
-
- Parameters
- ----------
- X : array-like
- A 1d or 2d array of numbers
-
- Examples
- --------
- >>> X = np.random.randint(0, 2, size=(15,5)).astype(float)
- >>> X[:,1:3] = np.random.randn(15,2)
- >>> ind = _isdummy(X)
- >>> ind
- array([ True, False, False, True, True], dtype=bool)
- """
- X = np.asarray(X)
- if X.ndim > 1:
- ind = np.zeros(X.shape[1]).astype(bool)
- max = (np.max(X, axis=0) == 1)
- min = (np.min(X, axis=0) == 0)
- remainder = np.all(X % 1. == 0, axis=0)
- ind = min & max & remainder
- if X.ndim == 1:
- ind = np.asarray([ind])
- return ind
-
-def _iscount(X):
- """
- Given an array X, returns a boolean column index for count variables.
-
- Parameters
- ----------
- X : array-like
- A 1d or 2d array of numbers
-
- Examples
- --------
- >>> X = np.random.randint(0, 10, size=(15,5)).astype(float)
- >>> X[:,1:3] = np.random.randn(15,2)
- >>> ind = _iscount(X)
- >>> ind
- array([ True, False, False, True, True], dtype=bool)
- """
- X = np.asarray(X)
- remainder = np.all(X % 1. == 0, axis = 0)
- dummy = _isdummy(X)
- remainder -= dummy
- return remainder
-
-class DiscreteModel(base.LikelihoodModel):
- """
- Abstract class for discrete choice models.
-
- This class does not do anything itself but lays out the methods and
- call signature expected of child classes in addition to those of
- scikits.statsmodels.model.LikelihoodModel.
- """
- def __init___(endog, exog):
- super(DiscreteModel, self).__init__(endog, exog)
-
- def initialize(self):
- """
- Initialize is called by
- scikits.statsmodels.model.LikelihoodModel.__init__
- and should contain any preprocessing that needs to be done for a model.
- """
- self.df_model = float(tools.rank(self.exog) - 1) # assumes constant
- self.df_resid = float(self.exog.shape[0] - tools.rank(self.exog))
-
- def cdf(self, X):
- """
- The cumulative distribution function of the model.
- """
- raise NotImplementedError
-
- def pdf(self, X):
- """
- The probability density (mass) function of the model.
- """
- raise NotImplementedError
-
- def _check_perfect_pred(self, params):
- endog = self.endog
- fittedvalues = self.cdf(np.dot(self.exog, params))
- if np.allclose(fittedvalues - endog, 0):
- msg = "Perfect separation detected, results not available"
- raise PerfectSeparationError(msg)
-
- def fit(self, start_params=None, method='newton', maxiter=35, full_output=1,
- disp=1, callback=None, **kwargs):
- """
- Fit the model using maximum likelihood.
-
- The rest of the docstring is from
- scikits.statsmodels.LikelihoodModel.fit
- """
- if callback is None and not isinstance(self, MNLogit):
- callback = self._check_perfect_pred
- if start_params is None and isinstance(self, MNLogit):
- start_params = np.zeros((self.exog.shape[1]*\
- (self.wendog.shape[1]-1)))
- mlefit = super(DiscreteModel, self).fit(start_params=start_params,
- method=method, maxiter=maxiter, full_output=full_output,
- disp=disp, callback=callback, **kwargs)
- if isinstance(self, MNLogit):
- mlefit.params = mlefit.params.reshape(-1, self.exog.shape[1])
- discretefit = DiscreteResults(self, mlefit)
- return DiscreteResultsWrapper(discretefit)
-
- fit.__doc__ += base.LikelihoodModel.fit.__doc__
-
- def predict(self, params, exog=None, linear=False):
- """
- Predict response variable of a model given exogenous variables.
-
- Parameters
- ----------
- params : array-like
- Fitted parameters of the model.
- exog : array-like
- 1d or 2d array of exogenous values. If not supplied, the
- whole exog attribute of the model is used.
- linear : bool, optional
- If True, returns the linear predictor dot(exog,params). Else,
- returns the value of the cdf at the linear predictor.
-
- Returns
- -------
- array
- Fitted values at exog.
- """
- if exog is None:
- exog = self.exog
- if not linear:
- return self.cdf(np.dot(exog, params))
- else:
- return np.dot(exog, params)
-
-
-class Poisson(DiscreteModel):
- """
- Poisson model for count data
-
- Parameters
- ----------
- endog : array-like
- 1-d array of the response variable.
- exog : array-like
- `exog` is an n x p array where n is the number of observations and p
- is the number of regressors including the intercept if one is included
- in the data.
-
- Attributes
- -----------
- endog : array
- A reference to the endogenous response variable
- exog : array
- A reference to the exogenous design.
- """
-
- def cdf(self, X):
- """
- Poisson model cumulative distribution function
-
- Parameters
- -----------
- X : array-like
- `X` is the linear predictor of the model. See notes.
-
- Returns
- -------
- The value of the Poisson CDF at each point.
-
- Notes
- -----
- The CDF is defined as
-
- .. math:: \\exp\left(-\\lambda\\right)\\sum_{i=0}^{y}\\frac{\\lambda^{i}}{i!}
-
- where :math:`\\lambda` assumes the loglinear model. I.e.,
-
- .. math:: \\ln\\lambda_{i}=X\\beta
-
- The parameter `X` is :math:`X\\beta` in the above formula.
- """
- y = self.endog
-# xb = np.dot(self.exog, params)
- return stats.poisson.cdf(y, np.exp(X))
-
- def pdf(self, X):
- """
- Poisson model probability mass function
-
- Parameters
- -----------
- X : array-like
- `X` is the linear predictor of the model. See notes.
-
- Returns
- -------
- The value of the Poisson PMF at each point.
-
- Notes
- --------
- The PMF is defined as
-
- .. math:: \\frac{e^{-\\lambda_{i}}\\lambda_{i}^{y_{i}}}{y_{i}!}
-
- where :math:`\\lambda` assumes the loglinear model. I.e.,
-
- .. math:: \\ln\\lambda_{i}=X\\beta
-
- The parameter `X` is :math:`X\\beta` in the above formula.
- """
- y = self.endog
-# xb = np.dot(self.exog,params)
- return stats.poisson.pmf(y, np.exp(X))
-
- def loglike(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
- XB = np.dot(self.exog, params)
- endog = self.endog
- return np.sum(-np.exp(XB) + endog*XB - np.log(factorial(endog)))
-
- def score(self, params):
- """
- Poisson model score (gradient) vector of the log-likelihood
-
- Parameters
- ----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The score vector of the model evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial\\ln L}{\\partial\\beta}=\\sum_{i=1}^{n}\\left(y_{i}-\\lambda_{i}\\right)x_{i}
-
- where the loglinear model is assumed
-
- .. math:: \\ln\\lambda_{i}=X\\beta
- """
-
- X = self.exog
- L = np.exp(np.dot(X,params))
- return np.dot(self.endog - L,X)
-
- def hessian(self, params):
- """
- Poisson model Hessian matrix of the loglikelihood
-
- Parameters
- ----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The Hessian matrix evaluated at params
-
- Notes
- -----
- .. math:: \\frac{\\partial^{2}\\ln L}{\\partial\\beta\\partial\\beta^{\\prime}}=-\\sum_{i=1}^{n}\\lambda_{i}x_{i}x_{i}^{\\prime}
-
- where the loglinear model is assumed
-
- .. math:: \\ln\\lambda_{i}=X\\beta
-
- """
- X = self.exog
- L = np.exp(np.dot(X,params))
- return -np.dot(L*X.T, X)
-
-class NbReg(DiscreteModel):
- pass
-
-class Logit(DiscreteModel):
- """
- Binary choice logit model
-
- Parameters
- ----------
- endog : array-like
- 1-d array of the response variable.
- exog : array-like
- `exog` is an n x p array where n is the number of observations and p
- is the number of regressors including the intercept if one is included
- in the data.
-
- Attributes
- -----------
- endog : array
- A reference to the endogenous response variable
- exog : array
- A reference to the exogenous design.
- """
-
- def cdf(self, X):
- """
- The logistic cumulative distribution function
-
- Parameters
- ----------
- X : array-like
- `X` is the linear predictor of the logit model. See notes.
-
- Returns
- -------
- 1/(1 + exp(-X))
-
- Notes
- ------
- In the logit model,
-
- .. math:: \\Lambda\\left(x^{\\prime}\\beta\\right)=\\text{Prob}\\left(Y=1|x\\right)=\\frac{e^{x^{\\prime}\\beta}}{1+e^{x^{\\prime}\\beta}}
- """
- X = np.asarray(X)
- return 1/(1+np.exp(-X))
-
- def pdf(self, X):
- """
- The logistic probability density function
-
- Parameters
- -----------
- X : array-like
- `X` is the linear predictor of the logit model. See notes.
-
- Returns
- -------
- np.exp(-x)/(1+np.exp(-X))**2
-
- Notes
- -----
- In the logit model,
-
- .. math:: \\lambda\\left(x^{\\prime}\\beta\\right)=\\frac{e^{-x^{\\prime}\\beta}}{\\left(1+e^{-x^{\\prime}\\beta}\\right)^{2}}
- """
- X = np.asarray(X)
- return np.exp(-X)/(1+np.exp(-X))**2
-
- def loglike(self, params):
- """
- Log-likelihood of logit model.
-
- Parameters
- -----------
- params : array-like
- The parameters of the logit model.
-
- Returns
- -------
- The log-likelihood function of the logit model. See notes.
-
- Notes
- ------
- .. math:: \\ln L=\\sum_{i}\\ln\\Lambda\\left(q_{i}x_{i}^{\\prime}\\beta\\right)
-
- Where :math:`q=2y-1`. This simplification comes from the fact that the
- logistic distribution is symmetric.
- """
- q = 2*self.endog - 1
- X = self.exog
- return np.sum(np.log(self.cdf(q*np.dot(X,params))))
-
- def score(self, params):
- """
- Logit model score (gradient) vector of the log-likelihood
-
- Parameters
- ----------
- params: array-like
- The parameters of the model
-
- Returns
- -------
- The score vector of the model evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial\\ln L}{\\partial\\beta}=\\sum_{i=1}^{n}\\left(y_{i}-\\Lambda_{i}\\right)x_{i}
- """
-
- y = self.endog
- X = self.exog
- L = self.cdf(np.dot(X,params))
- return np.dot(y - L,X)
-
- def hessian(self, params):
- """
- Logit model Hessian matrix of the log-likelihood
-
- Parameters
- ----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The Hessian evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial^{2}\\ln L}{\\partial\\beta\\partial\\beta^{\\prime}}=-\\sum_{i}\\Lambda_{i}\\left(1-\\Lambda_{i}\\right)x_{i}x_{i}^{\\prime}
- """
- X = self.exog
- L = self.cdf(np.dot(X,params))
- return -np.dot(L*(1-L)*X.T,X)
-
-
-class Probit(DiscreteModel):
- """
- Binary choice Probit model
-
- Parameters
- ----------
- endog : array-like
- 1-d array of the response variable.
- exog : array-like
- `exog` is an n x p array where n is the number of observations and p
- is the number of regressors including the intercept if one is included
- in the data.
-
- Attributes
- -----------
- endog : array
- A reference to the endogenous response variable
- exog : array
- A reference to the exogenous design.
- """
-
- def cdf(self, X):
- """
- Probit (Normal) cumulative distribution function
-
- Parameters
- ----------
- X : array-like
- The linear predictor of the model (XB).
-
- Returns
- --------
- The cdf evaluated at `X`.
-
- Notes
- -----
- This function is just an alias for scipy.stats.norm.cdf
- """
- return stats.norm._cdf(X)
-
- def pdf(self, X):
- """
- Probit (Normal) probability density function
-
- Parameters
- ----------
- X : array-like
- The linear predictor of the model (XB).
-
- Returns
- --------
- The pdf evaluated at X.
-
- Notes
- -----
- This function is just an alias for scipy.stats.norm.pdf
-
- """
- X = np.asarray(X)
- return stats.norm._pdf(X)
-
-
- def loglike(self, params):
- """
- Log-likelihood of probit model (i.e., the normal distribution).
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log-likelihood evaluated at params
-
- Notes
- -----
- .. math:: \\ln L=\\sum_{i}\\ln\\Phi\\left(q_{i}x_{i}^{\\prime}\\beta\\right)
-
- Where :math:`q=2y-1`. This simplification comes from the fact that the
- normal distribution is symmetric.
- """
-
- q = 2*self.endog - 1
- X = self.exog
- return np.sum(np.log(np.clip(self.cdf(q*np.dot(X,params)),1e-20,
- 1)))
-
- def score(self, params):
- """
- Probit model score (gradient) vector
-
- Parameters
- ----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The score vector of the model evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial\\ln L}{\\partial\\beta}=\\sum_{i=1}^{n}\\left[\\frac{q_{i}\\phi\\left(q_{i}x_{i}^{\\prime}\\beta\\right)}{\\Phi\\left(q_{i}x_{i}^{\\prime}\\beta\\right)}\\right]x_{i}
-
- Where :math:`q=2y-1`. This simplification comes from the fact that the
- normal distribution is symmetric.
- """
- y = self.endog
- X = self.exog
- XB = np.dot(X,params)
- q = 2*y - 1
- # clip to get rid of invalid divide complaint
- L = q*self.pdf(q*XB)/np.clip(self.cdf(q*XB), 1e-20, 1-1e-20)
- return np.dot(L,X)
-
- def hessian(self, params):
- """
- Probit model Hessian matrix of the log-likelihood
-
- Parameters
- ----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The Hessian evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial^{2}\\ln L}{\\partial\\beta\\partial\\beta^{\\prime}}=-\lambda_{i}\\left(\\lambda_{i}+x_{i}^{\\prime}\\beta\\right)x_{i}x_{i}^{\\prime}
-
- where
- .. math:: \\lambda_{i}=\\frac{q_{i}\\phi\\left(q_{i}x_{i}^{\\prime}\\beta\\right)}{\\Phi\\left(q_{i}x_{i}^{\\prime}\\beta\\right)}
-
- and :math:`q=2y-1`
- """
- X = self.exog
- XB = np.dot(X,params)
- q = 2*self.endog - 1
- L = q*self.pdf(q*XB)/self.cdf(q*XB)
- return np.dot(-L*(L+XB)*X.T,X)
-
-
-class MNLogit(DiscreteModel):
- """
- Multinomial logit model
-
- Parameters
- ----------
- endog : array-like
- `endog` is an 1-d vector of the endogenous response. `endog` can
- contain strings, ints, or floats. Note that if it contains strings,
- every distinct string will be a category. No stripping of whitespace
- is done.
- exog : array-like
- `exog` is an n x p array where n is the number of observations and p
- is the number of regressors including the intercept if one is included
- in the data.
-
- Attributes
- ----------
- endog : array
- A reference to the endogenous response variable
- exog : array
- A reference to the exogenous design.
- J : float
- The number of choices for the endogenous variable. Note that this
- is zero-indexed.
- K : float
- The actual number of parameters for the exogenous design. Includes
- the constant if the design has one.
- names : dict
- A dictionary mapping the column number in `wendog` to the variables
- in `endog`.
- wendog : array
- An n x j array where j is the number of unique categories in `endog`.
- Each column of j is a dummy variable indicating the category of
- each observation. See `names` for a dictionary mapping each column to
- its category.
-
- Notes
- -----
- See developer notes for further information on `MNLogit` internals.
- """
-
- def initialize(self):
- """
- Preprocesses the data for MNLogit.
-
- Turns the endogenous variable into an array of dummies and assigns
- J and K.
- """
- super(MNLogit, self).initialize()
- #This is also a "whiten" method as used in other models (eg regression)
- wendog, self.names = tools.categorical(self.endog, drop=True,
- dictnames=True)
- self.wendog = wendog # don't drop first category
- self.J = float(wendog.shape[1])
- self.K = float(self.exog.shape[1])
- self.df_model *= (self.J-1) # for each J - 1 equation.
- self.df_resid = self.exog.shape[0] - self.df_model - (self.J-1)
-
-
- def _eXB(self, params, exog=None):
- """
- A private method used by the cdf.
-
- Returns
- -------
- :math:`\exp(\beta_{j}^{\prime}x_{i})`
-
- where :math:`j = 0,1,...,J`
-
- Notes
- -----
- A row of ones is appended for the dropped category.
- """
- if exog == None:
- exog = self.exog
- eXB = np.exp(np.dot(params.reshape(-1, exog.shape[1]), exog.T))
- eXB = np.vstack((np.ones((1, exog.shape[0])), eXB))
- return eXB
-
- def pdf(self, eXB):
- """
- NotImplemented
- """
- pass
-
- def cdf(self, eXB):
- """
- Multinomial logit cumulative distribution function.
-
- Parameters
- ----------
- eXB : array
- The exponential predictor of the model exp(XB).
-
- Returns
- --------
- The cdf evaluated at `eXB`.
-
- Notes
- -----
- In the multinomial logit model.
- .. math:: \\frac{\\exp\\left(\\beta_{j}^{\\prime}x_{i}\\right)}{\\sum_{k=0}^{J}\\exp\\left(\\beta_{k}^{\\prime}x_{i}\\right)}
- """
- num = eXB
- denom = eXB.sum(axis=0)
- return num/denom[None,:]
-
- def loglike(self, params):
- """
- Log-likelihood of the multinomial logit model.
-
- Parameters
- ----------
- params : array-like
- The parameters of the multinomial logit model.
-
- Returns
- -------
- The log-likelihood function of the logit model. See notes.
-
- Notes
- ------
- .. math:: \\ln L=\\sum_{i=1}^{n}\\sum_{j=0}^{J}d_{ij}\\ln\\left(\\frac{\\exp\\left(\\beta_{j}^{\\prime}x_{i}\\right)}{\\sum_{k=0}^{J}\\exp\\left(\\beta_{k}^{\\prime}x_{i}\\right)}\\right)
-
- where :math:`d_{ij}=1` if individual `i` chose alternative `j` and 0
- if not.
- """
- d = self.wendog
- eXB = self._eXB(params)
- logprob = np.log(self.cdf(eXB))
- return (d.T * logprob).sum()
-
- def score(self, params):
- """
- Score matrix for multinomial logit model log-likelihood
-
- Parameters
- ----------
- params : array
- The parameters of the multinomial logit model.
-
- Returns
- --------
- The 2-d score vector of the multinomial logit model evaluated at
- `params`.
-
- Notes
- -----
- .. math:: \\frac{\\partial\\ln L}{\\partial\\beta_{j}}=\\sum_{i}\\left(d_{ij}-\\frac{\\exp\\left(\\beta_{j}^{\\prime}x_{i}\\right)}{\\sum_{k=0}^{J}\\exp\\left(\\beta_{k}^{\\prime}x_{i}\\right)}\\right)x_{i}
-
- for :math:`j=1,...,J`
-
- In the multinomial model ths score matrix is K x J-1 but is returned
- as a flattened array to work with the solvers.
- """
- eXB = self._eXB(params)
- firstterm = self.wendog[:,1:].T - self.cdf(eXB)[1:,:]
- return np.dot(firstterm, self.exog).flatten()
-
- def hessian(self, params):
- """
- Multinomial logit Hessian matrix of the log-likelihood
-
- Parameters
- -----------
- params : array-like
- The parameters of the model
-
- Returns
- -------
- The Hessian evaluated at `params`
-
- Notes
- -----
- .. math:: \\frac{\\partial^{2}\\ln L}{\\partial\\beta_{j}\\partial\\beta_{l}}=-\\sum_{i=1}^{n}\\frac{\\exp\\left(\\beta_{j}^{\\prime}x_{i}\\right)}{\\sum_{k=0}^{J}\\exp\\left(\\beta_{k}^{\\prime}x_{i}\\right)}\\left[\\boldsymbol{1}\\left(j=l\\right)-\\frac{\\exp\\left(\\beta_{l}^{\\prime}x_{i}\\right)}{\\sum_{k=0}^{J}\\exp\\left(\\beta_{k}^{\\prime}x_{i}\\right)}\\right]x_{i}x_{l}^{\\prime}
-
- where
- :math:`\\boldsymbol{1}\\left(j=l\\right)` equals 1 if `j` = `l` and 0
- otherwise.
-
- The actual Hessian matrix has J**2 * K x K elements. Our Hessian
- is reshaped to be square (J*K, J*K) so that the solvers can use it.
-
- This implementation does not take advantage of the symmetry of
- the Hessian and could probably be refactored for speed.
- """
- X = self.exog
- eXB = self._eXB(params)
- pr = self.cdf(eXB)
- partials = []
- J = self.wendog.shape[1] - 1
- K = self.exog.shape[1]
- for i in range(J):
- for j in range(J): # this loop assumes we drop the first col.
- if i == j:
- partials.append(\
- -np.dot((pr[i+1,:]*(1-pr[j+1,:]))[None,:]*X.T,X))
- else:
- partials.append(-np.dot(pr[i+1,:]*-pr[j+1,:][None,:]*X.T,X))
- H = np.array(partials)
- # the developer's notes on multinomial should clear this math up
- H = np.transpose(H.reshape(J,J,K,K), (0,2,1,3)).reshape(J*K,J*K)
- return H
-
-
-#TODO: Weibull can replaced by a survival analsysis function
-# like stat's streg (The cox model as well)
-#class Weibull(DiscreteModel):
-# """
-# Binary choice Weibull model
-#
-# Notes
-# ------
-# This is unfinished and untested.
-# """
-##TODO: add analytic hessian for Weibull
-# def initialize(self):
-# pass
-#
-# def cdf(self, X):
-# """
-# Gumbell (Log Weibull) cumulative distribution function
-# """
-## return np.exp(-np.exp(-X))
-# return stats.gumbel_r.cdf(X)
-# # these two are equivalent.
-# # Greene table and discussion is incorrect.
-#
-# def pdf(self, X):
-# """
-# Gumbell (LogWeibull) probability distribution function
-# """
-# return stats.gumbel_r.pdf(X)
-#
-# def loglike(self, params):
-# """
-# Loglikelihood of Weibull distribution
-# """
-# X = self.exog
-# cdf = self.cdf(np.dot(X,params))
-# y = self.endog
-# return np.sum(y*np.log(cdf) + (1-y)*np.log(1-cdf))
-#
-# def score(self, params):
-# y = self.endog
-# X = self.exog
-# F = self.cdf(np.dot(X,params))
-# f = self.pdf(np.dot(X,params))
-# term = (y*f/F + (1 - y)*-f/(1-F))
-# return np.dot(term,X)
-#
-# def hessian(self, params):
-# hess = nd.Jacobian(self.score)
-# return hess(params)
-#
-# def fit(self, start_params=None, method='newton', maxiter=35, tol=1e-08):
-## The example had problems with all zero start values, Hessian = 0
-# if start_params is None:
-# start_params = OLS(self.endog, self.exog).fit().params
-# mlefit = super(Weibull, self).fit(start_params=start_params,
-# method=method, maxiter=maxiter, tol=tol)
-# return mlefit
-#
-
-class NBin(DiscreteModel):
- """
- Negative Binomial model.
- """
-# def pdf(self, X, alpha):
-# a1 = alpha**-1
-# term1 = special.gamma(X + a1)/(special.agamma(X+1)*special.gamma(a1))
-
- def loglike(self, params):
- """
- Loglikelihood for negative binomial model
-
- Notes
- -----
- The ancillary parameter is assumed to be the last element of
- the params vector
- """
- lnalpha = params[-1]
- params = params[:-1]
- a1 = np.exp(lnalpha)**-1
- y = self.endog
- J = special.gammaln(y+a1) - special.gammaln(a1) - special.gammaln(y+1)
- mu = np.exp(np.dot(self.exog,params))
- pdf = a1*np.log(a1/(a1+mu)) + y*np.log(mu/(mu+a1))
- llf = np.sum(J+pdf)
- return llf
-
- def score(self, params, full=False):
- """
- Score vector for NB2 model
- """
- lnalpha = params[-1]
- params = params[:-1]
- a1 = np.exp(lnalpha)**-1
- y = self.endog[:,None]
- exog = self.exog
- mu = np.exp(np.dot(exog,params))[:,None]
- dparams = exog*a1 * (y-mu)/(mu+a1)
-
-
-
- da1 = -1*np.exp(lnalpha)**-2
- dalpha = (special.digamma(a1+y) - special.digamma(a1) + np.log(a1)\
- - np.log(a1+mu) - (a1+y)/(a1+mu) + 1)
-
- #multiply above by constant outside of the sum to reduce rounding error
- if full:
- return np.column_stack([dparams, dalpha])
-
- return np.r_[dparams.sum(0), da1*dalpha.sum()]
-
- def hessian(self, params):
- """
- Hessian of NB2 model. Currently uses numdifftools
- """
- lnalpha = params[-1]
- params = params[:-1]
- a1 = np.exp(lnalpha)**-1
-
- exog = self.exog
- y = self.endog[:,None]
- mu = np.exp(np.dot(exog,params))[:,None]
-
- # for dl/dparams dparams
- dim = exog.shape[1]
- hess_arr = np.empty((dim+1,dim+1))
- const_arr = a1*mu*(a1+y)/(mu+a1)**2
- for i in range(dim):
- for j in range(dim):
- if j > i:
- continue
- hess_arr[i,j] = np.sum(-exog[:,i,None]*exog[:,j,None] *\
- const_arr, axis=0)
- hess_arr[np.triu_indices(dim, k=1)] = hess_arr.T[np.triu_indices(dim,
- k =1)]
-
- # for dl/dparams dalpha
- da1 = -1*np.exp(lnalpha)**-2
- dldpda = np.sum(mu*exog*(y-mu)*da1/(mu+a1)**2 , axis=0)
- hess_arr[-1,:-1] = dldpda
- hess_arr[:-1,-1] = dldpda
-
- # for dl/dalpha dalpha
- #NOTE: polygamma(1,x) is the trigamma function
- da2 = 2*np.exp(lnalpha)**-3
- dalpha = da1 * (special.digamma(a1+y) - special.digamma(a1) + \
- np.log(a1) - np.log(a1+mu) - (a1+y)/(a1+mu) + 1)
- dada = (da2*dalpha/da1 + da1**2 * (special.polygamma(1,a1+y) - \
- special.polygamma(1,a1) + 1/a1 -1/(a1+mu) + \
- (y-mu)/(mu+a1)**2)).sum()
- hess_arr[-1,-1] = dada
-
- return hess_arr
-
-
- def fit(self, start_params=None, maxiter=35, method='bfgs', tol=1e-08):
- # start_params = [0]*(self.exog.shape[1])+[1]
- # Use poisson fit as first guess.
- start_params = Poisson(self.endog, self.exog).fit(disp=0).params
- start_params = np.r_[start_params, 0.1]
- mlefit = super(NegBinTwo, self).fit(start_params=start_params,
- maxiter=maxiter, method=method, tol=tol)
- return mlefit
-
-
-### Results Class ###
-
-#class DiscreteResults(object):
-#TODO: these need to return z scores
-class DiscreteResults(base.LikelihoodModelResults):
- """
- A results class for the discrete dependent variable models.
-
- Parameters
- ----------
- model : A DiscreteModel instance
- params : array-like
- The parameters of a fitted model.
- hessian : array-like
- The hessian of the fitted model.
- scale : float
- A scale parameter for the covariance matrix.
-
-
- Returns
- -------
- *Attributes*
-
- aic : float
- Akaike information criterion. -2*(`llf` - p) where p is the number
- of regressors including the intercept.
- bic : float
- Bayesian information criterion. -2*`llf` + ln(`nobs`)*p where p is the
- number of regressors including the intercept.
- bse : array
- The standard errors of the coefficients.
- df_resid : float
- See model definition.
- df_model : float
- See model definition.
- fitted_values : array
- Linear predictor XB.
- llf : float
- Value of the loglikelihood
- llnull : float
- Value of the constant-only loglikelihood
- llr : float
- Likelihood ratio chi-squared statistic; -2*(`llnull` - `llf`)
- llr_pvalue : float
- The chi-squared probability of getting a log-likelihood ratio
- statistic greater than llr. llr has a chi-squared distribution
- with degrees of freedom `df_model`.
- prsquared : float
- McFadden's pseudo-R-squared. 1 - (`llf`/`llnull`)
- """
-
- def __init__(self, model, mlefit):
-# super(DiscreteResults, self).__init__(model, params,
-# np.linalg.inv(-hessian), scale=1.)
- self.model = model
- self.df_model = model.df_model
- self.df_resid = model.df_resid
- self._cache = resettable_cache()
- self.nobs = model.exog.shape[0]
- self.__dict__.update(mlefit.__dict__)
-
- def predict(self, exog=None, linear=False):
- # pab
- return self.model.predict(self.params, exog, linear)
-
- def predict_bounds(self, exog=None, linear=False, alpha=0.05):
- # pab
- if exog is None:
- exog = self.model.exog
- eta = self.model.predict(self.params, exog, linear=True)
-
- pcov = self.scale * self.normalized_cov_params
-
- U, S, V = np.linalg.svd(pcov, full_matrices=False);
- R = np.dot(U,np.dot(np.diag(np.sqrt(S)),V)) #squareroot of pcov
- varxb = (np.dot(exog,R)**2).sum(axis=1)
- crit = -invnorm(alpha/2)
-
- ecrit = crit * np.sqrt(varxb)
- if linear:
- ylo = eta - ecrit
- yup = eta + ecrit
- else:
- ylo = self.model.cdf(eta - ecrit)
- yup = self.model.cdf(eta + ecrit)
-
- yloup = np.vstack((ylo,yup))
- ylo = yloup.min(axis=0)
- yup = yloup.max(axis=0)
- return ylo, yup
-
- @cache_readonly
- def bse(self):
- bse = np.sqrt(np.diag(self.cov_params()))
- if self.params.ndim == 1 or self.params.shape[1] == 1:
- return bse
- else:
- return bse.reshape(self.params.shape)
-
- @cache_readonly
- def prsquared(self):
- return 1 - self.llf/self.llnull
-
- @cache_readonly
- def llr(self):
- return -2*(self.llnull - self.llf)
-
- @cache_readonly
- def llr_pvalue(self):
- return stats.chisqprob(self.llr, self.df_model)
-
- @cache_readonly
- def llnull(self):
- model = self.model # will this use a new instance?
-#TODO: what parameters to pass to fit?
- null = model.__class__(model.endog, np.ones(self.nobs)).fit(disp=0)
- return null.llf
-
- @cache_readonly
- def resid(self):
- model = self.model
- endog = model.endog
- exog = model.exog
-# M = # of individuals that share a covariate pattern
-# so M[i] = 2 for i = the two individuals who share a covariate pattern
-# use unique row pattern?
-#TODO: is this common to all models? logit uses Pearson, should have options
-#These are the deviance residuals
- M = 1
- p = model.predict(self.params)
- Y_0 = np.where(exog==0)
- Y_M = np.where(exog == M)
- res = np.zeros_like(endog)
- res = -(1-endog)*np.sqrt(2*M*np.abs(np.log(1-p))) + \
- endog*np.sqrt(2*M*np.abs(np.log(p)))
- return res
-
-
- @cache_readonly
- def fittedvalues(self):
- return np.dot(self.model.exog, self.params)
-
- @cache_readonly
- def aic(self):
- if hasattr(self.model, "J"):
- return -2*(self.llf - (self.df_model+self.model.J-1))
- else:
- return -2*(self.llf - (self.df_model+1))
-
- @cache_readonly
- def bic(self):
- if hasattr(self.model, "J"):
- return -2*self.llf + np.log(self.nobs)*\
- (self.df_model+self.model.J-1)
- else:
- return -2*self.llf + np.log(self.nobs)*(self.df_model+1)
-
- def conf_int(self, alpha=.05, cols=None):
- if hasattr(self.model, "J"):
- confint = super(DiscreteResults, self).conf_int(alpha=alpha,
- cols=cols)
- return confint.transpose(0,2,1).reshape(self.model.J-1,
- self.model.K, 2)
- else:
- return super(DiscreteResults, self).conf_int(alpha=alpha, cols=cols)
- conf_int.__doc__ = base.LikelihoodModelResults.conf_int.__doc__
-
- @cache_readonly
- def tvalues(self):
- if hasattr(self.model, "J"): # for MNLogit
- column = range(int(self.model.K))
- return self.params/self.bse[:,column]
- else:
- return super(DiscreteResults, self).tvalues
-
- def margeff(self, at='overall', method='dydx', atexog=None, dummy=False,
- count=False):
- """Get marginal effects of the fitted model.
-
- Parameters
- ----------
- at : str, optional
- Options are:
- - 'overall', The average of the marginal effects at each
- observation.
- - 'mean', The marginal effects at the mean of each regressor.
- - 'median', The marginal effects at the median of each regressor.
- - 'zero', The marginal effects at zero for each regressor.
- - 'all', The marginal effects at each observation.
-
- Note that if `exog` is specified, then marginal effects for all
- variables not specified by `exog` are calculated using the `at`
- option.
- method : str, optional
- - 'dydx' - dy/dx - No transformation is made and marginal effects
- are returned. This is the default.
- - 'eyex' - estimate elasticities of variables in `exog` --
- d(lny)/d(lnx)
- - 'dyex' - estimate semielasticity -- dy/d(lnx)
- - 'eydx' - estimate semeilasticity -- d(lny)/dx
-
- Note that tranformations are done after each observation is
- calculated. Semi-elasticities for binary variables are computed
- using the midpoint method. 'dyex' and 'eyex' do not make sense
- for discrete variables.
- atexog : array-like, optional
- Optionally, you can provide the exogenous variables over which to
- get the marginal effects. This should be a dictionary with the key
- as the zero-indexed column number and the value of the dictionary.
- Default is None for all independent variables less the constant.
- dummy : bool, optional
- If False, treats binary variables (if present) as continuous. This
- is the default. Else if True, treats binary variables as
- changing from 0 to 1. Note that any variable that is either 0 or 1
- is treated as binary. Each binary variable is treated separately
- for now.
- count : bool, optional
- If False, treats count variables (if present) as continuous. This
- is the default. Else if True, the marginal effect is the
- change in probabilities when each observation is increased by one.
-
- Returns
- -------
- effects : ndarray
- the marginal effect corresponding to the input options
-
- Notes
- -----
- When using after Poisson, returns the expected number of events
- per period, assuming that the model is loglinear.
- """
-#TODO:
-# factor : None or dictionary, optional
-# If a factor variable is present (it must be an integer, though
-# of type float), then `factor` may be a dict with the zero-indexed
-# column of the factor and the value should be the base-outcome.
-
- # check arguments
- if at not in ['overall','mean','median','zero','all']:
- raise ValueError("%s not a valid option for `at`." % at)
- if method not in ['dydx','eyex','dyex','eydx']:
- raise ValueError("method is not understood. Got %s" % method)
-
-
- # get local variables
- model = self.model
- params = self.params
- method = method.lower()
- at = at.lower()
- exog = model.exog.copy() # copy because values are changed
- ind = exog.var(0) != 0 # index for non-constants
-
-
- # handle discrete exogenous variables
- if dummy:
- _check_discrete_args(at, method)
- dummy_ind = _isdummy(exog)
- if count:
- _check_discrete_args(at, method)
- count_ind = _iscount(exog)
-
-
- # get the exogenous variables
- if atexog is not None: # user supplied
- if not isinstance(atexog, dict):
- raise ValueError("atexog should be a dict not %s"\
- % type(atexog))
- for key in atexog:
- exog[:,key] = atexog[key]
- if at == 'mean':
- exog = np.atleast_2d(exog.mean(0))
- elif at == 'median':
- exog = np.atleast_2d(np.median(exog, axis=0))
- elif at == 'zero':
- exog = np.zeros((1,params.shape[0]))
- exog[0,~ind] = 1
-
- # get linear fitted values #TODO: just go ahead and get yhat?
- fittedvalues = np.dot(exog, params) #TODO: add a predict method
- # that takes an exog kwd
-
- # group 1 probit, logit, logistic, cloglog, heckprob, xtprobit
- if isinstance(model, (Probit, Logit)):
- effects = np.dot(model.pdf(fittedvalues)[:,None],
- params[None,:])
- # group 2 oprobit, ologit, gologit, mlogit, biprobit
- #TODO
- # group 3 poisson, nbreg, zip, zinb
- elif isinstance(model, (Poisson)):
- effects = np.exp(fittedvalues)[:,None]*params[None,:]
-
- if 'ex' in method:
- effects *= exog
- if 'dy' in method:
- if at == 'all':
- effects = effects[:,ind]
- elif at == 'overall':
- effects = effects.mean(0)[ind]
- else:
- effects = effects[0,ind]
- if 'ey' in method:
- effects /= model.cdf(fittedvalues[:,None])
- if at == 'all':
- effects = effects[:,ind]
- elif at == 'overall':
- effects = effects.mean(0)[ind]
- else:
- effects = effects[0,ind]
- if dummy == True:
- for i, tf in enumerate(dummy_ind):
- if tf == True:
- exog0 = exog.copy()
- exog0[:,i] = 0
- fittedvalues0 = np.dot(exog0,params)
- exog1 = exog.copy()
- exog1[:,i] = 1
- fittedvalues1 = np.dot(exog1, params)
- effect0 = model.cdf(fittedvalues0)
- effect1 = model.cdf(fittedvalues1)
- if 'ey' in method:
- effect0 = np.log(effect0)
- effect1 = np.log(effect1)
- effects[i] = (effect1 - effect0).mean() # mean for overall
- if count == True:
- for i, tf in enumerate(count_ind):
- if tf == True:
- exog0 = exog.copy()
- exog1 = exog.copy()
- exog1[:,i] += 1
- effect0 = model.cdf(np.dot(exog0, params))
- effect1 = model.cdf(np.dot(exog1, params))
-#TODO: compute discrete elasticity correctly
-#Stata doesn't use the midpoint method or a weighted average.
-#Check elsewhere
- if 'ey' in method:
-# #TODO: don't know if this is theoretically correct
- fittedvalues0 = np.dot(exog0,params)
- fittedvalues1 = np.dot(exog1,params)
-# weight1 = model.exog[:,i].mean()
-# weight0 = 1 - weight1
- wfv = (.5*model.cdf(fittedvalues1) + \
- .5*model.cdf(fittedvalues0))
- effects[i] = ((effect1 - effect0)/wfv).mean()
- effects[i] = (effect1 - effect0).mean()
- # Set standard error of the marginal effects by Delta method.
- self.margfx_se = None
- self.margfx = effects
- return effects
-
- def plot_fit_summary(self):
- ''' Plot various diagnostic plots to asses the quality of the fit.
-
- PLOT_FIT_SUMMARY displays various plots to graphically assess whether the data
- could come from the fitted distribution. If so the
- the residual plots will be linear. Other
- distribution types will introduce curvature in the residual plots.
- '''
- # pab
- plt.subplot(2, 2, 1)
- self.plot_fit()
- plt.subplot(2, 2, 2)
- self.plot_resid_histogram()
- plt.subplot(2, 2, 3)
- self.plot_resid_dependence()
- plt.subplot(2, 2, 4)
- self.plot_resid_qq()
-
- def plot_fit(self):
- # pab
- yhat = self.predict()
- y = self.model.endog
- #plt.figure()
- plt.scatter(yhat, y)
- n = y.shape[0]
- add_constant = tools.add_constant
- m, c = np.linalg.lstsq(add_constant(yhat,prepend=False), y)[0]
- x = np.linspace(0,1,self.nobs)
- plt.plot(x, c+m*x, 'r--')
- plt.title('Model Fit Plot')
- plt.ylabel('Observed values')
- plt.xlabel('Fitted values')
-
- def plot_resid_dependence(self, kind='pearson'):
- # pab
- name = 'resid' #+ kind
- ylabeltxt = '%s Residuals' % kind.title()
- res = getattr(self, name)
- yhat = self.predict()
- # Plot of yhat vs. Pearson residuals
- #plt.figure()
- plt.scatter(yhat, res)
- plt.plot([0.0, 1.0],[0.0, 0.0], 'k-')
- plt.title('Residual Dependence Plot')
- plt.ylabel(ylabeltxt)
- plt.xlabel('Fitted values')
-
- def plot_resid_histogram(self, kind='deviance'):
- # pab
- name = 'resid' #+ kind
- ylabeltxt = '%s Residuals' % kind.title()
-
- res = getattr(self, name)
- # Histogram of standardized deviance residuals
- #plt.figure()
- stdres = (res - res.mean())/res.std()
- try:
- plt.hist(stdres, bins=25)
- plt.title('Histogram of standardized %s residuals' % kind)
- except:
- pass
- def plot_resid_qq(self, kind='deviance'):
- # pab
- # QQ Plot of Deviance Residuals
- nobs = self.nobs
- name = 'resid' #+ kind
- ylabeltxt = '%s Residuals' % kind.title()
- res = np.sort(getattr(self, name))
- #plt.figure()
- p = np.linspace(0 + 1./(nobs-1), 1-1./(nobs-1), nobs)
- quants = np.zeros_like(res)
- for i in range(nobs):
- quants[i] = stats.scoreatpercentile(res, p[i]*100)
- mu = res.mean()
- sigma = res.std()
- y = stats.norm.ppf(p, loc=mu, scale=sigma)
- try:
- plt.scatter(y, quants)
- plt.plot([y.min(),y.max()],[y.min(),y.max()],'r--')
- plt.title('Normal - Quantile Plot')
- plt.ylabel('%s Residuals Quantiles' % kind.title())
- plt.xlabel('Quantiles of N(0,1)')
- except:
- pass
- def summary(self, yname=None, xname=None, title=None, alpha=.05,
- yname_list=None):
- """Summarize the Regression Results
-
- Parameters
- -----------
- yname : string, optional
- Default is `y`
- xname : list of strings, optional
- Default is `var_##` for ## in p the number of regressors
- title : string, optional
- Title for the top table. If not None, then this replaces the
- default title
- alpha : float
- significance level for the confidence intervals
-
- Returns
- -------
- smry : Summary instance
- this holds the summary tables and text, which can be printed or
- converted to various output formats.
-
- See Also
- --------
- scikits.statsmodels.iolib.summary.Summary : class to hold summary
- results
-
- """
-
- top_left = [('Dep. Variable:', None),
- ('Model:', [self.model.__class__.__name__]),
- ('Method:', ['MLE']),
- ('Date:', None),
- ('Time:', None),
-# ('No. iterations:', ["%d" % self.mle_retvals['iterations']]),
- ('converged:', ["%s" % self.mle_retvals['converged']])
- ]
-
- top_right = [('No. Observations:', None),
- ('Df Residuals:', None),
- ('Df Model:', None),
- ('Pseudo R-squ.:', ["%#6.4g" % self.prsquared]),
- ('Log-Likelihood:', None),
- ('LL-Null:', ["%#8.5g" % self.llnull]),
- ('LLR p-value:', ["%#6.4g" % self.llr_pvalue])
- ]
-
- if title is None:
- title = self.model.__class__.__name__ + ' ' + "Regression Results"
-
- #boiler plate
- from scikits.statsmodels.iolib.summary import Summary
- smry = Summary()
- smry.add_table_2cols(self, gleft=top_left, gright=top_right, #[],
- yname=yname, xname=xname, title=title)
- if yname_list is None:
- yname_list = yname
- smry.add_table_params(self, yname=yname_list, xname=xname, alpha=.05,
- use_t=True)
-
- #diagnostic table not used yet
-# smry.add_table_2cols(self, gleft=diagn_left, gright=diagn_right,
-# yname=yname, xname=xname,
-# title="")
-
- #TODO: attach only to binary models
- if self.model.__class__.__name__ in ['Logit', 'Probit']:
- fittedvalues = self.model.cdf(self.fittedvalues)
- absprederror = np.abs(self.model.endog - fittedvalues)
- predclose_sum = (absprederror < 1e-4).sum()
- predclose_frac = predclose_sum / len(fittedvalues)
-
- #add warnings/notes
- etext =[]
- if predclose_sum == len(fittedvalues): #nobs?
- wstr = \
-'''Complete Separation: The results show that there is complete separation.
-In this case the Maximum Likelihood Estimator does not exist and the parameters
-are not identified.'''
- etext.append(wstr)
- elif predclose_frac > 0.1: #TODO: get better diagnosis
- wstr = \
-'''Possibly complete quasi-separation: A fraction %f4.2 of observations can be
-perfectly predicted. This might indicate that there is complete
-quasi-separation. In this case some parameters will not be identified.''' % predclose_frac
- etext.append(wstr)
-
- if etext:
- smry.add_extra_txt(etext)
-
- return smry
-class DiscreteResultsWrapper(lm.RegressionResultsWrapper):
- pass
-wrap.populate_wrapper(DiscreteResultsWrapper, DiscreteResults)
-
-if __name__=="__main__":
- import numpy as np
- import scikits.statsmodels.api as sm
-# Scratch work for negative binomial models
-# dvisits was written using an R package, I can provide the dataset
-# on request until the copyright is cleared up
-#TODO: request permission to use dvisits
- data2 = np.genfromtxt('../datasets/dvisits/dvisits.csv', names=True)
-# note that this has missing values for Accident
- endog = data2['doctorco']
- exog = data2[['sex','age','agesq','income','levyplus','freepoor',
- 'freerepa','illness','actdays','hscore','chcond1',
- 'chcond2']].view(float).reshape(len(data2),-1)
- exog = sm.add_constant(exog, prepend=True)
- poisson_mod = Poisson(endog, exog)
- poisson_res = poisson_mod.fit()
-# nb2_mod = NegBinTwo(endog, exog)
-# nb2_res = nb2_mod.fit()
-# solvers hang (with no error and no maxiter warn...)
-# haven't derived hessian (though it will be block diagonal) to check
-# newton, note that Lawless (1987) has the derivations
-# appear to be something wrong with the score?
-# according to Lawless, traditionally the likelihood is maximized wrt to B
-# and a gridsearch on a to determin ahat?
-# or the Breslow approach, which is 2 step iterative.
- nb2_params = [-2.190,.217,-.216,.609,-.142,.118,-.497,.145,.214,.144,
- .038,.099,.190,1.077] # alpha is last
- # taken from Cameron and Trivedi
-# the below is from Cameron and Trivedi as well
-# endog2 = np.array(endog>=1, dtype=float)
-# skipped for now, binary poisson results look off?
- data = sm.datasets.randhie.load()
- nbreg = NBin
- mod = nbreg(data.endog, data.exog.view((float,9)))
-#FROM STATA:
- params = np.asarray([-.05654133, -.21214282, .0878311, -.02991813, .22903632,
- .06210226, .06799715, .08407035, .18532336])
- bse = [0.0062541, 0.0231818, 0.0036942, 0.0034796, 0.0305176, 0.0012397,
- 0.0198008, 0.0368707, 0.0766506]
- lnalpha = .31221786
- mod.loglike(np.r_[params,np.exp(lnalpha)])
- poiss_res = Poisson(data.endog, data.exog.view((float,9))).fit()
- func = lambda x: -mod.loglike(x)
- grad = lambda x: -mod.score(x)
- from scipy import optimize
-# res1 = optimize.fmin_l_bfgs_b(func, np.r_[poiss_res.params,.1],
-# approx_grad=True)
- res1 = optimize.fmin_bfgs(func, np.r_[poiss_res.params,.1], fprime=grad)
- from scikits.statsmodels.sandbox.regression.numdiff import approx_hess_cs
-# np.sqrt(np.diag(-np.linalg.inv(approx_hess_cs(np.r_[params,lnalpha], mod.loglike))))
-#NOTE: this is the hessian in terms of alpha _not_ lnalpha
- hess_arr = mod.hessian(res1)
-
-
diff --git a/statsmodels/scikits/statsmodels/discrete/tests/__init__.py b/statsmodels/scikits/statsmodels/discrete/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/discrete/tests/results/__init__.py b/statsmodels/scikits/statsmodels/discrete/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/discrete/tests/results/nbinom_resids.csv b/statsmodels/scikits/statsmodels/discrete/tests/results/nbinom_resids.csv
deleted file mode 100644
index cbb3c4e..0000000
--- a/statsmodels/scikits/statsmodels/discrete/tests/results/nbinom_resids.csv
+++ /dev/null
@@ -1,20 +0,0 @@
--.5049508,-.6297218,-83.54991,-1.306285,-6.620286
--.2341522,-.2554235,-216.8307,-.758866,-7.183702
-1.024237,.7987758,483.7363,2.503515,22.51353
--.2850617,-.3177966,-70411.51,-2.379918,-141.7456
-.2099025,.1967877,2247.514,.9519455,21.77242
--.4034835,-.4757415,-19563.36,-2.635026,-88.94614
--.1644134,-.1744011,-17331.03,-1.162355,-53.42135
--.4296077,-.5134667,-5300.37,-2.244962,-47.82603
-.323713,.2941846,4110.794,1.486844,36.55984
-.1503672,.1434294,7285.321,.8855429,33.1355
-.4212886,.373428,1373.157,1.521332,24.15702
-.4506587,.3965867,1701.469,1.661779,27.80326
-.2435375,.226174,3184.023,1.136562,27.90734
-1.051829,.8162054,6001.352,3.890797,79.71313
--.5544503,-.712749,-2094.852,-2.454965,-34.21899
--.6057506,-.8064111,-274.7382,-1.907744,-13.05105
--.3412157,-.3902446,-631.138,-1.270229,-14.76001
-.2218985,.2073287,691.1358,.8168764,12.43929
-.2455925,.2266392,.1992506,.2579483,.2747237
--.7589526,-1.153008,-256.739,-2.407166,-14.14742
diff --git a/statsmodels/scikits/statsmodels/discrete/tests/results/results_discrete.py b/statsmodels/scikits/statsmodels/discrete/tests/results/results_discrete.py
deleted file mode 100644
index e4ca7ff..0000000
--- a/statsmodels/scikits/statsmodels/discrete/tests/results/results_discrete.py
+++ /dev/null
@@ -1,251 +0,0 @@
-"""
-Test Results for discrete models from Stata
-"""
-
-import numpy as np
-
-#### Discrete Model Tests ####
-# Note that there is a slight refactor of the classes, so that one dataset
-# might be used for more than one model
-
-class Anes():
- def __init__(self):
- """
- Results are from Stata 11 (checked vs R nnet package).
- """
- self.nobs = 944
-
- def mnlogit_basezero(self):
- params = [-.01153598, .29771435, -.024945, .08249144, .00519655,
- -.37340167, -.08875065, .39166864, -.02289784, .18104276,
- .04787398, -2.2509132, -.1059667, .57345051, -.01485121,
- -.00715242, .05757516, -3.6655835, -.0915567, 1.2787718,
- -.00868135, .19982796, .08449838, -7.6138431, -.0932846,
- 1.3469616, -.01790407, .21693885, .08095841, -7.0604782,
- -.14088069, 2.0700801, -.00943265, .3219257, .10889408,
- -12.105751]
- self.params = np.reshape(params, (6,-1))
- bse = [.0342823657, .093626795, .0065248584, .0735865799,
- .0176336937, .6298376313, .0391615553, .1082386919,
- .0079144618, .0852893563, .0222809297, .7631899491,
- .0570382292, .1585481337, .0113313133, .1262913234,
- .0336142088, 1.156541492, .0437902764, .1288965854,
- .0084187486, .0941250559, .0261963632, .9575809602,
- .0393516553, .1171860107, .0076110152, .0850070091,
- .0229760791, .8443638283, .042138047, .1434089089,
- .0081338625, .0910979921, .025300888, 1.059954821]
- self.bse = np.reshape(bse, (6,-1))
- self.cov_params = None
- self.llf = -1461.922747312
- self.llnull = -1750.34670999
- self.llr = 576.8479253554
- self.llr_pvalue = 1.8223179e-102
- self.prsquared = .1647810465387
- self.df_model = 30
- self.df_resid = 944 - 36
- self.J = 7
- self.K = 6
- self.aic = 2995.84549462
- self.bic = 3170.45003661
- z = [-.3364988051, 3.179798597, -3.823070772, 1.121012042,
- .2946945327, -.5928538661, -2.266269864, 3.618564069,
- -2.893164162, 2.122688754, 2.148652536, -2.949348555,
- -1.857818873, 3.616885888, -1.310634214, -.0566342868,
- 1.712822091, -3.169435381, -2.090799808, 9.920912816,
- -1.031191864, 2.123004903, 3.225576554, -7.951122047,
- -2.370538224, 11.49421878, -2.352389066, 2.552011323,
- 3.523595639, -8.361890935, -3.34331327, 14.43480847,
- -1.159676452, 3.533839715, 4.303962885, -11.42100649]
- self.z = np.reshape(z, (6,-1))
- pvalues = [0.7364947525, 0.0014737744, 0.0001317999, 0.2622827367,
- 0.7682272401, 0.5532789548, 0.0234348654, 0.0002962422,
- 0.0038138191, 0.0337799420, 0.0316619538, 0.0031844460,
- 0.0631947400, 0.0002981687, 0.1899813744, 0.9548365214,
- 0.0867452747, 0.0015273542, 0.0365460134, 3.37654e-23,
- 0.3024508550, 0.0337534410, 0.0012571921, 1.84830e-15,
- 0.0177622072, 1.41051e-30, 0.0186532528, 0.0107103038,
- 0.0004257334, 6.17209e-17, 0.0008278439, 3.12513e-47,
- 0.2461805610, 0.0004095694, 0.0000167770, 3.28408e-30]
- self.pvalues = np.reshape(pvalues, (6,-1))
- self.conf_int = [[[-0.0787282, 0.0556562], [0.1142092, 0.4812195],
- [-0.0377335, -0.0121565], [-0.0617356, 0.2267185], [-0.0293649,
- 0.0397580], [-1.6078610, 0.8610574]], [[-0.1655059, -0.0119954],
- [0.1795247, 0.6038126], [-0.0384099, -0.0073858], [0.0138787,
- 0.3482068], [0.0042042, 0.0915438], [-3.7467380, -0.7550884]],
- [[-0.2177596, 0.0058262], [0.2627019, 0.8841991], [-0.0370602,
- 0.0073578], [-0.2546789, 0.2403740], [-0.0083075, 0.1234578],
- [-5.9323630,-1.3988040]],[[-0.1773841, -0.0057293], [1.0261390,
- 1.5314040], [-0.0251818, 0.0078191], [0.0153462, 0.3843097],
- [0.0331544, 0.1358423], [-9.4906670, -5.7370190]], [[-0.1704124,
- -0.0161568], [1.1172810, 1.5766420], [-0.0328214, -0.0029868],
- [0.0503282, 0.3835495], [0.0359261, 0.1259907], [-8.7154010,
- -5.4055560]], [[-0.2234697, -0.0582916], [1.7890040, 2.3511560],
- [-0.0253747, 0.0065094], [0.1433769, 0.5004745], [0.0593053,
- 0.1584829], [-14.1832200, -10.0282800]]]
-
-class Spector():
- """
- Results are from Stata 11
- """
- def __init__(self):
- self.nobs = 32
-
- def logit(self):
- self.params = [2.82611297201, .0951576702557, 2.37868772835,
- -13.0213483201]
- self.cov_params = [[1.59502033639, -.036920566629, .427615725153,
- -4.57347950298], [-.036920566629, .0200375937069,
- .0149126464275, -.346255757562], [.427615725153 ,
- .0149126464275, 1.13329715236, -2.35916128427],
- [-4.57347950298, -.346255757562, -2.35916128427,
- 24.3179625937]]
- self.bse = [1.26294114526, .141554207662, 1.06456430165, 4.93132462871]
- self.llf = -12.8896334653335
- self.llnull = -20.5917296966173
- self.df_model = 3
- self.df_resid = 32 - 4 #TODO: is this right? not reported in stata
- self.llr = 15.4041924625676
- self.prsquared = .374038332124624
- self.llr_pvalue = .00150187761112892
- self.aic = 33.779266930667
- self.bic = 39.642210541866
- self.z = [2.237723415, 0.6722348408, 2.234423721, -2.640537645]
- self.conf_int = [[.3507938,5.301432],[-.1822835,.3725988],[.29218,
- 4.465195],[-22.68657,-3.35613]]
- self.pvalues = [.0252390974, .5014342039, .0254552063, .0082774596]
- self.margeff_nodummy_dydx = [.36258084688424,.01220841099085,
- .30517768382304]
- self.margeff_nodummy_dydxmean = [.53385885781692,.01797548988961,
- .44933926079386]
- self.margeff_nodummy_dydxmedian = [.25009492465091,.00842091261329,
- .2105003352955]
-
- self.margeff_nodummy_dydxzero = [6.252993785e-06,2.105437138e-07,
- 5.263030788e-06]
- self.margeff_nodummy_dyex = [1.1774000792198,.27896245178384,
- .16960002159996]
- self.margeff_nodummy_dyexmean = [1.6641381583512,.39433730945339,
- .19658592659731]
- self.margeff_nodummy_dyexmedian = [.76654095836557,.18947053379898,0]
- self.margeff_nodummy_dyexzero = [0,0,0]
- self.margeff_nodummy_eydx = [1.8546366266779,.06244722072812,
- 1.5610138123033]
- self.margeff_nodummy_eydxmean = [2.1116143062702,.0710998816585,
- 1.7773072368626]
- self.margeff_nodummy_eydxmedian = [2.5488082240624,.0858205793373,
- 2.1452853812126]
- self.margeff_nodummy_eydxzero = [2.8261067189993,.0951574597115,
- 2.3786824653103]
- self.margeff_nodummy_eyex = [5.4747106798973,1.3173389907576,
- .44600395466634]
- self.margeff_nodummy_eyexmean = [6.5822977203268,1.5597536538833,
- .77757191612739]
- self.margeff_nodummy_eyexmedian = [7.8120973525952,1.9309630350892,0]
- self.margeff_nodummy_eyexzero = [0,0,0]
- # for below GPA = 2.0, psi = 1
- self.margeff_nodummy_atexog1 = [.1456333017086,.00490359933927,
- .12257689308426]
- # for below GPA at mean, tuce = 21, psi = 0
- self.margeff_nodummy_atexog2 = [.25105129214546,.00845311433473,
- .2113052923675]
- self.margeff_dummy_dydx = [.36258084688424,.01220841099085,
- .35751515254729]
- self.margeff_dummy_dydxmean = [.53385885781692,.01797548988961,
- .4564984096959]
-# self.margeff_dummy_dydxmedian
-# self.margeff_dummy_dydxzero
- self.margeff_dummy_eydx = [1.8546366266779,.06244722072812,
- 1.5549034398832]
- self.margeff_dummy_eydxmean = [2.1116143062702,.0710998816585,
- 1.6631775707188]
-# self.margeff_dummy_eydxmedian
-# self.margeff_dummy_eydxzero
-# Factor variables not allowed in below
-# self.margeff_dummy_dyex
-# self.margeff_dummy_dyexmean
-# self.margeff_dummy_dyexmedian
-# self.margeff_dummy_dyexzero
-# self.margeff_dummy_eyex
-# self.margeff_dummy_eyex
-# self.margeff_dummy_eyex
-# self.margeff_dummy_eyex
- # for below GPA = 2.0, psi = 1
- self.margeff_dummy_atexog1 = [.1456333017086,.00490359933927,
- .0494715429937]
- # for below GPA at mean, tuce = 21, psi = 0
- self.margeff_dummy_atexog2 = [.25105129214546,.00845311433473,
- .44265645632553]
-
- def probit(self):
- self.params = [1.62581025407, .051728948442, 1.42633236818,
- -7.45232041607]
- self.cov_params = [[.481472955383, -.01891350017, .105439226234,
- -1.1696681354], [-.01891350017, .00703757594, .002471864882,
- -.101172838897], [.105439226234, .002471864882, .354070126802,
- -.594791776765], [-1.1696681354, -.101172838897, -.594791776765,
- 6.46416639958]]
- self.bse = [.693882522754, .083890261293, .595037920474, 2.54247249731]
- self.llf = -12.8188033249334
- self.llnull = -20.5917296966173
- self.df_model = 3
- self.df_resid = 32 - 4
- self.llr = 15.5458527433678
- self.prsquared = .377478069409622
- self.llr_pvalue = .00140489496775855
- self.aic = 33.637606649867
- self.bic = 39.500550261066
- self.z = [ 2.343062695, .6166263836, 2.397044489, -2.931131182]
- self.conf_int = [[.2658255,2.985795],[-.1126929,.2161508],[.2600795,
- 2.592585],[-12.43547,-2.469166]]
- self.pvalues = [.0191261688, .537481188, .0165279168, .0033773013]
- self.predict = [.0181707, .0530805, .1899263, .0185707, .5545748,
- .0272331, .0185033, .0445714, .1088081, .6631207,
- .0161024, .1935566, .3233282, .1951826, .3563406,
- .0219654, .0456943, .0308513, .5934023, .6571863,
- .0619288, .9045388, .2731908, .8474501, .8341947,
- .488726, .6424073, .3286732, .8400168, .9522446,
- .5399595, .123544]
- self.resid = [-.191509, -.3302762, -.6490455, -.1936247, 1.085867,
- -.2349926, -.1932698, -.3019776, -.4799906, .9064196,
- -.1801855, -.6559291, -.8838201, 1.807661, -.9387071,
- -.2107617, -.3058469, -.2503485, -1.341589, .9162835,
- -.3575735, .447951, -.7988633, -1.939208, .6021435,
- 1.196623, .9407793, -.8927477, .59048, .3128364,
- -1.246147, 2.045071]
-
-
-class RandHIE():
- """
- Results obtained from Stata 11
- """
- def __init__(self):
- self.nobs = 20190
-
- def poisson(self):
- self.params = [-.052535114675, -.247086797633, .035290201794,
- -.03457750643, .271713973711, .033941474461, -.012635035534,
- .054056326828, .206115121809, .700352877227]
- self.cov_params = None
- self.bse = [.00288398915279, .01061725196728, .00182833684966,
- .00161284852954, .01223913844387, .00056476496963,
- .00925061122826, .01530987068312, .02627928267502,
- .01116266712362]
- self.llf = -62419.588535018
- self.llnull = -66647.181687959
- self.df_model = 9
- self.df_resid = self.nobs - self.df_model - 1
- self.llr = 8455.186305881856
- self.prsquared = .0634324369893758
- self.llr_pvalue = 0
- self.aic = 124859.17707
- self.bic = 124938.306497
- self.z = [-18.21612769, -23.27219872, 19.30180524, -21.43878101,
- 22.20041672, 60.09840604, -1.36585953, 3.53081538, 7.84325525,
- 62.74063980]
- self.conf_int = [[ -.0581876, -.0468826],[-0.2678962, -0.2262774],
- [0.0317067, 0.0388737],[-0.0377386, -0.0314164],
- [0.2477257, 0.2957022], [0.0328346, 0.0350484],[-0.0307659,
- 0.0054958], [0.0240495, 0.0840631],[0.1546087, 0.2576216],
- [0.6784745, 0.7222313]]
- self.pvalues = [3.84415e-74, 8.4800e-120, 5.18652e-83, 5.8116e-102,
- 3.4028e-109, 0, .1719830562, .0004142808, 4.39014e-15, 0]
diff --git a/statsmodels/scikits/statsmodels/discrete/tests/test_discrete.py b/statsmodels/scikits/statsmodels/discrete/tests/test_discrete.py
deleted file mode 100644
index 4857af6..0000000
--- a/statsmodels/scikits/statsmodels/discrete/tests/test_discrete.py
+++ /dev/null
@@ -1,334 +0,0 @@
-"""
-Tests for discrete models
-
-Notes
------
-DECIMAL_3 is used because it seems that there is a loss of precision
-in the Stata *.dta -> *.csv output, NOT the estimator for the Poisson
-tests.
-"""
-import os
-import numpy as np
-from numpy.testing import *
-from scikits.statsmodels.discrete.discrete_model import *
-import scikits.statsmodels.api as sm
-from sys import platform
-from nose import SkipTest
-from results.results_discrete import Spector
-from scikits.statsmodels.tools.sm_exceptions import PerfectSeparationError
-
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-DECIMAL_0 = 0
-iswindows = 'win' in platform.lower()
-
-class CheckModelResults(object):
- """
- res2 should be the test results from RModelWrap
- or the results as defined in model_results_data
- """
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_4)
-
- def test_conf_int(self):
- assert_almost_equal(self.res1.conf_int(), self.res2.conf_int, DECIMAL_4)
-
- def test_zstat(self):
- assert_almost_equal(self.res1.tvalues, self.res2.z, DECIMAL_4)
-
- def pvalues(self):
- assert_almost_equal(self.res1.pvalues, self.res2.pvalues, DECIMAL_4)
-
-# def test_cov_params(self):
-# assert_almost_equal(self.res1.cov_params(), self.res2.cov_params,
-# DECIMAL_4)
-
- def test_llf(self):
- assert_almost_equal(self.res1.llf, self.res2.llf, DECIMAL_4)
-
- def test_llnull(self):
- assert_almost_equal(self.res1.llnull, self.res2.llnull, DECIMAL_4)
-
- def test_llr(self):
- assert_almost_equal(self.res1.llr, self.res2.llr, DECIMAL_3)
-
- def test_llr_pvalue(self):
- assert_almost_equal(self.res1.llr_pvalue, self.res2.llr_pvalue,
- DECIMAL_4)
-
- def test_margeff(self):
- pass
- # this probably needs it's own test class?
-
- def test_normalized_cov_params(self):
- pass
-
- def test_bse(self):
- assert_almost_equal(self.res1.bse, self.res2.bse, DECIMAL_4)
-
- def test_dof(self):
- assert_equal(self.res1.df_model, self.res2.df_model)
- assert_equal(self.res1.df_resid, self.res2.df_resid)
-
- def test_aic(self):
- assert_almost_equal(self.res1.aic, self.res2.aic, DECIMAL_3)
-
- def test_bic(self):
- assert_almost_equal(self.res1.bic, self.res2.bic, DECIMAL_3)
-
-class CheckMargEff(object):
- """
- Test marginal effects (margeff) and its options
- """
-
- def test_nodummy_dydxoverall(self):
- assert_almost_equal(self.res1.margeff(),
- self.res2.margeff_nodummy_dydx, DECIMAL_4)
-
- def test_nodummy_dydxmean(self):
- assert_almost_equal(self.res1.margeff(at='mean'),
- self.res2.margeff_nodummy_dydxmean, DECIMAL_4)
-
- def test_nodummy_dydxmedian(self):
- assert_almost_equal(self.res1.margeff(at='median'),
- self.res2.margeff_nodummy_dydxmedian, DECIMAL_4)
-
- def test_nodummy_dydxzero(self):
- assert_almost_equal(self.res1.margeff(at='zero'),
- self.res2.margeff_nodummy_dydxzero, DECIMAL_4)
-
- def test_nodummy_dyexoverall(self):
- assert_almost_equal(self.res1.margeff(method='dyex'),
- self.res2.margeff_nodummy_dyex, DECIMAL_4)
-
- def test_nodummy_dyexmean(self):
- assert_almost_equal(self.res1.margeff(at='mean', method='dyex'),
- self.res2.margeff_nodummy_dyexmean, DECIMAL_4)
-
- def test_nodummy_dyexmedian(self):
- assert_almost_equal(self.res1.margeff(at='median', method='dyex'),
- self.res2.margeff_nodummy_dyexmedian, DECIMAL_4)
-
- def test_nodummy_dyexzero(self):
- assert_almost_equal(self.res1.margeff(at='zero', method='dyex'),
- self.res2.margeff_nodummy_dyexzero, DECIMAL_4)
-
- def test_nodummy_eydxoverall(self):
- assert_almost_equal(self.res1.margeff(method='eydx'),
- self.res2.margeff_nodummy_eydx, DECIMAL_4)
-
- def test_nodummy_eydxmean(self):
- assert_almost_equal(self.res1.margeff(at='mean', method='eydx'),
- self.res2.margeff_nodummy_eydxmean, DECIMAL_4)
-
- def test_nodummy_eydxmedian(self):
- assert_almost_equal(self.res1.margeff(at='median', method='eydx'),
- self.res2.margeff_nodummy_eydxmedian, DECIMAL_4)
-
- def test_nodummy_eydxzero(self):
- assert_almost_equal(self.res1.margeff(at='zero', method='eydx'),
- self.res2.margeff_nodummy_eydxzero, DECIMAL_4)
-
- def test_nodummy_eyexoverall(self):
- assert_almost_equal(self.res1.margeff(method='eyex'),
- self.res2.margeff_nodummy_eyex, DECIMAL_4)
-
- def test_nodummy_eyexmean(self):
- assert_almost_equal(self.res1.margeff(at='mean', method='eyex'),
- self.res2.margeff_nodummy_eyexmean, DECIMAL_4)
-
- def test_nodummy_eyexmedian(self):
- assert_almost_equal(self.res1.margeff(at='median', method='eyex'),
- self.res2.margeff_nodummy_eyexmedian, DECIMAL_4)
-
- def test_nodummy_eyexzero(self):
- assert_almost_equal(self.res1.margeff(at='zero', method='eyex'),
- self.res2.margeff_nodummy_eyexzero, DECIMAL_4)
-
- def test_dummy_dydxoverall(self):
- assert_almost_equal(self.res1.margeff(dummy=True),
- self.res2.margeff_dummy_dydx, DECIMAL_4)
-
- def test_dummy_dydxmean(self):
- assert_almost_equal(self.res1.margeff(at='mean', dummy=True),
- self.res2.margeff_dummy_dydxmean, DECIMAL_4)
-
- def test_dummy_eydxoverall(self):
- assert_almost_equal(self.res1.margeff(method='eydx', dummy=True),
- self.res2.margeff_dummy_eydx, DECIMAL_4)
-
- def test_dummy_eydxmean(self):
- assert_almost_equal(self.res1.margeff(at='mean', method='eydx',
- dummy=True), self.res2.margeff_dummy_eydxmean, DECIMAL_4)
-
-class TestProbitNewton(CheckModelResults):
-
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- cls.res1 = Probit(data.endog, data.exog).fit(method="newton", disp=0)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
-
- def test_predict(self):
- assert_almost_equal(self.res1.model.predict(self.res1.params),
- self.res2.predict, DECIMAL_4)
-
- def test_resid(self):
- assert_almost_equal(self.res1.resid, self.res2.resid, DECIMAL_4)
-
-
-class TestProbitBFGS(CheckModelResults):
-
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- cls.res1 = Probit(data.endog, data.exog).fit(method="bfgs",
- disp=0)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
-
-
-class TestProbitNM(CheckModelResults):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
- cls.res1 = Probit(data.endog, data.exog).fit(method="nm",
- disp=0, maxiter=500)
-
-class TestProbitPowell(CheckModelResults):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
- cls.res1 = Probit(data.endog, data.exog).fit(method="powell",
- disp=0, ftol=1e-8)
-
-class TestProbitCG(CheckModelResults):
- @classmethod
- def setupClass(cls):
- if iswindows: # does this work with classmethod?
- raise SkipTest("fmin_cg sometimes fails to converge on windows")
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
- cls.res1 = Probit(data.endog, data.exog).fit(method="cg",
- disp=0, maxiter=250)
-
-class TestProbitNCG(CheckModelResults):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
- cls.res1 = Probit(data.endog, data.exog).fit(method="ncg",
- disp=0, avextol=1e-8)
-
-class TestLogitNewton(CheckModelResults, CheckMargEff):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- cls.res1 = Logit(data.endog, data.exog).fit(method="newton", disp=0)
- res2 = Spector()
- res2.logit()
- cls.res2 = res2
-
- def test_nodummy_exog1(self):
- assert_almost_equal(self.res1.margeff(atexog={0 : 2.0, 2 : 1.}),
- self.res2.margeff_nodummy_atexog1, DECIMAL_4)
-
- def test_nodummy_exog2(self):
- assert_almost_equal(self.res1.margeff(atexog={1 : 21., 2 : 0}, at='mean'),
- self.res2.margeff_nodummy_atexog2, DECIMAL_4)
-
-class TestLogitBFGS(CheckModelResults, CheckMargEff):
- @classmethod
- def setupClass(cls):
-# import scipy
-# major, minor, micro = scipy.__version__.split('.')[:3]
-# if int(minor) < 9:
-# raise SkipTest
- #Skip this unconditionally for release 0.3.0
- #since there are still problems with scipy 0.9.0 on some machines
- #Ralf on mailing list 2011-03-26
- raise SkipTest
-
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- res2 = Spector()
- res2.logit()
- cls.res2 = res2
- cls.res1 = Logit(data.endog, data.exog).fit(method="bfgs",
- disp=0)
-
-class TestPoissonNewton(CheckModelResults):
- @classmethod
- def setupClass(cls):
- from results.results_discrete import RandHIE
- data = sm.datasets.randhie.load()
- exog = sm.add_constant(data.exog)
- cls.res1 = Poisson(data.endog, exog).fit(method='newton', disp=0)
- res2 = RandHIE()
- res2.poisson()
- cls.res2 = res2
-
-class TestMNLogitNewtonBaseZero(CheckModelResults):
- @classmethod
- def setupClass(cls):
- from results.results_discrete import Anes
- data = sm.datasets.anes96.load()
- exog = data.exog
- exog[:,0] = np.log(exog[:,0] + .1)
- exog = np.column_stack((exog[:,0],exog[:,2],
- exog[:,5:8]))
- exog = sm.add_constant(exog)
- cls.res1 = MNLogit(data.endog, exog).fit(method="newton", disp=0)
- res2 = Anes()
- res2.mnlogit_basezero()
- cls.res2 = res2
-
- def test_j(self):
- assert_equal(self.res1.model.J, self.res2.J)
-
- def test_k(self):
- assert_equal(self.res1.model.K, self.res2.K)
-
-
-def test_perfect_prediction():
- cur_dir = os.path.dirname(os.path.abspath(__file__))
- iris_dir = os.path.join(cur_dir, '..', '..', 'genmod', 'tests', 'results')
- iris_dir = os.path.abspath(iris_dir)
- iris = np.genfromtxt(os.path.join(iris_dir, 'iris.csv'), delimiter=",",
- skip_header=1)
- y = iris[:,-1]
- X = iris[:,:-1]
- X = X[y != 2]
- y = y[y != 2]
- X = sm.add_constant(X, prepend=True)
- mod = Logit(y,X)
- assert_raises(PerfectSeparationError, mod.fit)
-
-
-
-if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb'],
- exit=False)
diff --git a/statsmodels/scikits/statsmodels/distributions/__init__.py b/statsmodels/scikits/statsmodels/distributions/__init__.py
deleted file mode 100644
index fe06b22..0000000
--- a/statsmodels/scikits/statsmodels/distributions/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from empirical_distribution import ECDF, monotone_fn_inverter, StepFunction
diff --git a/statsmodels/scikits/statsmodels/distributions/empirical_distribution.py b/statsmodels/scikits/statsmodels/distributions/empirical_distribution.py
deleted file mode 100644
index 58a23ac..0000000
--- a/statsmodels/scikits/statsmodels/distributions/empirical_distribution.py
+++ /dev/null
@@ -1,110 +0,0 @@
-"""
-Empirical CDF Functions
-"""
-import numpy as np
-
-class StepFunction(object):
- """
- A basic step function.
-
- Values at the ends are handled in the simplest way possible:
- everything to the left of x[0] is set to ival; everything
- to the right of x[-1] is set to y[-1].
-
- Parameters
- ----------
- x : array-like
- y : array-like
- ival : float
- ival is the value given to the values to the left of x[0]. Default
- is 0.
- sorted : bool
- Default is False.
-
- Examples
- --------
- >>> import numpy as np
- >>> from scikits.statsmodels.tools import StepFunction
- >>>
- >>> x = np.arange(20)
- >>> y = np.arange(20)
- >>> f = StepFunction(x, y)
- >>>
- >>> print f(3.2)
- 3.0
- >>> print f([[3.2,4.5],[24,-3.1]])
- [[ 3. 4.]
- [ 19. 0.]]
- """
-
- def __init__(self, x, y, ival=0., sorted=False):
-
- _x = np.asarray(x)
- _y = np.asarray(y)
-
- if _x.shape != _y.shape:
- msg = "x and y do not have the same shape"
- raise ValueError(msg)
- if len(_x.shape) != 1:
- msg = 'x and y must be 1-dimensional'
- raise ValueError(msg)
-
- self.x = np.r_[-np.inf, _x]
- self.y = np.r_[ival, _y]
-
- if not sorted:
- asort = np.argsort(self.x)
- self.x = np.take(self.x, asort, 0)
- self.y = np.take(self.y, asort, 0)
- self.n = self.x.shape[0]
-
- def __call__(self, time):
-
- tind = np.searchsorted(self.x, time) - 1
- _shape = tind.shape
- return self.y[tind]
-
-class ECDF(StepFunction):
- """
- Return the Empirical CDF of an array as a step function.
-
- Parameters
- ----------
- x : array-like
- Observations
-
- Returns
- -------
- Empirical CDF as a step function.
- """
- def __init__(self, x):
- step = True
- if step: #TODO: make this an arg and have a linear interpolation option?
- x = np.array(x, copy=True)
- x.sort()
- nobs = len(x)
- y = np.linspace(1./nobs,1,nobs)
- super(ECDF, self).__init__(x, y)
- else:
- pass
- #interpolate.interp1d(x,y,drop_errors=False,fill_values=ival)
-
-def monotone_fn_inverter(fn, x, vectorized=True, **keywords):
- """
- Given a monotone function x (no checking is done to verify monotonicity)
- and a set of x values, return an linearly interpolated approximation
- to its inverse from its values on x.
- """
-
- if vectorized:
- y = fn(x, **keywords)
- else:
- y = []
- for _x in x:
- y.append(fn(_x, **keywords))
- y = np.array(y)
-
- a = np.argsort(y)
-
- return interp1d(y[a], x[a])
-
diff --git a/statsmodels/scikits/statsmodels/distributions/tests/__init__.py b/statsmodels/scikits/statsmodels/distributions/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/distributions/tests/test_ecdf.py b/statsmodels/scikits/statsmodels/distributions/tests/test_ecdf.py
deleted file mode 100644
index df2bc64..0000000
--- a/statsmodels/scikits/statsmodels/distributions/tests/test_ecdf.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import numpy as np
-import numpy.testing as npt
-from scikits.statsmodels.distributions import StepFunction
-
-class TestDistributions(npt.TestCase):
-
- def test_StepFunction(self):
- x = np.arange(20)
- y = np.arange(20)
- f = StepFunction(x, y)
- npt.assert_almost_equal(f( np.array([[3.2,4.5],[24,-3.1]]) ),
- [[ 3, 4], [19, 0]])
-
- def test_StepFunctionBadShape(self):
- x = np.arange(20)
- y = np.arange(21)
- self.assertRaises(ValueError, StepFunction, x, y)
- x = np.zeros((2, 2))
- y = np.zeros((2, 2))
- self.assertRaises(ValueError, StepFunction, x, y)
diff --git a/statsmodels/scikits/statsmodels/docs/GLMNotes.lyx b/statsmodels/scikits/statsmodels/docs/GLMNotes.lyx
deleted file mode 100644
index 4ed0ff5..0000000
--- a/statsmodels/scikits/statsmodels/docs/GLMNotes.lyx
+++ /dev/null
@@ -1,1155 +0,0 @@
-#LyX 1.6.2 created this file. For more info see http://www.lyx.org/
-\lyxformat 345
-\begin_document
-\begin_header
-\textclass article
-\use_default_options true
-\language english
-\inputencoding auto
-\font_roman default
-\font_sans default
-\font_typewriter default
-\font_default_family default
-\font_sc false
-\font_osf false
-\font_sf_scale 100
-\font_tt_scale 100
-
-\graphics default
-\paperfontsize default
-\spacing single
-\use_hyperref false
-\papersize default
-\use_geometry true
-\use_amsmath 1
-\use_esint 1
-\cite_engine basic
-\use_bibtopic false
-\paperorientation portrait
-\leftmargin 1in
-\topmargin 1in
-\rightmargin 1in
-\bottommargin 1in
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language english
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-\tracking_changes false
-\output_changes false
-\author ""
-\author ""
-\end_header
-
-\begin_body
-
-\begin_layout Standard
-Variance Functions:
-\end_layout
-
-\begin_layout Standard
-Constant:
-\begin_inset Formula $\boldsymbol{1}$
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-Power:
-\begin_inset Formula $\boldsymbol{X}^{2}$
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-Binomial:
-\begin_inset Formula $np(1-p)\text{ where }p=\frac{\mu}{n};\,\, V(\mu)=np(1-p)$
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-\begin_inset Formula $\frac{\partial\mu}{\partial\eta}$
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-Links: initialization of base class returns the actual mean vector
-\begin_inset Formula $\boldsymbol{\mu}$
-\end_inset
-
-;
-\begin_inset Formula $p$
-\end_inset
-
- in the logit and subclasses;
-\begin_inset Formula $x$
-\end_inset
-
- elsewhere.
-\end_layout
-
-\begin_layout Standard
-\begin_inset Float table
-placement H
-wide false
-sideways false
-status open
-
-\begin_layout Plain Layout
-\begin_inset Tabular
-
-
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Link
-\begin_inset Formula $g(p)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Inverse
-\begin_inset Formula $g^{-1}(p)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Analytic Derivative
-\begin_inset Formula $g^{\prime}(p)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Logit
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $z=\log\frac{p}{1-p}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $p=\frac{e^{z}}{1+e^{z}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{\prime}(p)=\frac{1}{p(1-p)}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Power
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $z=x^{\text{pow}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $x=z^{\frac{1}{\text{pow}}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{\prime}(x)=\text{pow}\cdot x^{\text{power}-1}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Inverse
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-same as above with
-\begin_inset Formula $\text{pow}=-1$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Square Root
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\text{pow}=0.5$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Identity
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\text{pow}=1$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Log
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $z=\log x$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{-1}(z)=e^{z}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{\prime}(x)=\frac{1}{x}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-CDFLink/Probit
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $z=\Phi^{-1}(p)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $p=\Phi(z)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{\prime}(x)=\frac{1}{\int_{-\infty}^{p}f(t)dt}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Cauchy
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-same as the above with the Cauchy distribution
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-CLogLog
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $z=\log(-\log p)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $p=e^{-e^{z}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $g^{\prime}(p)=-\frac{1}{p\log p}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Plain Layout
-\begin_inset Caption
-
-\begin_layout Plain Layout
-Link Functions
-\end_layout
-
-\end_inset
-
-
-\end_layout
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-Initializing the family sets a link property and a variance based on the
- link(?)
-\end_layout
-
-\begin_layout Standard
-\begin_inset Float table
-placement H
-wide false
-sideways false
-status open
-
-\begin_layout Plain Layout
-\begin_inset Tabular
-
-
-
-
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Family
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Weights
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Deviance
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-DevResid
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Fitted
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Predict
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Base Class
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\frac{1}{(g^{\prime}(\mu))^{2}\cdot V(\mu)}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\frac{\sum_{i}\text{DevResid}^{2}}{\text{scale}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\left(Y-\mu\right)\cdot\sqrt{\text{weights}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\mu=g^{-1}(\eta)$
-\end_inset
-
-*
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\eta=g(\mu)$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Poisson
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\text{sign}\left(Y-\mu\right)\sqrt{2Y\log\frac{Y}{\mu}-2(Y-\mu)}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Gaussian
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\frac{\left(Y-\mu\right)}{\text{\sqrt{\text{scale}\cdot V\left(\mu\right)}}}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Gamma
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Bug?
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Binomial
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-\begin_inset Formula $\text{sign}\left(Y-\mu\right)\sqrt{-2Y\log\frac{\mu}{n}+\left(n-Y\right)\log\left(1-\frac{\mu}{n}\right)}$
-\end_inset
-
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-Inverse Gaussian
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-?
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Plain Layout
-
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Plain Layout
-\begin_inset Caption
-
-\begin_layout Plain Layout
-Families
-\end_layout
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Plain Layout
-*
-\begin_inset Formula $\eta$
-\end_inset
-
- is the linear predictor ie.,
-\begin_inset Formula $X\beta$
-\end_inset
-
- in the generalized linear model
-\end_layout
-
-\end_inset
-
-
-\end_layout
-
-\end_body
-\end_document
diff --git a/statsmodels/scikits/statsmodels/docs/GLMNotes.pdf b/statsmodels/scikits/statsmodels/docs/GLMNotes.pdf
deleted file mode 100644
index cd8e6a6..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/GLMNotes.pdf and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/Makefile b/statsmodels/scikits/statsmodels/docs/Makefile
deleted file mode 100644
index 8b0a387..0000000
--- a/statsmodels/scikits/statsmodels/docs/Makefile
+++ /dev/null
@@ -1,133 +0,0 @@
-# Makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS =
-SPHINXBUILD = sphinx-build
-PAPER =
-BUILDDIR = build
-
-# Internal variables.
-PAPEROPT_a4 = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
-
-.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
-
-help:
- @echo "Please use \`make ' where is one of"
- @echo " html to make standalone HTML files"
- @echo " dirhtml to make HTML files named index.html in directories"
- @echo " singlehtml to make a single large HTML file"
- @echo " pickle to make pickle files"
- @echo " json to make JSON files"
- @echo " htmlhelp to make HTML files and a HTML help project"
- @echo " qthelp to make HTML files and a qthelp project"
- @echo " devhelp to make HTML files and a Devhelp project"
- @echo " epub to make an epub"
- @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
- @echo " latexpdf to make LaTeX files and run them through pdflatex"
- @echo " text to make text files"
- @echo " man to make manual pages"
- @echo " changes to make an overview of all changed/added/deprecated items"
- @echo " linkcheck to check all external links for integrity"
- @echo " doctest to run all doctests embedded in the documentation (if enabled)"
-
-clean:
- -rm -rf $(BUILDDIR)/*
- -rm -rf source/generated/
-
-html:
- $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
- @echo
- @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
-
-dirhtml:
- $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
- @echo
- @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
-
-singlehtml:
- $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
- @echo
- @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
-
-pickle:
- $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
- @echo
- @echo "Build finished; now you can process the pickle files."
-
-json:
- $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
- @echo
- @echo "Build finished; now you can process the JSON files."
-
-htmlhelp:
- $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
- @echo
- @echo "Build finished; now you can run HTML Help Workshop with the" \
- ".hhp project file in $(BUILDDIR)/htmlhelp."
-
-qthelp:
- $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
- @echo
- @echo "Build finished; now you can run "qcollectiongenerator" with the" \
- ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
- @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/esip.qhcp"
- @echo "To view the help file:"
- @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/esip.qhc"
-
-devhelp:
- $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
- @echo
- @echo "Build finished."
- @echo "To view the help file:"
- @echo "# mkdir -p $$HOME/.local/share/devhelp/esip"
- @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/esip"
- @echo "# devhelp"
-
-epub:
- $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
- @echo
- @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
-
-latex:
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
- ./fix_longtable.py $(BUILDDIR)
- @echo
- @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
- @echo "Run \`make' in that directory to run these through (pdf)latex" \
- "(use \`make latexpdf' here to do that automatically)."
-
-latexpdf:
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
- ./fix_longtable.py $(BUILDDIR)
- @echo "Running LaTeX files through pdflatex..."
- make -C $(BUILDDIR)/latex all-pdf
- @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
-
-text:
- $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
- @echo
- @echo "Build finished. The text files are in $(BUILDDIR)/text."
-
-man:
- $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
- @echo
- @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
-
-changes:
- $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
- @echo
- @echo "The overview file is in $(BUILDDIR)/changes."
-
-linkcheck:
- $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
- @echo
- @echo "Link check complete; look for any errors in the above output " \
- "or in $(BUILDDIR)/linkcheck/output.txt."
-
-doctest:
- $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
- @echo "Testing of doctests in the sources finished, look at the " \
- "results in $(BUILDDIR)/doctest/output.txt."
diff --git a/statsmodels/scikits/statsmodels/docs/fix_longtable.py b/statsmodels/scikits/statsmodels/docs/fix_longtable.py
deleted file mode 100644
index 91271bd..0000000
--- a/statsmodels/scikits/statsmodels/docs/fix_longtable.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-import sys
-import os
-
-
-BUILDDIR = sys.argv[-1]
-read_file_path = os.path.join(BUILDDIR,'latex','statsmodels.tex')
-write_file_path = os.path.join(BUILDDIR, 'latex','statsmodels_tmp.tex')
-
-read_file = open(read_file_path,'r')
-write_file = open(write_file_path, 'w')
-
-for line in read_file:
- if 'longtable}{LL' in line:
- line = line.replace('longtable}{LL', 'longtable}{|l|l|')
- write_file.write(line)
-
-read_file.close()
-write_file.close()
-
-os.remove(read_file_path)
-os.rename(write_file_path, read_file_path)
diff --git a/statsmodels/scikits/statsmodels/docs/make.bat b/statsmodels/scikits/statsmodels/docs/make.bat
deleted file mode 100644
index 0f58362..0000000
--- a/statsmodels/scikits/statsmodels/docs/make.bat
+++ /dev/null
@@ -1,171 +0,0 @@
-@ECHO OFF
-
-REM Command file for Sphinx documentation
-
-if "%SPHINXBUILD%" == "" (
- set SPHINXBUILD=sphinx-build
-)
-set BUILDDIR=build
-set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
-if NOT "%PAPER%" == "" (
- set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
-)
-
-if "%1" == "" goto help
-
-if "%1" == "help" (
- :help
- echo.Please use `make ^` where ^ is one of
- echo. html to make standalone HTML files
- echo. dirhtml to make HTML files named index.html in directories
- echo. singlehtml to make a single large HTML file
- echo. pickle to make pickle files
- echo. json to make JSON files
- echo. htmlhelp to make HTML files and a HTML help project
- echo. qthelp to make HTML files and a qthelp project
- echo. devhelp to make HTML files and a Devhelp project
- echo. epub to make an epub
- echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
- echo. text to make text files
- echo. man to make manual pages
- echo. changes to make an overview over all changed/added/deprecated items
- echo. linkcheck to check all external links for integrity
- echo. doctest to run all doctests embedded in the documentation if enabled
- goto end
-)
-
-if "%1" == "clean" (
- for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
- del /q /s %BUILDDIR%\*
- goto end
-)
-
-if "%1" == "html" (
- %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The HTML pages are in %BUILDDIR%/html.
- goto end
-)
-
-if "%1" == "dirhtml" (
- %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
- goto end
-)
-
-if "%1" == "singlehtml" (
- %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
- goto end
-)
-
-if "%1" == "pickle" (
- %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished; now you can process the pickle files.
- goto end
-)
-
-if "%1" == "json" (
- %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished; now you can process the JSON files.
- goto end
-)
-
-if "%1" == "htmlhelp" (
- %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished; now you can run HTML Help Workshop with the ^
-.hhp project file in %BUILDDIR%/htmlhelp.
- goto end
-)
-
-if "%1" == "qthelp" (
- %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished; now you can run "qcollectiongenerator" with the ^
-.qhcp project file in %BUILDDIR%/qthelp, like this:
- echo.^> qcollectiongenerator %BUILDDIR%\qthelp\esip.qhcp
- echo.To view the help file:
- echo.^> assistant -collectionFile %BUILDDIR%\qthelp\esip.ghc
- goto end
-)
-
-if "%1" == "devhelp" (
- %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished.
- goto end
-)
-
-if "%1" == "epub" (
- %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The epub file is in %BUILDDIR%/epub.
- goto end
-)
-
-if "%1" == "latex" (
- %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
- if errorlevel 1 exit /b 1
- start python fix_longtable.py %BUILDDIR%
- echo.
- echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
- goto end
-)
-
-if "%1" == "text" (
- %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The text files are in %BUILDDIR%/text.
- goto end
-)
-
-if "%1" == "man" (
- %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
- if errorlevel 1 exit /b 1
- echo.
- echo.Build finished. The manual pages are in %BUILDDIR%/man.
- goto end
-)
-
-if "%1" == "changes" (
- %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
- if errorlevel 1 exit /b 1
- echo.
- echo.The overview file is in %BUILDDIR%/changes.
- goto end
-)
-
-if "%1" == "linkcheck" (
- %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
- if errorlevel 1 exit /b 1
- echo.
- echo.Link check complete; look for any errors in the above output ^
-or in %BUILDDIR%/linkcheck/output.txt.
- goto end
-)
-
-if "%1" == "doctest" (
- %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
- if errorlevel 1 exit /b 1
- echo.
- echo.Testing of doctests in the sources finished, look at the ^
-results in %BUILDDIR%/doctest/output.txt.
- goto end
-)
-
-:end
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_acorr.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_acorr.py
deleted file mode 100644
index 6a529e5..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_acorr.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_acorr
-plot_acorr()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_fevd.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_fevd.py
deleted file mode 100644
index 97add5a..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_fevd.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_fevd
-plot_fevd()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_forecast.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_forecast.py
deleted file mode 100644
index 4de6ba7..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_forecast.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_forecast
-plot_forecast()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_input.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_input.py
deleted file mode 100644
index 7e29e38..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_input.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_input
-plot_input()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf.py
deleted file mode 100644
index 4961f17..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_irf
-plot_irf()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf_cum.py b/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf_cum.py
deleted file mode 100644
index 0b91cb9..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plot_irf_cum.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from var_plots import plot_irf_cum
-plot_irf_cum()
diff --git a/statsmodels/scikits/statsmodels/docs/plots/var_plots.py b/statsmodels/scikits/statsmodels/docs/plots/var_plots.py
deleted file mode 100644
index cbf14aa..0000000
--- a/statsmodels/scikits/statsmodels/docs/plots/var_plots.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import numpy as np
-
-from scikits.statsmodels.tsa.api import VAR
-from scikits.statsmodels.api import datasets as ds
-
-mdata = ds.macrodata.load().data[['realgdp', 'realcons', 'realinv']]
-names = mdata.dtype.names
-data = mdata.view((float,3))
-data = np.diff(np.log(data), axis=0)
-
-model = VAR(data, names=names)
-est = model.fit(maxlags=2)
-
-def plot_input():
- est.plot()
-
-def plot_acorr():
- est.plot_acorr()
-
-def plot_irf():
- est.irf().plot()
-
-def plot_irf_cum():
- irf = est.irf()
- irf.plot_cum_effects()
-
-def plot_forecast():
- est.plot_forecast(10)
-
-def plot_fevd():
- est.fevd(20).plot()
diff --git a/statsmodels/scikits/statsmodels/docs/source/_static/blogger.png b/statsmodels/scikits/statsmodels/docs/source/_static/blogger.png
deleted file mode 100644
index 7557cf9..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/_static/blogger.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/_static/blogger_sm.png b/statsmodels/scikits/statsmodels/docs/source/_static/blogger_sm.png
deleted file mode 100644
index 11b3eee..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/_static/blogger_sm.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/class.rst b/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/class.rst
deleted file mode 100644
index 8fbc9f1..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/class.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-{{ fullname }}
-{{ underline }}
-
-.. currentmodule:: {{ module }}
-
-.. autoclass:: {{ objname }}
-
- {% block methods %}
-
- {% if methods %}
- .. rubric:: Methods
-
- .. autosummary::
- :toctree:
- {% for item in methods %}
- {% if item != '__init__' %}
- ~{{ name }}.{{ item }}
- {% endif %}
- {%- endfor %}
- {% endif %}
- {% endblock %}
-
- {% block attributes %}
- {% if attributes %}
- .. rubric:: Attributes
-
- .. autosummary::
- {% for item in attributes %}
- ~{{ name }}.{{ item }}
- {%- endfor %}
- {% endif %}
- {% endblock %}
diff --git a/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/glmfamilies.rst b/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/glmfamilies.rst
deleted file mode 100644
index 7376019..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/_templates/autosummary/glmfamilies.rst
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ fullname }}
-{{ underline }}
-
-.. currentmodule:: {{ module }}
-
-.. autoclass:: {{ objname }}
-
- {% block methods %}
-
- {% if methods %}
- .. rubric:: Methods
-
- .. autosummary::
- :toctree:
- {% for item in methods %}
- {% if item != '__init__' %}
- ~{{ name }}.{{ item }}
- {% endif %}
- {%- endfor %}
- {% endif %}
- {% endblock %}
diff --git a/statsmodels/scikits/statsmodels/docs/source/conf.py b/statsmodels/scikits/statsmodels/docs/source/conf.py
deleted file mode 100644
index f5a89b7..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/conf.py
+++ /dev/null
@@ -1,292 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-# statsmodels documentation build configuration file, created by
-# sphinx-quickstart on Sat Jan 22 11:17:58 2011.
-#
-# This file is execfile()d with the current directory set to its containing dir.
-#
-# Note that not all possible configuration values are present in this
-# autogenerated file.
-#
-# All configuration values have a default; values that are commented out
-# serve to show the default.
-
-import sys, os
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-sys.path.insert(0, os.path.abspath('../sphinxext'))
-
-
-# -- General configuration -----------------------------------------------------
-
-# If your documentation needs a minimal Sphinx version, state it here.
-#needs_sphinx = '1.0'
-
-# Add any Sphinx extension module names here, as strings. They can be extensions
-# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest',
- 'sphinx.ext.intersphinx', 'sphinx.ext.todo',
- 'sphinx.ext.pngmath', 'sphinx.ext.viewcode', 'sphinx.ext.autosummary',
- 'sphinx.ext.inheritance_diagram',
- 'matplotlib.sphinxext.plot_directive',
- 'matplotlib.sphinxext.only_directives',
- 'ipython_console_highlighting',
- 'ipython_directive',
- 'numpy_ext.numpydoc']
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
-
-# The suffix of source filenames.
-source_suffix = '.rst'
-
-# The encoding of source files.
-#source_encoding = 'utf-8-sig'
-
-# The master toctree document.
-master_doc = 'index'
-
-# General information about the project.
-project = u'statsmodels'
-copyright = u'2009-2011,Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers'
-
-
-
-autosummary_generate = True
-autoclass_content = 'class'
-
-# The version info for the project you're documenting, acts as replacement for
-# |version| and |release|, also used in various other places throughout the
-# built documents.
-#
-from scikits.statsmodels.version import version, full_version
-release = version
-# The full version, including dev tag.
-version = full_version
-
-# set inheritance_graph_attrs
-# you need graphviz installed to use this
-# see: http://sphinx.pocoo.org/ext/inheritance.html
-# and graphviz dot documentation http://www.graphviz.org/content/attrs
-#NOTE: giving the empty string to size allows graphviz to figure out
-# the size
-inheritance_graph_attrs = dict(size='""', ratio="compress", fontsize=14,
- rankdir="LR")
-
-#inheritance_node_attrs = dict(shape='ellipse', fontsize=14, height=0.75,
-# color='dodgerblue1', style='filled')
-
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#language = None
-
-# There are two options for replacing |today|: either, you set today to some
-# non-false value, then it is used:
-#today = ''
-# Else, today_fmt is used as the format for a strftime call.
-#today_fmt = '%B %d, %Y'
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-exclude_patterns = ['*/autosummary/class.rst', '*/autosummary/glmfamilies.rst']
-
-# The reST default role (used for this markup: `text`) to use for all documents.
-#default_role = None
-
-# If true, '()' will be appended to :func: etc. cross-reference text.
-add_function_parentheses = False
-
-# If true, the current module name will be prepended to all description
-# unit titles (such as .. function::).
-#add_module_names = True
-
-# If true, sectionauthor and moduleauthor directives will be shown in the
-# output. They are ignored by default.
-#show_authors = False
-
-# The name of the Pygments (syntax highlighting) style to use.
-pygments_style = 'sphinx'
-
-# A list of ignored prefixes for module index sorting.
-#modindex_common_prefix = []
-
-
-# -- Options for HTML output ---------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages. See the documentation for
-# a list of builtin themes.
-#html_theme = 'default'
-html_theme = 'statsmodels'
-
-# Theme options are theme-specific and customize the look and feel of a theme
-# further. For a list of options available for each theme, see the
-# documentation.
-#html_theme_options = {}
-
-# Add any paths that contain custom themes here, relative to this directory.
-html_theme_path = ['../themes']
-
-# The name for this set of Sphinx documents. If None, it defaults to
-# " v documentation".
-#html_title = None
-
-# A shorter title for the navigation bar. Default is the same as html_title.
-#html_short_title = None
-
-# The name of an image file (relative to this directory) to place at the top
-# of the sidebar.
-html_logo = 'images/statsmodels_hybi_banner.png'
-
-# The name of an image file (within the static path) to use as favicon of the
-# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
-# pixels large.
-html_favicon = 'images/statsmodels_hybi_favico.ico'
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['_static']
-
-# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
-# using the given strftime format.
-#html_last_updated_fmt = '%b %d, %Y'
-
-# If true, SmartyPants will be used to convert quotes and dashes to
-# typographically correct entities.
-#html_use_smartypants = True
-
-# Custom sidebar templates, maps document names to template names.
-html_sidebars = {'index' : ['indexsidebar.html','searchbox.html','sidelinks.html']}
-
-# Additional templates that should be rendered to pages, maps page names to
-# template names.
-#html_additional_pages = {}
-
-# If false, no module index is generated.
-html_domain_indices = False
-
-# If false, no index is generated.
-#html_use_index = True
-
-# If true, the index is split into individual pages for each letter.
-#html_split_index = False
-
-# If true, links to the reST sources are added to the pages.
-#html_show_sourcelink = True
-
-# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
-#html_show_sphinx = True
-
-# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
-#html_show_copyright = True
-
-# If true, an OpenSearch description file will be output, and all pages will
-# contain a tag referring to it. The value of this option must be the
-# base URL from which the finished HTML is served.
-#html_use_opensearch = ''
-
-# This is the file name suffix for HTML files (e.g. ".xhtml").
-#html_file_suffix = None
-
-# Output file base name for HTML help builder.
-htmlhelp_basename = 'statsmodelsdoc'
-
-
-# -- Options for LaTeX output --------------------------------------------------
-
-# The paper size ('letter' or 'a4').
-#latex_paper_size = 'letter'
-
-# The font size ('10pt', '11pt' or '12pt').
-#latex_font_size = '10pt'
-
-# Grouping the document tree into LaTeX files. List of tuples
-# (source start file, target name, title, author, documentclass [howto/manual]).
-latex_documents = [
- ('index', 'statsmodels.tex', u'statsmodels Documentation',
- u'Josef Perktold, Skipper Seabold', 'manual'),
-]
-
-# The name of an image file (relative to this directory) to place at the top of
-# the title page.
-#latex_logo = None
-
-# For "manual" documents, if this is true, then toplevel headings are parts,
-# not chapters.
-#latex_use_parts = False
-
-# If true, show page references after internal links.
-#latex_show_pagerefs = False
-
-# If true, show URL addresses after external links.
-#latex_show_urls = False
-
-# Additional stuff for the LaTeX preamble.
-#latex_preamble = ''
-
-# Documents to append as an appendix to all manuals.
-#latex_appendices = []
-
-# If false, no module index is generated.
-#latex_domain_indices = True
-
-
-# -- Options for manual page output --------------------------------------------
-
-# One entry per manual page. List of tuples
-# (source start file, name, description, authors, manual section).
-man_pages = [
- ('index', 'statsmodels', u'statsmodels Documentation',
- [u'Josef Perktold, Skipper Seabold, Jonathan Taylor'], 1)
-]
-
-
-# -- Options for Epub output ---------------------------------------------------
-
-# Bibliographic Dublin Core info.
-epub_title = u'statsmodels'
-epub_author = u'Josef Perktold, Skipper Seabold'
-epub_publisher = u'Josef Perktold, Skipper Seabold'
-epub_copyright = u'2009-2011, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers'
-
-# The language of the text. It defaults to the language option
-# or en if the language is not set.
-#epub_language = ''
-
-# The scheme of the identifier. Typical schemes are ISBN or URL.
-#epub_scheme = ''
-
-# The unique identifier of the text. This can be a ISBN number
-# or the project homepage.
-#epub_identifier = ''
-
-# A unique identification for the text.
-#epub_uid = ''
-
-# HTML files that should be inserted before the pages created by sphinx.
-# The format is a list of tuples containing the path and title.
-#epub_pre_files = []
-
-# HTML files shat should be inserted after the pages created by sphinx.
-# The format is a list of tuples containing the path and title.
-#epub_post_files = []
-
-# A list of files that should not be packed into the epub file.
-#epub_exclude_files = []
-
-# The depth of the table of contents in toc.ncx.
-#epub_tocdepth = 3
-
-# Allow duplicate toc entries.
-#epub_tocdup = True
-
-
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'numpy' : ('http://docs.scipy.org/doc/numpy/', None),
- 'python' : ('http://docs.python.org/3.2', None),
- 'pydagogue' : ('http://matthew-brett.github.com/pydagogue/', None)}
-
-from os.path import dirname, abspath
-plot_basedir = dirname(dirname(os.path.abspath(__file__)))
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/dataset_proposal.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/dataset_proposal.rst
deleted file mode 100644
index 9f5f910..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/dataset_proposal.rst
+++ /dev/null
@@ -1,154 +0,0 @@
-:orphan:
-
-.. _dataset_proposal:
-
-Dataset for scikits.statmodels: design proposal
-===============================================
-
-One of the thing numpy/scipy is missing now is a set of datasets, available for
-demo, courses, etc. For example, R has a set of dataset available at the core.
-
-The expected usage of the datasets are the following:
-
- - examples, tutorials for model usage
- - testing of model usage vs. other statistical packages
-
-That is, a dataset is not only data, but also some meta-data. The goal of this
-proposal is to propose common practices for organizing the data, in a way which
-is both straightforward, and does not prevent specific usage of the data.
-
-
-Background
-----------
-
-This proposal was adapted from David Cournapeau's original proposal for a
-datasets package for scipy and the learn scikit. It has been adapted for use
-in the statsmodels scikit. The structure of the datasets itself, while
-specific to statsmodels, should be general enough such that it might be used
-for other types of data (e.g., in the learn scikit or scipy itself).
-
-Organization
-------------
-
-Each dataset is a directory in the `datasets` directory and defines a python
-package (e.g. has the __init__.py file). Each package is expected to define the
-function load, returning the corresponding data. For example, to access datasets
-data1, you should be able to do::
-
- >>> from scikits.statsmodels.datasets.data1 import load
- >>> d = load() # -> d is a Dataset object, see below
-
-The `load` function is expected to return the `Dataset` object, which has certain
-common attributes that make it readily usable in tests and examples. Load can do
-whatever it wants: fetching data from a file (python script, csv file, etc...),
-from the internet, etc. However, it is strongly recommended that each dataset
-directory contain a csv file with the dataset and its variables in the same form
-as returned by load so that the dataset can easily be loaded into other
-statistical packages. In addition, an optional (though recommended) sub-directory
-src should contain the dataset in its original form if it was "cleaned" (ie.,
-variable transformations) in order to put it into the format needed for statsmodels.
-Some special variables must be defined for each package, containing a Python string:
-
- - COPYRIGHT: copyright informations
- - SOURCE: where the data are coming from
- - DESCHOSRT: short description
- - DESCLONG: long description
- - NOTE: some notes on the datasets.
-
-See `datasets/data_template.py` for more information.
-
-Format of the data
-------------------
-
-This is strongly suggested a practice for the `Dataset` object returned by the
-load function. Instead of using classes to provide meta-data, the Bunch pattern
-is used.
-
-::
-
- class Bunch(dict):
- def __init__(self,**kw):
- dict.__init__(self,kw)
- self.__dict__ = self
-
-See this `Reference `_
-
-In practice, you can use ::
-
- >>> from scikits.statsmodels.datasets import Dataset
-
-as the default collector as in `datasets/data_template.py`.
-
-The advantage of the Bunch pattern is that it preserves look-up by attribute.
-The key goals are:
-
- - For people who just want the data, there is no extra burden
- - For people who need more, they can easily extract what they need from
- the returned values. Higher level abstractions can be built easily
- from this model.
- - All possible datasets should fit into this model.
-
-For the datasets to be useful in the statsmodels scikits the Dataset object
-returned by load has the following conventions and attributes:
-
- - Calling the object itself returns the plain ndarray of the full dataset.
- - `data`: A recarray containing the actual data. It is assumed
- that all of the data can safely be cast to a float at this point.
- - `raw_data`: This is the plain ndarray version of 'data'.
- - `names`: this returns data.dtype.names so that name[i] is the i-th
- column in 'raw_data'.
- - `endog`: this value is provided for convenience in tests and examples
- - `exog`: this value is provided for convenience in tests and examples
- - `endog_name`: the name of the endog attribute
- - `exog_name`: the names of the exog attribute
-
-
-This contains enough information to get all useful information through
-introspection and simple functions. Further, attributes are easily added that
-may be useful for other packages.
-
-
-Adding a dataset
-----------------
-
-See the :ref:`notes on adding a dataset `.
-
-
-Example Usage
--------------
-
-::
-
- >>> from scikits.statsmodels import datasets
- >>> data = datasets.longley.load()
-
-
-Remaining problems:
--------------------
-
-
- - If the dataset is big and cannot fit into memory, what kind of API do
- we want to avoid loading all the data in memory ? Can we use memory
- mapped arrays ?
- - Missing data: I thought about subclassing both record arrays and
- masked arrays classes, but I don't know if this is feasable, or even
- makes sense. I have the feeling that some Data mining software use
- Nan (for example, weka seems to use float internally), but this
- prevents them from representing integer data.
- - What to do with non-float data, i.e., strings or categorical variables?
-
-
-Current implementation
-----------------------
-
-An implementation following the above design is available in `statsmodels`.
-
-
-Note
-----
-
-Although the datasets package emerged from the learn package, we try to keep it
-independant from everything else, that is once we agree on the remaining
-problems and where the package should go, it can easily be put elsewhere
-without too much trouble. If there is interest in re-using the datasets package,
-please contact the developers on the `mailing list `_.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/anes96.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/anes96.rst
deleted file mode 100644
index 0f01b1b..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/anes96.rst
+++ /dev/null
@@ -1,91 +0,0 @@
-American National Election Survey 1996
-======================================
-
-Description
------------
-
-This data is a subset of the American National Election Studies of 1996.
-
-Notes
------
-
-Number of observations - 944
-Numner of variables - 10
-
-Variables name definitions::
-
- popul - Census place population in 1000s
- TVnews - Number of times per week that respondent watches TV news.
- PID - Party identification of respondent.
- 0 - Strong Democrat
- 1 - Weak Democrat
- 2 - Independent-Democrat
- 3 - Independent-Indpendent
- 4 - Independent-Republican
- 5 - Weak Republican
- 6 - Strong Republican
- age : Age of respondent.
- educ - Education level of respondent
- 1 - 1-8 grades
- 2 - Some high school
- 3 - High school graduate
- 4 - Some college
- 5 - College degree
- 6 - Master's degree
- 7 - PhD
- income - Income of household
- 1 - None or less than $2,999
- 2 - $3,000-$4,999
- 3 - $5,000-$6,999
- 4 - $7,000-$8,999
- 5 - $9,000-$9,999
- 6 - $10,000-$10,999
- 7 - $11,000-$11,999
- 8 - $12,000-$12,999
- 9 - $13,000-$13,999
- 10 - $14,000-$14.999
- 11 - $15,000-$16,999
- 12 - $17,000-$19,999
- 13 - $20,000-$21,999
- 14 - $22,000-$24,999
- 15 - $25,000-$29,999
- 16 - $30,000-$34,999
- 17 - $35,000-$39,999
- 18 - $40,000-$44,999
- 19 - $45,000-$49,999
- 20 - $50,000-$59,999
- 21 - $60,000-$74,999
- 22 - $75,000-89,999
- 23 - $90,000-$104,999
- 24 - $105,000 and over
- vote - Expected vote
- 0 - Clinton
- 1 - Dole
- The following 3 variables all take the values:
- 1 - Extremely liberal
- 2 - Liberal
- 3 - Slightly liberal
- 4 - Moderate
- 5 - Slightly conservative
- 6 - Conservative
- 7 - Extremely Conservative
- selfLR - Respondent's self-reported political leanings from "Left"
- to "Right".
- ClinLR - Respondents impression of Bill Clinton's political
- leanings from "Left" to "Right".
- DoleLR - Respondents impression of Bob Dole's political leanings
- from "Left" to "Right".
-
-
-Source
-------
-
-http://www.electionstudies.org/
-
-The American National Election Studies.
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/ccard.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/ccard.rst
deleted file mode 100644
index 1e6725b..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/ccard.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-Bill Greene's credit scoring data.
-==================================
-
-Description
------------
-
-More information on this data can be found on the
-homepage for Greene's `Econometric Analysis`. See source.
-
-
-Notes
------
-
-Number of observations - 72
-Number of variables - 5
-Variable name definitions - See Source for more information on the variables.
-
-
-Source
-------
-
-William Greene's `Econometric Analysis`
-
-More information can be found at the web site of the text:
-http://pages.stern.nyu.edu/~wgreene/Text/econometricanalysis.htm
-
-
-Copyright
----------
-
-Used with express permission of the original author, who
-retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/committee.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/committee.rst
deleted file mode 100644
index f2530f9..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/committee.rst
+++ /dev/null
@@ -1,53 +0,0 @@
-First 100 days of the US House of Representatives 1995
-======================================================
-
-Description
------------
-
-The example in Gill, seeks to explain the number of bill
-assignments in the first 100 days of the US' 104th House of Representatives.
-The response variable is the number of bill assignments in the first 100 days
-over 20 Committees. The explanatory variables in the example are the number of
-assignments in the first 100 days of the 103rd House, the number of members on
-the committee, the number of subcommittees, the log of the number of staff
-assigned to the committee, a dummy variable indicating whether
-the committee is a high prestige committee, and an interaction term between
-the number of subcommittees and the log of the staff size.
-
-The data returned by load are not cleaned to represent the above example.
-
-
-Notes
------
-Number of Observations - 20
-
-Number of Variables - 6
-
-Variable name definitions::
-
- BILLS104 - Number of bill assignments in the first 100 days of the 104th
- House of Representatives.
- SIZE - Number of members on the committee.
- SUBS - Number of subcommittees.
- STAFF - Number of staff members assigned to the committee.
- PRESTIGE - PRESTIGE == 1 is a high prestige committee.
- BILLS103 - Number of bill assignments in the first 100 days of the 103rd
- House of Representatives.
-
-Committee names are included as a variable in the data file though not
-returned by load.
-
-
-Source
-------
-
-Jeff Gill's `Generalized Linear Models: A Unifited Approach`
-
-http://jgill.wustl.edu/research/books.html
-
-
-Copyright
----------
-
-Used with express permission from the original author,
-who retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/copper.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/copper.rst
deleted file mode 100644
index b78fb69..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/copper.rst
+++ /dev/null
@@ -1,47 +0,0 @@
-World Copper Market 1951-1975 Dataset
-=====================================
-
-Description
------------
-
-This data describes the world copper market from 1951 through 1975. In an
-example, in Gill, the outcome variable (of a 2 stage estimation) is the world
-consumption of copper for the 25 years. The explanatory variables are the
-world consumption of copper in 1000 metric tons, the constant dollar adjusted
-price of copper, the price of a substitute, aluminum, an index of real per
-capita income base 1970, an annual measure of manufacturer inventory change,
-and a time trend.
-
-
-Notes
------
-
-Number of Observations - 25
-
-Number of Variables - 6
-
-Variable name definitions::
-
- WORLDCONSUMPTION - World consumption of copper (in 1000 metric tons)
- COPPERPRICE - Constant dollar adjusted price of copper
- INCOMEINDEX - An index of real per capita income (base 1970)
- ALUMPRICE - The price of aluminum
- INVENTORYINDEX - A measure of annual manufacturer inventory trend
- TIME - A time trend
-
-Years are included in the data file though not returned by load.
-
-
-Source
-------
-
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-
-
-Copyright
----------
-
-Used with express permission from the original author,
-who retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/cpunish.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/cpunish.rst
deleted file mode 100644
index 7b12e50..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/cpunish.rst
+++ /dev/null
@@ -1,51 +0,0 @@
-US Capital Punishment dataset.
-==============================
-
-Description
------------
-
-This data describes the number of times capital punishment is implemented
-at the state level for the year 1997. The outcome variable is the number of
-executions. There were executions in 17 states.
-Included in the data are explanatory variables for median per capita income
-in dollars, the percent of the population classified as living in poverty,
-the percent of Black citizens in the population, the rate of violent
-crimes per 100,000 residents for 1996, a dummy variable indicating
-whether the state is in the South, and (an estimate of) the proportion
-of the population with a college degree of some kind.
-
-
-Notes
------
-
-Number of Observations - 17
-
-Number of Variables - 7
-
-Variable name definitions::
-
- EXECUTIONS - Executions in 1996
- INCOME - Median per capita income in 1996 dollars
- PERPOVERTY - Percent of the population classified as living in poverty
- PERBLACK - Percent of black citizens in the population
- VC100k96 - Rate of violent crimes per 100,00 residents for 1996
- SOUTH - SOUTH == 1 indicates a state in the South
- DEGREE - An esimate of the proportion of the state population with a
- college degree of some kind
-
-State names are included in the data file, though not returned by load.
-
-
-Source
-------
-
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-
-
-Copyright
----------
-
-Used with express permission from the original author,
-who retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/grunfeld.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/grunfeld.rst
deleted file mode 100644
index c9ece31..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/grunfeld.rst
+++ /dev/null
@@ -1,45 +0,0 @@
-Grunfeld (1950) Investment Data
-===============================
-
-Description
------------
-
-Grunfeld (1950) Investment Data for 11 U.S. Firms.
-
-Notes
------
-Number of observations - 220 (20 years for 11 firms)
-
-Number of variables - 5
-
-Variables name definitions::
-
- invest - Gross investment in 1947 dollars
- value - Market value as of Dec. 31 in 1947 dollars
- capital - Stock of plant and equipment in 1947 dollars
- firm - General Motors, US Steel, General Electric, Chrysler,
- Atlantic Refining, IBM, Union Oil, Westinghouse, Goodyear,
- Diamond Match, American Steel
- year - 1935 - 1954
-
-Note that raw_data has firm expanded to dummy variables, since it is a
-string categorical variable.
-
-
-Source
-------
-This is the Grunfeld (1950) Investment Data.
-
-The source for the data was the original 11-firm data set from Grunfeld's Ph.D.
-thesis recreated by Kleiber and Zeileis (2008) "The Grunfeld Data at 50".
-The data can be found here.
-http://statmath.wu-wien.ac.at/~zeileis/grunfeld/
-
-For a note on the many versions of the Grunfeld data circulating see:
-http://www.stanford.edu/~clint/bench/grunfeld.htm
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/longley.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/longley.rst
deleted file mode 100644
index 9d51d43..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/longley.rst
+++ /dev/null
@@ -1,46 +0,0 @@
-Longley dataset
-===============
-
-Description
------------
-
-The Longley dataset contains various US macroeconomic
-variables that are known to be highly collinear. It has been used to appraise
-the accuracy of least squares routines.
-
-Notes
------
-
-Number of Observations - 16
-
-Number of Variables - 6
-
-Variable name definitions::
-
- TOTEMP - Total Employment
- GNPDEFL - GNP deflator
- GNP - GNP
- UNEMP - Number of unemployed
- ARMED - Size of armed forces
- POP - Population
- YEAR - Year (1947 - 1962)
-
-
-Source
-------
-
-The classic 1967 Longley Data
-
-http://www.itl.nist.gov/div898/strd/lls/data/Longley.shtml
-
-::
-
- Longley, J.W. (1967) "An Appraisal of Least Squares Programs for the
- Electronic Comptuer from the Point of View of the User." Journal of
- the American Statistical Association. 62.319, 819-41.
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/macrodata.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/macrodata.rst
deleted file mode 100644
index 25a009b..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/macrodata.rst
+++ /dev/null
@@ -1,61 +0,0 @@
-United States Macroeconomic data
-================================
-
-Description
------------
-
-US Macroeconomic Data for 1959Q1 - 2009Q3
-
-Notes
------
-
-Number of Observations - 203
-
-Number of Variables - 14
-
-Variable name definitions::
-
- year - 1959q1 - 2009q3
- quarter - 1-4
- realgdp - Real gross domestic product (Bil. of chained 2005 US$,
- seasonally adjusted annual rate)
- realcons - Real personal consumption expenditures (Bil. of chained 2005
- US$,
- seasonally adjusted annual rate)
- realinv - Real gross private domestic investment (Bil. of chained 2005
- US$, seasonally adjusted annual rate)
- realgovt - Real federal consumption expenditures & gross investment
- (Bil. of chained 2005 US$, seasonally adjusted annual rate)
- realdpi - Real gross private domestic investment (Bil. of chained 2005
- US$, seasonally adjusted annual rate)
- cpi - End of the quarter consumer price index for all urban
- consumers: all items (1982-84 = 100, seasonally adjusted).
- m1 - End of the quarter M1 nominal money stock (Seasonally adjusted)
- tbilrate - Quarterly monthly average of the monthly 3-month treasury bill:
- secondary market rate
- unemp - Seasonally adjusted unemployment rate (%)
- pop - End of the quarter total population: all ages incl. armed
- forces over seas
- infl - Inflation rate (ln(cpi_{t}/cpi_{t-1}) * 400)
- realint - Real interest rate (tbilrate - infl)
-
-
-Source
-------
-
-Compiled by Skipper Seabold. All data are from the Federal Reserve Bank of St.
-Louis [1] except the unemployment rate which was taken from the National
-Bureau of Labor Statistics [2]. ::
-
- [1] Data Source: FRED, Federal Reserve Economic Data, Federal Reserve Bank of
- St. Louis; http://research.stlouisfed.org/fred2/; accessed December 15,
- 2009.
-
- [2] Data Source: Bureau of Labor Statistics, U.S. Department of Labor;
- http://www.bls.gov/data/; accessed December 15, 2009.
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/randhie.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/randhie.rst
deleted file mode 100644
index 0362fe8..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/randhie.rst
+++ /dev/null
@@ -1,52 +0,0 @@
-RAND Health Insurance Experiment Data
-=====================================
-
-Description
------------
-
-
-
-Notes
------
-
-Number of observations - 20,190
-Number of variables - 10
-Variable name definitions::
-
- mdvis - Number of outpatient visits to an MD
- lncoins - ln(coinsurance + 1), 0 <= coninsurance <= 100
- idp - 1 if individual deductible plan, 0 otherwise
- lpi - ln(max(1, annual participation incentive payment))
- fmde - 0 if idp = 1; ln(max(1, MDE/(0.01 coinsurance))) otherwise
- physlm - 1 if the person has a physical limitation
- disea - number of chronic diseases
- hlthg - 1 if self-rated health is good
- hlthf - 1 if self-rated health is fair
- hlthp - 1 if self-rated health is poor
- (Omitted category is excellent self-rated health)
-
-
-Source
-------
-
-The data was collected by the RAND corporation as part of the Health
-Insurance Experiment (HIE).
-
-http://www.rand.org/health/projects/hie/
-
-This data was used in::
-
- Cameron, A.C. amd Trivedi, P.K. 2005. `Microeconometrics: Methods
- and Applications,` Cambridge: New York.
-
-And was obtained from:
-
-See randhie/src for the original data and description. The data included
-here contains only a subset of the original data. The data varies slightly
-compared to that reported in Cameron and Trivedi.
-
-
-Copyright
----------
-
-This is in the public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/scotland.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/scotland.rst
deleted file mode 100644
index 76846a8..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/scotland.rst
+++ /dev/null
@@ -1,58 +0,0 @@
-Taxation Powers Vote for the Scottish Parliamant 1997
-=====================================================
-
-Description
------------
-
-
-This data is based on the example in Gill and describes the proportion of
-voters who voted Yes to grant the Scottish Parliament taxation powers.
-The data are divided into 32 council districts. This example's explanatory
-variables include the amount of council tax collected in pounds sterling as
-of April 1997 per two adults before adjustments, the female percentage of
-total claims for unemployment benefits as of January, 1998, the standardized
-mortality rate (UK is 100), the percentage of labor force participation,
-regional GDP, the percentage of children aged 5 to 15, and an interaction term
-between female unemployment and the council tax.
-
-The original source files and variable information are included in
-/scotland/src/
-
-
-Notes
------
-
-Number of Observations - 32 (1 for each Scottish district)
-
-Number of Variables - 8
-
-Variable name definitions::
-
- YES - Proportion voting yes to granting taxation powers to the Scottish
- parliament.
- COUTAX - Amount of council tax collected in pounds steling as of April '97
- UNEMPF - Female percentage of total unemployment benefits claims as of
- January 1998
- MOR - The standardized mortality rate (UK is 100)
- ACT - Labor force participation (Short for active)
- GDP - GDP per county
- AGE - Percentage of children aged 5 to 15 in the county
- COUTAX_FEMALEUNEMP - Interaction between COUTAX and UNEMPF
-
-Council district names are included in the data file, though are not returned
-by load.
-
-
-Source
-------
-
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-
-
-Copyright
----------
-
-Used with express permission from the original author,
-who retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/spector.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/spector.rst
deleted file mode 100644
index 7982f39..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/spector.rst
+++ /dev/null
@@ -1,39 +0,0 @@
-Spector and Mazzeo (1980) - Program Effectiveness Data
-======================================================
-
-Description
------------
-
-Experimental data on the effectiveness of the personalized
-system of instruction (PSI) program
-
-Notes
------
-
-Number of Observations - 32
-
-Number of Variables - 4
-
-Variable name definitions::
-
- Grade - binary variable indicating whether or not a student's grade
- improved. 1 indicates an improvement.
- TUCE - Test score on economics test
- PSI - participation in program
- GPA - Student's grade point average
-
-
-Source
-------
-
-http://pages.stern.nyu.edu/~wgreene/Text/econometricanalysis.htm
-
-The raw data was downloaded from Bill Greene's Econometric Analysis web site,
-though permission was obtained from the original researcher, Dr. Lee Spector,
-Professor of Economics, Ball State University.
-
-Copyright
----------
-
-Used with express permission of the original author, who
-retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/stackloss.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/stackloss.rst
deleted file mode 100644
index ef43ab9..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/stackloss.rst
+++ /dev/null
@@ -1,37 +0,0 @@
-Stack loss data
-===============
-
-Description
------------
-
-The stack loss plant data of Brownlee (1965) contains
-21 days of measurements from a plant's oxidation of ammonia to nitric acid.
-The nitric oxide pollutants are captured in an absorption tower.
-
-Notes
------
-
-Number of Observations - 21
-
-Number of Variables - 4
-
-Variable name definitions::
-
- STACKLOSS - 10 times the percentage of ammonia going into the plant that
- escapes from the absoroption column
- AIRFLOW - Rate of operation of the plant
- WATERTEMP - Cooling water temperature in the absorption tower
- ACIDCONC - Acid concentration of circulating acid minus 50 times 10.
-
-
-Source
-------
-
-Brownlee, K. A. (1965), "Statistical Theory and Methodology in
-Science and Engineering", 2nd edition, New York:Wiley.
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/star98.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/star98.rst
deleted file mode 100644
index 383b7ef..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/star98.rst
+++ /dev/null
@@ -1,71 +0,0 @@
-Star98 Educational Dataset
-==========================
-
-Description
------------
-
-
-This data is on the California education policy and outcomes (STAR program
-results for 1998. The data measured standardized testing by the California
-Department of Education that required evaluation of 2nd - 11th grade students
-by the the Stanford 9 test on a variety of subjects. This dataset is at
-the level of the unified school district and consists of 303 cases. The
-binary response variable represents the number of 9th graders scoring
-over the national median value on the mathematics exam.
-
-The data used in this example is only a subset of the original source.
-
-
-Notes
------
-
-Number of Observations - 303 (counties in California).
-
-Number of Variables - 13 and 8 interaction terms.
-
-Definition of variables names::
-
- NABOVE - Total number of students above the national median for the math
- section.
- NBELOW - Total number of students below the national median for the math
- section.
- LOWINC - Percentage of low income students
- PERASIAN - Percentage of Asian student
- PERBLACK - Percentage of black students
- PERHISP - Percentage of Hispanic students
- PERMINTE - Percentage of minority teachers
- AVYRSEXP - Sum of teachers' years in educational service divided by the
- number of teachers.
- AVSALK - Total salary budget including benefits divided by the number of
- full-time teachers (in thousands)
- PERSPENK - Per-pupil spending (in thousands)
- PTRATIO - Pupil-teacher ratio.
- PCTAF - Percentage of students taking UC/CSU prep courses
- PCTCHRT - Percentage of charter schools
- PCTYRRND - Percentage of year-round schools
-
- The below variables are interaction terms of the variables defined above.
-
- PERMINTE_AVYRSEXP
- PEMINTE_AVSAL
- AVYRSEXP_AVSAL
- PERSPEN_PTRATIO
- PERSPEN_PCTAF
- PTRATIO_PCTAF
- PERMINTE_AVTRSEXP_AVSAL
- PERSPEN_PTRATIO_PCTAF
-
-
-Source
-------
-
-Jeff Gill's `Generalized Linear Models: A Unified Approach`
-
-http://jgill.wustl.edu/research/books.html
-
-
-Copyright
----------
-
-Used with express permission from the original author,
-who retains all rights.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/strikes.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/strikes.rst
deleted file mode 100644
index 5d17411..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/strikes.rst
+++ /dev/null
@@ -1,40 +0,0 @@
-U.S. Strike Duration Data
-=========================
-
-Description
------------
-
-Contains data on the length of strikes in US manufacturing and
-unanticipated industrial production. The data is a subset of the data originally
-used by Kennan. The data here is data for the months of June only to avoid
-seasonal issues.
-
-Notes
------
-
-Number of observations - 62
-
-Number of variables - 2
-
-Variable name definitions::
-
- duration - duration of the strike in days
- iprod - unanticipated industrial production
-
-
-Source
-------
-
-This is a subset of the data used in Kennan (1985). It was originally
-published by the Bureau of Labor Statistics.
-
-::
-
- Kennan, J. 1985. "The duration of contract strikes in US manufacturing.
- `Journal of Econometrics` 28.1, 5-28.
-
-
-Copyright
----------
-
-This is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/sunspots.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/generated/sunspots.rst
deleted file mode 100644
index e16042b..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/generated/sunspots.rst
+++ /dev/null
@@ -1,34 +0,0 @@
-Yearly sunspots data 1700-2008
-==============================
-
-Description
------------
-
-Yearly (1700-2008) data on sunspots from the National
-Geophysical Data Center.
-
-Notes
------
-
-Number of Observations - 309 (Annual 1700 - 2008)
-Number of Variables - 1
-Variable name definitions::
-
- SUNACTIVITY - Number of sunspots for each year
-
-The data file contains a 'YEAR' variable that is not returned by load.
-
-
-Source
-------
-
-http://www.ngdc.noaa.gov/stp/SOLAR/ftpsunspotnumber.html
-
-The original dataset contains monthly data on sunspot activity in the file
-./src/sunspots_yearly.dat. There is also sunspots_monthly.dat.
-
-
-Copyright
----------
-
-This data is public domain.
diff --git a/statsmodels/scikits/statsmodels/docs/source/datasets/index.rst b/statsmodels/scikits/statsmodels/docs/source/datasets/index.rst
deleted file mode 100644
index 558acb7..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/datasets/index.rst
+++ /dev/null
@@ -1,105 +0,0 @@
-.. _datasets:
-
-.. ipython:: python
- :suppress:
-
- import numpy as np
- np.set_printoptions(suppress=True)
-
-The Datasets Package
-====================
-
-Original Proposal
-~~~~~~~~~~~~~~~~~
-
-The idea for a datasets package was originally proposed by David Cournapeau and
-can be found :ref:`here ` with updates by me (Skipper
-Seabold).
-
-Available Datasets
-~~~~~~~~~~~~~~~~~~
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- generated/*
-
-Main Usage
-~~~~~~~~~~
-
-To load a dataset do the following
-
-.. ipython:: python
-
- import scikits.statsmodels.api as sm
- data = sm.datasets.longley.load()
-
-The `Dataset` object follows the bunch pattern as explain in the
-:ref:`proposal `.
-
-Most datasets have two attributes of particular interest to users for examples
-
-.. ipython:: python
-
- data.endog
- data.exog
-
-Univariate datasets, however, do not have an `exog` attribute. You can find
-out the variable names by doing
-
-.. ipython:: python
-
- data.endog_name
- data.exog_name
-
-If the dataset does not have a clear interpretation of what should be an
-`endog` and `exog`, then you can always access the `data` or `raw_data`
-attributes. This is the case for the `macrodata` dataset, which is a collection
-of US macroeconomic data rather than a dataset with a specific example in mind.
-The `data` attribute contains a record array of the full dataset and the
-`raw_data` attribute contains an ndarray with the names of the columns given
-by the `names` attribute.
-
-.. ipython:: python
-
- type(data.data)
- type(data.raw_data)
- data.names
-
-Loading data as pandas objects
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-For many users it may be preferable to get the datasets as a pandas DataFrame or
-Series object. Each of the dataset modules is equipped with a ``load_pandas``
-method which returns a ``Dataset`` instance with the data as pandas objects:
-
-.. ipython:: python
-
- data = sm.datasets.longley.load_pandas()
- data.exog
- data.endog
-
-With pandas integration in the estimation classes, the metadata will be attached
-to model results:
-
-.. ipython:: python
-
- y, x = data.endog, data.exog
- res = sm.OLS(y, x).fit()
- res.params
- res.summary()
-
-Extra Information
-~~~~~~~~~~~~~~~~~
-
-If you want to know more about the dataset itself, you can access the
-following, again using the Longley dataset as an example ::
-
- >>> dir(sm.datasets.longley)[:6]
- ['COPYRIGHT', 'DESCRLONG', 'DESCRSHORT', 'NOTE', 'SOURCE', 'TITLE']
-
-How to Add a Dataset
-~~~~~~~~~~~~~~~~~~~~
-
-See the :ref:`notes on adding a dataset `.
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/dataset_notes.rst b/statsmodels/scikits/statsmodels/docs/source/dev/dataset_notes.rst
deleted file mode 100644
index 61db3b0..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/dataset_notes.rst
+++ /dev/null
@@ -1,64 +0,0 @@
-.. _add_data:
-
-Datasets
-~~~~~~~~
-
-For details about the datasets, please see the :ref:`datasets page `.
-
-Adding a dataset
-================
-
-First, if the data is not in the public domain or listed with a BSD-compatible
-license, we must obtain permission from the original author.
-
-To take an example, I will use the Nile River data that measures the volume of
-the discharge of the Nile River at Aswan for the years 1871 to 1970. The data
-are copied from the paper of Cobb (1978).
-
-Create a directory `datasets/nile/`. Add `datasets/nile/nile.csv` and
-`datasets/__init__.py` that contains ::
-
- from data import *
-
-If the data will be cleaned before it is in the form included in the datasets
-package then create a `nile/src` directory and include the original raw data
-there. In this case, it's not necessary.
-
-Next, copy the template_data.py to nile and rename it data.py. Edit the data.py
-as follows. Fill in the strings for COPYRIGHT, TITLE, SOURCE, DESCRSHORT,
-DESCLONG, and NOTE. ::
-
- COPYRIGHT = """This is public domain."""
- TITLE = """Nile River Data"""
- SOURCE = """
- Cobb, G.W. 1978. The Problem of the Nile: Conditional Solution to a Changepoint
- Problem. Biometrika. 65.2, 243-251,
- """
-
- DESCRSHORT = """Annual Nile River Volume at Aswan, 1871-1970""
-
- DESCRLONG = """AAnnual Nile River Volume at Aswan, 1871-1970. The units of
- measurement are 1e9 m^{3}, and there is an apparent changepoint near 1898."""
-
- NOTE = """
- Number of observations: 100
- Number of variables: 2
- Variable name definitions:
- year - Year of observation
- volume - Nile River volume at Aswan
-
- The data were originally used in Cobb (1987, See SOURCE). The author
- acknowledges that the data were originally compiled from various sources by
- Dr. Barbara Bell, Center for Astrophysics, Cambridge, Massachusetts. The data
- set is also used as an example in many textbooks and software packages.
- """
-
-Next we edit the `load` function. You only need to edit the docstring to
-specify which dataset will be loaded. You should also edit the path and the
-indices for the `endog` and `exog` attributes. In this case, there is no
-`exog`, so everything referencing `exog` is not used. The `year` variable is
-also not used.
-
-Lastly, edit the datasets/__init__.py to import the directory.
-
-That's it!
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/git_notes.rst b/statsmodels/scikits/statsmodels/docs/source/dev/git_notes.rst
deleted file mode 100644
index a6839cd..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/git_notes.rst
+++ /dev/null
@@ -1,245 +0,0 @@
-Working with the Statsmodels Code
----------------------------------
-
-Github
-======
-Statsmodels code base is hosted on `Github `_. To
-contribute you will need to `sign up for a Github account `_.
-
-Version Control and Git
-=======================
-We use `Git `_ for development. Version control systems such as git allow many
-people to work together on the same project. In a nutshell, it allows you to make changes to the
-code independent of others who may also be working on the code and allows you to easily contribute
-your changes to the codebase. It also keeps a complete history of all changes to the code, so you can
-easily undo changes or see when a change was made, by whom, and why.
-
-There are already a lot of great resources for learning to use git in addition to the comprehensive
-`github help pages `__. Two of the best are `NumPy's documentation `__ and
-Matthew Brett's `Pydagogue `__. The below is the bare minimum taken from these resources and applied to working with statsmodels.
-You would do well to have a look at these other resources for more information.
-
-Getting Started with Git
-~~~~~~~~~~~~~~~~~~~~~~~~
-Instructions for installing git, setting up your SSH key, and configuring git can be found here:
-
- * `Linux users `__.
- * `Windows users `__.
- * `Mac users `__.
-
-Forking
-~~~~~~~
-After setting up git, you will need your own fork to work on the code. Go to the `statsmodels project page `__ and hit the fork button. Then you should be taken
-to your fork's page. You will want to clone your fork to your machine: ::
-
- git clone git@github.com:your-user-name/statsmodels.git statsmodels-yourname
- cd statsmodels-yourname
- git remote add upstream git://github.com/statsmodels/statsmodels.git
-
-The first line will create a directory, `statsmodels-yourname`, but you can name it whatever you want.
-The last line connects your repository to the upstream statsmodels repository. The name `upstream` is
-arbitrary here. Notice that you use git:// instead of git@. You want to connect to the read-only
-URL. You can use this periodically to update your local code with changes in the upstream.
-
-Create a Branch
-~~~~~~~~~~~~~~~
-Now you are ready to make some changes to the code. You will want to do this in a feature branch. You
-want your master branch to remain clean. You always want it to reflect production-ready code. So you
-will want to make changes in features branches. For example::
-
- git branch shiny-new-feature
- git checkout shiny-new-feature
-
-Doing::
-
- git branch
-
-will give something like::
-
- * shiny-new-feature
- master
-
-to indicate that you are now on the `shiny-new-feature` branch.
-
-Making changes
-~~~~~~~~~~~~~~
-
-Hack away. Make any changes that you want. Well, not any changes. Keep the work in your branch
-completel confined to one speficic topic, bugfix, or feature implementation. You can work across
-multiple files and have many commits, but the changes should all be related to the feature of the
-feature branch, whatever that may be. Now you've made your changes. Say you've changed the file
-`foo.py`. You can see your changes typing::
-
- git status
-
-This will give something like::
-
- # On branch shiny-new-feature
- # Changes not staged for commit:
- # (use "git add ..." to update what will be committed)
- # (use "git checkout -- ..." to discard changes in working directory)
- #
- # modified: relative/path/to/foo.py
- #
- no changes added to commit (use "git add" and/or "git commit -a")
-
-Before you can commit these changes, you have to `add`, or `stage`, the changes. You can do this by
-typing::
-
- git add path/to/foo.py
-
-Then check the status to make sure your commit looks okay::
-
- git status
-
-should give something like::
-
- # On branch shiny-new-feature
- # Changes to be committed:
- # (use "git reset HEAD ..." to unstage)
- #
- # modified: /relative/path/to/foo.py
- #
-
-Pushing your changes
-~~~~~~~~~~~~~~~~~~~~
-
-At any time you can push your feature branch (and any changes) to your repository by::
-
- git push origin shiny-new-feature
-
-Here `origin` is the default name given to your remote repository. You can see the remote repositories
-by::
-
- git remote -v
-
-If you added the upstream repository as described above you will see something like::
-
- origin git@github.com:yourname/statsmodels.git (fetch)
- origin git@github.com:yourname/statsmodels.git (push)
- upstream git://github.com/statsmodels/statsmodels.git (fetch)
- upstream git://github.com/statsmodels/statsmodels.git (push)
-
-Before you push any commits, however, it is *highly* recommended that you make sure what you are
-pushing makes sense and looks clean. You can review your change history by::
-
- git log --oneline --graph
-
-It pays to take care of things locally before you push them to github. So when in doubt, don't push.
-Also see the advice on keeping your history clean in :ref:`merge-vs-rebase`.
-
-.. _pull-requests:
-
-Pull Requests
-~~~~~~~~~~~~~
-When you are ready to ask for a code review, we recommend that you file a pull request. Before you
-do so you should check your changeset yourself. You can do this by using
-`compare view `__ on github.
-
-#. Navigate to your repository on github.
-#. Click on `Branch List`
-#. Click on the `Compare` button for your feature branch, `shiny-new-feature`.
-#. Select the `base` and `compare` branches, if necessary. This will be `master` and
- `shiny-new-feature`, respectively.
-#. From here you will see a nice overview of your changes. If anything is amiss, you can fix it.
-
-If everything looks good you are read to make a `pull request `__.
-
-#. Navigate to your repository on github.
-#. Click on the `Pull Request` button.
-#. You can then click on `Commits` and `Files Changed` to make sure everything looks okay one last time.
-#. Write a description of your changes in the `Preview Discussion` tab.
-#. Click `Send Pull Request`.
-
-Your request will then be reviewed. If you need to go back and make more changes, you can make them
-in your branch and push them to github and the pull request will be automatically updated.
-
-One last thing to note. If there has been a lot of work in upstream/master since you started your
-patch, you might want to rebase. However, you can probably get away with not rebasing if these changes
-are unrelated to the work you have done in the `shiny-new-feature` branch. If you can avoid it, then
-don't rebase. If you have to, try to do it once and when you are at the end of your changes. Read on
-for some notes on :ref:`merge-vs-rebase`.
-
-Advanced Topics
-~~~~~~~~~~~~~~~
-
-.. _merge-vs-rebase:
-
-Merging vs. Rebasing
-^^^^^^^^^^^^^^^^^^^^
-Again, this is a topic that has been discussed at great length and with considerable more expertise
-than I can offer. This section will provide some resources for further reading and some advice. The
-focus, though, will be for those who wish to submit pull requests for a feature branch. For these
-cases rebase should be preferred.
-
-A rebase replays commits from one branch on top of another branch to preserve a linear history. Recall
-that your commits were tested against a (possibly) older version of master from which you started
-your branch, so if you rebase, you could introduce bugs. However, if you have only a few
-commits, this might not be such a concern. One great place to start learning about rebase is
-:ref:`rebasing without tears `.
-In particular, `heed the warnings `__. Namely, **always make a new branch before doing a rebase**. This is good general advice for
-working with git. I would also add **never use rebase on work that has already been published**. If
-another developer is using your work, don't rebase!!
-
-As for merging, **never merge from trunk into your feature branch**. You will, however, want to check
-that your work will merge cleanly into trunk. This will help out the reviewers. You can do this
-in your local repository by merging your work into your master (or any branch that tracks remote
-master) and :ref:`run-tests`.
-
-Deleting Branches
-^^^^^^^^^^^^^^^^^
-
-Once your feature branch is accepted into upstream, you might want to get rid of it. First you'll want
-to merge upstream master into your branch. That way git will know that it can safely delete your
-branch::
-
- git fetch upstream
- git checkout master
- git merge upstream/master
-
-Then you can just do::
-
- git -d shiny-new-feature
-
-Make sure you use a lower-case -d. That way, git will complain if your feature branch has not actually
-been merged. The branch will still exist on github however. To delete the branch on github, do::
-
- git push origin :shiny-new-feature branch
-
-.. Squashing with Rebase
-.. ^^^^^^^^^^^^^^^^^^^^^
-
-.. You've made a bunch of incremental commits, but you think they might be better off together as one
-.. commit. You can do this with an interactive rebase. As usual, **only do this when you have local
-.. commits. Do not edit the history of changes that have been pushed.**
-
-.. see this reference http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
-
-
-Git for Bzr Users
-~~~~~~~~~~~~~~~~~
-
-::
-
- git pull != bzr pull
-
-::
-
- git pull = git fetch + git merge
-
-Of course, you could::
-
- git pull --rebase = git fetch + git rebase
-
-::
-
- git merge != bzr merge
- git merge == bzr merge + bzr commit
- git merge --no-commit == bzr merge
-
-Git Cheat Sheet
-~~~~~~~~~~~~~~~
-
-.. todo::
-
- Fill in as needed.
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/images/git_merge.png b/statsmodels/scikits/statsmodels/docs/source/dev/images/git_merge.png
deleted file mode 100644
index 5ad3cc3..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/dev/images/git_merge.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/index.rst b/statsmodels/scikits/statsmodels/docs/source/dev/index.rst
deleted file mode 100644
index d545189..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/index.rst
+++ /dev/null
@@ -1,34 +0,0 @@
-Developer Page
---------------
-
-If you want to contribute to the development of `statsmodels` by offering a patch, contributing a
-new statistical test, or developing a new model, you can find out how to do so on this page.
-
-Submitting a Patch
-~~~~~~~~~~~~~~~~~~~
-
-So you want to submit a patch to `statsmodels` and want to know what to do. Great news. Here are the
-steps you need to take.
-
-#. Set up your local development environment. Read up on `working with git `__. In particular, have a look at the section on :ref:`pull-requests`, as this is how you should get your code to us.
-#. Make sure your patch includes a test! See the notes on :ref:`testing`.
-#. Submit your pull request. We will review the pull request and then merge into our upstream repository.
-
-Discussing Development
-~~~~~~~~~~~~~~~~~~~~~~
-
-Our development conversations take place on the `statsmodels mailing list `__.
-
-Contents
-~~~~~~~~
-
-.. toctree::
- :maxdepth: 3
-
- package_overview
- git_notes
- maintainer_notes
- test_notes
- naming_conventions
- dataset_notes
- roadmap_todo
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/internal.rst b/statsmodels/scikits/statsmodels/docs/source/dev/internal.rst
deleted file mode 100644
index ea6c3aa..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/internal.rst
+++ /dev/null
@@ -1,40 +0,0 @@
-.. _model:
-
-
-
-Internal Classes
-================
-
-Introduction
-------------
-
-The following summarizes classes and functions that are not intended to be
-directly used, but of interest only for internal use or for a developer who
-wants to extend on existing model classes.
-
-
-Module Reference
-----------------
-
-Model and Results Classes
-^^^^^^^^^^^^^^^^^^^^^^^^^
-
-These are the base classes for both the estimation models and the results.
-They are not directly useful, but layout the structure of the subclasses and
-define some common methods.
-
-.. currentmodule:: scikits.statsmodels.base.model
-
-.. autosummary::
- :toctree: generated/
-
- Model
- LikelihoodModel
- GenericLikelihoodModel
- Results
- LikelihoodModelResults
- ResultMixin
- GenericLikelihoodModelResults
-
-.. inheritance-diagram:: scikits.statsmodels.base.model scikits.statsmodels.discrete.discrete_model scikits.statsmodels.regression.linear_model scikits.statsmodels.miscmodels.count
- :parts: 3
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/maintainer_notes.rst b/statsmodels/scikits/statsmodels/docs/source/dev/maintainer_notes.rst
deleted file mode 100644
index b04ea12..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/maintainer_notes.rst
+++ /dev/null
@@ -1,176 +0,0 @@
-Maintainer Notes
-================
-
-This is for those with read-write access to upstream. It is recommended to name the upstream
-remote something to remind you that it is read-write::
-
- git remote add upstream-rw git@github.com:statsmodels/statsmodels.git
- git fetch upstream-rw
-
-Git Workflow
-------------
-
-Grabbing Changes from Others
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-If you need to push changes from others, you can link to their repository by doing::
-
- git remote add contrib-name git://github.com/contrib-name/statsmodels.git
- get fetch contrib-name
- git branch shiny-new-feature --track contrib-name/shiny-new-feature
- git checkout shiny-new-feature
-
-The rest of the below assumes you are on your or someone else's branch with the changes you
-want to push upstream.
-
-.. _rebasing:
-
-Rebasing
-~~~~~~~~
-
-If there are only a few commits, you can rebase to keep a linear history::
-
- git fetch upstream-rw
- git rebase upstream-rw/master
-
-Rebasing will not automatically close the pull request however, if there is one,
-so don't forget to do this.
-
-.. _merging:
-
-Merging
-~~~~~~~
-
-If there is a long series of related commits, then you'll want to merge. You may ask yourself,
-:ref:`ff-no-ff`? See below for more on this choice. Once decided you can do::
-
- git fetch upstream-rw
- git merge --no-ff upstream-rw/master
-
-Merging will automaticall close the pull request on github.
-
-Check the History
-~~~~~~~~~~~~~~~~~
-
-This is very important. Again, any and all fixes should be made locally before pushing to the
-repository::
-
- git log --oneline --graph
-
-This shows the history in a compact way of the current branch. This::
-
- git log -p upstream-rw/master..
-
-shows the log of commits excluding those that can be reached from upstream-rw/master, and
-including those that can be reached from current HEAD. That is, those changes unique to this
-branch versus upstream-rw/master. See :ref:`Pydagogue ` for more on using
-dots with log and also for using :ref:`dots with diff `.
-
-Push Your Feature Branch
-~~~~~~~~~~~~~~~~~~~~~~~~
-
-All the changes look good? You can push your feature branch after :ref:`merging` or :ref:`rebasing` by::
-
- git push upstream-rw shiny-new-feature:master
-
-Cherry-Picking
-~~~~~~~~~~~~~~
-
-Say you are interested in some commit in another branch, but want to leave the other ones for now.
-You can do this with a cherry-pick. Use `git log --oneline` to find the commit that you want to
-cherry-pick. Say you want commit `dd9ff35` from the `shiny-new-feature` branch. You want to apply
-this commit to master. You simply do::
-
- git checkout master
- git cherry-pick dd9ff35
-
-And that's all. This commit is now applied as a new commit in master.
-
-.. _ff-no-ff:
-
-Merging: To Fast-Forward or Not To Fast-Forward
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-By default, `git merge` is a fast-forward merge. What does this mean, and when do you want to avoid
-this?
-
-.. figure:: images/git_merge.png
- :alt: git merge diagram
- :scale: 100%
- :align: center
-
- (source `nvie.com `__, post `"A successful Git branching model" `__)
-
-The fast-forward merge does not create a merge commit. This means that the existence of the feature
-branch is lost in the history. The fast-forward is the default for Git basically because branches are
-cheap and, therefore, *usually* short-lived. If on the other hand, you have a long-lived feature
-branch or are following an iterative workflow on the feature branch (i.e. merge into master, then
-go back to feature branch and add more commits), then it makes sense to include only the merge
-in the main branch, rather than all the intermediate commits of the feature branch, so you should
-use::
-
- git merge --no-ff
-
-Handling Pull Requests
-~~~~~~~~~~~~~~~~~~~~~~
-
-You can apply a pull request through `fetch `__ and `merge `__. In your local
-copy of the main repo::
-
- git checkout master
- git remote add contrib-name git://github.com/contrib-name/statsmodels.git
- git fetch contrib-name
- git merge contrib-name/shiny-new-feature
-
-Check that the merge applies cleanly and the history looks good. Edit the merge message. Add a short
-explanation of what the branch did along with a 'Closes gh-XXX.' string. This will auto-close the pull
-request and link the ticket and closing commit. To automatically close the issue, you can use any of::
-
- gh-XXX
- GH-XXX
- #XXX
-
-in the commit message. Any and all problems need to be taken care of locally before doing::
-
- git push origin master
-
-Releasing
----------
-
-#. Fix the version number. Open setup.py and set::
-
- ISRELEASED = True
-
-#. Clean the working tree with::
-
- git clean -xdf
-
- But you might want to do a dry-run first::
-
- git clean -xdfn
-
-#. Tag the release. For a release candidate, for example::
-
- git tag -a v0.3.0rc1 -m "Version 0.3.0 Release Candidate 1" 7b2fb29
-
-#. Upload the source distribution to PyPI::
-
- python setup.py sdist --formats=gztar,zip register upload
-
-#. Make an announcment
-
-#. Profit
-
-
-Commit Comments
----------------
-Prefix commit messages in the master branch of the main shared repository with the following::
-
- ENH: Feature implementation
- BUG: Bug fix
- STY: Coding style changes (indenting, braces, code cleanup)
- DOC: Sphinx documentation, docstring, or comment changes
- CMP: Compiled code issues, regenerating C code with Cython, etc.
- REL: Release related commit
- TST: Change to a test, adding a test. Only used if not directly related to a bug.
- REF: Refactoring changes
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/naming_conventions.rst b/statsmodels/scikits/statsmodels/docs/source/dev/naming_conventions.rst
deleted file mode 100644
index 176765a..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/naming_conventions.rst
+++ /dev/null
@@ -1,60 +0,0 @@
-Naming Conventions
-------------------
-
-File and Directory Names
-~~~~~~~~~~~~~~~~~~~~~~~~
-Our directory tree stripped down looks something like::
-
- statsmodels/
- __init__.py
- api.py
- discrete/
- __init__.py
- discrete_model.py
- tests/
- results/
- tsa/
- __init__.py
- api.py
- tsatools.py
- stattools.py
- arima_model.py
- arima_process.py
- vector_ar/
- __init__.py
- var_model.py
- tests/
- results/
- tests/
- results/
- stats/
- __init__.py
- api.py
- stattools.py
- tests/
- tools/
- __init__.py
- tools.py
- decorators.py
- tests/
-
-The submodules are arranged by topic, `discrete` for discrete choice models, or `tsa` for time series
-analysis. The submodules that can be import heavy contain an empty __init__.py, except for some testing
-code for running tests for the submodules. The namespace to be imported in in `api.py`. That way, we
-can import selectively and not have to import a lot of code that we don't need. Helper functions are
-usually put in files named `tools.py` and statistical functions, such as statistical tests are placed
-in `stattools.py`. Everything has directores for :ref:`tests `.
-
-Variable Names
-~~~~~~~~~~~~~~
-All of our models assume that data is arranged with variables in columns. Thus, internally the data
-is all 2d arrays. By convention, we will prepend a `k_` to variable names that indicate moving over
-axis 1 (columns), and `n_` to variables that indicate moving over axis 0 (rows). The main exception to
-the underscore is that `nobs` should indicate the number of observations. For example, in the
-time-series ARMA model we have::
-
- k_ar - The number of AR lags included in the RHS variables
- k_ma - The number of MA lags included in the RHS variables
- k_trend - The number of trend variables included in the RHS variables
- k_exog - The number of exogenous variables included in the RHS variables exluding the trend terms
- n_totobs - The total number of observations for the LHS variables including the pre-sample values
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/package_overview.rst b/statsmodels/scikits/statsmodels/docs/source/dev/package_overview.rst
deleted file mode 100644
index bb0e308..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/package_overview.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-Package Overview
-================
-
-Mission Statement
-~~~~~~~~~~~~~~~~~
-Statsmodels is a Python package for statistical modelling that is released under
-the `simplified BSD license `_.
-
-Design
-~~~~~~
-.. TODO perhaps a flow chart would be the best presentation here?
-
-For the most part, statsmodels is an object-oriented library of statistical
-models. Our working definition of a statistical model is an object that has
-both endogenous and exogenous data defined as well as a statistical
-relationship. In place of endogenous and exogenous one can often substitute
-the terms left hand side (LHS) and right hand side (RHS), dependent and
-independent variables, regressand and regressors, outcome and design, response
-variable and explanatory variable, respectively. The usage is quite often
-domain specific; however, we have chosen to use `endog` and `exog` almost
-exclusively, since the principal developers of statsmodels have a background
-in econometrics, and this feels most natural. This means that all of the
-models are objects with `endog` and `exog` defined, though in some cases
-`exog` is None for convenience (for instance, with an autoregressive process).
-Each object also defines a `fit` (or similar) method that returns a
-model-specific results object. In addition there are some functions, e.g. for
-statistical tests or convenience functions.
-
-Code Organization
-~~~~~~~~~~~~~~~~~
-
-See the :ref:`Internal Class Guide `.
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/roadmap_todo.rst b/statsmodels/scikits/statsmodels/docs/source/dev/roadmap_todo.rst
deleted file mode 100644
index 4f0685c..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/roadmap_todo.rst
+++ /dev/null
@@ -1,62 +0,0 @@
-Roadmap to 0.4
-==============
-
-Pandas Integration and Improvements
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-* Make models able to take pandas DataFrame (or Panel for panelmod).
- * Started in pandas-integration branch
-* Plotting integration of pandas data structures with matplotlib/scikits.timeseries.lib.plotlib
-
- * Merge with/fork from scikits.timeseries?
-
-* Refactoring of pandas.Panel structures. Find common underlying structure
- for Long and Wide.
-
-Formula Framework
-^^^^^^^^^^^^^^^^^
-
-Existing Discussions:
-
-* `R-like formulas - 2-10-2010 `__
-* `The Return of Formula (?) - 5-16-2010 `__
-* `The Return of Formula: The Revenge: The Novel - 6-4-2010 `__
-
-Existing Implementations:
-
-* `Jonathan Taylor's Formula `__
- * `Forked to statsmodels repository `__
-* `Nathaniel Smith's Charlton `__
-
-Open questions:
-
-* What level of integrations with data structures is desirable?
-* User API spec.
-
-Core Development
-^^^^^^^^^^^^^^^^
-
-* Refactoring models structure. Make sure `__ DRY` is respected.http://en.wikipedia.org/wiki/Don%27t_repeat_yourself
-
-Statistics
-^^^^^^^^^^
-
-* Bootstrapping, Jackknifing, Re-sampling framework.
-
-Sandbox
-^^^^^^^
-
-We currently have a large amount code in the sandbox. The medium term goal
-is to move much of this to feature branches as it gets worked on and remove
-the sandbox folder. Many of these models and functions are close to done,
-however, and we welcome any and all contributions to complete them, including
-refactoring, documentation, and tests.
-
-.. toctree::
- :maxdepth: 4
-
- ../sandbox
-
-.. _todo:
-
- Fill in upcoming goals.
diff --git a/statsmodels/scikits/statsmodels/docs/source/dev/test_notes.rst b/statsmodels/scikits/statsmodels/docs/source/dev/test_notes.rst
deleted file mode 100644
index fb6d168..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/dev/test_notes.rst
+++ /dev/null
@@ -1,114 +0,0 @@
-.. _testing:
-
-Testing
-=======
-
-Test Driven Development
-~~~~~~~~~~~~~~~~~~~~~~~
-We strive to follow a `Test Driven Development (TDD) `_ pattern.
-All models or statistical functions that are added to the main code base are to have
-tests versus an existing statistical package, if possible.
-
-Introduction to Nose
-~~~~~~~~~~~~~~~~~~~~
-Like many packages, statsmodels uses the `Nose testing system `__ and the convenient extensions in `numpy.testing `__. Nose itself is an extension of :mod:`Python's unittest `. Nose will find any file, directory, function, or class name that matches the regular expression ``(?:^|[b_./-])[Tt]est``. This is mainly functions that begin with test* and classes that begin with Test*.
-
-.. _run-tests:
-
-Running the Test Suite
-~~~~~~~~~~~~~~~~~~~~~~
-
-You can run all the tests by::
-
- >>> import scikits.statsmodels.api as sm
- >>> sm.test()
-
-You can test submodules by::
-
- >>> sm.discrete.test()
-
-
-How To Write A Test
-~~~~~~~~~~~~~~~~~~~
-NumPy provides a good introduction to unit testing with Nose and NumPy extensions `here `__. It is worth a read for some more details.
-Here, we will document a few conventions we follow that are worth mentioning. Often we want to test
-a whole model at once rather than just one function, for example. The following is a pared down
-version test_discrete.py. In this case, several different models with different options need to be
-tested. The tests look something like
-
-.. code-block:: python
-
- from numpy.testing import assert_almost_equal
- import scikits.statsmodels.api as sm
- from results.results_discrete import Spector
-
- class CheckDiscreteResults(object):
- """
- res2 are the results. res1 are the values from statsmodels
- """
-
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params, 4)
-
- decimal_tvalues = 4
- def test_tvalues(self):
- assert_almost_equal(self.res1.params, self.res2.params, self.decimal_tvalues)
-
- # ... as many more tests as there are common results
-
- class TestProbitNewton(CheckDiscreteResults):
- """
- Tests the Probit model using Newton's method for fitting.
- """
-
- @classmethod
- def setupClass(cls):
- # set up model
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- cls.res1 = sm.Probit(data.endog, data.exog).fit(method='newton', disp=0)
-
- # set up results
- res2 = Spector()
- res2.probit()
- cls.res2 = res2
-
- # set up precision
- cls.decimal_tvalues = 3
-
- def test_model_specifc(self):
- assert_almost_equal(self.res1.foo, self.res2.foo, 4)
-
- if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb'], exit=False)
-
-The main workhorse is the `CheckDiscreteResults` class. Notice that we can set the level of precision
-for `tvalues` to be different than the default in the subclass `TestProbitNewton`. All of the test
-classes have a `setupClass` :func:`python:classmethod`. Otherwise, Nose would reinstantiate the class
-before every single test method. If the fitting of the model is time consuming, then this is clearly
-undesirable. Finally, we have a script at the bottom so that we can run the tests should be running
-the Python file.
-
-Test Results
-~~~~~~~~~~~~
-The test results are the final piece of the above example. For many tests, especially those for the
-models, there are many results against which you would like to test. It makes sense then to separate
-the hard-coded results from the actual tests to make the tests more readable. If there are only a few
-results it's not necessary to separate the results. We often take results from some other statistical
-package. It is important to document where you got the results from and why they might differ from
-the results that we get. Each tests folder has a results subdirectory. Consider the folder structure
-for the discrete models::
-
- tests/
- __init__.py
- test_discrete.py
- results/
- __init__.py
- results_discrete.py
- nbinom_resids.csv
-
-It is up to you how best to structure the results. In the discrete model example, you will notice
-that there are result classes based around particular datasets with a method for loading different
-model results for that dataset. You can also include text files that hold results to be loaded by
-results classes if it is easier than putting them in the class itself.
diff --git a/statsmodels/scikits/statsmodels/docs/source/diagnostic.rst b/statsmodels/scikits/statsmodels/docs/source/diagnostic.rst
deleted file mode 100644
index c39065c..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/diagnostic.rst
+++ /dev/null
@@ -1,177 +0,0 @@
-:orphan:
-
-.. _diagnostics:
-
-Regression Diagnostics and Specification Tests
-==============================================
-
-
-Introduction
-------------
-
-In many cases of statistical analysis, we are not sure whether our statistical
-model is correctly specified. For example when using ols, then linearity and
-homoscedasticity are assumed, some test statistics additionally assume that
-the errors are normally distributed or that we have a large sample.
-Since our results depend on these statistical assumptions, the results are
-only correct of our assumptions hold (at least approximately).
-
-One solution to the problem of uncertainty about the correct specification is
-to use robust methods, for example robust regression or robust covariance
-(sandwich) estimators. The second approach is to test whether our sample is
-consistent with these assumptions.
-
-The following briefly summarizes specification and diagnostics tests for
-linear regression.
-
-Note: Not all statistical tests in the sandbox are fully tested, and the API
-will still change. Some of the tests are still on the wishlist.
-
-Heteroscedasticity Tests
-------------------------
-
-For these test the null hypothesis is that all observations have the same
-error variance, i.e. errors are homoscedastic. The tests differ in which kind
-of heteroscedasticity is considered as alternative hypothesis. They also vary
-in the power of the test for different types of heteroscedasticity.
-
-het_breushpagan (scikits.sandbox.tools.stattools) :
- Lagrange Multiplier Heteroscedasticity Test by Breush-Pagan
-
-het_white (scikits.sandbox.tools.stattools) :
- Lagrange Multiplier Heteroscedasticity Test by White
-
-het_goldfeldquandt (scikits.sandbox.tools.stattools) :
- test whether variance is the same in 2 subsamples
-
-
-Autocorrelation Tests
----------------------
-
-This group of test whether the regression residuals are not autocorrelated.
-They assume that observations are ordered by time.
-
-durbin_watson (scikits.stattools) :
- - Durbin-Watson test for no autocorrelation of residuals
- - printed with summary()
-
-acorr_ljungbox (scikits.sandbox.tools.stattools) :
- - Ljung-Box test for no autocorrelation of residuals
- - also returns Box-Pierce statistic
-
-acorr_lm
- - Lagrange Multiplier tests for autocorrelation
- - not checked yet, might not make sense
-
-missing
- - Breush-Godfrey test, in stata and Greene 12.7.1
- -
-
-
-Tests for Structural Change, Parameter Stability
-------------------------------------------------
-
-Test whether all or some regression coefficient are constant over the
-entire data sample.
-
-Known Change Point
-^^^^^^^^^^^^^^^^^^
-
-OneWayLS :
- - flexible ols wrapper for testing identical regression coefficients across
- predefined subsamples (eg. groups)
-
-missing
- - predictive test: Greene, number of observations in subsample is smaller than
- number of regressors
-
-
-Unknown Change Point
-^^^^^^^^^^^^^^^^^^^^
-
-(Note: considerable cleaning still required)
-
-recursive_olsresiduals(olsresults, skip=None, lamda=0.0, alpha=0.95):
- - calculate recursive ols with residuals and cusum test statistic
-
-breaks_cusumolsresid :
- - cusum test for parameter stability based on ols residuals
-
-breaks_hansen :
- - test for model stability, breaks in parameters for ols, Hansen 1992
-
-missing
- - supLM, expLM, aveLM (Andrews, Andrews/Ploberger)
- - R-structchange also has musum (moving cumulative sum tests)
-
-Mutlicollinearity Tests
---------------------------------
-
-conditionnum (scikits.statsmodels.stattools) -- needs test vs Stata --
-cf Grene (3rd ed.) pp 57-8
-numpy.linalg.cond (for more general condition numbers, but no behind
-the scenes help for design preparation)
-
-missing
- - Variance Inflation Factors
- (with some links to other tests here: http://www.stata.com/help.cgi?vif)
-
-Outlier Diagnosis
------------------
-
- - robust regression results
- example from example_rlm.py ::
-
- import scikits.statsmodels.api as sm
-
- ### Example for using Huber's T norm with the default
- ### median absolute deviation scaling
-
- data = sm.datasets.stackloss.Load()
- data.exog = sm.add_constant(data.exog)
- huber_t = sm.RLM(data.endog, data.exog, M=sm.robust.norms.HuberT())
- hub_results = huber_t.fit()
- print hub_results.weights
-
- And the weights give an idea of how much a particular observation is
- down-weighted according to the scaling asked for.
-
-missing :
- - Cook's Distance
- http://en.wikipedia.org/wiki/Cook%27s_distance (with some other links)
-
-
-Normality and Distribution Tests
---------------------------------
-
-jarque_bera (scikits.stats.tools) :
- - printed with summary()
- - test for normal distribution of residuals
-
-omni_normtest (scikits.stats.tools) :
- - printed with summary()
- - test for normal distribution of residuals
-
-qqplot, scipy.stats.probplot
-
-other goodness-of-fit tests for distributions in scipy.stats and enhancements
- - kolmogorov-smirnov
- - anderson : Anderson-Darling
- - likelihood-ratio, ...
- - chisquare tests, powerdiscrepancy : needs wrapping (for binning)
-
-
-Non-Linearity Tests
--------------------
-
-nothing yet ???
-
-
-
-Unit Root Tests
----------------
-
-unitroot_adf
- - Augmented Dickey-Fuller test for unit roots
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/discretemod.rst b/statsmodels/scikits/statsmodels/docs/source/discretemod.rst
deleted file mode 100644
index a775cb7..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/discretemod.rst
+++ /dev/null
@@ -1,103 +0,0 @@
-.. currentmodule:: scikits.statsmodels.discrete.discrete_model
-
-
-.. _discretemod:
-
-Regression with Discrete Dependent Variable
-===========================================
-
-Note: These models have just been moved out of the sandbox. Large parts of the
-statistical results are verified and tested, but this module has not seen much
-use yet and we can still expect some changes.
-
-
-Introduction
-------------
-
-:mod:discretemod contains regression models for limited dependent and
-qualitative variables.
-
-This currently includes models when the dependent variable is discrete,
-either binary (Logit, Probit), (ordered) ordinal data (MNLogit) or
-count data (Poisson). Currently all models are estimated by Maximum Likelihood
-and assume independently and identically distributed errors.
-
-All discrete regression models define the same methods and follow the same
-structure, which is similar to the regression results but with some methods
-specific to discrete models. Additionally some of them contain additional model
-specific methods and attributes.
-
-Example::
-
- # Load the data from Spector and Mazzeo (1980)
- spector_data = sm.datasets.spector.load()
- spector_data.exog = sm.add_constant(spector_data.exog)
-
- # Linear Probability Model using OLS
- lpm_mod = sm.OLS(spector_data.endog,spector_data.exog)
- lpm_res = lpm_mod.fit()
-
- # Logit Model
- logit_mod = sm.Logit(spector_data.endog, spector_data.exog)
- logit_res = logit_mod.fit()
-
- # Probit Model
- probit_mod = sm.Probit(spector_data.endog, spector_data.exog)
- probit_res = probit_mod.fit()
-
- # Since the parameters have different parameterization across non-linear
- # models, we can use the average marginal effect instead to compare the
- # models results.
-
- >>> lpm_res.params[:-1]
- array([ 0.46385168, 0.01049512, 0.37855479])
- >>> logit_res.margeff()
- array([ 0.36258083, 0.01220841, 0.3051777 ])
- >>> probit_res.margeff()
- array([ 0.36078629, 0.01147926, 0.31651986])
-
-
-
-References
-^^^^^^^^^^
-
-General references for this class of models are::
-
- A.C. Cameron and P.K. Trivedi. `Regression Analysis of Count Data`.
- Cambridge, 1998
-
- G.S. Madalla. `Limited-Dependent and Qualitative Variables in Econometrics`.
- Cambridge, 1983.
-
- W. Greene. `Econometric Analysis`. Prentice Hall, 5th. edition. 2003.
-
-
-Examples
-^^^^^^^^
-
-see the `examples` and the `tests` folders, and the docstrings of the
-individual model classes.
-
-
-Module Reference
-----------------
-
-The specific model classes are:
-
-.. autosummary::
- :toctree: generated/
-
- Logit
- Probit
- MNLogit
- Poisson
-
-:class:`DiscreteModel` is a superclass of all discrete regression models. The
-estimation results are returned as an instance of :class:`DiscreteResults`
-
-.. autosummary::
- :toctree: generated/
-
- DiscreteModel
- DiscreteResults
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/distributions.rst b/statsmodels/scikits/statsmodels/docs/source/distributions.rst
deleted file mode 100644
index b003981..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/distributions.rst
+++ /dev/null
@@ -1,85 +0,0 @@
-.. currentmodule:: scikits.statsmodels.sandbox.distributions
-
-.. _distributions:
-
-
-Distributions
-=============
-
-Introduction
-------------
-
-This section collects various additional functions and methods for statistical
-distributions.
-
-
-Sandbox Warning: The functions and objects in this category are still in the sandbox.
-Many functions or classes have been tested on individual examples, but don't have a
-(consistent or complete) test suite yet.
-
-
-Distribution Extras
--------------------
-
-
-.. currentmodule:: scikits.statsmodels.sandbox.distributions.extras
-
-*Skew Distributions*
-
-.. autosummary::
- :toctree: generated/
-
- SkewNorm_gen
- SkewNorm2_gen
- ACSkewT_gen
- skewnorm2
-
-*Distributions based on Gram-Charlier expansion*
-
-.. autosummary::
- :toctree: generated/
-
- pdf_moments_st
- pdf_mvsk
- pdf_moments
- NormExpan_gen
-
-*cdf of multivariate normal* wrapper for scipy.stats
-
-
-.. autosummary::
- :toctree: generated/
-
- mvstdnormcdf
- mvnormcdf
-
-Univariate Distributions by non-linear Transformations
-------------------------------------------------------
-
-Univariate distributions can be generated from a non-linear transformation of an
-existing univariate distribution. `Transf_gen` is a class that can generate a new
-distribution from a monotonic transformation, `TransfTwo_gen` can use hump-shaped
-or u-shaped transformation, such as abs or square. The remaining objects are
-special cases.
-
-.. currentmodule:: scikits.statsmodels.sandbox.distributions.transformed
-
-.. autosummary::
- :toctree: generated/
-
- TransfTwo_gen
- Transf_gen
-
- ExpTransf_gen
- LogTransf_gen
- SquareFunc
-
- absnormalg
- invdnormalg
-
- loggammaexpg
- lognormalg
- negsquarenormalg
-
- squarenormalg
- squaretg
diff --git a/statsmodels/scikits/statsmodels/docs/source/extending.rst.TXT b/statsmodels/scikits/statsmodels/docs/source/extending.rst.TXT
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/docs/source/genericmle.rst.TXT b/statsmodels/scikits/statsmodels/docs/source/genericmle.rst.TXT
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/docs/source/glm.rst b/statsmodels/scikits/statsmodels/docs/source/glm.rst
deleted file mode 100644
index 73db0d4..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/glm.rst
+++ /dev/null
@@ -1,111 +0,0 @@
-.. currentmodule:: scikits.statsmodels.genmod.generalized_linear_model
-
-
-.. _glm:
-
-
-Generalized Linear Models
-=========================
-
-Introduction
-------------
-
-.. automodule:: scikits.statsmodels.genmod.generalized_linear_model
-
-
-Examples
---------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.scotland.load()
- >>> data.exog = sm.add_constant(data.exog)
-
- Instantiate a gamma family model with the default link function.
-
- >>> gamma_model = sm.GLM(data.endog, data.exog,
- family=sm.families.Gamma())
- >>> gamma_results = gamma_model.fit()
-
-see also the `examples` and the `tests` folders
-
-
-Module Reference
-----------------
-
-Model Class
-^^^^^^^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- GLM
-
-Results Class
-^^^^^^^^^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- GLMResults
-
-Families
-^^^^^^^^
-
-The distribution families currently implemented are
-
-.. currentmodule:: scikits.statsmodels.genmod.families.family
-
-.. autosummary::
- :toctree: generated/
- :template: autosummary/glmfamilies.rst
-
- Family
- Binomial
- Gamma
- Gaussian
- InverseGaussian
- NegativeBinomial
- Poisson
-
-
-Link Functions
-^^^^^^^^^^^^^^
-
-The link functions currently implemented are the following. Not all link
-functions are available for each distribution family. The list of
-available link functions can be obtained by
-
-::
-
- >>> sm.families.family..links
-
-.. currentmodule:: scikits.statsmodels.genmod.families.links
-
-.. autosummary::
- :toctree: generated/
-
- Link
-
- CDFLink
- CLogLog
- Log
- Logit
- NegativeBinomial
- Power
- cauchy
- cloglog
- identity
- inverse_power
- inverse_squared
- log
- logit
- nbinom
- probit
-
-Technical Documentation
------------------------
-
-.. toctree::
- :maxdepth: 1
-
- glm_techn1
- glm_techn2
diff --git a/statsmodels/scikits/statsmodels/docs/source/glm_techn1.rst b/statsmodels/scikits/statsmodels/docs/source/glm_techn1.rst
deleted file mode 100644
index 5929366..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/glm_techn1.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. currentmodule:: scikits.statsmodels.glm
-
-
-.. _glm_techn1:
-
-Technical Documentation
-=======================
-
-Introduction
-------------
-
-Just a placeholder
diff --git a/statsmodels/scikits/statsmodels/docs/source/glm_techn2.rst b/statsmodels/scikits/statsmodels/docs/source/glm_techn2.rst
deleted file mode 100644
index 5465f41..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/glm_techn2.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. currentmodule:: scikits.statsmodels.glm
-
-
-.. _glm_techn2:
-
-Technical Documentation - part 2
-================================
-
-Implementation Notes
---------------------
-
-Just a placeholder
diff --git a/statsmodels/scikits/statsmodels/docs/source/gmm.rst b/statsmodels/scikits/statsmodels/docs/source/gmm.rst
deleted file mode 100644
index 20cb719..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/gmm.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-.. currentmodule:: scikits.statsmodels.sandbox.regression.gmm
-
-
-.. _gmm:
-
-
-Generalized Method of Moments :mod:`gmm`
-========================================
-
-:mod:`scikits.statmodels.gmm` contains model classes and functions that are based on
-estimation with Generalized Method of Moments.
-Currently the general non-linear case is implemented. An example class for the standard
-linear instrumental variable model is included. This has been introduced as a test case, it
-works correctly but it does not take the linear structure into account. For the linear
-case we intend to introduce a specific implementation which will be faster and numerically
-more accurate.
-
-Currently, GMM takes arbitrary non-linear moment conditions and calculates the estimates
-either for a given weighting matrix or iteratively by alternating between estimating
-the optimal weighting matrix and estimating the parameters. Implementing models with
-different moment conditions is done by subclassing GMM. In the minimal implementation
-only the moment conditions, `momcond` have to be defined.
-
-.. currentmodule:: scikits.statsmodels.sandbox.regression.gmm
-
-
-Module Reference
-""""""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- GMM
- GMMResults
- IV2SLS
-
-not sure what the status is on the following
-
-.. autosummary::
- :toctree: generated/
-
- IVGMM
- NonlinearIVGMM
- DistQuantilesGMM
diff --git a/statsmodels/scikits/statsmodels/docs/source/gmm_techn1.rst.TXT b/statsmodels/scikits/statsmodels/docs/source/gmm_techn1.rst.TXT
deleted file mode 100644
index aabc063..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/gmm_techn1.rst.TXT
+++ /dev/null
@@ -1,53 +0,0 @@
-.. currentmodule:: scikits.statsmodels.sandbox.regression.gmm
-
-
-.. _gmm_techn1:
-
-Technical Documentation
-=======================
-
-Introduction
-------------
-
-Generalized Method of Moments is an extension of the Method of Moments
-if there are more moment conditions than parameters that are estimated.
-
-simple example
-
-
-General Structure and Implementation
-------------------------------------
-
-The main class for GMM estimation, makes little assumptions about the
-moment conditions. It is designed for the general case when moment
-conditions are given as function by the user.
-
-::
-
- def momcond(params)
-
-which should return a two dimensional array with observation in rows
-and moment conditions in columns. Denote this function by `$g(\theta)$`. Then
-the GMM estimator is given as the solution to the maximization problem:
-
-..math: max_{\theta) g(theta)' W g(theta) (1)
-
-The weighting matrix can be estimated in several different ways. The
-basic method `fitgmm` takes the weighting matrix as argument or if it is
-not given takes the identity matrix and maximizes (1)
-taking W as given. Since the optimizing functions solve minimization problems,
-we usually minimizes the negative of the objective function.
-`fit_iterative` calculates the optimal weighting matrix and maximizes the
-criterion function in alternating steps. The number of iterations can
-be given as an argument to this fit method. The optimal weighting matrix,
-which is the covariance matrix of the moment conditions, can be estimated
-in different ways. Kernel and shrinkage estimators are planned but not yet
-implemented. TODO
-
-The GMM class itself does not define any moment conditions. To get an
-estimator for given moment conditions, GMM needs to be subclassed.
-The basic structure of writing new models based on
-the generic MLE or GMM framework and subclassing is described in
-`extending.rst` (TODO: link)
-
-As an example
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/aw.png b/statsmodels/scikits/statsmodels/docs/source/images/aw.png
deleted file mode 100644
index 8c048f6..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/aw.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/hl.png b/statsmodels/scikits/statsmodels/docs/source/images/hl.png
deleted file mode 100644
index 9cf7bb5..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/hl.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/ht.png b/statsmodels/scikits/statsmodels/docs/source/images/ht.png
deleted file mode 100644
index 7559faf..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/ht.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/ls.png b/statsmodels/scikits/statsmodels/docs/source/images/ls.png
deleted file mode 100644
index 456cce0..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/ls.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/re.png b/statsmodels/scikits/statsmodels/docs/source/images/re.png
deleted file mode 100644
index 1d90760..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/re.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_banner.png b/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_banner.png
deleted file mode 100644
index 3c62583..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_banner.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_favico.ico b/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_favico.ico
deleted file mode 100644
index 4a0469e..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/statsmodels_hybi_favico.ico and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/tk.png b/statsmodels/scikits/statsmodels/docs/source/images/tk.png
deleted file mode 100644
index fbf8b14..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/tk.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/images/tm.png b/statsmodels/scikits/statsmodels/docs/source/images/tm.png
deleted file mode 100644
index d3900bb..0000000
Binary files a/statsmodels/scikits/statsmodels/docs/source/images/tm.png and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/docs/source/index.rst b/statsmodels/scikits/statsmodels/docs/source/index.rst
deleted file mode 100644
index e211198..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/index.rst
+++ /dev/null
@@ -1,78 +0,0 @@
-.. :tocdepth: 2
-
-Welcome to Statsmodels's Documentation
-======================================
-
-:mod:`scikits.statsmodels` is a Python module that provides classes and functions for the estimation
-of many different statistical models, as well as for conducting statistical tests, and statistical
-data exploration. An extensive list of result statistics are avalable for each estimator.
-The results are tested against existing statistical packages to ensure that they are correct. The
-pacakge is released under the open source Simplied BSD (2-clause) license. The online documentation
-is hosted at `sourceforge `__.
-
-Getting Started
----------------
-
-Get the data, run the estimation, and look at the results.
-For example, here is a minimal ordinary least squares example
-
-.. code-block:: python
-
- import numpy as np
- import scikits.statsmodels.api as sm
-
- # get data
- nsample = 100
- x = np.linspace(0,10, 100)
- X = sm.add_constant(np.column_stack((x, x**2)))
- beta = np.array([1, 0.1, 10])
- y = np.dot(X, beta) + np.random.normal(size=nsample)
-
- # run the regression
- results = sm.OLS(y, X).fit()
-
- # look at the results
- print results.summary()
-
-Have a look at `dir(results)` to see available results. Attributes are
-described in `results.__doc__` and results methods have their own docstrings.
-
-
-Table of Contents
------------------
-
-.. toctree::
- :maxdepth: 1
-
- introduction
- related
- dev/index
-
-.. toctree::
- :maxdepth: 2
-
- regression
- glm
- rlm
- discretemod
- tsa
- stats
- tools
- miscmodels
- dev/internal
- gmm
- distributions
- datasets/index
- sandbox
-
-Related Projects
-----------------
-
-See our :ref:`related projects page `.
-
-Indices and tables
-------------------
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
diff --git a/statsmodels/scikits/statsmodels/docs/source/install.rst b/statsmodels/scikits/statsmodels/docs/source/install.rst
deleted file mode 100644
index 1f2c8ac..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/install.rst
+++ /dev/null
@@ -1,60 +0,0 @@
-:orphan:
-
-.. _install:
-
-Installation
-------------
-
-Using setuptools
-~~~~~~~~~~~~~~~~
-
-To obtain the latest released version of statsmodels using `setuptools `__::
-
- easy_install -U scikits.statsmodels
-
-Or follow `this link to our PyPI page `__.
-
-Obtaining the Source
-~~~~~~~~~~~~~~~~~~~~
-
-We do not release very often but the master branch of our source code is
-usually fine for everyday use. You can get the latest source from our
-`github repository `__. Or if you have git installed::
-
- git clone git://github.com/statsmodels/statsmodels.git
-
-If you want to keep up to date with the source on github just periodically do::
-
- git pull
-
-in the statsmodels directory.
-
-Installation from Source
-~~~~~~~~~~~~~~~~~~~~~~~~
-
-Once you have obtained the source, you can do (with appropriate permissions)::
-
- python setup.py install
-
-For the 0.3 release, you might want to do::
-
- python setup.py build --with-cython
- python setup.py install
-
-To enable the Cython-based Kalman filter used by the ARMA model. You will need a C compiler.
-
-Dependencies
-~~~~~~~~~~~~
-
-* `Python `__ >= 2.5, including Python 3.x
-* `NumPy `__ (>=1.4) and `SciPy `__ (>=0.7)
-
-.. tested with Python 2.5., 2.6, 2.7 and 3.2
-.. (tested with numpy 1.4.1, 1.5.1 and 1.6.0, scipy 0.7.2, 0.8.0, 0.9.0)
-.. do we need to tell people about testing?
-
-Optional Dependencies
-~~~~~~~~~~~~~~~~~~~~~
-
-* `Matplotlib `__ is needed for plotting functions and running many of the examples.
-* `Nose `__ is required to run the test suite.
diff --git a/statsmodels/scikits/statsmodels/docs/source/introduction.rst b/statsmodels/scikits/statsmodels/docs/source/introduction.rst
deleted file mode 100644
index 2bcdeb8..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/introduction.rst
+++ /dev/null
@@ -1,181 +0,0 @@
-.. currentmodule:: scikits.statsmodels
-
-************
-Introduction
-************
-
-Background
-----------
-
-Scipy.stats.models was originally written by Jonathan Taylor.
-For some time it was part of scipy but then removed from it. During
-the Google Summer of Code 2009, stats.models was corrected, tested and
-enhanced and released as a new package. Since then we have continued to
-improve the existing models and added new statistical methods.
-
-
-Current Status
---------------
-
-statsmodels 0.3 is a pure python package, with one optional cython based
-extension. However, future releases will depend on cython generated
-extensions.
-
-statsmodels includes:
-
- * regression: mainly OLS and generalized least squares, GLS
- including weighted least squares and least squares with AR
- errors.
- * glm: generalized linear models
- * rlm: robust linear models
- * discretemod: regression with discrete dependent variables, Logit, Probit,
- MNLogit, Poisson, based on maximum likelihood estimators
- * datasets: for examples and tests
- * univariate time series analysis: AR, ARIMA
- * vector autoregressive models
- * descriptive statistics and process models for time series analysis
- * diagnostics and specification tests
- * additional statistical tests and functions for multiple testing
- * miscellaneous models
-
-statsmodels contains a sandbox folder, which includes some of the original
-stats.models code that has not yet been rewritten and tested. The sandbox also
-contains models and functions that we are currently developing. This code is
-in various stages of development from early stages to almost finished, but
-not sufficiently tested or with an API that is still in flux. Some of the code
-in the advanced state covers among others GARCH models, general method of
-moments (GMM) estimators, kernel regression and kernel density estimation, and
-various extensions to scipy.stats.distributions.
-
-The code is written for plain NumPy arrays so that statsmodels can be used
-as a library for any kind of data structure users might have. However, in
-order to make the data handling easier, some time series specific models
-rely on pandas, and we have plans to integrate pandas in future releases of
-statsmodels.
-
-We have also included several datasets from the public domain and by
-permission for tests and examples. The datasets are set up so that it is
-easy to add more datasets.
-
-Python 3
---------
-
-scikits.statsmodels has been ported and tested for Python 3.2. Python 3
-version of the code can be obtained by running 2to3.py over the entire
-statsmodels source. The numerical core of statsmodels worked almost without
-changes, however there can be problems with data input and plotting.
-The STATA file reader and writer in iolib.foreign has not been ported yet.
-And there are still some problems with the matplotlib version for Python 3
-that was used in testing. Running the test suite with Python 3.2 shows some
-errors related to foreign and matplotlib.
-
-Testing
--------
-
-Most results have been verified with at least one other statistical package: R,
-Stata or SAS. The guiding principal for the initial rewrite and for continued
-development is that all numbers have to be verified. Some statistical
-methods are tested with Monte Carlo studies. While we strife to follow this
-test driven approach, there is no guarantee that the code is bug-free and
-always works. Some auxilliary function are still insufficiently tested, some
-edge cases might not be correctly taken into account, and the possibility of
-numerical problems is inherent to many of the statistical models. We
-especially appreciate any help and reports for these kind of problems so we
-can keep improving the existing models.
-
-
-
-
-Looking Forward
----------------
-
-We would like to invite everyone to give statsmodels a test drive, use it, and
-report comments, possibilities for improvement and bugs to the statsmodels
-mailing list http://groups.google.com/group/pystatsmodels or file tickets on our
-issue tracker at https://github.com/statsmodels/statsmodels/issues
-
-The source code is available from https://github.com/statsmodels/statsmodels.
-
-Our plans for the future include improving the coverage of statistical
-models, methods and tests that any basic statistics package should provide.
-But the main direction for the expansion of statsmodels depends on the
-requirements and interests of the developers and contributers.
-
-The current maintainers are mostly interested in econometrics and time series
-analysis, but we would like to invite any users or developers to contribute
-their own extensions to existing models, or new models. To speed up
-improvements that are waiting in the sandbox, any help with providing test
-cases, reviewing or improving the code would be very appreciated.
-
-Planned Extensions
-~~~~~~~~~~~~~~~~~~
-
-Two big changes that are planned for the next release will improve the
-usability of statsmodels especially for interactive work.
-
-* Metainformation about data and models: Currently the models essentially
- use no information about the design matrix and just treat it as numpy
- array.
-* Merge Pandas into statsmodels which will provide a data structure and
- improved handling of time series data, together with additional time series
- specific models. (Wes McKinney)
-* Formulas similar to R: This will provide a faster way to interactively
- define models and contrast matrices, and will provide additional
- information especially for categorical variables. (Nathaniel Smith)
-
-Various models that are work in progress where the time to inclusion in
-statsmodels proper will depend on the available developer time and interests:
-
-Bayesian dynamic linear models (Wes)
-
-more Kalman filter based time series analysis (Skipper)
-
-New models (roughly in order of completeness):
-general method of moments (GMM) estimators, kernel regression,
-kernel density estimation, various extensions to scipy.stats.distributions,
-GARCH models, copulas, system of equation models, panel data models,
-more discrete choice models, mixed effects models, survival models.
-
-New tests: multiple comparison, more diagnostics and outlier tests, additional
-non-parametric tests
-
-Resampling approaches like bootstrap and permutation for tests and estimator
-statistics.
-
-
-Code Stability
-~~~~~~~~~~~~~~
-
-The existing models are mostly settled in their user interface and we do not
-expect many changes anymore. One area that will need adjustment is how
-formulas and meta information are included. New models that have just been
-included might require adjustments as we gain more experience and obtain
-feedback by users. As we expand the range of models, we keep improving the
-framework for different estimators and statistical tests, so further changes
-will be necessary. In 0.3 we reorganized the internal location of the code and
-import paths which will make future enhancements less interruptive.
-Although there is no guarantee yet on API stability, we try to keep changes
-that require adjustments by existing users to a minimal level.
-
-Financial Support
------------------
-
-We are grateful for the financial support that we obtained for the
-developement of scikits.statsmodels:
-
- Google `www.google.com `_ : two Google Summer of Code,
- GSOC 2009 and GSOC 2010
-
- AQR `www.aqr.com `_ : financial sponsor for the work on
- Vector Autoregressive Models (VAR) by Wes McKinney
-
-We would also like to thank our hosting providers, `github
- `_ for the public code repository, `sourceforge
- `_ for hosting our documentation and `python.org
-`_ for making our downloads available on pypi.
-
-
-Josef Perktold and Skipper Seabold,
-Wes McKinney,
-Mike Crow,
-Vincent Davis,
diff --git a/statsmodels/scikits/statsmodels/docs/source/miscmodels.rst b/statsmodels/scikits/statsmodels/docs/source/miscmodels.rst
deleted file mode 100644
index 58d96d7..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/miscmodels.rst
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-.. currentmodule:: scikits.statsmodels.miscmodels
-
-
-.. _miscmodels:
-
-
-Other Models :mod:`miscmodels`
-==============================
-
-:mod:`scikits.statmodels.miscmodels` contains model classes and that do not yet fit into
-any other category, or are basic implementations that are not yet polished and will most
-likely still change. Some of these models were written as examples for the generic
-maximum likelihood framework, and there will be others that might be based on general
-method of moments.
-
-The models in this category have been checked for basic cases, but might be more exposed
-to numerical problems than the complete implementation. For example, count.Poisson has
-been added using only the generic maximum likelihood framework, the standard errors
-are based on the numerical evaluation of the Hessian, while discretemod.Poisson uses
-analytical Gradients and Hessian and will be more precise, especially in cases when there
-is strong multicollinearity.
-On the other hand, by subclassing GenericLikelihoodModel, it is easy to add new models,
-another example can be seen in the zero inflated Poisson model, miscmodels.count.
-
-
-Count Models :mod:`count`
---------------------------
-
-.. currentmodule:: scikits.statsmodels.miscmodels.count
-
-.. autosummary::
- :toctree: generated/
-
- PoissonGMLE
- PoissonOffsetGMLE
- PoissonZiGMLE
-
-Linear Model with t-distributed errors
---------------------------------------
-
-This is a class that shows that a new model can be defined by only specifying the
-method for the loglikelihood. All result statistics are inherited from the generic
-likelihood model and result classes. The results have been checked against R for a
-simple case.
-
-.. currentmodule:: scikits.statsmodels.miscmodels.tmodel
-
-.. autosummary::
- :toctree: generated/
-
- TLinearModel
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/regression.rst b/statsmodels/scikits/statsmodels/docs/source/regression.rst
deleted file mode 100644
index e55e050..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/regression.rst
+++ /dev/null
@@ -1,139 +0,0 @@
-.. currentmodule:: scikits.statsmodels.regression.linear_model
-
-
-.. _regression:
-
-Regression
-==========
-
-
-Introduction
-------------
-
-Regression contains linear models with independently and identically
-distributed errors and for errors with heteroscedasticity or autocorrelation
-
-The statistical model is assumed to be
-
- :math:`Y = X\beta + \mu`, where :math:`\mu\sim N\left(0,\sigma^{2}\Sigma\right)`
-
-depending on the assumption on :math:`\Sigma`, we have currently four classes available
-
-* GLS : generalized least squares for arbitrary covariance :math:`\Sigma`
-* OLS : ordinary least squares for i.i.d. errors :math:`\Sigma=\textbf{I}`
-* WLS : weighted least squares for heteroskedastic errors :math:`\text{diag}\left (\Sigma\right)`
-* GLSAR : feasible generalized least squares with autocorrelated AR(p) errors
- :math:`\Sigma=\Sigma\left(\rho\right)`
-
-All regression models define the same methods and follow the same structure,
-and can be used in a similar fashion. Some of them contain additional model
-specific methods and attributes.
-
-GLS is the superclass of the other regression classes.
-
-Class hierachy: TODO
-
-yule_walker is not a full model class, but a function that estimate the
-parameters of a univariate autoregressive process, AR(p). It is used in GLSAR,
-but it can also be used independently of any models. yule_walker only
-calculates the estimates and the standard deviation of the lag parameters but
-not the additional regression statistics. We hope to include yule-walker in
-future in a separate univariate time series class. A similar result can be
-obtained with GLSAR if only the constant is included as regressors. In this
-case the parameter estimates of the lag estimates are not reported, however
-additional statistics, for example aic, become available.
-
-
-Attributes
-^^^^^^^^^^
-The following is more verbose description of the attributes which is mostly common to all
-regression classes
-
-pinv_wexog : array
- | `pinv_wexog` is the `p` x `n` Moore-Penrose pseudoinverse of the
- | whitened design matrix. Approximately equal to
- | :math:`\left(X^{T}\Sigma^{-1}X\right)^{-1}X^{T}\Psi`
- | where :math:`\Psi` is given by :math:`\Psi\Psi^{T}=\Sigma^{-1}`
-cholsimgainv : array
- | n x n upper triangular matrix such that
- | :math:`\Psi\Psi^{T}=\Sigma^{-1}`
- | :math:`cholsigmainv=\Psi^{T}`
-df_model : float
- The model degrees of freedom is equal to `p` - 1, where `p` is the number
- of regressors. Note that the intercept is not counted as using a degree
- of freedom here.
-df_resid : float
- The residual degrees of freedom is equal to the number of observations
- `n` less the number of parameters `p`. Note that the intercept is counted as
- using a degree of freedom here.
-llf : float
- The value of the likelihood function of the fitted model.
-nobs : float
- The number of observations `n`
-normalized_cov_params : array
- | A `p` x `p` array
- | :math:`(X^{T}\Sigma^{-1}X)^{-1}`
-sigma : array
- | `sigma` is the n x n strucutre of the covariance matrix of the error terms
- | :math:`\mu\sim N\left(0,\sigma^{2}\Sigma\right)`
-wexog : array
- | `wexog` is the whitened design matrix.
- | :math:`\Psi^{T}X`
-wendog : array
- | The whitened response variable.
- | :math:`\Psi^{T}Y`
-
-
-
-References
-^^^^^^^^^^
-
-General reference for regression models::
-
- D.C. Montgomery and E.A. Peck. "Introduction to Linear Regression
- Analysis." 2nd. Ed., Wiley, 1992.
-
-Econometrics references for regression models::
-
- R. Davidson and J.G. MacKinnon. "Econometric Theory and Methods," Oxford,
- 2004.
-
- W. Green. "Econometric Analysis," 5th ed., Pearson, 2003.
-
-Examples
---------
-
-see also the `examples` and the `tests` folders
-
-
-Module Reference
-----------------
-
-Model Classes
-^^^^^^^^^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- OLS
- GLS
- WLS
- GLSAR
- yule_walker
-
-Results Class
-^^^^^^^^^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- RegressionResults
-
-
-Technical Documentation
------------------------
-
-.. toctree::
- :maxdepth: 1
-
- regression_techn1
diff --git a/statsmodels/scikits/statsmodels/docs/source/regression_techn1.rst b/statsmodels/scikits/statsmodels/docs/source/regression_techn1.rst
deleted file mode 100644
index c9cec29..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/regression_techn1.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. currentmodule:: scikits.statsmodels.regression
-
-
-.. _regression-techn1:
-
-Technical Documentation
-=======================
-
-Introduction
-------------
-
-Just a placeholder
diff --git a/statsmodels/scikits/statsmodels/docs/source/related.rst b/statsmodels/scikits/statsmodels/docs/source/related.rst
deleted file mode 100644
index c284647..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/related.rst
+++ /dev/null
@@ -1,276 +0,0 @@
-.. _related:
-
-.. currentmodule:: scikits.statsmodels
-
-
-Related Packages
-================
-
-These are some python packages that have a related purpose and can be
-useful in combination with statsmodels. The selection in this list is
-biased towards packages that might be directly useful for data handling and
-statistical analysis, and towards those that have a BSD compatible license,
-which implies that we are not restricted in looking at the source to learn
-of different ways of implementation or of different algorithms.
-The following descriptions are taken from the websites with small adjustments.
-
-
-
-Data Handling
--------------
-
-Scikits.timeseries
-^^^^^^^^^^^^^^^^^^
-
-http://pypi.python.org/pypi/scikits.timeseries
-
-"Time series manipulation
-
-The scikits.timeseries module provides classes and functions for manipulating,
-reporting, and plotting time series of various frequencies. The focus is on
-convenient data access and manipulation while leveraging the existing
-mathematical functionality in Numpy and SciPy."
-
-Licence: BSD
-Language: Python, C, binary distributions available
-
-
-*Comments*
-
-Timeseries is based on numpys MaskedArray and is designed for handling data
-with missing values. It also includes functions for statistical analysis.
-
-
-Pandas
-^^^^^^
-
-http://pypi.python.org/pypi/pandas
-
-"This project aims to provide the following
- * A set of fast NumPy-based data structures optimized for panel, time series,
- and cross-sectional data analysis.
- * A set of tools for loading such data from various sources and providing
- efficient ways to persist the data.
- * A robust statistics and econometrics library which closely integrates with
- the core data structures."
-
-License: New BSD
-Language: Python, Cython,
-binary distribution available for win32-py25, but easy to build with MinGW
-
-*Comments*
-
-Uses statsmodels as optional dependency for statistical analysis, but has
-additional statistical and econometrics algorithms that focus on panel data
-analysis, mostly in the time dimension. It has several data structures that
-allow dictionary access to the underlying 1, 2, or 3 dimensional arrays. It
-was initially focused on a two-dimensional representation of the data, but
-now also allows for different representation of three-dimensional arrays. It
-allows for arbitrary axis labels, but offers also a convenient time series
-class.
-
-
-Tabular
-^^^^^^^
-
-http://pypi.python.org/pypi/tabular
-
-"Tabular data container and associated convenience routines in Python
-
-Tabular is a package of Python modules for working with tabular data. Its main
-object is the tabarray class, a data structure for holding and manipulating
-tabular data.
-
-The tabarray object is based on the ndarray object from the Numerical Python
-package (NumPy), and the Tabular package is built to interface well with NumPy
-in general. "
-
-License: MIT
-Language: Python
-
-*Comments*
-
-Uses numpys structured arrays as basic building block. Focused on
-spreadsheet-style operations for working with two-dimensional tables and
-associated data handling and analysis.
-It is instructive to read the code of tabular for working with structured
-arrays.
-
-
-La
-^^
-
-http://pypi.python.org/pypi/la
-
-"Label the rows, columns, any dimension, of your NumPy arrays.
-
-The main class of the la package is a labeled array, larry. A larry consists of
-a data array and a label list. The data array is stored as a NumPy array and
-the label list as a list of lists. "
-
-License: BSD
-Language: Python
-
-*Comments*
-
-The data handling is in intention similar to pandas but closer to working
-with standard numpy ndarrays. The main addition to numpy arrays are
-arbitrary labels for each axis of the array. Larry delegates to numpy
-functions but does not subclass numpy's ndarrays. It also provides functions
-for basic descriptive statistics.
-
-
-
-
-Data Analysis
--------------
-
-Pymc
-^^^^
-
-http://pypi.python.org/pypi/pymc
-
-"Bayesian estimation, particularly using Markov chain Monte Carlo (MCMC), is
-an increasingly relevant approach to statistical estimation.
-PyMC is a python module that implements the Metropolis-Hastings algorithm
-as a python class, and is extremely flexible and applicable to a large suite
-of problems.""
-
-License: MIT, Academic Free License (?)
-Language: Python, C, Fortran
-binary (bundle ?) installer
-
-*Comments*
-This is to some extent the modern Bayesian analog of statsmodels. It is by
-far the most mature project in this group including statsmodels.
-
-
-Scikits.talkbox
-^^^^^^^^^^^^^^^
-
-http://pypi.python.org/pypi/scikits.talkbox
-
-Talkbox is set of python modules for speech/signal processing. The goal of this
-toolbox is to be a sandbox for features which may end up in scipy at some
-point.
-
-License: BSD
-Language: Python, C optional
-
-
-*Comments*
-
-Although specialized on speech processing, talkbox has some accessible and
-useful functions for time series analysis, especially a fast implementation
-for estimating AR models (with ...) and spectral density based on estimated
-AR coefficients.
-
-
-Nitime
-^^^^^^
-http://github.com/fperez/nitime
-
-"Nitime is a library for time-series analysis of data from neuroscience experiments.
-
-It contains a core of numerical algorithms for time-series analysis both in
-the time and spectral domains, a set of container objects to represent
-time-series, and auxiliary objects that expose a high level interface to the
-numerical machinery and make common analysis tasks easy to express with
-compact and semantically clear code."
-
-License: BSD
-Language: Python
-
-*Comments*
-Althoug focused on neuroscience, the algorithms for time series analysis are
-independent of the data representation and can be used with numpy arrays.
-Current focus is on spectral analysis including coherence between several
-time series.
-
-
-KF - Kalman Filter
-^^^^^^^^^^^^^^^^^^
-
-http://pypi.python.org/pypi/KF
-
-"This project was started to test different avaiable tools to track mutual
-funds and hedge fund using Capital Asset Pricing Model (CAPM thereafter)
-introduced my Sharpe and Arbitrage Pricing Theory (APT thereafter) introduced
-by Ross.
-"
-
- * License : BSD -check
- * Language Python (requires cvxopt)
-
-
-*Comments*
-Very young project but with a similar, although narrower, focus as pandas
-and (parts of) statsmodels. Uses Kalman Filter for rolling linear regression
-and allows for equality and inequality constraints in the estimation.
-Includes its own time series class, and the estimation seems (?) to depend on
-it.
-
-
-
-Domain-specific Data Analysis
------------------------------
-
-The following packages contain interesting statistical algorithms, however
-they are tightly focused on their application, and are or might be more
-difficult to use "from the outside". (Descriptions are taken from websites)
-
-Pymvpa
-^^^^^^
-
-PyMVPA is a Python module intended to ease pattern classification analyses of
-large datasets
-http://pymvpa.org/
-License: MIT
-
-Nipy
-^^^^
-
-Nipy aims to provide a complete Python environment for the analysis of
-structural and functional neuroimaging data
-http://nipy.sourceforge.net/
-License: BSD
-
-Biopython
-^^^^^^^^^
-
-Biopython is a set of tools for biological computation
-http://biopython.org/wiki/Main_Page
-License: http://www.biopython.org/DIST/LICENSE similar to MIT (?))
-
-Pysal
-^^^^^
-
-A library for exploratory spatial analysis and geocomputation
-http://code.google.com/p/pysal/
-License: BSD
-
-glu-genetics
-^^^^^^^^^^^^
-
-A broad array of tools to store, clean, and analyze data generated by
-whole-genome or candidate gene association scans.
-http://code.google.com/p/glu-genetics/
-License: BSD
-
-
-Other packages
---------------
-
-There exists a large number of machine learning packages in python, many of
-them with a well established code base. Unfortunately, none of the packages
-with a wider coverage of algorithms has a scipy compatible license.
-A listing can be found at http://mloss.org/software/language/python/
-scikits.learn includes several machine learning algorithms and is currently
-undergoing a cleanup and enhancement http://pypi.python.org/pypi/scikits.learn/0.1 .
-
-Other packages are available that provide additional functionality,
-especially openopt which offers additional optimization routines compared to
-the ones in scipy.
-
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/rlm.rst b/statsmodels/scikits/statsmodels/docs/source/rlm.rst
deleted file mode 100644
index 3d3badc..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/rlm.rst
+++ /dev/null
@@ -1,86 +0,0 @@
-.. currentmodule:: scikits.statsmodels.robust
-
-
-.. _rlm:
-
-Robust Linear Models
-====================
-
-Introduction
-------------
-
-
-.. automodule:: scikits.statsmodels.robust.robust_linear_model
-
-
-Examples
---------
-
-::
-
- import scikits.statsmodels.api as sm
- data = sm.datasets.stackloss.load()
- data.exog = sm.add_constant(data.exog)
- rlm_model = sm.RLM(data.endog, data.exog, M=sm.robust.norms.HuberT())
- rlm_results = rlm_model.fit()
- print rlm_results.params
-
-see also the `examples` and the `tests` folders
-
-
-Module Reference
-----------------
-
-Model and Result Classes
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- RLM
- RLMResults
-
-.. _norms:
-
-Norms
-^^^^^
-
-.. currentmodule:: scikits.statsmodels.robust.norms
-
-.. autosummary::
- :toctree: generated/
-
- AndrewWave
- Hampel
- HuberT
- LeastSquares
- RamsayE
- RobustNorm
- TrimmedMean
- TukeyBiweight
- estimate_location
-
-
-.. currentmodule:: scikits.statsmodels.robust.scale
-
-Scale
-^^^^^
-
-.. autosummary::
- :toctree: generated/
-
- Huber
- HuberScale
- mad
- huber
- hubers_scale
- stand_mad
-
-
-Technical Documentation
------------------------
-
-.. toctree::
- :maxdepth: 1
-
- rlm_techn1
diff --git a/statsmodels/scikits/statsmodels/docs/source/rlm_techn1.rst b/statsmodels/scikits/statsmodels/docs/source/rlm_techn1.rst
deleted file mode 100644
index 2d775de..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/rlm_techn1.rst
+++ /dev/null
@@ -1,37 +0,0 @@
-.. currentmodule:: scikits.statsmodels.rlm
-
-
-.. _rlm_techn1:
-
-Weight Functions
-----------------
-
-Andrew's Wave
-
-.. image:: images/aw.png
-
-Hampel 17A
-
-.. image:: images/hl.png
-
-Huber's t
-
-.. image:: images/ht.png
-
-Least Squares
-
-.. image:: images/ls.png
-
-Ramsay's Ea
-
-.. image:: images/re.png
-
-Trimmed Mean
-
-.. image:: images/tm.png
-
-Tukey's Biweight
-
-.. image:: images/tk.png
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/sandbox.rst b/statsmodels/scikits/statsmodels/docs/source/sandbox.rst
deleted file mode 100644
index 2683d3d..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/sandbox.rst
+++ /dev/null
@@ -1,215 +0,0 @@
-.. currentmodule:: scikits.statsmodels.sandbox
-
-
-.. _sandbox:
-
-
-Sandbox
-=======
-
-Introduction
-------------
-
-This sandbox contains code that is for various resons not ready to be
-included in statsmodels proper. It contains modules from the old stats.models
-code that have not been tested, verified and updated to the new statsmodels
-structure: cox survival model, mixed effects model with repeated measures,
-generalized additive model and the formula framework. The sandbox also
-contains code that is currently being worked on until it fits the pattern
-of statsmodels or is sufficiently tested.
-
-All sandbox modules have to be explicitly imported to indicate that they are
-not yet part of the core of statsmodels. The quality and testing of the
-sandbox code varies widely.
-
-
-.. automodule:: scikits.statsmodels.sandbox
-
-
-Examples
---------
- There are some examples in the `sandbox.examples` folder. Additional
- examples are directly included in the modules and in subfolders of
- the sandbox.
-
-
-Module Reference
-----------------
-
-
-Time Series analysis :mod:`tsa`
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-In this part we develop models and functions that will be useful for time
-series analysis. Most of the models and function have been moved to
-:mod:`statsmodels.tsa`. Currently, GARCH models remain in development stage in
-`sandbox.tsa`.
-
-
-.. currentmodule:: scikits.statsmodels.sandbox
-
-
-
-Moving Window Statistics
-""""""""""""""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- tsa.movmean
- tsa.movmoment
- tsa.movorder
- tsa.movstat
- tsa.movvar
-
-
-
-
-Regression and ANOVA
-^^^^^^^^^^^^^^^^^^^^
-
-.. currentmodule:: scikits.statsmodels.sandbox.regression.anova_nistcertified
-
-The following two ANOVA functions are fully tested against the NIST test data
-for balanced one-way ANOVA. ``anova_oneway`` follows the same pattern as the
-oneway anova function in scipy.stats but with higher precision for badly
-scaled problems. ``anova_ols`` produces the same results as the one way anova
-however using the OLS model class. It also verifies against the NIST tests,
-with some problems in the worst scaled cases. It shows how to do simple ANOVA
-using statsmodels in three lines and is also best taken as a recipe.
-
-
-.. autosummary::
- :toctree: generated/
-
- anova_oneway
- anova_ols
-
-
-The following are helper functions for working with dummy variables and
-generating ANOVA results with OLS. They are best considered as recipes since
-they were written with a specific use in mind. These function will eventually
-be rewritten or reorganized.
-
-.. currentmodule:: scikits.statsmodels.sandbox.regression
-
-.. autosummary::
- :toctree: generated/
-
- try_ols_anova.data2dummy
- try_ols_anova.data2groupcont
- try_ols_anova.data2proddummy
- try_ols_anova.dropname
- try_ols_anova.form2design
-
-The following are helper functions for group statistics where groups are
-defined by a label array. The qualifying comments for the previous group
-apply also to this group of functions.
-
-
-.. autosummary::
- :toctree: generated/
-
- try_catdata.cat2dummy
- try_catdata.convertlabels
- try_catdata.groupsstats_1d
- try_catdata.groupsstats_dummy
- try_catdata.groupstatsbin
- try_catdata.labelmeanfilter
- try_catdata.labelmeanfilter_nd
- try_catdata.labelmeanfilter_str
-
-Additional to these functions, sandbox regression still contains several
-examples, that are illustrative of the use of the regression models of
-statsmodels.
-
-
-
-Systems of Regression Equations and Simultaneous Equations
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The following are for fitting systems of equations models. Though the returned
-parameters have been verified as accurate, this code is still very
-experimental, and the usage of the models will very likely change significantly
-before they are added to the main codebase.
-
-.. currentmodule:: scikits.statsmodels.sandbox.sysreg
-
-.. autosummary::
- :toctree: generated/
-
- SUR
- Sem2SLS
-
-Miscellaneous
-^^^^^^^^^^^^^
- .. currentmodule:: scikits.statsmodels.sandbox.tools.tools_tsa
-
-
-Tools for Time Series Analysis
-""""""""""""""""""""""""""""""
-
-nothing left in here
-
-
-Tools: Principal Component Analysis
-"""""""""""""""""""""""""""""""""""
-
-.. currentmodule:: scikits.statsmodels.sandbox.tools.tools_pca
-
-.. autosummary::
- :toctree: generated/
-
- pca
- pcasvd
-
-
-
-Graphics
-""""""""
-
-.. currentmodule:: scikits.statsmodels.sandbox
-
-.. autosummary::
- :toctree: generated/
-
- graphics.qqplot
-
-Descriptive Statistics Printing
-"""""""""""""""""""""""""""""""
-
-.. currentmodule:: scikits.statsmodels.sandbox
-
-.. autosummary::
- :toctree: generated/
-
- descstats.sign_test
- descstats.descstats
-
-
-
-
-Original stats.models
-^^^^^^^^^^^^^^^^^^^^^
-
-None of these are fully working. The formula framework is used by cox and
-mixed.
-
-**Mixed Effects Model with Repeated Measures using an EM Algorithm**
-
-:mod:`scikits.statsmodels.sandbox.mixed`
-
-
-**Cox Proportional Hazards Model**
-
-:mod:`scikits.statsmodels.sandbox.cox`
-
-**Generalized Additive Models**
-
-:mod:`scikits.statsmodels.sandbox.gam`
-
-**Formula**
-
-:mod:`scikits.statsmodels.sandbox.formula`
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/stats.rst b/statsmodels/scikits/statsmodels/docs/source/stats.rst
deleted file mode 100644
index fc8b31f..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/stats.rst
+++ /dev/null
@@ -1,186 +0,0 @@
-.. currentmodule:: scikits.statsmodels.stats
-
-.. _stats:
-
-
-Statistics :mod:`stats`
-=======================
-
-Introduction
-------------
-
-This section collects various statistical tests and tools.
-Some can be used independently of any models, some are intended as extension to the
-models and model results.
-
-API Warning: The functions and objects in this category are spread out in various modules
-and might still be moved around.
-
-
-
-.. _stattools:
-
-
-Residual Diagnostics and Specification Tests
---------------------------------------------
-
-.. currentmodule:: scikits.statsmodels.stats.stattools
-
-.. autosummary::
- :toctree: generated/
-
- durbin_watson
- jarque_bera
- omni_normtest
-
-.. currentmodule:: scikits.statsmodels.sandbox.stats.diagnostic
-
-.. autosummary::
- :toctree: generated/
-
- acorr_ljungbox
- acorr_lm
-
- breaks_cusumolsresid
- breaks_hansen
- CompareCox
- CompareJ
- compare_cox
- compare_j
- het_breushpagan
- HetGoldfeldQuandt
- het_goldfeldquandt
- het_goldfeldquandt2
- het_white
- unitroot_adf
- neweywestcov
- recursive_olsresiduals
- recursive_olsresiduals2
-
-See also the notes on :ref:`notes on regression diagnostics `
-
-
-
-Goodness of Fit Tests and Measures
-----------------------------------
-
- some tests for goodness of fit for univariate distributions
-
-.. currentmodule:: scikits.statsmodels.stats.gof
-
-.. autosummary::
- :toctree: generated/
-
- powerdiscrepancy
- gof_chisquare_discrete
- gof_binning_discrete
-
-
-
-Non-Parametric Tests
---------------------
-
-.. currentmodule:: scikits.statsmodels.sandbox.stats.runs
-
-.. autosummary::
- :toctree: generated/
-
- mcnemar
- median_test_ksample
- runstest_1samp
- runstest_2samp
- cochran_q
- Runs
-
-
-Multiple Tests and Multiple Comparison Procedures
--------------------------------------------------
-
-`multipletests` is a function for p-value correction, which also includes p-value
-correction based on fdr in `fdrcorrection`.
-`tukeyhsd` performs simulatenous testing for the comparison of (independent) means.
-These three functions are verified.
-GroupsStats and MultiComparison are convenience classes to multiple comparisons similar
-to one way ANOVA, but still in developement
-
-.. currentmodule:: scikits.statsmodels.sandbox.stats.multicomp
-
-.. autosummary::
- :toctree: generated/
-
- multipletests
- fdrcorrection0
- tukeyhsd
-
- GroupsStats
- MultiComparison
-
-The following functions are not (yet) public (here for my own benefit, JP)
-
-.. currentmodule:: scikits.statsmodels.sandbox.stats.multicomp
-
-.. autosummary::
- :toctree: generated/
-
- varcorrection_pairs_unbalanced
- varcorrection_pairs_unequal
- varcorrection_unbalanced
- varcorrection_unequal
-
- StepDown
- catstack
- ccols
- compare_ordered
- distance_st_range
- ecdf
- get_tukeyQcrit
- homogeneous_subsets
- line
- maxzero
- maxzerodown
- mcfdr
- qcrit
- randmvn
- rankdata
- rejectionline
- set_partition
- set_remove_subs
- tiecorrect
-
-
-Basic Statistics and t-Tests with frequency weights
----------------------------------------------------
-
-.. currentmodule:: scikits.statsmodels.stats.weightstats
-
-.. autosummary::
- :toctree: generated/
-
- CompareMeans
- DescrStatsW
- tstat_generic
-
-
-Moment Helpers
---------------
-
-These are utility functions to convert between central and non-central moments, skew,
-kurtosis and cummulants.
-
-.. currentmodule:: scikits.statsmodels.stats.moment_helpers
-
-.. autosummary::
- :toctree: generated/
-
- cum2mc
- mc2mnc
- mc2mvsk
- mnc2cum
- mnc2mc
- mnc2mvsk
- mvsk2mc
- mvsk2mnc
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/tools.rst b/statsmodels/scikits/statsmodels/docs/source/tools.rst
deleted file mode 100644
index 6d05004..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/tools.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-.. currentmodule:: scikits.statsmodels.tools.tools
-
-
-.. _tools:
-
-Tools
-=====
-
-Module Reference
-----------------
-
-.. autosummary::
- :toctree: generated/
-
- add_constant
-
-The following are mostly helper functions that are not separately tested or
-insufficiently tested.
-
-.. autosummary::
- :toctree: generated/
-
- categorical
- ECDF
- clean0
- fullrank
- isestimable
- monotone_fn_inverter
- rank
- recipr
- recipr0
- unsqueeze
diff --git a/statsmodels/scikits/statsmodels/docs/source/tsa.rst b/statsmodels/scikits/statsmodels/docs/source/tsa.rst
deleted file mode 100644
index 8f4801e..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/tsa.rst
+++ /dev/null
@@ -1,216 +0,0 @@
-.. currentmodule:: scikits.statsmodels.tsa
-
-
-.. _tsa:
-
-
-Time Series analysis :mod:`tsa`
-===============================
-
-:mod:`scikits.statmodels.tsa` contains model classes and functions that are useful
-for time series analysis. This currently includes univariate autoregressive models (AR),
-vector autoregressive models (VAR) and univariate autoregressive moving average models
-(ARMA). It also includes descriptive statistics for time series, for example autocorrelation, partial
-autocorrelation function and periodogram, as well as the corresponding theoretical properties
-of ARMA or related processes. It also includes methods to work with autoregressive and
-moving average lag-polynomials.
-Additionally, related statistical tests and some useful helper functions are available.
-
-Estimation is either done by exact or conditional Maximum Likelihood or conditional
-least-squares, either using Kalman Filter or direct filters.
-
-Currently, functions and classes have to be imported from the corresponding module, but
-the main classes will be made available in the statsmodels.tsa namespace. The module
-structure is within scikits.statsmodels.tsa is
-
- - stattools : empirical properties and tests, acf, pacf, granger-causality,
- adf unit root test, ljung-box test and others.
- - ar_model : univariate autoregressive process, estimation with conditional
- and exact maximum likelihood and conditional least-squares
- - arima_model : univariate ARMA process, estimation with conditional
- and exact maximum likelihood and conditional least-squares
- - vector_ar, var : vector autoregressive process (VAR) estimation models,
- impulse response analysis, forecast error variance decompositions, and data
- visualization tools
- - kalmanf : estimation classes for ARMA and other models with exact MLE using
- Kalman Filter
- - arma_process : properties of arma processes with given parameters, this
- includes tools to convert between ARMA, MA and AR representation as well as
- acf, pacf, spectral density, impulse response function and similar
- - sandbox.tsa.fftarma : similar to arma_process but working in frequency domain
- - tsatools : additional helper functions, to create arrays of lagged variables,
- construct regressors for trend, detrend and similar.
- - filters : helper function for filtering time series
-
-
-
-Some additional functions that are also useful for time series analysis are in
-other parts of statsmodels, for example additional statistical tests.
-
-Some related functions are also available in matplotlib, nitime, and
-scikits.talkbox. Those functions are designed more for the use in signal
-processing where longer time series are available and work more often in the
-frequency domain.
-
-
-.. currentmodule:: scikits.statsmodels.tsa
-
-
-Descriptive Statistics and Tests
-""""""""""""""""""""""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- stattools.acovf
- stattools.acf
- stattools.pacf
- stattools.pacf_yw
- stattools.pacf_ols
- stattools.ccovf
- stattools.ccf
- stattools.periodogram
- stattools.adfuller
- stattools.q_stat
- stattools.grangercausalitytests
- stattools.levinson_durbin
-
-Estimation
-""""""""""
-
-The following are the main estimation classes, which can be accessed through
-scikits.statsmodels.tsa.api and their result classes
-
-Univariate Autogressive Processes (AR)
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. currentmodule:: scikits.statsmodels.tsa
-
-.. autosummary::
- :toctree: generated/
-
- ar_model.AR
- ar_model.ARResults
-
-
-Autogressive Moving-Average Processes (ARMA) and Kalman Filter
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. currentmodule:: scikits.statsmodels.tsa
-
-.. autosummary::
- :toctree: generated/
-
- arima_model.ARMA
- arima_model.ARMAResults
- kalmanf.kalmanfilter.KalmanFilter
-
-Vector Autogressive Processes (VAR)
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. autosummary::
- :toctree: generated/
-
- vector_ar.var_model.VAR
- vector_ar.var_model.VARResults
- vector_ar.dynamic.DynamicVAR
-
-.. seealso:: :ref:`VAR documentation `
-
-.. currentmodule:: scikits.statsmodels.tsa
-
-Vector Autogressive Processes (VAR)
-"""""""""""""""""""""""""""""""""""
-
-Besides estimation, several process properties and additional results after
-estimation are available for vector autoregressive processes.
-
-.. autosummary::
- :toctree: generated/
-
- vector_ar.var_model.VAR
- vector_ar.var_model.VARProcess
- vector_ar.var_model.VARResults
- vector_ar.irf.IRAnalysis
- vector_ar.var_model.FEVD
- vector_ar.dynamic.DynamicVAR
-
-.. seealso:: :ref:`VAR documentation `
-
-ARMA Process
-""""""""""""
-
-The following are tools to work with the theoretical properties of an ARMA
-process for given lag-polynomials.
-
-.. autosummary::
- :toctree: generated/
-
- arima_process.ArmaProcess
- arima_process.ar2arma
- arima_process.arma2ar
- arima_process.arma2ma
- arima_process.arma_acf
- arima_process.arma_acovf
- arima_process.arma_generate_sample
- arima_process.arma_impulse_response
- arima_process.arma_pacf
- arima_process.arma_periodogram
- arima_process.deconvolve
- arima_process.index2lpol
- arima_process.lpol2index
- arima_process.lpol_fiar
- arima_process.lpol_fima
- arima_process.lpol_sdiff
-
-.. currentmodule:: scikits.statsmodels
-
-.. autosummary::
- :toctree: generated/
-
- sandbox.tsa.fftarma.ArmaFft
-
-.. currentmodule:: scikits.statsmodels.tsa
-
-Other Time Series Filters
-"""""""""""""""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- filters.bkfilter
- filters.hpfilter
- filters.arfilter
- filters.cffilter
- filters.miso_lfilter
- filters.filtertools.fftconvolve3
- filters.filtertools.fftconvolveinv
-
-
-TSA Tools
-"""""""""
-
-.. autosummary::
- :toctree: generated/
-
- tsatools.add_constant
- tsatools.add_trend
- tsatools.detrend
- tsatools.lagmat
- tsatools.lagmat2ds
-
-VARMA Process
-"""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- varma_process.VarmaPoly
-
-Interpolation
-"""""""""""""
-
-.. autosummary::
- :toctree: generated/
-
- interp.denton.dentonm
diff --git a/statsmodels/scikits/statsmodels/docs/source/tsastats.rst.TXT b/statsmodels/scikits/statsmodels/docs/source/tsastats.rst.TXT
deleted file mode 100644
index 053f9f3..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/tsastats.rst.TXT
+++ /dev/null
@@ -1,22 +0,0 @@
-.. currentmodule:: scikits.statsmodels.tsa.tsatools
-
-Time Series Analysis
-====================
-
-These are some of the helper functions for doing time series analysis. First
-we can load some a some data from the US Macro Economy 1959:Q1 - 2009:Q3. ::
-
- >>> data = sm.datasets.macrodata.load()
-
-The macro dataset is a structured array. ::
-
- >>> data = data.data[['year','quarter','realgdp','tbilrate','cpi','unemp']]
-
-We can add a lag like so ::
-
- >>> data = sm.tsa.add_lag(data, 'realgdp', lags=2)
-
-TODO:
--scikits.timeseries
--link in to var docs
-
diff --git a/statsmodels/scikits/statsmodels/docs/source/vector_ar.rst b/statsmodels/scikits/statsmodels/docs/source/vector_ar.rst
deleted file mode 100644
index 61d64f8..0000000
--- a/statsmodels/scikits/statsmodels/docs/source/vector_ar.rst
+++ /dev/null
@@ -1,465 +0,0 @@
-:orphan:
-
-.. currentmodule:: scikits.statsmodels.tsa.vector_ar.var_model
-
-.. _var:
-
-Vector Autoregressions :mod:`tsa.vector_ar`
-===========================================
-
-VAR(p) processes
-----------------
-
-We are interested in modeling a :math:`T \times K` multivariate time series
-:math:`Y`, where :math:`T` denotes the number of observations and :math:`K` the
-number of variables. One way of estimating relationships between the time series
-and their lagged values is the *vector autoregression process*:
-
-.. math::
-
- Y_t = A_1 Y_{t-1} + \ldots + A_p Y_{t-p} + u_t
-
- u_t \sim {\sf Normal}(0, \Sigma_u)
-
-where :math:`A_i` is a :math:`K \times K` coefficient matrix.
-
-We follow in large part the methods and notation of `Lutkepohl (2005)
-`__,
-which we will not develop here.
-
-Model fitting
-~~~~~~~~~~~~~
-
-.. note::
-
- The classes referenced below are accessible via the
- :mod:`scikits.statsmodels.tsa.api` module.
-
-To estimate a VAR model, one must first create the model using an `ndarray` of
-homogeneous or structured dtype. When using a structured or record array, the
-class will use the passed variable names. Otherwise they can be passed
-explicitly:
-
-::
-
- # some example data
- >>> mdata = sm.datasets.macrodata.load().data
- >>> mdata = mdata[['realgdp','realcons','realinv']]
- >>> names = mdata.dtype.names
- >>> data = mdata.view((float,3))
- >>> data = np.diff(np.log(data), axis=0)
-
- >>> model = VAR(data, names=names)
-
-.. note::
-
- The :class:`VAR` class assumes that the passed time series are
- stationary. Non-stationary or trending data can often be transformed to be
- stationary by first-differencing or some other method. For direct analysis of
- non-stationary time series, a standard stable VAR(p) model is not
- appropriate.
-
-To actually do the estimation, call the `fit` method with the desired lag
-order. Or you can have the model select a lag order based on a standard
-information criterion (see below):
-
-::
-
- >>> results = model.fit(2)
-
- >>> results.summary()
-
- Summary of Regression Results
- ==================================
- Model: VAR
- Method: OLS
- Date: Fri, 08, Jul, 2011
- Time: 11:30:22
- --------------------------------------------------------------------
- No. of Equations: 3.00000 BIC: -27.5830
- Nobs: 200.000 HQIC: -27.7892
- Log likelihood: 1962.57 FPE: 7.42129e-13
- AIC: -27.9293 Det(Omega_mle): 6.69358e-13
- --------------------------------------------------------------------
- Results for equation realgdp
- ==============================================================================
- coefficient std. error t-stat prob
- ------------------------------------------------------------------------------
- const 0.001527 0.001119 1.365 0.174
- L1.realgdp -0.279435 0.169663 -1.647 0.101
- L1.realcons 0.675016 0.131285 5.142 0.000
- L1.realinv 0.033219 0.026194 1.268 0.206
- L2.realgdp 0.008221 0.173522 0.047 0.962
- L2.realcons 0.290458 0.145904 1.991 0.048
- L2.realinv -0.007321 0.025786 -0.284 0.777
- ==============================================================================
-
- Results for equation realcons
- ==============================================================================
- coefficient std. error t-stat prob
- ------------------------------------------------------------------------------
- const 0.005460 0.000969 5.634 0.000
- L1.realgdp -0.100468 0.146924 -0.684 0.495
- L1.realcons 0.268640 0.113690 2.363 0.019
- L1.realinv 0.025739 0.022683 1.135 0.258
- L2.realgdp -0.123174 0.150267 -0.820 0.413
- L2.realcons 0.232499 0.126350 1.840 0.067
- L2.realinv 0.023504 0.022330 1.053 0.294
- ==============================================================================
-
- Results for equation realinv
- ==============================================================================
- coefficient std. error t-stat prob
- ------------------------------------------------------------------------------
- const -0.023903 0.005863 -4.077 0.000
- L1.realgdp -1.970974 0.888892 -2.217 0.028
- L1.realcons 4.414162 0.687825 6.418 0.000
- L1.realinv 0.225479 0.137234 1.643 0.102
- L2.realgdp 0.380786 0.909114 0.419 0.676
- L2.realcons 0.800281 0.764416 1.047 0.296
- L2.realinv -0.124079 0.135098 -0.918 0.360
- ==============================================================================
-
- Correlation matrix of residuals
- realgdp realcons realinv
- realgdp 1.000000 0.603316 0.750722
- realcons 0.603316 1.000000 0.131951
- realinv 0.750722 0.131951 1.000000
-
-Several ways to visualize the data using `matplotlib` are available.
-
-Plotting input time series:
-
-::
-
- >>> model.plot()
-
-.. plot:: plots/var_plot_input.py
-
-Plotting time series autocorrelation function:
-
-::
-
- >>> model.plot_acorr()
-
-.. plot:: plots/var_plot_acorr.py
-
-
-Lag order selection
-~~~~~~~~~~~~~~~~~~~
-
-Choice of lag order can be a difficult problem. Standard analysis employs
-likelihood test or information criteria-based order selection. We have
-implemented the latter, accessable through the :class:`VAR` class:
-
-::
-
- >>> model.select_order(15)
- VAR Order Selection
- ======================================================
- aic bic fpe hqic
- ------------------------------------------------------
- 0 -27.64 -27.59 9.960e-13 -27.62
- 1 -27.94 -27.74* 7.372e-13 -27.86*
- 2 -27.93 -27.58 7.421e-13 -27.79
- 3 -27.92 -27.43 7.476e-13 -27.72
- 4 -27.94 -27.29 7.328e-13 -27.68
- 5 -27.97 -27.17 7.107e-13 -27.65
- 6 -27.94 -26.99 7.324e-13 -27.56
- 7 -27.93 -26.82 7.418e-13 -27.48
- 8 -27.93 -26.66 7.475e-13 -27.41
- 9 -27.98* -26.56 7.101e-13* -27.40
- 10 -27.93 -26.36 7.458e-13 -27.29
- 11 -27.88 -26.15 7.850e-13 -27.18
- 12 -27.84 -25.94 8.271e-13 -27.07
- 13 -27.80 -25.74 8.594e-13 -26.97
- 14 -27.79 -25.57 8.733e-13 -26.89
- 15 -27.81 -25.43 8.599e-13 -26.85
- ======================================================
- * Minimum
-
- {'aic': 9, 'bic': 1, 'fpe': 9, 'hqic': 1}
-
-When calling the `fit` function, one can pass a maximum number of lags and the
-order criterion to use for order selection:
-
-::
-
- >>> results = model.fit(maxlags=15, ic='aic')
-
-Forecasting
-~~~~~~~~~~~
-
-The linear predictor is the optimal h-step ahead forecast in terms of
-mean-squared error:
-
-.. math::
-
- y_t(h) = \nu + A_1 y_t(h − 1) + \cdots + A_p y_t(h − p)
-
-We can use the `forecast` function to produce this forecast. Note that we have
-to specify the "initial value" for the forecast:
-
-::
-
- >>> results.forecast(data[lag_order:], 5)
- array([[ 0.00503, 0.00537, 0.00512],
- [ 0.00594, 0.00785, -0.00302],
- [ 0.00663, 0.00764, 0.00393],
- [ 0.00732, 0.00797, 0.00657],
- [ 0.00733, 0.00809, 0.0065 ]])
-
-The `forecast_interval` function will produce the above forecast along with
-asymptotic standard errors. These can be visualized using the `plot_forecast`
-function:
-
-.. plot:: plots/var_plot_forecast.py
-
-Impulse Response Analysis
--------------------------
-
-*Impulse responses* are of interest in econometric studies: they are the
-estimated responses to a unit impulse in one of the variables. They are computed
-in practice using the MA(:math:`\infty`) representation of the VAR(p) process:
-
-.. math::
-
- Y_t = \mu + \sum_{i=0}^\infty \Phi_i u_{t-i}
-
-We can perform an impulse response analysis by calling the `irf` function on a
-`VARResults` object:
-
-::
-
- >>> irf = results.irf(10)
-
-These can be visualized using the `plot` function, in either orthogonalized or
-non-orthogonalized form. Asymptotic standard errors are plotted by default at
-the 95% significance level, which can be modified by the user.
-
-.. note::
-
- Orthogonalization is done using the Cholesky decomposition of the estimated
- error covariance matrix :math:`\hat \Sigma_u` and hence interpretations may
- change depending on variable ordering.
-
-::
-
- >>> irf.plot(orth=False)
-
-.. plot:: plots/var_plot_irf.py
-
-Note the `plot` function is flexible and can plot only variables of interest if
-so desired:
-
-::
-
- >>> irf.plot(impulse='realgdp')
-
-The cumulative effects :math:`\Psi_n = \sum_{i=0}^n \Phi_i` can be plotted with
-the long run effects as follows:
-
-::
-
- >>> irf.plot_cum_effects(orth=False)
-
-.. plot:: plots/var_plot_irf_cum.py
-
-Forecast Error Variance Decomposition (FEVD)
---------------------------------------------
-
-Forecast errors of component j on k in an i-step ahead forecast can be
-decomposed using the orthogonalized impulse responses :math:`\Theta_i`:
-
-.. math::
-
- \omega_{jk, i} = \sum_{i=0}^{h-1} (e_j^\prime \Theta_i e_k)^2 / \mathrm{MSE}_j(h)
-
- \mathrm{MSE}_j(h) = \sum_{i=0}^{h-1} e_j^\prime \Phi_i \Sigma_u \Phi_i^\prime e_j
-
-These are computed via the `fevd` function up through a total number of steps ahead:
-
-::
-
- >>> fevd = results.fevd(5)
-
- >>> fevd.summary()
- FEVD for realgdp
- realgdp realcons realinv
- 0 1.000000 0.000000 0.000000
- 1 0.863082 0.130030 0.006888
- 2 0.816610 0.176750 0.006639
- 3 0.808872 0.181086 0.010042
- 4 0.803461 0.185049 0.011490
-
- FEVD for realcons
- realgdp realcons realinv
- 0 0.363990 0.636010 0.000000
- 1 0.369771 0.623928 0.006301
- 2 0.367706 0.616831 0.015463
- 3 0.367450 0.615517 0.017033
- 4 0.367197 0.614903 0.017901
-
- FEVD for realinv
- realgdp realcons realinv
- 0 0.563584 0.161984 0.274432
- 1 0.471910 0.307875 0.220215
- 2 0.463240 0.328467 0.208292
- 3 0.462148 0.328914 0.208938
- 4 0.461211 0.330359 0.208430
-
-They can also be visualized through the returned :class:`FEVD` object:
-
-::
-
- >>> results.fevd(20).plot()
-
-.. plot:: plots/var_plot_fevd.py
-
-Statistical tests
------------------
-
-A number of different methods are provided to carry out hypothesis tests about
-the model results and also the validity of the model assumptions (normality,
-whiteness / "iid-ness" of errors, etc.).
-
-Granger causality
-~~~~~~~~~~~~~~~~~
-
-One is often interested in whether a variable or group of variables is "causal"
-for another variable, for some definition of "causal". In the context of VAR
-models, one can say that a set of variables are Granger-causal within one of the
-VAR equations. We will not detail the mathematics or definition of Granger
-causality, but leave it to the reader. The :class:`VARResults` object has the
-`test_causality` method for performing either a Wald (:math:`\chi^2`) test or an
-F-test.
-
-::
-
- >>> est.test_causality('realgdp', ['realinv', 'realcons'], kind='f')
- Granger causality f-test
- =============================================================
- Test statistic Critical Value p-value df
- -------------------------------------------------------------
- 9.904841 2.387325 0.000 (4, 579)
- =============================================================
- H_0: ['realinv', 'realcons'] do not Granger-cause realgdp
- Conclusion: reject H_0 at 5.00% significance level
-
- {'conclusion': 'reject',
- 'crit_value': 2.3873247573799259,
- 'df': (4, 579),
- 'pvalue': 9.3171720876318303e-08,
- 'signif': 0.050000000000000003,
- 'statistic': 9.9048411456983949}
-
-Normality
-~~~~~~~~~
-
-Whiteness of residuals
-~~~~~~~~~~~~~~~~~~~~~~
-
-Dynamic Vector Autoregressions
-------------------------------
-
-.. note::
-
- To use this functionality, `pandas `__
- must be installed. See the `pandas documentation
- `__ for more information on the below data
- structures.
-
-One is often interested in estimating a moving-window regression on time series
-data for the purposes of making forecasts throughout the data sample. For
-example, we may wish to produce the series of 2-step-ahead forecasts produced by
-a VAR(p) model estimated at each point in time.
-
-::
-
- >>> data
-
- Index: 500 entries , 2000-01-03 00:00:00 to 2001-11-30 00:00:00
- A 500 non-null values
- B 500 non-null values
- C 500 non-null values
- D 500 non-null values
-
- >>> var = DynamicVAR(data, lag_order=2, window_type='expanding')
-
-The estimated coefficients for the dynamic model are returned as a
-:class:`pandas.WidePanel` object, which can allow you to easily examine, for
-example, all of the model coefficients by equation or by date:
-
-::
-
- >>> var.coefs
-
- Dimensions: 9 (items) x 489 (major) x 4 (minor)
- Items: L1.A to intercept
- Major axis: 2000-01-18 00:00:00 to 2001-11-30 00:00:00
- Minor axis: A to D
-
- # all estimated coefficients for equation A
- >>> var.coefs.minor_xs('A').info()
- Index: 489 entries , 2000-01-18 00:00:00 to 2001-11-30 00:00:00
- Data columns:
- L1.A 489 non-null values
- L1.B 489 non-null values
- L1.C 489 non-null values
- L1.D 489 non-null values
- L2.A 489 non-null values
- L2.B 489 non-null values
- L2.C 489 non-null values
- L2.D 489 non-null values
- intercept 489 non-null values
- dtype: float64(9)
-
- # coefficients on 11/30/2001
- >>> var.coefs.major_xs(datetime(2001, 11, 30)).T
- A B C D
- L1.A 0.9567 -0.07389 0.0588 -0.02848
- L1.B -0.00839 0.9757 -0.004945 0.005938
- L1.C -0.01824 0.1214 0.8875 0.01431
- L1.D 0.09964 0.02951 0.05275 1.037
- L2.A 0.02481 0.07542 -0.04409 0.06073
- L2.B 0.006359 0.01413 0.02667 0.004795
- L2.C 0.02207 -0.1087 0.08282 -0.01921
- L2.D -0.08795 -0.04297 -0.06505 -0.06814
- intercept 0.07778 -0.283 -0.1009 -0.6426
-
-Dynamic forecasts for a given number of steps ahead can be produced using the
-`forecast` function and return a :class:`pandas.DataMatrix` object:
-
-::
-
- >>> In [76]: var.forecast(2)
- A B C D
-
- 2001-11-23 00:00:00 -6.661 43.18 33.43 -23.71
- 2001-11-26 00:00:00 -5.942 43.58 34.04 -22.13
- 2001-11-27 00:00:00 -6.666 43.64 33.99 -22.85
- 2001-11-28 00:00:00 -6.521 44.2 35.34 -24.29
- 2001-11-29 00:00:00 -6.432 43.92 34.85 -26.68
- 2001-11-30 00:00:00 -5.445 41.98 34.87 -25.94
-
-The forecasts can be visualized using `plot_forecast`:
-
-::
-
- >>> var.plot_forecast(2)
-
-Class Reference
----------------
-
-.. currentmodule:: scikits.statsmodels.tsa.vector_ar
-
-.. autosummary::
- :toctree: generated/
-
- var_model.VAR
- var_model.VARProcess
- var_model.VARResults
- irf.IRAnalysis
- var_model.FEVD
- dynamic.DynamicVAR
-
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/LICENSE.txt b/statsmodels/scikits/statsmodels/docs/sphinxext/LICENSE.txt
deleted file mode 100644
index 47f627b..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/LICENSE.txt
+++ /dev/null
@@ -1,97 +0,0 @@
--------------------------------------------------------------------------------
- The files
- - numpydoc.py
- - autosummary.py
- - autosummary_generate.py
- - docscrape.py
- - docscrape_sphinx.py
- - phantom_import.py
- have the following license:
-
-Copyright (C) 2008 Stefan van der Walt , Pauli Virtanen
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
-INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
-IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
--------------------------------------------------------------------------------
- The files
- - compiler_unparse.py
- - comment_eater.py
- - traitsdoc.py
- have the following license:
-
-This software is OSI Certified Open Source Software.
-OSI Certified is a certification mark of the Open Source Initiative.
-
-Copyright (c) 2006, Enthought, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- * Neither the name of Enthought, Inc. nor the names of its contributors may
- be used to endorse or promote products derived from this software without
- specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
--------------------------------------------------------------------------------
- The files
- - only_directives.py
- - plot_directive.py
- originate from Matplotlib (http://matplotlib.sf.net/) which has
- the following license:
-
-Copyright (c) 2002-2008 John D. Hunter; All Rights Reserved.
-
-1. This LICENSE AGREEMENT is between John D. Hunter (“JDHâ€), and the Individual or Organization (“Licenseeâ€) accessing and otherwise using matplotlib software in source or binary form and its associated documentation.
-
-2. Subject to the terms and conditions of this License Agreement, JDH hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use matplotlib 0.98.3 alone or in any derivative version, provided, however, that JDH’s License Agreement and JDH’s notice of copyright, i.e., “Copyright (c) 2002-2008 John D. Hunter; All Rights Reserved†are retained in matplotlib 0.98.3 alone or in any derivative version prepared by Licensee.
-
-3. In the event Licensee prepares a derivative work that is based on or incorporates matplotlib 0.98.3 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to matplotlib 0.98.3.
-
-4. JDH is making matplotlib 0.98.3 available to Licensee on an “AS IS†basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.98.3 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB 0.98.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING MATPLOTLIB 0.98.3, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material breach of its terms and conditions.
-
-7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between JDH and Licensee. This License Agreement does not grant permission to use JDH trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party.
-
-8. By copying, installing or otherwise using matplotlib 0.98.3, Licensee agrees to be bound by the terms and conditions of this License Agreement.
-
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/MANIFEST.in b/statsmodels/scikits/statsmodels/docs/sphinxext/MANIFEST.in
deleted file mode 100644
index fdae957..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/MANIFEST.in
+++ /dev/null
@@ -1,2 +0,0 @@
-recursive-include tests *.py
-include *.txt
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/README.txt b/statsmodels/scikits/statsmodels/docs/sphinxext/README.txt
deleted file mode 100644
index d160a4a..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/README.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-=====================================
-numpydoc -- Numpy's Sphinx extensions
-=====================================
-
-Numpy's documentation uses several custom extensions to Sphinx. These
-are shipped in this ``numpydoc`` package, in case you want to make use
-of them in third-party projects.
-
-The following extensions are available:
-
- - ``numpydoc``: support for the Numpy docstring format in Sphinx, and add
- the code description directives ``np-function``, ``np-cfunction``, etc.
- that support the Numpy docstring syntax.
-
- - ``numpydoc.traitsdoc``: For gathering documentation about Traits attributes.
-
- - ``numpydoc.plot_directives``: Adaptation of Matplotlib's ``plot::``
- directive. Note that this implementation may still undergo severe
- changes or eventually be deprecated.
-
- - ``numpydoc.only_directives``: (DEPRECATED)
-
- - ``numpydoc.autosummary``: (DEPRECATED) An ``autosummary::`` directive.
- Available in Sphinx 0.6.2 and (to-be) 1.0 as ``sphinx.ext.autosummary``,
- and it the Sphinx 1.0 version is recommended over that included in
- Numpydoc.
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_console_highlighting.py b/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_console_highlighting.py
deleted file mode 100644
index dc5e6fd..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_console_highlighting.py
+++ /dev/null
@@ -1,114 +0,0 @@
-"""reST directive for syntax-highlighting ipython interactive sessions.
-
-XXX - See what improvements can be made based on the new (as of Sept 2009)
-'pycon' lexer for the python console. At the very least it will give better
-highlighted tracebacks.
-"""
-
-#-----------------------------------------------------------------------------
-# Needed modules
-
-# Standard library
-import re
-
-# Third party
-from pygments.lexer import Lexer, do_insertions
-from pygments.lexers.agile import (PythonConsoleLexer, PythonLexer,
- PythonTracebackLexer)
-from pygments.token import Comment, Generic
-
-from sphinx import highlighting
-
-#-----------------------------------------------------------------------------
-# Global constants
-line_re = re.compile('.*?\n')
-
-#-----------------------------------------------------------------------------
-# Code begins - classes and functions
-
-class IPythonConsoleLexer(Lexer):
- """
- For IPython console output or doctests, such as:
-
- .. sourcecode:: ipython
-
- In [1]: a = 'foo'
-
- In [2]: a
- Out[2]: 'foo'
-
- In [3]: print a
- foo
-
- In [4]: 1 / 0
-
- Notes:
-
- - Tracebacks are not currently supported.
-
- - It assumes the default IPython prompts, not customized ones.
- """
-
- name = 'IPython console session'
- aliases = ['ipython']
- mimetypes = ['text/x-ipython-console']
- input_prompt = re.compile("(In \[[0-9]+\]: )|( \.\.\.+:)")
- output_prompt = re.compile("(Out\[[0-9]+\]: )|( \.\.\.+:)")
- continue_prompt = re.compile(" \.\.\.+:")
- tb_start = re.compile("\-+")
-
- def get_tokens_unprocessed(self, text):
- pylexer = PythonLexer(**self.options)
- tblexer = PythonTracebackLexer(**self.options)
-
- curcode = ''
- insertions = []
- for match in line_re.finditer(text):
- line = match.group()
- input_prompt = self.input_prompt.match(line)
- continue_prompt = self.continue_prompt.match(line.rstrip())
- output_prompt = self.output_prompt.match(line)
- if line.startswith("#"):
- insertions.append((len(curcode),
- [(0, Comment, line)]))
- elif input_prompt is not None:
- insertions.append((len(curcode),
- [(0, Generic.Prompt, input_prompt.group())]))
- curcode += line[input_prompt.end():]
- elif continue_prompt is not None:
- insertions.append((len(curcode),
- [(0, Generic.Prompt, continue_prompt.group())]))
- curcode += line[continue_prompt.end():]
- elif output_prompt is not None:
- # Use the 'error' token for output. We should probably make
- # our own token, but error is typicaly in a bright color like
- # red, so it works fine for our output prompts.
- insertions.append((len(curcode),
- [(0, Generic.Error, output_prompt.group())]))
- curcode += line[output_prompt.end():]
- else:
- if curcode:
- for item in do_insertions(insertions,
- pylexer.get_tokens_unprocessed(curcode)):
- yield item
- curcode = ''
- insertions = []
- yield match.start(), Generic.Output, line
- if curcode:
- for item in do_insertions(insertions,
- pylexer.get_tokens_unprocessed(curcode)):
- yield item
-
-
-def setup(app):
- """Setup as a sphinx extension."""
-
- # This is only a lexer, so adding it below to pygments appears sufficient.
- # But if somebody knows that the right API usage should be to do that via
- # sphinx, by all means fix it here. At least having this setup.py
- # suppresses the sphinx warning we'd get without it.
- pass
-
-#-----------------------------------------------------------------------------
-# Register the extension as a valid pygments lexer
-highlighting.lexers['ipython'] = IPythonConsoleLexer()
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_directive.py b/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_directive.py
deleted file mode 100644
index 8db059a..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/ipython_directive.py
+++ /dev/null
@@ -1,884 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Sphinx directive to support embedded IPython code.
-
-This directive allows pasting of entire interactive IPython sessions, prompts
-and all, and their code will actually get re-executed at doc build time, with
-all prompts renumbered sequentially. It also allows you to input code as a pure
-python input by giving the argument python to the directive. The output looks
-like an interactive ipython section.
-
-To enable this directive, simply list it in your Sphinx ``conf.py`` file
-(making sure the directory where you placed it is visible to sphinx, as is
-needed for all Sphinx directives).
-
-By default this directive assumes that your prompts are unchanged IPython ones,
-but this can be customized. The configurable options that can be placed in
-conf.py are
-
-ipython_savefig_dir:
- The directory in which to save the figures. This is relative to the
- Sphinx source directory. The default is `html_static_path`.
-ipython_rgxin:
- The compiled regular expression to denote the start of IPython input
- lines. The default is re.compile('In \[(\d+)\]:\s?(.*)\s*'). You
- shouldn't need to change this.
-ipython_rgxout:
- The compiled regular expression to denote the start of IPython output
- lines. The default is re.compile('Out\[(\d+)\]:\s?(.*)\s*'). You
- shouldn't need to change this.
-ipython_promptin:
- The string to represent the IPython input prompt in the generated ReST.
- The default is 'In [%d]:'. This expects that the line numbers are used
- in the prompt.
-ipython_promptout:
-
- The string to represent the IPython prompt in the generated ReST. The
- default is 'Out [%d]:'. This expects that the line numbers are used
- in the prompt.
-
-ToDo
-----
-
-- Turn the ad-hoc test() function into a real test suite.
-- Break up ipython-specific functionality from matplotlib stuff into better
- separated code.
-
-Authors
--------
-
-- John D Hunter: orignal author.
-- Fernando Perez: refactoring, documentation, cleanups, port to 0.11.
-- VĂĄclavĹ milauer : Prompt generalizations.
-- Skipper Seabold, refactoring, cleanups, pure python addition
-"""
-
-#-----------------------------------------------------------------------------
-# Imports
-#-----------------------------------------------------------------------------
-
-# Stdlib
-import ast
-import cStringIO
-import os
-import re
-import sys
-import tempfile
-
-# To keep compatibility with various python versions
-try:
- from hashlib import md5
-except ImportError:
- from md5 import md5
-
-# Third-party
-import matplotlib
-import sphinx
-from docutils.parsers.rst import directives
-from docutils import nodes
-from sphinx.util.compat import Directive
-
-matplotlib.use('Agg')
-
-# Our own
-from IPython import Config, InteractiveShell
-from IPython.core.profiledir import ProfileDir
-from IPython.utils import io
-
-from pdb import set_trace
-
-#-----------------------------------------------------------------------------
-# Globals
-#-----------------------------------------------------------------------------
-# for tokenizing blocks
-COMMENT, INPUT, OUTPUT = range(3)
-
-#-----------------------------------------------------------------------------
-# Functions and class declarations
-#-----------------------------------------------------------------------------
-def block_parser(part, rgxin, rgxout, fmtin, fmtout):
- """
- part is a string of ipython text, comprised of at most one
- input, one ouput, comments, and blank lines. The block parser
- parses the text into a list of::
-
- blocks = [ (TOKEN0, data0), (TOKEN1, data1), ...]
-
- where TOKEN is one of [COMMENT | INPUT | OUTPUT ] and
- data is, depending on the type of token::
-
- COMMENT : the comment string
-
- INPUT: the (DECORATOR, INPUT_LINE, REST) where
- DECORATOR: the input decorator (or None)
- INPUT_LINE: the input as string (possibly multi-line)
- REST : any stdout generated by the input line (not OUTPUT)
-
-
- OUTPUT: the output string, possibly multi-line
- """
-
- block = []
- lines = part.split('\n')
- N = len(lines)
- i = 0
- decorator = None
- while 1:
-
- if i==N:
- # nothing left to parse -- the last line
- break
-
- line = lines[i]
- i += 1
- line_stripped = line.strip()
- if line_stripped.startswith('#'):
- block.append((COMMENT, line))
- continue
-
- if line_stripped.startswith('@'):
- # we're assuming at most one decorator -- may need to
- # rethink
- decorator = line_stripped
- continue
-
- # does this look like an input line?
- matchin = rgxin.match(line)
- if matchin:
- lineno, inputline = int(matchin.group(1)), matchin.group(2)
-
- # the ....: continuation string
- continuation = ' %s:'% ''.join(['.']*(len(str(lineno))+2))
- Nc = len(continuation)
- # input lines can continue on for more than one line, if
- # we have a '\' line continuation char or a function call
- # echo line 'print'. The input line can only be
- # terminated by the end of the block or an output line, so
- # we parse out the rest of the input line if it is
- # multiline as well as any echo text
-
- rest = []
- while i2:
- if debug:
- print '\n'.join(lines)
- else: #NOTE: this raises some errors, what's it for?
- #print 'INSERTING %d lines'%len(lines)
- self.state_machine.insert_input(
- lines, self.state_machine.input_lines.source(0))
-
- text = '\n'.join(lines)
- txtnode = nodes.literal_block(text, text)
- txtnode['language'] = 'ipython'
- #imgnode = nodes.image(figs)
-
- # cleanup
- self.teardown()
-
- return []#, imgnode]
-
-# Enable as a proper Sphinx directive
-def setup(app):
- setup.app = app
-
- app.add_directive('ipython', IpythonDirective)
- app.add_config_value('ipython_savefig_dir', None, True)
- app.add_config_value('ipython_rgxin',
- re.compile('In \[(\d+)\]:\s?(.*)\s*'), True)
- app.add_config_value('ipython_rgxout',
- re.compile('Out\[(\d+)\]:\s?(.*)\s*'), True)
- app.add_config_value('ipython_promptin', 'In [%d]:', True)
- app.add_config_value('ipython_promptout', 'Out[%d]:', True)
-
-
-# Simple smoke test, needs to be converted to a proper automatic test.
-def test():
-
- examples = [
- r"""
-In [9]: pwd
-Out[9]: '/home/jdhunter/py4science/book'
-
-In [10]: cd bookdata/
-/home/jdhunter/py4science/book/bookdata
-
-In [2]: from pylab import *
-
-In [2]: ion()
-
-In [3]: im = imread('stinkbug.png')
-
-@savefig mystinkbug.png width=4in
-In [4]: imshow(im)
-Out[4]:
-
-""",
- r"""
-
-In [1]: x = 'hello world'
-
-# string methods can be
-# used to alter the string
-@doctest
-In [2]: x.upper()
-Out[2]: 'HELLO WORLD'
-
-@verbatim
-In [3]: x.st
-x.startswith x.strip
-""",
- r"""
-
-In [130]: url = 'http://ichart.finance.yahoo.com/table.csv?s=CROX\
- .....: &d=9&e=22&f=2009&g=d&a=1&br=8&c=2006&ignore=.csv'
-
-In [131]: print url.split('&')
-['http://ichart.finance.yahoo.com/table.csv?s=CROX', 'd=9', 'e=22', 'f=2009', 'g=d', 'a=1', 'b=8', 'c=2006', 'ignore=.csv']
-
-In [60]: import urllib
-
-""",
- r"""\
-
-In [133]: import numpy.random
-
-@suppress
-In [134]: numpy.random.seed(2358)
-
-@doctest
-In [135]: numpy.random.rand(10,2)
-Out[135]:
-array([[ 0.64524308, 0.59943846],
- [ 0.47102322, 0.8715456 ],
- [ 0.29370834, 0.74776844],
- [ 0.99539577, 0.1313423 ],
- [ 0.16250302, 0.21103583],
- [ 0.81626524, 0.1312433 ],
- [ 0.67338089, 0.72302393],
- [ 0.7566368 , 0.07033696],
- [ 0.22591016, 0.77731835],
- [ 0.0072729 , 0.34273127]])
-
-""",
-
- r"""
-In [106]: print x
-jdh
-
-In [109]: for i in range(10):
- n
-.....: print i
- .....:
- .....:
-0
-1
-2
-3
-4
-5
-6
-7
-8
-9
-""",
-
- r"""
-
-In [144]: from pylab import *
-
-In [145]: ion()
-
-# use a semicolon to suppress the output
-@savefig test_hist.png width=4in
-In [151]: hist(np.random.randn(10000), 100);
-
-
-@savefig test_plot.png width=4in
-In [151]: plot(np.random.randn(10000), 'o');
- """,
-
- r"""
-# use a semicolon to suppress the output
-In [151]: plt.clf()
-
-@savefig plot_simple.png width=4in
-In [151]: plot([1,2,3])
-
-@savefig hist_simple.png width=4in
-In [151]: hist(np.random.randn(10000), 100);
-
-""",
- r"""
-# update the current fig
-In [151]: ylabel('number')
-
-In [152]: title('normal distribution')
-
-
-@savefig hist_with_text.png
-In [153]: grid(True)
-
- """,
- ]
- # skip local-file depending first example:
- examples = examples[1:]
-
- #ipython_directive.DEBUG = True # dbg
- #options = dict(suppress=True) # dbg
- options = dict()
- for example in examples:
- content = example.split('\n')
- ipython_directive('debug', arguments=None, options=options,
- content=content, lineno=0,
- content_offset=None, block_text=None,
- state=None, state_machine=None,
- )
-
-# Run test suite as a script
-if __name__=='__main__':
- if not os.path.isdir('_static'):
- os.mkdir('_static')
- test()
- print 'All OK? Check figures in _static/'
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/__init__.py b/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape.py b/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape.py
deleted file mode 100644
index be3cb4c..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape.py
+++ /dev/null
@@ -1,498 +0,0 @@
-"""Extract reference documentation from the NumPy source tree.
-
-"""
-
-import inspect
-import textwrap
-import re
-import pydoc
-from StringIO import StringIO
-from warnings import warn
-
-class Reader(object):
- """A line-based string reader.
-
- """
- def __init__(self, data):
- """
- Parameters
- ----------
- data : str
- String with lines separated by '\n'.
-
- """
- if isinstance(data,list):
- self._str = data
- else:
- self._str = data.split('\n') # store string as list of lines
-
- self.reset()
-
- def __getitem__(self, n):
- return self._str[n]
-
- def reset(self):
- self._l = 0 # current line nr
-
- def read(self):
- if not self.eof():
- out = self[self._l]
- self._l += 1
- return out
- else:
- return ''
-
- def seek_next_non_empty_line(self):
- for l in self[self._l:]:
- if l.strip():
- break
- else:
- self._l += 1
-
- def eof(self):
- return self._l >= len(self._str)
-
- def read_to_condition(self, condition_func):
- start = self._l
- for line in self[start:]:
- if condition_func(line):
- return self[start:self._l]
- self._l += 1
- if self.eof():
- return self[start:self._l+1]
- return []
-
- def read_to_next_empty_line(self):
- self.seek_next_non_empty_line()
- def is_empty(line):
- return not line.strip()
- return self.read_to_condition(is_empty)
-
- def read_to_next_unindented_line(self):
- def is_unindented(line):
- return (line.strip() and (len(line.lstrip()) == len(line)))
- return self.read_to_condition(is_unindented)
-
- def peek(self,n=0):
- if self._l + n < len(self._str):
- return self[self._l + n]
- else:
- return ''
-
- def is_empty(self):
- return not ''.join(self._str).strip()
-
-
-class NumpyDocString(object):
- def __init__(self, docstring, config={}):
- docstring = textwrap.dedent(docstring).split('\n')
-
- self._doc = Reader(docstring)
- self._parsed_data = {
- 'Signature': '',
- 'Summary': [''],
- 'Extended Summary': [],
- 'Parameters': [],
- 'Returns': [],
- 'Raises': [],
- 'Warns': [],
- 'Other Parameters': [],
- 'Attributes': [],
- 'Methods': [],
- 'See Also': [],
- 'Notes': [],
- 'Warnings': [],
- 'References': '',
- 'Examples': '',
- 'index': {}
- }
-
- self._parse()
-
- def __getitem__(self,key):
- return self._parsed_data[key]
-
- def __setitem__(self,key,val):
- if not self._parsed_data.has_key(key):
- warn("Unknown section %s" % key)
- else:
- self._parsed_data[key] = val
-
- def _is_at_section(self):
- self._doc.seek_next_non_empty_line()
-
- if self._doc.eof():
- return False
-
- l1 = self._doc.peek().strip() # e.g. Parameters
-
- if l1.startswith('.. index::'):
- return True
-
- l2 = self._doc.peek(1).strip() # ---------- or ==========
- return l2.startswith('-'*len(l1)) or l2.startswith('='*len(l1))
-
- def _strip(self,doc):
- i = 0
- j = 0
- for i,line in enumerate(doc):
- if line.strip(): break
-
- for j,line in enumerate(doc[::-1]):
- if line.strip(): break
-
- return doc[i:len(doc)-j]
-
- def _read_to_next_section(self):
- section = self._doc.read_to_next_empty_line()
-
- while not self._is_at_section() and not self._doc.eof():
- if not self._doc.peek(-1).strip(): # previous line was empty
- section += ['']
-
- section += self._doc.read_to_next_empty_line()
-
- return section
-
- def _read_sections(self):
- while not self._doc.eof():
- data = self._read_to_next_section()
- name = data[0].strip()
-
- if name.startswith('..'): # index section
- yield name, data[1:]
- elif len(data) < 2:
- yield StopIteration
- else:
- yield name, self._strip(data[2:])
-
- def _parse_param_list(self,content):
- r = Reader(content)
- params = []
- while not r.eof():
- header = r.read().strip()
- if ' : ' in header:
- arg_name, arg_type = header.split(' : ')[:2]
- else:
- arg_name, arg_type = header, ''
-
- desc = r.read_to_next_unindented_line()
- desc = dedent_lines(desc)
-
- params.append((arg_name,arg_type,desc))
-
- return params
-
-
- _name_rgx = re.compile(r"^\s*(:(?P\w+):`(?P[a-zA-Z0-9_.-]+)`|"
- r" (?P[a-zA-Z0-9_.-]+))\s*", re.X)
- def _parse_see_also(self, content):
- """
- func_name : Descriptive text
- continued text
- another_func_name : Descriptive text
- func_name1, func_name2, :meth:`func_name`, func_name3
-
- """
- items = []
-
- def parse_item_name(text):
- """Match ':role:`name`' or 'name'"""
- m = self._name_rgx.match(text)
- if m:
- g = m.groups()
- if g[1] is None:
- return g[3], None
- else:
- return g[2], g[1]
- raise ValueError("%s is not a item name" % text)
-
- def push_item(name, rest):
- if not name:
- return
- name, role = parse_item_name(name)
- items.append((name, list(rest), role))
- del rest[:]
-
- current_func = None
- rest = []
-
- for line in content:
- if not line.strip(): continue
-
- m = self._name_rgx.match(line)
- if m and line[m.end():].strip().startswith(':'):
- push_item(current_func, rest)
- current_func, line = line[:m.end()], line[m.end():]
- rest = [line.split(':', 1)[1].strip()]
- if not rest[0]:
- rest = []
- elif not line.startswith(' '):
- push_item(current_func, rest)
- current_func = None
- if ',' in line:
- for func in line.split(','):
- push_item(func, [])
- elif line.strip():
- current_func = line
- elif current_func is not None:
- rest.append(line.strip())
- push_item(current_func, rest)
- return items
-
- def _parse_index(self, section, content):
- """
- .. index: default
- :refguide: something, else, and more
-
- """
- def strip_each_in(lst):
- return [s.strip() for s in lst]
-
- out = {}
- section = section.split('::')
- if len(section) > 1:
- out['default'] = strip_each_in(section[1].split(','))[0]
- for line in content:
- line = line.split(':')
- if len(line) > 2:
- out[line[1]] = strip_each_in(line[2].split(','))
- return out
-
- def _parse_summary(self):
- """Grab signature (if given) and summary"""
- if self._is_at_section():
- return
-
- summary = self._doc.read_to_next_empty_line()
- summary_str = " ".join([s.strip() for s in summary]).strip()
- if re.compile('^([\w., ]+=)?\s*[\w\.]+\(.*\)$').match(summary_str):
- self['Signature'] = summary_str
- if not self._is_at_section():
- self['Summary'] = self._doc.read_to_next_empty_line()
- else:
- self['Summary'] = summary
-
- if not self._is_at_section():
- self['Extended Summary'] = self._read_to_next_section()
-
- def _parse(self):
- self._doc.reset()
- self._parse_summary()
-
- for (section,content) in self._read_sections():
- if not section.startswith('..'):
- section = ' '.join([s.capitalize() for s in section.split(' ')])
- if section in ('Parameters', 'Attributes', 'Methods',
- 'Returns', 'Raises', 'Warns'):
- self[section] = self._parse_param_list(content)
- elif section.startswith('.. index::'):
- self['index'] = self._parse_index(section, content)
- elif section == 'See Also':
- self['See Also'] = self._parse_see_also(content)
- else:
- self[section] = content
-
- # string conversion routines
-
- def _str_header(self, name, symbol='-'):
- return [name, len(name)*symbol]
-
- def _str_indent(self, doc, indent=4):
- out = []
- for line in doc:
- out += [' '*indent + line]
- return out
-
- def _str_signature(self):
- if self['Signature']:
- return [self['Signature'].replace('*','\*')] + ['']
- else:
- return ['']
-
- def _str_summary(self):
- if self['Summary']:
- return self['Summary'] + ['']
- else:
- return []
-
- def _str_extended_summary(self):
- if self['Extended Summary']:
- return self['Extended Summary'] + ['']
- else:
- return []
-
- def _str_param_list(self, name):
- out = []
- if self[name]:
- out += self._str_header(name)
- for param,param_type,desc in self[name]:
- out += ['%s : %s' % (param, param_type)]
- out += self._str_indent(desc)
- out += ['']
- return out
-
- def _str_section(self, name):
- out = []
- if self[name]:
- out += self._str_header(name)
- out += self[name]
- out += ['']
- return out
-
- def _str_see_also(self, func_role):
- if not self['See Also']: return []
- out = []
- out += self._str_header("See Also")
- last_had_desc = True
- for func, desc, role in self['See Also']:
- if role:
- link = ':%s:`%s`' % (role, func)
- elif func_role:
- link = ':%s:`%s`' % (func_role, func)
- else:
- link = "`%s`_" % func
- if desc or last_had_desc:
- out += ['']
- out += [link]
- else:
- out[-1] += ", %s" % link
- if desc:
- out += self._str_indent([' '.join(desc)])
- last_had_desc = True
- else:
- last_had_desc = False
- out += ['']
- return out
-
- def _str_index(self):
- idx = self['index']
- out = []
- out += ['.. index:: %s' % idx.get('default','')]
- for section, references in idx.iteritems():
- if section == 'default':
- continue
- out += [' :%s: %s' % (section, ', '.join(references))]
- return out
-
- def __str__(self, func_role=''):
- out = []
- out += self._str_signature()
- out += self._str_summary()
- out += self._str_extended_summary()
- for param_list in ('Parameters','Returns','Raises'):
- out += self._str_param_list(param_list)
- out += self._str_section('Warnings')
- out += self._str_see_also(func_role)
- for s in ('Notes','References','Examples'):
- out += self._str_section(s)
- for param_list in ('Attributes', 'Methods'):
- out += self._str_param_list(param_list)
- out += self._str_index()
- return '\n'.join(out)
-
-
-def indent(str,indent=4):
- indent_str = ' '*indent
- if str is None:
- return indent_str
- lines = str.split('\n')
- return '\n'.join(indent_str + l for l in lines)
-
-def dedent_lines(lines):
- """Deindent a list of lines maximally"""
- return textwrap.dedent("\n".join(lines)).split("\n")
-
-def header(text, style='-'):
- return text + '\n' + style*len(text) + '\n'
-
-
-class FunctionDoc(NumpyDocString):
- def __init__(self, func, role='func', doc=None, config={}):
- self._f = func
- self._role = role # e.g. "func" or "meth"
-
- if doc is None:
- if func is None:
- raise ValueError("No function or docstring given")
- doc = inspect.getdoc(func) or ''
- NumpyDocString.__init__(self, doc)
-
- if not self['Signature'] and func is not None:
- func, func_name = self.get_func()
- try:
- # try to read signature
- argspec = inspect.getargspec(func)
- argspec = inspect.formatargspec(*argspec)
- argspec = argspec.replace('*','\*')
- signature = '%s%s' % (func_name, argspec)
- except TypeError, e:
- signature = '%s()' % func_name
- self['Signature'] = signature
-
- def get_func(self):
- func_name = getattr(self._f, '__name__', self.__class__.__name__)
- if inspect.isclass(self._f):
- func = getattr(self._f, '__call__', self._f.__init__)
- else:
- func = self._f
- return func, func_name
-
- def __str__(self):
- out = ''
-
- func, func_name = self.get_func()
- signature = self['Signature'].replace('*', '\*')
-
- roles = {'func': 'function',
- 'meth': 'method'}
-
- if self._role:
- if not roles.has_key(self._role):
- print "Warning: invalid role %s" % self._role
- out += '.. %s:: %s\n \n\n' % (roles.get(self._role,''),
- func_name)
-
- out += super(FunctionDoc, self).__str__(func_role=self._role)
- return out
-
-
-class ClassDoc(NumpyDocString):
- def __init__(self, cls, doc=None, modulename='', func_doc=FunctionDoc,
- config={}):
- if not inspect.isclass(cls) and cls is not None:
- raise ValueError("Expected a class or None, but got %r" % cls)
- self._cls = cls
-
- if modulename and not modulename.endswith('.'):
- modulename += '.'
- self._mod = modulename
-
- if doc is None:
- if cls is None:
- raise ValueError("No class or documentation string given")
- doc = pydoc.getdoc(cls)
-
- NumpyDocString.__init__(self, doc)
-
- if config.get('show_class_members', True):
- if not self['Methods']:
- self['Methods'] = [(name, '', '')
- for name in sorted(self.methods)]
- if not self['Attributes']:
- self['Attributes'] = [(name, '', '')
- for name in sorted(self.properties)]
-
- @property
- def methods(self):
- if self._cls is None:
- return []
- return [name for name,func in inspect.getmembers(self._cls)
- if not name.startswith('_') and callable(func)]
-
- @property
- def properties(self):
- if self._cls is None:
- return []
- return [name for name,func in inspect.getmembers(self._cls)
- if not name.startswith('_') and func is None]
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape_sphinx.py b/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape_sphinx.py
deleted file mode 100644
index 277d493..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/docscrape_sphinx.py
+++ /dev/null
@@ -1,226 +0,0 @@
-import re, inspect, textwrap, pydoc
-import sphinx
-from docscrape import NumpyDocString, FunctionDoc, ClassDoc
-
-class SphinxDocString(NumpyDocString):
- def __init__(self, docstring, config={}):
- self.use_plots = config.get('use_plots', False)
- NumpyDocString.__init__(self, docstring, config=config)
-
- # string conversion routines
- def _str_header(self, name, symbol='`'):
- return ['.. rubric:: ' + name, '']
-
- def _str_field_list(self, name):
- return [':' + name + ':']
-
- def _str_indent(self, doc, indent=4):
- out = []
- for line in doc:
- out += [' '*indent + line]
- return out
-
- def _str_signature(self):
- return ['']
- if self['Signature']:
- return ['``%s``' % self['Signature']] + ['']
- else:
- return ['']
-
- def _str_summary(self):
- return self['Summary'] + ['']
-
- def _str_extended_summary(self):
- return self['Extended Summary'] + ['']
-
- def _str_param_list(self, name):
- out = []
- if self[name]:
- out += self._str_field_list(name)
- out += ['']
- for param,param_type,desc in self[name]:
- out += self._str_indent(['**%s** : %s' % (param.strip(),
- param_type)])
- out += ['']
- out += self._str_indent(desc,8)
- out += ['']
- return out
-
- @property
- def _obj(self):
- if hasattr(self, '_cls'):
- return self._cls
- elif hasattr(self, '_f'):
- return self._f
- return None
-
- def _str_member_list(self, name):
- """
- Generate a member listing, autosummary:: table where possible,
- and a table where not.
-
- """
- out = []
- if self[name]:
- out += ['.. rubric:: %s' % name, '']
- prefix = getattr(self, '_name', '')
-
- if prefix:
- prefix = '~%s.' % prefix
-
- autosum = []
- others = []
- for param, param_type, desc in self[name]:
- param = param.strip()
- if not self._obj or hasattr(self._obj, param):
- autosum += [" %s%s" % (prefix, param)]
- else:
- others.append((param, param_type, desc))
-
- if autosum:
- out += ['.. autosummary::', ' :toctree:', '']
- out += autosum
-
- if others:
- maxlen_0 = max([len(x[0]) for x in others])
- maxlen_1 = max([len(x[1]) for x in others])
- hdr = "="*maxlen_0 + " " + "="*maxlen_1 + " " + "="*10
- fmt = '%%%ds %%%ds ' % (maxlen_0, maxlen_1)
- n_indent = maxlen_0 + maxlen_1 + 4
- out += [hdr]
- for param, param_type, desc in others:
- out += [fmt % (param.strip(), param_type)]
- out += self._str_indent(desc, n_indent)
- out += [hdr]
- out += ['']
- return out
-
- def _str_section(self, name):
- out = []
- if self[name]:
- out += self._str_header(name)
- out += ['']
- content = textwrap.dedent("\n".join(self[name])).split("\n")
- out += content
- out += ['']
- return out
-
- def _str_see_also(self, func_role):
- out = []
- if self['See Also']:
- see_also = super(SphinxDocString, self)._str_see_also(func_role)
- out = ['.. seealso::', '']
- out += self._str_indent(see_also[2:])
- return out
-
- def _str_warnings(self):
- out = []
- if self['Warnings']:
- out = ['.. warning::', '']
- out += self._str_indent(self['Warnings'])
- return out
-
- def _str_index(self):
- idx = self['index']
- out = []
- if len(idx) == 0:
- return out
-
- out += ['.. index:: %s' % idx.get('default','')]
- for section, references in idx.iteritems():
- if section == 'default':
- continue
- elif section == 'refguide':
- out += [' single: %s' % (', '.join(references))]
- else:
- out += [' %s: %s' % (section, ','.join(references))]
- return out
-
- def _str_references(self):
- out = []
- if self['References']:
- out += self._str_header('References')
- if isinstance(self['References'], str):
- self['References'] = [self['References']]
- out.extend(self['References'])
- out += ['']
- # Latex collects all references to a separate bibliography,
- # so we need to insert links to it
- if sphinx.__version__ >= "0.6":
- out += ['.. only:: latex','']
- else:
- out += ['.. latexonly::','']
- items = []
- for line in self['References']:
- m = re.match(r'.. \[([a-z0-9._-]+)\]', line, re.I)
- if m:
- items.append(m.group(1))
- out += [' ' + ", ".join(["[%s]_" % item for item in items]), '']
- return out
-
- def _str_examples(self):
- examples_str = "\n".join(self['Examples'])
-
- if (self.use_plots and 'import matplotlib' in examples_str
- and 'plot::' not in examples_str):
- out = []
- out += self._str_header('Examples')
- out += ['.. plot::', '']
- out += self._str_indent(self['Examples'])
- out += ['']
- return out
- else:
- return self._str_section('Examples')
-
- def __str__(self, indent=0, func_role="obj"):
- out = []
- out += self._str_signature()
- out += self._str_index() + ['']
- out += self._str_summary()
- out += self._str_extended_summary()
- for param_list in ('Parameters', 'Returns', 'Raises'):
- out += self._str_param_list(param_list)
- out += self._str_warnings()
- out += self._str_see_also(func_role)
- out += self._str_section('Notes')
- out += self._str_references()
- out += self._str_examples()
- for param_list in ('Attributes', 'Methods'):
- out += self._str_member_list(param_list)
- out = self._str_indent(out,indent)
- return '\n'.join(out)
-
-class SphinxFunctionDoc(SphinxDocString, FunctionDoc):
- def __init__(self, obj, doc=None, config={}):
- self.use_plots = config.get('use_plots', False)
- FunctionDoc.__init__(self, obj, doc=doc, config=config)
-
-class SphinxClassDoc(SphinxDocString, ClassDoc):
- def __init__(self, obj, doc=None, func_doc=None, config={}):
- self.use_plots = config.get('use_plots', False)
- ClassDoc.__init__(self, obj, doc=doc, func_doc=None, config=config)
-
-class SphinxObjDoc(SphinxDocString):
- def __init__(self, obj, doc=None, config={}):
- self._f = obj
- SphinxDocString.__init__(self, doc, config=config)
-
-def get_doc_object(obj, what=None, doc=None, config={}):
- if what is None:
- if inspect.isclass(obj):
- what = 'class'
- elif inspect.ismodule(obj):
- what = 'module'
- elif callable(obj):
- what = 'function'
- else:
- what = 'object'
- if what == 'class':
- return SphinxClassDoc(obj, func_doc=SphinxFunctionDoc, doc=doc,
- config=config)
- elif what in ('function', 'method'):
- return SphinxFunctionDoc(obj, doc=doc, config=config)
- else:
- if doc is None:
- doc = pydoc.getdoc(obj)
- return SphinxObjDoc(obj, doc, config=config)
diff --git a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/numpydoc.py b/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/numpydoc.py
deleted file mode 100644
index 5f6827a..0000000
--- a/statsmodels/scikits/statsmodels/docs/sphinxext/numpy_ext/numpydoc.py
+++ /dev/null
@@ -1,165 +0,0 @@
-"""
-========
-numpydoc
-========
-
-Sphinx extension that handles docstrings in the Numpy standard format. [1]
-
-It will:
-
-- Convert Parameters etc. sections to field lists.
-- Convert See Also section to a See also entry.
-- Renumber references.
-- Extract the signature from the docstring, if it can't be determined otherwise.
-
-.. [1] http://projects.scipy.org/numpy/wiki/CodingStyleGuidelines#docstring-standard
-
-"""
-
-import os, re, pydoc
-from docscrape_sphinx import get_doc_object, SphinxDocString
-from sphinx.util.compat import Directive
-import inspect
-
-def mangle_docstrings(app, what, name, obj, options, lines,
- reference_offset=[0]):
-
- cfg = dict(use_plots=app.config.numpydoc_use_plots,
- show_class_members=app.config.numpydoc_show_class_members)
-
- if what == 'module':
- # Strip top title
- title_re = re.compile(ur'^\s*[#*=]{4,}\n[a-z0-9 -]+\n[#*=]{4,}\s*',
- re.I|re.S)
- lines[:] = title_re.sub(u'', u"\n".join(lines)).split(u"\n")
- else:
- doc = get_doc_object(obj, what, u"\n".join(lines), config=cfg)
- lines[:] = unicode(doc).split(u"\n")
-
- if app.config.numpydoc_edit_link and hasattr(obj, '__name__') and \
- obj.__name__:
- if hasattr(obj, '__module__'):
- v = dict(full_name=u"%s.%s" % (obj.__module__, obj.__name__))
- else:
- v = dict(full_name=obj.__name__)
- lines += [u'', u'.. htmlonly::', '']
- lines += [u' %s' % x for x in
- (app.config.numpydoc_edit_link % v).split("\n")]
-
- # replace reference numbers so that there are no duplicates
- references = []
- for line in lines:
- line = line.strip()
- m = re.match(ur'^.. \[([a-z0-9_.-])\]', line, re.I)
- if m:
- references.append(m.group(1))
-
- # start renaming from the longest string, to avoid overwriting parts
- references.sort(key=lambda x: -len(x))
- if references:
- for i, line in enumerate(lines):
- for r in references:
- if re.match(ur'^\d+$', r):
- new_r = u"R%d" % (reference_offset[0] + int(r))
- else:
- new_r = u"%s%d" % (r, reference_offset[0])
- lines[i] = lines[i].replace(u'[%s]_' % r,
- u'[%s]_' % new_r)
- lines[i] = lines[i].replace(u'.. [%s]' % r,
- u'.. [%s]' % new_r)
-
- reference_offset[0] += len(references)
-
-def mangle_signature(app, what, name, obj, options, sig, retann):
- # Do not try to inspect classes that don't define `__init__`
- if (inspect.isclass(obj) and
- (not hasattr(obj, '__init__') or
- 'initializes x; see ' in pydoc.getdoc(obj.__init__))):
- return '', ''
-
- if not (callable(obj) or hasattr(obj, '__argspec_is_invalid_')): return
- if not hasattr(obj, '__doc__'): return
-
- doc = SphinxDocString(pydoc.getdoc(obj))
- if doc['Signature']:
- sig = re.sub(u"^[^(]*", u"", doc['Signature'])
- return sig, u''
-
-def setup(app, get_doc_object_=get_doc_object):
- global get_doc_object
- get_doc_object = get_doc_object_
-
- app.connect('autodoc-process-docstring', mangle_docstrings)
- app.connect('autodoc-process-signature', mangle_signature)
- app.add_config_value('numpydoc_edit_link', None, False)
- app.add_config_value('numpydoc_use_plots', None, False)
- #app.add_config_value('numpydoc_show_class_members', True, True)
- app.add_config_value('numpydoc_show_class_members', False, False)
-
- # Extra mangling domains
- app.add_domain(NumpyPythonDomain)
- app.add_domain(NumpyCDomain)
-
-#------------------------------------------------------------------------------
-# Docstring-mangling domains
-#------------------------------------------------------------------------------
-
-from docutils.statemachine import ViewList
-from sphinx.domains.c import CDomain
-from sphinx.domains.python import PythonDomain
-
-class ManglingDomainBase(object):
- directive_mangling_map = {}
-
- def __init__(self, *a, **kw):
- super(ManglingDomainBase, self).__init__(*a, **kw)
- self.wrap_mangling_directives()
-
- def wrap_mangling_directives(self):
- for name, objtype in self.directive_mangling_map.items():
- self.directives[name] = wrap_mangling_directive(
- self.directives[name], objtype)
-
-class NumpyPythonDomain(ManglingDomainBase, PythonDomain):
- name = 'np'
- directive_mangling_map = {
- 'function': 'function',
- 'class': 'class',
- 'exception': 'class',
- 'method': 'function',
- 'classmethod': 'function',
- 'staticmethod': 'function',
- 'attribute': 'attribute',
- }
-
-class NumpyCDomain(ManglingDomainBase, CDomain):
- name = 'np-c'
- directive_mangling_map = {
- 'function': 'function',
- 'member': 'attribute',
- 'macro': 'function',
- 'type': 'class',
- 'var': 'object',
- }
-
-def wrap_mangling_directive(base_directive, objtype):
- class directive(base_directive):
- def run(self):
- env = self.state.document.settings.env
-
- name = None
- if self.arguments:
- m = re.match(r'^(.*\s+)?(.*?)(\(.*)?', self.arguments[0])
- name = m.group(2).strip()
-
- if not name:
- name = self.arguments[0]
-
- lines = list(self.content)
- mangle_docstrings(env.app, objtype, name, None, None, lines)
- self.content = ViewList(lines, self.content.parent)
-
- return base_directive.run(self)
-
- return directive
-
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/indexsidebar.html b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/indexsidebar.html
deleted file mode 100644
index eefa3c2..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/indexsidebar.html
+++ /dev/null
@@ -1,27 +0,0 @@
-Download
-
-{% if 'dev' in version %}
-
-This documentation is for version {{ version }} , which is not
-released yet. Grab the source code from Github to install this version. You can go to the documentation for the last release here .
-
-{% else %}
-
-This documentation is for the {{ release }} release. You can install it with:
-easy_install -U scikits.statsmodels
-Or get it from the Python Package Index .
-Documentation for the current development version is here .
-
-{% endif %}
-
-Participate
-
-
-
- Grab the souce from Github .
- Report bugs to the Issue Tracker .
- Have a look at our Developer Page .
-
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/layout.html b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/layout.html
deleted file mode 100644
index 4973d09..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/layout.html
+++ /dev/null
@@ -1,62 +0,0 @@
-{#
- statsmodels/layout.hml
-
- :copyright: Skipper Seabold
- :license: BSD
- #}
-{% extends "basic/layout.html" %}
-{% set reldelim1 = ' |' %}
-
-{% block sidebarlogo %}{% endblock %} {# override to not display, we keep the "logo" at the very top #}
-
-{% if pagename == 'index' %}
- {% set title = 'StatsModels: Statistics in Python' %}
-{% endif %}
-
-
-{% block rootrellink %}
-Download |
-Support |
-Bugs |
-Develop |
- Examples |
-{% endblock %}
-
-{# Render the Header with Banner #}
-
-{% block header %}
-
-{% endblock %}
-
-{#{% block document %}
-
-
- Download
- Support
- Bugs
- Develop
- Examples
-
-
-{{ super() }}
-{% endblock %}#}
-
-{#{% block document %}
-{% block relbaritems %}
- {% if pagename != 'index' %}
-{{ title }}
- {% endif %}
- {% endblock %}
- {{ super() }}
- {% endblock %}#}
-
-{#{% block relbar1 %}{% endblock %} #}
-{% block relbar2 %}{% endblock %}
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/relations.html b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/relations.html
deleted file mode 100644
index dea9d1c..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/relations.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{#
- basic/relations.html
- ~~~~~~~~~~~~~~~~~~~~
-
- Sphinx sidebar template: relation links.
-
- :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
- :license: BSD, see LICENSE for details.
-#}
-{%- if prev %}
- {{ _('Previous topic') }}
- {%- if prev.title[:19] == "scikits.statsmodels" %}
- {{ "sm." ~ prev.title[20:] }}
- {%- else %}
- {{ prev.title }}
-
- {%- endif %}
-{%- endif %}
-
-{%- if next %}
- {{ _('Next topic') }}
- {%- if next.title[:19] == "scikits.statsmodels" %}
- {{ "sm." ~ next.title[20:] }}
- {%- else %}
- {{ next.title }}
- {%- endif %}
-
-{%- endif %}
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/sidelinks.html b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/sidelinks.html
deleted file mode 100644
index de03065..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/sidelinks.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/static/nature.css_t b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/static/nature.css_t
deleted file mode 100644
index 0d8f698..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/static/nature.css_t
+++ /dev/null
@@ -1,289 +0,0 @@
-/*
- * nature.css_t
- * ~~~~~~~~~~~~
- *
- * Sphinx stylesheet -- nature theme.
- *
- * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
- */
-
-@import url("basic.css");
-
-/* -- header -- */
-
-div.header {
- background-color: #1162f6;
-}
-
-div.headerwrap {
- min-width: 1030px;
-/* min-height: 115px;
- margin-left: auto;
- margin-right: auto;*/
-}
-
-
-/*div.navbar ul {
- list-style-type: none;
- background-color: #ffffff;
- margin-left: 230px;
- text-align: right;
- position: absolute;
- right: 105px;
- top: 103px;
-}*/
-
-/*div.navbar li {
- display: inline;
- background-color: #1162fc;
- color: #ffffff;
- border-bottom-right-radius: 30px;
- border-bottom-left-radius: 30px;
- padding: 0px 15px
-}*/
-
-/* -- page layout ----------------------------------------------------------- */
-
-body {
- font-family: Arial, sans-serif;
- font-size: 100%;
-/* background-color: #3366CC;
- background-color: #1162f6; */
- background-color: #3399ff;
- color: #555;
- margin: 0 80px;
- padding: 0;
- min-width: 740px;
- letter-spacing: -.01em;
-}
-
-div.documentwrapper {
- float: left;
- width: 100%;
-}
-
-div.bodywrapper {
- margin: 0 0 0 230px;
-}
-
-hr {
- border: 1px solid #B1B4B6;
-}
-
-div.document {
- background-color: #eee;
- min-width: 1030px;
-}
-
-div.body {
- background-color: #f8f8ff;
- min-width: 740px;
- color: #3E4349;
- padding: 0 30px 30px 30px;
- font-size: 0.9em;
-}
-
-div.footer {
- color: #555;
- width: 100%;
- padding: 13px 0;
- text-align: center;
- font-size: 75%;
-}
-
-div.footer a {
- color: #444;
- text-decoration: underline;
-}
-
-div.related {
-/* background-color: #6BA81E;*/
- background-color: #1162f6;
- line-height: 32px;
- color: #fff;
- text-shadow: 0px 1px 0 #444;
- font-size: 0.9em;
- border-top: 1px solid white;
- border-bottom: 1px solid white;
- min-width: 1030px;
-}
-
-div.related a {
- color: #E2F3CC;
-}
-
-div.sphinxsidebar {
- font-size: 0.75em;
- line-height: 1.5em;
- word-wrap: break-word;
-}
-
-div.sphinxsidebarwrapper{
- padding: 20px 0;
-}
-
-div.sphinxsidebar h3,
-div.sphinxsidebar h4 {
- font-family: Arial, sans-serif;
- color: #222;
- font-size: 1.2em;
- font-weight: normal;
- margin: 0;
- padding: 5px 10px;
- background-color: #ddd;
- text-shadow: 1px 1px 0 white
-}
-
-div.sphinxsidebar h4{
- font-size: 1.1em;
-}
-
-div.sphinxsidebar h3 a {
- color: #444;
-}
-
-
-div.sphinxsidebar p {
- color: #888;
- padding: 5px 15px;
-}
-
-div.sphinxsidebar p.topless {
-}
-
-div.sphinxsidebar ul {
- margin: 10px 20px;
- padding: 0;
- color: #000;
-}
-
-div.sphinxsidebar a {
- color: #444;
-}
-
-div.sphinxsidebar input {
- border: 1px solid #ccc;
- font-family: sans-serif;
- font-size: 1em;
-}
-
-div.sphinxsidebar input[type=text]{
- margin-left: 15px;
-}
-
-/* -- body styles ----------------------------------------------------------- */
-
-a {
- color: #005B81;
- text-decoration: none;
-}
-
-a:hover {
- color: #E32E00;
- text-decoration: underline;
-}
-
-div.body h1,
-div.body h2,
-div.body h3,
-div.body h4,
-div.body h5,
-div.body h6 {
- font-family: Arial, sans-serif;
- background-color: #BED4EB;
- font-weight: normal;
- color: #212224;
- margin: 30px 0px 10px 0px;
- padding: 5px 0 5px 10px;
- text-shadow: 0px 1px 0 white
-}
-
-div.body h1 { border-top: 20px solid #f8f8ff; margin-top: 0; font-size: 200%; word-wrap: break-word }
-div.body h2 { font-size: 150%; background-color: #C8D5E3; border-radius : 30px; }
-div.body h3 { font-size: 120%; background-color: #D8DEE3; border-radius : 30px; }
-div.body h4 { font-size: 110%; background-color: #D8DEE3; border-radius : 30px; }
-div.body h5 { font-size: 100%; background-color: #D8DEE3; border-radius : 30px; }
-div.body h6 { font-size: 100%; background-color: #D8DEE3; border-radius : 30px; }
-
-a.headerlink {
- color: #c60f0f;
- font-size: 0.8em;
- padding: 0 4px 0 4px;
- text-decoration: none;
-}
-
-a.headerlink:hover {
- background-color: #c60f0f;
- color: white;
-}
-
-div.body p, div.body dd, div.body li {
- line-height: 1.5em;
-}
-
-div.admonition p.admonition-title + p {
- display: inline;
-}
-
-div.highlight{
- background-color: white;
-}
-
-div.note {
- background-color: #eee;
- border: 1px solid #ccc;
-}
-
-div.seealso {
- background-color: #ffc;
- border: 1px solid #ff6;
-}
-
-div.topic {
- background-color: #eee;
-}
-
-div.warning {
- background-color: #ffe4e4;
- border: 1px solid #f66;
-}
-
-p.admonition-title {
- display: inline;
-}
-
-p.admonition-title:after {
- content: ":";
-}
-
-pre {
- padding: 10px;
- background-color: White;
- color: #222;
- line-height: 1.2em;
- border: 1px solid #C6C9CB;
- font-size: 1.1em;
- margin: 1.5em 0 1.5em 0;
- -webkit-box-shadow: 1px 1px 1px #d8d8d8;
- -moz-box-shadow: 1px 1px 1px #d8d8d8;
-}
-
-tt {
- background-color: #ecf0f3;
- color: #222;
- /* padding: 1px 2px; */
- font-size: 1.1em;
- font-family: monospace;
-}
-
-.viewcode-back {
- font-family: Arial, sans-serif;
-}
-
-div.viewcode-block:target {
- background-color: #f4debf;
- border-top: 1px solid #ac9;
- border-bottom: 1px solid #ac9;
-}
diff --git a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/theme.conf b/statsmodels/scikits/statsmodels/docs/themes/statsmodels/theme.conf
deleted file mode 100644
index 330d075..0000000
--- a/statsmodels/scikits/statsmodels/docs/themes/statsmodels/theme.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-[theme]
-inherit = basic
-stylesheet = nature.css
-pygments_style = tango
diff --git a/statsmodels/scikits/statsmodels/examples/es_misc_poisson2.py b/statsmodels/scikits/statsmodels/examples/es_misc_poisson2.py
deleted file mode 100644
index 514558c..0000000
--- a/statsmodels/scikits/statsmodels/examples/es_misc_poisson2.py
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.miscmodels import PoissonGMLE, PoissonOffsetGMLE, \
- PoissonZiGMLE
-
-DEC = 3
-
-class Dummy(object):
- pass
-
-self = Dummy()
-
-# generate artificial data
-np.random.seed(98765678)
-nobs = 200
-rvs = np.random.randn(nobs,6)
-data_exog = rvs
-data_exog = sm.add_constant(data_exog)
-xbeta = 1 + 0.1*rvs.sum(1)
-data_endog = np.random.poisson(np.exp(xbeta))
-
-#estimate discretemod.Poisson as benchmark
-from scikits.statsmodels.discretemod import Poisson
-res_discrete = Poisson(data_endog, data_exog).fit()
-
-mod_glm = sm.GLM(data_endog, data_exog, family=sm.families.Poisson())
-res_glm = mod_glm.fit()
-
-#estimate generic MLE
-self.mod = PoissonGMLE(data_endog, data_exog)
-res = self.mod.fit()
-offset = res.params[0] * data_exog[:,0] #1d ???
-
-mod1 = PoissonOffsetGMLE(data_endog, data_exog[:,1:], offset=offset)
-start_params = np.ones(6)/2.
-start_params = res.params[1:]
-res1 = mod1.fit(start_params=start_params, method='nm', maxiter=1000, maxfun=1000)
-
-print 'mod2'
-mod2 = PoissonZiGMLE(data_endog, data_exog[:,1:], offset=offset)
-start_params = np.r_[np.ones(6)/2.,10]
-start_params = np.r_[res.params[1:], 20.] #-100]
-res2 = mod2.fit(start_params=start_params, method='nm', maxiter=1000, maxfun=2000)
-
-print 'mod3'
-mod3 = PoissonZiGMLE(data_endog, data_exog, offset=None)
-start_params = np.r_[np.ones(7)/2.,10]
-start_params = np.r_[res.params, 20.]
-res3 = mod3.fit(start_params=start_params, method='nm', maxiter=1000, maxfun=2000)
-
-print 'mod4'
-data_endog2 = np.r_[data_endog, np.zeros(nobs)]
-data_exog2 = np.r_[data_exog, data_exog]
-
-mod4 = PoissonZiGMLE(data_endog2, data_exog2, offset=None)
-start_params = np.r_[np.ones(7)/2.,10]
-start_params = np.r_[res.params, 0.]
-res4 = mod4.fit(start_params=start_params, method='nm', maxiter=1000, maxfun=1000)
diff --git a/statsmodels/scikits/statsmodels/examples/ex_generic_mle.py b/statsmodels/scikits/statsmodels/examples/ex_generic_mle.py
deleted file mode 100644
index 0b91ac9..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_generic_mle.py
+++ /dev/null
@@ -1,383 +0,0 @@
-
-import numpy as np
-from scipy import stats
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.model import GenericLikelihoodModel
-
-
-data = sm.datasets.spector.load()
-data.exog = sm.add_constant(data.exog)
-# in this dir
-
-probit_mod = sm.Probit(data.endog, data.exog)
-probit_res = probit_mod.fit()
-loglike = probit_mod.loglike
-score = probit_mod.score
-mod = GenericLikelihoodModel(data.endog, data.exog*2, loglike, score)
-res = mod.fit(method="nm", maxiter = 500)
-
-def probitloglike(params, endog, exog):
- """
- Log likelihood for the probit
- """
- q = 2*endog - 1
- X = exog
- return np.add.reduce(stats.norm.logcdf(q*np.dot(X,params)))
-
-mod = GenericLikelihoodModel(data.endog, data.exog, loglike=probitloglike)
-res = mod.fit(method="nm", fargs=(data.endog,data.exog), maxiter=500)
-print res
-
-
-#np.allclose(res.params, probit_res.params)
-
-print res.params, probit_res.params
-
-#datal = sm.datasets.longley.load()
-datal = sm.datasets.ccard.load()
-datal.exog = sm.add_constant(datal.exog)
-# Instance of GenericLikelihood model doesn't work directly, because loglike
-# cannot get access to data in self.endog, self.exog
-
-nobs = 5000
-rvs = np.random.randn(nobs,6)
-datal.exog = rvs[:,:-1]
-datal.exog = sm.add_constant(datal.exog)
-datal.endog = 1 + rvs.sum(1)
-
-show_error = False
-show_error2 = 1#False
-if show_error:
- def loglike_norm_xb(self, params):
- beta = params[:-1]
- sigma = params[-1]
- xb = np.dot(self.exog, beta)
- return stats.norm.logpdf(self.endog, loc=xb, scale=sigma)
-
- mod_norm = GenericLikelihoodModel(datal.endog, datal.exog, loglike_norm_xb)
- res_norm = mod_norm.fit(method="nm", maxiter = 500)
-
- print res_norm.params
-
-if show_error2:
- def loglike_norm_xb(params, endog, exog):
- beta = params[:-1]
- sigma = params[-1]
- #print exog.shape, beta.shape
- xb = np.dot(exog, beta)
- #print xb.shape, stats.norm.logpdf(endog, loc=xb, scale=sigma).shape
- return stats.norm.logpdf(endog, loc=xb, scale=sigma).sum()
-
- mod_norm = GenericLikelihoodModel(datal.endog, datal.exog, loglike_norm_xb)
- res_norm = mod_norm.fit(start_params=np.ones(datal.exog.shape[1]+1),
- method="nm", maxiter = 5000,
- fargs=(datal.endog, datal.exog))
-
- print res_norm.params
-
-class MygMLE(GenericLikelihoodModel):
- # just for testing
- def loglike(self, params):
- beta = params[:-1]
- sigma = params[-1]
- xb = np.dot(self.exog, beta)
- return stats.norm.logpdf(self.endog, loc=xb, scale=sigma).sum()
-
- def loglikeobs(self, params):
- beta = params[:-1]
- sigma = params[-1]
- xb = np.dot(self.exog, beta)
- return stats.norm.logpdf(self.endog, loc=xb, scale=sigma)
-
-mod_norm2 = MygMLE(datal.endog, datal.exog)
-#res_norm = mod_norm.fit(start_params=np.ones(datal.exog.shape[1]+1), method="nm", maxiter = 500)
-res_norm2 = mod_norm2.fit(start_params=[1.]*datal.exog.shape[1]+[1], method="nm", maxiter = 500)
-print res_norm2.params
-
-res2 = sm.OLS(datal.endog, datal.exog).fit()
-start_params = np.hstack((res2.params, np.sqrt(res2.mse_resid)))
-res_norm3 = mod_norm2.fit(start_params=start_params, method="nm", maxiter = 500,
- retall=0)
-print start_params
-print res_norm3.params
-print res2.bse
-#print res_norm3.bse # not available
-print 'llf', res2.llf, res_norm3.llf
-
-bse = np.sqrt(np.diag(np.linalg.inv(res_norm3.model.hessian(res_norm3.params))))
-res_norm3.model.score(res_norm3.params)
-
-#fprime in fit option cannot be overwritten, set to None, when score is defined
-# exception is fixed, but I don't think score was supposed to be called
-'''
->>> mod_norm2.fit(start_params=start_params, method="bfgs", fprime=None, maxiter
-Traceback (most recent call last):
- File "", line 1, in
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\s
-tatsmodels\model.py", line 316, in fit
- disp=disp, retall=retall, callback=callback)
- File "C:\Josef\_progs\Subversion\scipy-trunk_after\trunk\dist\scipy-0.9.0.dev6
-579.win32\Programs\Python25\Lib\site-packages\scipy\optimize\optimize.py", line
-710, in fmin_bfgs
- gfk = myfprime(x0)
- File "C:\Josef\_progs\Subversion\scipy-trunk_after\trunk\dist\scipy-0.9.0.dev6
-579.win32\Programs\Python25\Lib\site-packages\scipy\optimize\optimize.py", line
-103, in function_wrapper
- return function(x, *args)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\s
-tatsmodels\model.py", line 240, in
- score = lambda params: -self.score(params)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\s
-tatsmodels\model.py", line 480, in score
- return approx_fprime1(params, self.nloglike)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\s
-tatsmodels\sandbox\regression\numdiff.py", line 81, in approx_fprime1
- nobs = np.size(f0) #len(f0)
-TypeError: object of type 'numpy.float64' has no len()
-
-'''
-
-res_bfgs = mod_norm2.fit(start_params=start_params, method="bfgs", fprime=None,
-maxiter = 500, retall=0)
-
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1, approx_hess
-hb=-approx_hess(res_norm3.params, mod_norm2.loglike, epsilon=-1e-4)[0]
-hf=-approx_hess(res_norm3.params, mod_norm2.loglike, epsilon=1e-4)[0]
-hh = (hf+hb)/2.
-print np.linalg.eigh(hh)
-
-grad = -approx_fprime1(res_norm3.params, mod_norm2.loglike, epsilon=-1e-4)
-print grad
-gradb = -approx_fprime1(res_norm3.params, mod_norm2.loglike, epsilon=-1e-4)
-gradf = -approx_fprime1(res_norm3.params, mod_norm2.loglike, epsilon=1e-4)
-print (gradb+gradf)/2.
-
-print res_norm3.model.score(res_norm3.params)
-print res_norm3.model.score(start_params)
-mod_norm2.loglike(start_params/2.)
-print np.linalg.inv(-1*mod_norm2.hessian(res_norm3.params))
-print np.sqrt(np.diag(res_bfgs.cov_params()))
-print res_norm3.bse
-
-print "MLE - OLS parameter estimates"
-print res_norm3.params[:-1] - res2.params
-print "bse diff in percent"
-print (res_norm3.bse[:-1] / res2.bse)*100. - 100
-
-'''
-C:\Programs\Python25\lib\site-packages\matplotlib-0.99.1-py2.5-win32.egg\matplotlib\rcsetup.py:117: UserWarning: rcParams key "numerix" is obsolete and has no effect;
- please delete it from your matplotlibrc file
- warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
-Optimization terminated successfully.
- Current function value: 12.818804
- Iterations 6
-Optimization terminated successfully.
- Current function value: 12.818804
- Iterations: 439
- Function evaluations: 735
-Optimization terminated successfully.
- Current function value: 12.818804
- Iterations: 439
- Function evaluations: 735
-
-[ 1.6258006 0.05172931 1.42632252 -7.45229732] [ 1.62581004 0.05172895 1.42633234 -7.45231965]
-Warning: Maximum number of function evaluations has been exceeded.
-[ -1.18109149 246.94438535 -16.21235536 24.05282629 -324.80867176
- 274.07378453]
-Warning: Maximum number of iterations has been exceeded
-[ 17.57107 -149.87528787 19.89079376 -72.49810777 -50.06067953
- 306.14170418]
-Optimization terminated successfully.
- Current function value: 506.488765
- Iterations: 339
- Function evaluations: 550
-[ -3.08181404 234.34702702 -14.99684418 27.94090839 -237.1465136
- 284.75079529]
-[ -3.08181304 234.34701361 -14.99684381 27.94088692 -237.14649571
- 274.6857294 ]
-[ 5.51471653 80.36595035 7.46933695 82.92232357 199.35166485]
-llf -506.488764864 -506.488764864
-Optimization terminated successfully.
- Current function value: 506.488765
- Iterations: 9
- Function evaluations: 13
- Gradient evaluations: 13
-(array([ 2.41772580e-05, 1.62492628e-04, 2.79438138e-04,
- 1.90996240e-03, 2.07117946e-01, 1.28747174e+00]), array([[ 1.52225754e-02, 2.01838216e-02, 6.90127235e-02,
- -2.57002471e-04, -5.25941060e-01, -8.47339404e-01],
- [ 2.39797491e-01, -2.32325602e-01, -9.36235262e-01,
- 3.02434938e-03, 3.95614029e-02, -1.02035585e-01],
- [ -2.11381471e-02, 3.01074776e-02, 7.97208277e-02,
- -2.94955832e-04, 8.49402362e-01, -5.20391053e-01],
- [ -1.55821981e-01, -9.66926643e-01, 2.01517298e-01,
- 1.52397702e-03, 4.13805882e-03, -1.19878714e-02],
- [ -9.57881586e-01, 9.87911166e-02, -2.67819451e-01,
- 1.55192932e-03, -1.78717579e-02, -2.55757014e-02],
- [ -9.96486655e-04, -2.03697290e-03, -2.98130314e-03,
- -9.99992985e-01, -1.71500426e-05, 4.70854949e-06]]))
-[[ -4.91007768e-05 -7.28732630e-07 -2.51941401e-05 -2.50111043e-08
- -4.77484718e-08 -9.72022463e-08]]
-[[ -1.64845915e-08 -2.87059265e-08 -2.88764568e-07 -6.82121026e-09
- 2.84217094e-10 -1.70530257e-09]]
-[ -4.90678076e-05 -6.71320777e-07 -2.46166110e-05 -1.13686838e-08
- -4.83169060e-08 -9.37916411e-08]
-[ -4.56753924e-05 -6.50857146e-07 -2.31756303e-05 -1.70530257e-08
- -4.43378667e-08 -1.75592936e-02]
-[[ 2.99386348e+01 -1.24442928e+02 9.67254672e+00 -1.58968536e+02
- -5.91960010e+02 -2.48738183e+00]
- [ -1.24442928e+02 5.62972166e+03 -5.00079203e+02 -7.13057475e+02
- -7.82440674e+03 -1.05126925e+01]
- [ 9.67254672e+00 -5.00079203e+02 4.87472259e+01 3.37373299e+00
- 6.96960872e+02 7.69866589e-01]
- [ -1.58968536e+02 -7.13057475e+02 3.37373299e+00 6.82417837e+03
- 4.84485862e+03 3.21440021e+01]
- [ -5.91960010e+02 -7.82440674e+03 6.96960872e+02 4.84485862e+03
- 3.43753691e+04 9.37524459e+01]
- [ -2.48738183e+00 -1.05126925e+01 7.69866589e-01 3.21440021e+01
- 9.37524459e+01 5.23915258e+02]]
->>> res_norm3.bse
-array([ 5.47162086, 75.03147114, 6.98192136, 82.60858536,
- 185.40595756, 22.88919522])
->>> print res_norm3.model.score(res_norm3.params)
-[ -4.90678076e-05 -6.71320777e-07 -2.46166110e-05 -1.13686838e-08
- -4.83169060e-08 -9.37916411e-08]
->>> print res_norm3.model.score(start_params)
-[ -4.56753924e-05 -6.50857146e-07 -2.31756303e-05 -1.70530257e-08
- -4.43378667e-08 -1.75592936e-02]
->>> mod_norm2.loglike(start_params/2.)
--598.56178102781314
->>> print np.linalg.inv(-1*mod_norm2.hessian(res_norm3.params))
-[[ 2.99386348e+01 -1.24442928e+02 9.67254672e+00 -1.58968536e+02
- -5.91960010e+02 -2.48738183e+00]
- [ -1.24442928e+02 5.62972166e+03 -5.00079203e+02 -7.13057475e+02
- -7.82440674e+03 -1.05126925e+01]
- [ 9.67254672e+00 -5.00079203e+02 4.87472259e+01 3.37373299e+00
- 6.96960872e+02 7.69866589e-01]
- [ -1.58968536e+02 -7.13057475e+02 3.37373299e+00 6.82417837e+03
- 4.84485862e+03 3.21440021e+01]
- [ -5.91960010e+02 -7.82440674e+03 6.96960872e+02 4.84485862e+03
- 3.43753691e+04 9.37524459e+01]
- [ -2.48738183e+00 -1.05126925e+01 7.69866589e-01 3.21440021e+01
- 9.37524459e+01 5.23915258e+02]]
->>> print np.sqrt(np.diag(res_bfgs.cov_params()))
-[ 5.10032831 74.34988912 6.96522122 76.7091604 169.8117832
- 22.91695494]
->>> print res_norm3.bse
-[ 5.47162086 75.03147114 6.98192136 82.60858536 185.40595756
- 22.88919522]
->>> res_norm3.conf_int
->
->>> res_norm3.conf_int()
-Traceback (most recent call last):
- File "", line 1, in
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 993, in conf_int
- lower = self.params - dist.ppf(1-alpha/2,self.model.df_resid) *\
-AttributeError: 'MygMLE' object has no attribute 'df_resid'
-
->>> res_norm3.params
-array([ -3.08181304, 234.34701361, -14.99684381, 27.94088692,
- -237.14649571, 274.6857294 ])
->>> res2.params
-array([ -3.08181404, 234.34702702, -14.99684418, 27.94090839,
- -237.1465136 ])
->>>
->>> res_norm3.params - res2.params
-Traceback (most recent call last):
- File "", line 1, in
-ValueError: shape mismatch: objects cannot be broadcast to a single shape
-
->>> res_norm3.params[:-1] - res2.params
-array([ 9.96859735e-07, -1.34122981e-05, 3.72278400e-07,
- -2.14645839e-05, 1.78919019e-05])
->>>
->>> res_norm3.bse[:-1] - res2.bse
-array([ -0.04309567, -5.33447922, -0.48741559, -0.31373822, -13.94570729])
->>> (res_norm3.bse[:-1] / res2.bse) - 1
-array([-0.00781467, -0.06637735, -0.06525554, -0.00378352, -0.06995531])
->>> (res_norm3.bse[:-1] / res2.bse)*100. - 100
-array([-0.7814667 , -6.6377355 , -6.52555369, -0.37835193, -6.99553089])
->>> np.sqrt(np.diag(np.linalg.inv(res_norm3.model.hessian(res_bfgs.params))))
-array([ NaN, NaN, NaN, NaN, NaN, NaN])
->>> np.sqrt(np.diag(np.linalg.inv(-res_norm3.model.hessian(res_bfgs.params))))
-array([ 5.10032831, 74.34988912, 6.96522122, 76.7091604 ,
- 169.8117832 , 22.91695494])
->>> res_norm3.bse
-array([ 5.47162086, 75.03147114, 6.98192136, 82.60858536,
- 185.40595756, 22.88919522])
->>> res2.bse
-array([ 5.51471653, 80.36595035, 7.46933695, 82.92232357,
- 199.35166485])
->>>
->>> bse_bfgs = np.sqrt(np.diag(np.linalg.inv(-res_norm3.model.hessian(res_bfgs.params))))
->>> (bse_bfgs[:-1] / res2.bse)*100. - 100
-array([ -7.51422527, -7.4858335 , -6.74913633, -7.49275094, -14.8179759 ])
->>> hb=-approx_hess(res_bfgs.params, mod_norm2.loglike, epsilon=-1e-4)[0]
->>> hf=-approx_hess(res_bfgs.params, mod_norm2.loglike, epsilon=1e-4)[0]
->>> hh = (hf+hb)/2.
->>> bse_bfgs = np.sqrt(np.diag(np.linalg.inv(-hh)))
->>> bse_bfgs
-array([ NaN, NaN, NaN, NaN, NaN, NaN])
->>> bse_bfgs = np.sqrt(np.diag(np.linalg.inv(hh)))
->>> np.diag(hh)
-array([ 9.81680159e-01, 1.39920076e-02, 4.98101826e-01,
- 3.60955710e-04, 9.57811608e-04, 1.90709670e-03])
->>> np.diag(np.inv(hh))
-Traceback (most recent call last):
- File "", line 1, in
-AttributeError: 'module' object has no attribute 'inv'
-
->>> np.diag(np.linalg.inv(hh))
-array([ 2.64875153e+01, 5.91578496e+03, 5.13279911e+01,
- 6.11533345e+03, 3.33775960e+04, 5.24357391e+02])
->>> res2.bse**2
-array([ 3.04120984e+01, 6.45868598e+03, 5.57909945e+01,
- 6.87611175e+03, 3.97410863e+04])
->>> bse_bfgs
-array([ 5.14660231, 76.91414015, 7.1643556 , 78.20059751,
- 182.69536402, 22.89885131])
->>> bse_bfgs - res_norm3.bse
-array([-0.32501855, 1.88266901, 0.18243424, -4.40798785, -2.71059354,
- 0.00965609])
->>> (bse_bfgs[:-1] / res2.bse)*100. - 100
-array([-6.67512508, -4.29511526, -4.0831115 , -5.69415552, -8.35523538])
->>> (res_norm3.bse[:-1] / res2.bse)*100. - 100
-array([-0.7814667 , -6.6377355 , -6.52555369, -0.37835193, -6.99553089])
->>> (bse_bfgs / res_norm3.bse)*100. - 100
-array([-5.94007812, 2.50917247, 2.61295176, -5.33599242, -1.46197759,
- 0.04218624])
->>> bse_bfgs
-array([ 5.14660231, 76.91414015, 7.1643556 , 78.20059751,
- 182.69536402, 22.89885131])
->>> res_norm3.bse
-array([ 5.47162086, 75.03147114, 6.98192136, 82.60858536,
- 185.40595756, 22.88919522])
->>> res2.bse
-array([ 5.51471653, 80.36595035, 7.46933695, 82.92232357,
- 199.35166485])
->>> dir(res_bfgs)
-['__class__', '__delattr__', '__dict__', '__doc__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__str__', '__weakref__', 'bse', 'conf_int', 'cov_params', 'f_test', 'initialize', 'llf', 'mle_retvals', 'mle_settings', 'model', 'normalized_cov_params', 'params', 'scale', 't', 't_test']
->>> res_bfgs.scale
-1.0
->>> res2.scale
-81083.015420213851
->>> res2.mse_resid
-81083.015420213851
->>> print np.sqrt(np.diag(np.linalg.inv(-1*mod_norm2.hessian(res_bfgs.params))))
-[ 5.10032831 74.34988912 6.96522122 76.7091604 169.8117832
- 22.91695494]
->>> print np.sqrt(np.diag(np.linalg.inv(-1*res_bfgs.model.hessian(res_bfgs.params))))
-[ 5.10032831 74.34988912 6.96522122 76.7091604 169.8117832
- 22.91695494]
-
-Is scale a misnomer, actually scale squared, i.e. variance of error term ?
-'''
-
-print res_norm3.model.jac(res_norm3.params).shape
-
-jac = res_norm3.model.jac(res_norm3.params)
-print np.sqrt(np.diag(np.dot(jac.T, jac)))/start_params
-jac2 = res_norm3.model.jac(res_norm3.params, centered=True)
-
-print np.sqrt(np.diag(np.linalg.inv(np.dot(jac.T, jac))))
-print res_norm3.bse
-print res2.bse
diff --git a/statsmodels/scikits/statsmodels/examples/ex_generic_mle_t.py b/statsmodels/scikits/statsmodels/examples/ex_generic_mle_t.py
deleted file mode 100644
index feeb5b4..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_generic_mle_t.py
+++ /dev/null
@@ -1,270 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Wed Jul 28 08:28:04 2010
-
-Author: josef-pktd
-"""
-
-
-import numpy as np
-
-from scipy import stats, special
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.model import GenericLikelihoodModel
-
-#redefine some shortcuts
-np_log = np.log
-np_pi = np.pi
-sps_gamln = special.gammaln
-
-
-def maxabs(arr1, arr2):
- return np.max(np.abs(arr1 - arr2))
-
-def maxabsrel(arr1, arr2):
- return np.max(np.abs(arr2 / arr1 - 1))
-
-
-
-class MyT(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Poisson Model
-
- This is an example for generic MLE which has the same
- statistical model as discretemod.Poisson.
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- '''
-
- def loglike(self, params):
- return -self.nloglikeobs(params).sum(0)
-
- # copied from discretemod.Poisson
- def nloglikeobs(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
- #print len(params),
- beta = params[:-2]
- df = params[-2]
- scale = params[-1]
- loc = np.dot(self.exog, beta)
- endog = self.endog
- x = (endog - loc)/scale
- #next part is stats.t._logpdf
- lPx = sps_gamln((df+1)/2) - sps_gamln(df/2.)
- lPx -= 0.5*np_log(df*np_pi) + (df+1)/2.*np_log(1+(x**2)/df)
- lPx -= np_log(scale) # correction for scale
- return -lPx
-
-
-#Example:
-np.random.seed(98765678)
-nobs = 1000
-rvs = np.random.randn(nobs,5)
-data_exog = sm.add_constant(rvs)
-xbeta = 0.9 + 0.1*rvs.sum(1)
-data_endog = xbeta + 0.1*np.random.standard_t(5, size=nobs)
-#print data_endog
-
-modp = MyT(data_endog, data_exog)
-modp.start_value = np.ones(data_exog.shape[1]+2)
-modp.start_value[-2] = 10
-modp.start_params = modp.start_value
-resp = modp.fit(start_params = modp.start_value)
-print resp.params
-print resp.bse
-
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1, approx_hess
-
-hb=-approx_hess(modp.start_value, modp.loglike, epsilon=-1e-4)[0]
-tmp = modp.loglike(modp.start_value)
-print tmp.shape
-
-
-'''
->>> tmp = modp.loglike(modp.start_value)
-8
->>> tmp.shape
-(100,)
->>> tmp.sum(0)
--24220.877108016182
->>> tmp = modp.nloglikeobs(modp.start_value)
-8
->>> tmp.shape
-(100, 100)
->>> np.dot(modp.exog, beta).shape
-Traceback (most recent call last):
- File "", line 1, in
-NameError: name 'beta' is not defined
-
->>> params = modp.start_value
->>> beta = params[:-2]
->>> beta.shape
-(6,)
->>> np.dot(modp.exog, beta).shape
-(100,)
->>> modp.endog.shape
-(100, 100)
->>> xbeta.shape
-(100,)
->>>
-'''
-
-'''
-C:\Programs\Python25\lib\site-packages\matplotlib-0.99.1-py2.5-win32.egg\matplotlib\rcsetup.py:117: UserWarning: rcParams key "numerix" is obsolete and has no effect;
- please delete it from your matplotlibrc file
- warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
-repr(start_params) array([ 1., 1., 1., 1., 1., 1., 1., 1.])
-Optimization terminated successfully.
- Current function value: 91.897859
- Iterations: 108
- Function evaluations: 173
- Gradient evaluations: 173
-[ 1.58253308e-01 1.73188603e-01 1.77357447e-01 2.06707494e-02
- -1.31174789e-01 8.79915580e-01 6.47663840e+03 6.73457641e+02]
-[ NaN NaN NaN NaN NaN
- 28.26906182 NaN NaN]
-()
->>> resp.params
-array([ 1.58253308e-01, 1.73188603e-01, 1.77357447e-01,
- 2.06707494e-02, -1.31174789e-01, 8.79915580e-01,
- 6.47663840e+03, 6.73457641e+02])
->>> resp.bse
-array([ NaN, NaN, NaN, NaN,
- NaN, 28.26906182, NaN, NaN])
->>> resp.jac
-Traceback (most recent call last):
- File "", line 1, in
-AttributeError: 'GenericLikelihoodModelResults' object has no attribute 'jac'
-
->>> resp.bsejac
-array([ 45243.35919908, 51997.80776897, 41418.33021984,
- 42763.46575168, 50101.91631612, 42804.92083525,
- 3005625.35649203, 13826948.68708931])
->>> resp.bsejhj
-array([ 1.51643931, 0.80229636, 0.27720185, 0.4711138 , 0.9028682 ,
- 0.31673747, 0.00524426, 0.69729368])
->>> resp.covjac
-array([[ 2.04696155e+09, 1.46643494e+08, 7.59932781e+06,
- -2.39993397e+08, 5.62644255e+08, 2.34300598e+08,
- -3.07824799e+09, -1.93425470e+10],
- [ 1.46643494e+08, 2.70377201e+09, 1.06005712e+08,
- 3.76824011e+08, -1.21778986e+08, 5.38612723e+08,
- -2.12575784e+10, -1.69503271e+11],
- [ 7.59932781e+06, 1.06005712e+08, 1.71547808e+09,
- -5.94451158e+07, -1.44586401e+08, -5.41830441e+06,
- 1.25899515e+10, 1.06372065e+11],
- [ -2.39993397e+08, 3.76824011e+08, -5.94451158e+07,
- 1.82871400e+09, -5.66930891e+08, 3.75061111e+08,
- -6.84681772e+09, -7.29993789e+10],
- [ 5.62644255e+08, -1.21778986e+08, -1.44586401e+08,
- -5.66930891e+08, 2.51020202e+09, -4.67886982e+08,
- 1.78890380e+10, 1.75428694e+11],
- [ 2.34300598e+08, 5.38612723e+08, -5.41830441e+06,
- 3.75061111e+08, -4.67886982e+08, 1.83226125e+09,
- -1.27484996e+10, -1.12550321e+11],
- [ -3.07824799e+09, -2.12575784e+10, 1.25899515e+10,
- -6.84681772e+09, 1.78890380e+10, -1.27484996e+10,
- 9.03378378e+12, 2.15188047e+13],
- [ -1.93425470e+10, -1.69503271e+11, 1.06372065e+11,
- -7.29993789e+10, 1.75428694e+11, -1.12550321e+11,
- 2.15188047e+13, 1.91184510e+14]])
->>> hb
-array([[ 33.68732564, -2.33209221, -13.51255321, -1.60840159,
- -13.03920385, -9.3506543 , 4.86239173, -9.30409101],
- [ -2.33209221, 3.12512611, -6.08530968, -6.79232244,
- 3.66804898, 1.26497071, 5.10113409, -2.53482995],
- [ -13.51255321, -6.08530968, 31.14883498, -5.01514705,
- -10.48819911, -2.62533035, 3.82241581, -12.51046342],
- [ -1.60840159, -6.79232244, -5.01514705, 28.40141917,
- -8.72489636, -8.82449456, 5.47584023, -18.20500017],
- [ -13.03920385, 3.66804898, -10.48819911, -8.72489636,
- 9.03650914, 3.65206176, 6.55926726, -1.8233635 ],
- [ -9.3506543 , 1.26497071, -2.62533035, -8.82449456,
- 3.65206176, 21.41825348, -1.28610793, 4.28101146],
- [ 4.86239173, 5.10113409, 3.82241581, 5.47584023,
- 6.55926726, -1.28610793, 46.52354448, -32.23861427],
- [ -9.30409101, -2.53482995, -12.51046342, -18.20500017,
- -1.8233635 , 4.28101146, -32.23861427, 178.61978279]])
->>> np.linalg.eigh(hb)
-(array([ -10.50373649, 0.7460258 , 14.73131793, 29.72453087,
- 36.24103832, 41.98042979, 48.99815223, 190.04303734]), array([[-0.40303259, 0.10181305, 0.18164206, 0.48201456, 0.03916688,
- 0.00903695, 0.74620692, 0.05853619],
- [-0.3201713 , -0.88444855, -0.19867642, 0.02828812, 0.16733946,
- -0.21440765, -0.02927317, 0.01176904],
- [-0.41847094, 0.00170161, 0.04973298, 0.43276118, -0.55894304,
- 0.26454728, -0.49745582, 0.07251685],
- [-0.3508729 , -0.08302723, 0.25004884, -0.73495077, -0.38936448,
- 0.20677082, 0.24464779, 0.11448238],
- [-0.62065653, 0.44662675, -0.37388565, -0.19453047, 0.29084735,
- -0.34151809, -0.19088978, 0.00342713],
- [-0.15119802, -0.01099165, 0.84377273, 0.00554863, 0.37332324,
- -0.17917015, -0.30371283, -0.03635211],
- [ 0.15813581, 0.0293601 , 0.09882271, 0.03515962, -0.48768565,
- -0.81960996, 0.05248464, 0.22533642],
- [-0.06118044, -0.00549223, 0.03205047, -0.01782649, -0.21128588,
- -0.14391393, 0.05973658, -0.96226835]]))
->>> np.linalg.eigh(np.linalg.inv(hb))
-(array([-0.09520422, 0.00526197, 0.02040893, 0.02382062, 0.02759303,
- 0.03364225, 0.06788259, 1.34043621]), array([[-0.40303259, 0.05853619, 0.74620692, -0.00903695, -0.03916688,
- 0.48201456, 0.18164206, 0.10181305],
- [-0.3201713 , 0.01176904, -0.02927317, 0.21440765, -0.16733946,
- 0.02828812, -0.19867642, -0.88444855],
- [-0.41847094, 0.07251685, -0.49745582, -0.26454728, 0.55894304,
- 0.43276118, 0.04973298, 0.00170161],
- [-0.3508729 , 0.11448238, 0.24464779, -0.20677082, 0.38936448,
- -0.73495077, 0.25004884, -0.08302723],
- [-0.62065653, 0.00342713, -0.19088978, 0.34151809, -0.29084735,
- -0.19453047, -0.37388565, 0.44662675],
- [-0.15119802, -0.03635211, -0.30371283, 0.17917015, -0.37332324,
- 0.00554863, 0.84377273, -0.01099165],
- [ 0.15813581, 0.22533642, 0.05248464, 0.81960996, 0.48768565,
- 0.03515962, 0.09882271, 0.0293601 ],
- [-0.06118044, -0.96226835, 0.05973658, 0.14391393, 0.21128588,
- -0.01782649, 0.03205047, -0.00549223]]))
->>> np.diag(np.linalg.inv(hb))
-array([ 0.01991288, 1.0433882 , 0.00516616, 0.02642799, 0.24732871,
- 0.05281555, 0.02236704, 0.00643486])
->>> np.sqrt(np.diag(np.linalg.inv(hb)))
-array([ 0.14111302, 1.02146375, 0.07187597, 0.16256686, 0.49732154,
- 0.22981633, 0.14955616, 0.08021756])
->>> hess = modp.hessian(resp.params)
->>> np.sqrt(np.diag(np.linalg.inv(hess)))
-array([ 231.3823423 , 117.79508218, 31.46595143, 53.44753106,
- 132.4855704 , NaN, 5.47881705, 90.75332693])
->>> hb=-approx_hess(resp.params, modp.loglike, epsilon=-1e-4)[0]
->>> np.sqrt(np.diag(np.linalg.inv(hb)))
-array([ 31.93524822, 22.0333515 , NaN, 29.90198792,
- 38.82615785, NaN, NaN, NaN])
->>> hb=-approx_hess(resp.params, modp.loglike, epsilon=-1e-8)[0]
->>> np.sqrt(np.diag(np.linalg.inv(hb)))
-Traceback (most recent call last):
- File "", line 1, in
- File "C:\Programs\Python25\lib\site-packages\numpy\linalg\linalg.py", line 423, in inv
- return wrap(solve(a, identity(a.shape[0], dtype=a.dtype)))
- File "C:\Programs\Python25\lib\site-packages\numpy\linalg\linalg.py", line 306, in solve
- raise LinAlgError, 'Singular matrix'
-numpy.linalg.linalg.LinAlgError: Singular matrix
->>> resp.params
-array([ 1.58253308e-01, 1.73188603e-01, 1.77357447e-01,
- 2.06707494e-02, -1.31174789e-01, 8.79915580e-01,
- 6.47663840e+03, 6.73457641e+02])
->>>
-'''
diff --git a/statsmodels/scikits/statsmodels/examples/ex_generic_mle_tdist.py b/statsmodels/scikits/statsmodels/examples/ex_generic_mle_tdist.py
deleted file mode 100644
index 4ae9ca2..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_generic_mle_tdist.py
+++ /dev/null
@@ -1,1072 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Wed Jul 28 08:28:04 2010
-
-Author: josef-pktd
-"""
-
-
-import numpy as np
-
-from scipy import stats, special, optimize
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.model import GenericLikelihoodModel
-
-#redefine some shortcuts
-np_log = np.log
-np_pi = np.pi
-sps_gamln = special.gammaln
-
-
-def maxabs(arr1, arr2):
- return np.max(np.abs(arr1 - arr2))
-
-def maxabsrel(arr1, arr2):
- return np.max(np.abs(arr2 / arr1 - 1))
-
-#global
-store_params = []
-
-class MyT(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Linear Model with t-distributed errors
-
- This is an example for generic MLE which has the same
- statistical model as discretemod.Poisson.
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- '''
-
-
- def loglike(self, params):
- return -self.nloglikeobs(params).sum(0)
-
- # copied from discretemod.Poisson
- def nloglikeobs(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
- #print len(params),
- store_params.append(params)
- if not self.fixed_params is None:
- #print 'using fixed'
- params = self.expandparams(params)
-
- beta = params[:-2]
- df = params[-2]
- scale = params[-1]
- loc = np.dot(self.exog, beta)
- endog = self.endog
- x = (endog - loc)/scale
- #next part is stats.t._logpdf
- lPx = sps_gamln((df+1)/2) - sps_gamln(df/2.)
- lPx -= 0.5*np_log(df*np_pi) + (df+1)/2.*np_log(1+(x**2)/df)
- lPx -= np_log(scale) # correction for scale
- return -lPx
-
-
-#Example:
-np.random.seed(98765678)
-nobs = 1000
-nvars = 6
-df = 5
-rvs = np.random.randn(nobs, nvars-1)
-data_exog = sm.add_constant(rvs)
-xbeta = 0.9 + 0.1*rvs.sum(1)
-data_endog = xbeta + 0.1*np.random.standard_t(df, size=nobs)
-print data_endog.var()
-
-res_ols = sm.OLS(data_endog, data_exog).fit()
-print res_ols.scale
-print np.sqrt(res_ols.scale)
-print res_ols.params
-kurt = stats.kurtosis(res_ols.resid)
-df_fromkurt = 6./kurt + 4
-print stats.t.stats(df_fromkurt, moments='mvsk')
-print stats.t.stats(df, moments='mvsk')
-
-modp = MyT(data_endog, data_exog)
-start_value = 0.1*np.ones(data_exog.shape[1]+2)
-#start_value = np.zeros(data_exog.shape[1]+2)
-#start_value[:nvars] = sm.OLS(data_endog, data_exog).fit().params
-start_value[:nvars] = res_ols.params
-start_value[-2] = df_fromkurt #10
-start_value[-1] = np.sqrt(res_ols.scale) #0.5
-modp.start_params = start_value
-
-#adding fixed parameters
-
-fixdf = np.nan * np.zeros(modp.start_params.shape)
-fixdf[-2] = 100
-
-fixone = 0
-if fixone:
- modp.fixed_params = fixdf
- modp.fixed_paramsmask = np.isnan(fixdf)
- modp.start_params = modp.start_params[modp.fixed_paramsmask]
-else:
- modp.fixed_params = None
- modp.fixed_paramsmask = None
-
-
-resp = modp.fit(start_params = modp.start_params, disp=1, method='nm')#'newton')
-#resp = modp.fit(start_params = modp.start_params, disp=1, method='newton')
-print '\nestimation results t-dist'
-print resp.params
-print resp.bse
-resp2 = modp.fit(start_params = resp.params, method='Newton')
-print 'using Newton'
-print resp2.params
-print resp2.bse
-
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1, approx_hess
-
-hb=-approx_hess(modp.start_params, modp.loglike, epsilon=-1e-4)[0]
-tmp = modp.loglike(modp.start_params)
-print tmp.shape
-#np.linalg.eigh(np.linalg.inv(hb))[0]
-
-pp=np.array(store_params)
-print pp.min(0)
-print pp.max(0)
-
-
-
-
-##################### Example: Pareto
-# estimating scale doesn't work yet, a bug somewhere ?
-# fit_ks works well, but no bse or other result statistics yet
-
-
-
-
-
-#import for kstest based estimation
-#should be replace
-import scikits.statsmodels.sandbox.stats.distributions_patch
-
-class MyPareto(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation pareto distribution
-
- first version: iid case, with constant parameters
- '''
-
- #copied from stats.distribution
- def pdf(self, x, b):
- return b * x**(-b-1)
-
- def loglike(self, params):
- return -self.nloglikeobs(params).sum(0)
-
- def nloglikeobs(self, params):
- #print params.shape
- if not self.fixed_params is None:
- #print 'using fixed'
- params = self.expandparams(params)
- b = params[0]
- loc = params[1]
- scale = params[2]
- #loc = np.dot(self.exog, beta)
- endog = self.endog
- x = (endog - loc)/scale
- logpdf = np_log(b) - (b+1.)*np_log(x)
- logpdf -= np.log(scale)
- #lb = loc + scale
- #logpdf[endog>> res_par.params
-array([ 7.42705803e+152, 2.17339053e+153])
->>> mod_par.loglike(mod_p.start_params)
-Traceback (most recent call last):
- File "", line 1, in
-NameError: name 'mod_p' is not defined
-
->>> mod_par.loglike(mod_par.start_params)
--1085.1993430947232
->>> np.log(mod_par.pdf(mod_par.start_params))
-Traceback (most recent call last):
- File "", line 1, in
-TypeError: pdf() takes exactly 3 arguments (2 given)
-
->>> np.log(mod_par.pdf(*mod_par.start_params))
-0.69314718055994529
->>> mod_par.loglike(*mod_par.start_params)
-Traceback (most recent call last):
- File "", line 1, in
-TypeError: loglike() takes exactly 2 arguments (3 given)
-
->>> mod_par.loglike(mod_par.start_params)
--1085.1993430947232
->>> np.log(stats.pareto.pdf(y[0],*mod_par.start_params))
--4.6414308627431353
->>> mod_par.loglike(mod_par.start_params)
--1085.1993430947232
->>> mod_par.nloglikeobs(mod_par.start_params)[0]
-0.29377232943845044
->>> mod_par.start_params
-array([ 1., 2.])
->>> np.log(stats.pareto.pdf(y[0],1,9.5,2))
--1.2806918394368461
->>> mod_par.fixed_params= None
->>> mod_par.nloglikeobs(np.array([1., 10., 2.]))[0]
-0.087533156771285828
->>> y[0]
-12.182956907488885
->>> mod_para.endog[0]
-Traceback (most recent call last):
- File "", line 1, in
-NameError: name 'mod_para' is not defined
-
->>> mod_par.endog[0]
-12.182956907488885
->>> np.log(stats.pareto.pdf(y[0],1,10,2))
--0.86821349410251702
->>> np.log(stats.pareto.pdf(y[0],1.,10.,2.))
--0.86821349410251702
->>> stats.pareto.pdf(y[0],1.,10.,2.)
-0.41970067762301644
->>> mod_par.loglikeobs(np.array([1., 10., 2.]))[0]
--0.087533156771285828
->>>
-'''
-
-'''
->>> mod_par.nloglikeobs(np.array([1., 10., 2.]))[0]
-0.86821349410251691
->>> np.log(stats.pareto.pdf(y,1.,10.,2.)).sum()
--2627.9403758026938
-'''
-
-
-#'''
-#C:\Programs\Python25\lib\site-packages\matplotlib-0.99.1-py2.5-win32.egg\matplotlib\rcsetup.py:117: UserWarning: rcParams key "numerix" is obsolete and has no effect;
-# please delete it from your matplotlibrc file
-# warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
-#0.0686702747648
-#0.0164150896481
-#0.128121386381
-#[ 0.10370428 0.09921315 0.09676723 0.10457413 0.10201618 0.89964496]
-#(array(0.0), array(1.4552599885729827), array(0.0), array(2.5072143354058203))
-#(array(0.0), array(1.6666666666666667), array(0.0), array(6.0))
-#repr(start_params) array([ 0.10370428, 0.09921315, 0.09676723, 0.10457413, 0.10201618,
-# 0.89964496, 6.39309417, 0.12812139])
-#Optimization terminated successfully.
-# Current function value: -679.951339
-# Iterations: 398
-# Function evaluations: 609
-#
-#estimation results t-dist
-#[ 0.10400826 0.10111893 0.09725133 0.10507788 0.10086163 0.8996041
-# 4.72131318 0.09825355]
-#[ 0.00365493 0.00356149 0.00349329 0.00362333 0.003732 0.00362716
-# 0.72325227 0.00388822]
-#repr(start_params) array([ 0.10400826, 0.10111893, 0.09725133, 0.10507788, 0.10086163,
-# 0.8996041 , 4.72131318, 0.09825355])
-#Optimization terminated successfully.
-# Current function value: -679.950443
-# Iterations 3
-#using Newton
-#[ 0.10395383 0.10106762 0.09720665 0.10503384 0.10080599 0.89954546
-# 4.70918964 0.09815885]
-#[ 0.00365299 0.00355968 0.00349147 0.00362166 0.00373015 0.00362533
-# 0.72014669 0.00388436]
-#()
-#[ 0.09992709 0.09786601 0.09387356 0.10229919 0.09756623 0.85466272
-# 4.60459182 0.09661986]
-#[ 0.11308292 0.10828401 0.1028508 0.11268895 0.10934726 0.94462721
-# 7.15412655 0.13452746]
-#repr(start_params) array([ 1., 2.])
-#Warning: Maximum number of function evaluations has been exceeded.
-#repr(start_params) array([ 3.06504406e+302, 3.29325579e+303])
-#Traceback (most recent call last):
-# File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\examples\ex_generic_mle_tdist.py", line 222, in
-# res_par2 = mod_par.fit(start_params=res_par.params, method='newton', maxfun=10000, maxiter=5000)
-# File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 547, in fit
-# disp=disp, callback=callback, **kwargs)
-# File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 262, in fit
-# newparams = oldparams - np.dot(np.linalg.inv(H),
-# File "C:\Programs\Python25\lib\site-packages\numpy\linalg\linalg.py", line 423, in inv
-# return wrap(solve(a, identity(a.shape[0], dtype=a.dtype)))
-# File "C:\Programs\Python25\lib\site-packages\numpy\linalg\linalg.py", line 306, in solve
-# raise LinAlgError, 'Singular matrix'
-#numpy.linalg.linalg.LinAlgError: Singular matrix
-#
-#>>> mod_par.fixed_params
-#array([ NaN, 10., NaN])
-#>>> mod_par.start_params
-#array([ 1., 2.])
-#>>> np.source(stats.pareto.fit_fr)
-#In file: c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\stats\distributions_patch.py
-#
-#def fit_fr(self, data, *args, **kwds):
-# '''estimate distribution parameters by MLE taking some parameters as fixed
-#
-# Parameters
-# ----------
-# data : array, 1d
-# data for which the distribution parameters are estimated,
-# args : list ? check
-# starting values for optimization
-# kwds :
-#
-# - 'frozen' : array_like
-# values for frozen distribution parameters and, for elements with
-# np.nan, the corresponding parameter will be estimated
-#
-# Returns
-# -------
-# argest : array
-# estimated parameters
-#
-#
-# Examples
-# --------
-# generate random sample
-# >>> np.random.seed(12345)
-# >>> x = stats.gamma.rvs(2.5, loc=0, scale=1.2, size=200)
-#
-# estimate all parameters
-# >>> stats.gamma.fit(x)
-# array([ 2.0243194 , 0.20395655, 1.44411371])
-# >>> stats.gamma.fit_fr(x, frozen=[np.nan, np.nan, np.nan])
-# array([ 2.0243194 , 0.20395655, 1.44411371])
-#
-# keep loc fixed, estimate shape and scale parameters
-# >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, np.nan])
-# array([ 2.45603985, 1.27333105])
-#
-# keep loc and scale fixed, estimate shape parameter
-# >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
-# array([ 3.00048828])
-# >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, 1.2])
-# array([ 2.57792969])
-#
-# estimate only scale parameter for fixed shape and loc
-# >>> stats.gamma.fit_fr(x, frozen=[2.5, 0.0, np.nan])
-# array([ 1.25087891])
-#
-# Notes
-# -----
-# self is an instance of a distribution class. This can be attached to
-# scipy.stats.distributions.rv_continuous
-#
-# *Todo*
-#
-# * check if docstring is correct
-# * more input checking, args is list ? might also apply to current fit method
-#
-# '''
-# loc0, scale0 = map(kwds.get, ['loc', 'scale'],[0.0, 1.0])
-# Narg = len(args)
-#
-# if Narg == 0 and hasattr(self, '_fitstart'):
-# x0 = self._fitstart(data)
-# elif Narg > self.numargs:
-# raise ValueError, "Too many input arguments."
-# else:
-# args += (1.0,)*(self.numargs-Narg)
-# # location and scale are at the end
-# x0 = args + (loc0, scale0)
-#
-# if 'frozen' in kwds:
-# frmask = np.array(kwds['frozen'])
-# if len(frmask) != self.numargs+2:
-# raise ValueError, "Incorrect number of frozen arguments."
-# else:
-# # keep starting values for not frozen parameters
-# x0 = np.array(x0)[np.isnan(frmask)]
-# else:
-# frmask = None
-#
-# #print x0
-# #print frmask
-# return optimize.fmin(self.nnlf_fr, x0,
-# args=(np.ravel(data), frmask), disp=0)
-#
-#>>> stats.pareto.fit_fr(y, 1., frozen=[np.nan, loc, np.nan])
-#Traceback (most recent call last):
-# File "", line 1, in
-#NameError: name 'loc' is not defined
-#
-#>>> stats.pareto.fit_fr(y, 1., frozen=[np.nan, 10., np.nan])
-#array([ 1.0346268 , 2.00184808])
-#>>> stats.pareto.fit_fr(y, (1.,2), frozen=[np.nan, 10., np.nan])
-#Traceback (most recent call last):
-# File "", line 1, in
-# File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\stats\distributions_patch.py", line 273, in fit_fr
-# x0 = np.array(x0)[np.isnan(frmask)]
-#ValueError: setting an array element with a sequence.
-#
-#>>> stats.pareto.fit_fr(y, [1.,2], frozen=[np.nan, 10., np.nan])
-#Traceback (most recent call last):
-# File "", line 1, in
-# File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\stats\distributions_patch.py", line 273, in fit_fr
-# x0 = np.array(x0)[np.isnan(frmask)]
-#ValueError: setting an array element with a sequence.
-#
-#>>> stats.pareto.fit_fr(y, frozen=[np.nan, 10., np.nan])
-#array([ 1.03463526, 2.00184809])
-#>>> stats.pareto.pdf(y, 1.03463526, 10, 2.00184809).sum()
-#173.33947284555239
-#>>> mod_par(1.03463526, 10, 2.00184809)
-#Traceback (most recent call last):
-# File "", line 1, in
-#TypeError: 'MyPareto' object is not callable
-#
-#>>> mod_par.loglike(1.03463526, 10, 2.00184809)
-#Traceback (most recent call last):
-# File "", line 1, in
-#TypeError: loglike() takes exactly 2 arguments (4 given)
-#
-#>>> mod_par.loglike((1.03463526, 10, 2.00184809))
-#-962.21623668859741
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, 10, 2.00184809)).sum()
-#-inf
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, 9, 2.00184809)).sum()
-#-3074.5947476137271
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, 10., 2.00184809)).sum()
-#-inf
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, 9.9, 2.00184809)).sum()
-#-2677.3867091635661
-#>>> y.min()
-#12.001848089426717
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, loc=9.9, scale=2.00184809)).sum()
-#-2677.3867091635661
-#>>> np.log(stats.pareto.pdf(y, 1.03463526, loc=10., scale=2.00184809)).sum()
-#-inf
-#>>> stats.pareto.logpdf(y, 1.03463526, loc=10., scale=2.00184809).sum()
-#-inf
-#>>> stats.pareto.logpdf(y, 1.03463526, loc=9.99, scale=2.00184809).sum()
-#-2631.6120098202355
-#>>> mod_par.loglike((1.03463526, 9.99, 2.00184809))
-#-963.2513896113644
-#>>> maxabs(y, mod_par.endog)
-#0.0
-#>>> np.source(stats.pareto.logpdf)
-#In file: C:\Josef\_progs\Subversion\scipy-trunk_after\trunk\dist\scipy-0.9.0.dev6579.win32\Programs\Python25\Lib\site-packages\scipy\stats\distributions.py
-#
-# def logpdf(self, x, *args, **kwds):
-# """
-# Log of the probability density function at x of the given RV.
-#
-# This uses more numerically accurate calculation if available.
-#
-# Parameters
-# ----------
-# x : array-like
-# quantiles
-# arg1, arg2, arg3,... : array-like
-# The shape parameter(s) for the distribution (see docstring of the
-# instance object for more information)
-# loc : array-like, optional
-# location parameter (default=0)
-# scale : array-like, optional
-# scale parameter (default=1)
-#
-# Returns
-# -------
-# logpdf : array-like
-# Log of the probability density function evaluated at x
-#
-# """
-# loc,scale=map(kwds.get,['loc','scale'])
-# args, loc, scale = self._fix_loc_scale(args, loc, scale)
-# x,loc,scale = map(arr,(x,loc,scale))
-# args = tuple(map(arr,args))
-# x = arr((x-loc)*1.0/scale)
-# cond0 = self._argcheck(*args) & (scale > 0)
-# cond1 = (scale > 0) & (x >= self.a) & (x <= self.b)
-# cond = cond0 & cond1
-# output = empty(shape(cond),'d')
-# output.fill(NINF)
-# putmask(output,(1-cond0)*array(cond1,bool),self.badvalue)
-# goodargs = argsreduce(cond, *((x,)+args+(scale,)))
-# scale, goodargs = goodargs[-1], goodargs[:-1]
-# place(output,cond,self._logpdf(*goodargs) - log(scale))
-# if output.ndim == 0:
-# return output[()]
-# return output
-#
-#>>> np.source(stats.pareto._logpdf)
-#In file: C:\Josef\_progs\Subversion\scipy-trunk_after\trunk\dist\scipy-0.9.0.dev6579.win32\Programs\Python25\Lib\site-packages\scipy\stats\distributions.py
-#
-# def _logpdf(self, x, *args):
-# return log(self._pdf(x, *args))
-#
-#>>> np.source(stats.pareto._pdf)
-#In file: C:\Josef\_progs\Subversion\scipy-trunk_after\trunk\dist\scipy-0.9.0.dev6579.win32\Programs\Python25\Lib\site-packages\scipy\stats\distributions.py
-#
-# def _pdf(self, x, b):
-# return b * x**(-b-1)
-#
-#>>> stats.pareto.a
-#1.0
-#>>> (1-loc)/scale
-#Traceback (most recent call last):
-# File "", line 1, in
-#NameError: name 'loc' is not defined
-#
-#>>> b, loc, scale = (1.03463526, 9.99, 2.00184809)
-#>>> (1-loc)/scale
-#-4.4908502522786327
-#>>> (x-loc)/scale == 1
-#Traceback (most recent call last):
-# File "", line 1, in
-#NameError: name 'x' is not defined
-#
-#>>> (lb-loc)/scale == 1
-#Traceback (most recent call last):
-# File "", line 1, in
-#NameError: name 'lb' is not defined
-#
-#>>> lb = scale + loc
-#>>> lb
-#11.991848090000001
-#>>> (lb-loc)/scale == 1
-#False
-#>>> (lb-loc)/scale
-#1.0000000000000004
-#>>>
-#'''
-
-'''
-repr(start_params) array([ 1., 10., 2.])
-Optimization terminated successfully.
- Current function value: 2626.436870
- Iterations: 102
- Function evaluations: 210
-Optimization terminated successfully.
- Current function value: 0.016555
- Iterations: 16
- Function evaluations: 35
-[ 1.03482659 10.00737039 1.9944777 ]
-(1.0596088578825995, 9.9043376069230007, 2.0975104813987118)
->>> 9.9043376069230007 + 2.0975104813987118
-12.001848088321712
->>> y.min()
-12.001848089426717
-
-'''
-
-'''
-C:\Programs\Python25\lib\site-packages\matplotlib-0.99.1-py2.5-win32.egg\matplotlib\rcsetup.py:117: UserWarning: rcParams key "numerix" is obsolete and has no effect;
- please delete it from your matplotlibrc file
- warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
-0.0686702747648
-0.0164150896481
-0.128121386381
-[ 0.10370428 0.09921315 0.09676723 0.10457413 0.10201618 0.89964496]
-(array(0.0), array(1.4552599885729829), array(0.0), array(2.5072143354058221))
-(array(0.0), array(1.6666666666666667), array(0.0), array(6.0))
-repr(start_params) array([ 0.10370428, 0.09921315, 0.09676723, 0.10457413, 0.10201618,
- 0.89964496, 6.39309417, 0.12812139])
-Optimization terminated successfully.
- Current function value: -679.951339
- Iterations: 398
- Function evaluations: 609
-
-estimation results t-dist
-[ 0.10400826 0.10111893 0.09725133 0.10507788 0.10086163 0.8996041
- 4.72131318 0.09825355]
-[ 0.00365493 0.00356149 0.00349329 0.00362333 0.003732 0.00362716
- 0.72329352 0.00388832]
-repr(start_params) array([ 0.10400826, 0.10111893, 0.09725133, 0.10507788, 0.10086163,
- 0.8996041 , 4.72131318, 0.09825355])
-Optimization terminated successfully.
- Current function value: -679.950443
- Iterations 3
-using Newton
-[ 0.10395383 0.10106762 0.09720665 0.10503384 0.10080599 0.89954546
- 4.70918964 0.09815885]
-[ 0.00365299 0.00355968 0.00349147 0.00362166 0.00373015 0.00362533
- 0.7201488 0.00388437]
-()
-[ 0.09992709 0.09786601 0.09387356 0.10229919 0.09756623 0.85466272
- 4.60459182 0.09661986]
-[ 0.11308292 0.10828401 0.1028508 0.11268895 0.10934726 0.94462721
- 7.15412655 0.13452746]
-repr(start_params) array([ 1., 9., 2.])
-Optimization terminated successfully.
- Current function value: 2636.129089
- Iterations: 147
- Function evaluations: 279
-Optimization terminated successfully.
- Current function value: 0.016555
- Iterations: 16
- Function evaluations: 35
-[ 0.84856418 10.2197801 1.78206799]
-(1.0596088578825995, 9.9043376069230007, 2.0975104813987118)
-12.0018480891 12.0018480883 12.0018480894
-repr(start_params) array([ 1., 2.])
-Warning: Desired error not necessarily achieveddue to precision loss
- Current function value: 2643.549907
- Iterations: 2
- Function evaluations: 13
- Gradient evaluations: 12
->>> res_parks2 = mod_par.fit_ks()
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2642.465273
- Iterations: 92
- Function evaluations: 172
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2636.639863
- Iterations: 73
- Function evaluations: 136
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2631.568778
- Iterations: 75
- Function evaluations: 133
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2627.821044
- Iterations: 75
- Function evaluations: 135
-repr(start_params) array([ 1., 2.])
-Warning: Maximum number of function evaluations has been exceeded.
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2631.568778
- Iterations: 75
- Function evaluations: 133
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.431596
- Iterations: 58
- Function evaluations: 109
-repr(start_params) array([ 1., 2.])
-Warning: Maximum number of function evaluations has been exceeded.
-repr(start_params) array([ 1., 2.])
-Warning: Maximum number of function evaluations has been exceeded.
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.737426
- Iterations: 60
- Function evaluations: 109
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2627.821044
- Iterations: 75
- Function evaluations: 135
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.471666
- Iterations: 48
- Function evaluations: 94
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2627.196314
- Iterations: 66
- Function evaluations: 119
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.578538
- Iterations: 56
- Function evaluations: 103
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.471666
- Iterations: 48
- Function evaluations: 94
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.651702
- Iterations: 67
- Function evaluations: 122
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.737426
- Iterations: 60
- Function evaluations: 109
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.613505
- Iterations: 73
- Function evaluations: 141
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.578538
- Iterations: 56
- Function evaluations: 103
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.632218
- Iterations: 64
- Function evaluations: 119
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.651702
- Iterations: 67
- Function evaluations: 122
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.622789
- Iterations: 63
- Function evaluations: 114
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.613505
- Iterations: 73
- Function evaluations: 141
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.627465
- Iterations: 59
- Function evaluations: 109
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.632218
- Iterations: 64
- Function evaluations: 119
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.625104
- Iterations: 59
- Function evaluations: 108
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.629829
- Iterations: 66
- Function evaluations: 118
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.632218
- Iterations: 64
- Function evaluations: 119
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.632218
- Iterations: 64
- Function evaluations: 119
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.628642
- Iterations: 67
- Function evaluations: 122
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.631023
- Iterations: 68
- Function evaluations: 129
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.630430
- Iterations: 57
- Function evaluations: 108
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.629598
- Iterations: 60
- Function evaluations: 112
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.630430
- Iterations: 57
- Function evaluations: 108
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.630130
- Iterations: 65
- Function evaluations: 122
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.629536
- Iterations: 62
- Function evaluations: 111
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.630130
- Iterations: 65
- Function evaluations: 122
-repr(start_params) array([ 1., 2.])
-Optimization terminated successfully.
- Current function value: 2626.629984
- Iterations: 67
- Function evaluations: 123
-Optimization terminated successfully.
- Current function value: 0.016560
- Iterations: 18
- Function evaluations: 38
->>> res_parks2
-(1.0592352626264809, 9.9051580457572399, 2.0966900385041591)
->>> res_parks
-(1.0596088578825995, 9.9043376069230007, 2.0975104813987118)
->>> res_par.params
-array([ 0.84856418, 10.2197801 , 1.78206799])
->>> np.sqrt(np.diag(mod_par.hessian(res_par.params)))
-array([ NaN, NaN, NaN])
->>> mod_par.hessian(res_par.params
-... )
-array([[ NaN, NaN, NaN],
- [ NaN, NaN, NaN],
- [ NaN, NaN, NaN]])
->>> mod_par.hessian(res_parks)
-Traceback (most recent call last):
- File "", line 1, in
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 533, in hessian
- return approx_hess(params, self.loglike)[0] #need options for hess (epsilon)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\regression\numdiff.py", line 118, in approx_hess
- xh = x + h
-TypeError: can only concatenate tuple (not "float") to tuple
-
->>> mod_par.hessian(np.array(res_parks))
-array([[ NaN, NaN, NaN],
- [ NaN, NaN, NaN],
- [ NaN, NaN, NaN]])
->>> mod_par.fixed_params
-array([ NaN, 9.90510677, NaN])
->>> mod_par.fixed_params=None
->>> mod_par.hessian(np.array(res_parks))
-array([[-890.48553491, NaN, NaN],
- [ NaN, NaN, NaN],
- [ NaN, NaN, NaN]])
->>> mod_par.loglike(np.array(res_parks))
--2626.6322080820569
->>> mod_par.bsejac
-Traceback (most recent call last):
- File "", line 1, in
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\decorators.py", line 85, in __get__
- _cachedval = self.fget(obj)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 592, in bsejac
- return np.sqrt(np.diag(self.covjac))
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\decorators.py", line 85, in __get__
- _cachedval = self.fget(obj)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 574, in covjac
- jacv = self.jacv
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\decorators.py", line 85, in __get__
- _cachedval = self.fget(obj)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 557, in jacv
- return self.jac(self._results.params)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 530, in jac
- return approx_fprime1(params, self.loglikeobs, **kwds)
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\regression\numdiff.py", line 80, in approx_fprime1
- f0 = f(*((xk,)+args))
- File "c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\model.py", line 522, in loglikeobs
- return -self.nloglikeobs(params)
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\examples\ex_generic_mle_tdist.py", line 184, in nloglikeobs
- scale = params[2]
-IndexError: index out of bounds
->>> hasattr(self, 'start_params')
-Traceback (most recent call last):
- File "", line 1, in
-NameError: name 'self' is not defined
-
->>> hasattr(mod_par, 'start_params')
-True
->>> mod_par.start_params
-array([ 1., 2.])
->>> stats.pareto.stats(1., 9., 2., moments='mvsk')
-(array(1.#INF), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(1., 8., 2., moments='mvsk')
-(array(1.#INF), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(1., 8., 1., moments='mvsk')
-(array(1.#INF), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(1., moments='mvsk')
-(array(1.#INF), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(0.5., moments='mvsk')
- File "", line 1
- stats.pareto.stats(0.5., moments='mvsk')
- ^
-SyntaxError: invalid syntax
-
->>> stats.pareto.stats(0.5, moments='mvsk')
-(array(1.#INF), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(2, moments='mvsk')
-(array(2.0), array(1.#INF), array(1.#QNAN), array(1.#QNAN))
->>> stats.pareto.stats(10, moments='mvsk')
-(array(1.1111111111111112), array(0.015432098765432098), array(2.8110568859997356), array(14.828571428571429))
->>> stats.pareto.rvs(10, size=10)
-array([ 1.07716265, 1.18977526, 1.07093 , 1.05157081, 1.15991232,
- 1.31015589, 1.06675107, 1.08082475, 1.19501243, 1.34967158])
->>> r = stats.pareto.rvs(10, size=1000)
->>> plt
-Traceback (most recent call last):
- File "", line 1, in
-NameError: name 'plt' is not defined
-
->>> import matplotlib.pyplot as plt
->>> plt.hist(r)
-(array([962, 32, 3, 2, 0, 0, 0, 0, 0, 1]), array([ 1.00013046, 1.3968991 , 1.79366773, 2.19043637, 2.587205 ,
- 2.98397364, 3.38074227, 3.77751091, 4.17427955, 4.57104818,
- 4.96781682]), )
->>> plt.show()
-
-'''
diff --git a/statsmodels/scikits/statsmodels/examples/ex_misc_tmodel.py b/statsmodels/scikits/statsmodels/examples/ex_misc_tmodel.py
deleted file mode 100644
index baf6ae4..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_misc_tmodel.py
+++ /dev/null
@@ -1,84 +0,0 @@
-
-import numpy as np
-
-from scipy import stats, special, optimize
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.miscmodels import TLinearModel
-
-#Example:
-#np.random.seed(98765678)
-nobs = 50
-nvars = 6
-df = 3
-rvs = np.random.randn(nobs, nvars-1)
-data_exog = sm.add_constant(rvs)
-xbeta = 0.9 + 0.1*rvs.sum(1)
-data_endog = xbeta + 0.1*np.random.standard_t(df, size=nobs)
-print 'variance of endog:', data_endog.var()
-print 'true parameters:', [0.1]*nvars + [0.9]
-
-res_ols = sm.OLS(data_endog, data_exog).fit()
-print '\nResults with ols'
-print '----------------'
-print res_ols.scale
-print np.sqrt(res_ols.scale)
-print res_ols.params
-print res_ols.bse
-kurt = stats.kurtosis(res_ols.resid)
-df_fromkurt = 6./kurt + 4
-print 'df_fromkurt from ols residuals', df_fromkurt
-print stats.t.stats(df_fromkurt, moments='mvsk')
-print stats.t.stats(df, moments='mvsk')
-
-modp = TLinearModel(data_endog, data_exog)
-start_value = 0.1*np.ones(data_exog.shape[1]+2)
-#start_value = np.zeros(data_exog.shape[1]+2)
-#start_value[:nvars] = sm.OLS(data_endog, data_exog).fit().params
-start_value[:nvars] = res_ols.params
-start_value[-2] = df_fromkurt #10
-start_value[-1] = np.sqrt(res_ols.scale) #0.5
-modp.start_params = start_value
-
-#adding fixed parameters
-
-fixdf = np.nan * np.zeros(modp.start_params.shape)
-fixdf[-2] = 5
-
-fixone = 0
-if fixone:
- modp.fixed_params = fixdf
- modp.fixed_paramsmask = np.isnan(fixdf)
- modp.start_params = modp.start_params[modp.fixed_paramsmask]
-else:
- modp.fixed_params = None
- modp.fixed_paramsmask = None
-
-
-print '\nResults with TLinearModel'
-print '-------------------------'
-resp = modp.fit(start_params = modp.start_params, disp=1, method='nm',
- maxfun=10000, maxiter=5000)#'newton')
-#resp = modp.fit(start_params = modp.start_params, disp=1, method='newton')
-
-print 'using Nelder-Mead'
-print resp.params
-print resp.bse
-resp2 = modp.fit(start_params = resp.params, method='Newton')
-print 'using Newton'
-print resp2.params
-print resp2.bse
-
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1, approx_hess
-
-hb=-approx_hess(modp.start_params, modp.loglike, epsilon=-1e-4)[0]
-tmp = modp.loglike(modp.start_params)
-print tmp.shape
-print 'eigenvalues of numerical Hessian'
-print np.linalg.eigh(np.linalg.inv(hb))[0]
-
-#store_params is only available in original test script
-##pp=np.array(store_params)
-##print pp.min(0)
-##print pp.max(0)
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/ex_pareto_plot.py b/statsmodels/scikits/statsmodels/examples/ex_pareto_plot.py
deleted file mode 100644
index 2601393..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_pareto_plot.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sun Aug 01 19:20:16 2010
-
-Author: josef-pktd
-"""
-
-
-import numpy as np
-from scipy import stats
-import matplotlib.pyplot as plt
-
-nobs = 1000
-r = stats.pareto.rvs(1, size=nobs)
-
-#rhisto = np.histogram(r, bins=20)
-rhisto, e = np.histogram(np.clip(r, 0 , 1000), bins=50)
-plt.figure()
-plt.loglog(e[:-1]+np.diff(e)/2, rhisto, '-o')
-plt.figure()
-plt.loglog(e[:-1]+np.diff(e)/2, nobs-rhisto.cumsum(), '-o')
-##plt.figure()
-##plt.plot(e[:-1]+np.diff(e)/2, rhisto.cumsum(), '-o')
-##plt.figure()
-##plt.semilogx(e[:-1]+np.diff(e)/2, nobs-rhisto.cumsum(), '-o')
-
-rsind = np.argsort(r)
-rs = r[rsind]
-rsf = nobs-rsind.argsort()
-plt.figure()
-plt.loglog(rs, nobs-np.arange(nobs), '-o')
-print stats.linregress(np.log(rs), np.log(nobs-np.arange(nobs)))
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/ex_scatter_ellipse.py b/statsmodels/scikits/statsmodels/examples/ex_scatter_ellipse.py
deleted file mode 100644
index 3330bd0..0000000
--- a/statsmodels/scikits/statsmodels/examples/ex_scatter_ellipse.py
+++ /dev/null
@@ -1,50 +0,0 @@
-'''example for grid of scatter plots with probability ellipses
-
-
-Author: Josef Perktold
-License: BSD-3
-'''
-
-
-
-import numpy as np
-import matplotlib.pyplot as plt
-
-from scikits.statsmodels.graphics.plot_grids import scatter_ellipse
-
-
-nvars = 6
-mmean = np.arange(1.,nvars+1)/nvars * 1.5
-rho = 0.5
-#dcorr = rho*np.ones((nvars, nvars)) + (1-rho)*np.eye(nvars)
-r = np.random.uniform(-0.99, 0.99, size=(nvars, nvars))
-##from scipy import stats
-##r = stats.rdist.rvs(1, size=(nvars, nvars))
-r = (r + r.T) / 2.
-assert np.allclose(r, r.T)
-mcorr = r
-mcorr[range(nvars), range(nvars)] = 1
-#dcorr = np.array([[1, 0.5, 0.1],[0.5, 1, -0.2], [0.1, -0.2, 1]])
-mstd = np.arange(1.,nvars+1)/nvars
-mcov = mcorr * np.outer(mstd, mstd)
-evals = np.linalg.eigvalsh(mcov)
-assert evals.min > 0 #assert positive definite
-
-nobs = 100
-data = np.random.multivariate_normal(mmean, mcov, size=nobs)
-dmean = data.mean(0)
-dcov = np.cov(data, rowvar=0)
-print dmean
-print dcov
-dcorr = np.corrcoef(data, rowvar=0)
-dcorr[np.triu_indices(nvars)] = 0
-print dcorr
-
-#default
-#fig = scatter_ellipse(data, level=[0.5, 0.75, 0.95])
-#used for checking
-#fig = scatter_ellipse(data, level=[0.5, 0.75, 0.95], add_titles=True, keep_ticks=True)
-#check varnames
-varnames = ['var%d' % i for i in range(nvars)]
-fig = scatter_ellipse(data, level=0.9, varnames=varnames)
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/example_discrete.py b/statsmodels/scikits/statsmodels/examples/example_discrete.py
deleted file mode 100644
index 99d51e7..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_discrete.py
+++ /dev/null
@@ -1,71 +0,0 @@
-"""Example: scikits.statsmodels.discretemod
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from matplotlib import pyplot as plt
-
-# load the data from Spector and Mazzeo (1980)
-# Examples follow Greene's Econometric Analysis Ch. 21 (5th Edition).
-spector_data = sm.datasets.spector.load()
-spector_data.exog = sm.add_constant(spector_data.exog)
-
-# Linear Probability Model using OLS
-lpm_mod = sm.OLS(spector_data.endog,spector_data.exog)
-lpm_res = lpm_mod.fit()
-
-# Logit Model
-logit_mod = sm.Logit(spector_data.endog, spector_data.exog)
-logit_res = logit_mod.fit()
-
-# Probit Model
-probit_mod = sm.Probit(spector_data.endog, spector_data.exog)
-probit_res = probit_mod.fit()
-
-print "This example is based on Greene Table 21.1 5th Edition"
-print "Linear Model"
-print lpm_res.params
-print "Logit Model"
-print logit_res.params
-print "Probit Model"
-print probit_res.params
-#print "Typo in Greene for Weibull, replaced with logWeibull or Gumbel"
-#print "(Tentatively) Weibull Model"
-#print weibull_res.params
-
-print "Linear Model"
-print lpm_res.params[:-1]
-print "Logit Model"
-print logit_res.margeff()
-print "Probit Model"
-print probit_res.margeff()
-
-anes_data = sm.datasets.anes96.load()
-anes_exog = anes_data.exog
-anes_exog[:,0] = np.log(anes_exog[:,0] + .1)
-anes_exog = np.column_stack((anes_exog[:,0],anes_exog[:,2],anes_exog[:,5:8]))
-anes_exog = sm.add_constant(anes_exog)
-mlogit_mod = sm.MNLogit(anes_data.endog, anes_exog)
-mlogit_res = mlogit_mod.fit()
-
-# The default method for the fit is Newton-Raphson
-# However, you can use other solvers
-mlogit_res = mlogit_mod.fit(method='bfgs', maxiter=100)
-# The below needs a lot of iterations to get it right?
-#TODO: Add a technical note on algorithms
-#mlogit_res = mlogit_mod.fit(method='ncg') # this takes forever
-
-# Poisson model
-# This is similar to Cameron and Trivedi's Microeconometrics
-# Table 20.5; however, the data differs slightly from theirs
-rand_data = sm.datasets.randhie.load()
-rand_exog = rand_data.exog.view(float).reshape(len(rand_data.exog), -1)
-rand_exog = sm.add_constant(rand_exog)
-poisson_mod = sm.Poisson(rand_data.endog, rand_exog)
-poisson_res = poisson_mod.fit(method="newton")
-
-print poisson_res.summary()
-
-poisson_res.plot_fit_summary()
-plt.show()
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_discrete_mnl.py b/statsmodels/scikits/statsmodels/examples/example_discrete_mnl.py
deleted file mode 100644
index 41f2bc7..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_discrete_mnl.py
+++ /dev/null
@@ -1,69 +0,0 @@
-"""Example: scikits.statsmodels.discretemod
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from matplotlib import pyplot as plt
-
-anes_data = sm.datasets.anes96.load()
-anes_exog = anes_data.exog
-anes_exog[:,0] = np.log(anes_exog[:,0] + .1)
-anes_exog = np.column_stack((anes_exog[:,0],anes_exog[:,2],anes_exog[:,5:8]))
-anes_exog = sm.add_constant(anes_exog, prepend=False)
-mlogit_mod = sm.MNLogit(anes_data.endog, anes_exog)
-mlogit_res = mlogit_mod.fit()
-mlogit_res.plot_fit_summary()
-plt.show()
-# The default method for the fit is Newton-Raphson
-# However, you can use other solvers
-mlogit_res = mlogit_mod.fit(method='bfgs', maxiter=100)
-# The below needs a lot of iterations to get it right?
-#TODO: Add a technical note on algorithms
-#mlogit_res = mlogit_mod.fit(method='ncg') # this takes forever
-
-
-from scikits.statsmodels.iolib.summary import (
- summary_params_2d, summary_params_2dflat)
-
-exog_names = [anes_data.exog_name[i] for i in [0, 2]+range(5,8)] + ['const']
-endog_names = [anes_data.endog_name+'_%d' % i for i in np.unique(mlogit_res.model.endog)[1:]]
-print '\n\nMultinomial'
-print summary_params_2d(mlogit_res, extras=['bse','tvalues'],
- endog_names=endog_names, exog_names=exog_names)
-tables, table_all = summary_params_2dflat(mlogit_res,
- endog_names=endog_names,
- exog_names=exog_names,
- keep_headers=True)
-tables, table_all = summary_params_2dflat(mlogit_res,
- endog_names=endog_names,
- exog_names=exog_names,
- keep_headers=False)
-print '\n\n'
-print table_all
-print '\n\n'
-print '\n'.join((str(t) for t in tables))
-
-from scikits.statsmodels.iolib.summary import table_extend
-at = table_extend(tables)
-print at
-
-print '\n\n'
-print mlogit_res.summary()
-print mlogit_res.summary(yname='PID')
-#the following is supposed to raise ValueError
-#mlogit_res.summary(yname=['PID'])
-
-endog_names = [anes_data.endog_name+'=%d' % i for i in np.unique(mlogit_res.model.endog)[1:]]
-print mlogit_res.summary(yname='PID', yname_list=endog_names, xname=exog_names)
-
-''' #trying pickle
-import pickle #, copy
-
-#copy.deepcopy(mlogit_res) #raises exception: AttributeError: 'ResettableCache' object has no attribute '_resetdict'
-mnl_res = mlogit_mod.fit(method='bfgs', maxiter=100)
-mnl_res.cov_params()
-#mnl_res.model.endog = None
-#mnl_res.model.exog = None
-pickle.dump(mnl_res, open('mnl_res.dump', 'w'))
-mnl_res_l = pickle.load(open('mnl_res.dump', 'r'))
-'''
diff --git a/statsmodels/scikits/statsmodels/examples/example_glm.py b/statsmodels/scikits/statsmodels/examples/example_glm.py
deleted file mode 100644
index 801aa6e..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_glm.py
+++ /dev/null
@@ -1,151 +0,0 @@
-'''Examples: scikits.statsmodels.GLM
-
-Note: uncomment plt.show() to display graphs
-'''
-import numpy as np
-import scikits.statsmodels.api as sm
-from scipy import stats
-from matplotlib import pyplot as plt
-
-### Example for using GLM on binomial response data
-### the input response vector in this case is N by 2 (success, failure)
-# This data is taken with permission from
-# Jeff Gill (2000) Generalized linear models: A unified approach
-# The dataset can be described by uncommenting
-
-# print sm.datasets.star98.DESCRLONG
-
-# The response variable is
-# (# of students above the math national median, # of students below)
-
-# The explanatory variables are (in column order)
-# The proportion of low income families "LOWINC"
-# The proportions of minority students,"PERASIAN","PERBLACK","PERHISP"
-# The percentage of minority teachers "PERMINTE",
-# The median teacher salary including benefits in 1000s "AVSALK"
-# The mean teacher experience in years "AVYRSEXP",
-# The per-pupil expenditures in thousands "PERSPENK"
-# The pupil-teacher ratio "PTRATIO"
-# The percent of students taking college credit courses "PCTAF",
-# The percentage of charter schools in the districut "PCTCHRT"
-# The percent of schools in the district operating year round "PCTYRRND"
-# The following are interaction terms "PERMINTE_AVYRSEXP","PERMINTE_AVSAL",
-# "AVYRSEXP_AVSAL","PERSPEN_PTRATIO","PERSPEN_PCTAF","PTRATIO_PCTAF",
-# "PERMINTE_AVYRSEXP_AVSAL","PERSPEN_PTRATIO_PCTAF"
-
-data = sm.datasets.star98.load()
-data.exog = sm.add_constant(data.exog, prepend=False)
-
-print """The response variable is (success, failure). Eg., the first
-observation is """, data.endog[0]
-print"""Giving a total number of trials for this observation of
-""", data.endog[0].sum()
-
-glm_binom = sm.GLM(data.endog, data.exog, family=sm.families.Binomial()).fit()
-
-#binom_results = glm_binom.fit()
-print """The fitted values are
-""", glm_binom.params
-print """The corresponding t-values are
-""", glm_binom.tvalues
-
-# It is common in GLMs with interactions to compare first differences.
-# We are interested in the difference of the impact of the explanatory variable
-# on the response variable. This example uses interquartile differences for
-# the percentage of low income households while holding the other values
-# constant at their mean.
-
-
-means = data.exog.mean(axis=0)
-means25 = means.copy()
-means25[0] = stats.scoreatpercentile(data.exog[:,0], 25)
-means75 = means.copy()
-means75[0] = lowinc_75per = stats.scoreatpercentile(data.exog[:,0], 75)
-resp_25 = glm_binom.predict(exog=means25)
-resp_75 = glm_binom.predict(exog=means75)
-diff = resp_75 - resp_25
-print """The interquartile first difference for the percentage of low income
-households in a school district is %2.4f %%""" % (diff*100)
-
-means0 = means.copy()
-means100 = means.copy()
-means0[0] = data.exog[:,0].min()
-means100[0] = data.exog[:,0].max()
-resp_0 = glm_binom.predict(means0)
-resp_100 = glm_binom.predict(means100)
-diff_full = resp_100 - resp_0
-print """The full range difference is %2.4f %%""" % (diff_full*100)
-
-nobs = glm_binom.nobs
-y = data.endog[:,0]/data.endog.sum(1)
-yhat = glm_binom.mu
-
-# Plot of yhat vs y
-plt.figure()
-plt.scatter(yhat, y)
-line_fit = sm.OLS(y, sm.add_constant(yhat)).fit().params
-fit = lambda x: line_fit[1]+line_fit[0]*x # better way in scipy?
-plt.plot(np.linspace(0,1,nobs), fit(np.linspace(0,1,nobs)))
-plt.title('Model Fit Plot')
-plt.ylabel('Observed values')
-plt.xlabel('Fitted values')
-
-# Plot of yhat vs. Pearson residuals
-plt.figure()
-plt.scatter(yhat, glm_binom.resid_pearson)
-plt.plot([0.0, 1.0],[0.0, 0.0], 'k-')
-plt.title('Residual Dependence Plot')
-plt.ylabel('Pearson Residuals')
-plt.xlabel('Fitted values')
-
-# Histogram of standardized deviance residuals
-plt.figure()
-res = glm_binom.resid_deviance.copy()
-stdres = (res - res.mean())/res.std()
-plt.hist(stdres, bins=25)
-plt.title('Histogram of standardized deviance residuals')
-
-# QQ Plot of Deviance Residuals
-plt.figure()
-res.sort()
-p = np.linspace(0 + 1./(nobs-1), 1-1./(nobs-1), nobs)
-quants = np.zeros_like(res)
-for i in range(nobs):
- quants[i] = stats.scoreatpercentile(res, p[i]*100)
-mu = res.mean()
-sigma = res.std()
-y = stats.norm.ppf(p, loc=mu, scale=sigma)
-plt.scatter(y, quants)
-plt.plot([y.min(),y.max()],[y.min(),y.max()],'r--')
-plt.title('Normal - Quantile Plot')
-plt.ylabel('Deviance Residuals Quantiles')
-plt.xlabel('Quantiles of N(0,1)')
-# in branch *-skipper
-#from scikits.statsmodels.sandbox import graphics
-#img = graphics.qqplot(res)
-
-plt.show()
-#plt.close('all')
-#check summary
-print glm_binom.summary()
-
-
-### Example for using GLM Gamma for a proportional count response
-# Brief description of the data and design
-# print sm.datasets.scotland.DESCRLONG
-data2 = sm.datasets.scotland.load()
-data2.exog = sm.add_constant(data2.exog)
-glm_gamma = sm.GLM(data2.endog, data2.exog, family=sm.families.Gamma())
-glm_results = glm_gamma.fit()
-
-### Example for Gaussian distribution with a noncanonical link
-nobs2 = 100
-x = np.arange(nobs2)
-np.random.seed(54321)
-X = np.column_stack((x,x**2))
-X = sm.add_constant(X)
-lny = np.exp(-(.03*x + .0001*x**2 - 1.0)) + .001 * np.random.rand(nobs2)
-gauss_log = sm.GLM(lny, X, family=sm.families.Gaussian(sm.families.links.log))
-gauss_log_results = gauss_log.fit()
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_gls.py b/statsmodels/scikits/statsmodels/examples/example_gls.py
deleted file mode 100644
index 46e58ed..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_gls.py
+++ /dev/null
@@ -1,75 +0,0 @@
-"""
-Example: scikis.statsmodels.GLS
-"""
-
-import scikits.statsmodels.api as sm
-import numpy as np
-data = sm.datasets.longley.load()
-data.exog = sm.add_constant(data.exog)
-
-# The Longley dataset is a time series dataset
-# Let's assume that the data is heteroskedastic and that we know
-# the nature of the heteroskedasticity. We can then define
-# `sigma` and use it to give us a GLS model
-
-# First we will obtain the residuals from an OLS fit
-
-ols_resid = sm.OLS(data.endog, data.exog).fit().resid
-
-# Assume that the error terms follow an AR(1) process with a trend
-# resid[i] = beta_0 + rho*resid[i-1] + e[i]
-# where e ~ N(0,some_sigma**2)
-# and that rho is simply the correlation of the residuals
-# a consistent estimator for rho is to regress the residuals
-# on the lagged residuals
-
-resid_fit = sm.OLS(ols_resid[1:], sm.add_constant(ols_resid[:-1])).fit()
-print resid_fit.tvalues[0]
-print resid_fit.pvalues[0]
-# While we don't have strong evidence that the errors follow an AR(1)
-# process we continue
-
-rho = resid_fit.params[0]
-
-# As we know, an AR(1) process means that near-neighbors have a stronger
-# relation so we can give this structure by using a toeplitz matrix
-
-from scipy.linalg import toeplitz
-
-# # for example
-# >>> toeplitz(range(5))
-# array([[0, 1, 2, 3, 4],
-# [1, 0, 1, 2, 3],
-# [2, 1, 0, 1, 2],
-# [3, 2, 1, 0, 1],
-# [4, 3, 2, 1, 0]])
-
-order = toeplitz(range(len(ols_resid)))
-
-# so that our error covariance structure is actually rho**order
-# which defines an autocorrelation structure
-
-sigma = rho**order
-
-gls_model = sm.GLS(data.endog, data.exog, sigma=sigma)
-gls_results = gls_model.fit()
-
-# of course, the exact rho in this instance is not known so it
-# it might make more sense to use feasible gls, which currently only
-# has experimental support
-
-# We can use the GLSAR model with one lag, to get to a similar result
-
-glsar_model = sm.GLSAR(data.endog, data.exog, 1)
-glsar_results = glsar_model.iterative_fit(1)
-
-# comparing gls and glsar results, we see that there are some small
-# differences in the parameter estimates and the resulting standard
-# errors of the parameter estimate. This might be do to the numerical
-# differences in the algorithm, e.g. the treatment of initial conditions,
-# because of the small number of observations in the longley dataset.
-print gls_results.params
-print glsar_results.params
-print gls_results.bse
-print glsar_results.bse
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_glsar.py b/statsmodels/scikits/statsmodels/examples/example_glsar.py
deleted file mode 100644
index 24becb7..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_glsar.py
+++ /dev/null
@@ -1,147 +0,0 @@
-'''
-Example: scikits.statsmodels.GLSAR
-
-6 examples for GLSAR with artificial data
-
-Notes
-------
-These examples were written mostly to cross-check results. It is still being
-written, and GLSAR is still being worked on.
-'''
-
-import numpy as np
-import numpy.testing as npt
-from scipy import signal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.regression.linear_model import GLSAR, yule_walker
-
-examples_all = range(10) + ['test_copy']
-
-examples = examples_all #[5]
-
-if 0 in examples:
- print '\n Example 0'
- X = np.arange(1,8)
- X = sm.add_constant(X)
- Y = np.array((1, 3, 4, 5, 8, 10, 9))
- rho = 2
- model = GLSAR(Y, X, 2)
- for i in range(6):
- results = model.fit()
- print "AR coefficients:", model.rho
- rho, sigma = yule_walker(results.resid, order = model.order)
- model = GLSAR(Y, X, rho)
-
- par0 = results.params
- print par0
- model0if = GLSAR(Y, X, 2)
- res = model0if.iterative_fit(6)
- print 'iterativefit beta', res.params
- results.tvalues # is this correct? it does equal params/bse
- # but isn't the same as the AR example (which was wrong in the first place..)
- print results.t_test([0,1]) # are sd and t correct? vs
- print results.f_test(np.eye(2))
-
-
-rhotrue = [0.5, 0.2]
-rhotrue = np.asarray(rhotrue)
-nlags = np.size(rhotrue)
-beta = np.array([0.1, 2])
-noiseratio = 0.5
-nsample = 2000
-x = np.arange(nsample)
-X1 = sm.add_constant(x)
-
-wnoise = noiseratio * np.random.randn(nsample+nlags)
-#noise = noise[1:] + rhotrue*noise[:-1] # wrong this is not AR
-
-#find my drafts for univariate ARMA functions
-# generate AR(p)
-if np.size(rhotrue) == 1:
- # replace with scipy.signal.lfilter, keep for testing
- arnoise = np.zeros(nsample+1)
- for i in range(1,nsample+1):
- arnoise[i] = rhotrue*arnoise[i-1] + wnoise[i]
- noise = arnoise[1:]
- an = signal.lfilter([1], np.hstack((1,-rhotrue)), wnoise[1:])
- print 'simulate AR(1) difference', np.max(np.abs(noise-an))
-else:
- noise = signal.lfilter([1], np.hstack((1,-rhotrue)), wnoise)[nlags:]
-
-# generate GLS model with AR noise
-y1 = np.dot(X1,beta) + noise
-
-if 1 in examples:
- print '\nExample 1: iterative_fit and repeated calls'
- mod1 = GLSAR(y1, X1, 1)
- res = mod1.iterative_fit()
- print mod1._results.params
- print mod1.rho
-
- for i in range(5):
- mod1.iterative_fit(1)
-# mod1.fit()
- print mod1.rho
- print mod1._results.params
-
-if 2 in examples:
- print '\nExample 2: iterative fitting of first model'
- print 'with AR(0)', par0
- parold = par0
- mod0 = GLSAR(Y, X, 1)
- for i in range(5):
- #print mod0.wexog.sum()
- #print mod0.pinv_wexog.sum()
- mod0.iterative_fit(1)
- print 'rho', mod0.rho
- parnew = mod0._results.params
- print 'params', parnew
- print 'params change in iteration', parnew - parold
- parold = parnew
-
-# generate pure AR(p) process
-Y = noise
-
-#example with no regressor,
-#results now have same estimated rho as yule-walker directly
-
-if 3 in examples:
- print '\nExample 3: pure AR(2), GLSAR versus Yule_Walker'
- model3 = GLSAR(Y, rho=2)
- for i in range(5):
- results = model3.fit()
- print "AR coefficients:", model3.rho, results.params
- rho, sigma = yule_walker(results.resid, order = model3.order)
- model3 = GLSAR(Y, rho=rho)
-
-if 'test_copy' in examples:
- xx = X.copy()
- rhoyw, sigmayw = yule_walker(xx[:,0], order = 2)
- print rhoyw, sigmayw
- print (xx == X).all() # test for unchanged array (fixed)
-
- yy = Y.copy()
- rhoyw, sigmayw = yule_walker(yy, order = 2)
- print rhoyw, sigmayw
- print (yy == Y).all() # test for unchanged array (fixed)
-
-
-if 4 in examples:
- print '\nExample 4: demeaned pure AR(2), GLSAR versus Yule_Walker'
- Ydemeaned = Y - Y.mean()
- model4 = GLSAR(Ydemeaned, rho=2)
- for i in range(5):
- results = model4.fit()
- print "AR coefficients:", model3.rho, results.params
- rho, sigma = yule_walker(results.resid, order = model4.order)
- model4 = GLSAR(Ydemeaned, rho=rho)
-
-if 5 in examples:
- print '\nExample 5: pure AR(2), GLSAR iterative_fit versus Yule_Walker'
- model3a = GLSAR(Y, rho=1)
- res3a = model3a.iterative_fit(5)
- print res3a.params
- print model3a.rho
- rhoyw, sigmayw = yule_walker(Y, order = 1)
- print rhoyw, sigmayw
- npt.assert_array_almost_equal(model3a.rho, rhoyw, 15)
diff --git a/statsmodels/scikits/statsmodels/examples/example_kde.py b/statsmodels/scikits/statsmodels/examples/example_kde.py
deleted file mode 100644
index f616b65..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_kde.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from scipy import stats
-import numpy as np
-from scikits.statsmodels.sandbox.distributions.mixture_rvs import mixture_rvs
-from scikits.statsmodels.nonparametric.kde import (kdensity, kdensityfft)
-import matplotlib.pyplot as plt
-
-np.random.seed(12345)
-obs_dist = mixture_rvs([.25,.75], size=10000, dist=[stats.norm, stats.norm],
- kwargs = (dict(loc=-1,scale=.5),dict(loc=1,scale=.5)))
-#obs_dist = mixture_rvs([.25,.75], size=10000, dist=[stats.norm, stats.beta],
-# kwargs = (dict(loc=-1,scale=.5),dict(loc=1,scale=1,args=(1,.5))))
-
-
-f_hat, grid, bw = kdensityfft(obs_dist, kernel="gauss", bw="scott")
-
-# check the plot
-
-plt.hist(obs_dist, bins=50, normed=True, color='red')
-plt.plot(grid, f_hat, lw=2, color='black')
-plt.show()
-
-# do some timings
-# get bw first because they're not streamlined
-from scikits.statsmodels.nonparametric import bandwidths
-bw = bandwidths.bw_scott(obs_dist)
-
-#timeit kdensity(obs_dist, kernel="gauss", bw=bw, gridsize=2**10)
-#timeit kdensityfft(obs_dist, kernel="gauss", bw=bw, gridsize=2**10)
diff --git a/statsmodels/scikits/statsmodels/examples/example_logit.py b/statsmodels/scikits/statsmodels/examples/example_logit.py
deleted file mode 100644
index e51eb30..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_logit.py
+++ /dev/null
@@ -1,101 +0,0 @@
-"""Example: scikits.statsmodels.discretemod
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from scipy import stats
-from matplotlib import pyplot as plt
-
-#y = np.array([[300, 250, 200, 100, 90, 50, 20, 10, 5, 0],
-# [20, 70, 120, 220, 230, 270, 300, 310, 315, 320]]).T
-#x = np.array([0, 1, 2, 3, 4, 5, 6, 7,8,9]).reshape((-1,1))
-
-y = np.array([[2, 2, 3, 1, 4, 5, 6, 7, 5, 9],
- [8, 8, 7, 9, 6, 5, 4, 3, 5, 1]]).T * 10
-x = np.array([0, 1, 2, 3, 4, 5, 6, 7,8,9]).reshape((-1,1))
-
-
-# Logit Model
-#logit_mod = sm.Logit(y, x)
-#logit_res = logit_mod.fit()
-#
-#print(logit_res.params)
-#print(logit_res.margeff())
-#print(logit_res.predict(np.array([0,1,2,3,4]).reshape(-1,1)))
-#print(y)
-#
-#logit_res.summary()
-X = sm.add_constant(np.hstack((x,x**2)),prepend=False)
-glm_binom = sm.GLM(y, X, family=sm.families.Binomial()).fit()
-
-print """The fitted values are
-""", glm_binom.params
-print """The corresponding t-values are
-""", glm_binom.tvalues
-
-print glm_binom.predict_bounds()
-#check summary
-print glm_binom.summary()
-
-y = y[:,0]*1.0/y.sum(axis=1)
-nobs = glm_binom.nobs
-yhat = glm_binom.mu
-yhat2 = glm_binom.predict(X)
-ylo, yup = glm_binom.predict_bounds(X)
-
-plt.figure()
-plt.plot(x, y,'.', x,yhat,'r-', x, ylo,'r--', x, yup,'r--' )
-plt.figure()
-glm_binom.plot_fit_summary()
-# Plot of yhat vs y
-plt.figure()
-glm_binom.plot_fit()
-
-#plt.scatter(yhat, y)
-#line_fit = sm.OLS(y, sm.add_constant(yhat, prepend=False)).fit().params
-#fit = lambda x: line_fit[1]+line_fit[0]*x # better way in scipy?
-#plt.plot(np.linspace(0,1,nobs), fit(np.linspace(0,1,nobs)))
-#plt.title('Model Fit Plot')
-#plt.ylabel('Observed values')
-#plt.xlabel('Fitted values')
-
-
-# Plot of yhat vs. Pearson residuals
-plt.figure()
-glm_binom.plot_resid_dependence(kind='pearson')
-#plt.scatter(yhat, glm_binom.resid_pearson)
-#plt.plot([0.0, 1.0],[0.0, 0.0], 'k-')
-#plt.title('Residual Dependence Plot')
-#plt.ylabel('Pearson Residuals')
-#plt.xlabel('Fitted values')
-
-# Histogram of standardized deviance residuals
-plt.figure()
-glm_binom.plot_resid_histogram(kind='deviance')
-#res = glm_binom.resid_deviance.copy()
-#stdres = (res - res.mean())/res.std()
-#plt.hist(stdres, bins=25)
-#plt.title('Histogram of standardized deviance residuals')
-
-# QQ Plot of Deviance Residuals
-plt.figure()
-glm_binom.plot_resid_qq(kind='deviance')
-#res.sort()
-#p = np.linspace(0 + 1./(nobs-1), 1-1./(nobs-1), nobs)
-#quants = np.zeros_like(res)
-#for i in range(nobs):
-# quants[i] = stats.scoreatpercentile(res, p[i]*100)
-#mu = res.mean()
-#sigma = res.std()
-#y = stats.norm.ppf(p, loc=mu, scale=sigma)
-#plt.scatter(y, quants)
-#plt.plot([y.min(),y.max()],[y.min(),y.max()],'r--')
-#plt.title('Normal - Quantile Plot')
-#plt.ylabel('Deviance Residuals Quantiles')
-#plt.xlabel('Quantiles of N(0,1)')
-# in branch *-skipper
-#from scikits.statsmodels.sandbox import graphics
-#img = graphics.qqplot(res)
-
-plt.show()
-#plt.close('all')
diff --git a/statsmodels/scikits/statsmodels/examples/example_ols.py b/statsmodels/scikits/statsmodels/examples/example_ols.py
deleted file mode 100644
index 6428967..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_ols.py
+++ /dev/null
@@ -1,38 +0,0 @@
-"""Example: scikits.statssm.OLS
-"""
-
-from scikits.statsmodels.datasets.longley import load
-import scikits.statsmodels.api as sm
-import numpy as np
-
-data = load()
-data.exog = sm.tools.add_constant(data.exog)
-
-ols_model = sm.OLS(data.endog, data.exog)
-ols_results = ols_model.fit()
-
-# the Longley dataset is well known to have high multicollinearity
-# one way to find the condition number is as follows
-
-# normalize the independent variables to have unit length, Greene 4.9
-norm_x = np.ones_like(data.exog)
-for i in range(int(ols_model.df_model)):
- norm_x[:,i] = data.exog[:,i]/np.linalg.norm(data.exog[:,i])
-norm_xtx = np.dot(norm_x.T,norm_x)
-eigs = np.linalg.eigvals(norm_xtx)
-collin = np.sqrt(eigs.max()/eigs.min())
-print collin
-# clearly there is a big problem with multicollinearity
-# the rule of thumb is any number of 20 requires attention
-
-# for instance, consider the longley dataset with the last observation dropped
-ols_results2 = sm.OLS(data.endog[:-1], data.exog[:-1,:]).fit()
-
-# all of our coefficients change considerably in percentages
-# of the original coefficients
-print "Percentage change %4.2f%%\n"*7 % tuple([i for i in ols_results.params/ols_results2.params*100 - 100])
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_ols_minimal.py b/statsmodels/scikits/statsmodels/examples/example_ols_minimal.py
deleted file mode 100644
index 0b586ac..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_ols_minimal.py
+++ /dev/null
@@ -1,20 +0,0 @@
-"""Example: minimal OLS
-
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-
-nsample = 100
-x = np.linspace(0,10, 100)
-X = sm.add_constant(np.column_stack((x, x**2)))
-beta = np.array([1, 0.1, 10])
-y = np.dot(X, beta) + np.random.normal(size=nsample)
-
-results = sm.OLS(y, X).fit()
-print results.summary()
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_ols_minimal_comp.py b/statsmodels/scikits/statsmodels/examples/example_ols_minimal_comp.py
deleted file mode 100644
index 61c8191..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_ols_minimal_comp.py
+++ /dev/null
@@ -1,35 +0,0 @@
-"""Example: minimal OLS
-
-add example for new compare methods
-
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-
-np.random.seed(765367)
-nsample = 100
-x = np.linspace(0,10, 100)
-X = sm.add_constant(np.column_stack((x, x**2)), prepend=True)
-beta = np.array([10, 1, 0.01])
-y = np.dot(X, beta) + np.random.normal(size=nsample)
-
-results = sm.OLS(y, X).fit()
-print results.summary()
-
-results2 = sm.OLS(y, X[:,:2]).fit()
-print results.compare_f_test(results2)
-print results.f_test([0,0,1])
-
-print results.compare_lr_test(results2)
-
-'''
-(1.841903749875428, 0.1778775592033047)
-
-(1.8810663357027693, 0.17021300121753191, 1.0)
-'''
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_ols_table.py b/statsmodels/scikits/statsmodels/examples/example_ols_table.py
deleted file mode 100644
index 83a2594..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_ols_table.py
+++ /dev/null
@@ -1,77 +0,0 @@
-"""Example: scikits.statsmodels.OLS
-"""
-
-from scikits.statsmodels.datasets.longley import load
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.iolib.table import (SimpleTable, default_txt_fmt,
- default_latex_fmt, default_html_fmt)
-import numpy as np
-
-data = load()
-
-data_orig = (data.endog.copy(), data.exog.copy())
-
-#Note: In this example using zscored/standardized variables has no effect on
-# regression estimates. Are there no numerical problems?
-
-rescale = 0
-#0: no rescaling, 1:demean, 2:standardize, 3:standardize and transform back
-rescale_ratio = data.endog.std()/data.exog.std(0)
-if rescale > 0:
- # rescaling
- data.endog -= data.endog.mean()
- data.exog -= data.exog.mean(0)
-if rescale > 1:
- data.endog *= 1./data.endog.std()
- #data.exog *= 1000./data.exog.var(0)
- data.exog /= data.exog.std(0)
- #rescale_ratio = data.exog.var(0)/data.endog.var()
-
-#skip because mean has been removed, but dimension is hardcoded in table
-data.exog = sm.tools.add_constant(data.exog)
-
-
-
-ols_model = sm.OLS(data.endog, data.exog)
-ols_results = ols_model.fit()
-
-# the Longley dataset is well known to have high multicollinearity
-# one way to find the condition number is as follows
-
-
-#Find OLS parameters for model with one explanatory variable dropped
-
-resparams = np.nan * np.ones((7,7))
-res = sm.OLS(data.endog, data.exog).fit()
-resparams[:,0] = res.params
-
-indall = range(7)
-for i in range(6):
- ind = indall[:]
- del ind[i]
- res = sm.OLS(data.endog, data.exog[:,ind]).fit()
- resparams[ind,i+1] = res.params
-
-if rescale == 1:
- pass
-if rescale == 3:
- resparams[:-1,:] *= rescale_ratio[:,None]
-
-txt_fmt1 = default_txt_fmt
-numformat = '%10.4f'
-txt_fmt1 = dict(data_fmts = [numformat])
-rowstubs = data.names[1:] + ['const']
-headers = ['all'] + ['drop %s' % name for name in data.names[1:]]
-tabl = SimpleTable(resparams, headers, rowstubs, txt_fmt=txt_fmt1)
-
-nanstring = numformat%np.nan
-nn = len(nanstring)
-nanrep = ' '*(nn-1)
-nanrep = nanrep[:nn//2] + '-' + nanrep[nn//2:]
-
-print 'Longley data - sensitivity to dropping an explanatory variable'
-#print tabl
-print str(tabl).replace(nanstring, nanrep)
-
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_ols_tftest.py b/statsmodels/scikits/statsmodels/examples/example_ols_tftest.py
deleted file mode 100644
index f4723cb..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_ols_tftest.py
+++ /dev/null
@@ -1,198 +0,0 @@
-"""examples for usage of F-test on linear restrictions in OLS
-
-linear restriction is R \beta = 0
-R is (nr,nk), beta is (nk,1) (in matrix notation)
-
-
-TODO: clean this up for readability and explain
-
-Notes
------
-This example was written mostly for cross-checks and refactoring.
-"""
-
-import numpy as np
-import numpy.testing as npt
-import scikits.statsmodels.api as sm
-
-print '\n\n Example 1: Longley Data, high multicollinearity'
-
-data = sm.datasets.longley.load()
-data.exog = sm.add_constant(data.exog)
-res = sm.OLS(data.endog, data.exog).fit()
-
-# test pairwise equality of some coefficients
-R2 = [[0,1,-1,0,0,0,0],[0, 0, 0, 0, 1, -1, 0]]
-Ftest = res.f_test(R2)
-print repr((Ftest.fvalue, Ftest.pvalue)) #use repr to get more digits
-# 9.740461873303655 0.0056052885317360301
-
-##Compare to R (after running R_lm.s in the longley folder)
-##
-##> library(car)
-##> linear.hypothesis(m1, c("GNP = UNEMP","POP = YEAR"))
-##Linear hypothesis test
-##
-##Hypothesis:
-##GNP - UNEMP = 0
-##POP - YEAR = 0
-##
-##Model 1: TOTEMP ~ GNPDEFL + GNP + UNEMP + ARMED + POP + YEAR
-##Model 2: restricted model
-##
-## Res.Df RSS Df Sum of Sq F Pr(>F)
-##1 9 836424
-##2 11 2646903 -2 -1810479 9.7405 0.005605 **
-
-print 'Regression Results Summary'
-print res.summary()
-
-
-print '\n F-test whether all variables have zero effect'
-R = np.eye(7)[:-1,:]
-Ftest0 = res.f_test(R)
-print repr((Ftest0.fvalue, Ftest0.pvalue))
-print '%r' % res.fvalue
-npt.assert_almost_equal(res.fvalue, Ftest0.fvalue, decimal=9)
-
-ttest0 = res.t_test(R[0,:])
-print repr((ttest0.tvalue, ttest0.pvalue))
-
-betatval = res.tvalues
-betatval[0]
-npt.assert_almost_equal(betatval[0], ttest0.tvalue, decimal=15)
-
-'''
-# several ttests at the same time
-# currently not checked for this, but it (kind of) works
->>> ttest0 = res.t_test(R[:2,:])
->>> print repr((ttest0.t, ttest0.pvalue))
-(array([[ 0.17737603, NaN],
- [ NaN, -1.06951632]]), array([[ 0.43157042, 1. ],
- [ 1. , 0.84365947]]))
-
->>> ttest0 = res.t_test(R)
->>> ttest0.t
-array([[ 1.77376028e-01, NaN, NaN,
- NaN, -1.43660623e-02, 2.15494063e+01],
- [ NaN, -1.06951632e+00, -1.62440215e+01,
- -1.78173553e+01, NaN, NaN],
- [ NaN, -2.88010561e-01, -4.13642736e+00,
- -4.06097408e+00, NaN, NaN],
- [ NaN, -6.17679489e-01, -7.94027056e+00,
- -4.82198531e+00, NaN, NaN],
- [ 4.23409809e+00, NaN, NaN,
- NaN, -2.26051145e-01, 2.89324928e+02],
- [ 1.77445341e-01, NaN, NaN,
- NaN, -8.08336103e-03, 4.01588981e+00]])
->>> betatval
-array([ 0.17737603, -1.06951632, -4.13642736, -4.82198531, -0.22605114,
- 4.01588981, -3.91080292])
->>> ttest0.t
-array([ 0.17737603, -1.06951632, -4.13642736, -4.82198531, -0.22605114,
- 4.01588981])
-'''
-
-print "\nsimultaneous t-tests"
-ttest0 = res.t_test(R2)
-
-t2 = ttest0.tvalue
-print ttest0.tvalue
-print t2
-t2a = np.r_[res.t_test(np.array(R2)[0,:]).tvalue, res.t_test(np.array(R2)[1,:]).tvalue]
-print t2 - t2a
-t2pval = ttest0.pvalue
-print '%r' % t2pval #reject
-# array([ 9.33832896e-04, 9.98483623e-01])
-print 'reject'
-print '%r' % (t2pval < 0.05)
-
-# f_test needs 2-d currently
-Ftest2a = res.f_test(np.asarray(R2)[:1,:])
-print repr((Ftest2a.fvalue, Ftest2a.pvalue))
-Ftest2b = res.f_test(np.asarray(R2)[1:2,:])
-print repr((Ftest2b.fvalue, Ftest2b.pvalue))
-
-print '\nequality of t-test and F-test'
-print t2a**2 - np.array((Ftest2a.fvalue, Ftest2b.fvalue))
-npt.assert_almost_equal(t2a**2, np.vstack((Ftest2a.fvalue, Ftest2b.fvalue)))
-#npt.assert_almost_equal(t2pval, np.array((Ftest2a.pvalue, Ftest2b.pvalue)))
-npt.assert_almost_equal(t2pval*2, np.c_[Ftest2a.pvalue,
- Ftest2b.pvalue].squeeze())
-
-
-print '\n\n Example 2: Artificial Data'
-
-nsample = 100
-ncat = 4
-sigma = 2
-xcat = np.linspace(0,ncat-1, nsample).round()[:,np.newaxis]
-dummyvar = (xcat == np.arange(ncat)).astype(float)
-
-beta = np.array([0., 2, -2, 1])[:,np.newaxis]
-ytrue = np.dot(dummyvar, beta)
-X = sm.tools.add_constant(dummyvar[:,:-1])
-y = ytrue + sigma * np.random.randn(nsample,1)
-mod2 = sm.OLS(y[:,0], X)
-res2 = mod2.fit()
-
-print res2.summary()
-
-R3 = np.eye(ncat)[:-1,:]
-Ftest = res2.f_test(R3)
-print repr((Ftest.fvalue, Ftest.pvalue))
-R3 = np.atleast_2d([0, 1, -1, 2])
-Ftest = res2.f_test(R3)
-print repr((Ftest.fvalue, Ftest.pvalue))
-
-print 'simultaneous t-test for zero effects'
-R4 = np.eye(ncat)[:-1,:]
-ttest = res2.t_test(R4)
-print repr((ttest.tvalue, ttest.pvalue))
-
-
-R5 = np.atleast_2d([0, 1, 1, 2])
-np.dot(R5,res2.params)
-Ftest = res2.f_test(R5)
-print repr((Ftest.fvalue, Ftest.pvalue))
-ttest = res2.t_test(R5)
-#print repr((ttest.t, ttest.pvalue))
-print repr((ttest.tvalue, ttest.pvalue))
-
-R6 = np.atleast_2d([1, -1, 0, 0])
-np.dot(R6,res2.params)
-Ftest = res2.f_test(R6)
-print repr((Ftest.fvalue, Ftest.pvalue))
-ttest = res2.t_test(R6)
-#print repr((ttest.t, ttest.pvalue))
-print repr((ttest.tvalue, ttest.pvalue))
-
-R7 = np.atleast_2d([1, 0, 0, 0])
-np.dot(R7,res2.params)
-Ftest = res2.f_test(R7)
-print repr((Ftest.fvalue, Ftest.pvalue))
-ttest = res2.t_test(R7)
-#print repr((ttest.t, ttest.pvalue))
-print repr((ttest.tvalue, ttest.pvalue))
-
-
-print "\nExample: 2 categories: replicate stats.glm and stats.ttest_ind"
-
-mod2 = sm.OLS(y[xcat.flat<2][:,0], X[xcat.flat<2,:][:,(0,-1)])
-res2 = mod2.fit()
-
-R8 = np.atleast_2d([1, 0])
-np.dot(R8,res2.params)
-Ftest = res2.f_test(R8)
-print repr((Ftest.fvalue, Ftest.pvalue))
-print repr((np.sqrt(Ftest.fvalue), Ftest.pvalue))
-ttest = res2.t_test(R8)
-#print repr(ttest.t), ttest.pvalue))
-print repr((ttest.tvalue, ttest.pvalue))
-
-
-from scipy import stats
-print stats.glm(y[xcat<2].ravel(), xcat[xcat<2].ravel())
-print stats.ttest_ind(y[xcat==0], y[xcat==1])
-
-#TODO: compare with f_oneway
diff --git a/statsmodels/scikits/statsmodels/examples/example_predict.py b/statsmodels/scikits/statsmodels/examples/example_predict.py
deleted file mode 100644
index d5f7ec9..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_predict.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Example for out of sample prediction
-
-This is a variation on tut_ols.py, that shows the use of the
-predict method
-
-Note: uncomment plt.show() to display graphs
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-
-# create some data set
-
-nsample = 50
-sig = 0.25
-x1 = np.linspace(0, 20, nsample)
-X = np.c_[x1, np.sin(x1), (x1-5)**2, np.ones(nsample)]
-beta = [0.5, 0.5, -0.02, 5.]
-y_true = np.dot(X, beta)
-y = y_true + sig * np.random.normal(size=nsample)
-
-#setup and estimate the model
-
-olsmod = sm.OLS(y, X)
-olsres = olsmod.fit()
-print olsres.params
-print olsres.bse
-
-# use predict method of model class, not in the results class
-# (we had a discussion but it is still in the model)
-
-ypred = olsmod.predict(X) # predict insample
-
-# create a new sample of explanatory variables Xnew, predict and plot
-
-x1n = np.linspace(20.5,25, 10)
-Xnew = np.c_[x1n, np.sin(x1n), (x1n-5)**2, np.ones(10)]
-ynewpred = olsmod.predict(Xnew) # predict out of sample
-print ypred
-
-import matplotlib.pyplot as plt
-plt.figure()
-plt.plot(x1, y, 'o', x1, y_true, 'b-')
-plt.plot(np.hstack((x1, x1n)), np.hstack((ypred, ynewpred)),'r')
-plt.title('OLS prediction, blue: true and data, fitted/predicted values:red')
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/example_rlm.py b/statsmodels/scikits/statsmodels/examples/example_rlm.py
deleted file mode 100644
index a987c08..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_rlm.py
+++ /dev/null
@@ -1,34 +0,0 @@
-"""
-Examples: statsmodels.models.RLM
-
-Notes
------
-The syntax for the arguments will be shortened to accept string arguments
-in the future.
-"""
-
-import scikits.statsmodels.api as sm
-
-### Example for using Huber's T norm with the default
-### median absolute deviation scaling
-
-data = sm.datasets.stackloss.load()
-data.exog = sm.add_constant(data.exog)
-huber_t = sm.RLM(data.endog, data.exog, M=sm.robust.norms.HuberT())
-hub_results = huber_t.fit()
-print hub_results.params
-print hub_results.bse
-
-### or with the 'H2' covariance matrix
-hub_results2 = huber_t.fit(cov="H2")
-print hub_results2.params
-print hub_results2.bse
-
-### Example for using Andrew's Wave norm with
-### Huber's Proposal 2 scaling and 'H3' covariance matrix
-andrew_mod = sm.RLM(data.endog, data.exog, M=sm.robust.norms.AndrewWave())
-andrew_results = andrew_mod.fit(scale_est=sm.robust.scale.HuberScale(), cov="H3")
-print andrew_results.params
-
-print hub_results.summary(yname='y',
- xname=['var_%d' % i for i in range(len(hub_results.params))])
diff --git a/statsmodels/scikits/statsmodels/examples/example_rpy.py b/statsmodels/scikits/statsmodels/examples/example_rpy.py
deleted file mode 100644
index 831f08f..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_rpy.py
+++ /dev/null
@@ -1,50 +0,0 @@
-'''Just two examples for using rpy
-
-These examples are mainly for developers.
-
-# example 1: OLS using LM
-# example 2: GLM with binomial family
- The second results isn't exactly correct since it assumes that each
- obvervation has the same number of trials see datasets/longley for an R script
- with the correct syntax.
-
-See rmodelwrap.py in the tests folder for a convenience wrapper
-to make rpy more like statsmodels. Note, however, that rmodelwrap
-was created in a very ad hoc manner and due to the idiosyncracies in R
-it does not work for all types of R models.
-
-There are also R scripts included with most of the datasets to run
-some basic models for comparisons of results to statsmodels.
-'''
-
-from rpy import r
-import numpy as np
-import scikits.statsmodels.api as sm
-
-
-examples = [1, 2]
-
-if 1 in examples:
- data = sm.datasets.longley.load()
- y,x = data.endog, sm.add_constant(data.exog)
- des_cols = ['x.%d' % (i+1) for i in range(x.shape[1])]
- formula = r('y~%s-1' % '+'.join(des_cols))
- frame = r.data_frame(y=y, x=x)
- results = r.lm(formula, data=frame)
- print results.keys()
- print results['coefficients']
-
-if 2 in examples:
- data2 = sm.datasets.star98.load()
- y2,x2 = data2.endog, sm.add_constant(data2.exog)
- import rpy
- y2 = y2[:,0]/y2.sum(axis=1)
- des_cols2 = ['x.%d' % (i+1) for i in range(x2.shape[1])]
- formula2 = r('y~%s-1' % '+'.join(des_cols2))
- frame2 = r.data_frame(y=y2, x=x2)
- results2 = r.glm(formula2, data=frame2, family='binomial')
- params_est = [results2['coefficients'][k] for k
- in sorted(results2['coefficients'])]
- print params_est
- print ', '.join(['%13.10f']*21) % tuple(params_est)
-
diff --git a/statsmodels/scikits/statsmodels/examples/example_wls.py b/statsmodels/scikits/statsmodels/examples/example_wls.py
deleted file mode 100644
index f81f4a7..0000000
--- a/statsmodels/scikits/statsmodels/examples/example_wls.py
+++ /dev/null
@@ -1,390 +0,0 @@
-"""
-Example: scikits.statsmodels.WLS
-
-example is extended to look at the meaning of rsquared in WLS,
-at outliers, compares with RLM and a short bootstrap
-
-"""
-import numpy as np
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-
-data = sm.datasets.ccard.load()
-data.exog = sm.add_constant(data.exog)
-ols_fit = sm.OLS(data.endog, data.exog).fit()
-
-# perhaps the residuals from this fit depend on the square of income
-incomesq = data.exog[:,2]
-plt.scatter(incomesq, ols_fit.resid)
-plt.grid()
-
-
-# If we think that the variance is proportional to income**2
-# we would want to weight the regression by income
-# the weights argument in WLS weights the regression by its square root
-# and since income enters the equation, if we have income/income
-# it becomes the constant, so we would want to perform
-# this type of regression without an explicit constant in the design
-
-#data.exog = data.exog[:,:-1]
-wls_fit = sm.WLS(data.endog, data.exog[:,:-1], weights=1/incomesq).fit()
-
-# This however, leads to difficulties in interpreting the post-estimation
-# statistics. Statsmodels does not yet handle this elegantly, but
-# the following may be more appropriate
-
-# explained sum of squares
-ess = wls_fit.uncentered_tss - wls_fit.ssr
-# rsquared
-rsquared = ess/wls_fit.uncentered_tss
-# mean squared error of the model
-mse_model = ess/(wls_fit.df_model + 1) # add back the dof of the constant
-# f statistic
-fvalue = mse_model/wls_fit.mse_resid
-# adjusted r-squared
-rsquared_adj = 1 -(wls_fit.nobs)/(wls_fit.df_resid)*(1-rsquared)
-
-
-
-#Trying to figure out what's going on in this example
-#----------------------------------------------------
-
-#JP: I need to look at this again. Even if I exclude the weight variable
-# from the regressors and keep the constant in then the reported rsquared
-# stays small. Below also compared using squared or sqrt of weight variable.
-# TODO: need to add 45 degree line to graphs
-wls_fit3 = sm.WLS(data.endog, data.exog[:,(0,1,3,4)], weights=1/incomesq).fit()
-print wls_fit3.summary()
-print 'corrected rsquared',
-print (wls_fit3.uncentered_tss - wls_fit3.ssr)/wls_fit3.uncentered_tss
-plt.figure()
-plt.title('WLS dropping heteroscedasticity variable from regressors')
-plt.plot(data.endog, wls_fit3.fittedvalues, 'o')
-plt.xlim([0,2000])
-plt.ylim([0,2000])
-print 'raw correlation of endog and fittedvalues'
-print np.corrcoef(data.endog, wls_fit.fittedvalues)
-print 'raw correlation coefficient of endog and fittedvalues squared'
-print np.corrcoef(data.endog, wls_fit.fittedvalues)[0,1]**2
-
-# compare with robust regression,
-# heteroscedasticity correction downweights the outliers
-rlm_fit = sm.RLM(data.endog, data.exog).fit()
-plt.figure()
-plt.title('using robust for comparison')
-plt.plot(data.endog, rlm_fit.fittedvalues, 'o')
-plt.xlim([0,2000])
-plt.ylim([0,2000])
-
-#What is going on? A more systematic look at the data
-#----------------------------------------------------
-
-# two helper functions
-
-def getrsq(fitresult):
- '''calculates rsquared residual, total and explained sums of squares
-
- Parameters
- ----------
- fitresult : instance of Regression Result class, or tuple of (resid, endog) arrays
- regression residuals and endogenous variable
-
- Returns
- -------
- rsquared
- residual sum of squares
- (centered) total sum of squares
- explained sum of squares (for centered)
- '''
- if hasattr(fitresult, 'resid') and hasattr(fitresult, 'model'):
- resid = fitresult.resid
- endog = fitresult.model.endog
- nobs = fitresult.nobs
- else:
- resid = fitresult[0]
- endog = fitresult[1]
- nobs = resid.shape[0]
-
-
- rss = np.dot(resid, resid)
- tss = np.var(endog)*nobs
- return 1-rss/tss, rss, tss, tss-rss
-
-
-def index_trim_outlier(resid, k):
- '''returns indices to residual array with k outliers removed
-
- Parameters
- ----------
- resid : array_like, 1d
- data vector, usually residuals of a regression
- k : int
- number of outliers to remove
-
- Returns
- -------
- trimmed_index : array, 1d
- index array with k outliers removed
- outlier_index : array, 1d
- index array of k outliers
-
- Notes
- -----
-
- Outliers are defined as the k observations with the largest
- absolute values.
-
- '''
- sort_index = np.argsort(np.abs(resid))
- # index of non-outlier
- trimmed_index = np.sort(sort_index[:-k])
- outlier_index = np.sort(sort_index[-k:])
- return trimmed_index, outlier_index
-
-
-#Comparing estimation results for ols, rlm and wls with and without outliers
-#---------------------------------------------------------------------------
-
-#ols_test_fit = sm.OLS(data.endog, data.exog).fit()
-olskeep, olsoutl = index_trim_outlier(ols_fit.resid, 2)
-print 'ols outliers', olsoutl, ols_fit.resid[olsoutl]
-ols_fit_rm2 = sm.OLS(data.endog[olskeep], data.exog[olskeep,:]).fit()
-rlm_fit_rm2 = sm.RLM(data.endog[olskeep], data.exog[olskeep,:]).fit()
-#weights = 1/incomesq
-
-results = [ols_fit, ols_fit_rm2, rlm_fit, rlm_fit_rm2]
-#Note: I think incomesq is already square
-for weights in [1/incomesq, 1/incomesq**2, np.sqrt(incomesq)]:
- print '\nComparison OLS and WLS with and without outliers'
- wls_fit0 = sm.WLS(data.endog, data.exog, weights=weights).fit()
- wls_fit_rm2 = sm.WLS(data.endog[olskeep], data.exog[olskeep,:],
- weights=weights[olskeep]).fit()
- wlskeep, wlsoutl = index_trim_outlier(ols_fit.resid, 2)
- print '2 outliers candidates and residuals'
- print wlsoutl, wls_fit.resid[olsoutl]
- # redundant because ols and wls outliers are the same:
- ##wls_fit_rm2_ = sm.WLS(data.endog[wlskeep], data.exog[wlskeep,:],
- ## weights=1/incomesq[wlskeep]).fit()
-
- print 'outliers ols, wls:', olsoutl, wlsoutl
-
- print 'rsquared'
- print 'ols vs ols rm2', ols_fit.rsquared, ols_fit_rm2.rsquared
- print 'wls vs wls rm2', wls_fit0.rsquared, wls_fit_rm2.rsquared #, wls_fit_rm2_.rsquared
- print 'compare R2_resid versus R2_wresid'
- print 'ols minus 2', getrsq(ols_fit_rm2)[0],
- print getrsq((ols_fit_rm2.wresid, ols_fit_rm2.model.wendog))[0]
- print 'wls ', getrsq(wls_fit)[0],
- print getrsq((wls_fit.wresid, wls_fit.model.wendog))[0]
-
- print 'wls minus 2', getrsq(wls_fit_rm2)[0],
- # next is same as wls_fit_rm2.rsquared for cross checking
- print getrsq((wls_fit_rm2.wresid, wls_fit_rm2.model.wendog))[0]
- #print getrsq(wls_fit_rm2_)[0],
- #print getrsq((wls_fit_rm2_.wresid, wls_fit_rm2_.model.wendog))[0]
- results.extend([wls_fit0, wls_fit_rm2])
-
-print ' ols ols_rm2 rlm rlm_rm2 wls (lin) wls_rm2 (lin) wls (squ) wls_rm2 (squ) wls (sqrt) wls_rm2 (sqrt)'
-print 'Parameter estimates'
-print np.column_stack([r.params for r in results])
-print 'R2 original data, next line R2 weighted data'
-print np.column_stack([getattr(r, 'rsquared', None) for r in results])
-
-print 'Standard errors'
-print np.column_stack([getattr(r, 'bse', None) for r in results])
-print 'Heteroscedasticity robust standard errors (with ols)'
-print 'with outliers'
-print np.column_stack([getattr(ols_fit, se, None) for se in ['HC0_se', 'HC1_se', 'HC2_se', 'HC3_se']])
-'''
-
- ols ols_rm2 rlm rlm_rm2 wls (lin) wls_rm2 (lin) wls (squ) wls_rm2 (squ) wls (sqrt) wls_rm2 (sqrt)
-Parameter estimates
-[[ -3.08181404 -5.06103843 -4.98510966 -5.34410309 -2.69418516 -3.1305703 -1.43815462 -1.58893054 -3.57074829 -6.80053364]
- [ 234.34702702 115.08753715 129.85391456 109.01433492 158.42697752 128.38182357 60.95113284 100.25000841 254.82166855 103.75834726]
- [ -14.99684418 -5.77558429 -6.46204829 -4.77409191 -7.24928987 -7.41228893 6.84943071 -3.34972494 -16.40524256 -4.5924465 ]
- [ 27.94090839 85.46566835 89.91389709 95.85086459 60.44877369 79.7759146 55.9884469 60.97199734 -3.8085159 84.69170048]
- [-237.1465136 39.51639838 -15.50014814 31.39771833 -114.10886935 -40.04207242 -6.41976501 -38.83583228 -260.72084271 117.20540179]]
-
-R2 original data, next line R2 weighted data
-[[ 0.24357792 0.31745994 0.19220308 0.30527648 0.22861236 0.3112333 0.06573949 0.29366904 0.24114325 0.31218669]]
-[[ 0.24357791 0.31745994 None None 0.05936888 0.0679071 0.06661848 0.12769654 0.35326686 0.54681225]]
-
--> R2 with weighted data is jumping all over
-
-standard errors
-[[ 5.51471653 3.31028758 2.61580069 2.39537089 3.80730631 2.90027255 2.71141739 2.46959477 6.37593755 3.39477842]
- [ 80.36595035 49.35949263 38.12005692 35.71722666 76.39115431 58.35231328 87.18452039 80.30086861 86.99568216 47.58202096]
- [ 7.46933695 4.55366113 3.54293763 3.29509357 9.72433732 7.41259156 15.15205888 14.10674821 7.18302629 3.91640711]
- [ 82.92232357 50.54681754 39.33262384 36.57639175 58.55088753 44.82218676 43.11017757 39.31097542 96.4077482 52.57314209]
- [ 199.35166485 122.1287718 94.55866295 88.3741058 139.68749646 106.89445525 115.79258539 105.99258363 239.38105863 130.32619908]]
-
-robust standard errors (with ols)
-with outliers
- HC0_se HC1_se HC2_se HC3_se'
-[[ 3.30166123 3.42264107 3.4477148 3.60462409]
- [ 88.86635165 92.12260235 92.08368378 95.48159869]
- [ 6.94456348 7.19902694 7.19953754 7.47634779]
- [ 92.18777672 95.56573144 95.67211143 99.31427277]
- [ 212.9905298 220.79495237 221.08892661 229.57434782]]
-
-removing 2 outliers
-[[ 2.57840843 2.67574088 2.68958007 2.80968452]
- [ 36.21720995 37.58437497 37.69555106 39.51362437]
- [ 3.1156149 3.23322638 3.27353882 3.49104794]
- [ 50.09789409 51.98904166 51.89530067 53.79478834]
- [ 94.27094886 97.82958699 98.25588281 102.60375381]]
-
-
-'''
-
-# a quick bootstrap analysis
-# --------------------------
-#
-#(I didn't check whether this is fully correct statistically)
-
-nobs, nvar = data.exog.shape
-niter = 2000
-bootres = np.zeros((niter, nvar*2))
-
-for it in range(niter):
- rind = np.random.randint(nobs, size=nobs)
- endog = data.endog[rind]
- exog = data.exog[rind,:]
- res = sm.OLS(endog, exog).fit()
- bootres[it, :nvar] = res.params
- bootres[it, nvar:] = res.bse
-
-np.set_printoptions(linewidth=200)
-print 'Bootstrap Results of parameters and parameter standard deviation OLS'
-print 'Parameter estimates'
-print 'median', np.median(bootres[:,:5], 0)
-print 'mean ', np.mean(bootres[:,:5], 0)
-print 'std ', np.std(bootres[:,:5], 0)
-
-print 'Standard deviation of parameter estimates'
-print 'median', np.median(bootres[:,5:], 0)
-print 'mean ', np.mean(bootres[:,5:], 0)
-print 'std ', np.std(bootres[:,5:], 0)
-
-plt.figure()
-for i in range(4):
- plt.subplot(2,2,i+1)
- plt.hist(bootres[:,i],50)
- plt.title('var%d'%i)
-plt.figtext(0.5, 0.935, 'OLS Bootstrap',
- ha='center', color='black', weight='bold', size='large')
-
-data_endog = data.endog[olskeep]
-data_exog = data.exog[olskeep,:]
-incomesq_rm2 = incomesq[olskeep]
-
-nobs, nvar = data_exog.shape
-niter = 500 # a bit slow
-bootreswls = np.zeros((niter, nvar*2))
-
-for it in range(niter):
- rind = np.random.randint(nobs, size=nobs)
- endog = data_endog[rind]
- exog = data_exog[rind,:]
- res = sm.WLS(endog, exog, weights=1/incomesq[rind,:]).fit()
- bootreswls[it, :nvar] = res.params
- bootreswls[it, nvar:] = res.bse
-
-print 'Bootstrap Results of parameters and parameter standard deviation',
-print 'WLS removed 2 outliers from sample'
-print 'Parameter estimates'
-print 'median', np.median(bootreswls[:,:5], 0)
-print 'mean ', np.mean(bootreswls[:,:5], 0)
-print 'std ', np.std(bootreswls[:,:5], 0)
-
-print 'Standard deviation of parameter estimates'
-print 'median', np.median(bootreswls[:,5:], 0)
-print 'mean ', np.mean(bootreswls[:,5:], 0)
-print 'std ', np.std(bootreswls[:,5:], 0)
-
-plt.figure()
-for i in range(4):
- plt.subplot(2,2,i+1)
- plt.hist(bootreswls[:,i],50)
- plt.title('var%d'%i)
-plt.figtext(0.5, 0.935, 'WLS rm2 Bootstrap',
- ha='center', color='black', weight='bold', size='large')
-
-
-#plt.show()
-#plt.close('all')
-
-'''
-The following a random variables not fixed by a seed
-
-Bootstrap Results of parameters and parameter standard deviation
-OLS
-
-Parameter estimates
-median [ -3.26216383 228.52546429 -14.57239967 34.27155426 -227.02816597]
-mean [ -2.89855173 234.37139359 -14.98726881 27.96375666 -243.18361746]
-std [ 3.78704907 97.35797802 9.16316538 94.65031973 221.79444244]
-
-Standard deviation of parameter estimates
-median [ 5.44701033 81.96921398 7.58642431 80.64906783 200.19167735]
-mean [ 5.44840542 86.02554883 8.56750041 80.41864084 201.81196849]
-std [ 1.43425083 29.74806562 4.22063268 19.14973277 55.34848348]
-
-Bootstrap Results of parameters and parameter standard deviation
-WLS removed 2 outliers from sample
-
-Parameter estimates
-median [ -3.95876112 137.10419042 -9.29131131 88.40265447 -44.21091869]
-mean [ -3.67485724 135.42681207 -8.7499235 89.74703443 -46.38622848]
-std [ 2.96908679 56.36648967 7.03870751 48.51201918 106.92466097]
-
-Standard deviation of parameter estimates
-median [ 2.89349748 59.19454402 6.70583332 45.40987953 119.05241283]
-mean [ 2.97600894 60.14540249 6.92102065 45.66077486 121.35519673]
-std [ 0.55378808 11.77831934 1.69289179 7.4911526 23.72821085]
-
-
-
-Conclusion: problem with outliers and possibly heteroscedasticity
------------------------------------------------------------------
-
-in bootstrap results
-* bse in OLS underestimates the standard deviation of the parameters
- compared to standard deviation in bootstrap
-* OLS heteroscedasticity corrected standard errors for the original
- data (above) are close to bootstrap std
-* using WLS with 2 outliers removed has a relatively good match between
- the mean or median bse and the std of the parameter estimates in the
- bootstrap
-
-We could also include rsquared in bootstrap, and do it also for RLM.
-The problems could also mean that the linearity assumption is violated,
-e.g. try non-linear transformation of exog variables, but linear
-in parameters.
-
-
-for statsmodels
- * In this case rsquared for original data looks less random/arbitrary.
- * Don't change definition of rsquared from centered tss to uncentered
- tss when calculating rsquared in WLS if the original exog contains
- a constant. The increase in rsquared because of a change in definition
- will be very misleading.
- * Whether there is a constant in the transformed exog, wexog, or not,
- might affect also the degrees of freedom calculation, but I haven't
- checked this. I would guess that the df_model should stay the same,
- but needs to be verified with a textbook.
- * df_model has to be adjusted if the original data does not have a
- constant, e.g. when regressing an endog on a single exog variable
- without constant. This case might require also a redefinition of
- the rsquare and f statistic for the regression anova to use the
- uncentered tss.
- This can be done through keyword parameter to model.__init__ or
- through autodedection with hasconst = (exog.var(0)<1e-10).any()
- I'm not sure about fixed effects with a full dummy set but
- without a constant. In this case autodedection wouldn't work this
- way. Also, I'm not sure whether a ddof keyword parameter can also
- handle the hasconst case.
-
-
-'''
-
diff --git a/statsmodels/scikits/statsmodels/examples/run_all.py b/statsmodels/scikits/statsmodels/examples/run_all.py
deleted file mode 100644
index e210977..0000000
--- a/statsmodels/scikits/statsmodels/examples/run_all.py
+++ /dev/null
@@ -1,39 +0,0 @@
-'''run all examples to make sure we don't get an exception
-
-Note:
-If an example contaings plt.show(), then all plot windows have to be closed
-manually, at least in my setup.
-
-uncomment plt.show() to show all plot windows
-
-'''
-
-stop_on_error = True
-
-
-filelist = ['example_glsar.py', 'example_wls.py', 'example_gls.py',
- 'example_glm.py', 'example_ols_tftest.py', #'example_rpy.py',
- 'example_ols.py', 'example_ols_minimal.py', 'example_rlm.py',
- 'example_discrete.py', 'example_predict.py',
- 'example_ols_table.py',
- 'tut_ols.py', 'tut_ols_rlm.py', 'tut_ols_wls.py']
-
-cont = raw_input("""Are you sure you want to run all of the examples?
-This is done mainly to check that they are up to date.
-(y/n) >>> """)
-if 'y' in cont.lower():
- for run_all_f in filelist:
- try:
- print "\n\nExecuting example file", run_all_f
- print "-----------------------" + "-"*len(run_all_f)
- execfile(run_all_f)
- except:
- #f might be overwritten in the executed file
- print "**********************" + "*"*len(run_all_f)
- print "ERROR in example file", run_all_f
- print "**********************" + "*"*len(run_all_f)
- if stop_on_error:
- raise
-#plt.show()
-#plt.close('all')
-#close doesn't work because I never get here without closing plots manually
diff --git a/statsmodels/scikits/statsmodels/examples/t_est_rlm.py b/statsmodels/scikits/statsmodels/examples/t_est_rlm.py
deleted file mode 100644
index f85c6a9..0000000
--- a/statsmodels/scikits/statsmodels/examples/t_est_rlm.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Example from robust test_rlm, fails on Mac
-
-Created on Sun Mar 27 14:36:40 2011
-
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-RLM = sm.RLM
-
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-
-from scikits.statsmodels.datasets.stackloss import load
-data = load() # class attributes for subclasses
-data.exog = sm.add_constant(data.exog)
-
-decimal_standarderrors = DECIMAL_1
-decimal_scale = DECIMAL_3
-
-results = RLM(data.endog, data.exog,\
- M=sm.robust.norms.HuberT()).fit() # default M
-h2 = RLM(data.endog, data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H2").bcov_scaled
-h3 = RLM(data.endog, data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H3").bcov_scaled
-
-
-from scikits.statsmodels.robust.tests.results.results_rlm import Huber
-res2 = Huber()
-
-print "res2.h1"
-print res2.h1
-print "results.bcov_scaled"
-print results.bcov_scaled
-print "res2.h1 - results.bcov_scaled"
-print res2.h1 - results.bcov_scaled
-
-from numpy.testing import assert_almost_equal
-assert_almost_equal(res2.h1, results.bcov_scaled, 4)
diff --git a/statsmodels/scikits/statsmodels/examples/try_2regress.py b/statsmodels/scikits/statsmodels/examples/try_2regress.py
deleted file mode 100644
index 81e78b3..0000000
--- a/statsmodels/scikits/statsmodels/examples/try_2regress.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# -*- coding: utf-8 -*-
-"""F test for null hypothesis that coefficients in two regressions are the same
-
-see discussion in http://mail.scipy.org/pipermail/scipy-user/2010-March/024851.html
-
-Created on Thu Mar 25 22:56:45 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-
-np.random.seed(87654589)
-
-nobs = 10 #100
-x1 = np.random.randn(nobs)
-y1 = 10 + 15*x1 + 2*np.random.randn(nobs)
-
-x1 = sm.add_constant(x1) #, prepend=True)
-assert_almost_equal(x1, np.vander(x1[:,0],2), 16)
-res1 = sm.OLS(y1, x1).fit()
-print res1.params
-print np.polyfit(x1[:,0], y1, 1)
-assert_almost_equal(res1.params, np.polyfit(x1[:,0], y1, 1), 14)
-print res1.summary(xname=['x1','const1'])
-
-#regression 2
-x2 = np.random.randn(nobs)
-y2 = 19 + 17*x2 + 2*np.random.randn(nobs)
-#y2 = 10 + 15*x2 + 2*np.random.randn(nobs) # if H0 is true
-
-x2 = sm.add_constant(x2) #, prepend=True)
-assert_almost_equal(x2, np.vander(x2[:,0],2), 16)
-
-res2 = sm.OLS(y2, x2).fit()
-print res2.params
-print np.polyfit(x2[:,0], y2, 1)
-assert_almost_equal(res2.params, np.polyfit(x2[:,0], y2, 1), 14)
-print res2.summary(xname=['x2','const2'])
-
-
-# joint regression
-
-x = np.concatenate((x1,x2),0)
-y = np.concatenate((y1,y2))
-dummy = np.arange(2*nobs)>nobs-1
-x = np.column_stack((x,x*dummy[:,None]))
-
-res = sm.OLS(y, x).fit()
-print res.summary(xname=['x','const','x2','const2'])
-
-print '\nF test for equal coefficients in 2 regression equations'
-#effect of dummy times second regression is zero
-#is equivalent to 3rd and 4th coefficient are both zero
-print res.f_test([[0,0,1,0],[0,0,0,1]])
-
-print '\nchecking coefficients individual versus joint'
-print res1.params, res2.params
-print res.params[:2], res.params[:2]+res.params[2:]
-assert_almost_equal(res1.params, res.params[:2], 13)
-assert_almost_equal(res2.params, res.params[:2]+res.params[2:], 13)
diff --git a/statsmodels/scikits/statsmodels/examples/try_polytrend.py b/statsmodels/scikits/statsmodels/examples/try_polytrend.py
deleted file mode 100644
index b32684f..0000000
--- a/statsmodels/scikits/statsmodels/examples/try_polytrend.py
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-import numpy as np
-#import scikits.statsmodels.linear_model.regression as smreg
-
-from scipy import special
-
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.datasets.macrodata import data
-dta = data.load()
-gdp = np.log(dta.data['realgdp'])
-
-from numpy import polynomial
-from scipy import special
-
-
-maxorder = 20
-polybase = special.chebyt
-polybase = special.legendre
-
-t = np.linspace(-1,1,len(gdp))
-
-exog = np.column_stack([polybase(i)(t) for i in range(maxorder)])
-
-fitted = [sm.OLS(gdp, exog[:, :maxr]).fit().fittedvalues for maxr in
- range(2,maxorder)]
-
-print (np.corrcoef(exog[:,1:6], rowvar=0)*10000).astype(int)
-
-import matplotlib.pyplot as plt
-
-plt.figure()
-plt.plot(gdp, 'o')
-for i in range(maxorder-2):
- plt.plot(fitted[i])
-
-plt.figure()
-#plt.plot(gdp, 'o')
-for i in range(maxorder-4, maxorder-2):
- #plt.figure()
- plt.plot(gdp - fitted[i])
- plt.title(str(i+2))
-
-plt.figure()
-plt.plot(gdp, '.')
-plt.plot(fitted[-1], lw=2, color='r')
-plt.plot(fitted[0], lw=2, color='g')
-plt.title('GDP and Polynomial Trend')
-
-plt.figure()
-plt.plot(gdp - fitted[-1], lw=2, color='r')
-plt.plot(gdp - fitted[0], lw=2, color='g')
-plt.title('Residual GDP minus Polynomial Trend (green: linear, red: legendre(20))')
-
-
-#orthonormalize an exog using QR
-
-ex2 = t[:,None]**np.arange(6) #np.vander has columns reversed
-q2,r2 = np.linalg.qr(ex2, mode='full')
-np.max(np.abs(np.dot(q2.T, q2)-np.eye(6)))
-plt.figure()
-plt.plot(q2, lw=2)
-
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ar1cholesky.py b/statsmodels/scikits/statsmodels/examples/tsa/ar1cholesky.py
deleted file mode 100644
index de3f73d..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ar1cholesky.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Thu Oct 21 15:42:18 2010
-
-Author: josef-pktd
-"""
-
-import numpy as np
-from scipy import linalg
-
-def tiny2zero(x, eps = 1e-15):
- '''replace abs values smaller than eps by zero, makes copy
- '''
- mask = np.abs(x.copy()) < eps
- x[mask] = 0
- return x
-
-
-nobs = 5
-autocov = 0.8**np.arange(nobs)
-#from scikits.statsmodels.tsa import arima_process as ap
-#autocov = ap.arma_acf([1, -0.8, 0.2], [1])[:10]
-autocov = np.array([ 3., 2., 1., 0.4, 0.12, 0.016, -0.0112,
- 0.016 , -0.0112 , -0.01216 , -0.007488 , -0.0035584])/3.
-autocov = autocov[:nobs]
-sigma = linalg.toeplitz(autocov)
-sigmainv = linalg.inv(sigma)
-
-c = linalg.cholesky(sigma, lower=True)
-ci = linalg.cholesky(sigmainv, lower=True)
-
-print sigma
-print tiny2zero(ci/ci.max())
-
-"this is the text book transformation"
-print 'coefficient for first observation', np.sqrt(1-autocov[1]**2)
-ci2 = ci[::-1,::-1].T
-print tiny2zero(ci2/ci2.max())
-
-print np.dot(ci/ci.max(), np.ones(nobs))
-
-print np.dot(ci2/ci2.max(), np.ones(nobs))
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/arma_plots.py b/statsmodels/scikits/statsmodels/examples/tsa/arma_plots.py
deleted file mode 100644
index 03af4c3..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/arma_plots.py
+++ /dev/null
@@ -1,76 +0,0 @@
-'''Plot acf and pacf for some ARMA(1,1)
-
-'''
-
-
-import numpy as np
-import matplotlib.pyplot as plt
-import scikits.statsmodels.tsa.arima_process as tsp
-from scikits.statsmodels.sandbox.tsa.fftarma import ArmaFft as FftArmaProcess
-import scikits.statsmodels.tsa.stattools as tss
-from scikits.statsmodels.graphics.tsaplots import plotacf
-
-np.set_printoptions(precision=2)
-
-
-arcoefs = [0.9, 0., -0.5] #[0.9, 0.5, 0.1, 0., -0.5]
-macoefs = [0.9, 0., -0.5] #[0.9, 0.5, 0.1, 0., -0.5]
-nsample = 1000
-nburnin = 1000
-sig = 1
-
-fig = plt.figure(figsize=(8, 13))
-fig.suptitle('ARMA: Autocorrelation (left) and Partial Autocorrelation (right)')
-subplotcount = 1
-nrows = 4
-for arcoef in arcoefs[:-1]:
- for macoef in macoefs[:-1]:
- ar = np.r_[1., -arcoef]
- ma = np.r_[1., macoef]
-
- #y = tsp.arma_generate_sample(ar,ma,nsample, sig, burnin)
- #armaprocess = FftArmaProcess(ar, ma, nsample) #TODO: make n optional
- #armaprocess.plot4()
- armaprocess = tsp.ArmaProcess(ar, ma)
- acf = armaprocess.acf(20)[:20]
- pacf = armaprocess.pacf(20)[:20]
- ax = fig.add_subplot(nrows, 2, subplotcount)
- plotacf(ax, acf)
-## ax.set_title('Autocorrelation \nar=%s, ma=%rs' % (ar, ma),
-## size='xx-small')
- ax.text(0.7, 0.6, 'ar =%s \nma=%s' % (ar, ma),
- transform=ax.transAxes,
- horizontalalignment='left', #'right',
- size='xx-small')
- ax.set_xlim(-1,20)
- subplotcount +=1
- ax = fig.add_subplot(nrows, 2, subplotcount)
- plotacf(ax, pacf)
-## ax.set_title('Partial Autocorrelation \nar=%s, ma=%rs' % (ar, ma),
-## size='xx-small')
- ax.text(0.7, 0.6, 'ar =%s \nma=%s' % (ar, ma),
- transform=ax.transAxes,
- horizontalalignment='left', #'right',
- size='xx-small')
- ax.set_xlim(-1,20)
- subplotcount +=1
-
-axs = fig.axes
-### turn of the 2nd column y tick labels
-##for ax in axs[1::2]:#[:,1].flat:
-## for label in ax.get_yticklabels(): label.set_visible(False)
-
-# turn off all but the bottom xtick labels
-for ax in axs[:-2]:#[:-1,:].flat:
- for label in ax.get_xticklabels(): label.set_visible(False)
-
-
-# use a MaxNLocator on the first column y axis if you have a bunch of
-# rows to avoid bunching; example below uses at most 3 ticks
-import matplotlib.ticker as mticker
-for ax in axs: #[::2]:#[:,1].flat:
- ax.yaxis.set_major_locator( mticker.MaxNLocator(3 ))
-
-
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/compare_arma.py b/statsmodels/scikits/statsmodels/examples/tsa/compare_arma.py
deleted file mode 100644
index 608927f..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/compare_arma.py
+++ /dev/null
@@ -1,77 +0,0 @@
-print "Battle of the dueling ARMAs"
-
-from time import time
-from scikits.statsmodels.tsa.arma_mle import Arma
-from scikits.statsmodels.tsa.api import ARMA
-import numpy as np
-
-y_arma22 = np.loadtxt(r'C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\tsa\y_arma22.txt')
-
-arma1 = Arma(y_arma22)
-arma2 = ARMA(y_arma22)
-
-print "The actual results from gretl exact mle are"
-params_mle = np.array([.826990, -.333986, .0362419, -.792825])
-sigma_mle = 1.094011
-llf_mle = -1510.233
-print "params: ", params_mle
-print "sigma: ", sigma_mle
-print "llf: ", llf_mle
-print "The actual results from gretl css are"
-params_css = np.array([.824810, -.337077, .0407222, -.789792])
-sigma_css = 1.095688
-llf_css = -1507.301
-
-results = []
-results += ["gretl exact mle", params_mle, sigma_mle, llf_mle]
-results += ["gretl css", params_css, sigma_css, llf_css]
-
-t0 = time()
-print "Exact MLE - Kalman filter version using l_bfgs_b"
-arma2.fit(order=(2,2), trend='nc')
-t1 = time()
-print "params: ", arma2.params
-print "sigma: ", arma2.sigma2**.5
-arma2.llf = arma2.loglike(arma2._invtransparams(arma2.params))
-results += ["exact mle kalmanf", arma2.params, arma2.sigma2**.5, arma2.llf]
-print 'time used:', t1-t0
-
-t1=time()
-print "CSS MLE - ARMA Class"
-arma2.fit(order=(2,2), trend='nc', method="css")
-t2=time()
-arma2.llf = arma2.loglike_css(arma2._invtransparams(arma2.params))
-print "params: ", arma2.params
-print "sigma: ", arma2.sigma2**.5
-results += ["css kalmanf", arma2.params, arma2.sigma2**.5, arma2.llf]
-print 'time used:', t2-t1
-
-print "Arma.fit_mle results"
-# have to set nar and nma manually
-arma1.nar = 2
-arma1.nma = 2
-t2=time()
-ret = arma1.fit_mle()
-t3=time()
-print "params, first 4, sigma, last 1 ", ret.params
-results += ["Arma.fit_mle ", ret.params[:4], ret.params[-1], ret.llf]
-print 'time used:', t3-t2
-
-print "Arma.fit method = \"ls\""
-t3=time()
-ret2 = arma1.fit(order=(2,0,2), method="ls")
-t4=time()
-print ret2[0]
-results += ["Arma.fit ls", ret2[0]]
-print 'time used:', t4-t3
-
-print "Arma.fit method = \"CLS\""
-t4=time()
-ret3 = arma1.fit(order=(2,0,2), method="None")
-t5=time()
-print ret3
-results += ["Arma.fit other", ret3[0]]
-print 'time used:', t5-t4
-
-for i in results: print i
-
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_arma.py
deleted file mode 100644
index 1cb3794..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma.py
+++ /dev/null
@@ -1,101 +0,0 @@
-'''
-
-doesn't seem to work so well anymore even with nobs=1000 ???
-works ok if noise variance is large
-'''
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-from scikits.statsmodels.tsa.arma_mle import Arma as Arma
-from scikits.statsmodels.tsa.arima_process import ARIMA as ARIMA_old
-from scikits.statsmodels.sandbox.tsa.garch import Arma as Armamle_old
-from scikits.statsmodels.tsa.arima import ARMA as ARMA_kf
-
-
-
-
-print "\nExample 1"
-ar = [1.0, -0.6, 0.1]
-ma = [1.0, 0.5, 0.3]
-nobs = 1000
-y22 = arma_generate_sample(ar, ma, nobs+1000, 0.5)[-nobs:]
-y22 -= y22.mean()
-start_params = [0.1, 0.1, 0.1, 0.1]
-start_params_lhs = [-0.1, -0.1, 0.1, 0.1]
-
-print 'truelhs', np.r_[ar[1:], ma[1:]]
-
-
-
-
-
-###bug in current version, fixed in Skipper and 1 more
-###arr[1:q,:] = params[p+k:p+k+q] # p to p+q short params are MA coeffs
-###ValueError: array dimensions are not compatible for copy
-##arma22 = ARMA_kf(y22, constant=False, order=(2,2))
-##res = arma22.fit(start_params=start_params)
-##print res.params
-
-print '\nARIMA new'
-arest2 = Arma(y22)
-
-naryw = 4 #= 30
-resyw = sm.regression.yule_walker(y22, order=naryw, inv=True)
-arest2.nar = naryw
-arest2.nma = 0
-e = arest2.geterrors(np.r_[1, -resyw[0]])
-x=sm.tsa.tsatools.lagmat2ds(np.column_stack((y22,e)),3,dropex=1,
- trim='both')
-yt = x[:,0]
-xt = x[:,1:]
-res_ols = sm.OLS(yt, xt).fit()
-print 'hannan_rissannen'
-print res_ols.params
-start_params = res_ols.params
-start_params_mle = np.r_[-res_ols.params[:2],
- res_ols.params[2:],
- #res_ols.scale]
- #areste.var()]
- np.sqrt(res_ols.scale)]
-#need to iterate, ar1 too large ma terms too small
-#fix large parameters, if hannan_rissannen are too large
-start_params_mle[:-1] = (np.sign(start_params_mle[:-1])
- * np.minimum(np.abs(start_params_mle[:-1]),0.75))
-
-
-print 'conditional least-squares'
-
-#print rhohat2
-print 'with mle'
-arest2.nar = 2
-arest2.nma = 2
-#
-res = arest2.fit_mle(start_params=start_params_mle, method='nm') #no order in fit
-print res.params
-rhohat2, cov_x2a, infodict, mesg, ier = arest2.fit((2,2))
-print '\nARIMA_old'
-arest = ARIMA_old(y22)
-rhohat1, cov_x1, infodict, mesg, ier = arest.fit((2,0,2))
-print rhohat1
-print np.sqrt(np.diag(cov_x1))
-err1 = arest.errfn(x=y22)
-print np.var(err1)
-print 'bse ls, formula not checked'
-print np.sqrt(np.diag(cov_x1))*err1.std()
-print 'bsejac for mle'
-#print arest2.bsejac
-#TODO:check bsejac raises singular matrix linalg error
-#in model.py line620: return np.linalg.inv(np.dot(jacv.T, jacv))
-
-print '\nyule-walker'
-print sm.regression.yule_walker(y22, order=2, inv=True)
-
-print '\nArmamle_old'
-arma1 = Armamle_old(y22)
-arma1.nar = 2
-arma1.nma = 2
-#arma1res = arma1.fit(start_params=np.r_[-0.5, -0.1, 0.1, 0.1, 0.5], method='fmin')
- #maxfun=1000)
-arma1res = arma1.fit(start_params=res.params*0.7, method='fmin')
-print arma1res.params
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma2.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_arma2.py
deleted file mode 100644
index 3161717..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma2.py
+++ /dev/null
@@ -1,27 +0,0 @@
-"""
-Example: scikits.statsmodels.tsa.ARMA
-"""
-import numpy as np
-import scikits.statsmodels.api as sm
-
-# Generate some data from an ARMA process
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-
-arparams = np.array([.75, -.25])
-maparams = np.array([.65, .35])
-
-# The conventions of the arma_generate function require that we specify a
-# 1 for the zero-lag of the AR and MA parameters and that the AR parameters
-# be negated.
-arparams = np.r_[1, -arparams]
-maparam = np.r_[1, maparams]
-nobs = 250
-y = arma_generate_sample(arparams, maparams, nobs)
-
-# Now, optionally, we can add some dates information. For this example,
-# we'll use a pandas time series.
-import pandas
-dates = sm.tsa.datetools.dates_from_range('1980m1', length=nobs)
-y = pandas.TimeSeries(y, index=dates)
-arma_mod = sm.tsa.ARMA(y, freq='M')
-arma_res = arma_mod.fit(order=(2,2), trend='nc', disp=-1)
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma_all.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_arma_all.py
deleted file mode 100644
index eb6f002..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_arma_all.py
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-import matplotlib.pyplot as plt
-import scikits.statsmodels.sandbox.tsa.fftarma as fa
-from scikits.statsmodels.tsa.descriptivestats import TsaDescriptive
-from scikits.statsmodels.tsa.arma_mle import Arma
-
-x = fa.ArmaFft([1, -0.5], [1., 0.4], 40).generate_sample(size=200, burnin=1000)
-d = TsaDescriptive(x)
-d.plot4()
-
-#d.fit(order=(1,1))
-d.fit((1,1), trend='nc')
-print d.res.params
-
-modc = Arma(x)
-resls = modc.fit(order=(1,1))
-print resls[0]
-rescm = modc.fit_mle(order=(1,1), start_params=[-0.4,0.4, 1.])
-print rescm.params
-
-#decimal 1 corresponds to threshold of 5% difference
-assert_almost_equal(resls[0] / d.res.params, 1, decimal=1)
-assert_almost_equal(rescm.params[:-1] / d.res.params, 1, decimal=1)
-#copied to tsa.tests
-
-plt.figure()
-plt.plot(x, 'b-o')
-plt.plot(modc.predicted(), 'r-')
-plt.figure()
-plt.plot(modc.error_estimate)
-#plt.show()
-
-from scikits.statsmodels.miscmodels.tmodel import TArma
-
-modct = TArma(x)
-reslst = modc.fit(order=(1,1))
-print reslst[0]
-rescmt = modct.fit_mle(order=(1,1), start_params=[-0.4,0.4, 10, 1.],maxiter=500,
- maxfun=500)
-print rescmt.params
-
-
-from scikits.statsmodels.tsa.arima_model import ARMA
-mkf = ARMA(x)
-##rkf = mkf.fit((1,1))
-##rkf.params
-rkf = mkf.fit((1,1), trend='nc')
-print rkf.params
-
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-np.random.seed(12345)
-y_arma22 = arma_generate_sample([1.,-.85,.35, -0.1],[1,.25,-.7], nsample=1000)
-##arma22 = ARMA(y_arma22)
-##res22 = arma22.fit(trend = 'nc', order=(2,2))
-##print 'kf ',res22.params
-##res22css = arma22.fit(method='css',trend = 'nc', order=(2,2))
-##print 'css', res22css.params
-mod22 = Arma(y_arma22)
-resls22 = mod22.fit(order=(2,2))
-print 'ls ', resls22[0]
-resmle22 = mod22.fit_mle(order=(2,2), maxfun=2000)
-print 'mle', resmle22.params
-
-f = mod22.forecast()
-f3 = mod22.forecast3(start=900)[-20:]
-
-print y_arma22[-10:]
-print f[-20:]
-print f3[-109:-90]
-plt.show()
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_coint.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_coint.py
deleted file mode 100644
index f88c6c9..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_coint.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from scikits.statsmodels.tsa.tests.test_stattools import CheckCoint, TestCoint_t
-
-
-#test whether t-test for cointegration equals that produced by Stata
-
-tst = TestCoint_t()
-print tst.test_tstat()
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_dates.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_dates.py
deleted file mode 100644
index fa887a6..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_dates.py
+++ /dev/null
@@ -1,68 +0,0 @@
-import scikits.statsmodels.api as sm
-import numpy as np
-import pandas
-
-# Getting started
-# ---------------
-
-data = sm.datasets.sunspots.load()
-
-# Right now an annual date series must be datetimes at the end of the year.
-# We can use scikits.timeseries and datetime to create this array.
-
-import datetime
-import scikits.timeseries as ts
-dates = ts.date_array(start_date=1700, length=len(data.endog), freq='A')
-
-# To make an array of datetime types, we need an integer array of ordinals
-
-#.. from datetime import datetime
-#.. dt_dates = dates.toordinal().astype(int)
-#.. dt_dates = np.asarray([datetime.fromordinal(i) for i in dt_dates])
-dt_dates = dates.tolist()
-
-# Using Pandas
-# ------------
-
-# Make a pandas TimeSeries or DataFrame
-endog = pandas.Series(data.endog, index=dt_dates)
-
-# and instantiate the model
-ar_model = sm.tsa.AR(endog, freq='A')
-pandas_ar_res = ar_model.fit(maxlag=9, method='mle', disp=-1)
-
-# Let's do some out-of-sample prediction
-pred = pandas_ar_res.predict(start='2005', end='2015')
-print pred
-
-# Using explicit dates
-# --------------------
-
-ar_model = sm.tsa.AR(data.endog, dates=dt_dates, freq='A')
-ar_res = ar_model.fit(maxlag=9, method='mle', disp=-1)
-pred = ar_res.predict(start='2005', end='2015')
-print pred
-
-# This just returns a regular array, but since the model has date information
-# attached, you can get the prediction dates in a roundabout way.
-
-print ar_res._data.predict_dates
-
-# This attribute only exists if predict has been called. It holds the dates
-# associated with the last call to predict.
-#..TODO: should this be attached to the results instance?
-
-# Using scikits.timeseries
-# ------------------------
-
-ts_data = ts.time_series(data.endog, dates=dates)
-ts_ar_model = sm.tsa.AR(ts_data, freq='A')
-ts_ar_res = ts_ar_model.fit(maxlag=9)
-
-# Using Larry
-# -----------
-
-import la
-larr = la.larry(data.endog, [dt_dates])
-la_ar_model = sm.tsa.AR(larr, freq='A')
-la_ar_res = la_ar_model.fit(maxlag=9)
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_var.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_var.py
deleted file mode 100644
index c1b3913..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_var.py
+++ /dev/null
@@ -1,38 +0,0 @@
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.tsa.api import VAR
-
-# some example data
-mdata = sm.datasets.macrodata.load().data
-mdata = mdata[['realgdp','realcons','realinv']]
-names = mdata.dtype.names
-data = mdata.view((float,3))
-data = np.diff(np.log(data), axis=0)
-
-model = VAR(data, names=names)
-res = model.fit(2)
-
-nobs_all = data.shape[0]
-
-#in-sample 1-step ahead forecasts
-fc_in = np.array([np.squeeze(res.forecast(model.y[t-20:t], 1))
- for t in range(nobs_all-6,nobs_all)])
-
-print fc_in - res.fittedvalues[-6:]
-
-#out-of-sample 1-step ahead forecasts
-fc_out = np.array([np.squeeze(VAR(data[:t]).fit(2).forecast(data[t-20:t], 1))
- for t in range(nobs_all-6,nobs_all)])
-
-print fc_out - data[nobs_all-6:nobs_all]
-print fc_out - res.fittedvalues[-6:]
-
-
-#out-of-sample h-step ahead forecasts
-h = 2
-fc_out = np.array([VAR(data[:t]).fit(2).forecast(data[t-20:t], h)[-1]
- for t in range(nobs_all-6-h+1,nobs_all-h+1)])
-
-print fc_out - data[nobs_all-6:nobs_all] #out-of-sample forecast error
-print fc_out - res.fittedvalues[-6:]
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/ex_var_reorder.py b/statsmodels/scikits/statsmodels/examples/tsa/ex_var_reorder.py
deleted file mode 100644
index aac6310..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/ex_var_reorder.py
+++ /dev/null
@@ -1,5 +0,0 @@
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.tsa.vector_ar.tests.test_var import TestVARResults
-
-test_VAR = TestVARResults()
-test_VAR.test_reorder()
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/lagpolynomial.py b/statsmodels/scikits/statsmodels/examples/tsa/lagpolynomial.py
deleted file mode 100644
index 94c6ccc..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/lagpolynomial.py
+++ /dev/null
@@ -1,46 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Fri Oct 22 08:13:38 2010
-
-Author: josef-pktd
-License: BSD (3-clause)
-"""
-
-import numpy as np
-from numpy import polynomial as npp
-
-
-class LagPolynomial(npp.Polynomial):
-
- #def __init__(self, maxlag):
-
- def pad(self, maxlag):
- return LagPolynomial(np.r_[self.coef, np.zeros(maxlag-len(self.coef))])
-
- def padflip(self, maxlag):
- return LagPolynomial(np.r_[self.coef, np.zeros(maxlag-len(self.coef))][::-1])
-
- def flip(self):
- '''reverse polynomial coefficients
- '''
- return LagPolynomial(self.coef[::-1])
-
- def div(self, other, maxlag=None):
- '''padded division, pads numerator with zeros to maxlag
- '''
- if maxlag is None:
- maxlag = max(len(self.coef), len(other.coef)) + 1
- return (self.padflip(maxlag) / other.flip()).flip()
-
- def filter(self, arr):
- return (self * arr).coef[:-len(self.coef)] #trim to end
-
-
-
-ar = LagPolynomial([1, -0.8])
-arpad = ar.pad(10)
-
-ma = LagPolynomial([1, 0.1])
-mapad = ma.pad(10)
-
-unit = LagPolynomial([1])
diff --git a/statsmodels/scikits/statsmodels/examples/tsa/try_ar.py b/statsmodels/scikits/statsmodels/examples/tsa/try_ar.py
deleted file mode 100644
index 1270ddf..0000000
--- a/statsmodels/scikits/statsmodels/examples/tsa/try_ar.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Thu Oct 21 21:45:24 2010
-
-Author: josef-pktd
-"""
-
-import numpy as np
-from scipy import signal
-
-def armaloop(arcoefs, macoefs, x):
- '''get arma recursion in simple loop
-
- for simplicity assumes that ma polynomial is not longer than the ar-polynomial
-
- Parameters
- ----------
- arcoefs : array_like
- autoregressive coefficients in right hand side parameterization
- macoefs : array_like
- moving average coefficients, without leading 1
-
- Returns
- -------
- y : ndarray
- predicted values, initial values are the same as the observed values
- e : ndarray
- predicted residuals, zero for initial observations
-
- Notes
- -----
- Except for the treatment of initial observations this is the same as using
- scipy.signal.lfilter, which is much faster. Written for testing only
- '''
- arcoefs_r = np.asarray(arcoefs)
- macoefs_r = np.asarray(macoefs)
- x = np.asarray(x)
- nobs = x.shape[0]
- #assume ar longer than ma
- arlag = arcoefs_r.shape[0]
- malag = macoefs_r.shape[0]
- maxlag = max(arlag, malag)
- print maxlag
- y = np.zeros(x.shape, float)
- e = np.zeros(x.shape, float)
- y[:maxlag] = x[:maxlag]
-
- #if malag > arlaga:
- for t in range(arlag, maxlag):
- y[t] = (x[t-arlag:t] * arcoefs_r).sum(0) + (e[:t] * macoefs_r[:t]).sum(0)
- e[t] = x[t] - y[t]
-
- for t in range(maxlag, nobs):
- #wrong broadcasting, 1d only
- y[t] = (x[t-arlag:t] * arcoefs_r).sum(0) + (e[t-malag:t] * macoefs_r).sum(0)
- e[t] = x[t] - y[t]
-
- return y, e
-
-arcoefs, macoefs = -np.array([1, -0.8, 0.2])[1:], np.array([1., 0.5, 0.1])[1:]
-print armaloop(arcoefs, macoefs, np.ones(10))
-print armaloop([0.8], [], np.ones(10))
-print armaloop([0.8], [], np.arange(2,10))
-y, e = armaloop([0.1], [0.8], np.arange(2,10))
-print e
-print signal.lfilter(np.array([1, -0.1]), np.array([1., 0.8]), np.arange(2,10))
-
-y, e = armaloop([], [0.8], np.ones(10))
-print e
-print signal.lfilter(np.array([1, -0.]), np.array([1., 0.8]), np.ones(10))
-
-ic=signal.lfiltic(np.array([1, -0.1]), np.array([1., 0.8]), np.ones([0]), np.array([1]))
-print signal.lfilter(np.array([1, -0.1]), np.array([1., 0.8]), np.ones(10), zi=ic)
-
-zi = signal.lfilter_zi(np.array([1, -0.8, 0.2]), np.array([1., 0, 0]))
-print signal.lfilter(np.array([1, -0.1]), np.array([1., 0.8]), np.ones(10), zi=zi)
-print signal.filtfilt(np.array([1, -0.8]), np.array([1.]), np.ones(10))
-
-#todo write examples/test across different versions
-
diff --git a/statsmodels/scikits/statsmodels/examples/tut_ols.py b/statsmodels/scikits/statsmodels/examples/tut_ols.py
deleted file mode 100644
index 2d99b2a..0000000
--- a/statsmodels/scikits/statsmodels/examples/tut_ols.py
+++ /dev/null
@@ -1,107 +0,0 @@
-'''Examples OLS
-
-Note: uncomment plt.show() to display graphs
-'''
-
-import numpy as np
-#from scipy import stats
-import scikits.statsmodels.api as sm
-import matplotlib
-#matplotlib.use('Qt4Agg')#, warn=True) #for Spyder
-import matplotlib.pyplot as plt
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-#fix a seed for these examples
-np.random.seed(9876789)
-
-# OLS non-linear curve but linear in parameters
-# ---------------------------------------------
-
-nsample = 50
-sig = 0.5
-x1 = np.linspace(0, 20, nsample)
-X = np.c_[x1, np.sin(x1), (x1-5)**2, np.ones(nsample)]
-beta = [0.5, 0.5, -0.02, 5.]
-y_true = np.dot(X, beta)
-y = y_true + sig * np.random.normal(size=nsample)
-
-plt.figure()
-plt.plot(x1, y, 'o', x1, y_true, 'b-')
-
-res = sm.OLS(y, X).fit()
-print res.params
-print res.bse
-#current bug predict requires call to model.results
-#print res.model.predict
-prstd, iv_l, iv_u = wls_prediction_std(res)
-plt.plot(x1, res.fittedvalues, 'r--.')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-plt.title('blue: true, red: OLS')
-
-print res.summary()
-
-
-#OLS with dummy variables
-#------------------------
-
-sig = 1.
-#suppose observations from 3 groups
-xg = np.zeros(nsample, int)
-xg[20:40] = 1
-xg[40:] = 2
-print xg
-dummy = (xg[:,None] == np.unique(xg)).astype(float)
-#use group 0 as benchmark
-X = np.c_[x1, dummy[:,1:], np.ones(nsample)]
-beta = [1., 3, -3, 10]
-y_true = np.dot(X, beta)
-y = y_true + sig * np.random.normal(size=nsample)
-
-plt.figure()
-plt.plot(x1, y, 'o', x1, y_true, 'b-')
-plt.figure()
-plt.plot(x1, y, 'o', x1, y_true, 'b-')
-res2 = sm.OLS(y, X).fit()
-print res2.params
-print res2.bse
-#current bug predict requires call to model.results
-#print res.model.predict
-prstd, iv_l, iv_u = wls_prediction_std(res2)
-plt.plot(x1, res2.fittedvalues, 'r--.')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-plt.title('blue: true, red: OLS')
-
-#print res.summary()
-
-R = [[0, 1, 0, 0],
- [0, 0, 1, 0]]
-
-# F test joint hypothesis R * beta = 0
-# i.e. coefficient on both dummy variables equal zero
-print res2.f_test(R)
-# strongly rejected Null of identical constant in 3 groups
-#
-# see also: help(res2.f_test)
-
-# t test for Null hypothesis effects of 2nd and 3rd group add to zero
-R = [0, 1, -1, 0]
-print res2.t_test(R)
-# don't reject Null at 5% confidence level (note one sided p-value)
-#
-
-
-# OLS with small group effects
-
-beta = [1., 0.3, -0.0, 10]
-y_true = np.dot(X, beta)
-y = y_true + sig * np.random.normal(size=nsample)
-res3 = sm.OLS(y, X).fit()
-print res3.f_test(R)
-# don't reject Null of identical constant in 3 groups
-#
-
-
-#plt.draw()
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/tut_ols_ancova.py b/statsmodels/scikits/statsmodels/examples/tut_ols_ancova.py
deleted file mode 100644
index 10ae83e..0000000
--- a/statsmodels/scikits/statsmodels/examples/tut_ols_ancova.py
+++ /dev/null
@@ -1,101 +0,0 @@
-'''Examples OLS
-
-Note: uncomment plt.show() to display graphs
-
-Summary:
-========
-
-Relevant part of construction of design matrix
-xg includes group numbers/labels,
-x1 is continuous explanatory variable
-
->>> dummy = (xg[:,None] == np.unique(xg)).astype(float)
->>> X = np.c_[x1, dummy[:,1:], np.ones(nsample)]
-
-Estimate the model
-
->>> res2 = sm.OLS(y, X).fit()
->>> print res2.params
-[ 1.00901524 3.08466166 -2.84716135 9.94655423]
->>> print res2.bse
-[ 0.07499873 0.71217506 1.16037215 0.38826843]
->>> prstd, iv_l, iv_u = wls_prediction_std(res2)
-
-"Test hypothesis that all groups have same intercept"
-
->>> R = [[0, 1, 0, 0],
-... [0, 0, 1, 0]]
-
->>> print res2.f_test(R)
-
-
-strongly rejected because differences in intercept are very large
-
-'''
-
-import numpy as np
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-#fix a seed for these examples
-np.random.seed(98765789)
-
-#OLS with dummy variables, similar to ANCOVA
-#-------------------------------------------
-
-#construct simulated example:
-#3 groups common slope but different intercepts
-
-nsample = 50
-x1 = np.linspace(0, 20, nsample)
-sig = 1.
-#suppose observations from 3 groups
-xg = np.zeros(nsample, int)
-xg[20:40] = 1
-xg[40:] = 2
-#print xg
-dummy = (xg[:,None] == np.unique(xg)).astype(float)
-#use group 0 as benchmark
-X = np.c_[x1, dummy[:,1:], np.ones(nsample)]
-beta = [1., 3, -3, 10]
-y_true = np.dot(X, beta)
-y = y_true + sig * np.random.normal(size=nsample)
-
-#estimate
-#~~~~~~~~
-
-res2 = sm.OLS(y, X).fit()
-#print "estimated parameters: x d1-d0 d2-d0 constant"
-print res2.params
-#print "standard deviation of parameter estimates"
-print res2.bse
-prstd, iv_l, iv_u = wls_prediction_std(res2)
-#print res.summary()
-
-#plot
-#~~~~
-
-plt.figure()
-plt.plot(x1, y, 'o', x1, y_true, 'b-')
-plt.plot(x1, res2.fittedvalues, 'r--.')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-plt.title('3 groups: different intercepts, common slope; blue: true, red: OLS')
-plt.show()
-
-
-#Test hypothesis that all groups have same intercept
-#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-R = [[0, 1, 0, 0],
- [0, 0, 1, 0]]
-
-# F test joint hypothesis R * beta = 0
-# i.e. coefficient on both dummy variables equal zero
-print "Test hypothesis that all groups have same intercept"
-print res2.f_test(R)
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/examples/tut_ols_rlm.py b/statsmodels/scikits/statsmodels/examples/tut_ols_rlm.py
deleted file mode 100644
index 58488de..0000000
--- a/statsmodels/scikits/statsmodels/examples/tut_ols_rlm.py
+++ /dev/null
@@ -1,83 +0,0 @@
-'''Examples: comparing OLS and RLM
-
-robust estimators and outliers
-
-Note: uncomment plt.show() to display graphs
-'''
-
-import numpy as np
-#from scipy import stats
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-
-nsample = 50
-x1 = np.linspace(0, 20, nsample)
-X = np.c_[x1, (x1-5)**2, np.ones(nsample)]
-
-sig = 0.3 # smaller error variance makes OLS<->RLM contrast bigger
-beta = [0.5, -0.0, 5.]
-y_true2 = np.dot(X, beta)
-y2 = y_true2 + sig*1. * np.random.normal(size=nsample)
-y2[[39,41,43,45,48]] -= 5 # add some outliers (10% of nsample)
-
-#Example: estimate quadratic function (true is linear)
-
-plt.figure()
-plt.plot(x1, y2, 'o', x1, y_true2, 'b-')
-
-res = sm.OLS(y2, X).fit()
-print res.params
-# Note: quadratic term captures outlier effect
-print res.bse
-#print res.predict
-#plt.plot(x1, res.fittedvalues, 'r--')
-prstd, iv_l, iv_u = wls_prediction_std(res)
-plt.plot(x1, res.fittedvalues, 'r-')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-
-
-#compare with robust estimator
-
-resrlm = sm.RLM(y2, X).fit()
-print resrlm.params
-print resrlm.bse
-# Note different spelling fittedvalues with underline -> corrected spelling
-plt.plot(x1, resrlm.fittedvalues, 'g.-')
-plt.title('blue: true, red: OLS, green: RLM')
-
-
-# Example: estimate linear function (true is linear)
-
-X2 = X[:,[0,2]] # use only linear term and constant
-plt.figure()
-plt.plot(x1, y2, 'o', x1, y_true2, 'b-')
-
-
-res2 = sm.OLS(y2, X2).fit()
-print res2.params
-# Note: quadratic term captures outlier effect
-print res2.bse
-#print res2.predict
-prstd, iv_l, iv_u = wls_prediction_std(res2)
-plt.plot(x1, res2.fittedvalues, 'r-')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-
-
-#compare with robust estimator
-
-resrlm2 = sm.RLM(y2, X2).fit()
-print resrlm2.params
-print resrlm2.bse
-# Note different spelling fittedvalues with underline -> corrected spelling
-plt.plot(x1, resrlm2.fittedvalues, 'g.-')
-plt.title('blue: true, red: OLS, green: RLM')
-
-
-# see also help(sm.RLM.fit) for more options and
-# module sm.robust.scale for scale options
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/tut_ols_rlm_short.py b/statsmodels/scikits/statsmodels/examples/tut_ols_rlm_short.py
deleted file mode 100644
index a606de2..0000000
--- a/statsmodels/scikits/statsmodels/examples/tut_ols_rlm_short.py
+++ /dev/null
@@ -1,62 +0,0 @@
-'''Examples: comparing OLS and RLM
-
-robust estimators and outliers
-
-RLM is less influenced by outliers than OLS and has estimated slope
-closer to true slope and not tilted like OLS.
-
-Note: uncomment plt.show() to display graphs
-'''
-
-import numpy as np
-#from scipy import stats
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-#fix a seed for these examples
-np.random.seed(98765789)
-
-nsample = 50
-x1 = np.linspace(0, 20, nsample)
-X = np.c_[x1, np.ones(nsample)]
-
-sig = 0.3 # smaller error variance makes OLS<->RLM contrast bigger
-beta = [0.5, 5.]
-y_true2 = np.dot(X, beta)
-y2 = y_true2 + sig*1. * np.random.normal(size=nsample)
-y2[[39,41,43,45,48]] -= 5 # add some outliers (10% of nsample)
-
-
-# Example: estimate linear function (true is linear)
-
-plt.figure()
-plt.plot(x1, y2, 'o', x1, y_true2, 'b-')
-
-
-res2 = sm.OLS(y2, X).fit()
-print "OLS: parameter estimates: slope, constant"
-print res2.params
-print "standard deviation of parameter estimates"
-print res2.bse
-prstd, iv_l, iv_u = wls_prediction_std(res2)
-plt.plot(x1, res2.fittedvalues, 'r-')
-plt.plot(x1, iv_u, 'r--')
-plt.plot(x1, iv_l, 'r--')
-
-
-#compare with robust estimator
-
-resrlm2 = sm.RLM(y2, X).fit()
-print "\nRLM: parameter estimates: slope, constant"
-print resrlm2.params
-print "standard deviation of parameter estimates"
-print resrlm2.bse
-plt.plot(x1, resrlm2.fittedvalues, 'g.-')
-plt.title('Data with Outliers; blue: true, red: OLS, green: RLM')
-
-
-# see also help(sm.RLM.fit) for more options and
-# module sm.robust.scale for scale options
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/examples/tut_ols_wls.py b/statsmodels/scikits/statsmodels/examples/tut_ols_wls.py
deleted file mode 100644
index 6df793d..0000000
--- a/statsmodels/scikits/statsmodels/examples/tut_ols_wls.py
+++ /dev/null
@@ -1,148 +0,0 @@
-'''Examples: comparing OLS and WLS
-
-Note: uncomment plt.show() to display graphs
-'''
-
-import numpy as np
-from scipy import stats
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-
-#
-
-nsample = 50
-x1 = np.linspace(0, 20, nsample)
-X = np.c_[x1, (x1-5)**2, np.ones(nsample)]
-
-sig = 0.5
-beta = [0.5, -0.0, 5.]
-y_true2 = np.dot(X, beta)
-y2 = y_true2 + sig*1. * np.random.normal(size=nsample)
-
-plt.figure()
-plt.plot(x1, y2, 'o', x1, y_true2, 'b-')
-
-res2 = sm.OLS(y2, X).fit()
-print res2.params
-print res2.bse
-#print res.predict
-plt.plot(x1, res2.fittedvalues, 'r--')
-
-# Example WLS: Heteroscedasticity 2 groups
-# ----------------------------------------
-
-#model assumption:
-# * identical coefficients
-# * misspecificaion: true model is quadratic, estimate only linear
-# * independent noise/error term
-# * two groups for error variance, low and high variance groups
-
-
-#np.random.seed(123456789)
-np.random.seed(0)#9876789) #9876543)
-beta = [0.5, -0.01, 5.]
-y_true2 = np.dot(X, beta)
-w = np.ones(nsample)
-w[nsample*6/10:] = 3
-#y2[:nsample*6/10] = y_true2[:nsample*6/10] + sig*1. * np.random.normal(size=nsample*6/10)
-#y2[nsample*6/10:] = y_true2[nsample*6/10:] + sig*4. * np.random.normal(size=nsample*4/10)
-y2 = y_true2 + sig*w* np.random.normal(size=nsample)
-X2 = X[:,[0,2]]
-
-# OLS estimate
-# ^^^^^^^^^^^^
-# unbiased parameter estimated, biased parameter covariance, standard errors
-
-print 'OLS'
-plt.figure()
-plt.plot(x1, y2, 'o', x1, y_true2, 'b-')
-res2 = sm.OLS(y2, X[:,[0,2]]).fit()
-print 'OLS beta estimates'
-print res2.params
-print 'OLS stddev of beta'
-print res2.bse
-
-# heteroscedasticity corrected standard errors for OLS
-# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-#OLS standard errors are inconsistent (?) with heteroscedasticity
-#use correction
-#sandwich estimators of parameter covariance matrix
-print 'heteroscedasticity corrected standard error of beta estimates'
-print res2.HC0_se
-print res2.HC1_se
-print res2.HC2_se
-print res2.HC3_se
-
-#print res.predict
-#plt.plot(x1, res2.fittedvalues, '--')
-
-
-#WLS knowing the true variance ratio of heteroscedasticity
-#^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-print '\nWLS'
-res3 = sm.WLS(y2, X[:,[0,2]], 1./w).fit()
-print 'WLS beta estimates'
-print res3.params
-print 'WLS stddev of beta'
-print res3.bse
-#print res.predict
-#plt.plot(x1, res3.fittedvalues, '--.')
-
-#Detour write function for prediction standard errors
-
-#Prediction Interval for OLS
-#---------------------------
-covb = res2.cov_params()
-# full covariance:
-#predvar = res2.mse_resid + np.diag(np.dot(X2,np.dot(covb,X2.T)))
-# predication variance only
-predvar = res2.mse_resid + (X2 * np.dot(covb,X2.T).T).sum(1)
-predstd = np.sqrt(predvar)
-tppf = stats.t.ppf(0.975, res2.df_resid)
-plt.plot(x1, res2.fittedvalues, 'r--')
-plt.plot(x1, res2.fittedvalues + tppf * predstd, 'r--')
-plt.plot(x1, res2.fittedvalues - tppf * predstd, 'r--')
-
-
-#Prediction Interval for WLS
-#---------------------------
-#covb = res3.cov_params()
-## full covariance:
-##predvar = res3.mse_resid + np.diag(np.dot(X2,np.dot(covb,X2.T)))
-## predication variance only
-#predvar = res3.mse_resid*w + (X2 * np.dot(covb,X2.T).T).sum(1)
-#predstd = np.sqrt(predvar)
-#tppf = stats.t.ppf(0.975, res3.df_resid)
-#plt.plot(x1, res3.fittedvalues, 'g--.')
-#plt.plot(x1, res3.fittedvalues + tppf * predstd, 'g--')
-#plt.plot(x1, res3.fittedvalues - tppf * predstd, 'g--')
-#plt.title('blue: true, red: OLS, green: WLS')
-
-prstd, iv_l, iv_u = wls_prediction_std(res3)
-plt.plot(x1, res3.fittedvalues, 'g--.')
-plt.plot(x1, iv_u, 'g--')
-plt.plot(x1, iv_l, 'g--')
-plt.title('blue: true, red: OLS, green: WLS')
-
-
-# 2-stage least squares for FGLS (FWLS)
-# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-print '\n2-stage least squares for FGLS (FWLS)'
-resid1 = res2.resid[w==1.]
-var1 = resid1.var(ddof=int(res2.df_model)+1)
-resid2 = res2.resid[w!=1.]
-var2 = resid2.var(ddof=int(res2.df_model)+1)
-west = w.copy()
-west[w!=1.] = np.sqrt(var2)/np.sqrt(var1)
-res3 = sm.WLS(y2, X[:,[0,2]], 1./west).fit()
-print 'feasible WLS beta estimates'
-print res3.params
-print 'feasible WLS stddev of beta'
-print res3.bse
-
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/genmod/__init__.py b/statsmodels/scikits/statsmodels/genmod/__init__.py
deleted file mode 100644
index 8ec6816..0000000
--- a/statsmodels/scikits/statsmodels/genmod/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/genmod/families/__init__.py b/statsmodels/scikits/statsmodels/genmod/families/__init__.py
deleted file mode 100644
index cdf34bb..0000000
--- a/statsmodels/scikits/statsmodels/genmod/families/__init__.py
+++ /dev/null
@@ -1,16 +0,0 @@
-'''
-This module contains the one-parameter exponential families used
-for fitting GLMs and GAMs.
-
-These families are described in
-
- P. McCullagh and J. A. Nelder. "Generalized linear models."
- Monographs on Statistics and Applied Probability.
- Chapman & Hall, London, 1983.
-
-'''
-
-#from scikits.statsmodels.family.family import Gaussian, Family, Poisson, Gamma, \
-# InverseGaussian, Binomial, NegativeBinomial
-from family import Gaussian, Family, Poisson, Gamma, \
- InverseGaussian, Binomial, NegativeBinomial
diff --git a/statsmodels/scikits/statsmodels/genmod/families/family.py b/statsmodels/scikits/statsmodels/genmod/families/family.py
deleted file mode 100644
index adc5203..0000000
--- a/statsmodels/scikits/statsmodels/genmod/families/family.py
+++ /dev/null
@@ -1,1249 +0,0 @@
-'''
-The one parameter exponential family distributions used by GLM.
-'''
-#TODO: quasi, quasibinomial, quasipoisson
-#see http://www.biostat.jhsph.edu/~qli/biostatistics_r_doc/library/stats/html/family.html
-# for comparison to R, and McCullagh and Nelder
-
-import numpy as np
-from scipy import special
-from scipy.stats import ss
-import links as L
-import varfuncs as V
-
-class Family(object):
-
- """
- The parent class for one-parameter exponential families.
-
- Parameters
- ----------
- link : a link function instance
- Link is the linear transformation function.
- See the individual families for available links.
- variance : a variance function
- Measures the variance as a function of the mean probabilities.
- See the individual families for the default variance function.
- """
-#TODO: change these class attributes, use valid somewhere...
- valid = [-np.inf, np.inf]
-
- tol = 1.0e-05
- links = []
-
- def _setlink(self, link):
- """
- Helper method to set the link for a family.
-
- Raises a ValueError exception if the link is not available. Note that
- the error message might not be that informative because it tells you
- that the link should be in the base class for the link function.
-
- See glm.GLM for a list of appropriate links for each family but note
- that not all of these are currently available.
- """
-#TODO: change the links class attribute in the families to hold meaningful
-# information instead of a list of links instances such as
-#[,
-# ,
-# ]
-# for Poisson...
- self._link = link
- if not isinstance(link, L.Link):
- raise TypeError("The input should be a valid Link object.")
- if hasattr(self, "links"):
- validlink = link in self.links
-# validlink = max([isinstance(link, _.__class__) for _ in self.links])
- validlink = max([isinstance(link, _) for _ in self.links])
- if not validlink:
- errmsg = "Invalid link for family, should be in %s. (got %s)"
- raise ValueError(errmsg % (`self.links`, link))
-
-
- def _getlink(self):
- """
- Helper method to get the link for a family.
- """
- return self._link
-
- #link property for each family
- #pointer to link instance
- link = property(_getlink, _setlink, doc="Link function for family")
-
- def __init__(self, link, variance):
- self.link = link()
- self.variance = variance
-
- def starting_mu(self, y):
- """
- Starting value for mu in the IRLS algorithm.
-
- Parameters
- ----------
- y : array
- The untransformed response variable.
-
- Returns
- -------
- mu_0 : array
- The first guess on the transformed response variable.
-
- Notes
- -----
- mu_0 = (endog + mean(endog))/2.
-
- Notes
- -----
- Only the Binomial family takes a different initial value.
- """
- return (y + y.mean())/2.
-
- def weights(self, mu):
- """
- Weights for IRLS steps
-
- Parameters
- ----------
- mu : array-like
- The transformed mean response variable in the exponential family
-
- Returns
- -------
- w : array
- The weights for the IRLS steps
-
- Notes
- -----
- `w` = 1 / (link'(`mu`)**2 * variance(`mu`))
- """
- return 1. / (self.link.deriv(mu)**2 * self.variance(mu))
-
- def deviance(self, Y, mu, scale=1.):
- """
- Deviance of (Y,mu) pair.
-
- Deviance is usually defined as twice the loglikelihood ratio.
-
- Parameters
- ----------
- Y : array-like
- The endogenous response variable
- mu : array-like
- The inverse of the link function at the linear predicted values.
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- DEV : array
- The value of deviance function defined below.
-
- Notes
- -----
- DEV = (sum_i(2*loglike(Y_i,Y_i) - 2*loglike(Y_i,mu_i)) / scale
-
- The deviance functions are analytically defined for each family.
- """
- raise NotImplementedError
-
- def resid_dev(self, Y, mu, scale=1.):
- """
- The deviance residuals
-
- Parameters
- ----------
- Y : array
- The endogenous response variable
- mu : array
- The inverse of the link function at the linear predicted values.
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- Deviance residuals.
-
- Notes
- -----
- The deviance residuals are defined for each family.
- """
- raise NotImplementedError
-
- def fitted(self, eta):
- """
- Fitted values based on linear predictors eta.
-
- Parameters
- -----------
- eta : array
- Values of the linear predictor of the model.
- dot(X,beta) in a classical linear model.
-
- Returns
- --------
- mu : array
- The mean response variables given by the inverse of the link
- function.
- """
- return self.link.inverse(eta)
-
- def predict(self, mu):
- """
- Linear predictors based on given mu values.
-
- Parameters
- ----------
- mu : array
- The mean response variables
-
- Returns
- -------
- eta : array
- Linear predictors based on the mean response variables. The value
- of the link function at the given mu.
- """
- return self.link(mu)
-
- def loglike(self, Y, mu, scale=1.):
- """
- The loglikelihood function.
-
- Parameters
- ----------
- `Y` : array
- Usually the endogenous response variable.
- `mu` : array
- Usually but not always the fitted mean response variable.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood evaluated at (Y,mu).
- Notes
- -----
- This is defined for each family. Y and mu are not restricted to
- `Y` and `mu` respectively. For instance, the deviance function calls
- both loglike(Y,Y) and loglike(Y,mu) to get the likelihood ratio.
- """
- raise NotImplementedError
-
- def resid_anscombe(self, Y, mu):
- """
- The Anscome residuals.
-
- See also
- --------
- statsmodels.families.family.Family docstring and the `resid_anscombe` for
- the individual families for more information.
- """
- raise NotImplementedError
-
-class Poisson(Family):
- """
- Poisson exponential family.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the Poisson family is the log link. Available
- links are log, identity, and sqrt. See statsmodels.family.links for
- more information.
-
- Attributes
- ----------
- Poisson.link : a link instance
- The link function of the Poisson instance.
- Poisson.variance : varfuncs instance
- `variance` is an instance of
- statsmodels.genmod.families.family.varfuncs.mu
-
- See also
- --------
- statsmodels.genmod.families.family.Family
- """
-
- links = [L.log, L.identity, L.sqrt]
- variance = V.mu
- valid = [0, np.inf]
-
- def __init__(self, link=L.log):
- self.variance = Poisson.variance
- self.link = link()
-
- def resid_dev(self, Y, mu, scale=1.):
- """Poisson deviance residual
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- resid_dev : array
- Deviance residuals as defined below
-
- Notes
- -----
- resid_dev = sign(Y-mu)*sqrt(2*Y*log(Y/mu)-2*(Y-mu))
- """
- return np.sign(Y-mu) * np.sqrt(2*Y*np.log(Y/mu)-2*(Y-mu))/scale
-
- def deviance(self, Y, mu, scale=1.):
- '''
- Poisson deviance function
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- deviance : float
- The deviance function at (Y,mu) as defined below.
-
- Notes
- -----
- If a constant term is included it is defined as
-
- :math:`deviance = 2*\\sum_{i}(Y*\\log(Y/\\mu))`
- '''
- if np.any(Y==0):
- retarr = np.zeros(Y.shape)
- Ymu = Y/mu
- mask = Ymu != 0
- YmuMasked = Ymu[mask]
- Ymasked = Y[mask]
- np.putmask(retarr, mask, Ymasked*np.log(YmuMasked)/scale)
- return 2*np.sum(retarr)
- else:
- return 2*np.sum(Y*np.log(Y/mu))/scale
-
- def loglike(self, Y, mu, scale=1.):
- """
- Loglikelihood function for Poisson exponential family distribution.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- The default is 1.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- -----
- llf = scale * sum(-mu + Y*log(mu) - gammaln(Y+1))
- where gammaln is the log gamma function
- """
- return scale * np.sum(-mu + Y*np.log(mu)-special.gammaln(Y+1))
-
- def resid_anscombe(self, Y, mu):
- """
- Anscombe residuals for the Poisson exponential family distribution
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscome residuals for the Poisson family defined below
-
- Notes
- -----
- resid_anscombe = :math:`(3/2.)*(Y^{2/3.} - \\mu**(2/3.))/\\mu^{1/6.}`
- """
- return (3/2.)*(Y**(2/3.)-mu**(2/3.))/mu**(1/6.)
-
-class Gaussian(Family):
-
- """
- Gaussian exponential family distribution.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the Gaussian family is the identity link.
- Available links are log, identity, and inverse.
- See statsmodels.family.links for more information.
-
- Attributes
- ----------
- Gaussian.link : a link instance
- The link function of the Gaussian instance
- Gaussian.variance : varfunc instance
- `variance` is an instance of statsmodels.family.varfuncs.constant
-
- See also
- --------
- statsmodels.genmod.families.family.Family
- """
-
- links = [L.log, L.identity, L.inverse_power]
- variance = V.constant
-
- def __init__(self, link=L.identity):
- self.variance = Gaussian.variance
- self.link = link()
-
- def resid_dev(self, Y, mu, scale=1.):
- """
- Gaussian deviance residuals
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- resid_dev : array
- Deviance residuals as defined below
-
- Notes
- --------
- `resid_dev` = (`Y` - `mu`)/sqrt(variance(`mu`))
- """
-
- return (Y - mu) / np.sqrt(self.variance(mu))/scale
-
- def deviance(self, Y, mu, scale=1.):
- """
- Gaussian deviance function
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- deviance : float
- The deviance function at (Y,mu) as defined below.
-
- Notes
- --------
- `deviance` = sum((Y-mu)**2)
- """
- return np.sum((Y-mu)**2)/scale
-
- def loglike(self, Y, mu, scale=1.):
- """
- Loglikelihood function for Gaussian exponential family distribution.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- Scales the loglikelihood function. The default is 1.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- -----
- If the link is the identity link function then the
- loglikelihood function is the same as the classical OLS model.
- llf = -(nobs/2)*(log(SSR) + (1 + log(2*pi/nobs)))
- where SSR = sum((Y-link^(-1)(mu))**2)
-
- If the links is not the identity link then the loglikelihood
- function is defined as
- llf = sum((`Y`*`mu`-`mu`**2/2)/`scale` - `Y`**2/(2*`scale`) - \
- (1/2.)*log(2*pi*`scale`))
- """
- if isinstance(self.link, L.Power) and self.link.power == 1:
- # This is just the loglikelihood for classical OLS
- nobs2 = Y.shape[0]/2.
- SSR = ss(Y-self.fitted(mu))
- llf = -np.log(SSR) * nobs2
- llf -= (1+np.log(np.pi/nobs2))*nobs2
- return llf
- else:
- # Return the loglikelihood for Gaussian GLM
- return np.sum((Y*mu-mu**2/2)/scale-Y**2/(2*scale)-\
- .5*np.log(2*np.pi*scale))
-
- def resid_anscombe(self, Y, mu):
- """
- The Anscombe residuals for the Gaussian exponential family distribution
-
- Parameters
- ----------
- Y : array
- Endogenous response variable
- mu : array
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscombe residuals for the Gaussian family defined below
-
- Notes
- --------
- `resid_anscombe` = `Y` - `mu`
- """
- return Y-mu
-
-class Gamma(Family):
-
- """
- Gamma exponential family distribution.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the Gamma family is the inverse link.
- Available links are log, identity, and inverse.
- See statsmodels.family.links for more information.
-
- Attributes
- ----------
- Gamma.link : a link instance
- The link function of the Gamma instance
- Gamma.variance : varfunc instance
- `variance` is an instance of statsmodels.family.varfuncs.mu_squared
-
- See also
- --------
- statsmodels.genmod.families.family.Family
- """
-
- links = [L.log, L.identity, L.inverse_power]
- variance = V.mu_squared
-
- def __init__(self, link=L.inverse_power):
- self.variance = Gamma.variance
- self.link = link()
-
-#TODO: note the note
- def _clean(self, x):
- """
- Helper function to trim the data so that is in (0,inf)
-
- Notes
- -----
- The need for this function was discovered through usage and its
- possible that other families might need a check for validity of the
- domain.
- """
- return np.clip(x, 1.0e-10, np.inf)
-
- def deviance(self, Y, mu, scale=1.):
- """
- Gamma deviance function
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- deviance : float
- Deviance function as defined below
-
- Notes
- -----
- `deviance` = 2*sum((Y - mu)/mu - log(Y/mu))
- """
- Y_mu = self._clean(Y/mu)
- return 2 * np.sum((Y - mu)/mu - np.log(Y_mu))
-
- def resid_dev(self, Y, mu, scale=1.):
- """
- Gamma deviance residuals
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- resid_dev : array
- Deviance residuals as defined below
-
- Notes
- -----
- `resid_dev` = sign(Y - mu) * sqrt(-2*(-(Y-mu)/mu + log(Y/mu)))
- """
- Y_mu = self._clean(Y/mu)
- return np.sign(Y-mu) * np.sqrt(-2*(-(Y-mu)/mu + np.log(Y_mu)))
-
- def loglike(self, Y, mu, scale=1.):
- """
- Loglikelihood function for Gamma exponential family distribution.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- The default is 1.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- --------
- llf = -1/scale * sum(Y/mu + log(mu) + (scale-1)*log(Y) + log(scale) +\
- scale*gammaln(1/scale))
- where gammaln is the log gamma function.
- """
- return - 1./scale * np.sum(Y/mu+np.log(mu)+(scale-1)*np.log(Y)\
- +np.log(scale)+scale*special.gammaln(1./scale))
-# in Stata scale is set to equal 1 for reporting llf
-# in R it's the dispersion, though there is a loss of precision vs. our
-# results due to an assumed difference in implementation
-
- def resid_anscombe(self, Y, mu):
- """
- The Anscombe residuals for Gamma exponential family distribution
-
- Parameters
- ----------
- Y : array
- Endogenous response variable
- mu : array
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscombe residuals for the Gamma family defined below
-
- Notes
- -----
- resid_anscombe = 3*(Y**(1/3.)-mu**(1/3.))/mu**(1/3.)
- """
- return 3*(Y**(1/3.)-mu**(1/3.))/mu**(1/3.)
-
-class Binomial(Family):
-
- """
- Binomial exponential family distribution.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the Binomial family is the logit link.
- Available links are logit, probit, cauchy, log, and cloglog.
- See statsmodels.family.links for more information.
-
- Attributes
- ----------
- Binomial.link : a link instance
- The link function of the Binomial instance
- Binomial.variance : varfunc instance
- `variance` is an instance of statsmodels.family.varfuncs.binary
-
- See also
- --------
- statsmodels.genmod.families.family.Family
-
- Notes
- -----
- endog for Binomial can be specified in one of three ways.
- """
-
- links = [L.logit, L.probit, L.cauchy, L.log, L.cloglog]
- variance = V.binary # this is not used below in an effort to include n
-
- def __init__(self, link=L.logit): #, n=1.):
-#TODO: it *should* work for a constant n>1 actually, if data_weights is
-# equal to n
- self.n = 1 # overwritten by initialize if needed but
- # always used to initialize variance
- # since Y is assumed/forced to be (0,1)
- self.variance = V.Binomial(n=self.n)
- self.link = link()
-
- def starting_mu(self, y):
- """
- The starting values for the IRLS algorithm for the Binomial family.
-
- A good choice for the binomial family is
-
- starting_mu = (y + .5)/2
- """
- return (y + .5)/2
-
- def initialize(self, Y):
- '''
- Initialize the response variable.
-
- Parameters
- ----------
- Y : array
- Endogenous response variable
-
- Returns
- --------
- If `Y` is binary, returns `Y`
-
- If `Y` is a 2d array, then the input is assumed to be in the format
- (successes, failures) and
- successes/(success + failures) is returned. And n is set to
- successes + failures.
- '''
- if (Y.ndim > 1 and Y.shape[1] > 1):
- y = Y[:,0]
- self.n = Y.sum(1) # overwrite self.n for deviance below
- return y*1./self.n
- else:
- return Y
-
- def deviance(self, Y, mu, scale=1.):
- '''
- Deviance function for either Bernoulli or Binomial data.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable (already transformed to a probability
- if appropriate).
- mu : array
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- --------
- deviance : float
- The deviance function as defined below
-
- Notes
- -----
- If the endogenous variable is binary:
-
- `deviance` = -2*sum(I_one * log(mu) + (I_zero)*log(1-mu))
-
- where I_one is an indicator function that evalueates to 1 if Y_i == 1.
- and I_zero is an indicator function that evaluates to 1 if Y_i == 0.
-
- If the model is ninomial:
-
- `deviance` = 2*sum(log(Y/mu) + (n-Y)*log((n-Y)/(n-mu)))
- where Y and n are as defined in Binomial.initialize.
- '''
- if np.shape(self.n) == () and self.n == 1:
- one = np.equal(Y,1)
- return -2 * np.sum(one * np.log(mu+1e-200) + (1-one) * np.log(1-mu+1e-200))
-
- else:
- return 2*np.sum(self.n*(Y*np.log(Y/mu+1e-200)+(1-Y)*np.log((1-Y)/(1-mu)+1e-200)))
-
- def resid_dev(self, Y, mu, scale=1.):
- """
- Binomial deviance residuals
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- resid_dev : array
- Deviance residuals as defined below
-
- Notes
- -----
- If `Y` is binary:
-
- resid_dev = sign(Y-mu)*sqrt(-2*log(I_one*mu + I_zero*(1-mu)))
-
- where I_one is an indicator function that evaluates as 1 if Y == 1
- and I_zero is an indicator function that evaluates as 1 if Y == 0.
-
- If `Y` is binomial:
-
- resid_dev = sign(Y-mu)*sqrt(2*n*(Y*log(Y/mu)+(1-Y)*log((1-Y)/(1-mu))))
-
- where Y and n are as defined in Binomial.initialize.
- """
-
- mu = self.link._clean(mu)
- if np.shape(self.n) == () and self.n == 1:
- one = np.equal(Y,1)
- return np.sign(Y-mu)*np.sqrt(-2*np.log(one*mu+(1-one)*(1-mu)))\
- /scale
- else:
- return np.sign(Y-mu) * np.sqrt(2*self.n*(Y*np.log(Y/mu+1e-200)+(1-Y)*\
- np.log((1-Y)/(1-mu)+1e-200)))/scale
-
- def loglike(self, Y, mu, scale=1.):
- """
- Loglikelihood function for Binomial exponential family distribution.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- The default is 1.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- --------
- If `Y` is binary:
- `llf` = scale*sum(Y*log(mu/(1-mu))+log(1-mu))
-
- If `Y` is binomial:
- `llf` = scale*sum(gammaln(n+1) - gammaln(y+1) - gammaln(n-y+1) +\
- y*log(mu/(1-mu)) + n*log(1-mu)
-
- where gammaln is the log gamma function and y = Y*n with Y and n
- as defined in Binomial initialize. This simply makes y the original
- number of successes.
- """
-
- if np.shape(self.n) == () and self.n == 1:
- return scale*np.sum(Y*np.log(mu/(1-mu)+1e-200)+np.log(1-mu))
- else:
- y=Y*self.n #convert back to successes
- return scale * np.sum(special.gammaln(self.n+1)-\
- special.gammaln(y+1)-special.gammaln(self.n-y+1)\
- +y*np.log(mu/(1-mu))+self.n*np.log(1-mu))
-
- def resid_anscombe(self, Y, mu):
- '''
- The Anscombe residuals
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscombe residuals as defined below.
-
- Notes
- -----
- sqrt(n)*(cox_snell(Y)-cox_snell(mu))/(mu**(1/6.)*(1-mu)**(1/6.))
-
- where cox_snell is defined as
- cox_snell(x) = betainc(2/3., 2/3., x)*betainc(2/3.,2/3.)
- where betainc is the incomplete beta function
-
- The name 'cox_snell' is idiosyncratic and is simply used for
- convenience following the approach suggested in Cox and Snell (1968).
- Further note that
- cox_snell(x) = x**(2/3.)/(2/3.)*hyp2f1(2/3.,1/3.,5/3.,x)
- where hyp2f1 is the hypergeometric 2f1 function. The Anscombe
- residuals are sometimes defined in the literature using the
- hyp2f1 formulation. Both betainc and hyp2f1 can be found in scipy.
-
- References
- ----------
- Anscombe, FJ. (1953) "Contribution to the discussion of H. Hotelling's
- paper." Journal of the Royal Statistical Society B. 15, 229-30.
-
- Cox, DR and Snell, EJ. (1968) "A General Definition of Residuals."
- Journal of the Royal Statistical Society B. 30, 248-75.
-
- '''
- cox_snell = lambda x: special.betainc(2/3., 2/3., x)\
- *special.beta(2/3.,2/3.)
- return np.sqrt(self.n)*(cox_snell(Y)-cox_snell(mu))/\
- (mu**(1/6.)*(1-mu)**(1/6.))
-
-class InverseGaussian(Family):
-
- """
- InverseGaussian exponential family.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the inverse Gaussian family is the
- inverse squared link.
- Available links are inverse_squared, inverse, log, and identity.
- See statsmodels.family.links for more information.
-
- Attributes
- ----------
- InverseGaussian.link : a link instance
- The link function of the inverse Gaussian instance
- InverseGaussian.variance : varfunc instance
- `variance` is an instance of statsmodels.family.varfuncs.mu_cubed
-
- See also
- --------
- statsmodels.genmod.families.family.Family
-
- Notes
- -----
- The inverse Guassian distribution is sometimes referred to in the
- literature as the wald distribution.
- """
-
- links = [L.inverse_squared, L.inverse_power, L.identity, L.log]
- variance = V.mu_cubed
-
- def __init__(self, link=L.inverse_squared):
- self.variance = InverseGaussian.variance
- self.link = link()
-
- def resid_dev(self, Y, mu, scale=1.):
- """
- Returns the deviance residuals for the inverse Gaussian family.
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- -------
- resid_dev : array
- Deviance residuals as defined below
-
- Notes
- -----
- `dev_resid` = sign(Y-mu)*sqrt((Y-mu)**2/(Y*mu**2))
- """
- return np.sign(Y-mu) * np.sqrt((Y-mu)**2/(Y*mu**2))/scale
-
- def deviance(self, Y, mu, scale=1.):
- """
- Inverse Gaussian deviance function
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- deviance : float
- Deviance function as defined below
-
- Notes
- -----
- `deviance` = sum((Y=mu)**2/(Y*mu**2))
- """
- return np.sum((Y-mu)**2/(Y*mu**2))/scale
-
- def loglike(self, Y, mu, scale=1.):
- """
- Loglikelihood function for inverse Gaussian distribution.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- The default is 1.
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- -----
- `llf` = -(1/2.)*sum((Y-mu)**2/(Y*mu**2*scale) + log(scale*Y**3)\
- + log(2*pi))
- """
- return -.5 * np.sum((Y-mu)**2/(Y*mu**2*scale)\
- + np.log(scale*Y**3) + np.log(2*np.pi))
-
- def resid_anscombe(self, Y, mu):
- """
- The Anscombe residuals for the inverse Gaussian distribution
-
- Parameters
- ----------
- Y : array
- Endogenous response variable
- mu : array
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscombe residuals for the inverse Gaussian distribution as
- defined below
-
- Notes
- -----
- `resid_anscombe` = log(Y/mu)/sqrt(mu)
- """
- return np.log(Y/mu)/np.sqrt(mu)
-
-class NegativeBinomial(Family):
- """
- Negative Binomial exponential family.
-
- Parameters
- ----------
- link : a link instance, optional
- The default link for the negative binomial family is the log link.
- Available links are log, cloglog, identity, nbinom and power.
- See statsmodels.family.links for more information.
- alpha : float, optional
- The ancillary parameter for the negative binomial distribution.
- For now `alpha` is assumed to be nonstochastic. The default value
- is 1. Permissible values are usually assumed to be between .01 and 2.
-
-
- Attributes
- ----------
- NegativeBinomial.link : a link instance
- The link function of the negative binomial instance
- NegativeBinomial.variance : varfunc instance
- `variance` is an instance of statsmodels.family.varfuncs.nbinom
-
- See also
- --------
- scikits.statsmodels.genmod.families.family.Family
-
- Notes
- -----
- Support for Power link functions is not yet supported.
- """
- links = [L.log, L.cloglog, L.identity, L.nbinom, L.Power]
-#TODO: add the ability to use the power links with an if test
-# similar to below
- variance = V.nbinom
-
- def __init__(self, link=L.log, alpha=1.):
- self.alpha = alpha
- self.variance = V.NegativeBinomial(alpha=self.alpha)
- if isinstance(link, L.NegativeBinomial):
- self.link = link(alpha=self.alpha)
- else:
- self.link = link()
-
- def _clean(self, x):
- """
- Helper function to trim the data so that is in (0,inf)
-
- Notes
- -----
- The need for this function was discovered through usage and its
- possible that other families might need a check for validity of the
- domain.
- """
- return np.clip(x, 1.0e-10, np.inf)
-
- def deviance(self, Y, mu, scale=1.):
- """
- Returns the value of the deviance function.
-
- Parameters
- -----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
- scale : float, optional
- An optional scale argument
-
- Returns
- -------
- deviance : float
- Deviance function as defined below
-
- Notes
- -----
- `deviance` = sum(piecewise)
-
- where piecewise is defined as
-
- if :math:`Y_{i} == 0:`
-
- piecewise_i = :math:`2\\log\\left(1+\\alpha*\\mu\\right)/\\alpha`
-
- if :math:`Y_{i} > 0`:
-
- piecewise_i = :math:`2 Y \\log(Y/\\mu)-2/\\alpha(1+\\alpha Y)*\\log((1+\\alpha Y)/(1+\\alpha\\mu))`
- """
- iszero = np.equal(Y,0)
- notzero = 1 - iszero
- tmp = np.zeros(len(Y))
- Y_mu = self._clean(Y/mu)
- tmp = iszero*2*np.log(1+self.alpha*mu)/self.alpha
- tmp += notzero*(2*Y*np.log(Y_mu)-2/self.alpha*(1+self.alpha*Y)*\
- np.log((1+self.alpha*Y)/(1+self.alpha*mu)))
- return np.sum(tmp)/scale
-
- def resid_dev(self, Y, mu, scale=1.):
- '''
- Negative Binomial Deviance Residual
-
- Parameters
- ----------
- Y : array-like
- `Y` is the response variable
- mu : array-like
- `mu` is the fitted value of the model
- scale : float, optional
- An optional argument to divide the residuals by scale
-
- Returns
- --------
- resid_dev : array
- The array of deviance residuals
-
- Notes
- -----
- `resid_dev` = sign(Y-mu) * sqrt(piecewise)
-
- where piecewise is defined as
- if :math:`Y_i = 0`:
- :math:`piecewise_i = 2*log(1+alpha*mu)/alpha`
-
- if :math:`Y_i > 0`:
- :math:`piecewise_i = 2*Y*log(Y/\\mu)-2/\\alpha*(1+\\alpha*Y)*log((1+\\alpha*Y)/(1+\\alpha*\\mu))`
- '''
- iszero = np.equal(Y,0)
- notzero = 1 - iszero
- tmp=np.zeros(len(Y))
- tmp = iszero*2*np.log(1+self.alpha*mu)/self.alpha
- tmp += notzero*(2*Y*np.log(Y/mu)-2/self.alpha*(1+self.alpha*Y)*\
- np.log((1+self.alpha*Y)/(1+self.alpha*mu)))
- return np.sign(Y-mu)*np.sqrt(tmp)/scale
-
- def loglike(self, Y, fittedvalues=None):
- """
- The loglikelihood function for the negative binomial family.
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- fittedvalues : array-like
- The linear fitted values of the model. This is dot(exog,params).
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function evaluated at (Y,mu,scale)
- as defined below.
-
- Notes
- -----
- sum(Y*log(alpha*exp(fittedvalues)/(1+alpha*exp(fittedvalues))) -\
- log(1+alpha*exp(fittedvalues))/alpha + constant)
-
- where constant is defined as
- constant = gammaln(Y + 1/alpha) - gammaln(Y + 1) - gammaln(1/alpha)
- """
- # don't need to specify mu
- if fittedvalues is None:
- raise AttributeError('The loglikelihood for the negative binomial \
-requires that the fitted values be provided via the `fittedvalues` keyword \
-argument.')
- constant = special.gammaln(Y + 1/self.alpha) - special.gammaln(Y+1)\
- -special.gammaln(1/self.alpha)
- return np.sum(Y*np.log(self.alpha*np.exp(fittedvalues)/\
- (1 + self.alpha*np.exp(fittedvalues))) - \
- np.log(1+self.alpha*np.exp(fittedvalues))/self.alpha\
- + constant)
-
- def resid_anscombe(self, Y, mu):
- """
- The Anscombe residuals for the negative binomial family
-
- Parameters
- ----------
- Y : array-like
- Endogenous response variable
- mu : array-like
- Fitted mean response variable
-
- Returns
- -------
- resid_anscombe : array
- The Anscombe residuals as defined below.
-
- Notes
- -----
- `resid_anscombe` = (hyp2f1(-alpha*Y)-hyp2f1(-alpha*mu)+\
- 1.5*(Y**(2/3.)-mu**(2/3.)))/(mu+alpha*mu**2)**(1/6.)
-
- where hyp2f1 is the hypergeometric 2f1 function parameterized as
- hyp2f1(x) = hyp2f1(2/3.,1/3.,5/3.,x)
- """
-
- hyp2f1 = lambda x : special.hyp2f1(2/3.,1/3.,5/3.,x)
- return (hyp2f1(-self.alpha*Y)-hyp2f1(-self.alpha*mu)+1.5*(Y**(2/3.)-\
- mu**(2/3.)))/(mu+self.alpha*mu**2)**(1/6.)
diff --git a/statsmodels/scikits/statsmodels/genmod/families/links.py b/statsmodels/scikits/statsmodels/genmod/families/links.py
deleted file mode 100644
index 10c9e90..0000000
--- a/statsmodels/scikits/statsmodels/genmod/families/links.py
+++ /dev/null
@@ -1,685 +0,0 @@
-'''
-Defines the link functions to be used with GLM families.
-'''
-
-import numpy as np
-import scipy.stats
-
-#TODO: are the instance actually "aliases"
-# I used this terminology in varfuncs as well -ss
-
-class Link(object):
-
- """
- A generic link function for one-parameter exponential family.
-
- `Link` does nothing, but lays out the methods expected of any subclass.
- """
-
- def __call__(self, p):
- """
- Return the value of the link function. This is just a placeholder.
-
- Parameters
- ----------
- p : array-like
- Probabilities
-
- Returns
- -------
- The value of the link function g(p) = z
- """
- return NotImplementedError
-
- def inverse(self, z):
- """
- Inverse of the link function. Just a placeholder.
-
- Parameters
- ----------
- z : array-like
- `z` is usually the linear predictor of the transformed variable
- in the IRLS algorithm for GLM.
-
- Returns
- -------
- The value of the inverse of the link function g^(-1)(z) = p
-
-
- """
- return NotImplementedError
-
- def deriv(self, p):
- """
- Derivative of the link function g'(p). Just a placeholder.
-
- Parameters
- ----------
- p : array-like
-
- Returns
- -------
- The value of the derivative of the link function g'(p)
- """
- return NotImplementedError
-
-class Logit(Link):
- """
- The logit transform
-
- Notes
- -----
- call and derivative use a private method _clean to make trim p by
- 1e-10 so that p is in (0,1)
-
- Alias of Logit:
- logit = Logit()
- """
-
- tol = 1.0e-10
-
- def _clean(self, p):
- """
- Clip logistic values to range (tol, 1-tol)
-
- Parameters
- -----------
- p : array-like
- Probabilities
-
- Returns
- --------
- pclip : array
- Clipped probabilities
- """
- return np.clip(p, Logit.tol, 1. - Logit.tol)
-
- def __call__(self, p):
- """
- The logit transform
-
- Parameters
- ----------
- p : array-like
- Probabilities
-
- Returns
- -------
- z : array
- Logit transform of `p`
-
- Notes
- -----
- g(p) = log(p / (1 - p))
- """
- p = self._clean(p)
- return np.log(p / (1. - p))
-
- def inverse(self, z):
- """
- Inverse of the logit transform
-
- Parameters
- ----------
- z : array-like
- The value of the logit transform at `p`
-
- Returns
- -------
- p : array
- Probabilities
-
- Notes
- -----
- g^(-1)(z) = exp(z)/(1+exp(z))
- """
- t = np.exp(-z)
- return 1.0 / (1. + t)
-
- def deriv(self, p):
-
- """
- Derivative of the logit transform
-
- Parameters
- ----------
- p: array-like
- Probabilities
-
- Returns
- -------
- g'(p) : array
- Value of the derivative of logit transform at `p`
-
- Notes
- -----
- g'(p) = 1 / (p * (1 - p))
-
- Alias for `Logit`:
- logit = Logit()
- """
- p = self._clean(p)
- return 1. / (p * (1 - p))
-
-#logit = Logit()
-class logit(Logit):
- pass
-
-class Power(Link):
- """
- The power transform
-
- Parameters
- ----------
- power : float
- The exponent of the power transform
-
- Notes
- -----
- Aliases of Power:
- inverse = Power(power=-1)
- sqrt = Power(power=.5)
- inverse_squared = Power(power=-2.)
- identity = Power(power=1.)
- """
-
- def __init__(self, power=1.):
- self.power = power
-
- def __call__(self, p):
- """
- Power transform link function
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- z : array-like
- Power transform of x
-
- Notes
- -----
- g(p) = x**self.power
- """
-
- return np.power(p, self.power)
-
- def inverse(self, z):
- """
- Inverse of the power transform link function
-
-
- Parameters
- ----------
- `z` : array-like
- Value of the transformed mean parameters at `p`
-
- Returns
- -------
- `p` : array
- Mean parameters
-
- Notes
- -----
- g^(-1)(z`) = `z`**(1/`power`)
- """
- return np.power(z, 1. / self.power)
-
- def deriv(self, p):
- """
- Derivative of the power transform
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- --------
- g'(p) : array
- Derivative of power transform of `p`
-
- Notes
- -----
- g'(`p`) = `power` * `p`**(`power` - 1)
- """
- return self.power * np.power(p, self.power - 1)
-
-#inverse = Power(power=-1.)
-class inverse_power(Power):
- """
- The inverse transform
-
- Notes
- -----
- g(p) = 1/p
-
- Alias of statsmodels.family.links.Power(power=-1.)
- """
- def __init__(self):
- super(inverse_power, self).__init__(power=-1.)
-
-#sqrt = Power(power=0.5)
-class sqrt(Power):
- """
- The square-root transform
-
- Notes
- -----
- g(`p`) = sqrt(`p`)
-
- Alias of statsmodels.family.links.Power(power=.5)
- """
- def __init__(self):
- super(sqrt, self).__init__(power=.5)
-
-class inverse_squared(Power):
-#inverse_squared = Power(power=-2.)
- """
- The inverse squared transform
-
- Notes
- -----
- g(`p`) = 1/(`p`\ \*\*2)
-
- Alias of statsmodels.family.links.Power(power=2.)
- """
- def __init__(self):
- super(inverse_squared, self).__init__(power=-2.)
-
-class identity(Power):
- """
- The identity transform
-
- Notes
- -----
- g(`p`) = `p`
-
- Alias of statsmodels.family.links.Power(power=1.)
- """
- def __init__(self):
- super(identity, self).__init__(power=1.)
-
-class Log(Link):
- """
- The log transform
-
- Notes
- -----
- call and derivative call a private method _clean to trim the data by
- 1e-10 so that p is in (0,1). log is an alias of Log.
- """
-
- tol = 1.0e-10
-
- def _clean(self, x):
- return np.clip(x, Logit.tol, np.inf)
-
- def __call__(self, p, **extra):
- """
- Log transform link function
-
- Parameters
- ----------
- x : array-like
- Mean parameters
-
- Returns
- -------
- z : array
- log(x)
-
- Notes
- -----
- g(p) = log(p)
- """
- x = self._clean(p)
- return np.log(p)
-
- def inverse(self, z):
- """
- Inverse of log transform link function
-
- Parameters
- ----------
- z : array
- The inverse of the link function at `p`
-
- Returns
- -------
- p : array
- The mean probabilities given the value of the inverse `z`
-
- Notes
- -----
- g^{-1}(z) = exp(z)
- """
- return np.exp(z)
-
- def deriv(self, p):
- """
- Derivative of log transform link function
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- g'(p) : array
- derivative of log transform of x
-
- Notes
- -----
- g(x) = 1/x
- """
- p = self._clean(p)
- return 1. / p
-
-class log(Log):
- """
- The log transform
-
- Notes
- -----
- log is a an alias of Log.
- """
- pass
-
-#TODO: the CDFLink is untested
-class CDFLink(Logit):
- """
- The use the CDF of a scipy.stats distribution
-
- CDFLink is a subclass of logit in order to use its _clean method
- for the link and its derivative.
-
- Parameters
- ----------
- dbn : scipy.stats distribution
- Default is dbn=scipy.stats.norm
-
- Notes
- -----
- The CDF link is untested.
- """
-
- def __init__(self, dbn=scipy.stats.norm):
- self.dbn = dbn
-
- def __call__(self, p):
- """
- CDF link function
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- z : array
- (ppf) inverse of CDF transform of p
-
- Notes
- -----
- g(`p`) = `dbn`.ppf(`p`)
- """
- p = self._clean(p)
- return self.dbn.ppf(p)
-
- def inverse(self, z):
- """
- The inverse of the CDF link
-
- Parameters
- ----------
- z : array-like
- The value of the inverse of the link function at `p`
-
- Returns
- -------
- p : array
- Mean probabilities. The value of the inverse of CDF link of `z`
-
- Notes
- -----
- g^(-1)(`z`) = `dbn`.cdf(`z`)
- """
- return self.dbn.cdf(z)
-
- def deriv(self, p):
- """
- Derivative of CDF link
-
- Parameters
- ----------
- p : array-like
- mean parameters
-
- Returns
- -------
- g'(p) : array
- The derivative of CDF transform at `p`
-
- Notes
- -----
- g'(`p`) = 1./ `dbn`.pdf(`p`)
- """
-# Or is it
-# g'(`p`) = 1/`dbn`.pdf(`dbn`.ppf(`p`))
-#TODO: make sure this is correct.
-#can we just have a numerical approximation?
- p = self._clean(p)
- return 1. / self.dbn.pdf(p)
-
-#probit = CDFLink()
-class probit(CDFLink):
- """
- The probit (standard normal CDF) transform
-
- Notes
- --------
- g(p) = scipy.stats.norm.ppf(p)
-
- probit is an alias of CDFLink.
- """
- pass
-
-class cauchy(CDFLink):
- """
- The Cauchy (standard Cauchy CDF) transform
-
- Notes
- -----
- g(p) = scipy.stats.cauchy.ppf(p)
-
- cauchy is an alias of CDFLink with dbn=scipy.stats.cauchy
- """
- def __init__(self):
- super(cauchy, self).__init__(dbn=scipy.stats.cauchy)
-
-#TODO: CLogLog is untested
-class CLogLog(Logit):
- """
- The complementary log-log transform
-
- CLogLog inherits from Logit in order to have access to its _clean method
- for the link and its derivative.
-
- Notes
- -----
- CLogLog is untested.
- """
- def __call__(self, p):
- """
- C-Log-Log transform link function
-
- Parameters
- ----------
- p : array
- Mean parameters
-
- Returns
- -------
- z : array
- The CLogLog transform of `p`
-
- Notes
- -----
- g(p) = log(-log(1-p))
- """
- p = self._clean(p)
- return np.log(-np.log(1-p))
-
- def inverse(self, z):
- """
- Inverse of C-Log-Log transform link function
-
-
- Parameters
- ----------
- z : array-like
- The value of the inverse of the CLogLog link function at `p`
-
- Returns
- -------
- p : array
- Mean parameters
-
- Notes
- -----
- g^(-1)(`z`) = 1-exp(-exp(`z`))
- """
- return 1-np.exp(-np.exp(z))
-
- def deriv(self, p):
- """
- Derivatve of C-Log-Log transform link function
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- g'(p) : array
- The derivative of the CLogLog transform link function
-
- Notes
- -----
- g'(p) = - 1 / (log(p) * p)
- """
- p = self._clean(p)
- return 1. / ((p-1)*(np.log(1-p)))
-
-class cloglog(CLogLog):
- """
- The CLogLog transform link function.
-
- Notes
- -----
- g(`p`) = log(-log(1-`p`))
-
- cloglog is an alias for CLogLog
- cloglog = CLogLog()
- """
- pass
-
-class NegativeBinomial(object):
- '''
- The negative binomial link function
-
- Parameters
- ----------
- alpha : float, optional
- Alpha is the ancillary parameter of the Negative Binomial link function.
- It is assumed to be nonstochastic. The default value is 1. Permissible
- values are usually assumed to be in (.01,2).
- '''
-
- tol = 1.0e-10
-
- def __init__(self, alpha=1.):
- self.alpha = alpha
-
- def _clean(self, x):
- return np.clip(x, NegativeBinomial.tol, np.inf)
-
- def __call__(self, x):
- '''
- Negative Binomial transform link function
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- z : array
- The negative binomial transform of `p`
-
- Notes
- -----
- g(p) = log(p/(p + 1/alpha))
- '''
- p = self._clean(p)
- return np.log(p/(p+1/self.alpha))
-
- def inverse(self, z):
- '''
- Inverse of the negative binomial transform
-
- Parameters
- -----------
- z : array-like
- The value of the inverse of the negative binomial link at `p`.
- Returns
- -------
- p : array
- Mean parameters
-
- Notes
- -----
- g^(-1)(z) = exp(z)/(alpha*(1-exp(z)))
- '''
- return np.exp(z)/(self.alpha*(1-np.exp(z)))
-
- def deriv(self,p):
- '''
- Derivative of the negative binomial transform
-
- Parameters
- ----------
- p : array-like
- Mean parameters
-
- Returns
- -------
- g'(p) : array
- The derivative of the negative binomial transform link function
-
- Notes
- -----
- g'(x) = 1/(x+alpha*x^2)
- '''
- return 1/(p+self.alpha*p**2)
-
-class nbinom(NegativeBinomial):
- """
- The negative binomial link function.
-
- Notes
- -----
- g(p) = log(p/(p + 1/alpha))
-
- nbinom is an alias of NegativeBinomial.
- nbinom = NegativeBinomial(alpha=1.)
- """
- pass
diff --git a/statsmodels/scikits/statsmodels/genmod/families/varfuncs.py b/statsmodels/scikits/statsmodels/genmod/families/varfuncs.py
deleted file mode 100644
index 34e586f..0000000
--- a/statsmodels/scikits/statsmodels/genmod/families/varfuncs.py
+++ /dev/null
@@ -1,246 +0,0 @@
-"""
-Variance functions for use with the link functions in statsmodels.family.links
-"""
-
-__docformat__ = 'restructuredtext'
-
-import numpy as np
-
-class VarianceFunction(object):
- """
- Relates the variance of a random variable to its mean. Defaults to 1.
-
- Methods
- -------
- call
- Returns an array of ones that is the same shape as `mu`
-
- Notes
- -----
- After a variance function is initialized, its call method can be used.
-
- Alias for VarianceFunction:
- constant = VarianceFunction()
-
- See also
- --------
- statsmodels.family.family
- """
-
- def __call__(self, mu):
- """
- Default variance function
-
- Parameters
- -----------
- mu : array-like
- mean parameters
-
- Returns
- -------
- v : array
- ones(mu.shape)
- """
- mu = np.asarray(mu)
- return np.ones(mu.shape, np.float64)
-
-constant = VarianceFunction()
-constant.__doc__ = """
-The call method of constnat returns a constant variance, ie., a vector of ones.
-
-constant is an alias of VarianceFunction()
-"""
-
-class Power(object):
- """
- Power variance function
-
- Parameters
- ----------
- power : float
- exponent used in power variance function
-
- Methods
- -------
- call
- Returns the power variance
-
- Formulas
- --------
- V(mu) = numpy.fabs(mu)**power
-
- Notes
- -----
- Aliases for Power:
- mu = Power()
- mu_squared = Power(power=2)
- mu_cubed = Power(power=3)
- """
-
- def __init__(self, power=1.):
- self.power = power
-
- def __call__(self, mu):
- """
- Power variance function
-
- Parameters
- ----------
- mu : array-like
- mean parameters
-
- Returns
- -------
- variance : array
- numpy.fabs(mu)**self.power
- """
- return np.power(np.fabs(mu), self.power)
-
-mu = Power()
-mu.__doc__ = """
-Returns np.fabs(mu)
-
-Notes
------
-This is an alias of Power()
-"""
-mu_squared = Power(power=2)
-mu_squared.__doc__ = """
-Returns np.fabs(mu)**2
-
-Notes
------
-This is an alias of statsmodels.family.links.Power(power=2)
-"""
-mu_cubed = Power(power=3)
-mu_cubed.__doc__ = """
-Returns np.fabs(mu)**3
-
-Notes
------
-This is an alias of statsmodels.family.links.Power(power=3)
-"""
-
-class Binomial(object):
- """
- Binomial variance function
-
- Parameters
- ----------
- n : int, optional
- The number of trials for a binomial variable. The default is 1 for
- p in (0,1)
-
- Methods
- -------
- call
- Returns the binomial variance
-
- Formulas
- --------
- V(mu) = p * (1 - p) * n
-
- where p = mu / n
-
- Notes
- -----
- Alias for Binomial:
- binary = Binomial()
-
- A private method _clean trims the data by 1e-10 so that p is in (0,1)
- """
-
- tol = 1.0e-10
-
- def __init__(self, n=1):
- self.n = n
-
- def _clean(self, p):
- return np.clip(p, Binomial.tol, 1 - Binomial.tol)
-
- def __call__(self, mu):
- """
- Binomial variance function
-
- Parameters
- -----------
- mu : array-like
- mean parameters
-
- Returns
- -------
- variance : array
- variance = mu/n * (1 - mu/n) * self.n
- """
- p = self._clean(mu / self.n)
- return p * (1 - p) * self.n
-
-binary = Binomial()
-binary.__doc__ = """
-The binomial variance function for n = 1
-
-Notes
------
-This is an alias of Binomial(n=1)
-"""
-
-class NegativeBinomial(object):
- '''
- Negative binomial variance function
-
- Parameters
- ----------
- alpha : float
- The ancillary parameter for the negative binomial variance function.
- `alpha` is assumed to be nonstochastic. The default is 1.
-
- Methods
- -------
- call
- Returns the negative binomial variance
-
- Formulas
- --------
- V(mu) = mu + alpha*mu**2
-
- Notes
- -----
- Alias for NegativeBinomial:
- nbinom = NegativeBinomial()
-
- A private method _clean trims the data by 1e-10 so that p is in (0,inf)
- '''
-
- tol = 1.0e-10
-
- def __init__(self, alpha=1.):
- self.alpha = alpha
-
- def _clean(self, p):
- return np.clip(p, NegativeBinomial.tol, np.inf)
-
- def __call__(self, mu):
- """
- Negative binomial variance function
-
- Parameters
- ----------
- mu : array-like
- mean parameters
-
- Returns
- -------
- variance : array
- variance = mu + alpha*mu**2
- """
- p = self._clean(mu)
- return mu + self.alpha*mu**2
-
-nbinom = NegativeBinomial()
-nbinom.__doc__ = """
-Negative Binomial variance function.
-
-Notes
------
-This is an alias of NegativeBinomial(alpha=1.)
-"""
diff --git a/statsmodels/scikits/statsmodels/genmod/generalized_linear_model.py b/statsmodels/scikits/statsmodels/genmod/generalized_linear_model.py
deleted file mode 100644
index a6f09e8..0000000
--- a/statsmodels/scikits/statsmodels/genmod/generalized_linear_model.py
+++ /dev/null
@@ -1,1107 +0,0 @@
-"""
-Generalized linear models currently supports estimation using the one-parameter
-exponential families
-
-References
-----------
-Gill, Jeff. 2000. Generalized Linear Models: A Unified Approach.
- SAGE QASS Series.
-
-Green, PJ. 1984. "Iteratively reweighted least squares for maximum
- likelihood estimation, and some robust and resistant alternatives."
- Journal of the Royal Statistical Society, Series B, 46, 149-192.
-
-Hardin, J.W. and Hilbe, J.M. 2007. "Generalized Linear Models and
- Extensions." 2nd ed. Stata Press, College Station, TX.
-
-McCullagh, P. and Nelder, J.A. 1989. "Generalized Linear Models." 2nd ed.
- Chapman & Hall, Boca Rotan.
-"""
-
-import numpy as np
-import families
-from scikits.statsmodels.tools.tools import rank, add_constant
-from scikits.statsmodels.tools.decorators import (cache_readonly,
- resettable_cache)
-
-import scikits.statsmodels.base.model as base
-import scikits.statsmodels.regression.linear_model as lm
-import scikits.statsmodels.base.wrapper as wrap
-
-import scipy.stats as stats
-from scipy.special import ndtr as cdfnorm, ndtri as invnorm
-from matplotlib import pyplot as plt
-from scipy.stats import t
-
-from scikits.statsmodels.tools.sm_exceptions import PerfectSeparationError
-
-__all__ = ['GLM']
-
-class GLM(base.LikelihoodModel):
- '''
- Generalized Linear Models class
-
- GLM inherits from statsmodels.LikelihoodModel
-
- Parameters
- -----------
- endog : array-like
- 1d array of endogenous response variable. This array can be
- 1d or 2d. Binomial family models accept a 2d array with two columns.
- If supplied, each observation is expected to be [success, failure].
- exog : array-like
- n x p design / exogenous data array
- family : family class instance
- The default is Gaussian. To specify the binomial distribution
- family = sm.family.Binomial()
- Each family can take a link instance as an argument. See
- statsmodels.family.family for more information.
-
-
- Attributes
- -----------
- df_model : float
- `p` - 1, where `p` is the number of regressors including the intercept.
- df_resid : float
- The number of observation `n` minus the number of regressors `p`.
- endog : array
- See Parameters.
- exog : array
- See Parameters.
- history : dict
- Contains information about the iterations.
- iteration : int
- The number of iterations that fit has run. Initialized at 0.
- family : family class instance
- A pointer to the distribution family of the model.
- mu : array
- The estimated mean response of the transformed variable.
- normalized_cov_params : array
- `p` x `p` normalized covariance of the design / exogenous data.
- pinv_wexog : array
- For GLM this is just the pseudo inverse of the original design.
- scale : float
- The estimate of the scale / dispersion. Available after fit is called.
- scaletype : str
- The scaling used for fitting the model. Available after fit is called.
- weights : array
- The value of the weights after the last iteration of fit.
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.scotland.load()
- >>> data.exog = sm.add_constant(data.exog)
-
- Instantiate a gamma family model with the default link function.
-
- >>> gamma_model = sm.GLM(data.endog, data.exog, \
- family=sm.families.Gamma())
-
- >>> gamma_results = gamma_model.fit()
- >>> gamma_results.params
- array([ 4.96176830e-05, 2.03442259e-03, -7.18142874e-05,
- 1.11852013e-04, -1.46751504e-07, -5.18683112e-04,
- -2.42717498e-06, -1.77652703e-02])
- >>> gamma_results.scale
- 0.0035842831734919055
- >>> gamma_results.deviance
- 0.087388516416999198
- >>> gamma_results.pearson_chi2
- 0.086022796163805704
- >>> gamma_results.llf
- -83.017202161073527
-
- See also
- --------
- statsmodels.families.*
-
- Notes
- -----
- Only the following combinations make sense for family and link ::
-
- + ident log logit probit cloglog pow opow nbinom loglog logc
- Gaussian | x x x
- inv Gaussian | x x x
- binomial | x x x x x x x x x
- Poission | x x x
- neg binomial | x x x x
- gamma | x x x
-
- Not all of these link functions are currently available.
-
- Endog and exog are references so that if the data they refer to are already
- arrays and these arrays are changed, endog and exog will change.
-
-
- **Attributes**
-
- df_model : float
- Model degrees of freedom is equal to p - 1, where p is the number
- of regressors. Note that the intercept is not reported as a
- degree of freedom.
- df_resid : float
- Residual degrees of freedom is equal to the number of observation n
- minus the number of regressors p.
- endog : array
- See above. Note that endog is a reference to the data so that if
- data is already an array and it is changed, then `endog` changes
- as well.
- exposure : array-like
- Include ln(exposure) in model with coefficient constrained to 1.
- exog : array
- See above. Note that endog is a reference to the data so that if
- data is already an array and it is changed, then `endog` changes
- as well.
- history : dict
- Contains information about the iterations. Its keys are `fittedvalues`,
- `deviance`, and `params`.
- iteration : int
- The number of iterations that fit has run. Initialized at 0.
- family : family class instance
- The distribution family of the model. Can be any family in
- scikits.statsmodels.families. Default is Gaussian.
- mu : array
- The mean response of the transformed variable. `mu` is the value of
- the inverse of the link function at eta, where eta is the linear
- predicted value of the WLS fit of the transformed variable. `mu` is
- only available after fit is called. See
- statsmodels.families.family.fitted of the distribution family for more
- information.
- normalized_cov_params : array
- The p x p normalized covariance of the design / exogenous data.
- This is approximately equal to (X.T X)^(-1)
- offset : array-like
- Include offset in model with coefficient constrained to 1.
- pinv_wexog : array
- The pseudoinverse of the design / exogenous data array. Note that
- GLM has no whiten method, so this is just the pseudo inverse of the
- design.
- The pseudoinverse is approximately equal to (X.T X)^(-1)X.T
- scale : float
- The estimate of the scale / dispersion of the model fit. Only
- available after fit is called. See GLM.fit and GLM.estimate_scale
- for more information.
- scaletype : str
- The scaling used for fitting the model. This is only available after
- fit is called. The default is None. See GLM.fit for more information.
- weights : array
- The value of the weights after the last iteration of fit. Only
- available after fit is called. See statsmodels.families.family for
- the specific distribution weighting functions.
-
- '''
-
- def __init__(self, endog, exog, family=None, offset=None, exposure=None):
- super(GLM, self).__init__(endog, exog)
- self._sanitize_inputs(family, offset, exposure)
-
- def initialize(self):
- """
- Initialize a generalized linear model.
- """
- #TODO: intended for public use?
- self.history = {'fittedvalues' : [],
- 'params' : [np.inf],
- 'deviance' : [np.inf]}
-
- self.iteration = 0
- self.pinv_wexog = np.linalg.pinv(self.exog)
- self.normalized_cov_params = np.dot(self.pinv_wexog,
- np.transpose(self.pinv_wexog))
-
- self.df_model = rank(self.exog)-1
- self.df_resid = self.exog.shape[0] - rank(self.exog)
-
- def _sanitize_inputs(self, family, offset, exposure):
- if family is None:
- family = families.Gaussian()
- self.family = family
-
- if offset is not None:
- offset = np.asarray(offset)
- if offset.shape[0] != self.endog.shape[0]:
- raise ValueError("offset is not the same length as endog")
- self.offset = offset
-
- if exposure is not None:
- exposure = np.log(exposure)
- if exposure.shape[0] != self.endog.shape[0]:
- raise ValueError("exposure is not the same length as endog")
- self.exposure = exposure
-
- def score(self, params):
- """
- Score matrix. Not yet implemeneted
- """
- raise NotImplementedError
-
- def loglike(self, *args):
- """
- Loglikelihood function.
-
- Each distribution family has its own loglikelihood function.
- See statsmodels.families.family
- """
- return self.family.loglike(*args)
-
- def information(self, params):
- """
- Fisher information matrix. Not yet implemented.
- """
- raise NotImplementedError
-
- def _update_history(self, tmp_result, mu):
- """
- Helper method to update history during iterative fit.
- """
- self.history['params'].append(tmp_result.params)
- self.history['fittedvalues'].append(tmp_result.fittedvalues)
- self.history['deviance'].append(self.family.deviance(self.endog, mu))
-
- def estimate_scale(self, mu):
- """
- Estimates the dispersion/scale.
-
- Type of scale can be chose in the fit method.
-
- Parameters
- ----------
- mu : array
- mu is the mean response estimate
-
- Returns
- --------
- Estimate of scale
-
- Notes
- -----
- The default scale for Binomial and Poisson families is 1. The default
- for the other families is Pearson's Chi-Square estimate.
-
- See also
- --------
- statsmodels.glm.fit for more information
- """
- if not self.scaletype:
- if isinstance(self.family, (families.Binomial, families.Poisson)):
- return 1.
- #make it so you can run from source tree
-# famstring = self.family.__str__().lower()
-# if 'poisson' in famstring or \
-# ('binomial' in famstring and 'negative' not in famstring):
-# return 1.
- else:
- resid = self.endog - mu
- return ((np.power(resid, 2) / self.family.variance(mu)).sum() \
- / self.df_resid)
-
- if isinstance(self.scaletype, float):
- return np.array(self.scaletype)
-
- if isinstance(self.scaletype, str):
- if self.scaletype.lower() == 'x2':
- resid = self.endog - mu
- return ((np.power(resid, 2) / self.family.variance(mu)).sum() \
- / self.df_resid)
- elif self.scaletype.lower() == 'dev':
- return self.family.deviance(self.endog, mu)/self.df_resid
- else:
- raise ValueError("Scale %s with type %s not understood" %\
- (self.scaletype,type(self.scaletype)))
-
- else:
- raise ValueError("Scale %s with type %s not understood" %\
- (self.scaletype, type(self.scaletype)))
-
- def predict(self, params, exog=None, linear=False):
- """
- Return predicted values for a design matrix
-
- Parameters
- ----------
- params : array-like
- Parameters / coefficients of a GLM.
- exog : array-like, optional
- Design / exogenous data. Is exog is None, model exog is used.
- linear : bool
- If True, returns the linear predicted values. If False,
- returns the value of the inverse of the model's link function at
- the linear predicted values.
-
- Returns
- -------
- An array of fitted values
- """
- offset = getattr(self, 'offset', 0)
- exposure = getattr(self, 'exposure', 0)
- if exog is None:
- exog = self.exog
- eta = np.dot(exog, params) + offset + exposure
- if linear:
- return eta
- else:
- return self.family.fitted(eta)
-
- def fit(self, maxiter=100, method='IRLS', tol=1e-8, scale=None):
- '''
- Fits a generalized linear model for a given family.
-
- parameters
- ----------
- maxiter : int, optional
- Default is 100.
- method : string
- Default is 'IRLS' for iteratively reweighted least squares. This
- is currently the only method available for GLM fit.
- scale : string or float, optional
- `scale` can be 'X2', 'dev', or a float
- The default value is None, which uses `X2` for Gamma, Gaussian,
- and Inverse Gaussian.
- `X2` is Pearson's chi-square divided by `df_resid`.
- The default is 1 for the Binomial and Poisson families.
- `dev` is the deviance divided by df_resid
- tol : float
- Convergence tolerance. Default is 1e-8.
- '''
- endog = self.endog
- if endog.ndim > 1 and endog.shape[1] == 2:
- data_weights = endog.sum(1) # weights are total trials
- else:
- data_weights = np.ones((endog.shape[0]))
- self.data_weights = data_weights
- if np.shape(self.data_weights) == () and self.data_weights>1:
- self.data_weights = self.data_weights *\
- np.ones((endog.shape[0]))
- self.scaletype = scale
- if isinstance(self.family, families.Binomial):
-# this checks what kind of data is given for Binomial.
-# family will need a reference to endog if this is to be removed from the
-# preprocessing
- self.endog = self.family.initialize(self.endog)
-
- if hasattr(self, 'offset'):
- offset = self.offset
- elif hasattr(self, 'exposure'):
- offset = self.exposure
- else:
- offset = 0
- #TODO: would there ever be both and exposure and an offset?
-
- mu = self.family.starting_mu(self.endog)
- wlsexog = self.exog
- eta = self.family.predict(mu)
- self.iteration += 1
- dev = self.family.deviance(self.endog, mu)
- if np.isnan(dev):
- raise ValueError("The first guess on the deviance function \
-returned a nan. This could be a boundary problem and should be reported.")
- else:
- self.history['deviance'].append(dev)
- # first guess on the deviance is assumed to be scaled by 1.
- while((np.fabs(self.history['deviance'][self.iteration]-\
- self.history['deviance'][self.iteration-1])) > tol and \
- self.iteration < maxiter):
- self.weights = data_weights*self.family.weights(mu)
- wlsendog = eta + self.family.link.deriv(mu) * (self.endog-mu) \
- - offset
- wls_results = lm.WLS(wlsendog, wlsexog, self.weights).fit()
- eta = np.dot(self.exog, wls_results.params) + offset
- mu = self.family.fitted(eta)
- self._update_history(wls_results, mu)
- self.scale = self.estimate_scale(mu)
- self.iteration += 1
- if endog.squeeze().ndim == 1 and np.allclose(mu - endog, 0):
- msg = "Perfect separation detected, results not available"
- raise PerfectSeparationError(msg)
- self.mu = mu
- glm_results = GLMResults(self, wls_results.params,
- wls_results.normalized_cov_params,
- self.scale)
- return GLMResultsWrapper(glm_results)
-
-class GLMResults(base.LikelihoodModelResults):
- '''
- Class to contain GLM results.
-
- GLMResults inherits from statsmodels.LikelihoodModelResults
-
- Parameters
- ----------
- See statsmodels.LikelihoodModelReesults
-
- Returns
- -------
- **Attributes**
-
- aic : float
- Akaike Information Criterion
- -2 * `llf` + 2*(`df_model` + 1)
- bic : float
- Bayes Information Criterion
- `deviance` - `df_resid` * log(`nobs`)
- deviance : float
- See statsmodels.families.family for the distribution-specific deviance
- functions.
- df_model : float
- See GLM.df_model
- df_resid : float
- See GLM.df_resid
- fittedvalues : array
- Linear predicted values for the fitted model.
- dot(exog, params)
- llf : float
- Value of the loglikelihood function evalued at params.
- See statsmodels.families.family for distribution-specific loglikelihoods.
- model : class instance
- Pointer to GLM model instance that called fit.
- mu : array
- See GLM docstring.
- nobs : float
- The number of observations n.
- normalized_cov_params : array
- See GLM docstring
- null_deviance : float
- The value of the deviance function for the model fit with a constant
- as the only regressor.
- params : array
- The coefficients of the fitted model. Note that interpretation
- of the coefficients often depends on the distribution family and the
- data.
- pearson_chi2 : array
- Pearson's Chi-Squared statistic is defined as the sum of the squares
- of the Pearson residuals.
- pinv_wexog : array
- See GLM docstring.
- pvalues : array
- The two-tailed p-values for the parameters.
- resid_anscombe : array
- Anscombe residuals. See statsmodels.families.family for distribution-
- specific Anscombe residuals.
- resid_deviance : array
- Deviance residuals. See statsmodels.families.family for distribution-
- specific deviance residuals.
- resid_pearson : array
- Pearson residuals. The Pearson residuals are defined as
- (`endog` - `mu`)/sqrt(VAR(`mu`)) where VAR is the distribution
- specific variance function. See statsmodels.families.family and
- statsmodels.families.varfuncs for more information.
- resid_response : array
- Respnose residuals. The response residuals are defined as
- `endog` - `fittedvalues`
- resid_working : array
- Working residuals. The working residuals are defined as
- `resid_response`/link'(`mu`). See statsmodels.family.links for the
- derivatives of the link functions. They are defined analytically.
- scale : float
- The estimate of the scale / dispersion for the model fit.
- See GLM.fit and GLM.estimate_scale for more information.
- stand_errors : array
- The standard errors of the fitted GLM. #TODO still named bse
-
- See Also
- --------
- statsmodels.LikelihoodModelResults
- '''
-#TODO: add a z value function to LLMResults
-
- def __init__(self, model, params, normalized_cov_params, scale):
- super(GLMResults, self).__init__(model, params,
- normalized_cov_params=normalized_cov_params, scale=scale)
- self.family = model.family
- self._endog = model.endog
- self.nobs = model.endog.shape[0]
- self.mu = model.mu
- self._data_weights = model.data_weights
- self.df_resid = model.df_resid
- self.df_model = model.df_model
- self.pinv_wexog = model.pinv_wexog
- self._cache = resettable_cache()
-# are these intermediate results needed or can we just call the model's attributes?
- def predict(self, exog=None, linear=False):
- # pab
- return self.model.predict(self.params, exog, linear)
- def predict_bounds(self, exog=None, linear=False, alpha=0.05):
- # pab
- if exog is None:
- exog = self.model.exog
- eta = self.model.predict(self.params, exog, linear=True)
-
- pcov = self.scale * self.normalized_cov_params
-
- U, S, V = np.linalg.svd(pcov, full_matrices=False);
- R = np.dot(U,np.dot(np.diag(np.sqrt(S)),V)) #squareroot of pcov
- varxb = (np.dot(exog,R)**2).sum(axis=1)
- crit = -invnorm(alpha/2)
-
- ecrit = crit * np.sqrt(varxb)
- if linear:
- ylo = eta - ecrit
- yup = eta + ecrit
- else:
- ylo = self.family.fitted(eta - ecrit)
- yup = self.family.fitted(eta + ecrit)
-
- yloup = np.vstack((ylo,yup))
- ylo = yloup.min(axis=0)
- yup = yloup.max(axis=0)
- return ylo, yup
-
- @cache_readonly
- def resid_response(self):
- return self._data_weights * (self._endog-self.mu)
-
- @cache_readonly
- def resid_pearson(self):
- return np.sqrt(self._data_weights) * (self._endog-self.mu)/\
- np.sqrt(self.family.variance(self.mu))
-
- @cache_readonly
- def resid_working(self):
- val = (self.resid_response / self.family.link.deriv(self.mu))
- val *= self._data_weights
- return val
-
- @cache_readonly
- def resid_anscombe(self):
- return self.family.resid_anscombe(self._endog, self.mu)
-
- @cache_readonly
- def resid_deviance(self):
- return self.family.resid_dev(self._endog, self.mu)
-
-
- @cache_readonly
- def pvalues(self):
- return t.sf(np.abs(self.tvalues), self.df_resid)*2
-
- @cache_readonly
- def pearson_chi2(self):
- chisq = (self._endog- self.mu)**2 / self.family.variance(self.mu)
- chisq *= self._data_weights
- chisqsum = np.sum(chisq)
- return chisqsum
-
- @cache_readonly
- def fittedvalues(self):
- return self.mu
-
- @cache_readonly
- def null(self):
- endog = self._endog
- model = self.model
- exog = np.ones((len(endog), 1))
- if hasattr(model, 'offset'):
- return GLM(endog, exog, offset=model.offset,
- family=self.family).fit().mu
- elif hasattr(model, 'exposure'):
- return GLM(endog, exog, exposure=model.exposure,
- family=self.family).fit().mu
- else:
- wls_model = lm.WLS(endog, exog, weights=self._data_weights)
- return wls_model.fit().fittedvalues
-
- @cache_readonly
- def deviance(self):
- return self.family.deviance(self._endog, self.mu)
-
- @cache_readonly
- def null_deviance(self):
- return self.family.deviance(self._endog, self.null)
-
- @cache_readonly
- def llf(self):
- _modelfamily = self.family
- if isinstance(_modelfamily, families.NegativeBinomial):
- val = _modelfamily.loglike(self.model.endog,
- fittedvalues = np.dot(self.model.exog,self.params))
- else:
- val = _modelfamily.loglike(self._endog, self.mu,
- scale=self.scale)
- return val
-
- @cache_readonly
- def aic(self):
- return -2 * self.llf + 2*(self.df_model+1)
-
- @cache_readonly
- def bic(self):
- return self.deviance - self.df_resid*np.log(self.nobs)
-
- def plot_fit_summary(self):
- ''' Plot various diagnostic plots to asses the quality of the fit.
-
- PLOT_FIT_SUMMARY displays various plots to graphically assess whether the data
- could come from the fitted distribution. If so the
- the residual plots will be linear. Other
- distribution types will introduce curvature in the residual plots.
- '''
- # pab
- plt.subplot(2, 2, 1)
- self.plot_fit()
- plt.subplot(2, 2, 2)
- self.plot_resid_histogram()
- plt.subplot(2, 2, 3)
- self.plot_resid_dependence()
- plt.subplot(2, 2, 4)
- self.plot_resid_qq()
-
- def plot_fit(self):
- # pab
- yhat = self.mu
- y = self._endog
- #plt.figure()
- plt.scatter(yhat, y)
- n = y.shape[0]
-
- m, c = np.linalg.lstsq(add_constant(yhat,prepend=False), y)[0]
- x = np.linspace(0,1,self.nobs)
- plt.plot(x, c+m*x, 'r--')
- plt.title('Model Fit Plot')
- plt.ylabel('Observed values')
- plt.xlabel('Fitted values')
-
- def plot_resid_dependence(self, kind='pearson'):
- # pab
- name = 'resid_' + kind
- ylabeltxt = '%s Residuals' % kind.title()
- res = getattr(self, name)
- yhat = self.mu
- # Plot of yhat vs. Pearson residuals
- #plt.figure()
- plt.scatter(yhat, res)
- plt.plot([0.0, 1.0],[0.0, 0.0], 'k-')
- plt.title('Residual Dependence Plot')
- plt.ylabel(ylabeltxt)
- plt.xlabel('Fitted values')
-
- def plot_resid_histogram(self, kind='deviance'):
- # pab
- name = 'resid_' + kind
- ylabeltxt = '%s Residuals' % kind.title()
- res = getattr(self, name)
- # Histogram of standardized deviance residuals
- #plt.figure()
- stdres = (res - res.mean())/res.std()
- plt.hist(stdres, bins=25)
- plt.title('Histogram of standardized %s residuals' % kind)
-
- def plot_resid_qq(self, kind='deviance'):
- # pab
- # QQ Plot of Deviance Residuals
- nobs = self.nobs
- name = 'resid_' + kind
- ylabeltxt = '%s Residuals' % kind.title()
- res = np.sort(getattr(self, name))
- #plt.figure()
- p = np.linspace(0 + 1./(nobs-1), 1-1./(nobs-1), nobs)
- quants = np.zeros_like(res)
- for i in range(nobs):
- quants[i] = stats.scoreatpercentile(res, p[i]*100)
- mu = res.mean()
- sigma = res.std()
- y = stats.norm.ppf(p, loc=mu, scale=sigma)
- plt.scatter(y, quants)
- plt.plot([y.min(),y.max()],[y.min(),y.max()],'r--')
- plt.title('Normal - Quantile Plot')
- plt.ylabel('%s Residuals Quantiles' % kind.title())
- plt.xlabel('Quantiles of N(0,1)')
-# in branch *-skipper
-#from scikits.statsmodels.sandbox import graphics
-#img = graphics.qqplot(res)
-
- def summary(self, yname=None, xname=None, title=None, alpha=.05):
- """Summarize the Regression Results
-
- Parameters
- -----------
- yname : string, optional
- Default is `y`
- xname : list of strings, optional
- Default is `var_##` for ## in p the number of regressors
- title : string, optional
- Title for the top table. If not None, then this replaces the
- default title
- alpha : float
- significance level for the confidence intervals
-
- Returns
- -------
- smry : Summary instance
- this holds the summary tables and text, which can be printed or
- converted to various output formats.
-
- See Also
- --------
- scikits.statsmodels.iolib.summary.Summary : class to hold summary
- results
-
- """
-
- top_left = [('Dep. Variable:', None),
- ('Model:', None),
- ('Model Family:', [self.family.__class__.__name__]),
- ('Link Function:', [self.family.link.__class__.__name__]),
- ('Method:', ['IRLS']),
- ('Date:', None),
- ('Time:', None),
- ('No. Iterations:', ["%d" % self.model.iteration]),
- ]
-
- top_right = [('No. Observations:', None),
- ('Df Residuals:', None),
- ('Df Model:', None),
- ('Scale:', [self.scale]),
- ('Log-Likelihood:', None),
- ('Deviance:', ["%#8.5g" % self.deviance]),
- ('Pearson chi2:', ["%#6.3g" % self.pearson_chi2])
- ]
-
- if title is None:
- title = "Generalized Linear Model Regression Results"
-
- #create summary tables
- from scikits.statsmodels.iolib.summary import Summary
- smry = Summary()
- smry.add_table_2cols(self, gleft=top_left, gright=top_right, #[],
- yname=yname, xname=xname, title=title)
- smry.add_table_params(self, yname=yname, xname=xname, alpha=.05,
- use_t=True)
-
- #diagnostic table is not used yet:
-# smry.add_table_2cols(self, gleft=diagn_left, gright=diagn_right,
-# yname=yname, xname=xname,
-# title="")
-
- return smry
-
-
- def summary_old(self, yname=None, xname=None, title='Generalized linear model',
- returns='text'):
- """
- Print a table of results or returns SimpleTable() instance which
- summarizes the Generalized linear model results.
-
- Parameters
- -----------
- yname : string
- optional, Default is `Y`
- xname : list of strings
- optional, Default is `X.#` for # in p the number of regressors
- title : string
- optional, Defualt is 'Generalized linear model'
- returns : string
- 'text', 'table', 'csv', 'latex', 'html'
-
- Returns
- -------
- Defualt :
- returns='print'
- Prints the summarirized results
-
- Option :
- returns='text'
- Prints the summarirized results
-
- Option :
- returns='table'
- SimpleTable instance : summarizing the fit of a linear model.
-
- Option :
- returns='csv'
- returns a string of csv of the results, to import into a spreadsheet
-
- Option :
- returns='latex'
- Not implimented yet
-
- Option :
- returns='HTML'
- Not implimented yet
-
-
- Examples (needs updating)
- --------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> ols_results = sm.OLS(data.endog, data.exog).results
- >>> print ols_results.summary()
- ...
-
- Notes
- -----
- stand_errors are not implimented.
- conf_int calculated from normal dist.
- """
- import time as Time
- from iolib import SimpleTable
- from stattools import jarque_bera, omni_normtest, durbin_watson
-
- yname = 'Y'
- if xname is None:
- xname = ['x%d' % i for i in range(self.model.exog.shape[1])]
-
- #List of results used in summary
- #yname = yname
- #xname = xname
- time = Time.localtime()
- dist_family = self.model.family.__class__.__name__
- aic = self.aic
- bic = self.bic
- deviance = self.deviance
- df_model = self.df_model
- df_resid = self.df_resid
- fittedvalues = self.fittedvalues
- llf = self.llf
- mu = self.mu
- nobs = self.nobs
- normalized_cov_params = self.normalized_cov_params
- null_deviance = self.null_deviance
- params = self.params
- pearson_chi2 = self.pearson_chi2
- pinv_wexog = self.pinv_wexog
- resid_anscombe = self.resid_anscombe
- resid_deviance = self.resid_deviance
- resid_pearson = self.resid_pearson
- resid_response = self.resid_response
- resid_working = self.resid_working
- scale = self.scale
-#TODO #stand_errors = self.stand_errors
- stand_errors = self.bse #[' ' for x in range(len(self.params))]
-#Added note about conf_int
- pvalues = self.pvalues
- conf_int = self.conf_int()
- cov_params = self.cov_params()
- #f_test() = self.f_test()
- t = self.tvalues
- #t_test = self.t_test()
-
-
-
- table_1l_fmt = dict(
- data_fmts = ["%s", "%s", "%s", "%s", "%s"],
- empty_cell = '',
- colwidths = 15,
- colsep=' ',
- row_pre = ' ',
- row_post = ' ',
- table_dec_above='=',
- table_dec_below='',
- header_dec_below=None,
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
- # Note table_1l_fmt over rides the below formating. in extend_right? JP
- table_1r_fmt = dict(
- data_fmts = ["%s", "%s", "%s", "%s", "%1s"],
- empty_cell = '',
- colwidths = 12,
- colsep=' ',
- row_pre = '',
- row_post = '',
- table_dec_above='=',
- table_dec_below='',
- header_dec_below=None,
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
-
- table_2_fmt = dict(
- data_fmts = ["%s", "%s", "%s", "%s"],
- #data_fmts = ["%#12.6g","%#12.6g","%#10.4g","%#5.4g"],
- #data_fmts = ["%#10.4g","%#6.4f", "%#6.4f"],
- #data_fmts = ["%#15.4F","%#15.4F","%#15.4F","%#14.4G"],
- empty_cell = '',
- colwidths = 13,
- colsep=' ',
- row_pre = ' ',
- row_post = ' ',
- table_dec_above='=',
- table_dec_below='=',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
- ######## summary table 1 #######
- table_1l_title = title
- table_1l_header = None
- table_1l_stubs = ('Model Family:',
- 'Method:',
- 'Dependent Variable:',
- 'Date:',
- 'Time:',
- )
- table_1l_data = [
- [dist_family],
- ['IRLS'],
- [yname],
- [Time.strftime("%a, %d %b %Y",time)],
- [Time.strftime("%H:%M:%S",time)],
- ]
- table_1l = SimpleTable(table_1l_data,
- table_1l_header,
- table_1l_stubs,
- title=table_1l_title,
- txt_fmt = table_1l_fmt)
- table_1r_title = None
- table_1r_header = None
- table_1r_stubs = ('# of obs:',
- 'Df residuals:',
- 'Df model:',
- 'Scale:',
- 'Log likelihood:'
- )
- table_1r_data = [
- [nobs],
- [df_resid],
- [df_model],
- ["%#6.4f" % (scale,)],
- ["%#6.4f" % (llf,)]
- ]
- table_1r = SimpleTable(table_1r_data,
- table_1r_header,
- table_1r_stubs,
- title=table_1r_title,
- txt_fmt = table_1r_fmt)
-
- ######## summary table 2 #######
-#TODO add % range to confidance interval column header
- table_2header = ('coefficient', 'stand errors', 't-statistic',
- 'Conf. Interval')
- table_2stubs = xname
- table_2data = zip(["%#6.4f" % (params[i]) for i in range(len(xname))],
- ["%#6.4f" % stand_errors[i] for i in range(len(xname))],
- ["%#6.4f" % (t[i]) for i in range(len(xname))],
- [""" [%#6.3f, %#6.3f]""" % tuple(conf_int[i]) for i in
- range(len(xname))])
-
-
- #dfmt={'data_fmt':["%#12.6g","%#12.6g","%#10.4g","%#5.4g"]}
- table_2 = SimpleTable(table_2data,
- table_2header,
- table_2stubs,
- title=None,
- txt_fmt = table_2_fmt)
-
- ######## Return Summary Tables ########
- # join table table_s then print
- if returns == 'text':
- table_1l.extend_right(table_1r)
- return str(table_1l) + '\n' + str(table_2)
- elif returns == 'print':
- table_1l.extend_right(table_1r)
- print(str(table_1l) + '\n' + str(table_2))
- elif returns == 'tables':
- return [table_1l, table_1r, table_2]
- #return [table_1, table_2 ,table_3L, notes]
- elif returns == 'csv':
- return table_1.as_csv() + '\n' + table_2.as_csv() + '\n' + \
- table_3L.as_csv()
- elif returns == 'latex':
- print('not avalible yet')
- elif returns == html:
- print('not avalible yet')
-
-
-class GLMResultsWrapper(lm.RegressionResultsWrapper):
- _attrs = {
- 'resid_anscombe' : 'rows',
- 'resid_deviance' : 'rows',
- 'resid_pearson' : 'rows',
- 'resid_response' : 'rows',
- 'resid_working' : 'rows'
- }
- _wrap_attrs = wrap.union_dicts(lm.RegressionResultsWrapper._wrap_attrs,
- _attrs)
-wrap.populate_wrapper(GLMResultsWrapper, GLMResults)
-
-if __name__ == "__main__":
- import scikits.statsmodels.api as sm
- import numpy as np
- data = sm.datasets.longley.load()
- #data.exog = add_constant(data.exog)
- GLMmod = GLM(data.endog, data.exog).fit()
- GLMT = GLMmod.summary(returns='tables')
-## GLMT[0].extend_right(GLMT[1])
-## print(GLMT[0])
-## print(GLMT[2])
- GLMTp = GLMmod.summary(title='Test GLM')
-
-
- """
-From Stata
-. webuse beetle
-. glm r i.beetle ldose, family(binomial n) link(cloglog)
-
-Iteration 0: log likelihood = -79.012269
-Iteration 1: log likelihood = -76.94951
-Iteration 2: log likelihood = -76.945645
-Iteration 3: log likelihood = -76.945645
-
-Generalized linear models No. of obs = 24
-Optimization : ML Residual df = 20
- Scale parameter = 1
-Deviance = 73.76505595 (1/df) Deviance = 3.688253
-Pearson = 71.8901173 (1/df) Pearson = 3.594506
-
-Variance function: V(u) = u*(1-u/n) [Binomial]
-Link function : g(u) = ln(-ln(1-u/n)) [Complementary log-log]
-
- AIC = 6.74547
-Log likelihood = -76.94564525 BIC = 10.20398
-
-------------------------------------------------------------------------------
- | OIM
- r | Coef. Std. Err. z P>|z| [95% Conf. Interval]
--------------+----------------------------------------------------------------
- beetle |
- 2 | -.0910396 .1076132 -0.85 0.398 -.3019576 .1198783
- 3 | -1.836058 .1307125 -14.05 0.000 -2.09225 -1.579867
- |
- ldose | 19.41558 .9954265 19.50 0.000 17.46458 21.36658
- _cons | -34.84602 1.79333 -19.43 0.000 -38.36089 -31.33116
-------------------------------------------------------------------------------
-"""
-
- #NOTE: wfs dataset has been removed due to a licensing issue
- # example of using offset
- #data = sm.datasets.wfs.load()
- # get offset
- #offset = np.log(data.exog[:,-1])
- #exog = data.exog[:,:-1]
-
- # convert dur to dummy
- #exog = sm.tools.categorical(exog, col=0, drop=True)
- # drop reference category
- # convert res to dummy
- #exog = sm.tools.categorical(exog, col=0, drop=True)
- # convert edu to dummy
- #exog = sm.tools.categorical(exog, col=0, drop=True)
- # drop reference categories and add intercept
- #exog = sm.add_constant(exog[:,[1,2,3,4,5,7,8,10,11,12]])
-
- #endog = np.round(data.endog)
- #mod = sm.GLM(endog, exog, family=sm.families.Poisson()).fit()
-
- #res1 = GLM(endog, exog, family=sm.families.Poisson(),
- # offset=offset).fit(tol=1e-12, maxiter=250)
- #exposuremod = GLM(endog, exog, family=sm.families.Poisson(),
- # exposure = data.exog[:,-1]).fit(tol=1e-12,
- # maxiter=250)
- #assert(np.all(res1.params == exposuremod.params))
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/__init__.py b/statsmodels/scikits/statsmodels/genmod/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/__init__.py b/statsmodels/scikits/statsmodels/genmod/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/glm_test_resids.py b/statsmodels/scikits/statsmodels/genmod/tests/results/glm_test_resids.py
deleted file mode 100644
index 103c661..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/glm_test_resids.py
+++ /dev/null
@@ -1,37 +0,0 @@
-'''
-This file contains the residuals for testing GLM.
-
-All residuals were obtained with Stata.
-
-The residuals are column ordered as
-
-Pearson, Deviance, Working, Anscombe, and Response Residuals
-'''
-
-
-import numpy as np
-
-lbw =[-.67369007, -.86512534, -.06703079, -.93506245, -.31217507, -.38301082, -.52323205, -.01427243, -.55879206, -.12793027, -.68788286, -.88025592, -.07003063, -.95205459, -.32119762, -.96932399, -1.1510657, -.12098923, -1.2626094, -.48442686, -1.017216, -1.1919416, -.12709645, -1.3106868, -.50853393, -.56992387, -.75002865, -.04537362, -.80685236, -.24517662, -.38236113, -.52240243, -.01419429, -.5578939, -.12755193, -.70541551, -.89874491, -.07371959, -.97286469, -.33226988, -.53129095, -.70516948, -.03779124, -.75734471, -.22013309, -.59687896, -.78068461, -.05087588, -.84082824, -.26268069, -.72944938, -.92372831, -.07872676, -1.0010676, -.34729955, -.48089188, -.64503581, -.02865125, -.6913447, -.18782188, -1.7509231, -1.6748694, -.13984667, -1.9107428, -.75404181, -1.0993874, -1.2588746, -.13558784, -1.3901949, -.54723527, -.73406378, -.9284774, -.0796795, -1.0064397, -.35016393, -.73406378, -.9284774, -.0796795, -1.0064397, -.35016393, -.91970083, -1.1071944, -.11376204, -1.2113902, -.45824406, -.58253395, -.76443611, -.04792993, -.8228052, -.25336683, -.87010277, -1.0617464, -.10565948, -1.1587271, -.43087357, -.55091811, -.72809506, -.04159148, -.78261562, -.23284101, -.50228984, -.67078749, -.03241138, -.71955949, -.20146616, -.56681231, -.74645574, -.04474827, -.80290024, -.24315597, -.16739043, -.23509228, -.00072263, -.24969795, -.02725586, -.53429779, -.70869969, -.03836573, -.76123202, -.22207692, -.81310524, -1.0074762, -.09536044, -1.0963421, -.39800383, -.24319644, -.339003, -.00294417, -.36060255, -.05584178, -.62985338, -.81746346, -.05776093, -.88175202, -.28403447, -.27289888, -.37902784, -.00447115, -.403468, -.06931188, -.73980785, -.9343678, -.08086098, -1.0131078, -.35371946, -.79896487, -.99366645, -.09266053, -1.0805507, -.3896279, -.79896487, -.99366645, -.09266053, -1.0805507, -.3896279, -.95715693, -1.140454, -.11930111, -1.2501848, -.47812002, -1.2258645, -1.3545388, -.14405247, -1.5056478, -.60043853, -.27739012, -.38504179, -.00474005, -.40991694, -.07144772, -.65459114, -.84453257, -.06298676, -.91198968, -.29995988, -.46709275, -.62825848, -.02633193, -.67300059, -.17910031, -.54303849, -.71892471, -.04005189, -.77249964, -.22773411, -.54176628, -.71743989, -.03980502, -.77086265, -.22691015, -.25756493, -.35841857, -.00362961, -.38138453, -.06221253, -.55956791, -.73810992, -.04330137, -.79367479, -.2384528, -.69600671, -.88885063, -.07174285, -.96172188, -.32633864, -.23256318, -.32457262, -.00249768, -.34516994, -.05131047, -.64757466, -.83690034, -.06150185, -.90345369, -.2954536, -.28195528, -.39114407, -.00502406, -.41646289, -.07364416, -1.1570243, -1.3035317, -.14010172, -1.443813, -.57241299, -1.1570243, -1.3035317, -.14010172, -1.443813, -.57241299, -.30030789, -.41556527, -.00627721, -.44268348, -.08272435, -.55114605, -.72835967, -.04163627, -.78290767, -.23298882, -.3806923, -.52027022, -.01399469, -.5555858, -.12658158, -1.1987876, -1.33477, -.1426768, -1.4816055, -.58967487, -.94149929, -1.12666, -.11704805, -1.2340685, -.46989562, -.53813037, -.71318989, -.03910216, -.76617855, -.22455631, -.55398245, -.73164922, -.04219494, -.78653899, -.2348285, -.6479873, -.83735019, -.06158914, -.90395657, -.29571887, -.62689671, -.81419816, -.0571388, -.87811137, -.28212464, -.67810985, -.86985289, -.06796584, -.94036802, -.31499013, -1.4692211, -1.5166623, -.14786328, -1.7067836, -.68340511, -.40499087, -.55113968, -.01705699, -.58904006, -.14090647, -.67731506, -.86900381, -.06779774, -.93941488, -.31448425, -.62489302, -.81198168, -.0567176, -.87564093, -.28082972, -.62489302, -.81198168, -.0567176, -.87564093, -.28082972, -.57609901, -.75709845, -.04662119, -.81467722, -.24918728, -.60844593, -.79367679, -.0532758, -.85526404, -.27018297, -.29839126, -.41302333, -.00613785, -.43995243, -.08175784, -1.3570687, -1.4452542, -.14780947, -1.6172873, -.64808999, -.78708367, -.98195509, -.0903525, -1.0671844, -.38252574, -.5858308, -.76818375, -.04860366, -.82695911, -.25550797, -.31665807, -.43716753, -.00754852, -.46591063, -.09113411, -.82908669, -1.0229172, -.09834616, -1.1140383, -.40736693, -.69616804, -.88902083, -.07177681, -.96191342, -.32644055, -1.0915205, -1.2526359, -.13488154, -1.3827415, -.54367425, -.64853308, -.837945, -.0617046, -.90462156, -.29606968, -.94223393, -1.1273107, -.11715578, -1.2348278, -.47028421, -.816023, -1.0103085, -.09591088, -1.0995849, -.39972155, -.57856847, -.75991792, -.04712242, -.81779956, -.25079125, -.32734654, -.45120803, -.00846067, -.48102477, -.09678472, -.31077092, -.42940642, -.00707363, -.45756203, -.08807264, -.61538501, -.80142385, -.05472422, -.86388252, -.27467837, -1.1456594, -1.2948703, -.13930185, -1.4333765, -.5675742, -.21863111, -.30558898, -.00198616, -.32488425, -.045619, -.34650082, -.47620326, -.01025864, -.50796716, -.10719293, -.22518959, -.31453605, -.00221689, -.33444271, -.04826292, -.56093617, -.73968913, -.04357365, -.79541979, -.23934092, -.56471813, -.74404709, -.04432868, -.80023684, -.24179618, -.5589041, -.73734327, -.04316945, -.79282776, -.23802197, -.98405074, -1.1637857, -.12295866, -1.2775329, -.49196179, -.67623178, -.86784578, -.06756859, -.9381151, -.31379451, -.34443674, -.47352019, -.01005474, -.50507281, -.10605469, -.20538064, -.28745723, -.00157184, -.30552538, -.04047396, -.36261354, -.49705954, -.01193509, -.53048488, -.11620849, -.33216574, -.45751709, -.00889321, -.48782091, -.09937016, -.52834459, -.70170398, -.03723117, -.75353006, -.21822964, -.65107472, -.84071206, -.06224241, -.90771574, -.29770265, -2.2838855, -1.9116213, -.11327561, -2.2332026, -.83912829, -.57856847, -.75991792, -.04712242, -.81779956, -.25079125, -.30573921, -.4227577, -.00668307, -.45041336, -.08548557, -.26475363, -.36809496, -.0040096, -.39174994, -.06550308, -.50724876, -.67670909, -.03330933, -.72605772, -.2046457, -.50724876, -.67670909, -.03330933, -.72605772, -.2046457, -.29708892, -.41129496, -.00604429, -.43809571, -.08110349, -.39538836, -.53898588, -.01580695, -.57585866, -.13519643, -.95811737, -1.141295, -.11943637, -1.2511687, -.47862055, -.79777479, -.99249783, -.09243093, -1.0792158, -.38891913, -.4007824, -.54582043, -.01650278, -.58326946, -.1383964, -.59547213, -.77909775, -.05058538, -.83906658, -.26176764, -.67961214, -.87145655, -.06828352, -.9421685, -.31594589, -.35903387, -.49243968, -.01154966, -.52549403, -.11418612, -.25982794, -.36146745, -.00374651, -.38464992, -.06324112, -.63086237, -.8185763, -.0579734, -.88299313, -.28468594, -.52587777, -.6987977, -.03676448, -.75033205, -.21663702, -.19948442, -.27936589, -.00140862, -.29689136, -.03827107, -.61183026, -.7974596, -.05398148, -.85947135, -.27237604, -.50385167, -.67265442, -.03269316, -.72160779, -.20246694, -.48499858, -.65000311, -.02935791, -.69678155, -.19042999, -.42040434, -.57052211, -.01917023, -.61008878, -.15019447, -.48053382, -.64460216, -.02858999, -.69087017, -.18759474, -.37464721, -.51253189, -.01328506, -.54721232, -.12308435, -.49531764, -.66243224, -.03116534, -.71039719, -.19700616, -.36160926, -.49576422, -.01182621, -.52908537, -.11564002, -.75971278, -.95459728, -.08491171, -1.0360505, -.36595033, -.29016492, -.40209055, -.00556233, -.42821114, -.07765727, -.40546611, -.55173962, -.01712019, -.58969106, -.14119063, -.39648646, -.54037876, -.01594727, -.57736865, -.13584627, -.35179057, -.48306766, -.01079245, -.51537461, -.11012759, -.33522775, -.46151868, -.00917494, -.49213296, -.10102472, -.33337344, -.45909602, -.00900368, -.48952221, -.10002166, -.28349954, -.39320584, -.00512259, -.41867509, -.07439288, -.62237174, -.80918847, -.05618813, -.87252863, -.27919958, -.37781929, -.51659535, -.01365481, -.55160868, -.12491598, -.26957183, -.37456618, -.00427859, -.39868504, -.06774594, .61566918, .80174036, .05478366, .86423481, .27486236, 2.1552118, 1.8605156, .11994504, 2.1616254, .82285014, .6958925, .88873013, .07171881, .96158626, .32626648, .48936001, .65526554, .03011636, .70254431, .19320564, .94341916, 1.1283597, .11732917, 1.2360523, .47091059, 2.317558, 1.9244575, .11155378, 2.2513666, .84304062, 1.0055755, 1.1821359, .12569111, 1.2991214, .50277997, 1.1758629, 1.3177365, .14133315, 1.4609684, .58029986, .77665994, .97159873, .08829985, 1.0553839, .37624776, .92862761, 1.1152029, .11512854, 1.2207114, .46304378, 1.7104194, 1.6537851, .14148619, 1.8830756, .74525762, .51347062, .68411403, .03444926, .73418924, .20864293, 1.7302647, 1.6641798, .14069739, 1.8966961, .7496129, 1.7159282, 1.656683, .14127016, 1.886869, .74647663, 1.4097427, 1.4794559, .14814617, 1.659967, .66525789, 2.0442483, 1.8136166, .12572138, 2.0969416, .80691071, 1.7479484, 1.6733383, .13997094, 1.9087284, .75341056, 1.7094805, 1.6532902, .14152278, 1.8824281, .74504908, 1.4965596, 1.5332827, .14752494, 1.7278315, .69132856, 1.1936562, 1.330981, .14239054, 1.4770087, .58759741, .82652693, 1.0204559, .09787281, 1.1112146, .40587474, 2.2245013, 1.8884508, .11633994, 2.2006058, .83188774, 1.0349547, 1.206727, .12914052, 1.3281647, .51717209, 1.3170894, 1.4184715, .14713645, 1.5840959, .63433244, 3.1267629, 2.1805419, .07637108, 2.631322, .90720675, .57215628, .7525877, .04582366, .809684, .24662647, .86627248, 1.0581685, .10499903, 1.1545978, .42871115, .94218582, 1.1272681, .11714873, 1.2347781, .47025877, 1.1156811, 1.2716852, .13698079, 1.405528, .55451496, .53496988, .70948787, .03849454, .76210013, .22251157, 1.4497097, 1.5046175, .14802749, 1.6915825, .6775918, 1.2233611, 1.3527267, .14393463, 1.5034398, .59945723, 1.545073, 1.5620618, .14664053, 1.7644793, .70477532, 2.020635, 1.803272, .12694042, 2.0827983, .80326447, .59611095, .7798185, .05071725, .83986668, .26218226, .85655928, 1.0490513, .1033029, 1.144086, .42319688, 1.1157473, 1.2717369, .13698625, 1.40559, .55454427, 1.5187563, 1.5465618, .1471632, 1.7447092, .69757645, 1.2580261, 1.3775399, .14540261, 1.5337471, .61279777, 2.2387897, 1.8940894, .11559989, 2.2085158, .83367096, 1.4987735, 1.5346157, .14749226, 1.7295233, .69195908, .87949714, 1.0704799, .10725881, 1.1688167, .43614806, .81628943, 1.0105668, .09596102, 1.0998807, .39987821, 1.0340841, 1.2060057, .12904294, 1.327311, .51675179, 1.7490122, 1.6738861, .13992657, 1.9094491, .75363655, 1.6803635, 1.6378022, .14262258, 1.8622063, .73846784, 1.8051113, 1.7022925, .13748913, 1.9469661, .7651715, 1.5637979, 1.5729326, .14621078, 1.7783904, .70976331, 1.1993095, 1.3351545, .14270545, 1.4820722, .58988546, 1.3197815, 1.4202979, .1471939, 1.5863531, .63527917, .71898726, .91290406, .07655565, .98883657, .34077931, 1.5103554, 1.5415584, .14730892, 1.7383434, .69523097, 3.0022063, 2.1465826, .08091665, 2.5788383, .90013225, .64440768, .83344364, .06083212, .89959036, .29341668, 1.5019795, 1.5365427, .14744358, 1.7319699, .69286925, 1.3305489, 1.4275696, .1474058, 1.5953487, .63903614, .90521582, 1.094089, .11148405, 1.1961638, .45037299, .6236701, .81062745, .05646071, .87413186, .28003914, .71234937, .90599551, .07517106, .9810397, .3366244]
-
-lbw_resids = np.array(lbw).astype(float).reshape(-1,5)
-
-cpunish = [.29883413, .29637762, 62.478695, .29638095, 1.7736344, .280627, .27622019, 6.5853375, .27623151, .80342558, 4.0930531, 2.9777878, 6.1503069, 3.0157174, 4.6881034, .16338859, .16114971, 1.1563983, .16115474, .31370176, .63595872, .59618385, 1.9109264, .59656954, .91769973, .9059739, .8066189, .99577089, .80822353, .9349684, .0532905, .0529548, .14244545, .05295515, .07395759, -.26830664, -.2766384, -1.0082872, -.27668319, -.41714051, -.62341484, -.68349824, -1.5652763, -.68459104, -.84732188, -1.1015655, -1.2743561, -5.3400286, -1.279951, -1.8643241, -1.2006618, -1.4021282, -6.6206839, -1.40923, -2.1211989, -1.2797534, -1.505173, -7.8054171, -1.5136295, -2.3382067, -.960585, -1.0954134, -3.8587164, -1.0992211, -1.5269969, .10846917, .10649195, .0921891, .10649783, .1027458, .02088367, .02081086, .02023963, .0208109, .02066675, .63647875, .56713011, .24880139, .56824372, .4653791, -.69597083, -.77000601, -1.9377178, -.77151335, -.97909358]
-
-cpunish_resids = np.array(cpunish).astype(float).reshape(-1,5)
-
-scotvote = [.04317472, .04256856, -8338.93, .04256786, 2.4956853, -.01827077, -.01838325, 2762.4019, -.01838319, -.97334528, .05609817, .05508221, -7252.03, .05508069, 2.8365188, -.02280193, -.02297758, 4525.3102, -.02297747, -1.3300374, -.02505649, -.02526888, 8767.023, -.02526873, -1.7656214, -.1421743, -.14953291, 26174.801, -.14950069, -8.0880132, -.01973673, -.01986809, 5888.0406, -.01986801, -1.318784, .06763015, .06616299, -19473.553, .06616036, 4.4658962, .0202078, .02007327, -3928.3996, .02007319, 1.1706255, -.00841611, -.00843983, 2127.7741, -.00843983, -.53216875, -.04429363, -.04496504, 6971.3512, -.04496419, -2.3914787, .01158536, .01154092, -2667.3324, .01154091, .71006619, .05538677, .05439602, -15077.849, .05439455, 3.5896364, .09018494, .08760809, -23064.91, .087602, 5.7245313, .06595122, .06455471, -14747.68, .06455226, 4.0030388, .00220373, .00220212, -923.58004, .00220212, .16491647, .09775671, .09474141, -17697.14, .09473373, 5.5300885, -.0669005, -.06845346, 24989.253, -.06845044, -4.8180428, .05194846, .05107522, -13846.987, .05107401, 3.3432347, .01298505, .01292927, -1828.3796, .01292925, .67554021, .02257874, .02241101, -5988.3279, .02241091, 1.4506691, .01474752, .01467564, -5311.9833, .01467562, 1.0492967, .03640993, .03597719, -3483.054, .03597677, 1.665201, -.06613827, -.06765534, 10963.702, -.06765242, -3.633186, -.05046726, -.05134215, 15165.308, -.05134088, -3.3803129, -.02546479, -.02568421, 3585.6787, -.02568405, -1.3248006, -.08159133, -.08392239, 14470.556, -.08391679, -4.5841388, -.0330796, -.03345156, 6495.2667, -.03345121, -1.9226747, .00327289, .00326933, -1001.1863, .00326933, .22052594, -.02631155, -.02654593, 5824.1466, -.02654575, -1.5916286, .01183737, .01179098, -4763.0477, .01179097, .87390689, -.03325649, -.03363248, 11219.87, -.03363212, -2.3151557]
-
-scotvote_resids = np.array(scotvote).astype(float).reshape(-1,5)
-
-star98 = [-1.3375372, -1.3342565, -3674.3805, -1.3343393, -18.732624, .97808463, .99272841, 197.05157, .99291658, 5.7338226, 4.2825696, 4.29447, 7304.117, 4.2983582, 51.167264, .20665475, .20689409, 283.85261, .20689456, 2.2971775, -3.4397844, -3.7418743, -184.10712, -3.7732602, -12.963164, -8.8955127, -8.7070478, -94493.01, -8.7156529, -195.54523, 1.3093612, 1.3040684, 6904.5348, 1.3041169, 22.790356, -2.3354095, -2.3171211, -6891.6853, -2.3175198, -33.497868, -4.9509734, -4.9716533, -7444.4706, -4.9782445, -56.720276, -4.3896461, -4.3936251, -19119.121, -4.3958412, -71.687315, 2.6246727, 2.6002292, 33800.262, 2.6004266, 61.52101, 1.0381778, 1.0655404, 147.40536, 1.0658131, 5.4160865, -5.371452, -5.4255371, -8735.5422, -5.433774, -63.167122, -7.5162302, -7.6600055, -16610.436, -7.6793193, -97.902488, -4.3246609, -4.217551, -1806.9456, -4.2260371, -32.330796, .71999176, .72316703, 1710.1519, .7231808, 9.6064571, .83376421, .83436314, 761.12734, .83440607, 8.0881266, .41765273, .41667589, 28.903009, .41670531, 1.7147122, -.97120884, -.97003594, -4270.4621, -.97005936, -15.911094, -.78556304, -.78233445, -114.9327, -.78245171, -4.1393793, .4683723, .46647357, 82.954347, .46649502, 2.6303115, -3.16957, -3.1551738, -3676.7765, -3.1571205, -33.303456, -.38920026, -.38921763, -264.25346, -.38922293, -3.4207576, -1.0390527, -1.0501682, -142.6529, -1.0504701, -5.3602524, -.49574502, -.50267378, -24.102686, -.50273464, -1.80937, -2.2481933, -2.4896172, -69.551199, -2.5023778, -7.0576042, -1.3995564, -1.4016203, -7695.0826, -1.4016817, -24.701957, -.76201728, -.76276852, -248.87895, -.76283364, -5.2477435, -5.8106439, -5.7357935, -3949.2359, -5.7521318, -51.088192, -1.820624, -1.8167933, -25414.833, -1.816864, -43.837178, -2.7775306, -2.8101272, -5091.1243, -2.8111605, -33.992033, -3.1071576, -3.1348341, -28006.635, -3.1353206, -64.66399, 11.837296, 12.808605, 52779.155, 12.870791, 194.83, -3.9656907, -3.9744174, -4008.7749, -3.9787813, -39.800004, -4.5046818, -4.5023142, -3336.6423, -4.5100703, -40.757978, -.38346895, -.38304692, -125.48142, -.38305507, -2.6424896, 5.6273411, 5.681476, 71231.288, 5.6838456, 131.14722, -1.5145537, -1.5377442, -638.15567, -1.5381844, -11.35443, 2.2753821, 2.2209277, 373.39831, 2.2231916, 12.457389, -4.8882434, -4.9340401, -177334.75, -4.9347866, -161.82036, -1.4349869, -1.4382502, -490.99346, -1.438675, -10.03669, -.96129188, -.96925001, -1132.2858, -.96930259, -10.152092, -.59602753, -.61535222, -10.219633, -.61556693, -1.5369367, -1.6921098, -1.7682293, -209.62528, -1.7697022, -8.4352944, -2.065882, -2.0983974, -2413.6559, -2.0989602, -21.758492, 1.706241, 1.6722477, 619.3497, 1.6727942, 12.171354, -2.2661248, -2.4109784, -229.55882, -2.4155989, -10.563809, 1.813806, 1.7981115, 2640.4014, 1.7984068, 20.556565, 2.8637417, 2.7708527, 953.89903, 2.7734059, 19.851349, -1.8653504, -1.9698798, -174.47052, -1.9724197, -8.4673524, 3.0149566, 2.8208287, 242.43232, 2.82676, 13.013203, .45187706, .45323648, 89.545212, .45325533, 2.6344764, 2.7424901, 2.5741674, 100.25966, 2.5823554, 9.102041, .80475572, .80568002, 162.81099, .8057857, 4.7242981, -1.7931126, -1.8014064, -550.80513, -1.8023078, -12.098672, .41003106, .4090133, 40.285464, .40903525, 1.8920269, -8.1724325, -8.1912034, -1099.8395, -8.3432365, -41.880384, .33393717, .33561525, 16.178174, .33563459, 1.2173618, -4.2543897, -4.4474257, -2759.1931, -4.4560182, -36.825802, -3.0294284, -3.1254693, -2652.9286, -3.1277555, -28.983377, 2.6466251, 2.5383754, 209.60581, 2.5434964, 11.365696, -.53150465, -.53394445, -574.22139, -.53395369, -5.4537827, -4.5786254, -4.9826244, -850.48142, -5.0141021, -26.124321, .6145684, .61269984, 172.28365, .61273633, 4.0221801, -3.0290547, -3.4019779, -93.787279, -3.4386297, -9.5115812, 3.4030858, 3.4990013, 870.1726, 3.5068227, 21.599833, -1.814412, -1.8483025, -1673.4079, -1.8487382, -17.661376, -4.9709195, -5.139411, -1528.4106, -5.1619673, -33.550925, -2.8711722, -2.8576622, -758.19886, -2.8615509, -18.420463, -1.3502232, -1.3640438, -478.67408, -1.3643946, -9.5561658, -4.3706639, -4.4505896, -1448.8143, -4.4640268, -30.248407, -3.367544, -3.3462251, -2374.7355, -3.3494443, -29.974177, -1.8700967, -1.9265107, -533.05459, -1.9276199, -12.307408, -5.8411431, -5.7888752, -6974.89, -5.8005435, -61.969456, -3.0671616, -3.3185696, -465.64228, -3.3281753, -16.362208, .33866907, .33869449, 36.748824, .33870635, 1.6153433, .00332937, .0033292, .68084286, .0033292, .01961509, -2.1948692, -2.3506102, -201.54464, -2.3551288, -9.9021502, 1.2513472, 1.2525696, 331.50739, 1.2529014, 8.0367961, .2431842, .2423829, 57.23407, .24238525, 1.5014416, 2.3344863, 2.3363314, 519.08023, 2.3387547, 14.142919, 2.9247512, 2.9590047, 454.57521, 2.965438, 15.72514, -2.0556046, -2.0645602, -122.36309, -2.0686323, -8.026198, -3.6416917, -3.8107525, -127.30076, -3.8522025, -11.907277, -2.3465563, -2.3399588, -18062.323, -2.3401837, -46.331731, 3.1328605, 3.2237462, 4682.5244, 3.2254621, 35.819599, 2.6706612, 2.6160849, 4114.3045, 2.6168714, 30.844519, 2.3338673, 2.2998076, 5737.2307, 2.300211, 31.498137, 4.7426743, 4.4878081, 2137.1449, 4.4958392, 36.36025, -2.7264016, -2.7602159, -7855.6752, -2.7609288, -38.796069, -.25073542, -.24982419, -109.74435, -.24982577, -1.9037263, -1.8471557, -1.8428066, -5142.1808, -1.8430239, -25.984725, -2.15461, -2.1580564, -8379.8765, -2.1583395, -33.883764, -3.232046, -3.2299069, -4022.416, -3.2319278, -34.76541, 4.3258916, 4.4036403, 5374.9301, 4.4089414, 46.505897, 2.3506664, 2.3436886, 8472.7811, 2.3440641, 36.041483, -3.0103866, -3.0330376, -2827.8239, -3.0350909, -29.48259, 3.8880208, 3.8515615, 20380.935, 3.8528134, 67.539901, .30206136, .30102793, 111.56376, .30103128, 2.1672275, -.47552074, -.47774865, -535.52925, -.47775487, -4.947366, -1.2969297, -1.2873699, -448.58874, -1.2876585, -9.1038917, 5.4016685, 5.4129828, 75706.187, 5.4148884, 130.23541, -3.5207455, -3.4746651, -5392.0206, -3.4767282, -40.582638, 6.437813, 6.0694683, 9426.0253, 6.0779522, 73.102984, 2.9362577, 3.0932929, 995.57798, 3.0975282, 20.474872, 4.2903354, 4.4294349, 8449.8125, 4.4332812, 53.778645, 5.1739607, 5.1278401, 217916.35, 5.1285599, 180.01638, .04642506, .04642284, 27682.162, .04642284, 3.9075241, -4.2469413, -4.4455028, -6600.8666, -4.4499328, -49.194645, 3.5858353, 3.4955032, 2596.2005, 3.4987392, 32.198796, .74407075, .74065699, 3880.9731, .74066495, 12.903961, -4.087085, -4.1499899, -22604.866, -4.1515694, -72.278605, 4.9820244, 5.2840996, 5480.4086, 5.2940433, 51.429016, -1.4564105, -1.474377, -3103.33, -1.4744978, -18.741249, 2.7224042, 2.6837853, 10471.442, 2.6842648, 42.655062, 11.319421, 10.709754, 60422.779, 10.731002, 197.82585, 3.265598, 3.5595753, 597.22517, 3.5699894, 18.53622, -.9650115, -.96312035, -2380.073, -.96315384, -13.038223, 2.164339, 2.2153405, 1004.0559, 2.2165899, 16.754681, -.56780325, -.56618426, -454.15837, -.56619838, -5.2706926, -4.3053348, -4.2507666, -30890.39, -4.252092, -83.038422, -1.0564439, -1.0620748, -1721.3294, -1.0621333, -12.431369, -2.7316132, -2.7880892, -10933.338, -2.7886254, -43.370763, -1.5756134, -1.5805061, -12197.933, -1.5805756, -31.169406, 3.4853323, 3.4765582, 18127.864, 3.4775218, 60.387216, -3.0310116, -2.9837067, -9935.8247, -2.9844447, -45.025621, 5.4190658, 5.3833057, 3745.6544, 5.3969484, 47.913605, .836042, .83757213, 275.67062, .83765787, 5.7758454, 3.1916149, 3.3119053, 1458.2745, 3.3162779, 24.582162, -.13107013, -.13101089, -163.9307, -.13101103, -1.4121774, -.02167956, -.0216849, -4.2146913, -.0216849, -.12559013, 5.7062833, 5.5425845, 17395.771, 5.5473779, 82.74024, 3.9674132, 4.0510658, 5756.4774, 4.0547538, 44.914913, 1.0082364, 1.0081202, 580.6423, 1.0082229, 8.3883747, -.1607903, -.16067812, -7.4258153, -.16068035, -.57688327, -2.1794238, -2.168514, -892.76271, -2.1697763, -16.18601, 2.4158395, 2.3602945, 63.041821, 2.3699707, 7.1656397, .88352525, .8834159, 284.48156, .8835178, 6.0556954, 1.4023926, 1.4004412, 1876.6768, 1.4005975, 15.454071, -2.6481201, -2.6598485, -739.97358, -2.6629483, -17.312662, -.04596256, -.04598842, -1.0216786, -.04598851, -.12923324, -4.8706759, -4.9160841, -1506.657, -4.9347237, -32.940558, -.14989449, -.15037145, -4.8188818, -.15037368, -.47662029, -.70456375, -.70836868, -629.50443, -.70839399, -6.7859886, -2.9238357, -3.0439268, -353.87052, -3.0525781, -14.462724, -1.3816671, -1.416089, -245.24501, -1.4166886, -7.7648965, -2.6389059, -2.6411431, -299.06009, -2.6466421, -12.770329, 1.6796181, 1.6292513, 50.990814, 1.6319631, 5.2396749, -4.6907555, -4.0071153, -50.243176, -4.0598436, -10.340008, -2.4520787, -2.4202063, -255.88275, -2.424463, -11.544362, -.56336474, -.55902069, -125.96524, -.55905011, -3.4193484, -1.5439833, -1.5530797, -3645.9363, -1.5532245, -20.560393, -.35769835, -.35628075, -66.699031, -.3562898, -2.0435462, -5.8985411, -6.0079377, -4913.6259, -6.0258256, -55.500526, 4.7314097, 4.4310616, 685.04579, 4.4478122, 24.844689, -.83919065, -.84650215, -46.818948, -.84679291, -3.2066211, -.03089159, -.03089176, -160.02828, -.03089177, -.53451397, .88361004, .88295033, 130.47124, .8831211, 4.6703062, 2.3335326, 2.3548024, 2642.7267, 2.3556438, 24.323534, 4.4071647, 4.4439502, 69380.031, 4.444919, 110.45474, 3.2787794, 3.2745315, 66934.736, 3.2748563, 89.610449, 1.6362845, 1.6715687, 384.84329, 1.6724119, 10.10029, 6.3093651, 6.3182562, 32186.911, 6.3242009, 108.61343, 3.611326, 3.6092834, 40001.62, 3.6099395, 80.501442, 5.2158338, 5.266765, 49709.38, 5.2690472, 110.58476, 2.1901909, 2.1664396, 22261.835, 2.166564, 47.443309, -.52967183, -.52891298, -6096.2169, -.5289149, -11.958904, 1.7552088, 1.7533111, 7659.1081, 1.7534507, 28.682165, 9.3002312, 9.6458876, 70515.872, 9.6628501, 182.70824, -1.6751411, -1.6596802, -2489.8995, -1.6599057, -19.117372, .15967588, .15973638, 131.71812, .1597367, 1.4975272, -6.7038594, -6.8116189, -2053.7136, -6.8628644, -45.192173, 3.2862183, 3.307876, 3814.1386, 3.3101871, 34.535289, -3.5011058, -3.4842254, -2091.8209, -3.4883111, -29.487977, -5.918473, -6.0585339, -22523.518, -6.065055, -92.402812, -5.6222517, -5.9653862, -3338.7985, -5.9887053, -47.257447, -3.5602535, -3.6713991, -1269.7128, -3.6786167, -25.247736, -.92430902, -.9254755, -10749.074, -.92548614, -20.941212, -5.2384521, -5.3357226, -29922.325, -5.3390592, -93.641227, 3.9600059, 3.9203361, 15722.094, 3.9219252, 62.704786, -6.5203802, -6.6896631, -28737.546, -6.6976513, -106.90512, -6.2106413, -6.3132951, -73040.278, -6.3167014, -141.2359, -.20342402, -.2036375, -744.52393, -.20363773, -3.134929, 3.0717208, 2.997104, 1083.974, 3.0004496, 21.706716, -2.578223, -2.5895842, -34704.883, -2.589796, -61.330595, 2.1154631, 2.0707695, 913.4727, 2.0717072, 15.989522, -4.4212059, -4.6762251, -5267.8305, -4.6824606, -46.871022, -6.0308154, -6.1288048, -22200.014, -6.1357161, -93.118315, 2.0010941, 2.0050502, 8179.9494, 2.0052698, 31.995965, -4.7215135, -4.7224521, -10299.541, -4.7268107, -61.234115, -.61478931, -.61724539, -936.8533, -.61725705, -7.0747006, -1.7242039, -1.7260096, -31850.535, -1.7260607, -45.578987, 4.2597077, 4.2708827, 15752.019, 4.2731622, 65.871661, .13878808, .13874551, 110.47553, .13874572, 1.2862443, .06198083, .0619749, 17.679469, .06197494, .40800109, -.51497256, -.5153046, -11904.695, -.51530576, -14.669956, -5.0832571, -5.0614461, -115983.47, -5.0625443, -144.17615, 4.8631068, 4.9376385, 4604.7975, 4.9466392, 47.754326, .41687368, .41579762, 354.31543, .41580291, 3.9488109, 1.5740145, 1.5668996, 233.56283, 1.5678388, 8.3331091, -1.0156158, -1.0212038, -1092.6454, -1.0212729, -10.406692, 2.7223636, 2.7077122, 1547.9597, 2.7096859, 22.553674, -1.7144195, -1.7151036, -21079.76, -1.7151695, -39.570052, -1.1877669, -1.1941703, -5141.3335, -1.1942127, -19.357357, -9.1433754, -9.5217086, -84411.705, -9.5357864, -191.8103, -2.4873675, -2.4944945, -5322.7872, -2.4951476, -32.053319, -.52446998, -.52526652, -67.958396, -.52530591, -2.6539626, 2.3976154, 2.3905626, 12988.353, 2.3908659, 42.108622, 2.1940034, 2.1651172, 9681.0591, 2.1653379, 35.98591, -6.109209, -6.0299691, -7699.0563, -6.0425009, -65.988636, 3.8079023, 3.7502112, 44419.258, 3.7508204, 86.360332, -1.8819326, -1.8918879, -6906.1083, -1.8920842, -29.027781, -5.8802911, -5.9010268, -11508.862, -5.910263, -73.554629, .3642416, .36357882, 103.13817, .36358642, 2.3918439, -.1875515, -.18754808, -248.0582, -.18754846, -2.0587245, -3.2885067, -3.3249747, -12471.058, -3.3260255, -51.282232, -3.4245938, -3.5766289, -292.02275, -3.5949103, -15.073413, 1.6999336, 1.6998475, 5830.6976, 1.6999974, 25.636662, 2.7145418, 2.692024, 7781.6473, 2.6926642, 38.561584, 2.3688876, 2.4300853, 676.72969, 2.4324331, 15.601561, 8.4394979, 8.3138999, 61224.725, 8.3239664, 163.37541, 4.634536, 4.6071471, 7022.4616, 4.6122045, 53.231327, .9590249, .97735056, 38.64247, .97790484, 3.2878214, -2.041165, -2.0676384, -416.51119, -2.0694518, -12.016951, 7.3712772, 7.5493285, 83124.524, 7.5553493, 165.29951, 1.0943632, 1.095498, 1564.5913, 1.0955701, 12.328435, 15.712534, 15.419989, 1246536, 15.432621, 675.14817, .75482542, .7538249, 6187.394, .75383208, 15.219496, 1.5411183, 1.5461771, 2717.0765, 1.5463534, 18.617639, .05192873, .05191976, 257.80525, .05191977, .88586806, 6.9659606, 6.7887171, 14554.668, 6.8007292, 89.054275, -1.3180532, -1.3173208, -35718.803, -1.3173384, -39.59019, 3.1417625, 3.1357097, 1099.7541, 3.140007, 22.14186, -2.2540263, -2.2575945, -4491.5963, -2.2581012, -28.364354, -3.6364072, -3.6980171, -1193.2561, -3.7057156, -25.08185, -8.9597209, -9.0798549, -92417.588, -9.0911537, -195.03589, 1.3128072, 1.3119967, 6846.1057, 1.3120487, 22.765744, 5.0951244, 5.2515277, 1418.9377, 5.277164, 33.272924, -6.6168923, -6.7651375, -71965.581, -6.7695384, -146.60349, 1.4743967, 1.4749183, 3777.6522, 1.4750374, 20.175155, .88203319, .88612343, 873.71372, .88617114, 8.7925127, 10.232282, 10.227907, 24708.303, 10.269468, 137.27643, 2.4994204, 2.522306, 4996.1112, 2.52301, 31.484991, -.33601015, -.33565892, -94.016495, -.33566501, -2.1977061, 1.2014409, 1.201799, 1306.5399, 1.2019131, 12.354993, -.1917435, -.19167108, -12.795383, -.19167405, -.7777348, -1.1541729, -1.1510202, -841.79482, -1.1511491, -10.389213, -3.3155305, -3.322033, -7755.1242, -3.3234863, -44.011375, 1.638263, 1.6289084, 699.83365, 1.6294247, 12.338263, -2.3074323, -2.3163968, -5852.6398, -2.3168634, -31.468056, -2.9464432, -2.9898088, -4559.9816, -2.9912043, -34.081582, .64340142, .64392566, 1516.8902, .64393612, 8.5632652, 1.8216221, 1.8737544, 1093.3062, 1.8743269, 15.365716, -4.1484683, -4.1550817, -54011.578, -4.1559855, -97.59348, -2.0098146, -2.0067011, -6797.1668, -2.0069487, -30.168008, -3.0886434, -3.0641784, -6766.3444, -3.0653206, -40.114053, 3.1034238, 3.0604395, 12317.888, 3.0611532, 49.136717, -4.2798863, -4.165237, -2660.4643, -4.1713732, -36.526436, -2.7642694, -2.7673322, -601.62921, -2.7714243, -16.627612, -4.1354083, -4.150768, -3169.2294, -4.1567748, -37.843982, 2.085076, 2.110033, 337.53611, 2.1122867, 11.363741, 4.0312289, 4.1372091, 3906.6743, 4.1424073, 39.892756, -.2784614, -.27871515, -124.55464, -.27871771, -2.1295931, .91847241, .91775794, 6536.0012, .91777237, 17.666402, -6.5936505, -6.4164512, -4117.1251, -6.4394331, -56.3571, -3.7873428, -3.7775824, -15933.885, -3.7790071, -61.140686, -3.1255338, -3.1497479, -17261.446, -3.1504428, -55.246977, -.88895885, -.88950053, -146.0698, -.88966377, -4.8690165, 2.8107448, 2.8179615, 2663.2443, 2.8195846, 27.606919, -3.4316528, -3.4093229, -6258.9413, -3.4111217, -41.927843, .32348352, .32327145, 142.66038, .32327548, 2.4622713, 2.4586408, 2.4836465, 1053.3637, 2.4855562, 18.534868, -2.0863466, -2.1097879, -3798.3528, -2.1102179, -25.475501, 1.347211, 1.3375771, 207.73027, 1.3381379, 7.2242097, 1.2748403, 1.2586908, 390.71981, 1.2589676, 8.5952597, 4.663177, 4.6237577, 10949.742, 4.6275274, 61.980617, -1.0236763, -1.0387965, -129.94316, -1.0390997, -5.1446941, .65592571, .64964267, 88.122068, .64970828, 3.3594228, -2.8938186, -2.9083096, -7662.4106, -2.9092097, -40.034648, -.69787881, -.70020831, -245.99605, -.70025591, -4.929801, .91412968, .90636729, 27.986161, .90687785, 2.8596946, -.23737615, -.2370982, -8.2266245, -.23710685, -.77392452, 9.7240867, 8.4710294, 1709.1431, 8.5511321, 54.470164, 5.1143944, 4.797313, 1780.4902, 4.8086774, 35.978469, -1.3933966, -1.4279007, -342.37443, -1.428383, -8.7273744, -6.1643948, -6.2380461, -53226.802, -6.2421242, -126.46502, -1.1072716, -1.133251, -137.57627, -1.1336345, -5.5252331, 2.9131647, 2.6591858, 117.336, 2.6660231, 9.9858979, -.703409, -.69788492, -30.466814, -.69806848, -2.4702882, -1.3796104, -1.4028155, -502.94299, -1.4031774, -9.8554675, 3.4481209, 3.4947658, 2211.4348, 3.4988676, 29.735805, -5.1424068, -5.0932624, -28852.779, -5.0960527, -91.377689, 1.1658373, 1.1641565, 5674.2865, 1.1641943, 19.757366, 7.2585799, 7.4634011, 40841.836, 7.4728428, 129.10296, -.29489292, -.29380271, -90.475766, -.2938062, -1.9889338, 2.1286688, 2.1307039, 3118.6032, 2.1312262, 24.176426, 6.4743187, 6.7041785, 10245.251, 6.7206537, 75.44612, -.18655471, -.1872321, -8.1187575, -.18723562, -.65619663, -1.7840986, -1.807568, -1161.9624, -1.8081095, -15.464763, -3.9600761, -4.0954915, -885.68765, -4.109497, -24.037865, -2.3068248, -2.3243811, -3915.5288, -2.3249968, -27.517346, -7.0204058, -7.1839731, -15774.818, -7.1997808, -91.952371, 3.1544948, 3.0861172, 655.79074, 3.091473, 18.687088]
-
-star98_resids = np.array(star98).astype(float).reshape(-1,5)
-
-invgauss = [.21946682, .19838235, -.13116093, .19804544, .2329114, -.68724239, -1.20786, .29727304, -1.1461406, -.6548399, -.02508381, -.02537231, .00493116, -.02537176, -.01837619, .13333854, .12526482, -.06542915, .12518341, .13250661, -.1828634, -.20290189, .11601121, -.20253671, -.19796778, -.18576541, -.20700925, .14184774, -.20660529, -.21392459, -.01680541, -.01694517, .00684574, -.01694497, -.01569578, .01580889, .01566406, -.0337669, .01566384, .02565121, .40499508, .3419356, -.19304143, .3403085, .39859025, .04500324, .04404018, -.01918807, .04403675, .04267593, -.35003226, -.43573938, .19717053, -.43227509, -.36421909, -.44886321, -.59409509, .14983417, -.58638517, -.3923042, .35983219, .3103634, -.12058593, .30923487, .3149021, .61634589, .48829837, -.21846474, .48391242, .54956633, -.19586429, -.21798637, .08445516, -.21757089, -.18643276, -.67768345, -1.0811333, .12589839, -1.0427999, -.4871933, -.43106322, -.55561146, .10528459, -.54969041, -.3394889, .27120489, .24173716, -.08854081, .24120493, .23528243, -.05090118, -.0522168, .02073681, -.05221113, -.04754183, .38145175, .32775094, -.09872406, .32649672, .30627443, -.06122628, -.06313667, .02402832, -.06312674, -.05647762, -.27729954, -.32438509, .10631392, -.3230591, -.25380849, -.17498754, -.19254711, .083475, -.19225397, -.17226626, -.04475333, -.04570496, .01064837, -.04570159, -.03493987, 2.1079261, 1.2436278, -.36382129, 1.1877369, 1.4786871, -.59050542, -.85032246, .09040464, -.83176757, -.3980059, -.27481622, -.32238792, .13093539, -.32102242, -.27043148, -.32072485, -.38688683, .12794677, -.38462801, -.29746887, -.49304951, -.6674332, .11797934, -.65734004, -.38566096, .06418319, .06232442, -.01895976, .06231545, .05385613, -.15233039, -.16429293, .03637778, -.16413654, -.11907294, .14306921, .13431256, -.04142349, .1342233, .11924944, .50771239, .41922154, -.11900574, .41666974, .39440688, -.33686723, -.4055089, .07946929, -.40319374, -.26225008, -.12603683, -.13365709, .01972519, -.13358036, -.08557535, -.28690375, -.33635948, .09007555, -.3349458, -.24568, -.38061163, -.49506721, .36307402, -.48940939, -.47205916, -.61802926, -.99345317, .28705958, -.95710777, -.60303156, .33500504, .29312132, -.0745651, .29225169, .25579345, .09993473, .09567799, -.02142368, .09564778, .0753562, -.77390406, -1.5092293, .24944552, -1.4025957, -.66853885, -.56372333, -.81484888, .13961703, -.79670113, -.4460328, -.58464894, -.89675035, .25143829, -.86997468, -.55601168, -.79699816, -1.5367111, .18308007, -1.4316205, -.61498129, 1.2612303, .8616029, -.25955307, .84110028, .93817023, .16274853, .15026277, -.14167113, .15010333, .19578609, -.43961546, -.5730583, .12125264, -.56640134, -.36054187, .11414296, .10838846, -.03769438, .10834013, .09940349, .234557, .21059654, -.14686052, .21018955, .25281953, -.58416576, -.89122107, .23552975, -.86525941, -.5437292, .25647739, .23192464, -.03632729, .23153369, .1684433, -.45074863, -.58662315, .09520965, -.57989069, -.33821532, .19326576, .17842124, -.03625637, .17823145, .13939313, .56053862, .45568773, -.12652518, .45244681, .43000418, -.19469865, -.21453127, .03993593, -.2141952, -.14466825, -.19716704, -.21788899, .04601467, -.21752674, -.15294373, -.43999815, -.58606522, .20411479, -.57811493, -.42914302, .01566139, .01554434, -.00569429, .01554419, .01408348, -.2383123, -.26955511, .05428065, -.26887452, -.18336762, -.64722983, -.99421314, .113679, -.96432537, -.45667696, -.19029977, -.21185782, .10882145, -.21145172, -.19900944, .52360533, .42760203, -.17110953, .42469226, .45439907, .53511334, .43209168, -.26125299, .42881606, .53087744, .06765918, .06581012, -.00721243, .0658017, .04041926, -.33830509, -.4080903, .08346023, -.40570789, -.26732662, .25358176, .2261832, -.14274032, .2256911, .26379764, .64897923, .50000076, -.52550319, .49437774, .76211817, -.40741312, -.51148167, .07673901, -.50709672, -.2942425, -.36424337, -.45859178, .20539539, -.45456159, -.37914151, .03219191, .03166734, -.02244757, .03166592, .03596645, .09131316, .08775474, -.01880635, .08773163, .06794128, .09544249, .09147182, -.02468448, .0914443, .07661477, -.26565384, -.30975165, .12756023, -.30853737, -.26209526, -.67698377, -1.2354946, .45589181, -1.1640047, -.74762319, -.5849103, -.89192114, .2316015, -.86599792, -.54114872, -.41648676, -.52673306, .08059767, -.52192252, -.30351836, .60186248, .4774551, -.247836, .47321483, .56415222, -.48771891, -.68555533, .27302358, -.67248587, -.5064343, -.23870823, -.27432787, .13922256, -.27344544, -.25128012, -.46352127, -.61110291, .10542772, -.60338992, -.3564851, -.15315845, -.16768992, .15638745, -.16746051, -.19431423, -.11028172, -.11661361, .03746978, -.11655305, -.09695557, -.09766739, -.10260147, .03416514, -.10255995, -.08670367, -.25865969, -.3031103, .20195439, -.30184354, -.30008683, -.29530742, -.35636228, .25145118, -.35427322, -.3526502, -.43655156, -.59436743, .35324208, -.58503774, -.51253616, -.0260924, -.02641737, .00727071, -.0264167, -.02147229, -.68007447, -1.2304932, .41095371, -1.1612362, -.72440028, -.55540409, -.806563, .16968559, -.78815111, -.47130029, .08496324, .08153547, -.0466319, .08151243, .08764458, .25291318, .2275826, -.06526919, .22716071, .20287431, -.3459101, -.43509049, .30138239, -.43129855, -.41625371, -.17190125, -.1890793, .09316763, -.18879372, -.17658387, -.20852324, -.23414686, .09714721, -.23362349, -.20366813, .59134795, .48223124, -.06984852, .47890327, .36555927, -.25589175, -.30711218, .63498647, -.30541476, -.43648469, -.03186028, -.03232117, .005511, -.03232006, -.02236591, -.25594521, -.28948219, .03054559, -.28875201, -.158766, -.51359911, -.70176826, .10370339, -.69049933, -.37962706, .19992662, .18358969, -.05191884, .18336752, .16070599, -.03252799, -.03304344, .01041198, -.03304208, -.02803448, .87784986, .65610395, -.17025957, .64692494, .6402172, .25557659, .22823559, -.12059263, .22774936, .25068651, -.31197284, -.37536793, .1441638, -.37323551, -.30388314, -.49409432, -.69358795, .24006401, -.68046772, -.48939432, .29230454, .26153551, -.03469097, .26099704, .18098358, -.43107557, -.55170049, .08647818, -.54614283, -.31794191, 1.1243036, .79861683, -.16621181, .78325509, .74900784, .94243785, .66779165, -.7453546, .6547638, 1.098077, -.00547659, -.00548998, .0009586, -.00548998, -.00385978, -.48125962, -.64802831, .12750168, -.63856528, -.38943494, .08075752, .07765921, -.04328822, .0776394, .08265236, -.01733649, -.01747477, .003682, -.01747458, -.01303203, .37106276, .31699846, -.18163582, .31569208, .36844733, .08082038, .0777816, -.03548928, .07776256, .0773968, .04414503, .04321061, -.02021886, .04320732, .04287296, .29116544, .25845228, -.07178838, .25784145, .23003183, .28895977, .2544519, -.1475, .25376729, .29095931, -.17460846, -.18979305, .02755812, -.18957327, -.11888764, -.2784603, -.3217463, .05463276, -.32062952, -.20386214, -.48120414, -.65896058, .18281081, -.64823028, -.43910009, .43919416, .36448122, -.28435028, .3623776, .47870238, .29138147, .25700789, -.12079888, .25633418, .27374041, -.62673306, -1.0166031, .28405348, -.9780172, -.6065479, -.38350618, -.48318203, .13895444, -.47891006, -.34446813, -.15554825, -.16871708, .05613268, -.16853152, -.13952714, -.5004515, -.69034345, .15487883, -.67857984, -.42649638, .01693351, .01677943, -.01832247, .0167792, .02190295, -.2479185, -.28563098, .1182882, -.28467869, -.24407863, 2.2482611, 1.2402532, -1.3060192, 1.1700227, 2.3635113, .20602966, .18306043, -1.0509977, .18263483, .44685205, .58486763, .47239982, -.12643067, .46882798, .44224799, -.22978171, -.26822207, .43025548, -.2671554, -.35683089, -.04893299, -.05008781, .01291673, -.05008327, -.03954838, -.31992822, -.38629891, .13558557, -.38402033, -.30277234, .23281539, .21056172, -.07755681, .21020792, .20334075, -.40389696, -.50231576, .06081306, -.49835653, -.27072146, -.4149099, -.53505755, .14485935, -.52933329, -.36809624, -.19484302, -.21478077, .04112692, -.21444139, -.14616452, -.59354453, -.92007961, .2558687, -.89126164, -.56491693, -.22649251, -.25446097, .05203575, -.25388691, -.17477522, .11308923, .10712155, -.06333083, .1070691, .11744356, 2.1570618, 1.2739476, -.29396154, 1.2169135, 1.3985625, -.36661502, -.45229019, .100595, -.44898252, -.30015274, -.13090653, -.14049298, .06964604, -.14037609, -.13364407, 1.034831, .73728361, -.28908361, .72334743, .85230971, .01234337, .01225937, -.01630469, .01225927, .01706357, -.02041978, -.02062125, .00657333, -.02062092, -.01763217, .25698133, .23093649, -.06508868, .23049756, .20485482, -.18856169, -.21000433, .12057066, -.20959888, -.20467251, -.61349066, -.96438489, .23401299, -.93226802, -.56056842, -.13403576, -.14335573, .03787054, -.14324782, -.11081307, -.28087233, -.32981483, .11523373, -.32840075, -.26295161, -.22715035, -.25568596, .0578659, -.25509017, -.18142335, -.10101297, -.10622081, .03092045, -.10617609, -.08577157, -.54132787, -.75073436, .09183236, -.73751806, -.37755669, 2.2315997, 1.2410837, -1.1229495, 1.1726349, 2.236356, -.25446228, -.29017245, .05324106, -.28934008, -.19033026, 1.3392881, .8691534, -.84530931, .84265167, 1.447431, -.14885417, -.16179664, .098637, -.16160935, -.16350484, -.181369, -.19915316, .05233794, -.19886303, -.15100486, -.31967023, -.39613132, .35022326, -.3931111, -.41520234, -.24715716, -.28116998, .05816391, -.28039245, -.19225457, 1.4170507, .91116127, -.71593757, .88220543, 1.421975, -.07102628, -.07327601, .00833581, -.07326414, -.04381323, .09590878, .09172196, -.03769426, .09169151, .08851306, -.39687496, -.49270953, .06599145, -.48888849, -.27496348, .03874853, .03795295, -.04323879, .03795023, .05063739, -.44362887, -.57774381, .11003445, -.57107979, -.35118241, -.37567437, -.4721807, .15220406, -.46809172, -.3502352, -.80446806, -1.7538868, .34012519, -1.5881386, -.76072695, -.31456215, -.37615399, .10474692, -.37415682, -.27470173, 1.4262995, .92384058, -.54235857, .89542537, 1.3019051, -.07533168, -.07813108, .02041389, -.07811374, -.06141913, -.25107743, -.28541588, .04897872, -.28463574, -.18346403, -.23182627, -.25881558, .02763425, -.25829316, -.14374773, -.55699071, -.79988016, .13780416, -.7826818, -.44055089, -.60340691, -.87652356, .08783114, -.85648447, -.39991377, -.59608332, -.88509811, .13627737, -.86245829, -.45922187, .16977873, .1570718, -.0786399, .15691349, .16550578, -.42714799, -.58248304, .4346435, -.57324717, -.54130243, -.07064828, -.07297453, .01213357, -.07296177, -.04947745, -.45992196, -.62723585, .2410807, -.61728428, -.46721873, .63399242, .50020189, -.21266542, .49554878, .55500684, -.5474725, -.83875274, .41875875, -.81384186, -.63082104, -.73538742, -1.3490981, .24474851, -1.269732, -.6420874, -.16915226, -.18683668, .15054797, -.18652915, -.20499983, -.46165077, -.62756406, .21855899, -.61781118, -.45332389, -.2516681, -.29165745, .14377037, -.29060301, -.26309863, 1.1349967, .77223199, -.69151736, .75346989, 1.2122925, -.07717557, -.08009098, .01934847, -.08007263, -.06131199, -.19818136, -.22060833, .07801391, -.22018631, -.18299641, .94335083, .66547504, -.86786046, .65216005, 1.1559582, 1.2301549, .84702958, -.24236003, .82768642, .90185533, -.52846413, -.74437682, .14929506, -.73001422, -.4368867, .00926399, .00922251, -.00363285, .00922248, .00854328, -.2320652, -.26378555, .09157412, -.26306529, -.21445734, -.61930279, -.98844461, .26019757, -.95333125, -.58440389, -.29300103, -.34646666, .11354046, -.34484973, -.26913673, -.63014989, -1.0083751, .23337426, -.97216438, -.57015144, .20438505, .18552944, -.15192759, .18524006, .2332679, .21299143, .19454797, -.0567153, .19428223, .172644, .32055523, .28060605, -.10244481, .27977921, .2761268, .35875689, .30637082, -.24389494, .30510224, .39744566, -.04853752, -.04991749, .06914812, -.04991095, -.06881057, -.01334856, -.01343572, .0050181, -.01343563, -.01213797, -.14104088, -.15198247, .06106202, -.15184115, -.13443027, 1.2296562, .8493208, -.21855297, .83024186, .87106662, -.0963121, -.10139637, .05513227, -.10135166, -.10075483, -.62115306, -.91519607, .08714316, -.89268037, -.40664945, .14955772, .14007855, -.04106003, .1399785, .12246791, .11541852, .10981708, -.02383052, .1097718, .08594847, -.30922027, -.36994709, .12261091, -.36797216, -.28621892, -.22920988, -.26126886, .11985453, -.26052408, -.23265749, -.4513332, -.58769819, .09554269, -.58092621, -.3389019, .47641919, .39138423, -.26324856, .38887407, .4925589, .89197557, .65519863, -.29946105, .64492007, .78107383, 1.8294421, 1.1029936, -.61660499, 1.0572978, 1.6040754, -.05912358, -.06104126, .04432384, -.06103089, -.06767002, .89695457, .66603428, -.18647887, .65629947, .66947368, -.54183869, -.81568954, .35721411, -.79337711, -.5941547, -.51559503, -.75180669, .3284956, -.7342743, -.55897493, .80389009, .6029852, -.29722955, .5947539, .72695095, -.15169744, -.16470762, .07603953, -.16452191, -.15182454, -.03221923, -.03273869, .01307928, -.0327373, -.03005717, .38336443, .32796541, -.12744674, .32663763, .33460117, -.34412063, -.41857653, .10036856, -.41591208, -.28752991, -.42144896, -.54963099, .17197579, -.54322411, -.39384841, -.39443481, -.5054271, .18219352, -.50028514, -.38415321, .55944951, .45919047, -.07643799, .45621914, .36303934, 1.500497, .95328728, -.65308846, .92136018, 1.4327071, -.08420238, -.08775548, .02464356, -.0877305, -.0704359, 1.187384, .80804761, -.4785498, .78843669, 1.1050447, -.00053604, -.00053618, .00021674, -.00053618, -.00049941, .74469897, .5666345, -.30080407, .5596433, .6935723, -.62972476, -1.0104427, .24209007, -.9737469, -.57690306, -.41289899, -.56940561, .71719622, -.55972, -.62534336, -.23785253, -.26611685, .02630208, -.26555848, -.14383962, -.25942357, -.29728791, .0608765, -.29637023, -.20160416, .77751978, .5882403, -.27139008, .58067893, .68973503, .50988209, .41425932, -.27861761, .41129613, .52520158, .47834714, .39842639, -.11605974, .39621571, .37589451, -.31169033, -.36764786, .06178849, -.36598262, -.22897852, -.50561712, -.71680521, .23888637, -.70245612, -.49615987, .07689107, .07409474, -.03850472, .0740778, .07693051, -.68130941, -1.198946, .32210533, -1.1374172, -.66871166, -.37679723, -.48160687, .24461181, -.47680598, -.41106226, -.05865463, -.06050934, .0379785, -.06049957, -.06393286, -.10330301, -.10876277, .0317849, -.1087147, -.08786695, -.02583652, -.02617324, .01174462, -.02617251, -.02502912, -.34649878, -.43728814, .32933222, -.43336602, -.42922916, -.04844241, -.04961063, .01689242, -.04960594, -.04295936, .47898364, .38890618, -.47525159, .38610723, .60191011, -.22712013, -.2526591, .02497461, -.25218155, -.13709239, 1.2311459, .82439862, -.61134541, .80270725, 1.228321, .55495383, .45373311, -.10086472, .45068091, .39606001, .0672676, .06540267, -.00864428, .06539406, .04276846, -.29326405, -.34657704, .1098119, -.34497071, -.26631708, -.64305896, -1.0798608, .33211549, -1.0329773, -.65004023, .95204054, .69087213, -.28404316, .67917358, .80150901, -.01583657, -.01596697, .01008165, -.01596679, -.01716437, -.17308181, -.19085442, .10896987, -.19055084, -.18690163, .23851663, .21641591, -.04621634, .21607525, .17389522, -.24236265, -.27736187, .09702571, -.27652257, -.22505193, -.32758453, -.39962436, .16585724, -.39700471, -.32895543, -.10080331, -.1064483, .06253581, -.10639565, -.10831853, -.57352885, -.8450014, .16488262, -.82421587, -.47691224, -.39773343, -.49071245, .05253993, -.48712159, -.25521208, .91120002, .66483476, -.32773333, .65395074, .81644327, 1.7449753, 1.0830833, -.39014084, 1.0430876, 1.3343712, -.45729182, -.60007962, .10469619, -.59275748, -.35246493, -.29580673, -.35005361, .10891897, -.34840495, -.26712624, -.31002337, -.37474369, .18190652, -.37250797, -.32700599, .18654161, .16983522, -.23194817, .1695863, .25273038, .91688764, .68605732, -.11477754, .67653306, .57788273, -.01737575, -.01751493, .00375574, -.01751474, -.01313825, -.33514683, -.40624829, .1086914, -.40375278, -.29011163, .05586841, .05451575, -.01074254, .05451029, .04062779, -.30097629, -.37288715, .56313912, -.37004973, -.46727236, -.06435532, -.06635487, .01555102, -.06634452, -.05050324, 1.683168, 1.047478, -.48188034, 1.0092125, 1.397681, -.51668519, -.69861335, .07909412, -.68812903, -.3482374, -.3657535, -.45711543, .15771009, -.45334944, -.34814125, -.48537817, -.62511791, .03986077, -.61849789, -.26581452, .00862779, .0085919, -.00329303, .00859188, .00788512, -.09503767, -.09982766, .04167813, -.09978744, -.09097246, .34723869, .2989993, -.18031461, .29788735, .35164602, -.46695991, -.61665162, .10343267, -.60877636, -.35597184, -.6871968, -1.1533617, .19424251, -1.1033873, -.56821432, -.46411708, -.65869919, .4833767, -.64543078, -.59273004, .70606231, .53756757, -.4486713, .53096464, .76480042, -.1556854, -.16978277, .09499918, -.16957033, -.16637263, -.66226392, -1.106026, .24847245, -1.0589874, -.60180641, -.23801501, -.2678183, .03885581, -.26719805, -.16389469, .04557001, .04440477, -.09133413, .04439981, .07238921, -.13911314, -.15088159, .13631851, -.15071588, -.17408996, 1.4387663, .91624473, -.85058109, .88587159, 1.5213953, -.43092071, -.57464196, .247748, -.56678388, -.45145205, .5834262, .47102589, -.13195491, .46744966, .4478602, -.8064445, -1.732115, .31001814, -1.5742397, -.73879173, -.05975525, -.06163017, .03062133, -.06162037, -.060247, .71311673, .54503254, -.35108538, .53852405, .70944924, -.28330589, -.33648226, .18082704, -.33482854, -.30732757, 2.9488587, 1.4905628, -1.324286, 1.3809095, 2.8451592, .34215535, .29829967, -.08280641, .29736632, .2686459, -.71592919, -1.2115151, .15170411, -1.1573919, -.53776083, .26341899, .23734718, -.04160406, .23691803, .17939897, -.05988568, -.06166873, .01917075, -.06165989, -.0516145, .16575998, .15401103, -.05504816, .15387239, .14462523, -.2465342, -.28298038, .10048665, -.28208579, -.23030193, .12586652, .1184744, -.07679535, .11840209, .13450191, .43413164, .3614944, -.25643955, .35948236, .45893653, -.52625753, -.75904535, .23348343, -.74233574, -.50570149, -.14582805, -.15667334, .0332696, -.15653905, -.11226729, -.22907482, -.26222842, .15482408, -.26143162, -.25328399, 1.7668508, 1.06039, -.92693076, 1.0156843, 1.7953909, -.38041178, -.48183652, .17407242, -.47737956, -.36933683, .34341296, .29508741, -.22770138, .29395921, .37729091, -.61407417, -1.0983528, .84764951, -1.0388203, -.8614485, -.2614967, -.30345824, .1135654, -.30234096, -.24949939, .34180776, .30303645, -.02205434, .3023056, .17272796, -.21350013, -.23815688, .05022845, -.23768342, -.16605757, -.59242453, -.9486729, .38552786, -.91450675, -.64682074, .00673239, .00671055, -.00252798, .00671053, .00611947, -.18127834, -.20054203, .09815037, -.20020155, -.18615353, -.34896946, -.42871336, .12887359, -.42570187, -.31544448, .08732154, .08409452, -.01621272, .08407465, .06276385, .6832916, .53295434, -.19975321, .52750902, .57136282, .9849395, .70606212, -.34240244, .6931893, .87256004, .30984234, .27086184, -.14914363, .27004744, .30594175, -.48199152, -.65029366, .1315505, -.64067268, -.39391311, -.02940279, -.0297881, .00438273, -.02978726, -.01964191, 1.2810312, .87739896, -.20992257, .85679861, .88322127, .40334006, .33972436, -.23154519, .3380619, .42234708, .33373729, .29244946, -.06847789, .29160111, .24800662, .85773527, .62214992, -.66591624, .61158506, .99323507, -.27468661, -.32545858, .20809911, -.32390347, -.31549446, 1.098823, .76927863, -.33563801, .75321846, .93236407, -.12836792, -.13758065, .06917673, -.13747056, -.13161367, -.58997764, -.87334667, .14130656, -.85134695, -.46162339, -.25807961, -.29852855, .10648919, -.29747642, -.24207372, -.07161748, -.07431661, .03448991, -.07429966, -.07072724, -.68686562, -1.1449784, .18213472, -1.0966257, -.55597521, 1.0381346, .73468237, -.35969612, .7202469, .91866611, -.35002969, -.43067728, .13277318, -.42760686, -.31923956, -.09843121, -.10336873, .03025306, -.10332747, -.08369284, -.2136089, -.24242867, .16133335, -.24178269, -.24509302, -.14422786, -.15540111, .05049805, -.15525701, -.12807596, -.23448965, -.26958699, .16418619, -.26871486, -.26234412, -.43457455, -.57663471, .20609226, -.56901747, -.42697923, .08298978, .07996368, -.02144022, .0799453, .06659416, -.39977868, -.50144619, .08679864, -.49718097, -.30273367, -.13581469, -.14577451, .05247304, -.1456529, -.12462922, -.64910803, -1.1625603, .54974883, -1.0992702, -.77376561, -.62123103, -1.0200733, .34793076, -.97942937, -.64517327, -.29854263, -.3501201, .06657682, -.34864249, -.22809823, -.47160741, -.64448325, .20578781, -.6341249, -.45068208, .20952869, .1925899, -.03197042, .192362, .14106582, -.23112507, -.27006012, .43147481, -.26897224, -.35855836, .20444175, .18740119, -.05319557, .18716482, .16444281, -.20074735, -.22195347, .04144814, -.22158087, -.14948981, -.24836117, -.2923441, .3454659, -.2910528, -.34930183, .60977539, .48693719, -.16141134, .4828544, .49328882, .03950956, .03876269, -.01720066, .03876034, .03772766, 1.0726371, .75963628, -.26993955, .74477062, .85323247, -.32400804, -.39286452, .14409017, -.39044371, -.31159607, .00748171, .00745607, -.00178383, .00745605, .00584514, -.22912932, -.26145243, .12801995, -.26069511, -.2377696, -.24334288, -.27329276, .02858448, -.27268006, -.15015249, .98857169, .70159971, -.47998489, .68803709, .97894426, -.256986, -.29198901, .0394474, -.29119699, -.17336275, 1.1512684, .79469328, -.37803586, .77678348, 1.0007034, 1.3369505, .9007234, -.258813, .87772621, .9744261, -.03528889, -.03584243, .00496118, -.03584098, -.02311871, -.51846139, -.75303337, .29505226, -.73582911, -.54131982, -.36417282, -.44940308, .10714898, -.44610779, -.30517178, .43107619, .36539202, -.09131403, .36373302, .32376149, -.66455363, -1.036643, .11220702, -1.0032585, -.46277515, -.43139516, -.56290179, .14466203, -.55631411, -.37761134, -.0166183, -.01675004, .00489267, -.01674987, -.01392888, -.20746924, -.23084471, .05229881, -.23040676, -.16512383, .17001751, .15829983, -.03393058, .15816537, .12518036, -.40028781, -.48875604, .03449272, -.48552314, -.22275837, -.28769553, -.33586097, .07163674, -.33452343, -.22803981, .01172257, .01166066, -.00246261, .01166061, .00877992, -.16326594, -.17786135, .05868567, -.1776442, -.14625737, -.13097163, -.14039217, .05998306, -.14027934, -.12719529, -.05808555, -.0596823, .01229087, -.05967498, -.04360968, -.37410184, -.47392831, .20004904, -.46953796, -.38257394, -.34349912, -.42429369, .17668618, -.4211545, -.34675916, -.01492567, -.01503391, .00523041, -.01503377, -.01325799, .29068996, .25753057, -.08563828, .25690199, .24369839, -.332227, -.40395491, .13108667, -.40139353, -.30701019, -.40595735, -.51559944, .11220129, -.51072004, -.33316769, -.61518924, -.9272341, .13160628, -.90172302, -.46356221, .14075706, .13276657, -.0224764, .13269102, .09621269, -.48528515, -.67101151, .20765385, -.65941019, -.46073866, -.05503443, -.05643122, .00948432, -.05642531, -.03858647, 1.750071, 1.0774354, -.48320668, 1.0363146, 1.4357917, 1.4174127, .91338448, -.6681414, .88463772, 1.3898364, -.38540542, -.48559742, .13375997, -.48130239, -.34124314, -.56868899, -.78925933, .06278987, -.77530311, -.34373446, .34710641, .29833116, -.20567282, .29719408, .36731956, .07638697, .07404525, -.00804917, .07403329, .04545761, -.56149623, -.87177074, .40701726, -.84427383, -.63549505, -.24999416, -.28689392, .08886123, -.2859896, -.22311769, -.23430048, -.26493238, .06090427, -.26426693, -.18839731, .78760525, .61138863, -.07971736, .60490119, .46245203, -.29943973, -.35798383, .1537833, -.35608827, -.30212454, 1.5718706, .99354646, -.52506383, .95953593, 1.3741218, -.10596756, -.11224654, .06689919, -.11218458, -.11453342, -.54909035, -.76884924, .09845905, -.75451782, -.39011359, -.32609736, -.39539043, .1367698, -.39295453, -.30754235, -.15012378, -.1619647, .04234255, -.16180922, -.12404197, -.39565971, -.50809383, .18877217, -.50283487, -.38952668, -.57553404, -.86613075, .21942925, -.84247579, -.52580193, .12683929, .1198912, -.03643842, .11982781, .10544655, .02270402, .022484, -.00311723, .02248365, .01475712, -.24123189, -.27379475, .0612082, -.2730645, -.19241386, .21800662, .19905626, -.04898011, .19878217, .16697946, -.60306868, -.92619133, .19955451, -.89837386, -.52554314, .41430026, .35401909, -.07404215, .35256447, .29402199, -.13443697, -.14357866, .03083635, -.14347514, -.10368362, .14783533, .13784002, -.08570558, .1377275, .15530968, -.29406624, -.35009529, .14884304, -.34832685, -.29526793, -.57288525, -.86310269, .23129864, -.83940462, -.53347342, .50213207, .4154233, -.11637213, .41294565, .38860194, .63428636, .49900067, -.24276877, .49424647, .58022689, .08921615, .085661, -.02803146, .08563739, .07641657, -.58928721, -.91068237, .26052254, -.8825479, -.56560049, .04359302, .04262897, -.03360468, .04262541, .05036025, -.19631908, -.21918695, .10491377, -.21874408, -.2007224, .2626382, .23384393, -.12598651, .23331921, .25903391, -.03942293, -.04011796, .00570469, -.04011591, -.02607673, .02482358, .02453316, -.00854861, .02453259, .02192224, .25193872, .22580348, -.09755285, .2253527, .23135911, -.48866528, -.68518697, .25676136, -.67231132, -.49681444, -.37802814, -.47936239, .18933894, -.4748858, -.3782446, -.34102701, -.4160608, .12063284, -.41333092, -.30387224, 1.7724731, 1.034292, -1.968235, .98591764, 2.3125373, -.36586314, -.44618456, .06774468, -.44326864, -.26273273, .12187065, .11574187, -.02178408, .11569052, .08649463, -.31911072, -.37837669, .0648449, -.37655279, -.23637209, -.27682526, -.3188125, .04792746, -.31775533, -.19439061, -.64054568, -1.0224526, .1989004, -.98611584, -.54649805, .03933659, .03869117, -.00481294, .0386894, .02460431, -.33307454, -.40186308, .09530847, -.39951192, -.27653373, .09703165, .0931105, -.01637223, .0930841, .06755459, .8318686, .61155395, -.50656838, .602011, .88836719, -.21584148, -.24218836, .07010333, -.24165377, -.18693021, -.4291746, -.58532861, .4197218, -.57603933, -.53672668, .69636682, .54924672, -.10184715, .54412435, .4622586, -.001548, -.00154914, .00048186, -.00154914, -.00132179, -.08304844, -.08639793, .01876542, -.08637542, -.06373095, -.35078789, -.43258938, .14120095, -.42943789, -.32632644, .06817824, .06586494, -.05215659, .06585186, .07856159, -.13281122, -.14139016, .02233949, -.14129787, -.09236858, -.63619981, -1.0325971, .25367231, -.99330654, -.58997015, -.42647757, -.55722192, .16400666, -.55063623, -.39074607, -.51893985, -.73844766, .2072769, -.72335158, -.48150963, -.16373659, -.17750708, .03532237, -.17731432, -.12372489, .54251637, .43383208, -.38354983, .43023926, .60891849, -.50161375, -.7221246, .33194245, -.70639005, -.55073654, -.15861102, -.17244583, .06087459, -.17224499, -.14522596, -.16836261, -.18502635, .10210102, -.18475196, -.17954933, 1.4866833, .95698828, -.47154365, .92672422, 1.2774079, 1.2911355, .88861684, -.16713676, .86827564, .82290279, -.09839541, -.10358873, .04638835, -.10354307, -.09648568, -.09096955, -.09470469, .01053519, -.09467913, -.05586694, -.49810824, -.67926422, .12716917, -.66849219, -.39812529, 1.6610055, 1.0605991, -.24860647, 1.0258457, 1.1111214, -.16366309, -.17883711, .07673274, -.178603, -.16019073, .6569265, .51131516, -.30129419, .5060029, .63829009, 1.0982562, .76135435, -.47545138, .74458407, 1.0467617, -.51409591, -.71837177, .16042185, -.7051421, -.43933312, -.1187299, -.12597206, .03420609, -.12589849, -.09879869, .45654377, .38446577, -.08691705, .38258035, .33090242, -.28488554, -.33901862, .18828181, -.33731459, -.31265093, .21830474, .19756622, -.1216919, .19723853, .22636329, .33133138, .28878174, -.10937445, .28787446, .28850743, .08039078, .07735885, -.03813546, .07733979, .07899334, -.02966155, -.03009056, .00975126, -.03008952, -.02579246, -.32653548, -.39441319, .11670383, -.39207824, -.2919613, -.33337953, -.4151742, .29501499, -.41186149, -.40325892, -.49720072, -.70191556, .25332848, -.68819645, -.50033302, -.09483072, -.09969709, .04929172, -.09965549, -.09606548, -.2383112, -.26735905, .03140062, -.2667705, -.15278675, .17384791, .16100567, -.0570078, .16084775, .15104317, -.29885783, -.34988492, .06073773, -.34844004, -.22138046, -.48540272, -.66641093, .17968785, -.65538423, -.43912117, -.19823386, -.21968728, .05525572, -.21930114, -.16315021, -.30018563, -.35623518, .10974338, -.35450114, -.27043488, -.56089125, -.85613782, .32826685, -.83114068, -.59111428, -.42403669, -.58488574, .58203682, -.57492417, -.59373927, -.2883768, -.34128525, .13392627, -.33967655, -.28136633, -.51613294, -.7059601, .10185868, -.69454947, -.37860272, .65757961, .50757101, -.43543632, .50194344, .72213286, 1.1870079, .82628202, -.22119967, .80848295, .8542282, .27860199, .24704089, -.11164627, .24644671, .25879004, -.24053122, -.27385251, .07592384, -.27308575, -.20634013, -.16078607, -.17692895, .16496248, -.17665932, -.20431677, -.32128487, -.38526072, .09923591, -.38315146, -.27362754, -.2883748, -.33796112, .08496367, -.33654718, -.24176455, .64638334, .50812646, -.216429, .50325443, .56551212, -.19898496, -.22156649, .07717696, -.22114037, -.18283221, .15496505, .14454288, -.05577738, .14442617, .13888389, .00633671, .0063181, -.00166539, .00631809, .00511397, -.4739938, -.66681795, .34836642, -.65404427, -.53893601, .36246502, .31161843, -.14269332, .31043506, .33469966, -.22925888, -.26072451, .10405145, -.26000712, -.22197811, .4886355, .39530087, -.49041548, .3923561, .61638879, .2447423, .22157177, -.04705109, .22120688, .17796691, .45818104, .37993539, -.21221618, .37772388, .44664338, -.32099268, -.38539684, .10526541, -.3832575, -.27889153, -.12972388, -.1380267, .02500792, -.1379382, -.09441677, -.31683287, -.37357803, .05330802, -.37189334, -.22037433, 1.4682062, .96749296, -.25056919, .94000071, 1.0260706, -.07950166, -.08302061, .05841841, -.08299466, -.09038799, -.06855711, -.07085819, .01818478, -.07084532, -.05549847, -.21092744, -.23694868, .09130626, -.2364151, -.20103217, -.61472947, -.96513955, .22680609, -.93316874, -.55550025, .4952139, .40151315, -.39233881, .39858411, .57733201, .05935325, .05752996, -.06177101, .05752063, .07578232, .28816721, .25615663, -.06903522, .25556563, .22549138, -.06973866, -.07231299, .03575098, -.07229716, -.07032154, .76735159, .58759668, -.17989453, .58067771, .59613632, .0214232, .02120572, -.00758547, .02120535, .01909533, -.59843416, -.92357982, .22634383, -.89521849, -.54526857, .38819962, .32571873, -.39803505, .32405296, .49319709, -.19707937, -.21731471, .03854351, -.21696909, -.14413006, -.40534384, -.51980512, .14965248, -.51448429, -.36637038, .75387704, .56679094, -.45130491, .55917749, .8005105, -.50903893, -.73255746, .29339799, -.71662576, -.53373995, -.4447331, -.59350981, .19587434, -.58535142, -.42631978, -.56118785, -.82137873, .1770618, -.80184537, -.48134573, .05405625, .05269526, -.02015385, .05268955, .04901849, .5064457, .41581461, -.16660501, .41313237, .44048178, -.41284779, -.55286364, .38436762, -.54508282, -.50790861, -.29817206, -.34948804, .06544106, -.34802351, -.226606, .29133822, .25698419, -.12039233, .25631115, .27340592, .11252154, .10660969, -.06318201, .10655795, .11695845, -.13277124, -.14234073, .05467631, -.14222589, -.12445501, -.55454265, -.79811435, .14813201, -.78074838, -.44996936, 1.3072545, .89034916, -.21571659, .86883081, .90339553, 1.0007486, .71681392, -.31062265, .70368218, .8536982, -.16159869, -.17579135, .0553703, -.17558389, -.14247134, -.07081385, -.07343344, .03221049, -.07341729, -.06861535, -.16043381, -.1744756, .05708551, -.17427105, -.14323503, -.51880592, -.72619974, .15403705, -.71269002, -.4360688, -.38869728, -.48193385, .07466007, -.47824067, -.28256202, .0204857, .02029921, -.00401082, .02029892, .01498723, -.67349836, -1.0435125, .0925214, -1.0108993, -.43783966, 1.1593064, .803795, -.30685635, .78610388, .93782224, .39465662, .33338519, -.22956766, .33180876, .41507492, -.35065788, -.42865261, .10374909, -.42578449, -.29439279, -.11717109, -.12449126, .04628912, -.1244151, -.10832199, -.08785581, -.09195866, .04124202, -.09192674, -.08602743, -.58266706, -.93449817, .44822709, -.90062578, -.67265083, .02376894, .02349106, -.01201546, .02349052, .02385595, -.67355988, -1.0792605, .13905122, -1.0402924, -.50155559, .71359203, .53745127, -.6508134, .53032017, .87189093, -.43603228, -.5650238, .11086531, -.55874855, -.34803344, .20930669, .19143418, -.05646736, .19118023, .17039803, -.35727676, -.44590583, .18199924, -.44227724, -.35950343, 1.6753869, 1.0630095, -.2812032, 1.0272074, 1.1643767, .4908936, .40681268, -.12660653, .4044293, .3936893, -.14652734, -.15811187, .05238908, -.1579594, -.13102959, .31785778, .27544281, -.23317764, .27450336, .36118319, -.27537691, -.32558569, .18544645, -.32406848, -.30411267, -.48698873, -.6811047, .25166251, -.66849482, -.49237438, .29298545, .25481961, -.34254518, .25399422, .38887795, .00874662, .0087142, -.00103607, .00871418, .00541211, .78880147, .57458812, -1.1066426, .56508469, 1.1125621, -.2651808, -.31172182, .19198616, -.31036754, -.30000467, -.07367286, -.07638552, .02255351, -.07636888, -.06255851, -.68976582, -1.1810856, .2285198, -1.1260085, -.60133857, -.44284919, -.59496177, .23586881, -.58640379, -.45227655, 1.1574275, .80210806, -.31606556, .78440858, .94608814, -.45541674, -.59502664, .09697116, -.58799469, -.34263378, -.09223334, -.09669847, .03780678, -.09666246, -.08632273, -.0124833, -.01256213, .00636916, -.01256204, -.01256773, 1.4158797, .92342387, -.46411344, .89589567, 1.229992, .97228034, .70692751, -.2229686, .69509957, .74981174, -.34006705, -.42291708, .24050992, -.41958476, -.3817368, -.26819996, -.30448753, .02667655, -.30367188, -.15656416, -.26398234, -.30512656, .08536277, -.30406224, -.22828782, -.55825751, -.82607513, .21860396, -.80530605, -.51457939, -.16766537, -.18511605, .15606077, -.18481393, -.20625453, -.01272429, -.01280849, .00828946, -.0128084, -.01389764, .3518566, .29863266, -.42628281, .29729802, .47259205, .5556532, .45481888, -.09389467, .45179348, .38704327, -.37533789, -.47597869, .20081775, -.47153154, -.38390665, -.2823153, -.33137866, .10855139, -.32996482, -.25864936, -.44365506, -.59286463, .20595612, -.58464003, -.43281123, -.19042374, -.21159373, .09372189, -.21120235, -.18942519, -.46299754, -.59724988, .06074254, -.59084525, -.29641041, -.34330638, -.42155001, .14437466, -.41860282, -.3240621, -.36794163, -.45993492, .15125125, -.45613947, -.34469021, -.25669541, -.29799002, .13410812, -.29688775, -.26047963, .15008009, .14024978, -.05537051, .14014256, .13561828, -.30648333, -.37209994, .23626267, -.36977611, -.35406223, -.05142546, -.05292612, .0545165, -.05291883, -.066065, -.03417275, -.03472592, .00845988, -.03472443, -.02703449, -.11575649, -.1223337, .02332548, -.12227146, -.08550347, .60106468, .48320686, -.12932211, .4793917, .45378319, -.4304812, -.55710014, .1186265, -.55097481, -.35294473, -.08322226, -.08720463, .07806581, -.08717289, -.10264157, -.23064543, -.26357348, .13260161, -.26279277, -.24163296, .21330742, .19475851, -.05853626, .19449012, .17464479, -.57475093, -.93020323, .55395287, -.89521359, -.71529863, .87328648, .66049213, -.10854342, .65198361, .5490969, -.22979168, -.26014119, .07675841, -.25947518, -.20088223, .28003539, .24793189, -.12181976, .24732031, .26733625, -.55613717, -.87231013, .49950373, -.8435344, -.67604799, -.29221015, -.34113387, .06326927, -.3397752, -.22107407, -.23656182, -.27398163, .22836836, -.27299935, -.29456767, -.19604252, -.21782828, .07403688, -.21742568, -.17853618, -.60083484, -.94430253, .27580695, -.91288147, -.58395826, -.00547621, -.00549046, .00166924, -.00549045, -.0046434, -.0213368, -.02153555, .00277666, -.02153524, -.01362293, .12983826, .12254873, -.03846697, .12248057, .10905388, .31152157, .27198549, -.15725302, .27115229, .31251323, -.24926324, -.28712409, .11206531, -.28616946, -.24058722, -.44366991, -.58611229, .15714355, -.57860731, -.39550214, -.27923967, -.3282771, .12752518, -.32684934, -.27093185, .29608578, .26082062, -.11793087, .26012283, .27447168, .23601646, .21220039, -.1228077, .21180075, .23917368, -.08213268, -.08616873, .10838062, -.08613569, -.11350227, .00044752, .00044743, -.0001309, .00044743, .00037429, 1.4203149, .94835746, -.21382878, .92305453, .95196682, -.09720393, -.10232543, .05039981, -.10228048, -.09838801, .06584662, .06388567, -.0200944, .06387594, .0558544, .41548604, .34920225, -.20852496, .34745044, .41600668, 1.0305757, .73735664, -.25589049, .72375941, .81610862, .00590486, .00588968, -.00088055, .00588967, .00394519, -.46055261, -.63089786, .26150477, -.62060224, -.48049555, .10013784, .09518753, -.0887687, .09514677, .12119799, .93052524, .68548374, -.19069824, .67492748, .69121158, .02028512, .02010138, -.00414368, .02010111, .01505187, 1.8098205, 1.0718835, -1.1072545, 1.0243916, 1.9357509, .8189776, .59083974, -1.1819009, .58047062, 1.1660532, -.46953787, -.63012622, .14410389, -.62112897, -.39903928, -.21602006, -.24713774, .23918854, -.24639336, -.28156986, -.03863364, -.0393815, .01520532, -.03937909, -.0356713, -.04683537, -.04784446, .00830017, -.04784083, -.03314527, 1.3220231, .88728977, -.32077514, .8642057, 1.0388901, -.24859345, -.28562577, .09940402, -.28470988, -.23074791, -.29160799, -.34358073, .10003715, -.34204517, -.25719551, -.25501821, -.29229893, .07063503, -.29139397, -.20944219, -.29785083, -.35675225, .17350525, -.3548235, -.31341041, -.0198085, -.02000469, .0086732, -.02000437, -.01895123, .09321496, .08888984, -.08523493, .08885641, .11399162, -.20218426, -.22416563, .04888082, -.22376818, -.15869176, -.73340024, -1.2432168, .12718219, -1.1873251, -.51528337, -.05938582, -.06107651, .0139319, -.06106849, -.04614614, -.27714991, -.32583833, .13577607, -.32442021, -.27527128, 1.819109, 1.1065563, -.50113102, 1.0622646, 1.4913042, .13080335, .1234575, -.03635812, .12338879, .10755313, -.24344208, -.28111843, .15508732, -.28015061, -.26391609, -.02966079, -.03009801, .01152855, -.03009694, -.0272724, -.06254188, -.06450144, .02100664, -.06449121, -.05477421, -.43209991, -.55131104, .07773608, -.54589413, -.30733144, .40490703, .34078423, -.23531005, .33910179, .42572292, -.41954719, -.53913051, .1203157, -.53352059, -.34858175, -.3628394, -.45381439, .17222083, -.4500505, -.35660015, -.38457428, -.49468597, .24817228, -.4894975, -.4187112, .03240107, .03191414, -.01011152, .03191292, .02768992, -.41006257, -.52671335, .1427386, -.52125149, -.36343262, -.67063163, -1.041895, .09911552, -1.0089364, -.4467315, -.12851451, -.13757402, .05927542, -.13746768, -.12510356, -.3719938, -.45990369, .09630487, -.45647218, -.29871009, -.40347027, -.50311655, .0668771, -.49905461, -.27923949, -.19335674, -.21772217, .21485219, -.21721188, -.25232647, .07437463, .07189301, -.02219004, .07187921, .06261512, -.03557874, -.03622088, .01592149, -.03621895, -.03428716, .20918056, .19145159, -.05255341, .19120155, .16629959, .27805743, .2480225, -.06810202, .2474832, .21918947, .18468983, .16511164, -1.4715482, .16476661, .4647615, -.2575353, -.29550811, .06952078, -.29457847, -.20970368, .01467121, .01457715, -.00238058, .01457705, .01008204, -.41285416, -.51797618, .06762362, -.5135607, -.28460373, .35563681, .3062542, -.14814418, .30511644, .33463858, -.25857056, -.2980628, .08700149, -.29706156, -.22658871, 2.3143122, 1.2965813, -.6925129, 1.2267849, 1.9502962, 1.2885501, .83343651, -1.2770734, .8076381, 1.6186371, -.12692213, -.13723212, .20535844, -.13709271, -.18773233, .26923237, .23674265, -.29097175, .23609135, .34810623, -.1644801, -.17959486, .06874828, -.17936372, -.15494332, -.12573299, -.13397529, .03906078, -.13388531, -.10728931, .32052335, .27885662, -.1631772, .27795737, .32245536, 1.2204833, .84285618, -.23326903, .82390706, .88576173, -.24900477, -.28478904, .07541898, -.28393504, -.21068907, -.40704517, -.51038658, .07434913, -.50605829, -.29098037, .21943066, .20003196, -.05533431, .19974663, .17466519, -.45510119, -.58233022, .05571458, -.57647363, -.28471145, -.81117623, -1.520445, .13085642, -1.4248404, -.55635477, -.77218206, -1.5102336, .25867285, -1.4026493, -.67567847, -.5463344, -.74681291, .06381628, -.73478848, -.33648021, -.01488634, -.01499325, .0049014, -.01499312, -.01295115, -.39951562, -.5232236, .29350692, -.51693138, -.45419111, -.59765957, -.94833892, .32290001, -.9154673, -.61329384, -.31116488, -.36913016, .08102167, -.36734095, -.25034415, -.55419425, -.77405012, .08721173, -.7598334, -.37697248, .06660237, .0644445, -.04062329, .06443285, .07116418, .37840857, .32086525, -.25307749, .31941476, .41693513, -.01836144, -.01852658, .00675922, -.01852633, -.01657983, .8405879, .62836978, -.23908668, .61958976, .69649374, -.09265738, -.09706769, .03161807, -.09703272, -.08157839, -.20843404, -.23371337, .08828977, -.23320372, -.19722376, -.22152769, -.24561922, .02358758, -.24518348, -.13228881, -.00989398, -.0099387, .00206509, -.00993866, -.00739441, .34746868, .29703509, -.29418024, .29582103, .41415058, -.48286069, -.64976738, .12240594, -.6403194, -.38502778, -.06895623, -.07133693, .02209925, -.07132323, -.05945452, .16298072, .14999578, -.20560011, .1498236, .22187512, .24080838, .22023406, -.01850433, .21994155, .12898786, -.51551132, -.72856997, .19351423, -.71423974, -.46853256, .21480614, .19587928, -.06340083, .19560181, .18019364, .08752845, .08406782, -.03029766, .08404503, .07743058, .30806368, .27219212, -.06720695, .27149809, .23365499, .94688487, .68427465, -.34730971, .67238853, .85397881, -.43233564, -.569952, .18376994, -.56276164, -.4095581, -.53267009, -.7582047, .16905304, -.7426797, -.4577797, .04102751, .0401968, -.02405138, .040194, .04326202, -.56663295, -.80273476, .09480533, -.78673008, -.39338893, -.37045646, -.48178134, .44890056, -.47628198, -.49760511, -.10084367, -.10569215, .01747511, -.10565331, -.07083518, .04704931, .04606637, -.0107544, .04606295, .0362444, .32137416, .27952841, -.16267221, .27862382, .32269216, -.31983522, -.38614446, .13531918, -.38386942, -.30251528, .17817824, .16448048, -.07009303, .1643052, .16448945, -.1103941, -.11668311, .03483861, -.11662343, -.0946951, -.00013749, -.0001375, .00007475, -.0001375, -.00014138, -.13713359, -.14713003, .04626945, -.1470087, -.12028293, -.47766001, -.68544176, .46513064, -.67076398, -.5965052, -.40203327, -.50607888, .09272902, -.50163829, -.3106394, -.28636274, -.33857538, .13562985, -.33699759, -.2812372, .18113612, .16722005, -.06103794, .16704209, .15881079, .43928596, .36876772, -.14358666, .36689253, .38125269, -.49480076, -.68495104, .18182103, -.67302608, -.44652414, -.34704893, -.41596757, .05255445, -.41370144, -.23306316, -.21356853, -.24021161, .0899185, -.23965917, -.20167459, -.03935419, -.04006861, .00747542, -.04006645, -.02850247, .92015694, .68409902, -.14473168, .6741813, .62580515, .51444621, .42340162, -.12858296, .42073645, .40828597, -.25471088, -.29339574, .09420566, -.29242042, -.2303566, -.13162226, -.14058773, .03703192, -.14048603, -.10866465, 1.5256867, .97351753, -.50109969, .941521, 1.3262588, -.25711545, -.29990523, .16870733, -.29872397, -.28149678, -.57010669, -.84199052, .17948291, -.82102463, -.48863937, -.2481663, -.27941, .02898028, -.27875625, -.15282911, -.39585463, -.49543135, .08761031, -.49129838, -.30168396, .26396598, .23625542, -.07620485, .23577178, .2198043, .20345859, .18405327, -.22285928, .18374541, .26424347, -.63319563, -1.0172999, .23504772, -.98016198, -.57335106, .09770997, .09358417, -.02358854, .09355515, .07665425, .97657256, .70907665, -.22678578, .69711179, .75628407, .62465015, .49899984, -.13068314, .49482956, .46720529, .90636958, .66285383, -.31254602, .65216034, .80078919, .4695421, .39186196, -.11990305, .38973403, .37532121, .40342544, .34071291, -.19540737, .33909737, .3991773, .13367782, .12613466, -.03201812, .12606377, .10459594, -.40380903, -.51029971, .10080706, -.50567009, -.32034971, -.0388306, -.0395016, .00540108, -.03949967, -.02534854, -.66782547, -1.0553002, .12645645, -1.019358, -.48316891, .31847072, .27670872, -.18917586, .27579959, .3372963, .07277888, .07021524, -.04413034, .07020019, .07761149, .46503517, .38825082, -.1265806, .38615148, .37971368, -.42325907, -.5547309, .18842624, -.54802331, -.40718769, .26700903, .23807593, -.09743584, .23755477, .24039949, -.51371982, -.70883681, .12629997, -.69673812, -.40547302, -.11243706, -.11977953, .09256012, -.11969968, -.13276725, -.28640328, -.33759131, .11782752, -.33607475, -.26837635, .27297517, .24431756, -.05828916, .24381737, .20556761, -.82425343, -1.4558008, .07241172, -1.3801574, -.46165774, .23197297, .21044408, -.05870715, .2101117, .18486949, .98806998, .70637739, -.36917964, .6932897, .89663231, .23381589, .21149227, -.07404639, .21113776, .20079858, -.33833613, -.40485254, .06012981, -.40268701, -.2396655, .68204589, .52634513, -.3281514, .52049998, .67335458, 1.5731096, 1.0056366, -.37080283, .97284989, 1.2243258, -.45257303, -.60588142, .18307374, -.59737163, -.42170731, .01959294, .01939979, -.0118505, .01939947, .02087638, .67430133, .52815406, -.18288737, .52293729, .5499298, -.49980304, -.70102851, .21568603, -.68783051, -.47586445, -.03464258, -.035257, .01690984, -.03525518, -.03436608, .80105849, .59930949, -.3399519, .59098201, .75844712, -.10945449, -.11524755, .02024744, -.11519648, -.07857585, .19586527, .18014534, -.05092761, .17993536, .15750683, -.59356161, -.84972679, .07853711, -.83176759, -.38107651, -.26176648, -.30059589, .06376126, -.29963959, -.20597048, -.52670437, -.7444074, .16303326, -.72976361, -.44889698, -.25229583, -.28607887, .04027129, -.28532731, -.17243096, -.54254012, -.79819515, .2514942, -.77870402, -.5290222, -.54033162, -.76807782, .14728081, -.75246839, -.44139998, -.56976056, -.84612526, .1959766, -.824468, -.50296719, .17571897, .1618744, -.10052461, .16169285, .18378634, -.01966618, -.01984563, .0044382, -.01984536, -.01508547, -.46794437, -.64572302, .2668698, -.63469658, -.48892167, .90744845, .66879756, -.22886194, .65852951, .72235247, -.19712819, -.22030293, .10889611, -.21984998, -.20378863, 1.3898858, .91141256, -.45367215, .88491521, 1.2057116, .27466983, .24204683, -.20858318, .24140311, .31572604, -.66945557, -1.0585014, .12489742, -1.0223593, -.48195777, -.0883628, -.09218563, .02068614, -.09215807, -.06861454, .25378339, .22880327, -.05290206, .22839435, .18958748, -.33129648, -.39813119, .08484429, -.39589913, -.26507092, -.6846758, -1.1753391, .24822923, -1.1200304, -.61510741, .51773831, .42045386, -.25244933, .41743344, .51342255, -.36495, -.44294497, .05775645, -.44018761, -.24871334, -.27098725, -.31689904, .12582319, -.31560895, -.26438053, .2238209, .20271648, -.09220094, .20238547, .20982418, -.3300101, -.39369167, .06458042, -.39165629, -.24139509, .23984243, .21485965, -.1510369, .21442699, .25901308, -.58287734, -.86283572, .15567784, -.84110082, -.47293745, .61384652, .48385407, -.28790581, .47931763, .60089696, -.48279673, -.65891216, .1660104, -.6484094, -.42615211, -.29051501, -.34520187, .15087778, -.34349632, -.29421455, -.35458256, -.45526794, .45161194, -.45056198, -.4842579, -.40514188, -.52326343, .18270347, -.51759809, -.39143863, .28227816, .25174487, -.0612721, .25119586, .21373835, -.0049285, -.0049399, .00134475, -.00493989, -.00402749, -.41690016, -.54134562, .16759997, -.53523816, -.38766449, .16950891, .15707999, -.06473905, .15692828, .15495078, -.01036676, -.01041726, .0027779, -.01041722, -.00842062, -.30324818, -.36382787, .16105665, -.3618242, -.30941048, .15392032, .14362663, -.05565588, .14351201, .13815851, -.29522033, -.37007469, .96310443, -.36694351, -.55165213, .05217972, .05099639, -.010079, .05099192, .03800293, -.55561286, -.79246508, .12499179, -.77605455, -.42574742, .0664843, .06432465, -.04222881, .06431296, .0720044, -.46157157, -.62567311, .20595031, -.61612713, -.4443824, -.01948926, -.01968341, .0103965, -.01968309, -.01991449, .04701158, .04605471, -.0084959, .04605146, .03348752, -.33983184, -.42133979, .21858269, -.41811148, -.36959376, -.42373944, -.55543162, .18732468, -.54870924, -.40670008, -.26879735, -.31220996, .0954347, -.31104661, -.23980712, -.16985211, -.18538364, .0511324, -.1851473, -.14342428, -.76538156, -1.4801955, .25816143, -1.3780855, -.6712626, -.20615384, -.23331385, .17956462, -.2327193, -.24805304, -.66010257, -1.0703162, .18677226, -1.0297548, -.54599468, -.46155485, -.6202997, .17067579, -.61135728, -.41739719, -.34629564, -.4234232, .11569795, -.42058323, -.30274936, 1.9389514, 1.1104311, -1.5930197, 1.0549485, 2.2880297, -.21333669, -.242139, .16379957, -.24149298, -.24612626, -.10510642, -.11071165, .02982542, -.11066186, -.08702119, -.6117049, -.89174243, .08338052, -.87097166, -.39663666, .31011561, .27181763, -.120844, .27103209, .28538695, -.36212946, -.46228943, .32447926, -.45772692, -.43986042, .15267489, .14266294, -.04883894, .14255362, .13155594, -.71536372, -1.2602705, .22012304, -1.1953498, -.60848485, -.69349745, -1.2647863, .37401124, -1.1917575, -.71121591, -.20114185, -.22287933, .048648, -.22248863, -.15789437, .00818593, .00815596, -.00158002, .00815594, .00596041, -.27911439, -.31827421, .02536087, -.31736167, -.15809551, -.06383529, -.06626514, .09420362, -.06624972, -.09156716, .29710195, .26185165, -.11004677, .26115681, .26882693, .06272224, .06087881, -.02618575, .06086978, .05906263, .28103164, .25195927, -.03951707, .25145921, .18412315, .32293377, .28161776, -.12886881, .28074006, .29954926, -.04032292, -.04122905, .03967449, -.04122566, -.0505299, .55452718, .45644487, -.07007543, .45357528, .35060153, -.57105625, -.87833166, .31484532, -.85177237, -.58996784, -.47576149, -.66833331, .32920971, -.65563788, -.53018455, -.31204797, -.37164481, .09411346, -.36975933, -.26365832, -.71218064, -1.169247, .11644927, -1.1226855, -.49066193, -.47393724, -.63823842, .14448975, -.62891155, -.40188602, .85134458, .61467274, -.84160252, .60393653, 1.0685198, .2930939, .25736519, -.16470283, .25664173, .30472976, -.28096243, -.32780374, .08403295, -.32650837, -.23673295, .17636294, .16247957, -.09677612, .16229766, .18191602, -.55304167, -.79089422, .13581671, -.77427408, -.43634798, .29560585, .2614625, -.0856697, .2608072, .24646831, .71711943, .55042914, -.27892472, .544061, .65952814, .45420572, .37979882, -.13932181, .37778024, .3859385, -.21270616, -.23893976, .08520051, -.23840197, -.19755018, -.32082581, -.38921207, .15911656, -.38680062, -.31995924, .14448218, .13517863, -.06333295, .13507888, .13828107, -.54260781, -.83635851, .48731543, -.81082247, -.65958496, -.38975271, -.48967674, .11197595, -.4854512, -.32402437, .37023932, .3182899, -.12073292, .31708058, .32107532, -.18500597, -.20527146, .1053769, -.20490228, -.19321861, -.55421986, -.81212618, .19929405, -.79269647, -.49654983, -.67388566, -1.107452, .18308313, -1.0631829, -.54989982, -.55371898, -.78864307, .12530861, -.77244018, -.42513798, -.79523549, -1.5748272, .22103194, -1.4586535, -.65387116, -.03865596, -.03944844, .02498407, -.03944573, -.04210904, .47907012, .39687889, -.15691782, .39454529, .4160704, .27169184, .24131765, -.11841986, .24075329, .25953898, .95433089, .67386839, -.76430692, .66045863, 1.1166025, -.16884494, -.18472779, .06701134, -.18447918, -.15633329, -.58048226, -.90027987, .30768568, -.87201929, -.59188645, .09702386, .09255906, -.05712252, .09252484, .1024546, -.09443758, -.09917476, .04213729, -.09913517, -.09092056, .1002742, .0954982, -.06121954, .0954603, .10717648, .46457249, .38602337, -.16876349, .383825, .41764295, -.52327451, -.73053254, .1368673, -.71715104, -.42162817, -.17938365, -.19985912, .18494243, -.1994705, -.22832007, .0704082, .06802469, -.03945309, .06801125, .07313397, .46637499, .39102241, -.09593579, .38900583, .34686492, 2.2831696, 1.2679097, -.97165757, 1.1976462, 2.1637472, .16763493, .15594166, -.04285017, .15580586, .13404085, .38504135, .33230165, -.06731415, .33110289, .27125872, -.03192792, -.03249649, .03365936, -.03249481, -.04094105, .40354763, .34531342, -.08321158, .34391962, .30037777, -.25298261, -.29074769, .08774405, -.28981173, -.22394584, -.29640711, -.35472974, .17429654, -.35282939, -.31287102, -.25858823, -.29943226, .11084943, -.29836165, -.24565579, 1.6440042, 1.0388676, -.36960944, 1.0032659, 1.2594849, .01411087, .01401799, -.00412915, .01401789, .01180319, -.29628554, -.35629179, .21293068, -.35428001, -.33437185, -.44348277, -.58416217, .14689832, -.57683638, -.38660438, -.49725279, -.69591546, .21562404, -.68298171, -.4741989, .40373151, .34334675, -.12464552, .34184937, .34379322, -.32419631, -.39015905, .10692326, -.38793747, -.28221024, -.2352134, -.26889074, .11577911, -.26808997, -.23398864, .22479707, .2035298, -.09219838, .20319513, .21043188, -.37924183, -.46888179, .0826318, -.46538209, -.28752121, .04450384, .04354595, -.0221385, .04354251, .0444281, -.26490466, -.30975349, .15010926, -.30849416, -.27618848, -.24704163, -.28358762, .09933805, -.28268997, -.22973578, .0313423, .03087196, -.01301685, .03087078, .02946225, .16039389, .14846934, -.11584567, .14832176, .1813128, .39469993, .34213706, -.04033536, .34097517, .23249663, .00097178, .00097136, -.00017334, .00097136, .00068922, -.73712058, -1.3740473, .27048396, -1.2890906, -.66488959, .04697925, .04595206, -.01661782, .04594831, .0418606, 1.0069131, .70432784, -.69585313, .68955374, 1.1216151, -.19507028, -.2158063, .05472894, -.21543967, -.1608952, -.5307784, -.74514525, .1355714, -.73104293, -.42430177, -.38706565, -.4910044, .15845866, -.48640487, -.36210824, .50030571, .40543876, -.37112231, .40246703, .57060993, .45510098, .37989814, -.15183835, .37784045, .39768787, .18191051, .1664679, -.16334546, .16624975, .22111467, .43450774, .36581801, -.13111312, .36401887, .36718962, -.43012689, -.58741161, .42400243, -.57800973, -.5393415, .41487081, .35305325, -.09603176, .35152603, .32093978, -.48219771, -.63422421, .07253155, -.62635458, -.32309909, -.2116386, -.23718223, .07532369, -.23666973, -.18896605, -.20662098, -.23126894, .08351743, -.23078014, -.19247987, .10914574, .10398608, -.02889256, .10394545, .08829644, -.79287517, -1.4584816, .13679515, -1.3719497, -.55612204, -.38544108, -.5007257, .31775297, -.4950568, -.45534986, .85446108, .62898569, -.38836301, .61925316, .82772132, -.23429899, -.26513387, .0639893, -.26445959, -.19152526, -.61137671, -.92184413, .13907551, -.89643443, -.47021825, -.44567629, -.61384907, .37975934, -.60348654, -.53234418, -.33107748, -.40075158, .11352917, -.39832555, -.29196598, -.05769032, -.05933543, .01781526, -.05932762, -.04912954, .48038593, .3914733, -.38220613, .38875341, .56083624, 1.5607517, .97473808, -.79440657, .93964577, 1.57005, -.46211161, -.61760459, .14906972, -.60902956, -.39930467, -.16693896, -.18823996, .7643983, -.18778827, -.34926498, -.02861234, -.02902708, .01326052, -.02902608, -.02789754, -.44776451, -.56447321, .04096984, -.55945726, -.25421307, .71796375, .54719255, -.37553979, .54052169, .72883686, -.3381459, -.41177679, .12047936, -.40912526, -.30203015, .28135613, .24837388, -.14928807, .24773149, .28698285, -.07450749, -.0774421, .03656232, -.07742284, -.07404366, .22981909, .20861652, -.05946391, .20829112, .18450943, .21651875, .19623524, -.11233909, .19591916, .2192051, .35450331, .30766748, -.08719146, .30664031, .27984325, -.28768706, -.33654921, .07936459, -.33517283, -.23595679, -.21308212, -.24374959, .26516187, -.24301661, -.28876532, -.22045538, -.25038035, .13113803, -.24970553, -.23359669, -.35033088, -.42664505, .09100318, -.42389582, -.28163144, .40066749, .33973627, -.16029453, .3382003, .37196804, -.53478631, -.750588, .12707463, -.73640291, -.41733339, 1.5182092, .98331944, -.32964134, .95306749, 1.1496835, .12071306, .11451876, -.0286122, .11446581, .09412318, -.5278798, -.72723082, .0984675, -.71493766, -.38001231, -.15113552, -.1647059, .11267369, -.16450312, -.17266138, .43814029, .3651026, -.22810829, .36308682, .44408471, .22195374, .20053065, -.12584989, .20018673, .23145643, -.08587505, -.09002097, .06542431, -.08998762, -.09881762, -.4150392, -.52973121, .1083907, -.52451128, -.3342464, -.18745209, -.21157255, .32214316, -.21105678, -.28289145, .3139836, .27330586, -.18531653, .27243091, .33183284, -.55439278, -.78393005, .10918544, -.76846502, -.40639025, -.17200928, -.1904243, .15818232, -.1900964, -.21074821, .1193529, .11320535, -.03249434, .11315261, .09746183, .8489274, .63186865, -.26325452, .62277833, .72396179, -.7463687, -1.4410382, .31228717, -1.3421037, -.70333731, .16040263, .1498098, -.03528531, .14969332, .12199695, -.13309942, -.14242628, .04265966, -.14231745, -.11476247, -.33564918, -.41114434, .15851291, -.40833741, -.3293229, -.57516097, -.82379133, .10189629, -.80633307, -.40699498, 1.9283559, 1.0953586, -2.0707035, 1.0390683, 2.487945, -.50510217, -.72836955, .32299386, -.71235445, -.5482697, -.07564846, -.07868182, .03768843, -.07866156, -.07555782, -.45992691, -.63164958, .27849917, -.62117591, -.490242, -.08926896, -.09371519, .06229344, -.0936783, -.0997603, .40149657, .33357001, -.54631879, .33166777, .5605486, .31817766, .28187554, -.0416558, .28118725, .20355493, .0714031, .0690895, -.02329649, .06907701, .06193244, .01487609, .0147739, -.00399054, .01477378, .01208778, -.64250012, -.99031771, .12607992, -.96008254, -.47040737, -.44938868, -.61231852, .28473992, -.60265935, -.48630366, -.02857917, -.02899295, .01324853, -.02899195, -.02786756, -.32723235, -.38792416, .05253607, -.38605889, -.22407841, -.23049008, -.26139683, .08387148, -.2607083, -.20732401, .02034739, .02014464, -.00965928, .02014431, .0199985, .16228071, .15160581, -.03091546, .15148889, .11764672, -.44013133, -.57620864, .1340597, -.56929752, -.37310489, -.67392705, -1.1627933, .29520191, -1.1070738, -.64484942, .12211996, .11635374, -.01163097, .11630838, .07026512, .73267565, .57461918, -.08861483, .56900298, .45651317, .20424855, .18696722, -.06249721, .18672391, .17340816, -.47129773, -.62648378, .11234339, -.61810387, -.36817651, -.29860653, -.35164583, .08079693, -.35008403, -.24333682, -.21556065, -.24278656, .09161459, -.24221506, -.20419473, -.51458917, -.73255356, .22330137, -.71754403, -.4908486, -.10226342, -.10752412, .02751104, -.10747904, -.08317495, -.40297264, -.51423312, .13650671, -.5091737, -.35392538, .14037235, .12878312, -.97673804, .12862389, .33764248, .25369103, .22958608, -.03666321, .22920511, .16773495, -.18176296, -.1998888, .05867076, -.19958808, -.15709203, 2.6324636, 1.4174223, -.68768306, 1.330773, 2.1202205, .58834522, .47112941, -.18710233, .46727544, .50596975, .03624121, .03565592, -.00801153, .03565435, .02760898, -.41267811, -.56402326, .60021257, -.55495088, -.58909587, .19496184, .17785134, -.13216935, .17760148, .21578438, -.41292923, -.5134589, .05065796, -.50941832, -.25850939, -.14911381, -.16095503, .04718856, -.16079849, -.12802678, -.65109408, -1.0373099, .17069642, -1.0007378, -.52502579, -.3148101, -.37004318, .04855218, -.3684365, -.21270548, -.47336597, -.7393653, 1.7208247, -.71541858, -.91703708, -.67644548, -1.0496617, .09109062, -1.0166348, -.43684069, -.08417269, -.08763556, .01993774, -.08761182, -.06561696, .53337724, .44236198, -.06233408, .43979156, .32855507, -.22685081, -.2545495, .04718868, -.25398732, -.16934907, -.44340949, -.56335271, .05592508, -.55800675, -.28016606, -.05488186, -.05637341, .0175327, -.05636666, -.04726926, 2.4118393, 1.3067879, -1.1813467, 1.2284419, 2.3953447, -.27912404, -.32391867, .06743894, -.32272583, -.21903411, -.16399678, -.1790167, .06855064, -.17878778, -.15449131, .3684578, .31069431, -.44509544, .30919378, .49440883, -.20177726, -.22252927, .0323358, -.22217424, -.13808697, -.24144046, -.27291117, .04683885, -.27222954, -.17609706, .08488658, .08138022, -.05886781, .08135609, .09466628, -.41163198, -.53121895, .1574401, -.52550326, -.37646203, -.27044505, -.31588476, .12050904, -.31461843, -.26025708, .54361565, .44949553, -.06363569, .44679912, .33504634, -.07609006, -.07890912, .01836399, -.07889172, -.05968762, -.42941341, -.55344993, .10837757, -.54755483, -.34190612, -.29898625, -.36363006, .30759952, -.36131838, -.38028223, -.5437877, -.77611569, .15019369, -.75998426, -.44618347, .29246074, .25673817, -.17125863, .25601341, .30827564, -.44169266, -.6107842, .44160929, -.60021904, -.55646287, -.31832995, -.38001544, .08867623, -.37803567, -.26193733, -.42639324, -.55165045, .12705299, -.54559852, -.35882153, -.22168002, -.24825043, .04932021, -.24772101, -.16923986, -.6888711, -1.191829, .25390767, -1.1341642, -.62229157, -.25067882, -.29078606, .15589837, -.28972126, -.26958907, 3.265403, 1.5807553, -1.6408632, 1.4501572, 3.2708351, .56486373, .45419056, -.21051909, .45061071, .51215681, -.37352746, -.47202432, .18797241, -.46774257, -.37433152, -.27755529, -.32002637, .05003166, -.31894761, -.19754133, -.49857145, -.67428638, .10578841, -.66415091, -.37466314, .28115665, .24908246, -.11190598, .24847442, .26057136, .1589048, .14792772, -.05963129, .14780147, .14440849, -.47405353, -.64409933, .17490553, -.63412198, -.42838024, -.13721991, -.14771917, .06807197, -.14758543, -.13686031, .6298221, .49558253, -.25459055, .4908683, .58672693, .71120398, .53979997, -.48343931, .53301877, .78786796, .34151436, .29531036, -.15310071, .29427292, .32931262, -.05270446, -.05400628, .01059308, -.05400092, -.03889696, -.40095972, -.51656558, .18547566, -.51108099, -.39069645, -.4825293, -.64925046, .12278168, -.63981687, -.38524497, -.40415788, -.51307116, .11465483, -.50823475, -.3345863, -.51995196, -.73782877, .19427069, -.72297937, -.47183255, -.2727901, -.31298492, .04365442, -.31200154, -.18659721, -.61114354, -.93441405, .16903524, -.90691829, -.50168514, -.05718684, -.05888843, .02756893, -.05887999, -.05649552, .19846387, .18235099, -.05154158, .18213327, .15953289, .27316878, .24263868, -.11302719, .24207159, .25646318, .79524934, .61537976, -.08505513, .60868768, .47560424, -.64619972, -1.1533024, .5537232, -1.0912406, -.77330725, -.06110944, -.06323229, .06123938, -.06322, -.0770476, -.25456872, -.29095935, .06078663, -.29009543, -.19898304, .80642094, .60885258, -.22094136, .60091152, .65989809, -.07770532, -.08078349, .02742688, -.08076317, -.06918882, -.39200663, -.50803439, .26059399, -.50238694, -.43104943, -.41608515, -.54343058, .19780547, -.53702654, -.4091453, .01959221, .01939402, -.01500015, .01939369, .02258209, -.4843194, -.70996538, .58947512, -.69294681, -.65150797, .27704727, .24549705, -.12354784, .24489998, .26668032, -.18512321, -.20297368, .03896519, -.2026873, -.1387425, -.58340675, -.95305195, .54431923, -.91584025, -.71824982, -.05064422, -.0519641, .02320251, -.05195837, -.04918978, -.10498592, -.11048641, .02597161, -.1104384, -.08303547, .03076093, .03037519, -.0029039, .03037439, .01764697, -.27453419, -.320173, .09908578, -.31891446, -.24626994, -.6515159, -1.0879259, .28282864, -1.0416812, -.62153817, 1.1185769, .77445081, -.42916624, .75727466, 1.0240687, -.29643247, -.34584272, .05465022, -.34447659, -.2125647, -.43005446, -.56105373, .14764261, -.55449628, -.37939902, 1.3035537, .86413849, -.53615763, .84026778, 1.2214062, -.00727818, -.00730541, .00444327, -.0073054, -.00777904, .50568017, .42080919, -.07849208, .41845109, .34240169, .13657359, .12810776, -.06811048, .12802037, .13645594, .27213105, .24419565, -.04711691, .24371883, .1910972, -.14401073, -.15511006, .04904375, -.15496764, -.12670714, -.37686308, -.47572429, .16942939, -.47144855, -.36374355, .49380072, .4177612, -.03477605, .41582054, .25692392, -.28516746, -.33369409, .08630964, -.33232458, -.24122913, .97391875, .69658602, -.40726979, .6837152, .91759819, -.21114652, -.23343958, .02756059, -.23304809, -.13494666, -.29165038, -.34397952, .10471634, -.34242316, -.26116993, -.58799905, -.82637479, .06098265, -.81063597, -.34806726, -.35016862, -.43149749, .13948816, -.4283766, -.32461899, -.24855748, -.28638194, .11620649, -.28542645, -.24305507, -.200873, -.22581347, .1416515, -.22529878, -.22526727, -.34760689, -.43057069, .17667238, -.42730057, -.34950909, .27784106, .24623086, -.11950815, .24563322, .26424501, -.46968014, -.63421204, .16478695, -.62477722, -.41736792, -.42899731, -.5617414, .16536614, -.55499416, -.39336457, 1.4741272, .92062396, -1.2549725, .88747771, 1.7602649, -.71867437, -1.3147704, .28797293, -1.238103, -.66754723, -.23630516, -.26771612, .06438934, -.26702239, -.19301755, -.69865357, -1.095912, .08057587, -1.0597512, -.42846917, -.20400243, -.22783466, .07890274, -.22737177, -.18726829, -.43507294, -.57736139, .2047588, -.5697285, -.42638205, .15163145, .14294262, -.01358769, .1428597, .08549054, -.18178759, -.20127684, .10274721, -.20092933, -.18936927, -.03970462, -.04048841, .01449916, -.04048583, -.03575622, .82309233, .62042315, -.20085387, .61223751, .64804093, -.08206623, -.08566274, .04166731, -.08563648, -.08248687, .23351298, .2094973, -.16347416, .20908661, .26123642, .15860602, .14748292, -.07042477, .14735304, .15245146, 1.6272688, 1.0189635, -.52624399, .98267852, 1.4072738, -.22717082, -.25504722, .04845067, -.25447862, -.17100611, .28653685, .25667722, -.036564, .25615987, .18175299, -.06460075, -.06706285, .08656299, -.06704721, -.08973168, -.62309338, -.94821141, .13582043, -.92091239, -.47246227, .80073602, .61230895, -.13591818, .60502432, .55859291, .54252045, .43717936, -.26000679, .43380193, .53491195, .10315753, .09825575, -.04769827, .09821694, .10050281, .24287792, .21804105, -.11237509, .21761873, .23667845, -.60679496, -1.017633, .52159417, -.97366697, -.72691264, -.51011918, -.72644897, .24094299, -.71153491, -.50052894, -.43564899, -.5752175, .17956829, -.56787922, -.40848649, .92055114, .68129428, -.17295236, .67111579, .66427938, -.25796805, -.29608321, .06963428, -.29514817, -.21005272, -.25954779, -.30800237, .3510023, -.30650352, -.3616248, -.59309259, -.91584086, .24492653, -.88764721, -.55646383, -.32028489, -.39380116, .26357164, -.39101263, -.37815269, -.40280123, -.51869574, .17653327, -.51320867, -.38548964, .84240279, .63857918, -.1315783, .63048471, .57159, -.28482944, -.33538536, .11730721, -.33389774, -.26699809, -.26469685, -.29909258, .02193167, -.29834988, -.14538951, -.16829622, -.18504933, .10711601, -.18477188, -.18239421, -.68122663, -1.181775, .28440964, -1.124054, -.64148403, -.04533664, -.04639939, .02243329, -.04639524, -.04517941, .29240118, .25983222, -.06324136, .25922929, .22113788, .46460339, .386555, -.15627043, .3843845, .40709007, -.03342123, -.03395251, .00861708, -.0339511, -.02680063, -.58233764, -.97883278, .74133018, -.93618291, -.79517698, -.3064705, -.37392751, .28431409, -.37147234, -.37658982, -.04459337, -.04551063, .0082021, -.04550749, -.03195203, -.36942726, -.4525769, .07394099, -.44948329, -.27226451, .48085019, .38595972, -.834553, .38286876, .72806111, -.54557937, -.75687435, .0868044, -.74352401, -.37247392, .48304522, .39320996, -.38772464, .39044886, .56560034, -.24937674, -.28868329, .14594659, -.28765513, -.26281205, -.18936532, -.21054859, .10276849, -.21015454, -.19460932, -.39239613, -.49923999, .15489548, -.49444712, -.36266534, .64937485, .51498667, -.13699943, .51040089, .48705713, -.4322005, -.56615195, .15731694, -.55933261, -.38879918, -.20355937, -.22802606, .09965492, -.2275372, -.20213289, -.21615618, -.24310274, .08121952, -.24254441, -.19652082, .07510881, .07273854, -.01211125, .07272608, .05150708, -.71129699, -1.2136775, .17291108, -1.1577944, -.55930871, .6737645, .53227367, -.12282293, .52737612, .48132885, -.29373897, -.34934204, .14356277, -.34759832, -.29151774, -.42744692, -.5608199, .1788832, -.55398534, -.40282955, -.39712056, -.52312548, .35588397, -.51656221, -.48238566, -.23751271, -.27111622, .09811775, -.27032661, -.22286939, -.03277917, -.03329781, .00965973, -.03329644, -.02748297, .26410406, .23514991, -.12046309, .23462228, .25614038, -.03434575, -.03491003, .00925617, -.03490848, -.02795133, .13494873, .12713604, -.0381914, .12706071, .11162918, .13203413, .124881, -.02372015, .12481645, .09386563, -.04551417, -.04654707, .0164027, -.04654316, -.04080809, -.05219991, -.05359129, .02212956, -.05358511, -.04940612, -.30252488, -.36302665, .16540026, -.36102338, -.3116708, -.51426378, -.75157197, .34771465, -.73383667, -.56868916, -.29887443, -.35190646, .0796393, -.35034647, -.24231389, -.09053879, -.09499873, .05072437, -.09496213, -.09403843, -.0300005, -.03044045, .01005493, -.03043937, -.02625561, 1.6115429, 1.0243185, -.36370126, .99008196, 1.2361927, -.156591, -.16938555, .0400831, -.16921153, -.12526843, 1.811829, 1.0941374, -.63649492, 1.0490886, 1.610719, -.49368734, -.6757864, .14772967, -.66480961, -.41603886, -.02370091, -.02395868, .00473214, -.02395822, -.0174531, .04561786, .04461905, -.02129833, .0446154, .04458771, -.26417627, -.30595708, .09429969, -.30486051, -.23610723, -.0931778, -.09753532, .02606962, -.09750137, -.07678267, .28507257, .25241947, -.1046605, .25179795, .25718239, .28034666, .24551492, -.28948403, .24479617, .35701116, .53782825, .44234603, -.09356962, .4395423, .37828346, -.61897765, -.97253054, .21661137, -.94021132, -.54956668, .78421678, .60406353, -.11669902, .5972591, .52358816, -.03882953, -.03957842, .01413856, -.03957601, -.03493439, -.06523687, -.06717864, .00964069, -.06716901, -.04345517, -.21282534, -.23992597, .1078811, -.23935247, -.21379982, .90192707, .66502038, -.23618664, .65483939, .72701392, .38244456, .3281245, -.1068623, .32684464, .31501446, .18015634, .16623594, -.06756239, .1660569, .16368593, -.36356599, -.4638294, .30871312, -.45927525, -.43376103, -.09210566, -.09668124, .04745514, -.09664337, -.0930312, .17131159, .15900884, -.04825369, .15886175, .1414853, .49760355, .41055199, -.14611893, .40803251, .41671053, -.26615826, -.30743391, .07708907, -.3063715, -.22187118, -.3927741, -.49119506, .09098666, -.48712552, -.30392363, -.09436583, -.09907181, .04037083, -.09903271, -.08958647, -.46225941, -.62276812, .17801784, -.61364244, -.42372915, -.68894344, -1.1023655, .11421352, -1.0627932, -.47683876, .54551863, .44161588, -.1962092, .43834684, .4887906, -.45635762, -.61845001, .2243287, -.60902965, -.45377631, .51392807, .42380904, -.11608231, .42119474, .39433643, -.49514556, -.65991554, .08047553, -.6509263, -.3404499, -.4747132, -.64891854, .19645604, -.63846945, -.4457103, -.26195285, -.29994651, .05379271, -.29903144, -.19471522, -.6243963, -.99875786, .24995553, -.96295355, -.57979055, -.40910507, -.53396084, .22267832, -.52769928, -.4208486, -.2342998, -.26726459, .10501295, -.26649427, -.22591179, 2.4407724, 1.317305, -1.1861326, 1.237361, 2.4177196, .48137182, .39179562, -.40147968, .38904091, .57088894, .88347144, .63016669, -.98224625, .61833459, 1.1531305, -.37748634, -.47241194, .12786077, -.46847326, -.33153033, .6029886, .47870953, -.23536225, .4744856, .55521561, .25692875, .2299286, -.09565444, .22945687, .23287356, -.02006736, -.02023643, .00185917, -.02023619, -.01144046, -.10153493, -.10651411, .01952647, -.10647343, -.07384054, 1.0620669, .75307903, -.27944874, .73844545, .85745625, .30155225, .26708188, -.06531001, .2664271, .22816287, .17414172, .16255392, -.01972152, .16242552, .10615131, .04052029, .03973302, -.01811988, .03973047, .03904003, .0995454, .09467985, -.08338736, .09464023, .11822905, -.1098009, -.11547485, .01617159, -.11542601, -.0730575, -.44427463, -.6062158, .32152264, -.59656536, -.50255261, -.33979962, -.40986904, .08038145, -.40747774, -.26477513, -.6619722, -.98266748, .05866829, -.95756575, -.37185274, .04999817, .04877268, -.02928264, .04876768, .05270472, -.1508781, -.16430411, .10638183, -.16410528, -.16919335, .43989814, .37692724, -.0381013, .37543202, .24522121, .33284499, .28780745, -.18836734, .28679605, .34687517, .19602769, .18000773, -.06084173, .17978985, .16722023, -.4337603, -.57396928, .19590909, -.56653304, -.41930309, .00823044, .00819827, -.00273524, .00819824, .00718275, .89286471, .65491122, -.31419723, .64454243, .79420855, -.485029, -.66434467, .17236992, -.6535117, -.43285486, -.19591362, -.22008743, .16508003, -.21959164, -.23314061, .29846968, .2648503, -.06051499, .26422096, .22091802, -.51177164, -.7090097, .14101934, -.69660593, -.4195854, -.08107079, -.08478746, .06715827, -.08475907, -.09592963, -.51330833, -.7044032, .11384153, -.6927808, -.39146756, -.28434784, -.34314381, .3405642, -.34113181, -.38046054, -.22041142, -.25004037, .12217904, -.24937866, -.22812084, -.28288225, -.33456338, .15166649, -.33299857, -.28954118, -.38045734, -.48755831, .24374344, -.48259472, -.41322979, .02184406, .02163048, -.00460415, .02163014, .0163788, .55876591, .45226093, -.16342586, .44890758, .46730833, -.08268958, -.08625577, .03425598, -.08623014, -.07766451, -.24595302, -.28107306, .07941274, -.28024022, -.21258935, -.20771709, -.23236015, .07678811, -.23187411, -.18782618, .07956144, .07648132, -.05316748, .07646146, .08763827, -.11617647, -.12358576, .05869661, -.12350707, -.11658064, .69686488, .5196206, -1.1872426, .51223505, 1.0486298, -.58188967, -.86594781, .17081948, -.84355226, -.48724743, 2.0124807, 1.144415, -1.4286583, 1.0858262, 2.2619028, .59690036, .47855196, -.15696886, .47467906, .4818173, .36272796, .31308576, -.1075188, .31195833, .30471383, .03595038, .03534871, -.01187403, .03534703, .03130966, -.22580188, -.25143769, .02816139, -.25095373, -.14213895, -.38006128, -.47956806, .15642695, -.47527259, -.356191, 1.1166041, .76410384, -.64917324, .74608095, 1.1741665, .20199822, .18591811, -.03661377, .18570506, .14403118, -.32867868, -.4062999, .25813875, -.40327202, -.38206925, .05677936, .0553442, -.01411033, .05533815, .04497619, -.36806787, -.454488, .1005, -.45113609, -.30085043, -.53506292, -.79438171, .32265847, -.77407627, -.56954441, .19071785, .17381953, -.17391407, .17357042, .23301424, -.51589241, -.74151215, .25824814, -.72549233, -.51609362, -.03413597, -.03468197, .00768145, -.03468051, -.02615969, .08910428, .08519312, -.07159331, .08516452, .1043678, .35987379, .30913411, -.16000503, .30794728, .34606262, .18489821, .17040005, -.06371003, .17021083, .16331813, 1.3405019, .88402, -.50635538, .8589904, 1.2208813, -.46237474, -.60429991, .08655541, -.59714239, -.3332505, .4514692, .38508298, -.04198612, .38346423, .25770965, .41235874, .34998624, -.11971637, .34842228, .34401548, -.30686678, -.36928716, .16563904, -.36718543, -.31479717, 1.0163954, .70515236, -.86009015, .68968476, 1.2112481, -.24796447, -.28380914, .0814219, -.28294869, -.21553446, .24538016, .22206756, -.04780098, .22169915, .17921812, -.4291345, -.58654611, .43946985, -.57710826, -.54498178, -.39186361, -.51057574, .30062526, -.5046651, -.45196879, .79404903, .60254896, -.2020656, .59496774, .6339753, -.36717171, -.44859111, .07036081, -.44560604, -.26670618, -.62796841, -.97958516, .17653188, -.94803646, -.51829408, -.40685157, -.52591145, .18066974, -.52018042, -.39107718, .31378064, .2751345, -.1068019, .27434394, .27602839, -.5145653, -.72052957, .16563167, -.70709631, -.44430867, -.44366138, -.57130426, .08146556, -.56526133, -.31771357, -.09743412, -.10210125, .02230239, -.102064, -.0750933, -.67463913, -1.1652336, .2955002, -1.1091912, -.64552085, -.0532977, -.05477754, .02666406, -.0547707, -.05330784, .01125144, .0111872, -.0069488, .01118714, .01207217, 1.0424593, .7658664, -.08546767, .75386482, .57058019, -.23966601, -.27400878, .10024656, -.27319153, -.22582436, -.15102731, -.16293533, .04024455, -.16277902, -.12244734, .10883711, .10360373, -.03484788, .10356181, .09381093, -.63749651, -1.0657947, .34067459, -1.0202847, -.65179114, .21462438, .19252866, -.32449832, .19215043, .31036079, .28543484, .25359926, -.07780585, .25300912, .23317684, .60037273, .47535329, -.27759935, .47106133, .58492043, -.64629577, -1.0650438, .26333326, -1.0220094, -.6036698, -.24043518, -.272045, .05163505, -.27135449, -.18140818, -.43766527, -.5607036, .07881634, -.55500896, -.31139393, -.10886067, -.1144656, .01680504, -.11441753, -.07357617, -.21659505, -.24163923, .04517702, -.24115776, -.16183839, .24558099, .21864978, -.21619087, .21815888, .29654159, .87538756, .6420736, -.36843874, .63190621, .82654279, .03268513, .03214741, -.02171152, .03214594, .03593136, -.33085539, -.39571874, .07053734, -.39361288, -.24902435, -.54252751, -.80913275, .30893409, -.78798062, -.56656071, -.29883582, -.34835188, .04910994, -.34699085, -.20623145, .82533579, .60997673, -.43779671, .60078017, .84175935, -.08115594, -.08467064, .04121902, -.08464528, -.08158108, -.30067698, -.35725161, .11424508, -.35548796, -.27438221, .06741546, .06518607, -.04474214, .06517379, .07408926, 1.003046, .72197825, -.25434616, .70913157, .79989373, -.58070163, -.84229962, .11654776, -.82319219, -.42836436, .75923582, .58481682, -.15124806, .5782288, .55867306, .0059764, .0059584, -.00334034, .00595839, .0062025, -.53090015, -.75600972, .17492552, -.74049255, -.46199395, -.22335222, -.25544049, .17958825, -.25467492, -.26167535, -.22948451, -.25824195, .05233589, -.25764301, -.17664938, .30963181, .27345875, -.06687207, .27275659, .23405719, 1.0611246, .74180213, -.46722051, .72619033, 1.0170951, -.29408863, -.34962585, .13988706, -.34788828, -.28923754, -.25860882, -.30081882, .14020602, -.29967581, -.26568138, -.22592201, -.25446235, .06302462, -.25386314, -.18598836, -.3826994, -.47233224, .07239276, -.4688642, -.27678777, .01947673, .01928047, -.01518198, .01928014, .02258379, -.38497259, -.48883332, .17038615, -.48421616, -.36963631, -.08148694, -.08518986, .05985012, -.08516183, -.09263114, -.04295891, -.04403539, .06160084, -.0440309, -.06103436, -.01471251, -.0148122, .00320525, -.01481209, -.01115378, .71449982, .53710627, -.69745866, .52988413, .89299886, .08013108, .07729919, -.02108105, .07728251, .06469063, .5593455, .44200533, -.53719308, .43794786, .69530214, -.29161723, -.34587494, .13500442, -.34420219, -.28422882, -.3444663, -.41820437, .09269602, -.41559328, -.28019574, .81332359, .62275131, -.11332632, .61541416, .53124621, -.23053501, -.26431372, .16104974, -.2634919, -.25772384, -.61349953, -.9545587, .20593769, -.92416238, -.53719435, .9104401, .6520594, -.66452249, .64010651, 1.032795, -.05516897, -.05661534, .01231837, -.05660902, -.04216878, -.56883995, -.87662871, .33321132, -.84988566, -.59966676, -.36478423, -.45367681, .13740888, -.45010064, -.33192424, -.1586423, -.17112781, .02675512, -.17096423, -.11043115, -.38205142, -.4887402, .22432994, -.48383445, -.40307602, .49535731, .41246085, -.08944291, .41016421, .35275325, -.06313745, -.06522226, .03054947, -.06521079, -.0624505, .34982979, .30320269, -.10692491, .30217114, .29689815, -.67251333, -1.1316017, .2367678, -1.0821006, -.59829882, -.59172716, -.97634716, .54039043, -.93670332, -.72331402, 1.8266434, 1.0903129, -.82764403, 1.0433883, 1.7676396, -.24588016, -.28664541, .23477248, -.28552426, -.3050526, -.5845798, -.88896881, .22408002, -.86346038, -.53502439, .13148771, .12328602, -.09816614, .12320082, .15028675, 2.4346548, 1.3699725, -.41157278, 1.2972916, 1.6960962, .36246503, .31062852, -.17737731, .30939885, .35987645, 1.3994869, .91006275, -.55827647, .88256762, 1.2979929, -.45624974, -.60016264, .1132157, -.59270962, -.36122736, -.25496413, -.29439606, .10658785, -.29338385, -.24019574, -.05767819, -.05933659, .01916141, -.05932864, -.05032999, -.80431809, -1.602386, .2093638, -1.4822075, -.64703695, 1.5617118, 1.0233385, -.18272086, .99348606, .96236533, -.70968552, -1.3600232, .44467442, -1.2686575, -.76512902, .64399969, .50980783, -.15969945, .50519804, .50976292, -.42577082, -.56001156, .19633848, -.55306239, -.4144407, .19852298, .18141046, -.09500672, .18116502, .19564494, -.01755235, -.01770992, .00953801, -.01770969, -.01804622, .71490024, .54777169, -.30852084, .54135133, .68066767, .25055792, .22421576, -.11747822, .22375532, .24524559, .7455487, .56404977, -.37980282, .55679912, .7502052, -.46599585, -.64242384, .27075063, -.63151757, -.48991551, 1.2948213, .83888233, -1.1669167, .81310832, 1.5757834, .37068888, .31372161, -.33695531, .31227059, .45241863, -.40780079, -.51476393, .09005722, -.51013837, -.31056193, .04838708, .04727737, -.02046467, .04727313, .04576124, -.65958483, -1.0877235, .22545378, -1.04365, -.5810448, -.41448109, -.51966116, .06413362, -.51525789, -.28035506, -.53221661, -.77934505, .27260226, -.76076586, -.53651117, .37895608, .32426337, -.13780978, .32295415, .34079714, -.35423027, -.44100622, .17977977, -.4374971, -.35599786, .43251987, .36024553, -.26019905, .35824609, .46002624, -.1780144, -.19759107, .14782681, -.19723303, -.21081321, -.00010377, -.00010378, .00002836, -.00010378, -.00008485, -.15775022, -.17083021, .04249013, -.17064969, -.12835694, -.05827104, -.06000977, .02430356, -.06000112, -.05485318, 1.1849863, .83572134, -.14128063, .818976, .73481794, -.59052793, -.96984829, .52299476, -.93117582, -.71450083, .9399917, .68377155, -.28694805, .67236428, .7974322, -.44002698, -.57087568, .10634001, -.56447783, -.34532533, -.21863606, -.24528179, .0624941, -.24474199, -.1814558, .56326566, .46109889, -.08372362, .45803496, .37592526, -.07591432, -.07896422, .03725001, -.0789438, -.07543992, -.77818641, -1.6795659, .42244103, -1.5246549, -.79981177, -.04399159, -.04503607, .03189906, -.04503194, -.04979462, -.1002894, -.10618355, .09715338, -.10612585, -.12502571, -.46154278, -.65298739, .47775225, -.64006615, -.58823684, .19297036, .17688747, -.08435038, .17666441, .18451545, 1.2567799, .84235571, -.50274465, .82029379, 1.1667164, .23807226, .21413629, -.110251, .2137361, .23206521, -.63972256, -.9226105, .04888754, -.90231089, -.34203496, -.65083021, -1.0839922, .27791095, -1.0383617, -.61748113, .01714389, .01700946, -.00427506, .01700929, .01359556, -.1753322, -.19645065, .33425428, -.1960278, -.2739114, 1.1513607, .79169637, -.43119065, .77348673, 1.0456204, -.48785477, -.68179512, .24456376, -.66922912, -.48827865, .21072881, .19254487, -.05959303, .19228378, .17427073, .35612601, .30303134, -.3278876, .30171888, .43650323, -.27023169, -.3144702, .10075437, -.31326871, -.24505043, .61318693, .48210992, -.3274334, .47749362, .62677681, .41111143, .33301644, -1.8253585, .33056576, .85133226, -.19481353, -.21503613, .04602194, -.21468694, -.15173218, -.03987817, -.04063046, .0094143, -.04062809, -.03105247, -.10009869, -.10514249, .027462, -.10510015, -.08194824, -.11716349, -.12448007, .04615095, -.12440397, -.10820942, -.17640093, -.1928184, .04341165, -.19256414, -.13927698, -.73754475, -1.344323, .22748136, -1.2668483, -.62784271, -.06202451, -.06398783, .02451098, -.06397748, -.05734634, -.21830102, -.24652744, .09873847, -.24592095, -.21112644, -.42028158, -.55096001, .20057009, -.54428635, -.41380172, .27692872, .24786499, -.05178603, .24735786, .19952295, -.16056965, -.17558293, .09551896, -.17534935, -.17014355, -.06538395, -.06758339, .02707714, -.06757106, -.0614033, .40472269, .34596206, -.08711496, .34454716, .30559479, -.01948248, -.01970221, .0312953, -.01970179, -.02874744, -.74044391, -1.4313084, .33547729, -1.332702, -.71651588, -.00959026, -.00963341, .00254421, -.00963338, -.00776392, .58290382, .46866275, -.16430017, .46496644, .48152696, .78990971, .5990838, -.21558183, .59151686, .64555366, -.60878353, -.904121, .11544082, -.88097363, -.44066146, -.19234382, -.2135101, .07997263, -.21312274, -.18087392, .09349877, .08945988, -.04175847, .08943082, .09004552, -.56760591, -.82023065, .13154508, -.80199044, -.43927128, -.18688935, -.20644692, .06830505, -.20610648, -.16835162, .13621984, .12805562, -.04984456, .12797412, .12275603, 1.0490177, .72713028, -.68918444, .71110319, 1.1489744, -.45100013, -.59470485, .13184149, -.58718889, -.37711905, .13526372, .12645504, -.12005451, .12635952, .16377856, -.28818669, -.33167944, .03350251, -.33058978, -.17720872, -.13060375, -.1398183, .0524589, -.13971005, -.12140973, .9378045, .67753716, -.3788192, .66574952, .87343154, .27098326, .24004014, -.15183279, .23945297, .28146658, -.33485349, -.3970462, .04412781, -.39513215, -.21469273, .6194375, .49775346, -.10398783, .49380734, .43052909, -.14296602, -.15368801, .04171745, -.15355413, -.11947338, .43258663, .35935961, -.30280431, .35730782, .48392651, .37175276, .31861271, -.14411522, .31735271, .34151995, -.32665016, -.38884006, .06387642, -.38687864, -.23887944, -.42561232, -.55795914, .18142126, -.55119973, -.40356688, -.35105423, -.42195308, .05378071, -.41958271, -.23666551, -.02320392, -.02345492, .00534224, -.02345447, -.01791811, -.33682582, -.40497783, .0758356, -.4026951, -.25816932, -.12414077, -.13332723, .11586673, -.13321404, -.1528525, 2.3019877, 1.257505, -1.3917948, 1.1840291, 2.4524702, -.17247345, -.18734391, .02840135, -.18713052, -.11910715, .08731105, .08419405, -.01168084, .08417551, .05626188, -.26263879, -.30489683, .11180706, -.30376866, -.24892718, -.2910695, -.35171965, .29755042, -.34962839, -.36942645, -.72868997, -1.3252187, .2462431, -1.2493896, -.63947939, -.12607099, -.13517712, .08419329, -.13506761, -.13883936, -.303988, -.36124323, .1053936, -.35945659, -.269062, -.4509924, -.60030839, .16495918, -.59220241, -.40636377, .34727781, .30690118, -.02535243, .30612116, .18286666, -.64879747, -.98327508, .09287628, -.95550747, -.42761313, .06005547, .05833297, -.02946512, .05832474, .05967803, .11741206, .11047067, -.14296951, .11040233, .15796697, -.08041936, -.08379401, .03396093, -.08377041, -.07601692, 1.7225341, 1.03418, -1.1239065, .99064126, 1.8823424, -.10868496, -.11435385, .01896727, -.11430459, -.07652287, -.31637263, -.37839743, .10091835, -.37638371, -.2723533, -.20938853, -.23213658, .0367331, -.23172556, -.14768321, -.28102192, -.32840365, .09088428, -.32707863, -.24303364, -.13782043, -.14790602, .04587562, -.14778313, -.12034084, .10434784, .09932503, -.04931338, .09928476, .10240486, .45772778, .38254781, -.13504668, .380503, .38392184, -.11546231, -.12233721, .03505027, -.12226903, -.09776887, -.44973591, -.58508369, .09599035, -.57838802, -.33862907, .16888733, .15759416, -.02645707, .15746842, .11470666, .32593828, .28649726, -.06498227, .28570446, .2399009, .27186575, .24233951, -.08641709, .24180647, .23376503, .12746131, .1202375, -.04891426, .12016931, .11670087, -.5525436, -.79779884, .16088526, -.78013652, -.4614165, -.33745452, -.41627007, .19449844, -.41322893, -.353828, -.38523263, -.47686709, .07595916, -.47326717, -.2825002, -.29919216, -.35416709, .10080245, -.35249308, -.26230134, -.32859982, -.39187088, .06583404, -.38985297, -.24225443, 1.2230258, .85610896, -.14322376, .83822182, .7538856, -.59484282, -.91957581, .24273238, -.89112381, -.55588811, .22316516, .20054443, -.20153153, .20016315, .27177443, -.34353237, -.42417631, .17430392, -.42104902, -.34521593, 1.0013204, .70813496, -.49237704, .69416568, .99576753, 1.286023, .85588024, -.52633007, .83267972, 1.2029896, -.14232183, -.15297857, .0427016, -.15284572, -.12004362, -.11923524, -.12690099, .05092533, -.12681891, -.11313345, .07967895, .07688418, -.02053429, .07686785, .06388501, -.5240686, -.76737404, .30816235, -.74908509, -.55317424, -.57784358, -.86110674, .1843253, -.83868528, -.49744512, -.32958216, -.40011504, .13174724, -.39761812, -.30589072, .41448584, .34574843, -.33455967, .343861, .48622915, -.32944976, -.41067335, .33465253, -.40736804, -.41725431, -.09503026, -.09919597, .012917, -.09916555, -.06156092, -.42105309, -.55299201, .20696821, -.54620281, -.41866737, -.07923867, -.08247432, .03034594, -.08245231, -.07249949, -.16577435, -.17985874, .03469311, -.17965957, -.12400407, .19949934, .1827653, -.06902931, .18253172, .17646103, -.43920686, -.57872277, .16003694, -.57144777, -.39524175, -.56513879, -.84885229, .24699657, -.82588278, -.54035235, -.06286303, -.06491442, .02858863, -.06490327, -.06090758, .92549746, .67323857, -.32473992, .6620081, .82244219, -.38988726, -.47979843, .05636151, -.47637231, -.2578083, .09979014, .09573364, -.01384403, .09570617, .06508626, .09280064, .0889795, -.0279896, .08895329, .07841086, -.46107866, -.59994216, .07899674, -.59306763, -.32264856, .83347527, .60020541, -1.0995866, .58955563, 1.1517236, .27905983, .24569371, -.19753739, .24503095, .31334636, -.63810006, -1.0087097, .18285623, -.97429886, -.5300365, -.17291354, -.18879898, .04598416, -.18855612, -.14009805, -.51416831, -.73501209, .24166843, -.71959983, -.50367861, -.11603496, -.12331911, .05205844, -.12324295, -.11191791, .25114639, .22198601, -.33394605, .22142343, .34795258, -.35430121, -.44161092, .18647538, -.43805958, -.36041173, -.4297934, -.56245513, .16054818, -.55572832, -.38998834, -.24832551, -.28509038, .09585265, -.28418665, -.22780274, -.5430595, -.8236341, .38944718, -.80029361, -.61243189, .14951981, .14066735, -.02096909, .14058006, .09787438, -.26030761, -.30529244, .19969441, -.30400333, -.3002317, -.41187027, -.5222738, .09534316, -.51739668, -.31862522, .40355256, .33678618, -.40298382, .33495712, .5082054, -.75255175, -1.3894944, .21360879, -1.3060837, -.62312324, -.35507276, -.43263695, .08326328, -.42983496, -.27587102, -.72634868, -1.3135867, .24178343, -1.2397681, -.63423315, 1.1376892, .77830075, -.56460273, .75991464, 1.1348542, .0124268, .01235574, -.00318039, .01235567, .00994053, -.17977795, -.19706609, .04822297, -.19678947, -.14607826, .13164445, .12436625, -.02962392, .12429923, .10088484, 1.6590308, 1.0177654, -.82102101, .97836656, 1.6533484, .35423886, .30348345, -.21771826, .30227719, .37946561, -.39745053, -.50183363, .1115254, -.49731392, -.327836, .16236895, .15037561, -.09838355, .15022813, .17310893, .6958186, .53635626, -.29431717, .53034734, .6580808, -.46773645, -.6351434, .19230175, -.62534201, -.43819951, .10162678, .09719379, -.0235417, .09716157, .0786372, 1.2254236, .83616209, -.33996754, .81614444, 1.0069625, -.44736095, -.58481213, .11337566, -.57787362, -.35668813, -.53040638, -.77530138, .27230976, -.75698926, -.53510239, -.20596997, -.22932212, .05814066, -.22888187, -.17023123, .52440326, .4238883, -.29085357, .42070618, .54284818, -.27039535, -.31848645, .18037432, -.31706852, -.29766953, -.18413097, -.20127687, .03093094, -.20101119, -.12800461, .2078039, .18889883, -.11508173, .1886127, .21500469, -.55328036, -.78200973, .11006953, -.76662156, -.4069389, -.31123454, -.37880878, .22941672, -.37638232, -.3542231, -.65927093, -.99075659, .0725532, -.96387989, -.39805047, .07618853, .07372323, -.01368779, .07370993, .05416444, -.32168303, -.39510162, .24521041, -.39233234, -.37023295, -.52044113, -.72706987, .1447913, -.71369831, -.42806058, -.19292174, -.21699692, .20331068, -.21649757, -.24735319, -.37437819, -.47321524, .1859494, -.46891375, -.37354989, .58338252, .47340146, -.10114556, .46997579, .40985278, -.31178488, -.3671897, .05737334, -.36555753, -.22343443, -.44979931, -.62005397, .35883752, -.60953178, -.52559974, .29013402, .25421375, -.21161293, .25347515, .32904591, -.0471581, -.04825397, .01517686, -.04824973, -.04071692, -.39545673, -.49608618, .09505087, -.49186199, -.30978568, .54435985, .45148952, -.05282739, .44886723, .31517645, .13502896, .12765483, -.02143779, .12758775, .09212014, -.3240423, -.3860241, .07033396, -.38406021, -.24535759, .0219324, .02171037, -.00612701, .02170999, .01806413, -.13135208, -.1397574, .02259516, -.13966782, -.09203926, .35984601, .3131645, -.06318754, .31215909, .25388182, -.53692255, -.78844182, .26544966, -.76937333, -.53490725, .99283801, .71110543, -.33171189, .69807369, .86799243, -.30811339, -.36535786, .08606506, -.36359554, -.25376166, .35941228, .30921429, -.14533974, .30805106, .33486267, .46119255, .38419514, -.15408706, .38206689, .40319974, .25617752, .22887855, -.11355209, .22839493, .24609477, .3881024, .33229798, -.10916489, .33096708, .32038232, -.01142538, -.01148719, .00325243, -.01148713, -.00946949, -.0663644, -.06831127, .00741754, -.06830176, -.04027665, -.31479598, -.3845116, .23897448, -.38195885, -.36180949, .13188749, .12507852, -.01495072, .12501997, .08042043, .05560787, .05414142, -.02479536, .05413498, .05352512, .030057, .02968142, -.00338286, .02968064, .01828388, -.60764607, -.92798542, .17422059, -.90082532, -.50482821, -.49611384, -.65425635, .06163571, -.64598206, -.31189496, .19595611, .17969821, -.07121758, .17947373, .17618879, -.53300603, -.79124424, .33222942, -.77102963, -.57364618, .21233509, .19291969, -.10206777, .19262435, .20956595, -.12690115, -.1343304, .01431673, -.13425796, -.07725649, -.32844644, -.40427048, .22379228, -.40137809, -.36413974, -.14290203, -.15448587, .07820742, -.15432956, -.14727134, .79360616, .58955236, -.48783917, .58096063, .8501696, -.02949369, -.02992309, .01081226, -.02992205, -.0265951, .27831796, .24559747, -.16801173, .24495834, .29635848, 1.0478477, .76214648, -.12083589, .7494232, .64260005, .06339373, .06158523, -.0181729, .06157663, .05266421, -.5938279, -.89957497, .18744172, -.87422318, -.50941588, .03644298, .03580721, -.01562572, .03580536, .0346231, -.49944896, -.6882761, .15428926, -.67661922, -.42538546, -.68855705, -1.1334562, .15684956, -1.0878507, -.52982329, -.08804256, -.09199457, .02906246, -.09196501, -.07666242, 1.9829382, 1.1470288, -1.0173005, 1.0916852, 2.0000117, .16729735, .15551127, -.04810313, .15537303, .13912136, -.6912127, -1.1040963, .10905673, -1.0647441, -.47058199, -.65126541, -1.1420625, .44827384, -1.0841523, -.72448568, -.18475545, -.20375577, .06541737, -.20343072, -.16467937, -.07713194, -.07963294, .00526849, -.07961942, -.03972479, .01740949, .01725609, -.0109489, .01725586, .01879278, 1.2196292, .85291889, -.15144619, .83500453, .7666221, -.22496394, -.25705245, .16083384, -.25629232, -.25344151, -.36823714, -.46294364, .17993716, -.45892631, -.36542816, 1.2520815, .81943768, -1.1127505, .7953967, 1.5166929, .5370179, .42882249, -.44677811, .42522593, .63635551, -.45893868, -.62841097, .26653623, -.6181842, -.48242728, 2.0020663, 1.154226, -1.0311665, 1.0978758, 2.021957, -.66655028, -1.1886375, .42913662, -1.1248503, -.72515437, -.5154665, -.75240451, .33467992, -.73476249, -.56236746, .11044802, .10446565, -.09872336, .10441168, .13404643, 2.1970641, 1.2481317, -.72708268, 1.1840148, 1.9146957, -.25675981, -.2990706, .15898926, -.29791395, -.27572996, -.25669536, -.29556425, .08661654, -.29458722, -.22515881, .52513525, .4277973, -.19081609, .42481538, .47213092, .15974061, .14921456, -.03568551, .14909907, .12211926, -.52570614, -.79242904, .4633627, -.77061806, -.63505653, .80623824, .58389749, -1.1584851, .57388804, 1.1462581, .03130321, .03083991, -.01157539, .03083876, .02830834, -.10999839, -.11631162, .03812945, -.11625126, -.09735414, -.46938615, -.62540527, .12257532, -.61690292, -.37800528, -.45977529, -.62819148, .25115588, -.61810743, -.47353804, -.24400514, -.29017483, .63139896, -.28872754, -.42206299, -.22238072, -.25076942, .07736622, -.25016715, -.197057, .41225613, .35139209, -.09092106, .34990208, .31381684, .90104234, .65879176, -.33084962, .64814686, .81292475, 1.4268219, .9417433, -.29915977, .91518567, 1.0679664, -.01131892, -.01138296, .0052341, -.0113829, -.01102793, -.26064096, -.29777716, .04913562, -.29689842, -.18829434, -.35225204, -.43891739, .19332433, -.43539782, -.3633634, .27755578, .24944605, -.03488256, .24897266, .17516458, -.05249628, -.05408881, .06457515, -.05408076, -.07086811, .15270366, .14295055, -.03751237, .14284682, .12049466, 1.6640434, 1.0233537, -.74645815, .98412553, 1.6049257, .40173966, .34399464, -.08248412, .34261792, .29860467, -.2012955, -.22591292, .12425093, -.22541249, -.21593975, -.55241944, -.81052705, .20869867, -.79100738, -.50314813, 1.2167787, .81596409, -.64037158, .79464724, 1.2377371, .31859384, .2793104, -.0957355, .2785059, .26885983, .33521642, .29137558, -.12189482, .29042371, .30145462, .35923737, .31063323, -.10219573, .30954184, .29767469, .49244921, .3958823, -.63755836, .39275613, .67622457, 1.0662749, .74466625, -.46536687, .72890881, 1.0190323, .23051376, .20778465, -.11628489, .20741193, .23119707, -.05407944, -.05548359, .01328741, -.05547751, -.04267546, -.62813954, -.98581439, .18994331, -.95321309, -.53119677, -.18373719, -.2011591, .03627741, -.20088423, -.13479904, .18184522, .16675393, -.12985588, .1665455, .20478515, -.31872585, -.37518492, .04704902, -.37352689, -.21222916, .84887233, .62383422, -.43685389, .61407755, .85707136, -.05261579, -.05387151, .00796703, -.05386652, -.03533347, -.50035039, -.71049219, .26736812, -.69613862, -.51155936, -.46632367, -.61629176, .1065549, -.60837729, -.35919155, -.41396762, -.52929026, .11631992, -.52400002, -.34161659, .56533161, .45487973, -.20191777, .45131692, .50536329, -.25961398, -.30166258, .12862217, -.30053261, -.25882168, .14486225, .13424498, -.22657748, .13411544, .21186167, -.56682674, -.86925212, .32130125, -.84331965, -.59103657, .5047258, .41021238, -.29671218, .40728788, .53271157, -.43155757, -.55417099, .09413043, -.5484369, -.32729987, .34146008, .29564578, -.1397251, .29462552, .31939499, .59808647, .48391487, -.09662502, .48031482, .41040803, .2006377, .183359, -.08645239, .18311139, .1909314, .44366264, .36673917, -.32881307, .36453234, .50585757, -.35790142, -.43681098, .08310658, -.43393424, -.27716013, -.49074253, -.68009252, .1985023, -.66817166, -.45726466, .20408678, .18766665, -.03758255, .18744678, .14629023, .92820989, .65798031, -.82939554, .64517405, 1.1264053, -.14206865, -.15283617, .047763, -.15270031, -.12446275, -.17969653, -.19767623, .06598571, -.19737695, -.16212616, -.47137633, -.61977806, .0862388, -.61210679, -.33714968, -.28911174, -.34384457, .16312479, -.34212796, -.30099582, -.00763281, -.00766442, .00752714, -.0076644, -.00957215, .34143269, .29614602, -.12301585, .29514894, .30610265, 2.0719664, 1.2126712, -.52023762, 1.1565606, 1.6468943, -.11800533, -.12555996, .05344356, -.12547942, -.11417636, -.66888109, -1.1786054, .37739535, -1.1178522, -.69637225, .00530837, .0052956, -.00113352, .00529559, .00399755, .15362842, .1433758, -.05533638, .14326187, .13771924, .42707403, .35920849, -.15986646, .35742182, .38779115, -.46487744, -.65646177, .43587838, -.64361114, -.57326763, -.01626688, -.01640278, .00924814, -.01640259, -.01697843, -.027476, -.02784189, .00868304, -.02784108, -.0235796, .19189844, .17681613, -.04846485, .17661883, .15282694, .22330594, .20058569, -.20863098, .2002013, .27504459, .11559231, .10934324, -.06731977, .10928697, .12162145, -.47747168, -.62350706, .06552056, -.61616792, -.31028988, .8575602, .61127476, -1.2773277, .5997524, 1.2339205, -.24769378, -.28838884, .20749059, -.28727965, -.29418433, -.16802838, -.18300456, .04553388, -.18278242, -.13699666, .15586551, .14451023, -.11872882, .14437251, .17934753, -.39223346, -.50201694, .1843519, -.49695755, -.38422796, .80113557, .59491977, -.45929526, .58622787, .83851595, -.24191424, -.27667143, .09486526, -.27584213, -.22309338, .18432121, .16997179, -.0607232, .16978585, .16039042, -.40278614, -.52507026, .24440944, -.51896897, -.42963435, .19255907, .17757771, -.04252925, .17738371, .14664994, -.0972408, -.10219865, .03820438, -.10215654, -.08973187, -.30184289, -.35995233, .12973145, -.35809935, -.28699813, -.80655346, -1.6474722, .23707035, -1.5153139, -.67565426, -.36549402, -.45446948, .13440814, -.45089353, -.32991751, -.35756411, -.45140667, .25876731, -.44734612, -.40446637, .47443587, .39805103, -.0802688, .39601394, .33060589, -.64139492, -1.0346158, .22190249, -.99622053, -.56730211, -.35327017, -.4485241, .33766234, -.4442919, -.43843867, .38580316, .32347057, -.43729991, .32180248, .50681211, -.45169795, -.60091255, .1608026, -.5928297, -.40334168, .99548762, .72054504, -.2191243, .7081499, .75729325, 1.8464371, 1.1114614, -.59910169, 1.0651319, 1.5985756, .39118858, .33428279, -.1169012, .33290991, .32951392, -.26737891, -.31403027, .17241748, -.31268067, -.29104169, -.35472347, -.43250975, .08609581, -.42968906, -.2787815, .20292213, .18425357, -.15632118, .18396786, .2343701, .38315112, .3261751, -.17731209, .3247703, .37339587, -.4203798, -.53885631, .11049479, -.5333593, -.33927498, -.39280184, -.50479736, .20418445, -.49954177, -.39792378, .01409337, .01399707, -.00585487, .01399697, .01324928, -.6652952, -1.0134974, .08156506, -.98417555, -.41640983, .34348687, .29084513, -.60061687, .28950793, .52137387, .09977508, .09541015, -.02804863, .09537833, .08234969, .32918421, .28875075, -.07066353, .28792585, .24833301, -.49353903, -.6871202, .20734724, -.67473867, -.46571878, .77392484, .60155546, -.08642675, .59523764, .46956088, .11597648, .10966911, -.06949822, .10961197, .12319163, -.22418407, -.24900933, .02464014, -.24855216, -.13529889, .0048323, .00481904, -.00792244, .00481903, .00717903, 1.5612954, 1.0050419, -.31845894, .97326169, 1.157936, -.04439821, -.04534558, .0116988, -.04534221, -.03586197, -.18287636, -.20228267, .09051079, -.20194015, -.182256, .79991917, .59627529, -.39894571, .58778217, .79924268, .00045295, .00045286, -.00012532, .00045286, .00037187, -.35045702, -.43580879, .18862591, -.43237702, -.3591702, .48168833, .40506154, -.06181568, .40304207, .30611667, 1.2102909, .82323981, -.41739621, .803211, 1.0693487, -.59017082, -.91634263, .27345193, -.88743255, -.57538096, -.37675981, -.47045792, .12095176, -.46661229, -.32503025, .06803516, .06595983, -.01939384, .06594928, .056414, -.06959904, -.07232338, .05983358, -.07230561, -.08337973, .21772388, .1987227, -.05156152, .19844678, .16971593, 1.6833678, 1.0531665, -.41182571, 1.0155263, 1.3264794, -.34527398, -.42174351, .11413824, -.4189433, -.30078969, -.62314999, -.96597584, .1733497, -.93571986, -.51252229, .6459985, .5037073, -.31753546, .49854781, .64233524, .81444581, .60869635, -.31055794, .60017873, .74410178, -.4908851, -.63379759, .03898724, -.62695296, -.26585044, .62883787, .49981679, -.15887697, .49545104, .5008674, -.47123649, -.64525963, .2157823, -.63475768, -.45762303, -.43045432, -.56726321, .18859397, -.56012565, -.41191156, -.27800518, -.32605338, .11807445, -.32467635, -.2632877, .02531747, .02500971, -.01037265, .02500908, .02369118, .8807169, .65205874, -.24272019, .64234114, .72210916, -.47195945, -.64065297, .1776242, -.63078898, -.42931939, .49944805, .41097781, -.16469959, .40838569, .43474479, 1.5756966, .961067, -1.4644167, .92300166, 1.9373732, -.62905627, -1.0322172, .31250029, -.99119942, -.62770146, -.43233827, -.55683313, .10072474, -.55093416, -.33517466, 1.2574772, .8430771, -.49561225, .82102893, 1.1616022, -.48191348, -.65985959, .18026216, -.64912206, -.43747936, .96451145, .70037123, -.24978434, .68855868, .77458662, .10390185, .09900718, -.04141969, .09896877, .0963447, .17782342, .1633702, -.12549832, .16317469, .199472, .90103943, .64142578, -.9021328, .62924252, 1.1356975, -.31685644, -.37539119, .06613533, -.37359927, -.23680791, -.36576202, -.45473746, .13299164, -.45116409, -.32891512, .3946375, .33626288, -.13179614, .33483111, .34496614, -.05564079, -.05737795, .05191923, -.05736891, -.06850384, .07746079, .07480482, -.0207498, .07478964, .06291235, -.62763543, -.9961985, .21906113, -.96162467, -.55676262, -.67538326, -1.2113217, .40482453, -1.1450707, -.71746238, -.19995235, -.22180501, .05561306, -.22140782, -.16444472, .03704984, .03639979, -.01443181, .03639789, .03409112, -.51650857, -.76312406, .39772971, -.74408523, -.59647333, .98171505, .70792313, -.2820108, .6954651, .81612286, -.2277101, -.25742923, .07554275, -.25678472, -.19860757, -.6677642, -1.1054215, .21255838, -1.0599649, -.57444902, .82422176, .61613989, -.27973166, .60753116, .724358, .25536475, .22807412, -.12009092, .22758927, .25020003, .13012242, .12202695, -.10400311, .12194308, .15214588, .09729097, .0929002, -.04630879, .09286719, .09570754, .05400697, .05259462, -.0289588, .05258847, .05528026, .02411581, .02383889, -.00908, .02383836, .02194016, -.49513117, -.69291152, .22291771, -.68003738, -.4781216, -.46304413, -.61997017, .15285491, -.61125577, -.40319771, -.18833279, -.20618262, .02966943, -.20590112, -.12815347, -.5643813, -.85531534, .28315697, -.83116451, -.56502478, -.08363191, -.08715286, .02552147, -.08712817, -.07094034, -.47398851, -.65328525, .23517562, -.64221102, -.47277297, -.26479649, -.30521694, .07162969, -.30419273, -.21576575, -.19257033, -.21268103, .05290569, -.21233169, -.15772616, -.42206694, -.53104639, .06193518, -.52640571, -.28048524, .27418477, .24533224, -.05768892, .24482746, .20546428, -.32017836, -.38448403, .10816775, -.38234583, -.28095531, -.11235979, -.11823478, .01483804, -.11818361, -.07209018, .0987543, .09404778, -.06959045, .09401042, .11072114, -.01475371, -.0148639, .00745724, -.01486376, -.01480711, -.31418685, -.38182471, .20098822, -.37941624, -.34108205, .11799586, .11146733, -.07163686, .11140716, .12588289, -.30637716, -.3637908, .09558214, -.36200816, -.26180213, -.10448745, -.11077222, .0847169, -.11070926, -.12275602, 1.2126604, .82725729, -.37262864, .8074287, 1.0310068, -.39751424, -.50920053, .1695837, -.50403422, -.37702762, .41730243, .35889083, -.04510874, .35753432, .25045566, -.73638278, -1.3570324, .25051513, -1.2760582, -.6476749, .55540527, .45719388, -.06897275, .45432127, .3491209, -.30721199, -.36229287, .0687354, -.36065586, -.23497893, .10505872, .10057482, -.01463721, .10054293, .06862002, -.45382873, -.60844735, .18506012, -.5998169, -.42400951, .39661504, .33831796, -.11781938, .336897, .33342259, -.69147439, -1.1808634, .21853097, -1.1263227, -.59342395, -.24741436, -.28045005, .04610236, -.27971718, -.17804686, -.36931264, -.45432927, .08596562, -.45109528, -.28622949, 1.3455919, .89213672, -.41397432, .86750981, 1.1444848, -.47951866, -.66313969, .22918427, -.65166375, -.47236235, .71520118, .54505314, -.38833921, .53840534, .73513296, -.25160521, -.28897301, .0883052, -.28805159, -.22360689, -.21586978, -.24025429, .03882649, -.23979626, -.15352553, 1.9366852, 1.1229873, -1.1507855, 1.0692654, 2.0513864, -.54191503, -.81867924, .37498983, -.79590578, -.60390778, -.60797965, -.93124681, .18049629, -.90361689, -.51100536, .35254522, .30358918, -.15896092, .30246118, .34060421, -.24892482, -.28657929, .10995939, -.28563373, -.23885421, -.73517526, -1.2292916, .10907361, -1.176769, -.49035486, -.09636889, -.10089282, .0205596, -.10085744, -.07255035, -.38028061, -.49216014, .32033143, -.4867466, -.45249381, -.18871952, -.20901105, .07789747, -.20864818, -.1770363, -.06614495, -.06841276, .02905101, -.0683998, -.06334732, -.62411409, -.97774934, .19561035, -.94566456, -.53413365, .27120071, .24281427, -.05949607, .24232028, .20607879, .85585921, .61733359, -.8366515, .60648742, 1.0701872, -.16357957, -.17802555, .05246843, -.17781323, -.1410789, -.17076048, -.18878456, .15029066, -.18846812, -.20617955, .52263905, .42910139, -.12966468, .42633288, .41376314, .08575312, .08269529, -.01334224, .08267713, .05811026, -.14597352, -.15759015, .05691445, -.15743625, -.13435904, -.12458284, -.13295752, .05161702, -.13286377, -.11701632, .11494773, .10876673, -.06680556, .10871137, .1208596, -.04256321, -.04346356, .01520077, -.04346039, -.03804709, -.45536737, -.58326447, .0570685, -.57735027, -.28711117, .47626078, .39404241, -.17708947, .39169372, .43149006, -.24311822, -.27871269, .10466917, -.27784737, -.23129235, 1.3476211, .87277805, -.85701703, .8459194, 1.4601082, -.37467502, -.46905263, .13720983, -.4651302, -.33773409, -.07708257, -.08018609, .03357444, -.08016527, -.07361794, -.01385604, -.01394893, .00470857, -.01394883, -.01218239, -.72719396, -1.3517217, .29532086, -1.2688687, -.67848703, .44571038, .37514843, -.10875349, .37329763, .3509077, -.57534299, -.86862449, .23022732, -.84453497, -.53417083, -.0754074, -.07835789, .03140045, -.07833865, -.07094655, .75644486, .57398438, -.29853542, .5667599, .69907988, -.6168851, -.94901454, .17024164, -.92029119, -.50602051, -.46962782, -.64565932, .24080845, -.63488224, -.47359064, .72610874, .56301499, -.16076249, .55698784, .55344273, -.10814219, -.11418864, .03518046, -.11413233, -.09370741, .46426286, .38453431, -.20407356, .38226845, .44474889, -.31314903, -.38903031, .44926615, -.38599444, -.44498491, -.16918239, -.18372589, .03236222, -.1835178, -.1228173, .01922199, .0190669, -.00221987, .01906669, .01179374, .69393246, .54025406, -.19213669, .5346523, .56984696, -.47386179, -.65599758, .2572133, -.64457328, -.48701491, .1456625, .13616929, -.06689435, .13606627, .14159187, -.70347527, -1.3807153, .55747473, -1.2813738, -.82019595, .00383646, .00382933, -.00148007, .00382933, .00351878, -.1768471, -.19414626, .06286135, -.19386472, -.15783495, -.13496417, -.14390135, .02406649, -.1438028, -.09571057, .37122856, .32016044, -.09463934, .31899469, .29657063, .60928212, .48199407, -.25714196, .47761034, .57581097, -.41880282, -.56645291, .42755189, -.55793354, -.53130757, -.42053034, -.55369854, .22244575, -.54677554, -.42849879, -.15715324, -.17157183, .09775847, -.17135169, -.16902218, -.09228049, -.09672915, .03634801, -.09669343, -.08522692, -.08995605, -.09397528, .02353244, -.09394536, -.07248574, -.44885439, -.58736729, .11330178, -.58034539, -.35740385, -.30551624, -.37255546, .28556142, -.37012293, -.37635647, -.03486108, -.03547902, .01599897, -.03547719, -.03387931, -.2946841, -.35200734, .16882458, -.35016057, -.30836118, .13931681, .13093625, -.043177, .1308523, .11878543, -.19643866, -.21786169, .06304702, -.21747313, -.16945309, .97520508, .69987126, -.35556831, .68719635, .87777185, -.17457684, -.19174755, .07274891, -.19146657, -.16428954, -.20695989, -.23150806, .07894116, -.23102399, -.18910454, .09175883, .0878384, -.0436685, .08781049, .09026055, -.6726609, -1.1472366, .26916505, -1.0944988, -.62452094, -.62009308, -.98610435, .24679913, -.95160491, -.57468403, .9143014, .67645561, -.18494444, .66632846, .67621274, -.40823923, -.51398966, .0825203, -.50947217, -.30186082, .49533274, .39542199, -.86503165, .39209712, .75153986, -.41646708, -.57351884, .65089757, -.56384747, -.60893088, -.24832842, -.28228688, .05344114, -.28151545, -.18749348, -.4291716, -.56977636, .23074298, -.56222093, -.43968348, -.52430276, -.75504356, .23433078, -.73856158, -.50505795, -.35502192, -.43176704, .07773553, -.42902312, -.26960004, .73259343, .57037824, -.12427138, .56446619, .51094683, -.17483804, -.19012333, .02844008, -.18990093, -.12024792, -.47873773, -.65338446, .17767818, -.6429686, -.4334641, -.42915684, -.55172088, .10159999, -.54596001, -.33449162, .07254078, .07037383, -.00953335, .07036304, .04646722, .13886356, .1304756, -.04616793, .13039122, .12120364, 1.9186054, 1.103383, -1.5492848, 1.049048, 2.2510105, .81907795, .58317424, -1.9232965, .57210785, 1.3716466, -.44373902, -.58942003, .17882664, -.58157592, -.41295794, .132741, .12487617, -.05473605, .12479856, .12448142, .16258569, .15136781, -.04905618, .15123894, .13739243, .33106334, .28830953, -.11710154, .28739283, .29498839, .12174071, .11518179, -.04300579, .11512293, .10842836, .18150841, .16802615, -.04268629, .16785944, .1411575, -.55181879, -.78094168, .11503991, -.76546234, -.41224668, .31092362, .27182326, -.14438697, .2710067, .30335779, .4898463, .40123648, -.24767545, .39858616, .49167434, .04020691, .03953763, -.00461499, .03953577, .02461883, .69779258, .53039763, -.52893557, .52380457, .80160759, -.41938765, -.528942, .07014561, -.52422331, -.2911302, 1.5500093, .99414196, -.37744285, .96219521, 1.2195041, -.23120537, -.26211582, .08002466, -.26142923, -.20452665, -.5337862, -.75033499, .13270693, -.73602772, -.42288223, -.34890203, -.42568049, .10060014, -.42288671, -.29041019, .09510716, .09097446, -.03856102, .09094454, .0886887, -.42043796, -.53892978, .11036636, -.5334321, -.33917476, -.12595244, -.13532881, .10828799, -.13521259, -.15089487, -.31032226, -.37071943, .11203737, -.36877261, -.27840237, .16780569, .15577563, -.05594822, .15563205, .14660312, -.31007558, -.3713279, .12483464, -.36932432, -.28846962, .78557461, .5899677, -.33984865, .58198177, .74856607, 1.0796956, .75859235, -.34035392, .74306646, .92580842, .27211903, .24110835, -.14370344, .24052108, .27712242, -.52540352, -.73146819, .1256489, -.71828911, -.41088935, -.60747742, -.97426243, .32098258, -.9389528, -.61876239, -.43523416, -.56928385, .14331067, -.56250104, -.3786618, -.66214695, -1.0529658, .14597953, -1.0161294, -.50397645, -.37668723, -.47345942, .14901598, -.46935893, -.34839737, .27174319, .24340092, -.05638588, .24290944, .20269322, .0586777, .05722555, -.00890276, .05721956, .03943062, .27677671, .24694797, -.06897282, .24641357, .21944331, .0637317, .06189966, -.01870783, .06189089, .05336478, 1.0814839, .75717338, -.38058322, .74136982, .96199595, -.65943831, -1.0712433, .19220718, -1.0303401, -.55087024, -.18011189, -.19751596, .0493431, -.19723615, -.14738289, .46231409, .37982102, -.33361411, .3773866, .5224558, -.56942431, -.85763161, .24175842, -.83411749, -.53921405, -.35493969, -.44571691, .2330656, -.44188734, -.38869215, -.37534646, -.48492178, .33926643, -.47965973, -.45724101, -.41212714, -.53947528, .22608188, -.53301102, -.42506244, -.89109482, -1.8088793, .10306442, -1.6661471, -.54701034, .84612011, .63633926, -.17695167, .62780994, .63277537, -.12382645, -.13164325, .03240452, -.13156107, -.0997901, 1.1076252, .76777951, -.44561598, .75085943, 1.0302093, .3311406, .2893973, -.08957051, .28852346, .26981948, .02920011, .02877719, -.01654502, .02877617, .03044309, .07314809, .0706297, -.03411092, .07061526, .0714677, -.35913427, -.43718768, .07348821, -.43438211, -.26663703, -.18609667, -.20641976, .09821248, -.20605065, -.18947764, .50919209, .4142026, -.26402946, .41127427, .51540492, -.26690924, -.30841311, .07685443, -.30734196, -.22206257, .02042216, .02021503, -.01102855, .02021468, .02095321, .7002997, .53833717, -.31546173, .53217977, .67636561, 1.2941374, .88132159, -.23467786, .86000984, .92289924, .00143183, .00143077, -.00093378, .00143077, .00156442, .80324755, .60017028, -.3506458, .59175704, .76771346, -.34282415, -.4202402, .13739525, -.41735056, -.31845507, .17602685, .16229011, -.08993897, .16211168, .17730129, -.18038496, -.19597926, .02026541, -.19575488, -.10966347, -.30741981, -.36447461, .08698474, -.36271998, -.25428003, -.07797062, -.08103614, .02503701, -.08101606, -.06727053, .80370036, .60024571, -.3553498, .59180636, .77142102, .49751879, .41508697, -.07680567, .41282555, .3362643, -.12394241, -.13270282, .08092548, -.13259972, -.13547268, .0907716, .087107, -.0276548, .08708235, .07695441, -.58551063, -.89305963, .23048889, -.8670732, -.54065039, -.4436628, -.58751169, .16649328, -.57985969, -.40319108, -.01064029, -.01069679, .00486865, -.01069674, -.01033035, -.76349743, -1.3671158, .14976747, -1.2927466, -.55892588, -.41942955, -.54623956, .17243998, -.53993799, -.3929422, .07188648, .06969326, -.0125059, .06968211, .05056071, -.45634065, -.62180242, .25193005, -.6119925, -.47166041, .66568185, .5216652, -.19801412, .51653357, .55986914, -.04302486, -.04399902, .02521296, -.04399534, -.04536256, -.59939806, -.92172055, .2130805, -.89387717, -.5349766, -.46198986, -.61219946, .12241772, -.60418739, -.37386349, -.44136021, -.58987474, .21532139, -.58168434, -.43775843, .15531067, .14510439, -.04349201, .14499271, .12802084, -.1605713, -.17470648, .05934997, -.17449939, -.14518735, .45124764, .38064244, -.08599328, .37881183, .327171, -.28769159, -.33737083, .08922817, -.33594827, -.2453553, -.30543375, -.35768158, .05171439, -.35619939, -.21289158, -.00282118, -.00282495, .0008457, -.00282495, -.00237886, .04404652, .04315387, -.01374418, .04315085, .03764067, -.66277922, -1.0501904, .13883223, -1.0140043, -.49592883, .94359123, .67929441, -.41216658, .66721909, .90203527, -.60937317, -.98748869, .35184524, -.95015357, -.63931679, -.35004111, -.42969838, .12236166, -.42670244, -.31067369, -.17253268, -.18766663, .03247046, -.18744569, -.12457199, .56866536, .4582866, -.17765109, .45474887, .48615021, -.64104987, -.98195742, .11824463, -.95281519, -.45976054, .13859401, .13062588, -.0288178, .13054959, .10344907, .13036798, .12305608, -.0368677, .12298778, .10781338, -.22676671, -.25854605, .13248042, -.25780633, -.2388435, .371507, .32034478, -.09523099, .31917562, .29733596, 1.2071602, .81655811, -.51291364, .7961247, 1.1434083, .89070081, .66413745, -.16685752, .65469612, .64211551, -.60394234, -.96084765, .30641235, -.92716896, -.60688873, -.26604872, -.30950626, .11235654, -.30832857, -.25148779, .65899032, .52076457, -.14448362, .51598551, .50065155, -.17951486, -.19802609, .08409235, -.19770856, -.17565578, .68945354, .53699955, -.19838414, .53145064, .57347653, .01497978, .01488627, -.00158129, .01488618, .00891971, -.65161336, -1.0159802, .13055012, -.98332859, -.48039198, .3362121, .29120925, -.15401533, .29020943, .32654287, -.37880467, -.48944216, .31617826, -.48412663, -.44936325, .63868806, .51567573, -.06375307, .51176294, .37328131, .06884034, .06676215, -.01600538, .06675169, .05333276, -.17402133, -.19051874, .05593966, -.1902585, -.15019366, -.1912367, -.21227567, .08358483, -.21189074, -.18285212, -.43253467, -.55538081, .09223564, -.54963788, -.32557936, .1682158, .15649153, -.04134298, .15635548, .13275629, -.6224555, -1.0180922, .32847661, -.97814722, -.63374862, -.53997585, -.76271418, .13218644, -.7477607, -.42558717, -.63427137, -1.0088441, .2064307, -.97352075, -.54969042, .13276369, .12501016, -.04742027, .12493475, .11868182, -.42174769, -.54921003, .16462506, -.5428784, -.38833851, -.24126988, -.27460897, .07270986, -.27384373, -.20380265, .17335348, .16131178, -.03141992, .16117251, .12360425, .4376146, .36594902, -.18691447, .36400544, .41522693, -.59768424, -.90289008, .17116733, -.87777946, -.49636158, -.40429612, -.53254623, .30793577, -.52586762, -.46518935, .43090041, .36636087, -.07523678, .36475822, .30343896, .62725403, .48691579, -.4924925, .48174928, .72907496, -.40588037, -.52052606, .14833886, -.51519516, -.36561753, -.03740417, -.03810963, .01568498, -.03810741, -.03527373, .27306715, .24349892, -.08080338, .2429667, .22926239, -.49496985, -.67615602, .13869254, -.6653144, -.40808146, -.79113899, -1.4054818, .10558115, -1.3310049, -.50937855, -.43097213, -.55555191, .10576207, -.54962668, -.33995344, -.4032534, -.5112142, .11204773, -.50645073, -.33153525, -.33314549, -.40137054, .08986394, -.39905799, -.27120297, .2407433, .2169849, -.08291416, .21659496, .21261262, .24101098, .21640297, -.11760103, .21598518, .23905891, .20000383, .1830665, -.07461323, .18282781, .18140148, -.22538443, -.25428686, .07188698, -.25367093, -.1940183, -.32149179, -.39624663, .27840685, -.39337475, -.38608527, .87040729, .62890561, -.68543035, .6179705, 1.0126968, -.09850354, -.10349707, .03284711, -.1034549, -.08606177, -.13904173, -.15016113, .08736364, -.1500131, -.15004344, 1.8567607, 1.0760962, -1.6345595, 1.0245247, 2.2420615, .25420233, .22854457, -.06799885, .22811392, .20636223, -.42601637, -.55519167, .15490018, -.54875438, -.38309942, -.42006046, -.54070736, .12484348, -.53500515, -.35318845, -.34038517, -.41888298, .1670363, -.4158917, -.33826784, .10732772, .10202788, -.0504268, .10198429, .10512477, 2.4165453, 1.2773864, -2.1690413, 1.1947914, 2.9369456, .58770343, .45938875, -.60368314, .45477576, .74711106, .22404849, .20314341, -.08197069, .20281894, .20189438, .06774159, .06578282, -.01213391, .06577339, .04811131, -.05276523, -.05416643, .01965723, -.05416023, -.04783539, -.05982267, -.06179001, .04541919, -.06177923, -.06875965, -.09655933, -.10173287, .06111632, -.1016867, -.10445403, .29990152, .26387987, -.11665314, .26316113, .27582137, -.28520689, -.33843405, .16472851, -.33678811, -.29925374, -.22646097, -.25959206, .18367603, -.25878722, -.26608664, -.43394393, -.55488155, .0799881, -.54933148, -.31115316, -.13630458, -.14645735, .05782735, -.14633144, -.1290411, -.61471548, -.98815853, .29978608, -.95200201, -.60962568, .27042842, .2433076, -.03873781, .24285529, .17827477, -.3037132, -.3548468, .04833258, -.35341891, -.20736356, 1.3275166, .89183862, -.30062782, .86874653, 1.0194823, -.12083708, -.12842762, .03783723, -.12834821, -.10338319, .17329023, .16132223, -.02974094, .16118461, .12133264, -.55179382, -.87702595, .62383453, -.8464111, -.72424308, -.66512486, -1.1011503, .21960267, -1.0558538, -.5791948, -.30685317, -.36060847, .05895314, -.35904713, -.22308278, -.33302732, -.39716754, .05925522, -.39512139, -.23599644, .23219186, .20987025, -.08413126, .20951333, .20855813, -.35602639, -.43601762, .09821201, -.43304672, -.29200234, -.14141661, -.15399593, .17806271, -.1538097, -.19239832, -.09296937, -.09735512, .02855205, -.09732065, -.07902825, -.4456744, -.58277989, .11773478, -.57585032, -.36029374, 3.1329873, 1.621228, -.46042711, 1.5096314, 2.0830645, -.2042655, -.22627432, .04202093, -.22587992, -.15192477, -.06201938, -.06392066, .01862458, -.06391094, -.05232675, .34632572, .29817015, -.18601059, .29705915, .35468737, .21401773, .19464961, -.08608469, .194358, .19904524, .45136307, .37960871, -.1031863, .3777189, .34772402, .37285458, .31822787, -.18611474, .31690065, .3726461, -.49299048, -.66634587, .11428475, -.65636839, -.381562, -.41513381, -.520888, .06491106, -.51644384, -.2817788, -.37195651, -.46926504, .18495104, -.46506769, -.37127044, -.18813731, -.20902544, .10218763, -.20863978, -.1934013, -.42736786, -.58745043, .51011007, -.57765619, -.57117064, -.49915342, -.6604927, .06368884, -.65193616, -.31660698, 1.3670951, .91160504, -.30307787, .88712478, 1.0424628, -.49474038, -.7113154, .36275486, -.6959238, -.56208153, .7613852, .58098624, -.22289997, .57396562, .63696605, -.17319968, -.19279796, .22909499, -.1924292, -.23954103, .45265479, .378838, -.13576636, .37684438, .38175565, .93930293, .68862464, -.21360169, .67768683, .72235166, .22161701, .20016359, -.13135934, .19981818, .23454835, .15032335, .14023016, -.06996913, .14011732, .14677873, .3406974, .29533657, -.13054502, .29433411, .31177597, -.16307222, -.17810303, .07541958, -.17787248, -.1588881, -.54862673, -.79377698, .17620597, -.77600914, -.47337085, -.32634377, -.3857118, .04692816, -.38392179, -.21541274, -.15373157, -.16730443, .08605123, -.16710499, -.15962629, .9011882, .66456837, -.23643424, .65440352, .72687063, -.34509771, -.42555341, .16069105, -.42245448, -.33700417, -.16367701, -.17758625, .03848037, -.17738952, -.12727649, -.56470257, -.89463205, .4988797, -.86382843, -.68268724, .20397399, .18495038, -.1729023, .18465524, .24321673, -.3193625, -.38720281, .16127484, -.38481872, -.32042138, -.56406387, -.92260115, .72246827, -.88640048, -.77179468, .58923877, .46784371, -.28158811, .46371946, .58041993, -.59126872, -.86740855, .12090897, -.84653375, -.43888707, -.21570205, -.24209371, .07172638, -.24155697, -.18828071, -.52204454, -.74049644, .18677028, -.72562754, -.46692912, -.28620727, -.34438183, .28781731, -.3424245, -.36127347, -.24656188, -.2814314, .07253135, -.28061238, -.20660264, -.67681799, -1.1496091, .24645424, -1.0975441, -.60893372, -.26112484, -.3008458, .07808969, -.2998428, -.22000879, -.27114812, -.31363221, .07156776, -.31252748, -.21913926, .54582258, .45257873, -.05252811, .44994244, .31514343, .48766246, .4031505, -.15344342, .40072711, .41789994, -.24193248, -.280044, .18522885, -.27904766, -.27885322, -.21380309, -.24358292, .20279659, -.24289395, -.26467091, .59744826, .49250182, -.03553001, .48945219, .29381592, -.05153952, -.05300573, .04300642, -.05299877, -.06113379, -.43004264, -.59907074, .6310609, -.5882379, -.61570796, -.26585761, -.31380878, .22782518, -.31237523, -.31815833, .28391941, .25156111, -.10242141, .25094826, .25464607, -.00320243, -.00320713, .00070621, -.00320713, -.00243766, -.63603531, -1.0387713, .27203655, -.99825208, -.60377237, .25766098, .23140991, -.06735573, .23096518, .20757129, -.45820457, -.59541584, .08024045, -.58866089, -.3229838, -.18203541, -.19956372, .04409411, -.19928289, -.14296864, -.02065128, -.02085557, .00614934, -.02085524, -.0173747, .01775183, .01759911, -.00752808, .0175989, .01680352, -.30643849, -.36765483, .1481102, -.36563012, -.30299389, -.081806, -.08524442, .03003035, -.08522034, -.07379953, -.35109893, -.44246114, .28372612, -.43854089, -.41203057, .29228106, .25830425, -.10052206, .25764797, .25800666, -.12973689, -.13987802, .12660355, -.13974606, -.16213158, -.35944159, -.44852369, .17236722, -.44487993, -.35447078, -.19235849, -.21056665, .02480166, -.21027986, -.12243657, .3134934, .27464565, -.11503931, .27384613, .28277718, .24534764, .22013787, -.1090143, .21970717, .2358807, .06643198, .06432928, -.03325946, .06431819, .06646095, .67429179, .50146604, -1.718607, .4942113, 1.1604705, -.56591225, -.83989574, .20500954, -.81846328, -.50827735, -.56831985, -.85025465, .22302449, -.82768488, -.52423105, -.53897792, -.75946483, .12838518, -.74478013, -.42094848, -.37473684, -.46835206, .12996716, -.46449282, -.33172037, -.30393718, -.36528954, .1697736, -.36323935, -.31537162, -.72871779, -1.1633648, .07100675, -1.121995, -.42248969, .73993752, .56423112, -.28858573, .55737846, .68113257, -.63001589, -.92832045, .07789064, -.90547362, -.39543286, -.49481042, -.70976714, .34837384, -.69460179, -.55460579, -.12128416, -.12906781, .04379504, -.12898462, -.10881473, -.23925667, -.26926298, .03771911, -.26863752, -.16284453, -.28141339, -.33034739, .11180667, -.3289365, -.26065281, -.58607202, -.8867257, .20466395, -.86188206, -.51998535, .61486753, .49307432, -.12233617, .48909245, .45225426, .03891069, .03825868, -.00637663, .03825686, .02682788, -.07801938, -.08098829, .01887476, -.08096947, -.06124991, -.26574199, -.30695533, .07809122, -.30589447, -.22259609, .55197529, .44772379, -.16106236, .44447072, .46126918, .08014856, .0772757, -.02407156, .07725855, .0676252, .53949228, .43100368, -.42056321, .42740402, .62557192, .31646791, .27733569, -.10418963, .27653203, .27532012, -.38349065, -.49156583, .23031385, -.48655163, -.40764914, -.11154803, -.11815096, .04400122, -.11808586, -.10307172, -.33397972, -.40069318, .07436371, -.39848681, -.25504124, -.34494433, -.41725684, .07966411, -.41474851, -.26664303, -.04882811, -.05004658, .02132962, -.05004152, -.04667858, -.66432154, -1.0115412, .08200189, -.98233962, -.41674478, .52050265, .43235813, -.06925066, .42988738, .33478546, -.74032013, -1.3684431, .24557522, -1.2860082, -.64568081, 1.2339346, .82646407, -.59570105, .80474385, 1.219591, .19545939, .18091742, -.02399317, .18073731, .12238933, .24345009, .2190794, -.08809054, .21867369, .21857126, -.30556093, -.3698442, .21518371, -.36760659, -.34251401, .87359409, .6485596, -.23214682, .63906773, .70762641, -.24616913, -.27982425, .05720681, -.2790599, -.19068431, .56084516, .4533764, -.16931747, .44997509, .47403009, 1.4051818, .92171756, -.41174286, .89495768, 1.175909, -.37948801, -.48217879, .19474988, -.47760011, -.38279633, -.19345345, -.21595798, .11683694, -.21552271, -.20602553, -.13327704, -.14214321, .02763418, -.14204499, -.09938688, -.19513424, -.2178728, .1104413, -.21743226, -.20336498, -.45336283, -.61008216, .20274556, -.60121035, -.43680847, .19905702, .18149646, -.1180615, .18123871, .21071612, .31701275, .27459232, -.24571319, .27365014, .36689121, .21517695, .19551065, -.09133669, .19521163, .20374592, -.31500546, -.37694124, .10656824, -.37492464, -.27654426, -.23886428, -.27613613, .1915309, -.27517089, -.27959136, -.11233747, -.119213, .05476638, -.11914292, -.11139468, -.65407609, -1.0550305, .18964903, -1.0158838, -.54543842, .23118901, .20950059, -.06747548, .20916214, .1932132, -.1629926, -.1762519, .02808787, -.17607234, -.11427771, .79802628, .60927836, -.14947944, .60194532, .57528354, .07555839, .07326083, -.00813483, .07324919, .04528782, -.29706245, -.35368369, .13760561, -.35189589, -.28959244, -.72628919, -1.1778543, .08714156, -1.1331839, -.45132718, -.59367952, -.92112343, .25838665, -.89215596, -.56684989, -.20404943, -.22927129, .1208015, -.2287531, -.21586937, -.52120876, -.75620574, .27790989, -.73902735, -.53249942, .05033043, .04909361, -.02844995, .04908854, .05243134, -.29237643, -.35807637, .47522164, -.35563591, -.43311541, .33116746, .28590579, -.21937196, .28487922, .36372136, -.41170629, -.5238152, .1055138, -.51878584, -.32948685, -.63828799, -.99745234, .15843317, -.965077, -.50540145, -.10852217, -.1145968, .0345321, -.11454016, -.0933462, -.62646586, -1.0304966, .33150961, -.98915117, -.63842073, .29006217, .2571871, -.08128721, .2565679, .23915427, -.20755921, -.23202555, .07356903, -.23154608, -.18507013, -.45843701, -.61452581, .17006626, -.6058187, -.41502013, -.57597609, -.85161759, .16821868, -.83029147, -.481472, .04791798, .04670435, -.05588205, .04669922, .06354769, 1.1140451, .77362432, -.39965379, .75674035, .99733217, .35442451, .30496469, -.16100425, .30381952, .34327192, -.30706359, -.3659546, .11018847, -.36408372, -.2749208, .01808864, .0179398, -.00431744, .0179396, .01413696, -.60604805, -.9519488, .25558281, -.92035188, -.57260955, -.47452351, -.65396514, .23265321, -.64288539, -.47143104, .03411148, .03356251, -.01259434, .03356103, .03083204, -.07142736, -.07441505, .08533555, -.07439423, -.09549114, -.13154852, -.14018265, .02747933, -.14008828, -.09834132, -.62578576, -.88953038, .04548333, -.87145497, -.32903684, -.54757952, -.84248913, .44234536, -.81697698, -.64253278, .1637329, .15304981, -.02654703, .15293374, .11248793, -.4752366, -.63874586, .13538532, -.62953183, -.39397964, .01884909, .01868321, -.00573015, .01868297, .01596831, -.1200169, -.12775865, .04966883, -.12767549, -.11268504, -.55066135, -.76724507, .087634, -.75335539, -.37597354, -.23388905, -.26350406, .04859864, -.26288086, -.17453852, .16733075, .15538363, -.05492886, .15524162, .14543224, -.24782997, -.28972217, .2529601, -.28854769, -.31438602, -.26174758, -.3045396, .12880019, -.30337895, -.26035781, -.71588996, -1.2542213, .20860676, -1.1908268, -.59797584, 1.1727991, .80654265, -.37037706, .7880042, 1.0062528, -.33457229, -.4067131, .12284605, -.40414026, -.30184945, -.00193528, -.00193703, .00053265, -.00193703, -.00158606, -.12463975, -.13330898, .06790085, -.13320858, -.12825455, -.22502702, -.25179013, .04124696, -.25126096, -.16105112, -.43691789, -.58198797, .21613564, -.57409059, -.4353635, -.32437967, -.38294517, .04671202, -.38119255, -.21421767, .0610175, .05930711, -.02091476, .05929912, .05380185, -.52215097, -.72854958, .13774574, -.71524927, -.42192324, -.18028465, -.19698008, .03506657, -.1967228, -.13160738, -.56020464, -.81533228, .16414995, -.79650289, -.46880049, .07701309, .07456865, -.01046854, .07455572, .04989019, -.4750142, -.65555976, .23728386, -.64435686, -.47486533, -.37174818, -.46250316, .11951458, -.45884551, -.32086045, -.14379597, -.15490357, .05053412, -.15476073, -.12785058, -.33433065, -.40662203, .12589755, -.40403667, -.3041818, .43777177, .36727412, -.15315095, .36539361, .3886408, -.42384435, -.54687488, .12396355, -.54099947, -.35446955, 2.3286877, 1.266299, -1.4264423, 1.1912351, 2.4917372, -.10755589, -.116195, .70570879, -.11607948, -.2536927, -.32505471, -.38866237, .08022933, -.38660108, -.2568968, .6430193, .50937731, -.15644778, .50479796, .50576542, -.02916294, -.02958909, .01222266, -.02958805, -.02749705, -.14202469, -.15306323, .0586341, -.1529204, -.13324042, -.49993967, -.67956219, .11535547, -.66900637, -.38633833, .50595567, .41368356, -.21097591, .41090154, .47624373, -.44157422, -.57764708, .12804833, -.57075842, -.36824522, .1977206, .18065707, -.09933826, .18041203, .19803873, -.56356418, -.83113681, .19258517, -.81059027, -.49641687, 1.0006511, .69854209, -.78505558, .68372653, 1.1627828, 1.2057068, .82210315, -.39678269, .80234749, 1.0487904, .24652153, .22211218, -.07101267, .22171024, .20512811, -.04790089, -.04915003, .03641648, -.0491446, -.05508141, .15522884, .14495182, -.04703418, .14483852, .13135989, .07175052, .06957892, -.01177297, .06956797, .04949052, .54797755, .4387557, -.33223197, .43516301, .58434004, -.30887057, -.3727549, .17603496, -.37056818, -.32264677, -.45451581, -.60069191, .13085035, -.59297729, -.37812404, .77121364, .57993385, -.373342, .57215398, .76294884, -.31715249, -.37584449, .06644612, -.37404464, -.23732598, -.02251018, -.02274116, .00426729, -.02274076, -.01629222, .86506483, .64873029, -.166787, .63986126, .62964607, .27920442, .24757064, -.1098991, .24697501, .25780395, -.16780749, -.18289662, .04934262, -.18267082, -.14059125, -.42845453, -.55207963, .10960382, -.54621033, -.3426797, .02776211, .02740527, -.00827402, .0274045, .02336417, .14395688, .13526741, -.03436767, .13518006, .11251617, .3819375, .32415477, -.22152545, .32270561, .40130947, -.20414445, -.23017274, .1519752, -.22962123, -.23310914, -.42852011, -.57253543, .27074448, -.56460271, -.46328049, -.28122228, -.32706559, .07105758, -.32582573, -.22399928, .77587467, .58943555, -.23157891, .58208049, .65328705, -.21408721, -.24228755, .1325768, -.24167033, -.22991095, -.42270633, -.5491531, .15197741, -.54293455, -.37870018, -.32252737, -.39730027, .26610493, -.3944361, -.38112902, .14527998, .13575976, -.07214054, .13565588, .14494625, -.30306188, -.35596113, .06347804, -.35443015, -.22676292, .78586715, .59766323, -.19976323, .59026271, .62721236, -.40255526, -.51028533, .11332277, -.50553393, -.33240387, -.15995616, -.17365697, .04924995, -.17346164, -.13608573, .02366448, .02340901, -.00600155, .02340855, .01887248, -.55138361, -.81593512, .24152275, -.79541699, -.52759246, .26282695, .23557989, -.06906473, .23511023, .21210067, -.46382619, -.63459868, .24090026, -.62432279, -.46974187, -.27765198, -.32380274, .09043777, -.32253025, -.24069134, -.25639371, -.2954045, .09055007, -.2944192, -.22833781, -.7448588, -1.3224353, .17011573, -1.252506, -.57364181, -.64967696, -1.0348946, .17338872, -.99843094, -.52700563, -.56631178, -.92534445, .69228997, -.88918071, -.76291545, 1.1090896, .74963186, -1.0368868, .73079915, 1.3663591, 1.0910584, .74952844, -.68464578, .73220369, 1.1768758, -.42938471, -.55158796, .09903492, -.54586356, -.33177004, -.61135726, -.92674886, .14990638, -.90054882, -.48211068, -.46009899, -.6280147, .24467719, -.61799632, -.4696511, .30668884, .2693635, -.11258485, .26860894, .27667418, .0195704, .01937981, -.01069719, .0193795, .02016042, -.10546512, -.11103137, .02661959, -.11098243, -.08397494, .81530195, .60637084, -.37528177, .59760197, .7931247, -.189364, -.20871692, .05116993, -.2083879, -.15424575, .77752047, .58711835, -.2940486, .57946865, .70842019, .43963306, .37255515, -.07923969, .37085871, .31288481, 1.1103624, .76321561, -.58380289, .74562605, 1.1291247, -.10208709, -.10731007, .0266489, -.10726556, -.08220224, -.29090748, -.33895313, .05949824, -.33763678, -.21594739, -.45835551, -.60551112, .1210955, -.59775789, -.37055639, -.34599044, -.42026402, .09118512, -.41762664, -.27948643, -.0164071, -.01657064, .04143263, -.01657037, -.02815002, .26081024, .23418477, -.06243106, .23373279, .20402967, -.60770311, -.96990944, .30261078, -.93545769, -.6068748, -.55443466, -.79473823, .13854266, -.77782203, -.43998522, .37219421, .32009456, -.11269455, .31888459, .31488892, -.17241024, -.190336, .12382657, -.19002598, -.19453152, -.12420242, -.13145783, .01669931, -.13138724, -.08016712, -.26109642, -.31959136, 1.1518632, -.31742495, -.53952417, -.24023407, -.27136395, .04665643, -.27069363, -.17528182, -.35782071, -.43620289, .07974605, -.43336357, -.27333173, -.26774043, -.31200026, .11632177, -.31078653, -.25548945, -.04456046, -.04549267, .00956196, -.04548942, -.03361182, .49812955, .41154842, -.13410754, .40905847, .40524961, -.3289724, -.39793901, .11643419, -.39554666, -.29318594, -.0815082, -.08483096, .02386864, -.08480839, -.06819513, -.51891927, -.73602425, .19577587, -.72124959, -.47242142, -.21719685, -.24376479, .06774354, -.24322459, -.18558163, .76571451, .58865994, -.15398813, .58193013, .56521932, .4376258, .37165203, -.0715995, .37000322, .3015657, -.25937774, -.292798, .02421402, -.29208242, -.14824752, .0352206, .0346677, -.00775126, .03466626, .02679159, -.16637039, -.18048157, .03326114, -.18028235, -.12256687, -.59109533, -.89118856, .18194713, -.86663372, -.50284031, -.18898344, -.20749119, .03729979, -.20718963, -.1386313, .02497347, .02466619, -.01292686, .02466556, .0252635, -.38914559, -.49490244, .16359863, -.49016719, -.36729185, -.46840968, -.62844631, .14603499, -.61948898, -.40017155, .4877303, .39793513, -.31740591, .39520248, .53251865, .29130866, .25850627, -.07324233, .25789241, .23165036, .22166568, .20114086, -.08244524, .20082472, .20084645, 2.9151703, 1.4835375, -1.2322409, 1.3764449, 2.7564566, -.70920357, -1.2739795, .27735089, -1.2039408, -.6534321, -.32750475, -.39863738, .15298162, -.39608222, -.3201608, -.14402642, -.15481446, .03892847, -.15467992, -.1173259, .38918005, .33111505, -.16254333, .32967869, .36652204, -.21949453, -.24508302, .04323825, -.24458705, -.16090956, .41702782, .35051293, -.20191108, .3487554, .41257864, -.43528291, -.57853342, .21153592, -.57080205, -.43117389, .36872555, .31084288, -.44941036, .30933727, .49624161, .27868132, .24719459, -.10826872, .24660338, .25620223, -.4355134, -.55827797, .08336106, -.55258096, -.31622686, .26096066, .23215072, -.14285506, .23162207, .2689626, -.62632795, -.99641748, .22888971, -.96149863, -.56418295, -.33556505, -.40664182, .10646655, -.4041511, -.28835813, .30085296, .26298602, -.18970776, .26219454, .3250433, -.54939152, -.84099645, .40271441, -.81611374, -.62411367, .38021192, .32812647, -.07458243, .32694241, .2783381, 1.7252034, 1.0676948, -.46538082, 1.0277966, 1.4044503, -.19943526, -.22237773, .08409164, -.2219389, -.18842082, -.23917223, -.27312948, .09523011, -.27232878, -.22168787, -.05133649, -.05276053, .03569616, -.05275394, -.05730176, -.44571787, -.625897, .55096848, -.61403325, -.60268764, .07902772, .07631622, -.01778952, .07630072, .06056909, -.48695547, -.66943809, .17997538, -.65826864, -.44029173, -.5015471, -.69896654, .18581227, -.68629642, -.4538468, -.36894206, -.46120792, .14823186, -.45740031, -.34300145, 1.1919129, .80877467, -.51160041, .78885357, 1.1327915, -.1832353, -.2018709, .06410404, -.20155561, -.16267141, .17691426, .16462548, -.02669745, .16448336, .11867024, -.35743235, -.45470307, .32569601, -.45034197, -.43659295, -.60044702, -.94377322, .27752394, -.91235823, -.5849157, -.16844988, -.185647, .12942661, -.18535495, -.194386, -.51190636, -.69445151, .09151857, -.68380167, -.3633346, -.3966205, -.49924595, .10322674, -.49486679, -.31904909, -.16643226, -.1838773, .17485578, -.18357315, -.2131711, -.42483516, -.54021187, .08073315, -.53504938, -.30773314, .27024082, .2429945, -.04119511, .24253769, .18188317, -.02732081, -.02770222, .01377701, -.02770133, -.02739832, -.64574301, -1.0066211, .139991, -.97429942, -.48874596, -.15692684, -.17371656, .3280044, -.17341778, -.25279474, -.3044152, -.36912754, .23781199, -.36685174, -.35323642, -.34371398, -.42078217, .12841466, -.41792556, -.3118983, 1.6382384, 1.0091422, -.80651337, .97071305, 1.629791, .32333333, .28196211, -.12773934, .28108315, .29891787, -.6486216, -1.1799054, .62609594, -1.1123358, -.80764015, -.05268509, -.05407984, .01937159, -.05407369, -.04755435, -.65649156, -1.0278427, .12953118, -.99420396, -.48152725, -.49644253, -.67568219, .12540798, -.66509895, -.39539488, -.42369386, -.56064885, .23639241, -.5533852, -.43946331, -.31568126, -.37433512, .07090762, -.3725293, -.24177246, -.03604488, -.0367347, .0239648, -.0367325, -.03963665, 1.7779317, 1.0780795, -.6589181, 1.0343903, 1.609029, -.22416269, -.25456814, .11412351, -.25388299, -.22551595, -.29931665, -.34529826, .02814393, -.34412575, -.17148474, -.4639905, -.62394085, .16580432, -.61491038, -.41484068, 1.0202515, .74670774, -.1177282, .73471942, .6258088, .31428151, .27060095, -.40244129, .26959364, .42998839, .43546456, .36427333, -.19055585, .36234588, .41653609, .0530618, .05177225, -.01680511, .05176703, .04556994, .37512674, .32097724, -.14977056, .31968081, .34801997, -.33165414, -.40802138, .2035771, -.40511567, -.35512119, -.27099835, -.31105942, .04712533, -.31007614, -.19057792, .84549607, .63445801, -.19512218, .62582196, .65341125, .52953109, .42744625, -.28889301, .42419612, .5451508, -.35787252, -.44242206, .13101812, -.43912261, -.32255666, 1.565082, .99618567, -.44049465, .96309072, 1.2922551, .01590784, .01579678, -.002703, .01579666, .0111011, -.19789672, -.22062798, .08844495, -.22019384, -.19063095, -.49807721, -.66188378, .07169645, -.65304871, -.32888218, -.51127417, -.70449968, .12768509, -.69257559, -.4056573, .23609158, .21258804, -.10623156, .21219892, .22793701, -.62344177, -.92780618, .09841196, -.903808, -.42451192, -.00219294, -.00219531, .00092301, -.00219531, -.00207061, -.30067078, -.35935201, .14702875, -.35745532, -.29844999, .8594222, .64902826, -.13141685, .64057786, .579026, .12380921, .11709195, -.0402474, .11703125, .10725674, -.10546415, -.11144036, .04804157, -.11138395, -.10223955, .18980596, .17448034, -.06963094, .17427439, .1711922, .33915942, .29019959, -.33561519, .28902735, .42582039, -.47809611, -.63421765, .0954486, -.62585506, -.35205457, .46050232, .37626187, -.46494908, .37371435, .58205811, -.19188464, -.21328153, .09022851, -.21288476, -.18799721, -.14004254, -.15082998, .06105184, -.15069164, -.13378772, -.63847208, -.94753507, .07803487, -.92336221, -.39920948, .95378281, .66766463, -1.0455829, .65371749, 1.2390699, -.20426911, -.22687891, .05168475, -.22646273, -.16277933, -.31442982, -.37939876, .15159173, -.37717711, -.31063543, .54623381, .44410214, -.1547877, .4409466, .45203757, -.21514947, -.24273071, .10401452, -.24214313, -.21274932, -.35426764, -.44264986, .20194656, -.43901117, -.37009209, .82616424, .61806297, -.26609819, .60947213, .71351247, -.22787564, -.25728937, .06914327, -.25665846, -.19292651, -.44612431, -.58219534, .1109507, -.57537538, -.35347384, -.50342186, -.68985899, .12921207, -.67857699, -.40308726, -.40225981, -.52014785, .19960342, -.51446514, -.40123957, .3748698, .32022487, -.16829833, .31890384, .36165147, -.03682105, -.03745628, .0081431, -.03745445, -.02805459, -.11224373, -.11921681, .06233209, -.11914466, -.11623992, .48933125, .40309301, -.1825126, .4005789, .44378871, .50617895, .41662813, -.14577638, .41400756, .42115482, -.68286009, -1.1935643, .29826066, -1.1337193, -.65277444, .26372656, .23429089, -.14764108, .23374485, .27385141, -.30292479, -.35960796, .10358983, -.35785057, -.26689407, -.47864969, -.70247932, .65971775, -.6855383, -.67113194, -.8591855, -1.828234, .17816862, -1.6653902, -.64073487, .63037315, .4976202, -.21686082, .49301243, .5565047, .31491042, .27564262, -.11882244, .27482942, .28670427, -.05953758, -.0612827, .0175488, -.06127418, -.04992138, -.02611477, -.02646331, .01329718, -.02646253, -.02627367, -.03845548, -.03924331, .02589129, -.03924062, -.04246522, -.54115058, -.88743131, 1.0351439, -.85225139, -.84636104, .43871747, .36637039, -.19874796, .36439484, .42452263, -.32518622, -.39204624, .1120159, -.38977106, -.28720455, .08669957, .08301252, -.0657326, .08298639, .0996051, -.52946363, -.7424546, .13539611, -.72849602, -.42341816, -.35463884, -.44294099, .197771, -.43931257, -.36778025, .05956428, .05767069, -.08298128, .05766066, .08381607, .27637345, .24603888, -.08481906, .24548546, .23487602, .10126586, .0965923, -.04171717, .09655637, .09493441, -.20165523, -.22350769, .04867788, -.22311385, -.15819529, -.59301261, -.9032179, .20418431, -.87710891, -.52367286, 1.0002739, .70795258, -.48261024, .69404949, .9884502, .68971676, .53373595, -.26524847, .52793335, .6319385, .26733013, .2406546, -.04028707, .24021194, .17923817, -.09247594, -.09661992, .01933908, -.09658899, -.0691578, 3.1534746, 1.6498702, -.33316187, 1.5398841, 1.8782554, -.03687639, -.03759705, .02397922, -.03759471, -.04025198, .16865744, .15532297, -.14458957, .15514749, .20186421, -.0629505, -.06490254, .01824187, -.06489246, -.05248469, -.04566691, -.04670114, .01568647, -.04669724, -.04029515, -.30024899, -.35187102, .06147214, -.35039921, -.22295839, .44713673, .37417976, -.15072949, .37220829, .39207545, -.38964399, -.48801251, .10174088, -.48391521, -.31377655, -.20806832, -.23193291, .05856947, -.23147779, -.17180576, -.80197519, -1.728815, .33003233, -1.5698303, -.75157003, -.22493557, -.25485809, .09607418, -.25419673, -.2134278, .61567023, .48534926, -.27956948, .48080332, .59621837, .67565472, .53953802, -.07108595, .53501365, .40187205, -.22402695, -.2529698, .07977056, -.25234843, -.20005883, -.58713112, -.87147522, .15294644, -.84922579, -.47243985, -.2097378, -.2336, .05164782, -.23314857, -.16563235, .19383372, .17561329, -.28216284, .17532839, .27677668, -.30775953, -.37072754, .16836223, -.36859513, -.31712652, -.55845233, -.82821557, .22547442, -.80715832, -.5200357, -.48173993, -.65274949, .14501692, -.64281641, -.4067785, -.20631742, -.23034376, .07037134, -.22987856, -.18162092, .01722956, .01709981, -.00284339, .01709964, .01190706, -.50259861, -.71746511, .28297405, -.70253704, -.52288525, -.43860781, -.58692132, .23285178, -.57870299, -.44745987, -.49294772, -.75400097, .94856672, -.73177275, -.77250246, -.2956642, -.34372594, .04664959, -.34242972, -.20129134, .75824791, .56477418, -.63159017, .55668761, .89886803, -.16455147, -.17953845, .06385487, -.1793113, -.15121999, -.06715729, -.06937811, .01888228, -.06936587, -.05543154, -.25611633, -.29248375, .05512596, -.29162611, -.19338386, -.4484982, -.6017206, .20663079, -.59314527, -.43643088, .49001226, .40718898, -.10974037, .40487174, .37491841, .26582446, .23732234, -.09021163, .23681431, .23361146, .06417361, .06214931, -.0424689, .06213867, .07045924, -.7154646, -1.2402209, .19080603, -1.1798076, -.58022904, 1.0394541, .74139814, -.26787516, .7274744, .83340808, -.39417377, -.51589875, .32166883, -.50972365, -.46409278, -.61776147, -.89675706, .0719622, -.8763298, -.38012405, -.43892263, -.58650386, .22408423, -.57837098, -.44198318, -.54239803, -.80619127, .29432686, -.78546692, -.55739795, -.27040424, -.30848465, .03359927, -.30759395, -.17000523, .57419404, .46268639, -.16543964, .45911074, .47781778, -.68581634, -1.135315, .17172741, -1.0886275, -.54462188, -.34139566, -.42360091, .21612927, -.42033238, -.36933448, .0853953, .0824384, -.01043778, .08242134, .05339517, -.21619342, -.2416878, .05326242, -.24118797, -.17075703, -.44157444, -.56401782, .06743461, -.5584264, -.29737668, -.54566286, -.76580672, .10804706, -.75133917, -.40071037, -.04885488, -.05010196, .0258448, -.05009666, -.04978208, -.52937813, -.72281265, .08020824, -.71125816, -.35557154, -.15359523, -.16708456, .0831097, -.16688739, -.15769299, .281392, .25203696, -.04275163, .25152781, .18917717, .32510889, .28270529, -.15110887, .28178711, .31729206, .20049988, .1832802, -.08451732, .18303411, .18940931, -.36695035, -.45313792, .10320753, -.44979389, -.30291352, .24205785, .21883404, -.0590665, .21846343, .19057672, -.09088204, -.09561142, .07783583, -.09557042, -.10873981, -.25150964, -.28558731, .045075, -.28482024, -.17865904, -.00952394, -.00956779, .00330535, -.00956775, -.00843258, .67717919, .51789168, -.51667663, .511736, .77962425, .17864499, .16455835, -.08882114, .16437347, .17831013, -.51061737, -.70687969, .14149135, -.69456938, -.41942118, -.28657751, -.34044444, .1665885, -.33876688, -.30133743, -.28221276, -.33334084, .14577777, -.33180557, -.28529328, -.42132649, -.54541981, .14204046, -.53940876, -.36945356, .44669922, .37958304, -.05846924, .37791122, .28575638, -.51843687, -.7084093, .09629695, -.69703059, -.37268744, .45617133, .38087787, -.14702021, .37882003, .39405273, .07299621, .07070188, -.0146483, .07068986, .05384424, .58596406, .47540614, -.09861585, .47195975, .40760506, .16315184, .15127378, -.08181999, .15112982, .16331439, -.46449785, -.61387484, .10993518, -.60599177, -.36200233, .19590249, .18100889, -.02932253, .18082041, .13105002, .2810031, .24973033, -.08613577, .24915188, .23871438, -.32960657, -.3937932, .06943555, -.39172308, -.24709722, -.10210757, -.10728008, .02449268, -.10723643, -.07993324, 1.2668389, .83885135, -.6987135, .81555408, 1.3089527, -.6118378, -.89520819, .0882217, -.87395637, -.40422764, .28569954, .24990732, -.2725118, .24916265, .35433289, -.23296601, -.2679531, .1772762, -.26708079, -.26797145, -.49168361, -.67846887, .17956065, -.66688454, -.44279652, -.43464789, -.57365231, .18103311, -.56635612, -.40896648, -.49266584, -.69301951, .25528938, -.67975126, -.49856588, -.24159749, -.27477112, .06863202, -.27401445, -.20010005, .57495002, .46345077, -.16091507, .45988025, .473837, -.18558717, -.20350099, .03850485, -.20321329, -.13842476, -.28784884, -.34272358, .17726758, -.34099062, -.30855275, -.42518782, -.57472746, .37366669, -.56611923, -.51312755, .71594311, .55700096, -.15451504, .55119351, .54106893, -.53498212, -.78679833, .27983439, -.76761996, -.54308759, 1.2211648, .81159155, -.83263031, .78944466, 1.3541816, -.39157239, -.50049687, .1798729, -.49550727, -.38066237, -.25771982, -.29547854, .06597874, -.29455997, -.20617842, .08135206, .07857934, -.01324417, .07856359, .05596682, .33362239, .29226352, -.07023612, .29141197, .2500539, -.13737328, -.14905414, .15702344, -.14888882, -.18096712, -.54291883, -.8808448, .8979184, -.84738204, -.80893239, -.01555449, -.0156845, .01329394, -.01568431, -.01859795, -.38549884, -.49459904, .22669162, -.48951636, -.40691516, -.04629879, -.04735416, .01486959, -.04735015, -.03994748, .47226516, .3981615, -.06173938, .3962348, .30198684, .87022528, .64867769, -.20340832, .63943767, .67538907, -.21432724, -.23950269, .05541127, -.23901104, -.17202608, -.64035317, -.9763625, .11206724, -.94799889, -.45128331, .76228245, .56808727, -.59220036, .55998289, .88289726, -.09002458, -.09426775, .03667102, -.09423443, -.08407981, .25452787, .22714058, -.13257364, .22665071, .25801956, .17830097, .16453833, -.07262131, .16436151, .16652029, -.2825473, -.33145422, .10482735, -.33005048, -.25579711, -.06221518, -.06415457, .02096438, -.0641445, -.05454667, -.56131494, -.82533879, .1898616, -.80524424, -.49275017, -.48135059, -.6330343, .07334239, -.62518623, -.32391871, .09367239, .08847607, -.46591083, .08842806, .20145838, .10862107, .10318687, -.05201347, .10314159, .10706758, .33147718, .28637689, -.20703543, .28535854, .35699378, -.30722738, -.36423445, .08729372, -.36248165, -.2544745, -.4464405, -.58938251, .14713627, -.58187114, -.38853097, -.3595744, -.43830994, .0764879, -.43545891, -.2704374, -.47142656, -.64148963, .18875409, -.63145648, -.43777553, .24541312, .2193413, -.15494364, .21888083, .26525674, -.58105231, -.8517778, .13736909, -.83135845, -.45267151, .30260782, .26488207, -.16305991, .26410097, .31025051, .0110551, .01100583, -.00084519, .01100579, .00591159, .55766006, .44579524, -.31282394, .44209253, .5794594, 1.9648421, 1.1338703, -1.1671211, 1.078703, 2.080976, .63151996, .49431858, -.31861049, .48940976, .63341461, -.00529967, -.00531398, .00302975, -.00531397, -.00554172, 1.5962708, 1.0010143, -.58776838, .9655851, 1.441506, .26608829, .23716281, -.10363647, .23664013, .24483004, -.48514944, -.66757355, .18890618, -.65637103, -.44635021, -.6358893, -.99466112, .16524883, -.96224017, -.51126234, -.2331373, -.26443297, .07716899, -.26373501, -.20318834, -.14935425, -.15984336, .01727818, -.1597207, -.0916898, .54322304, .43989854, -.19956951, .43665203, .49018519, -.0810468, -.08489645, .09067803, -.08486599, -.10600702, -.12204413, -.1296683, .03339678, -.12958898, -.09982886, -.67868636, -1.0744986, .11370098, -1.0376058, -.47138687, .19493357, .1792266, -.05507847, .17901596, .16116165, -.51870631, -.74207038, .22827026, -.72644398, -.49709661, -.23973607, -.27482379, .11680039, -.27397107, -.23767328, -.09872373, -.1036863, .03006509, -.10364474, -.08368453, .02495051, .02466855, -.00597504, .02466801, .01952135, .42384999, .36061221, -.08212641, .3590479, .30901465, -.15758965, -.17049964, .03890342, -.17032359, -.12455402, .59322598, .4858421, -.05397439, .48262808, .33616516, -.2563769, -.2964207, .10952121, -.29538267, -.2432738, -.4295476, -.54556631, .07142896, -.5404029, -.29760643, -.21958413, -.24341005, .02487112, -.24298009, -.1338574, -.04369004, -.04461727, .01269149, -.04461399, -.03645602, -.41874456, -.53823887, .12305241, -.5326267, -.35075685, .08686166, .08333116, -.04195716, .08330726, .08586789, -.36585313, -.44874397, .0834805, -.44563985, -.28167148, .11738607, .11131056, -.03890136, .11125819, .1023472, .35560178, .30706947, -.12216902, .30597027, .3137904, -.5001129, -.68949032, .15398961, -.67778162, -.42548656, -.10989825, -.11711279, .11600216, -.11703392, -.14098055, .4155222, .35125894, -.14542226, .3496118, .36893494, .40291287, .34473955, -.08477213, .34334647, .30192688, .50625566, .40947481, -.3731945, .40641881, .57619348, 1.0466268, .73464619, -.45180424, .71952893, .99660106, .26278628, .23239288, -.2228496, .23180878, .31338803, 1.7372719, 1.0744682, -.44852277, 1.0342114, 1.3937451, .16804624, .15619421, -.04693619, .15605505, .13839863, -.53752217, -.76754263, .1661654, -.75154682, -.45791808, .26624036, .23623799, -.15168422, .23567611, .27808191, -.41351894, -.5389088, .19659927, -.53265997, -.40663139, .34152217, .29540574, -.1498275, .29437223, .32695384, -.21282338, -.2392076, .08820191, -.23866394, -.19991662, -.31649299, -.38506154, .19778463, -.38260458, -.34091824, -.31911672, -.37587714, .04794976, -.37420349, -.21374953, -.63312167, -.96191132, .11690475, -.93442706, -.45423316, .43790732, .36528248, -.21563707, .36328821, .435685, -.52274944, -.78805245, .48544747, -.76635138, -.64256904, .43509123, .36497234, -.16228704, .36310054, .39460098, -.18794604, -.20805059, .0773634, -.20769289, -.17614783, -.23528413, -.26922367, .12199881, -.26841067, -.23815349, -.06893757, -.0714488, .03501924, -.07143356, -.06930261, .63560786, .49760006, -.30028077, .49266523, .62370422, -.62637435, -1.0223308, .30532748, -.98255517, -.6210901, -.30282195, -.36667935, .23495172, -.36445139, -.3505859, .50248074, .41563777, -.11690826, .41315421, .38937794, -.28604093, -.33368086, .07229241, -.33236472, -.22785559, -.22829199, -.25807182, .07373359, -.25742632, -.19734475, -.34891329, -.43526124, .21662708, -.43173433, -.37502417, -.22221942, -.24911494, .05207149, -.24857382, -.17260949, .30981925, .26856423, -.27955636, .26765239, .37720032, -.49456353, -.73670042, .63630577, -.71755689, -.67771434, -.26229629, -.30278254, .08375827, -.30174529, -.2258815, -.71632293, -1.2291807, .17229669, -1.1714199, -.56127394, .34154982, .30050952, -.04139624, .29969031, .2129608, .40727218, .34399589, -.17999362, .3423667, .39085788, .29875967, .26253723, -.13319591, .26180772, .28755545, -.45451117, -.60090033, .13199155, -.59316343, -.37921754, -.15765517, -.17200332, .08940932, -.17178602, -.16441562, -.18737951, -.20661345, .05759028, -.20628502, -.15932153, -.54151616, -.75482553, .10101945, -.74112589, -.38983959, .6651935, .49731305, -1.5474206, .49036965, 1.1104818, -.17299421, -.18933473, .05700241, -.18907791, -.15054353, .16132823, .15041734, -.04274356, .15029447, .13054908, .05094474, .04957028, -.06186615, .0495641, .0684795, 1.1153546, .77050647, -.47416692, .75321395, 1.0566449, .53865389, .44629203, -.06102288, .44367111, .32838308, .62185488, .50062682, -.0916739, .49672481, .41388969, 1.9581085, 1.1624729, -.55199188, 1.11142, 1.6176283, -.58435992, -.85176758, .11996326, -.83194145, -.4343232, -.49004157, -.69481161, .30752332, -.68089287, -.52859692, -.51441607, -.68946586, .06744246, -.67970639, -.32925382, -.38732235, -.49348365, .17910101, -.4886905, -.37736161, .14886954, .13826206, -.13712314, .13813622, .18249494, .09452706, .0902796, -.055915, .09024781, .09997472, -.15180546, -.16290956, .02109803, -.16277432, -.09907153, -.33392116, -.4061755, .12774464, -.40358964, -.30541254, .05084907, .04963439, -.02011871, .04962956, .04703257, .61427892, .47335157, -.8091448, .46803555, .84839055, .24274327, .21785063, -.11626167, .21742618, .23928767, .34508271, .29991148, -.09760403, .29892987, .28539611, -.50345497, -.68080084, .09757147, -.67057633, -.36707773, .39094818, .33256386, -.15846872, .33111825, .36453338, -.47564646, -.65682294, .23756413, -.64555746, -.47547366, -.43167621, -.55455928, .09503768, -.54880177, -.32840821, -.25949473, -.29454994, .03433652, -.2937632, -.16660235, -.42367156, -.54572744, .11877438, -.5399414, -.34935781, 2.0599325, 1.2169396, -.42155479, 1.1625164, 1.5294314, .54481395, .43884998, -.2566489, .435447, .53409923, .10119038, .09684596, -.02091624, .09681488, .07538137, -.1659091, -.18089615, .05603981, -.18067085, -.14557575, -.30496663, -.35659426, .04862747, -.35514469, -.20835572, .0622492, .0606153, -.00962284, .06060815, .04209207, -.41547887, -.54296427, .20320623, -.53653718, -.41243448, -.51611985, -.72804946, .18522928, -.71388374, -.46211165, -.06014845, -.06200558, .02530336, -.06199603, -.05678308, -.34475253, -.42606263, .17467911, -.42289495, -.34628097, -.64888003, -1.1024683, .34623735, -1.0524864, -.66309778, -.32206743, -.37928227, .04416306, -.37759727, -.20924781, 1.3792933, .9000614, -.56238908, .87329777, 1.2886254, -.56508561, -.80608492, .10943776, -.78937982, -.41191591, -.31537858, -.39182458, .4253564, -.38876515, -.43901813, .65138603, .51238252, -.19751333, .50749525, .55135895, -.21618638, -.24094113, .04258046, -.24046981, -.15847678, -.37262516, -.45418704, .0573607, -.4512348, -.25161098, .36262864, .31224063, -.12775718, .31107892, .32268579, .57799027, .46468136, -.17640708, .46101422, .49030052, -.5556686, -.82697831, .24725136, -.80558398, -.53448247, -.16644817, -.18401825, .18451181, -.18370976, -.21703881, -.54039333, -.76743451, .14469157, -.75192128, -.43883144, .44948898, .3741224, -.19910448, .37203039, .43170099, -.14057355, -.15093678, .04156937, -.15080958, -.11799679, -.58037643, -.87051895, .19566406, -.84712209, -.5089247, -.6227822, -.95735035, .15617349, -.92847585, -.49480783, -.57804723, -.82733256, .09670195, -.80986804, -.40129519, .78448866, .58944179, -.33672365, .58149008, .74557668, 1.054146, .74435402, -.34479284, .72954213, .91508885, -.34208617, -.40985682, .05801577, -.40763371, -.23856992, .25856674, .23084893, -.11230974, .23035499, .24671615, -.68810825, -1.1657844, .21064479, -1.113482, -.58429398, .62564676, .50140734, -.10983529, .49733552, .44137741, -.42905605, -.57230462, .25804445, -.56446446, -.45630041, -.02524752, -.02554976, .00666823, -.02554916, -.0204092, -.51515661, -.7777138, .55681303, -.75615134, -.66609982, .37998884, .32840472, -.067694, .32724257, .26938533, -.03708866, -.03776797, .01298699, -.0377659, -.03293621, .15859075, .14863505, -.0233522, .14853098, .10551264, .15149813, .14148303, -.05629751, .14137279, .13722859, -.2374756, -.27021291, .08110957, -.26946325, -.20914461, -.16377675, -.17747129, .03366691, -.17728068, -.12178092, -.40330466, -.50351353, .06974952, -.49940434, -.28310393, -.47998837, -.65494177, .17318064, -.64451623, -.43052356, -.5687609, -.80815922, .09701883, -.79177286, -.39741888, -.5474604, -.80926025, .25159329, -.78901937, -.53228573, .36179061, .311102, -.14281246, .30992376, .33437738, .07301298, .07053646, -.03005509, .07052247, .06843045, -.54009147, -.75365861, .10532974, -.73989159, -.39461345, -.07667632, -.07981353, .0401393, -.07979214, -.07785875, -.52343237, -.73890811, .16773808, -.7244704, -.45129543, -.40856945, -.52653791, .16097394, -.52093341, -.37737441, .52423996, .42917274, -.14830522, .42632233, .43359296, -.36437603, -.45830694, .19866664, -.45431343, -.37504627, .06421078, .06229403, -.02512568, .0622845, .05917268, -.17963938, -.19752144, .06356216, -.19722529, -.16008252, .01168468, .01162184, -.00298217, .01162178, .00933825, .01270297, .01262402, -.00567896, .01262394, .01223779, .12822104, .12126438, -.03041667, .12120151, .10000462, .34992171, .30594363, -.05573344, .30502576, .23898054, -.18220258, -.2012022, .08142686, -.20087264, -.17551015, -.51643924, -.73663542, .22456911, -.72137604, -.49295373, -.13668587, -.14635447, .03722035, -.14624059, -.1116227, -.08592909, -.08959026, .02273354, -.08956428, -.06950123, -.29890749, -.35627346, .13731366, -.3544498, -.2905845, -.14127667, -.15344908, .1393806, -.15327452, -.17719756, -.08596702, -.08951136, .01715288, -.08948702, -.06329124, -.17241445, -.19288784, .34314038, -.19248367, -.27324342, -.10304256, -.10825622, .02254455, -.10821227, -.07822909, .23801067, .21452616, -.09067178, .21414079, .21738605, .00781653, .00778987, -.00120038, .00778985, .00527383, .45498075, .37550619, -.29374233, .37320943, .49544356, -.30898377, -.36656602, .08595257, -.36478792, -.25412852, 1.3919557, .93074907, -.23987551, .90608786, .97593806, .90259427, .66739667, -.20993602, .65736604, .69935986, .86892751, .65294884, -.14804341, .64414622, .60691619, -.27612326, -.32454883, .1382021, -.32314074, -.27621687, -.6634974, -1.1259087, .2863091, -1.0750947, -.63170531, -.13891881, -.14945591, .05751103, -.14932285, -.1304471, .56019835, .45185643, -.19152775, .4483963, .49353177, -.64258415, -1.1112944, .44130738, -1.0576033, -.71429411, -.49223171, -.69701834, .28999517, -.68315682, -.51990019, -.06630194, -.06856965, .02792265, -.06855672, -.06261519, .95455463, .69116295, -.30250445, .67929908, .81995077, -.44260523, -.57963155, .12921138, -.5726631, -.36993147, -.57961396, -.8695938, .19844934, -.84619337, -.51088024, .39122666, .33156949, -.20012735, .3300616, .39421315, .08841621, .08509843, -.01697395, .08507768, .06426269, -.26051347, -.3008352, .09023165, -.29979934, -.23050645, -.18984637, -.21023619, .07363499, -.20987196, -.1744374, -.1977214, -.22011883, .08009159, -.21969695, -.18432097, -.59209368, -.86580004, .11361261, -.84531004, -.43027468, 1.0007412, .72745756, -.17853491, .71526918, .70979383, -.19851116, -.22191649, .10527669, -.2214577, -.20244669, -.2998424, -.34861962, .04191862, -.34730313, -.19606843, -.23239053, -.26236909, .05883541, -.26172644, -.18522597, 1.3247754, .90085441, -.20449846, .8789053, .8953679, -.07615355, -.07884554, .01222015, -.07882968, -.05213895, -.35850781, -.43313761, .05580867, -.43056679, -.24298324, -.16909033, -.18442839, .04974666, -.18419685, -.14169151, .25692835, .23019802, -.08599227, .22973564, .22475248, -.48906897, -.65652377, .1046771, -.64713167, -.36858752, -.10909284, -.11484912, .02026746, -.11479852, -.0784285, .0486299, .04746228, -.03015713, .04745761, .05224872, -.52512392, -.76920343, .30500905, -.75083593, -.5520208, -.02634513, -.02675419, .04700672, -.02675313, -.04025906, -.37580779, -.48457198, .31869806, -.47939288, -.44817435, .45408324, .38201788, -.09643806, .38012303, .34133682, .16371874, .15235593, -.04922592, .15222463, .13818902, .01009116, .01004427, -.00255849, .01004423, .00804696, .74603482, .56862893, -.27543584, .56170049, .67430474, -.22530933, -.25282642, .04992479, -.2522678, -.17177826, -.54387407, -.77710046, .15291264, -.76084916, -.44890733, .5275074, .43433477, -.10276098, .43161257, .38527584, -.05335427, -.05465682, .00867738, -.05465152, -.0366932, -.39039911, -.4915102, .11784698, -.48719165, -.32995549, -.18714887, -.20426998, .02362404, -.20400933, -.11828223, .3187253, .27982556, -.08532863, .27903696, .25881291, .12342615, .11646371, -.06042813, .1163983, .1225635, -.57222779, -.84842244, .18480835, -.82687967, -.49464827, .93255535, .67231233, -.42919888, .66046383, .90715035, .45855083, .37478395, -.47297595, .37225421, .58373358, .3395952, .29600141, -.0894222, .29507223, .27424127, .13959118, .13104366, -.05065634, .13095649, .1254469, .03360636, .03312423, -.0049253, .03312307, .02232383, .00180669, .00180514, -.00057417, .00180514, .00155338, -.32231295, -.38924918, .12868142, -.38694878, -.29902015, -.63662885, -1.04481, .28445515, -1.0032658, -.6132047, -.31414915, -.38190875, .20377712, -.37949137, -.34262502, .20454735, .18679783, -.08010264, .18654155, .18854782, -.3243895, -.38470337, .05731274, -.38284517, -.22933565, -.23104776, -.26402797, .13061165, -.26324615, -.24069763, .10205012, .09755886, -.02480805, .09752593, .08024474, -.07631875, -.07914865, .01805655, -.07913117, -.05947152, .27159428, .24281548, -.06699882, .24230851, .21460811, -.26951922, -.31386735, .1067351, -.31265676, -.24936696, -.01261613, -.01268603, .00182045, -.01268596, -.0083372, -.57893745, -.86150815, .17777217, -.83923332, -.49209885, .24501166, .21950425, -.12662078, .21906274, .2477248, .45667656, .37687392, -.28649241, .37456678, .49255363, -.07951973, -.08237394, .00984906, -.08235687, -.04994111, .06942818, .06716607, -.03072466, .06715379, .06665962, .79464256, .59417293, -.37102405, .58588489, .77670941, -.07309122, -.07630684, .10873895, -.07628327, -.10512722, -.27563222, -.31881566, .06273292, -.31769282, -.21202895, .17641173, .1643809, -.02272453, .1642443, .11225178, -.29277417, -.35056993, .19670598, -.34868067, -.32307575, .69660075, .53600357, -.31559827, .52991679, .67407905, 1.0327953, .74571352, -.17910779, .73269197, .72564519, -.39980428, -.49586405, .06023685, -.49205284, -.26803759, -.59287685, -.91220485, .2342961, -.88457847, -.54816084, .27674917, .24756534, -.0547607, .2470537, .20318449, -.17734954, -.19375534, .03964697, -.1935028, -.1356126, .0558028, .05430399, -.02862857, .05429728, .05628343, -.11720558, -.12416229, .03029124, -.12409352, -.09406207, .51045502, .41547288, -.25090773, .4125521, .50755877, .0747963, .07216217, -.03538748, .07214671, .07343109, -.42009588, -.56549866, .37571022, -.5572574, -.50994885, -.57154547, -.8812774, .32309047, -.85432632, -.59541335, -.26265359, -.30331547, .08464909, -.30227065, -.22688528, 1.8542891, 1.1343047, -.36603667, 1.0898937, 1.3603056, .17316308, .16018471, -.06810967, .16002279, .15985141, -.57386658, -.85162255, .1830963, -.82990081, -.4940571, -.27591827, -.31915467, .06229918, -.31803025, -.21168549, -.52559745, -.7623008, .25837044, -.74501665, -.52262852, -.13829099, -.14848161, .04722347, -.14835658, -.12178446, .0830565, .07987642, -.03392164, .07985613, .07763985, 1.2875637, .85976724, -.46793907, .83683432, 1.1576721, -.69746722, -1.1603542, .15792818, -1.1117194, -.53560639, -.20963124, -.23636886, .12325868, -.23580212, -.22126862, -.16887024, -.18536799, .0900327, -.18509983, -.1725224, .02403166, .02376895, -.00595373, .02376847, .01901643, -.48195017, -.63325837, .07103345, -.62545807, -.32074931, .31232972, .27525572, -.07414351, .2745246, .24365571, .1673552, .155558, -.04825875, .15541955, .13930333, -.62837383, -1.0043814, .23556385, -.96848532, -.57085385, .2660056, .23771925, -.08215224, .23721919, .22653935, -.67000496, -1.1240995, .23703154, -1.0754592, -.5970317, .61591255, .48971449, -.18441502, .48544991, .51914435, .03259064, .03199139, -.06210725, .03198955, .050908, -.50043132, -.72604011, .38463098, -.70954942, -.57754754, .18283235, .16856457, -.06639599, .16837925, .16434606, -.15025921, -.16169425, .03152725, -.16154937, -.11249488, -.31241386, -.3780408, .1783969, -.37575979, -.32655723, 1.303822, .86084416, -.60888903, .83660576, 1.2744855, .69195681, .52797272, -.48035167, .5215896, .77193801, 1.261634, .84300644, -.53901197, .82059233, 1.1971955, -.35212988, -.43131017, .10782961, -.42836703, -.29903677, -.27241679, -.32385492, .25784259, -.3222458, -.33699035, .16284675, .15181856, -.04018553, .15169421, .12869232, -.43131531, -.57213497, .21730541, -.56459337, -.43241102, .5068062, .41628461, -.16187428, .41361066, .43647954, -.41792042, -.55391493, .27432955, -.54665519, -.45761114, -.33688825, -.41594368, .20329602, -.41287909, -.35868251, -.59286939, -.87463123, .12900077, -.85297499, -.44927624, -.26509378, -.30409919, .05431984, -.30314626, -.19690761, .110943, .10576846, -.02226059, .10572826, .08183181, -.40357001, -.52012977, .17796044, -.51459058, -.38701733, .55572376, .45209093, -.130598, .44889726, .43207733, .22159764, .20188713, -.0544899, .20159543, .17491435, .51081102, .40964654, -.53803045, .40633965, .65481576, -.20711017, -.23205584, .08816765, -.23155637, -.19629717, .07329426, .07115667, -.00700367, .07114629, .04221809, .1190697, .11262297, -.05389371, .11256483, .11518348, -.02651643, -.02685975, .00900583, -.02685901, -.02330923, .46224268, .38664271, -.11878693, .38459507, .37026522, -.30832079, -.36700403, .10118452, -.36515374, -.26794762, .59328448, .46800323, -.36463604, .4636433, .6355336, -.65286707, -1.0805997, .25421176, -1.0361892, -.60065494, .150074, .1397441, -.09089028, .13962572, .15997525, -.12434117, -.13281068, .0583834, -.13271461, -.12176331, 1.1347334, .78499853, -.39354633, .76751259, 1.004472, .06335567, .06159726, -.01410533, .06158913, .04837951, .04946144, .04837481, -.01150543, .04837083, .03832558, -.50081414, -.73378689, .44749073, -.7162414, -.60774641, -.06709695, -.06921612, .01282192, -.06920497, -.04869258, -.08395361, -.08776157, .04641813, -.0877328, -.08681581, .00709072, .00706405, -.00633969, .00706404, .00860649, -.01384978, -.01393683, .00266246, -.01393674, -.01007085, -.31333024, -.37345682, .09410699, -.37154563, -.26437405, .3459756, .30014247, -.10917801, .29913459, .29676912, .05033621, .04904892, -.04126522, .04904343, .05935515, .27297642, .23839854, -.44293958, .23767122, .40414907, -.22933082, -.27152466, .85380151, -.27023816, -.44782045, -.35040168, -.41739729, .03751391, -.41527542, -.20962909, .28805578, .25385397, -.14204666, .25317931, .28672886, -.65490533, -1.0599143, .19490193, -1.0200478, -.5508936, -.47018372, -.61418078, .07468916, -.60693471, -.32082947, -.47721825, -.63924909, .12138493, -.63023495, -.38095729, 1.3476126, .88016734, -.65872221, .85410151, 1.3374805, -.40137402, -.50502353, .09267038, -.50060927, -.3102343, -.11566665, -.12280419, .04637906, -.12273083, -.10746228, -.64272384, -1.0352977, .21481796, -.99709771, -.56197432, 1.1198415, .78055866, -.33657388, .76386521, .94509292, -.37840693, -.47789095, .16625793, -.47357901, -.36244616, .35985366, .31101251, -.10441355, .30991237, .30015546, -.51498973, -.74001592, .26070601, -.72405173, -.51712166, -.4990457, -.68787284, .15597986, -.67620687, -.42670368, -.36024144, -.4345239, .05036177, -.4319889, -.23556248, .10090429, .09583676, -.09734933, .09579437, .12562056, .10500037, .1005026, -.01522613, .1004705, .06950249, -.55590106, -.80661548, .16621952, -.78828286, -.46834836, .97445552, .71012257, -.20075028, .69840821, .72510918, .07514112, .07271582, -.01493122, .07270277, .05524507, -.47107749, -.65198934, .26838357, -.64065111, -.49202844, .4069781, .35245994, -.03370757, .35124777, .22351148, -.49908369, -.72063411, .36333215, -.70467725, -.56566615, .79057675, .59611118, -.27347639, .58826455, .69921805, .08300378, .07991925, -.02564544, .07990015, .07069879, 1.3209475, .88013486, -.40927206, .85640889, 1.1261711, 1.1385706, .77137101, -.77741171, .75222023, 1.2631851, -.14866611, -.16067507, .05542297, -.16051359, -.13480767, -.44572032, -.58061113, .1066508, -.5739016, -.34863661, 1.2907402, .84279895, -.93782602, .81780937, 1.4619863, 1.0002664, .6747233, -2.5314396, .65760149, 1.7174192, .16224712, .1507751, -.06376113, .15064005, .14973155, -.58306357, -.88826504, .23450017, -.86256129, -.54225262, -.60546947, -.94470352, .2370439, -.91424776, -.55806026, -.04588784, -.04702499, .03300025, -.04702029, -.05179813, -.12428197, -.13234103, .03921224, -.132254, -.1065997, -.25465265, -.29114693, .06175708, -.29027839, -.20008032, -.22189215, -.24960362, .06676593, -.24902841, -.18733672, -.04215724, -.04303719, .01460919, -.04303412, -.03730784, -.46370116, -.61126413, .10478294, -.60355598, -.35584892, -.1524219, -.16487794, .04980965, -.1647085, -.1322755, 1.0631753, .75853504, -.22129347, .74431333, .79384572, .55206403, .44506498, -.22111313, .44164051, .51271318, -.11179798, -.11844282, .04470382, -.11837704, -.10377215, -.28236901, -.3243892, .03560427, -.32335101, -.17839748, -.62694557, -1.1149174, .68460729, -1.0556368, -.81341166, .01335705, .0132603, -.01529862, .01326018, .01760764, .04115702, .04034471, -.01850457, .04034204, .03972516, .01838351, .01821034, -.01302698, .01821006, .02064953, .26479015, .23667301, -.08394001, .23617666, .22747529, .48889433, .4011329, -.22931042, .39852767, .4785874, .5222803, .43058076, -.10359255, .4279173, .38375608, -.30676865, -.3580404, .04235269, -.35661899, -.19976113, -.34268654, -.41891825, .12481144, -.41611461, -.30833737, -.07302125, -.0755844, .01610214, -.07556941, -.05558241, -.53696253, -.74382336, .0957976, -.73081965, -.38085313, -.42031073, -.54401294, .14415932, -.53802518, -.37068461, -.01591942, -.01604737, .00779645, -.0160472, -.01580983, -.0188094, -.01896496, .0026473, -.01896475, -.0123271, .70188734, .54645815, -.17523172, .54079296, .55683413, -.3441711, -.41329873, .06069805, -.41100009, -.2431744, -.04686378, -.0479702, .01831092, -.04796584, -.04316565, -.56945387, -.80345967, .08467915, -.78780703, -.38010874, .82247946, .62664704, -.128373, .61898959, .55793629, .10768572, .10302446, -.01375552, .10299085, .06832942, -.19258597, -.21414592, .09032336, -.21374456, -.18852102, -.32378256, -.40978659, .61736445, -.4060211, -.50585515, .46677348, .39278085, -.07630821, .39083757, .3215668, .05401344, .05258224, -.03271933, .05257593, .05758102, -.22367683, -.25427639, .12370828, -.253581, -.23132554, -.44651825, -.61106296, .32816171, -.6011534, -.5076902, -.48923259, -.68118483, .22278358, -.66890378, -.47422158, -.39463212, -.51350542, .2746272, -.50761948, -.44060843, .65042399, .51832042, -.10674184, .51389442, .44866197, -.48063527, -.6859908, .40332796, -.67173158, -.57118028, .21558589, .1973213, -.04111851, .19706381, .15635173, 1.2116469, .8244019, -.40966174, .80437457, 1.063496, -.29438491, -.36331022, .58922179, -.36064427, -.46742646, -.20520111, -.22818804, .05463765, -.22775983, -.16632613, .35596893, .30277928, -.33753765, .30146157, .44061452, .08897616, .08515727, -.05836642, .08512997, .09740475, 1.4483664, .95547149, -.26974832, .92846127, 1.0421139, .04825085, .04712187, -.02522913, .04711747, .04897571, -.20903291, -.23002077, .02022173, -.2296702, -.12089988, -.5890277, -.89836948, .21952511, -.87223592, -.53406635, -.29072761, -.34975442, .25196987, -.34777063, -.34923443, .31366216, .27510212, -.10497666, .27431477, .27437782, -.49735208, -.65677986, .06244199, -.64839273, -.31377009, -.00493755, -.00495056, .00428246, -.00495055, -.00593265, -.14535234, -.15625504, .03659025, -.15611888, -.11563247, -.5964309, -.90336615, .18057337, -.87792773, -.50458537, -.00992831, -.00998084, .00820446, -.00998079, -.01173843, -.05324062, -.05451998, .00769293, -.05451486, -.03519946, .74723262, .58871995, -.06104652, .58317891, .40850826, .92386917, .66813996, -.41115462, .65658666, .88869357, .4894384, .40733204, -.10135246, .40505181, .36482685, .59609854, .48339414, -.08819533, .47987366, .3972256, -.23882443, -.26915205, .04202611, -.26851201, -.16861733, .40116282, .33785748, -.24326036, .33620229, .42780668, .0479421, .04685654, -.01956438, .04685244, .0448033, .53941314, .43976727, -.14773511, .43672479, .44135249, 3.8526804, 1.8217191, -.75647537, 1.6619172, 2.8213064, -.12455221, -.13244019, .03175268, -.132357, -.09950336, -.52318843, -.72541264, .12008382, -.71265968, -.40359296, .13619695, .12835979, -.03341989, .12828468, .10742943, -.09062037, -.09500845, .04362382, -.09497306, -.08948189, -.22329489, -.25168974, .0727166, -.25108967, -.19355618, .67370954, .53136698, -.13281006, .52641064, .49400967, -.20243394, -.22276238, .02616932, -.22242277, -.12896238, -.27365042, -.32240267, .16586027, -.32096284, -.29177956, -.05991093, -.06182501, .03502458, -.06181482, -.06311584, .07493902, .07205309, -.08161657, .07203458, .09714224, -.57627448, -.84764461, .15470794, -.82696848, -.46838228, .09873071, .09432918, -.03659185, .09429649, .08935242, .27590214, .24526493, -.09739294, .24469949, .24567212, -.38698872, -.49057608, .15557606, -.4860064, -.35985134, -.06259506, -.06461343, .02669906, -.06460259, -.05936567, -.06550517, -.06768315, .02414352, -.06767108, -.05917349, -.55225301, -.80145349, .17567744, -.7832224, -.47497861, -.00714523, -.00717403, .01000028, -.00717401, -.0100699, 1.2602841, .82671822, -.98172356, .80272251, 1.4610061, 1.043912, .73341473, -.44646877, .71840001, .99094516, -.43132456, -.5662489, .16893532, -.55931775, -.39760601, .39438992, .33470387, -.17201905, .33320649, .37683629, -.50414255, -.67732771, .0836691, -.66758313, -.34906041, 1.8470935, 1.1320365, -.35763665, 1.0880446, 1.3463251, .6694033, .51885462, -.3132809, .51328419, .65480684, -.2755584, -.31846568, .06013792, -.31735681, -.20902677, -.53109785, -.70632029, .04370179, -.69684025, -.29104452, -.38016339, -.48416495, .20549193, -.47947802, -.39017112, -.21644843, -.24806102, .26047917, -.24729436, -.29007076, .22464717, .204938, -.04238525, .20465029, .16233627, .18255798, .16745986, -.12147509, .16725206, .20080427, .18834064, .17271266, -.09791501, .17249686, .19080473, -.35425951, -.4428542, .20514244, -.43919807, -.37202848, .21969688, .1999514, -.0650006, .19965615, .18444422, .122713, .11616948, -.03648803, .11611136, .10319386, -.42723475, -.55833711, .1626259, -.5517272, -.39010748, -.02451718, -.02479725, .00557298, -.02479671, -.0188518, -.04687689, -.04802464, .02506269, -.04801996, -.04793563, .05305057, .05167392, -.03107604, .05166797, .05592577, -.31050077, -.37292577, .13922555, -.37084803, -.29942733, .20887052, .1890275, -.17334826, .18871394, .24730596, .12160078, .11432671, -.12128972, .11425424, .15307663, -.4786629, -.6404824, .11557347, -.63151775, -.37553397, .69538074, .5308133, -.45327777, .52441604, .75964948, .07554328, .07283333, -.03894072, .07281713, .07631476, -.16002451, -.17249543, .02306356, -.17233363, -.10570847, .28745241, .25362713, -.13105163, .25296582, .27874138, -.31900993, -.38422716, .12564022, -.38202034, -.29461557, .15846756, .14444768, -.75377929, .14424131, .33577754, .67802328, .53342129, -.14224838, .52834012, .50760066, .32227808, .27988621, -.17800649, .27896053, .33315203, -.689705, -1.2063613, .27705579, -1.1457302, -.64117216, .50862172, .41457705, -.23910062, .41170299, .4982724, -.55756118, -.81008919, .16580611, -.79154937, -.46889096, .6659468, .51830268, -.27094785, .51291508, .6217249, .54504791, .4418793, -.18302942, .43865311, .47731683, -.23168171, -.26098984, .05206213, -.26037367, -.17746463, 1.5564676, .98481622, -.55095472, .95125094, 1.3872094, -.21817516, -.24439497, .05716511, -.24387114, -.1758965, -.11225338, -.1190164, .04839388, -.11894854, -.10684144, .79514812, .59562841, -.34278122, .58742223, .75679984, -.21647274, -.24183736, .0502126, -.24134324, -.16757776, -.35997872, -.44684088, .14337273, -.44338005, -.33369529, .40854687, .34382458, -.21996117, .34212582, .4187485, -.1530492, -.16604881, .06557914, -.16586503, -.14537374, -.14413865, -.15581035, .07238166, -.15565302, -.14434657, -.09408929, -.09840609, .02053462, -.09837309, -.07137273, -.39301475, -.48727188, .06827468, -.48353887, -.27629252, -.24605572, -.28276665, .10912952, -.28185731, -.23641755, -.74467796, -1.2573597, .10835057, -1.2016485, -.49347603, -.4022203, -.52233619, .22385208, -.5164387, -.4168435, .06682166, .06472335, -.02944639, .06471237, .06406668, .57766322, .46671261, -.13758116, .46319305, .45114152, -.01968855, -.01987486, .00607468, -.01987457, -.01676204, -.72534761, -1.3803908, .35614986, -1.2895402, -.72097197, -.39755281, -.50932555, .17015997, -.50415182, -.37747861, .05541468, .0540372, -.01466541, .05403149, .04482545, -.33090587, -.40446483, .16434529, -.40176137, -.33016579, -.0854305, -.08925077, .03581858, -.08922231, -.08056037, -.20923584, -.23549068, .11068174, -.23494313, -.2132027, -.38497634, -.48980343, .18049086, -.48510088, -.37680596, -.55067069, -.77949325, .11744861, -.76402275, -.41452806, .3514565, .30426126, -.11196786, .30320938, .30242813, -.36442407, -.45596798, .1683269, -.45217357, -.35492169, .55862248, .45711991, -.09137459, .45407064, .38491433, .98757975, .71248778, -.26417743, .69998509, .80172117, -.17833263, -.19639535, .07713576, -.196091, -.16992181, -.01980995, -.02000314, .0075547, -.02000282, -.01809969, .01791458, .01776767, -.00452259, .01776747, .01426517, .12051318, .11439804, -.02599857, .11434635, .09106458, -.57040743, -.83976402, .17023686, -.81918687, -.48026911, -.48418655, -.65617892, .13978045, -.64618233, -.40318153, -.41376686, -.53658243, .17206738, -.53058805, -.3891168, -.39736418, -.52230491, .33561927, -.51585445, -.47324363, .789415, .61140354, -.08671464, .60479997, .47633342, -.45273112, -.61077915, .21682458, -.6017464, -.44627895, .04048982, .0397188, -.01513165, .03971635, .03674537, -.63470698, -.9674859, .11984384, -.93941626, -.45877254, .2618683, .2330883, -.13239143, .23256256, .26283624, .19377173, .17770167, -.07757214, .17747988, .17993081, .58723259, .47367768, -.13114675, .47005153, .44888588, .69307845, .53813346, -.219424, .53243351, .59514982, -.57764781, -.86068256, .18440667, -.83828911, -.49740593, -.26782449, -.31198634, .1139541, -.31077833, -.2537972, -.70868634, -1.1711819, .1297819, -1.1233345, -.50704995, .4606641, .38328251, -.16715777, .38113069, .41397594, -.19014589, -.20787589, .02417353, -.20760079, -.12046142, -.37788839, -.4836057, .24762906, -.478736, -.41354195, -.17801827, -.19425086, .03434979, -.19400454, -.12960679, -.48308859, -.65038326, .12323755, -.64089631, -.38601917, .25848821, .23234614, -.06074086, .23190649, .2009698, .11192558, .10615829, -.05454158, .10610878, .11096997, 2.2103467, 1.2399104, -.96744817, 1.1734462, 2.1144277, .54133925, .44631372, -.07756959, .44355424, .35690572, -.32947276, -.39838731, .11327762, -.39600213, -.29080668, -.06956448, -.07214855, .03847715, -.07213256, -.07194534, .34574032, .29872866, -.1467757, .2976678, .32738698, -.36442537, -.44325897, .06336404, -.44043841, -.25626936, -.52417636, -.76654556, .30147977, -.7483973, -.54922168, -.10294317, -.1082127, .02503518, -.10816776, -.08095778, -.44853287, -.60675929, .24784799, -.59762437, -.46373298, .54811133, .43721149, -.40008915, .43350971, .62178672, -.77339733, -1.4128057, .15830115, -1.3308055, -.57425723, .00311698, .00311258, -.00065575, .00311257, .00233568, .16546273, .15367022, -.05901408, .1535303, .14784115, 1.0782845, .74165035, -.72184466, .72461628, 1.1884479, -.14325199, -.15333407, .02454582, -.15321592, -.10024659, -.54106483, -.74855613, .0879214, -.7355701, -.37199839, -.01554362, -.01565892, .00462261, -.01565877, -.01307195, .23435681, .21389756, -.02870592, .21360038, .14663992, -.21589488, -.24409962, .11654564, -.24348735, -.22148122, -.40602043, -.51951841, .13874424, -.51429434, -.35764068, .01460532, .0145034, -.0053337, .01450328, .01315306, .47378981, .39536301, -.11230566, .39321344, .36943187, .17730636, .1633511, -.09257247, .16316828, .17988164, .58137418, .47440216, -.07731488, .4711487, .37388226, -.43695412, -.55995752, .0805111, -.55425701, -.31327025, .62747558, .50448334, -.09127002, .50050337, .41576756, -.37398313, -.47031284, .16050385, -.46622059, -.35541833, -.38488016, -.48811777, .16465811, -.48355422, -.36538837, .16882954, .15590683, -.10322184, .15574218, .18053697, -.05819763, -.05994739, .02620706, -.05993863, -.05620215, -.00378748, -.00379413, .00093389, -.00379412, -.00299233, -.45740353, -.60989175, .15335998, -.60155781, -.40035663, .96274755, .69683538, -.28652439, .68484684, .80985166, .05958472, .05779674, -.04800426, .0577878, .0698543, -.61316876, -.97866302, .28179435, -.94389586, -.59617547, -.21870465, -.24783391, .12138522, -.24718931, -.22644911, 1.2191264, .82944004, -.39078432, .80928401, 1.0512069, .19790549, .18076257, -.1024348, .18051548, .20020015, -.3915342, -.49898009, .16549726, -.49412317, -.37021448, -.05989271, -.06170904, .02243475, -.06169987, -.05439592, -.60835317, -.9374616, .19454908, -.90887105, -.52415159, .93726962, .66527905, -.73159374, .65242844, 1.0872841, -.77961717, -1.3707204, .10873488, -1.3005904, -.50939407, .51118936, .41853336, -.180392, .41575656, .45513157, .10664256, .10189676, -.01941382, .10186158, .07614956, .54394214, .44253993, -.15439524, .43941602, .45039107, -.04468064, -.04568047, .01682746, -.04567674, -.04065329, .42232032, .35761426, -.11465577, .35597103, .3445376, -.11373807, -.12003518, .0216566, -.1199771, -.08244114, -.24970214, -.28577578, .07665105, -.28491036, -.21222549, .14967316, .13887169, -.14929294, .13874192, .18841655, -.04416694, -.04517034, .02105742, -.04516655, -.04347203, .09550975, .09136204, -.03706601, .09133203, .08777425, -.60345573, -.90964065, .15374561, -.88460156, -.4819935, -.39335361, -.4858555, .05967075, -.48226216, -.26431345, .91188654, .67179381, -.22367346, .66145241, .71918731, .0893321, .08542113, -.06841059, .08539261, .10297287, 1.0542231, .74207457, -.38557647, .72704413, .94987954, -.80140281, -1.4468496, .10861552, -1.3659914, -.51865018, -.65661096, -1.0909152, .25248002, -1.045425, -.60157682, .77179132, .59281922, -.15014697, .58599761, .56344143, -.07764923, -.08065276, .02253154, -.08063341, -.06476868, -.06175517, -.06377033, .03294705, -.06375937, -.06310509, .50650259, .41570612, -.16991997, .41301447, .44341725, -.40926117, -.52588389, .14652362, -.52041418, -.36613921, -.45927482, -.61604101, .17002452, -.60727483, -.41549163, 1.0567886, .74734019, -.3202118, .73259505, .89429581, -.11140128, -.11790377, .03960864, -.11784055, -.09943366, -.30337178, -.36215487, .13026612, -.36026837, -.2883615, -.42253305, -.55498618, .20169408, -.54816798, -.41605253, -.25977024, -.30503888, .21535438, -.30373086, -.3074592, .32950947, .28807868, -.09057868, .28721359, .26993794, -.18003178, -.19723229, .04531631, -.19695886, -.14321691, .09805314, .09330175, -.08653726, .09326339, .1185001, -.49089533, -.70725054, .399791, -.69177447, -.57758194, 1.1664585, .8161681, -.21232685, .79907572, .83289675, -.4644781, -.64735139, .34389256, -.63561204, -.52941278, -.41856481, -.55305757, .25163428, -.54596576, -.44508375, 1.1278749, .7967161, -.19805737, .78089615, .79575792, .34566979, .29986766, -.1102072, .29886025, .29752327, -.37267293, -.46647729, .14254855, -.4625815, -.34083917, .24961853, .22378361, -.10251373, .22333903, .23376988, .53624914, .43791335, -.14162413, .43493246, .43347777, .02897433, .02856922, -.01272993, .02856828, .027752, .08015478, .07737286, -.01771104, .07735678, .06105356, -.50476571, -.70753251, .19691235, -.69426216, -.46468738, -.40522231, -.52445365, .19283833, -.51868373, -.39859944, -.30219412, -.35872948, .10546732, -.35697701, -.26806492, -.35942658, -.45131409, .21023945, -.44743922, -.37872287, .26996379, .24234186, -.04851345, .24187193, .19194099, .4646472, .38552663, -.18330676, .38329676, .42935683, -.3275455, -.38444346, .03295657, -.38280459, -.19194278, -.55860279, -.78929956, .10141245, -.77379405, -.39851299, -.05774895, -.05942333, .02039347, -.05941524, -.05142841, -.08416668, -.08876627, .21614889, -.0887244, -.14521823, -.51076446, -.69909851, .11233086, -.6877496, -.38843958, -.50295582, -.68588962, .11774145, -.67501102, -.39054674, -.15478959, -.16820163, .07018808, -.16800822, -.14982776, .23271758, .20738762, -.3068774, .20692933, .32152723, -.37941033, -.46960824, .08548247, -.46606675, -.29087638, -.25435962, -.29035462, .05680228, -.28950863, -.19443034, .06588453, .06368361, -.05917427, .06367135, .08008969, .01837002, .01819873, -.01193611, .01819846, .02004645, -.40509825, -.51115711, .09388126, -.50657893, -.3135041, .39800708, .33995085, -.1050213, .33854642, .32163477, -.07725479, -.08029924, .02749215, -.08027925, -.06897576, -.20637628, -.22811815, .0325346, -.22773717, -.14046399, .08154315, .07840933, -.04072179, .07838927, .08150995, 1.1910859, .80960517, -.48571352, .78983713, 1.1128384, .26456618, .23553114, -.12012076, .23500149, .25619594, .23971249, .21576538, -.09755645, .21536754, .22381495, .12466272, .11807848, -.02929845, .11802056, .09692801, -.04478352, -.04579575, .01802714, -.04579193, -.04166114, .08461206, .08145068, -.02316046, .081431, .06921718, -.11222889, -.11827756, .01927437, -.11822326, -.0785971, .66826592, .5290729, -.11819708, .52429317, .47261967, -.02497361, -.02526647, .00606328, -.0252659, -.01962908, -.18560142, -.20481407, .06635467, -.20448324, -.16596685, -.42062705, -.55511035, .23495048, -.54805336, -.43644907, .37335652, .32316837, -.06983945, .32204863, .26902507, .44395122, .37075775, -.18027585, .36875953, .41420248, -.10149399, -.10627658, .01402168, -.10623904, -.06610539, 1.6776906, 1.0774226, -.19261374, 1.0429959, 1.0273387, -.03187361, -.03248491, .06531512, -.03248296, -.05100766, .06182835, .06003111, -.02647815, .0600224, .05871706, -.48307609, -.64353785, .09701343, -.63479909, -.35642185, -.81096394, -1.6544539, .22537601, -1.5221645, -.66677645, -.4026664, -.51871387, .17880383, -.51321067, -.38704892, -.06926005, -.07178871, .03438955, -.07177333, -.06909936, -.66360562, -1.0288145, .10497055, -.9965726, -.45217429, -.33803354, -.41156213, .11995102, -.40891704, -.30152119, .22568917, .19695072, -2.1495738, .19634307, .60274637, -.10028386, -.10594532, .06968719, -.10589208, -.1119133, -.33326482, -.40322095, .10587404, -.4007912, -.2865054, .01988369, .0196859, -.01143858, .01968557, .02083525, -.17025897, -.1869918, .08834197, -.1867182, -.17237424, .23507155, .21421042, -.03318566, .2139024, .15421509, -.28474643, -.33233788, .07686481, -.33101849, -.2318594, -.58720124, -.87273312, .15584735, -.85030475, -.47544591, -.61495582, -.98260761, .27888785, -.9475382, -.59527248, -.56243197, -.80025237, .10867358, -.78390244, -.40966732, -.14077564, -.15085131, .03234317, -.15073124, -.10863152, -.18260914, -.20079369, .05591265, -.20049242, -.15507021, -.24439112, -.29069365, .62906119, -.28924033, -.42198587, -.73811111, -1.2279392, .10035927, -1.176477, -.47820082, -.50644645, -.72439785, .27553577, -.70915905, -.52090479, -.17399597, -.19079487, .06462178, -.19052501, -.15757806, -.44498495, -.60721357, .31775135, -.59754437, -.5011134, .07172271, .06957196, -.01082252, .06956122, .04810873, .21509852, .19535678, -.09567971, .19505536, .20687511, .02863796, .02827191, -.00613238, .02827113, .02158645, .25546167, .22796332, -.12927557, .22747127, .25648737, -.34061627, -.41792931, .14965998, -.4150289, -.32625373, .77469004, .57754495, -.51279666, .56932591, .85063591, .39144017, .32691917, -.49215888, .32515813, .53229866, .59615035, .45419211, -1.6874646, .4486407, 1.0624914, -.17837085, -.19626745, .07154096, -.19596873, -.16573371, -.1003708, -.10577087, .04640926, -.10572247, -.09778746, -.09795612, -.1029221, .03435635, -.10288016, -.08703623, .09295039, .08865096, -.08461053, .08861783, .11349732, -.4072643, -.54113581, .3577372, -.53391891, -.49141559, .65382402, .50566575, -.41751741, .5001435, .70937429, -.5575895, -.85145524, .34610208, -.82654647, -.59926805, -.10217966, -.10730779, .02252941, -.10726492, -.07777433, -.06366886, -.06577556, .02907765, -.06576394, -.06177525, -.43525928, -.57286957, .16729571, -.56572687, -.39872208, -.49811105, -.67619761, .11554628, -.6657818, -.38560806, .50090974, .40769452, -.29216005, .4048278, .52729857, .86268364, .61965343, -.9182124, .60848892, 1.1097507, -.62052198, -.92951709, .11244186, -.90469252, -.44240917, -.06257593, -.06445174, .01429789, -.06444237, -.04819909, -.34703233, -.42965766, .176219, -.42640866, -.34882494, -.05892985, -.06083489, .04422308, -.06082463, -.0674709, -.24691258, -.28168847, .06957238, -.28087497, -.20394721, -.36903059, -.45514355, .09453386, -.45182378, -.29528907, -.18309023, -.20412071, .16476016, -.20371905, -.22270887, -.44482225, -.61975687, .4830332, -.60853947, -.57604975, -.08058226, -.08362613, .01368654, -.08360697, -.05622561, .20211563, .18364076, -.15093069, .18335982, .23103039, -.26383763, -.30228513, .05257534, -.30135479, -.19416094, .50169006, .41084605, -.20709964, .4081262, .47064499, .85690669, .62910114, -.42150416, .619198, .85224863, -.67448662, -1.1321169, .2257037, -1.0830488, -.58998158, -.24488697, -.28097606, .10361773, -.28009299, -.23163195, -.39807196, -.49524433, .06909688, -.4913284, -.27977175, -.33216003, -.39639229, .06221035, -.39433499, -.2394395, -.38177713, -.48617498, .19811154, -.48147219, -.38653296, -.08027696, -.08357483, .02877727, -.08355226, -.07184896, -.36011292, -.4494137, .1704529, -.4457589, -.35359322, .22393373, .20272089, -.09636476, .20238664, .21300792, .01812136, .01797578, -.00342167, .01797558, .01309834, 1.0445171, .75843336, -.13225875, .74563807, .66083825, -.22269522, -.25013243, .05856105, -.24957055, -.17975744, -.60386461, -.91304686, .15964353, -.88754515, -.48830011, .10351565, .09820456, -.09771299, .09815917, .12793758, .18780321, .17260011, -.07782076, .17239528, .17640484, .39839468, .33369914, -.35895544, .3319591, .48480363, -.56902707, -.872537, .31107061, -.84651874, -.58620782, .52082414, .42577496, -.16874438, .42290727, .45069269, -.27582253, -.32232201, .10543888, -.32102181, -.25221065, .13055037, .12300944, -.04868599, .12293689, .1183941, -.70347537, -1.2040031, .1943892, -1.1479507, -.57729789, .31150776, .27687318, -.03738351, .27623316, .19358986, -.26786344, -.30662368, .04423454, -.30569231, -.18515671, -.10166485, -.10788655, .12161541, -.10782314, -.13597323, -.28141867, -.32648367, .06218693, -.32528622, -.2143606, .12675404, .11969532, -.04304958, .11962985, .11142283, .00564854, .00563403, -.00124235, .00563403, .00429585, .70315729, .55232744, -.11447213, .54699757, .48373952, -.57315138, -.83876186, .14921006, -.81883073, -.46109342, -.32012522, -.38622687, .13072175, -.38396798, -.29923051, .19846144, .18343456, -.02536435, .18324517, .12595111, .40129512, .33990812, -.16938496, .33835163, .37926625, -.22856924, -.25983375, .10393876, -.25912335, -.22145273, -.01674834, -.01690274, .01757409, -.0169025, -.02144283, .451725, .37640179, -.17925774, .37432235, .41823341, -.5069588, -.73016766, .30740562, -.7142168, -.54062448, .14639697, .13762086, -.02806901, .13753324, .10635889, .54156343, .43020691, -.53963023, .42643087, .68151431, -.00369693, -.00370369, .00164843, -.00370369, -.00355845, -.00518422, -.0051979, .00293264, -.0051979, -.00540197, .52562602, .42180305, -.41413477, .41841804, .61165772, -.34805066, -.41861733, .0591539, -.41624897, -.24290294, .19213086, .17635487, -.07498533, .17613929, .17690231, .59949237, .46575827, -.68085713, .4608489, .78804516, -.269149, -.31443131, .12642314, -.31316769, -.26360119, -.08055403, -.08380109, .02383641, -.08377928, -.06763141, -.52710152, -.74389095, .15786241, -.72937786, -.44432329, .23318428, .21130044, -.06324005, .21095881, .19016923, -.347374, -.41668089, .05385617, -.41439143, -.23511844, .73367753, .56669864, -.17585896, .56044855, .57420678, .17500619, .16226928, -.04652948, .16211496, .14178219, .94605452, .68612388, -.30550686, .67446351, .81776358, .50546688, .41903062, -.09826981, .4165844, .36893103, -.18998405, -.20998685, .06278385, -.20963655, -.16548961, .37311908, .31743209, -.22857165, .31605411, .39925383, -.01912069, -.01932781, .02543713, -.01932743, -.02649527, .31556855, .27535671, -.14827811, .27450587, .30909939, .39197774, .33229297, -.19381106, .33078654, .39052046, -.6211055, -.94356796, .13609918, -.91661946, -.47177916, -.39929942, -.51206168, .16883709, -.50681948, -.37759979, -.50640822, -.68089631, .08212162, -.6710497, -.34793357, -.05687068, -.05829852, .00664011, -.05829255, -.03502091, -.14211899, -.15451163, .14617386, -.15433177, -.1807457, -.20880173, -.23566553, .13577928, -.23509118, -.22791726, -.12352715, -.13063606, .01541625, -.13056792, -.07777581, -.43868933, -.59652185, .33072572, -.58723422, -.50304176, -.29153569, -.3398282, .05973137, -.33850118, -.21654026, .13964675, .13118796, -.04536704, .13110264, .12095134, -.03966402, -.04042777, .01176078, -.04042532, -.0333237, .75850883, .58647238, -.12878309, .58005447, .52917993, .15005071, .14060256, -.03747029, .14050349, .11905046, -.68233406, -1.0671377, .09382966, -1.0323789, -.44373267, -.27654892, -.3235601, .10951834, -.32223473, -.25587052, -.28516153, -.33071434, .05497475, -.32950686, -.2075511, -.26369445, -.30841731, .15767347, -.30715932, -.27989612, .3169408, .27673987, -.13613017, .27589314, .30128688, 1.0952246, .78043927, -.18254339, .76570135, .75939459, .13669411, .12921327, -.01984136, .12914508, .0905108, .330727, .28661029, -.16907958, .28563349, .33318605, -.63230002, -.9027777, .04523618, -.88397517, -.33071515, -.52766834, -.77382029, .29878069, -.75523288, -.55000698, -.05007151, -.05137913, .02586399, -.05137344, -.05061769, -.42531462, -.5499931, .12801344, -.54398146, -.35911653, -.1297289, -.13839983, .03563857, -.13830332, -.10625301, -.21443397, -.24183356, .10423078, -.24125174, -.2124244, .46625586, .38202951, -.3615271, .3795137, .53968434, 1.2041013, .79553721, -1.1263728, .7732085, 1.4836999, -.26296011, -.30456318, .09809341, -.30347089, -.23849715, -.31697151, -.37666494, .07536004, -.37480244, -.24740237, -.22314465, -.2540796, .13911348, -.25336724, -.24017293, -.31576921, -.38059817, .14030666, -.37839529, -.30358662, -.35073082, -.4215313, .05400701, -.4191653, -.23685142, -.09403073, -.09858561, .03256135, -.09854885, -.08319374, -.27935476, -.32542194, .08138768, -.3241617, -.23332805, -.62213469, -.92903391, .1052494, -.90459631, -.43351702, -.14938662, -.16149883, .05493428, -.16133536, -.1348442, -.20664992, -.23418287, .19152947, -.23357339, -.25385089, -.26586532, -.30991069, .12496911, -.30870023, -.26044659, -.25807377, -.29778868, .09331687, -.29677423, -.23164662, -.30314598, -.36319764, .15247232, -.36122789, -.30374435, .24775518, .22381456, -.05283603, .22342979, .18649558, -.24843365, -.28577432, .1066353, -.28484257, -.23611157, -.70001612, -1.1721137, .16366661, -1.1217738, -.5433363, -.16368619, -.1785629, .06550496, -.1783379, -.15197638, -.22438792, -.25222303, .0580311, -.25164911, -.18012055, 1.4120916, .91321611, -.61659021, .88493049, 1.3497421, -.08394263, -.08770191, .04174102, -.08767387, -.08378882, .11246524, .10698612, -.0304348, .10694165, .09165279, .73968257, .56947986, -.19038664, .56304099, .59281486, 1.4090884, .91290803, -.5933184, .88485893, 1.3306528, -.2440235, -.28366336, .21559238, -.28259501, -.29501374, -.24924191, -.28846526, .14492164, -.28744088, -.26210086, -.24698227, -.28058286, .05372172, -.27982347, -.18714167, -.45857664, -.62671937, .25786659, -.61664209, -.47688791, -.61800719, -1.0276645, .41359248, -.98467025, -.68107755, -.39285108, -.49992802, .15444424, -.4951199, -.36259282, -.40121812, -.53012827, .35290152, -.52333129, -.48433762, -.54848998, -.78129082, .13547929, -.76522807, -.43359084, -.42025715, -.56786194, .4070682, -.55937626, -.52389284, .34029902, .29960747, -.04043193, .29879914, .21077801, -.80333773, -1.5357323, .16225583, -1.433301, -.59384834, .35708367, .31125712, -.05966209, .31028061, .24779325, -.5847827, -.85951985, .13601524, -.83863343, -.45310849, -.40549831, -.53574142, .32356278, -.52887632, -.473866, -.40787468, -.51196956, .0756231, -.50758728, -.29303038, .0808268, .07791694, -.02345714, .07789948, .06742257, .11103542, .10540773, -.04950461, .10536021, .10687257, -.15895282, -.17356782, .09076858, -.1733442, -.16615013, -.48207555, -.64863346, .1236818, -.63920946, -.38594196, -.41828669, -.54416709, .17141096, -.53793991, -.39144633, -.25512486, -.2982931, .20198933, -.29708165, -.29736372, -.37029916, -.46148307, .13034527, -.45777687, -.32941516, .47744139, .39992459, -.08417699, .39784011, .33730376, -.00934437, -.00938289, .00143207, -.00938286, -.00630035, -.02772804, -.02810658, .0100532, -.02810572, -.02491098, -.10725828, -.11332995, .04162304, -.1132727, -.09856933, -.59832789, -.92792556, .24138858, -.89880156, -.55702549, -.57759115, -.85775157, .17569523, -.83579705, -.4894147, -.33794661, -.40552683, .06817076, -.40328937, -.24971317, -.62978867, -1.0370275, .32123178, -.99525298, -.6339856, -.68597933, -1.1991312, .28782311, -1.1389871, -.64703221, -.49037436, -.67011574, .15054169, -.65934682, -.41678694, .55890967, .45229089, -.16472336, .44893128, .46862216, .32741952, .28625396, -.09524658, .28539446, .27333558, -.35087844, -.43207793, .13403453, -.42897309, -.32076479, 1.5813168, .97846186, -.93921735, .94187025, 1.6747293, -.44018906, -.55989131, .06126661, -.55452844, -.28741589, .06129037, .05954432, -.02349401, .05953603, .05609497, -.46163541, -.60840753, .10801341, -.60074747, -.35840053, -.29875723, -.36047311, .2278336, -.3583632, -.34389686, 1.4552584, .95668254, -.2900742, .92919281, 1.0710419, .53780487, .43727525, -.17474037, .43416999, .46582655, .41170242, .34757772, -.16990823, .34592261, .38619243, -.12477915, -.13336909, .06188318, -.13327062, -.12444064, -.35026659, -.42755531, .09928534, -.42473541, -.28989286, -.49730549, -.6883825, .17444435, -.67640159, -.44188691, -.20168938, -.22264205, .03508153, -.22227998, -.14184854, -.3716121, -.4675208, .17101449, -.46343851, -.36147717, .10483886, .09985598, -.04200895, .09981653, .09738053, -.31658804, -.37002846, .03532148, -.36853229, -.19202272, -.47864818, -.68117839, .39635932, -.66724558, -.5663053, -.62571462, -1.0136703, .28378283, -.97539099, -.60569814, -.43625711, -.56745388, .1219175, -.56096812, -.35935776, -.3768037, -.50466399, .80072945, -.49755497, -.61035434, 1.0621417, .75963392, -.20403967, .74559242, .77215265, .0328903, .03226835, -.07481728, .03226639, .05449908, -.17185771, -.18674733, .03037659, -.18653262, -.12151663, .0236511, .02340173, -.00486029, .02340129, .01758457, -.43862113, -.57065469, .11743041, -.56412149, -.35617482, .46269548, .38383737, -.19158832, .38161295, .43450674, .18951731, .17559938, -.02694152, .17542923, .12461872, -.32747899, -.41462936, .5704933, -.41080661, -.49645796, .25758844, .23049773, -.09449579, .23002404, .23232632, .31758568, .27759082, -.12377705, .2767544, .2922788, -.34218485, -.42648063, .24580193, -.423053, -.38611109, -.4088183, -.51638855, .09005913, -.51172227, -.3110805, -.80521678, -1.4050351, .07860527, -1.335001, -.46712786, -.8546913, -2.0223329, .29883109, -1.7923761, -.75862086, .69311103, .53298743, -.33765129, .52690642, .6871233, 1.1947123, .81219341, -.47164122, .7923775, 1.1042214, -.40009891, -.49501237, .0551297, -.49129354, -.26036552, -.4081933, -.521855, .12978439, -.5166433, -.35101693, -.45795604, -.64026731, .40870837, -.62843877, -.55551659, .08164061, .07866174, -.02459797, .07864363, .06895735, -.04035683, -.04125175, .03510488, -.04124844, -.04853747, .14532344, .13313101, -.87268265, .13296079, .33280197, -.50026008, -.68636627, .13933804, -.67505498, -.41162063, .57392939, .47021874, -.06886095, .46711995, .35664815, -.73827282, -1.4743277, .4215619, -1.3630265, -.77168792, -.58281782, -.84274163, .1075697, -.82393788, -.41808238, -.00065633, -.00065654, .00029299, -.00065654, -.00063199, .75288704, .57253124, -.28254898, .56543741, .68421794, -.29174285, -.34598048, .13379398, -.34430968, -.28345819, -.01213181, -.01219526, .00148818, -.0121952, -.00759473, 1.1875734, .80992775, -.44442331, .79048795, 1.0782412, -.59310681, -.94491404, .35995501, -.91160125, -.63267598, -.49983984, -.69911699, .2045385, -.68616942, -.46754376, -.43655652, -.55970174, .08213568, -.55398313, -.31517198, .06577544, .06384116, -.01799947, .06383169, .0538029, .65614772, .51896186, -.14355175, .51423367, .49813522, -.73470229, -1.2324181, .11317359, -1.1791277, -.4962105, -.45860398, -.61939807, .20045514, -.61016967, -.43850473, -.35747689, -.4564202, .36142831, -.45190998, -.45204607, .56119242, .44767566, -.33020406, .4438875, .59248679, .63886023, .49972097, -.29988187, .49473085, .6255528, .22006193, .19891531, -.12866661, .19857732, .23184367, -.70226265, -1.2038878, .20010291, -1.1475115, -.58222946, .31365132, .27515623, -.10312727, .27437149, .27275073, -.25744216, -.29712234, .09625626, -.29610719, -.23367169, .2909643, .25914074, -.05412012, .25856219, .20926152, 1.448869, .96127786, -.22405255, .93483027, .97981942, -.63537241, -.98650244, .1514761, -.95538216, -.49637542, .06547446, .06338746, -.03991762, .06337638, .06994868, -.45136775, -.59744329, .14350211, -.58968686, -.38813527, -.18090053, -.19645099, .01893559, -.1962285, -.10741448, -.01422981, -.01433352, .00801671, -.0143334, -.01480726, -.28676242, -.33361277, .06176315, -.33234288, -.2165715, -.03810031, -.0389361, .05062011, -.03893305, -.05277198, -.45690859, -.60877016, .15199966, -.60049491, -.39888137, .49643102, .41044933, -.13213891, .4079852, .40233967, -.52586306, -.76036553, .24477965, -.74340229, -.51347213, -.5924395, -.87061468, .12222478, -.8494784, -.44105467, .28472938, .25311973, -.07550306, .25253648, .23047281, -.80915386, -1.5112437, .13010558, -1.4172483, -.5543653, -.34930171, -.42981181, .13533621, -.42674549, -.32083505, .27165529, .24119811, -.1222478, .24063059, .26228239, -.591751, -.94386109, .3716657, -.91042169, -.63848911, .48929003, .40475457, -.1440689, .40233778, .41012004, -.3686661, -.47023772, .27450567, -.46562852, -.42100046, .0078351, .00780773, -.00146312, .00780771, .00564243, 1.2654177, .83530349, -.77888165, .8117597, 1.356198, .39521216, .3377571, -.10694825, .33637183, .32207333, -.49057537, -.67009995, .14870434, -.65936082, -.4151978, -.19877268, -.22288743, .12935537, -.22240111, -.21702475, -.58216871, -.87924513, .21055823, -.85481939, -.52259668, -.2297186, -.25718772, .03643411, -.25664167, -.15666675, -.31661211, -.37751449, .08802402, -.37557404, -.26035269, -.27206636, -.32236391, .22499123, -.32082303, -.32174744, .16440459, .15357079, -.02835786, .15345192, .11530384, .00103929, .0010388, -.00021298, .0010388, .00077199, -.33083111, -.39558536, .06980408, -.39348639, -.24814632, -.12046646, -.12864033, .07287372, -.12854797, -.12836435, -.43725155, -.55670313, .06651499, -.55132732, -.29408356, -.3054157, -.35349905, .02859342, -.35224275, -.17472684, 1.1598261, .80217503, -.33297464, .78428477, .96399688, -.59378871, -.8659557, .10641497, -.84574523, -.42179251, .05247017, .05130234, -.00809786, .051298, .03546024, .70684525, .55549519, -.1072906, .55015624, .47505816, .31151861, .27466035, -.07308972, .27393582, .24207582, -.6991559, -1.3535436, .53619384, -1.2598869, -.80630612, .03458053, .0339866, -.0205769, .0339849, .03664582, .82682948, .60682106, -.56819092, .59724861, .919289, -.10284804, -.10861681, .0539691, -.10856291, -.10451752, -.3197203, -.38921434, .18637731, -.38671619, -.33650213, .97145615, .70037602, -.30919677, .68803492, .83567443, .0025278, .00252482, -.0006883, .00252482, .00206426, .05788055, .05636685, -.01664403, .05636025, .04813392, -.52883627, -.73940217, .1293742, -.7257381, -.41671588, -.39248162, -.48165016, .04845533, -.47830192, -.24622761, -.3925012, -.51354987, .33019403, -.50741698, -.46683176, -.56031347, -.81448204, .16065483, -.79579414, -.46550959, .22330768, .2037657, -.04331321, .20348115, .1628618, 1.2671633, .85776025, -.33976017, .83637302, 1.029491, -.43456787, -.5717868, .1681824, -.56467313, -.39900217, -.24206258, -.28093407, .21175835, -.27989831, -.29168132, -.42873818, -.5629535, .1780476, -.55605376, -.40301091, -.49242361, -.6598997, .09536759, -.65056734, -.35895184, .13989783, .13073676, -.09689245, .13063687, .1559483, .7407564, .55949554, -.42875698, .55221846, .77779296, -.18645751, -.20665062, .09067891, -.2062869, -.18474187, -.55840691, -.85765763, .36963806, -.8318906, -.61315379, .31715448, .27514663, -.21852665, .27422302, .35293281, -.7165565, -1.2868527, .25484644, -1.2161667, -.63964128, .974585, .69060403, -.56893569, .67713489, 1.0262288, -.32192358, -.38577559, .09508929, -.38367856, -.27011937, -.5998119, -.89087792, .13017601, -.86805931, -.45414761, .43858688, .3659991, -.20787794, .3640099, .43084054, -.15953623, -.17482537, .12207043, -.17458157, -.18384551, -.25385373, -.2911425, .07588293, -.29023302, -.21385221, -.39446492, -.49894205, .12492114, -.49438067, -.33876165, .0306346, .03018139, -.01370242, .03018027, .02951779, 1.4738252, .93933028, -.68459262, .90830075, 1.4380855, -.29050831, -.34106826, .08722709, -.33960921, -.24509409, .59850856, .47340936, -.29846146, .46909894, .59797954, 2.4104501, 1.2709452, -2.3575449, 1.1881433, 3.0145935, -.67469976, -1.0052526, .05320747, -.97910221, -.36453668, -.46940231, -.66813162, .46465258, -.65445295, -.58940833, -.27271976, -.32287399, .2127947, -.32134546, -.3163307, -.35825387, -.45985633, .41275096, -.45511323, -.47318753, .18800499, .17256188, -.08955579, .17235077, .18499251, .15566192, .1440027, -.15870237, .14385733, .19739041, -.39539076, -.49323855, .07964831, -.48924201, -.29202489, .59827041, .48136068, -.12866286, .47758885, .4516057, .00012764, .00012763, -.00005284, .00012763, .00011986, -.60613341, -.91044242, .14108794, -.88580433, -.46977018, .14661279, .13790178, -.02540357, .13781558, .10298078, 1.1334289, .79676324, -.22650754, .78050387, .83489861, -.2907386, -.33234446, .02116708, -.33135568, -.15295562, .37710646, .3241227, -.1058066, .32288766, .31104524, -.02883914, -.02924234, .0090557, -.0292414, -.0246967, -.02005801, -.02024287, .00414231, -.02024259, -.01493767, .23177615, .21016051, -.06218017, .20982518, .1883388, .76446302, .58331524, -.21613315, .57626475, .6321519, -.48101958, -.66892298, .24911215, -.65695167, -.48668744, -.04201194, -.04284543, .00963797, -.04284267, -.03240313, .18774025, .17117493, -.18893547, .17093174, .23703879, .74734106, .56677162, -.33648461, .55961035, .72167938, -.6591305, -1.0723949, .19621188, -1.0311942, -.55449721, -.22167818, -.24704873, .03470137, -.24656593, -.15052461, .04388406, .04306384, -.00668581, .04306129, .02953016, -.22977463, -.26124438, .1006082, -.2605284, -.21983112, -.51127357, -.75846885, .45884498, -.73915675, -.62134702, -.19452091, -.21545657, .06160036, -.21508181, -.16705082, .58082574, .4560683, -.53736887, .45165396, .71306875, .28466945, .2499898, -.2065418, .24928803, .32228485, .14022023, .13136471, -.06636631, .13127158, .13767857, -.39441849, -.54777294, 1.1885606, -.53804669, -.71777547, -.2854344, -.33754261, .14041345, -.33596604, -.28389023, -.10232612, -.10792736, .04591567, -.10787629, -.09870094, -.22298031, -.24819432, .03019943, -.24772022, -.14427373, -.49189513, -.65191499, .07435375, -.64337513, -.33013581, .54129734, .44473221, -.09421088, .44188313, .38077428, -.3141839, -.38136968, .19219353, -.37899305, -.33603064, .52910353, .42971918, -.21126421, .42663465, .49088423, -.62464995, -.97954638, .19663399, -.94726566, -.53536996, .75256547, .56658394, -.4322483, .55904583, .78816526, -.55772974, -.84573248, .31387839, -.82178593, -.58015808, .15164157, .14298332, -.01310932, .14290099, .08447903, .0153214, .01520807, -.00617892, .01520793, .01426198, .47089409, .38773578, -.25429813, .38530659, .48314024, -.05675135, -.0582369, .00969293, -.05823042, -.03967155, .11061595, .10520062, -.03643206, .10515646, .09624609, .01416898, .01406766, -.00848756, .01406754, .01504862, -.24161691, -.27095853, .02734499, -.27036622, -.1472496, .01455121, .0144392, -.0134194, .01443906, .01784516, .46859083, .3934604, -.08443875, .39146497, .33346719, -.22719214, -.25977519, .15469994, -.25899916, -.25182697, .15358846, .14319541, -.06368345, .14307831, .1442972, .3556438, .31156832, -.04197952, .31066111, .21980252, .17859891, .16500587, -.0621345, .16483366, .15826084, -.37956082, -.48827711, .27626347, -.48315254, -.43016864, .3731618, .31932929, -.15510458, .31804123, .35087276, -.18786051, -.208419, .0925445, -.20804484, -.18693209, .81327041, .60721746, -.32707028, .59866332, .75633409, -.16706276, -.18441847, .15832612, -.18411855, -.20675084, .94132863, .70605769, -.08417635, .69641767, .53035606, -.33784023, -.41811617, .21561216, -.41496577, -.366473, -.13640498, -.14617173, .04176048, -.14605529, -.11582935, 1.6127625, 1.014966, -.48695071, .97957604, 1.3631761, -.53208943, -.78188964, .28847348, -.76291209, -.54664039, 1.6146371, 1.0290688, -.32997947, .99507393, 1.1982725, -.77581268, -1.3487554, .10245997, -1.2823816, -.49777452, -.49310456, -.7287983, .57941269, -.71058407, -.65558954, .1963589, .18089863, -.0410606, .18069602, .14684262, -.69517518, -1.2632614, .3566579, -1.1911621, -.7011702, -.03665689, -.03735259, .01946688, -.03735039, -.03740066, -.09244805, -.09707926, .04940959, -.09704061, -.09452476, -.31164636, -.3733888, .12230389, -.37136336, -.28747371, -.1985375, -.22173589, .09819529, -.22128522, -.19781926, -.26318965, -.31195439, .29793548, -.31045717, -.34559168, -.34121537, -.41643027, .12159344, -.41368879, -.30478887, -.30756931, -.37637527, .30765907, -.37383066, -.38755074, -.19443444, -.21632326, .08733718, -.21591349, -.18761109, -.54927006, -.77451596, .11179131, -.75947913, -.40707082, -.13259001, -.14222483, .05905857, -.14210826, -.1275787, .13708588, .12851652, -.07184424, .12842731, .13925233, -.12015573, -.12784866, .04628493, -.12776663, -.11015043, -.36949224, -.44524532, .0395459, -.44267477, -.22102804, .70993199, .54609802, -.27478998, .53988256, .6518607, .77662021, .58105767, -.43460627, .5729868, .80633304, -.54946963, -.91417902, 1.0649076, -.87585537, -.86313045, .02407643, .02380893, -.0068007, .02380844, .01990318, .29569801, .25968919, -.1517248, .25896081, .29825962, -.368871, -.46224996, .16047575, -.45835003, -.35215145, .52276536, .42167726, -.33247035, .41844923, .56641164, -.44749152, -.63940798, .72845226, -.62603375, -.66323419, -.65579296, -1.0719928, .2150347, -1.0300301, -.56975833, -.6022482, -.93903725, .24527004, -.90885475, -.56243868, .4680247, .38561959, -.25765354, .38321946, .48328267, .16268144, .15218796, -.02493842, .15207525, .10969622, .19373071, .17705278, -.11399762, .17681387, .20453811, .19253084, .17717772, -.05471559, .17697395, .15948282, -.47507919, -.64150947, .15042388, -.63196539, -.40796816, .30893445, .26958626, -.17485314, .26875407, .3219675, .95742478, .68410067, -.48450958, .67138558, .96127408, -.00020088, -.0002009, .00004746, -.0002009, -.00015646, -.41655101, -.53772901, .14433722, -.5319297, -.36862227, .69049373, .5340279, -.26978312, .52819607, .63599653, -.19829589, -.2207681, .07851276, -.22034462, -.18345627, -.34670537, -.41593531, .05499794, -.41364655, -.23646445, -.37843404, -.47587802, .14570374, -.47173978, -.34686491, -.08398264, -.08753776, .02584999, -.08751269, -.07144248, .76964305, .57764319, -.41079793, .56979036, .78658498, .03622165, .03556509, -.02337097, .03556311, .03943493, -.26755896, -.31635395, .23388636, -.31487911, -.322323, -.01255189, -.0126362, .01056077, -.01263611, -.01492959, -.30845422, -.36666675, .09509106, -.36484664, -.26253288, 1.338161, .87983412, -.56482266, .85457017, 1.2646964, -.33926235, -.41223079, .10806819, -.40963487, -.29192172, -.15645295, -.16877968, .03016566, -.16861799, -.1138772, -.20904858, -.23396862, .0756621, -.23347476, -.18770144, -.44183262, -.59607991, .26353094, -.58726416, -.46858932, .19758775, .18025388, -.11825369, .18000086, .20979167, -.36086085, -.44873655, .14915824, -.44520369, -.33867691, -.02459151, -.02489064, .00947921, -.02489003, -.02254884, -.70225898, -1.1268567, .10123357, -1.0859291, -.46392707, .16521037, .15188618, -.2088498, .15170734, .22506755, 1.1967308, .81044147, -.5290354, .79027901, 1.1486011, .14631725, .13723089, -.03995947, .13713693, .11960433, -.07734385, -.08035544, .02459876, -.0803359, -.06651684, -.64371163, -1.0402404, .22002504, -1.0013503, -.56705903, 1.5524088, .97495273, -.70290097, .94065939, 1.5019153, -.28060654, -.32433074, .05227474, -.32319997, -.20191681, -.40252318, -.52402258, .23730785, -.51799455, -.42524703, .19208406, .17463573, -.21253742, .17437205, .25031258, -.44132255, -.56914823, .0885403, -.56305679, -.32550755, .84461867, .6380791, -.14874639, .62979241, .59648464, .43705352, .37012395, -.08664179, .36842511, .32107677, -.41079452, -.52282583, .10842605, -.51779244, -.33199966, -.09970087, -.10475503, .02981724, -.10471235, -.08400371, -.30064167, -.3554778, .09212965, -.35382014, -.25537356, -.85525691, -1.8855153, .219699, -1.7025483, -.68498925, 1.1113579, .77408623, -.36683635, .7574659, .96769112, -.44689844, -.59398737, .17145775, -.58604801, -.40913654, .20610637, .18756321, -.10950147, .18728566, .21031856, .55131358, .44116271, -.32611823, .43753094, .58308807, -.17439685, -.19111203, .05991796, -.19084547, -.15389391, -.013729, -.0138198, .00449467, -.0138197, -.01192162, -.63042134, -.99667387, .20170184, -.96265864, -.54325102, -.62553683, -.9774335, .18596994, -.9457211, -.52600859, -.28148494, -.3432292, .54867406, -.34098958, -.44301481, .17822118, .16438191, -.07745754, .16420303, .17008687, -.36264389, -.44273912, .075674, -.43981411, -.27100615, -.08051297, -.08340306, .00892393, -.08338577, -.04872733, -.45501394, -.63376352, .40062633, -.6223134, -.54946449, -.18714207, -.20608581, .05220646, -.20576681, -.15406324, .43589437, .36399211, -.20999187, .36202815, .43052495, -.21860384, -.24612779, .07998934, -.24555183, -.19699683, .63163106, .47671587, -1.5831303, .47048265, 1.0809971, .27460516, .2445488, -.08665917, .24400198, .23555228, .01103839, .01098239, -.00276905, .01098235, .00877117, -.46884904, -.63417799, .17350826, -.6246366, -.42410371, -.60840711, -.91799413, .1460026, -.89260785, -.47635023, .27226217, .24193171, -.11211278, .24137013, .25520347, .56206722, .45804978, -.10865281, .45486822, .40946409, 2.2574775, 1.2763903, -.66359112, 1.2097591, 1.8911493, .45320571, .37170034, -.42998167, .36927644, .56107841, .42725895, .36167879, -.10665048, .36001042, .33894174, .00697976, .00695695, -.00202444, .00695693, .00582111, -.70044707, -1.2553482, .30065116, -1.1868559, -.66570401, -.48982143, -.67466904, .17847675, -.66327803, -.4407873, .15351535, .14273853, -.09234347, .14261257, .16327258, -.43391792, -.57738764, .22288376, -.56960922, -.43783237, -.54102287, -.75076049, .0933284, -.73749592, -.37945332, -.63054991, -.95239523, .11130689, -.92592675, -.44565317, -.04260425, -.04347693, .01139051, -.04347395, -.0345801, .26530286, .23776463, -.06493007, .23728936, .20908357, -.51412507, -.72472348, .18861556, -.71067954, -.46371203, .34446129, .29870085, -.11665038, .29769178, .30250484, -.29797033, -.34568092, .03933844, -.3444133, -.19116032, -.60360127, -.9037539, .139343, -.87967138, -.46652166, .40768739, .34950269, -.06766524, .34812523, .28228213, -.37466846, -.4792952, .26222624, -.47448427, -.41911526, -.46921854, -.64741377, .26058549, -.63636552, -.48593351, -.56433279, -.85554398, .2847436, -.83134645, -.56604572, -.08634594, -.09071815, .09333165, -.09068127, -.11164714, -.02003637, -.02024106, .01041608, -.02024071, -.0202982, .59132009, .47419447, -.16713741, .47036531, .48893333, -.46173172, -.5978794, .06874143, -.59127716, -.30832542, -.58402034, -.85039333, .11854149, -.83070586, -.43243294, -.55914576, -.8353297, .24877737, -.8133109, -.53781178, .44547946, .36764891, -.34860404, .36539922, .51721676, -.26127152, -.30681979, .20622582, -.30550317, -.30421857, -.61504732, -.97835053, .26432744, -.9440826, -.58478528, .08355641, .08052772, -.01918686, .08050943, .06446606, -.40578931, -.53826007, .35378452, -.53116637, -.48841614, -.35961484, -.43178716, .04249367, -.42938916, -.22233602, -.38258441, -.47359501, .08030352, -.47001936, -.28646597, .89314566, .66428211, -.18076181, .65467732, .66068395, .27105607, .24028062, -.14248256, .23969994, .2756153, -.40391258, -.50923, .09366305, -.504702, -.31264946, -.23916345, -.27116805, .06147544, -.27045649, -.1915904, -.33892144, -.41893695, .20154034, -.41581661, -.35908452, .15639155, .1463535, -.03254967, .14624621, .11677084, .29300078, .25715597, -.17167031, .2564276, .30890214, -.05759414, -.05909465, .0082698, -.05908813, -.03799799, .4806042, .39766338, -.16403827, .39529483, .42317185, .81670299, .60790134, -.3583561, .59915753, .78191167, .30851868, .27094305, -.10821653, .27018287, .27413354, .57166398, .45582386, -.29121752, .45195147, .57523202, -.4046238, -.53201139, .29259045, -.52542633, -.45757715, -.24679736, -.2798083, .0476481, -.2790747, -.1797155, .79474976, .59957038, -.25654982, .59170708, .68689049, -.20744948, -.23045703, .04637853, -.23003268, -.15863191, .21771334, .19694262, -.13002563, .19661302, .23099877, .78607735, .60277702, -.13957481, .59575277, .55665896, -.61240994, -.96393736, .24113132, -.9316551, -.56553049, -.34004814, -.42724245, .33384104, -.42355466, -.42581097, -.18712246, -.20885844, .15076754, -.20843865, -.21937976, .15013306, .14052878, -.04365754, .14042647, .12531815, -.06555559, -.06780034, .03087027, -.06778753, -.06425841, -.45532588, -.6032533, .13688155, -.59536894, -.38430249, -.47866281, -.62154923, .05551102, -.61453651, -.29409627, .10379618, .0992905, -.01897395, .09925791, .0742193, .27525161, .24445907, -.10746921, .24388656, .25346885, .44000184, .36911396, -.14780521, .36722222, .38536853, -.08764775, -.09186995, .05454247, -.09183606, -.0942791, .39856408, .34084917, -.09559651, .33946304, .3120011, -.28915418, -.34830523, .27694204, -.34630242, -.35910872, -.54668736, -.81965483, .31385788, -.79766835, -.57246249, -.13214671, -.14110555, .03451977, -.14100441, -.10643151, -.05303343, -.0543188, .00855113, -.05431361, -.03636785, .37518581, .32519639, -.06085479, .32409083, .25779383, -.20416909, -.2255121, .0333895, -.22514098, -.14067167, -.73453935, -1.3261482, .21807897, -1.252033, -.6173877, -.51285193, -.69944573, .1009299, -.68834599, -.37584716, -.34356943, -.41990334, .12127341, -.41709935, -.30592024, -.61185903, -1.0170268, .4461753, -.97454363, -.69387209, -.74680096, -1.3323688, .17349841, -1.2607571, -.57842236, .70162212, .55215776, -.10661961, .54691156, .47172752, .52578771, .42595277, -.25362418, .42282123, .51953384, .05380708, .05250817, -.01411749, .05250294, .04339991, .60789505, .48050614, -.27229875, .47610578, .586018, -.03696114, -.03765362, .01627638, -.03765146, -.03542905, .06786725, .06552571, -.06338565, .06551225, .08358221, -.24636214, -.28486146, .15119768, -.28386295, -.26377949, 1.5507848, .96230871, -1.010033, .9267362, 1.6936469, -.64427637, -1.112392, .42573289, -1.0589588, -.70702896, .40112431, .33692308, -.28696759, .33522086, .45200191, .22752738, .20598175, -.08452806, .20564237, .20607853, -.41029188, -.51805874, .08653263, -.51339204, -.30770313, -.3352269, -.40292353, .07774257, -.4006604, -.25949094, -.09823975, -.10297479, .021997, -.10293677, -.07516044, -.45906155, -.6389501, .36820685, -.62745478, -.53738792, .54875732, .4442739, -.18633969, .44098771, .48235339, -.46390271, -.61090183, .10182795, -.60325493, -.352574, -.13586222, -.14521798, .03140487, -.1451107, -.10505292, 1.5325827, .95475011, -.98943472, .92001987, 1.6688667, -.0180165, -.01817654, .00704904, -.01817631, -.01660225, .1074245, .10219496, -.04359798, .10215255, .10020768, .91324351, .66341484, -.38068255, .65225386, .85951881, -.13804802, -.14753983, .02729999, -.14743116, -.10133302, .09347746, .08949071, -.03700553, .08946238, .08647757, -.50931142, -.72863446, .26424161, -.71329046, -.51562347, -.53793659, -.76080839, .13943669, -.74578287, -.43213862, -.25884982, -.29723551, .06959389, -.2962904, -.21049039, .86831329, .63220778, -.52265542, .62172045, .92370391, -.65285423, -1.0173435, .12767231, -.98472881, -.47744101, -.45934698, -.6418679, .39489684, -.63004719, -.55029867, -.23191228, -.26444189, .11144756, -.26368404, -.22886674, .09519918, .09137385, -.01806198, .09134824, .06892137, 1.6758455, 1.0134619, -1.1410758, .97196346, 1.8575371, -.21193295, -.23870482, .10506008, -.23814276, -.21132695, .16828151, .15522648, -.1214123, .1550579, .19016117, .49347086, .40570005, -.19050999, .40311803, .45271365, -.31551801, -.38082435, .14918844, -.37858735, -.30969759, -.30187324, -.37396933, .54845442, -.37112573, -.46409468, -.46016208, -.61586466, .15922752, -.60723147, -.40702703, -.08661744, -.09036911, .02450479, -.09034204, -.07164137, -.25151268, -.28898407, .09061437, -.28805721, -.22548394, -.04191402, -.04290011, .04338401, -.04289625, -.05341863, .08469815, .08157622, -.02018716, .08155704, .06616338, -.31034085, -.37216383, .1313238, -.37012469, -.29355114, -.45803461, -.62017743, .21375366, -.61078472, -.44762402, .49980632, .4166992, -.07721613, .41441121, .33789402, -.56384813, -.81737021, .1460957, -.79888631, -.4528947, -.48061948, -.6559582, .17221889, -.64550075, -.43010171, .14620871, .13680497, -.05692722, .13670426, .13451338, .26422407, .23781698, -.04497363, .23737809, .18449201, -.43463765, -.59962418, .47955395, -.58939942, -.56585791, -.07744555, -.08062791, .03843585, -.08060612, -.07725379, .54920956, .44158076, -.26428657, .43809866, .54224275, -.58678218, -.89783355, .23639882, -.87132354, -.54602146, -.27075858, -.31760637, .14700409, -.31626226, -.27829664, -.62999685, -1.0615455, .40474533, -1.0148667, -.68490373, -.45134316, -.59439733, .12701407, -.58695388, -.37264776, .05554217, .05405862, -.02821365, .05405202, .05583566, -.58017052, -.89710684, .29732825, -.86932041, -.58495954, -.08213309, -.0853622, .0165121, -.08534104, -.06062097, -.17602733, -.19292472, .05629284, -.19265484, -.15166351, 1.8124182, 1.1240987, -.29446015, 1.0824607, 1.2460184, -.46757378, -.61606444, .09686109, -.60832329, -.34857258, -.70077091, -1.2435629, .27604516, -1.1779104, -.64722321, -.1823987, -.20009761, .04608985, -.19981187, -.14528683, .15408466, .14388699, -.0497265, .14377461, .13316156, -.51644298, -.7288862, .18606273, -.71466167, -.46299686, -.14773155, -.15945679, .05062292, -.15930187, -.13024906, .08229583, .07941547, -.01553589, .07939868, .05948041, .69703697, .52883327, -.57770487, .5221705, .8249277, -.04851095, -.04963147, .01148373, -.04962715, -.0378092, .24278042, .21941664, -.05953089, .21904267, .19145493, .671777, .52784301, -.16253492, .52276247, .52740266, -.15617841, -.17052382, .10367119, -.17030455, -.17164982, 1.5544976, .96906503, -.8655973, .93391329, 1.611296, -.28513785, -.3342719, .09440154, -.33286791, -.24852664, -.46089739, -.60530758, .10034894, -.59787735, -.34934169, 1.3867149, .93965444, -.1596063, .91634674, .84986798, .99046183, .70838601, -.35652627, .69529365, .88769888, -.08002395, -.08323765, .02434802, -.08321615, -.06781273, -.40573327, -.51545943, .11362931, -.51056997, -.33445206, -.40648123, -.52178853, .15049556, -.5164044, -.3677434, .66919291, .51936908, -.29608372, .51384969, .64246439, .39119646, .33692167, -.06846835, .33567223, .27569987, -.44122326, -.59962437, .3120213, -.59032278, -.49527189, -.13558433, -.1446097, .02421351, -.14450965, -.09619864, .0099352, .00988846, -.00324443, .00988842, .00862, -.42082174, -.53340542, .07930414, -.52844146, -.30397701, .96329528, .67781139, -.80426813, .66405317, 1.1428342, -.0708706, -.07339878, .02347869, -.07338375, -.06178438, -.32322952, -.4044075, .4388475, -.40104347, -.45094324, -.05908515, -.06087455, .02471536, -.06086552, -.05567385, -.06013292, -.0621644, .05487635, -.06215297, -.07348747, .47440157, .39775455, -.083663, .3957034, .3351855, -.47880308, -.63947157, .11047014, -.63063467, -.36999534, -.39057774, -.49590363, .15135669, -.49122338, -.35876951, .11513068, .10932827, -.03507222, .10927956, .09760194, -.02055911, -.02077991, .01319937, -.02077952, -.02234587, .27033978, .24057006, -.10481223, .24002518, .24836322, -.43174396, -.5558757, .10088222, -.55000281, -.33504185, -.28981713, -.34109702, .09986907, -.33959278, -.25599788, .49827704, .41348828, -.10395794, .41110027, .37234295, -.66452107, -1.0741235, .17103461, -1.033928, -.53257058, .86372263, .64400865, -.21357962, .63485223, .68303999, -.57246645, -.81588755, .09712925, -.79906265, -.39929453, -.25150833, -.28811492, .07642183, -.28723019, -.21303488, 1.1257878, .77787497, -.43700417, .76043632, 1.0346883, .08991045, .08629892, -.02843603, .08627475, .0771803, -.49263698, -.68520543, .20655261, -.67292912, -.46455617, -.09048578, -.09431884, .01431767, -.09429178, -.06166248, .15430815, .14356173, -.08180471, .14343712, .15734829, .97131033, .70646202, -.22186017, .69466674, .74806921, .18003708, .16590468, -.07972372, .16572004, .17289422, -.29781107, -.3528204, .10849739, -.35113661, -.2679849, -.21547121, -.24222419, .08081257, -.24167209, -.19577736, -.42192978, -.54243744, .11643098, -.53677288, -.34609312, .33540017, .29160407, -.11927025, .29065466, .29938467, -.44351758, -.57901057, .11739654, -.57220895, -.35878614, .16268658, .15236957, -.02106035, .15226062, .10368907, .28590306, .25449007, -.06539078, .25391638, .22028996, .23972163, .21592341, -.09129711, .21553052, .21892759, -.06197495, -.06390928, .02185816, -.06389922, -.05516861, -.6571649, -1.0257757, .12369826, -.99264783, -.47451226, -.07585836, -.07859974, .0152187, -.07858323, -.05595061, -.53839137, -.73995489, .08017422, -.727629, -.35954532, -.39484051, -.49202145, .07777106, -.48807333, -.2894435, .12160171, .11546501, -.02293981, .11541343, .08786847, -.33319858, -.42175107, .49249551, -.41787197, -.47820362, .12191667, .11533611, -.04328711, .11527694, .10876894, -.26129947, -.30723369, .21850026, -.30589492, -.3101604, .08817333, .08467038, -.0299148, .0846472, .07748129, .81469793, .60845971, -.31873043, .59990492, .75072737, .40253592, .34314298, -.10928505, .34168986, .32839763, -.47822963, -.66079171, .23024887, -.64941592, -.47224441, -.48937212, -.65862684, .11032834, -.6490406, -.37525963, .04390026, .04301507, -.01346779, .04301209, .03730384, -.51180504, -.71021291, .14550164, -.69766505, -.42400306, .69894703, .54186216, -.21977156, .53605376, .59882051, -.60590729, -.95447584, .26523247, -.92239875, -.57963733, -.28623331, -.33707983, .11342964, -.33558246, -.26489004, -.43329208, -.55524493, .08603306, -.549594, -.31848254, -.34106626, -.41442309, .10358315, -.41181335, -.28884546, -.34568306, -.42566848, .15087844, -.4226105, -.33037293, -.42486998, -.56263495, .23547429, -.5553061, -.43970547, -.75007176, -1.3815232, .21532873, -1.2992251, -.6234178, -.48305465, -.67351797, .25326371, -.6612743, -.49075548, -.4925107, -.6685222, .12619137, -.65823188, -.39412169, .03483665, .03426099, -.0135819, .0342594, .03206425, -.19559532, -.21772783, .08660362, -.21731139, -.18782828, -.35443248, -.43511509, .11098173, -.43207961, -.30323745, -.38942924, -.47511672, .0417335, -.4719991, -.2330544, -.3169427, -.3911817, .32732977, -.38830899, -.40363827, .87763202, .63066908, -.78726522, .61933602, 1.0664127, -.17403822, -.1918899, .10340688, -.1915853, -.18434141, -.6464664, -1.0192215, .15955964, -.9848451, -.51091461, -.65026946, -1.094346, .31035396, -1.0464465, -.6402624, -.60132335, -.96744638, .36099189, -.93192504, -.63911821, -.2453341, -.27893539, .05957132, -.2781709, -.19283876, -.00191244, -.00191422, .00075416, -.00191422, -.00176694, .36734483, .31925054, -.05931416, .31820521, .25202603, .22426428, .20539334, -.02796272, .20512909, .14115942, -.17674076, -.19368182, .05387904, -.19341163, -.1498676, -.13031518, -.13912861, .03784719, -.13902935, -.10873045, -.44782118, -.60051686, .20683888, -.59198702, -.43613788, -.00159905, -.00160024, .00040897, -.00160024, -.00127884, .41485687, .3471336, -.2760776, .34530268, .45633724, -.18260258, -.20092326, .05929216, -.20061747, -.15812979, -.11701754, -.1239598, .03056328, -.1238912, -.09424189, .1495302, .13983215, -.05168332, .13972741, .13221459, .20380671, .18589445, -.09405106, .18563252, .19843132, -.13218807, -.14162562, .0524459, -.14151343, -.1223795, .41633297, .35056555, -.18295125, .34884422, .39879435, -.40341564, -.51561001, .14153119, -.51047173, -.35847803, -.01089955, -.01096055, .00642133, -.0109605, -.01151218, -.27456939, -.31871107, .07790851, -.31753356, -.22732108, -.23174712, -.2617172, .06128696, -.26107315, -.18741697, .71778654, .56038029, -.12906297, .55469721, .51043536, .09040699, .08684762, -.02246169, .08682428, .07160755, -.42823472, -.57659012, .32392831, -.56817405, -.49160265, -.73344797, -1.2893331, .17694924, -1.2234043, -.57527094, .19918849, .18194076, -.09690683, .18169226, .19738052, -.31398027, -.38360774, .24614757, -.38105488, -.36476242, -.43606549, -.55891246, .08221844, -.55321494, -.31504135, -.07099877, -.07359873, .02893663, -.07358286, -.06632234, -.00646293, -.00648357, .00279196, -.00648356, -.00615553, -.51680267, -.73973336, .23720371, -.72411136, -.50226586, -.51801861, -.73542479, .20179385, -.72058524, -.47666092, -.31510981, -.37479678, .08222015, -.3729238, -.25369429, -.29745244, -.35137603, .09614113, -.34975579, -.25719239, -.7350391, -1.336973, .23001115, -1.2604332, -.62873348, .45611517, .38510575, -.07446771, .38327377, .31408632, .50450701, .41745884, -.11098301, .41497349, .3837134, -.54620251, -.77488586, .13042447, -.75931257, -.42693866, .1362107, .12821241, -.04075766, .12813419, .11478555, -.30235082, -.35349385, .05179581, -.35205906, -.21156751, -.3467653, -.43121179, .20520569, -.42781666, -.36680075, -.09358901, -.09788313, .02144084, -.0978503, -.07215069, -.5109863, -.71815973, .1875663, -.70447986, -.46096481, .23676848, .21228508, -.15500948, .21186412, .25902718, .20057903, .18446754, -.04245899, .18425215, .15061107, -.29042894, -.33880521, .06405475, -.33746858, -.22108216, -.61377622, -.96433791, .23168023, -.93229385, -.55887287, 1.9333925, 1.1448055, -.65698359, 1.0940393, 1.6998406, .62427481, .48959503, -.31924866, .4848092, .62898009, -.2687731, -.31553849, .16220444, -.31418928, -.28616825, .1688125, .15653835, -.06146817, .15638978, .15187857, 1.5577789, 1.0099456, -.2602146, .97901267, 1.0809139, .34211411, .29468124, -.19859652, .29359004, .35956814, -.37676295, -.46575044, .08665975, -.46227877, -.29084477, -.04356825, -.04456409, .02476282, -.0445603, -.04546984, .54015646, .43791248, -.1967464, .43471516, .48602505, -.22783589, -.25506306, .03873162, -.25452215, -.15901814, 1.6325194, 1.0312477, -.39506806, .99585434, 1.2817585, -.3395014, -.41625668, .14967692, -.41338841, -.32555372, -.5985588, -.92194884, .22020632, -.8938893, -.54036989, .78260351, .58753605, -.35527209, .57956426, .75780632, .40960714, .34094308, -.41757968, .33903753, .51939942, -.30710287, -.36661182, .11817014, -.36470194, -.28142877, -.17108852, -.18604524, .03381223, -.18582762, -.12555919, .11350844, .10731254, -.08557291, .10725621, .130159, 1.2408357, .7831263, -3.6426137, .75614678, 2.2385007, -.21783895, -.24568367, .09213761, -.24509219, -.20602156, .35676019, .30760557, -.13237542, .30648176, .32299567, -.47339603, -.65544184, .25993722, -.6440178, -.48840777, .99117112, .71254419, -.29305528, .6997705, .83194052, -.26696039, -.30860822, .07857154, -.30752986, -.2237328, -.51142055, -.74194832, .32302645, -.72510054, -.55285106, -.1879375, -.20968483, .14143173, -.20926642, -.21537795, -.33121455, -.40057121, .10942298, -.39816807, -.28848226, -.05952037, -.06115745, .0101589, -.06114995, -.0415977, .2214726, .20056696, -.10145905, .20023871, .21510654, .82994407, .61060408, -.50085881, .60112256, .88365144, .65665325, .50334461, -.59829855, .49746269, .80205973, .39092314, .33477803, -.10168134, .33344053, .31440155, .04051729, .03977174, -.01095703, .03976946, .0330117, .43090563, .35541749, -.46982053, .3532297, .55878161, .54113558, .44306617, -.11419461, .44012757, .40590954, .32541581, .28493424, -.0890398, .28409788, .26617289, .16749253, .15455772, -.12037301, .15439145, .18902388, -.4913407, -.6389941, .04688347, -.63170005, -.28288185, -.17514395, -.19160083, .04955168, -.19134353, -.1448637, .36564359, .31353362, -.15904747, .31230171, .34905261, -.62117094, -.96637706, .18616163, -.93562098, -.52373806, -.08114134, -.08447644, .02653013, -.0844536, -.07042895, .18348311, .1698388, -.03959452, .1696699, .13866039, -.1807133, -.19767585, .03826057, -.19741091, -.13570231, 1.6634134, 1.0265519, -.67645138, .98775055, 1.5527051, -.07647688, -.07923264, .01391425, -.07921609, -.05459884, .11829654, .11159352, -.08867616, .11153026, .1353922, 1.2923946, .8523698, -.67641718, .82824634, 1.312235, -.24728027, -.28598105, .1483619, -.28497583, -.2627708, -.21988658, -.25062573, .16645027, -.24991198, -.252486, -.2755918, -.31879509, .06308192, -.31767107, -.21240064, -.41555938, -.5461046, .23334534, -.53937065, -.4319483, -.46232233, -.63073909, .23301535, -.62070869, -.46355517, 1.0525976, .74403674, -.33602878, .72931862, .90638017, -.27406865, -.32789422, .32204228, -.32614366, -.36437944, .24627717, .22025092, -.14244988, .21979366, .2585315, -.49882646, -.67117749, .09412654, -.66142541, -.36047932, -.757155, -1.2849575, .09964465, -1.2269459, -.48523396, .01601422, .01588458, -.00985738, .01588441, .01716331, -.04840384, -.04964864, .02969185, -.04964331, -.0518174, .7899999, .60188253, -.17742938, .59452606, .60502019, .05872464, .05722597, -.01179111, .05721959, .04332533, .26990213, .23861572, -.18437104, .23801312, .29948732, -.21574816, -.24002871, .03790984, -.23957432, -.1522505, .08911037, .08538963, -.04426576, .08536375, .088917, -.17054948, -.18884314, .17185955, -.18851678, -.21542767, -.42724009, -.5588158, .16613186, -.55215875, -.39289422, -.53907287, -.73960392, .07661012, -.72741674, -.35443535, -.12371115, -.13191876, .04904969, -.13182807, -.11450593, .26584066, .23718158, -.09554028, .23666799, .2381331, -.07193602, -.07471814, .04147278, -.07470021, -.0754331, -.16794376, -.18242318, .03513074, -.1822154, -.12560733, .51446722, .4240492, -.11827354, .42142039, .39707968, .18001221, .16650009, -.05070766, .16633125, .14867427, -.1651066, -.18166399, .13222778, -.18138776, -.19317927, -.4040671, -.50783038, .08478384, -.50343544, -.30251716, -.35656546, -.43438462, .08002697, -.43157594, -.27301194, -.46168852, -.60815213, .10651153, -.60052466, -.35675899, .75767365, .57522385, -.28807777, .56801151, .6915677, .03096169, .03049283, -.01560224, .03049165, .03104241, -.60133479, -.99043463, .46627864, -.95049615, -.69604298, -.70618049, -1.2061333, .18489381, -1.1503995, -.56919525, .24609655, .22195569, -.06527636, .22156185, .19921972, -.52063409, -.77721393, .43550804, -.75680191, -.61805974, -.58453743, -.85844221, .13471332, -.8376708, -.45153186, .12094395, .11458282, -.03583559, .11452709, .10158688, .02002306, .01982647, -.00959622, .01982615, .01974227, .91966288, .6663239, -.39775707, .654931, .87626421, -.38085913, -.4691169, .070183, -.46573763, -.27306344, .05913795, .05757364, -.0155936, .05756674, .04777892, .25105429, .22456662, -.12004839, .22410201, .24734732, .19938372, .18269231, -.06796318, .18245978, .17548003, .18622686, .17193903, -.04823291, .17175657, .14956135, -.41397735, -.53665434, .16968061, -.53067629, -.3874406, .04709547, .0461403, -.00810289, .04613707, .03300218, -.19518562, -.21806268, .11519254, -.21761688, -.20627662, .29378722, .25870416, -.12913736, .25800816, .28143789, .01902191, .0188538, -.00554078, .01885355, .0158868, -.40164753, -.51436671, .15502383, -.50915843, -.36844518, .64695473, .52158013, -.06206705, .51756806, .37314672, .12682621, .12003312, -.02927752, .11997251, .09802287, -.19410383, -.21635595, .101727, -.21593179, -.19717181, -.67811503, -1.0999621, .15124977, -1.0582101, -.51813606, -.46257479, -.60401555, .08429428, -.59690919, -.33041823, -.3608694, -.46488093, .42992296, -.45994804, -.48199247, -.65122871, -1.0610844, .21954844, -1.0200803, -.5710522, -.67258585, -1.1766601, .33936915, -1.1174798, -.67463044, -.08720266, -.09116938, .0350974, -.09113932, -.08111879, -.00509289, -.00510486, .00119871, -.00510485, -.00396178, .45291532, .38054444, -.1065549, .37862873, .35227283, -.08207081, -.08518451, .01227092, -.08516483, -.05488179, -.24891045, -.29268088, .32299783, -.29140477, -.34206236, -.20663337, -.23348496, .1590604, -.23290514, -.23859664, .57358388, .45987294, -.21555813, .45615226, .52151015, .45636142, .37899664, -.20081928, .37682578, .43733853, -.20636515, -.22662807, .01883135, -.22629705, -.11705629, 1.1532973, .79180972, -.44832937, .77345009, 1.0604819, -.54038446, -.75598549, .110033, -.74196735, -.40054645, .34928336, .29803513, -.31908381, .2967882, .42700227, -.40210016, -.5032936, .07752103, -.49909166, -.29266627, -.25093777, -.30070727, .69736222, -.29907283, -.44450176, -.30426825, -.35877733, .07382058, -.35715861, -.2390967, -.14970123, -.16509879, .35249769, -.16483534, -.25092601, .02307411, .02283149, -.00577354, .02283107, .01831923, -.41932088, -.54145072, .13788425, -.53559902, -.36465252, -.34474458, -.42026974, .10748187, -.41753365, -.29452356, -.55799517, -.82395329, .21253264, -.80345531, -.50961105, .12961953, .12247884, -.03238179, .12241332, .10285465, -.33018576, -.39064385, .04471248, -.38880923, -.21362815, .73731356, .54577692, -1.0140553, .53763244, 1.0330754, -.18154748, -.20014871, .07311945, -.19983167, -.16892001, -.42498663, -.55452806, .16297509, -.54803939, -.38901581, -.00600484, -.0060217, .00158229, -.00602169, -.00485035, .61450549, .49157276, -.13907971, .48751452, .47182589, -.04702735, -.04815478, .02034566, -.04815028, -.04481268, -.16008101, -.17544448, .12013535, -.17519914, -.18328495, -.51264618, -.67570017, .04680861, -.66718712, -.29084644, -.22284727, -.24995451, .05288025, -.2494064, -.17382519, .1777406, .16335742, -.12044423, .16316371, .19669641, -.1437142, -.15404958, .02850149, -.15392582, -.10559232, -.24474757, -.28229458, .13943231, -.28133846, -.25562897, -.78642972, -1.4467791, .14614317, -1.3609128, -.56542644, -.19407858, -.21476424, .05819234, -.21439754, -.16366294, -.64387251, -1.048366, .23861404, -1.0079661, -.58269584, .29829784, .26117414, -.17942885, .26040684, .31725428, 1.4900327, .92632316, -1.3171175, .89233917, 1.8016982, .45972549, .37377608, -.61421176, .37112074, .63794284, -.2861039, -.33632444, .1046803, -.33486287, -.25781855, .14937027, .13895727, -.10718929, .13883641, .16848836, .19463101, .17693388, -.19324726, .17666618, .24463719, .79355468, .60572762, -.15788247, .59842521, .58367695, .31042585, .27243172, -.1086875, .27165932, .27566087, .04135138, .04049242, -.02863879, .04048945, .04609512, -.32145068, -.38395426, .08396824, -.38194144, -.25889554, -.73562767, -1.4450777, .39204252, -1.3408506, -.75143789, -.36532791, -.44937262, .09336057, -.44617764, -.29209205, -.39892618, -.50704603, .1318741, -.50221789, -.34752938, -.32060474, -.38784896, .14354275, -.38551527, -.30901795, -.1765428, -.19355136, .05657903, -.19327871, -.15221654, 2.3394378, 1.3473676, -.30483287, 1.2813555, 1.4943016, -.31096282, -.37087833, .10283438, -.36896617, -.27093291, 1.0859783, .75577531, -.45440743, .739474, 1.0233855, .19720267, .18057479, -.07989068, .18034148, .18384447, -.3246465, -.38443762, .0533124, -.38261275, -.22398893, -.35286254, -.44059746, .20400798, -.43699738, -.37036456, -.11130243, -.11825382, .06964829, -.11818152, -.1199453, -.06994831, -.07243064, .02493993, -.07241596, -.06249231, -.07509116, -.0781089, .04074936, -.0780887, -.07716899, 1.166492, .82525978, -.14316975, .80901539, .730379, -.58856584, -.87216233, .14631541, -.850078, -.46626919, -.15170571, -.16421673, .05562899, -.16404499, -.13680806, -.23642523, -.26953091, .09431982, -.26876095, -.21928396, 1.2246902, .82709598, -.48183993, .80623267, 1.1306506, -.31617484, -.37923159, .11402568, -.37714942, -.28354963, .61648186, .48125335, -.43749454, .47636965, .69281042, -.64138809, -1.0544577, .27300116, -1.0122425, -.60787193, .00472718, .00471616, -.00215465, .00471616, .00458357, -.61747777, -.97556422, .23622717, -.94236336, -.56476464, -.31496282, -.3808278, .16217289, -.37854867, -.31805992, -.37219955, -.47069992, .1978299, -.46640289, -.37986085, -.71138226, -1.2460676, .21902671, -1.1831298, -.6052169, 1.0772525, .76792309, -.20551361, .75345346, .78133124, -.1475719, -.15801087, .02016759, -.15788791, -.0957702, -.0727345, -.07519354, .01205448, -.07517969, -.0503369, -.08809982, -.09235631, .05365101, -.09232205, -.09408477, -.18005295, -.19752633, .05116633, -.19724419, -.1491437, -.38072892, -.48875079, .25433663, -.48370594, -.41933091, -.36413263, -.46052622, .23616567, -.45631989, -.39712021, -.68556971, -1.1161577, .14429661, -1.0731609, -.51380279, -.71979819, -1.214295, .14099908, -1.1606648, -.52669103, .13541721, .12781347, -.02750881, .12774236, .1002959, -.19155512, -.21398675, .13296114, -.21355002, -.21368831, -.02946115, -.02991134, .0167019, -.0299102, -.03072075, .07547686, .07294779, -.02053261, .07293367, .06161701, -.18542571, -.20554424, .09615491, -.2051812, -.18769258, -.180983, -.19856682, .04954349, -.19828258, -.1480576, .20548708, .18394425, -.55711593, .18356875, .36100638, .30564407, .27130693, -.04864899, .27066583, .20869495, -.4335402, -.55447739, .08104884, -.5489223, -.31232867, .00480665, .00479632, -.00090624, .00479632, .00347259, -.47371878, -.64231774, .16830858, -.63250006, -.42272619, .78206513, .5938595, -.22169969, .58642411, .64728216, -.24252746, -.29054001, .90449951, -.28896615, -.47386365, .33614965, .29324886, -.09098586, .29233972, .27396164, -.02459471, -.02489137, .00878931, -.02489077, -.02198988, -.32686367, -.40010855, .19120171, -.3973953, -.34441735, .45452702, .38874174, -.03322338, .38716258, .23944057, -.61526369, -.92187408, .12080582, -.89722331, -.45055396, -.32979795, -.40438668, .18921242, -.40159837, -.34526974, .01276038, .01267508, -.01062279, .01267499, .01512395, .67025524, .53061827, -.11573048, .5258223, .47023982, .01231046, .0122366, -.00530102, .01223653, .0117124, -.53343753, -.76247714, .17972208, -.74649829, -.46766284, .79134069, .60363712, -.16613213, .59632443, .59256619, .1153121, .10893029, -.08634822, .10887146, .13193025, -.16037794, -.17487406, .07385238, -.17465601, -.15603712, .9654928, .69826557, -.28863239, .68619382, .81337542, -.06134382, -.06330359, .02897981, -.06329316, -.06019435, .00244078, .00243787, -.00102986, .00243787, .00230651, 1.5691233, .98842673, -.5897572, .95409789, 1.4267213, .04228714, .0414951, -.00917155, .04149263, .0320108, 1.3228095, .90357051, -.17791923, .88205697, .85391732, -.01503735, -.01515156, .00743688, -.01515142, -.01498262, .5965217, .48228649, -.1026045, .4786732, .41797436, .06534403, .06314579, -.06755126, .06313346, .08324506, -.49513241, -.70830816, .33087258, -.693397, -.54539501, -.4677422, -.65885271, .39645944, -.64613953, -.55771709, -.20531295, -.22935246, .07626127, -.22888449, -.18594688, .33563435, .29252514, -.09882365, .29160579, .28132472, .31064422, .27186077, -.1343201, .27105662, .29595966, -.55097263, -.7914575, .15102473, -.77441451, -.45093372, -.55340313, -.78297871, .11190365, -.76748207, -.40924731, -.29572207, -.35195959, .14044925, -.35018791, -.29069594, 1.0988318, .77682481, -.23706795, .76147012, .83033837, -.28297883, -.33497381, .15739575, -.33339057, -.29320878, -.35137446, -.43606491, .17272374, -.43269435, -.34938759, .12066639, .11377046, -.08228424, .11370482, .1338155, -.44701492, -.58502391, .11740855, -.57802441, -.36068209, -.30824166, -.36985169, .14184369, -.36781286, -.29982941, 1.2625632, .85442377, -.35283047, .83309177, 1.0400019, -.61868489, -.94808588, .15795341, -.9198961, -.49449967, .29443171, .26202895, -.05259633, .26143623, .20892234, -.27616623, -.32253796, .10147059, -.32124646, -.24921286, -.40471255, -.5251753, .20886682, -.51927976, -.40900718, .33381072, .28756209, -.23980506, .28649889, .37667168, -.09207871, -.09583497, .0090507, -.09580943, -.05353982, .56006342, .45844305, -.08799057, .45539449, .38075608, -.58850091, -.85505713, .10766838, -.83548634, -.42092444, -.18128359, -.19814108, .03465984, -.19788023, -.13158039, -.31121101, -.37485349, .15347266, -.3726993, -.30978256, -.45361014, -.59288488, .10104785, -.58585906, -.34645023, -.01900502, -.0191797, .00622152, -.01917943, -.01650268, .52994269, .43020798, -.21359841, .42710669, .49320629, -.21196157, -.24338567, .34360046, -.24261218, -.3137131, -.25544256, -.29826036, .18707452, -.29706989, -.29009732, -.48657066, -.68175257, .26214621, -.66899595, -.49883296, -.42367461, -.53713506, .07560392, -.53212753, -.30052439, .98389218, .71258108, -.23523613, .70036802, .76938376, .47483615, .39254505, -.18996527, .39018529, .44082267, -.1376024, -.14743101, .03818127, -.14731411, -.11307783, .21915281, .19975787, -.05652117, .19947229, .17575664, -.34172702, -.41941311, .14731614, -.41649423, -.32524677, -.49610192, -.67810347, .13786304, -.66718982, -.40788702, -.16061155, -.17489035, .0640399, -.17467908, -.14894002, -.035485, -.03613234, .01785704, -.03613037, -.03556119, -.10011507, -.10571042, .0649818, -.10565833, -.1092128, -.04909337, -.05051213, .07267563, -.0505053, -.07049444, -.54435295, -.76508557, .11316441, -.7505084, -.4062877, -.11677946, -.12383066, .03591921, -.12375975, -.09931844, -.65726608, -1.0940232, .25523702, -1.0480806, -.60416009, -.29905577, -.35263585, .08481753, -.35104457, -.24755593, -.19437406, -.21352226, .03118789, -.21320842, -.13307532, -.27081395, -.31241964, .06270018, -.31135865, -.20951427, .15849984, .14778562, -.04899389, .14766503, .13502366, -.26566333, -.30965233, .12526537, -.30844405, -.26052021, -.68532103, -1.1922166, .27796429, -1.1334119, -.63914938, -.10471729, -.11043262, .03724848, -.11038066, -.09348138, .00803161, .00800338, -.00126996, .00800336, .00547195, -.07886452, -.08222875, .04562021, -.08220484, -.08279108, -.67807343, -1.1186664, .18148905, -1.0732677, -.55056841, -.17595583, -.19625729, .2342868, -.19586783, -.24389059, -.18978248, -.21062799, .08775934, -.21024721, -.18490353, -.23427545, -.27119856, .24041235, -.27023282, -.29772373, .08337657, .07982728, -.09072793, .07980211, .10804874, -.61638855, -.95161513, .17947302, -.92234774, -.51472994, .20711321, .18931154, -.06572243, .18905694, .17798623, -.3158705, -.38265762, .17068702, -.3803213, -.32415263, -.13189491, -.140452, .0244726, -.14035955, -.09478117, -.16764576, -.18354498, .07563673, -.18329408, -.16200035, -.74333211, -1.3062087, .15845589, -1.2395043, -.55945873, -.04221584, -.04305493, .009424, -.04305215, -.03226552, -.72568875, -1.1692499, .08157792, -1.1260602, -.44126669, 1.77338, 1.061003, -.98213706, 1.0157412, 1.8348557, .36294902, .31489956, -.07387521, .31384364, .26899239, -.16160544, -.17445902, .02511073, -.17428883, -.10946294, -.70185702, -1.1708789, .15445141, -1.1212862, -.53387517, .52140835, .42384374, -.22667406, .42082704, .49765602, -.59259514, -.90874925, .2250736, -.88164116, -.54070067, -.40948553, -.52396608, .12972269, -.51869615, -.35170161, .20816448, .18841311, -.17581014, .18810139, .24791095, .20215826, .18342302, -.17387828, .18313418, .24222526, .11115793, .10565635, -.03894939, .10561099, .09873486, -.04123664, -.04213836, .02615007, -.04213508, -.04463647, -.50670895, -.6690676, .05365911, -.66052978, -.30203936, .15720202, .14634125, -.0650782, .14621632, .14761391, -.1834838, -.20188296, .05681243, -.20157602, -.15639502, .44790692, .37157338, -.24828478, .36942029, .46357344, -.49986366, -.69590579, .18716349, -.68336807, -.45392568, .03891738, .03824744, -.00816765, .03824552, .02913878, -.55877496, -.7915482, .10588122, -.77577269, -.40436565, -.39515345, -.48937289, .06294872, -.48566269, -.26988753, .90903762, .66431873, -.31404331, .65355199, .80363915, .23699414, .21462184, -.05905524, .21427054, .1878976, -.22644866, -.25608388, .08060168, -.25543944, -.20219537, -.51409536, -.72513605, .19086976, -.71103345, -.4655341, -.09390425, -.09808598, .01622865, -.09805496, -.06590135, -.18293775, -.20044297, .04035424, -.20016426, -.13926499, .30686752, .26943475, -.11489929, .26867629, .2786654, .25941202, .23225778, -.08495427, .2317852, .22528476, -.29289941, -.33915755, .04087848, -.33794516, -.19141997, -.55640335, -.82344801, .22498141, -.80273028, -.51838453, -.23501333, -.26804386, .10169991, -.2672728, -.22396416, .80660885, .61166026, -.18348059, .60392645, .62036702, .63597057, .50273699, -.1890479, .49813604, .53475965, -.17831489, -.19376152, .02258637, -.19353881, -.11282809, .15788542, .14683688, -.07146351, .14670816, .15273297, .31437664, .27629039, -.08785822, .27552393, .25896295, -.02119928, -.02142054, .00801789, -.02142015, -.01931572, -.213974, -.24075384, .0907402, -.24019679, -.20254301, .57300032, .4618039, -.16673832, .45824071, .4784006, -.69990914, -1.2024454, .20969585, -1.1456999, -.59006663, -.43663688, -.57937163, .19843595, -.5717182, -.42295782, -.6999281, -1.1796357, .17473638, -1.1277224, -.55527322, -.33628019, -.40642213, .0943844, -.40400116, -.27740286, .09676137, .09286071, -.01635389, .09283451, .0674039, 1.8018275, 1.1002365, -.48487958, 1.0568529, 1.4656494, -.1943912, -.21310284, .02600456, -.21280316, -.12525957, -.17430367, -.19142964, .07306846, -.19114968, -.16435806, .26648034, .23882517, -.0625431, .23834798, .20709992, -.08958401, -.0935379, .02193978, -.09350883, -.07061675, -.39875508, -.51947359, .26043558, -.513467, -.43589403, .51016929, .41311266, -.33056636, .4100625, .55621038, -.16540808, -.18191671, .12555404, -.1816426, -.19010405, .50464921, .40235926, -.79250121, .39893887, .739043, -.32848361, -.39668106, .11034615, -.394338, -.28769889, .21190257, .19356919, -.05856727, .19330527, .17390783, .61856884, .48325688, -.4108685, .47838328, .6799907, -.12318035, -.13091587, .03237189, -.13083497, -.09940929, -.16718999, -.18387022, .11490442, -.18359337, -.18589274, -.00552738, -.00554152, .00133074, -.00554152, -.00433233, -.34750055, -.42763568, .14151549, -.42458214, -.32452513, -.34545728, -.4196014, .09219207, -.41696914, -.2802232, -.49934896, -.69915736, .21022035, -.68612969, -.47152459, 1.0062373, .71246557, -.45343421, .6985066, .97195996, -.40626462, -.5176477, .12244208, -.51261747, -.34318337, -.42870959, -.56598503, .20357239, -.55877089, -.42139731, 1.1220376, .80928424, -.09607301, .79506088, .62308708, -.57000283, -.84169848, .17929395, -.82075725, -.48840851, -.57962635, -.9324093, .48360729, -.8981939, -.68750051, -.34757552, -.43013201, .17133745, -.42689337, -.34593424, -.40116626, -.51722287, .18855829, -.5116987, -.39298395, -.1318524, -.14315117, .23189101, -.14299002, -.2005226, .34696024, .30208288, -.08187864, .30111914, .27013862, .68635505, .53431463, -.21049749, .52877116, .5831651, .53415328, .43106998, -.272978, .4277847, .53805889, -.55241711, -.80281608, .17929285, -.78441849, -.47830957, -.15357511, -.16710791, .08543382, -.16690944, -.15913553, -.37272554, -.46913947, .16937978, -.46502656, -.36104108, -.11396473, -.12090322, .04674349, -.12083286, -.10668353, -.16232168, -.17592145, .03673375, -.1757318, -.12462814, .3351197, .29115699, -.12639674, .29019958, .30506233, -.68757701, -1.1034464, .12006062, -1.0633468, -.4841996, .28062883, .24683379, -.20418777, .24615772, .31801048, -.63868948, -1.0709972, .34581798, -1.0247459, -.65587191, -.58877059, -.91706114, .29009841, -.88772079, -.58589868, .81611024, .61280088, -.25217023, .60449659, .69514247, -.05579265, -.05736679, .02123494, -.05735938, -.05094228, .13043956, .12285477, -.05233093, .12278132, .12120923, -.20919899, -.2352261, .10393811, -.2346879, -.20875714, -.56744871, -.81155064, .11068618, -.79449026, -.41462824, -.1940966, -.21434157, .04919301, -.21399033, -.15475917, .44182534, .36408877, -.40500544, .36182622, .54075104, -.01865539, -.01882854, .00787443, -.01882827, -.01763137, -.08065021, -.08465838, .13779541, -.08462519, -.1214764, .43433084, .36925957, -.07083523, .36764328, .29897868, -.33521405, -.41214582, .18289228, -.40922816, -.34510925, -.12262503, -.13071836, .05044404, -.1306294, -.11490335, .23473909, .21374147, -.0364345, .21342897, .15894171, -.33774469, -.41738767, .20562881, -.41428549, -.3606592, -.36903476, -.46565002, .19791216, -.46147956, -.37775684, .06340986, .06144898, -.03875127, .06143887, .0677969, .33058378, .28722357, -.14068763, .28627944, .31329226, -.26984463, -.31387478, .09954822, -.31268285, -.24383555, .18696495, .17099738, -.13956152, .17077045, .21368401, -.52960263, -.7515304, .16771962, -.73640445, -.45481842, -.28316653, -.334515, .14281789, -.33297169, -.28398724, .36771133, .31898127, -.06732474, .3179093, .26307095, -.02603472, -.02636435, .00855866, -.02636365, -.02263848, .12908829, .12155656, -.05880958, .12148337, .12514608, -.24843362, -.28399314, .07459121, -.28314787, -.2095943, .29605613, .25933735, -.18357246, .25858099, .31807427, .53914806, .43730331, -.19476862, .43412486, .48378792, -.40364205, -.51834327, .16088398, -.51297832, -.37426441, -.21349457, -.24323462, .20531619, -.2425465, -.26550678, .51045144, .41854975, -.16824595, .41581371, .44425039, .0641572, .06226, -.02314806, .06225065, .05754555, 1.0415381, .76123549, -.10527893, .74890682, .61128058, .49465947, .41079497, -.1055044, .40844152, .37236691, .39576095, .33863294, -.09758524, .3372652, .31267513, -.30237268, -.37541857, .58287022, -.37250493, -.47412805, .31545764, .27616088, -.11590711, .27534789, .28466936, -.61214837, -1.0049153, .39043097, -.96491339, -.66388963, -.34251752, -.43626109, .4745376, -.43203465, -.48108528, .4715008, .38702078, -.29953, .3845176, .51067555, .46184264, .38043816, -.290303, .37806466, .49845183, .25935317, .23285363, -.06588961, .23240341, .20695537, -.35230193, -.43826698, .18310789, -.43480406, -.35688013, -.32328653, -.38029361, .04067316, -.37862702, -.20409752, -.13313177, -.14309375, .07244864, -.14296964, -.13694343, .33611667, .29069772, -.17158709, .28967912, .3384529, -.30067393, -.35833911, .13036976, -.35650718, -.28672538, -.09645221, -.10094237, .01903377, -.10090755, -.07074999, .06671792, .06454695, -.04173267, .06453518, .07188921, .6182557, .49486798, -.12857452, .49080423, .46150214, .17507007, .16115999, -.11280864, .16097604, .19051627, -.15839997, -.17079417, .02584927, -.17063272, -.10905933, -.25464138, -.30430441, .5528601, -.30270031, -.41543308, .8334476, .61380438, -.46533053, .60433542, .86466799, -.57173845, -.81511966, .0986911, -.79827964, -.401083, .20398599, .18794113, -.02996711, .18773108, .13561004, -.47896225, -.63114888, .08014446, -.62321102, -.33253347, -.08587928, -.09012595, .07993469, -.09009097, -.10564462, -.11145971, -.1181655, .05063144, -.1180983, -.1079515, -.05762836, -.0593631, .02864716, -.0593544, -.0575168, -.39564628, -.50560667, .16467577, -.50057398, -.37218422, -.8186431, -1.5612468, .13726219, -1.4578464, -.56875258, -.4298262, -.56849767, .20837131, -.56115667, -.42541999, -.29717354, -.34824523, .06655057, -.34678971, -.22737045, -.2663489, -.30960182, .10678396, -.30843645, -.24744534, .62238915, .4899456, -.27428963, .48530168, .59674365, -.46663198, -.60878868, .07689304, -.60167196, -.32232106, 1.08491, .75534841, -.45134348, .73909341, 1.0204104, .26931269, .24231221, -.03990889, .24186205, .17955787, .47043431, .39382938, -.09807516, .39176342, .35144902, -.00905558, -.0090941, .00243494, -.00909407, -.00736406, .20377738, .18745498, -.0363535, .18723738, .14453157, .62720037, .50051111, -.133264, .49628922, .47153994, .41297257, .34729489, -.2110996, .34556443, .41602549, -.58715294, -.89322081, .21747192, -.86754487, -.53126584, -.50533386, -.71893342, .25540897, -.70425374, -.50715531, -.14009154, -.1512005, .07686636, -.15105385, -.14449851, -.59694963, -.94176184, .30421971, -.90990987, -.60075525, -.39574995, -.49862122, .10815252, -.49421175, -.3235709, -.02203916, -.0222661, .00521286, -.02226571, -.01717245, -.5643388, -.84952657, .25781957, -.82629313, -.54761487, -.46143087, -.59850049, .0722647, -.59180533, -.31336933, .06867264, .06640179, -.03857597, .06638928, .07139012, 1.4069938, .91911624, -.46391089, .89191944, 1.2246622, .01437706, .01427343, -.00812206, .01427331, .01497427, -.24825838, -.28976038, .23058706, -.28860956, -.30518107, -.45187503, -.58313209, .07457827, -.57685962, -.31229114, .25773194, .23150697, -.06631236, .23106325, .20653183, -.52978301, -.73966925, .12414029, -.72611493, -.41150925, -.58921908, -.91838301, .29081526, -.8889123, -.58667862, .25824659, .23058882, -.11231133, .2300964, .24651362, .40403531, .34235158, -.15679228, .34079063, .37130526, .27361868, .24458212, -.06414271, .24406985, .21256394, -.10496889, -.11072481, .03798771, -.11067224, -.0942464, .09818183, .09312006, -.15636528, .09307659, .14445886, -.52659025, -.77067499, .29419098, -.75235543, -.54643058, -.17248065, -.19014623, .10983932, -.18984525, -.18696323, .65251306, .50119818, -.57530002, .49543065, .78831708, -.23637986, -.27195111, .16012657, -.27106246, -.26156007, -.22305026, -.25038868, .05559303, -.24983171, -.17685551, .4107871, .34630393, -.18930093, .34462669, .39976562, .2216956, .20296372, -.03198751, .20270035, .14650132, -.54044385, -.77070257, .15552789, -.75475731, -.44955187, .15455827, .14435313, -.04740392, .14424093, .13132364, -.2975832, -.34559306, .04196399, -.34430789, -.19515268, -.30919006, -.36357347, .05707774, -.36198757, -.22181076, .1470479, .13773376, -.04671594, .13763552, .12641664, -.27668337, -.32180148, .08112549, -.32058084, -.23158894, -.34043974, -.42537637, .27778143, -.42187937, -.4008094, .98571709, .72132124, -.15599688, .70972918, .67176416, -.53744887, -.77628212, .20199067, -.75906314, -.48866572, .76475491, .58244415, -.23356688, .57530701, .64887633, .4292717, .36394447, -.09307895, .36229654, .32492415, -.20931072, -.23535541, .10360539, -.23481677, -.20860839, -.55941465, -.8232608, .19772633, -.8031278, -.49833424, -.78218099, -1.4146044, .13373406, -1.3351006, -.54696833, -.39557156, -.50125184, .12896442, -.49659865, -.34301782, .55608386, .4539049, -.10853815, .45080137, .40640995, .00168945, .00168803, -.0008074, .00168803, .00166419, -.63501826, -1.036189, .27290696, -.99591278, -.60377113, .74239142, .54687025, -1.1635979, .53844638, 1.086508, -.20609582, -.23159291, .11227057, -.23106861, -.21206944, .38679794, .32601357, -.31028056, .32443082, .45281168, -.15855635, -.17295887, .08414102, -.17274116, -.16173413, -.27333304, -.32138804, .1525336, -.3199873, -.28352624, -.44275803, -.58484206, .15931926, -.57735932, -.39677447, -.02067804, -.02090629, .016071, -.02090587, -.02395321, -.12558298, -.13447685, .07401916, -.13437197, -.1326616, .16734546, .15439342, -.12396971, .15422656, .19077633, -.21300708, -.23931334, .08510621, -.23877333, -.19766348, -.58182647, -.85676257, .14576395, -.83574557, -.46212099, -.18692859, -.20567212, .04893615, -.20535946, -.15066201, -.4993853, -.67374138, .09900201, -.66377543, -.36687251, -.58389203, -.90928901, .30932041, -.88022178, -.59525249, -.18699099, -.20657095, .06832535, -.20622992, -.16842934, -.50695147, -.71397244, .20763442, -.70020786, -.4743374, -.04559305, -.04668013, .02485613, -.04667581, -.04692672, .21231924, .19457061, -.04049855, .19432371, .15398652, -.36578368, -.46398373, .24873611, -.45963919, -.40526506, .33809673, .29409674, -.10778097, .29314608, .29099443, .57700922, .45883265, -.309139, .4548408, .59044996, .00642141, .00640259, -.0014665, .00640258, .00494528, -.69472872, -1.2290276, .28823549, -1.1648157, -.65283383, -.70671288, -1.2777091, .30036925, -1.2059735, -.66945876, .21664136, .19702405, -.07857647, .19672851, .19465628, .02260057, .02233772, -.01714393, .02233721, .02596927, -.4978844, -.6832303, .14528112, -.67195796, -.41606904, .9373839, .69029883, -.18226697, .67964474, .68421247, -.15536107, -.1676527, .03298504, -.16749081, -.11677337, .0753751, .07282344, -.02287026, .07280904, .06381444, -.48360754, -.66005986, .16400979, -.64953463, -.42490838, .17651917, .1645224, -.02184892, .16438664, .1108361, .14902537, .13901636, -.07521762, .13890443, .14949385, -.11372673, -.12063143, .04645204, -.12056161, -.10631306, .38962092, .32846824, -.28859996, .32687783, .44415743, -.13831529, -.14874468, .05677358, -.14861375, -.12951068, .45014415, .37964011, -.08873034, .3778103, .33006676, -.59932926, -.88869049, .12781384, -.8661144, -.45114168, -.07285928, -.07618779, .15321854, -.07616245, -.11760804, .76961802, .57911231, -.36943314, .57137871, .7592278, .66658241, .5152085, -.36793387, .50955464, .68892057, -.62358675, -.97685879, .19677698, -.94481243, -.53489189, -.58088849, -.90231318, .31211268, -.87379199, -.59498906, .10412954, .09960377, -.01871541, .099571, .07403875, -.23137148, -.26715256, .2316752, -.26623412, -.29163729, -.0382953, -.03912356, .04295741, -.03912058, -.05013254, -.54583794, -.7822518, .15643182, -.76562044, -.45341322, -.62053932, -.92182829, .09946152, -.89819597, -.42469248, -.64636966, -.9678868, .08069936, -.94208274, -.40702462, -.24688153, -.28801846, .2355242, -.28688146, -.30620639, -.27727563, -.32345202, .09267822, -.32217641, -.2424434, .23571931, .21441825, -.03915749, .21409801, .16325947, .02579881, .02546094, -.01766667, .0254602, .02865022, .01018719, .01013478, -.00596942, .01013474, .01074048, -.23096241, -.26423235, .14006962, -.26343648, -.24631197, -.71367779, -1.1606493, .10338586, -1.1161336, -.47224261, .31282919, .27725536, -.04603387, .27658309, .20808495, -.05945849, -.06112264, .0119089, -.06111488, -.04383051, .51297607, .4271129, -.06779652, .42473358, .32921317, .00025261, .00025258, -.00020794, .00025258, .00029828, -.3127226, -.37298985, .09843749, -.37106606, -.26802154, -.00170261, -.00170402, .00066826, -.00170402, -.00157061, 1.1611366, .79812769, -.40803169, .77973498, 1.0323577, -.59119608, -.88733313, .1703966, -.8634081, -.49202217, -.02362601, -.023929, .02083461, -.02392835, -.02854514, .05530985, .05393895, -.01449093, .05393329, .04459064, .47259754, .38931982, -.24069738, .38689234, .47551194, -.33479564, -.41306924, .20857697, -.41004602, -.36026216, -.21943083, -.24744835, .08621337, -.24685385, -.20248832, .57101126, .46007865, -.17379503, .45652008, .48393337, -.0316426, -.03215089, .01463176, -.03214953, -.03082882, -.2881194, -.33455702, .05396576, -.33331514, -.20769742, 1.2161216, .816381, -.62139287, .79516325, 1.2249455, .18269367, .16919124, -.03852079, .16902511, .1370011, .14266762, .1341986, -.03132067, .13411488, .10843529, -.00524903, -.00526237, .00190546, -.00526237, -.00471768, .75192761, .57366542, -.24827375, .56672404, .6547934, -.20089528, -.22412975, .0826315, -.22368296, -.18823702, .34601415, .29494433, -.36799881, .29369444, .44499457, -.10867453, -.11453236, .02495986, -.11447976, -.08385119, .28694097, .25478952, -.07838203, .25419079, .23457256, .427035, .3673767, -.03670304, .36599389, .23743951, -.62148672, -.9681708, .1885892, -.93717387, -.52618303, -.00869881, -.00873551, .00312224, -.00873548, -.00778883, .07610759, .07323409, -.05970733, .07321602, .08843778, -.00509814, -.00511164, .00345547, -.00511163, -.00564227, .28586233, .2547403, -.05935707, .25417708, .21327443, 1.6615841, 1.0644756, -.22420563, 1.0300949, 1.0737596, -.11622361, -.12359196, .05572119, -.12351416, -.11460749, -.47749766, -.67181146, .32901169, -.65893501, -.53136703, -.19254828, -.2121792, .04394746, -.21184626, -.14825671, -.04649595, -.04755493, .01426885, -.04755091, -.03951388, -.07931842, -.08260539, .03410218, -.08258269, -.07542583, -.26884138, -.31519171, .15172867, -.31386657, -.27991744, -.24944187, -.2824923, .0407766, -.28176471, -.17184092, -.40601813, -.52475388, .18290599, -.51904222, -.39214763, .45282614, .37853673, -.14522169, .37651843, .39051838, .01715587, .01697844, -.05316215, .01697813, .03151273, .34733492, .30333315, -.06454921, .3024075, .24973108, .02556932, .02523941, -.01655107, .0252387, .0278675, -.1494024, -.16187134, .06915062, -.16169812, -.14560638, -.26773939, -.31135008, .10467388, -.31017154, -.24665937, -.35702969, -.44172636, .13711975, -.43840783, -.32697375, -.01508935, -.01520375, .00711999, -.01520361, -.01480074, -.27394964, -.31595297, .05636073, -.31488397, -.20375863, -.10874203, -.11488613, .03671461, -.11482831, -.09540136, .76481258, .58966962, -.13679373, .58307459, .54291946, -.3530344, -.43827726, .16826872, -.43487874, -.34744746, -.64654178, -1.0535779, .23292136, -1.0128438, -.57962107, -.13580059, -.14604153, .06581002, -.14591295, -.13439253, .35804975, .31001552, -.09546595, .30894596, .29034994, -.18155178, -.19938011, .05251883, -.19908883, -.15128017, -.45439126, -.62707997, .33824226, -.61636569, -.51884695, .15608272, .14581403, -.04227721, .14570154, .12723755, -.46485105, -.63744583, .24797994, -.62697558, -.47499757, -.45553411, -.5845954, .06002834, -.57857639, -.29206267, -.54320935, -.79196175, .21592063, -.77350635, -.50321418, -.48736189, -.67165321, .18788473, -.66027432, -.44689779, -.56800422, -.82241252, .13509182, -.80393212, -.44339153, -.11162201, -.11845271, .05756639, -.11838309, -.11278021, -.04907169, -.05018343, .00885214, -.05017923, -.03493387, -.10962828, -.11590109, .03819445, -.11584131, -.0971908, -.45160058, -.58885072, .0985034, -.58199558, -.34250223, -.1994024, -.22374977, .13241529, -.22325561, -.21918439, -.22905152, -.26273431, .17412391, -.26191188, -.26338129, -.10781419, -.11381191, .03456585, -.11375634, -.09297004, -.30423076, -.36129752, .10179414, -.35952395, -.26610498, -.1425758, -.15224961, .0189258, -.15214031, -.09163442, 1.9216935, 1.1866063, -.20976514, 1.1418559, 1.1571168, -.13575323, -.14470404, .02217588, -.14460576, -.0934983, 1.1687913, .81092704, -.28073579, .79314467, .91537822, .38176342, .32608969, -.14618068, .32474321, .34927664, -.2598243, -.29725508, .05464092, -.2963596, -.19467156, -.5464075, -.77583871, .13201835, -.76017113, -.42877804, -.61671174, -1.0006056, .32406862, -.96258745, -.62701386, -.42496381, -.56190555, .22665969, -.5546644, -.4342129, -.00255548, -.00255854, .00071623, -.00255854, -.00210705, .34223009, .29781075, -.09495459, .29685356, .28122944, -.45673818, -.58402781, .05310595, -.57818627, -.28086822, .12762718, .12045632, -.04446452, .12038922, .11314707, -.32207242, -.39951794, .34140655, -.39644283, -.41374838, .44372967, .37334388, -.1152856, .37149414, .35673632, .19218058, .17660794, -.06536837, .17639793, .16902031, -.14463536, -.15745123, .14423191, -.15726224, -.18205954, -.35681123, -.43234864, .06492199, -.42970297, -.25474144, -.78585143, -1.3684292, .09378862, -1.3007048, -.4874765, -.43056416, -.5679701, .19280781, -.56077272, -.41502742, -.1194873, -.12628985, .0183943, -.12622535, -.08068366, 1.1504472, .78712309, -.51432053, .76854013, 1.1083215, .66994874, .51588221, -.41716434, .51005709, .72078672, -.50174162, -.74091841, .49762731, -.72248226, -.63042219, .0980341, .09337897, -.0712195, .09334215, .11103531, -.30095346, -.36594052, .28942734, -.36361946, -.37427379, -.28916199, -.34238757, .13404999, -.340764, -.28196361, -.31635819, -.39324606, .42212845, -.39016088, -.43881109, .01227257, .01219951, -.00506124, .01219944, .0115094, 2.3768308, 1.3307905, -.56859495, 1.2590067, 1.8589876, -.21238201, -.24031481, .13972587, -.23970439, -.23272734, -.0683085, -.07075601, .032727, -.0707414, -.06734343, -.67175986, -1.0412262, .09493018, -1.0086275, -.44084658, .04463719, .04369266, -.01844834, .04368933, .04189161, -.28367342, -.33030346, .0703631, -.32903186, -.22456259, .20751412, .18880873, -.10576337, .18852821, .20884313, -.39639779, -.53145541, .5463898, -.5239165, -.55581681, -.53396651, -.76610369, .19014519, -.74971475, -.47684928, -.41388794, -.52473636, .0911924, -.51984373, -.3149571, -.0474799, -.04858814, .0149372, -.04858383, -.0406855, .01555976, .01544743, -.00437587, .0154473, .01284399, -.54760283, -.84791733, .48049955, -.82149155, -.6605182, -.20115182, -.22518278, .10467438, -.22470551, -.20384783, -.63784704, -.95934541, .09561186, -.93321814, -.42689881, .90776996, .66918714, -.22617176, .6589283, .71968093, -.06315845, -.06515324, .0208039, -.06514274, -.05495567, -.23762773, -.27339367, .15373728, -.27249999, -.25894119, -.50295249, -.69954311, .17494849, -.68701101, -.44565424, .01552274, .01541147, -.00418046, .01541134, .01262981, 2.1068331, 1.1889219, -1.2133041, 1.1264521, 2.2084453, .47868198, .39622289, -.16575858, .39387229, .42351298, -.02986399, -.03032427, .01615749, -.03032309, -.0306596, -.20453409, -.22636955, .03872599, -.22598184, -.14797487, -.14510921, -.15728345, .09104008, -.15711344, -.15651316, .70931453, .54673599, -.25286811, .54060879, .63367599, -.53000475, -.74513956, .14089154, -.73091807, -.42936319, -.21910342, -.24687749, .0826378, -.24629237, -.19945076, -.41493285, -.52361045, .07768675, -.51891737, -.29907322, 2.6560511, 1.3993556, -1.105995, 1.3079768, 2.498918, -.41589553, -.54146745, .18302736, -.53523562, -.39857021, -.5526323, -.80926377, .20181019, -.78996847, -.49767811, -.13207272, -.14097686, .03313644, -.14087689, -.10495118, .14448753, .13515265, -.06544272, .13505222, .13980328, -.85325759, -1.7623394, .16079813, -1.6167939, -.61634485, .76115922, .57533086, -.33446264, .56788681, .72908173, -.4445706, -.6065932, .31952327, -.59693944, -.50173145, .05289442, .05153665, -.02874207, .05153084, .0543821, -.17820591, -.19853626, .19416859, -.1981506, -.23103852, -.4801718, -.67039242, .27251422, -.65810878, -.50088438, .7304052, .55833536, -.28785848, .55167589, .67470239, -.16887215, -.18469715, .06495133, -.18445039, -.15473125, .35410875, .30570854, -.12846339, .30461071, .31819564, .19684382, .18046651, -.07068492, .18023976, .17627881, -.20643774, -.23348809, .17055485, -.23289913, -.24405671, 1.22551, .8353436, -.35199394, .81523741, 1.0187469, .17923756, .16578231, -.0525377, .16561417, .15000982, .01548457, .01536218, -.01038154, .01536202, .0170751, -.19320256, -.2148948, .0900355, -.21448979, -.18872228, .32956715, .28787909, -.09663489, .28700342, .27585694, -.45938766, -.62492575, .23072715, -.61516994, -.46007551, -.02945698, -.02988319, .01034191, -.02988217, -.02618197, -.67370006, -1.1813745, .34180682, -1.121476, -.67698851, -.02907156, -.02947386, .00775848, -.02947293, -.02358203, -.38428138, -.47793117, .09063364, -.47416337, -.29913877, -.23046223, -.26119584, .08058798, -.26051489, -.20456591, -.12846248, -.13685096, .03186268, -.13675974, -.10169236, -.30992245, -.36335987, .04867032, -.36183198, -.21066874, .22387009, .20364682, -.05894499, .20334289, .18078249, -.17917948, -.19985379, .20268227, -.19945716, -.23521992, -.21841171, -.24833161, .15119244, -.24765074, -.24342806, .4118637, .34607627, -.22690728, .34433546, .42539771, .20921569, .19135775, -.05644292, .1911041, .17032406, -.04141178, -.04225313, .01331006, -.04225028, -.03573984, -.08967166, -.09381787, .032207, -.09378593, -.08030888, -.43040966, -.57519442, .26278401, -.56721212, -.46004218, -.35010686, -.43150226, .14059672, -.42837577, -.32543841, -.45224038, -.61066644, .22306877, -.60158155, -.45019687, -.15280789, -.16560823, .05946739, -.16542975, -.14056163, .22920489, .20747095, -.08083996, .20712815, .20403341, -.02695281, -.02729756, .00709777, -.02729683, -.02176641, -.48806489, -.66592024, .15134011, -.6553242, -.41621053, -.07485465, -.07759823, .01909723, -.07758147, -.05981535, -.55354816, -.81424305, .21356234, -.79437836, -.50771714, -.52719084, -.76911913, .2772692, -.75113379, -.53615346, .05684705, .05526936, -.03355884, .05526206, .06008291, 1.7973129, 1.1092567, -.36345079, 1.06734, 1.329151, -.29913733, -.36026582, .2095762, -.35819823, -.33473752, .84441039, .63750804, -.15314645, .62919077, .60221008, 1.5300133, .9606923, -.79434177, .92687173, 1.5493253, -.35610485, -.467774, .79408433, -.46202371, -.58616174, .82406803, .61953257, -.22184624, .61120781, .67040318, -.33473208, -.42123435, .39786289, -.41754776, -.4467378, -.59704681, -.89013644, .1428792, -.86690615, -.46702334, -.27033676, -.31698804, .1460948, -.31565307, -.27743313, 1.0258857, .7403491, -.19262469, .72738144, .74013901, 1.1604516, .81467254, -.19669616, .79792351, .80914553, .71885488, .54399465, -.50294544, .5370146, .80404022, .05144662, .0500942, -.04484664, .05008827, .06191909, .47392482, .39353593, -.1494817, .39127892, .40645485, .22266008, .20231271, -.06938075, .20200337, .19018864, .25539674, .2288861, -.08805858, .22842855, .22563724, -.19568251, -.2165339, .05437877, -.21616435, -.16088707, .86800737, .63454643, -.44857999, .6242839, .8776181, -.44093685, -.57926714, .14407138, -.572141, -.38263688, -.38796266, -.48874054, .12624104, -.48442371, -.33620446, .54666874, .44328732, -.17675284, .44005735, .47273195, 2.0300788, 1.1682836, -.96824133, 1.1108888, 1.998388, .20015608, .18332403, -.06902249, .18308848, .17684227, .6704618, .53159956, -.10716473, .52685744, .45843382, -.44458745, -.58919121, .16678779, -.58147544, -.40398901, .54446718, .43989513, -.22082431, .436578, .50777747, .33144135, .28713208, -.17030141, .28614888, .33446746, .39694643, .34039606, -.08209858, .33905965, .29576253, -.42074543, -.5470025, .16075656, -.54077417, -.3846619, -.34132884, -.41326123, .08979717, -.41075309, -.2755579, .27126712, .24182145, -.08746021, .24129014, .23435718, .44037707, .37447891, -.06255576, .37284401, .28950022, -.14644983, -.15791575, .04864516, -.1577663, -.12778576, .83887112, .62380912, -.30053485, .61477927, .75065164, -.58971609, -.84195736, .07898515, -.82442391, -.38014896, -.14693144, -.15819566, .04001161, -.15805189, -.11999096, -.35444119, -.4312898, .08034526, -.42853408, -.27228656, .0737336, .07125403, -.02561239, .07124013, .06530358, -.14687879, -.15771931, .02953682, -.1575861, -.10841864, -.14879663, -.16058595, .04713587, -.16043045, -.12779756, .255008, .22848792, -.09093051, .22802936, .22783254, .52932208, .43116877, -.17994595, .42816069, .46544749, -.57678802, -.83528755, .11985366, -.81649906, -.43043204, -.43909753, -.55885675, .06365748, -.55347575, -.29062556, .59572477, .47490671, -.21164208, .47086457, .53158712, 1.3566666, .89996404, -.38104577, .8751849, 1.1193978, .23076888, .20661165, -.21673278, .20619121, .28473205, -.34028239, -.4117036, .08954949, -.40922324, -.27474134, -.37062089, -.45756657, .09456789, -.4541971, -.29617234, .38295285, .32751843, -.13106841, .32618755, .3374993, -.37335462, -.47661172, .25405495, -.47190847, -.41374577, -.15304894, -.16668687, .09593084, -.16648462, -.16502496, .1042071, .09911783, -.05736882, .09907642, .10760526, -.46824434, -.62851306, .14796752, -.61952704, -.40183444, .5037424, .41082186, -.25088311, .4079888, .50308281, .84808535, .63314877, -.23483142, .62422333, .6964476, 1.0502609, .7772032, -.06052008, .76558315, .51110244, -.53151373, -.76676609, .21629309, -.74987, -.49625002, .02620452, .02584242, -.02552688, .02584158, .03272855, .2398854, .21542703, -.12027352, .21501237, .24010574, -.22643811, -.25247045, .03030234, -.25197283, -.1459268, .1166085, .11048453, -.04729675, .11043096, .10875283, 1.3431452, .89781391, -.32261633, .87398692, 1.0519314, -.00187006, -.00187161, .000327, -.00187161, -.00131753, -.15164755, -.16445306, .06738007, -.16427307, -.14579549, .08269046, .07945194, -.04361586, .0794308, .08417732, .08617637, .08305152, -.0150427, .08303264, .06067978, .2798524, .25006393, -.05532456, .24953681, .20540075, -.30467726, -.36042436, .08464232, -.3587339, -.25047586, .30195525, .26443918, -.15980555, .26366505, .30772941, 1.340299, .89487285, -.34074742, .87098951, 1.0697657, -.26049778, -.3020933, .1130195, -.30099117, -.24846419, .0397316, .03898097, -.01635773, .03897861, .03723989, -.34632342, -.41654823, .06160529, -.41419106, -.24539775, -.37410872, -.45578874, .0546393, -.45283957, -.2482239, -.04034842, -.04111172, .0087849, -.04110931, -.03058252, -.12428565, -.13264089, .05264014, -.13254735, -.11759703, -.72785825, -1.2666293, .17219649, -1.2040833, -.56717355, 1.8408131, 1.1261187, -.38746129, 1.0820371, 1.3796192, -.18881786, -.20840084, .05869633, -.20806299, -.16115447, .06242098, .06068176, -.0164772, .06067368, .05044965, .41261605, .34419064, -.34676838, .34231182, .49059213, .60428656, .48029853, -.21858193, .47610295, .54247123, -.30322308, -.36506293, .18549386, -.36297539, -.32431075, .1572132, .1467182, -.04614981, .14660154, .13164144, -.39806354, -.51019956, .1704672, -.50499905, -.37802908, -.2302522, -.26219035, .10869935, -.26145448, -.22588541, -.05024085, -.05158971, .03198843, -.05158368, -.05445599, -.55766118, -.84608885, .31656254, -.82207079, -.58175945, -.24070252, -.2759872, .11441098, -.27512835, -.23667533, -.16040658, -.17378822, .03903075, -.1736024, -.12617125, -.06634171, -.06855248, .02223805, -.06854021, -.05806307, 1.3592493, .8944937, -.48455987, .86891532, 1.2142979, -.28906615, -.34194426, .12870891, -.34034118, -.27810643, -.50352365, -.69691907, .15762218, -.68479707, -.43075371, -.69471901, -1.0704718, .06720278, -1.0378355, -.40180178, .21847797, .19887323, -.06684954, .19858055, .18548747, -.5428572, -.75471105, .0941741, -.74122646, -.3814558, .03577835, .03513084, -.02541775, .03512889, .04022251, .21380327, .19363341, -.13368382, .1933169, .23034521, -.32240633, -.39064823, .14593547, -.3882585, -.31188847, .66465513, .52295291, -.16608129, .5179753, .52744981, -.32430575, -.39326332, .14356266, -.39083764, -.31140597, .05393036, .05264785, -.01205061, .05264277, .04123207, -.0028317, -.00283571, .00140141, -.00283571, -.00282204, -.02135293, -.02156446, .00476595, -.02156411, -.01631917, .10786111, .10313359, -.01531064, .10309907, .07088991, -.47964118, -.64280246, .11783585, -.63370878, -.37848336, -.39842251, -.51601229, .22492566, -.51030478, -.41487657, -.09905477, -.10351316, .01158226, -.10347973, -.06102737, -.24547459, -.27872479, .0546228, -.27797657, -.18741558, .10888075, .10361494, -.03673675, .10357251, .09550168, -.66853058, -1.0972597, .19254359, -1.0536153, -.55624639, -.26737067, -.31576114, .22301942, -.31430952, -.3171028, 1.0645332, .73086408, -.85099415, .71391715, 1.2447773, .22606207, .20453712, -.09427344, .20419621, .21279345, -.43314942, -.58895264, .36564343, -.57978648, -.51576802, -.23247676, -.25948378, .02658345, -.25896213, -.14216744, .48348128, .39798279, -.20933574, .39548186, .4608337, .17081161, .15847915, -.05211926, .15833091, .14488419, -.51725932, -.74111587, .2395372, -.72537996, -.50420429, 1.1637011, .7996095, -.40572604, .78114865, 1.0319261, .517248, .42450814, -.14397092, .42175838, .42550122, .20377275, .18713122, -.04431389, .18690503, .15439055, .37960426, .31476553, -.95803217, .31293262, .65116455, .26374504, .23715653, -.04998972, .2367108, .19087972, .16509569, .15369065, -.04393403, .15355947, .13379324, -.14878344, -.16056319, .04689619, -.16040793, -.12757304, .03112964, .03070085, -.0062502, .03069987, .02296628, -.45146616, -.6190492, .3128399, -.60888544, -.50334703, .01026683, .01021352, -.00610921, .01021347, .01088001, -.03831364, -.0390543, .01605932, -.03905191, -.03612612, .24916831, .2203365, -.34282994, .21978215, .3491656, .20605202, .18741517, -.11593127, .18713473, .21431939, .26738299, .23812242, -.10704603, .23759018, .24828817, -.07107709, -.07356866, .0197543, -.0735541, -.05844091, .23730441, .21182058, -.22739701, .21136564, .29476469, -.27485574, -.31636297, .04916292, -.31532239, -.1951158, -.19505071, -.21275145, .01592398, -.21248413, -.10660859, .70056918, .54467763, -.18947516, .53896875, .57081421, 1.6429994, 1.0053109, -.95644829, .96598995, 1.7284445, -.46441552, -.63262118, .21761309, -.62265912, -.45447446, .14443729, .13599906, -.02424701, .13591696, .10038811, -.52960941, -.79336663, .39957719, -.77217395, -.60745488, -.33390194, -.4038831, .10318464, -.4014562, -.28442056, -.2285471, -.25905302, .0867362, -.25837651, -.20847818, 1.2125627, .7984311, -1.1857801, .77566244, 1.5164014, -.32860078, -.40410853, .21625493, -.40124137, -.36011765, -.21919949, -.24554758, .05514477, -.24502109, -.17434298, .39846564, .33805359, -.16176033, .33653529, .37173027, .14472573, .13684479, -.01196691, .13677331, .07943914, -.62022414, -.92676789, .10887495, -.90231422, -.43754068, -.14261973, -.1536374, .05400271, -.1534957, -.12999748, -.01461438, -.01471576, .0041704, -.01471564, -.01212242, .99225736, .70501776, -.44703681, .69147821, .95838641, -.48755881, -.66838696, .16829922, -.65742882, -.43091212, -.3777599, -.48123749, .2179296, -.47656828, -.3962105, .20800236, .18925086, -.10391383, .18896962, .20794411, -.19079329, -.213611, .16107615, -.21315735, -.22719345, .31904245, .27589917, -.26252013, .2749309, .37667186, .04010878, .0393186, -.02236594, .039316, .04159413, -.02494808, -.02525158, .00845639, -.02525096, -.02191609, .8212072, .60966564, -.38077433, .60074282, .80081903, -.24368044, -.27772481, .07283286, -.2769348, -.2052735, .66968971, .52729017, -.15116308, .5223009, .51373718, -.22175179, -.25047303, .08820703, -.24985487, -.2054735, -.38644071, -.47499015, .05802841, -.47163706, -.25878879, .01919507, .01902635, -.00490186, .01902611, .01534347, -.3713334, -.4571303, .08430312, -.45385478, -.28540871, .14357274, .13569087, -.01381273, .13561879, .08288664, -.13841049, -.1481505, .03228135, -.14803637, -.10734288, .87551684, .66655617, -.08041144, .65836644, .49769004, .91127172, .66035816, -.42523081, .64907921, .89053331, -.30803484, -.37574199, .27045591, -.3732811, -.37162825, -.00678639, -.00681114, .00619686, -.00681113, -.00829519, -.27461572, -.32156385, .12059118, -.32023279, -.26298568, -.27504152, -.31881524, .07147225, -.31765917, -.22113356, .73670468, .57617649, -.09651916, .57041651, .47142231, -.47160338, -.6449074, .20866342, -.63449845, -.45276903, .01841131, .01823494, -.0149963, .01823466, .02166346, -.5864559, -.87238967, .15950373, -.84987263, -.47872986, -.23419911, -.26584045, .07806246, -.26513025, -.20458835, -.06042102, -.06234982, .03249908, -.06233956, -.06190976, -.56688868, -.98333402, 1.2357693, -.93532088, -.92609242, -.64334619, -.99313137, .12726082, -.96260133, -.47228562, -.37870995, -.50850668, .81436117, -.50121973, -.61586685, -.72441698, -1.1832351, .09617001, -1.1370623, -.46560286, -.22634773, -.25477515, .0594121, -.25418177, -.18259368, .42793116, .35498325, -.35874136, .35292514, .50837762, .47199579, .39193388, -.15444486, .38968604, .40978862, 1.1985705, .83253909, -.22061912, .81439502, .85901372, .23502298, .2116479, -.10906943, .21126127, .22925451, -.39761407, -.50587964, .1393689, -.50102296, -.35321552, -.30317936, -.36865385, .27304678, -.36631514, -.36888312, .52891415, .4286696, -.23649281, .42553087, .50957264, .09077196, .08692412, -.04414515, .08689695, .08993709, -.14416059, -.1568803, .14318278, -.15669352, -.18121937, .73647886, .57278216, -.12516194, .56679404, .51397376, -.30020097, -.35901216, .15278503, -.35710415, -.3019801, -.30970783, -.36488812, .0616491, -.36325833, -.22783496, -.13090644, -.14142637, .14714733, -.14128564, -.17148842, 1.7228459, 1.0583109, -.58431917, 1.0175577, 1.5137622, -.22877864, -.25919887, .08362009, -.25852681, -.20609013, -.82510806, -1.6126582, .1515493, -1.4979969, -.59092886, -.64003893, -1.0073362, .1692274, -.97361338, -.51757245, -.13130595, -.14057566, .05050397, -.1404667, -.12031177, -.18244628, -.19973106, .03812658, -.19945858, -.13640887, .02164936, .0214168, -.01169166, .02141638, .02221257, .50690309, .41969105, -.10328319, .41720801, .37581131, 1.0020303, .7351515, -.12375838, .72352927, .62871736]
-
-invgauss_resids = np.asarray(invgauss).astype(float).reshape(-1,5)
-
-wfs_resids = [-1.168096,-1.274198,-22.17336,-1.276003,-3.11599,1.11769,1.074522,93.39722,1.074787,4.886437,.7295976,.715076,143.1204,.7151231,4.239254,.6471395,.6355711,124.1729,.6356048,3.732567,.5949094,.5789607,24.55698,.5790298,2.056012,-.8578523,-.8829973,-123.7017,-.8831246,-4.498492,.9996619,.9733517,207.696,.9734635,5.92077,-.3647809,-.3685094,-82.85051,-.3685159,-2.225631,-.5218114,-.5276356,-268.2977,-.5276466,-4.180369,-.9659918,-.9815653,-1084.813,-.981608,-10.04078,.3903325,.3878348,390.8879,.3878375,3.905176,-.1136672,-.1140306,-24.22441,-.1140308,-.6789552,1.404348,1.344308,166.2025,1.344715,6.894916,.6979978,.6888638,444.2878,.6888834,6.004232,-.4536614,-.4585339,-171.4895,-.4585427,-3.280201,-.1426753,-.1432245,-34.60201,-.1432249,-.8897463,4.041986,3.678221,839.28,3.683146,23.93493,-.4076838,-.4104721,-420.7155,-.4104753,-4.119822,1.037925,1.021274,1152.838,1.021318,10.74897,1.002495,.9780589,268.3886,.9781554,6.461147,-1.810334,-1.851575,-4981.573,-1.851736,-25.3685,-1.028229,-1.038076,-6328.413,-1.038092,-18.84335,-.3727405,-.3743742,-1096.784,-.3743754,-5.341272,.5779432,.5697695,164.1083,.5697884,3.798688,1.083387,1.055122,294.6827,1.055241,7.019516,.2389214,.2379634,227.0207,.237964,2.348868,-.6575496,-.6669395,-330.597,-.6669623,-5.228599,-1.223007,-1.27265,-208.9083,-1.273003,-6.785854,.5404838,.534834,319.6869,.5348437,4.536944,-2.227986,-2.295954,-5036.329,-2.296313,-29.24016,.2379562,.2370335,247.2598,.2370341,2.410178,1.05744,1.030792,298.8007,1.030901,6.939011,.3025656,.3017648,2051.827,.3017652,5.726993,-.1662367,-.1664337,-2143.633,-.1664338,-3.898237,.9615754,.9505365,2399.173,.9505573,13.04196,.6036977,.5925143,84.08839,.5925481,3.12938,-.4469533,-.4512659,-221.0249,-.451273,-3.534449,.9504169,.9381722,1602.909,.9381981,11.31303,-1.58407,-1.647805,-602.1467,-1.648254,-11.47494,-.5808498,-.5975259,-27.5484,-.5976085,-2.102526,-.6490194,-.6557381,-799.9641,-.6557499,-6.958708,.6957488,.6903502,2190.347,.6903571,10.19701,.1750624,.174529,150.309,.1745293,1.663886,.1572418,.1562937,12.33672,.1562946,.6731502,-.6408126,-.6436554,-9244.279,-.6436575,-15.59954,1.101677,1.092417,10778.35,1.09243,23.56244,-.4992968,-.5028596,-835.3172,-.5028639,-5.927292,-.9280973,-1.02178,-6.907707,-1.023576,-1.812064,.6339129,.6277187,744.4614,.6277287,6.688065,-.6707486,-.6785607,-647.0199,-.6785761,-6.627439,-1.38237,-1.427934,-602.4287,-1.428195,-10.48056,-1.459774,-1.554047,-125.0777,-1.555148,-6.435521,-1.093153,-1.111322,-1629.418,-1.111374,-12.48719,-.3837357,-.3857544,-717.1755,-.3857562,-4.726757,-.5606073,-.5670648,-326.075,-.5670773,-4.679632,.8169871,.7887753,38.50973,.7889313,2.951211,1.275712,1.265811,24735.07,1.265823,34.27201,.0862263,.0861666,766.7436,.0861666,1.786392,.3344287,.3328024,485.5152,.3328038,3.786779,-1.345582,-1.471176,-36.61779,-1.473379,-4.047349,.4774571,.4752944,2502.141,.475296,8.29329,.349272,.3477617,824.9081,.3477628,4.651336,-.5002936,-.5066125,-158.1673,-.506626,-3.408177,-1.247884,-1.411017,-12.7456,-1.415246,-2.707506,-1.673559,-1.700277,-10051.77,-1.70035,-30.4211,.3986639,.3972206,2398.038,.3972214,7.250311,1.482003,1.444616,1148.828,1.444769,13.61396,.0587717,.0587566,3267.75,.0587566,2.243168,.4706421,.4689196,4507.782,.4689206,9.994969,-1.157463,-1.186371,-642.0396,-1.186495,-9.510254]
-#wfs_resids = np.asarray(wfs_resids.split(",")).astype(float).reshape(-1,5)
-wfs_resids = np.asarray(wfs_resids).astype(float).reshape(-1,5)
-
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/igaussident_resids.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/igaussident_resids.csv
deleted file mode 100644
index f8f9e60..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/igaussident_resids.csv
+++ /dev/null
@@ -1,3676 +0,0 @@
-.064289,.0594801,1.152063,.0594202,1.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.9013395,.4918179,16.15206,.462978,16.15206
-.064289,.0594801,1.152063,.0594202,1.152063
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.7158609,.4269431,11.59742,.4085118,11.59742
-.1200924,.1047548,2.152063,.1044296,2.152063
-.678126,.4071116,12.15206,.3899685,12.15206
-.2875024,.2171855,5.152063,.2143638,5.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.6223226,.383848,11.15206,.3693074,11.15206
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.678126,.4071116,12.15206,.3899685,12.15206
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.3565811,-.8026257,-4.066515,-.7208934,-4.066515
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.5665193,.3595589,10.15206,.347465,10.15206
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
-.5665193,.3595589,10.15206,.347465,10.15206
-.1387993,.1218112,1.37884,.1214658,1.37884
-.5107159,.3341175,9.152063,.324298,9.152063
-.7339293,.4294565,13.15206,.4095696,13.15206
-.1200924,.1047548,2.152063,.1044296,2.152063
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.678126,.4071116,12.15206,.3899685,12.15206
-1.151295,.6287713,9.824195,.5920053,9.824195
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.3645199,-.7836041,-3.62116,-.7120315,-3.62116
-.5107159,.3341175,9.152063,.324298,9.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-6.132267,1.593842,69.93349,1.19723,69.93349
-1.012946,.5301469,18.15206,.4948412,18.15206
-.2316991,.1828133,4.152063,.1811134,4.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.5013845,.339805,6.488129,.331384,6.488129
-.2837797,.2165023,4.597418,.2138826,4.597418
-.1603279,.1352277,2.597418,.1345765,2.597418
-.4407907,.3158543,4.378839,.3100816,4.378839
-.5202903,.3531052,5.933485,.3444154,5.933485
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-1.124553,.5663409,20.15206,.524251,20.15206
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-1.626783,.7095096,29.15206,.6341852,29.15206
-.0084856,.008393,.1520631,.0083928,.1520631
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3309667,.2556262,2.824195,.2528057,2.824195
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.039556,-.0415314,-.511871,-.041515,-.511871
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.5107159,.3341175,9.152063,.324298,9.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.0986021,.0882102,1.597418,.0880281,1.597418
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1149985,.1020452,1.488129,.1018027,1.488129
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.4549125,.3073705,8.152063,.2996354,8.152063
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5202903,.3531052,5.933485,.3444154,5.933485
--.3334791,-.843813,-5.402582,-.7337776,-5.402582
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.039556,-.0415314,-.511871,-.041515,-.511871
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
-.0084856,.008393,.1520631,.0083928,.1520631
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
-.064289,.0594801,1.152063,.0594202,1.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0717173,.0661602,1.042774,.0660885,1.042774
--.3645199,-.7836041,-3.62116,-.7120315,-3.62116
-.0717173,.0661602,1.042774,.0660885,1.042774
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.7897327,.4509728,14.15206,.4282142,14.15206
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.4407907,.3158543,4.378839,.3100816,4.378839
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.0084856,.008393,.1520631,.0083928,.1520631
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5013845,.339805,6.488129,.331384,6.488129
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.0381354,.0366623,.3788396,.0366528,.3788396
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.5107159,.3341175,9.152063,.324298,9.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1149985,.1020452,1.488129,.1018027,1.488129
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.039556,-.0415314,-.511871,-.041515,-.511871
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.064289,.0594801,1.152063,.0594202,1.152063
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.3401269,.2585065,3.37884,.2552908,3.37884
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0029418,.0029313,.0427737,.0029313,.0427737
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.5107159,.3341175,9.152063,.324298,9.152063
-1.794193,.751825,32.15206,.6647726,32.15206
-.0084856,.008393,.1520631,.0083928,.1520631
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0368762,.0352675,.5974184,.0352558,.5974184
-.6223226,.383848,11.15206,.3693074,11.15206
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.213777,.1783427,1.824195,.1773702,1.824195
-.3433058,.2491663,6.152063,.2449511,6.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4549125,.3073705,8.152063,.2996354,8.152063
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.2316991,.1828133,4.152063,.1811134,4.152063
-.4241073,.3002126,5.488129,.2943222,5.488129
-.5013845,.339805,6.488129,.331384,6.488129
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.1149985,.1020452,1.488129,.1018027,1.488129
-.1603279,.1352277,2.597418,.1345765,2.597418
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.064289,.0594801,1.152063,.0594202,1.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0084856,.008393,.1520631,.0083928,.1520631
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.064289,.0594801,1.152063,.0594202,1.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
-.5665193,.3595589,10.15206,.347465,10.15206
-.0965872,.0882683,.8241949,.0881491,.8241949
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.3433058,.2491663,6.152063,.2449511,6.152063
-.7339293,.4294565,13.15206,.4095696,13.15206
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.3433058,.2491663,6.152063,.2449511,6.152063
-.7897327,.4509728,14.15206,.4282142,14.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.5306833,.3467107,8.597419,.3364574,8.597419
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.4689574,.317137,7.597418,.309191,7.597418
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.064289,.0594801,1.152063,.0594202,1.152063
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0986021,.0882102,1.597418,.0880281,1.597418
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.213777,.1783427,1.824195,.1773702,1.824195
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2220538,.1776789,3.597418,.1762155,3.597418
-.0717173,.0661602,1.042774,.0660885,1.042774
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.0818546,.075218,.9334843,.0751285,.9334843
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.5665193,.3595589,10.15206,.347465,10.15206
-.1200924,.1047548,2.152063,.1044296,2.152063
-.678126,.4071116,12.15206,.3899685,12.15206
-.5665193,.3595589,10.15206,.347465,10.15206
-.0965872,.0882683,.8241949,.0881491,.8241949
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
-1.012946,.5301469,18.15206,.4948412,18.15206
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.678126,.4071116,12.15206,.3899685,12.15206
-.0029418,.0029313,.0427737,.0029313,.0427737
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5924091,.374748,9.597419,.3619633,9.597419
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0029418,.0029313,.0427737,.0029313,.0427737
-.0084856,.008393,.1520631,.0083928,.1520631
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.4326032,.3079246,4.933485,.3020721,4.933485
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5107159,.3341175,9.152063,.324298,9.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.064289,.0594801,1.152063,.0594202,1.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.5306833,.3467107,8.597419,.3364574,8.597419
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1603279,.1352277,2.597418,.1345765,2.597418
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.064289,.0594801,1.152063,.0594202,1.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
-.5414546,.3680761,5.378839,.3590935,5.378839
-.0986021,.0882102,1.597418,.0880281,1.597418
-.4481565,.3237836,3.824195,.3181508,3.824195
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1013791,-.1130495,-.7304498,-.1128261,-.7304498
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.5665193,.3595589,10.15206,.347465,10.15206
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.064289,.0594801,1.152063,.0594202,1.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.7332162,.4444633,9.488129,.4264302,9.488129
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-1.309475,.6590779,14.93348,.6100154,14.93348
-1.291963,.6172617,23.15206,.5645132,23.15206
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
-.4549125,.3073705,8.152063,.2996354,8.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1603279,.1352277,2.597418,.1345765,2.597418
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-4.472755,1.25486,80.15206,.9713796,80.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.064289,.0594801,1.152063,.0594202,1.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.2875024,.2171855,5.152063,.2143638,5.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.2220538,.1776789,3.597418,.1762155,3.597418
-.4549125,.3073705,8.152063,.2996354,8.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.4549125,.3073705,8.152063,.2996354,8.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0377213,.0361543,.488129,.0361435,.488129
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.064289,.0594801,1.152063,.0594202,1.152063
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.2316991,.1828133,4.152063,.1811134,4.152063
-.3468194,.2552284,5.042774,.251272,5.042774
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0818546,.075218,.9334843,.0751285,.9334843
-.1149985,.1020452,1.488129,.1018027,1.488129
-.0084856,.008393,.1520631,.0083928,.1520631
-.3309667,.2556262,2.824195,.2528057,2.824195
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-2.129014,.8305237,38.15206,.7194568,38.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5665193,.3595589,10.15206,.347465,10.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.2394631,.1945652,2.37884,.1931742,2.37884
-.064289,.0594801,1.152063,.0594202,1.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.0818546,.075218,.9334843,.0751285,.9334843
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.2394631,.1945652,2.37884,.1931742,2.37884
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3721718,-.7605252,-3.175805,-.699448,-3.175805
-.064289,.0594801,1.152063,.0594202,1.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.0084856,.008393,.1520631,.0083928,.1520631
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
-.2316991,.1828133,4.152063,.1811134,4.152063
-.1695417,.1442388,1.933484,.1436127,1.933484
-.2695529,.2109465,3.488129,.2088481,3.488129
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.2316991,.1828133,4.152063,.1811134,4.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0377213,.0361543,.488129,.0361435,.488129
-.1149985,.1020452,1.488129,.1018027,1.488129
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.0368762,.0352675,.5974184,.0352558,.5974184
-.4843704,.3278898,7.042774,.3197159,7.042774
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.0368762,.0352675,.5974184,.0352558,.5974184
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.678126,.4071116,12.15206,.3899685,12.15206
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0368762,.0352675,.5974184,.0352558,.5974184
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0818546,.075218,.9334843,.0751285,.9334843
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.4326032,.3079246,4.933485,.3020721,4.933485
-.5414546,.3680761,5.378839,.3590935,5.378839
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.039556,-.0415314,-.511871,-.041515,-.511871
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.5665193,.3595589,10.15206,.347465,10.15206
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.0368762,.0352675,.5974184,.0352558,.5974184
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.0986021,.0882102,1.597418,.0880281,1.597418
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.3433058,.2491663,6.152063,.2449511,6.152063
-.0818546,.075218,.9334843,.0751285,.9334843
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-1.346765,.6823877,13.37884,.6325223,13.37884
-.1404928,.1212359,2.042774,.1207979,2.042774
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0965872,.0882683,.8241949,.0881491,.8241949
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.0374109,.0361284,.2695502,.0361211,.2695502
-.5665193,.3595589,10.15206,.347465,10.15206
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-1.347766,.6334519,24.15206,.5770435,24.15206
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.7897327,.4509728,14.15206,.4282142,14.15206
-.4843704,.3278898,7.042774,.3197159,7.042774
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.064289,.0594801,1.152063,.0594202,1.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
-.0368762,.0352675,.5974184,.0352558,.5974184
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.2695529,.2109465,3.488129,.2088481,3.488129
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-1.23616,.600697,22.15206,.5515581,22.15206
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3334791,-.843813,-5.402582,-.7337776,-5.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2780438,.2146028,4.042774,.2122223,4.042774
-.2316991,.1828133,4.152063,.1811134,4.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3455056,.2523725,5.597418,.2482699,5.597418
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-1.23616,.600697,22.15206,.5515581,22.15206
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.4549125,.3073705,8.152063,.2996354,8.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
-.0374109,.0361284,.2695502,.0361211,.2695502
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1603279,.1352277,2.597418,.1345765,2.597418
-.0818546,.075218,.9334843,.0751285,.9334843
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
-1.57098,.6948906,28.15206,.6234201,28.15206
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-1.40357,.6492903,25.15206,.5891758,25.15206
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.5665193,.3595589,10.15206,.347465,10.15206
-.2875024,.2171855,5.152063,.2143638,5.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.0377213,.0361543,.488129,.0361435,.488129
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.2875024,.2171855,5.152063,.2143638,5.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1922757,.1595985,2.488129,.1586793,2.488129
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1603279,.1352277,2.597418,.1345765,2.597418
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-1.012946,.5301469,18.15206,.4948412,18.15206
-.3433058,.2491663,6.152063,.2449511,6.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1762009,.1521962,1.26955,.1516534,1.26955
-.2875024,.2171855,5.152063,.2143638,5.152063
-.1922757,.1595985,2.488129,.1586793,2.488129
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.064289,.0594801,1.152063,.0594202,1.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2572289,.2047054,2.933484,.2029365,2.933484
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.0084856,.008393,.1520631,.0083928,.1520631
-.0717173,.0661602,1.042774,.0660885,1.042774
-.0084856,.008393,.1520631,.0083928,.1520631
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
-.6223226,.383848,11.15206,.3693074,11.15206
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.1404928,.1212359,2.042774,.1207979,2.042774
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.039556,-.0415314,-.511871,-.041515,-.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.6421184,.4161926,6.378839,.4034303,6.378839
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0029418,.0029313,.0427737,.0029313,.0427737
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.6223226,.383848,11.15206,.3693074,11.15206
-.0084856,.008393,.1520631,.0083928,.1520631
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1013791,-.1130495,-.7304498,-.1128261,-.7304498
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-1.180356,.5837326,21.15206,.5381484,21.15206
-.0381354,.0366623,.3788396,.0366528,.3788396
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.039556,-.0415314,-.511871,-.041515,-.511871
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.0986021,.0882102,1.597418,.0880281,1.597418
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1149985,.1020452,1.488129,.1018027,1.488129
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.5107159,.3341175,9.152063,.324298,9.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.4072315,.2857901,6.597418,.2799032,6.597418
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.3401269,.2585065,3.37884,.2552908,3.37884
--.3565811,-.8026257,-4.066515,-.7208934,-4.066515
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.5107159,.3341175,9.152063,.324298,9.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.7775868,.4513876,12.59742,.4298794,12.59742
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.0029418,.0029313,.0427737,.0029313,.0427737
-.0084856,.008393,.1520631,.0083928,.1520631
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.1603279,.1352277,2.597418,.1345765,2.597418
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0377213,.0361543,.488129,.0361435,.488129
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
-.0029418,.0029313,.0427737,.0029313,.0427737
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.0717173,.0661602,1.042774,.0660885,1.042774
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0717173,.0661602,1.042774,.0660885,1.042774
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.2572289,.2047054,2.933484,.2029365,2.933484
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5924091,.374748,9.597419,.3619633,9.597419
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0029418,.0029313,.0427737,.0029313,.0427737
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.0084856,.008393,.1520631,.0083928,.1520631
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.5107159,.3341175,9.152063,.324298,9.152063
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-1.274157,.6377655,16.48813,.5895627,16.48813
-.5107159,.3341175,9.152063,.324298,9.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.8455361,.4717378,15.15206,.4459912,15.15206
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3991092,.2791307,7.152063,.2732706,7.152063
-.0381354,.0366623,.3788396,.0366528,.3788396
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.9441099,.5424179,9.378839,.5156149,9.378839
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3455056,.2523725,5.597418,.2482699,5.597418
-.3433058,.2491663,6.152063,.2449511,6.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4072315,.2857901,6.597418,.2799032,6.597418
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
-.0374109,.0361284,.2695502,.0361211,.2695502
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.6223226,.383848,11.15206,.3693074,11.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2316991,.1828133,4.152063,.1811134,4.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.2316991,.1828133,4.152063,.1811134,4.152063
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.0717173,.0661602,1.042774,.0660885,1.042774
-.2875024,.2171855,5.152063,.2143638,5.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
-.6223226,.383848,11.15206,.3693074,11.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1387993,.1218112,1.37884,.1214658,1.37884
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.064289,.0594801,1.152063,.0594202,1.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.3409358,-.8321366,-4.957226,-.7311729,-4.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.3468194,.2552284,5.042774,.251272,5.042774
-.0084856,.008393,.1520631,.0083928,.1520631
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3645199,-.7836041,-3.62116,-.7120315,-3.62116
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.2092683,.1702567,3.042774,.1690549,3.042774
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.1387993,.1218112,1.37884,.1214658,1.37884
-.064289,.0594801,1.152063,.0594202,1.152063
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.2220538,.1776789,3.597418,.1762155,3.597418
-.0986021,.0882102,1.597418,.0880281,1.597418
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1013791,-.1130495,-.7304498,-.1128261,-.7304498
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.7897327,.4509728,14.15206,.4282142,14.15206
-.2875024,.2171855,5.152063,.2143638,5.152063
-.064289,.0594801,1.152063,.0594202,1.152063
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0368762,.0352675,.5974184,.0352558,.5974184
-.3433058,.2491663,6.152063,.2449511,6.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0818546,.075218,.9334843,.0751285,.9334843
-.4326032,.3079246,4.933485,.3020721,4.933485
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2092683,.1702567,3.042774,.1690549,3.042774
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-1.580023,.7067504,25.59742,.6358985,25.59742
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0818546,.075218,.9334843,.0751285,.9334843
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.678126,.4071116,12.15206,.3899685,12.15206
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
-.2572289,.2047054,2.933484,.2029365,2.933484
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.678126,.4071116,12.15206,.3899685,12.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.9013395,.4918179,16.15206,.462978,16.15206
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.3991092,.2791307,7.152063,.2732706,7.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1149985,.1020452,1.488129,.1018027,1.488129
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.5665193,.3595589,10.15206,.347465,10.15206
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0029418,.0029313,.0427737,.0029313,.0427737
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.3991092,.2791307,7.152063,.2732706,7.152063
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-1.221787,.6309189,13.93348,.5872274,13.93348
-.0377213,.0361543,.488129,.0361435,.488129
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.678126,.4071116,12.15206,.3899685,12.15206
-.0084856,.008393,.1520631,.0083928,.1520631
-.0965872,.0882683,.8241949,.0881491,.8241949
-.5107159,.3341175,9.152063,.324298,9.152063
-1.012946,.5301469,18.15206,.4948412,18.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.5107159,.3341175,9.152063,.324298,9.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.678126,.4071116,12.15206,.3899685,12.15206
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.3433058,.2491663,6.152063,.2449511,6.152063
-.2780438,.2146028,4.042774,.2122223,4.042774
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1922757,.1595985,2.488129,.1586793,2.488129
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0368762,.0352675,.5974184,.0352558,.5974184
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.2316991,.1828133,4.152063,.1811134,4.152063
-.5531459,.3608259,8.042773,.3500788,8.042773
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0381354,.0366623,.3788396,.0366528,.3788396
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.064289,.0594801,1.152063,.0594202,1.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0029418,.0029313,.0427737,.0029313,.0427737
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.5107159,.3341175,9.152063,.324298,9.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3991092,.2791307,7.152063,.2732706,7.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.690697,.4214534,10.04277,.4047881,10.04277
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.213777,.1783427,1.824195,.1773702,1.824195
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.5531459,.3608259,8.042773,.3500788,8.042773
-.0084856,.008393,.1520631,.0083928,.1520631
-.2394631,.1945652,2.37884,.1931742,2.37884
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.7339293,.4294565,13.15206,.4095696,13.15206
-.064289,.0594801,1.152063,.0594202,1.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.7897327,.4509728,14.15206,.4282142,14.15206
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0374109,.0361284,.2695502,.0361211,.2695502
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1387993,.1218112,1.37884,.1214658,1.37884
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0377213,.0361543,.488129,.0361435,.488129
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0368762,.0352675,.5974184,.0352558,.5974184
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0377213,.0361543,.488129,.0361435,.488129
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0029418,.0029313,.0427737,.0029313,.0427737
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.0374109,.0361284,.2695502,.0361211,.2695502
-.0084856,.008393,.1520631,.0083928,.1520631
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.6223226,.383848,11.15206,.3693074,11.15206
--.3334791,-.843813,-5.402582,-.7337776,-5.402582
-1.347766,.6334519,24.15206,.5770435,24.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3334791,-.843813,-5.402582,-.7337776,-5.402582
-.0818546,.075218,.9334843,.0751285,.9334843
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.3455056,.2523725,5.597418,.2482699,5.597418
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.039556,-.0415314,-.511871,-.041515,-.511871
-.1695417,.1442388,1.933484,.1436127,1.933484
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.5924091,.374748,9.597419,.3619633,9.597419
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.1149985,.1020452,1.488129,.1018027,1.488129
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0986021,.0882102,1.597418,.0880281,1.597418
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0374109,.0361284,.2695502,.0361211,.2695502
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1149985,.1020452,1.488129,.1018027,1.488129
-.1758957,.1455577,3.152063,.1446918,3.152063
-.2220538,.1776789,3.597418,.1762155,3.597418
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0368762,.0352675,.5974184,.0352558,.5974184
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0986021,.0882102,1.597418,.0880281,1.597418
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.064289,.0594801,1.152063,.0594202,1.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.6956646,.4342931,7.933485,.4186322,7.933485
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2394631,.1945652,2.37884,.1931742,2.37884
-.064289,.0594801,1.152063,.0594202,1.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.0084856,.008393,.1520631,.0083928,.1520631
-.064289,.0594801,1.152063,.0594202,1.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.0381354,.0366623,.3788396,.0366528,.3788396
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.213777,.1783427,1.824195,.1773702,1.824195
-.678126,.4071116,12.15206,.3899685,12.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.7897327,.4509728,14.15206,.4282142,14.15206
-.1603279,.1352277,2.597418,.1345765,2.597418
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1762009,.1521962,1.26955,.1516534,1.26955
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.4549125,.3073705,8.152063,.2996354,8.152063
-.4241073,.3002126,5.488129,.2943222,5.488129
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0029418,.0029313,.0427737,.0029313,.0427737
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1695417,.1442388,1.933484,.1436127,1.933484
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2780438,.2146028,4.042774,.2122223,4.042774
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3401269,.2585065,3.37884,.2552908,3.37884
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2875024,.2171855,5.152063,.2143638,5.152063
-.7313609,.4708592,5.26955,.4559795,5.26955
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0377213,.0361543,.488129,.0361435,.488129
-.0084856,.008393,.1520631,.0083928,.1520631
-.654135,.4014399,10.59742,.3859225,10.59742
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.064289,.0594801,1.152063,.0594202,1.152063
-.1695417,.1442388,1.933484,.1436127,1.933484
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.4549125,.3073705,8.152063,.2996354,8.152063
-.1695417,.1442388,1.933484,.1436127,1.933484
-.1762009,.1521962,1.26955,.1516534,1.26955
--.0478814,-.0501049,-.2850945,-.0500877,-.2850945
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.064289,.0594801,1.152063,.0594202,1.152063
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0986021,.0882102,1.597418,.0880281,1.597418
-.0084856,.008393,.1520631,.0083928,.1520631
-.6223226,.383848,11.15206,.3693074,11.15206
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.9571428,.5112708,17.15206,.4792416,17.15206
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4537809,.3312667,3.26955,.3258617,3.26955
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.064289,.0594801,1.152063,.0594202,1.152063
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-1.268485,.6692829,10.82419,.6257678,10.82419
--.3565811,-.8026257,-4.066515,-.7208934,-4.066515
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.2875024,.2171855,5.152063,.2143638,5.152063
-.3991092,.2791307,7.152063,.2732706,7.152063
-1.347766,.6334519,24.15206,.5770435,24.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2875024,.2171855,5.152063,.2143638,5.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0029418,.0029313,.0427737,.0029313,.0427737
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3401269,.2585065,3.37884,.2552908,3.37884
-.064289,.0594801,1.152063,.0594202,1.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.5202903,.3531052,5.933485,.3444154,5.933485
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.064289,.0594801,1.152063,.0594202,1.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-2.57544,.9257494,46.15206,.7819858,46.15206
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0084856,.008393,.1520631,.0083928,.1520631
-.2837797,.2165023,4.597418,.2138826,4.597418
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.2837797,.2165023,4.597418,.2138826,4.597418
-.1200924,.1047548,2.152063,.1044296,2.152063
-.1922757,.1595985,2.488129,.1586793,2.488129
-1.06875,.5484905,19.15206,.509829,19.15206
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0084856,.008393,.1520631,.0083928,.1520631
-.2875024,.2171855,5.152063,.2143638,5.152063
-.9013395,.4918179,16.15206,.462978,16.15206
-.3433058,.2491663,6.152063,.2449511,6.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.2394631,.1945652,2.37884,.1931742,2.37884
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.3991092,.2791307,7.152063,.2732706,7.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-2.098659,.8771978,23.93349,.7750893,23.93349
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1695417,.1442388,1.933484,.1436127,1.933484
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.7897327,.4509728,14.15206,.4282142,14.15206
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1387993,.1218112,1.37884,.1214658,1.37884
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0368762,.0352675,.5974184,.0352558,.5974184
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0368762,.0352675,.5974184,.0352558,.5974184
-.1758957,.1455577,3.152063,.1446918,3.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
-.6559389,.4115749,8.488129,.3970432,8.488129
-.0084856,.008393,.1520631,.0083928,.1520631
-.064289,.0594801,1.152063,.0594202,1.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-1.347766,.6334519,24.15206,.5770435,24.15206
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.678126,.4071116,12.15206,.3899685,12.15206
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1387993,.1218112,1.37884,.1214658,1.37884
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.5107159,.3341175,9.152063,.324298,9.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-1.012946,.5301469,18.15206,.4948412,18.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0377213,.0361543,.488129,.0361435,.488129
-.1603279,.1352277,2.597418,.1345765,2.597418
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.8970235,.5022837,13.04277,.4751971,13.04277
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
-.2220538,.1776789,3.597418,.1762155,3.597418
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2695529,.2109465,3.488129,.2088481,3.488129
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1387993,.1218112,1.37884,.1214658,1.37884
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0965872,.0882683,.8241949,.0881491,.8241949
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.2092683,.1702567,3.042774,.1690549,3.042774
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0986021,.0882102,1.597418,.0880281,1.597418
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.4241073,.3002126,5.488129,.2943222,5.488129
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.064289,.0594801,1.152063,.0594202,1.152063
-.0381354,.0366623,.3788396,.0366528,.3788396
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.0986021,.0882102,1.597418,.0880281,1.597418
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.5924091,.374748,9.597419,.3619633,9.597419
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2316991,.1828133,4.152063,.1811134,4.152063
-.1695417,.1442388,1.933484,.1436127,1.933484
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.1404928,.1212359,2.042774,.1207979,2.042774
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.3991092,.2791307,7.152063,.2732706,7.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4326032,.3079246,4.933485,.3020721,4.933485
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3149909,.2483722,2.26955,.2460503,2.26955
-.1603279,.1352277,2.597418,.1345765,2.597418
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0084856,.008393,.1520631,.0083928,.1520631
-.2316991,.1828133,4.152063,.1811134,4.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
-.2875024,.2171855,5.152063,.2143638,5.152063
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0368762,.0352675,.5974184,.0352558,.5974184
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
-.064289,.0594801,1.152063,.0594202,1.152063
-.7339293,.4294565,13.15206,.4095696,13.15206
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2092683,.1702567,3.042774,.1690549,3.042774
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.3486648,-.8185734,-4.511871,-.7270422,-4.511871
-.0818546,.075218,.9334843,.0751285,.9334843
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.678126,.4071116,12.15206,.3899685,12.15206
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
-.5107159,.3341175,9.152063,.324298,9.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1013791,-.1130495,-.7304498,-.1128261,-.7304498
-.064289,.0594801,1.152063,.0594202,1.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.3991092,.2791307,7.152063,.2732706,7.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0818546,.075218,.9334843,.0751285,.9334843
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.263856,-.4010768,-2.62116,-.3895907,-2.62116
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.0818546,.075218,.9334843,.0751285,.9334843
-.064289,.0594801,1.152063,.0594202,1.152063
-.1695417,.1442388,1.933484,.1436127,1.933484
-.2220538,.1776789,3.597418,.1762155,3.597418
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2220538,.1776789,3.597418,.1762155,3.597418
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
-.0377213,.0361543,.488129,.0361435,.488129
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4689574,.317137,7.597418,.309191,7.597418
--.3645199,-.7836041,-3.62116,-.7120315,-3.62116
-.2875024,.2171855,5.152063,.2143638,5.152063
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.1200924,.1047548,2.152063,.1044296,2.152063
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-1.40357,.6492903,25.15206,.5891758,25.15206
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.2316991,.1828133,4.152063,.1811134,4.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.4241073,.3002126,5.488129,.2943222,5.488129
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.344916,.2587896,3.933484,.2552638,3.933484
-.0965872,.0882683,.8241949,.0881491,.8241949
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0084856,.008393,.1520631,.0083928,.1520631
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.2092683,.1702567,3.042774,.1690549,3.042774
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1695417,.1442388,1.933484,.1436127,1.933484
-.2316991,.1828133,4.152063,.1811134,4.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.3991092,.2791307,7.152063,.2732706,7.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0084856,.008393,.1520631,.0083928,.1520631
-.2875024,.2171855,5.152063,.2143638,5.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1013791,-.1130495,-.7304498,-.1128261,-.7304498
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
-.064289,.0594801,1.152063,.0594202,1.152063
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
-.0377213,.0361543,.488129,.0361435,.488129
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0029418,.0029313,.0427737,.0029313,.0427737
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
-.5665193,.3595589,10.15206,.347465,10.15206
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.064289,.0594801,1.152063,.0594202,1.152063
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.0084856,.008393,.1520631,.0083928,.1520631
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.2721603,-.4697121,-3.957226,-.4471826,-3.957226
-.678126,.4071116,12.15206,.3899685,12.15206
-.2394631,.1945652,2.37884,.1931742,2.37884
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0084856,.008393,.1520631,.0083928,.1520631
-.1404928,.1212359,2.042774,.1207979,2.042774
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
-.1922757,.1595985,2.488129,.1586793,2.488129
-.5107159,.3341175,9.152063,.324298,9.152063
--.0935197,-.1052514,-1.066516,-.1050068,-1.066516
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.064289,.0594801,1.152063,.0594202,1.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.0377213,.0361543,.488129,.0361435,.488129
-.2695529,.2109465,3.488129,.2088481,3.488129
-.1758957,.1455577,3.152063,.1446918,3.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.2695529,.2109465,3.488129,.2088481,3.488129
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-1.385675,.7078991,11.82419,.6573504,11.82419
-.1758957,.1455577,3.152063,.1446918,3.152063
-.4549125,.3073705,8.152063,.2996354,8.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
-.064289,.0594801,1.152063,.0594202,1.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-1.012946,.5301469,18.15206,.4948412,18.15206
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.3991092,.2791307,7.152063,.2732706,7.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-1.291963,.6172617,23.15206,.5645132,23.15206
-1.653554,.7368513,24.04277,.6623362,24.04277
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.0368762,.0352675,.5974184,.0352558,.5974184
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.4549125,.3073705,8.152063,.2996354,8.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.5665193,.3595589,10.15206,.347465,10.15206
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.5925709,.4046466,4.26955,.3949974,4.26955
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
--.3645199,-.7836041,-3.62116,-.7120315,-3.62116
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.064289,.0594801,1.152063,.0594202,1.152063
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0084856,.008393,.1520631,.0083928,.1520631
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0368762,.0352675,.5974184,.0352558,.5974184
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.039556,-.0415314,-.511871,-.041515,-.511871
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
-.0377213,.0361543,.488129,.0361435,.488129
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1168332,-.1371468,-1.511871,-.1365612,-1.511871
-.1603279,.1352277,2.597418,.1345765,2.597418
-.2875024,.2171855,5.152063,.2143638,5.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.4072315,.2857901,6.597418,.2799032,6.597418
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
-.8455361,.4717378,15.15206,.4459912,15.15206
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.0717173,.0661602,1.042774,.0660885,1.042774
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.0084856,.008393,.1520631,.0083928,.1520631
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.0377213,.0361543,.488129,.0361435,.488129
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
-.1758957,.1455577,3.152063,.1446918,3.152063
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2033848,-.2866024,-2.957226,-.281059,-2.957226
-.2220538,.1776789,3.597418,.1762155,3.597418
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.8455361,.4717378,15.15206,.4459912,15.15206
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.1377923,-.1625678,-1.175805,-.1618294,-1.175805
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0084856,.008393,.1520631,.0083928,.1520631
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
-.5107159,.3341175,9.152063,.324298,9.152063
-.3433058,.2491663,6.152063,.2449511,6.152063
-.0368762,.0352675,.5974184,.0352558,.5974184
-.0084856,.008393,.1520631,.0083928,.1520631
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.1031211,-.120682,-1.847937,-.120186,-1.847937
-.1200924,.1047548,2.152063,.1044296,2.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
--.2549821,-.3684383,-2.175805,-.3602484,-2.175805
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
-.1200924,.1047548,2.152063,.1044296,2.152063
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.3433058,.2491663,6.152063,.2449511,6.152063
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.5107159,.3341175,9.152063,.324298,9.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.0717173,.0661602,1.042774,.0660885,1.042774
--.0658337,-.0718597,-.9572263,-.0717679,-.9572263
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
-.0965872,.0882683,.8241949,.0881491,.8241949
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2100274,-.3068264,-3.402582,-.2996006,-3.402582
--.1346093,-.1642733,-1.957226,-.1631924,-1.957226
--.039556,-.0415314,-.511871,-.041515,-.511871
-.0084856,.008393,.1520631,.0083928,.1520631
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
-.2316991,.1828133,4.152063,.1811134,4.152063
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0865756,-.0979688,-1.402582,-.0977197,-1.402582
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
-.0084856,.008393,.1520631,.0083928,.1520631
-.2316991,.1828133,4.152063,.1811134,4.152063
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.2713876,-.4505308,-3.511871,-.4318017,-3.511871
-.0368762,.0352675,.5974184,.0352558,.5974184
-.7897327,.4509728,14.15206,.4282142,14.15206
-.0084856,.008393,.1520631,.0083928,.1520631
-.2880172,.2334572,1.714906,.2317498,1.714906
-.1404928,.1212359,2.042774,.1207979,2.042774
-.1758957,.1455577,3.152063,.1446918,3.152063
-.0374109,.0361284,.2695502,.0361211,.2695502
-.064289,.0594801,1.152063,.0594202,1.152063
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
-.5653462,.385091,4.824195,.3757893,4.824195
-.3991092,.2791307,7.152063,.2732706,7.152063
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.039556,-.0415314,-.511871,-.041515,-.511871
-.7897327,.4509728,14.15206,.4282142,14.15206
-.1200924,.1047548,2.152063,.1044296,2.152063
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
-.1758957,.1455577,3.152063,.1446918,3.152063
-.2875024,.2171855,5.152063,.2143638,5.152063
-1.459373,.6647973,26.15206,.6009349,26.15206
--.0625284,-.0672083,-.6211604,-.06715,-.6211604
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.2705312,-.50059,-4.847937,-.4703354,-4.847937
--.2717533,-.486225,-4.402582,-.4598424,-4.402582
--.1812069,-.235488,-2.066516,-.2328148,-2.066516
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.1589245,-.2079412,-2.847937,-.2054576,-2.847937
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
--.1631922,-.2025416,-1.62116,-.200975,-1.62116
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
-.1200924,.1047548,2.152063,.1044296,2.152063
--.268894,-.4279774,-3.066516,-.4129501,-3.066516
-.0029418,.0029313,.0427737,.0029313,.0427737
--.0248497,-.0256698,-.4025816,-.0256653,-.4025816
--.1941104,-.2631102,-2.511871,-.259097,-2.511871
-.064289,.0594801,1.152063,.0594202,1.152063
--.3263345,-.8539706,-5.847937,-.7352132,-5.847937
-.064289,.0594801,1.152063,.0594202,1.152063
--.1483015,-.187626,-2.402582,-.1859072,-2.402582
--.0473177,-.0505508,-.8479369,-.050514,-.8479369
--.1031211,-.120682,-1.847937,-.120186,-1.847937
--.0206026,-.0210504,-.1758051,-.0210488,-.1758051
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.0058326,-.0058712,-.0665157,-.0058712,-.0665157
--.2147278,-.3244199,-3.847937,-.3153918,-3.847937
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.3023081,.2300153,4.21086,.2271767,4.21086
-1.307403,.642112,18.21086,.5910361,18.21086
-.6612704,.4108095,9.21086,.3956947,9.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.0151382,.0148698,.2108601,.014869,.2108601
-.7330629,.4409489,10.21086,.422518,10.21086
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.1340736,.1171437,1.656215,.1167887,1.656215
-.0582021,.0549267,.546926,.054896,.546926
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1340736,.1171437,1.656215,.1167887,1.656215
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.7621819,.5085961,3.328347,.4949848,3.328347
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2959773,.2280665,3.656215,.2255045,3.656215
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0751906,.0709566,.3283472,.0709169,.3283472
-.3741006,.2713932,5.21086,.2667892,5.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.0650888,.061425,.4376366,.0613907,.4376366
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1016078,.0918079,1.101571,.0916507,1.101571
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0093688,.0092731,.1015707,.009273,.1015707
-.123677,.1107268,.9922814,.1105013,.9922814
-.2305156,.1848784,3.21086,.1833871,3.21086
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.232916,.2006459,.7737026,.199904,.7737026
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.5238857,.3775982,2.882992,.370934,2.882992
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0751906,.0709566,.3283472,.0709169,.3283472
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.367465,-.775436,-3.453074,-.7077873,-3.453074
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.6612704,.4108095,9.21086,.3956947,9.21086
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.0869306,.0790553,1.21086,.0789366,1.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.991179,.6123406,4.328347,.5892943,4.328347
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0151382,.0148698,.2108601,.014869,.2108601
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0093688,.0092731,.1015707,.009273,.1015707
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3769291,.2755397,4.656216,.2710823,4.656216
-.1340736,.1171437,1.656215,.1167887,1.656215
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.0151382,.0148698,.2108601,.014869,.2108601
-.0650888,.061425,.4376366,.0613907,.4376366
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0151382,.0148698,.2108601,.014869,.2108601
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.1604538,.1416409,.882992,.1412745,.882992
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.0650888,.061425,.4376366,.0613907,.4376366
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.0869306,.0790553,1.21086,.0789366,1.21086
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
-.1587231,.1350213,2.21086,.1344345,2.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
-.0151382,.0148698,.2108601,.014869,.2108601
-.1604538,.1416409,.882992,.1412745,.882992
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0582021,.0549267,.546926,.054896,.546926
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0151382,.0148698,.2108601,.014869,.2108601
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.1646189,.1418189,1.546926,.1412949,1.546926
-.0151382,.0148698,.2108601,.014869,.2108601
-.1016078,.0918079,1.101571,.0916507,1.101571
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
-.3729551,.2821995,2.992281,.2785753,2.992281
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.3023081,.2300153,4.21086,.2271767,4.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.3828036,-.6256999,-1.671653,-.6012149,-1.671653
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.5176855,.3454629,7.21086,.3362196,7.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0151382,.0148698,.2108601,.014869,.2108601
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
-.7330629,.4409489,10.21086,.422518,10.21086
--.3828036,-.6256999,-1.671653,-.6012149,-1.671653
-.3741006,.2713932,5.21086,.2667892,5.21086
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.0151382,.0148698,.2108601,.014869,.2108601
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.3741006,.2713932,5.21086,.2667892,5.21086
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.5331848,.389747,2.328347,.3834404,2.328347
-.5331848,.389747,2.328347,.3834404,2.328347
-.4578809,.3191396,5.656216,.3123125,5.656216
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.3741006,.2713932,5.21086,.2667892,5.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.123677,.1107268,.9922814,.1105013,.9922814
-.6612704,.4108095,9.21086,.3956947,9.21086
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.1587231,.1350213,2.21086,.1344345,2.21086
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.7330629,.4409489,10.21086,.422518,10.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.3023081,.2300153,4.21086,.2271767,4.21086
-.1604538,.1416409,.882992,.1412745,.882992
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0582021,.0549267,.546926,.054896,.546926
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.2138168,.1804787,1.437637,.1796173,1.437637
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.0869306,.0790553,1.21086,.0789366,1.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.4975942,.3521915,3.992281,.3452767,3.992281
-.1587231,.1350213,2.21086,.1344345,2.21086
-.5238857,.3775982,2.882992,.370934,2.882992
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.5112727,.364731,3.437637,.3578881,3.437637
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0093688,.0092731,.1015707,.009273,.1015707
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0582021,.0549267,.546926,.054896,.546926
-.1340736,.1171437,1.656215,.1167887,1.656215
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.1646189,.1418189,1.546926,.1412949,1.546926
--.367465,-.775436,-3.453074,-.7077873,-3.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.6600007,.4404215,4.437637,.4286361,4.437637
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.2860859,.2238617,3.101571,.221633,3.101571
-.2710357,.216176,2.546926,.2143441,2.546926
-.0151382,.0148698,.2108601,.014869,.2108601
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0151382,.0148698,.2108601,.014869,.2108601
-.5176855,.3454629,7.21086,.3362196,7.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.0650888,.061425,.4376366,.0613907,.4376366
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.3625448,.2793542,2.437637,.2762155,2.437637
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.2138168,.1804787,1.437637,.1796173,1.437637
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.3828036,-.6256999,-1.671653,-.6012149,-1.671653
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.2150255,.1757395,2.656215,.1745529,2.656215
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0093688,.0092731,.1015707,.009273,.1015707
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
-.1587231,.1350213,2.21086,.1344345,2.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-1.163818,.5970087,16.21086,.5548727,16.21086
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-1.666365,.7445231,23.21086,.6696882,23.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.5112727,.364731,3.437637,.3578881,3.437637
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.5331848,.389747,2.328347,.3834404,2.328347
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.3625448,.2793542,2.437637,.2762155,2.437637
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
-.0151382,.0148698,.2108601,.014869,.2108601
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.9484404,.5235284,13.21086,.4939418,13.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.3729551,.2821995,2.992281,.2785753,2.992281
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.1646189,.1418189,1.546926,.1412949,1.546926
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.5176855,.3454629,7.21086,.3362196,7.21086
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.5112727,.364731,3.437637,.3578881,3.437637
-.7621819,.5085961,3.328347,.4949848,3.328347
-.3023081,.2300153,4.21086,.2271767,4.21086
-.0151382,.0148698,.2108601,.014869,.2108601
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
-.6612704,.4108095,9.21086,.3956947,9.21086
-.3741006,.2713932,5.21086,.2667892,5.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0869306,.0790553,1.21086,.0789366,1.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.1604538,.1416409,.882992,.1412745,.882992
-.4838693,.3403586,4.546926,.3334374,4.546926
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.7330629,.4409489,10.21086,.422518,10.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.445893,.3097042,6.21086,.3029525,6.21086
-.3023081,.2300153,4.21086,.2271767,4.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.123677,.1107268,.9922814,.1105013,.9922814
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-1.092025,.5733635,15.21086,.5355382,15.21086
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.589478,.3790623,8.21086,.3670201,8.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.8766479,.4971597,12.21086,.4714706,12.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
-.445893,.3097042,6.21086,.3029525,6.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.3741006,.2713932,5.21086,.2667892,5.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.000962,-.000963,-.0077187,-.000963,-.0077187
-1.881743,.8003727,26.21086,.7106016,26.21086
-.3023081,.2300153,4.21086,.2271767,4.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.7330629,.4409489,10.21086,.422518,10.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0151382,.0148698,.2108601,.014869,.2108601
-.589478,.3790623,8.21086,.3670201,8.21086
-1.881743,.8003727,26.21086,.7106016,26.21086
-1.450988,.6846744,20.21086,.6243032,20.21086
-.0650888,.061425,.4376366,.0613907,.4376366
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
-.7330629,.4409489,10.21086,.422518,10.21086
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.3729551,.2821995,2.992281,.2785753,2.992281
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.3023081,.2300153,4.21086,.2271767,4.21086
-.0582021,.0549267,.546926,.054896,.546926
-.0751906,.0709566,.3283472,.0709169,.3283472
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0650888,.061425,.4376366,.0613907,.4376366
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0093688,.0092731,.1015707,.009273,.1015707
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.1604538,.1416409,.882992,.1412745,.882992
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0093688,.0092731,.1015707,.009273,.1015707
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0869306,.0790553,1.21086,.0789366,1.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.5176855,.3454629,7.21086,.3362196,7.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.0093688,.0092731,.1015707,.009273,.1015707
-.4838693,.3403586,4.546926,.3334374,4.546926
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.123677,.1107268,.9922814,.1105013,.9922814
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.0151382,.0148698,.2108601,.014869,.2108601
-.0869306,.0790553,1.21086,.0789366,1.21086
-1.020233,.5488976,14.21086,.5152602,14.21086
-1.020233,.5488976,14.21086,.5152602,14.21086
-.3023081,.2300153,4.21086,.2271767,4.21086
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.1938469,.1621579,2.101571,.1613,2.101571
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
-.5238857,.3775982,2.882992,.370934,2.882992
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.2305156,.1848784,3.21086,.1833871,3.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0151382,.0148698,.2108601,.014869,.2108601
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0151382,.0148698,.2108601,.014869,.2108601
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.1340736,.1171437,1.656215,.1167887,1.656215
-.0751906,.0709566,.3283472,.0709169,.3283472
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0869306,.0790553,1.21086,.0789366,1.21086
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.0650888,.061425,.4376366,.0613907,.4376366
--.3828036,-.6256999,-1.671653,-.6012149,-1.671653
-.589478,.3790623,8.21086,.3670201,8.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.3741006,.2713932,5.21086,.2667892,5.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.0531218,.0501328,.6562154,.0501048,.6562154
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2860859,.2238617,3.101571,.221633,3.101571
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.3516372,-.8128667,-4.343784,-.7249908,-4.343784
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2710357,.216176,2.546926,.2143441,2.546926
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.3741006,.2713932,5.21086,.2667892,5.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
-.5388327,.3595736,6.656216,.3499527,6.656216
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2483161,.2029448,1.992281,.2015743,1.992281
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.3741006,.2713932,5.21086,.2667892,5.21086
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.3741006,.2713932,5.21086,.2667892,5.21086
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.0151382,.0148698,.2108601,.014869,.2108601
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.3774525,.2816094,3.546926,.2776222,3.546926
-.8048554,.4696782,11.21086,.4477146,11.21086
-.9484404,.5235284,13.21086,.4939418,13.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.1587231,.1350213,2.21086,.1344345,2.21086
-.3625448,.2793542,2.437637,.2762155,2.437637
-.0869306,.0790553,1.21086,.0789366,1.21086
-.445893,.3097042,6.21086,.3029525,6.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.4705639,.329342,5.101571,.3224552,5.101571
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.0681247,-.0718756,-.2262975,-.0718412,-.2262975
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.0869306,.0790553,1.21086,.0789366,1.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
-.7056017,.4708467,3.882992,.4582465,3.882992
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-1.881743,.8003727,26.21086,.7106016,26.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.4578809,.3191396,5.656216,.3123125,5.656216
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
-.0531218,.0501328,.6562154,.0501048,.6562154
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
-.0151382,.0148698,.2108601,.014869,.2108601
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
-.445893,.3097042,6.21086,.3029525,6.21086
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.589478,.3790623,8.21086,.3670201,8.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.562803,.3755679,6.101571,.3655188,6.101571
-.1587231,.1350213,2.21086,.1344345,2.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.3023081,.2300153,4.21086,.2271767,4.21086
-.0151382,.0148698,.2108601,.014869,.2108601
-.3741006,.2713932,5.21086,.2667892,5.21086
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.1340736,.1171437,1.656215,.1167887,1.656215
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
-2.09712,.8528964,29.21086,.7478458,29.21086
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
-.1340736,.1171437,1.656215,.1167887,1.656215
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.367465,-.775436,-3.453074,-.7077873,-3.453074
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.1587231,.1350213,2.21086,.1344345,2.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.3846942,-.6791795,-2.117008,-.6439368,-2.117008
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.123677,.1107268,.9922814,.1105013,.9922814
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0531218,.0501328,.6562154,.0501048,.6562154
-.2305156,.1848784,3.21086,.1833871,3.21086
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
-.0151382,.0148698,.2108601,.014869,.2108601
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.0151382,.0148698,.2108601,.014869,.2108601
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.3729551,.2821995,2.992281,.2785753,2.992281
-.3741006,.2713932,5.21086,.2667892,5.21086
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0582021,.0549267,.546926,.054896,.546926
-.3769291,.2755397,4.656216,.2710823,4.656216
-.1587231,.1350213,2.21086,.1344345,2.21086
-.5176855,.3454629,7.21086,.3362196,7.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
-.0531218,.0501328,.6562154,.0501048,.6562154
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.7007363,.4329274,8.656216,.4166366,8.656216
-.3041877,.2486003,1.328347,.246921,1.328347
-.2483161,.2029448,1.992281,.2015743,1.992281
-.0151382,.0148698,.2108601,.014869,.2108601
-.2138168,.1804787,1.437637,.1796173,1.437637
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0531218,.0501328,.6562154,.0501048,.6562154
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
-.3023081,.2300153,4.21086,.2271767,4.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.0093688,.0092731,.1015707,.009273,.1015707
-.123677,.1107268,.9922814,.1105013,.9922814
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.589478,.3790623,8.21086,.3670201,8.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.1016078,.0918079,1.101571,.0916507,1.101571
-.0582021,.0549267,.546926,.054896,.546926
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.5176855,.3454629,7.21086,.3362196,7.21086
-1.80995,.7821549,25.21086,.6974062,25.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.2305156,.1848784,3.21086,.1833871,3.21086
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0151382,.0148698,.2108601,.014869,.2108601
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
-.1340736,.1171437,1.656215,.1167887,1.656215
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.2305156,.1848784,3.21086,.1833871,3.21086
--.3846942,-.6791795,-2.117008,-.6439368,-2.117008
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.3041877,.2486003,1.328347,.246921,1.328347
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0751906,.0709566,.3283472,.0709169,.3283472
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.2710357,.216176,2.546926,.2143441,2.546926
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.3438242,-.8272628,-4.78914,-.7298161,-4.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
-.0151382,.0148698,.2108601,.014869,.2108601
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.1646189,.1418189,1.546926,.1412949,1.546926
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.2150255,.1757395,2.656215,.1745529,2.656215
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.3023081,.2300153,4.21086,.2271767,4.21086
-.7621819,.5085961,3.328347,.4949848,3.328347
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.1587231,.1350213,2.21086,.1344345,2.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.7621819,.5085961,3.328347,.4949848,3.328347
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.0151382,.0148698,.2108601,.014869,.2108601
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-1.163818,.5970087,16.21086,.5548727,16.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.123677,.1107268,.9922814,.1105013,.9922814
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.0582021,.0549267,.546926,.054896,.546926
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
-.3625448,.2793542,2.437637,.2762155,2.437637
--.3810951,-.7192875,-2.562363,-.6731001,-2.562363
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.3741006,.2713932,5.21086,.2667892,5.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.2483161,.2029448,1.992281,.2015743,1.992281
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.0151382,.0148698,.2108601,.014869,.2108601
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.1587231,.1350213,2.21086,.1344345,2.21086
--.3828036,-.6256999,-1.671653,-.6012149,-1.671653
-.0650888,.061425,.4376366,.0613907,.4376366
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.367465,-.775436,-3.453074,-.7077873,-3.453074
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.3741006,.2713932,5.21086,.2667892,5.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
-.8048554,.4696782,11.21086,.4477146,11.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.8766479,.4971597,12.21086,.4714706,12.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.0151382,.0148698,.2108601,.014869,.2108601
-.0151382,.0148698,.2108601,.014869,.2108601
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
-.3023081,.2300153,4.21086,.2271767,4.21086
-.0093688,.0092731,.1015707,.009273,.1015707
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.2305156,.1848784,3.21086,.1833871,3.21086
-.7621819,.5085961,3.328347,.4949848,3.328347
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.7330629,.4409489,10.21086,.422518,10.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.3741006,.2713932,5.21086,.2667892,5.21086
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-1.163818,.5970087,16.21086,.5548727,16.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.367465,-.775436,-3.453074,-.7077873,-3.453074
-.1646189,.1418189,1.546926,.1412949,1.546926
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-1.092025,.5733635,15.21086,.5355382,15.21086
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.1604538,.1416409,.882992,.1412745,.882992
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.3774525,.2816094,3.546926,.2776222,3.546926
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.1587231,.1350213,2.21086,.1344345,2.21086
-.1646189,.1418189,1.546926,.1412949,1.546926
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
-.5331848,.389747,2.328347,.3834404,2.328347
-1.163818,.5970087,16.21086,.5548727,16.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.2305156,.1848784,3.21086,.1833871,3.21086
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
-.1340736,.1171437,1.656215,.1167887,1.656215
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
-.0151382,.0148698,.2108601,.014869,.2108601
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.0869306,.0790553,1.21086,.0789366,1.21086
-.1340736,.1171437,1.656215,.1167887,1.656215
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.1587231,.1350213,2.21086,.1344345,2.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.232916,.2006459,.7737026,.199904,.7737026
-.3741006,.2713932,5.21086,.2667892,5.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.1587231,.1350213,2.21086,.1344345,2.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
-.0751906,.0709566,.3283472,.0709169,.3283472
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1016078,.0918079,1.101571,.0916507,1.101571
-.2710357,.216176,2.546926,.2143441,2.546926
-.3023081,.2300153,4.21086,.2271767,4.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.1587231,.1350213,2.21086,.1344345,2.21086
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.0093688,.0092731,.1015707,.009273,.1015707
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
-.0151382,.0148698,.2108601,.014869,.2108601
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.2305156,.1848784,3.21086,.1833871,3.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.589478,.3790623,8.21086,.3670201,8.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
-.589478,.3790623,8.21086,.3670201,8.21086
-.0151382,.0148698,.2108601,.014869,.2108601
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0650888,.061425,.4376366,.0613907,.4376366
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.123677,.1107268,.9922814,.1105013,.9922814
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.2305156,.1848784,3.21086,.1833871,3.21086
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.123677,.1107268,.9922814,.1105013,.9922814
-1.23561,.6199043,17.21086,.5733476,17.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3023081,.2300153,4.21086,.2271767,4.21086
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.0582021,.0549267,.546926,.054896,.546926
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.4838693,.3403586,4.546926,.3334374,4.546926
-.590286,.3939059,5.546926,.3833659,5.546926
--.2673483,-.4183992,-2.898429,-.4047313,-2.898429
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.3595873,-.7958529,-3.898429,-.7179135,-3.898429
-.2710357,.216176,2.546926,.2143441,2.546926
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.3769291,.2755397,4.656216,.2710823,4.656216
-.1587231,.1350213,2.21086,.1344345,2.21086
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-1.995965,.8423971,24.65622,.74633,24.65622
-.0582021,.0549267,.546926,.054896,.546926
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2323671,-.3101193,-1.562363,-.3058547,-1.562363
-.6612704,.4108095,9.21086,.3956947,9.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
-1.25075,.6982957,6.882992,.6602709,6.882992
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
-.445893,.3097042,6.21086,.3029525,6.21086
-.1587231,.1350213,2.21086,.1344345,2.21086
-.0531218,.0501328,.6562154,.0501048,.6562154
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.0582021,.0549267,.546926,.054896,.546926
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.0650888,.061425,.4376366,.0613907,.4376366
-.2305156,.1848784,3.21086,.1833871,3.21086
-.7330629,.4409489,10.21086,.422518,10.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3023081,.2300153,4.21086,.2271767,4.21086
-.0650888,.061425,.4376366,.0613907,.4376366
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.5176855,.3454629,7.21086,.3362196,7.21086
-.0151382,.0148698,.2108601,.014869,.2108601
-.1646189,.1418189,1.546926,.1412949,1.546926
-.0869306,.0790553,1.21086,.0789366,1.21086
-.3783249,.2791079,4.101571,.2748505,4.101571
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.000962,-.000963,-.0077187,-.000963,-.0077187
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0650888,.061425,.4376366,.0613907,.4376366
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.367465,-.775436,-3.453074,-.7077873,-3.453074
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2959773,.2280665,3.656215,.2255045,3.656215
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
-.5331848,.389747,2.328347,.3834404,2.328347
-.0869306,.0790553,1.21086,.0789366,1.21086
-.2305156,.1848784,3.21086,.1833871,3.21086
-.3741006,.2713932,5.21086,.2667892,5.21086
-.0869306,.0790553,1.21086,.0789366,1.21086
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.0151382,.0148698,.2108601,.014869,.2108601
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0869306,.0790553,1.21086,.0789366,1.21086
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0212622,-.0216729,-.1170081,-.0216716,-.1170081
-.2483161,.2029448,1.992281,.2015743,1.992281
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3023081,.2300153,4.21086,.2271767,4.21086
--.3516372,-.8128667,-4.343784,-.7249908,-4.343784
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-2.240705,.8863206,31.21086,.7709416,31.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.3741006,.2713932,5.21086,.2667892,5.21086
-.7330629,.4409489,10.21086,.422518,10.21086
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
--.3691655,-.5508237,-1.226297,-.5363927,-1.226297
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.2706854,-.4424603,-3.343785,-.4251429,-3.343785
--.0828702,-.0917059,-.8984293,-.0915492,-.8984293
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
-.0151382,.0148698,.2108601,.014869,.2108601
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.991179,.6123406,4.328347,.5892943,4.328347
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.2138168,.1804787,1.437637,.1796173,1.437637
-.0751906,.0709566,.3283472,.0709169,.3283472
--.1751093,-.2237572,-1.898429,-.2215315,-1.898429
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
-.5176855,.3454629,7.21086,.3362196,7.21086
-.445893,.3097042,6.21086,.3029525,6.21086
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
-.445893,.3097042,6.21086,.3029525,6.21086
-.1938469,.1621579,2.101571,.1613,2.101571
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
-.1938469,.1621579,2.101571,.1613,2.101571
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0681247,-.0718756,-.2262975,-.0718412,-.2262975
--.0836392,-.0911419,-.5623633,-.0910299,-.5623633
-.1646189,.1418189,1.546926,.1412949,1.546926
--.02783,-.0287708,-.3437845,-.0287655,-.3437845
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
-.0582021,.0549267,.546926,.054896,.546926
--.1546315,-.1883941,-1.453074,-.1871749,-1.453074
--.2029782,-.2533981,-1.117008,-.2513312,-1.117008
--.367465,-.775436,-3.453074,-.7077873,-3.453074
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
--.3748792,-.7504815,-3.007719,-.6934423,-3.007719
--.2610483,-.3895254,-2.453074,-.3793175,-2.453074
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
-.0151382,.0148698,.2108601,.014869,.2108601
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0482147,-.050872,-.4530739,-.0508476,-.4530739
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.3023081,.2300153,4.21086,.2271767,4.21086
--.1256011,-.1451715,-1.007719,-.1446654,-1.007719
--.3516372,-.8128667,-4.343784,-.7249908,-4.343784
--.2502402,-.3542343,-2.007719,-.3472027,-2.007719
-.1646189,.1418189,1.546926,.1412949,1.546926
-.1016078,.0918079,1.101571,.0916507,1.101571
--.000962,-.000963,-.0077187,-.000963,-.0077187
-.2305156,.1848784,3.21086,.1833871,3.21086
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.0151382,.0148698,.2108601,.014869,.2108601
--.1538065,-.1777664,-.6716527,-.177147,-.6716527
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.2720317,-.4628195,-3.78914,-.4417326,-3.78914
-.445893,.3097042,6.21086,.3029525,6.21086
--.2002393,-.2781606,-2.78914,-.2732145,-2.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.1284468,-.1545255,-1.78914,-.1536491,-1.78914
--.0566543,-.0609614,-.7891399,-.0609069,-.7891399
-.4975942,.3521915,3.992281,.3452767,3.992281
-.1604538,.1416409,.882992,.1412745,.882992
--.1087818,-.1257334,-1.343785,-.125295,-1.343785
-.1938469,.1621579,2.101571,.1613,2.101571
--.1897336,-.2532259,-2.343785,-.2497431,-2.343785
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/inv_gaussian.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/inv_gaussian.csv
deleted file mode 100644
index 7e18005..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/inv_gaussian.csv
+++ /dev/null
@@ -1,25001 +0,0 @@
-xig,x1,x2
-1.2733455,.49838599,1.3452648
-.3134754,.4823677,.74737328
-.79428208,1.136941,.14203239
-1.1283428,.1553426,.38986253
-.85636687,.48609028,1.4195813
-.8847369,.01187518,.84863965
-.93978618,.59263364,.83107964
-1.4064734,.20782785,2.4136595
-1.3880192,.45899967,.88479622
-1.0078955,.34310947,.46912135
-.66262165,.55882829,1.3560229
-.5218216,.83938895,.87164671
-1.2298233,1.3686679,1.833663
-1.4759632,1.0145688,1.3128653
-.78120167,.95606991,1.5949664
-.31531516,1.2625565,.21471553
-.51332919,.840604,.16322012
-1.1449052,1.3422888,1.7304837
-.90796108,.14451251,.02378754
-1.1701425,.69556794,.04121212
-.89112379,.70804283,.96610346
-.68888678,.28537203,.15814583
-.81733916,1.210205,2.239869
-.81293272,1.4899738,1.2692067
-2.2681783,2.0214993,1.3764563
-.37072985,1.5086601,.10230105
-.71890326,.88390672,1.649674
-.6535868,.2333771,.14298123
-.46327858,1.3480884,1.02747
-.94348579,.66535475,.29169035
-.72949058,.95472274,.31374849
-1.0049225,.60514897,.13809601
-1.2394609,1.1118678,.5508297
-.5840114,1.2164422,.75518542
-.68692879,1.5018362,.15566363
-.65607601,.7520919,.58255358
-.68230522,.66422663,2.3351979
-.38072431,1.1493521,2.0816592
-1.0911888,.93677118,.10547662
-.90381013,1.9432397,1.8229329
-.23850096,1.1184735,1.2997025
-.40942881,.94033327,.37675141
-.41106111,.17151647,.17630774
-.22629062,.98208984,.26666849
-1.7591356,1.1231629,.23875602
-1.3269091,.24311131,1.4521669
-.51562837,.73523005,.26164772
-1.0113478,1.1558606,1.4190539
-1.3040747,.09702838,.69747585
-.40957397,.52268401,.68505095
-.92400471,1.6172428,.06064388
-.48751691,1.1276329,.31490952
-.94364294,1.5692507,.7941354
-1.2680056,1.1867089,.59132319
-.67569624,1.8616588,1.5608065
-.69129427,.84536517,.05981247
-.55434136,.4454891,.8110717
-.94573446,.89643545,1.152246
-.65631943,1.2017119,.64112795
-.3358859,1.6225885,.70712986
-.83127453,.21114306,.75474855
-1.3642193,.52669191,.26292523
-1.5255932,.61268446,1.2048996
-.74973744,2.1856576,.14462351
-.58739059,1.1504032,.74578956
-1.290478,.46526436,1.1862457
-1.8752015,.36522982,1.5703948
-.51072855,1.6269648,.90917244
-.64794364,.83812189,1.8610901
-1.112681,.55187984,1.6856715
-.8890492,1.0396307,.09029044
-.9403497,1.3734125,1.2609945
-.72895431,.01236389,.09329716
-.32078286,.16266402,.93063771
-.40832929,1.0454454,1.5916128
-.50630291,1.8307221,1.3498077
-1.5219328,.17909104,.10683985
-.51898703,.40564437,1.069521
-.78352958,.63637831,1.5537738
-.48293844,.85003058,.00387173
-.9776358,.54665131,2.212449
-.82076994,.34693225,.02162786
-.83698422,.41178172,.19939613
-.8040226,.30773443,1.4142718
-.77293882,.19148093,1.328417
-.60037195,.10739162,1.1047747
-.85669273,.91602619,.61099672
-.3185928,.34594921,1.0886341
-.42501146,.87614455,.74634721
-1.1085747,.3013476,.84815286
-1.0661915,.91270297,.42565466
-.71509525,.38025247,1.7005304
-.84149479,.24775679,.73012968
-.78074882,.38711056,.7136833
-1.0912359,2.2220268,.56337882
-.9911217,.30899654,2.7307592
-.76750841,1.48779,.42095281
-.56857878,2.1489988,.46647397
-.43787452,1.022287,.00675213
-1.0252245,.91895868,.45178267
-.87760819,.85513764,.8102264
-1.4504405,1.9178199,1.5127834
-1.2378898,.3858159,.73454077
-.67875408,.6837785,1.2333427
-.50425401,.5256823,1.0394662
-.90742802,2.0896044,.34075789
-.49838274,2.1549011,2.0304314
-1.5117923,1.7729988,.47294019
-2.2053466,.19530876,1.2303293
-.78809682,1.4490284,.38466545
-.47893276,.86706042,.40545079
-1.098234,.52809011,1.2163333
-.81370465,1.0217578,.13832927
-1.3637428,.17020273,.41227016
-1.0489533,.77792365,1.3082673
-1.023569,.42769367,.75553382
-1.0846368,.83443862,.1750094
-1.2955672,.35876622,.8263157
-.65506481,1.9960225,1.0711334
-.60843612,1.2417011,.32545078
-.50168288,.51061263,.54575751
-1.5378082,.34396953,1.1957299
-1.2329599,.23682276,.22389742
-.37186387,.45079078,.77777492
-.5864635,.48540367,.40449372
-.79057155,.71465153,.80933939
-.47238469,.64078717,.35057822
-1.2090479,.93746557,2.9905007
-.74556892,.01168868,.0805714
-3.3974004,.3275735,.99069555
-2.1223967,.06601037,2.8290068
-1.2722367,1.0925172,.31145217
-.98417697,.22576485,2.3199768
-.82811506,.95206863,.55004348
-.66115085,.47725103,.6993171
-1.117051,.41080917,.09503466
-.49517148,1.8322383,.63519233
-.5551943,.71939428,.74967004
-.67943876,1.5080662,.99859764
-.40266449,.18367801,.20270257
-.66652435,1.5805658,1.3454515
-1.1429506,.74654928,1.684442
-2.1476736,2.0242383,.6732362
-.57500842,1.2130184,1.1106066
-.88024923,.60620609,1.3442089
-1.7309653,1.0865462,.92403325
-1.2580228,.12017206,1.7578231
-.88915041,.6067209,.37480971
-1.0645868,.80648507,.1895511
-.85150611,.33355647,1.157238
-.38106193,.40666125,.36654777
-.77006039,.68019062,.21777937
-.69404689,.63630279,.92359797
-.67941152,.90357391,.37831068
-.81092219,.51245754,.09523559
-.40891155,1.762466,.86043135
-3.2377764,.72910483,1.4684531
-.63366167,1.1129685,.26376055
-2.5005625,.12978538,.76934474
-.90107869,.56289873,1.6267069
-.73401275,.67435395,.25526755
-.77523095,.03247888,1.3753836
-.65354797,.92970928,.23246942
-2.4242904,.27558197,.65833243
-.68082983,2.5508017,1.1341968
-1.0364206,.52430484,.63788752
-.50801089,1.602997,.51542679
-1.2459387,.10210391,1.5237113
-.50455786,.77646231,.08501461
-.60409533,.47097801,.60132047
-.20268789,.37065216,.50270396
-.63892743,.98703286,1.1325025
-2.2428822,.43695212,.41488483
-.81131911,1.8581822,2.2442053
-.6277999,1.2067448,.24704511
-.58340487,2.3580051,.83910508
-.41471028,1.1408222,.73546482
-.36024455,1.900738,.6556919
-.38116075,1.3512178,.91988354
-1.1486561,.94073722,1.7006733
-.62974478,.49816086,2.1205951
-.73914742,1.3484246,.14956174
-.54333032,.02949978,.2793122
-1.4701229,.88218228,.95907734
-.4682588,.04288269,.90702693
-.27143381,.60989336,.45179418
-.93171221,.42808836,1.8160496
-.53461487,.53087572,1.0020171
-.76695603,.46543408,1.2112911
-2.2571937,.04768274,.56455101
-.79647026,.83648473,.21906048
-.76524701,.41708625,.44782961
-2.3010648,.42390977,1.8535923
-1.7149068,2.1113443,1.9036779
-.4439638,.87475556,.56810426
-.95598132,.91152516,1.3312334
-.73429735,.63203466,.8399294
-.37766619,.75635484,1.1856976
-.67579961,1.2432138,1.9053654
-.36532081,.81157698,1.0367854
-1.3253884,.49869194,1.6861679
-1.0419905,.95682712,.57910292
-1.1814503,.65107115,.43908463
-1.4681059,.40043944,1.373784
-1.1931673,.28297666,2.1367039
-.92644857,.2404203,.03778257
-.83407363,.34130841,.4948499
-1.6657213,2.1268988,1.6492326
-.92976577,.80418842,1.8251003
-.34730951,1.9395031,.61161749
-.99773849,.7626706,.30041212
-.9075132,1.2472645,.47100617
-.66355503,.30648361,.26280981
-.77734506,.68187672,1.4506248
-.48723334,1.2555631,.55113438
-1.515018,.10336108,.50282595
-1.6963653,.61420252,.47802072
-2.5201639,1.2263507,1.5893465
-1.026514,.12381971,1.0232694
-1.492301,2.0431551,1.9232595
-.46922007,.01344845,.62863329
-.49635699,.30451574,1.0991715
-1.6620816,.61701982,.68287766
-.84873396,1.4519641,2.764144
-.92469047,1.1474434,1.8240888
-1.2478948,.49752126,.24692614
-.59958841,.72400849,.36881958
-.56200084,.38974203,.46883827
-.59839263,.40762039,.73495668
-1.11258,1.6711768,.04518515
-2.4023568,.43529133,.67423956
-.81735994,.89897082,.69181876
-2.0582631,.36872302,.40684392
-.95340113,.40365592,.47606331
-1.6472625,.14250558,.00355546
-.3663641,.57297509,.68182503
-.69346942,.07288006,1.9692397
-.57128298,2.3558262,.57936526
-.6436618,.94844689,.25915568
-1.6129735,1.4839411,2.1268035
-1.5451327,.18582035,.63248404
-1.2274544,1.0382178,.50309631
-.58518994,1.221582,.31692406
-.49133135,.07595902,.17858512
-1.0772724,.1056644,.33647941
-.31892304,.16727797,.34432341
-.64867923,.17022392,.88691483
-.99519376,.02129352,.61442949
-.80985479,.90858973,.82038768
-.95402732,.85881389,1.5184873
-.72420197,.53371482,2.0951812
-.88008243,.5778829,.49215526
-1.7664132,.07223155,1.320333
-.57713824,2.0894906,.07996295
-2.2267908,.08882198,.2911764
-1.1946725,1.7333555,1.0025163
-.78216673,1.7583705,.00628615
-.67144671,.35687834,.2396875
-.3571843,1.0911754,2.1665649
-1.6931061,.94158459,.81164439
-1.0379784,.28909678,1.0701041
-.86564443,.86724979,2.0942054
-.98394675,1.922512,1.5186624
-.72674586,.27842445,.23102413
-.67383255,.27026213,.65248607
-.94078575,.71259525,1.7918777
-.40736572,.809092,.48953773
-.48873051,1.7567225,.09213346
-1.7458551,.76549427,.89414036
-2.1705996,1.1055048,.42089941
-.48818462,1.1056057,.48089173
-.6671436,1.5346256,2.3279353
-.70918748,.86019963,1.9670217
-1.4771243,.02937029,1.5236795
-1.3129872,2.0623182,.46854043
-.81683244,1.2532965,.60091414
-.61816892,1.445846,1.9028354
-.84929769,1.6110097,.93657788
-.87351077,.25141934,2.3654612
-.80028837,.81342128,.08809462
-2.2811413,.66027244,.21193344
-.42047921,1.6254547,.31242104
-.61949322,.15331835,.14846346
-.40355455,2.711205,.11757394
-.94964264,.8801717,1.2209954
-.88030376,.4827339,.7739176
-1.3600899,.31505601,.7775485
-.47852372,1.2472903,.65268481
-.3127413,.83755425,.50229624
-.58438685,.11687021,1.4634394
-1.8195193,.14444885,.8065795
-.87888334,.06403119,.5964882
-.33636849,.62417278,.725306
-.61588819,1.4669083,.21686289
-1.4338227,.72659158,3.2884557
-.98719028,.01856996,1.2072976
-2.5593249,.10905043,.62591343
-.58006444,.34804353,1.0104039
-1.286234,.92171361,.11886189
-.20446887,.28708442,.16660735
-.94523174,.27361471,.67971828
-1.7060177,.33080656,.71194238
-.74842937,.0624933,.66594527
-3.8215756,.25543,.40870937
-1.1197276,1.4892363,1.3096209
-.28855498,.9855535,.06714827
-.95347195,1.4708355,.12685498
-.85404684,.81956213,.74632213
-1.0577068,.44467318,.14947717
-.72530715,.49368775,.65394765
-1.1797326,1.4291593,3.056179
-1.4966739,.36765457,1.0905295
-.46808544,.58873955,.98669655
-.72772399,.9898856,.26352652
-.81598488,.2429417,1.0809268
-2.8061308,.46522037,1.0659253
-.61115906,.25360895,.44015253
-1.4420216,.06892278,.73756845
-.39170901,.39946075,2.3112368
-.71967556,.21319203,.26987672
-.807163,3.5210011,.56989178
-.67968921,.92371574,.22093463
-.4134919,.52210185,1.5247982
-.94446557,.69186481,.84893509
-.83169596,.76049988,1.6523253
-.61943796,.36240211,.22165284
-.86516606,1.3865894,.4365748
-1.4589355,.64689098,.2350444
-1.7949697,.48172006,.31246078
-1.2975314,.33511407,.67929138
-.48021286,1.1706906,1.0219987
-.74454015,2.4933459,1.7959964
-1.6636619,1.4980798,.28407873
-1.4535214,.58123048,1.4281038
-1.0684319,1.7815979,1.4174201
-2.0959566,.23303941,1.271439
-.78124338,.34278007,1.433311
-1.8286334,.73725046,.4955999
-.88517259,.48943295,1.1558292
-.38749485,1.1915689,.7477608
-.71614055,.28735566,.30585841
-.92096852,.75474191,1.4362996
-.31256334,.64656178,.0102072
-1.8403939,.91365767,1.0838475
-.62122235,.23935802,.05389927
-.81381238,.9885595,.96210051
-.85089987,.42253835,1.5725227
-.79579713,1.2928926,1.7889708
-.81535724,.23269742,1.1168215
-.56133483,.94003074,1.7423881
-.93011804,.67510913,.00008716
-.52806169,1.4879882,1.0352966
-.81968261,.46240246,.49248927
-.35048111,.58136315,2.0234394
-.38035779,.11535889,.54725782
-.60765303,1.0941003,.39383742
-.51951459,.29879262,.43305805
-.9092267,1.7507593,.52844604
-.981556,.17133365,2.2189383
-1.0293381,1.1488649,.87070453
-.67207375,1.2908342,.54949896
-.90599021,.33684785,2.207039
-1.3614911,1.4789219,1.5059683
-1.00743,.259234,.35745676
-1.7117379,.97282983,.4738696
-.66269964,.70233511,1.1957778
-.8541059,1.0755736,.52756033
-.78721445,.30293096,.88120266
-.57463262,2.0011388,.14671762
-1.9724412,.02690049,.13946482
-.59582238,1.4770702,.05325879
-1.9114954,.7994777,.7647385
-1.7843093,1.2593305,.32112892
-.73119218,1.7244772,.23069827
-.48786097,.21433159,.75243797
-.58367021,.93035837,.76027678
-1.1500165,1.0783974,.23358727
-.32287042,1.4305475,.24883131
-.53744221,.68972102,.61162486
-.8750397,.67800435,.30698928
-.69369987,1.4996101,1.4271
-.94056344,1.0377179,.00351876
-.45380391,2.5478128,.01135281
-.62844246,1.4713792,1.3466362
-.83351008,1.0907872,.23429865
-.78302589,.39264366,.2210119
-.85348896,.59580206,1.0583539
-.78244709,1.0080236,.10397535
-.63246731,.24513244,.70234614
-.659558,1.2270269,2.40427
-.91079308,.83945848,.97371267
-1.1327939,.84962519,.6176786
-.64172551,.5258619,.64843599
-.54340577,1.1447008,1.0042627
-.36450616,1.7222703,1.4193507
-.87217644,1.4400728,.10380858
-.50524943,.32885708,.45024582
-.75063775,1.5164292,.46202707
-2.3121677,.93511834,.62427165
-2.3768237,.13991393,.28965167
-.58082724,1.0827053,1.3919461
-.37114393,2.1125741,.1357146
-1.4057744,.16689892,.73389538
-.75295498,2.1433496,.02754916
-.45053928,.79050497,2.1744262
-.70386031,1.363101,1.9467192
-.67630711,.76194672,.17115134
-1.1636469,2.2125711,.0084599
-.70384398,.30081372,.73256804
-2.2883872,.41612735,.11041533
-.93865529,.76709242,1.9181191
-.40610353,1.6862998,.88005716
-.65415502,.22036539,.21654201
-.756492,.6048348,.07803075
-.60011259,.03846438,.12875122
-.41572795,.22241154,.03358283
-.98958252,1.1448352,1.0928862
-.7651105,1.7764356,.25021823
-.66765736,1.0267222,.59065743
-1.0041146,1.2747329,.73818064
-.38680599,.77464991,.73639154
-1.0896494,1.5240689,.57840254
-.73731306,.90419475,.12261914
-1.1887376,.0714482,.52584573
-.70745454,.28851122,.68485162
-.4201204,.40798057,.48103706
-1.2315316,1.0844329,.47321866
-1.5225684,.36660961,.30116147
-.97832558,.8691852,.79521098
-.40741968,.15557375,.19953268
-1.1513433,.06094135,.95096793
-.81417518,.35008046,.89035969
-1.2498639,.59177477,1.1355566
-.73308835,1.636455,.16140684
-.94240056,.38251673,.1140196
-1.1761328,.20617771,.03515998
-.51427246,.32068139,.80815388
-.62213709,.76582686,1.5263639
-.62210754,.55182736,.47485116
-3.5065421,.12903253,1.5661715
-.53918598,1.2919001,.25848207
-.88215308,1.3503495,.2658635
-.58228721,1.7957186,1.4172833
-.59564448,1.9522505,1.2604793
-.35305271,.65169648,.37758011
-.75598413,2.3895694,.98288901
-.60682638,.62304625,.14369539
-.85308132,1.3789609,.15392124
-1.933148,.1593916,.76500126
-.72164955,.53138885,.2582287
-.62404316,.13207094,1.4092182
-1.2232235,2.2565343,1.3114307
-.8987193,.67116754,.41803234
-.77446577,1.6321006,1.3965337
-.62662722,.46691656,.58134331
-1.1776762,.19177405,1.1755278
-.69261335,1.5657501,.4815312
-.36097982,.68184233,.950105
-.55258821,.80743951,1.1049515
-.46980747,1.2210599,1.9251402
-.7058856,1.3895318,.84137404
-1.6889362,.05699417,.81492461
-.51352811,.05731071,.71356363
-.79769204,.57638155,.68464422
-.86427023,.42575777,1.2382449
-2.1812116,.8281849,.74185826
-1.5635041,1.8057533,.11533892
-.89053295,.26881417,.52218081
-.66663535,2.0098354,.11435402
-.4631276,.91175792,.3982789
-1.876002,1.7696546,.50441783
-.82561446,.5322763,.98684075
-1.6192868,.09769015,.16343064
-2.0152538,.49659924,.77457012
-.46120036,.65553982,.39525261
-.78589731,1.0226212,.87911994
-1.1377875,1.1171134,.01961007
-.7513113,.03388577,.6693523
-1.2508238,.83283096,1.8321666
-1.2003705,.94651689,1.0409766
-1.0673708,.25368694,.50616722
-.88523742,.74053381,.66103513
-.63614262,.5827313,.55179666
-.73200465,.04704682,1.1215604
-.5038625,.49585817,1.070101
-.91259624,.08551431,.36562328
-.59073582,1.9749442,.47721318
-1.0615595,.40636849,.05347208
-.59730378,1.2137711,.36901615
-.4962589,.31033379,.13268157
-.71507628,.84963172,.49208211
-.6623508,.45204357,.36265048
-.44449323,.30450673,.96149809
-.65784922,.99165056,3.3719531
-.70236056,1.5298326,2.7670163
-.4347547,1.5779289,.94703626
-1.7865516,.14669029,.87563856
-1.6572861,1.831772,1.2488707
-1.2108016,.72961368,1.0460124
-.69649439,.77982054,.64422527
-.96887874,.05405409,1.3309824
-.62486199,1.3260521,1.5810773
-.64734828,.65541398,.26791975
-1.4802595,.75827999,.73197561
-.76229075,.59336032,.73613708
-1.0684467,.53007204,.47142477
-.87193479,.89396176,.43503831
-.55043637,.02112151,.80873304
-1.2829568,.50665624,.60935691
-.75673633,.12441239,.19223891
-1.7838608,.19270211,1.5523465
-.98660365,1.1397172,.08684117
-1.4297845,.05393945,.10264728
-.63163679,1.0504173,1.2141305
-.7147154,1.1027137,.02762738
-.56465735,1.7070451,.7369551
-1.813588,1.6870213,.74164691
-.99893416,.27078267,1.2582955
-.81309993,.83060033,.34256033
-.76744262,1.0449499,1.7625082
-.37918807,.31469272,.13378892
-1.6850313,.01075843,.90030447
-1.2527077,.33384669,1.8534797
-1.0746528,1.3622358,1.0558532
-.93524277,.79879906,1.6267356
-1.4412221,.87503471,.12449223
-.94527472,.53032091,.43810196
-.39459048,1.2163804,1.8086422
-1.6662302,.25452019,1.6914065
-.66759494,1.7812946,1.289224
-.56845649,.70963541,.84680111
-1.8413354,.10164105,.63312278
-.49835378,.69611752,1.6417994
-.54588411,.17569846,.22872195
-.42140097,.6972514,.49448975
-.98588131,.24148843,.02303894
-1.3516461,.76217921,.70145607
-.64023727,.04542669,1.1876669
-.60618553,1.0517354,.27685582
-1.2319387,.25255355,.24603258
-1.1430764,.19627654,.69740088
-.83333931,.42022672,.54147457
-.41998939,.6343063,.00536485
-1.6850447,1.9362827,1.0939152
-1.7531673,.95904517,.93050675
-.77697514,.58032869,.45989609
-.91057853,.94515,1.6752265
-.7839553,.38150682,.18007846
-.45456682,.58148968,.1519441
-.52591595,1.1304364,.0677229
-.82690818,1.1624624,.17705103
-.31260563,1.7786333,.25591267
-1.8060124,.73533395,.16592615
-1.4492754,.90257235,2.0290496
-.59555058,.71857397,.3911385
-.84067341,.34390329,.32298294
-.90004996,.55844099,1.0362523
-.42782238,.25225374,1.2926515
-1.0262948,1.2137149,2.3497612
-.31998415,1.5146506,.95245827
-2.0147906,.02728995,1.1271572
-.51243489,.76446887,.12306844
-1.0422732,.68231873,.11501199
-.64464716,.92463248,1.8423691
-1.9489838,2.0222925,1.2980066
-1.2568881,.89734657,.39651604
-.79715384,.88614687,1.0993236
-1.4501044,.02340433,.81006214
-.76429746,.11536021,.84542617
-.51498482,.20234007,.56599517
-1.5966311,.41476282,2.1443423
-.73154761,2.1900335,.51529441
-2.3702447,.19447524,1.9601022
-.78573065,.28794456,1.2669848
-.83415268,.52186234,.11237519
-.3112568,.780158,.74890109
-.56186555,.16831349,.55705915
-1.8203171,.69083983,.15856986
-.48457308,1.8496186,1.6367067
-.87048535,1.0112741,1.5975377
-.99193644,.19930479,.53816134
-2.1404305,.96037875,1.0509385
-1.5907688,1.1035004,.48122318
-.69836905,.07796764,.85327519
-.54191871,2.3275275,.15251496
-.67940433,.78487766,.70554839
-.43255559,.39195466,.39216025
-.94182882,1.1555705,3.1877405
-1.04667,.00836496,.60078457
-1.6899374,.20665306,1.8122456
-1.1728284,1.3011446,.01795014
-.63125566,.02201352,.30122399
-.68465388,.42923555,.42315902
-.55082697,.38145557,.69697668
-.80707586,.8316438,1.6138737
-.44639748,1.7208617,.00549008
-.6382093,.94040296,1.5191418
-.61272431,.36142137,.43206267
-.74932441,.08114127,.36660396
-1.0702993,.9279613,1.2387856
-.74692386,.13542931,1.0852083
-1.1156938,.37939691,1.9590539
-.82834486,2.2474708,2.7310757
-.73162865,1.1129772,.16477404
-1.2829046,1.2381496,.56175778
-.52305037,.6107692,.03530093
-1.0474238,.06181541,1.2272852
-.78987886,.52573184,1.3305521
-1.0498296,1.4791295,1.590402
-.441715,.13970897,1.4037383
-1.2830385,1.9419129,.22818089
-.71338147,.75613331,.72306484
-1.2368708,.26340266,.36350074
-.46296953,.4365711,1.8438128
-.60921313,1.332804,.74859289
-.86285936,.69205643,2.4011576
-.7610082,1.1315585,1.6527752
-.39722726,.29322207,.51736003
-.89121078,.51547535,.09137543
-.72784817,1.8023782,.12630026
-.99926351,.964593,.83745871
-1.3146343,.47856014,1.0225461
-.73607161,1.0758067,1.8890476
-.53074292,.30509913,.03292669
-.70913409,.09660344,.15360006
-1.2251932,.54548422,.70227803
-1.248072,.33270222,.81287662
-1.1271756,.29735474,2.0759198
-.88806158,1.2949507,1.4041103
-1.7178422,2.3475126,1.5633698
-.90971653,.53915656,1.1787227
-.95193949,1.4315505,1.7446399
-1.4168419,.0619306,.26160076
-1.6720527,.79693676,.12450043
-.76820091,1.7955074,.5398552
-.54816815,.32559526,.94914245
-1.2569011,.36291511,1.6931273
-1.5114156,1.2782471,.50722052
-.83466451,1.0466255,.08129912
-2.9816168,.15905715,.7719731
-2.4316564,.28847117,2.1609257
-.49817604,1.2478433,1.4261133
-.91167085,.01161021,1.3510021
-.91253368,.42151901,.45545771
-.76099727,1.3277152,.20101299
-1.8904601,1.1836766,.76533388
-.72080307,.35305695,.36322355
-.66249698,1.0395866,1.28997
-.66754917,1.3738191,1.4220618
-.72111953,.32217841,.98559326
-.95198483,1.4149648,2.4507722
-1.2575497,.09647847,1.2553437
-.69219421,1.4153847,1.1740129
-.27503738,1.5369086,.5166783
-.79907116,1.0272001,.40042096
-.72020467,.63143693,1.2448418
-2.3672388,1.166004,1.0350783
-.98523297,.68251627,.18451063
-.79139413,.14913342,.819036
-.91829775,.43486338,.45475699
-.86061013,.51212057,.29504157
-.48946712,1.2802604,.15757655
-1.4597085,.03511491,.4644012
-.53520853,1.17251,1.1387637
-.63190299,.08894676,.2103544
-.63962316,.22787422,.98135066
-.92824074,.9253388,.88160121
-.55924329,.87296559,1.0201622
-.31600588,2.0620303,.99290923
-.85712298,.94008158,1.6917299
-.56521508,.74778378,.13600762
-.50318698,1.9161715,1.0706348
-.94185132,.0961843,1.5077915
-.95421423,1.5123687,1.8401809
-.94136277,.04728567,.02707467
-1.0244826,.77193317,.10780235
-1.0725321,1.0317939,.51446821
-2.3148455,.1414556,3.2202575
-.66228905,.63789875,.03638435
-.78881431,1.6280193,.48947077
-.49575797,1.5452392,.36773253
-1.294878,1.1739927,1.9218132
-.68915258,.98502554,1.1508924
-2.8424761,1.2193955,1.3187905
-2.7828492,.65530596,2.3695235
-1.1104464,.2948855,2.2958314
-1.5349394,.03538956,1.3635351
-.80601895,.46063471,.64289334
-.79235634,.65898173,.39174689
-1.3264698,.21767956,.56741596
-1.6933501,1.1235874,.04193646
-.68389856,1.0335529,1.0108395
-.50851151,1.5112735,.6160837
-1.0335588,1.3389097,1.1384088
-.446761,1.9036099,.10911073
-.22136726,1.4432411,.13942247
-.23916526,.45292365,.18274798
-.38740103,3.0184268,1.9608363
-.89838889,.86014522,.87983577
-.63508148,.18946911,1.1114683
-.40407044,.21175716,.65985706
-.61468601,1.1639144,.89948449
-.39647665,1.6392843,.41965041
-1.1163204,.12435747,.70449546
-1.4837073,.03931019,.69765576
-.91763954,.60050189,.64421492
-1.5786714,.73952197,.33987115
-.83702933,.59275048,.47366333
-.76659133,.44018019,.63155546
-.57684805,2.5155304,.73497909
-.81615302,1.1853726,.38788755
-1.5383113,.17287299,1.2868855
-.47486996,.88706292,.33682612
-.84643285,.73715516,.60025566
-1.4502047,.2992925,2.0270752
-.78854358,2.8087722,.0266328
-.46975159,.86514663,1.1605791
-1.0696579,1.1879996,1.231587
-.99895924,.8786427,1.0187246
-1.0653352,1.161367,.45903177
-1.7874479,1.3750336,2.032522
-.5550028,.76722795,1.2275074
-.44614478,.70933632,.52900591
-1.0792492,.60303202,1.5021444
-.39066669,1.9613341,1.1790497
-.71979061,.11032481,1.6388913
-.71935858,1.3785466,.22926914
-.87659093,1.5986877,1.3653225
-1.3254244,.75753669,1.5300806
-.66104898,1.4565283,2.4607104
-1.1125926,.97570717,1.4531142
-.80809704,.64283834,.39693356
-1.0186428,.87364632,1.8632653
-.79602216,.73884935,.71314845
-.56315362,.03947956,1.2367026
-.53139474,.83285998,.00796039
-.70679441,.39701068,.76156919
-1.0748554,.78800637,.79902527
-1.2911179,1.0548214,1.2150546
-.48732428,1.1078269,1.55475
-.5338072,1.8603326,.70313053
-.76084435,.12092604,.04471485
-.77797885,1.4644525,.63935844
-1.3991707,2.4087774,1.8047836
-1.2654876,1.0947948,.67717481
-.70483826,1.0997262,1.5533075
-.77138256,.656928,.16620941
-2.2370985,1.0422323,1.202669
-.78076161,.13496356,.84018057
-.41366878,.882944,.82433855
-.57101023,2.6096826,1.2234264
-.53265846,.93111166,.08085087
-1.1049039,.91500644,.68984989
-1.4546231,.21013587,1.6952557
-.36260431,1.0928977,1.548408
-.92726641,.85625113,.16294686
-1.5995935,.9416799,.22104
-1.2911801,1.3677161,.72255421
-1.7215396,.43920643,.21895107
-1.2366171,1.3091207,1.1148361
-1.3921448,.07390253,.21985094
-.95371837,.81338343,.06635106
-.53662013,.86940855,.26810884
-.72717342,1.8169784,.36402562
-.32274874,1.1994269,.15322325
-1.3763262,.92386196,2.101982
-1.121403,.28240798,.97974176
-1.2533157,1.275165,1.2039939
-.56733565,.81574901,1.4021037
-1.1728055,.30246385,.08938573
-.448591,.8451706,.18743068
-.98440717,.68165788,2.1641009
-.68920902,.44772822,.58913357
-1.0332957,.97638562,.07053614
-.21781636,2.6110908,.19986511
-1.0444474,1.2235494,.93913869
-1.8339449,.26012495,.06097882
-1.1042908,.55032175,.23780256
-.55497634,1.6497919,.78931472
-1.6648411,.66726893,1.2769681
-2.0704329,1.2860594,.87859942
-.53229254,.255265,.20958523
-1.0640832,.43004094,1.2416632
-1.4228385,.96856269,.64321599
-.49194438,1.4567239,2.498645
-.96030576,.95193035,1.8158416
-1.7226625,.13456028,.08441198
-.72317056,1.502458,.63522812
-1.0222649,.84766923,.32627908
-.36313706,1.9358453,.4201454
-.64633243,.9128723,.28681388
-.45002053,.54795937,.18370896
-.60346492,1.62981,.44454354
-.45429739,.32046757,.58440978
-.43247227,.61496105,.01758193
-.41726661,.38798796,.12137747
-1.2141639,.41111797,1.1157719
-.82287963,1.0760316,.39139814
-.54074513,.32278801,.95142135
-1.58127,1.3757577,1.2051074
-.81861128,.42042502,1.0737118
-2.1152958,1.10718,1.3064247
-1.4130452,.64679002,1.984627
-.32130595,1.146219,.01671888
-.77620599,1.0553832,.44596191
-1.0128992,1.0198987,.08634863
-.59677609,.71446198,.05017285
-.31595184,.42562526,.2980381
-1.5078576,.31697249,.66977186
-.52570769,1.4943697,.17524127
-.71929924,.11616507,.21928961
-1.1676869,.41501083,.53269649
-.57043934,1.4521479,.69775534
-1.3116141,.22669492,.94034519
-.39699265,.69449171,.11346794
-1.5867832,.98448427,1.802363
-.49401538,.40562684,.15248294
-.71425714,.55278212,1.2061309
-.7466897,.40020329,2.2201373
-.58588342,.27772967,.45663827
-1.0444879,1.2450625,.5969241
-.87004236,.87294557,.48481256
-.56502046,.55021279,.72896056
-1.0968422,.59519606,.70876679
-.86214373,.68817216,.1097539
-.70409137,.26925592,.7340514
-1.0686687,1.0987449,1.5055245
-.96544258,.06582449,2.5165484
-.84749048,1.1236316,.0706657
-.41162726,1.0551621,.34578337
-1.1266178,.17023013,.85231867
-.53063388,.14873476,.20443337
-.99457893,.36901676,.92139701
-.831088,1.2010484,.0274627
-.68797117,.19310559,.91351884
-.56630904,1.2070403,2.0941077
-.68693322,.60028497,.56979706
-.74995215,1.3617132,1.5886448
-.24497822,.59855224,.45967644
-.8832234,.36448,1.6717101
-.33515832,.69440851,.24665852
-.51775896,.37948129,.25509816
-.61155504,1.0285044,1.2142835
-3.4047125,.73124274,2.2506362
-.85387944,.69175511,2.081804
-.79469843,.85953316,.55079924
-.35251071,1.7220703,.12943888
-1.2314941,1.0592007,1.5848303
-.69855478,.03696578,1.1204988
-1.0370701,.82762933,.75927848
-.28925101,.58011497,.2286543
-.30574532,.81495971,1.7437329
-.69306625,1.0917775,.59186095
-.81531509,1.3565566,.48838265
-.52648553,2.9190285,.88310451
-1.1803318,.69437951,2.9169244
-1.2043292,.84523309,1.0977238
-1.0197766,.23414155,.23253632
-.93846603,1.6842864,.15887146
-1.2506719,.69273098,.97132615
-1.1118042,.29239508,1.7060701
-1.0872506,1.7999086,.0266031
-.43198997,.1741609,.62666015
-.54469184,.15632447,.96113592
-.63008624,1.0687894,1.0649304
-.28939829,1.8150828,.8489109
-.49400403,1.2611366,1.4354037
-2.2320692,.32658721,1.7738429
-1.3310244,.48497614,1.2189214
-.65535356,1.196928,1.277257
-1.2027985,.20186816,.66854075
-.41750561,1.3134965,1.0286275
-1.1323289,.79834297,.4883699
-1.6052452,.57712425,.71248657
-1.2830443,.97125243,.9265062
-.75436499,.20185129,.09412987
-.67823924,.20622853,.50056099
-1.1094594,.0933406,.07140559
-.4794135,.34863158,1.685249
-.56012509,.80710504,.48447526
-1.2304641,.52191981,.24975511
-.83616081,.69854573,1.6264111
-.432817,.53380899,.47621236
-.32333607,.79100003,.3271804
-.41334387,1.0703667,.38818644
-.22379823,.67078807,.16325393
-1.0165902,.24418087,1.0131872
-1.3263577,.59971676,.39945228
-1.2294919,.12067178,.1099675
-2.2269691,.04190861,.97202684
-.79363464,.16817165,.01538592
-.42116841,.21135917,.62629957
-1.1394304,.30556543,.97320937
-.88409488,.11154805,.13741824
-1.1525549,.08292847,.6313946
-1.3491106,.77172066,.9257103
-.44426974,.76798297,.19671655
-.94614695,.10719186,1.4330014
-1.0987795,.58480183,1.3940079
-1.167752,1.4171718,.76741157
-3.1285656,.18472047,.18015573
-.99552728,1.13308,.79999979
-1.0630017,1.7034943,.8397651
-1.1393586,.27706277,1.7675921
-1.1217033,1.9037206,1.6504542
-.69799183,.32475092,.02481421
-.72382432,.47563001,1.2776478
-.72071878,.12483076,.086021
-2.0967443,1.6164138,1.3555546
-.89956643,.98780127,.85151367
-.74958711,.59760053,1.8138699
-.52595265,.46607032,.18253442
-.49464887,1.589372,2.7467915
-1.2421933,.79070683,.6154383
-.62947124,.80490349,.78388877
-.762537,.06239888,.22794521
-1.1673628,.15709155,.05947729
-.54392809,1.2044977,.53354838
-1.0432931,.11136144,.33495501
-.75201083,.15823929,.6441743
-.72299967,.85158984,1.272487
-.98906177,.64370047,.96049447
-1.2664728,.11712924,.95560023
-.93519089,2.3095783,.21782712
-.79598224,1.640582,.7830539
-.26866703,.29672339,.09033875
-.96783617,1.2873049,1.800089
-2.1961848,.19431086,1.0276145
-.71860239,1.0138511,.8029246
-.43703781,.84218843,.27400132
-.5944304,.1466738,.0371335
-1.6622243,.05602933,.8854199
-1.3117093,.71098724,.63918599
-1.3600695,.17141864,1.365688
-1.261034,.64090037,.29501839
-.62347584,.08901139,1.3420388
-1.1636413,1.3345029,.92078919
-.4426275,1.9494964,.84353022
-.73827489,1.1446355,1.5556903
-.76135663,.48741801,.62640852
-.95650539,1.2225081,1.0440095
-.23330172,2.342008,1.9528988
-.66217743,.05089591,1.029528
-1.8067481,.0511428,.06286733
-.68272768,1.3310168,1.312411
-.36922961,.86416505,.02966884
-.59342318,.0028277,.98947372
-.62763989,.54994064,.40677352
-.84931888,1.0536484,1.0897725
-1.6695783,.44306312,1.6853968
-2.5740178,.06228475,.28703764
-.50789944,.78128395,.69386512
-1.2865401,.26115935,3.1108166
-.95537736,.30100162,.54895866
-.43143113,2.5846038,.30685549
-1.7389078,.32472015,.80758234
-.62543468,.95077227,1.2086005
-1.3002712,.17974618,.5711252
-.92180184,.32263283,.69138324
-1.0483262,1.0101898,.60750469
-1.2274594,.73026811,1.5242579
-1.1339845,.82042713,.14383289
-.64025299,.83597558,.44365296
-.93584716,.02774461,1.5216993
-.8057585,.07416002,.5731885
-.58294184,1.151092,.87074687
-1.3236263,.38640885,.42431405
-.43028799,1.162923,.6765959
-1.980486,1.1026321,.34101044
-.94127559,1.1903035,.71978833
-.42322107,1.2561798,.21439384
-.92016818,.09905152,.97037933
-1.4531093,.3229289,.79624603
-1.2597991,.19143702,.70504569
-.99929005,.25765134,1.288179
-.53135593,1.1491608,.87994086
-1.0327969,.01688066,1.8574328
-1.369381,.89094759,2.0321173
-.40659714,1.1761109,.21750072
-.93425845,.28613205,1.6047954
-.9711056,.69582095,.16055492
-1.6232455,.9827654,.97121702
-.25784734,.21970184,.21074633
-.95521434,1.1280934,.42032234
-.79114219,.94564955,.97613378
-.65807204,.09519053,.21244163
-.38708899,1.5793123,.65344115
-3.6730833,.83584482,2.7977996
-.50792343,.06217231,.66832054
-.9236432,.58120094,1.1842606
-.55323079,.49533755,1.3611905
-.97713015,.36617909,1.3521748
-1.8097169,.22359825,1.9781041
-.9460176,1.7732962,.09325279
-.97142836,.53728132,.27857123
-.88286118,1.2185589,1.0679999
-.34192533,1.2049826,.2597989
-.56773597,.63783275,1.6910029
-.95546318,.61277656,1.1112241
-.55281694,2.3716414,1.7983013
-.72449501,.37321588,.21109669
-1.0085343,.12522467,.27599433
-.92464996,1.1482424,.07749553
-.5226017,.7073747,.43552768
-.32617529,.20941793,.27923148
-.7620463,2.5829025,.45358907
-1.1860172,2.0297991,.29622981
-1.0700253,.6060882,.26310412
-.48004084,1.0660889,.50990243
-.62911011,1.1177344,.90647306
-.76033741,1.570105,2.6739813
-.47815326,.54103948,.85911887
-.78815265,.8195935,.35577788
-.56319025,.6448144,.55209328
-2.1328597,.57765152,3.9339677
-.92668343,1.6480763,.17839861
-.75023916,1.0128793,1.1125409
-2.9858773,.92372051,.474383
-1.4103024,.64990034,.42630992
-.86173511,1.070797,.32958383
-.67870107,.15348228,1.9262913
-1.2857757,.30733171,1.2016604
-.47330419,1.9776923,.24954725
-.77532168,1.0666379,1.1666143
-.34131998,.83061197,.31506577
-.55728734,1.7094062,.48604155
-.63699474,.02359983,2.5218274
-.31028475,2.0216284,.63072062
-.78140876,.85398097,.11209619
-1.0525171,2.5189634,1.0625356
-.65357859,1.0624283,.15749287
-.45616597,1.9750776,.33591757
-.85797686,.51014545,.18431454
-3.3907802,.11383826,.31183721
-.631731,.85019797,.15402046
-.80648457,.49728485,.70905669
-1.7109654,.1025061,1.6210902
-.63849444,1.5547479,.32097352
-.63416973,1.1655473,.15789162
-1.1700683,.50536182,1.5934497
-.56573425,.67849034,.86176506
-.71446847,.37663512,.61259217
-1.0592743,1.9931254,.12059661
-.79087097,1.3535887,1.058421
-.51714864,1.0654672,.6477116
-.79363247,.38312082,1.9274861
-.43025762,.74973389,.29099201
-1.3440085,.07632381,.55122789
-.61001724,.70902965,2.4777567
-.61616797,.8648629,.51810083
-.5325227,1.0145548,.94028586
-.66607603,1.1218628,.43791215
-.31218977,.76636092,.94564232
-.78008973,.23295815,.93156863
-4.2719438,1.0034862,1.9603938
-1.4489409,.8918096,1.1941096
-.62710303,1.0014502,1.9593132
-.59960669,1.3548013,.29739867
-.45189938,1.4221278,.85731028
-1.2111445,.65888467,.90524077
-1.0826266,.45762519,.42561589
-.5063107,.4322677,.34567659
-.86139186,.54484633,1.1111574
-1.540574,.21263565,.1313667
-1.8584982,.25328433,1.1084257
-1.3053496,.28096927,.45147751
-.77777099,1.1880128,.29319369
-.59216541,.33318623,.60348664
-.47536993,1.4094902,1.2871866
-.547081,.82556886,.4889892
-.46547717,.22811835,.00327734
-.58974112,1.5948136,.38902872
-.37503034,.92864184,.61662008
-.935429,.60854784,1.1747375
-1.0240611,.88169493,.38475574
-1.215266,.42928256,.56693005
-1.1854461,2.3598292,.47015598
-.3538648,.76465197,2.3700645
-1.0900322,.25272848,1.6585436
-.64956027,1.0932859,.56316598
-1.5347678,1.3109828,1.2836631
-.85634041,.39388389,.18571985
-.63429271,.27585377,1.1144796
-.57970429,.82416231,1.5380209
-1.1218929,.02300605,.87259733
-.56708475,.16799335,1.7480882
-1.2415758,.67470706,1.1511601
-.68634325,1.1661413,.37513257
-.43043985,.430878,1.8850865
-.93157156,.32733397,.57524444
-.77220534,.99043363,.46421552
-.7080677,2.4504183,.18199816
-.68385933,.27339468,.01452787
-.3475468,.29460482,.41578876
-1.9669177,.85574953,1.18739
-.58857867,2.1623029,1.8148827
-.54044707,.98390335,1.1912066
-2.17894,1.3424358,2.2008672
-1.037588,.94033888,2.17631
-1.1134945,1.7396085,.55963533
-1.1358816,.03333474,.19883813
-.98114036,1.306924,.09777563
-.79149332,.72180533,.70201935
-.61291137,.42584863,.7178343
-.90382104,3.2678106,.49160562
-.65321493,.84602013,.67131888
-1.8786642,.47753029,.67426997
-.60702185,1.8442037,.21138645
-.66788292,.27407548,.00507001
-.35693585,2.2191036,.10759528
-.62612692,.64607294,.88375831
-.74213169,.60738116,1.1170225
-.85413755,.79147393,2.1345243
-.65413577,.11677226,.38267468
-1.2313499,.45157821,.68124273
-.50692845,.58012606,.50889137
-.55046544,.33977373,.26695481
-2.8858078,.40649702,1.7156034
-.28444461,.20931973,.10829606
-.68078988,1.1693871,1.0158451
-.29336671,2.0711035,.21064663
-.75726935,.63353756,.80300042
-.56025607,.49968454,.93503625
-.76796414,2.5669872,.19613133
-.83824512,.35771899,.99932879
-.89679727,.37144383,.2151333
-1.5006879,.79133593,.072242
-.92092728,.10638012,.36212854
-1.3388965,.05226437,.79143057
-1.1264118,.16252216,.22017903
-2.3149818,.72002588,.5888594
-.65650287,1.196534,.46414651
-.91999835,1.8494555,.14762056
-1.1551808,.58393748,2.6099124
-.35906404,1.389756,.86843925
-1.3451629,1.9144261,1.1359204
-1.5255404,.43268025,.8472266
-1.0832719,.40015671,.7233837
-1.2195885,.03198902,.06115462
-.40104685,.55096062,1.989387
-.48689813,.34865715,.66943725
-.5495028,.36742842,.44810437
-1.4687964,1.6018233,.85692261
-.66193076,1.1630913,.98263407
-.88583698,.03717858,1.6351936
-.40192769,.32300216,.37169695
-.73893473,.02576537,.98172997
-.58564911,.29846026,.44067265
-1.3437546,1.9248499,.91202865
-.69081813,.43801488,.5737263
-.5253021,2.662339,.06457805
-.8726997,.30326491,1.0953024
-.31923447,.31957152,.38651596
-.95250719,.02573285,.17121332
-1.0512231,1.4119093,.88832049
-1.3227596,.76350888,.75098931
-.83634026,1.1306463,.81618821
-.43563758,.00088507,1.5000244
-.77064751,.47807705,1.9624811
-.76877684,1.465346,.55258164
-.54364388,1.3460343,.56680284
-2.0466377,.37053892,2.5047793
-.40286566,1.7309359,.61725902
-1.6765164,.55131051,1.8931319
-.77278997,.1295982,.64628554
-.82376816,.33122339,.88278773
-.58616281,.38987789,.40426527
-1.3125683,1.7051695,1.352459
-.54308095,.3741684,.21341528
-.79318984,.72895401,1.4193221
-.74196406,.29415857,.13363479
-.82915677,1.5050363,.24954684
-.29261442,.89893723,.2568095
-1.2804682,1.4514998,.50287133
-.7034346,.34939668,.732389
-.55839772,.18469925,.14805665
-.65606622,.23951958,1.4856851
-.73559442,.16568312,.08887353
-.8616713,.71083748,.36825917
-1.2359356,.02432846,.02107152
-.84372051,.67740207,.1037055
-.99282536,1.2129537,1.1815447
-.89041666,1.2247083,.05357211
-.88901367,.79954672,.95956915
-.91458718,.67367201,1.0538784
-.70838364,.51932357,1.2343606
-.50067595,.06669617,.7639721
-.62716632,.95051975,.56935978
-.93156731,.76456221,1.7176297
-.88869088,1.0012876,1.1719321
-2.0741648,1.2081842,.62962233
-.73648539,1.049765,.65320502
-2.5352789,.46521758,.30449399
-.4761455,.89442403,.73326443
-.79801146,1.1221438,.15684671
-1.0294756,.8212334,1.4998763
-.69174109,.57324351,.53214994
-.80217339,.85572232,.5116344
-1.1908462,.3915568,.26227242
-1.5318842,.65172904,2.4162174
-1.169173,1.7967632,.99409589
-.37420282,.98072394,1.2254166
-1.2874869,2.3242323,1.4862002
-.89701856,.40579221,.27111664
-.71926558,1.8075583,.5340692
-.78925039,1.4254869,2.7361946
-1.5931395,.90958588,.45467033
-1.1937159,.98474367,.74113095
-1.1017688,.91685438,1.2518094
-.69113276,.38648259,1.6759058
-.91365677,.34184598,.8121344
-1.0217563,.88352454,.57713784
-1.3051626,.789205,.50149775
-.66387095,.77773939,.44988473
-.53892144,.88982908,.12142961
-.8763571,.35333798,.49396483
-.51990081,.31698455,.22399249
-.30561495,2.0228178,1.2632575
-1.4182038,.37244283,.18590222
-.54244923,.12192526,.33278855
-1.2324632,.94147539,.15112714
-.438567,1.7584727,.72934194
-.51313286,.28294854,.30361102
-.62585896,1.6077578,1.1063216
-.37199814,.46980057,.57578666
-.59819794,.17982468,.6150238
-.75007661,.19416245,.29464098
-3.4114131,.53445707,1.0556445
-1.6913084,.24760823,1.4004497
-2.3474595,.46207533,2.1678098
-.58556543,.79772913,.82742971
-1.5016744,1.3128748,2.0452426
-1.1694394,.44444019,.38586301
-.67610621,2.896767,.91621922
-.73485725,1.2848205,.34922785
-1.7244981,.99705422,.62350869
-1.0585009,1.6474923,1.3163476
-.82507317,2.075097,.15568921
-1.014535,.56430676,.9573805
-1.2397361,.10657072,1.1524664
-.68909044,1.5470982,.05443284
-.58308949,.44611293,1.5514125
-.58200282,.91414875,.21726214
-.30894926,2.4952076,.02470478
-1.0884753,.03493962,.47692708
-.91017924,.26712434,1.1894779
-.92255685,2.6969875,.30003315
-1.3747829,.38068559,1.0428675
-1.0666783,.44561008,.00521101
-.55835165,1.3804542,2.4465125
-.92040901,.43301356,.12998245
-1.7191181,.31511494,.03754502
-.49408109,1.3070264,1.8452556
-.88983123,.61756838,2.0815128
-1.0391704,1.0492902,.06635251
-.45639846,1.3345446,1.3393613
-1.0228011,.53195216,1.9032228
-.44326043,1.3032302,.75667257
-.83378483,.03299866,1.4855782
-.79506357,.00356654,.32840777
-.72609094,.58828661,1.3251875
-.64340224,.16072646,.84887674
-.84171795,1.2371808,.50673651
-1.3549733,.89009333,.67433056
-.8814002,.33381148,.39726583
-.69479836,.43586994,.07341284
-.74726925,.89198238,1.177998
-1.1542199,.30960868,1.1834633
-.88573735,.25658087,.62411445
-2.3617841,.21543872,2.2063233
-.40114723,.96495217,.81752932
-3.3429089,.03020624,.77290182
-1.3487533,1.0297385,.6811084
-1.1950228,.57792634,.14183454
-.94328533,.91003754,.97642728
-.59235861,2.0181869,.37682137
-.60148707,.45393159,.60115332
-2.2082453,.38049952,1.087433
-.94215936,1.2199476,.06980192
-.72348579,.99272462,2.6571242
-.90108334,.76935711,.07687662
-.57335832,.69189714,.16023379
-.47296942,.16663937,.76215969
-1.375877,.24405406,1.5175541
-.48416638,1.0048422,1.9560838
-.81126719,1.0402995,.31971076
-1.215533,.08963132,1.0626661
-1.3203109,.93797143,1.6199694
-1.0839114,.71953927,.72248607
-2.160469,.47038383,.46180036
-.470617,1.2821737,.27097813
-.94583628,2.4387819,.10517152
-1.2302225,.65417419,.23255882
-.70235819,.11667994,.48695198
-2.3352843,.36960518,1.6406842
-.69525537,.3856538,.01903336
-.99023204,1.1462073,.13422544
-.62773292,.21392274,1.6166791
-.64783617,.80504815,2.2847474
-1.4946057,.98882658,.5293734
-.54135191,1.4718894,.67665749
-.36159035,.88475733,.5748374
-.58290494,1.0864112,1.8851517
-1.194118,.47814764,.26182289
-.46245935,.61508747,.38973
-.48271532,1.5268814,.65880256
-.76551453,.95027841,.20044263
-.32549391,.53573028,.86713736
-.94681895,.46681656,.98553695
-1.060129,.34942192,1.1302202
-1.2397018,3.0589721,.73764369
-.73529256,.34578904,.43733856
-.74703861,.95119914,.57065364
-.9995108,.64927694,.43989346
-.36310226,.29820136,.79684519
-1.5891291,.12947957,1.9254194
-1.1070578,.82290137,.39238027
-1.5676874,.13586861,.24713685
-.35186261,.63477134,.90746997
-.64737177,1.2974524,.6638376
-.4855823,1.6431649,.81430501
-.69657762,2.1856142,1.3469465
-.66158275,1.0899399,.21412105
-1.4304916,.4538419,1.8474065
-1.7889894,.5845976,.87957238
-1.1010931,.30987206,1.1745883
-.57841418,1.2206036,.5065269
-.46275782,.32568167,.95409044
-.57470345,1.8576932,.94036035
-1.8549819,.10368861,.43357035
-.92190821,.15237263,.44559683
-.66643195,.3779761,.30705424
-1.1390424,.231729,1.0324031
-1.6598459,.94024853,.43334547
-.3880429,1.64174,1.106961
-1.3737289,1.1881118,.26970211
-1.0312676,.68071112,1.5625367
-.44948986,.61678217,.44282634
-.84966828,.82421862,2.3873788
-.66327301,1.5218039,1.22108
-1.0638779,1.1958644,.49533318
-1.989238,.37044368,.57911027
-.69973513,.41371488,.79943754
-.75246882,.5421387,1.2611262
-.69239645,1.9982047,2.5635951
-.52894818,1.7444342,1.1325203
-1.126291,.17355306,1.1701021
-.60362594,.58133033,.96881144
-.99658148,.36845655,1.4336214
-1.2027726,.31323812,2.1984738
-.82027179,.99934939,.16355596
-2.053287,.353755,1.8062204
-.9317063,1.1433042,.88672085
-1.8514027,.33274262,1.7468657
-.69880839,.24809942,.45163822
-.59118881,.64756144,.04647427
-1.2840613,1.9991838,.69782886
-.81943184,.58956967,1.7564021
-.37806632,.74708395,.71714361
-2.1204935,.09648623,.93418701
-.79381424,1.0147907,.25409123
-.43614282,.07256752,.54500979
-.60708228,.26426753,.08480095
-.67501258,1.5156612,.39888031
-.63328267,.86787039,1.9820277
-1.1501999,1.3783198,.34447545
-.9302828,.20188176,.44855265
-1.1932953,1.0006321,.97161083
-.32670778,.62546619,.59775453
-.41992468,.48574814,1.9550774
-2.7459874,.42038665,.72244445
-.84955432,.5341694,2.1021005
-.4076315,.5745884,.67891909
-1.2434634,.02786424,.84422425
-2.4819505,1.4840978,.34875661
-1.3551097,.28206127,.61332836
-2.2490407,.50393916,.63044231
-.49459837,1.1699907,.79521293
-.72080592,.3202198,.39022921
-.86282288,.60067482,.43132817
-.21793262,.69075133,.04613067
-1.6865112,2.3246449,.71624853
-.28629805,.03312004,.5834969
-1.3654633,1.0565936,.58928432
-.56773911,.68392307,1.2297566
-1.1859566,.16710599,.36608044
-1.0006247,.24692905,.7331095
-1.6484844,.54958967,.86412071
-1.2310605,.38203012,.71618826
-1.7543647,.53162297,1.1342631
-.54401836,.47825041,1.262528
-2.7156598,.88191488,2.6509212
-1.5944743,.0694574,1.1986272
-.52337544,.89377994,.00801692
-1.0092477,.33029586,.43062321
-.3379068,.48586444,.28459724
-.49019782,1.5987365,.29639369
-.46886108,.03397056,.24706054
-1.272487,.34577111,.16037003
-.64732601,.18841584,.50923861
-1.5019862,.05465162,.5564646
-.90852619,.67330633,2.1613967
-.874314,1.055063,.81690181
-.74320766,1.1222877,.90406759
-.9056512,1.0147402,1.6372362
-1.4620019,2.2476981,.64098972
-.42096708,.18715177,1.3751332
-1.6935804,.97939654,.93058871
-.505485,.94577374,.32682695
-.70169062,1.4345029,1.6034119
-1.13963,1.5072877,.01065067
-.92038968,.48408777,.98218565
-.21862976,.04052945,.35946068
-1.0363188,.49257363,1.6380666
-1.0332969,.34097357,1.7731305
-.58727454,.69649477,2.5000182
-1.1550882,.73646752,1.2249999
-2.1183521,1.1066203,1.7218768
-1.2151723,.52463439,.9505218
-.31671291,3.420407,1.1062649
-.34805973,.23330908,.27411597
-.87035408,1.1051244,.69017436
-1.0724623,.03627517,1.9961652
-1.9834165,.29650187,.13120573
-.51230051,.34622486,.77184213
-1.0553203,.56374659,.01000915
-1.5818118,.12410894,1.3144439
-.69181986,.37901358,.27092228
-1.6414979,.02654505,.30602448
-2.4759818,.12625672,2.8472004
-.6947914,1.2603843,.83781288
-.81534421,.80767223,.02038831
-.79318495,.75036052,.27659616
-.84016939,.48805203,.57697101
-.71497433,1.2472713,.91438491
-.27036129,.80200452,.63363922
-.89171646,.60413055,.79252341
-.76684142,.12054458,.1789123
-.57589308,1.2793882,2.3652677
-1.0032031,1.8921832,1.3672967
-.8692213,.17823549,.76079401
-.89758588,.41293203,.53915281
-1.1347941,1.023798,.17660051
-1.2673469,.22050896,2.1541949
-.26182253,.30829938,.52039055
-.86086406,1.0108168,.66765795
-1.3619319,1.077667,.92853464
-1.5196714,.70682559,.18604748
-.36551129,1.4355367,.58256094
-.77896527,1.6131393,2.7095187
-1.065269,.25287555,.39386977
-.40365695,.95836951,.24604198
-.76437672,.37110477,.21624093
-1.0557274,.59596569,.62381199
-2.2115301,.50323518,1.5057576
-.51044807,.71412319,.35612878
-1.2997929,.21251603,1.4238119
-.54590639,1.9558168,.02995558
-.8310908,1.0776525,1.6776696
-1.8271299,.20574498,.11758352
-1.3070939,.16510593,.63761007
-.52885413,1.9043273,.35043756
-1.2151683,1.6641346,.65316006
-.76773479,.83863795,.57639993
-1.5615595,.07479327,.83185351
-1.2865405,.23267806,.08524491
-.57282377,1.0938974,.05025663
-.56159661,.43964077,.64256683
-.53218252,1.4950038,.07966372
-.823775,1.1959797,.65771973
-.579359,1.0156166,.27661089
-.99593246,.06152482,1.2200386
-3.4955891,.5873078,1.5244299
-.66217946,1.7065921,.67397085
-.80230397,2.1407697,.82464717
-.715958,.53652659,.81467921
-.80282521,.12755696,1.4587633
-.27714028,1.3735502,1.8600945
-.92758887,.05672752,.72678044
-.65279584,.7292609,.75290102
-.52652637,1.0489602,1.4392794
-.83495284,2.9180908,.0124543
-.32973331,1.7927582,.40979201
-1.0554837,.08163678,.2568033
-1.3766826,.18526082,1.7797445
-.88714603,.77116587,1.2221553
-2.9432735,.36141369,1.2393824
-.7149108,1.5301054,.52235789
-.63259235,.49007579,.14491921
-.64467001,1.4535906,.39924841
-.66468403,.64850983,.46009495
-.79321052,.3652756,.01132508
-1.0899525,.15286691,.31763501
-1.273308,.74092545,.42510493
-.7972666,1.2165594,1.3455887
-.4890166,1.4130475,.85621193
-.88737726,1.6224435,.37586785
-1.0551012,1.4547246,.752247
-1.1380043,.78836334,.67480379
-1.0595969,.30002101,.18645252
-.42536722,.74522189,.40322101
-.67826295,.30823766,.94284633
-.53069935,1.0898076,.06513506
-.65370862,.63295584,.51927536
-.57383221,1.3323153,.5446979
-1.4781768,2.1889707,.47482377
-.39996269,.68116969,.9939851
-1.4121681,.70983483,2.3436274
-.65804857,.10795975,.36379354
-1.9920671,.58858877,1.1742812
-2.1594686,.35818666,.41772163
-.77266907,.78269455,.53786214
-.85245249,.21965338,.24990869
-.92693692,.87378113,.35223123
-.48351647,.28689352,.93752447
-.40750211,.43632113,.04807392
-.64559383,.35007185,.35722982
-1.5985264,.30664503,1.4602792
-.75334363,.3212062,1.799503
-.68711778,1.7800525,.22502233
-.57755167,.0626155,.22586404
-.86996547,.42892913,.41463311
-.70003108,1.4148246,.80830049
-1.0979106,.48539352,.30931061
-.53685816,.67293561,.7539381
-.43019029,.17747958,.21747938
-.91824569,.8487827,1.5012343
-1.7467574,.47740869,.32399193
-.50118609,1.9921765,.79928077
-.81717275,1.9837984,.65646883
-.97216242,.92953129,.81407501
-.46555152,1.2993101,.05414942
-2.3923387,.05462974,1.6382837
-1.3936642,.00634863,.72556365
-.35360885,.73847046,.35497975
-.7289999,1.0856874,.80828266
-.48267386,.08532251,.18601184
-.86428592,.66330306,1.1418473
-1.5907359,.03513544,1.6121869
-.65105326,.8526448,1.7696305
-.54727419,.25649964,.05396143
-.71631263,.51472634,.58491236
-.47101324,.2850101,1.2473842
-.85177402,1.6225751,.03943124
-.7995668,.35758363,1.4784083
-.52408799,.84536628,.03955428
-1.6743689,.11218795,1.4006977
-.25865299,.85766838,.54809748
-.56926345,1.0449858,.43137563
-.27932429,.82038171,.83145868
-2.1331923,.6889618,1.371532
-.8716622,.83471444,.265298
-.72468369,.6607476,.06272386
-.93831557,1.0325442,.30578856
-2.6510637,.23540159,.54925238
-1.4263952,.20701352,.86578992
-.55169073,1.1563614,1.0600599
-1.2167336,.32393651,1.0534032
-1.6215891,.35511064,.47553243
-.51924537,1.1379285,1.8315511
-.92147998,.99944731,.31892366
-1.8842691,.78990561,.37361379
-.50315731,1.0910503,.70374151
-.47079134,.3984896,.90798743
-.71045977,.90272584,.61664349
-1.5661616,.3346186,.92590099
-.76849307,.31743892,1.1948175
-.65674753,1.8782124,1.0407772
-1.2379745,.13566558,.56484325
-.40787038,1.5923149,.99441594
-.73585947,.05548193,.8750241
-.31630791,2.1178645,.13388574
-.85072063,1.2952931,.18084258
-.72800879,.00707065,.83745694
-.44979367,.80854936,.4136699
-.9328521,.11701647,1.478742
-.62497459,.6642141,1.3284318
-1.2001364,1.7180759,.84252955
-.57737656,1.3639871,.37121495
-.58380726,.01503305,.91800236
-1.4165692,.13562076,1.0036191
-.86601531,1.1009913,1.2649126
-.53999773,.86021996,.15934581
-1.0098463,2.3555535,.11306172
-.86709054,1.5203202,.2314239
-.58538255,1.3397637,.76743825
-.89672364,1.1268528,.99670904
-.69686463,1.3590793,.17329439
-1.0464013,1.5610509,.59554845
-.4625889,.31529129,.69144818
-1.7822987,.35738857,.00499828
-.62487696,.83430559,.46931344
-1.2887913,.48065836,.61507448
-1.3175066,.74437877,.70233424
-1.2196806,.58418285,.97674865
-1.2003799,1.0777046,.92383936
-.87287317,.56005898,.0184069
-.67654667,2.2667026,.45571923
-.7354277,.32356031,1.4016945
-.79949712,2.4377084,.81241143
-1.0283971,.2150432,.32267507
-.73621347,2.2857036,.51385069
-.37892014,1.1948052,1.1784538
-.42197314,2.3013697,.87441486
-1.1077534,.2626042,.00927381
-.47656021,.2259232,.92252669
-1.2008527,.01533034,.10058467
-.64105521,2.3479026,.63415613
-.70705643,.1547865,.93461342
-.8730099,.16476825,.5971795
-1.8971383,.4977284,1.3899099
-.90676297,.36719265,.21537312
-1.3391178,.00436421,.47147799
-1.3644192,2.6422317,1.2394257
-.93638049,.82811245,.51732809
-.39341815,.48367256,.11058167
-1.0010478,.24944524,.31101066
-.47313441,.92960067,.86703249
-.30988301,1.2706957,.76569132
-.8351943,.58019265,.38081873
-3.0057436,.15285206,.46409749
-1.0234286,.66876735,.23701993
-.30331364,1.4401363,.06848713
-.34912757,.78000177,2.0768352
-.76149898,1.2000131,1.6448309
-.60279266,3.2471069,.32397774
-1.0710855,.31773031,1.102276
-1.5004074,1.8735423,.10182841
-.82926286,.24219728,1.1655895
-.6294799,.12324558,.32452171
-2.6530375,.07765494,1.1825967
-1.7561561,.95246562,2.6670431
-.55140827,1.0322601,2.2601061
-3.0285694,.44933057,1.0052239
-.33263298,.06489555,.68399196
-.49740629,.34407307,1.2003952
-1.2718437,.25480929,1.5096956
-2.8270664,.64144618,.49659444
-.77293786,.13831774,.75405313
-.69116145,.52196754,.3224995
-1.4036552,.32147489,.114957
-.95819553,.92180697,.08781331
-.49920419,.07053763,1.1584169
-2.4106431,.42147067,2.3957833
-.96346362,.25219739,.02573282
-.8244643,.53818792,.40819956
-.48758372,.82495708,.29558399
-.54631946,.30652398,.84943035
-1.0188979,.38101386,2.89662
-.72550698,.63449418,.58931672
-1.1475097,1.1995507,.55563177
-1.7466163,.25355146,.013868
-1.8923421,1.1387883,.31575246
-.97175914,.24500393,.44396005
-.61683021,1.4156368,.53071965
-.65755675,.12247929,.52576976
-.91091526,1.9227937,.2300809
-1.1505983,.14105141,1.7121584
-.97440491,.77416331,.05751173
-2.5810988,.28531018,.4604668
-1.1191475,1.0020533,.0144312
-.83199044,.59307081,1.5683815
-.43646975,.44256922,.41197031
-2.2491874,.54834148,1.2211835
-1.1618754,.78528417,.54592136
-1.2331296,.38836476,.23697415
-1.179888,1.3411653,1.4244052
-1.9116589,.50459418,2.4273188
-1.9892723,.36127794,.54603045
-1.2331723,.35721475,.80273428
-.81127108,.7750552,.05958352
-.36306815,.69392819,.39526291
-.67864277,1.236569,.33317944
-1.2872099,.23894265,1.1579675
-.5503036,1.527676,.02636099
-1.8635002,.6137944,1.3001407
-.7315219,1.733515,.47434882
-.50332025,.12305402,.48113652
-.48109182,.97331597,.23759678
-.53817888,.99486449,.77220147
-1.4333326,.38858176,.20060965
-.73914274,.35653744,.76953028
-1.5003034,.36423251,2.3848993
-.4372386,.13238871,.59814975
-1.5693431,.26369509,.89529896
-.50434529,1.0997774,.34756569
-1.2758373,.32228941,.35270301
-1.1883871,1.4295901,.11917907
-1.1584141,.21972948,.26679576
-1.5972567,.52161036,1.7230452
-.56613234,.92809727,.19633954
-.49672272,.70138268,1.0133442
-.94723082,1.2960408,.25079213
-2.2641173,.12330307,1.2722687
-.79111257,.64778496,.54148415
-.77157723,1.1210931,1.5772345
-.4626293,1.2770877,.19857411
-.72622346,.04906961,.44025891
-1.1533485,.2461503,1.6257162
-1.2358708,1.0430777,1.3978635
-2.5049629,.83738848,.22430461
-.86407335,.22193697,.36401609
-.33084355,.00403308,.35908056
-.83172763,1.5338596,1.075094
-1.0674318,.42852706,.28993387
-1.3254895,.28781884,.11461419
-.57668328,.00755957,1.1289198
-1.0119745,.08198968,.51229974
-.87949134,.47699693,.10111848
-1.0120099,.76124744,.10114049
-1.4240848,.36847,1.7744748
-1.1560984,.41236239,1.147717
-.43997278,1.925335,.51681224
-2.5084456,.01807828,1.7084212
-.82732517,.11072908,1.1599733
-.73574335,.81098647,.35725155
-1.2774181,.11567584,1.0321255
-.60211864,.07639068,.16986849
-1.8693851,.24781954,.82509991
-.72434324,.31491845,.25617566
-1.0718458,.55481597,.33086815
-.61432356,.00342311,.4781966
-.98061002,.92268568,.06041532
-.85810181,.27121191,.18113983
-.67994012,.97385497,1.6208803
-.21298925,.5588791,.08864221
-.60408934,.92267504,1.2226699
-.6811732,.26597736,1.2268048
-1.116605,2.0225496,1.3213876
-.35412133,.55204513,.42914595
-.71643529,.51754647,2.07353
-1.7062768,.13267308,1.5981324
-.52395062,.77188116,.88452619
-1.5906267,1.2331892,.61129721
-2.5069519,.39806742,.01582876
-1.2214322,.75481496,.47870969
-.76711999,.59576523,1.6431032
-.57284536,1.0487631,.52296277
-1.3351873,.17826985,1.1613947
-1.3563493,.02634376,.05134641
-.52756712,.72769905,.13570473
-.61075044,.5389591,1.1827968
-.97291149,.92590066,1.4695655
-.31529803,2.4906057,1.1716307
-1.8421405,.12359678,2.0674046
-.96223603,1.4762533,1.640695
-1.0770323,.95386904,.04359406
-.49633976,.20410116,.19047096
-1.1862466,2.0852739,.12581738
-1.1642478,.0217492,.49079805
-.57885695,2.1063786,.10875709
-1.3091694,.16496519,2.0755548
-1.97728,2.0544549,1.893447
-.8314575,.68164768,.05856218
-.81548122,.48496976,.99913318
-1.7986788,.28705798,.65611362
-.87715377,1.0576695,.84990491
-.65733675,.17931731,.59490258
-1.0452916,2.2737148,.93049394
-1.9901227,.60902496,.52519347
-.4078416,.0605546,.1152506
-.58120192,.95154912,.99027506
-.93902425,.56183034,.02470348
-1.0446092,.08389608,1.1479323
-1.0167048,1.0913105,.53926424
-2.1796076,1.025449,.50028307
-.6113599,.49291369,.22662647
-.36531382,1.0123045,.78060891
-1.6385512,.97988165,1.8786899
-1.6856591,.47611517,.49100152
-.39856292,2.8291156,.19680989
-1.3601237,.85323235,.26781283
-.52302383,.16038677,.27344931
-.55916009,.10618201,.09361617
-.70110028,.81058882,1.3041039
-.9803952,.20662009,.14665887
-1.5981231,1.1949757,1.0882245
-.50950395,.2987773,.14522054
-1.3463974,.98016318,1.0993909
-3.0850699,.14047784,1.3565747
-.37086221,.86517607,1.6908653
-.50873961,1.0427568,.41120639
-2.1101041,.29419249,.22879963
-.50006609,.43296645,.3746812
-1.638576,1.0798714,.73520068
-1.047248,.5903468,.78480356
-1.2790698,.1520551,.98355856
-2.302541,.38482821,1.8953924
-.58674045,1.4723951,.90509558
-.60274354,1.0762136,1.4762697
-1.259189,.46759044,.20270426
-1.0802168,.06091519,1.2186018
-.93341349,1.0533653,.76704283
-.3664642,.63016327,.58823637
-.32365388,.71671021,1.7434947
-.71335536,1.0557511,.85847196
-.98011748,1.1046532,1.6659719
-.50424365,.22942463,1.252973
-1.7002473,1.1474489,1.0974629
-.71426255,1.2161666,1.5374398
-.33007251,.48622908,.13342124
-1.6418581,.87575889,.97221111
-1.2366709,.0224669,.07373399
-1.2620157,.2008089,1.2554587
-1.0848278,.17511585,.37071473
-1.0709367,.07224796,.3955063
-.96085316,.72297848,.91046585
-.49884279,.56990073,.98005383
-.50866708,.80803518,.79146017
-.64548184,1.7474652,.61779215
-.43573518,.94752284,1.8567786
-.82514112,1.1136963,1.1718482
-.52551664,.11688178,.34029471
-.65662997,1.1042888,.88163011
-.71767993,1.1593168,1.0167524
-.4810426,1.6403087,.21120966
-1.0304796,1.0920935,.2407036
-.6356102,.88643541,.9817863
-.6718022,1.871328,.29767223
-1.189957,.08043505,.85220947
-.98760423,.07968786,.30610437
-.71520165,.05132108,.64938024
-1.1699617,.02935154,.52576498
-.63868573,.72122315,.51311138
-.99064709,.54535619,1.8968183
-1.9284664,.46867426,.02479952
-.58831241,.47154337,.70161832
-.96197487,2.3677546,.52169795
-.27031019,.58503128,.45334275
-1.0829201,2.3672832,.99179624
-.6013822,1.1887008,.57262211
-.82141922,1.6450806,.05946218
-.5316923,.29413357,.29521191
-1.2241618,.78388624,.51781773
-.30965554,.51040055,.16140207
-.62499764,1.58077,.79637605
-.5575199,1.2543727,.79033576
-2.0421846,.71677773,.47451358
-.51766344,.27692175,.56161294
-1.7536269,.66271718,1.4809959
-.70075854,.70687564,.73798266
-.64323139,1.2507007,.10365565
-3.0904903,.08369113,.58857745
-.47097132,.20780487,1.0539175
-.37961156,.93338933,.78583212
-1.3178942,.15627718,.23751534
-.73398963,.08273621,.06675783
-.27303502,1.9884357,.87200649
-.75501394,1.1775337,.43068743
-.67040073,.13153169,1.2052727
-.7812538,.40816767,.52424054
-.90825308,.39168736,.61267762
-.36727966,.77866858,.62671434
-1.0387911,1.1549687,.46178137
-2.230847,.16505921,1.4680998
-.76497772,.72878554,.58698905
-.92771361,.28394784,1.5409581
-1.269552,.95543294,.40812555
-.8296091,1.6045009,.32323654
-.81186768,.22039721,.07448953
-.84207247,.15920592,.08285622
-1.1548595,.12656219,.62928625
-.88990319,.48817446,.37987893
-.44817905,1.8491884,.08822218
-1.367795,.56102411,.59340589
-.73601058,.20779751,.24371187
-2.5150086,.37471138,1.2227303
-.59540584,.47012508,.39871038
-.89618838,.13005448,.12559323
-.90557692,1.0624523,1.3112946
-.2763462,.34001933,.36995001
-1.2035367,.93569792,.33214124
-.4175339,.23795984,.15724902
-.88921622,.30403467,.35351807
-1.6478617,.77154579,1.0915721
-.3702588,.83153189,.43646973
-.53202696,.06472034,.30439397
-1.387855,1.1320764,.44393436
-.81519903,.76297049,.67899386
-1.4165274,.12035016,.12529454
-.81896386,.20290608,2.0002231
-.68491898,1.8708533,1.3906969
-.73384633,2.3193151,.6624991
-1.4467684,1.0026893,.75248469
-.53140539,.01421975,.3118922
-1.1228736,.34280702,.60752068
-.2875645,.35679916,1.5242049
-.94752301,.55719405,.66038311
-.76914461,.42767518,.26116162
-.69952221,1.3382188,.23726113
-1.1575469,.91966393,.4090707
-1.5388436,.40142842,.55475053
-.64059347,.01367088,1.2518121
-.58409402,.39301023,.95007631
-.88071415,.29833107,1.0497627
-.8631434,.42065454,.45544601
-.7934416,1.0226576,.65598416
-.50168055,.8967787,.3441192
-.77279352,.25341269,1.5677263
-.94725662,.48665475,.86549383
-.72234606,.34770864,1.0039145
-1.0179512,.9516059,.91377641
-.73672805,.7178585,.56863379
-1.8100034,.5253085,.48921999
-.79602946,.38558908,.50188051
-.75251874,.33160269,.23122992
-1.0793451,.74268744,1.3931456
-.32718011,.49856948,.62681574
-.37588026,.69951704,.97837533
-1.494042,1.1384014,.22076171
-.51584045,1.1868797,.30625025
-2.0719332,.07859879,1.9850289
-.6792936,.04309835,1.8054275
-.64166937,1.0413629,.20774138
-.57657952,.53392852,1.2320351
-.4703195,.54748805,.92606463
-.56275739,1.1676266,.47968637
-1.2974041,1.4112042,.22730172
-.65891407,1.4015397,.08861958
-.50245214,.98412357,1.3520239
-.51243569,1.233968,.79551533
-.78955993,1.7289544,.02561049
-1.0345137,.37334744,.0233454
-3.3634112,.44313989,1.7068328
-2.7818378,.27698311,2.6244595
-.54024521,.46941041,.5881349
-1.0825567,.20433353,.15499836
-1.0312198,1.4470432,1.7474426
-1.2209562,.30029806,.02149235
-1.0341307,1.0519059,1.3731709
-.98683507,1.1096054,.55498272
-.41108303,1.6542934,1.2297413
-1.287069,.11660507,.22034584
-1.4941607,.42827481,.93482804
-.74568934,2.4449615,.86806149
-1.8984822,.29535067,1.348673
-.49286682,1.6170405,.55768677
-2.0717521,.86401896,.19807589
-.71698604,.90586517,1.0676149
-.43330365,1.1804276,.81859783
-.59444508,.92374998,.70279431
-1.0431758,.75945981,1.1225809
-.5274167,1.0215801,.66218873
-.9771125,.1650301,1.2942327
-.6517912,.5176945,.45537641
-1.060487,.79114573,.78218945
-.66452039,.74995106,1.091687
-1.7169074,.20624946,.25005569
-1.8283763,.64537465,.39907273
-1.289343,.02170129,.27814291
-.43794173,.79246292,.02485723
-.3935841,.33785854,.84880443
-.53268921,.5084792,.24627322
-.32964825,.92103604,.0528294
-.60088624,.55239945,.7013664
-1.0251638,1.0272594,.08757574
-.80662788,1.7043866,.42790232
-1.0760771,.95952729,.4262365
-.94174632,1.2600859,1.3491908
-1.8869116,.54947404,.45990549
-.33611575,.69982975,.32373944
-.72747288,.68915096,.16299871
-1.6074022,.57113355,1.7723517
-.42509623,.3047651,.39195343
-.67373902,.42031613,1.3555154
-.68338141,.16684166,1.3664204
-.59575405,.78241758,1.7141564
-.17528433,2.284681,.60521582
-1.4566827,1.169491,.36440423
-.7662062,.9151815,.46316635
-1.9830532,.21293416,.12267309
-1.1422026,.8501994,.42362709
-1.0586239,.29284814,.88659448
-1.0560935,.43299348,.79810623
-.55329101,1.224509,.40639793
-.82259786,.44554177,1.0407587
-1.5235227,.10486949,.3962702
-.66252569,.9552888,.75655069
-1.0382146,.19265108,.62464998
-1.6534492,.31380721,.51960993
-1.721107,1.5934634,.7440996
-1.0623829,.02669837,.63549614
-1.7379996,.82216373,1.376918
-.63357612,.3051668,.28136963
-1.1821222,.25810656,.64660862
-.60797841,2.1888102,.33305211
-.62687759,.6973552,.25202212
-.83900982,.59870348,.35498751
-1.7444629,.79829989,1.3578691
-1.1064241,1.7608583,.58167034
-.92562293,.24793248,1.0359951
-.97270889,.61419417,.26815412
-.40759591,.40701667,.42971194
-.53503017,.22968726,.0149177
-.97015505,.04643011,.06674175
-.25333916,1.7049192,1.1596438
-.56450117,.71074449,1.0617811
-.84144074,1.9736317,1.3126476
-.55059679,.36566204,.97396776
-1.4508736,.58801277,.16785852
-.99053957,.00474356,.42345965
-.39202319,.48209336,.35942193
-.4945377,.7001633,.10512137
-.55679371,.66182605,1.2921235
-1.0071505,.62454907,.09711391
-.78987502,.76930219,.95661428
-1.1342324,1.1341331,.05295369
-.65396042,1.140594,1.2559642
-.57323831,1.7358617,.8069427
-.89015632,.49311475,.0140692
-.93816853,.82362964,.69807764
-.32827314,1.7184407,1.3577723
-1.8724553,.31359255,.46167598
-.39317955,.43414824,1.172667
-.61286895,.52635784,.40438458
-.68024912,1.1938029,.12635161
-1.3869103,.72475171,.52244096
-.34147447,1.1879487,.06058397
-.92630046,1.2076898,.41815275
-.98886458,1.0113723,.81661899
-.79635289,.47073707,1.2580806
-1.1593618,.79256437,.19313477
-2.1078833,.81892291,1.3198947
-1.4461121,1.3413872,.37965789
-.39636103,1.2340055,2.3927344
-.71168415,.43061984,.6085949
-1.333254,1.3911113,.88577684
-.80996085,.43601947,.81182267
-1.4579275,.66583432,.23339169
-.71669708,2.2834213,.2862493
-.33569637,1.6395691,1.0983733
-1.3072769,.31596382,.55452541
-.67124758,.34134098,1.5704343
-1.0723153,2.6004536,.6571892
-.89686301,1.2240067,.73270829
-.75630272,.65057693,.45077318
-.78770068,.46350044,.73295792
-.50190024,1.041246,.18391473
-.98675829,.92237254,.32574933
-.37831033,.37049384,.90540017
-.42766249,.80444291,.10360404
-.35930572,.65041639,.47713156
-1.0466575,.34988007,.1309354
-.55812781,.47759801,.54020186
-.68978635,1.1991924,1.2981698
-.92172248,1.2806854,.17909124
-1.3808237,.59451643,.92548215
-.38716083,.60841405,.11920601
-.63285562,.17524964,1.1393192
-1.0949609,1.5778466,.60980383
-1.834559,.23522033,1.2917344
-.56710538,.84028942,1.0616261
-.92638481,.37600438,.49664467
-1.1192328,1.298819,1.4370062
-.47116794,.93463025,.65726383
-.23625466,1.9151085,.41016301
-.51376272,1.7275568,1.7729751
-.54607384,.80225027,.39942857
-.60064414,.81100387,.34655625
-1.1331114,.34671021,.04970786
-1.2336519,.42387052,.8636751
-1.1183916,.58587212,.64482883
-.71090656,.44395366,.06158654
-.74373378,.02663382,1.0548925
-2.1189078,.02733606,.92142718
-.82785287,.64417005,.5176707
-.90203447,.18097773,.85438679
-3.3760128,.24679603,1.474331
-1.0765917,1.1119121,.86925481
-.5485592,.27689289,.03594817
-.53764488,.89172623,.71319982
-.65758092,.26525183,.58801293
-1.0913939,.30241275,.57650097
-4.0757976,.00068839,1.057489
-1.9206152,.03080365,1.2906101
-1.1348367,.56859558,.57420773
-.84413844,1.580029,.68556216
-.88886566,.24839107,.03390795
-1.0285063,.04991,.90876899
-.94933577,.42051852,1.2977159
-1.2215492,.22278486,.07409274
-.73331678,.01305484,.41442286
-.84740374,.03732605,.9818869
-.48995975,1.3511323,.35273648
-.83510995,.38013446,.52634762
-.38484672,.76848324,1.4836661
-.93573245,2.0066842,.79731347
-.56801273,1.4928883,.18894163
-1.8580919,.90718618,.09587371
-.79784162,.68084161,.44838416
-.90983385,1.3437813,.1391841
-.47453377,.12667712,1.5841472
-.33270611,.97274303,1.0886323
-.58543633,1.1124908,.03600682
-.5588509,1.4623101,.4547495
-1.1394947,.60096126,.61276938
-.58419667,.68552983,.1724324
-1.0354194,.21674978,1.8761353
-.81832131,.98201237,.94858581
-.50751899,1.1844116,.9705315
-2.8448442,1.6435989,.22168309
-.66897293,1.4895652,.8980126
-.84056239,.80262624,.57575472
-1.3707192,.24083447,.70214297
-1.1518444,.4395674,.53063814
-1.1880977,1.3620394,.93926326
-1.3722733,.23034011,.55543761
-.46141888,.95889214,.24768459
-.49056999,1.7283156,.56107616
-.62749952,1.1387774,2.1855276
-.82516578,.14258106,.54429823
-.64215118,.52972395,2.3765251
-.42162177,2.1088046,.6146208
-1.8771195,1.2765965,.70770302
-.52671812,.40529108,1.4974451
-1.5248194,.67719201,.29284385
-1.0017927,.13332332,1.7830826
-1.2744009,.7508774,.47977395
-1.5617382,1.2059465,.64470895
-1.2730795,.14700177,.69858535
-1.1309963,.17839974,.3359337
-1.2543509,.38146081,.33014566
-.82393249,.4328778,.78277738
-.43295221,.4766918,.13558835
-.54269461,1.6676313,.19826792
-.86577588,.40995898,1.0771539
-1.5933557,.75189975,.17493952
-.64729881,.01365504,.03978926
-.71834046,.90685341,.18883828
-.45215288,.3672974,1.6963211
-1.3676813,.12199874,1.1969183
-.6817878,.03223106,.21898969
-.46069227,.73839109,2.8360969
-1.5704172,.35447029,.70111578
-.38092049,1.18028,.32495717
-.72506325,.80593346,.80319052
-.46138638,.36054232,.15353689
-.80671067,.25495268,1.6670823
-.68220263,.74080643,.41830025
-.32302946,.50324974,.44682921
-.67205223,.61339198,.2254788
-.64850641,1.4449589,1.4379811
-1.0085232,2.6436732,.6014626
-1.3200982,.62657163,.36118016
-.82045883,.1476676,1.0972363
-.88823752,.28894049,1.6513968
-.916857,3.5615692,.27740766
-1.0594061,.88907724,2.5570155
-.65459946,.12306585,1.8812772
-.80902911,.03022859,1.0467696
-1.184671,.30547754,.07130493
-.83123533,1.249537,.64543029
-.36211838,.62187142,.97737641
-1.073361,1.1894841,.95490358
-.46905699,1.2933753,.1055405
-.70828033,.76494142,.00665397
-.87383582,1.1003948,1.0934578
-.98086496,.49059806,.72459815
-.68949816,.24160136,.51815775
-.85983939,1.0426092,1.4351803
-.70055466,.1421924,1.1656148
-1.1782164,.32996552,.01657882
-.99807704,.23032693,1.5834055
-.63628833,.11726615,.27994349
-.61750917,2.3515652,1.0859692
-1.2163409,.29653257,.09006456
-1.2099885,.05491574,.02755196
-1.0667516,.95892636,1.8735908
-2.5965908,.09481852,2.3679502
-.42261853,.82181002,1.0103215
-.4233578,.70367528,.9581157
-.42713509,.84561989,.11088405
-.59020797,1.1743536,1.555645
-.7095544,.38934649,1.0364878
-.2728086,3.0939926,1.4586061
-1.6274229,.88709661,1.2764347
-.33764061,2.2230655,.71725898
-.5244164,.10061869,.88722329
-.82141256,.58107666,.56992079
-.61091513,1.4737985,.12680442
-.68954007,.36655337,.37494764
-.40335131,.56569308,.47317825
-1.267085,1.143389,.18579853
-.80727762,1.5728556,.41897238
-.78976134,1.6363172,1.5737393
-.66600102,.66575914,.2807054
-1.3484726,.77349314,.45895923
-.96053698,1.2744277,1.4261622
-1.7292981,.08731516,1.0148198
-1.1866428,.5105043,.24962386
-.63391936,.15469433,.73397395
-.84560537,.67474116,.91615893
-.58042109,.89244569,.02652105
-.57563243,1.2885104,.83223279
-.92375348,.56770886,.91968114
-.31607057,1.963135,.24365483
-1.0799104,1.7271495,.06168754
-.26716806,.60763639,.44068741
-2.2118264,.12887546,.31293939
-.85429987,1.9729244,.24292807
-1.1492263,.47739248,.38732329
-.73656607,.12542537,.93229064
-1.5765793,.76503283,.22872267
-.6527558,1.0490795,.41630378
-1.3679706,1.3305499,1.5387927
-2.0639386,.82191504,.55563254
-.62300717,.95219519,1.90502
-.83684334,.09712483,.63939656
-.72294885,1.3776447,.71701299
-.82456087,.17128417,.66567352
-.53869787,.52108525,.87959595
-1.2493923,.33473879,1.0379068
-1.4692096,.28951472,1.3708051
-1.1680088,.64164536,.998567
-.64030452,.81428846,.85471436
-.83107008,.86480208,2.4565409
-.88300245,.93819432,1.7888635
-.34051652,1.0588354,.95884137
-1.080464,1.1698808,1.1737636
-.67493808,1.4244028,.29606507
-1.3792597,1.5991812,.8438715
-.75617243,2.1825501,.17390619
-.69357233,.23180342,.4233444
-.27687941,2.4432414,1.0145057
-.40279043,.20966966,.26760278
-.82238499,.55647605,1.4344588
-.48189057,.37057321,.92341158
-1.0800694,1.0252058,2.2022682
-.86637832,.13227829,2.0076097
-1.4282257,.55919153,1.6195034
-.5324995,1.435783,1.351679
-.3504792,.73446303,.01112052
-.81110566,.86213855,.81003357
-.37426117,.19979415,.60259831
-1.1184292,1.2323089,1.1939599
-.74132491,.41144025,.22605071
-.52080132,1.2207604,1.7775052
-.4059109,.72880953,.38049113
-1.2706225,.31778979,1.9665308
-1.9262088,.8100058,.96902696
-1.3221825,.17421946,.28365551
-.65401604,.41403785,.25611889
-.86260112,.81963731,.06903688
-.39026052,.35970623,.47811838
-.52421956,.29330403,.63696071
-.96566589,.56028151,.57774378
-1.1180811,.02062172,1.4602753
-.72535422,1.0068365,.06829147
-.32241038,3.0835695,.29223425
-.46996391,.02206326,.94863764
-.89108598,1.5805386,.40164696
-.48850929,.70815715,.28696705
-.91128995,.58848312,.21701918
-.84616178,.92934925,1.4684139
-.3994074,1.912368,.94489472
-.64818566,1.4587902,.86879745
-1.0561629,.48149606,.19111001
-.85746643,.85149834,2.761279
-.73609934,.43217596,.89370626
-.28895872,.61154561,.16406975
-1.9091861,.82112944,.71973079
-.63183532,.6547707,.73677109
-.87417028,1.0053591,.74349161
-.89098785,.04933764,.38137047
-.63906445,2.2893291,2.0278066
-.56226334,.48865354,1.0048848
-.54412898,1.7082972,.2759223
-.9733233,.4192411,.17039629
-.44562088,.74111618,.16846485
-.67913149,1.1278448,.09702405
-.41922937,.69308388,.32349019
-.79857731,1.8395942,.33247241
-.52492572,.07553411,.27779538
-.58566129,1.5491448,2.0702024
-.79678514,.86369254,1.0232835
-.63475859,.47042189,.45564004
-1.3123468,.8196392,.93451057
-.53319394,.54795096,.0577966
-3.5378873,.72265499,1.7895179
-1.518248,.04899357,2.9486486
-.59791036,.75913092,.04189212
-1.3578514,.98249094,.40946702
-.93404848,.20834618,.19352273
-.82508885,.15325943,.06526827
-.45576774,.93508573,.1931247
-1.4367006,.96819146,1.5529311
-.51773142,.77918096,.45517206
-1.1991111,.37721769,.83161199
-.42248422,.81102596,.86999703
-2.2680754,.88363649,2.4590058
-1.9600274,1.0534573,1.2270849
-1.0897959,.54149274,.01183457
-1.0425107,.08608517,.97592179
-1.0260245,.47515685,.0055053
-.8301554,1.9902096,1.1746228
-1.6281031,.22497965,.87606034
-.70687104,.74862496,1.7176619
-.50642829,.59261789,.1026287
-1.7557916,.06860073,.20928136
-.58690975,1.2670104,.54480664
-.78982989,1.4409012,.59145658
-1.4388014,1.1075232,.0366423
-1.2060292,.30883544,.25259921
-.74812808,1.4073417,1.618375
-.51895351,1.6383242,1.7122453
-.91474916,.81075893,.57351852
-.96102239,1.1493964,.66378916
-1.4348434,.50096589,1.3005729
-.85937332,.68342533,2.0212593
-.59009175,.07317069,.66897202
-.63527391,1.1675047,.83432238
-1.5449656,.72869429,.42894686
-.81877622,.0215099,.54370719
-.55063243,1.0069502,1.3284405
-.73660113,.18198454,1.2668994
-1.1434142,.74748774,1.4780324
-.59742672,1.0144711,.08909178
-1.487632,1.0585839,.65243412
-.54775359,.84441757,.50534229
-.76177244,.96484154,.92325277
-.87885191,1.0019556,.54487916
-.44343122,.38532757,.59619963
-1.0788924,.67249522,.03561463
-.53874288,.14017264,.46273838
-.66846755,1.0953896,1.2806701
-.69731256,.55540411,.47798628
-.26654894,1.6348799,1.4284446
-.34277926,1.1891899,1.003121
-.45686184,.11029977,1.6493403
-2.5155676,.16380609,1.4065687
-2.2286482,.42798522,1.2973845
-.51025898,1.0984837,.48652772
-.3714501,.93192188,.3373038
-.5441421,.11036823,.44997719
-1.2103163,.32955307,.15033345
-1.04016,.49967022,1.1985344
-.77509245,.86676143,.28981621
-1.7749073,.1136562,.19883003
-.71794309,.92293468,.55235707
-1.6482576,.49530724,.50910996
-1.1100153,1.4555664,.47869451
-2.1403582,.60900757,1.3288284
-.78331401,1.060311,.71878115
-.60389187,1.2717692,.49027318
-.49727342,.85130633,.37050699
-.5878703,1.405235,1.3628723
-1.4050207,.20534236,2.5591417
-1.053039,.86511896,.15810162
-.39221631,.43880541,.92679504
-.41716803,1.0909366,.66961009
-1.2094126,.92265657,.81029961
-.88927382,.17461623,1.0507192
-.66670135,2.2108858,.96683381
-1.0828088,.21066335,2.9949787
-.63518429,1.5435445,.84200322
-.56230281,.95937561,.14947815
-.71376843,.23319321,.30664374
-.79501999,1.1027417,.31090682
-1.2767218,1.751751,2.0372042
-.63290959,.42553194,.24843766
-.81971306,.86562018,.63300327
-.46691218,.78099141,1.0190503
-.71485738,.58026659,.25858383
-1.3819899,1.5953591,1.0287059
-1.0817299,1.4030682,.10823509
-.54046263,3.0840848,1.282224
-.86009128,1.3798886,.87517422
-.69313483,1.3799881,.62494979
-.39496404,.49225104,.07108421
-.67474534,1.297748,.4424543
-1.0329911,.44019702,.99746905
-.59490985,.80175539,1.2686846
-.500183,.62290169,.33448682
-1.5928381,.84793777,2.1119777
-1.0899779,1.2034335,.88715933
-1.1372085,.61542577,.69198864
-3.719823,.70723045,1.1087629
-.2934292,.20038618,.04439745
-.66483346,.47619228,.87902344
-.75491105,.71802632,.18370439
-1.3273221,.83622478,1.318223
-.65211829,1.0660689,.0198128
-1.4054534,.13371118,.32686661
-.56252291,.07841501,.23391507
-1.7152124,.00468669,1.4554859
-1.2016772,1.011448,1.4928251
-.49162455,2.0185883,1.6586468
-1.2893018,.56971882,1.3273077
-.36852449,.67783617,.76874445
-.61550704,.97549291,1.0079615
-1.3779534,.92749994,2.20526
-.46461876,.22497786,1.1721177
-1.0906035,1.6460738,1.0536138
-2.2763048,.64399963,.04571552
-.77441294,.32300618,.41166313
-.72896241,.65839411,.90507278
-1.0187368,.56222178,1.6999848
-.62011065,.00652051,1.4755608
-.89806185,.89620067,.06094892
-.49475688,.29217107,.09672247
-.48169896,.93750433,1.2644137
-.6095575,.64288842,.89479356
-2.0994438,.57687326,.90302366
-.76103664,.40118525,.18050597
-.8849476,1.5693856,.16836734
-.7060799,.17838058,1.3982003
-.39776492,.57576035,1.0390661
-.90579176,.55152274,1.8301454
-.43235587,1.6481403,.80296898
-.5458954,1.0205235,.6400484
-.96622734,.25954357,1.7316485
-.49882537,1.1200504,.01994264
-.94988288,1.9151026,.82174521
-.97449225,.40256185,.88377553
-.3417719,.95193781,.0655099
-1.1213966,.06783507,2.1411745
-.75101024,.63449721,2.0038887
-.62539865,.69425107,.84309284
-2.6263505,1.1150938,2.1251017
-1.2479209,.47285232,.55541145
-.34976212,.03410496,1.2154468
-.88642017,.34227404,.17651067
-.33179218,1.1601619,.19368581
-.46383237,.88610746,.32668646
-.58519791,.66011991,1.5224411
-.59531728,1.1407828,.49619468
-1.0257378,.12280971,.83891778
-2.5446483,.25888345,.04230184
-.77850463,.3543621,.81375692
-.51832567,2.5691824,.38119692
-.51323095,.29956791,.0412336
-1.3477297,1.9628872,.01745033
-1.662408,.248035,1.952222
-1.3873438,.78594569,1.3162045
-.94907584,.44305549,.04466401
-1.2992468,.83758047,1.2333004
-.69151105,.39060849,1.1945484
-.60022929,1.5988396,.63612392
-1.4955494,1.4869814,1.1880312
-1.5647202,.5127411,1.218853
-.6105224,.90438547,1.1806205
-2.1723729,.63596795,.12926615
-.79785083,1.6866211,.72837538
-.78474014,.68855474,1.1802025
-.42939697,1.7573853,.36314133
-.45138771,.84601242,.22690278
-1.2047758,.97768444,1.7137779
-.34946735,1.7355848,.6023038
-.96038386,.46780043,.66918217
-.69661985,.02346894,.14604062
-1.3475563,1.6399144,.33520499
-1.0160137,.64923904,.47246989
-.87727164,.26323989,.44916479
-1.104696,.26261538,.02836077
-1.5896294,.29600084,1.7200422
-.46339389,1.3143665,.50298216
-1.751081,.33293592,1.812794
-.79845064,.4385911,.82337003
-.83621028,.33892938,.50364657
-.33199575,2.811102,1.7389022
-2.4296654,.96041184,3.0482215
-.69675727,1.0243178,.57961835
-.68130328,.34969092,.70841102
-1.3334868,.65447869,.17815848
-.77979963,.51160164,1.0051438
-.65946922,.33298238,.96902031
-1.620407,.67585313,.50057828
-.70201778,.64074198,.306991
-.50277683,1.2177131,.88660683
-.4591855,1.251792,1.0237038
-.59706886,.15118823,.40226342
-1.3380037,.33906477,.55886374
-.80614859,.88955429,.00405536
-.90735659,.20607425,.69637845
-1.3807368,.42230555,.34968569
-1.3057783,.71799029,.32936075
-.31763335,.07597702,.03340233
-1.2992847,.59243198,1.4061879
-.65214943,.72160287,.71032587
-.58160558,.747947,2.9374826
-.18162318,1.0601392,.14520989
-1.4767722,.55624483,.42490957
-1.2260629,.63770273,.76109462
-.83927349,1.0938892,1.0589527
-.97777854,.52374053,1.1192144
-1.0258927,.09924511,.81604646
-.50102391,.58174488,2.9823643
-1.4028344,.32589769,.55187465
-.63332865,.77194732,.81630781
-1.1965288,.42297506,1.57894
-.43814853,.72894724,.07278106
-.65677347,.64688835,1.4978019
-1.3395403,.65569806,2.7833265
-1.1320877,.84170963,.69424799
-1.0528055,.51705849,.71665534
-.69239948,1.0895403,.58309267
-.39677126,.52931295,.37818663
-1.9805543,.56903519,1.1050052
-1.5752809,.77936706,1.054444
-.94528452,1.5699327,.16525768
-.75474299,1.3515845,.69243098
-2.5861635,2.2872161,.29602615
-1.0198784,.01294096,.60610575
-1.3291548,.57278631,2.0249956
-.83335599,.6154992,.15866957
-.87966177,1.2285543,1.6331861
-.59706866,1.2464612,.44738626
-1.3081965,.66253487,.57372703
-.5517924,1.1015825,.79379757
-.70833982,.71098965,.26477543
-.20607747,.17871599,.10495606
-.7521677,.86934582,1.4206946
-1.5750428,.81621108,1.439748
-1.1091259,2.4977402,.66065096
-.72727971,1.1191048,1.5106617
-.39267603,1.391004,1.3097402
-.68873694,1.167006,.771261
-1.5448181,.08151575,1.7975689
-.70306263,.12263985,.5205755
-.43356092,.26513601,.2236667
-.48658917,1.3959147,1.6501756
-.73689491,.87481924,.98098654
-.79357161,1.6066936,.50027493
-.5038459,.30721603,.90182762
-.56595006,.15997624,.53643278
-.57666545,.06263302,2.0527607
-.57260758,1.487108,.15318364
-2.0189672,.32930049,1.545837
-.79401172,.21540716,.05611827
-.8244871,.76975577,.36801285
-.63580853,1.3490769,.76263407
-.54555034,.3179482,.56862325
-1.2114581,.89265047,.04159258
-1.1510975,.39879104,.11260253
-1.1347354,.03231097,.66859195
-.2894137,1.5077672,1.5754525
-1.696456,1.0552208,.67912369
-.65091541,.14263146,1.1803883
-.34331679,2.1017519,.29978501
-.56266001,1.2255308,2.3884437
-.46095465,.32102428,.86422177
-.56388741,2.3847074,1.0250788
-1.3625308,1.2448911,1.279831
-.31292559,.74874072,.05798449
-.68450527,.2633824,1.0149077
-.78461057,1.9770856,.23626936
-.68370104,1.1010386,.65352727
-.47093126,1.5440416,.15854104
-.41325162,1.1057325,.10511962
-.96283064,.13737739,.48959641
-.41139073,2.1665463,1.2565313
-.86001482,.01529477,.30844528
-.95660578,1.6905973,.40713825
-1.301198,.59727052,1.0881026
-1.1521843,.74824502,1.1773893
-.57706939,.89820362,.60021928
-1.0432195,.97185043,.39746288
-1.0183028,.16835312,1.294854
-.61746409,1.4642566,.47846556
-.91363447,.3721108,.1114696
-1.8780933,.36482398,1.4834718
-1.1770601,.18336943,.46378796
-.45765338,.90660886,.58116431
-.73271044,.06632446,.5210879
-.72197059,.00398984,.20783794
-.54668409,.75817766,.74624093
-1.0281835,2.5499131,1.4919705
-.42978954,1.3795984,.42513132
-1.3010742,.77055844,.67258746
-.87022476,1.2942416,.48040073
-1.1926823,1.4939691,.35375765
-1.1639785,.35978625,.79695489
-.48487097,1.301315,.91616107
-.89593845,1.7432444,.45696839
-1.1356852,.52921945,.12850199
-.5781448,1.1294562,.31124629
-.76946818,1.0057516,.41661703
-2.3309939,.51615227,1.2435278
-.35433794,2.0361286,.87065295
-1.5086752,.22916018,1.5511236
-.82984729,.29521167,1.3541196
-.4897682,.41912104,.30115479
-.5512447,.37911658,.48924661
-.50940209,.54650039,1.1908926
-.68183483,.70559606,.27591815
-1.352858,.62972852,.10517156
-.68402723,1.5743524,1.0731334
-.73884096,.20605013,.86727682
-.62039374,.19737693,1.3829284
-1.3707593,1.0811941,.28688598
-.46698768,.08461868,.37496946
-2.4255408,.22909891,1.0695766
-.60067558,.13077192,.22592236
-.65560261,1.6963106,1.8185749
-.83527293,1.3991455,.08673402
-1.0751774,1.4544078,.89510499
-1.020739,.10054751,1.5505719
-.49559003,.26705406,2.2686328
-1.1079238,.18106904,1.3148642
-.62978667,.16290318,.71418195
-.86636895,.76320888,.65180147
-1.0442104,1.8740877,.27021165
-1.5199187,1.0985891,.51996711
-.69163752,.91788859,.43928886
-.3406461,1.3088265,.13159482
-1.9857804,.10024982,1.0331221
-.87139757,.35232185,.39801239
-1.2671443,.40008827,.93605912
-1.1219725,.17005199,.06934452
-.68004586,.34196152,.19417919
-.86149365,1.2491906,1.6300031
-.42406147,.65679616,.57053981
-.44400195,1.5578386,.1765883
-1.867615,.04484762,2.774825
-1.0975101,.40381758,.79369262
-1.4076759,.0191263,.55316544
-.62750043,.75679045,.36863249
-.52300687,.38319436,.02248597
-.55658764,1.1595864,.39075385
-.51405206,.8225258,1.2117331
-1.3184606,.66981927,1.7429429
-.39399416,1.5155832,1.2995309
-1.3270178,.44398692,1.0737947
-.66472276,2.944901,.25120107
-1.605353,.09220728,.50821889
-3.1200017,.33672142,1.043965
-1.6354137,.00727452,.17235511
-1.0246798,.41932657,1.1294256
-2.3757778,.82425032,1.0479073
-1.1908333,.28914857,.19627086
-.49959679,.64492825,.83683157
-.35339001,1.3669395,1.2606647
-.7092244,.77220506,.7326539
-.63064014,2.3323909,.69193193
-1.4239869,.71064548,.83859901
-1.0899966,.11247675,1.5456786
-.77480474,.6740563,.13315258
-.31289512,1.6091602,.54819976
-1.0420416,.68872837,.23323954
-.47493304,.44845951,.71870633
-.75658217,.71751798,1.3900707
-.81198766,1.0270072,1.0111018
-.86861105,.79490168,.03262196
-1.1190636,1.8666112,1.4178942
-.73028964,1.0031384,.4820428
-1.0209514,2.4716291,.08201905
-.72235667,.83903409,1.3663846
-.48537959,1.4695772,.27520693
-.58508532,2.3061668,.57250879
-.84986525,.73643111,.38208877
-.53783976,.92072321,.74012749
-1.078226,.25119869,.53435891
-.55835066,.84795437,.0081913
-1.0150014,.56375631,.35957726
-1.2337819,.39403443,.12979258
-.47238013,1.5265763,1.9355542
-1.0396453,.76238302,2.6436871
-1.2927188,.67598443,.67644216
-1.1269392,1.0462204,.15800081
-1.6662917,.11884631,.98929874
-1.9644769,.44855516,.6825834
-1.437958,.01490881,1.0045406
-2.2571418,.70417074,.05087887
-1.0170205,1.2192413,1.1627443
-.44073956,.62461625,.31898547
-1.3075176,.18541523,.70219644
-.58223359,.11318257,.257011
-1.2983097,.94808053,1.6131333
-.75923302,.72608477,1.1048829
-.70989152,1.0544821,2.4196829
-.55179492,1.9571035,.85400181
-.34718855,1.5553462,.72550227
-1.4322989,.09904748,.29469447
-.50492599,.22672193,1.5109168
-1.3315556,.65059632,.7611133
-.781552,1.2779433,2.0861634
-.76996027,.22287839,.60888283
-.93422436,.10945367,.3685571
-1.6111796,.03949182,.1127426
-.3732778,.34959497,.72801076
-.75198043,.2611481,1.3211659
-1.2330389,.99319521,.31853773
-.63146326,1.4861134,1.4090072
-.71010643,.41059074,.02853874
-.67426332,.34124933,1.1240026
-.6723874,1.0117281,.36962981
-1.5173865,.17200645,1.3733817
-.55600505,.2271256,1.9200726
-.67927918,.41702242,.01559477
-.28864469,.88942758,.21373244
-.9428054,1.9334976,.12969099
-1.3638054,.09866915,.09636567
-1.2623949,.52182805,.87520033
-.50704536,1.0810308,1.0023653
-.86397136,.14394869,.61979987
-.73817941,1.0086557,.99826525
-.41340846,1.7522609,1.1085237
-2.517746,.20447489,2.4854564
-.76095021,.37490647,.00708752
-.99892739,1.2426611,1.0823866
-1.2864614,.02351211,1.4850494
-2.0212378,.54542637,.82812053
-1.0473584,2.3104782,.58097705
-1.1761975,2.026312,.92082176
-2.4980579,.90436189,.61653923
-.38619535,1.1710822,.31865921
-.5231901,.25939527,.99369729
-.4134418,2.0573619,.60965581
-.60541943,.11948471,.21773235
-1.3279111,.08425962,1.2432091
-1.1380353,.16219667,.72261344
-.65331498,1.6217189,.00964642
-.63682835,.48571386,.51482024
-.99634783,.49451783,.59736268
-2.0885765,.29661401,2.07253
-1.2297746,.35899449,.71328893
-1.1664786,.84522241,.51759301
-.44300916,1.2872284,.37445528
-1.3189663,.35232984,.38846376
-.52428413,.13931143,.39245242
-.50496064,1.6427345,1.3497575
-.57761831,1.7550655,.09452982
-.52999016,1.1518271,1.0497938
-2.3493763,1.0372916,.06928908
-1.5209447,.28964106,.55827321
-.89715057,1.2166124,.41871218
-.77095256,.93882241,1.0757988
-.56735907,1.8486037,.83570241
-.81248275,1.7076427,.48980746
-.58267458,.68249684,1.3338811
-.46684954,.55108514,.50331094
-.90555951,.12706457,.05419879
-.65667248,.29718847,.70231355
-.35145687,.07073427,.38437991
-.54089291,1.9823503,.61724708
-2.2443074,.26822473,.24834468
-.3980428,1.3631747,.50938221
-.80769588,.26164183,2.0365868
-1.4461686,.95771725,.87666065
-.6545251,1.1912478,.24499138
-.5180597,1.5723884,.2335149
-1.2478351,.76626858,.85290814
-1.3864103,1.4047027,1.6965356
-.43993503,.05178672,.024584
-.97650653,.10085799,1.5132496
-.43158116,.90670881,.50170749
-1.4051413,.09879404,.10085371
-.77184145,.71050382,.37540723
-.4072167,.34809714,.00734282
-.36302023,.75247163,.0682533
-.38273675,1.6424133,.60398455
-1.7122293,.60579404,.95513944
-1.8250894,.75807165,.68176423
-.54784808,1.5456734,.46896232
-1.2159233,.39811542,.60337804
-.31241138,1.1375932,1.2218155
-1.2338555,1.2855177,.09839354
-.58559602,.11910893,.67216445
-.84736115,.95650435,.55934111
-.52076163,.44405562,2.1000582
-1.0644493,1.311649,.18670679
-.89095668,.33998496,.07209669
-.86762283,1.7793465,.47224832
-1.0734061,.29819303,.11856421
-.70965005,1.4354019,1.9939858
-.69898251,1.0576902,.11786759
-.50674089,1.4820721,.41017216
-.49953609,1.0154741,1.3510142
-.39001212,1.6757798,.71998043
-.44914897,.27545008,.48743864
-1.283203,.49141201,.58719915
-1.0261379,.2505103,.23486875
-.41660231,2.0404355,1.7485792
-.93239574,.2148611,.6110437
-.45457672,.80860551,.72884113
-.5710536,.57550393,.73501323
-1.3147123,.68753759,.23388532
-.64438206,.57253267,1.3255318
-1.0061557,.28917163,.20552581
-.76595428,.74232264,.8186831
-.87052831,.72228069,.05606967
-.98767344,.75717099,1.304399
-.94731109,1.0862614,.53433149
-1.0145031,1.5001002,.20443807
-.79985032,.1211631,.15771043
-.47649449,.4967694,.78325619
-.76205775,1.2376968,1.1374167
-.79859567,1.7960093,2.0760539
-.69076513,.60020993,1.071916
-.98583408,.59092546,2.24754
-.75205323,1.4921584,.82182141
-1.086063,.50609282,2.8843951
-.75398378,1.0254531,.2215001
-1.1587484,.25384934,.0886307
-.77453668,1.7445832,.53666047
-1.5538865,.18453582,.90398803
-.62370432,.77321075,.34973983
-1.7651577,1.3221394,.11185592
-1.5429641,1.055867,.43071482
-1.3941374,1.333841,.10040267
-.72400913,.01476905,.17176899
-.33609005,.9105944,1.5144386
-.82847261,.26831059,.27792675
-1.4125318,.7499651,.76098616
-.35878409,.02831194,.71889163
-.51723076,.0694928,.54893186
-.89996215,.12309995,.04915421
-1.7235822,.42097591,.00623494
-.51736719,2.2184116,3.0636906
-.40841183,.36607497,.07224123
-1.3992958,.45019583,.99479664
-.87264721,1.4290516,.60439673
-.691149,.3410093,.05123768
-.77069259,.29550709,.19949234
-.76996978,.57603363,.7902586
-.37802097,1.2367268,.25649901
-1.5051109,1.6488185,.79827676
-.81072684,.29816712,.78363155
-.55730405,1.8514129,.44196139
-.67442528,.70454542,.00484978
-1.6655135,1.4722232,.06132172
-.72467096,1.9239783,.99019
-.52860416,1.8383267,.74611205
-.74713437,.84094731,.59898124
-1.1394166,.60714587,.4587748
-.45957139,1.0841979,.27085919
-.72408397,1.4056612,.47264225
-1.1012632,.54662688,1.4921939
-.48184085,.13391119,.64153131
-1.2864493,.13796477,2.1137198
-.6763982,.03402827,1.039007
-1.1680695,1.2663499,.57901109
-1.0313233,1.2779791,1.4350527
-.86797217,1.4831686,1.4113122
-1.6091321,.63860579,.71881538
-.66278516,.97860968,.16947176
-.43100397,.58856835,.0414397
-1.1962907,1.3317288,.46853654
-.74243862,1.4491215,.17385009
-.56396254,.99514476,.93416474
-.61818744,1.8605338,.13226578
-1.129201,.69070414,.11218552
-1.1178986,.32736652,.69578902
-.41279266,1.1184079,1.3038674
-1.8889053,.25342439,.45044978
-1.7583195,.20977282,1.6184304
-1.1414311,1.4224983,1.3919396
-1.0567005,.37948271,.21681186
-.78363955,1.8319943,.55278249
-.90575046,.77823548,.65609907
-.65220165,.75147989,1.0781064
-.362113,.13968141,.19071159
-.7169266,.37879189,1.2614676
-1.1356971,1.2417619,1.9235888
-.56426715,1.6303724,.73777873
-.78695585,.04180994,.43036956
-.93217104,1.2567751,.90164973
-.78733699,1.1865737,.70855452
-1.0693146,.87318026,.24611594
-.70014283,.38386878,.39979313
-.75034977,1.9201604,.66390315
-.40522072,1.7595015,2.349237
-1.2550936,.22190209,.60131947
-1.5442649,.10255585,.71056426
-.68342729,1.8416139,.03587504
-1.0398954,.06725851,.04226024
-1.7616072,.23431019,.44236352
-1.1690602,.01834499,1.7076009
-.62751503,1.4270816,1.0453013
-.85204531,2.0131184,.4731146
-.74478445,.44675718,1.4389826
-1.6524073,.10433057,.15276626
-1.515972,1.7954514,.9826525
-.49796842,1.7337642,.45975508
-.40090355,.25453784,.16259613
-1.0170191,1.2513931,.36570616
-.70059347,1.0457109,.31285019
-1.0620172,.08701885,.345485
-.76953435,.94921571,.49490668
-1.5037726,.02923141,.16566621
-1.0612255,.51072672,.96451608
-.62798966,.34112853,1.6660014
-.43223656,.02829361,.40598785
-.68013149,.62206022,.40495361
-2.1737091,1.5566952,.9094573
-1.1079222,.16952694,.00012995
-.41093365,.42905326,.03544595
-.62637189,1.3752448,.93181006
-.47360214,.56840046,1.1373476
-.79696834,.87932793,.99154828
-1.0336754,.36827447,.43185565
-2.089233,.35447273,.17477785
-.3029803,.86144289,.01313776
-.81540622,.48097614,1.2871345
-.84184414,.10657585,.44752736
-.87453614,.79336968,.11267303
-.4415211,1.7978837,.50853633
-1.0910955,.8753945,.15611095
-1.0241775,.65775409,.22370544
-.36714988,.81435117,1.0663412
-1.1250059,.60937665,.2894246
-.32897241,.86996324,1.0483545
-1.4114481,.6003406,.20468643
-1.3971674,.12181581,2.1499301
-.52271292,.42159997,1.5965286
-1.0957488,1.057003,1.439129
-.71201229,1.0624967,.18015027
-.70340034,.2225733,.77296416
-2.2594285,.54638832,1.0050838
-1.847583,.01825546,.71727464
-2.1628485,.48758465,.73329676
-.59773338,.84249691,.69078864
-.81537201,.71953618,2.4244574
-.9834618,1.0049069,.48428265
-.56928186,.19622504,.5104029
-1.3416867,.42480558,.03011916
-.60474141,.0598109,.70538689
-.68399392,.14146961,.71794956
-.38191881,2.0954465,2.1354485
-.62327139,1.6240589,1.1299881
-.89819144,1.1812556,.27650157
-.5854485,.37560097,.59120458
-1.277619,.94291842,.25283207
-1.0290107,.74367881,.00496318
-1.8348807,.04726368,1.3523714
-.76858677,.52144602,.78749402
-.73450441,2.555583,.41651403
-1.0933046,.42324253,.7256594
-.89433708,.96746746,1.1389727
-1.2327708,1.396346,1.2870746
-.64273014,.74388818,.66336412
-1.6824621,.02612127,.53982686
-.34529218,.68170174,.903096
-1.2034891,.26262048,.94213847
-.86436704,.41187518,.77259107
-1.9263979,.88078524,1.0266299
-.88382344,.98223466,.18806305
-.88194782,1.2893149,.85161097
-.52996089,.09106181,1.2141468
-.75886478,1.3625624,.47208361
-.93578536,.26825904,.80102026
-1.1464713,.07921273,1.1936482
-.7985575,1.3292903,.42831234
-.62854278,.69696823,.38567642
-1.1995496,.78933166,.6607781
-1.1754949,.18852846,1.2695904
-1.7031545,.30356481,2.314481
-1.1144672,.14322101,2.7547779
-.50036857,2.2462319,.26893371
-1.2836555,.53402663,1.0810151
-.34020577,.78946822,.53193716
-.45423491,1.7019582,.56033285
-.47958621,.81260962,.21075545
-2.3324619,.05501746,.20217273
-.53198859,1.0516245,.4046791
-.84467289,.76168383,1.1049427
-.35240846,.38148493,.04921635
-1.8381488,.70492568,.40157214
-.60923313,.33022191,.5026069
-1.1862503,.62189985,.1731173
-.48563627,.05685944,.26771137
-.47415648,.54156452,.19344181
-.51780747,2.1362345,.95514309
-1.2828889,.35209313,1.7877508
-.82902335,1.5644744,.03818181
-.42368481,1.0329409,.98116443
-1.5462688,1.3091653,.57671792
-.8698442,1.4705923,.77198134
-.53740571,.27802127,.86905489
-.89414593,2.6740888,.08423945
-.52140477,.09669304,.93066796
-1.6206128,.31677021,.00490418
-.9692498,.72514049,.49895154
-2.0252806,.46153495,.03008445
-2.3348805,.03130209,.71533912
-.80203876,.62457677,.71317888
-.50029695,.78123263,.00595689
-2.5485862,.30212273,1.2979126
-3.1512803,.13464893,2.4336257
-1.0976207,.5115317,.61469897
-.4105227,.2083281,.11374102
-.3890326,.88840087,1.2863269
-1.0323227,.1978713,1.0945984
-.79614558,1.2204838,1.4373032
-.65139249,1.0457748,.51558888
-.70594269,.75203772,.48896631
-.88445382,.34023154,.05091771
-.48235878,1.0921111,.42365832
-.77754286,.60328204,.40091566
-1.6168855,1.0729839,.17811716
-1.4646103,.32442435,.31483128
-.84777705,.97890858,1.4909489
-.55789064,1.8885373,.17910094
-.37615022,.12527875,1.5384794
-1.2198548,.42322596,2.1345006
-1.016395,.81502859,1.4192376
-1.1012236,.55316273,1.712505
-1.1311697,.64467421,.4100045
-1.4644828,.33156085,.62591596
-1.1980248,1.4125145,.66245234
-.55151571,2.1041023,.85804793
-.62367013,.75327247,.89778953
-.77808356,1.130341,.43055056
-.41446771,1.416542,.37979011
-.5489657,.43297718,.19646903
-.97959541,.25274915,.56190073
-.74216965,2.6033664,1.8178481
-1.4138173,1.3417609,1.1194242
-.5501101,1.5416897,.57289771
-.90350873,.33524871,.28565427
-.38366761,1.6984737,.35643644
-1.3299761,1.7317285,.56187549
-.80674314,1.9178172,.27413898
-.79735754,.41398734,.77430274
-.84056875,.47424544,2.7855216
-1.1015945,1.6026219,.46552448
-1.1011432,.01160799,.49017025
-.79134338,.35190648,.9522524
-.58167386,.3957943,1.4838164
-.50521718,.17611459,.29155631
-.63562608,.49278616,1.5761203
-1.2293577,1.9584131,1.1178447
-.55076509,.51823258,1.896729
-.96356488,1.2734091,.3062207
-1.9802226,.75427108,.74530334
-.89359561,.66130559,3.1695142
-.70300891,.80387139,.30334808
-1.5934424,.15348886,1.4069031
-1.1595999,.1269133,.8252538
-1.8450689,1.2343897,.17084347
-1.058966,.03708303,.2886559
-.57328338,2.3244487,.04542693
-.40271808,.23496641,.01052646
-.78078832,.00762144,1.0217594
-1.1890341,.66914133,.57040466
-.421813,1.8858248,.16010922
-1.1242749,.13330424,1.2492521
-.74292991,1.1051659,.71304774
-.38992013,1.1348385,1.1924344
-1.1063855,.17841595,1.2627164
-.72371924,1.5682286,.03397528
-1.0771036,3.3591984,1.2646074
-1.8631469,.1695775,.23714367
-1.1869291,1.3196594,.60917824
-1.1601464,1.7084494,.35907525
-.6242776,1.3565774,.23311119
-1.4716082,.40756368,1.2053339
-1.0006656,.56734519,.78898612
-1.3161537,2.0241207,2.5678729
-3.6337468,1.7491978,1.2420391
-.76147231,.70857574,.0286968
-.43752512,1.1033795,.4831635
-.96112677,1.2277341,.87208763
-.90212498,1.1724485,2.1882514
-.71555886,.85567548,.84825637
-1.3071681,1.3906213,.60657093
-.611415,1.7901198,.08277079
-.75191279,.03425437,.53189058
-.97223658,.49835848,1.3089737
-1.2860096,.35781754,1.9542056
-.40254263,.99782263,.67207743
-1.0249793,.74810838,.92392508
-1.1712235,.45757887,.30071655
-.59283487,.61170906,.83978421
-.90593707,1.1327451,1.892728
-.87530169,.32891602,.15733643
-.42941463,.93647625,.94335321
-1.2469411,.19356649,1.9557708
-2.5645486,.38145481,1.5437497
-1.9568266,.85760952,1.4020779
-.54957395,.66967849,.89302163
-1.3469395,.81521741,1.362804
-.43358461,1.8827319,1.0140155
-2.1562424,1.6939511,1.1047978
-1.6402167,.62276619,1.146605
-.62272201,.92456058,.0332731
-.37861892,2.6695259,.05029207
-.62730264,.08269405,.42812304
-.9254611,.45929873,2.2594624
-.96760915,1.1370261,.03094783
-1.2663729,.74910801,1.9687444
-1.1995079,.05098097,.30371862
-.66113674,.02672451,.44335808
-1.0743843,.9383061,.7870436
-.99412098,.80360063,.55546121
-.55108505,.50372345,.53726309
-.82045669,1.0396238,.34395449
-.96706529,.26519805,.7381955
-1.0917385,.04017337,.48666038
-.67665361,.70162197,1.2098418
-1.3664989,.47220005,1.7981841
-1.3189419,.46158504,2.0287873
-.47510702,1.0576211,.52617528
-1.8203523,.09095828,.75051542
-1.0831115,.61081001,1.2976391
-.65277975,1.8041983,.45131703
-1.2584351,.86979194,1.5436782
-.65373228,.75235855,1.0529438
-1.9854872,.11337288,2.869525
-1.33209,1.0379045,.13558315
-1.3555213,.30170488,.8595577
-.31134803,.26475535,.2130661
-1.4846608,.2009681,.39469576
-.42205813,1.4304818,1.6853058
-1.5769502,.54329154,.73982156
-1.3926546,.80021223,.81367881
-.65970483,1.0224276,.2840102
-2.3133309,.40943527,.21969306
-.69033626,.88323169,.40849692
-.86075342,.26037231,.34101875
-1.7243838,.30454242,.42051431
-.67551515,1.2346008,.74598362
-.61701639,.34499632,.34092124
-1.435327,.09668949,.44655599
-.82090684,.20734569,.2338767
-.85661489,.04178061,.22629574
-.76038098,1.3492595,.7986198
-.51433789,1.5807355,.60065017
-.73729515,.32200928,.50542587
-.26661401,2.2195604,1.2289484
-.60724942,.4165658,1.0793578
-1.0363883,.22836965,.32465323
-1.2991992,1.1139918,.59413341
-.88151183,.68649347,.42626494
-.27500233,.2011129,.47345237
-.58856859,.10121535,.04057386
-.91298562,.89133756,.44666853
-.66834263,.22210812,.53165849
-.88106442,.31961261,.39472798
-.79939691,.02201829,.28162656
-.6089948,.7248388,1.3337883
-.4129846,1.0014134,.1126043
-1.2071194,.96812,1.003584
-.6276185,.00877845,.01622337
-1.1650386,1.9187229,1.0367389
-1.6719513,1.066595,.78760449
-.79838326,.10126724,.0605665
-.92348335,.34142672,.24854784
-.87337143,.93136785,.40672142
-.92067966,1.4091161,.87672767
-.41139165,.54345215,.09495313
-.48191765,1.3321303,1.4414736
-.57076153,.28622551,.31886389
-.65031922,.48317009,1.8426613
-1.1903974,2.1070423,.10794155
-.54419723,.19602375,.41953862
-.97410125,.59177915,.65901605
-.34663575,1.4886787,.66666876
-1.2652989,.93097798,1.8404771
-1.1317258,.72479526,1.0353279
-1.2849069,1.3328459,.82772348
-1.4985828,.81836828,.72016353
-.40769821,.63095756,.40048326
-.71097408,.46089055,.6773771
-.29290302,1.5430531,.68053652
-1.3452135,.39198123,.23917498
-.61717216,2.0218633,.44614852
-.64840791,.05359007,.69149784
-.6796918,1.2168021,.23571098
-.47508309,.75383463,.11183138
-1.0464953,.90130472,.17763379
-1.1052699,.01888542,.13154355
-3.085284,.56829967,.92444478
-1.1144174,1.6372327,.1325778
-.62933896,.79528196,.85439111
-.95074325,.09091742,.48211461
-1.2916768,.12303096,.06429903
-.53451618,1.4971141,.45247218
-.48238346,.35082468,1.0160593
-.77104436,.92784207,.30991279
-.55873364,.69608611,1.5709319
-1.7095017,.11874733,.97440238
-.2457214,1.1651217,.30011789
-.82733324,1.0730343,.20610813
-1.0755181,.3180478,.07059364
-2.2554482,.07798938,.76885063
-.68797074,1.3436074,.13425103
-.40698435,1.5098164,.28070427
-.87788948,1.0165237,.93952082
-.87819961,2.0939014,.45377999
-.79569542,.45440445,1.0956696
-.56125459,.75039726,.76068848
-.94571383,.98594827,1.3224997
-1.2165925,1.1613545,.66773193
-1.1895413,.07860019,.36090691
-1.1189334,2.380015,1.2366838
-.48777222,1.7522956,1.0745127
-1.1758065,1.6551205,.21093852
-.61120782,.70610895,1.1356664
-.60055752,.59576354,.93081968
-1.2262483,.27182908,.97410302
-.92080658,.17471017,.26832666
-.85162683,1.0634924,.58792991
-.51466566,1.0179381,1.2027242
-1.7009563,.5825718,.15918332
-1.1816855,.1925323,1.2519538
-.3852622,.90920114,1.6294397
-.79702077,.41424258,1.0705419
-1.9571334,.47937848,.13617982
-1.2079151,.48261978,1.0738134
-.59314668,1.0344135,1.6982777
-.88344303,.46225577,.43029703
-.38130456,.82704988,.75761138
-2.1913262,.40918725,1.5966842
-.24358284,2.1584054,.98775852
-1.3806181,.58659091,.53253518
-.87504737,1.5018745,.58986766
-1.3321666,.96942821,.74947287
-.89831495,.90897112,1.246144
-1.2176358,1.3740051,1.3760664
-.72446944,1.373875,.48266391
-.68503151,.85738557,.72299531
-1.3542864,.05047592,1.2880199
-.94601109,1.1553947,2.1400982
-1.0330233,.89577098,1.282251
-.3788625,.72103,.04964312
-.50285502,1.7064736,.43115462
-1.572813,.93234837,.33890438
-1.2023419,.2131126,1.2155057
-1.8827557,.81435847,1.0164059
-.22954651,1.9116135,.45291886
-.34173507,.58186707,.6982727
-1.3742144,1.1440273,.12669396
-.82133645,1.4596759,1.6828502
-.95141514,.34924876,.88598116
-1.3585567,.39697833,.0850164
-.56232208,.64825834,.67343419
-.51989917,.5178321,.50668382
-1.7889641,1.1971479,1.3065247
-.8276,.82166271,.97164161
-.67837488,.6364262,1.0110758
-.57369628,.29131504,.58527182
-.81146002,.14388034,1.2050171
-1.1454538,1.0354952,.79493887
-.71532879,.80516784,.17226164
-1.253088,.15138569,1.3058865
-.53692592,.06905846,1.044935
-1.6317762,1.330378,.28055567
-.5617414,.17192651,1.091436
-.59672024,.62804023,1.588572
-1.5882836,1.4283061,.35645085
-1.2023658,1.0807793,1.2082167
-.60137096,.42158442,.39897023
-1.1909812,.25770987,.24333487
-1.3012388,1.0593096,.74447546
-.99942595,.06216418,.0195388
-.89509515,.95765885,.12455494
-.48165297,.3964937,.3928726
-.5904748,.57399613,1.0890905
-.65514965,.53033556,.40822946
-.65675517,.02955565,.46512549
-.98854314,1.8441604,1.1705888
-1.3780593,.7464939,1.0456895
-.50832922,2.4644288,.44090403
-.39989754,1.3330257,.27798672
-.87420565,1.097072,1.4538707
-1.2933174,.34325862,2.822108
-.44473345,.97437298,.14271713
-.45426924,1.1427879,.603399
-.82868619,.49566556,.8595059
-1.5620147,.06843651,1.6626297
-.54678058,1.1571014,.53330233
-.64157795,1.0247709,.27241976
-1.2191029,.34072667,1.6710845
-1.079996,.37841686,1.2634578
-.52942019,1.3315046,.91835341
-1.1892253,.89894802,.45343363
-.85823984,.61651773,.6038048
-.63329102,2.0188372,1.1088467
-1.0812385,.65429295,1.3201805
-2.0685482,.45046193,.57697754
-1.2349914,.51489186,.89654513
-1.1790985,.56951347,.78760446
-.94248287,.80665541,.00746954
-.91130014,.23076281,.15588064
-.9439077,.78474808,.3332898
-.71002311,1.5452421,.5041376
-1.2664146,1.2886323,.12505042
-.83205622,1.1919396,.78171144
-.76220139,.827139,.99284404
-.58847317,.49975529,1.2354089
-1.0727597,2.282473,2.0714089
-1.3690154,.75627971,1.1198367
-.68528282,1.6766628,.08992509
-1.7484482,2.4937401,.95678568
-1.3171499,.00546639,2.010128
-1.0248816,.17757934,.17921412
-.46009631,1.4613023,.78344922
-.21086907,1.5344781,1.7192827
-.58692422,.85712966,1.4719246
-.92935328,.14409335,.39063441
-.32216365,1.6847564,.51687842
-.62510669,.5444116,.46799026
-2.5276807,.0117145,3.0752948
-.96397477,.2429824,1.123774
-.61762046,.48678844,.13016322
-1.0524902,.54120994,1.3594822
-.83589127,.23656838,.634732
-.90922249,1.8326879,.43860848
-.64012948,1.3222499,1.2694919
-.39326665,.7867516,.26493668
-.38327355,.22820522,.37783375
-.39987747,1.6211877,.96808797
-.7326711,1.0499215,.38930774
-.74167812,1.0922906,1.1406584
-1.0172821,.33168434,2.803212
-.27053001,1.8443096,.3417996
-.49803818,.49260432,1.1778508
-.77848342,.3483241,.20776915
-.58130158,.02846895,.77864693
-.81437227,1.7563292,.50498198
-1.1812226,.40016249,.65172989
-.84983246,1.4843424,.99311468
-1.2591623,.15674593,.44704355
-.64543402,.77558852,1.3052005
-1.914968,.7643266,1.9880039
-1.759719,.19888364,1.8422291
-2.532477,.08598773,2.4400778
-.78645855,.31986396,.30934085
-.8849794,.30158876,.54575222
-.83719151,.34986313,.09328025
-1.2559098,.21327921,1.4596933
-.64198054,.3332182,1.6270197
-1.7652425,.05671193,.65628146
-.44996274,.22954611,.9223297
-.75587079,1.6310824,1.3325653
-.91829742,.26669183,.46014466
-.5445019,.69930323,.90904947
-.45749362,1.0037581,.33013765
-1.5621184,.74708633,1.753335
-2.2925632,.66231695,2.4739404
-.35566753,1.2190315,.06734376
-.79207507,2.0382655,2.156439
-.6546158,.62378882,1.2946734
-1.0269578,.10365802,.98842825
-.6763913,1.5724568,1.8193357
-.56661051,.82254103,.24557864
-.91679261,.14401739,1.3192608
-.6120393,.13908974,1.5563763
-.7304515,1.5880277,.54952772
-1.3242636,.38515342,1.48838
-.62095005,1.4832809,.80238865
-1.4289534,.19246476,.13572457
-1.8486214,.27693569,.61329384
-.32464414,.38994404,.06699184
-.73194972,.80111169,1.2798498
-.51071546,1.8314206,1.0500566
-.5645165,1.3767167,.44269635
-.62175462,1.1489959,2.2790355
-.85687443,.47096126,.356567
-.63430033,.02845115,.09630863
-1.1802106,.88895858,1.4702341
-.8185085,1.3029195,.33197191
-1.3978138,2.237912,.82236303
-.68717247,.68822304,.06564643
-.3796568,.82663748,.32760564
-1.2796076,.72871256,2.4373819
-1.135522,.46504842,.63421978
-1.62462,.24637044,1.5053902
-.43382103,.61682198,1.4098538
-1.3587772,.57044539,.32333676
-.68987225,.29068028,.16187681
-1.0553115,.56757748,.61115818
-.29923332,1.1220686,.96298081
-.92183204,1.9280098,.08682841
-.59662232,1.6455526,.57220715
-1.0779421,.54351726,2.4040272
-.61969443,1.2098592,.57918743
-1.0290683,.74929467,.7458316
-.83748172,.93126305,.06521306
-1.263042,1.3620076,.01975296
-.4039005,.82619755,.29049546
-.65676823,.18323567,.09809257
-.86445124,2.1413877,.67870875
-1.3423267,.54416303,.81219685
-.75768135,.31268133,.5350534
-1.157629,.21031286,1.64135
-1.3681739,.19265127,.05924124
-.50317088,.5947659,1.5426163
-.91451349,1.6260276,.95586217
-1.8471167,.13554102,1.4399552
-.97131061,.70616088,1.2076103
-1.0224062,.39994233,1.0768358
-1.7179955,.21460327,1.2596167
-.54388955,1.5990245,.57123242
-1.1233376,.49563099,.5724042
-1.988037,.48771649,2.2403304
-.72260956,.43342899,.812098
-.82233602,1.0009825,.90029153
-.44802941,1.2013421,1.2881993
-1.0630615,1.7321944,2.019031
-.53577246,1.6579531,.40898507
-1.4234695,.83212588,.10195039
-1.0108337,.65836334,.03770986
-1.7251823,.62895151,.42166351
-1.179584,1.8968015,1.4813459
-.74659627,.40695354,.07106277
-1.445421,.49394789,1.3775224
-1.2164248,.01984896,1.5852097
-1.2953856,.73228315,1.3512399
-1.3880404,.74972327,1.474456
-.36071702,1.6007719,1.2621024
-.58583437,1.3784407,2.3188421
-.4306951,1.9300555,1.0319697
-.68879142,2.1435602,.38293787
-.99309883,.76585728,2.6168051
-.83221997,.77751827,1.9838675
-.65683066,1.975355,.30183231
-.59250599,.01713114,.83930903
-.60361854,1.1041188,.19279968
-1.0295803,.40250627,.02651412
-.85704727,.57233146,.13245336
-1.3157942,1.5949363,.56094711
-.9760791,.8419856,.21943945
-.3068806,1.698351,.11441767
-.69363798,.30947449,.26572774
-.60158715,1.2393513,.27393046
-.7606562,.48079067,1.314396
-1.2680826,.32829501,.45636814
-1.5427813,1.5629069,.45003142
-.85019608,1.7655984,.40358478
-1.3381368,.26486672,.65981021
-.31844811,3.2800969,.58014289
-.47802062,.70549389,1.6290297
-.95664112,.10012033,.38101906
-.53422335,.82410382,.6195008
-.76913985,.73322632,.24880929
-.78131812,.2450873,.5346186
-1.6420957,.08685808,1.0061851
-2.633058,.03121706,1.1684382
-.69847975,.52873616,.5417456
-.60032412,1.3317824,.98224494
-.81007473,.50999463,1.434688
-.67052463,.35395046,.56642177
-.53287202,1.4480516,.01039114
-.83841639,.50474991,.34582542
-.65357044,1.2030945,1.229588
-.3524684,1.3784809,.16059518
-.79915618,.62487252,.68598682
-.89314616,.66933224,2.3058406
-.72591918,.68232504,1.26188
-.69886414,.46863261,.370111
-.69757114,1.1655884,2.2541336
-1.0139877,1.3244494,.69440406
-.73054283,.15216861,.13775326
-.30124304,1.2792019,.84607704
-.79974399,.49421292,.61914418
-.68360518,1.0828311,.73727287
-2.3200851,.79033738,1.3200653
-.91498925,.19961451,.49328537
-.96412494,1.2280369,1.1055335
-1.4556261,1.3353788,1.1810123
-2.2931904,.80917105,1.2850516
-.83984129,.86942354,2.6011993
-.77200482,.26720905,.88348508
-.64398996,1.1063851,.35234685
-.54955844,.79881871,1.785563
-.38585105,.3506956,1.2597781
-.58537625,.69267697,.94185846
-.64939796,.01753711,1.0600422
-.42135959,1.2819501,.98580496
-.63439964,.08643392,1.3143129
-.937402,1.9890658,.16332723
-.22370906,1.0778322,.10765535
-1.0316072,1.3356352,.04758348
-.39049517,.98845121,.30922843
-.63559234,.63040941,2.0271682
-.50912273,2.0690659,1.6625043
-.95355764,.77992573,.45833013
-1.0817196,.89683583,1.5510039
-.86381288,.5428845,1.3501827
-.47625124,.73178509,.08569736
-.56530436,.67073596,.98338885
-.81016962,.12437822,1.1040658
-.59555397,.44055106,.26417259
-1.1305367,2.0170515,1.4286435
-.76261149,1.5324908,.14833207
-.90615656,.31979226,.10741625
-.84666754,.67690132,.88774788
-.39640832,.45643645,.56687952
-.4060277,.79105223,.58337614
-.56761331,1.3286813,.5562974
-.37045217,.1852063,.5122344
-.31474965,.11412267,.0258573
-.4804853,.60936181,.27624168
-1.3577976,.56534045,.10632371
-1.1599356,.83972405,.57140627
-.62116819,.45769443,.46139488
-2.7137332,.11063532,.63641816
-.46521323,1.9553261,.61532338
-.99875357,.42804082,.41487621
-.48631994,1.2467814,.78952486
-.75445086,.08342433,.97567891
-1.8862044,1.2660139,.41164745
-1.3744829,.78247414,.71148132
-1.3444455,.32802844,.37949965
-.87374995,.36966267,.79499484
-.59161435,.97589785,.7580088
-.48236833,.61802109,.5767603
-.64900227,1.5972192,.63390701
-.62025724,.1395839,.24514388
-1.0493724,1.0617066,1.6442391
-.52451449,2.2527647,.42440668
-.55233247,.75623253,2.3068312
-.37285998,.43562605,.75169469
-.51937403,.82413888,.45208875
-.76890072,.10415135,2.2220873
-1.5806535,1.8185433,1.3079895
-1.454777,.01439495,2.1228075
-.67216158,1.409718,.34137743
-.83828909,1.5842257,1.0657989
-.51421896,.80682311,.32149281
-1.3934675,.24850353,.24260701
-.8807948,1.8598885,.50922375
-.82321411,.18608342,2.1762085
-1.1658271,.52344291,.49832457
-1.2384236,.82882275,1.1700595
-.69773513,.07221259,.8664509
-.5223991,1.2422714,.62967593
-.22845462,2.3672237,.15575546
-.16496441,.59816747,.53421206
-1.6813557,.00602488,.10782191
-2.0530662,.16602564,.0010547
-.49058398,1.8185567,.33735498
-.5532739,1.5531913,2.0535274
-.58188936,.52967478,2.002865
-.96250193,.60933744,.23479509
-1.0824039,.2952653,1.5451438
-2.0702033,.3551023,3.4492481
-.46645958,.62933517,.09340047
-1.0848543,2.0277597,.265827
-.25826304,.24580371,.81477559
-.38326231,1.6867018,.96100278
-.97448822,1.3109962,2.2996427
-1.6224489,.29696596,.13624301
-.69751963,.14014745,.23977626
-.72420334,2.0306975,.34474347
-2.015883,.22531163,.00143381
-.41132032,.7436807,1.812359
-.48890329,.31230206,.33474974
-.48959735,1.2501434,.22708133
-.92844014,.8415243,.43496174
-1.3303404,1.3997559,.89586172
-.27357496,1.9890797,.98637099
-.53205956,.2378471,.32644628
-.71733615,.09024173,1.3772683
-1.6293256,.31087192,.98179159
-1.6116175,.03647707,.09560353
-1.2672247,.7544088,1.7705644
-.30030107,.7004221,.27351169
-1.1838084,.4023581,.05195873
-.70378445,.40189092,.31782099
-1.0119859,1.3859827,.44045085
-1.7502697,2.3987235,1.736127
-.35186952,1.3651961,1.0492336
-1.1150018,.14537631,.74164985
-.51614223,.63925457,.40653232
-.59903644,2.1601725,.0342493
-1.0120667,.06609413,.46839431
-.61274324,1.3834618,.82630407
-1.1897857,.05381121,1.6449018
-.51455076,.54006769,.32504122
-1.2716122,.7350324,.1785463
-.47075683,.35195591,.64876531
-.38036597,1.2344376,.44582063
-1.0990164,1.2167728,1.0377496
-.22279383,1.6983838,.58962045
-.62406832,.76822252,1.0491521
-1.2391461,.48012012,.81741427
-.41349617,.32715562,1.117155
-1.2991091,1.1184302,1.1008389
-.67152839,.61084899,1.8907654
-.80907168,1.8879975,1.3558987
-2.4034699,.08127512,.64159545
-1.1945416,.82347237,.37648931
-.47954773,.70374828,.41831228
-.84329062,.19269093,.93124056
-.40796506,.57663402,.56522664
-.6181288,1.6217762,.41124427
-.61736806,1.8672393,2.3197828
-.7965573,.15949045,1.229645
-.90468461,1.381439,.22132248
-.82096702,1.0143801,.03162025
-.57738647,1.6892781,1.3241301
-.91487874,.81305045,1.9320748
-.47355997,1.545163,.14886556
-.51442065,2.4185746,.09368501
-1.8480028,.65022875,.20013858
-.37432642,1.2155425,.03023345
-.80557033,1.5163203,.14016183
-1.2423283,1.8645338,.71776328
-1.0873124,.83106786,.0472587
-.29341851,.10948345,1.030906
-1.0760757,.37545887,1.1166388
-1.9925139,.40911079,1.4060115
-.90627505,.38182388,.91605694
-.69819141,.42852366,1.178398
-1.7401759,.72076724,.55582671
-.87573438,1.2372898,1.1365598
-.93245993,.91020231,.67228564
-.43640887,.78663588,.06991333
-.48661652,1.8898754,.11222915
-.65573696,.47584817,1.8238717
-.41824506,.70136136,.28937463
-.97309565,1.585957,.91494733
-1.9001738,.82636511,.36019941
-.54566414,.30077827,.20460823
-.84068595,.25953702,1.488609
-.55657331,.40973773,.53877164
-.4510106,1.1934337,.20357659
-1.2310423,.49095595,1.5655157
-1.8108534,.26115834,.8650341
-.80911453,.42850971,.86605841
-.45118303,.13446872,.85307444
-1.4267923,.63283148,1.8132305
-.28745327,.63535621,.63653944
-2.061251,.05011399,.49889417
-.61949535,.68471108,.32639997
-.37657233,2.0627688,2.069963
-1.4190309,.20376382,.41466365
-.91531844,.34805531,1.4574322
-.67812438,.80573775,.57112422
-.56472949,.63870098,.39704422
-1.0050639,.16004889,.22937471
-2.4218531,.06286176,.12397601
-.64776485,.90003907,.7509477
-1.5973902,.03388658,.1997127
-4.1753837,.4194819,1.9272169
-.2988302,2.9907571,.45956041
-.57448728,.35382758,1.82468
-.78762036,.5234994,1.8021271
-.7306326,.39442469,2.0898061
-1.1742815,.24530102,.49857354
-1.3689448,.38108456,1.9121482
-.5250507,1.1470009,.22525611
-1.280644,1.0483438,.21857789
-.95904643,.78205808,1.2037266
-.37397534,1.7919835,1.7590222
-.89315503,1.3557004,.18778654
-1.6505282,1.7296899,1.254029
-.49873555,3.006874,.16106613
-1.1905531,.62102988,.095208
-.87709118,.68945995,.47004164
-.80666789,1.0223416,.06629764
-1.05913,.73929798,.20461955
-1.5131534,1.0838288,.94660106
-.52115255,.71979866,1.5021676
-.80862297,1.5793674,1.3396284
-1.4052141,.08031363,1.3533511
-1.6986548,.57623421,.9915606
-.33665517,1.007323,.92509384
-.62201907,1.4560835,.07390431
-.79743252,1.7472415,.51755723
-.75110666,.43598607,.68673454
-.51746992,.17804786,1.3768891
-.73643542,.4440547,.04625199
-1.8596118,.11611523,1.3065811
-1.4085421,.2084962,1.1270735
-1.1255576,.28004858,.54954988
-.7728009,.00941657,2.3527232
-.71249992,.61298038,1.2189634
-.87753891,.69803868,1.2047472
-.60380476,1.7506152,.16056031
-.43642523,1.7567049,.5109283
-1.1717342,1.3726021,.23092087
-.70980466,.64135628,1.64083
-1.442129,.73534081,1.0492377
-.36691737,.58175824,.28139648
-1.8194581,.53617395,1.3477767
-.44647446,1.1672419,2.4508087
-.76152859,3.5727941,1.8708312
-.96761603,.69564534,.99718368
-1.5004034,.69218235,1.5247845
-.74798222,1.2963253,.03986607
-1.0076486,.55338983,.32774156
-1.0560199,.21025332,.82986953
-.57156663,2.8947951,1.6304619
-1.1635714,.00199242,1.0966138
-1.1305551,1.235004,.08058578
-.8192137,.0880287,.81331152
-1.1035496,.15399122,.07493797
-.94537078,2.1370582,.40800963
-1.0808247,.41956385,.20202581
-.65685313,.05096683,.84796734
-1.3106453,.47706854,.66179597
-.80977048,.28277544,.62647382
-1.7090991,.32194719,.31837982
-.94593711,.36687736,1.7906862
-1.2125128,2.8067314,.62018052
-.68925916,.12455863,.77761484
-.78089495,.55707283,.17596705
-2.2571421,.52032193,.07910224
-.47150873,.2813287,.79115632
-2.0179703,1.6351491,1.1430117
-.24612999,1.835473,.23329896
-.55350983,.28420066,1.9151611
-.97072972,1.8398068,1.5719789
-.30457074,.47093065,1.037324
-.97608053,.25592073,.709864
-.92039544,.24553035,.70214007
-.6601241,.22181409,.08991882
-.79976753,.06786092,.24632373
-.85352924,.81443252,2.8250271
-.62271062,.82502777,.98236393
-.77905395,.01501509,1.2278158
-.78885436,.54488509,.93070764
-.41187662,1.1057343,.17816405
-.84706283,.14627536,.1967761
-1.1497605,.64120987,1.381256
-.83353618,.36177113,.30523233
-.48892241,2.6034423,.91155048
-1.5965566,.80819579,1.1192197
-1.8316792,.16780774,.64039975
-.48818008,.34861393,2.5750188
-.90072287,.96945776,.73839161
-1.3040266,.30696633,.74207557
-.61739803,.28674598,.40569439
-1.6213253,.30216758,1.0921011
-.63670009,.60909502,2.8684007
-.34074727,.75861497,.6880827
-.39299331,.45981323,.59128953
-1.5049001,.57625966,1.3486705
-.87865387,1.469728,.03604129
-1.2413911,.15374339,.69875813
-1.0414973,.90768938,.64100165
-.4954875,.93936602,.93843837
-1.3498981,.35865921,1.0033454
-1.9639526,.79181966,1.5914313
-.84637515,1.185403,.70280721
-.55311875,.35046231,.06914274
-1.5826623,.51027813,.60096434
-.76600931,.36111144,.35837416
-.53836037,1.558368,.29748873
-.5967181,.34466434,.27342395
-.82635414,.62744592,.31461087
-1.8012068,1.5242302,3.0039928
-1.0977343,.2516611,1.0239776
-.80985453,.09626639,1.1933643
-1.1076724,.1600216,1.2549614
-.63557532,.50436694,.09626237
-2.2277533,.36484665,.48904924
-.61274198,.47881427,.12159163
-.69528455,1.8226499,1.3253483
-.74300686,.81761726,1.0009118
-.57138609,.51226415,1.3670228
-1.2505554,.00451658,.45767851
-.61990792,.63159251,.92950607
-.92127863,.44504526,.45662276
-.29459509,1.7923695,.43062251
-1.453969,.07524621,1.6258178
-2.1216063,.10845814,.11450417
-.99385155,1.1058063,.90652884
-.83783455,.68685486,.49310143
-.35188969,.92336229,1.0729088
-2.4801121,.3519244,.59779366
-.60108488,1.274171,.24324644
-.61204315,.05217334,.51886123
-1.4433688,.32048532,1.9067078
-.49083036,1.4719937,.80007342
-1.3895197,1.5068329,.50610219
-1.1352488,1.1347069,.16043384
-.5356452,1.3432936,1.2547773
-.80806779,1.1654419,1.2203526
-.64154119,.54005678,.14741054
-.17744258,1.6183663,1.6862233
-1.8795379,.67793534,.55683978
-.53370697,.45906867,.47254586
-1.2238972,1.0579099,2.1557399
-1.6211509,.17201829,.74032739
-.76610758,.87300569,.99296827
-.89826598,.47434659,.17248969
-.36230036,.79172896,.69498822
-.36488664,.50285006,.01316966
-.91001924,.12792896,2.1829183
-1.1394228,.56009777,.89638675
-.55249811,1.2118242,.43493509
-.66676424,2.8606561,1.4970726
-.58452741,.28317196,1.5401
-.72432209,.97386167,.71780532
-1.4222959,.71578037,1.3667082
-.73597306,.46439972,.38672457
-2.511781,.10704709,2.375539
-1.1383402,.76770664,.62189196
-.866667,1.194843,.86623203
-.51121443,1.4243432,2.1394467
-.37313285,.89883505,.2250231
-1.2129844,.1521672,.05832811
-1.2190912,1.4028359,.57587
-2.7798078,.67838909,.30416175
-1.7140505,.36575618,1.7901446
-1.1958926,.80436021,.15065568
-.89184088,.69691346,.30742618
-.30094891,.22880303,.27583015
-.49130916,.76991183,.92864857
-1.2052084,.60106556,1.5408949
-.56817274,.46896611,1.0358537
-.4099431,1.9026574,1.1607759
-.34779462,1.3705679,.26715518
-.83554609,.81885753,.33994077
-1.0622858,1.2724545,.94632003
-.46979957,.30896972,.11196456
-1.2195582,1.1368315,1.4380306
-.55268588,1.8318307,.22560627
-.3756768,1.4155855,1.0601858
-1.0649378,1.4463317,.22782935
-.65848468,.5487052,1.6855997
-.53767634,.21119089,.70569747
-.4359768,.05261301,.25423767
-1.0752246,.34250394,1.9171181
-.98839475,.1579482,.49638676
-1.3698835,.78381409,.40539652
-.45565064,2.5221558,1.8442277
-.38602028,1.3715377,.6499424
-.43658727,.12086051,.14889125
-1.6218801,.06957967,.98841212
-.80256432,.03195471,.93311592
-.38213782,.17619462,.18341746
-.90566923,.9725128,.24849068
-.643097,.39475278,1.7275628
-.50340468,1.9450516,.06562512
-.53810969,1.1042006,.25627192
-1.4786105,1.2002151,.33356379
-1.2867976,1.070243,2.1595483
-.53038799,1.3886117,1.0227628
-.67096294,.83766513,.28096342
-.68019355,.42878965,1.2116591
-.9397978,1.1621178,.33854705
-1.344763,.54103922,1.3895316
-.71986065,2.0761324,.92980509
-1.3418276,.51065791,.3262322
-1.7533063,.7838897,1.31761
-1.1983786,.355384,.10340343
-1.5793887,.43833996,.96615129
-.6278698,.11930799,.96131603
-.62968477,1.2340262,.26827687
-1.5942333,.76684404,.6693262
-.67758472,.87569813,.00664289
-1.2712776,.09013936,.60853283
-1.3511383,1.5986536,.69458402
-.38276248,.20097671,.05887844
-.73595226,.08319695,1.3262086
-.89247253,.4099307,1.6438132
-1.0118447,.54052705,.03143317
-.92250606,.15029452,.30650815
-.50879851,1.186633,1.2700808
-.42862897,2.3196728,.67737108
-.87385158,1.3515091,.33038932
-1.1999889,1.1415769,1.7371516
-1.3007761,.5485127,.3608592
-.9555448,.7161554,1.8032571
-1.1613875,.89119873,.21000528
-.7962876,.10422037,1.3314469
-.45872745,.12495687,.60604358
-.75921898,1.0546375,.7102083
-.74127223,1.4055777,.07016634
-1.036459,1.5033127,.2636248
-.63941783,1.5571868,.38469174
-.2732381,1.03485,.96875748
-.43700741,1.1185393,.11178924
-.61962105,1.1625814,1.5709813
-.39360145,.47402241,1.6130873
-.26496445,.97863579,.28866067
-1.2391926,1.4911082,.04831598
-1.5115885,.01842948,.11244772
-.90989531,1.0129922,.64553684
-1.5618796,.13540411,.1876748
-.93674217,.71566213,1.201416
-1.2325355,.16572848,1.4086916
-.78281401,.08582359,.64507746
-2.7541556,.31852128,1.1592708
-.35689356,.20904514,.98471452
-1.5348666,.27440475,1.2246321
-1.1422011,.26803303,.063684
-.51775046,1.6291003,1.2145712
-.58356338,1.2791543,.8257525
-.76134362,1.4101825,.97366453
-.57334929,.06901676,1.0230312
-1.3999603,.49503669,.2872782
-.48024172,1.2864187,.70007297
-.73738832,.88685147,.11068244
-2.7273041,.59257863,1.6392157
-.93035643,.72523762,.99105832
-1.0549037,.26197052,.2280544
-1.8199049,.30692243,.36073252
-.71239736,1.2608415,.38118938
-1.0359107,.80432102,1.1567051
-.49262176,.17861039,.53013791
-.43202238,.97919027,.55590133
-.66071978,1.400111,1.400415
-1.9657915,.49796241,1.3561797
-.33427167,1.1113247,.08180061
-.57769085,.14240797,1.25337
-.76235912,.50854986,.98883396
-.8751913,1.419262,.55471368
-2.9285688,.36428746,1.3110528
-.78676589,.38500243,.82185225
-1.2750626,.00018656,.74326358
-1.3968645,.31576633,.22673622
-.67796616,.39964425,.763272
-.86795773,.31399652,2.4490545
-.51442971,.5083159,.35068829
-.80948666,1.715195,2.0857548
-.70427526,.93708304,1.2067796
-1.1220805,.80778209,2.7004902
-.91435867,1.1260814,.61771656
-.67004833,.37033825,.5037842
-.53716544,.60256392,1.1050272
-1.1081809,2.2046373,1.3835473
-.41119082,.90922989,.4289048
-.49853647,1.0836564,1.4597534
-1.0804488,.26063521,.14425277
-.97154408,1.4479977,.30333989
-.62644525,.36837246,1.9894579
-.92109485,.02471389,.1746876
-1.533768,.01231696,.09710636
-.40711525,.21592824,.13076566
-.74017863,.41351094,1.0318024
-.37238622,.77950237,1.9683112
-.50744362,.76732063,.36564608
-1.0593553,.525885,1.11888
-.42053592,.00323394,.19264185
-.75609264,1.2446845,.39598059
-.75379246,.55862251,.27392173
-2.0249704,1.6587176,.54849519
-.47359822,.98797277,.01248531
-.30116325,.51789042,.63080927
-.71399641,.95754895,.45612286
-1.040452,.70606627,.55924975
-.46676226,.43145642,.29567431
-.78921385,.87643186,.9936222
-.86485404,1.5324762,.74505987
-1.9437816,.347269,1.5711377
-.80910315,1.3368288,.98066715
-1.0450173,1.4083568,1.1958272
-1.3784325,1.0006028,.42846603
-.89334683,.01122726,.6353613
-2.6355088,.23405906,.75138271
-.66392961,.41529735,.08998737
-.48197043,1.2034629,.52978037
-1.5713788,2.3442478,.69593803
-1.8172757,.29426643,.0466583
-.82767742,.70205374,.4235372
-.5446963,.8099782,.43146394
-.56766858,1.369059,2.0407427
-1.6156563,.40540004,.6511886
-1.0676438,1.3211634,.15405812
-.58481042,.85258151,2.2489273
-.69930035,1.2457669,.07488785
-.91829678,.51900166,.24754885
-.50108323,1.323255,.36327127
-2.2635166,.20409981,1.3235404
-.85080423,.75600585,.70530967
-.79761051,.09929486,1.7516022
-.90545565,.232963,.23414673
-1.069568,.20623032,1.4504274
-1.1284647,1.3120873,.15908531
-.47209667,1.128648,.54172295
-.58617294,.30017211,.20612666
-.99333431,.80565083,.61290054
-1.0347847,.34432396,1.1830741
-1.1934062,.68512099,.90072797
-.50942355,.87700056,.11982948
-.66461041,.64905252,.5956273
-1.1958137,1.5493316,1.0426218
-.33023367,1.0324499,.63506838
-1.538201,1.2779545,.98129104
-.38719971,1.3236419,.07012657
-.68219019,.47080449,.00389731
-1.9799862,.19819066,.02571981
-.98040857,.84760885,.77063871
-.49707268,.53814,.78853573
-.71272874,1.6437446,.44389283
-1.17044,.16480843,.54270096
-1.5882818,1.0894734,.44595309
-1.1462666,.31071823,.48213927
-.66408036,.56936915,.56697723
-.74232194,1.1029121,1.5872314
-.53017133,1.1603051,1.0287205
-1.2264511,.29723277,.02698276
-.50940739,.80436702,.29035998
-.84429554,1.9156868,.31353273
-1.0607504,1.1793422,.61122077
-1.1602293,.51033406,.55021887
-.87020522,.42951148,.24835494
-.33033855,1.9832097,1.5492628
-.76038281,1.2166916,.33997072
-.40447287,1.6346565,.24576808
-.52356434,1.4712571,.74963731
-.8931151,1.1981047,.14060645
-.79414603,.18142717,1.994365
-1.035516,.68381711,.72038351
-.81090739,.00988991,.97576977
-.99491158,1.1726551,1.5064769
-1.6976702,.34290207,.30196698
-1.2014968,.96330047,.63601645
-.51939451,.12353753,.2984478
-.46251733,.94011003,.14392633
-.93443845,.9031648,.80413507
-.45808029,.58040902,.05206506
-1.5008795,.57964485,.27510871
-.39124541,.46674748,.74168503
-.6847601,.62367884,.83322141
-.49597776,2.0712316,1.8522438
-.60628126,.59470948,.22607232
-.63987839,.26215608,.36751866
-.58343959,.73311267,1.6427069
-.26057947,.54113532,.00345989
-.51984445,.9652827,1.965922
-.46781713,.77915984,.16789732
-.97827927,.3222233,.25786299
-.78552019,.64365296,1.0818581
-.59798683,.56964917,.24801721
-.47709953,2.2685714,.31266807
-.77128018,.41962906,1.9982124
-2.2051108,.0211038,1.0934447
-.85474623,.73740726,1.7664138
-.34389273,.74912461,.0238638
-.34945171,.3550006,.69974344
-.40235655,.43185333,1.2327339
-.65886968,1.0918317,.60162251
-.94684755,.81143377,1.161885
-1.0299091,1.6691315,.54919023
-.87561665,2.3829511,1.0332899
-.74600728,.81755432,.63593055
-.77754925,.72024039,.35243817
-.5463928,.62181592,1.1207949
-.86031467,.84930459,.28999115
-1.5219312,.14761034,.88505379
-.75039726,.79826223,.73855589
-.77138089,.75042132,.16169095
-1.0534423,.32042235,.00978194
-1.1807698,.33492346,.60221821
-.8275199,.25552838,.17215926
-1.3705091,.36649148,.56827031
-.56580832,.46465681,.3007225
-1.0256161,.00440828,.43163491
-.65438749,.75845277,.36853074
-.680603,.75126285,.19255466
-1.3071393,1.6321924,.79024223
-.92766825,.88525212,.28512116
-.60476167,.00136505,.81584578
-.27521816,1.5384405,1.3906107
-1.1913202,.12370752,.31750206
-.74034668,.27569314,1.3624496
-.49010945,1.130945,.01812547
-.88927006,.23393336,.18573565
-.96187926,.49753719,.77224314
-.47889287,.34526336,.61090872
-.46937899,.35968315,.32371447
-.61173685,.77529923,.20416265
-.65040599,.47161402,.14006881
-.2723619,.71294398,.50482025
-1.0938859,1.4486346,.18421581
-1.2169337,1.2321304,.60782998
-.42160566,.83538335,.09845654
-1.0069618,.80480882,.57169294
-.57661214,1.7214572,.81449687
-.6713563,.01480615,.45771341
-.76861909,1.0599057,.40015685
-.47265991,.60968309,.65493804
-1.3207577,.06436513,.70945293
-.97673952,1.0231431,.13223341
-.61261669,1.0656468,.31442855
-.38056626,.9566321,1.3365578
-2.6175928,1.0029211,1.2039503
-1.6339986,.02082834,.22060208
-.75652628,.26765743,.94545867
-1.0838328,.48402493,.41209927
-1.8646867,1.3212638,.02100569
-1.3932974,.30894028,.95596626
-.55067059,1.0912221,.46657621
-.98341999,.17381381,.67729862
-1.4180468,.62650999,.66951264
-.62781567,1.6161066,.60268954
-2.1328284,.9259162,.2944042
-.64686667,.61886948,1.0291637
-.39372188,.39872019,.27937006
-1.7365695,.69588825,1.2224137
-1.6909363,.19007459,1.5678745
-.66203034,.54612555,.63526714
-.68805482,1.6203057,1.0271968
-1.2257052,.14897809,1.0768788
-3.7204339,.40467591,3.0439615
-.75747779,.50419695,.74409599
-1.2588614,.6930946,.82711834
-.53262254,.11356961,.51054044
-1.7217474,.59256709,.16253834
-.66517192,1.3717355,1.5563203
-.50045192,.28720386,1.0541726
-.87973403,.02452375,.84998595
-.62354216,.75373833,.69529924
-.74593601,1.3559179,.14528833
-1.1958507,.13800135,.23393488
-1.9263404,.09210331,.62908298
-1.9447111,.01859842,1.110169
-1.1792278,.94350801,.49981458
-.90535016,.75751591,.25608139
-1.7479407,.01739121,1.3421645
-1.2314698,1.0929773,.25002629
-1.1407876,.92737574,.58939174
-1.2729861,.60681242,1.8304895
-.40918529,2.5767703,.4494222
-.7362723,.69768196,.25235892
-1.3185693,.18480898,.22172404
-.36874916,.59512373,.19734452
-.83949696,.38655892,.0115339
-.96832815,1.2228631,.54184813
-.69045879,1.3930051,.79916112
-2.5078279,.31249757,.32300849
-.74419644,1.3278911,.27475781
-1.2295528,.16347262,1.0945787
-2.3224435,.31676138,.79430499
-.7785673,.35784802,1.0984166
-.84405715,.00788304,.82867249
-.62820639,1.7353185,1.6150203
-.59417398,.1880752,.68265457
-.53822179,.24491805,.59881123
-1.8114846,1.0658739,1.1841758
-.84472275,.00998699,1.4210596
-1.2914345,.33488178,.99673978
-.44481366,1.2235906,.18723802
-.25808908,1.7750425,.11313186
-1.064445,.1013922,.67791292
-.99466167,.36896271,1.1544787
-1.4420904,1.021753,.28144562
-.8598093,1.550462,.94360815
-1.3712898,.06158803,.77060599
-.64038663,1.3171013,.15785221
-1.0874698,.26709919,.61308475
-.9530867,.21897168,1.6048986
-.55276739,.89708771,1.288516
-.40168867,1.7376697,.28803378
-.83525164,.90506722,1.341264
-1.1673824,.83229621,1.0128982
-.95671902,.19888941,.74625189
-.69834246,1.1666288,.35985208
-1.2385006,1.3034088,.84765819
-1.0289578,1.136006,1.0322386
-.91718136,.03801559,.96497694
-.52199617,.98842325,.04676256
-.56392919,1.328582,.83257519
-.48531561,1.3048788,.85904626
-1.6325216,.72950298,.9418193
-1.0327797,.0807229,.30262822
-.4063755,1.0754721,2.7876422
-.2968961,1.0632601,.73116058
-1.0678158,1.2052045,1.0175431
-.50309417,.09496855,1.129563
-.39034915,1.8363493,1.8141336
-.99181705,.56482318,.1173331
-1.0103713,.37036289,.7349398
-1.8445516,.24457049,.31863391
-.52799854,2.4087518,2.2577044
-.91523339,.75397501,.19054067
-1.2374792,.00793577,.07779027
-1.0938662,.76342187,.77892171
-1.0135699,1.8457832,2.1155583
-.56935469,.56066996,.78546347
-.82193925,1.4883098,.40669771
-.83125527,.35212897,1.0610869
-1.2532145,.77737793,1.3091971
-.90274613,.56500616,.07934902
-.57565596,.31568948,.2261268
-1.0660466,2.339028,.04102253
-.94021713,.92029125,.16764334
-.81333787,.38290331,.91581693
-.31764713,1.3957865,.93789137
-.46865766,1.3097816,.24651337
-.73081947,.24640854,1.8637326
-.3450871,.86604825,.94063338
-.32739513,.56220341,1.1725088
-.87181157,.45443429,.55863647
-.84187074,.94429462,.25914636
-1.1980217,1.2415956,.7937599
-.7098216,1.8480172,.64246352
-.89400301,.08879554,1.6807445
-.86203649,.20225906,1.2035211
-1.4600309,.24398895,.04357859
-1.4093526,.07807779,.05116856
-.56817775,3.1169757,1.2559975
-2.006083,.61055232,.77162846
-.41848395,1.514876,.91661354
-1.5703233,.14542967,1.3422861
-.51647736,1.3051644,.39260214
-1.0194889,.1515592,2.5430919
-.61245554,1.0332405,.49402868
-1.1601385,.32390013,2.7114815
-.87572854,.84039271,.22138775
-.54642462,.92239487,.9892346
-.6058341,1.000647,1.0151919
-.43171251,.27173573,.12048994
-.95996286,.94839013,.41218081
-.53442666,1.9000519,.42938381
-2.2852163,.289215,2.1084575
-.78415538,.21184007,.12283441
-.5537301,.43595579,.42996944
-.86247297,1.0818885,.77981581
-1.3103277,1.6883825,1.5020784
-.92354011,.07492623,.01352091
-.91115348,.25775655,1.2661624
-.39447978,2.630399,.3815036
-.6735393,.79133162,.00364863
-1.2665882,.19351,.99591352
-.70865265,1.0854511,.07275569
-.77379542,.1063986,.55973126
-.23713347,1.4290601,.51553733
-.72891981,.82175736,.60679402
-.3529138,.64566293,.73915756
-1.3591836,.50587161,1.3693161
-2.936685,.41704472,1.7867627
-1.8820433,.20341325,1.9208747
-.67513552,.30770001,.10420719
-1.2520921,.24438077,1.1751671
-1.4093181,.09978443,1.3708791
-1.3985009,1.8862182,1.5242258
-1.1995322,.48339095,.33028649
-1.1211812,.5532318,1.6776817
-.60675011,.98902574,.59192099
-.26283937,.01482879,.2815233
-.56934707,1.3059711,1.1109477
-.56462005,.67528626,.55524766
-.66674094,.30057934,.48442782
-.75367157,.50889946,.18896251
-2.2359838,1.8164242,.15573693
-.64129256,.51416854,.26572334
-1.9845817,.58327633,.86598655
-1.1381597,.573722,.78631773
-.55681841,1.7214499,.69272318
-.66243468,.39868642,1.1109605
-.93117495,.01660118,.55162537
-.86511939,1.1481676,1.5657609
-.94119411,.09333623,.4540228
-1.4622665,1.8936824,.0996708
-.38990299,.80079218,.13434683
-.79660349,.5787599,.59712722
-.73177774,.38185957,.41059239
-2.0787811,.86196721,1.2484186
-.64641804,.63618485,.66664923
-1.7737367,.46149974,1.5495593
-.35698029,.19053813,.19093913
-.98422636,.13777967,.22421038
-.37748095,.80537342,1.0908697
-.68848486,.1820567,.5230857
-.63381507,.86187628,1.8032455
-.29263632,.68472355,.41844488
-1.5885882,1.1612382,.10476046
-.65380952,1.68499,.07081522
-.73206644,1.519829,.35606772
-.95070649,.08462731,.63035421
-.73285875,.62710669,.13527106
-.64716864,.71908335,1.9207691
-.66239759,.02541515,.62448023
-.31127816,1.3012115,.6184517
-.28532284,1.8397616,1.3988819
-.91889806,1.3692298,.64794922
-.86192952,.30559414,1.2348652
-.9975829,.23675019,.7864108
-.93510686,.6217817,.02530025
-.82044107,.01350366,.23175874
-.7266481,1.2103752,1.1004216
-1.8169802,.13662322,2.4956374
-.98410359,1.4837008,.17293969
-.49129919,1.3727669,.43054081
-.80861689,1.744274,1.1232031
-.50415848,.79986803,.93087754
-1.5288055,1.1770154,1.1205965
-1.089026,.00390467,2.5049975
-1.1464736,.6938321,.14341099
-.90609432,.82835513,.99419728
-.69107187,.29738907,.94782323
-.8917075,3.0130174,.188701
-.36188427,1.3085148,.44792623
-.68576597,.47221481,1.2306568
-1.1350803,.33978001,1.5639099
-1.2598016,1.9092177,1.1752768
-.97905679,.75647872,1.232763
-.44834571,.46607487,.21855264
-1.4171768,1.4295896,.84309762
-1.2258354,.14390368,1.0577613
-.82583637,.28154716,.50212372
-1.7053682,.77126459,.50918785
-.92727419,.01830864,.07451526
-.96528774,.31309991,.39512968
-2.3652654,.23569755,.0288637
-.86261115,1.5393847,1.125197
-1.6008458,1.7109201,.06707842
-.98258956,.47156316,.97365017
-1.2068628,1.442175,.32277629
-1.2584177,.93751792,2.9326619
-.52118442,.11112007,.82578593
-.56672804,.72226215,2.2784428
-.75013759,1.0623337,1.494589
-1.1703095,1.1201885,1.1039587
-1.2641918,.23624388,.30314461
-.4240268,.80186281,.36734486
-.4085195,1.3095011,.52816119
-.69794096,.35161185,.68476285
-1.6599648,1.1099807,.33786471
-.73074892,.17161436,.636968
-.64683913,.14311596,.37098226
-1.2052034,.29465705,1.187894
-.50601707,1.0731439,.75642253
-.68189275,.52498667,.93951007
-1.9187289,.68820193,.20708386
-.36675383,.94477553,.45778196
-1.0044712,2.0002861,1.4352696
-.68461447,.69570527,.81192861
-.59805474,.64369795,1.358972
-1.4605365,.4373075,1.5244434
-.64310555,2.4466932,.32407864
-1.1539227,2.185798,1.3995595
-.37885703,1.6643323,.8964012
-.676067,1.7315915,1.1384116
-.68715512,.73093193,1.4359138
-.48909905,1.2972191,.7570837
-.89367049,.71120826,.59914558
-1.4464409,.68018032,.96821747
-.98501137,.32537487,2.3527589
-.79841572,.43966139,1.5576068
-.51789823,.39317996,.98197015
-.49483765,1.4551583,.45002712
-1.6181674,.86779012,.15997324
-1.3924789,.5888491,.7890788
-.76426155,1.0398432,.82437169
-1.0389534,.7100779,.05904546
-.6423382,.43823895,.66143516
-.46974539,1.0947567,.92678019
-.80200722,.82311556,1.2046443
-.96586975,.69067478,1.3992886
-.9504867,.38848188,1.2799194
-1.2022894,.39787489,2.3860689
-.41652704,1.0208722,.0809956
-.79833556,.67568764,.39996743
-.34122165,.27060877,.15700396
-.63406271,1.2180399,1.195629
-.64371918,1.5126704,.24877916
-.63322853,1.3903967,1.022056
-1.033667,.4954481,.08607621
-.72653142,.27767973,.53842957
-.3154157,.32557568,.34146645
-.8336426,.50141849,.39548732
-.7797432,1.7372215,.61027142
-.95013181,.53510867,1.3576788
-.31977312,.8100018,.32658873
-.99927103,.01666901,1.5804824
-.79788344,.11823023,.21552165
-.87552775,.00702381,1.2465134
-1.296689,.38594663,2.0038144
-.37205147,1.0798858,1.006236
-1.0818835,.6024171,.33605099
-.69325187,.88598038,1.8750656
-.70750511,1.8382527,1.2486515
-.81542197,.58644241,1.0137738
-.26795637,.97404056,.0619074
-.80367518,1.2697691,.71296723
-.27647334,2.0303626,.04965743
-2.8578347,.15395631,.5978705
-1.0879528,1.123781,.21087132
-.6618088,1.5124374,.15339939
-.29941076,.9512785,.10265867
-1.4670512,.17839555,.20910411
-.40003125,.33300624,.22523408
-.5518588,1.4726383,1.9004909
-1.3714618,.06509529,1.0892517
-1.3703366,.02942755,1.0504637
-1.0227662,.48632841,.33719714
-1.0095991,.15510117,.82248745
-.40623792,2.1990779,.14549843
-1.1065274,.13356628,.03507055
-.74258519,.58884995,.25807917
-1.4867577,.21133449,.70279024
-.48382803,.39185937,.30262342
-.85369167,1.3321394,.6666782
-.40167736,1.4275014,.56610702
-.50566525,1.5555359,.30484603
-1.7247661,.46678134,.272483
-1.0445193,1.1745319,.81350679
-.72506343,1.3431965,1.9136622
-.47045734,.45580313,.40075801
-.72381788,1.2648142,.01665561
-.6944656,1.2234853,.59927937
-1.2164176,.79812949,1.0346797
-1.1355357,.55227929,.31358883
-.56166822,1.9444378,.60428153
-.43552722,.51546808,.67764419
-.74444157,.25510289,.33865169
-1.4598086,1.1816779,.60172065
-1.4256298,.85557812,.64847864
-.62420403,1.8167196,.06452987
-1.1308568,.21300551,.3468498
-1.1376986,1.1541196,1.0467368
-.92053706,.93071093,1.2938251
-.76151722,.42476482,.60596031
-1.3650622,1.2257791,1.2677555
-.30236083,.88700568,.72262535
-.5560461,.83743495,1.4795176
-.30170319,1.429853,1.2780745
-.60217258,.68297255,.20761636
-.85322198,1.5698187,.50262399
-2.3370368,1.1007938,.86320198
-.6207703,1.7637997,.14513842
-.7972313,.40540248,.54899772
-1.0523979,.86168708,.1032432
-.78271549,.78983644,.07834412
-.62527149,.13225446,.82801778
-1.6155044,.37964752,1.261282
-.90710598,.12270769,1.0396079
-2.0286382,.07094461,1.8607088
-.62771253,.48497744,.24641304
-1.0504819,.93367938,.6240237
-1.7451387,.04508152,.69736322
-.76740026,.80907143,.28193373
-.8873586,.06664064,.78907429
-.84576301,1.153012,.69098775
-.63089683,.59981721,.84347543
-.58955094,1.2185373,1.0558727
-.49097407,.16138794,.11744311
-1.9491191,.51178316,.87699477
-.55042005,1.2778814,1.4401231
-.56719912,.13286783,.29026716
-1.2986942,2.7504677,.35187813
-.41372498,.78799143,.65134417
-.43301172,.51881097,1.8896643
-.65091522,.13362775,.35890259
-.59337187,.01005524,.05041317
-1.1219404,.0668998,1.9711
-1.1164652,.91703101,.21652337
-1.4802395,.53783906,.14517819
-1.5429275,.58694151,1.2395215
-.43012705,1.2282247,1.5123571
-.86485881,.34567125,.95087876
-.61794905,.17131056,.27908998
-.85025621,.31650724,.34681363
-.71385252,1.5618382,1.2737682
-1.2443366,.24723048,.05667878
-.30733284,1.3149684,.13628429
-1.4049518,.64628842,1.9201966
-.36198371,.3374703,.89010134
-.4108468,.10297645,.30283391
-1.5937085,.91493351,.84111064
-.89022658,.64692713,.79507986
-1.0734591,.7608731,1.1045411
-.78983428,.54508182,1.1142996
-.39662201,1.2870549,.39155406
-.70509669,1.1253859,.76574268
-1.6849402,.37060868,1.7526696
-.94543096,.13523647,.075356
-1.1925102,.37400218,2.4949719
-1.0785928,1.4465582,.17735459
-.67447454,.44690754,1.1003337
-.84266339,.23030085,.19717519
-.93002563,1.4352589,.01106358
-.68407462,.4450028,1.2793245
-.6379383,.03859398,.33515866
-1.1134044,.12942604,.71677845
-1.2781103,1.164475,1.9456032
-.69082841,.46584318,.40591376
-1.3068209,.14285623,1.0511892
-.44867558,1.1974174,1.4038438
-.71794404,.566174,1.1789161
-1.0629861,1.6542122,.88024844
-.88838505,.78933894,.74891166
-1.1046818,.64957232,1.1455174
-.68325754,.48956039,.01121371
-1.3670602,.4344176,1.2898032
-1.4141057,.42020732,.28094147
-.57660619,.16745433,.02247702
-.89094055,.18488151,1.4822187
-1.3558041,.52690643,.28161232
-.98760546,.77122067,.91088877
-1.3122681,2.3927269,.32829065
-1.1998831,1.0441538,.1896693
-1.1672962,1.2021233,.83775775
-.87556621,.13937991,2.1927613
-1.2184964,1.0041144,1.3676579
-.39169435,.18979085,.89415448
-.77309371,.42306019,2.357895
-1.5653257,.06108953,.65590459
-1.5506223,.31517455,1.096834
-1.0672689,1.4111247,1.28636
-.65176461,.44089631,1.0058653
-.53182723,1.852216,.10638827
-.88205379,.0989698,.46895725
-1.3430813,.43612176,.96586642
-.68210312,.94245745,1.5809269
-.74259747,1.2345987,.32823111
-1.1229169,.53244201,1.4804996
-1.2843832,1.0199471,.0802778
-1.2485027,.4151223,1.3164174
-.67066034,1.9024916,1.0006911
-.97041213,.10946218,2.2515413
-1.8894875,.63379995,1.4761873
-.38842749,1.3141273,.10213367
-.89732826,1.9376087,.75035972
-.45153872,1.3509332,.07942329
-1.0424367,.09582492,1.2781409
-.87095344,.09743394,.14524531
-.94119222,.09292514,.30048576
-.58788065,.33993393,.41732409
-.21567439,1.3480326,.0800613
-.56773419,.10016199,.26868854
-.60916161,.94498645,.13579456
-.70466127,.44100012,.52682877
-1.5690815,.60058283,.99549663
-.45908382,1.3794024,.08637439
-1.9803725,.31013132,.36269594
-.94274623,1.7175403,.38025841
-1.1747821,1.2656415,.5294654
-.86386798,.97909778,.64204166
-.93984409,1.3724919,.30028306
-1.2983545,1.5995039,1.180487
-1.4209478,.55452019,1.1815225
-.40422693,1.1210913,1.5947088
-.49524622,.1778583,.48292315
-.87636492,.1985667,.66244898
-.40349032,.38197043,.86527713
-.55080678,.69501661,.16787043
-.82958318,1.1363721,.61740013
-.43252987,.65382835,1.1583485
-.45925177,1.517449,.18581936
-1.0976001,.63288485,1.4848182
-2.1362869,1.0122947,1.156996
-1.0424784,.13522552,.59760053
-.84236232,.12203046,1.3225251
-.46938624,1.3416189,.02284271
-1.0692703,.69077551,.01857791
-.43348623,1.005375,.35816335
-.41044493,.01092559,.14000705
-1.2159907,.30126785,.43122838
-1.3165433,.4079147,.40306342
-1.0576402,1.0412661,.42390407
-.83643873,.39127531,.23244369
-1.4380848,.09969165,1.9274247
-.47853226,.17067129,.64272272
-.86825886,.56057576,1.5598289
-1.9226516,.49658624,1.9265305
-.80825157,.50248479,1.552143
-.67980861,.80820015,.15394015
-1.3817979,.11101308,.19617022
-.90517723,2.0664205,.92725195
-.43492433,.9181223,.68828813
-1.028409,1.4246605,1.7432907
-.5596685,1.9096271,.5737964
-.57956843,1.6860061,.96028371
-1.0305454,.46205698,.08563006
-.65656826,1.1545338,1.156441
-.71416552,.13595004,1.1681575
-1.4461838,1.8517905,.81926529
-.44986785,.66597872,.80409884
-1.5451207,.69973372,.42772082
-1.1554755,1.0060893,.16355335
-.78915339,.04523153,.20695217
-.42748157,.54705182,.46459881
-.24086911,1.6575716,.69380293
-.56632522,.91424185,.95620751
-1.2177745,1.4065124,.60851498
-.99167137,.01651041,.09221667
-.36314934,.92898366,1.5398685
-2.3755488,.35604083,2.3723701
-.80716152,.33084396,.88853942
-1.563577,1.2413979,3.1357452
-.85158296,.2144858,.63394392
-.74118323,.10517412,.52282443
-.53273007,.79656981,.951057
-1.0790319,.4401729,1.6462462
-.90457134,.20254306,.78940819
-1.2820668,.04739933,.86788293
-.75371854,1.0030826,1.5329612
-.39552517,.73462916,.03380393
-.71540605,1.1973276,.97245521
-.44730595,1.288408,.43748769
-.41767677,.0185575,.27792075
-.7642479,.91830209,1.2017508
-.48229993,.4166692,.52454571
-.97248057,.82311421,1.7769042
-.96121333,1.5903868,.87759977
-.66545653,.05885599,.75867257
-1.195815,.52355447,.20389942
-1.6059195,.06595833,.38275
-.84512829,.92141934,.14273355
-.30654824,.11238581,.00113902
-.29508192,.79876788,1.2841605
-1.1258028,.31881196,.10642991
-1.1230205,.00610212,.82853386
-.4711372,.7528971,.42187887
-1.4948916,1.4084126,.6016941
-.70990089,2.0239534,1.9433362
-.95875468,.72517245,.45908391
-.49244111,.63103376,.5296779
-.84409877,1.9454574,.22085605
-1.1515885,.2867891,.67677849
-.84974158,.87939295,1.3530303
-1.5354213,.29069955,1.30613
-.82758843,.49557258,.67092684
-1.1432095,1.5016758,.80645081
-.37635256,1.0392035,.18044028
-1.2584437,.21416892,2.4105628
-1.7502071,.60614081,1.1626668
-1.7111386,.00341145,.32092461
-.3678829,.65986207,.42742112
-.42112893,.34356323,.88790807
-.87066891,1.6447239,.81165975
-.87523186,.11238611,1.4045994
-1.1465606,.22388737,1.7496438
-.43025039,1.1392887,1.0774378
-.35191847,1.4438879,.12171428
-.3276468,2.1591995,.63441363
-.84817796,.36196262,1.7906424
-.67194866,.76566427,.74157797
-.94606788,1.322481,.00719848
-1.1010389,.22053357,1.0608081
-1.0466285,.1566362,.69705856
-.79751731,.17458494,.78571681
-.28710738,1.7219012,.31874361
-.97008606,1.8160183,.53636304
-.77220381,1.6485222,1.1137135
-1.0732368,1.973855,.48496058
-1.1174558,.12062681,1.1530647
-.63425629,.43877853,.02365364
-.94605311,1.1952815,1.8442832
-1.9569804,.47255778,.31835447
-.39275807,.65687061,.22103229
-1.1058415,.27776472,1.5325138
-.91080919,.81561858,.2864884
-1.4796189,.0966807,.35011314
-.68982634,.16190077,.80635098
-.74535136,.45738539,.51666786
-1.3794918,.78855498,.58016469
-.95195159,.17586122,.3193137
-.59627113,1.579985,.80916445
-2.2297768,.01488859,.20842846
-.962406,1.3328,.67996803
-.94127891,1.7194369,1.4807273
-.9266049,.33972647,.14585481
-1.5667038,.74421117,.67693333
-.76930285,.17297084,.09362641
-1.6276019,.22923464,1.6925669
-.75739085,1.5620481,1.3113134
-1.1088644,.7717194,.30505961
-.91361539,2.8992909,.63473499
-.36877635,.49034472,.0361533
-.92119481,.84358021,1.0305902
-1.1937202,.98169773,2.6356452
-1.064302,.09180568,.81299094
-1.0358729,2.1185852,2.0559025
-1.8212228,1.7024192,.06198103
-.87610075,.02207269,.10799433
-.54249604,.60947906,1.7711741
-.69181524,.89874556,.10038361
-.85768706,.61967968,.29404675
-.89158356,.34321615,.48513977
-.7473635,.36569591,1.0112513
-.60817742,1.5896862,.44205796
-.58494584,.31339078,.51894401
-1.296543,.48201255,.14197796
-1.5313662,.05315892,2.4536729
-1.0523008,1.3705425,.41024384
-1.0869244,.20643473,.94757325
-.83738237,.30185802,.54810077
-.70013769,.58016741,.7281337
-.61608562,.99683593,1.4436185
-.97240706,.09316025,.20723273
-.61715384,1.2046918,.38490316
-.82104018,.42291523,.14527071
-1.3386883,1.8053525,1.0874947
-.6419742,.0631837,.17150298
-.35012649,.41367975,.2635273
-.85868305,.58997286,1.1506543
-1.1599487,1.7822438,2.0695073
-.734218,1.3244475,1.4322148
-.5736147,.23293431,1.2093781
-.99988801,.93431153,.57840056
-.53950165,.14860632,.5242768
-.45147578,1.8859141,.31709516
-.44707785,.82729497,1.2060938
-.49695535,.82512503,1.1417439
-.40440289,.90337322,.21117003
-.89412526,.24466703,.63872391
-.76234543,2.0513918,1.554673
-.82566751,.9508176,1.1622972
-.48914525,1.3158522,.73694981
-.84590526,.46680793,1.4569003
-.83419443,.7026478,2.0868266
-.81299491,.94630913,.97796885
-.64849935,.8177072,.83756886
-.65311222,1.9284479,.41711678
-1.8701811,2.2490603,.34191002
-.68639592,1.8304427,.87379889
-1.7650328,.9168858,.25977941
-1.2917089,.39031664,.34474457
-.63025476,1.3238896,.65712044
-.42198887,1.4127121,1.1676557
-.38409197,.37093228,.89884853
-.58024459,.05525137,.35573887
-.87719042,.66050877,.16387962
-1.1585569,.78634579,.36744606
-.44227368,2.1301889,.34472722
-1.036002,.3058152,.00001275
-.76799138,.24597314,1.7185414
-1.2213443,1.0145093,.62506228
-1.0869715,1.0866605,1.3568948
-.98374562,.11726799,1.4080491
-.54406347,1.3160299,.25353547
-.23987135,2.3422449,.81475371
-.56076912,.3656828,.60206292
-.68899462,1.5785777,.24480058
-2.0837588,.32886483,.53263508
-1.7707565,.29561921,1.0464848
-.53397435,.59685288,2.2651266
-1.1976009,.09978637,.9331032
-.78217582,.63386589,2.2912695
-.7013708,.43987276,.79969408
-.80493675,.194773,1.9038448
-.96961049,.18173098,.11450413
-2.7078791,.97445435,.35358044
-.83015811,.43017363,1.3762965
-.92321551,.26048996,.53638132
-.31433076,1.9887864,.72303461
-1.0004534,.29273888,.31870647
-.63118531,.86786302,.24980944
-1.2131082,.2015377,.54030327
-.69694057,.17536044,1.9058014
-.45050299,.68618999,.73071617
-.51855598,.99629033,.18689581
-.86148071,1.42347,1.7967883
-.89280778,.60569428,.07291367
-.47261092,.34101878,1.639613
-.80506759,.69198435,1.4604112
-.33823771,1.6950179,.37448589
-1.5762771,.92011314,.35473767
-.85646886,.4793868,.19462511
-.79999391,.27373548,1.0680269
-.47687623,.46852207,.289906
-.8841666,.75228656,.23701591
-3.2403454,.06991375,.51201868
-1.3451214,.51823681,.37011043
-.98702329,.30843669,.83647843
-.65792579,2.2817843,2.1032983
-.895216,.17513877,.8414763
-1.5612579,1.0978226,1.474745
-.43965733,1.2925842,1.1801559
-.73982048,.40590113,.34256327
-.50482266,1.8080203,1.2189533
-3.4590782,.69477876,1.0575893
-.5734614,.98956175,1.6937525
-.43487774,.99292641,1.3350255
-.75297414,1.0121156,.53734227
-1.1180716,.02035531,.00093825
-.18871668,1.7935203,1.2106768
-1.7007853,.12265442,.12879552
-.58224636,.00429888,.74489896
-1.0730455,.29163237,.81360515
-.95794234,.13288534,1.5494317
-.52766992,.1379024,.61013124
-1.6231913,.4970866,.5942797
-.78863427,.86167183,1.2029711
-1.2493858,.67727463,.75278604
-1.1053569,.30161996,.05495423
-.87401015,.72987837,2.2560883
-1.9028433,1.1171945,1.0426232
-1.0381069,.92107896,.73508706
-1.0844316,.77519675,2.0275076
-.79575765,.85664067,1.5602707
-1.1640213,.77260325,.46830972
-.54092245,.54642786,1.1359257
-.89825247,.30208578,.00927571
-.32626297,.22252469,.5701289
-.84619629,.84823213,.38865884
-.5470792,.996815,.35885981
-.71904489,.90567464,1.0885773
-.75404668,1.1454797,.7499429
-.56242361,1.5899304,.32456555
-1.0479577,.7128804,.113078
-.96370104,.42847818,2.1286389
-.83154227,.17203111,.9900413
-1.4471864,.38635148,1.0077493
-1.0421996,.7510888,.23893547
-.87072814,.56915,.30374348
-.84881204,.45007114,.32287893
-.58534482,.16188638,.77373123
-.62701877,.80709971,1.189752
-.54678844,.39805023,.83646706
-.8052704,.65421419,.85248099
-1.1294095,.97332184,1.2282867
-.84543861,1.6592821,1.8187934
-.48305994,.52156671,.14002336
-.80130249,.7124727,.03749459
-.43629507,.95240696,1.3726053
-.47514847,.19840223,.58947347
-1.0976798,.22671697,.83556712
-2.1469259,1.2877724,.48912513
-.74310634,.14944472,.96771347
-1.400443,1.5163506,.60554215
-2.5577224,.10895062,.40579713
-.80793545,.18266378,2.4079475
-1.5418656,1.0505313,.77353668
-.76545093,.20358307,1.7837764
-.38193583,.78448595,.01215295
-.73999126,.30520442,.82869775
-1.5445467,1.529839,.72553749
-1.5954663,1.3378818,.09294174
-1.8815578,.15195592,.97015986
-1.1933945,.28916813,1.5370988
-1.3091378,.50724444,.15141919
-1.0904352,.93754319,.90026927
-1.146363,.55742031,.43171253
-.71674554,.82305353,.43719213
-1.884986,.22630168,.60924019
-.5271513,1.11547,1.3235237
-.5727505,.88204676,.89407636
-1.3804002,.70790253,.56658961
-2.9879536,.16513129,.35639043
-1.0975989,.83805072,.9377047
-1.2345649,2.0453922,1.1974073
-.53416665,.44611516,.40427261
-1.4623329,.32659893,.34322173
-1.340545,.09080579,.35500191
-1.1176408,1.3797945,.71432204
-.55731411,.58558179,.69224966
-.59145706,.85356218,.36461696
-1.1414549,1.1013662,1.269495
-1.0455484,2.2881434,1.2785505
-.78533678,.44963745,.15885156
-1.6792519,.7982505,.9450939
-.36608307,2.1735169,.88730128
-.75369599,.67874867,.13030811
-.56650621,1.2479414,.71236702
-.9875515,.61538634,.5516746
-.70834533,1.1988077,.31405079
-.77575409,.63608382,.39298241
-1.1554622,.99036397,1.281589
-1.3832878,.43925045,.189163
-.39230094,1.0929163,.20964372
-.46885246,1.8514787,.5545643
-1.4584579,.62173814,.60976066
-1.9991106,.95397377,.69755076
-1.435107,.4919698,2.004016
-.59233306,.83837571,.33797914
-.56497289,.75098501,.10723314
-1.256717,.94338098,1.1117437
-.65713559,.0356594,.71791152
-.88648373,.06152644,.6352431
-1.1292286,.30827903,.86583192
-.50122516,.59416752,.31212906
-1.5022097,.26795088,.61921293
-1.5733796,.79088631,.37095513
-1.1297935,3.8405946,.63526167
-.45901535,.5635985,.77677984
-1.1924855,.26890106,1.6506061
-1.240718,.28222892,.65678926
-.60016173,1.7323141,.08952986
-1.0633209,.6746998,.97059155
-1.9015871,1.0033317,.41556359
-.79046142,1.4809485,.43933065
-.82830956,.1810409,.25479714
-1.096129,.89493557,1.849583
-.8521548,1.7177364,.86112114
-1.0190714,1.1688656,.21457121
-.62709843,1.3112401,1.3161829
-1.3204375,.01734342,.27403566
-1.9302137,.79765598,.18261503
-.72049732,.39678263,.59882433
-.9949812,.45906315,.61097407
-.5494046,1.3032594,.16743669
-.51250604,1.5425443,.02061614
-.80073031,1.0901881,.32567672
-.84619553,.3042209,.3863655
-.2796237,.8891509,.17247116
-2.2047061,1.6548541,1.255776
-.73861832,.63220254,.34488454
-.91811396,.65487805,.01453701
-1.6129111,.90047541,2.5876127
-1.4730558,1.0096261,1.3456746
-.7215312,.32053276,1.0627744
-1.0200289,.63728318,.22701032
-.58812978,.15989605,.1472998
-.76143078,.25724066,.50379247
-1.0007221,.15547108,.82955941
-.44684569,.61637717,1.4726825
-.75213934,.05854409,.15814134
-.72593187,.83957352,.15216062
-.85691126,.51297135,.29230958
-2.1418765,.36639298,.15672626
-.69645495,.44547667,.73522601
-.47041499,.76368659,.59705386
-.29237239,2.9377084,1.1502623
-1.0820996,.7806713,.57763556
-.40892991,1.4127882,.29407099
-1.1214057,.17590552,1.0365595
-1.2812819,.1831349,.85044709
-.66624287,.20238228,.32777149
-1.3845992,.81722592,.17635331
-.66189731,.30487135,.4710061
-.87735076,1.1846272,.56197606
-.9949029,.33701663,.73243319
-.81959267,.87551781,.00215952
-.82681661,1.6580037,.14084015
-.4754426,.92803108,.33497208
-.61246933,.51864808,1.2873384
-.66301867,2.1160652,.33830564
-.64792985,1.0934317,.38708533
-1.0118064,.7031618,.6488381
-.32838827,1.2125698,1.2206879
-.80334304,.11728235,1.1657609
-2.3546887,.4062394,1.6258727
-1.1732706,.8637505,1.3649181
-.60765793,.10697943,1.1640218
-.57829896,2.0665907,.17339905
-1.4293562,.67713298,1.100146
-1.0409414,1.7212538,2.2663564
-.47889823,.55618229,1.0073306
-1.9549326,.31786399,.02326119
-1.3034476,.63376272,.09980212
-.98548376,1.3313872,.75725167
-2.0841434,.16860951,2.4924318
-.99696994,1.2349897,.21993287
-1.0030184,1.2788742,1.1579368
-.77497337,.47869894,.09850172
-.83944417,1.0697878,.07737703
-.57186688,.30902318,1.2384546
-1.0503099,.39827093,1.1577446
-.92543884,.66862053,1.0230798
-1.6014196,.2373346,2.0154319
-1.2408921,.10250007,.53177604
-1.2000936,.53109336,.68638685
-.81921622,.75725848,.31892317
-1.4502908,.07760594,1.2841604
-.60066188,1.7719545,1.0274537
-.56188375,2.8155942,.28232126
-1.4431744,1.0447191,.77386283
-2.7628211,.48157283,1.2717065
-.53120379,.71288787,1.3112337
-.88502485,1.3197762,.03260909
-.48828017,.07007357,.93584314
-.61416899,.63032439,.32852294
-.73208923,.29554638,.15615793
-2.6771549,.070433,1.2980674
-.70284305,.27393013,1.095256
-.68409702,.82779359,.21169963
-1.326484,.32886862,.34912895
-.74982654,2.6589912,.05049999
-.35492388,1.4453695,.38621867
-.81009421,.57625592,.6574152
-.87069868,1.6135866,1.9223405
-1.9354981,.16959305,.25998611
-.49004866,.93199595,1.1090721
-.63609145,.52291141,1.3312035
-1.2077574,.68883098,1.3830918
-.89626015,.57848023,2.0137894
-1.4937318,.20889766,1.3115646
-1.0661328,.15596401,.61307832
-.89532605,.7468163,.73720117
-1.7841984,.1254145,.23343882
-.6866785,1.0210435,.95881417
-1.3517389,1.0549192,.35385124
-.74496887,.23687686,.14359735
-.50664635,1.5646908,.14495787
-.87664608,1.5771192,1.5978349
-.55366892,1.764981,1.6478837
-.77621936,2.698741,.69956538
-.73677446,.97389717,.2898191
-1.1839094,2.6229367,.39013874
-1.8753034,.24722392,.46456718
-.76165704,.55641915,2.0286054
-1.1349125,.13479545,1.3225192
-.70857771,.70052008,1.1688513
-.64351097,.67940777,.02168315
-1.2140044,2.146367,.76782664
-.52042597,.18087982,.24664531
-1.1362029,.25370661,1.3778402
-.39471757,1.0724123,.83679814
-.70923821,.39540698,.0684965
-.95444973,.25797651,.73552137
-.46099669,.01887432,2.0920296
-.34149372,1.0507555,.00335328
-.7670203,.65460805,3.2249667
-.27916,2.2603746,1.0155389
-.68398179,1.4572525,1.4470446
-1.6300732,.03268085,1.0203873
-1.319872,.4013702,.03988896
-1.6598757,1.517952,.64944086
-1.212824,.64743222,1.1756726
-.57088388,1.5103481,2.1830982
-.77082269,.33380251,1.6623414
-1.4850427,.3787326,.62277458
-1.083796,1.0022952,1.9000009
-.98354672,.06184844,1.3029509
-1.3007546,1.7781939,.89389271
-.70196699,.41759536,.92711991
-.58707968,1.518764,.86343486
-1.0257552,.08897266,1.5090962
-2.4311244,.5212023,.33190001
-.72665103,.58609764,.60376929
-.20954947,1.2933451,.23875484
-.35040779,.82397907,.32309988
-.8230591,.73032903,.96635121
-.68735942,1.2756754,.55375856
-1.0394816,.04159205,.35250986
-1.194961,1.3383333,.60022654
-1.3616258,2.3529031,.94787594
-.3457165,1.0072048,1.0204671
-.46635164,.60816441,1.4339773
-1.0823167,.33527612,.62796138
-1.2636759,.00201937,1.0618518
-1.8311993,.20704703,.79667856
-1.7552397,.06024203,.86234602
-.78505214,1.4984435,1.0617315
-1.8346339,.57641005,.49323777
-1.1056089,.66909658,1.016181
-.52864807,.98361442,1.7224784
-1.0936682,.90646043,.57546147
-1.4373978,2.1160715,3.5912197
-1.2973415,.02998114,.40076299
-.43587928,1.4855401,.48226271
-.5328098,.3482175,.35069734
-1.2385171,.65480171,1.0445835
-.62579064,2.2726237,1.6125171
-.37813296,.34449879,.76659507
-.59696492,1.9369736,1.1086651
-.43720226,.69292079,1.4822255
-.99133048,.61228135,2.5600113
-2.7578582,.87987323,.6387946
-.82537516,.76308733,.68605665
-1.2969498,.03123274,.03095156
-.63768065,.49043825,1.7745958
-1.1290194,1.2516489,2.2837208
-.60143822,.9236533,2.0404879
-1.0533971,.32081001,.76366876
-.81698159,1.2031321,.46931375
-.49398969,.86733197,1.7679491
-.82577868,.49939607,.11172275
-2.0296595,.91767023,1.838531
-.83562772,.57649033,.10744026
-1.9166821,.6376192,1.388086
-.62571863,.66714411,.36554068
-1.1224353,1.2366423,.11603413
-.64717811,2.1239761,1.5941806
-.628173,1.9896813,.43507412
-.95912127,.00352317,.86768828
-.9405675,.32093875,.48266624
-.7041777,.46319454,1.1996635
-1.4772669,.79125665,.82604723
-1.0993133,1.5267727,.18595015
-.85955206,.02236547,1.0090421
-.77410982,.88153714,1.180712
-.3687424,.6363626,.41151212
-.5423469,.86779338,.93228016
-.71309482,.04385884,.81936005
-.73120529,.40114338,.90100998
-1.480735,.48756695,1.2195032
-.68572685,.57683953,.32398097
-1.6120602,1.0658345,.87234331
-.99790849,.75741467,.59136993
-.66499246,.858649,1.4562418
-.37886414,.55601763,.3127979
-1.0720918,.08474508,1.8492238
-1.971429,.46517569,1.0052857
-1.1081796,.33022695,1.5540611
-.58382074,.12625249,1.1423497
-1.5740661,.40911917,.75154691
-1.1627342,.12899764,.04772163
-.66519463,.29696728,.52801413
-.43272395,.30803212,.85076752
-.93674524,.0574818,1.6260923
-1.2316083,1.3044285,.26749766
-.66570617,2.143313,1.7532773
-.30454198,.32475911,.11009503
-.72525468,.97801035,.18491169
-.66700494,.14848625,.44302884
-.35781168,1.0504277,.94003548
-.66298637,.25896061,.89081862
-.64881772,.57207609,.29266533
-.59881091,.4969669,.70608813
-.77250297,1.8519176,.88255954
-.27931677,.56435418,.05015162
-.5272954,1.1426903,.04648039
-1.1430794,.0912022,2.0111693
-.6586237,1.2859799,1.4066465
-1.6574489,.10732304,.06416664
-.56132021,.23813398,3.0800891
-.57011295,1.3267054,.83375398
-.74011851,.44975227,.91798278
-.48581214,.39372685,.15275444
-.6844999,1.8406585,.71511943
-.52570624,1.0779819,.23627785
-.70322186,.8328094,.28334673
-.82830367,.05787077,.63020489
-.75659147,.60644717,.9499532
-.44596581,.70395116,.0803273
-1.4991871,.39456733,.74317344
-1.0847804,.77998216,.23482766
-.89654904,.22634532,1.1830134
-.40310521,.94347145,1.0658165
-.44700199,1.3710142,.0451242
-.69228461,.74927823,.72023915
-.54079611,2.4639758,.07896599
-.62173828,.92093337,1.2305823
-1.1907225,.40515516,.96161474
-.40919593,1.8327859,1.4040637
-.51271713,1.0305833,.91473157
-.28878903,.30980619,1.4629106
-.79213961,.29689922,1.5847148
-1.0160991,.29592171,1.1747287
-1.858867,1.0077981,.80270718
-.81246199,.54607214,.17158006
-.6375435,1.7237661,.22096941
-.77193032,.22512937,.57818779
-.59378202,.43725462,1.5918746
-.88460089,.49737881,.01917926
-1.2653674,.31525731,.39248941
-1.1783097,.47465451,1.2321073
-.63689359,.02335781,.28415655
-1.7984721,.11448366,.78055041
-.5890315,.26530359,.78731677
-.97310366,.21969806,.82411825
-1.4716392,1.5427524,.10426221
-.69667122,.57234183,.09323236
-.25361433,1.5336485,.31067059
-.5867862,.21158098,.18946693
-.90123976,.07470156,.12659655
-1.213919,.69455222,1.3095053
-.50269546,.09977476,.48597587
-1.4159391,.83681725,1.2829088
-.29607819,.86634755,1.1326543
-.61913522,.4811996,.12909468
-.90785227,.76235467,2.25177
-.71579448,.35100324,.08492891
-.44332587,1.1113058,1.3667325
-1.5492066,1.1476889,.95368901
-.34544127,2.0432292,.03822727
-.72902886,.21973528,.73867209
-.37304707,.99602816,.20894372
-1.7852121,1.6121873,.87951466
-.47899322,1.1495526,1.4584873
-.65458326,1.7426328,.12490208
-2.3396756,1.0121456,.72588919
-.32255472,2.5494666,.83963014
-.88032819,.11546628,.42057003
-1.0603174,1.7064955,.12546317
-.84013224,.13194311,.11599193
-.43213697,1.0458219,1.2976245
-.59036872,1.3927871,.8729225
-1.1860544,.15606352,.10495783
-1.1727845,.82092904,.57323074
-1.0701285,.51648288,1.0273891
-.6122609,1.9887227,.49236691
-.93889452,.89940127,.16170404
-1.8025361,.9690524,1.0991169
-1.0383275,2.037141,.29967995
-.85410852,.44920143,.75629772
-1.8129381,.45976618,1.8179122
-.88314345,2.1262775,.12813347
-.44889708,.57432372,1.1343946
-.39877331,.30291666,.69059617
-.45210602,.82405715,.79410155
-.67554774,.40543561,.22484804
-1.0830243,.16244204,.55159942
-.62614632,2.4045614,.70585456
-1.5128916,.83121061,1.2606134
-.98548974,.32873951,.05595707
-1.4438305,.25335031,.52159746
-.82528883,.59096001,.36292373
-1.2915456,.09661808,.34423643
-.45861882,.54729486,.24916069
-.6533932,1.0962694,.59872413
-.93843726,1.0727366,.26628028
-2.0250842,.12975417,.30199033
-1.7647664,.84256162,1.158956
-1.6248994,.28332438,1.8386502
-.70759889,.59215274,2.4795218
-.23399236,.44941611,.59015406
-1.2010205,1.5248182,.67655175
-.93512807,.32748667,.42943459
-.82127597,.889559,.64515097
-1.8031774,.0276325,.58292551
-.25942487,1.0830279,.45831341
-.76957649,2.4941852,1.4807373
-.60127388,1.2174706,.32129591
-.50314388,.8967949,1.0065148
-.78636546,.72672883,1.6205729
-.46094191,1.6671581,.52102118
-.43856381,.38297786,.96161868
-.6406516,1.0565932,1.51342
-.96320639,.10109885,.30183822
-2.1998257,.76008859,.58334712
-1.3072564,.85207891,1.5742022
-.37720432,1.4301214,.08347675
-.6901138,.55100695,.60763591
-.70896592,.25694648,.79406204
-2.2466759,.78893125,.98869169
-.76073661,.26639589,.04488728
-.48843141,.19355463,1.3692041
-1.8007265,1.3169392,2.957033
-.88399963,.87469988,.78739078
-.49140662,.59640762,.43070246
-.98803949,1.74397,1.0699548
-.63433764,.77839705,.13465012
-1.8089698,.80752846,1.4802409
-1.1108405,.89280148,.2572391
-.46957833,.91598702,.86725062
-.46754954,2.0483906,.56178032
-1.2309348,.33265893,2.3749953
-.83920503,.62474109,.79857703
-1.0631835,.50445419,.16099222
-.72000253,.42559205,.03478803
-.88877617,1.7901791,.51451442
-1.5297218,3.2245167,.18593642
-.80837648,.18735874,.28564484
-1.2477765,.99057046,.64339576
-1.3668302,.07747581,.55541377
-.32199946,1.3953774,.63074684
-.61476782,1.4733217,1.2566646
-.74908794,1.6650032,.93190363
-1.0258541,.42787237,.07952859
-1.2772053,.49779433,1.5812486
-.88617623,.53854866,1.3771439
-1.2424527,.07791264,.90338674
-.7888844,.12582923,1.964423
-.76487431,.26576746,.20129377
-.56030642,.36981307,.72757852
-.92989167,.20832775,1.2863428
-1.7696083,.34620634,.34724901
-.41783663,.36778677,.02145102
-1.0470969,.0097598,.69159028
-.57915219,.66136524,.56450238
-.40199191,.97675378,2.4715132
-.35045138,.36274283,1.2747534
-.7315745,.68178661,2.64896
-.77906867,.0350941,.17238711
-1.6315424,.6206878,.1770486
-.4466052,.68951923,1.2641274
-1.473791,.44615423,.88236719
-.74827021,.68521319,.69072323
-1.4669998,.0634396,1.8751621
-.85116202,.5402039,.43300823
-.81802523,.31557287,3.2698305
-1.1160581,.34890071,1.0944871
-1.4855828,.5309718,1.3649611
-.35239742,1.3935463,.05659625
-.79315919,.03146981,.80057041
-1.1637823,.46694142,1.7442649
-1.7820326,.83578567,1.4269196
-.44424315,.62919182,.10087186
-.67311605,.19855402,.62751018
-.47893766,.43973946,.4901392
-.48636656,1.4703725,1.4189356
-1.8104106,.51899936,1.4339097
-.763461,.72555837,.38743909
-.41547221,.79143903,.2842058
-1.2328628,.18188521,.85739762
-.48892649,1.881593,.59543306
-.87536904,.36068688,.69524233
-.65776179,.84399777,1.3347259
-1.2641292,1.2519345,2.4412641
-.81383733,.50988001,.64138702
-1.5817637,1.2990176,.16370971
-.85898331,.34487195,1.7049286
-1.2826557,1.3395103,.18780254
-.73667927,1.8120343,.36583434
-.55595405,.83101531,.4461618
-1.40961,.66001697,1.3241975
-.96427142,.24466518,.47941728
-1.3526563,1.2712045,.05536815
-.9088093,.48230091,.7214526
-1.0920463,.2695949,1.1954408
-.62963995,.93061193,.68145727
-1.0909677,.12448801,.37286856
-.8075301,.8093552,.2493866
-1.1291061,.80025484,.30528436
-.51260099,1.9851337,.69988047
-.70362871,.97126592,.22635257
-.37700753,.06427856,.09767112
-.28114916,2.2018104,3.2556476
-.60323042,.06646298,.44122565
-.60225589,1.0503086,1.2606688
-.80533734,.65312774,.48684857
-.93473878,.79523548,.21568511
-.38635901,1.3217476,1.2110371
-.97378782,.39960346,.8039336
-.45670923,.84624468,.56089746
-.38434214,.97559167,.38890107
-.30235153,1.8599213,.91772947
-.8077132,.85317494,.15676439
-.58744469,.09640733,.26314048
-1.6206422,.05635009,.97853104
-1.3178196,.27226967,1.0738221
-1.523082,.24739186,1.0571651
-.7553551,.31599128,.21271465
-.9297138,1.4820465,1.2559724
-.66964134,1.2528443,.36878021
-1.1706587,.03183799,1.0703019
-.99617647,1.2793838,.41711761
-.7211779,.83978311,.16874621
-.36478783,1.0753265,.72925341
-.70594517,1.7221664,.46805098
-1.1166631,1.2528894,2.1653862
-.44327317,1.7735473,.71175487
-.53918695,.92416709,.2410636
-1.390645,1.193502,1.235897
-.72532291,1.068896,.2034934
-.79946261,.54196146,.031077
-.49323925,1.4343642,.54639152
-.23871504,2.9001924,.69302187
-1.4835269,1.3876345,2.731837
-.84017834,.26622942,.3900405
-1.0563005,1.6311697,.41693125
-.87316234,1.0102928,.98122009
-1.2483539,.56642442,.49281068
-.74065707,2.1291513,1.3143344
-.27111968,.38447059,.51744334
-1.0922728,.10286704,.77058599
-.99115159,.70159378,.16621554
-1.0477067,.31643522,.18044827
-.76012355,.07628384,.58520072
-.51965624,.40492571,.27267536
-.76370366,1.0588698,1.1774872
-1.5368793,1.4063808,.2600324
-.75406659,.6717319,.19771348
-1.9807272,1.1848426,.91682205
-.33608388,.49023847,1.1562305
-.32839208,.88563283,.14685789
-1.256007,2.4368508,.17305394
-1.8019758,.25108588,.5250421
-.89174192,.24088518,.91052213
-.36602595,1.5956342,1.1279261
-1.4893881,.57438971,1.2209971
-.92478314,.48225175,1.4638511
-.69288092,3.0224943,.55294141
-1.4057286,.421289,1.5936421
-.82903367,1.3552033,.21037205
-.64178483,.55036521,.43182207
-.62141544,.25747745,.39867425
-1.0304978,1.1300768,.90656122
-.72024141,.28037878,1.0307499
-.55601779,.34274503,.70760791
-2.4424481,.80403513,.48338876
-.89115635,1.030798,.85053543
-.41728398,1.0954909,.24682478
-1.2251779,1.113288,.56748799
-.82184091,.15706325,1.157396
-.5374941,.40346822,.14313791
-2.0534988,.2299217,1.3970283
-1.5624695,1.9254009,1.3792585
-.7511586,.37253223,.80442488
-.73161424,.54615075,1.168475
-.52944183,1.4195547,1.9138365
-1.5662599,.28443902,1.3535587
-1.1852532,.05464379,1.7938741
-.42616604,1.1077749,.32885541
-1.2106941,1.2266127,1.8572068
-1.2386766,.28959475,.79769951
-1.0711973,2.0991176,.09623216
-.53839073,.13634195,.02651907
-.63641799,1.2747478,.04168674
-.5318579,1.0655044,.10108665
-.74801829,.39227091,.21813436
-.33566843,1.5623874,.03954501
-.46771943,1.4332325,.23800662
-.98129845,.96014794,.2308718
-.80287179,.61579982,1.0452334
-.43508581,.1077242,1.4647759
-.97903165,1.4176601,.20775483
-.6128604,.72531789,.72550725
-.52530789,.30424171,.00271389
-.75488791,.6020144,1.4935575
-.62702532,.05277675,.34782598
-.76593663,.13292185,.08301404
-.59416089,1.1840238,.45312528
-1.0105914,1.549377,.00184043
-.32742118,.03463348,.1880149
-1.0139386,.15527406,1.0472592
-.90730798,.9163424,1.4815526
-.90447797,.00461721,.31270703
-.96196063,.70283504,.97626605
-.63458207,.3822731,1.6987606
-.58300473,1.7567531,1.5373377
-.62727872,.31322317,.49416274
-.55923709,.89823154,.57664866
-.81532137,.2020011,.01104724
-.47849121,.09128634,1.1267893
-1.1341365,.21067992,.76981627
-.41020677,1.5051935,1.4709953
-.48737685,1.8829692,1.0298661
-.31999253,1.7529388,.3973853
-.68453079,.76753285,.21219779
-.80710801,1.0538129,1.6679591
-.78544165,1.0938854,.09368917
-.45224997,2.2164069,1.7486372
-.18077848,.91189817,.05595621
-.67169564,.92113207,1.2023412
-.98520725,.33130386,2.1604613
-.69766963,1.7314431,.10150233
-1.1124622,.42494323,.35244739
-.89443268,1.0150412,1.0974305
-1.3882941,.64642449,.50255697
-.52645213,.1821875,.15545475
-.61197634,.33592223,.03577751
-.7716784,1.2766784,.34853895
-.51866747,.49143385,.90891866
-.49569069,1.3213378,.0894532
-1.0641835,.3567736,.1417207
-.75826192,.66515273,1.7499664
-.70091796,.17154147,.30313585
-1.5283647,.20077665,.635107
-.52789613,1.4186256,.66156567
-.98281925,.6837401,.43583712
-.9926735,.65129837,1.6154025
-1.0994445,.047546,1.4996682
-1.1144796,.130324,.19560976
-.68411563,1.4070305,.70714136
-1.0237891,1.7221857,1.5794127
-.50244613,1.6507791,.09250602
-.32975233,1.0046864,.9705241
-.9039583,.1031066,1.2089033
-.40719379,.70496792,.05906443
-.96890634,.24773596,.35647804
-.48400839,1.5350944,2.203147
-1.2311045,.61730741,.37382226
-.73721217,.6897977,.35009723
-.82417406,.56759904,1.753213
-1.7189243,1.3012819,.03599012
-2.6651315,.16551907,.57376613
-.71575125,.68639393,.05177666
-.66811623,1.3916013,.1843009
-.47293826,.21294683,.78839312
-.65739986,.43244152,.63211541
-1.1806673,1.2436317,.75926768
-.8394337,.00219105,.13041585
-.44101397,1.2893551,.11901153
-1.1395034,.17042156,.29942899
-.78670648,.81279628,2.2115773
-.94959648,.66889409,.19170654
-.47056537,.64887605,.75902052
-.79267114,.86989957,1.3511883
-.92199511,.33464083,.52010273
-.95691735,.29625903,.30801739
-1.4508668,.31812846,.75486149
-.47105385,.0280425,.17395409
-.47888699,.78706892,1.1239819
-.80788701,.57781307,.8255841
-.53387875,.34461993,1.948842
-.55100306,1.2804131,.17332555
-.80158525,.04341062,.39988519
-.97613123,.68114109,1.0006099
-.59965769,1.5090765,1.1264402
-.50089461,1.0152305,.29891839
-1.183272,.40441705,.52331341
-.45736049,1.7801833,.67761812
-2.5695526,.26508216,.91234454
-.52189689,2.7835561,.2728737
-1.3625661,.2218102,1.3089509
-.47253543,1.4052875,.95410024
-.54825824,1.5619184,.41394984
-.69199971,1.4278816,.3065205
-.53136166,1.4006261,.04524163
-2.0465688,.64078669,.25854895
-.65840481,.17049479,2.280478
-2.2809193,1.3952679,.32397513
-1.8241214,.32233406,.51588099
-.83985822,.75360695,1.4134095
-.5351459,.30002295,1.7365104
-.60515031,.93695165,.64850823
-.64017854,.40177497,3.1586543
-.34014612,1.9017757,1.2117797
-.20106154,.84991441,.62629069
-.45474903,1.9158164,.53590368
-.89021007,.56983824,.34348732
-.43373219,.32872952,.35279227
-.83323305,.43375545,.35366017
-.40089192,1.0953187,.2358882
-.51461269,1.0311896,1.5672946
-.42845534,1.3244478,.01557732
-.77158908,1.6720455,.99614237
-1.1658466,2.3349393,1.0038348
-1.0869679,.11716319,.01427818
-1.2322216,1.4813042,.14374248
-.79064018,.41128628,.82311879
-.73061031,1.0135823,.74681392
-1.2957948,.76264213,.18536348
-1.3167075,.02094051,1.0854865
-.994708,1.5655978,.50123578
-.29684003,.81297024,.59732822
-.63936943,.07054595,1.0502569
-.38586374,.11333591,.5601748
-.82919466,1.2211026,.96648246
-1.2326709,2.3605554,.3371837
-1.0335382,1.0005524,1.1616234
-1.2811792,.6996358,.09616194
-1.01174,.32972551,.90283127
-.44316188,2.0163788,.08987282
-.29261059,1.3987221,.20244535
-.39919285,.06228964,.31003416
-1.1443809,.19334748,.94451644
-.52139557,.37570353,.12560618
-1.2089288,.00426751,1.7476465
-.79945251,.6445464,.30515563
-.61108474,1.2145883,2.0358478
-.93169899,.28064006,.73819996
-.75672906,.91110917,1.1200009
-.64554348,.8995736,.61450409
-.53975329,.08621706,.36329479
-1.1073035,.07949913,.10988114
-.93560969,.92991244,1.5375865
-.73882093,1.2439275,1.7294121
-1.2709222,.38307069,1.2302966
-1.3427034,.55254479,1.5932379
-1.2835449,2.0985246,.11640822
-.93915087,.58654452,.78091104
-3.2085658,.05828703,1.9281243
-.65892548,2.0698771,1.1895606
-1.0371564,.27465234,1.6977414
-1.0849947,1.3696521,.36318347
-1.2545175,1.202819,1.0050871
-1.107133,.03949311,.72290685
-.62782935,2.5742227,.65771734
-2.0809338,.63233991,.44657413
-1.4792707,1.6678055,.531415
-.89966199,.01220062,.25124548
-.77441595,.90993716,.13209122
-.59178743,.58655921,.40688802
-.50058149,.25073936,1.0305735
-.65284997,.29384907,1.0176309
-1.2295839,1.204687,.44858773
-.75114627,.24682649,.5680501
-1.1443697,.75221974,1.268585
-.77386747,.52085884,.00685676
-1.0180213,.05857326,.31785825
-2.2687322,.29487174,.04678768
-.92369588,.20226014,.47807589
-.75627355,1.1691388,.3854892
-.50271217,1.1801387,.19836274
-1.2283144,.86967772,.37596519
-1.4931868,.42794592,.68933663
-1.0602479,.52345432,1.7103749
-.76323801,.62674874,.13108576
-.42977814,.40756489,.15248575
-.5384932,.96085727,.64385298
-1.0565791,1.5073522,.45445902
-.71889626,.05583179,.42199197
-1.2149837,.87278689,1.9355586
-.49318099,1.8624291,.65468465
-1.7873694,.048871,.96531717
-1.0590873,.39857644,1.5914567
-.74704454,.36706486,.55284149
-.2089998,.57540571,.0219594
-.44073021,.67067058,.20531954
-.64887211,1.2937468,.07379702
-.63412752,.34653522,.38388732
-.94786919,.20023937,.923707
-.92717832,.72541696,.76780796
-1.4475744,.179002,1.7693654
-.94510985,.74780226,.76230028
-.83536813,.68403548,2.3309742
-.55131583,.53414781,.26045137
-3.0584256,1.3336952,.81923019
-.48316621,1.5309505,.29657153
-.67696285,1.8010772,.15552387
-1.2103594,.36424114,1.0747959
-.90468685,.13532591,.84927799
-1.0957487,1.177756,2.1468152
-.70638589,.37272191,.59660841
-.65138461,1.1335796,1.1375748
-.80736678,.13838458,1.4450399
-.36390405,.81718489,.43524199
-.75425401,1.7243328,1.1467056
-1.4799509,.96944148,.74933246
-.57648793,2.4263378,.21593325
-1.0037374,.91105878,.52330591
-.63561345,2.3280425,1.0386155
-.94368211,1.2354352,.7121724
-.55316001,1.1973594,2.4451972
-1.2136054,.98936533,.66206006
-.83075716,1.3221559,2.2559556
-.70513758,1.0730214,.45255972
-.26302014,.67567068,.99993344
-1.128568,.49618764,.60883896
-.54978972,.90504106,.85188611
-.84396276,.51028619,1.2239061
-1.4075259,1.8648591,.18414342
-.46336802,.6446798,.63818814
-.74814894,1.6163098,.33377886
-1.6591547,.01480019,.90703606
-.43196386,1.0372909,1.2755392
-.45025436,1.851044,.23101628
-1.4620246,.85443598,.57754508
-.99999339,1.2847083,.54203282
-1.1823705,2.0546026,.1825292
-.27746544,.49900243,1.8153343
-.4197347,.67548809,1.0533227
-2.0313904,.75395057,.43876873
-.92206085,.92725768,1.4446376
-1.0569454,.11213359,.12587149
-.73757961,.70017773,.64605965
-.55328293,.01390492,.51396202
-.7280525,1.1739082,.11222995
-.61549838,.40087916,.74392772
-.40590657,1.4860542,1.1354177
-.30993817,.60430657,.59314749
-1.7315922,1.1975053,.5622462
-1.1765102,.34842094,.81511774
-.70424032,1.8843376,.283724
-.50202113,1.2391908,1.0372328
-1.0940387,.45882381,1.2299576
-2.5187971,.13188629,1.7176848
-.59019739,1.6365982,.30580547
-.70749578,.54740821,.09843383
-.79688198,2.5301179,.73506062
-.71813788,1.177454,.99670199
-.98700689,.40601559,1.3154899
-3.5794319,1.6131874,.87394056
-1.0376669,.4995235,.15031897
-.33749413,1.56862,.21654613
-1.7023758,1.1615486,.75684479
-.58476525,.83853461,1.133402
-.31331609,.90271949,.12795985
-.36424741,1.3930718,.78367372
-.85809992,.02241004,1.3040134
-.62586025,.29044379,.82865983
-.39173244,1.4998296,1.9949659
-1.1585862,.37703039,.63287809
-1.2044326,1.6285313,.11279758
-.28054367,1.512407,.32569749
-.78828705,1.2431555,.333955
-.66472394,.26799306,1.0169444
-.71704451,1.0512327,.42976852
-.73044399,1.4117022,.39740374
-.38994016,.90427033,1.4729166
-1.5212364,.85508641,.140754
-.86247829,.46445581,.23455967
-.97680736,.30213602,.04893712
-.57164995,.58487646,1.3835422
-.98478303,1.7652552,.10914768
-.66208299,.55900891,.86867955
-.96732715,.36527129,3.0586523
-1.2093875,.5399171,.99842902
-.63375682,.57585048,.77749463
-2.1146474,.81207675,.68158595
-.54040691,2.2359744,1.0730858
-.45037368,1.5500356,.33533797
-.86604952,.20040551,.0535479
-.89355988,.14628694,.07358125
-.54444992,.67029255,.74485083
-.76074774,.56657231,.12828203
-.81922217,1.0708833,.78047076
-2.732898,.4897662,.98629911
-1.065728,.56053564,.83977696
-1.262135,1.19074,.71981806
-.64825149,1.4959703,1.1879139
-1.3948123,.0676109,1.3234693
-1.4348962,1.2513968,.63345617
-.58247501,.13848711,1.4536634
-.9951684,.48624375,.5845425
-.77619923,1.2118714,1.1007843
-1.0987695,1.8292272,.73679363
-.63283513,1.1167912,.29780151
-.78203268,.27941944,.11499318
-2.0972856,1.1880969,2.2339923
-.31905595,1.2112431,.51438709
-.64197845,.56236127,.00980837
-.7655989,1.7956169,.81835923
-.69775063,.21693118,.03164209
-.98675143,.05593448,.31776368
-.90837919,.00017954,.61913259
-1.3331679,.91874401,1.0818383
-.74005282,.84039384,.17422497
-1.6761805,.35396057,1.0344639
-2.016623,.69575695,.48904923
-1.4691185,.86055647,.85660087
-.55457794,.11221198,.77737084
-.50235406,1.3771572,1.2388921
-.39490834,1.4489111,.22612615
-1.3938744,.70637863,.75916036
-.49376282,.24536052,.28390463
-.56576664,.75161813,.19427285
-.5375568,.97869969,2.5723379
-.79662574,.14023036,.74331774
-.39545621,.42671655,.45310897
-.5547333,.33620598,.23703926
-.87559397,.35038429,.5724902
-1.0677031,.13293685,.96589322
-1.8506763,.08314762,.13633752
-.33834681,1.5245195,.58835058
-1.6017979,1.0609566,1.120835
-.93755295,.64358462,1.0151066
-1.1979424,1.1088964,1.0537797
-.43957763,1.6206659,.3569324
-.47873128,.27288342,.58749599
-.8773477,.91440497,.06991581
-.52382951,1.1994776,.33340011
-1.1721012,.79448555,.05481611
-.84076034,.16306381,.92257676
-.44594119,.67860266,.31415485
-.41165957,.20481607,.38780453
-1.0477314,1.0409692,1.3851006
-.74303897,2.5638949,1.1921067
-.51388245,1.3328893,1.2582045
-1.3917875,.25622443,.59932095
-.93819949,.39514519,.66141266
-.96781051,.17499006,.24299821
-.47763912,.56064133,.19449206
-1.8342957,.7012428,.72913859
-.78357854,.57452936,.14407648
-1.0970243,.54358029,2.101638
-.20166411,2.257732,.38825518
-2.3592521,.49562394,.33017264
-.4839253,1.5578739,.85379554
-1.3873118,.43114215,1.0317169
-1.2200142,.74420322,1.1113325
-1.0067729,.01582437,1.2319762
-.73652631,.22136686,.61982876
-.491952,.90495046,.52502306
-.85353915,.92850107,.7520204
-.66270654,1.3327953,1.2957251
-1.4751127,.15114891,.87346469
-.7033495,.87361411,1.3039398
-1.0716326,.19334435,1.0947137
-1.3861921,1.4201254,.81357268
-2.0030622,.34876495,.973482
-.80776851,1.2053112,.01706097
-1.2610268,1.0149313,1.2526348
-1.9739136,.10072938,.22012097
-1.3106899,.60398764,.61547517
-2.2957817,.66545746,2.18647
-.93009454,1.2044605,1.4577861
-1.9954107,.36198164,.90989367
-1.6148702,.1617042,1.2700683
-1.3102228,2.0050669,1.1666854
-.87185486,1.9963774,.14793364
-.55231326,.59119971,1.0144057
-.6490876,.92324661,1.652502
-.7882461,.42507749,.13711647
-.95827431,.58545055,.55611846
-1.1945136,.77620884,.74144607
-.7557536,.07248821,.02364554
-.47480301,1.1736746,1.1683938
-.75311793,1.3713023,.62831815
-.34467194,.60430848,.38776752
-2.0139201,1.0725255,.14841464
-.69699318,.5581268,.42273019
-1.5236857,.09738544,.03582035
-.46394966,.29499147,.29069173
-.8655781,.25039297,1.0027036
-.55290071,1.2253228,.11555189
-.86084686,.2157452,.29650555
-.83461789,.4093832,2.1095895
-.59572693,.53284332,.63539441
-.63772974,.812413,.34042836
-1.0126909,.46255156,1.9887341
-1.4245471,.13339872,1.1728561
-.43175772,.86966033,.87212632
-.9371769,1.0440688,1.5550758
-1.2621402,.10155689,.96389053
-.42223436,1.7760971,1.2710322
-.88991203,.47740799,1.1025974
-.28766287,1.2879927,.22777381
-1.7202667,1.1433678,1.1514136
-.93964001,.16272637,1.1199783
-1.0943611,.0817256,1.949118
-1.1101583,.49265169,1.3011307
-.94083881,.01923797,.41086558
-.60999787,.5554497,1.224066
-.85526352,.71952179,.89719476
-.68132573,1.1461072,.32046377
-1.8515203,.30026043,1.377075
-1.0292356,1.0618739,1.1922516
-2.8973411,.16150016,1.260479
-.77387626,.7524388,.71210104
-.63686771,.67501185,1.0957515
-.58908921,.98429114,.26675828
-2.1584934,1.1187651,1.0012613
-2.254375,.23961766,1.1988327
-.65533727,1.2727589,.49629092
-1.1111117,.84362797,.00310336
-1.2021322,.05108114,.6822877
-1.4902275,.90083375,.45202595
-.99811993,.17532279,.72474461
-1.4155231,.81262799,.20145424
-.59355121,1.7240344,.7126988
-1.0990048,.89662108,1.9530487
-.62249168,1.445815,1.1111897
-1.417191,1.4025207,.89505032
-2.5931796,.40697768,.59609898
-.78487698,.16379306,1.1504563
-1.1580828,1.0393572,1.2207037
-1.9971563,.7227198,1.7010998
-.4139834,1.3959854,.42278764
-1.4931747,.33172916,.00471325
-1.5102183,.24167572,1.7472375
-1.3141477,.07915006,.28054127
-.6866358,1.3187393,.51065932
-.41645629,1.4258502,.52219956
-1.2153688,.32052256,1.8031878
-.86692532,1.4800399,.14772354
-.61217733,.52883305,1.2474203
-.71676763,.79337099,.91043082
-1.3238895,.06006407,.52553453
-1.3116201,.03415325,.69331196
-1.3674432,1.1250287,.14566099
-.48684813,.71316867,.32621134
-3.2328313,.92468915,2.3623191
-1.2577455,.60178333,.75591483
-.53671608,.50672092,.74081816
-1.4436496,.42502793,.610077
-.749007,1.130614,2.1002236
-.82331957,.38288414,1.161361
-1.2494135,.38054119,.47416938
-.66380139,2.2567656,1.4367331
-.82906611,.98917684,.78555482
-1.1869051,.56466077,.26928498
-.56692495,.16072367,.12768461
-.9319639,.0103254,1.6337404
-.52597951,1.0283811,1.1450954
-.53507183,2.5304439,.82317323
-.71313378,1.078339,.838869
-1.0165036,.66122257,1.5340085
-.52929657,.38274242,.86386558
-1.2445794,.85971989,1.3248089
-1.6892224,.73076492,.14992718
-1.6109138,.61548429,1.7821721
-.34508707,.86845837,.99347809
-1.4698531,.81541149,1.5953844
-1.1642522,.85707505,1.3196396
-.64541689,2.3636653,.37452854
-1.1650899,.15003386,1.938528
-1.0204919,.57638858,.53254361
-.56170953,.61472358,1.5724329
-.62404486,1.2534993,.50981481
-1.5018537,.19630614,.22649833
-.30157531,1.7123861,1.1229534
-1.4832511,.22736116,.2199802
-1.0502745,1.9932018,1.2016708
-.7234119,.33955713,.26105969
-.85693611,.36606641,.87877643
-1.6730351,1.4421554,.46548765
-1.918263,.14604857,.39080218
-1.1951945,.29329989,1.6004728
-1.4236448,1.8628743,.72211533
-.83687355,1.2767619,.23340903
-1.3828541,.44554829,.06135653
-.43100705,1.8329244,1.869748
-1.6351823,1.0088464,.2029064
-.48848946,1.0643193,.59626293
-1.3762497,1.9704186,.22997733
-1.0484252,1.9450594,.63673576
-1.141831,.363323,1.6343699
-.58851161,.28378087,.03270094
-.52937072,1.7508344,.60600206
-.74520089,2.1632241,1.0830367
-1.0992081,.62839392,.61290812
-.59366142,.0329857,.48846298
-.8271914,.80153793,.33074343
-.56483439,.24048601,.10732828
-.87247979,.44091345,.15291939
-1.9080878,.55507418,.33040489
-.54576899,.66467437,.30898559
-.59903131,.70192326,.27412554
-.36236402,.87011511,.39124192
-1.2408096,.16345101,.67914673
-.42743818,1.1976732,.65211704
-.75071415,1.0359924,.1957959
-.43604071,1.4747773,.37222019
-1.5003569,1.1445993,.81980914
-1.5820384,1.2363958,.33407734
-.67897159,.01913425,.02428253
-.98349994,.06033667,.52773527
-.55950382,.9074105,.40843642
-.7679609,.56095641,.2478685
-2.0076569,.21800936,1.0258316
-.60701243,.84254819,.36236269
-.73392911,1.5477993,.66635154
-.92036308,1.8698718,.57386183
-.35496888,1.1638682,.33705943
-.68360534,.477099,.18969526
-.68826039,1.1384933,.42598764
-2.2618499,.53346922,1.5113704
-1.2262727,.22611684,1.3441707
-2.0288446,.04827103,1.4610763
-1.0981161,.69284936,1.2918662
-1.292102,.69434987,.75558303
-.88693102,.2393873,.93890839
-2.0246266,.78932386,1.4011172
-1.7002696,.30657686,1.638007
-.58645475,.12190955,.27998574
-1.4824487,.99565915,.22457152
-.70994516,.9625062,.5428062
-.90485191,1.2435517,.28281593
-1.1249835,.36150072,.69526404
-1.2567838,1.4527907,.2737801
-1.8504103,.34767006,.06852605
-.99130219,.16789583,.58062599
-3.7477877,.11657433,1.4795567
-.48730366,.6028223,.3053534
-.51537663,1.0834535,.92619725
-1.646241,.97347654,1.5087793
-.47232387,2.1086549,.03860974
-.33304061,.64520242,.18085327
-.6495146,.47383954,.82501527
-.68382796,.31976528,.04958456
-.45570351,.04355368,.05028091
-1.0125462,.16065158,.15852179
-.86508671,1.0743968,1.3848102
-.78883531,1.473956,.76209409
-.45735883,1.3451029,.46587915
-1.5475999,.40714213,1.3696868
-.81477323,1.707921,1.1808763
-1.1404324,.39999692,2.143845
-2.0239782,.53833281,.60442237
-.51640084,.60380434,.37497526
-.60632754,1.1612158,2.074504
-.71410181,.12808926,.88889866
-.57724332,.14548853,1.2460715
-1.096687,1.242872,.77012534
-.32066033,2.07217,1.0618322
-.84705583,.49900179,.04281564
-2.5696747,.75713199,.66334974
-2.1000864,.81915319,2.7750897
-.7441809,.75766707,1.1051233
-3.1766548,.09041678,.66865959
-.60715652,1.2554411,1.2801468
-1.4852611,1.3024582,.6420957
-.59217806,.1814684,.98682306
-1.1529288,.19535266,1.5337402
-.65195701,.08529821,1.498522
-1.1015891,1.2627556,.39915656
-.80674882,.24473732,.06545664
-.50544826,.76962429,.59542601
-1.1973934,.80498952,1.1123788
-.63476014,.13774475,1.0118022
-.92995472,1.038261,.24008405
-2.8493197,.32115421,.01590974
-.66858665,.33459077,.56312515
-.54451462,1.9123481,1.5388389
-1.2880136,.38961463,2.35802
-1.2443322,.88188557,.11450672
-.7786206,.57090447,.8955719
-.74126385,2.6833067,.56016579
-1.0984424,1.3683227,.76330823
-.50880223,.26266031,1.0636064
-1.5805563,1.5355602,.32422496
-1.6086707,.61464477,.06191674
-.57399679,.4331724,.3688457
-1.052197,.29373676,.80854916
-.98164282,.18492306,.17188773
-.74814955,.48830615,1.7558538
-1.0118932,.55395715,.32727172
-.93436676,.55746278,.98165315
-1.4414049,2.1245298,.74391143
-1.2335732,.04204307,.69385556
-.64883128,2.0181419,1.8726249
-.50855407,1.1962693,1.0017516
-1.1491336,.72669138,.33953615
-.71258075,.8644099,1.3865966
-.39466795,2.1042166,.07244525
-.71391022,.79304028,.64179482
-.9968469,.91628565,.80284329
-.453098,.3542301,.43685524
-.92826748,1.3817668,.6751587
-.45496462,.07398393,.31311247
-.64435948,2.9327965,1.1967768
-.68493383,.33772234,.81005908
-.44664205,.86039892,2.2609597
-1.364882,.80647417,.60116724
-.87402317,1.7867581,.0089775
-.68417567,.88997098,.28796068
-.41366134,.24580971,.07686438
-.4887671,.94337035,.66070668
-1.2282401,.65245504,1.2334848
-.55879188,.31427707,.29715419
-.55347088,.0743199,.51538337
-1.6555717,.20148894,.35885623
-.93543689,.19909878,.94962362
-1.4641518,.09771677,.61659759
-1.4027857,.72994769,.40775201
-1.4391623,.62252183,.63697657
-.43448791,.0733646,.27010757
-1.2770261,.07218323,1.3484195
-.50857188,.99353368,.27034656
-1.6408552,.855818,.16681367
-.3530232,.39036362,.06626969
-1.288962,.52859664,.24345416
-.48797699,1.2396701,.60011768
-1.9151617,1.7368474,.22432471
-1.2750907,.16052729,.45629102
-.89801556,1.721638,.8316167
-1.2564012,.4817716,1.1141407
-1.0905204,1.200235,.41010879
-.91214456,.06919941,.29280008
-1.1415747,.11020198,1.0518177
-.90188131,1.1101246,.57467921
-.98262493,.64434435,.11069846
-.65979629,.43663062,.46573561
-.92504913,.58052717,.98637278
-1.0015203,1.3707084,1.0607115
-1.020854,.31006627,.36709691
-.42754834,.86788298,.91406419
-2.875503,.01139133,1.6208046
-.50847803,.53625513,.10009075
-.66711892,.88123655,1.0003243
-.59402145,1.7804512,1.446642
-.78249432,.96876674,1.6211954
-1.241933,.2793054,.88416185
-1.2094019,2.1236411,1.2449118
-1.0994702,.12341277,.8556591
-.53952967,.9585823,.11292093
-.53167155,.96043173,.34622017
-1.0972262,.17805619,.65496415
-.95656836,.22816763,2.237955
-.69261593,1.1828487,.45533429
-.5765456,1.3401674,.49383932
-.42154531,.73081222,.66649479
-3.0376189,.47392188,1.8138149
-.86175098,1.534417,.43717916
-.60185637,1.4172422,1.3961395
-1.2638911,.46762125,.68356128
-.56723173,.37241596,.06539619
-.79623521,1.0776508,.91935164
-1.0732428,1.2158464,.57118786
-.56894064,.24274707,.86807522
-1.1405007,.72635467,.2428626
-.69687703,1.363622,.92317302
-.81524488,.60027809,.61268364
-.40103936,.51683715,.51618286
-1.0816114,.77203896,.35083906
-.99417357,.23188296,.70717619
-.23735419,.67069097,.77968224
-1.5022321,.80200846,.27114098
-1.3502218,1.0800236,.24379254
-1.2398453,1.4305028,.34164472
-.55762785,2.114325,.03513698
-1.0670967,.93293269,.08566257
-1.0861186,.36280768,.90831712
-1.262089,.08096731,.79965771
-.31353126,1.8356873,.47146736
-1.231892,.5024497,.45193258
-.23185312,1.456825,.52686093
-.57881293,1.0891221,.16652687
-1.5002537,.00559151,.84901114
-.83219464,.5589621,1.3913522
-.42324434,.63273949,.21440376
-1.1882533,.56691661,.1957847
-.95603514,.26165872,.73402502
-1.6914357,.10974,1.4848659
-.50100495,.03027833,.79415972
-.5281053,.05275753,1.1946517
-.49369465,.64516729,.1199573
-1.894435,.14389972,.3127924
-.37651744,1.2791626,.58696881
-.47645386,1.8291817,1.5033759
-.75743255,.05347698,.55452774
-1.0899644,1.1609927,.08860454
-.41837676,1.217346,.73415538
-.33200063,.25026816,.11505617
-.30941934,.27374825,.85654261
-2.44576,.06572853,.38679324
-.91475365,.21915588,.71760913
-.81547115,.77749834,2.360242
-.84702479,.13460489,1.7201158
-.40858753,.6653232,.03546438
-1.336157,.48315606,.77779684
-1.466264,.4992101,2.3583343
-.46683746,2.0908074,.43737361
-.63709978,2.3126232,.487492
-.9063555,.9739524,1.0133394
-1.2562606,.38945052,.60608705
-1.7407828,1.9647194,.15007546
-.83631523,.03176631,1.0273323
-.48438094,1.4630568,.42142212
-1.2944405,.76959444,.36517296
-1.1277419,.54135545,.13751834
-1.2048824,.59755415,.48338631
-.62473978,1.2739486,1.2465462
-.32042824,.23993985,.41564568
-.57230682,.4620507,.26003884
-1.2398805,.07176949,1.2238534
-.58055573,1.1605613,.79381028
-.93880067,.8212894,.86255755
-1.3199251,.56296163,.30762105
-1.1327112,.00664141,.73693457
-.88228959,1.5807954,1.1696808
-.43444233,1.7594357,.26822465
-.6459805,.74214347,1.7020141
-.71645142,1.162038,.41195318
-.80172976,.94726727,2.533639
-.52908898,.15892341,.54067616
-2.2535892,2.1410284,1.1940739
-1.0779554,1.4552458,.90154245
-1.5513235,.21315722,.53538257
-1.2860382,.12681861,1.1301205
-1.3783192,.76051678,.64403278
-.85670943,.89258515,.23365574
-.96691327,.18925283,.80610013
-.87945527,.4312248,3.2291841
-.72408333,1.5614063,2.1362901
-2.0070366,.45869725,.34103316
-.76139365,.66125165,1.5525822
-1.1347922,.54681658,1.345199
-1.2953771,.74356309,.37072028
-2.1639158,.4644686,1.6325162
-.31935099,.69215659,.25939373
-1.1972967,1.290766,.35768656
-.52044148,.28415576,.56090742
-.28062451,1.6755958,.70997539
-1.4856611,1.2600394,1.7883156
-.45519812,.62957547,1.38425
-.47233624,.40475681,.4958209
-.60875134,1.1182139,.41854604
-.70163524,.42026612,.54212117
-.5767758,.10019764,1.3076475
-1.0358151,1.2348366,.60761788
-.70307027,.17654081,.72615161
-1.0060792,.02814562,1.3061058
-.71517572,.85652356,.54380978
-.53958334,1.4414136,1.1004971
-.5192907,1.972156,1.627982
-2.0947258,.30672389,.19095601
-.92721812,.96733535,.49127481
-1.0022068,.99275458,1.4302664
-1.0135131,.15914536,1.2719941
-.96926055,.49233087,.6394799
-1.4681383,.38911182,.33159897
-1.0662562,.11226593,1.295441
-.96171127,.11771933,1.544777
-.54594902,.63670247,.23712332
-.41356534,1.06222,.52937274
-.23049058,1.5926448,.13182125
-.87304064,1.1368286,.69591624
-1.1384159,1.3872401,.57136873
-.65702925,.65534067,.10358615
-.67874191,1.7349624,.03860759
-.58516358,.28989232,.80131363
-.73999936,2.3346479,.10394861
-.69238764,1.6715079,1.3921507
-.77996363,1.3068495,.25961295
-.96690134,.76687189,1.0660454
-.89912364,.01659208,1.2189282
-.9668742,.29834061,.52256431
-.83536684,1.4434689,1.2318399
-1.6878511,.09846218,1.4051768
-1.0911597,.07601739,1.07573
-1.9530961,.09799845,1.5827806
-.78906658,.96164198,.3680261
-.61685232,.56981037,.77351899
-.76293443,1.5322845,1.250211
-2.5873424,.24966514,.9860645
-.9000805,.16080312,.07947537
-1.0324008,.44058081,.82040574
-.27931452,1.1577946,1.2986259
-1.534172,1.4147912,.45422153
-1.4257267,.12371393,.63169063
-.71490303,1.4077477,.80097493
-.812652,1.184716,.02080012
-1.1383337,1.4265211,1.5044706
-1.1186807,.64027615,.83688197
-1.3397436,.56468288,.67090427
-1.4080878,1.3856492,.18429605
-.78498425,1.650888,.15879347
-.52711664,1.7571027,.13953402
-1.1677583,.95034541,.2982378
-.56271249,.51454646,.351981
-1.8595074,.15171626,.4857161
-.43870553,1.1460664,.95865783
-.81676477,.84786052,.79263668
-1.5586041,1.1109073,.35848252
-.64184343,1.5788772,1.0184613
-.61453944,.62450333,.44354066
-1.6701198,1.7777131,.84530182
-1.5176829,1.4325239,1.7428628
-.94012124,.56297282,1.2705963
-.65058597,.26232243,.48409496
-1.7914216,.8484307,.51784311
-.7148464,.63956884,2.0832215
-2.0273863,.7483238,.87049281
-1.0454685,.22418577,1.4274535
-1.0853784,1.8472413,.91663387
-1.1373421,1.6138822,2.7626485
-.70268774,2.3218623,.6206845
-1.4638354,.38498652,.16250991
-1.3840683,1.0777221,1.9042016
-.74801286,1.1345882,.72175623
-1.4114517,.89940929,.67063535
-.36229844,.10034746,.55591852
-.47919559,.25943026,1.1627019
-1.0795177,.09586067,.14750659
-.33442453,.71724511,.12527435
-1.5937037,.1575727,1.0746279
-1.5679463,.07815147,.87482273
-.66779756,1.5797549,1.322209
-1.3833304,.57945378,.78761983
-.8842052,1.4447221,.8820593
-.51534166,.21199516,.33655256
-.70952028,1.1346001,1.2434666
-2.1079305,.22132282,3.4943822
-.50317527,1.0274952,.60431304
-.61037805,1.0390077,.44361424
-1.3853104,.31856208,1.8059237
-.43685152,.7860609,.3041565
-.52497876,1.5137596,.22619682
-.66471062,.64817452,2.0666915
-.87085734,.02574293,1.1388561
-.27490386,1.4997898,.5281436
-.6265126,.98439014,.07613651
-.54059876,1.2158871,.49481956
-.93547785,1.2730883,1.5981827
-.52505724,1.0628474,.85068507
-.90635476,1.4233988,.88057221
-1.5471187,.71619826,2.1448931
-1.4060128,.61842516,2.0574099
-.53948604,1.9555385,.72176103
-1.3414484,1.6142588,.78344217
-.55302179,.41499001,.22202136
-.9631273,.71159569,1.1322477
-.74264419,.71170298,1.1947662
-.46573197,1.2433374,1.0828093
-.49889556,.07309822,.12808295
-.5083689,.91754503,1.4322816
-1.2526669,.02988143,1.4876507
-1.5312513,.18596053,.37154981
-3.991863,.44112696,1.2721842
-.71150802,.39363396,.50326346
-1.3873793,.50480027,.23234094
-1.4434274,.5631677,1.2089595
-.76787025,.67557374,.62927934
-.4557173,1.3254478,.79903985
-.75976052,1.2199489,1.217904
-.87313594,1.2840765,.14017724
-.58103686,1.0632762,.64048378
-.52426083,.03465077,.05857596
-.61060105,1.4651899,.82272706
-.6446072,1.0458616,.56284555
-1.1088088,1.7392168,.51447602
-.86352025,.39863528,.7634151
-.56482655,.10594373,1.0579243
-.78451772,.82663221,.83900828
-.94557071,1.1303931,.40370184
-.47679562,1.1638472,1.0962689
-.48254544,1.1034665,.62454415
-1.4630534,1.3452933,.82947281
-2.8533363,.74682799,2.1282434
-.58921523,1.6119856,1.2922826
-1.4587716,.03736728,1.0160198
-.34995954,.00532628,.31523174
-.89280665,1.6880361,1.49823
-.6938972,2.0199124,.5980802
-1.241906,.60291731,.2126449
-1.0954483,.73517031,2.2937877
-.81732802,.28128586,.85578375
-.83031076,.67634353,.16676756
-.79135343,.03777475,1.6399348
-.62661499,.60488698,.26279088
-1.3743714,1.0578869,.364919
-.833931,.75063529,.8923276
-1.5726636,.21429495,1.196038
-.72391665,.53313258,.25322633
-1.208745,.19760045,.68810807
-.60934744,.10480829,1.1030018
-.58522403,.73725615,1.3246344
-.89016746,.88946636,.43350342
-.48820528,.3805061,.83500141
-.4297658,1.231536,1.2204312
-1.6461633,1.538325,1.4071213
-.83947659,.06124618,.47947919
-.79767673,.56361657,.538122
-.34953817,1.8948246,.43589231
-1.2818349,.64482133,.20255996
-1.3724901,.33621123,2.0690867
-2.4003298,.53268261,.33738389
-1.4816329,.19401285,1.1859429
-.73331442,1.1681777,.35500659
-1.0459517,.20289154,.54856172
-1.0621873,.4661652,.85006601
-.47793599,1.3325274,.4706561
-.87934645,.16877253,1.2360116
-1.6038786,.81991096,.28910882
-.51997347,.21847633,.55884577
-1.9690392,1.092268,2.0568858
-.93440108,2.6703496,1.0266275
-.70377923,.12289433,1.1731465
-.62473004,1.0187202,.56843792
-.72470362,1.6656731,1.049772
-.88394423,.57127984,1.1791527
-.8372978,1.379918,.41153389
-.88204395,.57073581,.46724358
-.43856063,1.5119856,.24138485
-.6549322,.95762571,.92328187
-.47308422,1.8918858,2.0353819
-.6749827,1.007363,1.0497488
-.90136678,1.4345008,.91173919
-.7671215,.97334048,.47734208
-2.2378604,.10840215,.98670314
-.57554118,.43886792,.67595196
-1.002646,.11217649,1.01025
-.25936666,2.9854866,1.3214613
-.98669429,.08847769,.6146437
-1.2468471,.15455297,.96974414
-.71378332,.62552453,.89217018
-.82422516,.4755169,.96783279
-.45212976,1.6167388,.44424829
-.22493069,1.1961572,.07215611
-1.257747,1.2365517,.61650518
-.77910811,.05892446,.56285606
-1.2456662,.022067,.96377862
-.77602589,.11901841,.83798569
-.80400323,1.0575896,.76836702
-2.3619938,.36193607,.95739827
-1.828248,.77379734,1.2590553
-1.1451308,.91895511,.30188878
-1.2226409,.41331188,.69811963
-.97774434,1.0963867,.64615906
-.76147487,.02785045,1.0126195
-1.0661696,.18738818,1.6507769
-1.1850685,.17219447,.18348014
-1.3051773,.12683918,.23577622
-1.0425028,.41216506,.49696956
-.59416761,.37194101,.03234388
-.83825375,.13980548,1.0157595
-2.5042124,1.2759245,1.3024828
-.30421809,.31585088,1.0925389
-1.7283728,.50831297,.96666455
-.84472421,.39778306,.3795518
-.78319825,.0830342,1.3407127
-1.7244531,.63071053,.48131843
-1.857915,.12823773,.09420429
-1.0357407,1.1936068,.52643388
-1.2930085,.94215536,.05412738
-.72332353,.44775876,.50404987
-.9373802,1.7495234,.22272624
-1.4143267,.06885187,1.4332491
-.88335149,.23728397,.48994527
-1.5229995,.43862514,2.5227123
-.70311323,1.6490637,.47463242
-.41256329,1.4864745,.79094142
-1.3356388,.83223185,.91172944
-.33751597,.53247834,.33840722
-.91702848,1.01092,1.1798591
-.36719506,.6790981,.93872949
-.16411107,1.471106,.01614905
-.86400898,.65484942,.53729751
-3.8692761,.1483774,1.2875354
-.68702793,.90851631,.36060848
-.82475069,.97229253,2.345284
-.66178315,.86156584,.18010852
-1.5967634,.77296949,.51400252
-.53847291,.8463113,1.2008568
-2.4766107,.46635484,.09817856
-.36565497,2.3576037,.99140594
-1.0436286,.02987822,.60278547
-.73103795,.13637029,.91806301
-.37191445,1.7763077,.42694942
-1.0847149,.28514119,.41533468
-1.4350686,.13071088,.1165278
-1.9520883,1.1822264,2.8691902
-.96883439,.86375921,.95740741
-1.8901199,.178274,1.3351259
-1.199521,.24819645,.07651402
-.83803661,1.3172398,1.2483295
-.68358601,.5471665,.49777173
-.63269993,1.1597731,.28070915
-.62125609,1.2631877,.29338228
-.71236952,.47694447,.04243221
-1.0580347,.71978184,.56682954
-1.1817816,.34355135,.16432732
-1.106979,2.3909734,.44972189
-.79721994,1.8416681,.47852612
-.34508559,1.7920442,2.323288
-.71572172,.40836947,.78735382
-1.1161241,.68071233,1.1666931
-1.5474756,.65580423,.1338391
-.97362186,1.2186103,2.496491
-1.4267909,.56076372,.12166072
-.89849915,.79797448,1.2576265
-.77437377,.32552722,1.0977182
-.88723787,.53865033,.88109871
-1.0978626,.27276891,1.08078
-.55064337,.49449589,.11528343
-.46867539,.0514478,.05228905
-.7718102,1.6110437,1.4360817
-.57223835,.79548197,.21394492
-.47381942,1.1545643,1.2543106
-.86010118,.58195955,.28640985
-.72847957,.98453732,1.0776584
-.70900053,.71672542,2.069007
-.57984694,1.3735443,.81129756
-1.099648,.75954867,.64702908
-.50666775,.02357712,.61229098
-.4990709,.25835247,.44941247
-.67968413,.86853854,1.1727195
-1.3012817,1.7540138,.78846376
-1.2051711,.08008708,.94406509
-.56981837,2.6743195,1.7097135
-.30699211,1.5582088,.79962891
-.50606779,2.0013878,1.2770982
-.30365369,2.0119867,1.1092574
-.6103746,.32426407,.36594751
-1.6937399,.44714176,1.7625945
-.4717961,.3637162,.54525523
-.82295108,2.5088434,1.2114163
-1.2061253,.08453426,.84097306
-.85579705,.67218438,.70763104
-.36922946,1.3392484,.31830209
-.79829047,1.0066112,1.1111487
-1.4970165,.81751354,1.4169178
-.94354833,.63524102,1.3368165
-.57972527,1.7288352,.8366352
-.80256456,.14890319,.56014495
-2.6913045,.14131887,1.5374151
-.54650627,.40207364,.96811656
-.48871171,2.21822,.42869705
-.71580403,.92019788,.93061494
-.7241809,.96970958,.21876985
-.28895708,1.2737369,1.5768624
-1.1821343,.74723713,.20133356
-1.1543441,.04100734,.21648918
-.83555117,.68427291,1.0627761
-1.5580242,.10172883,.8301032
-.5462862,1.2238103,.78314706
-.92337807,.11665962,1.4048202
-.60895694,1.8854912,1.1447044
-.77575634,.95719666,3.253515
-1.2648751,.52413658,.55520685
-.61030208,2.0799079,.99979933
-1.3519899,.03311364,.27088162
-.72281504,.13399181,1.9903205
-.48107945,.00231679,.87502908
-.6133232,.19911569,.27756964
-.55395102,.57488939,.06023633
-.51275397,.65959267,.84639174
-.60806713,.83913924,.23475728
-1.411252,.50897584,.57364786
-.82355495,.26559894,.16440157
-.90417219,.8924888,.87132943
-1.4789421,.30710395,1.3594976
-.40362932,1.4851975,.00931141
-1.0556665,.17286149,.09574647
-.79639399,.4314305,.24679582
-.72297975,1.7432973,.6366621
-1.6407127,.13214521,1.865481
-2.9736958,.38660369,2.5738052
-1.0218461,.28835531,1.1262981
-.76586796,.23745612,.66924095
-.29332538,2.1765541,1.3568972
-.38065747,.41650995,.72765987
-1.33772,.12933167,.40990835
-1.200581,1.0706377,.10080969
-.57467767,.37448329,.78344972
-1.9335454,.15913557,1.3911014
-.60744744,1.3358146,1.7234583
-.63574331,1.8474407,.24709112
-1.2019811,.46533433,.38414519
-.40948594,1.395549,.20715837
-.8828242,.92842971,1.3671507
-.35397414,1.0398731,1.2952911
-.53901237,.09404883,.09354601
-.76338702,1.3835302,.26502505
-1.5025887,.13213565,.20275981
-1.4214137,.34161868,1.322055
-.32211141,1.0279524,.07566004
-1.4174581,.42796029,.86016124
-1.5562175,.21120711,.6235261
-1.0809112,2.8399442,1.0053982
-.81571307,1.8376957,1.2673237
-.47033158,.01235731,.066119
-.71102385,.8589317,1.6055688
-.43381635,.16620366,1.2512336
-1.2373213,.19977962,.82809133
-1.0362287,.20756707,2.1110637
-.73846489,.62504956,.38328062
-.42528377,.39374858,.20429117
-.45577057,.51244582,.22451509
-.63086047,.98132499,.64555289
-.94690737,.57909859,2.0181844
-1.1986968,.22215104,1.8067702
-.62574078,.93097353,.95330643
-.87479946,.23435874,.71213601
-.47631751,1.1884331,.36599309
-.5317684,1.3417512,.47161722
-1.032148,.23436615,1.7686615
-.54001495,.59231861,.83794824
-.76585836,.58852489,.72692921
-2.3218326,.93147137,.46286153
-.81257999,1.1127,.61725208
-2.2005195,.07697098,1.9778194
-2.2123948,.68718412,.5900238
-1.8824832,.19912412,.64112098
-.58397105,1.8243165,.41045376
-.92239873,.45120117,.53844193
-1.143251,.55093212,.46855741
-.4546048,1.241644,1.7262648
-.41126702,.13981923,.37504477
-.69505715,.10889989,.19020007
-.76885013,1.5745898,.2200689
-.64150465,.58666483,1.521657
-1.5313251,.11064605,.73817619
-1.9141819,.94966692,.23221038
-.81503599,1.1181619,1.0962103
-.39701801,.84148844,.2251991
-1.3343032,.55290669,.82825634
-.79062825,.48566167,.08165331
-.83901592,.56383841,1.0038318
-.92583014,.36982208,1.5350214
-.60478349,.79866432,.22840402
-1.246987,1.1398971,2.6415363
-1.675111,.93402342,.73528956
-.69963073,.1353035,1.0218503
-1.1561243,.82937028,.49544374
-1.141644,1.5970828,.64887419
-.62675276,.87492544,.48423693
-1.3480874,.01480339,1.3109109
-1.5266233,.12508387,.58367129
-.97001965,.64655219,.29505986
-.63503625,.62210336,1.7816182
-.38004649,.61740686,.11793796
-.80325473,.10167532,.18541206
-.69655006,1.0567774,.0020899
-1.3273132,.12526114,1.6044621
-1.1396068,.4064872,1.3745153
-1.0772382,.04218752,.06790903
-1.0490038,.88508851,.20138162
-.48392416,.79703345,1.2382053
-.88368843,.33937302,1.7167114
-2.6757717,1.2491426,.06274491
-.66980076,1.0014727,.21347846
-.73182142,1.3469741,1.4407031
-1.8120535,.17479906,1.3045619
-.94401832,.12286764,.8840116
-1.6664981,.3536808,.58015187
-.67524707,.6800591,.19199291
-2.6649518,.17616225,1.9453187
-.43043872,.28385407,.19684356
-.78978975,.39550233,1.8877091
-.77735852,.21011299,.28776255
-.98713347,1.4689809,.24146622
-2.3488341,.50194693,1.2655873
-.72017138,1.2882626,2.09121
-1.2331547,.7788618,.67753857
-.9156385,1.0079632,.07835778
-.45889208,1.2875685,.36286596
-.49854342,1.7825759,.5820384
-.78121774,.50154669,.48662252
-1.2263558,.26361918,1.6329128
-.64277569,.75626059,.82784375
-.95584508,.51426443,.13760818
-.67812284,.43967828,1.6180945
-3.697284,.16316742,.32513439
-.94043924,.55024803,.58555328
-.77433888,2.1977381,.87626422
-.33575533,.68660874,1.1714152
-.93463782,.57954517,1.2329778
-.8839913,1.6887295,1.4088259
-.40921527,.36279502,1.4929206
-1.1229595,1.4986624,.76558912
-.46673697,.26765876,.45416712
-.91616027,.33864027,.19326037
-1.4034146,.46553501,.59985358
-.76880281,.00998697,1.2806981
-.89576952,.7582023,.60726983
-1.0972649,.00270175,1.2788783
-1.2500836,1.6947561,1.3171168
-1.0405417,.39607641,.03830056
-.50084021,.2744011,.20511774
-.42194322,.24414397,1.0993593
-1.3768829,.5601242,.50299922
-.43380104,.47996529,.00094829
-.80200775,.23892221,.07515895
-1.0109868,.72344494,1.0968509
-1.2307952,.87324129,.7134997
-.90221246,.06352384,.03922664
-.98488534,.60909778,.56058383
-1.1694763,.36725314,.65552214
-.29233752,.16677784,.22614767
-1.5709927,2.0082891,.47922236
-.55766928,.56153902,.61694246
-1.0200869,.10905309,.08134891
-.39989258,1.4076151,.30454091
-.78323542,.73984151,.07425088
-1.2961182,.77060526,.37387801
-.61957996,.48784115,.87791479
-.38184068,.21845065,.26947543
-1.5598244,1.0361115,1.9451475
-.64435305,1.0896978,.43934735
-1.0128108,1.826591,.26123415
-.47546951,1.3110448,.23586893
-.46859816,.06948023,.89266181
-.94905485,.01743385,2.3284186
-1.2001166,.90601275,.06402414
-2.0503951,.11233553,1.8382092
-2.6713827,1.0897656,1.9244021
-1.1891953,1.5191015,1.3389615
-1.7064524,.15869647,1.5999441
-.61318015,.6720144,1.2963997
-.9365814,.87492927,.61442248
-2.1087199,.50561453,.51640743
-.99375963,.08359825,1.5869977
-1.2448373,.82236317,1.1566015
-1.131376,.79741232,.52166839
-1.4190066,1.6766001,1.2399656
-.59827878,1.2260887,1.8142122
-1.0216096,.27102024,.65629694
-.70190593,.2111728,.74169018
-1.5426969,.83569204,2.9320817
-1.287998,.78827526,.17207239
-.96333145,.38422331,1.8627357
-1.1395696,.96470011,.48947963
-1.413978,.5800816,.93206571
-.76902981,1.2566976,1.0887762
-1.6022366,.10434421,1.529735
-.5470279,.94237292,1.3016887
-.40613385,.52536572,1.808781
-.5626446,.4689616,.32783571
-.91116329,.50808369,.77673454
-1.0612852,.3483177,.5014923
-.7401684,.8308754,.55196153
-.35303142,1.9830817,.17284355
-1.2814961,.28264814,.40946421
-1.9736456,.26077976,.40990844
-.72934401,.79877858,.20572232
-1.8243667,.4509157,.2408354
-1.5197542,1.1558309,1.3806517
-1.5662206,1.1089247,.49289279
-.69106222,.18902481,.83290767
-2.3923351,.10841329,1.56547
-.32963875,1.7508059,.06045727
-1.7754053,.16544686,1.3208957
-1.3402619,.41449136,.22890375
-2.0227332,1.290789,1.1962827
-1.2144408,.75118209,.43791028
-1.348857,.31438195,.73785499
-2.7176052,.1704897,.16603807
-.96524251,.10582197,.18315794
-1.5524201,.63968943,1.4007873
-.74969484,.42006208,1.1519813
-.40880512,.66439342,1.0246613
-.52438498,.75566697,.9219823
-1.2433942,.02148316,.49355672
-.63854288,1.0326456,.0186757
-.5470202,1.6380956,.3494303
-1.1831359,1.0191666,.19615074
-.92773337,.97608201,.30631959
-.32509406,.18129007,1.0795031
-.82030148,.40505888,.34289728
-.46740906,1.4579597,1.1174349
-.83153416,1.3247768,.87294564
-.6825184,.35826646,1.212586
-1.4115591,.2702153,.78267597
-1.1440039,1.0144311,.5585576
-.70112483,.96776571,.36673872
-1.7277149,.47006469,.71571482
-1.3688421,.81417867,.06068921
-2.6050471,.32871954,.18025264
-1.1571215,1.0417712,.56741384
-1.4731413,1.3159413,.02916136
-1.0294387,.27961584,.26896733
-.30803912,1.6050111,.96380942
-1.0318074,1.0806002,.4615893
-.91172719,1.9930449,.37831023
-.83986649,.70346412,.79288884
-1.1546596,1.3905615,.63737898
-.65599272,2.6896814,.36091894
-.64516636,1.4121682,2.7941054
-.3281577,1.1297522,.66646264
-1.187864,.34664362,.345717
-1.5300826,.14573323,.93575996
-2.3228875,1.1242056,1.1422706
-.28615666,.0273279,1.8500529
-1.6455929,.03252432,.44170351
-.89813658,.83937169,.4006193
-.74309853,.42036369,.34662973
-.9102813,1.4231938,.1365761
-1.2772442,.61650934,.06230507
-1.8382231,.40422104,.63548559
-.44576158,.20485529,.1672771
-.88064679,.0181571,.04741261
-2.2814776,.77876468,.4209352
-1.3738391,.263225,.31822997
-1.0561898,.5943918,.66648423
-1.0361986,.15781798,.68469652
-.50123714,1.8511531,.76436201
-.45099206,.65579868,.52639668
-.8373764,.87815438,2.2724981
-1.2631656,.5476739,.55900565
-.731065,.70074074,.4657169
-.58987499,2.7028508,.70602676
-.73825218,1.486511,.09440479
-1.772896,.00143713,.47656213
-.37441696,1.96404,.76949835
-1.0132885,.47766721,.72424242
-.59091174,2.2730888,.47424405
-1.3983963,.0239971,.77644509
-.74554343,1.4576334,.08284144
-1.7014476,.15606321,.30508644
-.92694078,1.0914611,2.0129578
-1.0548045,.04289757,.85111173
-.37532256,.87426901,.18980212
-.76458048,.26357262,.62215563
-1.2158368,1.0231791,.46938071
-.55413717,.54843854,.46423851
-.48048888,1.857122,1.7108755
-1.0460874,.15116433,.5580367
-.84776917,.09730698,.20671423
-1.4368599,1.2487184,.22243829
-2.667558,.62727814,2.8716414
-1.0104825,.17269076,1.0531987
-2.1023304,1.0023015,.88264303
-.64299957,.91725318,.10393804
-.6147925,.01508518,1.5375968
-.63481197,1.3717473,.78636863
-.30099764,1.4086303,1.1093039
-1.385428,1.6843038,.3070781
-1.0946001,.18357284,.8489968
-1.0755522,1.032965,1.3832392
-.60853094,.73956302,.15385147
-.72099489,.04357678,1.3128475
-.79234077,.73690382,.58515191
-.54094452,1.853969,.77534125
-.47794458,1.5491252,.08054835
-.4699013,1.0740665,.30499113
-1.1080614,1.016325,1.1928891
-.9177129,.06345584,.13067349
-.63543775,.24274674,.04753913
-.99740769,.32555756,.74797758
-2.0121432,1.0696534,.76848341
-.96541588,.29882399,.6449733
-.99839555,.19931464,.5828055
-.98928293,.4702838,.67504241
-4.2684954,.90844746,.77808105
-1.3049824,.6107222,.24161404
-.93564913,.92941623,.29254847
-.74612267,.85955168,1.1368071
-.87843829,.06363101,.24227943
-.57035721,.70706411,.50375475
-1.1522335,.111196,.51159035
-.68228803,.4342383,1.2490125
-.38473799,.41305048,.73851504
-1.9325742,2.0157954,.02739136
-1.1468985,.36789976,.24481412
-.64003721,.91023536,.53108409
-1.0346143,1.091969,1.4458056
-2.0494722,1.21443,.45222212
-.48278443,.36159585,.13069587
-1.1515167,.43228193,3.0118711
-1.1663828,.65190552,.4284695
-1.1161712,1.4036263,3.0718028
-1.1287815,1.154062,.85540299
-.27633472,1.6485749,.1212831
-.4686736,.72415183,.11090596
-.55079749,.40014515,1.0288833
-.48176857,1.7820934,2.0274145
-1.0225525,.16262483,.42427225
-.38177728,1.0815807,.42577003
-.55075249,1.1367727,.19347034
-.96202118,1.1572893,.86842305
-.46679656,.34741913,1.4057646
-.34631601,.74065669,.63505353
-1.5800749,.0131655,2.4832035
-1.6499544,.82875018,2.7134594
-1.0006091,.13897669,.76459915
-.49554225,.4966632,.46508537
-.73880113,.51393187,.29432838
-.29216022,.99566048,.93616748
-.77475882,.07481701,.62906906
-1.4839783,1.9046225,.41193211
-1.4554182,.23808598,.46952975
-.47161447,.93123809,.43553335
-1.5334173,.82811025,.11414326
-.77468258,1.1015703,.47581991
-1.5863045,1.3806902,.60997757
-.50738518,.1434046,1.2321107
-.83104639,.55942893,1.5733938
-.99125355,1.8116609,.84913691
-.24122683,1.171526,.39322911
-1.0348281,.22366086,1.2596852
-.49310923,.802429,.19937953
-.27963533,1.7430428,.04533236
-.44175147,.63515589,.79466074
-1.3560503,.13742904,.26698906
-.46788091,.90689307,.77523586
-.82254701,1.0246477,.38937709
-.94321689,.20530004,.15844515
-2.1130714,.10791008,.14545463
-.23490117,1.3966736,.51304142
-.64286627,.38121037,.72643612
-1.4194732,.86309382,.28839185
-1.7527164,.00754363,.72899662
-.65648101,1.4242285,.1681135
-.51693529,1.7104839,.22874389
-.8791587,.6276236,1.4886476
-.38700064,1.0403398,1.3365885
-.65002484,.650459,.44382854
-.55182641,.35437526,1.0336384
-.54656084,.99508956,2.0306501
-.77175453,1.5526195,.29240074
-.66579959,.21808421,.18418479
-.65540953,.94179672,.5663313
-.77333125,.34438121,.44811823
-.61802871,.72562256,.53194892
-2.5731545,.04099558,.21935577
-.83155765,.39799804,1.5750437
-1.1298426,.14194962,1.780035
-1.9481598,.31421467,1.4157529
-.41600105,1.9052732,1.0747008
-1.1441707,.43044821,.91255534
-.34527252,.79056546,.58563175
-1.1315604,.23313178,1.7586112
-.48728148,2.5296928,.25758032
-.26553242,1.2372338,.36781089
-1.8451029,1.4901516,.18167343
-1.2918955,.56752413,.06646844
-1.0700675,.18357374,.83787582
-.44287656,.94459598,.52326673
-.6412194,.69513643,1.0487613
-1.2003831,1.3639603,.54501637
-.5302554,1.5996908,1.2745652
-1.1592319,.7612414,1.7572746
-1.1758484,.70512628,.98325812
-1.1678969,.64419382,1.0937888
-.89381936,1.0729671,1.9658902
-.82678212,.67668404,2.4747796
-.66091115,.22998321,.09152326
-1.302825,.41503429,.36250302
-.62282775,.50683742,1.2321152
-1.1096683,.39039751,1.0790251
-.32025473,1.0765437,.49183263
-1.4851489,1.6754629,.64783771
-.92397996,.10593745,1.3405437
-.98034499,.57273076,2.2284692
-1.9186502,.29941755,.11345127
-2.0551503,.18329412,.62774496
-.60312576,1.6125615,.03202652
-1.3406594,.05104203,.48773196
-.71833875,1.1421192,1.0960343
-.28440993,1.1152787,1.2424555
-.91310079,.03210717,1.1209956
-.93736166,.2947042,.93895888
-.74975913,.34873728,.61376618
-.94165811,1.4913541,.24712971
-1.4482877,.49336021,.06725814
-1.6855749,.3314262,1.0108646
-.42480227,1.2422838,1.2932708
-.49165381,2.5336794,.39795157
-.80840262,1.0894668,.38068618
-1.4051628,.56199314,1.0317953
-.78936407,2.7031107,1.2470695
-.66966138,.70404241,.51756194
-.93042774,.95788463,1.4139081
-.9535936,1.1401499,.12378266
-1.1514194,1.3586764,1.7695247
-1.8769864,.82478335,1.0992546
-.57094409,2.2081061,.79723409
-.8394895,.80728615,.2533808
-.90029434,1.0356547,1.0098096
-.30470234,.16470484,1.517095
-.53988068,.98255149,.53673807
-1.0394354,.84378324,.0606004
-.32785863,.39713953,.95641676
-.99166554,1.0354098,.65419778
-.40164434,1.1737021,1.0483689
-.89458537,.09951628,1.5940365
-.70664088,.84873074,1.3228695
-1.2695231,1.2940032,.6172582
-.51395636,2.1605249,1.4049626
-.37043431,.30816807,.16632884
-.5653751,1.1034205,.29964505
-1.0915672,.09719089,.90413785
-.39113803,.43878825,.39368843
-1.5360678,.20351207,.9133419
-1.3348793,.58769682,1.2769874
-1.7493064,.77208668,1.5861919
-2.3026364,1.6732938,.33638425
-.25118756,1.6339482,.85712368
-1.5073743,1.551164,1.4145525
-.81577766,.69543506,1.993518
-1.1655886,.29011204,.10916723
-.52841626,1.5952404,1.4019849
-1.0639323,.22359381,.77419152
-.6361237,2.8762693,1.8205953
-2.0588444,1.0480512,1.4049091
-.73152768,1.0306189,.27223153
-.80165195,.83652972,.0262122
-1.1410278,.59137945,.95020251
-1.1411218,.73193661,.65131945
-.69020534,1.1416788,.93592374
-1.1948842,.25703585,.93322611
-1.1658231,.33188894,1.8492508
-.41882043,.82715248,.48957595
-1.2445536,1.1029534,.971629
-.62280558,.74687111,.46181686
-.36094185,.82453901,1.9396137
-1.6393079,1.804446,.61538996
-.70384695,2.0485617,.57134785
-.6144803,.81256456,2.457808
-.38108687,1.4562794,1.0330831
-.60597231,1.1439085,.30373808
-1.1018746,.6908924,.57748638
-1.3733733,.02493021,1.8245335
-.66148596,.01866683,.37692562
-.41274971,.89302401,1.6258181
-.37092291,.95806233,1.36641
-2.4527087,.00464381,.09103428
-.97792876,.18256436,.58686376
-1.118353,.28114101,.74063313
-.48655517,.32772494,.10710334
-.31352104,.03538909,.97385848
-.44139995,.63652144,1.1859026
-.60096399,2.0601331,.38711355
-1.1709405,.17942007,2.9800261
-1.133251,.12555498,1.2691901
-.32461001,.65279809,.81355465
-.63560458,.44214442,.35428826
-.75907132,1.2691114,.63113908
-.95896384,.63641532,1.739699
-.43913024,1.1825921,.33603564
-.47753785,1.900455,1.2591678
-.54733163,.18376773,1.1562867
-.73471075,.31320265,.555325
-.73223232,.37724272,1.0340287
-.31548525,1.1623471,1.5760565
-.94527821,1.685131,.45928301
-.72782199,.53314428,.01404078
-.85448683,.77896173,1.5908184
-2.0773232,1.806611,.41623104
-.80030849,.78637754,.38521544
-1.1027544,.11260085,2.2927932
-.814757,.80091013,.80814392
-1.1492001,.02490645,.43480028
-.49747459,.79801694,.26147738
-.42585716,1.9355206,2.2955871
-.39396166,1.1081726,.48370995
-.69781235,.39195828,1.4042258
-.81416584,1.4932452,.61480077
-1.1858873,1.2320564,.09066336
-1.0939137,.99616675,1.0710264
-.87952845,.525162,.70645006
-1.4083125,1.569246,.91733567
-.4260746,1.8907691,.71946227
-.77796841,2.2458519,1.7831719
-.42271001,.87838226,.51695771
-.47595217,.50107381,.29586085
-1.2034139,.20562017,1.5699014
-.69123108,.95071898,.21420754
-.9742353,.20756703,1.6374386
-.67743992,.74481143,.52900754
-1.1887155,.53591212,1.0117304
-1.160987,.35636254,1.190403
-1.1876868,2.5343387,.42400608
-.66349157,.54353032,.02869052
-.62773806,.25438109,1.7655725
-1.3958479,.99282856,.37092944
-1.9973294,.03674034,.83849144
-2.4779682,.00968671,1.6542284
-.54071759,.05031198,.06304299
-.78809005,1.4334403,.30146996
-.54471471,.58338468,.24030663
-.69582512,.19786658,1.1922024
-.8427548,.75195348,.42661335
-1.2525729,.55651609,1.3189395
-.66598411,.41370449,1.017655
-.57965225,2.0917003,.40510422
-.35250174,.60635644,.91702696
-.91663453,.70722644,.13524717
-.64571083,1.3331149,.6074359
-1.0791183,.8731136,1.7201865
-.57692039,.52785283,.73545584
-.49311766,.1489901,.69462955
-.49149255,1.4937363,.83861081
-.44601658,1.1461593,.28675457
-.89628248,.03196461,.07070341
-.91418586,.17085515,.5483435
-1.1686121,.0945755,.3713
-1.3400989,.25319657,.31124677
-1.0628071,2.2756982,.25674423
-.70127509,.9475047,1.2135654
-.90651134,1.1937531,1.280549
-.95616064,.71874397,.61577809
-2.513287,.33645092,.66906899
-1.6109115,.07973391,1.1802856
-.49896472,.90201716,.74059539
-1.6764691,.75579035,.71183788
-1.2648259,.30505275,.4066557
-.61085569,.72278289,.72515823
-.67420876,1.1746041,1.9221901
-.63748943,1.6299354,1.8880303
-.65414591,.21890044,.07492033
-.47999419,1.4369853,.89649857
-.54032497,.38646311,.38278687
-.72125331,.27378391,.76183264
-.34254481,.88973292,.86197231
-.87480821,.62868605,.55291873
-1.3190311,.13387257,.13643325
-.9146291,.42186625,.42140863
-1.0552824,.1769788,.8253
-2.5670345,.01384576,.60200849
-.97763971,1.090599,.88784335
-.84082286,1.0513381,.15756629
-.76102828,.09808618,.16572389
-1.7270523,.41341661,.70354103
-.70030203,1.7838191,.35025544
-.60899917,1.7333904,1.1970326
-.91021824,1.1380478,1.4892345
-.70006665,.82706497,.23133312
-.68879878,.87962785,.12540586
-1.0030459,.39888465,.75802408
-1.5605719,.651999,.57965005
-1.2077948,.6666682,1.7181779
-.6507087,.58101158,.75910026
-1.5847015,1.2197307,.1686733
-.76007501,.24906019,.78158182
-.55960028,.30125413,1.1299188
-.51202551,.88447852,.14949999
-.92447256,.48571562,.59975495
-1.3593897,.22424066,.35693399
-.5221643,.70468022,1.7935573
-2.3486925,.23739627,2.4524542
-2.1941061,.42607189,1.0554808
-.48873376,1.8554908,1.381411
-1.9601533,.55279008,.75409275
-.71348939,1.4919342,.73393177
-.83852483,.72592062,2.3363281
-1.180516,.15896773,2.6686378
-1.5959245,1.3166963,.79285574
-1.1204069,.27933002,1.0185248
-1.3706197,.39038595,1.6693513
-1.2956337,1.3667086,.60698302
-1.1509155,1.0366205,.48324581
-.64349254,.72393672,.76646247
-.79756569,.51541618,.00413691
-.94918137,2.4908863,1.1513653
-1.2315998,.17607896,.98537051
-.68351635,.41525989,.48341351
-.88840268,1.3094315,1.7296102
-.91659174,1.1932855,1.0748548
-.25086187,.49190215,.32960215
-1.4523181,1.8482998,1.4533902
-.7417003,.62107455,1.5703586
-.83794475,1.7941783,1.9470397
-.61227975,.20589805,.0291968
-.34665413,.50671912,.85070823
-.50247431,1.2385577,.10244721
-1.8468195,.57817974,1.8497215
-.78149307,1.3543982,1.2262193
-.88963372,1.4157768,.53179743
-.73370551,.02675419,1.9821871
-.47457922,.23352988,.17065922
-.68700842,1.7333675,.44664168
-.89200671,.28836828,.20254799
-.57712788,.74939143,.38891222
-.72337181,2.6669312,.54766048
-.4866047,.25916518,.03168508
-.84567157,.18610317,.05278593
-.77288618,.64599145,1.0984148
-.56214875,.20576275,1.8421855
-.91453779,.83329685,.95129343
-.52896432,.36364999,.04743623
-1.3532147,.27020433,2.0730233
-.6835113,.57324867,.88454689
-.52812078,1.7166537,.68696795
-.45582184,.49951828,1.8710274
-.87799615,.25821709,1.4145091
-.88369625,.78636772,.0612852
-1.643179,.03130279,.10717844
-.56591588,2.4149311,.26594159
-.51519818,1.1290402,.90755014
-1.1494277,.00484117,2.057756
-1.2994819,.63738906,.45036333
-1.1880579,1.6499057,1.9260272
-1.0642523,.68713617,3.820991
-.99484198,.24396638,.22937833
-1.1739004,.61584312,.245694
-2.0586076,1.3064484,1.6419463
-.52844248,1.8071351,.63805101
-2.6884068,.15869519,1.6657713
-.74020506,.31278791,.17305177
-.67033965,.65989377,.0836927
-.75298763,.37991684,.10685877
-1.3323883,.28132067,.78787251
-.60768722,.76720101,.34308443
-.60388797,1.5684108,.8587975
-1.668545,.10109098,.97004306
-.43676003,.59170816,.43587003
-1.8358855,.00681134,3.0397032
-.98662336,.70941221,1.2156197
-.60800267,.88401551,1.4071097
-.84397816,1.2076766,1.2596656
-.96064266,.8345529,.55941406
-.33948965,1.4492392,.44709409
-.96201413,.84249278,.43719408
-.96375976,.12438131,.25935115
-.79549473,1.3992999,1.169028
-1.4998704,1.2063243,.0882401
-.8604101,.3630218,.14828795
-1.2012124,1.3685949,.27422172
-.87995143,1.1145809,.27911609
-.67361348,.1410088,1.4427261
-.94837003,.36744068,.4638126
-.53041497,.3136323,.3076487
-1.5753543,1.2884997,.61472664
-.62358055,.17584715,.44558019
-.778198,1.8218977,.41728523
-.95442488,.40144624,.46080325
-.62272592,.58912782,1.5048754
-.76628286,.15726326,.87410797
-3.3575274,.05270002,2.1490174
-.29228162,2.2220545,2.5880334
-1.5987495,.74929141,.47412163
-1.7741641,1.2078298,1.7799851
-.60070114,1.0250579,.65943635
-.52006342,.47995808,1.0161313
-.47733637,.36299471,.48573145
-.71201131,.38768544,.32302159
-.63534016,.85585785,1.2142065
-.75525451,.73968926,2.0990471
-1.4125189,.7319183,1.1847958
-.35006577,1.9897073,1.0591395
-1.7735512,.77985537,1.1356025
-1.7740371,.29999888,2.4127352
-.49193524,.06687663,.18250145
-.61719551,1.0030238,.23961658
-.48920244,1.2071325,.11913559
-1.0102289,.84225276,.52616019
-1.1322936,.45085592,1.6524379
-1.5190006,.91399867,.94922152
-.42641595,.33193985,.89649251
-.75482875,.5273134,.51581749
-.70985724,.49712005,.83661812
-1.3437725,.72846614,1.2097078
-.36427159,.06914166,.13711422
-1.1982354,.3712425,.56991661
-1.8438349,.344873,.54258159
-1.3246075,.35223731,.45742268
-.92629493,.0641143,.94263029
-1.1394376,.08573734,1.3764644
-.42799282,1.4136762,.7827303
-.48954042,.99103137,.84655718
-.50614987,.13407227,.63942077
-1.194954,1.0464615,1.8143538
-.47616261,1.7736483,2.1571851
-.30700442,2.1298739,.15546494
-.72696166,.27434347,.87767075
-1.5350084,.14038254,.39297515
-1.456795,.00809387,1.7636251
-1.0054051,.58991669,.83001879
-1.0492548,.55007275,.5857449
-.52162556,.37506239,.53335038
-.45122427,.11190141,.86838699
-1.3319587,1.2059718,.62140266
-2.3940932,.56759307,1.6126875
-1.9367686,1.1216856,.99531
-.80250573,1.5144045,.24636444
-.82423257,.66854384,.93153281
-1.1526699,.94559225,1.5296823
-.88685204,.79712025,.36536725
-.46087166,.79352493,.34941154
-.48990054,.80857591,.31155211
-1.5396493,.39382204,.03125675
-.41370831,.79308173,1.3780197
-.992438,1.1386721,1.875978
-.34280175,1.8918075,.53945716
-1.1935115,.0337491,.17670191
-.74830742,.73552748,.31941561
-.66059386,.12314271,1.5479507
-.40292608,1.4259163,.83578856
-.72491451,2.0568767,1.5996037
-.62863179,.54072124,2.3784406
-.32505777,.36372403,.31877537
-.94349891,.24660648,.69632593
-1.6543227,1.1267504,.42976208
-.46149811,.35489715,.9891917
-.58851957,1.293448,.64117617
-1.3064155,.18238765,.00321686
-.90138448,1.4590424,1.1961659
-.4777755,1.1349815,1.7191518
-.79512337,.75783248,.03468261
-1.3139934,.29528575,.56688195
-.5636978,.49321043,1.0147302
-.81439482,.55811862,2.3006877
-1.5005356,1.3253113,1.7681298
-2.0549138,.26436838,.97229313
-1.5180193,.79366875,1.0234371
-1.1260188,.22692683,1.0447367
-.63096563,.58062177,1.1985539
-.67525266,.38983025,.26675001
-.95784593,1.4140834,.33776395
-1.3937772,.6091124,.5222076
-.57627153,1.7161298,.95762825
-.86300345,.19377264,.53720987
-1.0027543,.38116179,.12753994
-1.0722688,.02850552,1.0293963
-.60633853,1.5618782,1.1854483
-.71739293,1.2405596,.00721156
-.6244246,.15620934,.30794767
-.56704173,3.3090222,1.1092502
-.94481311,.08135694,.01373316
-.40548893,1.2282689,.28599779
-.550434,.3024723,1.0065651
-.99698957,.35624428,.88221211
-.8913062,.25341494,1.7333202
-.74751688,.83028466,.42732522
-.87845493,.12158808,1.5026842
-1.8694145,.64424922,1.5024074
-.53919043,1.2633175,.60696186
-1.4431728,1.7525686,.11367903
-1.3140973,.33225499,2.1578483
-.33258012,1.1346497,1.3784516
-.97406587,1.7946386,1.5079277
-.41400326,.84884083,1.1128511
-.72375703,1.8581688,1.1626356
-1.2218151,.21345918,.60856468
-1.2015434,.02503714,1.8376935
-1.0856388,.25809706,.97069041
-1.032256,1.9095888,1.6628914
-2.2337756,.44699747,1.9791753
-.73400203,1.1753744,1.3630934
-.50770308,.23684258,.44282296
-1.0795875,.22612773,.4697697
-.81362916,.66911032,.5168045
-.60069493,.70699378,.54549114
-.67247358,.84850941,.28915285
-.46547208,.9464522,1.1310393
-.50258648,.58489315,.91878704
-1.0687627,.7194567,2.1395889
-.24218562,.86866552,.62744271
-1.2723191,.58009706,1.7754099
-.47696321,1.7833789,.12063002
-.66599045,.69951131,.62838584
-.77534754,.4454217,1.2335499
-.68713896,.89895969,.7430472
-.87311823,.26106038,.31382163
-.80489444,1.4521632,1.8138496
-.32091803,1.0874173,.08440456
-.44919518,1.4181503,.80441259
-.72144006,1.0319338,.94142875
-.93077483,.81279501,.52101697
-.90349427,.73160943,1.0809174
-1.0464422,.30229002,.64887233
-2.174541,.21096003,1.7423175
-.69890221,1.4407369,.70427317
-1.5821873,.38896576,.62151451
-.92318619,.39660065,.99164339
-.83151383,.63845826,.72732532
-.57863785,.44928518,.31348702
-.73125025,.44810145,.0422412
-.6315864,.76586583,.82989243
-1.5323321,.69963089,.02459977
-.93807798,.68491575,.37898765
-1.0849491,1.0202752,1.9570041
-.46481536,1.7427331,.48606527
-1.4904177,.46273606,.98658479
-.91145304,.23179715,1.0938464
-1.5705051,.72957797,.04032056
-.72073388,.323442,1.1225388
-1.2896262,.35635744,.48033501
-.59209858,.42571037,.04626193
-1.9468453,1.0091386,1.3211468
-.65942438,.15617648,.43895863
-.7197266,.14637773,.54124454
-1.2616304,.61638064,2.3092912
-1.7194066,.07910649,.0171561
-1.1728823,.06576158,.27260283
-1.178235,.14722577,1.893873
-1.4946402,1.1196354,.26602198
-.87438761,1.0524734,.6830609
-.68250533,1.4612483,.43362929
-.36292655,1.9966891,.80340552
-.97754112,.22678188,.77891155
-.60362062,.17147792,1.0724193
-.32936889,2.6090021,.29824619
-.36650635,.58195187,.05810484
-.75862493,2.4890647,1.084385
-.31312494,.13418219,.35760294
-.7531402,1.8247386,.29183553
-.65386265,.56197259,.49631972
-1.0209483,.62130162,.88442433
-1.7041699,.20173882,1.2707809
-.72575136,.62150081,.76565343
-.89388989,.90223633,.20314891
-1.2647742,1.0897226,1.0145383
-.59751131,.8722623,2.7083138
-.61716314,.37257637,.19056781
-.59519754,1.0459134,.12575025
-.63981722,.11888664,.77523651
-.41345374,.23986086,.08691214
-.69813676,1.1712556,.03555701
-.78177976,.32193314,.55542183
-.69648512,.06832362,1.6192389
-.81148458,.39929631,.57956036
-1.0467908,.16713058,.41928245
-.45318718,1.0389468,.18069572
-.84032108,.16311076,.1725007
-1.3832104,.06698469,.00280828
-.76492736,.12525025,.31358053
-.48380921,1.442617,1.0712685
-.86849231,1.2312023,.29652772
-1.8269522,.08204003,.31479329
-1.4035466,.57595342,1.36266
-1.0171043,.68316211,1.2607516
-.57899452,.33058147,.30854229
-.35642526,.19507318,.25057413
-.91618242,.32949686,.85998496
-.76468664,.7693867,1.7691811
-.26640587,2.0272446,.02471695
-1.3566355,1.8343287,.26017656
-.52298333,2.0016412,.96382502
-.80027765,.07298509,.34975264
-.65605013,.90712399,.61370039
-.59543099,.05371511,.70051053
-.88211245,1.4050728,.53734049
-1.1828391,.25943541,.55897985
-.5952043,1.188573,.48927583
-.98908829,2.0058474,.23691671
-.49136211,1.3654443,.65359489
-.89499148,.06356465,.6223192
-.8005407,.5884852,.7263254
-1.5007864,1.0164661,.18861743
-1.8425607,.86408449,.67446779
-1.4853624,1.9916371,.60934808
-.65898705,.18673928,.35663711
-1.0321012,.87612583,1.391669
-.6936586,1.3133032,1.5380818
-.71146554,1.0401044,.15888567
-.73186718,.55532489,.20368104
-.73533569,.37358099,.41005806
-1.3549965,1.2568271,.29502828
-.91118319,1.0145647,.48953431
-.54474266,.12517183,1.5560748
-.81168541,.70807056,2.1532505
-.45803125,1.2001805,.06508532
-1.4269073,1.512059,2.0351078
-.33497963,.75293831,.79614444
-.56933346,.5201233,.57159944
-1.0272657,.99390728,.04066449
-1.439546,.96044022,.83302988
-2.3302515,.42067336,.48693694
-1.1587385,1.9582104,.70641621
-1.4762173,1.4705082,.55338626
-1.2025729,1.1639676,1.2485232
-.54076325,.85489809,.67494229
-1.6252266,1.0205334,.50929596
-1.2509275,1.0047716,1.9474395
-.36984292,.87128256,.39287949
-.94039739,.75144456,.72905874
-.38685074,.93054577,.50986579
-.87317241,.43580583,.02265537
-.7096091,1.4138902,.7705054
-.72627927,.51280071,.39773993
-.24170949,.88923323,2.4745543
-.75285388,1.0495725,1.1584143
-1.3218669,.93270937,1.0433342
-.85006625,.77579222,.59714777
-1.3160272,.33010145,1.2798555
-.83174933,.25832792,.49992366
-.49907556,1.2944199,.58335573
-2.3478062,.69544466,.45468554
-1.4777074,.34826434,1.0914386
-1.0007031,1.2520578,.55110437
-.49253568,1.5411757,.58908952
-.80997997,.96701726,.63465745
-1.0613258,1.0024787,2.1378798
-.28815223,.04347451,.83594626
-1.925715,.50596209,1.118761
-.51606925,.89523548,1.2792245
-.99696046,1.0470794,.29138534
-.44768791,1.365467,.13126814
-.65282159,.94493765,2.5607962
-.6275961,.79185208,.90060857
-1.5936973,1.1587643,1.3504793
-1.2719152,.29095273,1.3727177
-1.0399944,1.2466256,.24295412
-1.3706366,.61672684,.91859071
-1.9170133,.49854702,2.6856529
-1.0952387,.15668048,1.2308649
-.48331887,1.1545546,.34019656
-.90145925,.32118297,2.4325944
-.76534113,.51727165,.19086518
-.62378288,1.2151993,.1645496
-.60079451,1.420214,.39835077
-.96840636,.56327342,.45878013
-.84413569,.95572414,.92900891
-.70337643,.47169665,.32630521
-.47401446,.77416171,.10711903
-1.1920274,1.6270101,.85645251
-.78019572,.8553203,.9963774
-1.0615187,.61328627,.35068808
-.43304008,1.3454206,.02152946
-1.3213921,1.246889,1.5686561
-.48361906,.02109737,.08373967
-.996764,.16946663,.71111438
-.52946165,.23775675,.44872824
-.81417623,.51601968,.4091413
-.34753042,2.7580799,.04345602
-1.4599607,1.3814174,1.5028087
-.92300984,1.274834,1.0505859
-.3481651,.12732682,.3005627
-.83422352,.82425824,.24685912
-.6108001,1.4967859,2.5773395
-1.9339821,.18948945,.66331034
-.60316841,.58647182,1.6843102
-.69067965,.69755722,.82333125
-.59100321,1.1671546,.22917028
-.96929465,.09243601,.92970369
-.91654415,.34543981,.19879246
-.7484514,1.2641729,.16754047
-1.7344668,1.0753456,1.8321519
-.4121837,1.3602971,1.4610675
-.37019066,.86337307,.29000083
-.53769082,1.0074698,.12534388
-.94731916,1.0292334,2.9782591
-.83162581,1.2225065,.83767197
-1.3312695,.54163182,.41044437
-.76735665,.95863885,1.5723519
-1.6011103,1.2287313,1.3270942
-1.3052657,.03681421,.59111048
-.49197784,1.3232634,1.1437594
-.5953639,1.0475841,.67567214
-1.1737809,1.5649122,.55840628
-1.3131203,.23329632,.20478058
-.74782729,2.5926104,2.0491921
-.38216215,1.5324399,.47211606
-.40125806,.87341626,.26051452
-.39987115,.36087647,.14011668
-.5666623,.94822857,.44977501
-1.4797849,.50961553,.06406053
-.99611968,.63999166,1.428446
-1.0551408,1.3082819,.08705169
-.71227826,.5185779,.10907808
-.82261546,1.1072654,.57310855
-.99842503,.91123745,1.0799516
-.87809696,.23906039,.88172693
-.50288779,1.3617175,.3418556
-.95295269,1.562058,.78629255
-2.7234312,.29414712,.67455478
-.7370645,.93632718,.47354659
-1.0500325,1.409717,.40062195
-.66486241,.87381693,2.2794127
-2.3569356,.83426258,1.6234417
-.5076716,.89190532,.13925222
-.7572057,.39724112,1.9143931
-.56144757,1.7821917,.26955255
-1.5247189,.09292487,.46469418
-.29346818,.67144854,.21088867
-.78803458,1.488415,.24005871
-.50993577,1.1054069,.50104449
-1.1607318,.76251818,.30176278
-.56555874,.52610993,.37261657
-1.1788194,.42819043,2.0228921
-.53884741,.17662576,.22517526
-1.0084448,2.4428615,.12215864
-1.3838012,1.7195361,1.2829942
-1.1390503,1.4477992,.33903222
-1.6437505,.35125,1.8270376
-.47254994,.11145411,.43188625
-.66578155,.25418665,.63631236
-.91543214,.28352532,1.6741926
-.76191339,.96797864,1.3065976
-1.4397189,1.1397028,.13548688
-.74271116,.10228858,.25891571
-.70096581,.00922687,.11733908
-1.5308516,.30461089,1.1467442
-.99722743,.57739022,1.0003411
-1.3857732,1.6270209,.65392729
-.73096967,.23018536,1.2535306
-1.1807986,1.4453475,.23849508
-.9288914,.97537931,1.0930596
-.57524511,.30649483,1.8652369
-.61649469,.19950321,.58707618
-1.9384988,.71492442,.32818767
-.56958827,.28960964,.51429393
-1.2609641,.40900811,.39077396
-1.0902713,.03413539,.55848464
-1.3282264,.70398145,.88625385
-1.0777222,.32643441,.71334208
-1.5152068,.07746257,.23761335
-1.333914,.21752729,1.250436
-1.2054456,.22449181,.06649003
-.50607228,.76098679,.70745847
-.63287197,.21559857,.13804756
-1.151726,1.5255851,1.7797627
-.54912816,.95858698,.5213518
-.41638165,1.4450781,.3301497
-.53322704,.40568235,.98018824
-1.1656267,.04915933,.39515761
-.32730152,.34099731,1.1241121
-1.4824366,.02899979,.75326052
-1.1761408,.13205002,2.5224223
-.61238089,.1248016,.10122473
-.80558,.39447685,2.030183
-.33612248,1.2833863,.93289872
-.57377796,1.5005703,1.1597261
-.89691781,.27918236,.32119672
-.42406013,.40518992,.73881294
-.69908572,.53532555,.68003402
-.50907845,.93594389,.49087836
-.91075036,.1618465,1.0613433
-.87877582,.82534857,.40100624
-.35316794,1.4833912,1.1948392
-.34201298,2.0002356,.3514595
-.74608171,.80514207,.56864264
-1.0666116,.18519163,.36467248
-.35761865,.23583789,.13307658
-.82356057,1.7176375,.31859025
-.70998715,.18310472,.22416639
-.4049266,.76859745,.28128464
-.53091517,.81663986,.66548068
-.60661893,.10855219,.08716701
-.38130467,1.1432594,.12249326
-.47021226,.42645246,.0358781
-.5682597,.34387567,.90672491
-1.0115689,.64175633,.41885019
-.93382417,.61671907,.17184531
-.44697052,.44817268,.13610301
-.54749776,.83212801,1.0582359
-.45018394,.04708739,.9672099
-1.6704199,.15389464,.6033005
-.94302598,.02680699,.00596875
-.44553419,.52067718,.41090073
-.95104516,.32681562,1.4683092
-.92932238,.22148255,1.0349492
-.81992408,1.5109927,.13850779
-2.1652022,.06080515,.73744494
-.78353579,.57096296,.77844561
-.5766616,1.1846505,2.2072838
-.48161936,1.6219832,.01567498
-1.8139541,.62499975,1.4236573
-1.4169455,.90838388,.040389
-.47722683,.45645381,.47367793
-2.3268179,.15322852,.6138919
-1.0967729,.75158955,.46198051
-.40426057,1.5630693,.14708341
-.79708205,.33346501,1.717926
-.6688259,.20926545,.45116842
-.49344096,1.1736691,.39384726
-.73397819,1.5839963,.42058026
-.72164962,1.2707351,.18170068
-1.1212844,.04277549,.45888092
-.65226569,1.7219201,.01890313
-.39052213,1.616405,1.010399
-.22831954,1.5845612,.5989449
-1.17753,.15118406,1.6108055
-.96413934,.09792494,.12587253
-.83405378,.16309604,.66722202
-.55308401,.15218253,.48865893
-.61694132,.22543639,.50891999
-1.0180483,1.4716337,.70243345
-.5474672,1.13608,.71151493
-.74886504,1.7517921,.45184771
-.60231214,1.3558504,.67622213
-1.3146302,1.2137649,.94755048
-.44292557,.71318586,.00125453
-1.5887135,.76111978,.82361729
-.79135091,.57805689,.14729086
-.43546287,.20100052,1.1642505
-.60815742,1.267193,.26968618
-.46412245,1.1964605,.17939091
-.57137631,2.2623435,.44842613
-.6746796,.42623551,.08183317
-.86421522,1.5927322,.02017026
-.92582717,.53568664,1.1852625
-.68473181,.64104595,.01155374
-.80459039,.70370441,1.0902991
-1.5563472,.58591625,.02559106
-.90287228,.13797156,.37999121
-.76973029,1.0354144,1.259413
-.85849763,.27733681,.29356458
-.48665581,1.18118,.79293015
-.52896145,.50151229,1.1066243
-1.3797251,.33726531,.79880266
-.49974151,.59188436,.96240417
-.40862128,.68972712,.27742723
-.27597992,2.0554937,.30688072
-.84658353,.50644931,.49762098
-.2465515,3.6294092,.50281686
-1.093036,1.0949896,2.2228644
-.36623697,.44587089,.46415853
-.71527837,.71672591,.27244201
-.91632296,.29103608,.3899763
-.22901005,.28744153,.68611947
-.56994836,.28292389,.05776507
-.32411292,1.7881385,.45328866
-1.1813585,.9091251,2.5298489
-.62093967,2.5782191,1.2127795
-1.2367249,2.6668257,.58699881
-.64851933,2.1374025,.12771474
-.66727009,.82575776,.82454734
-1.9739602,.44502578,.87310846
-1.8986133,1.1169237,.72210354
-.59880781,.03200074,1.0928259
-2.0429301,.22038936,.36398205
-1.4227005,.2392401,.73797804
-.73893887,.40258377,2.2419508
-.49429371,1.7572818,.22008603
-.89290196,2.2280942,.78384464
-1.0317804,.15543394,1.2007221
-.8741028,.28665448,.79667821
-1.0083693,.43877198,.60736598
-1.1034507,.3980893,1.0366433
-.87158733,.34679143,1.05624
-.33096866,.78064587,.19704639
-.66106164,.39785953,1.3060465
-.91426737,.65115515,2.0154522
-.66939867,.69115511,.35276522
-.23731434,.82115149,2.1117091
-.70437334,.74486154,1.409602
-1.6664866,.74937851,1.6918887
-1.509374,.67411542,.46620709
-.63681825,.37496371,.76752706
-.78501578,1.024477,1.205464
-.81606537,.39769414,.8171546
-1.6776551,1.4298343,.68074572
-1.4740908,.24774614,.17068221
-.88776043,.05346017,.34344941
-1.0541531,.33508827,.85437667
-1.1788589,.64953454,2.2794818
-.4642392,.54426794,.41450005
-.45474626,1.4616574,1.2242135
-.34326236,2.1146454,1.0524387
-1.0686726,.82637955,.33274132
-.21985313,1.1722897,.55197883
-.7146992,.48420572,.51229472
-.9742243,1.0545114,.80876112
-1.3415618,.71646499,1.2004665
-.9523609,.97769846,.21746273
-.4235158,2.053867,.5270754
-.3972109,.94339106,.18920987
-1.2141952,.7290572,.12639837
-1.994209,.26744415,.54818721
-.31662555,1.0924341,.16088876
-2.7809302,.17944202,2.1304768
-.68981607,.65971482,.31983225
-.97449329,1.043995,.30055395
-.31136716,1.6512172,.16590523
-.34712295,.77094584,.18218004
-.48839542,.03111353,.6607621
-.65073564,1.2715952,1.9663469
-2.6870986,.0712153,1.4723979
-1.4986897,.55163848,1.1106101
-.37753623,1.7185798,1.6504301
-.75511128,1.1103104,1.7058573
-1.500355,.39772063,.02468331
-.68483996,.27909345,.30719381
-.60113717,.41560862,.86943522
-.77452025,.46543792,1.1526178
-1.0023063,.61275579,1.5512075
-.61086156,1.3335049,.42869742
-.46982904,1.3169615,.44954638
-.36774841,.77641378,1.6149459
-.79703807,.21893835,.6622374
-.52271329,.66279697,.92049409
-.60099745,.5863937,.91642953
-.72689302,.85518451,.09642927
-.59494936,1.2459103,.28499225
-1.2193555,.14502946,.10199781
-1.2636798,.73312596,.58183411
-.71169972,.41702912,.59990592
-.6945673,1.5484684,.61398631
-.6146325,1.0755874,.74205697
-.55090365,.21210159,.45974674
-.66250448,1.1555945,.90858954
-1.3530147,1.7443343,.36875516
-1.0045123,.94087852,.61004387
-.71151352,1.4292465,1.4913664
-.6764422,.12745389,.40978631
-.64508453,.30104672,1.4754233
-.49235587,1.2810451,.210461
-.80848375,.14490472,1.0830214
-.69512119,.58558161,.59037334
-.6510954,.96498712,.27273169
-.69616315,.3568606,.92330748
-1.6424548,1.4387972,.40385817
-1.8838581,.79964421,2.344548
-1.1010684,.45312472,.22896644
-.46432453,1.1693966,.19144049
-.83759869,1.7228843,.35311659
-1.0429425,.08179988,.87543799
-.70493809,.89025999,.95513024
-1.1038924,.48719214,.14042126
-.61433186,.1992471,.49505826
-2.1793198,.19577399,.31367739
-.98894806,.5075279,.04774063
-.8983129,.39984356,.34471796
-1.0198604,.33607377,.68048344
-.89897168,.179649,.50551588
-1.0016348,.90060345,.24960821
-.99801541,.7581776,1.0719196
-.41775411,.17362045,.2386407
-1.516276,.69706939,.8113852
-.74322159,1.3811929,.54680115
-1.8801552,.36053575,1.0471624
-1.1614453,.955207,1.8072038
-.36713229,1.1480934,.09973226
-.50365914,1.1646292,.97443572
-.35248869,.23842138,.12194658
-1.2058752,.09606468,.05767478
-.49901118,.55646298,.06311112
-.68368548,.08836608,1.0920387
-.75393894,.73559891,.62498544
-.9043051,.4267446,.81050201
-.83068932,1.0083528,.7488963
-.62228579,.06090245,.35286654
-.84460453,.00631533,.02344778
-1.9422508,.21861475,1.5543727
-1.020251,.29242152,.411764
-.50066469,1.4811047,.1015206
-.55386914,1.0385377,1.0775436
-1.4847189,.02523402,1.2544018
-1.6121417,1.6940002,2.8204137
-.47791639,.29924637,1.0801058
-.59532666,.92552721,.76680598
-.7338038,.69133452,.78227353
-.49769888,2.4139438,.84398949
-.27720122,1.1075788,.12773035
-.83739916,1.2056778,.2616499
-.34265909,.51581809,.68535611
-1.2426147,1.6386774,.66776046
-1.1601619,.6118126,.19800579
-.37986851,.72632087,.62364054
-1.1168643,.65521318,1.9338018
-1.1324477,.08568002,.25239803
-1.665331,.69677453,1.9099513
-1.0938122,.28224098,1.3921985
-1.1787508,.57126699,2.3341625
-.77712083,1.5766444,.81271617
-1.3385724,.49768623,.09581706
-1.0909396,.80497918,.23984337
-.4975206,.72505698,.30262301
-1.4546536,.38128559,.12521944
-1.763723,.55545299,.46688673
-1.0459978,1.1119121,.28121279
-1.3216824,1.0044958,1.2881041
-1.7132933,.06460332,.06671447
-1.2373217,.58620511,.86366835
-.30477458,1.7192658,1.7686258
-.60695189,1.1338563,.53821291
-.6095188,1.3118132,.75573509
-.56318701,.66974093,.36142797
-.91785185,1.194921,.50038957
-.69268709,.37966593,1.0576621
-.41467275,.89891442,.94232691
-.59744045,1.8307795,.48670079
-.43208985,1.1118214,.57264666
-.69040422,.53206995,1.5609728
-.98673745,.5955588,1.9956538
-.30718701,1.9071751,.28874462
-.59625757,.87482406,.18909594
-.47209199,.9431848,.59530778
-1.3588161,.05529573,1.0368887
-.35003827,.53043478,.83678462
-.41908689,1.0717814,.44467031
-1.0438953,.9057514,.30748781
-.61599922,1.0517022,1.0346321
-.9008054,.57797928,.06812855
-.83485683,.15162833,.23683651
-.60933154,1.4327487,.85619552
-1.0042315,.76097658,1.2958673
-1.5031428,.25274951,.40840199
-.39181703,1.1700558,.2443398
-1.1166246,.26190507,1.282746
-.46781367,1.5652514,.86035634
-.90525072,.70637336,.80445538
-1.4932382,1.3882279,.87792001
-.33746424,.0914564,.65990125
-.43042816,.86381736,1.10946
-.64242149,.93986487,.56649151
-.49084033,.88239091,.22042885
-1.5991264,.37464352,1.4242254
-2.0338175,.29870588,.60689252
-1.262518,.7564373,.27079349
-.67663858,.06848397,.77320403
-1.1023091,.27877728,.23000383
-1.4404735,1.4367686,.5504325
-.98998309,.74249251,.21587615
-.98071088,.27599804,1.3083772
-.83435202,.36254031,.4404729
-.68048331,.36537535,.17125069
-.68098803,2.1545921,.87434974
-1.7230325,.59371016,1.5182979
-.4633443,.65203584,.40307805
-.58439559,.6823969,1.744284
-.48137261,.86068266,.54651992
-1.366736,.26270175,1.0327361
-.61684297,.58245916,.18607809
-.45072112,.54477643,1.0102752
-1.0691128,.4910122,.32836758
-.44551374,1.2783563,1.092447
-.73669306,.78390617,.68752237
-.57996348,.3425126,.65665146
-.40829786,.45889164,1.0453969
-.55117647,.36173265,1.1726939
-1.0714506,.77556259,.72689854
-.7710091,.92949083,.87559647
-.5722894,.76945356,.22547375
-1.0461694,.68948146,1.4880737
-.56477617,.38463283,.220192
-.97714151,.04468837,1.6189745
-.79543338,1.6044331,1.6178551
-.43704311,.19891184,.64185482
-1.2934375,1.0185952,.01717497
-.32752241,1.2671958,.81107901
-.40741731,.86355288,.18152984
-.52974372,.78401619,.0378881
-.86889003,1.4039592,1.3687557
-.58610483,.41244994,.16443819
-.84518431,.05876231,.75462313
-2.3973374,1.6755464,.60508286
-.44056261,1.4885468,.77853519
-.61183919,.22365944,.11981967
-1.4368216,1.5814475,2.4717874
-.52518811,.76522136,1.563375
-.48786105,.10337291,.61442046
-.54491768,.59085895,.54837274
-.57868176,.58294331,.910661
-1.0025826,.39939892,.20375552
-1.5828817,.51986543,1.433052
-.43667342,.91593896,.54880399
-.29560664,1.8011603,1.1486133
-.55430568,1.5818626,.28964817
-.80178779,1.1004332,.24085092
-.3412901,2.029976,.26646609
-.5097357,.30199289,1.1461807
-.52667813,1.6705548,.01400578
-1.0593781,1.6700893,1.2707615
-.80548958,1.2151755,.98408684
-.76084998,.40822202,1.5623304
-.39879335,.38255031,.83446815
-2.0844791,.12306372,1.0539027
-.77471608,2.2922551,.48596968
-.91620165,.20480224,.24980567
-1.25641,.44152545,.24213496
-.92566188,1.7215438,.9552688
-.63771357,.90443554,1.2658854
-.69484439,1.4827739,1.8316781
-1.0892095,1.4690356,.49805623
-.60755285,.06540974,1.3303945
-.65630409,.31761006,1.8219823
-.86954347,.36187032,.02828005
-.68640519,.85966134,.72847086
-.36972901,1.015876,.3528067
-.8373073,.59531949,.10387099
-1.37764,.10170539,2.3812053
-.62981338,.17015974,.26966672
-.57355327,.84926518,.09947854
-1.5528826,.2916892,.95044624
-.85232963,.41960678,.98616417
-.66845705,1.5280216,.93121064
-.21684173,1.5466048,1.0653042
-.37215606,1.063691,.74675357
-.78904431,1.5283888,1.1847648
-.83116496,.29384888,.0332037
-.39540558,.50257647,.1981677
-1.1425609,.74896696,.99753016
-1.9737938,.64172552,.03971633
-1.3919211,.55921064,1.0552501
-.97341938,.60206366,.90022326
-1.8630603,.07459763,.61529859
-.71529378,.32822591,1.4289977
-3.3039519,.36527897,.42617365
-.55315676,2.2962724,.84189394
-1.543902,.37803805,.4754829
-.62568771,.44460102,.02491273
-.46862326,.89939988,.6456861
-1.2118851,1.114404,.00419241
-.43166878,.20571355,.54774516
-1.2785951,1.3830337,.44865096
-.61343048,1.0137319,.10318846
-.47163607,1.0008242,2.2689081
-1.7729663,.10461232,.25056403
-.6058101,1.0000608,.40187288
-1.1985779,.94045694,.49288565
-.74590781,.49318724,.00580824
-1.4695109,.21306516,.82287644
-.7546281,.75029885,.8974657
-.8729319,.38405142,.29676111
-.87016514,.03322109,1.5988169
-.78339972,.57149833,1.3212966
-.39926513,1.4808269,.6283576
-.48059832,.37284663,1.3133046
-1.5771729,2.1780175,.57107241
-.59492365,.65874407,.0697789
-1.1992473,.16006303,1.8828331
-1.0885973,.36218333,.09306302
-1.1719505,.58131401,.73495637
-1.0218963,.96613423,.17997271
-.64937624,.76283609,2.6660427
-.44558628,2.3392038,1.4337458
-.42672332,.43075918,1.7601147
-.68061082,1.6575787,.7803033
-1.0915244,1.0247472,.66328912
-.51594159,.99522938,.41080823
-.62520355,.83150132,.34466714
-.93192196,.38439561,2.3222062
-.40119228,1.8767467,1.6199658
-.32558445,.97076549,.51193992
-.60196711,.64298613,.29166551
-1.7378492,.11894237,2.2859589
-1.148306,1.4962075,1.3481578
-1.7369564,.15424723,.00225356
-.65337962,.14565855,.56324451
-.47386477,2.0010944,1.5416159
-.86836716,.37519943,.24787968
-.77730677,.79268762,.04035137
-.79385911,.44272527,1.3184245
-.53410914,.11999727,.41489042
-1.0516504,.07102453,.72126615
-.90144178,.06846733,.50149092
-1.1073897,2.2388288,.80062401
-2.8677827,.28382372,1.2517967
-.32914768,1.0854038,.57360059
-.78090665,2.4090153,1.2475039
-.85710677,.46228034,1.5178951
-.64045156,.95607611,.48889715
-.35362015,.68110968,.89231922
-.6699256,1.1253349,1.0060939
-.37236004,1.5818696,.50304638
-1.1037581,.50848318,1.862858
-1.6888885,.60821165,.12564143
-3.0947714,.2495025,.46880957
-.61701215,.51537978,1.1622258
-.49255046,1.1769418,1.177887
-.32331658,2.3746054,.95185497
-.42935529,.18966837,1.4651399
-.62011365,.9367204,.90074189
-1.0779892,.53363829,1.878068
-.74086086,.74911629,.67181507
-.80685749,.7122127,.67863845
-1.492923,.23235537,2.0810342
-.92143617,2.5980825,1.8643866
-.99517464,.05476165,.13471261
-2.3754143,.38340041,2.1916347
-.66199139,.91115886,.78987929
-.51429785,.25841097,.23553122
-.79392455,2.297331,1.4287279
-.55972857,1.1837858,2.2227015
-.79069459,.27854609,.348872
-.88592958,.68600178,1.4141256
-1.432539,.27257606,.47140777
-1.1416646,.42770422,.37864945
-1.0055697,2.0354305,.12311004
-.47405457,1.8380599,.08637304
-.79097732,.63114539,.17644017
-3.0880118,.14993271,1.2315698
-1.1348585,.61814027,.60169705
-.93633998,.44682476,.06646238
-.60108713,.51559263,.27624062
-.82967741,.65948889,.02279373
-.93152419,.28307229,.66751614
-.38189397,1.7593135,.24905269
-1.1800577,.51692232,.15618059
-.79355604,.27014742,.47802595
-.93314955,.91240605,.95819121
-.74578264,.33708627,.01492556
-1.0589735,.65678828,1.4779964
-.71619448,2.4525288,.71502904
-1.0121306,.08414361,.75614767
-.70803282,.99220661,1.4874135
-.8463686,.17729329,2.5231789
-1.2330491,.96378341,2.3485482
-.50500279,1.3016886,1.3204252
-.97988963,1.3759258,.47633637
-.92763484,1.2461101,.65670437
-.51651047,2.1118294,.730455
-1.2425458,2.4029187,.49139612
-.52164298,1.2998587,1.2340987
-.63245372,.68648292,1.0803851
-.81812364,.43872504,.38595507
-.53696606,.30310912,.44743762
-.52408111,1.3973493,.93490685
-.50686225,2.679769,1.2315121
-1.029732,.65017264,1.0994037
-1.0792463,.62631835,.30491874
-.56021228,1.0535366,.69418855
-.80032531,1.178276,.88253179
-.84924478,.55160378,.88993404
-.3230677,1.0178202,.52911257
-3.0545094,.97726363,.94970102
-.71362742,.56173976,.66373013
-1.637258,.55502621,1.2805935
-1.0087711,1.8156165,.38338275
-.72378369,.77740394,.90122803
-1.6592971,.11377586,.1323437
-1.8451839,1.2256073,.28393673
-1.0578961,.91283333,.39254253
-3.4137546,.0979821,.4666527
-.54949071,.56517456,1.0740707
-.74343709,1.2895147,.81719494
-1.0659496,.92949102,1.0384238
-.45334537,1.0152837,.85732885
-1.2339685,1.2898286,.81483249
-.78852938,.87848726,1.6544941
-.33888392,2.0209657,.4317044
-.93616394,.52853911,.21726293
-.24509336,1.1311479,.74417358
-.84776752,.83739106,.86217196
-.87775537,.40289474,.32745082
-1.0129552,.95355862,.26578497
-.51563883,.30940408,.12107653
-.71049812,.83891487,.31170495
-.5476571,.65122113,1.2110637
-.85807682,.6526269,.84450094
-.7534039,.17572909,.09641328
-.9848399,1.5797772,.48588866
-.74437362,1.6984527,1.3972172
-.56542107,.08479883,.47424765
-1.1462353,1.2979326,.81814031
-1.0812326,.06856416,.21087014
-.76408391,1.1737361,.77691864
-1.0905298,.18552068,.37270973
-.46087568,.83311596,.70288729
-2.3152625,1.2205784,3.0580621
-.71137516,1.1417329,.75787052
-.39855156,1.161248,1.5343857
-.58287897,2.2014719,.53760488
-.84198026,.29595779,1.3680338
-1.9800677,.83779102,.46208112
-1.5757374,.54407164,1.1803012
-.79481047,.87339522,.94081921
-.43707662,4.2382645,1.930213
-.44450145,2.0311528,.14077596
-1.3174095,.48641613,.50666833
-1.1095172,.68295226,.86950323
-.72456205,1.6195586,.14478282
-1.3906425,.10180552,.36781552
-.65891903,.09534541,.20996941
-.74952263,.94037745,1.7344072
-.97529279,.41666602,1.1423323
-.93154593,.19322449,.5708362
-.84152173,.91434144,1.9155584
-.54782173,.28077264,.95517037
-1.2582251,.26982,.38535711
-.55603458,1.2751381,.44932749
-.39058392,1.4853726,2.0418703
-.8209047,.59998206,.75285469
-.71140227,2.9517996,.60756952
-1.7337156,1.2449757,1.0271681
-.86539433,.19526988,.23682833
-.78554102,1.229386,.25137463
-.3722285,.65127449,.37344711
-.88051099,.4211681,1.4354427
-1.7167516,.64106203,1.5274572
-1.1475339,1.4580054,.32295934
-.78528515,1.5022793,1.2995818
-.78726802,.17995582,.81203913
-.50551282,1.4054162,.61656599
-.68913298,.66334315,.24023894
-.98556724,.8048981,1.2288629
-1.8796399,.92870819,1.523849
-.3530473,1.7417003,.44588528
-.40651318,.67845857,.88456889
-1.3349107,.63222018,.57679297
-1.4860846,.42777965,.29728475
-1.0439466,.47445492,1.2083068
-.76195747,.14011275,1.0851506
-.48695417,.13273522,.78092116
-.89368533,.90078764,.31897519
-1.2811351,1.3221387,.50397684
-.27902832,1.4070221,.31616766
-1.619172,.01330933,.49083663
-.57171714,.9039683,.42293135
-1.3998741,.36651513,1.1793952
-1.2033841,.19713823,.22171936
-1.2426077,.64149944,1.0349723
-.22374688,1.1791478,.11390566
-.74048484,.0634742,.54696954
-.64765332,1.3297013,.42173055
-.5090881,.7638163,.35454744
-1.1154199,1.8214053,.41348183
-.48924137,.4404148,.5125996
-1.554408,1.2558259,.77744974
-1.0407054,.94506819,.46710262
-.36332783,2.0379076,.32630747
-.48650492,1.5772282,1.3289676
-.91150133,2.2987966,.2065885
-.63602955,.65746389,1.0516631
-.9228703,.01092664,.63818689
-.32571355,1.4412881,.34258568
-.6860875,2.9223176,.98824587
-.30792762,.00089477,.04660273
-1.307688,.39841579,.14297401
-.58727198,.87639622,1.4576581
-.76412865,.97894415,.01591119
-.94402248,2.6478931,1.573401
-.81061629,.78517297,1.9215566
-1.5766793,.59976412,.4687693
-.80173886,.85681005,1.815692
-.51263423,1.4860041,1.1750118
-1.1852828,2.2181323,1.5031855
-.58198349,.86212303,.62562566
-1.2784295,.92989896,.59587975
-1.9498144,2.1079554,1.2860332
-.76084734,.32822833,.43711188
-1.0178636,.67923446,.18085636
-.41468467,.81096592,.8102295
-.68647449,1.1529841,1.1936212
-1.8105368,.64062072,.05760508
-1.0111726,1.6636787,1.0617848
-1.2681394,1.3513611,2.1447328
-.9048257,1.6077764,.14380327
-.95608022,1.3496181,1.7556882
-.72001689,.03370695,.31530804
-.38878556,1.5092445,.7328423
-.57749629,.80918378,.187291
-.63647271,1.7497073,1.3336464
-1.1452547,.04759004,.42669415
-.82315073,.45976571,1.7350115
-.46950176,1.5284744,.93355641
-1.434708,.62870604,1.1971057
-.90626147,.80128501,.81794729
-.73219455,.08784127,.97258148
-.57161331,1.8279928,.29658014
-.73189831,.11034822,.14846513
-.31292786,1.1652343,.09428489
-.4078804,.85492864,1.5208486
-.38342031,.04675065,.41837558
-.89079483,1.45195,.43646457
-.88721627,.8290196,.63961801
-.34368193,1.0712034,.91214897
-.60491203,1.0301781,.31280446
-1.3998601,.47402655,.00822837
-.50444292,1.4644551,.99070713
-.24442241,1.1770864,.06582938
-1.0547544,.61443016,.54006281
-1.3372194,.05031153,.05281284
-.40611354,.79663916,1.4225326
-1.0642764,.22484156,.18493103
-.42946783,1.6973673,.82465837
-.63592775,.23194346,.19101439
-1.1010363,.27765187,1.0372425
-.80586876,1.4433963,1.6702349
-.66398371,.0861059,.01896047
-1.0270693,.07024151,.97241318
-.57586897,.6257696,2.202477
-1.182937,.30732302,1.5909713
-.65618997,.7968501,1.7030779
-1.1324254,.24546548,.57183629
-.61410327,1.1336115,.80930813
-.56810625,.24012448,.02593037
-1.222234,2.2563156,.66473119
-.78906262,1.6133722,.60660084
-1.346299,1.0260026,.37847179
-.31366726,.88026017,1.1676008
-.3392868,.35485187,.42481135
-.89816956,2.6674515,2.1483932
-.54886308,1.1920035,.57547773
-1.435604,.02076337,2.2094601
-1.0380837,.41177906,.8509581
-.77603189,.54119966,.44939384
-.70950703,.22478439,.78432259
-.38487272,.64784425,1.8008135
-.56282775,.20198444,.39104999
-.42093981,.39656603,.39351775
-.47377551,1.543974,.01048895
-1.237522,.21339737,.80194078
-.66026647,1.0123013,.00055033
-1.2139393,.76162477,.20661405
-2.1967816,.15491988,.22362865
-.68753563,.06937633,.56441572
-.9191929,2.4124032,2.4670428
-.5247958,1.5943706,.70976929
-1.0525568,1.7384391,2.0517052
-.82219802,.41614677,1.5634262
-1.3206938,.87785044,2.0348745
-.76455435,.50521345,.44342291
-1.0667892,.64189258,.64396326
-.99892094,.99643732,.12554053
-.64641191,.97442879,1.513806
-.55061778,.83490149,1.5121586
-1.0625226,.53071421,.2104862
-.55152029,.60958757,.10784124
-.83095249,2.265831,.950081
-1.4047518,.59353033,.25469594
-.59424468,1.887298,.97001469
-.81501998,.93832357,1.2981051
-.83227887,1.0811065,.50739881
-.96271991,.46367056,.70787498
-.67051808,.30738757,.35891455
-.39217566,.65260641,.15548959
-.40837442,.5230915,1.7644349
-.44384168,.65555033,.74036458
-.61182041,.42052676,.03131675
-.70146669,.46718772,.98969561
-.54135833,.03370597,.35436951
-.28330985,1.5633577,1.5072733
-.46422654,.31492926,1.1580452
-1.6910224,.83327925,.00552254
-.41601304,.99109094,.01770766
-1.6077513,1.0718745,1.0583053
-1.150673,.28929919,.54259502
-1.7645961,.10061031,1.1169543
-.92436415,.10144376,.58958714
-1.200294,1.2355125,.59646297
-1.9166769,1.0788165,2.6456182
-.57632206,2.1790634,2.0956332
-.85336532,1.5369299,.85125887
-.76189425,1.3853917,.23983132
-.93617704,.20991546,.28524197
-.89925074,1.3458431,.67162398
-1.4905067,.56774374,1.5831353
-.57296156,.36516611,.21915198
-.75608301,2.5649839,.30770213
-.72667175,1.3817154,.33159202
-.49780955,1.1525237,.81731984
-1.2092746,.64575571,.54117682
-.46485108,1.2275039,1.3277043
-.76903671,3.1981611,.57327044
-.94787923,.36630889,.93720197
-.78943535,.06409933,.91220321
-.43783681,1.9473397,.42694401
-.92301394,.54664097,.20335867
-1.3343744,.92685491,1.224195
-.59965976,1.3537983,.14510764
-1.4916574,.12017602,1.2710762
-.21377682,2.1964068,.59464588
-1.1156842,.061106,1.1916411
-.36390569,.71342062,.55002841
-.8356404,.8892776,.95188715
-.66086717,1.3532083,.08404355
-1.0873299,1.5549363,.65575817
-1.0311179,.74795006,1.0450419
-1.9860201,.27181898,1.2103206
-1.6757816,.40940515,1.6118392
-.43433002,.28256825,.0218635
-.94789402,.27700072,1.2926865
-.76788958,.79799698,1.1409331
-.58851126,.3883141,.33132416
-.50356873,1.5909819,.35578299
-.59383992,.45401439,1.0811002
-.89801333,.07706473,.70701137
-1.0316365,.65993353,.35118446
-.69380681,.01874989,.68309066
-1.026464,.93863408,1.1969586
-1.0115185,.0984216,1.6406096
-.31649757,1.3824332,.62669038
-1.3395877,1.2017974,1.2173037
-.78128556,1.2156125,.67832326
-.74310772,.23784519,.48091043
-1.5273557,1.1515534,1.4321703
-1.1940163,.07416823,.3471668
-.71031033,.20646311,.68608953
-.26322809,.36179535,1.3320231
-.99634727,.39441663,.72049522
-1.5798333,1.7824207,.95512463
-.70998887,.39691984,1.334818
-.54733104,.10249634,.06720413
-1.0537985,.17754575,.2704223
-.81297739,.22909335,.6724675
-.4168107,.7396332,1.1586893
-1.9487723,.20120319,.17523794
-1.0987273,.49345308,.77994546
-2.5767929,.11423134,1.6456794
-.98640787,.76175965,.25840892
-.89566088,.35781504,.89849337
-2.3101717,.67287186,.89245637
-1.6783383,.23706121,1.5655167
-1.3635236,.03343896,1.9587413
-.84051379,.0332763,2.1848652
-.98073798,1.7082846,.76550653
-.50200966,1.3146668,2.8411018
-1.5661109,.08085809,2.3414214
-.67363397,.24656099,.580864
-.69643996,1.3909136,.93853761
-1.890635,.16658969,1.666377
-1.958649,.26874677,.59916704
-1.9538852,.84266535,.79266083
-.44687568,1.0419633,.0880803
-1.170297,1.2713832,1.0759638
-.58558882,.38400174,.49190419
-1.1525039,1.114765,1.300936
-.75440307,.63955295,.43773293
-.46780684,.85125902,.23681736
-.84730396,1.4078483,.07453653
-.7386751,.01347094,.07085614
-.98431024,.01681272,.69133651
-2.9600769,1.4315209,1.3533899
-.68219469,.26663391,.62642901
-.72115865,.26943644,.40473745
-2.0861161,.13192889,.78606624
-1.1502972,.09123577,1.4995319
-1.1251038,.01073414,.37790273
-.77861104,1.1769734,.5907576
-.44337079,.62069513,.75965439
-1.1365797,1.4931628,.0854456
-2.0023245,.03914616,2.0049396
-1.0547572,.01705092,.20552541
-.84789405,.30330061,.28896901
-.48087408,.02609732,1.1724326
-.43880677,.65524287,.10479275
-1.8079863,.86378719,1.7324068
-.57588409,.15404932,.61901658
-.35345359,.30246707,.77457987
-.50358606,2.0816042,.79852377
-.8677936,.11591488,.30742442
-1.012235,.14836346,1.2765422
-.96227902,1.1820051,.81518316
-.7960209,.28691076,1.9120457
-2.7832321,1.1417945,.42938142
-1.6668184,.4844674,.99178251
-.75216736,.65930527,.97527178
-1.1764233,.87058692,.1152763
-.5354055,.03173866,.27725869
-.83669166,.15684018,.28738958
-1.0157329,.68348386,2.3542979
-.92560357,1.0102635,.2014457
-1.0915019,.12164865,.87700126
-.32367708,1.5074895,.65147122
-.4448944,.5767429,.1447255
-.34046889,.94609722,.08128725
-.490812,.85083578,.31516667
-.25551491,1.7729762,.81281841
-.53259686,.85199177,1.2921967
-.6763498,.4429648,.15219952
-1.3046012,.65319517,.08203373
-.53819841,.18007781,.40167382
-1.3070159,1.0066161,.53402186
-.95064717,.41880509,.38876976
-.78270171,.12554599,1.1429237
-1.2077823,1.3753412,1.2152278
-.33307056,1.5158048,.74898715
-2.2972647,.52684132,1.7447576
-1.9889076,.40278722,.62346095
-1.9003394,.07534532,.59326143
-.34588476,.5997774,.39352158
-1.3848391,.19341777,.65338248
-.4866094,1.4769768,.17689952
-.72677696,.56944265,1.0796162
-.97312029,.15803085,.26357945
-1.6770397,.32598195,.73019003
-3.0828438,.33148027,.50958167
-.53978217,.18858981,.06856689
-1.8359513,.24949013,.6270244
-.55139061,.21901532,.66594662
-.53120757,1.1132875,1.2073776
-1.3604415,.86499452,.44762316
-1.4100932,.28476938,.21105136
-.5317353,1.41746,.10591902
-.35807332,1.7052541,.44198972
-.44591303,.00083606,.62313331
-1.5236728,.76468648,.04255063
-.72440922,.42656059,.02414543
-.73692786,.1969044,.38403794
-.67085897,.31547314,1.0618144
-2.1289201,.00727525,.92214303
-.83484051,.9365747,.27943891
-1.4582086,.42770235,.14894348
-.60423985,2.632713,.1815459
-1.3231255,.8059688,.60831076
-.74067333,1.004399,.99278036
-.7335507,.11964148,.69886876
-.61472818,.41714821,.57707312
-1.137233,.18288462,.26872759
-.55577561,.71466678,.82123976
-.34499519,2.0482713,.07691842
-1.1857159,.3515483,.2531631
-1.3126346,.86186097,.78023273
-.70496784,1.3466144,.02746819
-.80611587,.24862795,.03480795
-1.0419786,1.1803205,.22367077
-.43638112,.7663279,1.2585562
-1.4064567,.36692107,1.4663623
-1.6750222,1.0388907,1.4213236
-.38554069,.62712483,.33980381
-.38007966,.05931829,.33031338
-.85701212,.23845349,.33613195
-1.4786104,.56168204,1.2830694
-1.0748568,2.2040816,1.0451015
-.48763681,1.994629,1.7134518
-1.1708599,.33579193,.53622808
-1.4442291,1.3583403,.42435972
-.46502917,.55244661,.13023506
-1.8339693,.19512302,1.1384803
-.9468369,.13267278,.15396403
-.73327736,.30412774,2.0869615
-1.2589682,.10342949,1.9796736
-.32950329,1.6539137,1.4017712
-.99450094,1.5020955,1.3541543
-.42167515,.11025273,.07469132
-.49379249,1.2870401,2.0007292
-.63858807,.77247546,1.7410305
-1.1319762,.10916838,.94319496
-.61506713,1.7278862,1.9149115
-.45596362,1.7422465,1.9031208
-.55977068,.15454113,.28271189
-1.0455512,.41456556,1.8043565
-1.146696,.79334514,.34850078
-.52537046,1.6682201,.07005638
-.60348809,.85753284,.14614927
-1.7364425,.63701359,.08930606
-1.8354809,.48358341,.88929074
-.71854178,.36415234,.32665028
-.92896808,.71965305,.00076818
-2.1495859,.03222462,1.1051794
-.55947426,.65330578,1.0013556
-.4323414,1.9958776,.04603591
-1.1176813,1.4419434,1.3932616
-.99414408,.95404676,1.0417476
-1.0499161,1.4753687,.17971689
-.48588429,.51113135,1.5547702
-.84550192,1.2094298,.21257662
-.65263457,.63949305,.30934035
-.79290738,.33640342,1.2574682
-.54673202,1.8489152,.57730258
-1.0233927,.97820741,.6789448
-.33906101,1.2299204,.12771359
-.63224042,2.8438105,1.705091
-.52886074,.75885043,.60977697
-.71331299,.47041217,.23006475
-1.1036448,.0083311,1.0368225
-1.7023252,.22409734,1.0066049
-.45684042,.7471557,.24228845
-.50728536,1.203658,.89912382
-.52542282,2.5508588,.71432776
-.67558243,1.9095825,.3053206
-1.0786687,.12323818,1.1259563
-1.5754653,.36698878,1.2005333
-1.2139596,.15071803,.35595134
-.40790358,.32594184,1.9646264
-.53203962,.71076602,.12283687
-.47787359,.48266772,.89799438
-.58515266,1.1860984,1.1913127
-1.3560085,.75163581,.46297806
-.53281318,.82110722,1.4960469
-1.0548592,.15171306,1.5743854
-.81411684,1.7223677,1.4484671
-1.1938087,.30310589,.19097463
-1.192741,.21129405,.17451559
-.75899672,1.2419331,.82784879
-.6374576,1.8619317,.91451349
-.44619783,.4919511,.01682262
-.48676596,1.016314,.40128148
-1.0262709,.14499535,.27350617
-1.1861885,.16331249,1.2325801
-2.2942538,.38247592,.48889353
-.85355646,.61764498,1.6375257
-.50980799,1.278777,.29614012
-1.1398388,1.9680992,.3960092
-1.9046205,.8304337,1.2445858
-.87173536,.32872371,.66490222
-2.0480913,.98587448,1.0592145
-.77299797,1.1990445,.27866106
-.37258799,.92391239,1.0006353
-.45918285,1.5978562,.71282981
-2.3619335,.05039088,.24353454
-.39396251,.26278374,.08104844
-1.8585588,.51678988,.32269789
-.48543293,1.3091433,.96542171
-1.5687305,.42162177,.62088816
-.50056857,.20667432,.79511053
-.60993877,1.0747486,.56051621
-1.5955571,1.1066353,1.1917326
-.72446861,2.5016278,.91472237
-.65059142,.02257329,.8548867
-.73070276,.18703439,.82622486
-1.1264166,.67277123,.13468606
-1.2113956,.52728027,1.5949436
-.78712526,.28106918,.0968602
-.94145997,.66741615,1.6472806
-1.0954378,1.8365617,.02243568
-.44531892,.46709231,.83176536
-.82590238,.59641505,.26896118
-.60970799,2.3779952,1.3423091
-1.0839253,.57236835,.29045551
-1.08553,.05119174,.98016221
-.35995648,.56951999,.17797189
-.80942276,.79188416,.739691
-.86087265,.63038067,1.275026
-.53404867,.866855,.53209025
-.62392452,.42424381,.38531759
-.89884572,.56616936,.27225837
-.87199319,1.2087332,1.1686478
-.85784963,2.8609857,.73594506
-1.3131563,1.275769,1.9422994
-.68350256,.09357748,1.4982703
-1.1943808,1.1793543,.26941153
-2.1922287,.29989653,1.116309
-1.3082946,1.178197,1.3840065
-1.1113702,.50065059,1.9818397
-1.3383851,2.2420446,2.3648687
-.85174954,1.9054286,.39733451
-1.129548,.43810268,2.5157195
-1.441278,1.509342,.66813457
-.7255826,.81301011,.23648842
-1.0450212,.0038373,2.3080157
-1.1054451,1.0574794,1.2490296
-.45652571,1.2939899,.89678706
-1.1320308,.04545738,1.0351427
-1.0045427,.48358449,1.6361806
-.73067428,.03111618,.85563651
-.9075105,.43921892,.95644906
-.45477493,.35751494,.77993388
-.79356556,2.8708533,.22020986
-.46057191,2.0228225,1.2274254
-.54476132,.96381363,1.0407849
-1.0445949,.08157871,.04754359
-.51373178,1.0181191,.39457112
-.2243129,1.4619459,.77278401
-.54747435,.13058052,1.0562786
-1.0083437,.70440173,1.1334688
-.88595883,.74651968,1.1561514
-.5197623,.20360818,.18498941
-.50207686,.92640805,1.0854036
-.99810029,.0455252,3.4521324
-1.1951986,.18817193,.68836072
-1.8554518,.91690063,2.0925599
-1.7851735,.09115076,.29708702
-.44102123,.95727975,1.2543157
-.86045738,1.3314396,.35523279
-.76553783,1.6424116,.94004993
-1.0169114,.45977034,.93161177
-1.2856241,.55383372,1.4754196
-.83504826,1.6660218,.07642833
-1.6337218,1.699747,.05984007
-.98855504,.25684297,.16606373
-.74471199,1.3923451,1.5143552
-.59190466,1.1416195,1.3069012
-.51123432,2.5162145,1.0903823
-.4287568,.68421925,.88664074
-1.0621152,.78039116,.75343923
-.71162825,.94351661,.63121965
-.64934633,.11045863,.04400389
-.6590141,.76228929,1.1274099
-1.947319,1.5154784,1.2109174
-1.3182594,.06418468,.18862662
-.4448112,.39947473,.44120012
-1.5931178,1.9578012,1.0670696
-.92577296,.02509758,.81107075
-.37191726,1.3854178,.98019231
-1.3395129,.27117458,.29291725
-.82135854,.34848711,.33452343
-.56298594,.9481405,.20094716
-.64649229,.20195604,.10571592
-.53218878,.74410616,.72534453
-.59017107,.93688963,.8805462
-.88269337,1.3244887,.81594257
-.44544463,1.034225,.41986385
-1.0834509,1.2170397,.64858084
-.49270929,.56024573,.38228127
-.43753896,.44702784,.46987415
-1.0577981,1.2249352,.49261012
-1.1129117,1.0615008,.64650688
-.42530777,.03538565,.07824858
-.45932319,.74515031,1.1323152
-2.4337966,1.6465091,.77930235
-2.0973645,.20452708,1.4372669
-1.9009487,.17209676,.21357099
-2.0278298,1.1185096,.26905762
-.85528289,1.0189744,.7570553
-1.0350345,.29261478,.39094093
-2.6422247,.07033411,.30420029
-.5140029,1.066023,.07795963
-1.3934558,.17803739,.31633266
-1.4523115,.17894269,1.1052272
-.67948211,1.463158,.48501001
-.65778312,.91792615,.68402465
-.99563847,.29704757,2.0359843
-.6086198,1.1123892,.97031487
-.97176865,.1031163,.68594548
-3.172715,.07331014,.54312566
-.66290605,1.6013314,.30082313
-.52191917,1.6711335,1.4397747
-1.4082474,.11296385,.45664121
-.70603199,.51632009,.95465464
-.90887164,.24682122,.46270406
-.48803218,.87589175,2.0652667
-1.4091699,.65454137,.24426516
-1.0313178,.1335253,.35719454
-1.3822809,.55087071,.57031661
-.46318477,1.2562246,.10602722
-.84124991,.72300082,.24744611
-.72005416,1.157234,1.0185656
-1.1581306,.32385789,3.4205553
-1.1062855,1.4217344,2.5219381
-1.2628957,.37980036,1.3896668
-.54907046,1.4532248,2.2864334
-.47013967,1.2530119,1.2287858
-1.5702758,.04819764,1.0995112
-.71714987,.5576588,.05748551
-.88696413,.39828477,.86230246
-.56942363,.43028907,.32020357
-1.194354,2.0997082,.26225915
-.49712269,.66819234,.67758129
-.54577257,.75752552,.47854348
-.55554812,1.0136775,.99391563
-1.2356904,.27607987,.13491326
-.64654905,1.1353353,.20603382
-.68977894,.98343752,.82935937
-.4185756,1.440873,.15235404
-.51801703,.16443431,.39994747
-.6789779,.5482287,1.0365555
-.59075355,2.5261331,2.4092286
-.28745651,1.5833844,.17520858
-.56223016,.67544825,.39073222
-1.1292924,1.40262,.41181671
-.7952998,.07094655,1.5683521
-.58899793,.63165059,.55742037
-.41000838,.77660809,.52923036
-.4143729,1.0843637,.09216096
-.60813212,1.0751661,.65359106
-.4638498,.89542929,.23079008
-.87237547,.78703007,.39552888
-.90016571,.3193321,.68314355
-.8557197,.84700131,1.3836115
-1.5359344,.27196633,1.7061837
-1.1998291,.28060531,.21234199
-.72729596,.57600911,.45360463
-.53358145,1.0184684,2.0419656
-1.1495088,.96618169,2.5000018
-1.3144638,1.196933,.42830172
-1.4898759,.75460823,1.1911906
-.45499791,.63338397,.90683149
-1.0808516,.15370296,.00132095
-.60608328,.89410116,.45706944
-.83524618,.86106646,.44413656
-.72323731,1.9581175,.95039689
-1.9249132,.07822717,.75027004
-.9666377,.83028074,3.2435743
-.43641777,.36480394,.39645667
-.4195825,.09094996,1.7874976
-.74472813,.28079986,.20860033
-.61020936,.09517121,.692579
-.77131368,1.8274923,.21127301
-1.6067464,.140329,.6828836
-1.7686029,.42627639,.32541021
-1.8905737,.13478385,.29612997
-1.405894,.87703519,.70319283
-.44415226,1.8298393,.47193776
-.33506658,.43027816,.07489457
-.52297481,.26344526,.01190135
-1.1373273,.42360934,1.5305132
-1.3312783,.91587062,1.7751241
-1.0410896,1.5157656,.26608781
-1.4480413,.29716426,.32438721
-.3719933,1.7984758,1.090611
-1.138133,.61494499,1.2161427
-1.4537901,.30528947,.69439308
-.46470688,2.4677522,1.04113
-.43600904,2.1068578,.99017465
-1.1794371,1.0822301,1.443628
-2.2879771,.44622975,.64715892
-.83039767,.98064963,.84536739
-.80287262,1.6696984,.2133798
-.97500494,.40712243,1.9619799
-.45550386,.14264939,.10375282
-.57711838,1.948537,.60913161
-1.1469246,.77060927,1.6292497
-1.7211792,.75091236,.42999725
-.41171325,.5355055,.53850641
-.97286873,.19363805,.30972112
-.80297553,.77145153,.28321563
-.4470903,1.1346274,1.6393474
-1.3915772,.02676164,.71137971
-.79863347,1.2380587,.1271012
-.96938515,1.1903338,.11833457
-1.4998255,1.6174386,2.3163467
-.93455349,.12541608,1.4459555
-1.2592145,1.0184489,.95519548
-.93858633,1.2308372,.28543483
-.71921677,.5691937,1.5062947
-.41445547,.91731958,.26125513
-1.5565691,.50849537,1.0546989
-.99581961,.91298561,.20558919
-.33116335,2.0528966,.14246533
-.44532875,.84073702,.34597492
-2.178776,.6245389,.6367874
-.40246591,.49722636,.71098424
-.49144091,.80917368,.80381215
-1.6976921,.10409301,.78340753
-.79345409,1.2703867,.8570724
-.41725463,1.2149675,.44892438
-1.5577132,.06371071,.01689731
-1.6395686,.97946324,1.5638839
-.63510756,.09946512,.16027211
-1.2465467,.17283226,.82421806
-1.2058207,.12364465,.61848685
-.8580398,.19404364,.27610869
-1.1860249,.78878315,1.0646518
-1.8869189,.43344444,1.5333035
-1.5164096,.83481771,1.8775071
-1.0210204,.00817693,.70060562
-.78599051,3.0671883,.73489247
-.66606637,1.8540357,.96150092
-2.2154842,.387052,2.0575265
-1.3110835,.25252997,.79290264
-.42777353,1.2550294,1.08497
-1.285393,1.3965969,.46368365
-.5779004,.77327605,.51096566
-.31410008,.16418786,.73116663
-.29362502,.486411,.18165235
-.44781519,1.0621907,.61616385
-.81570713,1.7720709,.22935628
-.59243164,.75166245,1.201463
-.89008825,.90819466,.00383853
-.61042509,.87018344,.74502498
-.68542041,.11851487,.46183337
-.62196437,.56574473,.47507702
-.69915077,1.8529885,.56907348
-.67639402,.17003627,.59265654
-.25468788,.32811503,.00806405
-.55493659,.68883828,.44839887
-.46509854,.42844871,1.226036
-.48938923,.31170844,1.9425815
-.58742341,.68117102,.64632858
-.48078963,.36609365,.35615747
-.99847946,.66102065,.69760276
-1.0008061,1.5179612,.50270715
-1.0075243,.09201058,.85246543
-.2997118,1.3684951,1.0862403
-.63055664,1.2513718,.07777136
-.81411511,.00110458,.81288927
-.7188372,1.6483634,.62184891
-1.5254035,1.1670693,.03789131
-.32919365,1.4790054,.55892829
-1.1354069,.01240865,.45208981
-.71755354,.95055425,.14109303
-.85828707,.93274769,.47963545
-.90117582,.82883926,1.5602064
-.79543345,.51479295,.00853717
-.44277444,.10064441,.7223666
-1.5533009,.83904651,1.0956512
-1.0516832,.39254037,.73614743
-.83413822,.53294412,.49227185
-1.311248,.34137294,1.1917579
-.4472634,.63094487,1.1172535
-.79598029,.13955788,1.6756552
-.85278306,.95822841,1.4779065
-.53503889,1.8908573,1.6820477
-.40528885,.35509936,1.2386648
-1.2302055,.4699998,.95502637
-.90665352,.25526423,.98295582
-.8933742,.53657744,.40843186
-.88336246,.92286642,.79963482
-1.1934658,.52589761,1.0757349
-.66024306,.2945835,.37364994
-.88793134,.72892803,.99760052
-.63694776,1.2191697,.15707383
-.45074691,1.6273883,.19775074
-.7478886,.11638513,.2639001
-1.1322892,1.1037174,1.24257
-.97533903,.70015986,1.1724642
-.87905209,.6875471,1.4924227
-.90051655,.81640222,.66861579
-.5715155,.21941017,1.6759306
-.49803959,.91187296,.05597247
-.95425798,.00877936,1.1285039
-1.0449452,1.3604589,.4031856
-.96943637,.5169045,1.0316444
-.74505481,.18109863,.21499581
-2.029191,1.0373536,1.2887685
-2.0803405,.49113489,.1224396
-.92581304,.57418305,.22577945
-.52268271,1.1539178,1.2170588
-.88146398,1.6731484,.14875807
-.70119565,1.1189563,1.3061319
-.53667123,1.4140252,.56635202
-.53918906,.10023102,1.1932109
-1.2416183,1.3158041,1.2257141
-.71844221,.28280901,1.0166155
-1.2633984,.26736844,.68146958
-.64212965,.49498106,.67120087
-.50876971,1.2929585,.73936455
-.5153741,1.3677384,.13027526
-1.590537,.04241349,1.1383407
-.84274107,.71393456,.3435733
-.87589766,.82758876,.01156766
-2.5485831,.91112008,.88693687
-.68665051,.03636391,.06359425
-1.3115506,1.4292172,1.3927249
-.53123713,1.1623145,.49397772
-1.2749996,.2880957,1.7349968
-1.5821817,.60813204,.99806396
-.77961083,.40573461,.04682958
-1.1253822,.493243,.12783069
-1.1617137,.67012005,1.2278179
-1.4407162,.09785644,.37732689
-.73208454,.40211109,.294804
-.98996376,1.2799636,1.70835
-.41709561,.69740298,.59902625
-1.5674667,.82379952,1.39266
-.48734714,.19860886,1.0059565
-.44122071,.46521419,.90971615
-.64129819,.43527289,.30811124
-.62684988,.78355022,.0886955
-.64693441,1.32782,.01955892
-.59535593,.22846696,.14243455
-1.003355,1.5832926,.5036809
-.41708387,1.916637,.61838487
-.47198095,1.4032447,.8860187
-.36695231,1.8396545,.66243155
-2.0197288,.03342543,.52782062
-.6857154,.77340596,.17992294
-1.1014658,.12579619,1.0564055
-1.4897692,.37416542,1.150924
-.70505925,.50815912,.08519581
-.52437886,.15260392,.47863794
-.63711772,1.7391216,.37263023
-.39009541,.97890267,.31607648
-.76228922,.82694162,.16498162
-.93322403,1.1470418,.30293864
-.73818755,.28606764,.21854605
-1.0592089,.35754192,.9970944
-.83616422,.02424062,1.0902317
-1.4585976,.62453454,.26452784
-2.0376153,.06358049,1.1983505
-1.5411847,1.3243034,1.4826743
-.21932204,.52220882,.55785855
-.69185743,.17433654,.45314218
-.3780741,1.6827594,.08398614
-1.7761566,1.4056782,1.3291274
-1.5543689,.26499576,1.1540939
-1.673615,1.3318156,.5275339
-.7341938,.75754616,3.1506801
-.58052904,.88314435,.34331058
-.87775515,.00252876,.00516015
-.80354046,.02788932,1.0881081
-2.3949123,.01258092,.28800127
-.76474772,.06939227,.31738194
-1.1314524,.36862816,.95874247
-1.3788215,.08812908,1.5877548
-.61360377,.1534862,.52910049
-1.2307136,.63708635,.65662031
-1.9903735,.67037612,1.3477985
-2.0096389,.03289394,1.9792096
-1.040194,.6135904,.31365322
-.94575111,.6617426,.18715261
-1.0971047,.82583779,1.1743394
-.68202379,.26623853,1.0538408
-1.2879852,.63325062,1.685548
-.69363514,.67187259,.29572143
-.74637649,1.9256652,.06470406
-2.0689228,.00484618,.05532187
-.47353155,1.0455835,.76397617
-.61642346,1.0243964,.73810954
-.60041542,1.4147594,.22046679
-1.3842959,.65123705,.35822698
-.97943689,.49159814,.8781569
-1.4057824,.07480399,.96075046
-1.2138391,.25178537,.71053274
-2.6587948,.27063062,1.476548
-.50959393,.03183325,1.3939196
-.64663692,1.6086559,.65785988
-1.0743679,.1341597,.33454857
-.81192227,.09773149,1.045698
-1.2302544,.82312374,.2105131
-.88739758,.2659361,2.2846935
-.68895635,.08815154,1.2772002
-.84950428,1.1474463,1.8056507
-.41220986,.8478738,.76609451
-1.2276828,.40024823,.43805885
-.34167876,.64919517,.29571262
-1.1937412,.27507342,1.0269908
-.98609512,1.2530711,.82601653
-1.4439961,.16409666,1.4331202
-1.4265894,.04381174,.27709529
-.85009812,.55047444,.3726663
-1.1624827,.19830447,.4358019
-.88141298,.70701924,1.1359254
-1.8030605,.51920598,.48907303
-2.1573244,.31023215,.40930709
-.833057,.78093293,.11070589
-.63503715,.30256119,.58159407
-1.2380999,.64769778,.82570019
-.7658421,.80438033,.16798972
-.64264602,2.1437461,.32152262
-.37862201,1.1448052,1.141654
-2.0792637,.36862075,1.1311526
-1.9519424,.77188615,1.2701457
-.59793348,1.1805795,2.4882939
-1.1675253,.81796117,1.2396377
-.50431666,.25278977,.03380942
-1.5139807,.60488044,.5267795
-2.3399944,.40620232,.2204944
-.27648724,.20527542,.79293252
-.55608204,1.6139484,.93417146
-.56749681,.06509037,1.7841532
-2.3413846,.91336464,1.286842
-.49111822,2.2151159,1.7859369
-.72358246,.56969836,.23126384
-.84318183,1.5361691,.42507869
-1.8994018,.28242409,.27188294
-.49800349,.64461452,.99979275
-.59864477,.40088225,.09159054
-1.3934944,.46484016,.71819031
-.3137853,.35843625,.33567419
-.72278588,.82471827,.20287081
-1.0217327,.5720939,2.3912526
-.84989276,.72915217,.70686407
-.52732151,.92456388,1.0263906
-.74394476,.77844053,.47204001
-.97316503,.79557138,1.0082777
-1.4777421,1.4571258,.08589688
-.9117526,1.1104077,1.4341505
-.75034753,.36538482,.05614059
-.3692494,2.2273148,.02049272
-1.3181264,1.4982689,.17268853
-.64683387,.00390602,.00857527
-1.4117443,.30774686,.67000899
-.9687094,.30975126,1.6156004
-1.3661317,.6906521,1.7988582
-1.0792307,.14330194,1.5863228
-.86294942,1.117256,.74933646
-.45469822,.8678105,.66272447
-.92207057,.42677188,.81956864
-1.5343704,.10284736,.52164318
-2.3147197,.00185909,1.6650827
-1.9995592,.56850582,1.4210345
-.66158865,.68097305,.03002234
-1.3830422,.58870233,1.2679267
-1.2399708,.7211963,.96204453
-.82086802,.21155405,1.5897708
-1.6355763,.51971018,.69259745
-1.3668172,2.6859784,.53778645
-1.3695124,1.0492045,.07146216
-1.6760915,.19971802,1.1496996
-.52911349,.71456527,1.6257171
-1.3468999,.05604873,.61183922
-2.2320058,.32336758,1.1358515
-1.748909,.39328579,.2252482
-.75771534,.6511483,1.495584
-.82190682,.74159356,.45393588
-1.2941314,.30127099,.46060893
-.54890744,1.5083552,.07189582
-.6478812,.22402693,1.1682029
-.46827767,.8885195,1.0815723
-1.2773805,.76850519,1.0884808
-1.3726962,.32875787,.30092467
-.98850252,.56410389,1.1312203
-1.214699,.32322698,1.9109611
-.76261039,1.9128813,.35562053
-.92968057,.10295891,.9771309
-.51699526,.30719446,.78335297
-.72300943,1.2017861,1.2593576
-.77478367,.21124569,.95107564
-.40953404,2.2929885,.49302995
-.89407617,1.7795643,1.5784293
-.82267604,.29049601,.16973788
-.64245082,.11481887,.53305173
-.68481198,1.5914503,.39863198
-.38048066,.09241025,.49242327
-.68099678,.38627829,.30041128
-.69177847,2.9609587,.96070824
-1.0678442,.10629742,.33408386
-.60844084,.88455007,.5093307
-.99170581,.96715901,.22421027
-.95530592,.39545272,.77674333
-.7682911,.10082377,2.1181905
-.55338774,2.6073628,.52504416
-1.5007194,.30410078,.25305956
-.56190117,1.9715174,.53606786
-.49172138,.50580188,1.742671
-.95873533,1.2522487,.60386831
-.87526909,1.476059,.54836623
-.99324973,.35423473,.51678105
-.30072066,.30904113,.91513104
-.73339835,1.6516462,.17733246
-.42303792,.03161671,.15355585
-.63190292,2.6331919,.19272248
-.6352079,1.2856041,1.3483734
-.39498192,1.3724164,1.1292564
-1.846939,.55804161,.04003223
-.70733467,.21990442,.18754316
-.55086894,.88514622,.49360472
-2.0548052,1.3997755,1.7297464
-.59234712,1.1371243,.18086451
-.64121043,.39883673,1.0177353
-.52468016,.40250097,1.0249419
-.54059989,1.8182452,.65633535
-.60432403,.65052602,.0636631
-1.5688343,2.0483084,.39600792
-.562801,.34585794,.30369899
-.58190637,.74998177,1.173662
-1.1593814,.89930537,.38980566
-.46597558,1.719502,.83164276
-2.7064815,1.2566238,1.1095902
-.8454331,.34277456,1.1117058
-1.2600591,1.7453384,.68334767
-.30694843,.80553608,1.236518
-1.344167,.15437308,.68551113
-.950337,.36864119,1.1233126
-.6210797,.59990392,.32165523
-.65517759,1.3693878,.99479282
-.49923444,.62451216,.24422314
-1.3483409,.59158454,.82851365
-1.0928142,.76863239,1.3683272
-.64833327,.69276838,.25198577
-.48687855,.08762486,.55534079
-.86665341,.65956061,.41217809
-.65167732,.61093683,1.3167546
-.48349905,1.3165076,1.16885
-.93645938,.587195,.07747726
-.32506366,1.4037592,.44467072
-1.7438092,.93137583,1.2519418
-.71685969,.20947999,.79092869
-.99875719,1.7157947,.45992894
-.39151686,.87870144,.60629643
-.39351973,.71349625,.57063608
-.62257364,.74272939,1.4383636
-1.2190784,2.1363669,.5539528
-.90081433,.00460817,3.0562839
-.38376962,1.142702,.17662614
-.57285959,1.7641261,1.6215876
-.64901767,.51405817,1.2711688
-1.1400823,.10387318,.07082271
-.93270793,1.5073708,.08153339
-.40655959,.44399878,.35167226
-1.9875291,.91862892,.71083915
-2.0393635,.86787424,.3043433
-1.8569063,.03554428,.86464565
-1.7623787,.50807988,1.537282
-1.1267215,.81914616,.04151408
-1.0393748,.49968469,.00851272
-.68633399,.97156066,.66021609
-.82344535,.85859163,.51311225
-.45935116,.74427853,1.5053981
-.73821694,.25534783,.91831912
-1.0216252,.61240207,.49580075
-1.2085485,.99259879,1.2260246
-1.516003,.81595439,.75248317
-1.1266969,.68990708,.71989962
-1.3138244,.01026354,1.31494
-2.2510802,.30263447,.17212534
-1.3592968,1.6584683,.33789702
-1.2217107,.54238021,.19009802
-2.7134437,.19271907,1.2948621
-1.0160346,.30702549,.20456083
-1.0705668,.18244817,.31017885
-1.0436983,.1292583,.8564444
-.85749304,1.1091098,.82024733
-.9202215,.51678741,.58403393
-.84451859,.67789275,.24441685
-.40300075,2.0025383,.8905814
-1.4546027,.1368294,.10668461
-1.0138851,1.1817147,1.7061326
-.65364349,1.0067274,1.2022762
-.92506612,.13907515,1.2272555
-.47062764,1.2741266,.18743773
-.48431374,.97216022,.77450598
-.89555687,1.8941321,1.3592442
-.48385894,.59341957,.12764881
-.40187201,1.5376405,.28665143
-1.0804875,.31012146,1.0046177
-.85381294,.87592176,.86460383
-1.3938853,.80895287,1.2462153
-.54420174,1.3670841,1.5425068
-.46110301,1.2753861,.79958355
-1.285604,1.4020325,.72311691
-.75067689,.52611748,.89972014
-1.5883703,1.2809138,1.5180174
-1.120083,1.2839816,.15408031
-.43599287,1.4497001,1.9728611
-2.3607584,.00179689,1.0052755
-.57821915,.38653261,.16324203
-.43339712,.11306418,.46396703
-.80389746,2.160963,.36711591
-.2826242,1.7691503,1.042522
-1.0010205,.02189996,.07022599
-.70439423,.35765219,1.3451255
-1.0889644,1.4449901,.31443333
-.87119872,.38701871,.91384518
-.56127298,1.1385375,.11133737
-.39423553,.97020546,1.3471023
-1.1679586,.10533124,.06641273
-.82039289,.06757421,.24293142
-.68506978,.04043844,.38376434
-1.0246225,1.2492029,1.9889724
-.57469644,.39407662,1.1020974
-1.0590677,.6075984,1.3106826
-.56809222,.91512245,1.0749058
-1.6153384,.55633294,1.9644559
-1.3442991,.55182875,1.0598835
-.65283634,.34334532,1.5589305
-.42730591,.90148239,.21746758
-1.0855758,.02982246,2.282134
-.50435565,.81095325,.28824378
-.44523495,.05207989,.73298672
-.55143777,.28323044,.79817607
-.7387473,.4622329,.02762745
-.90180727,.49072315,.84782827
-.95396874,.76613409,.49923466
-.60093148,.73417061,.16847923
-1.1493699,1.5940341,.6256235
-.76694136,.8548142,.5620482
-.89412755,.54278167,.88975964
-.47414106,.42766491,1.1065302
-.20307596,.94437007,.029097
-.41623506,1.6632204,2.0426244
-1.4102151,.30332034,1.4475864
-1.0100245,.51130558,.78468786
-.70461204,.028436,.49202164
-.60529308,1.2090909,.10538388
-.49198111,3.1035713,.01622831
-.30085982,1.2212211,.6604873
-1.1409819,1.6156706,.24321025
-.81539199,1.332482,.3429855
-.61227193,.03246685,1.2805247
-1.8357838,.57370849,1.3878231
-.53771767,.58811943,.33753937
-.69687454,.85277405,.07419995
-1.4013865,.93645306,.55223528
-.81252391,.59534859,.78418357
-.8086831,.06067919,1.4125986
-.59896992,.3988686,.40412208
-.55284227,.49595926,.81592482
-.50929179,.54276557,.4345099
-.71707459,.68294439,.49354324
-1.4629514,.44288633,2.2228466
-.71840802,.10376125,.29179242
-.32693142,.95897218,.0259875
-.9013057,.8795036,1.144873
-.51222818,2.4524496,1.0816049
-2.1406668,.70600863,.68073335
-.47289677,1.9842243,.48218482
-1.5640021,.97482472,.27848825
-.42762651,.08379042,.684777
-.77650432,2.535576,.88879638
-1.1454141,.86717782,1.7233643
-2.2186178,.20586605,.42674318
-.76658627,.59757349,1.5542298
-.36194505,2.3483218,1.7992443
-.54619954,.84221323,.15197689
-2.3861606,.35700537,.14873727
-.98186254,.58242152,1.2038135
-1.1956807,1.502439,.97992637
-1.4382057,1.564624,1.081083
-.62339753,1.916611,1.1263087
-1.8170537,.04199381,.6788282
-2.3254662,1.1796021,.04049916
-1.3606141,.09808365,1.864327
-.55617381,1.9035699,.6910411
-.51327593,.66983671,.53394106
-1.0401817,2.6733457,.9120506
-1.0958425,1.0912092,.48636056
-.85465632,.0470197,.07321444
-1.38999,.99559567,.44470931
-.90990065,1.6653157,2.0345446
-.68829942,1.141201,1.0995515
-.74295127,1.9340505,.49119004
-1.3922157,1.0497973,1.2084639
-.49485652,.38761986,.10893134
-.39746496,1.1200243,.03100065
-.66944874,.51888088,1.3992022
-1.0522701,.05549937,1.1324259
-1.4110166,1.961611,.99060791
-.65828375,1.0784351,1.5779913
-.75841222,.57612726,.68317393
-.92854943,.64552288,1.0134719
-1.6155181,.59212703,1.4072525
-1.0074144,.54359785,.04024842
-1.4618234,.0811577,.31010507
-1.8466397,.26423662,.93618696
-.5373117,.51450927,.62101183
-.49114659,2.3287809,.70208884
-.27317587,.03580597,1.6000059
-.92133399,2.1122602,2.7765222
-.80412706,.52812616,1.8657008
-.71076351,.66406651,.48405545
-.8036214,.63647145,.30162506
-1.1390704,1.4635237,1.6374403
-.24124973,1.6133636,.41009214
-1.5737169,1.2385161,1.1690148
-2.366065,.13369554,.04384226
-1.4083302,1.7223985,1.2947046
-2.1064722,.08183587,1.996157
-.86317013,.64932099,.85457242
-.70356477,.53512009,1.9505461
-.97337006,.31523418,.08351452
-.90467962,.50072073,.71991013
-.60070091,.6741358,.23024367
-.50225618,.83214875,.42062706
-.88799322,.23306631,1.5579528
-1.2559667,1.1666567,.7584229
-.85093446,.68121449,.56691685
-1.1366896,.2741995,1.179697
-1.2829736,.42635261,.96186636
-.9329628,1.2047545,.06684419
-1.3902978,.75980812,1.5576641
-1.6886265,.53978954,2.3449862
-.70000569,.2715711,.24927771
-.7200526,1.3751039,.11620263
-.68479271,1.2882025,.169566
-.28482059,1.2270733,.13245547
-.98095411,.22296276,1.0933974
-1.1432139,.69682643,1.6413278
-.5951192,1.2492011,.20436357
-1.4283328,.08386008,.80557023
-1.3532335,2.1888235,1.1433764
-1.0440218,.0253253,.22439692
-.58435498,.49895425,.41673453
-1.5271364,.86704893,.28005903
-.71000591,1.1472851,2.7980093
-.15239206,1.6916666,.22499613
-.45733126,1.424048,1.2954698
-.53119861,.91763481,1.0982312
-.8433712,.03288397,.35014774
-.72297228,1.5006263,.47334487
-.75842406,.33862516,1.4850888
-.79216023,.84727743,.02804734
-1.188678,.8670646,.03134457
-.79174044,.1499512,1.0043355
-1.7292017,.58430734,1.0091648
-.6247605,.51492754,1.3150294
-1.1384411,.72216072,.00794403
-1.0841548,.9946691,.11407215
-1.9180279,.41507537,1.357478
-1.3106292,.73653575,1.2087327
-.7485907,.45673826,.77896784
-1.1728327,.32382826,.47379213
-.58269693,1.9398911,.93882251
-.74828108,.21939534,.35614074
-2.0892581,.37763643,.737758
-.58920584,1.2377256,.9365423
-.60412296,.3774581,1.1193776
-.60616194,.08006534,.8359197
-.76597599,.36646062,.39358258
-1.0592587,.84768193,.52613967
-.38510147,.50655404,1.4931697
-.99030829,1.1922023,1.0849993
-1.3954745,.12024869,.28862423
-1.158878,.27465799,.67766524
-.61472884,.83186149,.01873247
-.67739861,1.7195582,1.0650347
-.93370987,1.1005034,.5114228
-.57566466,1.6169886,.65872024
-1.8529439,1.2962203,.10972976
-.72020926,.95294985,.73686315
-.70252494,.01758465,.38395839
-1.1101584,.75189069,.93916066
-.74354628,1.3988908,1.345107
-.39769139,3.2713628,1.2325037
-.4817079,.76496558,.67600269
-.64138909,.56870501,.10258211
-.75407978,.86162545,1.9793769
-.40067205,1.1895564,.67284841
-.51198113,.39348141,.76138466
-.75918823,.22022349,.10064274
-1.3544241,.70328631,1.0897122
-.78336577,.22422764,.73484173
-.26687401,.58675398,2.2454247
-.82782179,.78692512,.31807554
-.52390329,.48071843,.69781714
-.67616016,.57853642,.44206918
-.80387956,.89888446,.58105432
-.57794184,1.1487179,.76667631
-.97361233,.05757012,.06810214
-.89409534,.05302409,.79167156
-.75569766,.10528715,.76082646
-1.7145451,.50372566,.55855176
-.90890775,1.5121721,.77568938
-.7403956,.88226679,.54975083
-.67313255,1.1370385,.3089207
-.39546414,.46176542,1.3206292
-.46894597,1.1084044,1.2126839
-1.16989,.72078281,.75294093
-.44463203,1.3951953,.28191242
-.55966932,2.0055103,.66277613
-.56202432,.6297669,.62075099
-.39439102,.91542901,.01638563
-1.0939705,.20611659,.43981011
-.5568887,1.0318563,.78307752
-.63366786,1.9085454,1.8790047
-.3782294,.291046,1.6411389
-.96452373,1.6984234,.81996993
-.28065512,.92131981,.59000719
-.33127409,1.3598437,.20430235
-.22293971,1.2563412,.69491858
-.90160942,.19743594,.6254257
-.32384229,.89320575,.10230177
-.65086879,.32422403,.9999379
-.34850167,1.0982032,.40147956
-.66038346,1.9568176,1.4259727
-.37488948,2.5467024,.49087362
-.58406134,.33344548,1.6281223
-.57953688,.17089081,1.1374645
-.6046859,.38394027,.62225685
-.70125552,.13105367,1.4147242
-1.8109933,.01075264,.64663027
-1.2302054,.7908917,.87925755
-.79721827,.83617039,1.4503088
-1.8283059,.36570564,.59963293
-1.0507948,1.268339,.71810266
-2.0090423,.06740209,1.4180546
-1.0495246,.0911778,1.2016743
-.74838395,.63976481,.85140833
-2.2586572,.17210436,1.3526361
-.95920135,.47521853,.76160972
-.55423241,.93321892,.59239649
-1.3939524,1.1208041,.90792415
-.88916166,.71977866,.21515861
-2.82606,.01249201,1.3037606
-1.4219849,.58988709,1.7026135
-1.1951103,1.31716,1.5083945
-1.3276806,.56284988,.48131432
-1.6603902,.2499731,.59904558
-.91407154,1.2329018,.43744859
-.57003966,1.0592323,.98408519
-1.4381675,1.283266,.71396815
-.73176592,1.7599606,1.5510085
-1.6600823,.23675605,2.5758005
-.6021889,.03837003,.67218936
-1.21027,1.6903297,.18330881
-.31947039,1.4009486,.26188075
-.76272105,1.264808,1.7071129
-.91644266,1.5057675,1.4228272
-2.025495,.974943,1.468394
-.89289351,.41912367,1.3320199
-.39808021,.06178862,.90035122
-1.0637556,2.3838348,1.3881689
-.17580462,.60286429,.93540741
-.34366641,1.9790815,1.530713
-.66783227,.3173791,.49227668
-1.3982142,.39526586,2.1725626
-.23509579,1.408854,.38454029
-.68056654,.13072693,.51176356
-.64598908,.34772408,.79344036
-2.0089726,.23053515,2.4741618
-1.0643908,.4519429,1.3325977
-1.0289534,.21956902,2.075271
-.68067729,.4759908,.55112653
-.94836939,.59563112,.38645606
-1.3842924,.35793446,1.0334875
-.87553658,.06894943,.82120562
-1.0726344,.36124168,.01066063
-1.1861731,.0052043,2.1089196
-1.2249803,2.2051079,1.6756195
-.57994703,1.2175436,.58671105
-.38903849,.33162,.39333309
-1.0003138,.171083,.32162819
-.60666293,2.6205176,1.4852225
-1.2992296,.79668659,.8993249
-.64013401,1.2057048,1.3537457
-.73262633,.30453092,.34159925
-1.0538098,.20464068,.36470044
-1.4245334,1.4900701,.96275377
-1.3908898,.36638002,.34142565
-.48954096,1.8345617,.97425889
-.65323602,.17287392,1.5905157
-.49207002,1.4217401,1.1449072
-.60403117,.44014521,.84050887
-1.4299627,.64887436,.26786705
-1.4146173,.15169646,.83169415
-.50057001,1.3121853,.4684147
-.86707015,.99388135,1.6536113
-.96271661,1.4034922,1.1430164
-1.2474666,.15642866,2.551381
-.49963993,1.4449441,.93367677
-1.2099657,1.9586684,.10009044
-.66155189,.34800546,1.4764844
-1.4872473,1.3205784,1.2191981
-.83719791,.33820149,.51062833
-.9629063,.9760502,.11949972
-.92475621,.43346835,.3519256
-.39813217,.60086301,.83541855
-.62768382,1.0500079,.24887646
-.5681254,.2116341,2.0916693
-1.0847746,.58339466,.37533737
-.85227863,.97697922,1.332934
-1.2717235,.53623978,2.3900774
-2.3413978,.10325407,.71494447
-.26934799,1.9704575,.6048852
-.99571809,.46271328,.05536665
-1.3529047,.13147278,.44724056
-.25050415,.54688263,.17528086
-1.238899,.61157172,.16133131
-.61268979,1.5320154,.46328588
-1.5618278,.13931745,1.0675461
-.90500617,1.3597396,.07978987
-.38774784,.98000731,.3081501
-.43998721,1.2114324,.33567752
-1.3365999,.86985361,.89091249
-1.6663776,.82702168,.60418611
-.60485727,.21271634,.44575716
-1.3889134,.56122994,.70172949
-.65816044,2.0420318,1.0810807
-.52190134,2.0013453,1.7832705
-.49693871,.11028703,.96945793
-.43059941,.99945461,.31964251
-.61498537,2.1295717,.29670495
-.77846575,.35697989,.7417125
-.66526515,.09587004,.06772414
-.6427482,1.2947706,.31548696
-.92873711,.14258377,.86442916
-.70613863,.03740884,.37779763
-.72398415,.78749129,.38483035
-1.1997943,.50191939,1.2923428
-1.6733687,.61526872,.20408219
-.77463616,.30705736,.08494393
-.45396938,.97506541,.06652191
-.43053456,1.1059428,1.5698093
-2.2331152,.6115271,1.222229
-.74504106,2.8545788,.57122864
-.4119466,.93183175,.60338706
-.53843786,1.6952149,.86504677
-1.2835694,.90246274,.16972201
-.56061512,1.6532551,.78234102
-.75585853,.60621669,.97792802
-.8011542,.34094347,.12573751
-1.4321521,.27490979,2.1604921
-.3016044,.3550662,.63578991
-.65006417,.46404923,1.2594376
-1.0479451,.55017309,1.1562771
-.69347852,.39546815,.06711659
-.99795163,1.5147693,2.6140741
-.60796899,.01694168,.44549443
-1.9092592,1.034501,.38596947
-.63572387,.40730437,.02106332
-.23734411,1.2058876,1.0685014
-.70603023,.8665414,1.83758
-1.8562174,.61055697,1.5109528
-1.2811798,1.2117273,.79832701
-1.1182022,2.0728089,1.4388238
-.76537781,1.6431946,.1914692
-.92561473,1.6616981,1.1372606
-2.0104825,1.1005634,.71802946
-1.1603113,1.0720361,.81459224
-2.1427387,.57646773,.50003495
-1.6559673,.63316064,.38409943
-.85986022,.47273381,1.2625765
-1.1807283,1.0148214,2.0584845
-.64210669,.4920773,1.3849367
-1.1382467,.54530332,.60800001
-.78845604,1.5864476,.13423782
-1.6751428,.74004544,.87166486
-1.3094919,.11775726,.18277926
-2.197135,.37716097,.66520613
-1.7801067,.11524299,.60900821
-.55245718,1.0491735,1.1803693
-.91229041,.42852574,.76004737
-1.1461515,.91438168,.02209308
-.90798273,.3302759,1.9812365
-.73091386,.57105323,.67961458
-.90568623,.69058258,2.0776796
-.5831343,1.3444736,.61546883
-.33933927,1.6739858,1.5453548
-.4808136,.72779652,.67687343
-.79871009,.39620501,.88459467
-1.1866528,1.4055474,1.0845702
-.27934487,.68982903,.25779352
-.82896161,.89474659,1.0828071
-.94489597,.26632218,.31463189
-.68184486,1.9619549,.47718381
-.4267381,1.5433804,.30095997
-.51206171,1.2496923,.84924266
-.9979615,1.6480125,1.775423
-1.2638306,.59667019,1.3162343
-.62447983,.85017105,.94466415
-1.2678445,.69289049,.30156918
-1.1696169,1.2479942,.12669288
-.51370846,.54121159,.78333054
-.67534936,.02653352,.43539603
-.86388572,.39990732,.20247496
-.30808211,1.0415767,1.218024
-1.6332771,.24992537,.37431037
-.88151286,1.1647282,.94478616
-1.0593849,.70064994,.51221555
-.66139648,.59259237,.82904991
-1.0666651,.38624583,1.0643519
-1.7135704,.16854722,2.2347043
-.68231624,.6537369,.63322019
-1.7354479,.55374764,.92110054
-.62254302,.14138772,.21177962
-.8311213,.0806079,1.8679088
-.3500302,1.2373886,1.1115859
-.5890803,1.7935778,.18330079
-.78890798,1.2823008,2.1054196
-.73300227,.28230582,.46606635
-.49378434,1.4710274,.49148941
-.74916907,.15319233,.24606587
-.98169857,1.8960899,.15662613
-1.4675528,.43152903,.71053336
-1.1601229,1.1954499,1.9828227
-.83888434,.24598243,1.6219235
-.70961757,.55227556,.30954326
-.42593485,1.8056342,.43876675
-.71355751,2.0289865,.35196648
-1.4386885,.03130686,.35650879
-.57134821,.97650275,.16551811
-.55574789,2.2456273,1.0608184
-1.1582548,.83268069,1.1376341
-.85245352,.5263931,.83493287
-1.1568794,1.2580266,.49268258
-1.1028524,1.7294978,.64212295
-.76054616,.88306466,1.5594187
-.91042949,.10655994,.46303418
-.48107339,.20290157,.61593204
-1.8059419,1.1023664,1.0684658
-1.5410838,.30217035,1.5508731
-.57033373,.1925254,.76529246
-.27780957,1.2753701,.89433635
-3.00549,.57834152,1.0075457
-.96263326,1.2834901,.42905661
-1.2893501,.62132896,.33329561
-1.3056393,.399479,.69087378
-.74267738,.69608245,.05409343
-.60099038,.69411209,1.326682
-.41554384,.30613809,.42039685
-.51294812,.61423539,.04331359
-1.2739299,1.1569301,.10768129
-2.1039857,.63824096,1.3555502
-1.6164357,.45291566,.85822916
-.35704304,1.1241036,.02880513
-.70927532,.39520085,1.2990059
-.95874669,.41903156,.1433098
-.83452518,.87364861,1.3044679
-1.8134325,.59907779,.19300289
-.69323709,.04027587,.31140583
-1.1985215,.98132978,1.9074503
-.33950099,.45349055,.83104716
-.97301665,.56161643,1.5081789
-2.4724856,.02895582,1.3547371
-.77025771,1.9364464,.05244906
-.52854583,1.9107057,1.552277
-.32222159,1.5264816,1.2943688
-.61280953,.41943708,.7115298
-1.3534586,.17838,1.2504005
-.97340629,.47278549,.13423334
-.58709661,.96318619,.31321372
-.38889159,.56808927,.49577218
-.58593453,.75368551,1.5765644
-.55796916,1.7814586,.19536447
-1.180546,1.358843,.8010922
-.73551946,1.3538087,.0027829
-1.0462647,.0763364,.00247126
-1.3424061,.63864659,.77387302
-1.6658926,.83469303,2.2431393
-.41383584,2.1336378,.48885902
-.77291981,1.5668634,1.0791143
-1.2644127,1.7801156,.44604267
-1.130296,1.6610216,.12423289
-1.5782184,1.0755201,.37349891
-.69045351,.81915138,.79680224
-1.3234326,.91476975,.06664601
-1.1811957,1.4062487,.80700548
-2.0083996,.17680456,.98709018
-.46261696,.23175221,.01067474
-3.2127678,.03815668,1.6442301
-.36154689,.43831572,.7997916
-.77318022,.65490862,.25826721
-.49402372,.87702055,.71763448
-.85890614,.84044133,.26689859
-.32058587,.55139731,.45398535
-.34571254,.99026385,1.0475011
-.74678232,.22115203,2.3098165
-1.0151751,.06341864,.32729785
-.61651794,2.3787309,1.475657
-.49562917,.93974816,1.4108631
-1.3356005,.20363679,.27830766
-.59396752,.70846675,.16877866
-.3812696,1.2311064,.98706525
-.7961259,.39139488,.28677761
-.49446456,1.4522729,.51819267
-.74246561,1.0921163,.31163861
-2.2165121,.04991997,.72154991
-.69703427,.48505247,1.1704594
-.95819057,1.5374716,2.108645
-.89084883,1.0631979,.03026477
-2.1420193,.54686213,.97881125
-.80636384,1.2734467,.19942664
-.43715564,1.9879804,1.2810791
-.81918925,1.7718449,1.0727397
-2.3881572,.58062353,1.0314589
-1.2802522,.19724566,.34145129
-2.5635817,.3001366,1.1462
-1.4698295,.25279748,1.65112
-.53638941,2.2411653,1.2576299
-.71792896,.43117922,.58988346
-1.5124346,.11807219,1.7203358
-.99940132,.18038483,.20770982
-.73272069,.12592947,.71174084
-.79907607,.79184634,.73311728
-.47673262,.17241095,.91580285
-1.1176774,1.186681,.33853762
-1.1905432,.39687587,.56938473
-.49489934,1.7603571,.05701126
-.29948069,.10145817,1.8926449
-.39503618,1.2624655,.5627933
-1.018491,.7014736,1.4214349
-.37996467,1.3340885,.44796948
-.85819812,.11754899,.87865455
-.48786722,1.2759038,.14412977
-.57256297,1.1735409,1.1233535
-.64181066,.9533652,.17521673
-.47876689,1.7447083,.34667789
-.78947241,.2690254,1.6149697
-1.2981901,1.8389263,1.1241515
-1.1684545,.56963495,.74975836
-.8162634,.26228191,.07541883
-.76050214,.35250969,.43034019
-1.2110207,.12144527,.38828691
-.8189342,.64371878,.19242193
-2.1392407,.57068978,1.6196776
-1.0438889,.61687955,2.0027391
-.37194142,1.2001685,.99395018
-.69397534,1.4709095,1.0747343
-.8251957,.37037295,.60370076
-.95597102,.32521025,1.0606158
-.43414411,.73389616,.40278764
-.6366567,.70933273,.01029542
-.94071067,.97799153,.44085062
-.45655949,1.4993825,.14420609
-1.3108294,.14982335,.37299666
-1.5126028,.4728019,.02205374
-1.0156078,.01802836,.81549886
-1.3933891,.35135716,1.8881986
-.7815482,1.9677501,1.6335496
-1.0835647,2.5644846,.39357417
-.69450173,1.5198883,.6581693
-1.2579033,1.1070315,.65697463
-.83083758,.11554653,.70688125
-.88515456,.21003025,.73531701
-1.0626662,.66339281,2.2121608
-.5955884,1.3007144,.74706035
-1.2891866,2.0588024,.64517473
-.98950012,.36487508,.71802113
-.75328972,.70824441,.64873948
-2.4073954,.12081852,.5980511
-.65482921,1.0175917,.20561216
-.33938064,1.5448029,.3564181
-.38120751,.9242529,1.5141572
-1.3786898,1.0823727,.5589945
-.83199067,.16296849,1.468476
-.45540209,1.232065,.13812347
-.52911894,1.926251,1.5537233
-.75613914,.82682701,.40303162
-2.2900812,.63267629,.31011785
-1.4381623,.81561091,1.2540186
-.48639651,1.3149319,.13599555
-1.4930993,.7244617,.42779243
-2.5564394,.77089142,2.2402364
-.51471031,1.5849225,1.1812324
-.68840302,.36735317,.16775796
-1.2112467,.45749895,.97937825
-3.093497,.00167555,.12422739
-.36455829,1.1310177,1.0520602
-.89080254,.0478734,.12692745
-2.1345939,1.3486337,1.1158652
-.68424933,.69113573,.08128289
-.3444974,1.8328554,2.4480017
-.98530841,.21024307,1.0141664
-.60594588,.11365192,.07844584
-1.0503623,.39532085,1.5881183
-1.2574289,.33663949,.24943238
-1.0250117,.43227627,1.9741216
-.99835203,1.0598147,1.7250955
-.74527216,1.339417,1.0991679
-.9293462,.40476479,.49120653
-.69841573,.75592423,.37743795
-.36510873,.39280777,.97821077
-.44366857,.07253968,.98614253
-1.0140254,.36188721,.24835741
-.80207481,.3323373,.57627752
-.42384584,.25347371,.82307185
-.68005568,.86277359,.54093145
-.55733933,1.2176327,.68112211
-1.0668569,.49934117,1.774552
-1.5273058,.11670191,.68777555
-.67735302,1.5431223,.33949922
-.45983512,.12933299,.19174818
-1.194703,.14471314,.12103141
-1.2380064,.73060994,1.4852383
-1.9082972,.3147343,2.3101635
-1.7013115,.3672357,.08910496
-1.2064599,.56047586,.08725885
-.81492724,1.2551853,3.342375
-.33696963,.40031732,.7770036
-.978779,2.0050065,.77576939
-.29988189,1.2521116,.70388504
-2.6541147,.85876396,.52726388
-.42948635,1.1639745,1.0606523
-.36737023,1.195938,.78064257
-.63907693,.40777424,.2333809
-1.5705094,1.2726781,2.166634
-.68032425,2.4346416,.42562326
-1.4068582,.14662321,.26243696
-.3832098,.61228082,.41282049
-.62023221,1.9301583,.41630128
-.39161208,1.2714891,1.0599786
-.82674274,.81849343,2.1796064
-.68455867,.20140821,1.0918722
-1.4201948,.23525843,.71716593
-.62924938,1.1478951,.56995566
-3.7666209,1.023402,.05327859
-.38735614,.80528845,.15496094
-.694191,.75072351,.11974751
-1.2404519,.56700926,.96671616
-.47319969,.80427614,1.5252726
-1.0244073,.24746335,.12835618
-.52412434,1.2490967,1.3491557
-.96733608,.40441173,.94624853
-1.3504313,.54704514,1.2142914
-1.3468585,.6781862,1.6206108
-.46011646,1.3640501,.46605905
-.96080783,.65544316,.23797222
-1.7202995,1.8721278,1.60322
-.49663613,.47382675,1.1867186
-.64474784,.81620632,1.1602948
-1.2339543,.9546428,.34535347
-.73317039,1.585891,.1038887
-1.2919615,.68811641,.42310298
-.74289697,.87563,1.2097565
-.83833716,.98315263,.56542511
-1.3175078,.43323469,.11761065
-.37181947,2.619053,1.6941129
-.38330274,1.9940938,1.7180173
-.77474871,.81677571,1.321452
-1.3745048,1.5334579,1.4893726
-1.219878,.37593676,.17239525
-1.0700791,.79336807,1.4077117
-.69827342,.26392401,.44766809
-.67546681,.65406576,1.9547489
-.6101231,2.3645181,.7348111
-.781957,.1587776,.92271154
-.99028741,.2356846,.43690867
-.73402518,.64325458,.15586901
-1.2975698,1.2649624,1.0643282
-1.171914,.80567897,1.7637011
-1.4630466,.25343971,.7117168
-1.7584593,.52234447,.81678962
-.54941745,1.0813781,1.2718772
-1.1107892,.62933604,1.2113907
-.30102643,.06900357,.85700606
-.48598092,.00417844,.63727894
-.44130764,2.126473,.29117924
-.55649343,.83675304,.31744708
-.48131816,.21814687,.25175648
-1.0762867,.37917795,.39916798
-.75751723,.4462959,.30511094
-.50794848,1.0241652,.27108676
-.74003336,.32191847,.21035948
-.87504492,.91869379,.27930598
-.82299784,1.3285826,.00174876
-.34293683,1.8250234,.48024091
-1.2111867,.56693703,2.6452309
-.54095333,.96703249,.51053853
-.35425437,1.1562738,.15181915
-2.2054174,2.4194657,.55386291
-.58840214,.20347204,.86849588
-.63454735,.14438209,1.2514916
-.9974041,1.9328,.00130595
-2.2633729,1.3083448,1.9501358
-.41604741,.05239068,1.0080957
-.66391552,.71228832,.43419517
-1.0693274,.33808625,.91086995
-1.8286338,.15055492,.31296067
-1.3507736,.26002034,.72699618
-.25546296,.7533647,.98594529
-1.3214354,.47438409,.45680154
-1.7078424,.19654409,1.6879829
-.71778508,.90014271,.24713409
-.79896017,.28677101,1.6037703
-.5847365,.66449751,.00570305
-.96144013,.27792171,.30957834
-.98982153,.33233564,.99922298
-.46204776,.14122517,.9786252
-.74785596,1.0031145,1.7654507
-.7074285,1.5166983,.46604165
-.67458619,.12400287,.76781333
-.5570223,.58325812,.62245047
-.57269008,1.1034938,1.8212712
-.65330079,.45373154,.76476799
-1.538727,1.7529423,1.2482968
-.31893807,.74067182,.78710032
-.53799682,1.8191372,.50332313
-.73579327,2.0017378,1.1408823
-.77688976,1.1122507,1.7156779
-1.0254536,1.0373544,.78018318
-.68311867,1.4747345,.8559661
-.37760099,.35317324,.90174863
-.59838329,1.5986858,1.1839831
-.41396633,1.4733892,.12530042
-1.1558811,.905064,.07773478
-.63338732,.61614938,.81351859
-1.026439,1.0768889,.26858402
-1.0354928,.98059488,1.6124313
-.92397358,2.7238216,.08905121
-1.25976,.78338228,.52640134
-.70366278,.8087035,.86707281
-1.0236727,1.032258,.6490859
-1.5016506,.46184111,.7402015
-1.1195069,.59035465,.8734875
-.70519669,1.813898,1.0107834
-.98019345,1.1836724,.68809336
-.78457608,.51938406,.46827106
-.82738393,.05763534,.70903228
-.50455224,2.5044478,.97920884
-1.3707304,.65686433,1.7436064
-.36250152,2.1056687,.36745433
-.54810078,1.3326658,.15521582
-.68831061,1.2878422,1.4529434
-1.0225745,.63431867,2.6201798
-1.4756278,1.9113832,1.3255579
-.54304028,.89349197,.95732903
-.64204417,1.605874,.3967655
-.7813832,.25824743,.55560182
-.65283411,1.2851354,.17682915
-1.3007181,.57681789,.9623603
-.76358628,1.158044,1.2201108
-.60886814,.0597319,.89617841
-.65407636,.30477503,.89398757
-.40772798,.06635954,.09943991
-.90935849,1.3936873,.81836675
-.50699571,2.4818856,.91378366
-.77275873,.03695101,1.4314854
-.50105958,1.3315607,1.2282288
-.21801177,1.5469055,.38181296
-1.043242,.86172019,.02351863
-.66486826,.33305454,.08261585
-1.0511477,.63662428,1.8049792
-.60165387,.74994765,1.4458668
-.84699945,1.2253476,1.4965752
-1.1652405,.7618516,1.8164161
-1.0305469,1.2543857,.28629338
-.79735615,.93265862,.09332711
-.9474132,1.9667846,.30829694
-.42905205,1.3481153,.59196835
-1.2183792,.48046258,.32459306
-1.4773409,.42361824,.45406042
-1.6839233,1.9361379,1.3010687
-.61801819,.22553938,.90718554
-.72372456,.02777275,.25294719
-.55625776,2.0818246,2.3739018
-.24173936,1.1140782,.40532661
-.7347087,.64510251,.57747095
-.44476684,1.1396368,1.4487642
-.37931497,1.1499338,.38806108
-.43758422,.78837656,.04344433
-.8686045,1.1500525,.50834788
-1.0151438,.10318273,.11290218
-.62303436,1.2031838,1.4010875
-.63687277,.62859365,.39890127
-.68230157,.4720012,2.9759523
-.93885541,.11754361,.61210185
-.4035043,1.1931506,.77444887
-.26778037,.67132149,.94498792
-1.5630203,.26832744,1.2388924
-1.4938619,.84553302,1.3328568
-1.9662839,.27865598,1.8107599
-1.233251,.10124417,1.8035441
-.98801519,.84715356,1.995069
-1.2406369,1.2327624,.321283
-1.5778294,.13526311,.87456697
-.46936298,2.4311216,1.4487833
-2.2888687,.43076704,.65043946
-.42584462,1.0002415,.59289745
-1.0635758,.68799861,1.0704024
-1.2282721,.56515642,2.1677972
-2.1761717,.6135596,.85288758
-1.2369625,.06609289,1.9912364
-1.767918,.77924352,1.2232675
-.81072912,.52947824,.90185857
-.44587921,1.4200654,.11656903
-.92621341,.53974637,.34927581
-.87937718,.10672611,.67034471
-1.5061959,.98839163,.95690334
-.56568835,.10921941,.7001167
-2.2161617,.54729396,.25325258
-.34257318,2.4041074,.44974632
-.97864692,.31618541,1.8839904
-.41704678,1.8952982,.21013848
-1.0092527,.79789652,.6989297
-.84095588,.66785923,.29763465
-.88500333,.3198325,.36478328
-.55781435,.86182031,1.1915245
-.54163184,.20903029,1.8827593
-.69228345,1.0996187,1.5023013
-1.0756414,1.077243,1.2189259
-.86233088,.98318606,.30530457
-.71930964,.37381028,.59830437
-.78235125,.82101766,.46581179
-2.2280707,.23501917,1.094858
-.84313188,2.4937483,.98358293
-2.7096177,.66301178,1.0692146
-.38339912,.78711211,.7468994
-.4147965,.98093473,.61844971
-.66248153,.73294586,.71249528
-.77941307,.15112884,.88486214
-1.4578992,.03904736,.9045132
-.51279247,.90575972,.68012245
-1.6178154,.13993742,1.1069297
-.29774949,.62280026,1.1734022
-.82936568,.5637234,.75627205
-.71870626,.6061096,1.0593767
-1.2716006,1.3805406,1.9924243
-1.5719628,.39783918,.83313117
-.32517049,1.855143,.3952861
-.7966082,.5086156,.67151867
-.67042332,.42131535,.71811373
-.64881366,.93377583,.19169152
-.53227332,.18580785,1.6656729
-.82958782,.21811516,.84647948
-1.2850814,.16381164,1.1565101
-1.2243556,1.1877342,.76799764
-.48349298,.74168259,1.2703553
-.66826902,.28607691,.00409892
-.23545973,2.7399197,.06727716
-1.2718906,.47818021,1.7289223
-.63342648,.32687598,.06689434
-.62889059,.92604479,.32218124
-1.0243076,.28275078,.92380612
-.48901014,.8517228,1.4960422
-.58614574,.14816397,.49528926
-.45609656,.87336167,.61679147
-1.4175559,.6233222,.91127648
-.82121089,1.1330002,.42019859
-.86042867,.15105451,1.4459891
-.61888764,1.59138,.6375023
-1.7556422,.70127805,.52284859
-1.4596161,.76330493,.67110239
-.65889316,.24441142,.50646518
-.68181689,.07993999,1.6328186
-.47951369,1.3714385,.29317359
-.54353482,1.0432557,1.5849423
-.66821115,.18761334,.05120767
-.60368702,.89449145,1.2555936
-.80567208,.04223844,1.2819486
-.89696315,.34148311,1.1690345
-.45102497,1.8229985,1.3368334
-1.5223754,.22954415,.60016175
-.8544923,1.0088829,.28518732
-.83197785,.73083851,2.037483
-.42199343,.63389294,.08158522
-.6152638,1.5246324,.1275581
-.93801798,.58911772,.1989823
-.59140238,.46088927,.40370557
-.33142606,.92740329,.03897414
-1.1345851,.42105176,.50546653
-.77786018,1.2429577,2.430391
-.52429336,.5344636,.30943299
-1.4357454,.69273493,.39357802
-.80804463,.48915583,.36943353
-.68054387,.31520876,.06630518
-1.9169559,.10136141,1.9505434
-3.8610636,.76516713,.53531987
-.64253949,.66006484,.53684195
-.42450286,1.182226,.34339686
-.29439616,3.2273624,.5934392
-.5506331,.4259656,.81502406
-.90281563,.51837412,.7907685
-.87932158,.26559919,.31391779
-.32644504,.13103162,1.4317312
-.69018634,.03099103,.28722878
-.37599715,1.6566751,2.1852224
-1.0098049,.45264027,.40352908
-.57829356,1.1863987,.81224019
-.48680095,.08839295,.7808921
-1.3036278,.52404188,.73462228
-1.385822,1.0904147,1.3794324
-1.2386538,.23318011,1.0200551
-.35000521,1.7440257,.15356722
-.73549369,1.2364204,1.5411783
-1.6375666,.38276859,1.6589189
-.83072129,.71700241,1.1975249
-.95848348,.0806073,.02537189
-.48875182,.40688114,1.0713895
-.74432909,1.6443026,1.3423111
-.64733079,1.0097302,.01825946
-.50192046,.39329228,.92515337
-.91063702,.27500043,1.4909678
-1.0011197,1.2503028,1.6966664
-.99922894,.86903283,1.9322742
-2.0309416,.06355228,.00157301
-.57579256,.01778202,1.261375
-1.3871256,.27905769,1.8980699
-1.1846307,.29710072,.93516683
-.95709855,.10728335,1.3277105
-.4649247,.27979088,.10438188
-.71543948,.44909976,.32658887
-.63273193,.30934241,.86050064
-1.3112708,.59330482,.31105988
-1.3116177,.72011368,1.8783231
-.9907457,.51205559,.13910438
-1.6153489,.08180544,1.722554
-2.5581846,.60372243,1.7459223
-.81094503,.06403252,1.3194317
-.39223342,.44335239,.56318179
-1.8115398,.06368804,1.5948336
-.84912231,1.0469901,.38289827
-2.5044433,.21226339,1.0493598
-.60872576,.67831247,.07001068
-1.6408518,.722929,1.4263374
-1.0578403,.79178672,1.9209884
-.5086083,.08513257,1.4577053
-.70846477,.29442263,1.7070103
-1.5628934,.82584503,.48592844
-.66945903,1.621634,1.7653471
-.63066324,.60843353,.88777979
-.62123442,1.7575374,.13972529
-.31808096,.93186356,.68659961
-.90756846,1.8455304,.14149975
-.67359456,1.6715071,1.1239559
-2.522977,.80842325,1.3458785
-.96089056,.57968812,.38890893
-1.1873107,.54945496,.37868396
-1.3710821,.79266115,1.3556089
-.36155436,1.2333884,.72051541
-1.3294262,.58813492,1.9977796
-1.0114785,2.4485575,.32771384
-.73921108,1.3524743,.10995234
-.9061136,.18365021,.94690945
-.92653854,.64041533,1.4992863
-.90660288,.15551039,.10531115
-.55165726,.0869307,.19780354
-.66443445,.69938794,.17745881
-1.0634704,.56275905,.95418415
-.92780654,1.8553094,.17792834
-.36648191,1.32186,.03001133
-2.2628237,.08833893,.95588998
-1.1106059,1.1684443,.81929824
-.63446536,1.7031845,1.3108775
-.88579895,.5938326,.67456975
-1.1441725,.46227286,.55133913
-.54974288,1.3633892,2.1712565
-.75482127,.30821608,.20985662
-1.2775646,1.2115791,.78301956
-1.1040264,1.0730996,.98575548
-.82923068,1.2828263,.72672687
-2.0927695,.37518147,.49642762
-2.6051185,.64171208,1.426251
-.61984682,1.7720788,.25627384
-1.0296135,.38395853,1.6902303
-.78989593,.13820763,.22816013
-1.5075036,.09986541,.09798964
-.90535348,1.2283432,.73997922
-.53107603,.42197799,1.4823721
-.77887599,1.4241427,1.919072
-.38788405,.3064243,.12763502
-.603255,2.3476245,.76890617
-.42374425,.65015357,.67829511
-.39865718,1.2138495,.98442047
-.58004165,.16427551,.2437419
-1.2417827,1.6504899,1.9466456
-.78587017,.8247822,.14165307
-1.5990264,.11183881,.21160243
-.71518856,.96274403,.1654606
-.83005649,.66611264,1.0993605
-.2631693,.20797549,.67370383
-1.3046901,.7182308,.35681015
-1.1694328,1.3818258,1.4649878
-1.0871418,.96881709,1.7877819
-.85711955,.05381153,.33208548
-2.6588527,1.8691846,1.241471
-.64334153,1.5150067,.51749225
-2.3331172,.03584578,.45264862
-1.891885,.09364824,1.1079094
-.41206058,1.7237208,1.294721
-1.5505433,.15588402,.11726472
-.70291194,.840475,.01782527
-1.5176942,1.3571608,.51626391
-.91732207,1.2104334,2.1441608
-.64952512,1.284958,.71218729
-2.2629885,.72500028,1.4609486
-.9157605,.30932628,.82437077
-.42659509,3.62711,.34489407
-2.0764755,.15101091,2.8723142
-1.3016695,.45245111,.26527673
-.73228014,.38905305,1.0062065
-1.8104388,.04965546,1.9658288
-2.1597487,.11941019,.0438434
-1.3602359,.31765156,.18086776
-1.1526828,.20610366,.53801615
-1.1446085,.78712348,1.0478643
-1.7892861,1.113422,1.8890161
-.89447168,1.5463098,.58722494
-.31093341,.63689319,.54514238
-.77941323,1.1282991,2.8614504
-.79640438,1.6730395,.25745985
-.32701671,.55850307,1.5366344
-.34515359,.38434313,.18938805
-1.348458,1.4584413,1.4294355
-1.0905667,.60303939,.70401555
-.93704124,.73716836,.39567315
-.16441476,1.1937163,.10683238
-.475927,1.4441055,.88729662
-.7651832,.42235408,.76788111
-.6894845,.45317178,2.8297377
-1.2351651,1.6089556,1.2413227
-.84835168,.70851448,.27811613
-.89940289,.44428295,2.4247329
-.96178859,1.0449725,.31588391
-1.2814485,1.1655641,.62871059
-.7617804,.52542321,.03601487
-.88510048,.12399567,1.5454181
-.34647345,.58188941,.25753543
-.601931,.23917071,.02561574
-1.3099906,.33098984,.78007269
-1.7877125,.69414048,.07475105
-.78434197,1.4858103,.27676414
-1.5522448,.35830109,.8594794
-.33304555,1.0935314,.44672576
-.74439264,1.0274393,.21105813
-.41817729,1.9297668,1.1019955
-.70597211,.50249371,.10137685
-.85355822,.82435645,.7317289
-2.1294905,.48890443,.50359521
-.93826229,.12161951,1.6666311
-.51362107,1.0266688,.91872671
-.47078014,.01019258,.27413788
-.99946085,.25520054,.24637888
-1.1406285,.26509427,1.3718277
-1.0967533,.07955355,1.2418306
-1.4516193,.53782447,.62880351
-1.0675218,.1640191,.51726017
-3.3984601,.21669371,1.0858314
-.20776629,.26667433,.18053947
-.61275634,.49342965,.02913908
-.64626648,.78270399,.88737416
-.5698873,.87089255,.30883112
-.79545704,2.5411042,1.8924827
-.60097818,1.203726,1.5439994
-.54330713,.35953407,.64405151
-1.0886077,1.1309199,.39126885
-1.0401689,.52777349,1.1962336
-1.3446956,.82825933,2.1382708
-.74767928,.79674031,.15419788
-1.399706,1.808304,1.4536863
-.93580309,.02434302,.32605549
-.55762287,1.5464124,.1224391
-2.1720563,.0226294,.2114568
-.58552398,.82992321,.16372588
-.68810364,.16273658,.25461524
-.8540284,.01551845,1.0006076
-1.1472292,.5160431,.93496191
-1.0829149,.96310349,.98044295
-.5497749,1.3898502,1.6496492
-.24809771,1.2718039,1.3998769
-.70208747,.88883613,.68580062
-.74206365,.72519082,1.3936745
-.74232983,.23650249,1.0362136
-.44367146,.45517319,.23677404
-.57742154,1.2334023,.30518551
-.71334728,.40510708,.24449846
-.64509024,.4383839,.39374422
-.75390466,1.153156,.38959557
-1.0619402,.54908328,.08771917
-.46457882,.96503668,.62503782
-.54510997,1.5224948,.34789243
-.63761992,1.4815031,.16245628
-.4637462,.68436127,.52632719
-.63280481,.39089519,.89740023
-1.0003331,.72538412,.83774561
-.92852432,.67514223,.7711365
-.61353504,1.4128919,.1163385
-.91263099,1.599555,.57927497
-.64483665,1.1517766,.16593396
-1.0060819,.93299005,.65674679
-.33437551,2.8958794,1.0125029
-.76084932,.03923219,.22505402
-.91797836,.43469082,.24437117
-.93099058,1.5425545,2.5218066
-.74628902,1.1717242,.75510993
-.54144751,.26141485,.27837178
-1.1014037,.14826661,.86058018
-.76596451,.51059799,.40464319
-.44998355,1.206497,.76489737
-1.3319932,.18545043,.18849285
-.19623323,1.4048233,1.1573945
-.43530611,1.023779,.5618468
-.47899564,.89717652,.54763584
-.79589283,.21612351,.06731587
-1.3690923,.38072876,2.4385097
-1.8751674,.11951431,.50307921
-.67311405,.35219047,.1404408
-.29038624,.30834977,.81946326
-1.6903334,.18322243,1.8186254
-1.0006251,.80901478,.87189095
-.70889606,3.0322088,.24251527
-.76534078,1.3525924,.42748598
-1.3139578,.66531835,1.770909
-1.3066409,.97693569,.75421191
-.47020199,1.4366467,.25191306
-.67840851,.5495026,.48954075
-.84551385,.56606566,2.0022296
-.72128152,1.2943845,.1180128
-.97468306,1.3785292,1.3960396
-.65112255,.25663731,1.6449302
-.89250181,1.8894021,.56746237
-.87186121,1.9889687,2.0730947
-.2400691,.79323616,.24644319
-.44278193,2.2165399,.72840239
-1.0108206,.96063834,.99916097
-2.2963271,.22084116,.83177486
-.62954369,.24526235,.36962036
-1.5978657,.73367411,.28810368
-1.4499996,.19836214,1.5976853
-.47437632,.50695717,1.1909022
-2.616464,.00247365,.04619271
-.53105723,.51308612,.41735082
-1.2420191,1.1000079,1.0602995
-.42030675,1.8191787,.93525367
-1.1546232,.32635063,1.5712419
-1.1905206,.24983316,.35832782
-.97157747,.35409823,1.1717312
-.94961839,1.539662,.69534626
-1.153049,.21818076,.02789383
-1.4668402,1.4523606,1.5134148
-.43657942,.79932067,1.0009928
-.66273658,.32828365,.43009538
-1.9344779,1.3629388,.45431366
-1.9232056,.47933632,.29800557
-.81773732,.67339899,1.2860089
-.85376875,.21894908,.06090688
-.56180696,.99449079,1.1068924
-2.0144901,.70048611,.93474163
-1.2249708,.05332547,1.0381058
-.68696308,1.2198019,1.0236655
-1.2321931,1.0554017,.88038591
-.21517653,1.4237157,1.1899101
-.64187123,.70595609,.60827687
-.82134109,.83540843,.78665574
-1.1677143,.39683344,.46173573
-.60256583,.49853791,.76988427
-1.2693216,1.0843831,.01422755
-1.0444811,1.897266,.01272557
-.76388237,.68611656,.61002416
-1.3782752,.18044388,1.3340659
-.84175626,.18744026,.0920904
-.52442927,.77657934,1.244083
-.84217605,.96648198,.40084882
-.88144964,.16898368,1.9633876
-.40942893,.5672466,.47083798
-.72087888,.88718443,2.518046
-.91823247,.69862683,.24753601
-.4781963,.8499386,1.8157084
-.66441049,.91837913,1.3929587
-1.107066,.1786,.25533124
-.31361151,1.7907387,.10015043
-.42364308,1.8733277,.3395968
-1.0049339,1.1515179,1.2027589
-1.8473577,.0286493,.30837974
-1.7422834,.9587606,.56252499
-.64731959,.07820098,1.0510952
-1.5726601,.85185437,.7875751
-.78003784,.08342727,2.0295397
-1.4381264,.77646806,1.6462879
-2.1050477,.01573889,.01098816
-.53619237,.8042114,1.3854905
-.57351764,1.7496842,.15600107
-.44147608,1.0327533,.07880477
-1.4026976,.27807421,1.2040018
-.36069062,.9072154,.34055209
-.9005711,.69995247,.11124845
-.53659638,.25757575,.27294875
-.75609559,.39948646,1.9458451
-.57440904,1.3815245,1.3271949
-.73330745,.77372286,2.3050657
-1.0702935,.70208764,.65113967
-1.0252027,.25418293,1.0768209
-1.6616641,.64192365,.001771
-.54801111,1.5752397,.26886432
-1.7645184,1.4543728,1.9010433
-.86644227,.77608463,2.5494013
-.40367817,2.3510783,.42954891
-.52439664,.50416357,.60089518
-.9256525,.20448644,1.5425992
-.58546142,.65194381,1.3214459
-1.3209585,.12579793,.20477867
-.28118447,2.0613296,1.2705591
-.60367707,1.1551538,.99746559
-1.2419605,.14593523,1.0210785
-.34696913,1.0303375,.83558292
-.95938615,1.340276,1.5415343
-.40177246,.0795647,.28086765
-.37661562,.68524786,.75071641
-.6599319,1.6086752,.06785454
-.39431616,1.6784585,.43942966
-.77526437,.39733328,.5537349
-1.5515281,.02043422,1.3198711
-1.0029717,1.0294522,2.8075654
-.88310492,.71300237,.03916898
-1.5507376,1.6171855,.43934439
-.53088345,.28911991,.13207295
-1.5200003,1.4794626,.31004392
-1.5507931,.32311716,.32357994
-1.1606919,.33596486,1.2837432
-1.1005206,.14390817,1.0113076
-1.2815505,.01146508,1.1564907
-.67231279,.38838,.88414975
-.54359915,.66211696,.32986298
-.71970927,.79059803,1.1683487
-.81541277,.2190525,.2692622
-.61008182,.008451,.86745742
-.69470727,1.4049818,1.6707381
-.76677177,.37682989,1.0554074
-1.0290005,1.1252405,2.0697156
-.48681882,1.2293661,1.8066232
-.72850586,.24452266,.61663782
-1.3343909,.89532223,1.0022759
-.42538517,.37847769,.92223457
-1.6501571,.19022516,.87041601
-.51917296,.90982849,.57413805
-1.110452,1.2219295,.68526706
-1.2321867,.11228213,.30551885
-.39549815,.87361309,.19939504
-.60156189,.09589385,.12695387
-2.2462819,1.026048,.81324722
-1.3663175,1.1698616,.4215164
-.66812254,2.828459,.78054853
-.65469833,.63293153,.17076424
-.82884179,1.6848422,1.7363887
-.7089417,.98429561,1.5709842
-.54815873,2.0619316,1.8711067
-.50850329,1.7812351,.17714984
-.49598577,.66280535,.21153356
-.97751387,1.8120499,.4751842
-1.3500784,.52695562,.71125219
-.34586156,1.0195165,2.268315
-1.2140486,1.2774299,.82745019
-.94073359,.32311325,.18484708
-.52878216,.72212807,1.2298133
-.38163987,.36150851,.31273559
-1.6372935,.69275447,.45561202
-1.5138226,1.0896287,1.1516429
-.84064308,.89844368,.30461119
-1.2734647,.08562101,1.9626604
-.67231753,1.1473201,.19233192
-1.0335842,.47778375,1.2478813
-.43057214,.60987051,1.2161317
-1.9370227,.15662768,.70738128
-1.6396145,.07313038,.7427246
-1.6489494,1.7388826,.2849679
-1.9527705,.25102613,2.7709555
-.568653,1.0591647,.08839932
-1.1208939,.45198618,.35989825
-.35294523,2.1245776,.7089477
-.56573468,1.447058,.23420311
-1.5597514,.0338727,1.3744448
-1.0690719,1.1248482,.64701592
-.84731927,.80908996,.32350985
-.62596095,1.9756762,.52395621
-1.3341534,.46477146,.69643942
-.48491365,.30855352,.8581085
-.20269215,.91219728,1.2055196
-.89521592,.13758817,1.7270014
-.81035665,.15375413,.22806042
-.98203752,.61105695,1.8141107
-.67282048,.03964925,.02640102
-2.0804651,.4979232,1.7697417
-1.1076682,.98490488,.43902677
-.42478274,1.9389885,.11299541
-1.7530077,.28971378,1.6189251
-1.2072087,.09229927,.41652256
-.83161251,2.0199352,.51345812
-.77395826,1.6561871,.45893051
-1.5538005,.44756561,.89905751
-.67016551,1.9710714,.19655014
-.40805494,1.3786466,.06610338
-1.2122267,.87866693,.24432564
-.29843724,3.0104981,.29465878
-.7689856,.99980014,.21250591
-.72929313,.89281324,.43400069
-.73017093,1.5332923,.75319611
-1.1687427,.19950787,.89751576
-.59577123,1.4418487,1.0862644
-.82363904,.41205193,.09042025
-.69847202,.60554364,.01618492
-.93809042,.46887085,.01683668
-.95802012,.25710795,.18574147
-.56401733,.41857026,1.5943409
-.68183107,1.4449189,1.3439383
-.93353832,.38151897,.00366689
-.46136494,1.1881765,1.4627369
-.81817871,1.5310226,.69804021
-1.3458947,.39217147,.80411131
-1.7374522,1.5034201,.07360819
-1.0220231,.37181047,.10992399
-.94431546,.18039911,1.937377
-.88167959,.48016848,.42106166
-.80313137,.67894715,1.2067335
-.81947507,1.0475692,.2135946
-.83443178,1.4835095,.96566419
-.69787212,1.1359754,.92924154
-.7177048,.0967349,.21462257
-.94027712,.55895428,.3574262
-1.0033145,.09680927,.74714515
-.59768344,1.0672805,1.4374594
-2.0298435,1.0187378,1.680222
-.72763941,.03965192,.28961487
-1.3173073,1.6327696,1.1615729
-.72066137,3.6543574,.39957596
-.58604322,.07422554,.7008324
-.67364591,1.336066,.24752363
-.45976755,3.0070512,1.226892
-3.4982363,1.3945628,1.4503451
-1.4397447,.44079068,.32615763
-1.3056158,.439929,.47311035
-1.7352652,1.1350725,.01775016
-.35697227,.63151563,.67463507
-1.4971325,.68931501,.15120243
-1.611563,.46702792,2.3767627
-.33357016,.71421109,.06171243
-1.0351073,.24040421,.15118399
-.7853469,.1606033,.23170987
-1.0463517,.50375896,.50550809
-.23020098,.59625719,1.1217749
-.7489565,.98490968,1.4903771
-1.1157311,.21727625,.64135362
-.60553062,1.4970212,.22506381
-1.3913737,.75822373,.04505568
-.99077079,1.0984972,1.1082628
-.60663137,.14042255,.64949719
-.70022834,.33058327,1.0735846
-.92239603,2.1994026,.70445564
-1.8931649,.12652984,1.6736874
-1.5404815,.1395824,1.3905349
-.62839403,2.2084588,.66971134
-1.872742,1.4250861,1.4091621
-1.0988468,.84469127,.46779106
-.78931685,.30845287,.71161178
-.71567838,.28244947,.18378469
-2.7190396,.99111998,.1319563
-1.2956921,.10037478,1.0086807
-1.5316824,.55688196,.05833246
-.75337749,.60281256,.43378391
-.7667402,.81984524,.17321663
-1.2933254,.041337,1.9816536
-1.6686382,.46128373,.61608864
-1.0611584,.11802609,1.8663115
-.80334513,.09954507,1.0470412
-.42610697,1.8103881,1.552786
-.6782551,.84190331,1.6401894
-.44251206,.08007062,1.115
-1.6127387,.12149951,.21378853
-.30009521,1.7935894,.85897428
-1.051626,.31670626,.72660459
-.41320332,.81348308,.49310519
-.5570305,1.6463242,.35962147
-.70051463,1.2400692,.73432293
-1.1845574,.29910927,.4947109
-.41074705,.5621073,.23808142
-.88426487,.47480273,.31978839
-.85414616,.07885426,.99208589
-.80767983,.09446571,1.0844186
-1.676779,.04630037,1.1536825
-1.0914018,.2587968,1.0656743
-1.2354634,1.7350878,.37242879
-.76812661,.39412199,.50015562
-1.5185428,.09295644,.92913511
-1.4259451,1.0672672,.02361289
-1.1412621,1.0639473,.52674529
-1.696365,.7184527,.27575576
-.90136968,.77038538,.81806728
-1.6119533,.60132548,1.2632056
-.72134181,1.3610941,.20675716
-.57797598,1.4022782,.9685275
-.93429058,.68922981,.81543
-1.7668151,.42682553,2.5478858
-1.5000654,.39381475,1.1003217
-1.058048,.30394993,1.1231413
-.56972876,1.2365664,1.4198511
-1.3114347,.16599104,.05111532
-.62714399,.08379614,.82035723
-.34155377,.73145903,1.3758703
-.52095115,.39392192,1.199054
-1.0909694,1.318087,.78744842
-.47974012,1.0199776,.14142302
-1.3874983,.34611784,1.1906072
-1.7449964,.69935816,1.1559621
-1.2968712,.31132208,.67111544
-.36198606,.84210781,.68726673
-1.9217677,.4410834,1.8976807
-.82856634,1.6778526,.6275148
-1.1606893,.19361576,.55599266
-.38432081,1.3147367,.25867545
-.93821455,.02132254,1.6057964
-1.233722,.01134774,.40709447
-.93823661,.09329964,.69777594
-1.2193558,.36393779,.39176101
-.3945901,.10587629,.56277012
-.65139836,.04818524,.1837579
-.58395254,.70017932,.28770666
-.91637748,1.5388654,.76868827
-.84797784,.27691984,.37419389
-2.1688176,.01313496,.5820366
-1.0642835,.17103597,.20227758
-.79797886,.59319919,.71913682
-.57074379,.58251342,.68342629
-.62405473,.45539657,.37585996
-.69646647,1.4866641,.28870595
-.78184201,.20208397,.44526127
-.56078713,.62154206,.4883465
-1.2777397,1.1897417,1.3434373
-.26471844,.83216494,.49580066
-.49090766,1.2462343,.29478485
-1.1367906,.06740099,.24442406
-.39434489,2.2406034,.3771851
-.86373301,.93811841,.29048372
-.61473675,.39345877,.02783632
-.52130281,.2968733,.11337209
-.86216742,.42572747,.42471005
-1.1661795,.56315584,.82249383
-.34061149,.78995311,.58362392
-1.0498209,.20783583,.8765877
-.61820881,2.8886621,.28806178
-1.0732232,1.4218239,1.0622593
-.71098753,.96137919,.74017423
-.56320043,.73782404,1.8362171
-.54700888,1.1671831,.70950054
-.99447719,1.4302942,.45089979
-2.6891118,.84345224,1.6427603
-.30632406,.68241457,.67447639
-.75569761,.45031065,.72847016
-.76953024,1.3465777,1.5444058
-1.0233903,.2218821,.49873288
-.93649177,1.0476655,.94060055
-1.0636419,.46325819,1.5674602
-1.1901595,.04578641,.51713864
-.58165293,.68120748,.04691732
-.49899289,.93504313,.2020687
-.5993902,.51232462,.5066996
-1.7106295,.39254524,.29370738
-.90301982,1.0506118,.33025054
-2.7478653,1.3769532,2.3580823
-1.0230546,1.1848891,.65872731
-.65556729,.9383686,.40286226
-1.6271326,.26856128,1.0307632
-.7105551,.06674286,.27451817
-.75505123,.52272059,1.2762257
-.70360245,2.2828981,1.0787213
-.59771215,.04480356,1.4893714
-1.0671874,.21663916,.15493562
-.7678517,1.5890053,.56869076
-.79748951,.22500215,.96286365
-1.7431267,1.7238303,1.7546394
-.61792742,.11475136,.96768871
-.83669526,.74640119,.08745171
-.23783359,1.1659904,.85212214
-1.379506,.78378412,2.0034167
-.82945898,.14478982,.17832748
-1.1450608,.60418838,2.1747198
-1.4734951,.82726309,1.1642912
-.3391946,.13650776,.5829049
-1.1605315,.07163791,.34078355
-.52979732,.93176003,.63381633
-.81735068,1.5598311,.61552837
-.46508839,1.4229878,.35795236
-.50702012,.30577914,.94811494
-.7293124,.06627109,.40455973
-.38747295,.24851776,.52171133
-.71970568,1.2435105,.15229159
-.72396816,1.8532939,1.0665332
-.46853071,1.1876743,.79761578
-.92213866,1.1255236,.19036355
-.59837951,.88452319,1.0777529
-2.1333769,.7720038,.48539698
-.72751072,.77603183,.36815165
-1.6284775,.42704577,.65604823
-1.0524197,1.5271969,.5220787
-.49874399,.68427449,.08515265
-.9816623,.7900656,.06453209
-.35079072,.82597887,.56050905
-.55431698,.78366237,.15009645
-1.3360066,.0250514,1.3159859
-.5478337,.17183928,.80285937
-.50597476,.66461905,.27695158
-.94076271,1.917618,.7930953
-.31235601,1.235658,.28708279
-.43555818,.00428879,.29795487
-.74705518,1.1477876,.89958804
-.49821129,.94362025,.19647159
-.48152496,1.3623507,.04603256
-.65527771,2.1697884,.28464441
-.3581618,1.6746362,.04868723
-.39661033,.166658,.18745322
-.38703927,1.8767987,1.2085146
-1.151916,.03487397,1.7697891
-.89646463,.19631908,.2388549
-1.1607856,1.0952342,.42305172
-.48084197,.49655741,.19963065
-.50534463,.34897969,.671622
-.42924926,.88962308,1.0135226
-.63189224,1.5515447,1.7224925
-.93486973,1.0786193,.76037103
-1.6915538,1.0960982,.95812457
-.43548707,.19406788,1.6889205
-.56027408,.28030391,.22440052
-.53704976,.58844191,.96295989
-1.2932559,1.5340191,.44833665
-1.9226928,.07111082,.69686603
-.4558846,.08059312,.30145118
-.49335849,.9823473,.02213232
-1.9734345,.05099915,3.553424
-1.8709459,.28539716,.58967462
-.70801216,.49037449,.18387129
-.93976329,1.1177277,.04560194
-.53122196,.56188506,.3392187
-.92782689,.60080906,.79010894
-1.3049375,.18900802,1.1182434
-.34166714,.73527498,1.4229663
-.76448809,.42955268,.1009084
-1.6671902,.62848743,.95257631
-1.7286207,.60412349,.81562803
-.56273232,.28806938,.66104476
-1.4600054,.62289323,.65229496
-1.0338479,1.3189927,.58738887
-.4036041,1.42983,.77837772
-.43725594,.04955654,.10198601
-.94624122,.17227175,1.1102339
-1.2019348,1.3856511,1.5877091
-1.2428512,1.1265018,.28748393
-.62646318,1.8845647,.5416184
-.69208349,1.5013516,1.0723697
-1.2120579,.57667647,.50397207
-.57163182,1.4233013,.87860209
-.58177884,2.1811042,.18662537
-.8732239,.58740452,2.3265186
-.52244615,.74732659,.96042961
-.75092518,.22182359,.16207741
-.79435161,.41195265,2.4329806
-1.2524346,.3449198,1.2904956
-1.0980687,2.0001621,2.2131029
-.87763671,.97684027,1.0814993
-.86409831,1.9411405,1.6618383
-.80149845,.05920637,1.2191713
-.44267525,.43267266,1.3349293
-.71095582,1.1376534,.09969233
-1.098302,.35345422,.66642755
-.42439338,1.2832107,1.2958824
-.70837202,1.3689923,1.2286181
-.85277151,.54717614,.21690648
-.66598191,.53225871,.37832206
-.78718397,.18781805,.14815368
-1.1100806,1.0834357,1.8922526
-.23444942,1.3702448,1.283954
-1.4737939,.14346084,1.3686324
-.87709727,.48330804,1.9134317
-.89837149,.0931184,.85892821
-1.5302699,.04439298,1.2242649
-1.1170139,1.3710913,.02005849
-.8536132,1.3842251,.81716382
-.8056937,.56658346,.28081821
-.8807705,.11788983,1.4776014
-1.0676078,.48804575,.28147628
-.36959064,.99743526,.17031666
-3.1300536,.51490522,.31450847
-.56569605,1.8518713,1.0163875
-1.1784806,.86763508,.21390007
-.66457796,1.5461023,.13571864
-2.1690371,.50547559,.87679264
-.70330908,1.1776696,1.0497549
-1.7738387,.26625589,1.4395009
-.4386385,2.2440703,.91315316
-.50629389,2.2421697,1.6058332
-.47248234,.53630764,.68310241
-1.7679153,.41137863,1.4775969
-.26538789,2.657673,2.4163415
-.65433256,1.1991292,.55145963
-1.179223,.20224828,1.3082526
-.52668774,.97993152,.28116182
-.64039281,.59158706,.43157043
-1.3028647,2.475879,1.6922319
-1.593247,.14118265,2.8096723
-.72653643,1.0948164,.32372963
-.70091665,.27489623,.68467821
-1.4047064,.00444072,1.2449077
-1.685729,.49422212,2.453068
-1.1947896,.12606807,1.2061826
-.84220472,2.099698,.69929842
-1.2552845,.65837571,.50030636
-.96631504,.71484965,.27404619
-1.0448484,.47846321,.67220927
-2.0900764,.01522692,.35452014
-1.7087578,.01911842,.76358368
-1.0093806,2.482688,.96628646
-1.3246375,.58613513,.17476781
-.53623877,.63604205,1.1638508
-.99384154,.92788373,2.0639858
-1.6667356,.01951675,2.2318411
-.91519422,.04629148,1.3708472
-.63602883,.44689112,.32995735
-1.4727404,.30731517,1.0255925
-.3897319,.97718836,.27071304
-.43009462,2.134988,.4339229
-.59490529,.78145897,1.9628712
-.88137067,.03958492,.40414666
-1.4031746,.04855357,1.0424055
-.78508346,1.0799425,.77979648
-1.0773998,.00780161,.47168196
-.83966251,.49997362,.99151966
-1.3771413,.75416947,.49358397
-.76910204,1.6958299,.05272054
-1.0678621,.44889272,1.4523691
-1.537202,.42838221,.47141861
-.64727731,.3381639,.09567055
-2.3802888,.17377196,1.056166
-1.7724145,1.5085779,.98556567
-1.5849892,.16873599,1.9249123
-1.8470427,.6020813,.93971539
-.69433313,1.2075829,.1245664
-1.6714983,.94229135,.82157194
-.74920665,.44048704,.60850598
-.74214645,.35738444,.01491706
-.61303676,.94387645,2.3105217
-.85545385,.75880986,1.0349341
-1.6765711,.11222827,.03078876
-1.0191012,.73154198,.38317446
-.86044867,.01076728,.29651273
-.64645727,.59985647,1.926398
-.76214805,.94609282,1.5209389
-.50080115,.99639635,.51537219
-2.1815972,1.0153933,.45386985
-.97497284,1.4339451,.16951626
-.59910637,.37565017,1.3252119
-1.1711041,2.051048,.57677887
-1.0383066,.2363873,.49250843
-.66509632,.14206166,1.7205799
-.54511772,.44907644,1.2393263
-.76165835,.39629967,.76876512
-.41860847,.69360964,.16109703
-.58332523,.67069906,1.653511
-.95096683,1.0201365,1.3316881
-.60465233,2.3726876,.57415579
-.78082582,1.2168244,1.0598832
-.58069179,.94725091,.45822616
-2.193116,.71135819,.22874445
-.48067472,2.1070761,.25564216
-.64845104,.30062909,.31942327
-.57533848,.00491983,1.2666597
-3.6530129,.58290071,.79239151
-.62604035,.18367527,.33086798
-1.1344012,.90636593,1.7350676
-.46046242,1.4401776,.24492958
-1.3865946,.42071336,.31339186
-.80901464,.81824964,.81105869
-2.3014711,.18917255,2.6612336
-1.1996206,.44975134,1.2387685
-1.5262824,.02182704,1.8274456
-.55325028,.64978826,.20300197
-1.2725778,.15196087,1.3657249
-.44461757,.9491823,.44752392
-.8093274,.2020172,.56570359
-1.3499731,1.1416917,1.1348319
-.35824005,.29681086,.10248612
-1.3804861,.10780394,.35887111
-1.1759258,.10884923,1.2132582
-.74348562,.82368158,.62201658
-1.0345678,1.5517738,.5964722
-1.8230982,.74416035,.06125212
-1.2695891,.86445411,1.1583208
-1.5218803,.66411604,1.1713213
-.48318843,.46508657,.83646309
-.55876699,.5010651,1.2028006
-1.2881826,2.0670119,.28284293
-.73148802,.81804787,.32193554
-.55517252,.26485811,.06502197
-1.8482524,.86224434,.54115894
-.78418133,.1819163,.91157202
-.68052445,1.3608777,1.228635
-.98313305,.09488521,.12376494
-.48943273,.89230859,1.820415
-1.058841,.3081019,.56618633
-.59990517,.30203621,.69802133
-1.7850662,.03561615,.45364372
-1.1776154,1.1572635,.87533599
-2.1622262,.58239483,.09790119
-.78149683,.93247274,1.9557374
-.67922984,.73225343,.69279493
-.80688387,.78552983,.08807436
-.73792253,1.4511445,.59997294
-.77033465,1.7318435,1.4397273
-.91865166,1.4866547,.81382803
-.89071266,1.9470342,1.7555691
-1.0872424,.77173164,1.1283609
-1.4404953,.4660857,1.5664108
-.9245377,.56036278,.26780834
-1.0575043,1.6516391,.05068378
-.92661,.57685849,1.0308772
-1.0056194,.36095106,1.0769535
-.75905503,1.2126881,.05760164
-1.6328516,2.1183632,.63446345
-2.5387381,1.3313537,1.0969228
-.78997149,.33538559,1.296788
-.45337604,1.2564058,.70663327
-1.4044519,.85137821,.99516858
-.27049033,2.2951489,.19494872
-.70499075,.07668617,.43196078
-.42638139,1.6470129,1.2082898
-1.4237315,.42583719,.65621884
-.9870676,.24844236,.447066
-.32802541,.80642664,.03432616
-1.157716,1.3644238,1.2123595
-.58731527,2.8605326,.41324186
-.68615861,1.5874529,.12764769
-2.2887238,.46344196,.49330873
-1.1768177,1.0287012,.27257803
-.68147366,.85072686,1.6828809
-1.4846339,.91148605,.09810022
-.49425685,.23817419,.25760414
-.56686426,.66044626,.81326124
-.38461882,2.0033689,.4254664
-3.0202153,.00868909,1.4736475
-1.0821338,.13243736,.54771565
-.74208037,.61645115,.06618945
-.59782263,1.2642064,.58019797
-.41317806,.63159137,.04463856
-.50167148,.59099635,.05716364
-.56728395,.90751747,1.2069458
-.4588818,1.0839951,.55266875
-.30607828,1.0917474,.92927985
-1.6398885,.10895882,2.3517632
-1.2120938,1.6823694,.87627807
-.47789541,.6378351,1.2951561
-1.0365786,1.0357111,1.2585806
-.64102742,.79450355,1.153355
-.5505499,.70518795,.25606523
-.95442335,1.5148844,.86952687
-1.3247417,.88271106,1.7258381
-1.2984909,1.7451747,.81457396
-.51768834,.15785864,.82998573
-.81297242,1.4313905,.75987872
-.66321212,.70566047,.10936672
-.32445962,.89013277,.82591897
-.84122614,.94047612,1.8771333
-.49813938,.72622352,1.4080602
-1.4569933,.88016216,1.1078869
-.92955098,.10077977,1.0756463
-1.1369436,1.059448,.45869738
-.82818073,.63537566,.80732423
-.45244877,1.0972204,.15255778
-1.7230337,.21104887,.31897083
-.98907117,.75732367,2.2864685
-1.1077555,.33314914,.69090197
-.49017796,1.1525177,.61440843
-1.123922,.93335842,.44375923
-1.7406087,.19518466,.91870876
-.52420349,.71380989,.75162192
-1.2166396,.78034245,.69375701
-3.0644962,.15263463,.44391507
-.75613558,1.0848027,.3318899
-.42576159,1.258374,.71029744
-.56752127,.09013566,.13642441
-1.3965554,.23209907,1.0728463
-1.2773155,.02528587,.21541061
-.55505699,.07158268,.60658726
-.71181659,.20236903,.50011313
-.641897,.52172583,.58591718
-.89285781,.12947088,.17288782
-1.4936875,.46803883,1.0798989
-.37438083,1.7184691,.42827735
-.65399329,1.1763962,1.4184433
-1.1617218,1.2809702,.69195055
-.73447291,.75779678,.43387677
-.54811016,1.4257687,.75337386
-.82052915,.19909568,1.1604012
-.6659465,.49982116,.88894998
-1.0613628,1.1266974,1.9435193
-.58721366,.80609398,1.9134095
-1.1816898,.25537249,.7787632
-.72205037,.19377983,1.6052215
-1.0510103,.93665028,.7773807
-1.887208,.71742203,1.3782719
-1.8372676,.01598212,.6790649
-1.2434782,.32348893,1.2935571
-1.6589074,.99578875,.56353703
-1.4149387,.4080596,.74322179
-1.6383921,.07732674,.20114388
-.46840103,.96395267,.82129876
-.35208778,1.1018166,.90088787
-1.1555319,1.7133168,.75274268
-1.6992042,.30045162,1.6326688
-1.5703486,.43835372,.0628372
-.38810477,1.0832579,1.5236108
-.68346723,1.1737086,1.3175729
-.86848469,1.1494328,.53007554
-1.4462788,.00588767,.44342819
-.876837,1.6559324,.71236968
-1.0506553,2.3973397,.5941117
-1.0532612,1.95153,1.0875918
-1.1804699,.39875384,.93551584
-1.0266889,.28076683,.37054673
-.37468492,1.1438997,.75561326
-.92608334,1.1921811,1.175221
-1.717445,.35600309,.49126256
-.82652586,.46980083,.62096918
-.4992515,1.0101233,.06713158
-.7459197,.19818101,1.287709
-.61395128,1.2663138,.66078234
-.56576929,.62536539,.07387577
-1.4151427,1.2668826,1.1810103
-1.388912,.36242468,1.0052446
-.49897673,.83249276,1.1598206
-.43655656,1.0241199,.60953271
-.45019516,.80396412,.63113564
-.32325078,.70701481,.16019928
-.84902819,.4545794,.41479859
-.74185041,.42247381,.89698633
-1.1345327,.94709691,.06923735
-1.8759763,1.0142647,.29275344
-.6260093,.44025053,.23427754
-.82535991,.49191021,.32751499
-1.1052778,.28704581,.32773262
-.48505417,.73488087,1.0433174
-1.2075581,2.5337094,1.2416788
-.44874852,1.0101712,.10064435
-.68167325,.19278948,1.4787171
-.87465294,2.3941008,.61482209
-.96875288,.08446492,.08891738
-.51304435,.58641576,.79733887
-.42318136,.65461768,.80202282
-1.1875467,.56790901,.16843338
-1.2605085,.28384185,.72447973
-.78755104,.42364364,.54426915
-.50009694,.93131797,.09682983
-.18313957,1.5461565,1.4888511
-1.1757475,.01885718,.12556135
-.55649186,.75917841,.10702222
-.56061206,1.1838876,.257095
-.62359614,1.3127315,1.4523013
-1.1001441,.12491662,1.3439011
-.88840634,.15329167,1.5455686
-.85142021,.35975216,.41572979
-1.0448601,.32655856,.25309597
-.96268697,.41184989,.03300915
-.7391465,1.84273,.0941544
-.95065582,.96164093,1.7930903
-1.286033,.84953963,1.0529479
-.98698288,.58225804,.29117062
-.81809259,1.8573494,.33353763
-2.9178948,.69521362,1.4628453
-.50109814,1.0064761,.09049712
-.34685442,.36228482,.01116192
-.91798036,1.6877317,.35639442
-1.0763208,.95897893,1.299885
-.88166928,.34360215,.14786951
-.45506013,.97930164,.08177995
-1.3203121,.72218669,.54354507
-1.2996014,.60393633,.64097879
-1.2045573,.59887704,.19153031
-1.0597452,.10174782,.87195638
-.76950086,1.2521815,.44706291
-.81679656,1.0187966,.96718424
-.80427478,1.6986969,2.308694
-.80976911,.26788927,2.0012774
-.61920239,.27044639,.25185749
-.99118106,.18737047,.73497224
-.60898461,.24328079,1.3437602
-.63122649,.3323818,.08869966
-1.3940808,1.135294,1.5647686
-.77300599,.39104749,1.9807093
-.6505492,.28364265,.4376026
-.41536898,.76798564,.35596121
-1.0238829,1.4957841,.09781043
-1.0355686,.77324203,1.3659654
-.49166767,.59199503,.09774144
-2.1865792,1.17585,2.1541968
-.8665546,1.4239176,1.9732285
-1.7624301,1.4260561,1.1543903
-1.1383298,2.2252769,1.643092
-.83424463,.05260564,.3610144
-1.0310754,1.0786515,.05842027
-.72462385,.07710364,.8429467
-.7726199,.66416949,1.8026406
-.76221936,1.1316261,.51645188
-.59160158,.67230966,1.4815116
-1.0908499,.77819908,1.4156276
-.58845392,1.4166633,1.3868491
-1.7404215,.56303714,.03910467
-1.2478776,.21448941,.2383128
-1.1596424,1.6161201,.1309506
-.58765671,.97184292,.93933528
-.62921124,.22495691,.25450106
-.73838898,.71402367,.61081842
-1.1670627,.84749744,1.1949042
-.38578837,1.965864,1.3727777
-1.4940518,.09888349,.01348843
-.74034924,.73264153,.90313957
-.92455447,.38000968,.87012508
-1.0803148,.52588598,.96376517
-.33914552,.42858783,.6358393
-.58402266,.3570332,.29908575
-.84644092,.98851272,.73116032
-1.4578563,.45311914,.11195293
-.56947777,.19434498,.93014372
-1.1991807,.32941651,1.8896242
-.72467764,.45318137,1.5525625
-.56719781,.23075779,.71245124
-.55129199,.76306399,1.0397143
-1.7486876,.14033141,1.7881403
-1.5380433,1.7934491,1.8704672
-1.3979879,1.7961749,1.1776681
-1.222397,.60014519,.63504996
-1.5590917,1.7010312,1.9474879
-.75998895,.27348766,.04611329
-.41889068,1.7439261,.25079177
-.58143401,1.4653618,1.5910487
-.90569344,.86303817,1.1308753
-.50495544,.49074788,.63580192
-.94329549,.32184728,1.1457615
-.53969324,1.340419,.0549393
-.66515402,1.6132708,.9303425
-.98681862,.3263688,.12891175
-1.4521025,1.1759188,.23689039
-.66853651,.35264592,1.4570496
-1.1041655,1.9544158,.73494386
-.38352197,.91462519,.69326898
-.48179131,1.5576837,.4679146
-.70815789,.78339135,.64060965
-.564069,.46440181,.62219003
-1.0031687,.736947,.55563215
-.98438779,.31932687,.10137554
-.68251855,1.6688476,.35863942
-1.279803,1.3950068,.60090324
-.43669833,1.1657152,1.1883003
-.34357314,1.1535878,.39881005
-.56271861,.96601693,.85626518
-.29466551,.108646,.85861954
-2.0577507,.6922341,1.1230178
-1.0751062,1.1040317,.41951979
-2.1492148,.20334843,.15610507
-.62386042,1.0714603,2.0453792
-.61557984,.56138596,.65644565
-.78705955,1.1301483,.80487393
-.83652649,.63586225,1.0942314
-.91109267,.20123109,1.4414767
-.96833443,.54019946,1.9311067
-1.530064,.83896768,.50614799
-.41811039,.04133404,.71047601
-1.2345655,.10275081,1.1615216
-.55557644,1.2338597,.1761354
-.75449103,.38264726,.39336192
-.93495395,.13453639,1.8190567
-.23087009,2.3071311,.84909525
-.36042811,1.2531387,1.1210884
-1.3701209,.50190449,1.3939172
-.52943686,1.4331174,.02893314
-.35591206,1.1745622,.39606423
-.4699244,1.0088812,.33795207
-1.069966,.89957312,.02788136
-.66505507,2.8879523,.89576376
-.57787179,1.5785645,.9530842
-.5742972,.24282935,1.4035767
-.76761245,.20512431,1.7882901
-.4529961,.72301388,.43306252
-.48437004,.75105686,.1811374
-1.3739249,.82709578,.18434901
-.32772305,.43058339,.47287801
-.35064825,.20431902,.46998361
-.41478316,1.1234814,.9843774
-1.5266553,.07959825,.67583786
-1.2209175,1.2564377,.30348806
-.4110275,1.1029012,.82832405
-.58296838,2.3260971,1.196581
-1.6924914,.7126843,.29892252
-.5406597,.20964588,.68336478
-.52329819,.02558273,.42093264
-1.1374961,.26861893,.75313602
-1.8669263,.23204347,.88054328
-.37059146,1.2065251,.45450213
-.48547169,2.9985661,.4597332
-.97699752,.31258918,.63348517
-.66457742,.13334075,1.6510229
-1.5905418,.18135682,.45199489
-1.4217408,1.1166363,1.7114131
-.93014281,.09810532,.41661834
-.92135019,1.0061443,1.0408966
-2.6647494,.04998093,.74427154
-.54541977,1.1564776,1.0398472
-1.8290662,.22296004,.3855953
-1.0844284,.36723069,.67013571
-.64611196,.51718132,.73650088
-.26551742,1.6762869,1.0137773
-.49558576,.67420778,.13587118
-.80105995,1.2689861,.61642831
-.74680858,1.1225425,.52529376
-.99934145,.54447858,.39289441
-.73293814,.2219169,.06714253
-.66041851,.5770746,.184839
-.56004999,.7057682,1.4629072
-1.1929171,.54241897,.86014809
-.65463149,.90363403,.63586614
-1.2281173,1.2648183,.45144101
-1.7118879,.5275955,.07732219
-1.4301252,.41896986,1.0181581
-.65391525,.37824583,.44912189
-1.1803024,2.1515874,.58217352
-1.5062316,1.1557525,1.8247195
-1.9904949,.49848386,.58165127
-.92617783,.69797102,2.30449
-.40520297,.00964093,.28239104
-.8624022,.11517497,1.3430567
-1.2324572,1.5674372,.31534546
-1.8097889,.4923839,.89437294
-1.2467099,.29130742,.84453309
-.83785385,.67235542,.28401846
-.46521062,.87105324,.48040653
-.80698983,.71538118,1.5985575
-.6859619,.31893289,1.1041177
-.7417155,1.2925051,.14793701
-1.3572149,.07195627,1.4317534
-.53339824,.54774011,.93036911
-.62106516,1.9706735,.20181027
-.66364408,.22575662,.51160106
-1.0778829,1.4971599,.24787813
-.6660879,.9208419,2.1185154
-1.0895934,1.1707552,.14083292
-.59796898,1.3006107,.58651684
-1.1664579,.83761119,.44494336
-.74198629,.58983207,.92716638
-.89997488,.83740661,.5143744
-2.0838984,1.6527472,.38041852
-.49959689,.92299604,1.0408874
-1.3048694,.07695443,.76032998
-.87945907,1.2460734,.1959422
-.63316919,.41959358,1.174078
-.29359634,2.5062037,2.3736615
-.38695276,1.2989649,.06784384
-.93637606,.26705571,.28860813
-.82449497,.61383091,.10474827
-1.0360863,.39059678,.32817346
-.2713014,1.0198394,1.7035674
-1.387389,.1691336,1.2249552
-2.697961,.05064941,.33566536
-.5520078,.44135582,.15118749
-1.0071522,.88218704,1.6515318
-.27420808,1.6828252,.40246668
-.95587238,1.0410607,.32213831
-.96356908,.06461815,1.0790448
-.89572203,.88133507,1.0507819
-.78724913,.91934115,1.5346235
-.78328469,1.2189163,.03262934
-.32828997,1.6162163,.73296768
-.68138321,1.31088,1.0908564
-.84999982,.06956197,.93427636
-1.2932822,.11684052,.42544032
-.47119393,1.9385788,1.395719
-1.7100829,1.3427195,1.8390746
-1.4852881,.0933114,.76216966
-.67489634,1.3744471,.37891308
-1.9430378,1.4472657,.77862681
-1.811625,.02314532,.15408085
-1.1994526,.71854611,.23527781
-.44024367,.90811933,.99250774
-.84239323,.11030162,1.2657569
-2.4803743,1.0479733,1.447358
-1.7213995,.36381892,.40961404
-.79200892,.41886262,1.444594
-.42728364,2.0970775,1.4647291
-.86271253,.81460514,1.6433546
-1.2074385,.01625138,.87164748
-.54091397,.26181309,.47081718
-.90574897,.86163466,1.7109457
-1.2988509,1.4122822,.98874569
-.88873192,.39003724,.35603441
-1.1883335,1.1543308,.92858465
-.37079689,.49278329,.42233479
-1.0674104,.26808439,.21546431
-3.2169141,.13433931,1.4215665
-.56149401,.40767049,1.9470472
-.50698276,1.2748154,1.2092585
-.60374013,.31220425,.70093384
-1.2072548,.23932258,.44763415
-.63848476,.67557247,.97949154
-.73183512,.72563762,1.3352249
-.6124797,1.3464974,.06801321
-.69651295,.00512422,.96199014
-1.1155657,1.7561363,.40310026
-.59295095,.17265544,1.8081494
-.84789062,1.7731101,.48636185
-.56210388,1.1488324,1.8920509
-3.5013114,.38272548,.34370809
-1.4248237,.59848403,.46673754
-.56155015,2.8156346,1.6575612
-1.0209263,.37509833,.29628634
-.68028413,1.3194494,.92124457
-.53841824,.72186516,.29472317
-.91848956,1.1995462,.05460215
-.70463113,.62560574,.03149215
-1.0121304,.44007269,.41115826
-1.8712743,.1054988,.746928
-2.4302268,1.1304076,1.9379315
-.77121877,.5356773,1.4005933
-1.2025795,1.4736574,.03411384
-1.4483047,.10690187,.08343797
-.24407279,2.2531709,.20431854
-.81932705,.31077566,.23851657
-.52989568,2.4868342,1.4333622
-1.0853165,1.2344268,.80081227
-.63882616,.6582156,.84605195
-.98618007,1.7871888,1.1282762
-1.3733888,.69755216,1.5787382
-.82474356,.7094603,.124091
-1.6776797,1.3987394,1.7785767
-.54599672,.94852881,.13296641
-.59303836,1.8512439,.34504329
-.62144175,.48286763,.48021861
-.55132748,2.6498406,2.3569241
-.31996672,1.927119,.45486767
-1.4247494,1.156359,.65685209
-.59466435,1.5490174,1.9509241
-.86162719,1.0197678,.44515485
-.50150964,1.6759807,.1931879
-.52455468,.50339713,.6369269
-1.9963974,.40514244,1.4401798
-1.1486961,.20254443,1.0328869
-1.066191,.19835172,.15901208
-.63807121,.67763035,.27007995
-.72574481,.42106109,.69898624
-1.7291162,.58813769,1.6459327
-1.2283289,.46700606,.3960281
-1.5470934,.74136204,1.6846113
-.20053755,1.2428524,.93102481
-1.2761117,.31103737,2.2050939
-.80101764,.95656184,.04369141
-.49063697,1.8305256,1.212899
-1.4180794,.94969304,.76805861
-.84748107,.40566801,.95461581
-1.4290161,.88533379,.77973653
-1.2824939,.16666595,1.1850466
-1.2894409,.07349802,2.3149833
-1.8363994,.72529481,.3466731
-.89669367,1.3484312,.03255016
-.88845468,.57486773,.37250832
-1.863765,.16123178,1.11692
-1.1813497,.62894669,.1284394
-.44415179,.74540757,.12106062
-.43381145,.94785281,1.4332046
-.57129762,.05947879,.94447718
-1.4400784,.7622106,.21361708
-1.5466372,1.1671416,1.2778287
-1.8363494,.56809357,.52469365
-.65801657,1.2758549,.90453316
-1.6405633,.23170725,.0249921
-.62017439,1.1807342,.21690417
-.4183164,.65501771,.14771412
-.5699254,1.09822,.16532058
-.87548708,.6479397,.4372399
-.37474594,.95361548,.49754566
-.81167055,.08828657,.53362249
-.76419821,.15868645,.87610233
-.4355767,.35120233,2.2776896
-1.2436567,.5192457,.88020457
-.77829312,.60429935,1.2426985
-1.5103822,.99348962,.50173359
-.29773647,.21715774,.37695779
-.9557133,1.4358815,.42083892
-.56413019,1.9704286,1.1541065
-.60694593,1.283036,1.3891821
-1.2427183,.05557631,.03531687
-.50728036,.70004255,.64560538
-.51273906,.08260371,.57712555
-.83676689,1.4973394,.87373947
-.96463594,.37588916,.20155466
-1.0328054,1.2560414,.20951441
-.56438284,2.3704681,.91125834
-1.1626814,1.0920031,.67812247
-.80250347,.90901818,.5419189
-.46060196,.16433701,.94713618
-.75068185,1.697094,1.0943189
-.96821552,1.5048423,2.5797112
-.29137249,1.0006036,.76440082
-1.070837,.71267288,.61794279
-1.4751486,.26759633,.41122307
-.72563611,2.5672455,.0317846
-1.1884258,1.0761028,.49019671
-1.3039449,.11738925,.37375949
-.4430902,.00291969,.46704986
-.46359302,1.2302087,1.4999876
-.81742259,.88970973,.18480348
-1.8511472,.22454696,.426751
-1.2467174,1.7151232,.5899309
-1.1138099,.4869271,.51634339
-1.6176575,1.4748744,2.8380062
-.40545349,1.9146876,.02830466
-.35602561,.22259126,.55008596
-.88753258,.79172779,.50875046
-.97898961,1.9385938,.00217148
-.75473484,.90217569,.46814496
-.84818628,.22483195,1.0222785
-1.5835519,1.2675936,2.2027416
-.83866423,1.3680922,.1383349
-2.1021824,.0272111,.21165468
-.59858301,1.5814523,.69943794
-.38689416,1.973862,.95088144
-.49306955,1.0717426,.65115288
-.97954368,.44297158,1.3281716
-.69707297,.17995111,.34024777
-.57364759,.62427944,.15261971
-.72154078,.32001979,1.3980788
-.89610895,1.3403219,.80109569
-.46855227,1.4199855,.25864218
-1.3320368,.36341365,.34637526
-1.6262976,.0529079,1.5963598
-.4739832,1.4041498,.97847102
-1.3633236,.49140143,1.1980901
-.97018285,.44046848,1.6356821
-.78727751,.87560162,1.6501463
-.52793219,.00790139,.04925299
-.61681267,.02300431,.10094044
-.79583642,.97775766,.00614595
-1.4966644,.39684201,.92378755
-.50993457,.29402225,.83255893
-1.4937792,.34453236,.67700708
-1.2357384,.31950985,.66678407
-1.0471319,1.0837754,1.2453486
-.32835631,1.0466721,.06632876
-.6747582,1.1331206,.29666881
-2.612328,.11505851,.84732799
-1.1739774,.74697196,1.3538474
-.58892334,.90003381,.53618028
-1.8942306,.11243024,1.4244559
-1.9017081,.40569394,.36441939
-1.4021412,.1511631,.36583957
-.65628095,.01353282,.06871886
-.94452586,.44140843,1.3862023
-2.1509001,.11317691,1.8986991
-.37424507,.69827458,.13184962
-.905832,1.9793554,.19360433
-.58730423,.94073624,.73380945
-.54409465,.04247703,.58637723
-.46659869,1.2431432,.65153072
-.53339782,.37149815,1.1820012
-.76744401,.5930494,1.5968421
-.49894764,.73695209,.49986295
-1.2298045,1.464182,2.8546411
-.36177514,2.4455666,1.131382
-.71224156,1.4149677,.12630198
-.84504676,1.8091788,1.5431653
-.74075157,.81097278,.82314301
-.59608041,1.2741827,.77215908
-.49688104,.03362882,1.0969486
-.45069965,.73574519,2.2981596
-.70081553,1.3724244,2.0848919
-1.4380449,.10583943,1.2976993
-.76330909,.76705141,.05607469
-1.166279,.00814619,.47251256
-.64081036,1.3055146,.58155995
-.61192898,2.0057226,1.2626327
-.38946325,.07339392,.83098338
-.40533271,2.6096828,.59172375
-.97401224,1.7951466,1.1277286
-.81018337,.83560941,1.0956466
-1.0579757,.1145715,1.0880635
-.37157242,1.8469109,.12473577
-.55158551,1.0055225,1.8019954
-.8709751,.49158507,.47095198
-.54292225,.47213761,.04072861
-.82165543,1.6001604,.23559357
-.26283969,.09276636,.28300349
-1.4143782,.30936501,2.2027291
-.71116807,.23885308,.82446243
-1.6801788,.48295349,.34554774
-1.1795857,1.503214,.92884264
-.80113208,.79155736,1.4473115
-.88346505,.40678302,.6462539
-1.4989767,.64119641,.42186502
-.33369316,.31514991,.30112315
-.2951056,.99658261,1.0413293
-.71700566,1.4331378,1.0265072
-.78941715,.84761065,1.3777412
-1.3946977,.82946047,.41410941
-.62215202,.26068107,1.4623028
-.66059302,2.497806,.42424382
-.54375668,.86946195,1.5515216
-.94559286,.35787319,.37684385
-1.1946866,.0076111,1.0451901
-1.0309796,.18252081,1.2468424
-.41373097,1.662513,.09659558
-.54927469,.37619236,.62399101
-.6664931,.69304698,2.7766385
-1.8203026,.35970547,1.2231118
-.60413611,.06049444,1.0649328
-.66757837,.17477355,1.0033179
-.60840711,.96103251,.41084776
-.69813807,1.2822596,1.5608283
-.73076608,1.6515383,.18616508
-.65147009,.20348323,.03242864
-1.0321535,.28218991,.75624788
-.64287425,1.7477303,.49711454
-1.1971802,.53659147,.36726421
-1.5362259,.76264939,.17590677
-.82035756,1.1257343,2.1730506
-.97461522,.3145653,1.3972416
-1.1853336,.09153142,.48403952
-.3946104,.90267299,.8029833
-.94158357,1.2035492,1.1136075
-.42700666,.93369586,.85055626
-1.226344,.78661688,.68771475
-1.0250871,1.4515143,.60342116
-.72314684,1.3208742,3.1438388
-1.0712979,1.1617861,.14047571
-2.2662195,.22275039,.41121734
-1.3634019,.51501027,.97491043
-.79895642,.12597093,.39532032
-1.0161778,.23156995,.70845504
-.4855003,1.1712177,.85471291
-1.3547708,.33496371,.81083036
-.65569684,.16549494,.47949263
-1.5434579,.54588554,.02367622
-.50638476,.99258252,.43657021
-1.2581786,.70625783,1.0980204
-.93748255,1.3518644,.79765002
-.53753656,2.0564248,.80148625
-.63313767,.47345859,.14179139
-1.2527113,.84813985,.69989637
-.90505597,.55001506,.54673201
-.50185464,.68267839,.56740738
-.7098842,.35065727,.44388669
-1.4966464,1.3831129,1.0147489
-1.692873,1.2058292,.61165986
-.83121867,.01023779,.90610586
-1.8610189,.66442634,.48139217
-2.2037686,.66658405,1.8485542
-.90710851,.96210498,.80205184
-.59109148,.39950866,.23023398
-.29004763,1.1430691,.02253718
-.2845921,.91515101,.04747073
-1.2060099,.27260856,1.590148
-1.4249714,1.1791012,1.0392792
-.30520902,1.5485261,.35063339
-.79190506,.48691759,1.0429617
-.94573953,1.3074748,1.0100172
-.54018857,.32181081,.0080463
-1.2295285,1.4283493,1.2987085
-.73549057,.85543976,1.154928
-.92487687,.25097597,1.9849671
-.44525823,.21372882,1.3097697
-1.7064484,.72156021,.2803742
-.92836647,1.2656994,1.6161684
-.75680708,1.3633231,1.6865209
-.63579429,.87200973,1.0694736
-1.6901227,.89174807,1.4838333
-.90146286,2.2015375,.30134166
-.56800209,.21414326,1.3229449
-1.5011475,1.8860816,.56093593
-1.0468022,.74262038,1.5970392
-1.085098,1.0042725,.84872034
-.72216018,.4043211,.92075716
-.68034177,.14563673,1.0906452
-1.3339543,.90032569,.93473052
-1.6821751,1.1964202,1.5357165
-.74933943,.32268573,1.5667811
-.77155823,.94878848,1.0269213
-.72125968,.53549275,1.8315648
-1.7085313,.31030967,.74554005
-.64529902,.93348962,.15323146
-.99737116,1.0784516,.48440968
-1.6742074,.1791657,.08417598
-1.3299881,.91721539,1.6634387
-1.115538,.46326598,1.4805332
-.69508082,1.7436354,.09099146
-.64149535,.49474113,.07876614
-.54134951,1.5690052,1.5141873
-.51100513,1.4299772,.64995245
-.50233566,.34927914,.13345541
-.46490736,1.0171482,.04276468
-.54376402,2.0470352,.63528922
-.84729732,.44864576,.10642895
-.33507677,1.4915054,.04568153
-.81751203,.91734589,1.8792938
-.5387949,1.6105599,.66381461
-.46594623,2.2996921,.1681
-.96009995,.57340585,.75373446
-1.9820593,.47007547,2.2621213
-.77649443,.53983144,.77696305
-.83797696,.57672679,.02341118
-.78117607,.8556978,.14456436
-.78637441,1.1780258,1.0464415
-1.7294122,.75217428,.17375891
-1.2970793,.12632885,.67353251
-1.1221893,.41254696,.91070178
-.52513169,1.8100182,1.1469256
-.47215848,1.2596846,.60519572
-.31483754,1.3045834,.29811622
-.92517371,1.51078,.8939391
-1.7562602,.69216817,.3508837
-1.5069645,.01054671,.39763265
-1.8703303,.69247129,.31106733
-1.1076349,.62367284,.5481049
-.79126009,.19251031,.40403044
-.59500887,1.3907846,.09835587
-1.5383781,.09809704,.14217765
-.49067995,.95742144,2.2312466
-.83948389,.26919329,.29138026
-1.6448238,.54630985,.39055208
-1.8386606,.93427532,.55497379
-.56146272,.72047393,.4604568
-.77805326,1.6772329,.10519775
-.4293231,1.8453142,.42101812
-.63788475,.25612441,.92673004
-.69877864,.31487498,.61097761
-1.0097881,1.8128169,1.2804439
-.83295201,1.0672311,.19279095
-1.4459975,.81778135,.25829579
-.60579182,.37962292,.45923057
-.96892229,.38866151,1.3204609
-.76687674,.30200516,.90520888
-.88761188,.32358038,.17352252
-.66281519,.3961194,.22101884
-.48987007,.72097019,.10343307
-.55966921,2.0550804,1.0563144
-.62629644,.42568337,.55120802
-.91044658,1.1609593,.71291362
-1.0090496,1.6622035,2.3498442
-1.6192091,.35071094,.62624021
-1.1771422,.323044,.66993807
-1.2976559,.6197806,1.2533191
-.75012028,.69733022,2.0343625
-.17202137,2.1996763,.45797032
-.71855171,.38275209,.69120028
-1.321747,2.6637385,.53855923
-2.1870852,.5165464,1.2109991
-1.4442881,.22510635,3.1972439
-1.1020248,1.1515684,.43559828
-.56209616,.28266598,.87713165
-.91575573,1.2336268,.52091829
-.34022368,2.1813842,1.1506931
-.88439819,1.5642623,.24992215
-.53348566,.35050121,1.4184018
-2.3636023,1.002569,.79673723
-.67558524,.22824203,1.1985922
-1.2890069,.1937499,1.1668701
-.35303697,.26329148,1.34158
-.89895535,.35087689,1.350633
-1.3052766,.43285384,.16973264
-.84647625,.4823673,.01914587
-1.2926733,.43042449,2.2754214
-1.0711611,1.4872391,1.4305994
-1.7179882,.07367833,1.7477017
-.70547967,.17267015,.25178736
-.62838155,1.5302232,.39913377
-1.1827679,1.0619042,.96493056
-.61951591,.12937762,1.1216429
-.40274006,.32205558,.58367355
-.84789325,1.4098223,.85394177
-.70874727,1.1279738,1.0161514
-.57798397,1.5244173,2.8955914
-.84820378,1.3396698,1.4459026
-2.0780586,.15567099,.53376155
-1.6934113,.54439138,1.0870995
-.3860652,1.1268229,2.0432041
-.52190111,1.422769,.05842026
-1.2607506,.3175874,1.5467882
-.55508803,.62754171,1.4855131
-.30394397,.6682217,.75977524
-.81063273,2.0096679,1.4714372
-.69329942,.73422148,.19928996
-.62248347,.40828891,.30236436
-.62285712,.85495016,.53527418
-.50046005,.57275229,1.0995266
-1.4247081,.07915918,.9386829
-.50569024,1.3171573,.71561184
-1.5342815,.58646112,.18389578
-2.9849744,.22356445,1.8324802
-.59787979,.54169511,.37675027
-.83812763,.18589314,.2457337
-.80363292,.82376951,.75584943
-.89308012,.60525415,.83387387
-.89792559,.62282829,1.5585419
-.90355659,1.8029153,1.0401757
-.71648529,.41080799,2.0728297
-1.6175599,.66171361,.17524702
-1.1514028,.66772345,.45362552
-.95194926,1.4701303,.56866801
-1.0309911,.72134292,.17397337
-1.0088199,.64535498,.59706757
-.88489113,.18228245,.04804188
-.99805753,1.5092573,1.024318
-.4495615,1.6672146,.04513042
-.83934311,.24433471,.50403542
-.775148,1.2027304,.30069859
-.34590216,1.325089,1.4546273
-1.5671814,.20863885,.43268482
-.59487064,.84731523,.72802674
-.51486903,.18909521,.69780784
-1.1486617,2.0541171,.90506031
-1.2326434,.14749881,.51944717
-1.4734592,.22776892,.05427564
-1.3724314,1.485968,.23851212
-.60594591,.30626009,1.100466
-1.0177427,.01089816,.93674677
-1.0748736,1.1291242,.44432236
-2.1763667,.61077242,.75942554
-1.04694,.75274127,.85994457
-.54435055,1.2223312,.0529533
-.68887486,.6437491,1.6163284
-.76398932,.31155926,.24128533
-.55765173,1.0734988,.40305666
-.58151667,1.5416907,.76834457
-3.4961746,.39054279,1.1912151
-1.3601018,.36269086,1.6501228
-1.6331536,.00186102,.85122717
-1.4679129,1.4077664,.3262045
-2.0952237,.01920198,1.4495495
-.76247805,1.8183303,.6653931
-1.0835266,1.2293038,.71635336
-.57098537,.56415535,.39407197
-2.8112962,.03753856,1.9407753
-2.0477855,.83991846,1.2359166
-.73176759,1.2150821,.45303238
-.68959164,.30174528,.38148113
-.29248441,.80835378,1.21478
-.86117805,.38110415,.51911983
-.86864386,1.3335763,.46600466
-1.3066228,.28266722,.3485374
-.59526826,.12075965,.02454444
-.61152913,.0761209,1.1930953
-.39128503,.53529583,.03849507
-.69828672,1.1139744,.22169088
-.45975336,1.03262,.08771847
-1.5195502,.48337838,.58230818
-.83607506,.7449357,.26811286
-.72867635,1.4690286,1.2569657
-.91847726,.87336916,.02640235
-1.4816112,.47941589,2.4146202
-1.2477684,.39808064,1.7998162
-.8233562,.85385395,.1596222
-1.95292,.13489389,1.5353828
-1.060953,.74797227,.0647875
-.71589541,.56792386,1.3232026
-1.6440004,.39128402,2.2509375
-2.2867154,1.2323415,1.3841355
-.51737102,.75932441,2.1336602
-.95311637,1.6600599,.6192644
-.42014166,1.8481411,.71328473
-1.2342352,.31288956,.39077512
-.61281509,.53850376,.42960545
-2.1891015,.86711535,.32143735
-1.3959208,1.4191138,.92111006
-.63980214,1.3216659,.48202458
-1.7707636,.03697202,1.5744275
-1.893032,.79124569,.04137864
-.45308427,1.1731158,.24926409
-1.3510987,.05119289,.66953894
-1.0139791,.35306302,.07324506
-.8321646,.4277198,1.5678828
-.63660657,1.0183155,.15465725
-.64548816,.92834994,.27165415
-1.6289649,.10779583,.21951766
-.80801497,.67414525,1.9012246
-.49495115,.16813406,2.0748611
-.89291097,.0825659,1.8223512
-.64060235,.9288303,2.3457131
-.49232496,.44927256,1.3520756
-1.332715,.24351871,.87846174
-.99593337,.07193834,.34723737
-.4674483,.15786319,.27763463
-1.6186431,.34917346,.60685992
-1.3146198,.60922919,.86110713
-1.5280097,.02211415,.68992194
-.66804532,3.0896606,.15723377
-.67014969,.62375897,1.3810606
-1.453679,.28161699,.15283779
-1.8207323,.95585944,.24761806
-.76063218,.56760622,2.5547504
-.39081419,.53577004,.7145848
-.35075472,.14834085,.20079366
-.47245755,.95128073,.17186846
-.366712,1.1118106,1.0992076
-.79456633,.22833958,.10414097
-.49883188,.48492131,.55309663
-.59287626,4.1494509,.11734863
-.6606289,.40254297,1.6903054
-.65074859,.43241596,.01726744
-1.0454813,1.3518695,1.6197566
-.68487616,.80521136,.40801452
-.66715397,.14125483,1.4962679
-1.1580791,1.4694549,.02984496
-.62469925,2.4056148,.18799914
-.60197574,.19688164,1.5887371
-.7605649,.74465244,.66723991
-.49344508,1.2322221,1.9368042
-.1805198,2.132174,.33150947
-.99137779,.01551643,.72138391
-2.1732025,.37447078,.14438653
-.48580858,.93734053,.26588501
-.59050102,1.5105289,.89769682
-.7336753,.58531934,1.168276
-.93141739,.33119914,.68554489
-.81753209,.85843921,.10462345
-.87156676,1.3384375,.95826278
-.7566716,1.3744495,.16991967
-.77812364,1.5840422,.72108378
-.50013575,1.629951,1.0098988
-.63315966,.44073381,.43679823
-.89411889,1.0614006,.34060754
-.4883398,.9937063,.15411802
-.94102126,1.0811747,.90990322
-.97552361,.03692465,3.4676642
-1.9508697,.79985319,.67452429
-1.1264546,1.0706641,.22986476
-.47395672,.17346224,.42688513
-1.5192556,.30710849,1.5706204
-.93653292,.26082745,1.7172757
-1.0916235,.46681285,2.0528548
-.87679113,1.4525054,.36691208
-1.3359639,1.456739,.75431948
-1.0858734,1.0898177,.60776313
-.72553506,1.0054889,.53681145
-.96407399,.47402052,.24616667
-.81885686,.39104866,.34867988
-.42704708,1.4052958,.06775651
-1.4192091,.29365419,.1539882
-.42187899,.31172884,.57101104
-1.1579757,.87833445,.13992124
-1.0939767,.58227119,.65647482
-.91279955,.30106658,.14967328
-.7077287,1.7656452,1.1598806
-.81003433,.78112551,1.5042536
-.24619674,2.2210687,1.0077879
-.3278779,.36203034,.45516157
-1.7170068,1.0398123,1.1731725
-.70835046,1.0185208,.52277329
-.43968804,1.171675,.34198382
-.73874368,.41355172,.04973661
-.68968169,.44858764,1.1499926
-.34636039,.98835505,1.6654426
-.94398392,.34069307,1.343558
-.89523299,1.4810556,1.2778157
-.34185966,.78116538,1.2519391
-.57266486,1.629792,1.8960846
-1.4967201,1.3749158,1.0111092
-.70662025,2.152434,.08475457
-.67959995,.2726176,.26884675
-.72773484,.33409121,.58614946
-.63928385,1.5297103,.14920366
-.82895706,1.5906739,.11089778
-1.9957515,.24147107,.45267911
-.43233647,1.6026351,1.2466297
-1.4198906,.27957794,.35128615
-.72527949,2.0473212,.80024293
-1.1811841,.49585915,.25914517
-.75212417,1.8650906,.56940619
-.72495158,.35444481,1.1412891
-.5845378,.90411534,.07600784
-1.0625505,.28263853,1.8277002
-1.0503082,.9101302,.13834717
-.51923456,.55030616,.46337641
-.32322788,.72905175,.97994134
-.53126425,2.316039,.32048611
-1.0714283,1.2651087,.20906049
-.8803214,.67154784,.42121141
-.5634775,2.1562737,.01446258
-.75032559,.3585927,.11967334
-.65823206,.35689957,.14887599
-.78947529,1.0980785,1.8506993
-2.0661392,.00347333,.44446598
-1.3366587,.62909163,.53752817
-.57786978,.00006124,1.5164464
-1.8834927,.01392435,.91302971
-2.5353176,.12125181,3.7388521
-1.0137704,.03350611,1.2795924
-.47808728,.68672856,.29224749
-.32258794,.86381095,.14843674
-1.6300281,.05234446,.94496349
-.72056583,.16068029,.67014345
-.60994461,1.2064198,.19965204
-.67047994,1.2994406,2.3641023
-.72929179,1.2741169,.56791503
-.49916738,.23190382,.50402832
-1.147239,.4773831,.42686696
-1.5827858,.7315835,.8120357
-.52729563,.52097411,.96598494
-1.9030736,.51845768,.2682819
-1.2822804,1.5073648,1.9647555
-.34389347,.70633593,1.2498352
-1.6487475,.39309726,.37766939
-1.4695303,1.1838474,1.1465708
-.44666596,1.2523885,1.4717379
-.69084537,.10881886,1.4439069
-.67837363,.2685604,.51174429
-.86391771,.62405791,2.2956359
-.66749263,1.3986903,.8392532
-2.2176533,.84575791,.08513043
-.97627637,.40850759,1.716698
-1.8587587,.32708115,1.4879948
-.73222786,.84797207,.48097789
-.41324724,.48259405,1.2050388
-1.4818187,1.0538896,.68422239
-.74352065,.26190083,1.8807265
-1.9905568,.93154695,1.4422804
-1.166028,.8621426,1.2868026
-1.9330419,.34356749,1.0403084
-2.133562,1.1681518,.24351482
-.46558772,.03004991,.79477302
-.63528306,2.4691763,.24946435
-.77684336,1.1003051,.24198919
-1.3985506,.20748919,.07594403
-.72799763,.19212728,.80410153
-.76297935,2.296282,.96166091
-1.2278514,.13646589,.4346428
-.68595227,.1460991,.44553071
-.4237773,.20244273,1.571961
-1.4140774,.18873605,1.3378497
-1.1850247,1.2584251,1.1948218
-.38226021,1.5887377,.39176179
-1.0886661,1.0782707,.1515784
-1.1668741,1.4932969,1.2897223
-1.5236547,.75877776,1.9242889
-.71911684,.04338027,.34485749
-.8441969,.14616165,.43443694
-1.2431747,.05589997,.42106861
-.77865516,.49705894,.36506043
-.98555189,.0632246,1.1374413
-.7006016,.57177848,.90329372
-.85590196,2.0395046,.38347085
-.45071928,1.8083169,.23475993
-.90545772,1.3850184,.19658915
-1.2920303,.0945257,.92848277
-1.0384056,.32220671,.21719019
-1.1469153,.14145994,1.0539555
-1.4439253,1.127915,.08214001
-2.0966379,.15806396,.30294893
-.88092088,.89472599,1.3914811
-.62291612,.34696242,1.0417238
-1.1298077,1.3211628,.74430708
-.68850146,1.6841386,.34759039
-1.026385,1.3538616,1.5080086
-.72155069,.3070015,.18662991
-.56107711,1.4620629,.1743992
-.47577269,.34420003,.01360533
-.55138449,1.9343525,.83375529
-1.8622484,1.3867754,.28250618
-.5485965,.94521381,.15531043
-1.4384468,1.2605892,.62750457
-.44282923,.9620535,1.0068726
-.4521528,.72281636,.98206693
-2.3960903,.10553254,.17723469
-.49616961,1.3568966,.64241341
-.59565856,.79441734,1.1689427
-.61110534,1.3545408,1.5237309
-1.4081628,.53471861,.06568183
-.50888563,2.5271781,1.210989
-1.031774,.49431391,.52971383
-2.4927828,1.0098248,1.4915236
-.21948614,1.1249445,.7293293
-.98526939,.98231565,1.5530159
-.23985376,.68037138,.40890669
-1.0252412,.33552402,.60929246
-.71057796,.67791158,.57529819
-.87720953,.13281773,.40587277
-.45796697,.63398405,.060066
-1.0049344,.35453333,.36912182
-1.5175608,1.4619657,1.4386946
-.7773288,.2481216,.53788366
-.62353126,1.3274752,1.2200924
-1.3555773,.17593152,.9543626
-1.0471654,.33643649,.22993735
-.61071488,.19071055,.35834882
-.80639051,.52979835,.49419522
-.93536588,1.4088388,.40671021
-.3511766,.92451289,.69147302
-.81781572,.71681353,2.2499729
-1.1603253,.65915493,.9860813
-1.0692094,.65615435,.28878107
-.67811036,.83840542,.24887704
-.59895786,.53029715,.1168628
-.7533907,.54799391,.36752268
-.64829144,.68606552,.78325311
-.524439,.6439376,.96188557
-.98777199,1.7633355,.01586165
-1.6679532,2.1231785,.6541238
-.77094311,.46225711,.26434024
-.77171354,.21390836,.91240146
-1.5615329,.08230899,1.0955077
-.83118328,1.0221301,.30693531
-1.2101106,.99280231,2.3536457
-1.0243941,.85442984,.80002289
-1.234925,.09997335,.07551142
-.92743076,.11472764,.04591595
-1.3352906,.96413804,1.4819697
-.73397262,1.0151427,.64341946
-2.2162118,.83676238,.37827055
-.76630878,.07043391,.64389479
-.80785194,2.2067715,.38465638
-1.8567283,.87920026,1.5871439
-.77193408,1.7485391,.86149422
-.44350304,.56332899,1.810377
-.43766945,2.0993853,.04264104
-2.6867142,.2870147,2.0051544
-2.4102359,.01175369,.00644734
-.70760768,.9938054,.48407774
-1.1159916,1.0917528,.43294204
-.5395669,.71588993,.43499098
-1.3163558,.08715471,.81989086
-1.0823628,.58188923,1.0557277
-.89476305,.75956177,.79608781
-.4899581,.25048642,.4415825
-.57234389,.9999851,.85517867
-1.0041383,1.1968296,.30433838
-.96150969,.62001891,1.0466522
-.30775804,1.6185271,.62666505
-1.0606435,1.4150487,.51829473
-1.5057275,.88318576,1.0065265
-.51444666,.14890238,1.3638894
-.34184539,1.0293743,.05899636
-1.0344991,.18470133,.10188388
-.95134503,.52953994,.52601686
-.56047609,1.5958435,.05735513
-.54369679,.76264594,.74743161
-.73979228,.91435121,.86459663
-.44634576,.33096463,.07840725
-.67256164,.04667405,.49363016
-2.0515823,.26137649,.91275001
-.63080903,.82351942,.8877114
-.82955613,.38837045,.80134507
-.45022419,1.1921343,.74455915
-.87578632,.60680703,.51731941
-.53328688,.71072688,.6423988
-.89004603,.41036142,.30272844
-.60259158,.90549959,1.4650929
-.35532878,1.242213,.17629603
-.68694494,.45224218,.39945125
-1.0729625,.41973961,.54698157
-2.1871175,.20485801,1.4463957
-.81843895,.23038665,.43834462
-.66659896,.26270504,.41397443
-.76961156,1.763859,1.0900707
-.6476236,.17100287,1.7419517
-1.9685395,.20343824,.25861482
-.40107887,2.566999,.78216049
-1.7021401,.0840367,2.8515528
-1.3935053,1.1684531,.13115404
-1.1872489,.65508523,.50535327
-3.1550748,1.2013978,.8199179
-.40884976,.56122017,.91325009
-1.0409332,.05546329,.42977391
-.32359319,1.2866046,.8731601
-2.2143065,1.9005034,.31402875
-.5975009,1.4260741,.39505895
-1.1479373,.23153172,.6792223
-1.7457184,1.3996501,.87028759
-.35255322,.36502446,.78641272
-1.011931,.1517299,1.1391505
-.37829718,.33699482,.58843183
-.65950353,1.901117,1.8604787
-2.2213712,1.9581612,.91560901
-.87173628,1.2771194,.18774768
-.99646877,.64922264,.29796774
-1.0390675,1.5829849,.9437992
-.25023156,.40433881,.60715627
-.43021268,1.9010212,.96761768
-1.3194343,.53664083,.97337973
-2.0677334,.53392375,.22132862
-.82058589,.65411529,.33957133
-.65077505,.66118027,.72201611
-.73394745,.50172465,.22061222
-.80486009,1.2973098,.36592778
-.41846216,.79745564,.38045687
-1.5321275,.83503916,1.199219
-1.8002567,.06224643,.05524702
-2.6606428,.79871165,.23550199
-.43555446,2.5050171,.80656633
-.53862024,.75334345,.75238896
-.95741599,.90268186,2.2473564
-.38554557,.66419,.4156198
-1.1970585,1.896528,2.160683
-.85245294,.67601955,1.2635132
-1.0968129,.84249116,.90709906
-1.1917221,.16211253,.33417756
-.35177705,1.4704289,1.7621317
-.58534811,.04051656,.37768436
-.85199723,1.1069297,.7092074
-1.6483545,.91128026,.02382789
-1.7233094,1.2147229,1.8626775
-.82290495,.49950279,1.3519762
-.59945109,.57330952,.26852843
-.88374479,.45209281,.56319443
-.89301879,.95966419,.3476811
-.50467409,.74895386,.29334352
-1.267682,.86203718,1.591459
-1.1775471,.22212898,.17824318
-.54963533,1.868618,1.5395328
-1.1627498,.96884167,.4810368
-.87798373,.25949373,.75833967
-.22276331,2.0028762,.69063497
-.79811267,1.5514246,.92935298
-1.3542225,.37924657,.55357836
-1.3064044,.12720257,1.3645142
-.68892432,.66982988,1.0068133
-1.2754401,2.6050876,1.6979937
-.60684018,.2128129,.93236567
-.35358327,1.3560866,.84023537
-.98190125,.61897329,3.2317775
-1.8318515,.31578828,.63733173
-.6102019,.60457606,2.0686185
-.49115028,1.040155,1.1340313
-.38318432,1.5807271,.82801216
-1.1152053,2.0882357,2.0255523
-1.4478641,.82715501,1.1825735
-.41900061,1.0063241,1.1263268
-1.4879969,.74285729,.30204631
-.79091666,.98234279,.60961036
-.8199944,.1141751,1.2457266
-.79793752,1.7023133,.84002213
-.60568664,.23417556,.01960776
-.89784194,.62870049,1.3377963
-.4025684,.42070144,.66402941
-.74933363,.81139605,1.174714
-.74879191,1.5895492,.96168649
-.91733391,2.0871372,.28215596
-.36770588,1.6224595,1.2858147
-1.3289014,1.0527232,1.4419602
-.57038167,2.0596029,.22799829
-2.4037855,.13671946,.0143353
-.49002941,.83962387,.91530966
-2.1504835,.47063147,.60236735
-.36152846,.86464381,1.150657
-1.342776,1.6315537,.47565248
-1.1238394,1.3807521,.69177942
-.83276659,.63363426,.91523892
-.73876949,.09484836,.17186587
-.74162983,.85579483,.83933862
-1.0694964,.14954309,1.495666
-1.031868,.60724938,.2187139
-.93446907,.63491507,.62951547
-.60121525,1.6988623,.0680659
-.42769195,.87583944,.37706131
-1.3714509,.29619455,1.027135
-.72759294,1.1568919,.36295301
-1.8232244,1.7743688,.7340745
-.56261185,.71871348,.71457567
-.77192696,.42240641,.64440958
-.65613982,1.0893799,1.1704669
-1.2532624,.15928316,.15637814
-.59780678,.29428338,1.0780932
-.68966905,.87306927,1.2175329
-1.4218345,.45328079,1.2867179
-.48563774,.48998076,.31735386
-.81818441,.27765465,.92272639
-1.7985819,.51053281,.32832047
-1.3044246,.00301696,1.3102807
-1.52717,1.7489348,.24507608
-.59176447,1.5582389,1.467528
-.55856544,.28012919,.03387946
-.40616858,1.2434465,1.2283639
-.50973805,.68239749,.07001709
-.94344253,.09422855,1.5073237
-.85594551,1.0824126,.71143481
-1.8813053,.40349095,.00076101
-.30406555,2.2043059,1.3769167
-.68655186,.15602483,.78275609
-.99600325,.39043163,.82529502
-1.131655,.92056422,1.0037906
-.98230189,.730083,.19840035
-.40105168,1.7275188,.76770835
-1.9925055,.20417242,1.1236828
-3.9487823,.17031599,2.5170356
-.60211351,.36905113,.30674851
-.27953634,.96749332,.34780306
-.45109375,.94318583,.83156323
-.98382934,.21561946,1.0248668
-.61895715,1.7845877,.1014958
-.70321586,.48559418,.05437712
-.37576763,1.3092063,1.0009052
-.87218587,.73008815,.62707558
-.3412386,2.0024505,.06455187
-1.0174112,1.1487906,1.8407112
-.29656505,1.7046633,.06080655
-2.099567,.26623623,.78561109
-.68773763,.67556478,.00846925
-.67303732,.26600109,.92407333
-.37010704,.17024638,1.3998214
-.62400454,.73512881,.79580308
-.78311678,.77339734,1.019958
-.94156636,.15636619,.80100883
-1.4052843,.28601971,2.2480786
-.80106804,.60071081,1.5187141
-3.2094635,.11864579,.49183146
-.70528227,1.1210891,.6206822
-.5656899,.0853096,.79810297
-1.8464543,1.0412936,.5484019
-.45677824,.81194627,.18369638
-1.1660281,.35754683,.60657508
-.94100127,2.1418765,.77509215
-.62008181,.63422693,1.3767919
-.8792246,.95377997,.78114283
-1.0199736,.27366715,.81138722
-1.15083,2.9164968,2.4146145
-.44562764,.12880033,1.7453199
-1.1066829,.18806926,.57038219
-.66997516,1.5266908,.72691967
-.41452911,.51752446,.50423832
-.87599611,1.2841007,.25117859
-1.1161805,.51705538,.61169846
-.72857272,1.5585937,1.7385186
-.51638783,.97349909,.24727832
-.3597163,1.1359234,.83219981
-.55332663,1.2937915,.56071034
-1.6892074,.35317153,1.0261024
-.43652653,1.6738256,.44534849
-.34108134,.82976975,.8082213
-.31499385,.24722122,.7265285
-1.0409273,.52251095,.39807361
-.63737794,.47427225,1.7501134
-.71511348,.10057317,.14295066
-1.7176377,.21869079,.62977869
-.89612655,1.2342886,.67816782
-.4083277,.64254237,.68832052
-.65482241,.44865823,.65611858
-1.2213805,1.0437696,.08334233
-1.7344654,.38106505,.71434586
-1.7404623,.30538825,.64344155
-.64357056,1.7617838,.29248181
-.72799853,.72324381,.4618438
-.68870298,.12578235,.25390817
-1.1898025,1.1556296,1.1503859
-.19485439,1.1385267,.31528415
-.42861736,1.0792657,.62200833
-.50305301,.04482157,1.279447
-.37428119,1.4872596,.10919678
-.39461265,.47220307,2.6748846
-1.5803604,.56924821,.24851566
-.88797406,1.9196056,.19264187
-.37350541,1.2702805,.29409607
-.78297563,.6730679,2.1605412
-1.4535094,.0392464,1.2631023
-.54070778,.71252534,.03190349
-.63780198,.48982193,.3901627
-.39785118,.28269171,.28265708
-.72324397,.23737323,2.3531758
-.63425227,1.7512662,.42519097
-1.4367308,.87290644,.71477161
-.93157825,1.1898624,.0283456
-1.0790722,.46130833,1.6046673
-1.3908426,.36594802,.18324625
-.6774559,2.0456657,.19333799
-1.0467277,.53511085,.94694807
-1.2848728,.83126469,1.3174767
-.45871072,.12754144,.06471055
-.76704234,.48299778,.37737882
-.41791065,2.0723566,.32617273
-.73383692,.68673911,.0959079
-1.0036399,.03511235,.89237278
-1.0022463,.83151513,.4922388
-.76871835,1.8318852,.36908184
-.44470829,.50816184,.66059062
-.55677312,1.8684448,.40972647
-1.4774998,.10067063,.71112942
-.38529211,.72098165,.46418573
-.71349888,.16721224,.42385014
-.78257413,.22075402,.88033218
-.85759175,.88217839,.2688015
-.54319035,1.0197314,.68888811
-.61998329,.99552634,.21579474
-1.2877171,.82322574,.1334078
-.93427681,.04950981,1.1240935
-.81866286,2.0645431,1.5335133
-.98765557,.01907718,.6394695
-.40431758,1.8194135,.29106368
-.50166516,.72634238,.36418858
-1.0739744,.25299679,.10633605
-.59803717,.47059539,.27084545
-.3193459,1.2871708,.19536569
-.65999298,1.8172312,1.4100747
-.56488354,.26417882,.59540884
-.88347083,1.0363119,.14152188
-.61900937,.6747657,.76614826
-1.4171062,.42493726,.89243912
-.40543036,1.7183143,.4403199
-.88581052,1.4229279,.07922596
-.93125781,1.719096,.5265313
-.7822679,1.5148595,.85765241
-.88235919,.31880549,.72239037
-.29886754,.88521207,.40621306
-.87562555,.73467193,1.0972148
-.53125455,.96832993,.87422038
-.65686202,.69889431,1.599758
-.6555532,.44059042,1.020389
-.59376258,.64514758,.63564344
-1.1124123,.12933546,1.1860975
-1.6370469,.41846465,1.2158382
-1.3134654,1.5183669,1.6996631
-.57730418,.83500081,.50248163
-.74052499,2.0238355,.21470469
-1.2047591,.8142618,.96621465
-.54787494,.68313469,1.7507749
-.58170822,.48136743,.0826014
-.80633466,.67715583,.04395539
-.84361403,.12916094,.11699058
-1.0963248,.49538863,.02390392
-1.3757116,.68202427,1.7820873
-.49901266,1.2561467,.623474
-1.1202345,.67799218,1.5110762
-.57968881,.0412838,.85766051
-.53047494,.11668809,.16379696
-1.4094038,.43672776,1.4919757
-2.0174881,2.0149366,.66791722
-.4860579,.9640454,.51853194
-.41383944,1.2314982,.48658183
-.57244867,.79402905,.99834121
-1.1366934,.14530446,.02448609
-.36384219,.58427679,1.4437478
-1.4749195,.76334541,.7681346
-1.9407642,.44764564,2.4435214
-1.845285,.18800248,.70691813
-.33936705,1.6564696,.48195892
-.57096246,.46427068,1.8171318
-2.5481977,.28793657,.18632963
-.90206467,.42772804,.68881421
-.97255187,.46364037,1.1417196
-.5528657,.58184854,1.702856
-.79836446,.13704105,1.4751349
-.32138374,.84352527,.83893106
-.91719331,1.0425478,1.2283653
-1.5522605,.23998997,1.0794323
-.65345196,1.3573301,.55345159
-.25911886,.52902638,.59622775
-1.1988775,1.2690592,1.0660839
-1.9069733,.73961815,1.4031271
-.51885571,.29316255,.95845261
-.98063883,2.0838591,.33255898
-.76641408,1.845881,.04293692
-.71426175,.2488911,1.0538783
-.745625,.80818305,1.1502794
-1.9664922,1.2591623,1.2933399
-2.0664423,.18986134,.68240394
-1.2067399,.75990409,1.9638759
-.91490146,.97185003,.32171231
-.54031688,.06391923,1.0294785
-1.2784021,.15940159,2.5339582
-.35252447,.73309695,.05272984
-.3495274,1.8795889,.84199755
-1.0412644,1.6030538,.21034207
-1.6614266,.20078693,.59614303
-1.1189933,2.354827,.37856331
-.53583202,1.3099148,.26393667
-1.0896859,.42140854,.7286331
-1.0683453,.88322674,.55447957
-2.2870458,.13056607,2.1529464
-.85814907,.48866977,.63128093
-.2959182,1.1598586,2.3839394
-.4608716,.95950294,.93351186
-.70722908,1.1395654,1.4882446
-.92401229,.10044197,1.682903
-.54080029,2.0071354,1.0381114
-.92467557,1.1544468,1.1214408
-.50309289,1.1222556,.30508034
-.92275573,.22757536,.47168423
-1.058096,1.2816022,1.0261598
-.66441371,1.1162602,1.2545663
-1.6359538,.86847799,.26327483
-1.4047181,.13784168,.44017002
-1.3867963,.55085157,.56153175
-1.7625205,.25006051,.23692598
-.68139243,1.8610375,1.0383195
-1.2457247,.1852824,1.5217693
-.41552737,.44734927,.5928543
-.88224158,.59035546,1.6712479
-.31266825,.77996489,1.624085
-.78584031,.29451844,.15716236
-.56583407,.15462426,.0408452
-.47352005,2.0568463,1.0990468
-1.0023245,.1188393,.29365796
-.59987119,.17745536,.7483279
-1.4041746,.2818232,.10229992
-.66694824,.82314626,.43884987
-.34276679,1.2485424,.03222105
-.50849015,.36009,1.0204627
-.95780583,.29773834,.42199879
-1.9781055,.69984505,.30672021
-.7078102,.0948919,.72775618
-1.2830902,.04835945,.52611437
-.30266993,1.2319891,.04768086
-1.3658256,.55600873,.96585451
-.55233192,1.8264275,1.0358439
-1.2279379,.10825665,.12214418
-.97025033,1.1242498,.62014527
-1.2920684,.42763523,.59364328
-.53136461,1.1754662,.71256314
-1.4571547,.5550211,2.1093393
-1.0392132,.48850604,1.3599819
-.96625305,.1085932,.04946048
-1.0375095,.03066367,.41373296
-.75632941,.08367933,2.4343497
-1.0073592,1.5130108,1.5173153
-1.1641083,.06331489,1.0523239
-.81032563,.01237446,.85356277
-1.4140399,1.3075908,.59949045
-.49019399,.1126783,.85339631
-1.0319226,1.1924448,2.3547758
-1.3638862,.77660813,.54753543
-2.6206226,.0556123,1.6855314
-.79664527,.67206945,.46233784
-.91644913,.40988731,2.0552357
-1.1368527,.8357686,.03305028
-.91078961,.12405718,.81449698
-1.2903848,.29168649,.13592297
-2.1777383,.2274177,.33797868
-.48846232,1.1729828,.34624795
-.6990559,1.4810987,.00599616
-1.3213214,.08300458,.56264163
-.38764606,.039476,.19758665
-.87637242,1.710778,1.2247864
-1.0056431,1.2755336,.98608044
-.36305478,.73723249,.07214843
-1.1734251,.72991638,1.237867
-.37901383,1.3582445,1.1447357
-.60563149,.89816046,.79477645
-1.065772,2.1653039,1.0486871
-.69172116,1.324682,.46604217
-1.201167,1.5554428,.14457063
-.84382073,.21947993,1.0544119
-.28346358,1.9252723,1.3776275
-1.3146442,.10920777,1.5736402
-.84212848,.7785259,.91423292
-.92543155,.63178082,.26483645
-1.7586257,.5552665,.78151461
-1.3730175,.04217641,1.8260368
-1.8382729,.80109468,.72318675
-.39119282,2.7853339,.22604808
-.65838972,2.3866301,1.1138947
-.6346702,.7756207,1.7489441
-.87351863,.74337752,.3781408
-1.2718459,.94214008,.56149304
-.97688466,1.5809952,.45672864
-.26399979,2.2847961,2.1897283
-.81417472,1.6082445,.55223054
-.82659105,.10755564,.4687716
-1.0468008,1.450995,.78152179
-.99157255,1.1204179,1.4558384
-.33067571,1.6110775,1.1061995
-.76197712,.02810894,.10276848
-.3754378,1.2982509,.1335997
-.43615149,.56112154,.26346348
-1.1514528,.16792314,1.1530113
-1.0691108,.74087927,.73186903
-1.0673424,.88307512,.09042487
-1.1923262,.19232613,.61797465
-.82718771,.02016715,.92374887
-1.3491313,1.3297119,.78522403
-2.2059081,.07413535,1.1108567
-.84461173,.25077849,1.4113791
-.60667198,1.3752051,.45953904
-.62814323,.5519119,1.4819636
-.71037435,1.4965342,.87595873
-1.582828,1.5305677,.06092637
-.54342041,.25002825,.66265497
-.82911009,.93939523,1.0730251
-.95681538,.30423116,.24762323
-.39514832,.17963638,.1318746
-.62634998,.59943837,.52313702
-.59012189,.73105069,.95706283
-.44786634,1.4011621,.49593052
-.5809049,1.1727238,.13523013
-.49681071,.05501089,.74372137
-.73079557,.79444667,2.1428094
-.52276551,.0147381,.29319631
-.49365206,1.499228,1.9426543
-.85532389,.00130521,.91016309
-1.0169415,.20452823,.25360035
-1.0861218,1.5797085,.62623268
-.50541588,1.0285649,.70080142
-.56892536,.92373875,.37276728
-1.0361092,1.440664,.11947407
-1.2988301,.40307952,.08788489
-1.0882596,1.6008634,.4327278
-.57390111,.14284075,.01198651
-1.5836116,.05909476,2.46105
-.576742,.09260495,.42957313
-1.8040115,1.5326873,.06448772
-.88369737,.41327335,.13812723
-.91006727,.87007405,.16811374
-1.1301755,.06223908,1.119797
-1.6464297,.15879908,.45815364
-.28457094,1.1819262,.6459483
-.58147291,.28273275,.51117416
-1.0172363,.02154501,.88391576
-.50214317,.4316008,.00099794
-.75192039,.31113041,1.0305258
-.959246,.37632558,.58412708
-.47702076,.59413186,.7304123
-.34884249,2.3758278,.61827579
-1.9792506,.55767654,1.511709
-.44145588,.57525725,.81501913
-1.0906868,.93554441,.01635919
-1.0446717,.79829841,1.0371143
-.57550543,1.5795586,.04548866
-1.7557353,1.0970454,.27693794
-.75477739,.29296709,.79210464
-.89051934,.07012988,1.6872779
-.5443755,2.5497794,.86603258
-1.5189359,.90641042,1.6781485
-.50129434,.05550634,1.7639105
-.51046784,.59526583,.48205407
-1.5328363,.1569162,.11268312
-.53943806,.21716616,.18516682
-.37685338,.4245329,.13651443
-.5758154,1.4949212,.72610005
-.55946922,.03501244,.1159969
-.45106454,1.3803073,1.275674
-.57623384,.09346612,.21764439
-1.3813421,1.5820462,1.601123
-.71246651,1.4568015,.25979218
-.71684574,.36767363,.21653671
-1.2507128,.12550744,1.7896044
-.63265869,.44499951,.0368387
-1.4027972,.38275016,1.4035667
-.51395029,.09727438,1.2057079
-1.2273895,.25751749,.52565376
-.42437971,.25268536,.07212152
-3.3706361,.71530259,1.6169232
-.40883846,.32031333,.91366276
-.49147056,.9847926,.79668165
-.7077288,1.1353233,.27970508
-.70428154,1.9445682,.23017872
-1.2582847,.57931931,1.6345085
-1.304015,.33889474,.0587618
-.63930526,2.0031273,1.2184543
-.59058104,2.1692573,.0526779
-.68166816,.18243927,.19109432
-.56396851,.57300533,.25440853
-.97573968,1.2631326,.50515579
-1.7377629,.78453437,1.048208
-2.2272355,.22092447,.6197963
-1.2974182,1.0575545,.67733498
-.8927474,.97194042,1.6976897
-1.7745011,.48908502,.0693782
-2.053185,.32964169,1.5505138
-1.4715501,.09000777,1.7411573
-2.6065664,.06153549,2.5981025
-.42894124,.90507448,1.9407336
-.86524813,.42430143,.75438687
-1.3670435,.26703731,1.4572756
-.62424934,1.2943167,1.1107937
-.8903861,1.7449893,.84278128
-.60061025,1.2245964,.66944579
-1.1321869,.81763631,.8426488
-1.0300847,1.1771673,.19189402
-.63025919,.68890786,.13719868
-2.5535819,.37204929,.42058156
-.48928969,2.4354819,1.8284429
-.68952514,1.6723081,.06284019
-1.1595976,1.5607558,1.1818198
-.89355436,1.7596228,.73914936
-.83607978,.89005879,.51274414
-.52601805,.52540454,.30357707
-1.3431758,.22667367,.25686457
-.34588438,1.0137621,1.1662453
-1.3410071,.55379243,.05014309
-.40804827,.56629412,.60076118
-.75323342,1.8688775,1.0880387
-.46160897,.30788848,.52326275
-1.10397,.8172133,.54997169
-.75032525,.56014282,1.101294
-.63426965,.51138008,1.4166297
-.70594074,1.1457407,.84329886
-.71984147,1.5112067,.87931305
-.86373546,.26742992,.07152611
-.81014829,1.6324874,1.4348112
-1.0835306,.44707789,2.2032515
-.75890294,.61465726,.09902048
-1.087857,.94955482,1.2030534
-.42739287,.04251507,.17079537
-.79101933,1.1049964,1.6517398
-.69061136,1.3202765,.3987273
-1.1184162,1.2751501,1.7977691
-.48046798,.87375023,.56017036
-.38207214,.66677565,1.221868
-1.007228,.64493384,.45925381
-.55804746,.67282289,.08954716
-.43093515,2.3054773,.77313886
-1.1320544,.33312144,1.2692771
-.89533834,.37337798,1.3147905
-1.2848079,.92774587,.47566772
-.66435217,.25313016,.58251473
-.38561387,.92024627,2.5096483
-.45899049,.28173816,.6883375
-2.0361814,.24123565,2.255068
-1.5368191,.14258259,.88427305
-1.474393,1.1728147,.35652675
-.98287963,.25968524,1.3770389
-.68442421,.36317477,.84125204
-.50985925,.16860558,.24221257
-.88413737,.55012035,2.2759596
-.35342762,3.0022152,2.0417021
-1.1816146,.33703981,.50716317
-.94224741,1.9354289,.2035143
-.65105747,.1822826,1.5406068
-.73614406,1.3311724,.43285556
-.76621157,.23308418,.46086243
-.22386006,1.3267483,.54288916
-1.5021323,.29336773,.06769733
-.7234625,.08751568,.88423143
-.98897067,.58058954,.18123966
-.60716241,1.220261,.10920042
-.73890009,.45033229,.52430549
-.56032983,.22360977,.32458022
-1.1156581,.13851721,1.0400132
-.94293876,.31668534,.47652591
-.55291449,1.226791,.18285591
-.96985929,.7632397,1.8726235
-.50377008,.24768195,.43715796
-.49801683,.84055257,1.1636586
-1.4836014,.44992394,.05084087
-1.7959398,.87427108,.76028873
-2.8116755,.13007961,1.2300906
-.92070486,.28100724,.69412848
-.75132763,1.6745439,1.8858938
-.57158772,.61002466,.48435573
-.64597415,1.1804648,.03305067
-1.0632675,1.5148268,.76944417
-.39819953,.28186793,.29725835
-1.8040953,.28960387,.95307818
-.76708132,.39806929,1.1741463
-.95109338,.68420095,.04182906
-.94470433,1.161524,.07547799
-.61426813,1.8739572,.50603481
-.62307306,.48461581,.62992071
-.51843628,.97369357,.57511703
-.61521374,.65296529,1.0402199
-.68543407,.30028412,.67198265
-1.3870078,.95302276,1.4096224
-1.8220928,.11334181,.99271902
-.32417824,1.2620236,1.249087
-.78333581,.42263339,.67343092
-.3294099,.60767419,.71720433
-1.3457958,.91626035,.07627471
-.99605956,.83270035,1.0472131
-1.2710996,.54214941,.30387806
-2.1304626,1.4737437,1.8356285
-.42024781,.67225695,.9258389
-2.7736086,.45374611,.36272004
-.82656801,.35860192,.8633007
-.7919344,.76850648,.04392013
-1.4998562,.72393681,.01520049
-.5419134,1.4906995,.83824219
-.71741601,.76537186,.87691839
-1.6545715,.64172456,.11626334
-.85649571,.98134331,.86373654
-1.921063,.49734899,1.8490488
-.45108953,.04027736,.55926085
-.70238636,.29396149,.69717358
-.27534245,1.8133395,1.2602939
-1.2857576,1.5967807,.18634327
-.31222316,2.0182426,.41717096
-.98390317,1.124212,.29851234
-.70718331,.05285827,.3876808
-2.4432306,.88906718,.4983109
-.78982383,.57830236,.94024489
-2.5439947,.21993663,.86037239
-1.2031107,.77677713,.60188414
-.28322466,.72096394,1.2914541
-2.184696,.26172898,.56302573
-.98242285,1.0669575,1.1971599
-.79636359,.96210393,.72655479
-1.0189845,.24653034,.47413102
-.6887319,.09120711,.4069959
-.91365224,1.483647,1.0886118
-.71861683,.43450833,1.7897019
-1.1115189,.35727163,1.437573
-.79482116,2.1299245,1.8659762
-1.079646,.05344968,.08790166
-.83965778,.71770596,.72497149
-.53369363,.9360111,.33685652
-.75036214,1.1948985,.70342291
-.82327094,1.5987974,1.7176659
-1.6445671,.28038616,.54874397
-1.183866,1.5754477,.83386358
-.95374915,.21473912,1.7867403
-.99352486,.96278027,.62324653
-.62389505,2.0142652,.66849127
-1.5903447,1.5978777,1.180342
-.80746377,.72250525,.03149864
-.53615505,.35741483,.48469898
-2.9460115,1.2491448,2.3619801
-1.3615822,.90575215,.10969373
-.65677631,1.598192,.08391988
-.73044861,2.074488,1.6235118
-.81872009,1.0483287,1.0286877
-1.4274233,.5995414,1.6630422
-.60814725,1.1351781,.26117719
-.38831173,.85866133,.5076884
-.40202244,1.3348321,1.4663566
-.41853664,.93305884,.70255817
-.81786904,.50044015,.90637504
-.88067628,1.9888465,1.2341502
-.97992319,.91997906,.63094817
-.56977992,.86323727,.92453321
-1.0683404,1.2838572,.9655004
-1.5534323,.71629507,2.6998987
-.64496712,.57153547,1.0449211
-1.0707815,.60073568,.34977453
-.53520871,1.2508475,.14068386
-.31781615,1.0329266,.02874874
-2.0644844,.55335338,.29669887
-.7956131,.21052032,1.0500635
-1.1165325,1.0483615,.71533523
-1.4821175,.60007618,.64805036
-.42749923,1.0045743,.06797304
-.66659313,.54503784,2.1158756
-1.0800773,.29682325,.43291572
-2.0465517,.39896326,.96834151
-.48200397,1.3954888,1.7365116
-.5449676,.80393512,.47079979
-.96881541,.28892968,.48299213
-.39433329,1.6586628,1.0256705
-.3189166,.63824963,.26759151
-1.6054892,.34655548,1.2133882
-.82923733,.49179438,.8350322
-.62658731,.87147688,.41805835
-.63488112,.80183348,.68794465
-.91115453,.92546989,.48564645
-.57916647,1.2736757,.29442121
-1.2770621,1.0309571,.9374258
-.70100828,1.7987944,1.0399594
-1.1243007,1.0154632,1.051891
-1.9731627,1.8055605,.47375682
-.45915145,.71243391,.6408544
-.88921393,.72010267,.99453158
-.67662287,.39010382,.01217366
-.59103598,.49535286,.91063729
-.36053773,.55675639,1.7947881
-.48438342,.92754556,.45469485
-1.7575011,1.2991946,.25017364
-1.8533969,1.5776038,1.5689702
-.51545758,.69495509,.45203036
-.52608282,.36123898,.07945695
-.93275186,1.4047427,1.0286544
-.77380317,.47379886,2.6229045
-.516193,1.4466363,1.1974135
-.94352467,2.5566899,.41192465
-1.1808276,.94748514,.06695664
-.99548902,.02019769,1.2429049
-.40110998,1.5003954,1.8028935
-.90528805,.62108315,.55047735
-1.0290432,.87770343,.02291273
-.37900663,.41804501,.15201033
-.87991858,1.0786858,2.0528412
-.98027204,.22562658,.54326625
-.55784764,.25594318,.02444893
-.57208824,2.7745417,.72602446
-.45421174,2.4191017,.83384052
-.68156162,.11861565,.99986894
-.52728565,.37181589,1.1298286
-.86936593,1.1940568,1.0193906
-.5587176,.18740793,.97354603
-1.2125275,.13037293,.12949626
-.64553937,.65272144,1.3374063
-1.2327116,.446829,1.1003614
-1.3363242,1.6931524,1.9297922
-.29965812,2.8720089,1.100303
-.40316746,.29399836,.49644744
-2.9089638,.75214777,.91412768
-.80115854,.21830246,.28606422
-1.1845208,.40700522,.73120696
-1.0411074,.68059614,1.692789
-.97113639,.10743922,.83974606
-.7218936,.97145677,.51053052
-.4532843,.32862109,.88607524
-.84990436,.24777675,.68798938
-.75753506,.04893793,.34126497
-.5682636,.8632103,.36219194
-.46669139,1.5387083,1.0274235
-2.5220781,.52220699,1.2354143
-1.460348,.31652128,1.8477767
-.36733144,.53033398,.00537356
-.67022784,.63289201,.26234946
-.85942886,.23321995,.20081661
-.81191019,.12998132,.96645222
-.29334584,.91707894,.04384294
-.77315726,.3185105,.29666518
-.51415721,1.5762345,1.6190233
-1.343318,2.6798111,.64268503
-1.5088576,.11158908,.34016004
-.65421279,.33785176,1.0178245
-2.5732806,.20020692,.11079067
-1.2671569,.18081391,.48271943
-.35233975,1.5596307,.56159715
-.86045711,.59993869,.08814893
-.76499847,.06598557,.88815444
-1.0276731,.43961952,.93557697
-.5606942,1.2079946,.2131611
-.434345,1.6671376,.66452286
-.36841483,.54991188,.34886446
-1.9790323,.7590713,1.5948618
-.99263331,2.2041536,.4442665
-.83543335,.54887372,.21034461
-.81031082,.61552447,.1677088
-1.8611765,1.0762093,1.6639013
-.98140878,1.2012975,1.4534461
-1.6507424,.7892825,.59237956
-.86610194,.49187757,.0131424
-.75269544,.19900375,1.0085707
-.89839142,.35895369,.80704147
-.79264958,.79054406,.37189428
-.81034222,.57577243,1.2118112
-.4418511,.18656451,.18262831
-1.6442339,1.8439109,1.9461314
-1.0505877,.1156707,.16096433
-.85794853,.71071521,.19940059
-.91160194,.1282971,.98504332
-.76910247,.3157645,.45560763
-1.35945,.53422307,.52940855
-.53837061,.16669305,1.6609492
-.49301366,.61249367,.37415392
-1.0368232,.01381875,1.141641
-.72094179,1.4804274,.36723558
-.53326996,.17303914,1.3557818
-.49542635,1.5631729,1.6032247
-1.1089525,1.6980193,.75088641
-1.8316753,.04645468,.34233689
-1.0454007,.23305526,1.9398331
-.68480322,.6115119,.4203949
-.61432033,1.0167531,.76140844
-.42025899,1.1402026,.61476977
-.98465344,.32926825,1.7286948
-2.0025349,.7870923,.21488353
-1.0938791,.37582045,.20798634
-.86620984,.53663075,.44837302
-1.2853157,.63839553,.63911233
-1.1714325,3.1828122,.54130096
-.39245354,.49868331,.87298655
-.71686338,.14240288,.4461955
-.46034836,1.3006408,.60361294
-.78509819,.5663309,1.0267118
-.67841681,.06562691,.06491693
-2.225359,.15988042,.42506806
-.45871212,.06709143,.9388224
-.6427446,.72893791,.23888645
-.87470557,.90419444,.06611811
-.58889672,.08343203,.12400773
-1.5639653,.19833157,.09019969
-.55067446,.89658432,1.0095488
-1.5234345,.67698403,.51981415
-.89800814,.8673559,.06336596
-.6186514,.54408366,.88005522
-1.1324949,.15010469,.14303226
-2.5467199,.18684918,.27136326
-.99552735,2.0346479,.3443633
-.54964415,2.209168,1.9691509
-1.3302966,.64276507,.37086058
-.72891921,1.1331964,.71188997
-.67186175,.57079445,.808507
-1.5601813,.75526474,.79951933
-.52860328,2.2304037,.08628313
-.93358157,.95323878,.42544061
-1.1054027,.76603766,.63502534
-2.0806098,.64117204,1.8010209
-.67712685,.62246247,2.3469963
-.67762241,.99786142,.32916826
-.68682496,.7005754,1.7224138
-.55902745,1.0139306,.45130134
-.97015138,.81661212,.91668893
-.59483512,1.249026,.98521702
-.85206451,.51495804,.12248633
-.46000263,.7882856,1.5087763
-.69900396,2.4359719,.89392821
-.81768311,.05295102,.42850947
-1.9773047,.37131782,1.4137061
-.70208758,.54777353,.07058266
-.53537735,.46206921,.17363935
-.99968426,.12067868,.61244904
-.51498649,2.6546828,.30536969
-.63949572,1.2842358,.64243391
-.68938088,.69122851,2.3700564
-1.495745,.33513504,.30588222
-1.1908422,.74810615,1.06967
-.85899964,1.9055721,.18304237
-1.4299093,.77558868,.12212982
-.93077663,.27558673,.2159817
-.32641798,.8242972,.67574112
-1.2718143,1.0420975,.33265932
-.75532885,1.1483804,1.6185673
-2.2940178,1.0621303,.85002525
-.78633985,.58842239,.38500375
-.66323677,.67594015,1.8604099
-.85543574,.12637622,.27847495
-1.4105513,.02960514,1.5950941
-.50257691,.76609473,.5302211
-1.2457472,.13949019,.62331033
-.87727041,1.5868345,.08812576
-1.1773896,.19640615,.68115844
-1.2850259,.83710275,.62204882
-1.2811391,.26683095,1.4653347
-1.9171977,.11432956,1.371465
-.86352491,.6681308,.37925296
-1.1325548,.66849968,.63896307
-.85218223,.16806379,.99531568
-.59883971,1.3311972,1.3708935
-.20865568,1.3468521,.26561302
-1.9325844,.10021121,.30507479
-.67054648,.60615436,1.7650389
-.65033756,1.0312473,.50225087
-.74573065,1.616657,1.305647
-1.2190857,.33092904,.2363711
-.68373636,.95045102,.02034308
-.90101919,.7215412,2.2447426
-1.551085,.41291269,.41707569
-.72344897,1.5179976,.07213553
-1.8054063,.63558859,.81584789
-.92779131,.45692088,.00490989
-.52153789,1.1276999,.34006993
-.46603782,.40046945,1.5362545
-.38143307,1.9528254,.24919505
-1.2770395,1.8131271,.75924804
-.86705207,1.0299191,.53892393
-1.6653325,.28882923,.65023317
-1.1576304,.61958274,.40186969
-1.6244236,1.2786171,.05799821
-.43187031,.60013831,1.8562952
-.79058316,.004982,.18087673
-.65503043,.91879276,1.6495569
-1.4996204,1.0705176,.9799086
-.40351956,.50278302,1.723463
-1.0151284,.92165899,.89525086
-.73725513,.15265573,.32460672
-1.1172611,.12742536,.61992489
-.9265818,1.2868354,1.7970629
-2.3595982,.23873993,.64658924
-1.1250998,.12805185,2.4037186
-.60074711,.61654484,1.4902171
-1.1734092,.10161922,.27947522
-2.3374146,1.6379073,.62617522
-.63711352,.53863422,.27774309
-.62116113,.4455201,.17195581
-.45739679,.54990169,.61240181
-.6384417,.33995248,.73854666
-1.1186341,.77177517,.46932066
-.65544062,.15341348,1.7284019
-.43718437,.51374023,.74777312
-.82874477,.37484982,.44268314
-.19207988,.49388289,1.7800488
-.60097172,.35005776,.33385451
-.84948343,.54267949,1.1283531
-.69962199,.6077271,.23664038
-.32682311,1.2071026,.27738686
-.53556713,1.2448638,1.1602998
-1.176895,3.3227667,.48960095
-.68806363,.08180514,1.0815731
-1.6344175,.00918171,.62316401
-2.2817318,.71241237,.9845723
-.73065812,.25793034,.84703056
-1.1895054,.76124302,1.7611014
-.80925227,1.850282,.12890267
-1.1531163,1.0320809,.92572422
-.80552771,1.5549351,.29500543
-.312058,1.3034168,.67454877
-1.0089354,.21145717,.58752136
-.88776025,1.345223,.1440899
-1.202749,.1688953,.65381568
-.64063865,.25252668,1.1122229
-1.2777083,1.2561101,.96236532
-.26818945,.42782559,.23955527
-.58684585,.88719847,.00665889
-.48921985,1.2134959,1.0259753
-1.6998455,.64579388,.39762939
-.65591466,.34297671,.23551733
-.68718646,2.1793387,.1335016
-2.2874579,.82705953,.84650053
-1.5165692,.13736335,.59743878
-.52743622,.46748233,.85707173
-1.1955572,.78372675,1.8496937
-1.1121824,.44335872,.40031095
-.71991824,.92620059,.14040101
-2.2260789,.52088294,1.6851521
-.6784984,.26602865,.24190048
-.56651476,.1724855,1.1947693
-.29824369,2.0813895,1.2017027
-1.2961339,.75875134,.02449637
-.64506605,1.5720721,.9369608
-2.0691472,1.8228278,.89313013
-.75839255,.65125668,.64246491
-1.5552082,.86355707,2.2211513
-.49100076,1.3924389,.1182661
-2.1978845,.7909552,.36095583
-.53285477,2.2750944,1.191433
-.54801411,1.564132,.79950007
-.39451305,.44429952,.21483353
-.30168773,2.2433998,2.4274467
-.24164109,.57838499,.14971497
-.72334478,1.4959275,.59459086
-2.1466599,1.0742765,1.3099609
-.48138532,3.2336577,1.0866456
-1.3957164,.01162968,1.4214264
-.50351964,.82255756,1.3566534
-.65330376,2.2759965,.16406209
-1.1445623,.32657192,.73623814
-.32886276,2.1813133,1.6656051
-2.0050269,.20548118,1.0136616
-.60805845,1.573584,.32203061
-2.9067075,.0679384,.15696885
-1.032433,.29181014,.3179578
-1.4620317,.41010473,.10291105
-1.2657448,1.2535376,1.3825685
-.97514043,.29952225,.7841907
-1.2315803,1.3074001,.06696728
-.53060129,1.3232514,1.7931214
-1.4959286,.25778389,.31076575
-.49785276,.17450935,.12609145
-.7566351,1.2533337,.658595
-1.5046216,.7953195,.78907451
-.69617176,.6581717,1.4481152
-1.866587,.37806551,.38020627
-.70448102,.92645566,1.0707052
-1.3134866,.27842488,.93839767
-.80236597,1.7164837,.71578827
-1.0426784,1.5228946,1.7651326
-1.9184071,.94636885,.3274162
-.46965155,.54651623,.18811571
-1.1205732,1.695837,.7613242
-2.395802,.23347365,1.3893491
-.37232942,.92065108,1.4226031
-.73438218,.47187595,1.1460196
-1.0859447,.46026078,.09436076
-.68115011,1.6627619,.8974104
-.82348737,1.3811734,.82646595
-.26624957,1.0681138,.76456888
-.60009635,.67337063,.19067298
-.91763981,.87552263,.60822014
-.98553991,.18749033,.22014804
-.58014533,.80630346,2.0733992
-1.2707977,.39907554,1.365907
-.72392948,.27304917,1.1791418
-1.5631177,.71072169,.02614843
-.59409654,1.4849126,.82232827
-.38609158,.37093485,1.7456074
-.49260306,.30184307,.1454539
-1.076223,.18701561,.84723645
-.5756002,.50607303,.45296966
-.31440227,1.6348389,.77208605
-2.4052555,.47927957,.09316545
-.56661119,1.6652072,.11661896
-1.4036513,.80689389,.20562454
-.6044527,.5907506,2.1322984
-.80777379,.54309754,.20928524
-.70828767,.49045624,.19313368
-.79681078,.03082282,.23075301
-.88323252,1.2496947,.4778509
-1.1740127,.06650652,1.2193178
-.606928,.86163618,1.5105514
-1.1537488,.14500734,.98468603
-.57864831,.61669003,.27660344
-.95367608,1.4365585,2.2741432
-1.8789284,1.214139,.8384333
-4.0629569,.58732367,.90689441
-.88564362,.34450271,.64167332
-.71006414,1.7630727,.16283938
-.89512261,2.082847,.02843222
-1.3745913,.56427863,1.7058214
-.75698002,1.2026674,.50492546
-1.3827877,.12261,.65962453
-.68951748,.91335246,2.9934958
-.55242007,1.6782441,1.0139728
-.68532059,.76569436,1.9947336
-.66770663,.84366439,.82451925
-1.0336625,1.6735441,.83991362
-.59833586,.81450437,.02771747
-1.5312513,.11025665,1.3597597
-2.28544,.14276974,.43461939
-.82440848,.25392828,1.6450405
-.64890504,1.4047078,1.0739051
-1.4173602,1.1145188,.35061567
-.72044526,1.2290823,.8332443
-1.1112488,1.6812895,.27223289
-.54264886,.3033626,.8595157
-.61258347,.60107814,1.5288864
-.38635989,.51834304,.04647753
-.94460873,1.4771725,.14303071
-.82802639,.97826531,.82307715
-2.7151024,.2034325,2.2499815
-1.3827723,.87810785,.69178646
-2.9160892,.29219745,.97775425
-.83610342,1.4417035,.29956096
-.59002239,1.6813049,.21387344
-1.2687143,1.0177733,1.0298337
-.84394585,.90907829,.36864278
-1.6526476,.78304346,.55945004
-.78728106,.85094723,.31103702
-1.2634621,.53245761,.92604474
-1.0362452,.86131037,2.16362
-.87473932,.24161848,.13477465
-.4322059,.85938762,.12236469
-.77714774,.16348342,.12492878
-.6591063,1.1025802,.79122712
-.75264904,.47382879,.32525931
-.94644631,.00332262,.41107217
-1.5479141,.92341016,1.1179277
-1.573565,.81571409,.14164873
-.90613588,.76187738,1.5590174
-.43065389,1.4492331,.32574527
-.7012341,1.1859591,1.8233899
-1.5660229,.34646827,.56239592
-1.1529417,1.4685309,1.4210761
-.26295841,.16806002,.38358431
-1.1030746,1.5793698,.62152607
-.70983796,1.4529437,.42189729
-1.0391512,2.157849,.31378752
-.41975913,.29967369,1.37154
-1.7443665,2.0203596,.08103331
-.4940619,.65742789,.18708558
-.70961997,2.129687,.90455044
-.2369576,.40648197,.48482908
-.67906938,1.6976669,.62732029
-.98218241,.614621,1.6988752
-.96140732,.97664411,.43213407
-.39233423,.53551612,.29090743
-.45423696,1.316551,.06968595
-1.4532461,1.5173695,.38525589
-1.0637427,2.8328355,.01789198
-.57655249,.19522701,.16735978
-1.4106369,.09978327,.35317149
-1.3737213,1.8299447,1.3661001
-2.6711183,.3512074,.4197959
-.97235373,3.148859,.68239125
-1.244935,.45893933,1.1240971
-.63486054,.29492543,.3083778
-.79258746,.18650863,.08740898
-1.0157312,.19022383,1.9918227
-1.5343191,.29155517,.41151152
-1.025592,.35961201,.31537952
-1.1684532,.40806893,.75198636
-.76105916,.26801706,.10289547
-.74075875,.34720006,.2432103
-1.2942345,.13014721,.35951778
-1.3056702,.43621673,.21109035
-1.7767621,.29765103,1.4830197
-.87962082,.6078662,.41980361
-1.0295016,1.5615928,.48314406
-.33957855,.64419875,.12276936
-.63106731,1.0680407,.84385319
-.78161831,.59479035,.22753922
-1.0509929,.10549661,.1313548
-.94346145,.82976731,.75846254
-.775147,.1932759,.58377119
-1.1256444,.13155106,.47401225
-.68966716,1.3765245,2.0264176
-1.2641472,.36845662,.16932286
-.56198031,2.569495,.22742437
-.68739935,1.0054963,.48769799
-.80252528,.33820865,.00558465
-.4323586,1.5212569,1.3857745
-.51509618,1.2501939,.07683628
-.94346309,.25537485,2.472656
-.53521969,1.7531788,.78458049
-.52082378,.93228005,.03611288
-.71304294,.35006448,.17290241
-1.5424031,.39285354,1.6754149
-.34566337,.63140731,.72281482
-1.132237,.26580242,1.0194689
-.99794405,.8671809,2.0902577
-.66915506,.77405847,1.3091522
-.60938431,.03644586,.32766565
-.89436896,1.4724719,.04605924
-.52419165,1.0080321,1.9616802
-.49467508,1.2333601,.47188904
-.83991089,.51076555,.70977516
-1.3767067,.84683389,.66627155
-.99897023,.80049841,.93240896
-.66233908,.9485818,.50501453
-1.8426445,.30833392,.96198567
-.60905203,1.5349116,1.1632868
-.28270345,1.7139024,.8653856
-.910349,.28292207,1.3945727
-.76620156,.03887566,.83155371
-.95756199,.56060224,1.2537317
-1.1842398,1.2784964,1.7075356
-.85985115,1.0656567,.24970163
-.88179984,.76920482,.53603169
-.56382635,.52647476,.4158639
-.63704743,1.8186095,.15145471
-1.7132317,1.1974637,2.0221085
-.87056191,.75390137,1.3158464
-1.2026521,.13246197,1.820903
-.47268779,.34277523,1.0682332
-1.0153925,1.7077313,.98809796
-1.2979014,.26121525,1.0751264
-2.8518685,.47190394,2.3172395
-.68003257,1.5109288,.90974581
-1.3537931,.42613126,2.2128337
-1.1342791,.32608438,.19022563
-.5672836,.60267206,.54683726
-1.1003768,.67406828,.81682871
-1.8498284,.12747214,.44120627
-.75970559,.674505,.58055125
-.53126965,.72405178,.47190279
-.48504962,.39714806,.43374208
-.68164672,.28670436,.2498745
-.8470106,1.1408553,1.1794657
-1.3882321,1.1156142,.25793576
-.33687902,1.4210923,1.6408517
-.64415291,.56027039,.90989503
-.50303176,1.2039412,.22655204
-1.052083,.62803669,.77619332
-.58600189,.11267041,.70695945
-.7637117,.17030897,.78862517
-.89366198,.25678366,.77154435
-.78424195,.30269172,.79864573
-.58436049,1.0225665,1.0310853
-1.5921978,1.8355506,.80192233
-.80347914,.9756956,1.4058465
-.63394262,1.1442282,.63298222
-.4519256,.61501915,.96899042
-.70694115,.75969006,.35122375
-.21455507,1.9279052,.52735915
-1.418932,.82390047,1.5453705
-.50558634,.04661053,.3061204
-1.1195476,.73448297,.25302501
-.52887096,1.0404738,.64272427
-.80551104,1.8774913,1.4904541
-1.3668807,.02036904,.42408015
-1.6177965,.86314473,.10328043
-.90296033,.50990139,2.0040967
-.88492115,1.174669,1.2274341
-.87712748,.03810415,2.8634717
-.63717701,.14328253,.45566542
-.5653738,1.6616952,.11887876
-.60135506,1.3261662,.21178304
-1.4609752,.32578661,.90210081
-1.3773375,1.8084901,.10922559
-.99547381,.40640257,.49740995
-.91139382,1.2232329,.60366701
-1.6274484,.12631329,1.6628101
-1.1766731,.41451549,.49749438
-2.3099494,.03896919,.35523247
-2.6995081,.4357574,1.0652327
-2.3209407,.30177774,.47675242
-.72144341,1.3635386,1.3902269
-1.1542823,.46235746,1.0797604
-1.0944289,1.0029786,.84364072
-.80056048,1.7706292,1.0294366
-1.3721104,.35539197,.40512907
-1.0990021,.42624025,.06768244
-1.2355492,.67167466,.17413572
-.86493889,1.1637688,.58763463
-.45280729,1.2728459,2.4269231
-.55389859,1.7376832,.10281309
-.96667033,.44627829,1.2695047
-.61715163,1.2984481,1.5861107
-.61039434,.46947988,1.819251
-.21334308,.32904265,1.1590462
-1.8167862,.45236111,.29363669
-1.1275714,.99691414,2.4620596
-.95995158,.20401661,.81026527
-1.7271887,.22498043,.49138461
-.5697459,.69808194,.22837669
-.69472122,.5159994,.03843385
-2.5008729,.90782526,.61336564
-.51693371,.46449333,.08358606
-1.8201157,.77273949,3.3014626
-1.4637708,.18941622,.54165787
-1.694011,1.2084369,.75147246
-.33479616,1.8571362,.71695271
-1.1703379,.60793555,.06790378
-.66850886,.48927949,.05539428
-1.2854579,1.4625626,2.8303086
-.83900546,.43882102,.54485278
-1.0673463,.44586261,.59759042
-.38675684,1.601288,.24141112
-.45354016,.1698127,1.8630783
-.36220752,1.0337187,2.9389991
-.65174529,.38867664,.30860174
-.59348272,.41289577,1.1265716
-1.0684223,.0876304,.96474254
-.51152121,.46135927,.43650549
-.99672878,1.6891933,.72421228
-.8033996,1.4235482,.44583791
-1.0036662,.27668993,1.1863698
-.62253647,.84422053,.35403868
-1.0176347,.10564683,.81093684
-1.3061016,.36066517,1.0767003
-1.1380706,.39678991,.0658234
-.44774432,.62922854,.9980822
-.37974434,.58460078,.08776581
-.62824338,2.5077995,.55271595
-.46954577,.26269939,.2400223
-.70890066,.1836649,1.303102
-1.1548211,.15194742,1.2683167
-.59375215,.44526601,.50668958
-2.3615171,.09491867,.11471864
-.49468805,.49754715,1.1620099
-.51728635,.49508086,.17464982
-.80538472,.0270599,.05255551
-.73854889,.632773,.28183662
-.67547476,.02965404,1.1486718
-.63862797,.84125777,.61204485
-1.6228728,.31313608,1.6734006
-1.2992767,.14818571,1.5298641
-.58923358,1.4317775,.19210998
-.7415323,1.5005156,.78058781
-1.0836658,.70729889,.19062821
-.2812049,1.2437254,.46210723
-.75677214,.76846317,.67658372
-2.4423283,.11393099,1.6017115
-.83638367,1.0262468,1.8705154
-1.2656575,.65659622,.14217709
-.73399843,.45104752,.64336563
-1.1145715,.26988825,.36672098
-1.4227656,.31434908,.53885299
-.65496958,.99101842,.89446828
-1.2843996,.54715491,1.082802
-.46389891,1.4110836,.56853986
-1.3613109,.62189415,.29900478
-.65985633,1.3766859,.20332301
-.51988591,.07634666,.47228428
-1.9348729,.0006284,.21201953
-.30694964,1.3170177,.81630182
-1.4879715,.66930905,.83101178
-1.5516883,2.3244088,.14515883
-1.1752212,.96566622,1.5488705
-1.1434342,.10449424,.14346972
-.52665484,.60103468,1.289782
-1.5484582,.28886487,.31824142
-1.627579,.57545771,1.7281604
-.76779442,.8331616,.92350893
-.93167454,.73184631,.66489212
-.92406766,.6912142,.7368336
-1.0023242,.28909158,.71102562
-1.079046,.58941164,.9340024
-.62105937,.47422028,.58945443
-.9965843,.41435158,.12725563
-.72335998,.16920474,.67797795
-1.0124541,.11475609,.58626883
-.83786096,.58481536,1.8933475
-.96289208,.83677385,.67828495
-1.2471321,.09510108,.81502882
-.94416336,.13942561,1.5424414
-1.8668774,.26790572,1.2616743
-.60104529,2.7170669,.41505968
-.58063738,.93583486,.21324908
-.70070414,.33862164,.56083171
-.45694509,.40944025,.37538508
-.57353705,.68858023,.22691908
-1.0250306,.70518698,.93086475
-.72784744,1.2101291,.02406186
-.9376688,.29265232,.10290646
-1.0308232,.27709118,.12243752
-.53324753,1.8051397,.08529712
-.64231614,.44850204,1.0576026
-.7363299,.03116176,1.4659916
-1.6431337,1.1261632,2.4186886
-1.0078178,.26286703,.07334587
-1.4311691,1.014552,.54818257
-1.1307471,.76675611,.49684559
-1.6331264,1.0506272,1.0380674
-.65245499,.65516797,.58798391
-.58010597,1.5241662,.48146682
-.90287983,.58492194,.00093196
-1.4945286,.06120294,.26013876
-1.2140932,.9709087,.41161582
-1.2232582,.91420629,.68804288
-1.4647666,.08377346,.20485418
-.70308689,.3809623,.51841997
-1.1101694,.30559046,.82146926
-.85084523,.34689949,.72580893
-.63861245,.63310211,.0572841
-.32329646,.94010499,1.1213051
-1.0320979,.63432866,1.7631134
-.81193092,.02919458,.4187553
-.64302929,1.7153392,.38185071
-.90757643,.56567291,2.0771475
-1.3047023,2.6164774,.5710374
-.98755531,1.6335353,.09066412
-.53004953,1.0210117,1.1742756
-.3533842,.51203423,.25063937
-2.8708816,.32696526,.31849501
-.6474287,.02567053,.67580967
-1.4758816,.63961247,.59113695
-1.188339,.07254446,2.2127358
-2.1393302,.18937005,.08704343
-.49104125,.298937,.21356356
-1.8170768,.2063982,1.4634242
-.80632747,.54183801,.24999816
-.87771234,1.8544583,.77537835
-.42803098,2.717514,.5584106
-1.0782359,.09562903,2.1876322
-1.076131,2.1051595,1.7753388
-.95156066,1.2200714,1.5819505
-.8443667,.22085222,.66139644
-.77670312,2.0920167,.10549796
-.57079001,1.1844775,1.8666862
-.80646496,1.9347701,.40048676
-.87459354,.84172872,1.8174795
-1.0685919,1.4761156,.51501031
-1.0399709,.09809884,.22938266
-.70861386,.89712552,.6114924
-.41177254,1.3707346,1.0600305
-.69420198,.68588841,.42571569
-.25017774,1.4965281,.61905325
-.86611378,.85733822,1.0612408
-1.0109269,1.7630278,1.3544298
-1.6413894,2.0582118,1.4206175
-1.008524,.11449639,1.0025337
-1.19358,.61632444,1.6660992
-2.207323,.32575814,1.4862254
-1.3083144,.0218083,.25885949
-.84028264,.73260321,.14135466
-1.9906681,.23098097,.09499807
-.67294991,.79001443,.06663948
-.90432981,.12178395,.33652505
-1.0772835,.46350142,.47598333
-.96209037,.43493944,.89439671
-.81239604,1.4974419,1.0818464
-.67267368,1.4168365,.32863514
-.34185151,.81612753,1.5659774
-.89701638,.64237863,1.1270285
-.44691346,1.0275005,.26109248
-1.0828848,.14291088,.83740072
-.82853897,.56472965,.79116661
-1.1063066,.94053938,.45369344
-.54250562,1.3227136,.31427209
-1.1615492,.70560324,1.1368401
-1.2034276,.62666169,.81381078
-.57215345,1.2539701,.5338944
-1.8461105,.35752764,.72351755
-.71527742,2.6247858,1.5046078
-.84721901,1.2743654,.08252761
-1.6619257,1.3031654,.15811648
-.47192301,1.8810465,.12396007
-.2566828,1.3689046,.0012861
-.75990834,1.0967559,.74991905
-1.0416572,.05534795,.86314374
-2.1079233,.24574708,.25084338
-.61763906,1.0537696,.22939691
-.86219141,.77555021,1.6373817
-1.1260653,.00862485,.02254158
-.67911114,1.2364123,.33488209
-.45255695,.221422,1.4414034
-.60029223,.85604934,.85833272
-.3610577,.6586306,.26958125
-1.45046,.35551948,.55143861
-.59529241,1.736243,.00066267
-.98103515,.75568103,.50557787
-.86079165,.51251188,.49665666
-.5970946,.38452809,.85491453
-.28537543,.21197397,.56343113
-.56814372,.53216841,.06877552
-1.3974991,.37988288,1.3338408
-.56001436,1.9724713,.17340716
-1.3079678,.29982196,.1146371
-.59130013,.49514531,.81533908
-.95592619,.67134306,.91753341
-1.1274753,.78161067,.04513379
-1.0665947,.57316609,1.2281656
-2.9211074,.11958639,1.6348684
-.78974941,1.3639519,.5166523
-.66707306,.19573817,.61240557
-1.6963949,1.5882397,2.2766401
-.64863823,.77982751,.00524581
-1.45018,.41999688,.65797997
-.7341409,.90408625,.59328478
-1.4094057,.99758345,1.480014
-1.8818646,.37274731,.20453348
-.71211174,.96502803,.60063229
-.58143141,1.4229301,1.2307308
-.72903925,.1958996,1.7745536
-.76491182,1.6517333,.84989124
-.51863894,.71903263,.27024628
-.92904339,.24858288,1.5091532
-.62371593,.67007846,.19675642
-1.8921706,.78794478,1.5048432
-1.2023837,1.7175331,.12882541
-1.3336665,.66584495,1.5233064
-.54402809,.96521884,1.0098553
-.40409922,.72894665,1.0651483
-.85492429,.52034475,1.623513
-.92953942,1.4621394,1.7645394
-1.4997323,.19602982,1.166385
-1.4015286,.99779176,.87332368
-.74690248,.29343417,.45580151
-.70843062,1.2730429,.5319026
-.33787195,1.8407728,1.8198604
-1.2695403,.79097611,.89856343
-.85621486,.87410163,1.2202585
-1.31333,.61352532,1.0787987
-.41667826,1.5744298,2.0369486
-1.1281897,1.4081831,.56422018
-.58263663,1.1211508,.19754563
-2.5605187,.00701612,.1003685
-.82899539,1.4249838,1.2625092
-.60127219,.68654913,.15642332
-1.2936353,.35686978,.48601785
-1.5752524,.7206398,2.2044305
-.78845437,.71791807,.66892487
-.78055351,.66415604,1.4036753
-.96971724,.83080172,.5558375
-.68687145,1.0539066,.39485909
-1.3592137,.5575199,.72486637
-1.2419162,.0184474,.47891492
-1.2121232,.98762144,.88562408
-.42281335,1.310898,.87126205
-.39508363,.46634919,1.1354365
-.52321533,.95846213,1.4798919
-.42551237,1.4184881,2.1612287
-.47097579,2.1639775,.58433731
-1.951521,.24714652,.48596177
-.78735924,.74867383,.48464651
-.96395941,.6842208,2.096698
-.93176606,1.5772658,.16213401
-1.7045778,.45844827,1.1495771
-.3061159,1.7262838,.53745235
-1.221738,.51482063,.48671965
-.59580177,2.4483995,.50936586
-.77980344,.76560273,.93120296
-.63182934,.51427897,.41901708
-2.2995508,.05253583,2.6158726
-.6053609,2.2977727,.20050072
-.55005491,.02913454,.35027128
-1.79225,.28637278,.31190607
-1.069638,1.9304529,.20558155
-.8815719,.69643336,.91262649
-.75954792,.67527384,1.4621693
-1.2514374,1.4348843,.21246584
-3.9367899,.87441362,.44756494
-.211719,.51032238,.08884389
-1.4101003,.41582612,1.2674645
-.72069152,.57833302,.18064456
-1.5367677,1.5573656,.41416848
-.47104765,.73974419,.94392313
-1.4987468,.39032121,.02298889
-1.2314538,.96760001,.59353817
-.86445623,1.2386796,.67043392
-.8599801,1.5143736,1.1452364
-.34724689,1.9737596,.15355313
-.38104488,.6976273,.41355846
-.69110839,1.4140497,1.2602666
-.89121673,.90959807,.14095713
-.61260529,.1940004,1.0143909
-.84237553,.00432488,1.0497946
-.53288641,.25323323,.48416447
-.83503756,1.198834,1.421741
-.8153351,1.215659,.43953008
-1.4027966,.50480973,1.037173
-.49776777,1.9586672,2.3312824
-.75247677,1.2519652,1.0887985
-.65242614,.92564179,.54619896
-1.1778643,.11870339,1.4574711
-1.2238977,.66361556,1.5064766
-.63087335,1.4078999,.25333668
-.63496022,1.8905412,1.0260102
-.67830435,.49617914,.54096746
-1.5466905,1.6615686,.31611176
-.99401237,.51995851,.8155686
-1.5337015,.69591597,.34136097
-.3224026,.57040352,1.1223569
-1.3578283,1.6203079,.22007578
-.73292803,1.4913522,.60616817
-1.1910825,1.2286367,.37003181
-.5712908,1.2771475,1.3811968
-.78870773,1.0176044,.14595107
-1.6438337,1.0269793,.5687319
-1.9164542,.63415096,1.4328159
-.57281675,1.1938387,.09316812
-1.1816731,1.4456642,.47364531
-1.2315577,.5335499,1.5713031
-1.8034864,.15363984,.09170845
-1.0383953,.31090193,1.1657006
-.85960605,.28156875,.16420803
-1.1352181,.04442058,1.0616103
-.57999415,.62070434,.37983587
-.75384267,.13660453,1.3750155
-.97692512,.47829137,.64062832
-.41275676,.83767437,.64581101
-1.7976612,.66501029,1.0458949
-.69362094,.19503799,.55741811
-.58934058,.06744331,.01496132
-1.0671868,.80631991,.12296536
-1.3038482,.37082556,1.0828354
-.64196212,.42371217,.23068004
-.51961642,2.1377702,.12581222
-.2039104,1.0475906,.82352728
-.51097697,.99244465,.21832784
-.79878317,1.5744447,.36966269
-.96019973,1.0122115,1.6448203
-1.1239147,.03436582,.93655556
-1.1037251,.22601704,.20456568
-.4584703,2.0970793,.66944989
-.68693739,1.8920726,1.3065799
-.52300283,.531875,.62559647
-1.2645829,.17004495,1.2809841
-.91975585,1.9609543,1.6753246
-.89731839,.61881731,.7447973
-.93672808,1.8883576,1.6317033
-.91536071,.25944436,.31890759
-1.619524,.16926847,1.2563647
-1.1387743,.16808367,.12821388
-1.9590183,1.5348865,.31848428
-.67516063,.57638978,.0527485
-.28457188,1.056732,.09248539
-1.7344659,.36570214,1.8481598
-2.4643173,.41280776,.90024422
-.57738,1.7363737,.4838897
-1.1960477,.77213093,1.2620033
-2.1458138,1.1850132,1.2210415
-.46212814,1.0562359,.57660371
-.6727371,.95882254,2.612541
-1.9221188,.22699867,.50624933
-1.7773594,1.3721233,.67383997
-1.2155257,1.1275755,.27572471
-.52806559,.000316,.12213649
-.58980614,.03428233,.60401444
-1.6687987,.46494053,.39905415
-.68612429,.60609065,1.9037429
-1.0580754,.18522415,.80205598
-.91124416,.57485174,1.2541113
-.60805752,1.1815131,1.1758583
-.56145314,1.0879822,.38172552
-.23389344,.23001418,.00743249
-1.2160819,.2854182,.25358099
-1.282807,.15621996,1.111578
-.98063419,.17289914,.52920468
-1.2479574,.99601502,.06460268
-.46900349,1.6203878,.16579688
-1.0507117,.19008939,.44795373
-.77115587,.96315605,1.1257284
-.56622327,.78068332,.61690625
-.79852902,1.2848047,.52191731
-.82604021,.39053369,.34492431
-.44466691,1.3899671,.69824707
-.6648594,1.5777018,.37945761
-.98752233,.23989463,1.4791496
-.72111971,.70569176,.3666662
-.77470779,.58946874,1.1569176
-.73921224,.28394744,.62128359
-1.0018712,.92042938,1.8216469
-.87711753,.63814745,1.041015
-.91001066,.3056013,1.0833135
-.59137442,.58909842,.24185951
-.62087802,.26261277,1.8071662
-1.2952932,.31862141,.87387264
-.81833817,.93585364,.40064798
-.49948275,.84035214,.35140615
-1.1613789,1.0084652,.57591528
-1.1356878,.72429475,.22833581
-.80581011,1.6597023,1.0940065
-.3126256,.20265627,.29684312
-1.0393393,.11205438,.58316987
-.73908487,.23548874,.9645012
-.62388679,.41749362,.26287695
-1.6478922,1.4113174,.38250312
-.64899414,.54166055,.3475209
-.81786044,.74014313,.01924885
-.71003028,.69110508,.65088755
-.25644642,.40824993,.75732869
-.46366418,2.1396611,.19124508
-1.0168374,.19363975,1.0307555
-.34105952,1.0276888,.22030641
-1.1252895,1.2179976,.56019493
-.396859,2.3266075,.64956023
-2.1070023,.05068393,.95541941
-.68858715,.26178763,.30014372
-1.4949011,.54168536,.63388591
-1.1515183,.36288487,.14213279
-.31997758,2.4041145,1.1080466
-.46278498,.53824394,.29177655
-.74901169,.23246888,.1966816
-.55654494,.53811448,.59687625
-.67269989,.41898086,.89646479
-.49561864,.75308858,1.259312
-.33073978,2.3105209,1.011736
-.7019585,.27847196,1.5378628
-.63131283,.3285222,.40851379
-.71856094,.84869086,1.5412943
-.55521274,2.0609061,.78908502
-.75973185,1.7350883,.07889182
-.58288818,1.0464571,.10851275
-.49226638,1.2397448,.65403544
-.86353737,.47915239,.31502651
-.33416234,.41900766,.63540615
-.71257588,.14874774,.17660843
-.45148613,1.5603327,1.5947532
-.67200077,2.1594598,1.1037974
-.55932196,2.2231633,.6949712
-.63131672,.9120876,.29154395
-.91172423,.58480306,.64189901
-.72929304,.46636076,.33991066
-1.3337019,.5310136,.83924332
-.56774041,.03426249,.09957781
-1.4741662,.04091742,.26971903
-.77604332,.91506086,.24996322
-.50601165,.62197838,1.1172312
-.29204815,2.6167276,.55330645
-.51830361,.10425449,.3872918
-1.1497427,.96630248,.21090619
-.78561333,1.3065424,1.2677326
-.80465138,.69199452,.64012454
-.68589844,.11545591,1.1480302
-1.4611733,1.77258,.12378346
-1.1757714,1.4114205,1.2173476
-1.4090959,.57392708,3.1390553
-1.0366758,1.5894321,.55406559
-1.015102,.04314143,.85752552
-.59850135,.95636657,.20249914
-1.5244646,.20438352,1.7571695
-1.1181625,.68214021,1.612448
-.39189316,2.2319968,1.1313526
-1.2981328,1.1741009,1.2211871
-.86393007,.22721213,.96094988
-.8595857,.28267266,1.2009944
-.63822406,.41215422,.34435866
-.82400922,.36914797,.15035265
-.56654041,1.4973275,.19139001
-.85446225,1.3026638,.45894496
-.82098717,.42047436,1.8030017
-.68534764,.36149766,.99234533
-.6485685,.37648226,.53494144
-1.0896674,.19382768,.42623811
-.76936945,.72496156,.80792751
-1.2312967,1.8614049,.23359686
-.56901264,.15802707,.37104734
-1.0946502,.58125277,.06467885
-.86074153,.15729104,.14713746
-1.5219042,.06688718,1.9860704
-.72426085,.57890629,1.0516613
-1.7945178,.52965239,.25597486
-.89677789,.94418441,.07405474
-.67465328,.41723573,1.1999351
-1.4804108,.21357871,2.1344939
-1.8028154,.09195302,.43733112
-.36100122,.59048921,.73435344
-.82008147,1.7071543,1.2033015
-.70228,1.6206088,.24366695
-1.0166692,1.6956841,2.793467
-.34278213,.44344656,.23871417
-.41477053,1.7584001,.17257406
-2.1281769,1.5772045,.77956224
-.88255689,1.7336467,1.9575493
-1.2607291,.49540788,1.385409
-.86558384,.42841245,1.3408205
-.55296179,.63127563,.12445594
-.34405573,1.6372843,.60125994
-.84489155,.33608641,1.2161689
-.81637028,.7352798,1.3798525
-.79007822,1.4873062,1.0025675
-.39405873,.62059124,.40481461
-.96203334,.17829738,.31774992
-.61895136,1.7081805,.31776789
-.99659835,.30829482,.23006173
-.48590586,.98163109,.52344659
-1.2156605,.29352715,.05571565
-1.1987855,.30266128,.49983157
-.89090707,2.6710425,1.2589849
-.78986038,1.2247027,3.501305
-.50266707,1.0095153,1.2128329
-1.0351276,.11484139,.55694663
-.6579876,1.3798303,.63850298
-.66847618,1.6144452,.01182304
-.9569592,.88334014,2.2183717
-.57932266,.22673638,1.2688294
-1.1032976,.77167817,.0377215
-.78851948,2.0819616,.9336587
-.66885699,.51503731,.80367533
-.97604515,.80790899,2.5563828
-1.0305669,.63897502,.64383228
-1.1163488,.32623155,1.2061795
-1.2545465,.12641611,.13407417
-.67239666,.99069911,1.63808
-1.8848284,.18271378,1.0930993
-.74374297,1.901273,.36764489
-.34411696,1.384496,.75665558
-.76981803,1.4207342,.72802979
-1.7431321,.61230195,.16054822
-.9712808,1.3522269,.38288187
-1.0361019,.12028376,1.3241499
-.59804742,.38951147,1.0317362
-.64314593,.84200703,1.1373098
-.60393532,.66442432,.32023697
-1.1107835,.27272552,.57607334
-1.3059166,.94117079,.62711496
-.87522741,.6380991,1.4884052
-.79702617,.27996263,.53241618
-.24332283,1.1691115,.39436121
-1.7258052,.25768964,.35121562
-1.1131605,.07119268,.59297037
-1.1305583,.38798438,.22781775
-1.757869,.27019914,.13448807
-1.9043441,.17986089,1.3062067
-.92475209,1.3352544,1.5189181
-1.132885,2.9406618,.50000428
-.74400038,.69752724,.39040557
-2.0545792,.35014688,.66169693
-.60004367,.23091323,.56919104
-.43610343,.51074048,.70615506
-.50239867,.13374199,1.3024927
-.90777575,1.0774005,.13516922
-.90609611,1.1062866,.96273943
-.6613964,1.5843048,.18156739
-.52982715,.07460898,.12655671
-.42121906,1.8499202,.45942425
-.43475867,.84722726,.74116861
-2.0661627,1.9389317,.51531494
-.55067604,.3163674,.32190663
-.63436371,.75343708,1.3924828
-.25661292,1.4527872,.50472634
-1.0761924,.60876924,2.5118682
-1.6077498,.64933841,.19769397
-.72656381,1.6430675,.91830437
-.43786444,.42745187,1.6104958
-.75815068,1.7144402,.19679024
-1.0417276,.43823522,.24695154
-.50312256,1.1246282,.55989382
-.48535759,.17079719,1.393463
-.84624127,.28591281,.15284464
-.91980985,.4698842,.50887824
-1.3738475,.77396408,.39491769
-.49152389,.80948962,.12487485
-.85942225,.03171735,1.1700357
-1.1087333,.01437154,.84575348
-1.0612518,.81220461,2.5381512
-1.1587764,1.2159486,.49182024
-1.0583854,.31395397,1.4089129
-1.7364896,.8402639,.57671546
-.85381549,1.4582301,.23065255
-.85239726,.64438862,.11942231
-.69163489,1.8693019,1.4018679
-.42813657,.84800571,.51435586
-.64529592,.7556119,.22754097
-.7724272,.75750159,.79880536
-1.3159422,.78935762,.22069638
-1.4247487,1.2147832,2.0618801
-.37255597,2.6953806,.94500464
-1.0269804,.11196792,.57454407
-1.0685575,.62002596,1.8239117
-.6963247,1.0266518,.04294118
-.75877051,.87932256,.57920017
-.47016339,1.3444634,.02154567
-1.0433367,.36913636,2.1783587
-.93909831,.47939786,.01880368
-1.2731438,.93711982,1.0860763
-.65853693,.67111141,.48477038
-.43213513,1.3031011,1.0459331
-1.0554395,.49083318,1.2190599
-.42374179,.18321522,.25692415
-1.4178222,.23082363,.37549655
-1.6718964,.22889499,.58343343
-1.0351964,1.0598722,.61837736
-.55189041,1.1462839,1.7056125
-.7897839,1.3631954,.60391583
-1.3315034,.08434729,.62455121
-.96355984,1.1129326,.52933334
-.84733348,.22092674,.7030581
-3.940675,.24841353,.726574
-.69300777,.28976262,2.0420919
-.6920546,.10655147,1.1408026
-.54973821,1.4149727,.66393296
-.96969023,1.0743945,2.5424236
-.77415025,.40885485,2.1721024
-1.0002074,.25374066,.92153167
-1.1242167,.14189999,.94996864
-.68030745,.58753817,.99322082
-1.0702377,1.1563455,1.4898189
-.52356304,.24216915,.32007143
-.73291627,.60505904,.98739711
-.9845341,.68362292,1.4986217
-.43315851,1.5271104,.14243872
-.59797265,1.5183168,2.0238399
-.6080639,.64967146,.01644356
-.89114013,.43644748,.63897752
-.49511832,.50561625,1.1586803
-.40824051,1.043562,.09962417
-.91151613,.32614307,.03643809
-.59927797,.02547064,.09286301
-1.1905214,.3478192,.08168206
-.70213932,.38254805,.2340721
-.78319793,.33607489,.62400611
-1.3526115,.37862237,.2495702
-1.0009587,.40600261,1.7001796
-.75509664,1.138346,.38649631
-.43556963,1.0733533,.11406692
-2.2026947,.12033764,.64663688
-.90523248,.10122571,.44406381
-.52723443,.98605861,.51934542
-.18470539,2.8728683,.28148394
-.69968101,1.1939552,1.4020706
-.78619277,.26942372,1.4109062
-1.0189009,1.7372565,.8086125
-.72446224,.30859276,.18259258
-.81331245,.28955094,.79468135
-.39150266,1.7790749,.23353346
-1.5407503,.62491416,.57134139
-.67587033,.67045816,.3163746
-.97174581,.27555917,1.056593
-.65580357,.06983326,.4298223
-.57982163,.54198504,.8553047
-1.1558443,.14336275,1.489307
-.33889704,.03058265,.46623352
-.85031853,.9872702,.34394217
-.31013908,1.2831545,1.0807464
-1.0549256,.34466386,.1732432
-.70824458,.21522959,1.4939575
-1.173071,.0718568,1.4154588
-1.6650833,1.0715202,1.1836686
-.38216205,.53657135,.58442076
-.39455108,.23838319,1.4057375
-1.4062246,.33942849,1.4297713
-1.8123666,.53396539,1.9106627
-.97388142,1.027487,.0479915
-1.0563731,.27083187,.29648318
-1.1183947,.23361831,.26045733
-.33850559,.49775532,.02157393
-.65375638,1.5500035,.5067051
-.4532881,.51695978,.05032442
-.65994993,.74943241,.74461359
-.50206157,.92473071,.45773041
-1.0992675,.8579895,.56130789
-.64873058,.15779212,.21638336
-.98093833,1.0691062,1.3059204
-.41381208,.87247229,2.2379534
-.49036869,.45271404,.04923774
-1.1937057,.11658574,1.5967387
-.49391258,1.1819823,.24614012
-1.0480673,.24215239,1.9802068
-1.2620462,1.0418425,1.3795234
-.4148692,.41317357,.4062949
-.43645647,1.4744755,.24025016
-1.0627619,.27186952,2.2325796
-.85428549,.8724717,1.247116
-1.0360025,.3651035,.43781115
-2.48411,.04395127,1.4248165
-1.0340586,.62808452,.86707355
-1.2950018,.91610843,.66176703
-.92985532,.66995887,.10709273
-.66379246,.66243209,1.2738145
-.74876822,1.1398032,.23537077
-.53289666,.65316598,.64426175
-.51212349,1.1114388,1.1330826
-1.185999,.57988244,.07865084
-1.2988064,.21247836,.50906183
-1.510594,.09001699,1.9754561
-1.3768017,.54535449,.06425628
-.60867865,.44011231,.084356
-1.0406038,1.4994762,1.2848567
-.87264521,.96196352,.97943995
-.54420552,.98804717,.60889367
-.71503159,.29455396,.58213231
-.68245392,.24899576,1.4289536
-.66356122,1.2653913,.214325
-.81342006,.66753884,1.6393798
-.34079047,.45414744,.97958635
-1.3825962,.64638831,1.4777583
-.57186748,1.6809524,.12746621
-1.0297379,.45650296,2.0153209
-.88635876,.50243531,.06193619
-.79898667,1.4248438,.51664756
-2.2606933,.86456828,.16985159
-.86771085,.81611068,1.024116
-.96776214,1.1716037,1.2033389
-.34235861,.34924025,.4580597
-1.0893704,.89905334,1.0972601
-1.562277,.86557172,1.1831662
-.54635025,.87237435,.41288405
-.99586272,.08026135,.14276216
-1.5350562,.72725794,1.2088492
-.74088067,.55936448,.04749011
-.87838218,.39606829,.2117662
-.90994214,1.0552076,1.1265224
-.7403412,1.9041082,1.1939679
-1.9083397,.88076789,.12308544
-.90729163,.71580925,2.1265539
-1.4764838,1.1312923,1.1481043
-1.1683456,.28117678,.21125114
-.43646972,1.4583402,.75153978
-.8804897,.20669457,1.1154662
-1.7518874,.4569365,2.1406372
-1.8743872,.10288655,1.1792828
-1.3714746,.37710106,1.5418489
-.33315311,1.5318169,.56891202
-.63409892,.27480967,.18250933
-.95586228,.00514129,.4667862
-.30980413,.26382347,.86644758
-.79970223,1.8377254,1.5045908
-.60531972,.71247787,1.1541624
-.84741929,.3622091,.25409968
-.8625321,.05932419,1.4589674
-.80138276,1.017384,.56222223
-.85721134,.82007641,.22916933
-.55395198,.10404866,.08300534
-2.0120725,.28071808,.65155456
-.89662933,1.4308532,.0724797
-.41513673,.38867425,2.5855743
-1.7020886,.4387407,.92582657
-.94483663,.56853085,2.0272631
-.61759117,.02134972,.03757381
-.94692828,1.9333427,.40752742
-.35168483,.49770131,.87343242
-.62278896,.14497656,.51868906
-1.2065213,.51945934,1.0138995
-.67673716,.69329952,.57925913
-1.1741703,2.2086748,.02427143
-.44422409,.24121781,.36796916
-.97565192,1.0053527,.86830374
-.38622285,1.3576382,.64415287
-1.88205,.80159563,.63944375
-1.3290193,.42685322,.99463868
-1.4589581,1.3851508,.18694754
-1.1404774,.05216458,.71510979
-1.4052422,.23614331,.56251517
-.59191566,.75537731,.25221832
-.44058791,.58404588,.46781494
-1.5770541,.3661282,.9858527
-3.019581,.03805103,1.7810972
-1.8082837,1.6073367,.68974392
-1.6336849,.12374711,.35229115
-.83974506,1.0236013,.49512609
-1.7181738,.18183248,1.1097233
-1.0017041,.68499786,.21861989
-.25115728,2.4335216,.47390555
-1.0666566,.0566445,.67864243
-.89039911,1.7163137,.75107722
-1.460486,.99276654,1.0892385
-.63888838,1.8339892,.95182361
-.37302098,1.214726,.39531614
-.47809391,.7874591,1.3054122
-.94671994,.16539615,1.2595609
-.55498117,.42897517,1.7470177
-.24396891,1.5083189,.38767952
-.63187592,1.1962759,.06448172
-.48159775,.82037429,.83155041
-.45014447,.02177137,1.0068542
-.76878987,.37549366,1.9280476
-.70087264,.02227787,.03631717
-.31381302,2.0645538,.20502153
-1.9248354,.65392514,.53226104
-.6881115,1.0725234,1.2786943
-3.1200615,.29606019,.77812835
-.46698765,1.0113774,1.1313157
-2.6516904,1.5099516,.3564411
-.97390524,.56964613,.45182667
-.56738534,.8815288,1.699658
-.8488667,.78679541,1.4442644
-1.799683,.77346602,.69657275
-.33832706,1.058012,.75750675
-.64170919,.74123796,.15694376
-1.2795988,.40149831,.00517179
-.56672051,.10864321,.31177028
-1.6466173,.72734782,.90792635
-.58345672,1.1429989,.49628259
-.67702171,.66056351,.68925563
-.77590619,1.7640325,1.5870529
-.49985276,.91813056,.13321913
-.69775211,.64495439,.62493273
-1.9241443,.01568132,1.4607253
-1.0906817,.56698658,.49405162
-1.0502282,.946906,.23559565
-1.4850973,.34077563,3.1291022
-1.4261142,1.1511755,1.452489
-2.96691,.34535685,1.9332867
-.74404663,.49340318,.34140538
-1.0639031,.73400279,1.8350588
-.91553317,.07581686,.12656214
-.66289642,.25375186,.01452841
-.69253039,1.2543211,1.9897621
-1.2495756,1.2339575,2.0478066
-.9351502,.70253317,.02757635
-.76195907,.56402244,.23488715
-1.7718019,.70668066,1.0002526
-1.1107158,.99233273,1.0724085
-.71396182,.01894938,.90854587
-.80084454,.19416519,.8602728
-.66486974,.27990294,.26203606
-.85047821,.27260296,.60177832
-1.5625569,.02449836,.0303236
-.7859457,.01452969,1.0440388
-.57173256,.29318656,.62718505
-1.1521025,1.2430706,2.0013361
-.55639145,.50487931,.86609645
-.51184392,.6953489,.00282614
-.91548725,.39900466,.68066696
-.79614708,.4320659,.79348151
-.4278016,.03027697,.50914186
-1.4944862,.10801029,.3465578
-1.1781214,.5153491,1.4359362
-2.8895423,.11570312,1.9491397
-1.0590323,.79143501,.85546376
-1.1102706,.11837153,.39962253
-.84443305,.87503247,1.7036282
-.81736564,2.7576653,.75144415
-1.0501459,.53277317,.10284776
-.51012034,.93628723,2.2481425
-.88611677,.24729606,.27880941
-.79345739,.57525973,.22838766
-.70113168,.10601297,.38170031
-.66621219,.04930181,.1661406
-.35506637,.11480878,.48224301
-1.1429957,.33854629,.65539623
-.59596525,.65288678,.41667909
-.68147702,.60306468,.18956899
-.9486359,.17805711,.72475902
-.55633968,1.2023416,.18561711
-.47628177,1.3682428,.6178712
-.87221007,.75508717,.3206406
-.51290749,3.1057914,.80642807
-.68208955,.16181505,.1412738
-1.3587845,.12349037,.72576391
-.36141938,.25251908,.31715351
-1.4600535,.3956411,2.2285541
-.68376583,.55470785,.91238071
-.53347843,2.1886144,1.6966378
-.89706297,.15653994,.44182699
-1.0398134,.64055125,2.0086989
-1.153312,.81406667,1.2041368
-.42810495,1.6192717,.28428026
-.39183925,1.3802749,.31925248
-.84095674,.19403792,.11244493
-2.251663,.36623711,.18575504
-1.6299928,.70383443,.70427876
-.87552984,.91364986,.95656883
-2.1508695,.91916825,.45919986
-.78489611,.3921209,.13922965
-.3874989,1.0929243,.56322097
-.68150451,.23882246,1.2132519
-.83185748,1.4544751,.95800912
-1.6969621,.24589139,1.7125191
-1.1411599,.58308771,.94373852
-1.4320368,.58328503,.96694398
-1.0863434,.8661011,1.7890871
-.59307,1.2418168,.05748578
-1.0789506,1.1699554,.58003401
-1.1072291,.99087108,.59205864
-.46702203,.91769113,1.1348047
-1.1097075,.26248082,.72424073
-.80956456,.0130495,.55368845
-.92782112,.64512335,.69470881
-1.2871861,.03220946,.3800861
-.67653306,2.2962739,.74688435
-.59414578,1.1778529,.60754533
-.45712507,.03330319,.21016775
-.72621798,1.570215,1.5353952
-1.0379241,1.2050114,.76841642
-.52087793,1.4499271,.84223722
-.71955841,.1255328,1.1178777
-.47242087,1.1063922,.13353176
-1.0658743,.10059599,1.3584531
-1.3368476,1.0181006,.26920709
-.57559841,2.6739364,.99057007
-.58337281,.03243486,.37826035
-1.1506908,1.1916358,.20606847
-.49409404,.449683,.67799309
-.6136202,.839041,1.0902051
-1.2727863,.57028244,.06924428
-.62410135,.44042105,.50205483
-.22897115,1.8541277,.90040699
-1.401757,1.1477268,.89193296
-.78510326,1.0087833,.69321355
-1.0620893,1.0024785,2.2179094
-.50645154,.08473104,.05647374
-1.8320239,.72418657,.33551665
-1.2810006,1.16567,.32449861
-.61014783,.52446586,.71034789
-.93254399,.18602293,.62575936
-1.0693456,.69343297,1.5853064
-.71432352,.53906837,.72819308
-.6706632,.29789517,1.1970036
-.62847094,.90050505,.99309925
-.70934402,.18892494,1.4462592
-.81812061,.18455057,.519312
-1.005021,.83245412,.8554338
-1.0056875,.38878182,1.1834583
-.7594141,.20644128,.72751989
-.66457246,1.6048007,2.5901946
-1.2660153,1.3092308,.05251865
-1.3457554,.05532735,1.1949445
-.64379784,.39662169,.19339788
-.97966006,.06155303,.84177294
-1.617784,.32318207,1.8333137
-1.6749471,.82064488,.65454126
-.99515336,1.6525206,.28095357
-.9261027,.83703967,.83885302
-1.026564,.64366167,1.0325767
-.47712479,1.4499388,2.4692985
-.9942599,.841638,.18892337
-.69201677,.8895709,.49063753
-1.8017075,.26344398,.44026095
-1.4395951,.06341426,.10029099
-1.3185121,1.3173895,.6207001
-1.1525105,.62810192,.68995427
-.61055146,.59163512,.08449193
-.67565234,1.3117186,.51539814
-.69921981,.88198229,.53464402
-.84877036,.13392621,1.0806854
-1.3285509,2.1587912,.16813625
-.92286665,.7056214,.84679901
-.68762839,.16840906,.57989995
-.80633433,.08531782,1.8955886
-.51215188,.02024307,.65791398
-.40475573,.38893344,2.102553
-1.4520193,.72277058,.85795786
-.43240979,1.4832585,.37270017
-.67156793,.19177481,.92909045
-.4797921,.44736865,.20048438
-.61266768,.77526265,.0687286
-.54899286,1.0804318,.28177747
-.56952843,.44285401,1.3139777
-.79427033,1.0867075,.80560885
-1.2146729,.9464751,.48026723
-.55830329,1.330316,.37704251
-.81363295,.50309575,1.255956
-1.0661378,.41878626,.63758831
-1.2346528,.34760665,1.5874509
-.86738657,.50737731,1.6252463
-.28514835,.30196093,.14630119
-.67915231,.31403983,.46363997
-1.121502,1.168451,.84334642
-.98762509,.15884537,.11355992
-.2844775,2.2600445,.74525218
-.51963302,.97373806,.99564316
-.78107681,1.1444521,1.4184275
-1.233763,.27918296,2.1884102
-.40289313,.93896145,1.7759209
-.70456432,.77799995,.69584397
-1.047631,1.2313403,.69616976
-1.0701536,.89219988,.88201572
-.27659365,.1311116,.21316798
-.52962686,2.5812186,.76379508
-.93842357,.0407834,.0194785
-.38154823,1.1924804,.39512425
-1.346536,.7740664,.33672967
-1.6663368,.09164917,.78759862
-.87192788,.29674765,.60118426
-.64547601,.91809741,.12849142
-.85895064,1.3065131,.75687173
-.43735584,.36927236,1.2990257
-.66324899,1.0807699,.27596367
-.91069525,.83432939,.51516132
-1.4737288,1.0131467,.38810798
-.55137658,.58509003,.79433705
-.82993107,.06012819,.04305357
-1.3866163,.11019101,1.7766841
-.9410409,.44821078,.38372443
-.66875649,2.3290413,.31575975
-.66644882,.62799218,1.3176896
-.54195368,1.0599333,.69811137
-.54670934,1.0609131,.6750673
-.74329295,.29727109,.01235352
-1.3794872,.49573702,.62512774
-.76974707,.72022463,1.0939266
-.95312463,.66340815,.27972558
-.49349046,.38239252,.27981443
-1.7242412,.0885923,.64184912
-.95967327,1.3170984,.2975991
-.6710051,.3893688,.33187144
-1.0446518,.16690714,.17035215
-.58610473,.04794899,.5889363
-1.7485654,.24325034,.09137509
-2.5035992,.28285846,.31086546
-.65651235,.89105893,.88538891
-1.5015261,.37265528,.58139381
-2.6596525,.09584778,1.2675128
-1.1351941,1.1504507,.9711201
-.5953943,.42743399,.58837138
-.97627198,.981637,.18123341
-1.0801103,.6502684,.32606116
-.69886747,.73387113,1.6625625
-1.119307,.6202463,.88620059
-.95209791,1.097869,.61916172
-1.326846,.11573222,.76836622
-.47301199,1.2241585,1.4318559
-.20725101,.70558766,.04795302
-.49991749,.51359978,.48893182
-.83075589,.34630015,1.381004
-.77784311,2.0259211,1.4635867
-.8645445,1.4403623,3.3230674
-1.3941999,2.0284267,.81029561
-.51418028,1.349582,1.2821641
-.52644688,.78793451,1.6918441
-.67930155,.11140253,.06121688
-.49164362,1.2658532,1.5883189
-1.6357374,2.4018959,.74534525
-1.6522379,.36654153,1.5248106
-.54574783,.12111528,.78021917
-.51902508,.55120143,.23885036
-.93649464,.35201221,.01930676
-.86703004,1.4858655,2.1462974
-.9816584,.14575397,.29442709
-.75915898,.76809429,1.0790037
-.60758941,.47803261,1.5270238
-.65955049,.22850934,1.192058
-.96010719,.7674266,.92860803
-1.254777,.16424118,.03606246
-1.1278016,.26951594,.1452045
-1.2275157,.57844863,2.5369563
-1.2674928,1.776059,.12953543
-.99862338,.82221273,.40136182
-.4817809,.68917331,1.6135971
-.63102085,.36878425,.1044793
-1.7740495,.81425756,.52192261
-.67691771,2.0470289,.14224322
-.72765699,.04909007,.15754217
-1.5054283,1.247955,1.3984543
-.7686928,.45007594,.3910942
-.53564851,.16747011,.96784306
-.93839653,.60394929,.27223991
-.78722066,.3870393,.7784209
-.98153129,.54251053,.02624966
-1.833833,1.2817697,.05254279
-1.206608,.08070588,1.3147384
-1.0094874,1.2430162,.44071409
-1.4346378,.01499386,.77113373
-.86027895,.12560267,1.9549182
-1.1737461,.51411438,1.1486874
-.78109593,1.0850979,.02347572
-1.2673948,1.3173969,.49226067
-1.2816138,.14149219,.50359769
-.96417713,.28379952,.21753657
-.90905032,1.6995432,1.3818603
-.92989993,.21934444,.37731236
-.91592562,.1344235,.24393754
-.63998747,.05403126,.38021171
-.67568433,.38279187,.57307427
-.63636644,2.0441057,.15282332
-.75816491,1.4493777,3.1708012
-.77516265,.42504958,.24830077
-1.0937104,1.3402887,.85898808
-.43181643,.63169549,.24056601
-1.2284368,.96432727,.23804939
-.86020705,.01182862,.54611758
-.52666641,.56275415,1.4507065
-.57229733,.81162797,.44473971
-.39488286,1.6866627,.87448532
-.54800575,1.7420321,.095878
-.98466975,.89071179,1.1891824
-1.0514907,.1941208,.50311706
-.9751235,1.6895938,.60104537
-.59074672,.01904624,.13028166
-1.5072659,.04484019,.62736337
-1.4979047,.01737793,.14782777
-.82775196,.51707868,2.5563715
-.57697112,1.3352475,2.9826965
-1.0396428,.07962736,.31370441
-.73858482,.65191809,1.0379236
-1.1626701,.06398846,.72497413
-.6765998,1.8630852,.94376744
-.45176699,1.3901287,.73664411
-.60528166,1.8385418,.06862471
-.63952526,.85153092,1.3308163
-.87641221,2.4786734,.46111242
-1.8997157,.6129336,1.7267733
-1.5196682,.24553946,1.0021827
-1.2149788,.29477042,1.0928937
-.77413601,.94666694,1.3209641
-.94011971,.93077615,.14562404
-.55704743,2.0915395,.38323946
-1.5827311,.10740674,.72677264
-.42370614,.80270032,.95904213
-1.0103052,.36509648,.39367362
-1.1632638,1.3057966,.50632072
-.451898,.51286429,.31322973
-.85299274,1.020104,.03482744
-1.0992449,.1627845,1.4902665
-.32880676,.36884508,.33902852
-2.0875344,.09664018,.36848859
-.9395099,.23530726,.71416894
-.29229947,1.9871317,.5264436
-1.7336423,1.6968325,2.0535234
-.52277771,.56454053,.0952771
-.98706791,2.8553628,.61365391
-1.6304904,.50041887,1.5864856
-.84967156,.16891236,1.9593484
-.99372657,1.5126688,.57363877
-1.0401976,1.4525276,.87370866
-.80142552,.2778611,.46699211
-.66463112,1.2681401,.81098292
-1.939546,.17022882,.12638642
-1.8014195,.71294829,.17838154
-2.0700043,.86435291,1.5486931
-1.4976843,.93706147,.79677159
-.34863033,.79568339,.02046246
-.64688442,1.001862,1.1825142
-1.2971141,.37336064,.58855048
-1.7362405,.25079065,1.7587134
-1.2782014,.15343408,.64194246
-.20366073,2.357963,1.2702181
-1.5125412,.74793391,.05741217
-1.043366,.85905772,.51484175
-1.605326,.06899926,.33885859
-1.4155493,.29158637,.48777994
-.5171976,1.122479,.51679795
-1.311225,.53267138,2.4061487
-.93085756,.35590866,.98746114
-1.2801738,.58257769,.5549738
-1.6037345,.03260327,1.1566192
-.63617586,1.4704876,.18703518
-.85239137,.6191843,.07900991
-.88658793,.38554049,1.4388718
-.57472141,1.1399135,.07637849
-.80074693,.18635376,.96812432
-.81597411,.19392575,2.9451462
-.72420354,.11061614,1.1099079
-2.0475078,.88147905,1.6073296
-.55360483,1.293039,1.0583899
-.75455297,.71746634,.3990303
-.56531511,1.5341852,1.4746819
-.36124371,.69396459,.932751
-.80863678,1.4310093,2.2393249
-.59187381,1.7733301,2.2544337
-.71437597,.26479398,.23280392
-.81279426,.15736711,1.6407589
-.53530051,.95933763,.37468825
-.5439668,.11596184,.11462143
-.53768639,.19066791,1.0171537
-.45213685,.37675997,.11063997
-.71283702,.74218079,.2642277
-.73121983,.70981203,1.9277331
-.81638203,1.611354,.35205386
-.56991342,.06997971,1.1394352
-.40806193,.72137444,.34230205
-.56094157,.90824124,.71230031
-1.2181022,.06035427,.78300536
-1.4489293,.39965953,.09131111
-.72828615,.94674651,2.0400371
-.94267786,.11993989,.57343349
-.50593898,2.1095382,1.4141209
-.63003569,1.0499789,.53698829
-.55046242,.48798948,.37308674
-1.4204737,.59001436,.09817123
-.82730183,1.1870435,.56755415
-.85530137,.60969521,1.0760261
-.84438643,.22475264,.93724506
-.41532525,1.2257903,1.1211192
-.86972575,.48347038,.15899592
-.54860156,.222674,1.5974229
-.4810192,.37018359,.16227092
-.34252359,.32281615,1.5278378
-.90327722,.28490072,1.9390781
-.88460503,1.2913569,1.5495946
-1.1953281,.71437367,.13567783
-.76881838,1.6011127,.51559625
-1.1224449,.88563796,.28283116
-.89682876,1.3938541,1.3791295
-.80908329,1.7950366,.31407035
-.36499102,1.4750795,.45935485
-1.8323435,1.2360366,.88368404
-1.2230384,.89162616,1.8011619
-.66499727,.44318586,.24845198
-1.0737316,.16150273,1.4469025
-.36819143,1.1802487,.27459708
-.57691221,.77125664,.23491927
-.25560418,.55527698,.20166462
-.50559777,.93626347,1.1305947
-.96445355,.37967623,.84078046
-1.2315691,1.4174227,.92339482
-.88823527,1.0748601,.51250661
-1.2067018,.2996554,1.4117199
-.23854504,1.1266148,.64965431
-.41712721,1.3126727,.4173789
-.77927457,.71994599,.0716453
-.47346046,.30881223,1.184772
-1.2250218,.00942896,1.2255519
-.35905645,.52669198,.11584667
-.81511576,.20594122,.7202078
-.70035536,.60806842,1.6890373
-.52315175,.81504518,.69298588
-.65633916,.15378359,.32085573
-2.1442003,1.0609722,.01162541
-2.6115164,.10398171,.17160532
-.46815028,.97494639,.06822844
-.29236411,2.1538425,.83310787
-.90090617,1.0080093,.62978909
-.87405432,.83043438,.06685859
-2.3767181,.22482682,.22198368
-.67559221,.04502803,.94081961
-1.3076304,.29174659,.0427403
-.82543831,.97347863,.6029332
-1.2587685,.16952785,1.8045825
-.56543499,.73732562,.124808
-1.3150182,1.3758958,1.8768251
-.37713225,1.0416995,1.2239562
-.94055961,1.5046051,2.1940843
-.47877632,.58076166,1.2397316
-.98282644,.93152582,.61728411
-.52155719,.50488671,.85720034
-.72048657,.03505271,.07305668
-.86353986,.88712305,.60165053
-.70198698,.48807604,.68999129
-2.0418997,1.7005425,.61176591
-1.2633185,1.4880481,.79926141
-.96601543,.26668802,.56820727
-.6318795,.95620824,.06221201
-.84831071,.41736227,1.3603065
-.81498812,.39821352,.39607983
-.59795308,.80316265,.07942405
-1.1388548,.90574881,1.41005
-.42160839,.88188776,1.5622447
-.54135937,1.9506335,.73971192
-1.4697658,1.1441417,1.1220197
-.75589795,.61759244,.69311577
-.63480294,.72771076,.10317989
-.4231925,.41116028,.52426748
-.48638534,.25883364,.99415041
-.64285659,.61746025,1.0810822
-.38225453,1.2559892,.53378181
-1.183552,.32218497,1.587788
-1.0305681,.58288459,.81568984
-.97178814,1.2855251,.33564625
-.61155038,1.1230311,.1068652
-.47171059,.50140041,1.3083748
-1.0937949,.99159891,.20443538
-2.0353176,.26566557,.85360781
-.78343442,1.5508049,.91402168
-.39073216,1.4221852,1.1654479
-1.1141763,.68285942,1.5964016
-.61752919,.41077738,.33763532
-1.2630462,.19814705,.78578798
-1.5027477,.47139431,2.8829039
-.69946434,.64034014,.10414926
-.43113547,3.0138248,1.1045052
-1.098498,1.2482997,.60120047
-.63154873,.68483565,.5963534
-.82529657,1.1135614,.52890737
-.4061237,.71513257,1.863046
-.85629529,1.3222367,.96004761
-1.4872717,.94525288,.37534852
-.73895147,.09313978,1.6564224
-1.0195362,.27651072,1.4609707
-.9769997,.89258753,.38266965
-.76189249,1.8946091,.31843536
-.70764155,.13558051,1.0933236
-.54447565,.7766234,1.3061492
-.86198923,1.9700784,1.0708796
-.29645262,2.1548841,1.0465686
-.59782677,1.6998404,1.2070461
-.71290036,2.6302827,.50540323
-.91669996,1.0824076,.84870973
-.59700728,.41539694,.96499639
-.46190324,.75967654,.3913
-1.006316,2.0754647,.14751431
-1.4612138,2.6331853,.11065573
-.49854442,.1127357,.99175779
-3.0167568,.91253699,1.9075327
-.55726618,.43414668,.0863152
-.41493853,2.1220888,.25165274
-1.7707266,.10901555,1.6988668
-.6156771,.74372179,.51784721
-.55431951,2.1176794,2.7121474
-1.5813295,.49999822,1.3436113
-.80310993,.38121551,.60052995
-.56923325,.14989413,.23390132
-.50922205,.68362172,.35826792
-.665837,1.3401767,1.3650046
-2.5730025,.63604239,.84999339
-.81479698,1.1287579,.47767265
-.78935017,.83206822,1.3779042
-.37688088,.21448146,.59888295
-.65841903,.49111509,.11343839
-.97475823,.67327848,1.0733182
-1.1797752,.36266183,.5591126
-.92587899,1.4834513,.46738492
-.43270699,1.384005,1.4334797
-.96762083,.69756837,.56430691
-.36574113,.4946613,.56891161
-.95622708,.68518005,.11382054
-.89767894,.73768155,.88263345
-1.2788914,.01063103,.27091361
-1.0166404,.71825719,.47308104
-.51144024,.25673023,.76027689
-1.2307996,1.2509029,.79985491
-1.1050616,.4762846,.20541868
-1.2752788,.25945229,.37844138
-1.4479981,.03665398,.17959624
-.43687097,1.3682436,.18817909
-.27619777,2.5243843,.85475943
-1.662457,.55497429,1.664706
-1.4938538,1.1570484,.41329649
-.43019939,1.4206788,.04972949
-.57302521,1.641452,.12109994
-.41294735,.61488346,.05044906
-.5329417,.81275737,.18992186
-.66122766,1.9746791,.27217761
-.39208773,.84052529,.15032814
-.64214088,.16974587,.0600876
-.61485747,.99588847,1.4415797
-1.7456347,.96197618,1.8703536
-.67246589,.83020358,.34980187
-.82221671,.92876976,1.5233035
-1.7570979,.78013067,.36520649
-1.469584,.16022513,1.1603135
-.66755953,2.392712,.44078313
-2.2104815,.21151214,1.2328962
-.57543968,.0930113,1.0996451
-.63403864,.37856446,.16171112
-.69386321,1.7330387,.01645102
-.8261594,.02396206,.62103895
-.857365,.62355268,.67784104
-.58749187,.89532009,.30836608
-.64052837,.92380426,.04501025
-.64054671,.36147621,1.2377982
-.69648316,.58033446,1.100883
-.65030218,.13875435,1.391054
-1.2340083,.22338007,.240732
-1.1475827,.67172312,.174914
-1.1187266,1.0121587,.99183281
-.50464272,.0843854,1.7313876
-.64615021,.9097746,.32142837
-.35447515,.30460406,.35894592
-.70464903,.74735041,.64408744
-1.1172798,.29033229,1.6362564
-1.2418496,2.3228354,1.3307313
-.78608413,.42329703,1.2893567
-.67360251,1.1590319,.66231336
-.64839469,.25893702,.62638448
-3.122648,.11138323,1.6592529
-.95810089,.05454999,.80372072
-1.7266722,.03904166,.13493363
-.85048302,.10744026,.9984767
-1.1267361,.43984617,.07588138
-.90890439,.31500437,.13868595
-1.7048394,.89117428,.89371174
-1.8362976,1.3844256,1.4545847
-.48924738,1.3571265,.97130374
-.81660403,.68890361,.63573828
-.92365445,.74881691,1.4100886
-1.0578278,.25622631,1.3197149
-.52394897,.09072225,.1796846
-.34616118,.87600675,.02528098
-.65981301,1.6623766,.32393082
-.61743849,1.8348371,.18395765
-.91162794,.1556583,.36773629
-.6666597,2.3053863,.22819923
-3.1002179,.30974632,1.194021
-.72426489,.66965024,.73509974
-.86772844,.77432167,1.1864058
-1.1039515,.902255,.35055296
-.61628493,.38508968,.5590721
-.45597154,.19350812,.25623184
-1.6771984,1.5919691,1.1397933
-.73714513,.96705256,.91014505
-.43993417,1.8454118,.98241691
-.75989018,1.0574261,.4358314
-2.0362158,.1650229,1.6038584
-.82347425,.02671522,.21179167
-1.0080182,.40776434,.36299682
-.41445364,1.7436665,.60911955
-.51379765,.14019204,.72019276
-.54188116,.61973099,1.6906688
-1.7100909,.13452294,.40449339
-2.4936044,1.0984627,1.3554088
-1.1547169,.64019887,1.569425
-.58513738,.43664048,1.1754741
-.85194739,.78217808,.07277717
-.85829466,.61506396,.86609537
-1.8594239,1.4098688,.5753042
-.94163116,.29808686,3.4037398
-1.8209556,.76595711,2.1739569
-.85412659,.62711228,2.0701818
-1.6154419,1.1391553,1.379797
-.56146834,.03584471,2.0651315
-1.2543124,.47174677,.72716924
-.36354841,2.7544838,1.3285512
-.2985053,.24589666,.23217589
-.53010271,.73075646,.09016612
-1.4043407,.31309696,1.4168802
-.59323322,2.3957213,1.004379
-.60658409,2.0935029,.66093389
-1.2005926,.43452114,1.152961
-.43581032,.77107412,1.7989662
-1.0448013,.20392694,.37845861
-.4825104,1.6443463,.67257884
-1.0264309,.30152348,.50977758
-.58307828,1.3269693,.55326576
-1.0915256,.89218002,.39728762
-.96160699,.05220384,.9545024
-.75933917,1.1558852,2.0889078
-.56961287,1.4505085,1.1035443
-1.2732065,.45435066,2.5305086
-.75359829,.80214175,.18571181
-1.058064,1.6034183,1.6459097
-.20507328,2.3128324,.16125503
-.73452964,1.4796968,1.3750226
-.9894431,.12963521,.91491745
-.83955929,.54153293,.65202101
-1.3119773,1.415437,.5166712
-.70887761,.67073271,1.2742897
-1.1816178,.8565744,.84505178
-.34221144,1.0965269,.91749139
-2.1557226,.25669252,1.9788659
-1.0017483,.28630528,.40274605
-.47842702,.82909787,.67040723
-.79020006,.26084566,.58961796
-.61820307,.47328049,1.27365
-1.8904546,1.3629758,.10485699
-1.3215769,1.6193745,.63155789
-.49893827,1.5939146,.42034495
-3.251853,.16653218,.11680531
-.6441832,1.5448895,.52976826
-1.1184343,.69293596,.30398619
-.67362107,.39056686,.11942411
-.54960527,.33163107,.04106752
-.53577537,.2801989,1.1049256
-.33066138,1.4634454,.47282199
-1.677171,1.4679268,.73243814
-.68959236,.30244604,.32748067
-.67274751,1.3531965,.99619004
-.84666693,.15660444,.09968516
-1.0277622,1.083173,.68303715
-1.006382,1.5018993,.9066143
-1.0327148,.65188772,.88747883
-2.7254732,1.2483079,.24289411
-.72110403,.10401356,.45771334
-1.1073935,.20755464,.8083237
-.9863111,.53462222,.6593619
-1.1659603,1.0573005,.18531279
-.8893383,.06606468,.6703231
-.48076527,1.2210536,.67776283
-.86631563,1.1273671,1.7876797
-.84265854,.58133565,2.1725806
-1.1198642,.42787587,.8909135
-.97726225,1.5740237,.79455368
-.44469288,.5021658,.76386026
-.96448037,.4697697,1.342164
-.71861242,1.4200574,.07789438
-.75161391,1.3346512,1.4396573
-.64486538,.12161867,.07212057
-.22948383,1.177242,.26907509
-.77623334,1.0408952,.17898693
-1.6367609,.08011389,.4094459
-.91354926,.22693056,.80879178
-.57870445,2.005538,1.2267103
-.29941403,.67705966,1.0549783
-.95474201,1.0881033,.67062739
-.65396574,.22120301,.26762567
-.90033048,1.7618283,.68090377
-1.6711193,1.0098827,.72702332
-.84514003,.82059043,.78207349
-.54903127,.4693144,1.3584307
-.6716608,2.3389905,.7320898
-.45928336,1.9035133,.76241819
-.60934815,.30041644,.33267352
-.63442008,.8904721,.17556324
-1.1914224,.26499097,.03655823
-1.7750759,.19124052,.67345219
-.81385645,.34030555,.64501856
-.45148004,.94643525,1.0637538
-.57589605,.24339578,.22858865
-.87425985,.04640327,.9782846
-.58603469,.93029672,.7564828
-.49681628,1.633963,1.4634451
-1.0240889,.14967965,.5394279
-.8746134,1.9612273,1.1600546
-.60135336,1.3122494,.01381144
-1.0597184,.02731007,1.8404404
-.27886789,1.6491523,.39421944
-1.2758264,.15046826,.52027311
-1.3638938,.97924131,.48662249
-.56910958,.32944423,.62089159
-.73311421,1.748205,.13513112
-.58801642,2.0313914,.0015705
-.85728075,.04941793,.17939947
-.64960108,1.991448,.15453951
-1.0296852,.08290634,.73222334
-1.3753288,.3043487,.47834422
-.84719866,.76242279,.12267416
-.63817022,1.7133463,1.44849
-.53350665,.01168172,.36070342
-.61975886,.66274937,2.3357736
-.6156881,.94866029,.0537824
-1.7256945,.30186925,2.597971
-.63805868,.9122608,1.0773338
-1.9504661,.22990476,.63321848
-1.0053709,.11043583,.20248243
-3.6145297,1.0332207,.25441896
-.46072311,1.3081463,.60930769
-.62979019,1.3242727,.90790155
-.47816249,.67207755,.00553014
-.70653489,.83507148,.35786257
-1.3141253,.2973185,.54744771
-1.5111024,.04895937,.69842522
-.86685633,2.3944381,.88905172
-.62341599,1.9944594,.57846163
-.48957323,1.7945739,.31263871
-.87259314,.96020973,.68060599
-.5003209,.25345014,.09330371
-1.8723642,.09149203,.01692176
-1.3734095,.14817864,.95914323
-.80220488,.94024188,.36226715
-.78295834,.01032299,.41249816
-.34513761,.63406374,.20240263
-.54029367,2.5177996,.22003388
-1.3715942,.20553618,.11342934
-1.1518305,.52954045,.78892288
-.79975104,2.4490043,.51672327
-1.3161432,.01770931,1.1160486
-.60659135,1.556555,.13871896
-.68823819,1.2543895,1.1388845
-1.4367939,1.289123,.07585599
-2.9333811,.1457709,.50938745
-2.770015,.07191134,1.8095351
-.66682188,2.0818331,.22990047
-.89538728,.70819007,.48352589
-.73684476,.89333434,1.913451
-1.0685461,.65049199,.48520202
-1.8877807,.85062906,1.3752822
-2.5038638,.30935377,.42441963
-.68920037,1.7474428,1.5350567
-.56100638,1.7851781,.78404401
-.5140029,3.3895253,.37498642
-.45490919,.56198062,.78884037
-.91265234,.95760048,.06536271
-.74837082,.07497909,1.0589331
-.80052025,.7078068,.87994041
-.37603533,1.5235522,.1624813
-.86438356,1.7873928,1.2037256
-1.6069362,.95388792,1.3342416
-.29213295,.06090982,.21000381
-1.6264388,.01205015,1.1797172
-1.304966,.37887657,.88910707
-.65767732,2.3730759,1.0315029
-1.287161,.06878931,2.1156029
-.53560998,1.2572284,.48037886
-.56312395,1.0070788,.88201207
-1.1356393,.618958,1.9433211
-.50295776,2.1858999,1.0373787
-.67301807,.13943707,.17569732
-.4776105,.41685592,.22201526
-.7551266,1.0316266,1.2265707
-.83413641,.42477028,.9475876
-1.5025309,.69926678,.7987228
-.80324795,.63528004,.64061507
-.76242991,.04356381,.15539837
-.55958066,.08639176,.53655797
-.95958403,.36174208,1.3145453
-.51463197,.89417121,1.0561606
-1.0694838,.6071004,1.4234262
-.3541381,2.3706105,.13625996
-1.2342723,1.0596746,.53054136
-.68493183,.4031924,1.2062291
-.62035695,.94685006,1.583018
-1.3716096,.72501031,1.4998927
-2.0801895,.37636343,1.1608432
-.7974959,.73911141,1.3930643
-.51694827,.98359286,.76158815
-.50816172,2.064495,.48655896
-.54578918,.10566086,.46570473
-1.0262388,2.0506284,2.3183087
-1.6294538,.66932625,.26627173
-1.7436964,.51190093,.21933728
-.57924557,.82353398,.55061266
-.35999668,1.1081218,.5893733
-1.2517465,.89081302,.32681352
-.32240216,1.0725584,.26979393
-1.2144597,1.6943156,.93067382
-.83036074,1.2065182,.80596636
-.95826679,.84285973,1.7921856
-.53683323,1.1887898,.25180534
-.53660305,.74657774,.66826379
-.57135413,1.8782864,.12724358
-.54277552,.05059952,.50620305
-.65358091,.51828213,.16524911
-.38392252,.49332937,.21152305
-.65165828,1.7383228,.85387183
-.84543812,.6936818,.03538192
-.89872458,.63179409,1.3945008
-1.66662,1.1435418,.13624928
-.57131713,.41470981,1.1584021
-1.3144799,1.526714,.4001115
-.75857125,.52085627,.95155828
-.67419345,.96923321,.69027048
-.47701209,1.3156222,.76946801
-.33918176,.57422012,.35217706
-.76645247,.76235734,.1848086
-.65268961,.94281264,.61164341
-1.3184539,.37852824,2.4125661
-.69328323,.52251852,.05077652
-.96195651,1.1540144,.62564793
-1.0820779,1.4689322,.72186397
-.2890452,1.88005,1.6397755
-.46052197,.10039028,.31041137
-1.1499768,.75544034,.35048167
-.30373433,.669236,1.1845008
-.34555115,.13221411,.52792202
-.67877001,1.1341777,.20983126
-.54947793,.25650721,1.1829172
-.57752431,1.9218555,.23115445
-.34861404,.26527475,.49539145
-.42897727,1.3509913,.45377045
-1.7366164,.20457348,.79679363
-2.4021746,.48846686,.2701644
-1.984239,.01506683,2.0861078
-.61440819,.58353711,.0800624
-.46810932,.55796873,.73364526
-.37032707,.97154551,1.5734639
-.78055408,.16375031,2.2739312
-1.3354112,.40061621,.70298093
-.42701479,.67288627,1.1499532
-.98787891,.12133443,.16827221
-.84091605,.8784914,.03226123
-.72420039,1.5931286,1.6383234
-.64385158,1.0334832,.96039487
-.69999914,.12374438,.34899323
-.33968257,1.0920588,.03861119
-2.0117486,.7927572,.2026475
-.28536576,1.1370616,.05553585
-.68591663,.46251243,1.7021124
-1.3078359,.6851205,.75309101
-.98789502,.81005113,.04673625
-1.6836422,1.2109744,1.4261797
-1.690844,.17449015,.28583334
-.71073466,.42379773,1.0489933
-1.3482024,1.3410115,.7495899
-.92446573,.55773396,.8569662
-.77571311,2.720596,.57579864
-1.2322974,1.1771456,1.1154743
-.66197954,1.6740623,.02633569
-.57216612,1.0861723,.24306046
-.43251982,1.195322,.42259637
-.67457544,2.1594666,.92861493
-1.2109117,.03878258,1.3329813
-.52439519,1.9964545,.19649465
-1.1662406,1.0448648,.46434813
-.71461998,.48003231,.57117772
-.84848068,.21766949,2.1340325
-.86518402,.98383594,1.2228681
-.97813509,.15174398,.60441884
-.27613525,1.183517,1.2822227
-.91395704,.74526139,.09786913
-.52487125,.30241262,2.8115547
-.96095486,.56803474,.24850367
-2.1716918,.94704351,.70817286
-1.8834407,1.3962836,1.4602795
-1.883369,.57039025,.18619218
-1.5854829,.34201118,.53941703
-.37254136,.30514855,.19875078
-.69478598,1.0099888,.74058018
-.72755727,.93973825,.07593149
-.27536216,1.8450519,.83063316
-1.33474,.21037527,1.1095784
-.7277091,1.0090729,.33635873
-.6118252,.96313483,.12530236
-1.2737602,.56220308,1.4461439
-.87501479,.82329502,.31310973
-.79275783,.44376764,.5323533
-2.4961442,.74536724,.99783661
-.46210417,.46018205,.70973342
-1.6151703,.46387014,1.7111957
-.49305787,1.263676,.24181746
-1.2023343,1.1610908,1.1133544
-1.2520484,.88258131,1.2202653
-1.578313,.6695274,.37278392
-.5874542,.53370713,.11326599
-1.0094705,2.0480798,1.4901804
-1.0651742,.1761889,1.0703102
-.56852253,.7988519,.20172215
-2.4684245,.43704111,1.5668698
-.36879976,.30707422,.47009728
-2.515616,.55042397,2.5041678
-.72080479,.11970362,.17957488
-.46936803,1.3215942,.31851406
-1.3448153,1.1505365,.23889958
-.37772053,1.1198769,.41074872
-.68733508,.79859065,1.1690102
-.4083549,1.4520415,.49751971
-1.0143462,1.2135112,.50795438
-1.8119578,1.8736386,.84020163
-1.007869,.42269209,1.8964873
-.95240834,.5220148,.9818133
-1.8139867,.55712668,.1319839
-.5911489,.28258879,.53776372
-1.0041364,.4822198,.00310172
-.84327125,.28273,1.5128939
-.40277522,.546917,.19599592
-.89018057,.27046562,.03559761
-.78111213,.71665484,.8220266
-.77143709,.44114965,1.3780941
-.86438121,.18381772,1.0234903
-1.3568935,.62878397,.02591378
-.84927271,.72403561,.40154523
-.76626866,.17879825,1.4984012
-.86219442,1.8044234,1.5351922
-1.580957,.01665018,.65791639
-.6158479,.76843734,.58317498
-.79498687,1.8899292,.66298197
-1.019828,1.9582913,.21079377
-1.2642363,.25253311,.0234314
-.86674865,.15056828,.08034997
-.72085111,1.6393185,.79426077
-2.954259,.40142701,.42148565
-.90648529,2.8876414,.91619442
-.99828769,.21975051,1.0599111
-.69420381,.58182784,.38925606
-1.4622326,1.1180472,.32466453
-.79325132,.6687,.91162805
-1.2041562,.59075396,3.0471661
-.6929656,.63672277,.214804
-1.1541647,1.3200553,1.0779663
-.91746248,1.9440561,1.4914643
-.66979211,1.0677113,.60368449
-1.1312636,1.290328,1.9776847
-1.009304,.10994757,.63044178
-1.6708442,.51852099,.56674906
-1.022251,.34545967,.11740745
-1.3995731,1.1331559,.16024704
-.73277145,1.7295411,.09249914
-1.6797537,.49549676,.9871787
-.86483818,.15281954,.79701625
-.70205862,1.7384395,1.7848019
-.99973758,.65200171,.27014239
-.82519936,1.7525586,1.7452847
-.89377975,.34612111,1.8066107
-2.1448633,1.030884,.16490094
-.79822102,.9973564,.34523073
-1.4673509,.10039356,.50767507
-.42812041,.39496383,1.5373697
-.38531832,.21628522,.00799584
-1.3458945,1.4998616,.78510879
-.7340553,.05664858,1.01814
-.62303809,1.250136,.98576574
-.89440457,1.2672919,1.7569779
-.33917338,1.368854,.21225104
-.898813,.19535183,.05909451
-1.1166632,.67984685,1.3264719
-1.2191654,1.6337539,.76420965
-.17434518,.96187798,.88691354
-1.0191903,1.0860551,.0601272
-.66445378,.59176254,.42071511
-1.3387126,.63060233,1.1523138
-.99212936,1.4719021,.22711941
-.51681689,.74242608,.20428703
-1.6924491,.13257524,.37000275
-1.08845,1.0370916,1.3752507
-1.0207363,.56955458,.21130477
-.30813041,.5561348,.30682367
-.86990342,.6282587,.33372563
-.96479582,.47844878,.46851778
-.61553962,1.0632563,.22293762
-.9702072,1.6192283,.89133276
-.31607952,2.5395419,1.4192451
-.77636172,1.2057537,.58139281
-2.0369127,.08195125,1.4323244
-.94687133,.97889247,.26278422
-1.1109894,1.4741503,.38504643
-.77489104,.03333475,.29791226
-1.0721888,.85187637,.41720833
-.36955451,1.0549854,.09247677
-.75458159,1.0536951,1.197972
-.81025955,1.5015451,2.3347145
-.91735094,.86253665,2.5711544
-.66910796,.24572307,.64206548
-.40631709,2.0337525,.61698011
-.96977706,.45089012,2.1703157
-.68471702,.47291706,1.5516884
-.80577034,.3455434,.6365844
-1.4789259,.97354571,1.9696114
-1.01653,.03630937,.32568159
-.89115473,.03761801,.27802711
-.89479112,.62094906,1.0743098
-.65908283,.2456001,1.3439856
-1.0332631,1.2181552,1.3543988
-.64082997,.93336182,1.0547339
-.73716986,1.5934214,1.7567075
-.63243936,.02379171,1.1503286
-.81263344,1.0196273,1.1756418
-1.2147862,.18661298,.03376803
-.60660104,2.2986275,.06855566
-1.9251679,.49768055,1.3673644
-.43928878,1.4311035,.63257844
-.75406659,.3590676,2.0179125
-.31227041,.95970561,1.1747946
-1.5150783,.03514664,.34167936
-1.5421739,.37208762,.74176779
-1.1309395,.67828333,.38318476
-.70740659,1.1797269,.18017194
-1.3442741,.55050622,.72073184
-.71951483,2.9929212,.4826058
-1.1995485,1.0850205,.51117419
-.47839696,.41848698,.37969161
-.33815806,.39872293,.90655409
-.65460246,.09036702,.35185456
-.7107055,.73310328,1.806594
-1.628126,.94235803,.48475641
-.72508525,.31898443,.9510967
-1.8561953,.44690946,1.4152546
-.88066732,1.5801221,.4352176
-1.0875948,1.2718021,.14178709
-.91893301,.13287055,1.0721172
-1.6486029,1.0804926,.70791572
-.76279872,2.4010781,.55095818
-1.9697651,1.2269173,1.2063658
-.83089456,.37794732,1.6718659
-.58749519,.76279778,.14891477
-1.6294921,1.0598532,2.0748904
-.83354505,.94937408,.71904646
-1.0479998,1.8857473,1.3995609
-.47891803,.20952578,.3875137
-.42633685,3.1608639,2.0001476
-.44576445,2.423124,1.9455319
-.4016369,2.0910722,1.3919928
-1.0880561,.289602,.37127375
-1.7165721,.59866498,1.1930577
-.71246283,.27440848,.45219948
-.32685938,2.1086385,.40164929
-.80218334,1.1914667,1.3992804
-.79036955,1.4450435,.76894195
-1.9565656,.85198327,.79880319
-.70064659,.9173449,.07459069
-1.8884916,.39802595,.01786838
-.3701519,.83047888,1.9333545
-.7708975,.63684879,.70823237
-.65057518,.34057755,1.372086
-.56932542,.84510622,1.0338644
-.85814052,.883993,.05504499
-1.477825,.34920033,.08050049
-.41722414,2.3255136,.32096336
-.96804462,.83769648,.70770259
-.75405665,.64258866,1.5432076
-.9776321,.35305023,.76123824
-1.1704814,.37464305,1.1458144
-.75863492,.35608812,.59979603
-1.1103594,.19329061,.64244399
-.57869435,.63874246,.64045622
-.52450598,.16804732,1.0342395
-.84748981,.94981965,.35721732
-.35109306,.79282384,.40371814
-1.3519669,.03740257,3.0128762
-2.8663408,.09753065,2.2409058
-1.0353273,.02820692,.25483154
-.85752834,.10985207,.64279398
-1.0957469,.4666198,2.1931976
-.62487699,1.2671667,.10880294
-.87566274,.59618618,1.4003216
-.59958883,.32277273,.07302209
-.8137104,.20339308,.34287222
-.74311418,.5986863,1.7542974
-1.2158329,.58798942,.58960013
-.35798584,.09069303,1.3358983
-.38962521,.16329252,.00185209
-.90205271,.00051597,.74748462
-.64674633,.03780225,.99093541
-.66666148,1.0554837,1.6126896
-.81641536,.038771,.17060603
-.36468261,1.0365435,1.1205004
-1.1889942,.80211134,.00288096
-.71242874,.96153443,1.6531545
-.88529682,.10343501,1.239489
-.71548365,1.2078407,.29252174
-1.8406198,.52411222,.57563053
-.75870672,.75423295,2.1598801
-.94619657,1.4545873,.31617924
-.66722114,.1039533,1.5721347
-.59835909,.2206186,.26224959
-1.2333617,.42445814,1.1530833
-1.9426829,.20457365,1.7788992
-.34204043,1.7846301,.4823693
-2.231502,.0229712,1.6503553
-.45259414,.00893685,1.2029318
-1.7822339,1.0820131,1.5664239
-1.4063349,.64490754,.7701901
-2.0952982,.14454346,.7616634
-.51749541,1.7506577,.31419702
-.89576291,.64629466,1.055871
-1.2100355,.06842352,.40088705
-.87114643,.27355826,.42356834
-.97373808,.94154492,1.7713135
-.63034181,.7726554,1.0645623
-.8998269,.03574713,.49318993
-.70839196,.87111558,1.3514142
-1.2486808,.56182603,.93213463
-.87779144,.49072511,1.0234621
-.86401249,1.4275029,.70770683
-1.793188,.85328941,2.9855153
-.92489545,1.3615158,1.0159905
-.55938423,1.9501618,.13156487
-.49192325,.62915673,.59747437
-.41493998,.42557319,.12997633
-.81835034,.16211518,.39400984
-.60186457,.15858224,.66374289
-.91376022,.86318158,2.7486962
-.59132117,.12452741,.19221368
-1.2882183,.34986422,.74046457
-1.0588245,1.3827125,.79185995
-.4019573,1.4303399,.26653554
-1.3108684,.43383074,2.0842512
-.55596795,1.1682188,.79269465
-.36598821,.53162684,.08831131
-.91900996,1.7620071,.39608174
-1.4036663,.19705221,1.1958357
-.46711913,2.2725826,.30729098
-.29266219,.19080516,1.1110469
-.68301942,.32312329,.88480925
-.93922671,.56443891,.2253681
-.64275527,1.0082781,1.1318243
-.45349233,1.2037265,.33211802
-1.7092314,.2286876,.7586384
-1.8137313,.42095571,1.6587219
-1.6748077,.43521178,1.9427466
-.78771501,.08003887,.23238096
-1.5103049,.11908722,.22385627
-.58808779,2.0324994,1.0420271
-1.3121961,.64803548,.29505939
-1.0261456,.15575078,.0760356
-1.073094,.262155,1.0684155
-.86222442,.20680173,.01835687
-.37556776,.90841947,.42532735
-.94681093,1.6016751,1.1083484
-.55071954,.69417165,1.1509006
-1.0441349,.28993787,.50560936
-.8012333,.20957126,.87561097
-.77797941,.13377995,.80814522
-.56962415,1.2709865,.43331361
-2.0897181,.504481,1.611326
-1.4948691,.63084106,.50227883
-.79499622,.14895164,.35444764
-.54011991,1.2545317,.76101251
-1.2710996,.40320765,.42075729
-.24308141,1.4830962,.32677334
-.8324113,.21100466,1.0117429
-1.5024275,.05887867,1.4870574
-1.3332392,.36234956,.79436832
-.74860157,.09241164,.73022492
-.63632505,.46444931,.83727743
-1.5895114,.74428042,2.0463712
-.65015187,.38270996,.38759027
-.66410786,1.5209937,1.9983838
-.92377971,1.113734,1.554988
-.66778336,.62115877,1.7821548
-.58866577,1.3276197,.50835957
-.92741394,.34426041,1.9052286
-1.1043934,1.0717477,.67367466
-.93714101,.61238594,1.2014253
-.49487584,1.16734,.07404772
-.80843503,1.2365982,.18095098
-1.0850963,.23045086,.35843572
-.60177085,1.7249398,.91520056
-1.0411277,.62460838,2.1348851
-1.1694302,.53876839,.90887004
-1.2610939,.22828903,1.5205828
-1.1854338,.18597801,.93530245
-.42941872,1.0625891,1.1165699
-.89311479,.35697344,.10688557
-1.4414165,.05271619,1.1767982
-.92411573,1.7893595,.38459493
-1.0652334,.41892222,.1633237
-1.2561776,.38558899,.69398873
-.52219329,1.2933775,1.3439748
-1.196923,.16023563,.17556945
-.46663111,1.4536421,.68000681
-.38916653,1.7724012,.53767839
-.71676041,1.3368388,.21912631
-1.0133378,1.6049181,.32600056
-.76721622,.37614036,2.290418
-1.4402554,1.0266152,1.3261669
-.69969412,.45883017,.49797764
-.45822368,2.4782275,.06662754
-.40277899,.39026098,.08965946
-.92211173,.0418733,.18098352
-1.7778556,.17709266,.8795744
-.8926175,.51119636,.40618734
-1.8834683,1.4041722,1.3359245
-1.5774299,.28661974,.92163592
-.31128914,.05026245,.40393453
-1.1188451,.05115022,.27099182
-.86236997,.47302399,1.3928455
-.74140222,.567965,.16041684
-.47227989,.92868923,.43163846
-.68659556,.26200657,1.0673738
-.8838291,.95093904,1.3036574
-.51075176,.47286788,.72261377
-.33083763,.72262523,.39848001
-.99645495,1.4603777,.51032896
-1.106317,.04189146,.85573642
-1.5749444,.59135779,.12542662
-.49691667,1.8782009,.85296039
-.44186224,.41646225,.56537242
-.531937,.59692256,.51463557
-.86681782,1.2906055,.1993066
-.41980504,1.8483228,.58570378
-.22978708,1.7461002,.74748992
-.97567474,.8748718,.28859748
-1.0917634,.05811333,.91292856
-1.1056548,1.5677659,1.2817418
-.92740056,.26948194,.50119563
-.30624481,1.1446256,.0043983
-.6303977,1.0384719,.15058501
-1.6957685,1.9758493,.90488383
-1.0494608,.23155331,1.8523407
-.40926821,2.0856925,1.790525
-.44220919,.5117504,.27429849
-1.1803448,.29875525,.85914077
-1.325118,.18700733,.64576191
-1.3775103,.52925915,.2428068
-.72069667,.13883512,1.3416866
-.73592016,1.7049163,.84168267
-.56166927,1.7420036,.57159887
-1.436071,.41990247,3.1387265
-.7912776,.00011434,.51755055
-.89339528,.40760508,1.2240011
-.87363972,1.0342534,.52100132
-1.246469,.19968703,.22590082
-1.1095681,.65058577,1.7571916
-1.0943911,.74913367,.82610915
-.74943542,.6698886,.02819217
-1.4076097,.93171744,.98975122
-1.046045,.13633531,.43249913
-.78136074,.05706488,.30469606
-.80923095,1.5764088,.02440632
-1.2914823,1.4123903,.2729806
-.92337458,.83283871,1.1961482
-.51003273,.82137084,1.8196356
-.83452799,2.2821565,.77369909
-.87362699,.6029984,.17042212
-1.5784425,.62568582,3.5399049
-.74011638,.69784459,.25327393
-1.0972456,.59077076,1.9415131
-.69102499,1.7187783,.79634393
-1.3603635,.54525096,.33079729
-.62895457,.53125825,1.8608721
-.68912347,1.2294469,.74124465
-.81917642,.06615174,2.7576603
-1.0562512,1.3667078,2.4529454
-.58124524,.10752239,1.9204693
-1.4214986,.07821968,.51799838
-1.6912615,1.743126,.88891273
-.63623058,1.723565,.94234567
-.9038409,.08771991,.85047686
-.71046488,.36768737,2.1643736
-1.5654734,.8507767,1.3260691
-3.7965359,1.0120906,.6809885
-.79256212,1.2279045,.3795283
-.66689454,.23275771,1.397225
-.68423586,.53012353,1.0757003
-.84403764,.45493227,1.2456833
-.50392679,.78199616,.11763852
-.77801281,1.1057938,1.0972582
-1.2404177,.61032903,.80907904
-.80947451,2.0182251,.73013288
-.9396684,1.5913961,.06380743
-1.0685699,.8315762,.14779351
-.2271514,.67004635,1.1205632
-1.8593236,.02690185,.0598872
-1.0301704,.7239375,.77217042
-.79212825,.30575072,.86512852
-1.2474157,.67985204,.19238677
-1.2888588,2.3273512,.05315377
-.55020665,.70947129,.76369305
-.8840425,.18654447,1.6128003
-.33643756,.00597783,.02585056
-.41506643,.40761966,1.0624963
-.68747559,.66468197,.66402316
-1.0503955,.93709242,.73428823
-.69784739,1.0945559,.74635197
-.90581999,.15186331,.4500938
-.58592416,1.0417343,1.4585051
-.92332204,.08310296,.29888614
-1.7673923,.04306728,2.2473248
-1.0406517,.9288512,2.3352325
-.41623713,.84805526,.28520611
-.74639735,1.5175478,1.2191722
-.88594593,.81235102,.80509221
-1.0112903,1.1212934,.43422477
-1.8185558,.26856173,1.6817942
-.74472508,2.5026679,.21187861
-.54923457,.87220106,1.2171127
-1.2033862,.30757784,2.3051457
-.37245279,.38133314,1.4500379
-1.1639281,.90167248,.03115497
-.40214689,.86584096,.92895124
-1.365934,.25126606,1.6444809
-.99086114,.10110164,.01258747
-.85265842,.31626565,.50059851
-.89308043,.45763263,.22395584
-.51095823,1.5446991,.87820738
-.48530288,.19653335,.68819715
-.7182471,1.7096712,.90102836
-.53216258,2.3917463,1.7324302
-1.1279598,1.0981152,.9006354
-.66227386,.97234758,1.4456781
-.52728665,.713487,1.4533946
-1.3955504,1.2291648,.78567253
-1.0046182,1.9564224,.83917287
-1.7933432,.07829223,.49170475
-3.3063573,.05107946,2.3871806
-.66401178,2.0389596,1.783839
-.92160796,.41368203,.32681883
-1.2889597,.30052795,.50763221
-.39393397,.30463504,1.0848811
-1.3323431,1.2787974,.92655404
-.32809217,2.759115,1.1426172
-.82437162,2.9717311,1.006095
-.7947938,.51016094,.36886489
-1.0519166,.14440207,.94155343
-1.2868324,.58202715,2.5371331
-1.0455547,2.3028767,.22694512
-1.0096027,1.1617566,.29071787
-.42431975,.17952501,1.2683735
-.86441796,.54458433,.0214322
-2.2889741,.48144867,.2014486
-1.0640863,.22443051,.22360851
-1.0828075,2.7256146,.83912612
-.17127053,3.3398891,1.1293152
-.43786313,2.2799941,.44662901
-1.5716406,.68292132,.4267532
-1.1045895,.11628903,.78193565
-.50737864,1.7320803,1.2030772
-1.2880628,1.9678334,.52365016
-.91978384,.11069045,.33133012
-1.9396503,.40302242,1.2644444
-1.0141178,.18297064,.91923127
-1.1641985,.03681655,.04858422
-1.0318415,.78366758,1.9403977
-.48706421,.75784131,.36208187
-1.1311171,1.0698992,.78729303
-.76067255,1.9208652,1.0035935
-1.2944209,1.1614962,.27638883
-.88416846,.14343364,.06151789
-.77217114,2.9802104,.74111642
-.49913375,3.418653,.5161069
-.64160308,1.4275878,.45328057
-.62846396,.98844396,.12781413
-.84682492,1.1967582,.37998834
-1.0244703,.99862908,1.3306393
-.46288088,.47845683,.38000952
-2.8926874,.39475589,2.1362016
-.62869432,.2228058,2.5039326
-1.3254777,.53321143,1.4126914
-1.2007064,.32430628,1.7044541
-1.2296312,1.4946903,1.3399793
-.4650776,.32079141,.04524033
-1.1752114,.19426389,1.6246354
-.68779171,.78148632,1.4350293
-1.0812988,1.3956398,.65827536
-.49470549,1.0460122,.09118747
-.81846425,.69959997,.75885426
-.69702493,.15007664,.81540591
-.31823218,.90919365,1.2022226
-.97809756,1.2175515,.38488591
-1.4998884,1.7163535,.35841494
-.44812046,1.6981024,.84082212
-3.605084,.52113586,.62406304
-2.1249271,.85431572,1.2278101
-1.7112284,.94208766,.61065231
-1.0390657,.86722134,.23465074
-1.8568897,.6405998,.53155381
-1.3261131,.61350355,.11100153
-.41816273,.50712527,.10069545
-.24707299,1.3945791,2.1666272
-.87600008,.15162015,.11964682
-.91803529,.10433368,.35480248
-.58916307,1.4612228,.38542456
-1.3180248,.06788388,.84234114
-1.6310163,.27926213,.09931422
-.6969045,.44449572,.10648061
-.3557379,2.0209351,.17929311
-.52475225,1.6803944,1.0518606
-1.0324389,.42702504,.25296624
-.3227849,.31964212,.28203642
-.84553282,.70368386,1.3784854
-1.0120064,1.8293458,.52889941
-1.0673525,1.0927239,2.2721626
-.7204934,.64341101,.2934247
-1.2669845,.09536922,2.074025
-1.0257668,.20782005,1.1848086
-1.5761011,.73299017,.16855866
-.82300381,.2609789,1.6060271
-.52571968,1.6387981,2.0679902
-.6455519,.55109759,1.5771896
-1.3537787,1.548566,1.6304702
-1.333239,.35115036,.8765357
-.76242455,.11799719,.16258044
-.72341942,.37097462,.93145667
-.94931241,.27350523,.76732048
-.87874509,2.0129323,2.1083305
-1.0803867,1.1464166,.83782105
-.46743655,2.171198,1.568917
-.61067977,.97090985,.24559223
-.62485506,.69636255,.85098283
-1.4519012,1.2134615,.77322889
-1.4309764,.35360172,1.1038316
-1.3218406,1.1964178,.45357131
-1.153945,.2001064,1.8332279
-1.0386777,.89418028,.51328827
-.27149654,1.3836039,.15887313
-.7351663,1.1831493,1.3355108
-1.5696628,.66480558,.23183053
-.48875378,.66300171,.47058388
-.72789289,.67873489,.45628672
-.45549662,1.2485465,.70281367
-.63576262,.38313561,.12790284
-.73432093,1.0144291,.68976943
-1.2708761,.56466927,.01268245
-.61956569,.41835992,.12923919
-1.2633956,2.1254961,1.2493988
-2.6021187,.21878399,.33475274
-1.4092689,.87409081,.20567862
-1.53146,1.4788262,.09808047
-.65718269,.23796467,.20447001
-.57474488,.15151916,.52008448
-.63675504,1.9405663,.17065843
-.60010032,.68719665,.7908691
-1.3284749,1.6240765,.34414256
-.34133238,.54293957,.14889671
-.78178112,.48688178,.07200507
-.69916671,.21947246,.53329563
-2.3834332,.61844822,.34750264
-.56955898,.32707431,.58911474
-.51356758,.41458937,1.3943424
-.80693697,1.4964084,2.5899135
-1.1603398,.26040873,.91692389
-1.8846288,.07847959,.3588643
-.85332201,.92564584,.18607871
-.63360124,1.3959247,.10135504
-.96777148,1.3067367,1.6338947
-.48724588,1.0334869,.99907398
-.64640214,.71435212,1.0247709
-1.2918048,.74340515,.77023843
-.53853653,2.0301206,1.9574565
-.27315673,1.1206216,.37141356
-.66982872,1.184013,1.2296103
-.91303508,.61430905,1.3391224
-.72312522,.46382536,.60879103
-1.0213645,.65779745,1.3563346
-1.4363268,.08897405,3.7161077
-.91544197,.72610415,1.4098735
-.49543267,.37791597,1.2802645
-.40138397,2.5236264,.07248765
-.70837167,.47939869,2.5095315
-1.5055938,.18394474,.35019361
-1.0179076,2.3879922,1.4793665
-1.1074088,1.1386802,.12635951
-.59819296,.77689275,.00898752
-1.9283255,.55717259,1.1217189
-1.5003045,.03958007,.80497559
-1.2397227,.78629514,.48434686
-.45205794,1.3576844,.38084665
-.89636204,1.1211293,.23591425
-1.262693,.49093593,.78210195
-.44138997,.84563286,.89801006
-1.1966945,1.2096631,1.1265475
-.65448779,.53399386,.31124666
-.51239631,.12736035,.48130653
-.65565024,.0771076,.02996917
-1.5321304,.73981877,.55676135
-2.2831209,.30216843,.13168481
-2.8762291,.02048691,.26569887
-1.0194855,.33571551,.84488902
-.30096924,2.4465236,1.4118336
-.43146251,1.0723743,.53243612
-.65686456,1.0736894,.9251606
-.71201194,.09337195,1.7999169
-.67955372,.14518116,.14045068
-.63915281,.28272794,.0940917
-.51178508,1.9456089,.8337955
-.74350487,.37292906,.75052911
-.93379932,.60360046,.7886144
-2.0335617,.08900592,.22502483
-.81087595,.26354324,.89819121
-1.5131697,.35186277,.42853499
-1.2775122,.27907334,1.3362991
-.62627065,1.7403439,1.3376243
-1.2396169,.40955266,.70101173
-1.6459821,2.438541,.68928523
-.47052528,1.0966675,.70885442
-.34761722,1.5455516,.30586832
-.74065362,.14152238,.66207025
-.33063305,.56269731,.35358995
-.68115189,.00489659,.09649939
-.95260517,.34102141,1.0752747
-.63013227,.06853022,.23933756
-.65248252,.31832085,.02863219
-.17923736,.90237992,.35977725
-2.3202971,.28808092,.07674997
-.94165826,.18313065,.92473496
-.66060292,1.0762999,.43898567
-2.3474964,.04735654,.67045234
-.83761782,.69864591,.81203533
-.84656229,.4321799,1.6335017
-.62918366,1.8567262,.42661341
-.55735884,1.040104,.48060119
-.70408115,1.6607763,.92939631
-.45112212,.39558863,.00493536
-.60841509,1.4109101,.25304072
-.65613351,.27753009,.38304506
-.60769545,1.366066,2.6134938
-1.1796802,.56478647,.78602422
-.75306623,.62308452,.07527537
-.61803639,.44736537,2.3891786
-1.4137806,.09953154,.44983717
-.62378161,.06006071,.59883464
-.54464239,.32046338,.20203753
-1.5870651,.04306057,.61564504
-.57685425,.27082869,.07822687
-.42954023,.52809829,.45380419
-.76497894,1.429499,.55561054
-1.9754077,.0413468,.92167491
-.79892357,1.7323171,1.1778308
-.43515472,1.4900383,.0731339
-.67087208,.82386604,.93112251
-1.3303762,.12821935,.10408534
-1.001706,1.0315254,1.2313261
-.40702135,1.3697939,.54781878
-.74268991,.41556744,.7746616
-.61209233,.0096191,.60817478
-.66561086,2.122728,.03276559
-.81907566,.74036426,1.9346057
-1.3986062,.16989615,.50843075
-1.2757036,1.4175817,1.2545786
-.7047076,.84817104,.19388748
-.45491768,.32052549,1.737635
-2.2929252,.01866836,1.4761333
-.80099041,1.4744652,.60092773
-.69807386,.34430611,.45167451
-.78776101,.69217848,.33804037
-1.1103828,.17744185,.55930112
-.65942029,.01908756,.29515712
-.41304879,.73423572,.0910442
-.62525975,.13806152,.96601325
-1.6111228,.70407871,.852883
-.81709451,1.8691181,2.2492377
-2.0028662,.21559061,.41351037
-.56330989,.2453174,.35098527
-.74939847,.16674888,.1703804
-.83136215,.71363565,1.6050648
-1.3702717,.16557287,.96578775
-2.6189475,.03876216,1.1687396
-1.3351782,1.1734171,.43902858
-.48276353,1.7229483,.0179263
-.89239746,1.2669463,1.0564068
-.7930674,.31440251,.46054483
-.43337748,1.2911071,.97999614
-.76058327,.36471902,.07367196
-.81699166,2.4830308,1.5552037
-1.4654638,1.1010431,1.3758188
-.36317156,.44641628,.79850781
-1.1111474,.64119649,.39235032
-.4388182,.75346364,.60039155
-.52360447,.30031271,1.0637302
-.37042307,2.7537086,2.3589037
-.51153028,.54549597,.0389424
-.38179547,.31246855,1.667244
-.926342,.25735959,.83899025
-1.210005,.14242782,1.498192
-1.6047687,.32752001,.24230448
-.97322581,.19146861,.50120126
-.4577993,.1534005,.24331986
-.57127027,.80161436,.31662627
-1.5390177,.98590249,.3224138
-.34694897,1.0285509,.13796576
-.72845445,.44062771,.2830237
-.7719433,.24047768,.76400018
-.47512298,.10686323,.23217409
-.95511088,.70620636,.17047137
-.81978345,.69026066,.14484676
-1.8225462,1.3063396,1.8553786
-1.107185,.74237309,1.5517271
-.65701805,.19948421,.07954907
-1.1934046,.40638667,.40098307
-.81038037,.01058289,1.0150382
-1.4037186,.81140475,.20733296
-.91403927,1.9542251,.30674159
-.62065035,.63541193,.39072908
-.43573395,.07280392,.1299618
-.76653608,2.2634039,.92090898
-.90542391,1.7308593,.01629875
-.76738295,.47457634,.77714735
-1.0122974,.68026146,1.0222641
-1.1558339,3.6780904,.75778525
-.61876918,1.1556371,.41766603
-.54111428,.82004714,.86648845
-1.6361592,.6569797,.70869823
-.6926279,.54770407,.61984733
-.56071661,1.4401608,.93145735
-.62455211,.87171366,.65315442
-.89379864,.19577749,1.1537545
-.85636484,.21311871,.46359555
-3.6443024,.39387495,1.8149932
-1.5064957,1.0248737,1.6610553
-1.1970401,1.4717075,1.2781069
-.86084855,.47024744,.45400589
-.67487242,.67486331,1.1429249
-.61451658,.79515348,.01118728
-.31447554,1.2133925,1.1410166
-1.0898051,.30537812,.88148717
-.93035868,.51196092,.17149231
-.94590243,.12507708,.07400029
-.84092639,.01870104,.22762841
-.33915152,1.4104087,.03822321
-1.2042841,.27777519,1.8320062
-.42278489,.16098823,2.6387043
-1.7528975,1.356865,2.5937371
-.42229341,1.5384822,2.1571509
-1.7457645,.25554016,.49348631
-.72752282,1.4191031,1.8475856
-1.6604179,.02912039,1.3009384
-1.37985,.44458875,.75155025
-.68374522,2.0875669,.6394413
-.95499483,.1367494,.70255622
-2.130543,.15724683,.57227445
-1.259283,.08282529,.47739176
-.81275241,.25330571,.48142827
-.65309364,.46988466,2.6867387
-.67899325,.57966767,.34706824
-.77211018,2.9374637,.24221938
-.77494646,.55149863,1.1413135
-.64065369,3.7262673,.87552258
-.6469659,1.5553524,.16146566
-.42216529,1.5136209,.93767561
-1.3970904,1.0030723,.48209698
-.4762144,.15776324,.66062786
-.92223961,1.0395097,1.4251901
-3.0691355,.4085328,1.6616831
-.65406836,1.0526303,.09130826
-1.0716512,.33951742,.66275095
-1.4249488,.12587007,.14476611
-1.1111817,.4618835,.11174883
-1.1801759,.58376135,.83649182
-1.3845463,1.0052043,.20814274
-1.1849438,.14471505,.43052522
-1.4848031,.25072297,.03577348
-1.2768588,.01755326,.15025586
-.66163624,1.8051793,.14702917
-.63016216,.71250785,1.3274434
-1.5386621,1.4250618,.55700092
-1.5943949,.2105474,.36529542
-1.3729784,.09416454,.77897372
-.80092445,2.141493,1.7215692
-.42646593,1.2248798,.36206815
-.69761693,.99201253,.07863904
-.78391827,.75653169,.04311452
-.44525931,2.0921021,.49438243
-.90475911,1.3979637,1.8852006
-.39502337,.3288527,.08654215
-1.1817766,1.0565854,.75448563
-1.5750572,1.5118221,1.1026314
-.74359609,.31129487,.03705513
-2.0348648,.42194556,1.1841614
-2.2165308,.8242757,.56071766
-.35721833,1.8210245,.03490385
-.61344349,1.0466921,1.364642
-1.1508457,.36661016,.36827505
-.84919447,.09107053,1.27691
-.73607949,.27801529,1.6287162
-.64081793,.73195707,1.2882473
-.44529649,.5465249,.21962795
-1.6160097,.98526387,1.7525919
-.5871893,.11258386,.57790069
-.6973857,1.2690158,.86084634
-.58355111,.65986606,.95144351
-.70878201,.12862931,.25220556
-.72550334,1.4691361,1.1738092
-.58215682,.93848882,.18248405
-.54393361,.60476364,.37531401
-1.0589838,.90770239,1.4216664
-1.2249925,.3950228,.49008735
-.77274728,.9263427,.20368943
-1.5197105,.96045005,1.5629784
-.76204663,.49284863,.77783094
-.76453013,.55124945,.68035884
-.56714084,.17867411,.07850167
-2.2095503,.71888847,.45762801
-.85814528,.17959518,.62916825
-.5656892,.18053815,.08873125
-1.183514,.44479385,.5724076
-1.2880253,1.3050574,.73901755
-.7273503,.50552287,.0394313
-.5088412,.92661787,1.0500069
-.68092552,1.4388457,.50066458
-.58963001,.24783062,.30359237
-.91051916,.91880573,.5729915
-.58522855,.99883882,.28524601
-1.1613176,.42744229,1.2423792
-.76900597,1.8127938,.3156053
-1.842545,.23316444,.84931233
-.80082545,1.1193988,.21917966
-.50726505,.82795763,.97871095
-.51359963,1.4799816,.14321228
-.64620962,2.0223283,1.0124755
-1.2951992,.50520604,1.6087842
-.50061412,1.295451,.33519581
-1.0034436,.50909602,.06799873
-.7282832,.11614677,.54154654
-.76798169,.91327647,.02736157
-.44025657,.5846933,.83660941
-1.009882,.90093484,1.3080283
-1.352686,.7160772,.20491016
-.670047,1.2876395,.99759606
-.88564351,.749848,.20123374
-1.3762134,.01125687,.67308013
-1.431113,1.3384449,1.2111028
-1.229983,.12189108,.61766075
-1.0324484,.38116445,.34226064
-.85512042,.01910673,.60658403
-.81375867,1.1558688,1.0633919
-1.0386149,.87431607,.38838719
-1.0972269,.3146854,.41708237
-.63421769,2.1041839,.13462073
-.65606647,.45242163,1.0567586
-.34276038,1.0247338,.09491474
-1.6919582,.57963924,1.3555293
-.96707971,.45826044,1.8786982
-2.0915158,.32174826,1.8367202
-1.440006,.42970362,.3855716
-.95146837,1.6178764,1.3071849
-.52900038,.98719214,.50279427
-.8903668,1.8019287,1.8555532
-.84643484,1.3362851,.97575513
-1.2164796,2.0121049,1.8454654
-.60981496,.62615145,1.5376619
-.86682012,.58674419,.779582
-.65571844,.29928132,.22351552
-1.6910547,.0294446,.936701
-1.4942694,.03134352,.26853605
-.48987491,.59951673,.67711092
-1.6268099,.99686719,2.1507558
-.64557985,.60538189,1.1026716
-1.2177641,.29873991,.56026926
-.58808382,.81359892,.56574174
-1.213487,.49285434,.65564512
-.84484443,1.5407825,1.6451526
-.73441248,.57161254,1.0858907
-.93094427,1.4118538,.58894476
-.67129619,.24076169,.173521
-.13834633,.71715869,.13712692
-1.4444865,.40658769,.77738076
-.46117749,1.6546768,1.637466
-.67568453,.2716154,.19132708
-1.0390308,.37970055,.27394641
-.48555237,.20824828,.23098999
-1.4286249,.76867038,.60449856
-.46949417,.85452483,.12282065
-.45294181,.48082786,.48973587
-.63158833,1.2428948,.54700791
-1.0243582,1.0981236,.71700965
-.42023395,.19136095,1.2852016
-1.0945844,.43696691,.34558766
-1.4092839,1.0288632,.73231997
-.68808225,1.2937574,.91458583
-1.727632,.44436301,1.1072884
-.61511328,.77351542,1.3154051
-.88666744,.12925848,.81217676
-.49565531,1.0004711,.55566722
-1.45939,.22431889,1.6863096
-.81497016,1.3885635,.38395433
-.87706781,1.4605157,1.3498499
-1.2305663,.67639062,1.0233093
-.69831821,.86194531,.42741446
-.3616668,.70436619,.51592507
-.79646623,.38309704,.78836868
-.43911601,.66466817,.63656487
-2.4526714,1.3652998,1.8437062
-1.4100221,.94699208,.51516223
-.27409328,.58999107,.72615207
-.59335868,.96026957,1.4933794
-.41929575,1.0656217,.00495025
-1.3827816,1.0213542,1.6291542
-.75649009,1.8714128,2.4690105
-1.3570023,.27817315,.12996075
-1.0226855,.32847234,.78343849
-.57686341,.78156627,.76314573
-2.4187362,.14225758,.7694209
-.37713702,.56498653,.39816519
-1.2125077,1.2969757,.91599755
-.45175238,.63353059,.21014441
-1.2656125,.44453551,1.693123
-.91771354,1.3340015,.90537929
-.67421468,.54632499,.45828168
-.44680231,1.9137792,.58883319
-1.3488148,.06330262,2.0921734
-1.3991036,1.619176,1.930652
-1.2731708,1.4625183,.23646225
-.78588494,.02134642,1.0182468
-1.6678575,1.0964235,.54910572
-.87464977,.10533925,.0794707
-1.2992086,1.4467367,.45230532
-1.3345553,.21931349,2.2058468
-1.3303857,.67945966,1.7960405
-.63840177,.02717123,.46151196
-1.286991,.52013522,.24555917
-1.2343171,.36372628,.10671483
-1.0357436,.84050883,.42894994
-.41445901,1.7286338,1.0812286
-1.2434678,.20870063,.25148006
-.92874472,.21652146,1.2742483
-.53277626,1.3566193,.70811449
-.73085813,1.3825421,.77679744
-.53072699,1.05686,.18125067
-.35261359,1.0104059,.48527932
-1.4609388,.53663777,.82911966
-.79731847,1.7984051,.14391824
-.79728379,.75274767,.22646179
-.81673103,.92826792,1.1845657
-.68719078,.09611485,.08595838
-1.2183319,.36470692,1.4319674
-1.350887,1.3746064,1.1171957
-.68286443,.53834506,.51964427
-.60733781,.92919943,1.6105554
-1.0963002,1.7637616,.94506644
-.69892321,.14244967,.93974654
-.77663459,.0912567,1.1667803
-.66956127,.62089397,.71820799
-.31037962,1.4216507,1.4919029
-.55581474,1.3171278,.43731633
-2.1331258,.1632715,1.1168675
-1.4803613,.62369972,.60426208
-.6384886,.6103835,.92932992
-.48394094,1.6361801,2.1492122
-.51001943,.02648705,1.2110233
-.42758374,.7016143,1.1247873
-1.4477999,.54336229,2.2822434
-.5851292,.6873959,.43821074
-.372839,2.3102056,.57880335
-1.015904,.59822746,.60810281
-.57516268,.99986615,.74241412
-1.2965708,.68979882,.83279306
-.63010131,1.0556096,1.1059935
-1.657917,.25595122,.30582766
-1.8976931,.15173632,1.2570431
-1.2585669,.85922755,.11009827
-1.5346626,.09530747,1.5103673
-.66436209,.61878649,.72484343
-.53501112,.31226984,.22255878
-.61479876,1.0078629,1.71126
-.74030014,1.2452426,1.2882837
-1.2389017,.85099449,.10201695
-.69490795,.78365593,.4182962
-.56386031,.23717165,.18975149
-.88997786,.33915887,.75312336
-.71810222,.31148851,.91608643
-.63946027,.83417608,1.9454827
-.68253483,.45122594,1.4546773
-.58515868,.11497961,.26649986
-.47680929,.44296536,.64078066
-1.0597474,.4893005,.71815424
-.55115835,.72883814,.15934667
-.16755257,.98062952,.05614635
-.59469913,2.7524111,.39173134
-.49988565,.66380167,.086118
-.8121679,1.1326158,.29260513
-.7555985,.32171947,.61306099
-.9774956,.81560636,.26989235
-.60991256,1.2381464,1.4994703
-1.4000185,1.2731576,1.627355
-1.7437287,.93878507,.19031737
-1.1116071,1.0558434,2.712357
-.46374082,1.3994409,.54812289
-.7926253,.42105902,.00506476
-.85324268,1.7613498,.87771591
-1.7949702,1.0980762,1.2253986
-.61133012,1.5985317,1.2254376
-.19279502,1.1031912,1.1717684
-1.4905826,.36312439,.71035725
-.8789224,.5924317,1.5987977
-.41703046,1.0936776,.06179015
-1.3379761,.08460016,.67578673
-1.3373281,.41401338,.23188605
-.5021149,.18759714,.50239851
-.7245425,2.1894896,.66452742
-.50802509,.80904211,.89076186
-1.1085966,1.1350516,1.4411723
-1.2750324,.95255694,.04624847
-.72342645,.68854035,.76872458
-.56779785,.42996064,.48032286
-1.0648345,2.5320453,.00907242
-.48929157,.73059633,.38142377
-1.2505882,.24055982,1.0965235
-1.9712446,.6800408,2.3142451
-1.0695738,2.0004574,.46186756
-2.0140202,.6565543,.97263791
-.52376218,.4786655,.4535579
-.73312143,.45476489,1.1912939
-1.1564072,.21681963,1.386913
-.66689839,.2415439,.96360253
-1.0195865,1.2422952,.32369475
-1.2104736,1.0638797,1.59992
-1.050789,.68573129,1.6204183
-1.2958556,.07958434,.23063102
-.37635867,1.2677602,1.3322071
-.77182925,.28592244,.51352056
-.54002667,.15969417,.70650598
-1.8465569,.52093602,.61572065
-1.749213,.10189185,.38332585
-.53355804,.24741989,1.2038703
-.42080788,.62620885,.09981719
-1.6314113,.91973987,2.068803
-.90537032,1.0900617,1.2854895
-.85356087,.71433574,.5159739
-.33710689,.19228079,.99221738
-1.1547017,1.5951803,.10383739
-1.492225,.83872647,.8936173
-.65782411,.23895992,1.2060125
-.37745952,.5148242,.32689245
-.22608495,1.8226778,.80631975
-2.2645504,1.3101533,1.279618
-.69694411,.34319764,.97181706
-.96330899,.46181197,.94803025
-1.9779576,.29681836,.16567222
-1.3281912,.17703521,1.2858725
-.93461198,.6338592,.70138694
-.73535905,.40135573,.41376873
-1.2050931,.74529903,.86833858
-.50666793,.09458852,.46808026
-1.1740788,.75505783,.3858552
-1.6587023,.56405615,.62163767
-.92405737,.27305178,.471852
-.66461289,.8831881,.02107793
-.67990396,.064903,.51494123
-1.3678796,.24315359,.38522982
-.31391874,.636723,.88694743
-.61427609,.82849145,2.5031143
-2.2607554,.23839347,.68144355
-.95622792,1.0805661,1.1442949
-.68366325,.748309,.17140617
-1.579133,.26205388,2.1024167
-.78830602,1.0954325,.35682023
-1.4304074,.0802189,1.4261492
-1.3154581,.99421544,.51831242
-.79143509,1.0090244,1.6658002
-1.1944662,.45870835,.78815074
-1.3274169,.98289382,.74528202
-.80558477,.01681796,2.2270131
-.8290251,.01566042,.69123896
-.53924662,1.3342485,.02121824
-.32785306,.63441102,.79767057
-.71710511,.6125285,.21876191
-1.7653455,.72768373,1.8284572
-1.6787354,.68960647,.02072108
-.9121553,1.4838353,.24875599
-.46541669,1.5750917,1.443297
-1.1603684,.19072424,.39200619
-2.1838286,.38572949,2.2929475
-.5144976,.42472758,.48177091
-1.6778322,.35594955,.97838538
-1.0720405,1.5563507,.04090553
-.52275289,.28544863,.51015754
-.79699213,1.9684276,.83129005
-1.936568,.75695522,.25401853
-.40330561,.77470661,.1101458
-.31109818,.67124657,1.6281653
-1.8195545,.91295824,.97788245
-.90232754,.89630833,.58634978
-.66421953,.93891918,.02569861
-.87398809,.73935196,.0848318
-1.2741075,1.458493,.09950267
-.67788143,.90291551,2.0739868
-.6061636,1.5263878,.39953287
-1.0672865,.53947475,1.0268236
-.45351842,2.3225777,.20530159
-1.3236972,.54054475,1.8928406
-.90692668,.7171701,.95014821
-1.3271634,.39516297,.29623117
-.25978919,.06170374,.11208982
-1.2270224,1.7414301,.45091493
-.56701718,.92605337,.59890612
-.25397991,.39557547,1.0722127
-1.8177901,.9103834,1.119097
-.99994307,1.6584608,.55719209
-1.1812031,1.90359,.94799386
-1.6328385,.0780611,.56185777
-1.0073744,.60099016,.03296777
-1.1366622,.06854639,1.836674
-1.26004,.62078128,1.1695166
-.66121822,.42328311,.82991025
-.62203166,.25163356,.06427661
-.60490434,1.7196437,.25168438
-2.51483,1.0405612,.84574437
-1.0642259,.37282946,.64619264
-1.216324,.31884788,.4182969
-1.5417571,1.3908049,3.511586
-.51727752,.37959194,.06517874
-.87803608,.09275774,.77808556
-1.1470058,.05466513,.35247293
-.61227881,.04183857,1.7319608
-.75561675,.81757819,.34243224
-.84503049,.21636949,.19856508
-.69833266,1.2388252,.97448716
-1.035121,.68203654,.13795286
-.81466032,.49139034,.10623116
-.65604782,1.0841585,.27910952
-.62676157,.59614064,.22744695
-1.0641388,.17441743,1.0341412
-.47649613,.49443796,.40777664
-.65298365,.08923896,.83163978
-.79201495,.2638603,1.7284984
-.61727808,.84030595,.00382963
-1.2297954,.52203997,.23763475
-.44333697,.0639676,.03534269
-1.4755893,.61245752,.99339327
-.76337747,.94024874,.02976213
-.51409367,1.2504194,1.240037
-.38977635,1.144335,.96894879
-1.2149623,.2492316,.66552248
-.95801259,.44873944,.68817689
-.50555153,1.4554749,.02160205
-1.3334835,.96640626,.72456436
-2.992013,.12917795,1.6387437
-1.0212468,3.1990188,.19107351
-1.4633779,.9029231,.30436825
-.61370035,.3254869,.19197354
-.3981083,.86131379,.40047585
-1.09151,.49984144,.67417803
-.63279654,.81325912,.40911314
-.38398186,.14052475,.15783281
-.63509761,1.1832077,1.9893392
-.47396039,1.0983903,.1174228
-1.0506916,.74564329,1.2685577
-.6086158,1.3850491,1.2134865
-.86182331,.44362271,1.475156
-.40185756,1.3716916,.24426889
-1.1246871,.93491452,2.546432
-1.3492946,1.2373854,.76562096
-.85610142,.48734649,.39136954
-1.7046869,.40873869,.9716072
-.8788281,1.8478974,1.3676967
-1.4679177,.0229869,.73163571
-.62865669,.15919098,1.1973031
-.80187408,2.0207824,.41215913
-.36849458,1.6358024,.95957618
-.8487972,.41074803,1.4132877
-.69707605,.78172158,1.6991114
-.58040733,2.7741378,.34740382
-.86419687,.76366817,.41807986
-.87237457,1.1444961,1.8086269
-.39168892,1.404824,.21748112
-1.3091318,.60492785,.74638637
-.40895647,.65150123,.27662383
-1.0475368,.07262088,.01378417
-1.0576789,.83750463,.39638499
-1.1877783,1.4671217,.29085389
-.38457361,.51446884,.60121322
-2.0413666,.32670035,.81275056
-1.086672,1.399385,.74159687
-1.5998493,.23655577,1.6089816
-.92533473,.30708026,.08699317
-.56073828,1.5920788,.46994715
-.6610896,1.684147,1.6428877
-.6156305,.06185666,1.061928
-.80925642,.64879235,1.3648795
-1.3430885,.754331,.81898441
-1.5058287,.65047516,.13479383
-.5593614,1.0229721,.22821617
-1.340007,1.3913881,1.3268439
-.42862977,1.4582726,.53247532
-.44920881,.01054844,1.0004048
-.92590449,.33487771,.37193172
-.9574811,.50250222,.99220883
-1.0762137,.47238792,.54697667
-.65484661,.01070811,.707232
-.85845686,.50641868,.22187236
-1.820634,.70435037,.69659951
-.97397495,1.6924954,.04375542
-.26053266,.35616304,.85605261
-1.6925184,.45338154,1.0996559
-.43952675,.63270879,.78813971
-1.5511277,.37481768,.4889931
-1.1234715,1.6326095,1.6097538
-1.3390575,.86948732,1.6985391
-.95279681,1.1398902,.48225951
-.61452681,1.4328088,.43398644
-1.1477915,1.0982031,.90081718
-.31622166,1.6032439,.53216389
-1.285186,.30295152,2.1491364
-.96614206,1.119392,.10252739
-.96200566,1.1153113,.32905354
-.6153228,.53943674,.07989092
-.39886367,.85990304,.94955823
-1.1287626,.26495713,.11821977
-1.0607809,.51373507,.37729865
-.73634159,.87828715,.22869819
-1.3276832,.86221396,.88986034
-1.7169815,.08380125,.01083445
-.21484776,.87617875,1.8502074
-.69917829,.4121393,.9890236
-.82594382,.00859191,.75122494
-1.9394474,.95030429,1.0440116
-2.0227855,.28298769,2.2915283
-.49594458,.5118941,.83738795
-1.2828124,.68121588,.99728602
-.74197738,.79903027,1.3893461
-2.7728243,.25334695,1.2930223
-1.1795617,.29012387,1.3629175
-1.2901386,.91280712,1.4827044
-1.3195389,1.2451134,.31945839
-.54943947,1.2221143,1.7312673
-.58723388,.11326826,.99399511
-.94119784,.34298783,1.0033407
-.91045296,2.5105944,.47545276
-.28216888,2.2359611,.48192185
-.37818762,.56563168,.79584685
-.49319141,1.5085395,1.6811602
-.29748687,.48379702,.12348011
-.63462534,.20522603,1.0936289
-.6640248,.38576871,.01127277
-.89448419,.67237697,.86698813
-.6196514,1.5391433,.1202412
-.47633505,1.792387,.22976014
-1.5719675,.91272066,.59748783
-1.3756886,.29045622,.75688256
-1.9112927,.18950591,1.7840379
-.64472821,1.1895465,.68181557
-.85676212,1.2420267,.14862508
-.68155063,.03103501,.28438581
-.77852058,1.2451532,1.2616572
-1.1687201,.26255176,.17581714
-1.1191875,.91211735,.18685355
-.78200727,.98857122,1.2606789
-1.5055613,.78873659,1.3182626
-.9131078,.4050332,1.9026842
-2.0513696,.35075807,.39741255
-1.3101578,.02565922,.81412836
-.5406914,.28363748,.28754312
-.83302487,.21250079,.30431189
-1.3616295,.98766318,.15091712
-1.1713212,.65692456,1.7236967
-.5998365,.07583609,.13219578
-.5488922,.52138759,.7128528
-.3697227,.94586773,1.5342095
-.7314799,.01257007,1.6445769
-.51583817,1.0662839,.5384893
-.65668904,.51431873,1.0662594
-.87079338,.27461714,.7939308
-.45199128,1.5273433,.7941132
-1.0378428,.95200351,.80019874
-.73969178,1.540505,1.868111
-.74403034,.76884655,1.2123942
-.91296781,.58874467,.05235964
-1.6241826,.47070907,.38458454
-1.4725432,.52319011,.80706374
-.73577145,.45558795,.37881104
-.5174315,.87568981,.86667673
-.88107602,.18233595,.8151249
-1.5378242,.32631625,.36825068
-.71553272,.27867022,.7645827
-.44478663,.47349036,.63157683
-1.4000188,.23650827,.80545648
-.42545176,.66962699,1.6309488
-.7292928,.30155626,.38965385
-.51296406,1.145427,.99373696
-.90800894,1.3071181,.00263658
-.9406007,1.1482376,.4335813
-.55172217,.65440827,.66342748
-.32200959,1.3104365,.0882224
-.44180743,1.4451504,.2944354
-1.035972,1.8156345,.54690659
-1.3149949,.88659951,.09366339
-1.4945709,.13316781,.01579108
-.33535078,.97861396,.2963224
-.77948932,.17720024,2.0840771
-.80321768,.42459585,.58838373
-.81380768,.49116353,2.088016
-.78439806,.4341781,.87297504
-.44480324,1.416256,.13742581
-1.8225068,.0425273,1.8756451
-.53189488,1.8107426,.10470828
-.92865193,.22004499,.16448244
-.94819148,1.8541902,.44917315
-1.1982275,.07416088,.44365878
-.4159434,.55086251,.19737572
-.97331128,.01711353,.61501428
-1.8582288,1.4900848,1.3007418
-.7400676,1.6136018,.19993127
-1.1011664,2.1688661,.98639213
-1.0976099,.49186808,.91329728
-.64273494,.60793752,1.641071
-.56510926,.32416504,.88165715
-.35512886,.65700615,1.2089218
-.68785473,.74156585,.84194585
-.65622299,1.2450544,.04799773
-.65817986,1.4243223,.07849187
-2.9886852,.12398593,.34622997
-1.0256803,.60157007,.08965928
-1.6991751,.11190857,1.667671
-.89302619,.31037662,.21986439
-.65155032,1.3228253,.83793096
-1.0627817,1.3375963,.96846791
-.42263473,.82858174,2.3523248
-1.0205158,.41590859,2.1822911
-.82087399,.39793457,.13316584
-.53878535,1.4445381,.55352497
-1.0007479,.99696389,.9082501
-1.4737195,.81590005,1.1734515
-.79337239,.6148135,.75188195
-.88708724,.68740217,.1300576
-.7215146,.83343083,1.1374906
-1.9712642,.28244934,.33130874
-.54417119,.03065378,.33044607
-.50175061,.37620933,.68176926
-.85186299,1.2487619,1.9930393
-.7435018,.14224251,.94561152
-.40615814,.33478764,.36142599
-.93517057,.85153358,.91182046
-1.1123306,.19120241,.42577176
-.51751419,1.2623219,.2489011
-1.9268369,.2861739,.77654433
-.81650804,.59650145,1.0952676
-.22788398,1.7384512,1.1388817
-.44498948,.56921059,.84204079
-.60667325,.71170866,2.0581575
-.81107858,1.3491779,2.1406844
-1.0486268,.62336563,1.5384283
-.45195518,.99325711,.47701073
-1.8367185,.18168535,.00077557
-.84242922,.18958623,.52851921
-.33285572,.74243129,.50365053
-.75518173,.6783754,1.0678479
-.55498908,.46286059,.97265498
-.42670807,1.2025836,.30222344
-.50843004,.32147284,.11075256
-.80035377,.90495147,.30607074
-1.339909,1.0563721,1.8533862
-.97604603,.49930146,1.34867
-1.5137959,.06570949,.65244623
-.80324355,.20939052,1.6682465
-1.8352921,.15300026,.34592949
-1.1524637,.11433398,.64529077
-1.0889833,1.8231745,1.5412452
-.76426216,.00357709,.59904461
-1.0121641,1.6028694,.5506431
-.90618173,.54419891,.69742467
-.60605528,1.4899357,1.1814022
-.37484365,2.1769593,1.2277737
-.57207516,1.2818617,1.3812857
-1.8023888,.39211322,.01283563
-.47723551,.13592427,.10510118
-.66935302,.56956457,.76439392
-1.4528044,.87661468,3.7478175
-.89340355,2.0614924,1.5449686
-.86937054,.29155141,.40991434
-.99979539,.64027861,.68757576
-.55138796,.47218687,.61519518
-.83833259,.54820407,1.0193079
-1.3238688,.0646147,.28730838
-.69370317,.01703267,.09212433
-.94252886,.56976352,.47073802
-.62127625,.50368035,.43523048
-.51909717,.97450686,.93567089
-.74521538,1.3014465,.20164346
-.66383842,.88399435,.66712291
-1.2904562,.62106854,.44876605
-1.3951696,.77346815,2.4248265
-.25368284,.64624575,.04134322
-1.1909742,.4387559,.5467819
-.8935414,.82318768,.43982312
-1.2388944,.41106153,1.677264
-.43037906,.64619983,.05624185
-1.0358489,.56962515,1.1797704
-.73858428,.31589477,.47145204
-.33500698,1.9853124,.83542561
-.59643048,1.8120222,.90788594
-1.2514343,2.8807035,.91335527
-.99468097,.98479266,1.283087
-.5747947,.88943818,1.3960794
-.6594801,.13366046,.42781398
-1.3153333,.91204212,.72440021
-1.2635406,.16962635,1.5196205
-.32110588,.63182443,.12074597
-1.2340532,.57780803,1.0118556
-.81795655,.95570855,1.1336126
-.92076079,.22212162,.25547613
-.40512476,.94193846,.29720694
-.30517033,.37224204,.76756658
-.63146964,.54464768,.54584767
-1.6447364,.30273635,.82356785
-.84259186,1.334788,1.2259492
-.83780112,1.1402242,.09194308
-.60847752,.12637464,.74843737
-1.4126278,.65003869,1.6373134
-1.3860253,.31754441,.71706824
-.81484965,.18027054,1.8029685
-.51863261,.7386288,2.0732122
-.77227889,.94547523,.7028977
-1.2529926,1.0371832,2.067672
-.63587102,1.7314688,2.55633
-.62412753,.24998514,.25186538
-.63965615,.32595245,.74078277
-1.0383146,1.2644294,.69307544
-.75733462,.30208964,1.0954786
-1.0324746,.65174033,.09757847
-.74779131,.44164017,.24413636
-1.7845322,1.9908741,1.8052401
-.54421754,.5002698,.78237395
-.70072489,1.1108223,.3321127
-.93187262,.74911891,1.9599852
-2.4496138,.73546656,1.3632234
-.51367353,1.2857315,.0097027
-.968625,.73428336,1.8911642
-.4103123,.92227025,1.4429856
-1.3791411,.93642454,1.2239387
-1.7859763,.09362319,1.2969549
-.36561911,.73299688,.58262611
-.33691009,.60890585,.1194619
-.93820263,1.9514156,.2137393
-1.778266,.22003282,.07939295
-2.6241847,.0054296,1.7717669
-1.080692,1.0112047,.50951251
-1.0977671,.03486325,1.8939707
-.80777483,.18051975,.43650064
-1.4006323,1.3810735,1.0376402
-.57806839,.23277554,.79286639
-.5526068,.81043119,1.6080759
-.7386486,.49218586,.1157681
-.82109219,1.2974091,2.1677742
-.74599839,1.722914,.81937176
-1.2081925,.93566767,.75488764
-.74455036,.00389045,.57712701
-.84241505,.29558916,.70745047
-1.2600114,.31320107,.15409233
-.81071489,2.444755,.39184607
-.89517572,.2512339,.65503451
-1.2740605,.82796461,.6684505
-.37572709,1.393457,.07399946
-.3483328,.66293278,1.7290735
-1.0540888,.61552518,.25675201
-.92125081,.10662909,.1906698
-.85913318,1.5603884,.49212254
-1.1240675,.18045985,.9160165
-1.2982918,.4752623,.16719025
-.44276304,1.0233769,.49812258
-1.6252943,1.1307804,1.7635024
-.74886986,1.3909238,.73058699
-.91626648,.3799616,.24074411
-.40904488,1.4707564,.58556941
-.57677517,1.753289,.0000382
-.98044482,.52356381,.96469864
-.79744126,1.6523909,1.8021762
-.37917144,1.3604142,.6528129
-.76730195,1.6414002,1.1711442
-.33742349,1.9540012,.3508126
-.57848999,.6815009,1.068007
-1.4571178,.45453218,.06999632
-1.3631603,.53806247,.18500461
-1.5088898,.37366693,.54458396
-1.005339,1.0335673,.80485501
-1.3088912,.34221831,.35246623
-1.5890248,1.4553374,.54879606
-.57280964,2.3286599,1.103969
-.75638159,.35209578,.37828786
-1.3995721,.29475238,2.8111748
-.54331982,2.4077506,.06994226
-.63613311,.15935194,.4018136
-.56339764,.37169225,.12809619
-.80713954,.19482149,.14549072
-.67885947,1.078193,.40911142
-.79231745,.69603821,2.1111511
-.83260774,.56023356,.62096716
-.42322266,.43706853,.20031754
-.35743849,2.3853523,.18903894
-.60233841,.2842864,1.1781855
-1.4619883,.60823877,.73996187
-.72309974,.07896719,.03914938
-.93945978,1.3759911,.19431722
-.56714193,.23791247,1.4501087
-.85762614,.75136065,.88982109
-.79832363,.81799582,1.1521641
-.87437075,1.9158098,.40248569
-.31326555,.56326251,.89838209
-1.3512362,1.7445778,.17337115
-.64015753,.83816892,.25651913
-.41745427,.16099283,.70378443
-.66665824,.94739756,.55411147
-1.1100079,.74516833,1.1792152
-.76004599,.81103689,.14059353
-.92861793,.09428428,.55639101
-1.2540919,.12613867,.14181544
-.62838596,1.5843677,.9471698
-.63477676,.20082085,.22841776
-.39422685,.58072821,.30027756
-1.2064121,.93384373,1.5331543
-.39534941,1.6853165,.06518469
-.84645835,1.2422076,.18017462
-.59325427,.57812911,1.5798131
-.60086101,.42481608,.07754402
-1.0433831,.59358687,1.0434061
-.32163027,1.7409245,.45777467
-1.2129282,.36181742,.73259942
-.56655137,2.7666555,.82046625
-.78771766,.77952216,.10378938
-.53260997,.49646884,1.6535898
-1.3967735,.25894511,.97730247
-1.3977687,.83542683,.79127023
-.83808008,1.8558617,.29125057
-1.2320504,.19057996,.42966721
-.56501131,1.9956998,.20498548
-.87374861,.19537187,.3771533
-1.7955835,1.3697112,1.1243497
-1.2146609,.50968194,1.0745701
-.91939623,1.1420411,.18983679
-1.1916294,.62435633,.73845934
-1.1868149,1.0611382,1.1878905
-1.2639055,.51096206,.28237159
-2.0066542,.10606033,2.6535067
-1.1700477,.20119798,.68834855
-1.9325776,1.3252935,.63951903
-1.0930079,1.2344739,1.8604517
-.80797355,.82889549,1.4570444
-.69691025,1.6672777,.02365125
-.43094331,1.1743864,.16745578
-1.3840606,2.0584566,.19214831
-1.027648,.9143264,.03306817
-.97042263,.01422706,.54346516
-.84142116,.50717279,.10233717
-.44817191,1.877795,1.6645582
-.56377935,1.1247912,.37012196
-1.0184071,.15379492,.20392159
-2.3183882,.91510282,2.3341694
-1.102399,.03918096,.87013957
-.76574829,.87970216,.0436095
-.57658917,.70356978,.65569207
-1.1909786,.05970278,.68605026
-.5629038,2.1866383,1.4621554
-.71769052,.90601774,.89058952
-1.0246048,.47248044,.716832
-1.0357721,1.6383169,.40172392
-.96639099,1.9216954,1.0119531
-.76916862,1.5041582,.22194318
-.74143151,.00580472,.31578884
-.57886525,.46681907,1.6402384
-.92721085,.35225519,.90118201
-.57002192,1.8676534,.72298668
-.44539904,1.2754225,.59495269
-.86821487,.68745038,.66961187
-.86999859,1.136468,1.1741329
-1.9936699,.79740096,.96503947
-.55839482,.32732413,.15359511
-1.2198198,1.1292109,.09053808
-1.3763558,.08332394,.19183254
-.38015154,1.2295605,.66764555
-1.2146106,.65152545,.11871188
-.87626355,1.1358527,.85857441
-.71015502,.95801388,.15986665
-.70820744,1.7343456,.33480197
-.19387222,1.3385604,.25055242
-.85290874,1.4364184,.82274332
-1.0735334,.60509038,.63248686
-2.3708595,.38708892,1.9820899
-1.143433,.02781132,1.1134854
-.73665807,.52365762,1.1885837
-.71106811,1.1645377,1.182186
-1.1621833,.17182026,.19602229
-.17842604,1.4495738,.20612674
-1.9619911,.10714888,2.561591
-.95469407,.72440145,.20054274
-1.0140997,1.2043619,.02502504
-1.1606224,.79833165,2.120208
-.43770643,1.3196587,.63231279
-.69303297,.74753857,.4417584
-1.234353,.10868588,1.6534577
-.42623601,1.4077468,2.2450664
-.81408026,1.4529682,1.7357342
-.99687125,.70813848,1.2512464
-1.4826955,.47252075,.08774273
-1.1461527,.12132082,.77708653
-.71033934,1.084599,.44297536
-1.1045427,1.891063,.50998684
-1.9319603,.93962353,1.0084205
-1.1090536,.74049245,1.5163329
-.76577107,.06576143,.04214434
-1.374702,.39528663,1.7656048
-.6759703,2.6083226,.46774217
-.56244299,.15629067,.19124597
-.70245965,1.2120902,.74692361
-.63382649,.56907092,.51332465
-1.0768588,.33230686,1.0928782
-.94999143,.17988874,1.4560346
-.90550181,.28990957,.08655958
-.47555671,1.5409506,1.3222284
-.4468297,.52170832,.90100958
-.8184975,.54890297,1.3667273
-.51041057,1.5219253,.07589772
-2.168447,2.2464225,1.0226121
-.60734261,1.4665871,.26919916
-.71563237,1.4880499,1.3887097
-.63431269,1.1589787,.38058814
-.90129452,1.5682212,.20109119
-1.907528,.88585188,1.4277242
-.80920877,.42708069,.75537977
-.66825333,.33162579,1.5225769
-1.4685191,.15808009,1.0399489
-1.4256229,.7527181,.01822099
-.51827559,3.119791,.89576242
-.765881,.93557674,1.5028843
-.88508981,.1654815,1.6426027
-1.415065,.61840437,.48878163
-.52806831,1.0236248,1.6197949
-.70076508,.48633268,1.4568417
-1.3424494,.73844082,.2420217
-.85925569,.33909526,.29180813
-.92869511,.29877653,1.7013245
-.68045947,.37707384,.01888087
-.72256704,.3667023,.84052406
-2.2058423,.37293067,1.3704005
-.49062052,2.6213863,1.7951673
-2.183499,.94602508,2.3327524
-.69511279,1.1595187,.75169414
-.70274589,1.5911558,.71130606
-.6777028,.93733429,.18218264
-1.0281431,.26154559,.50716076
-1.0936668,.84215556,.04285925
-1.280388,1.3568595,.95880998
-1.2974131,.74981122,.03819153
-1.4843558,.59468157,2.0851232
-.55473031,.93435621,.21586015
-.84248075,.01072542,.43700218
-.87851928,.70545625,.77879941
-.65309902,.40171523,1.5189749
-.57644559,.46366704,.75029879
-1.3409931,.13062072,1.3455687
-.57664275,1.0276692,.68552115
-.78671953,1.0306845,.21355878
-.64156889,1.4858713,.48463474
-.3101362,1.5388871,.2059554
-.35920708,2.002099,.89308845
-.50143531,.42590513,.72794356
-.51618421,1.0606877,.58839362
-.64195082,.40450952,.3337621
-1.2084796,.07342278,1.2890573
-.89881539,.06142364,.20882513
-.8001337,1.1528069,.79249512
-1.8107122,.37608896,.65469871
-.72707638,1.593189,.49086389
-1.0824653,.88778314,1.1002026
-.5333127,.29688435,.99285941
-.96699819,1.0149841,.83988864
-.61969324,1.3957371,.49194285
-1.2773881,1.0955775,.00906312
-.42459997,1.1225785,.61749471
-.67753816,.46566453,.29716794
-.42424643,.34211045,1.3605798
-1.5908744,.56972125,2.0993988
-1.0253624,.86951059,1.3811829
-1.0681412,1.3624388,.4182447
-.82859841,.33643688,.76396442
-.49237672,.3245545,1.5600074
-.6575905,.476556,.37706967
-1.9262869,.19176039,.74906881
-1.7667199,1.2791372,1.8863923
-.20214901,2.7634509,.18370978
-.53286841,.95539663,2.2371947
-.8362861,.09272047,1.3324705
-.60198478,1.8730427,.21068619
-1.0555296,.55846981,1.8320224
-.47647683,1.2057006,1.4787514
-1.2471572,.19617785,1.3877957
-.78458864,.6952136,.6701822
-1.0478313,.46000261,.11334006
-1.3883951,.06172826,.8259357
-.76455377,.42286629,.18413966
-1.0230116,.54664613,1.3148019
-.7290598,1.7369355,.72423022
-.48906717,.27157048,.07792522
-1.2845004,.07856191,.34150228
-1.5889264,.23833085,.73015901
-.93238477,.88297517,.01269701
-.52037411,.63232572,.44724286
-2.1055516,.1895008,.20127048
-.77975616,.62429008,.12259622
-.28051056,1.097903,1.2673406
-1.7653281,.17554946,1.1722123
-2.2209128,.78243044,.92269198
-1.3885199,.15877687,.7263115
-1.9509104,1.6715992,.01294765
-.89879492,.23331647,.69275234
-1.0886632,.06245351,1.120341
-.7816594,.28742819,.39081216
-1.0884032,.19088944,.19153091
-.49619826,.03750677,1.9612525
-1.380513,.21583234,.92881005
-.62958661,.24587448,1.1335671
-.6159412,1.3110574,.68082947
-2.4193285,.14076565,2.4255001
-1.6525019,.27123844,.21423584
-1.3042856,.07692115,1.4664754
-.95189073,.40139136,1.0547211
-.44123378,.9001054,.97061856
-2.1105865,.25373463,1.1316731
-.5668875,.81159467,.52599443
-.74091284,.63887306,.52841393
-.81789448,.5926335,.93480937
-1.7440215,.1187642,.84983379
-3.5619197,.16655939,.80046675
-.74608841,.26135109,1.3438816
-.4538615,.45572447,.38887708
-1.3526574,.8958224,1.7914204
-.71112549,.4870828,.71073241
-2.382755,.32995611,1.3220042
-.98126631,.81846256,.68793839
-.90969399,.95500347,2.0782284
-.76835402,.15502788,.36226311
-1.0240559,1.633479,.38447854
-.51903876,1.3561998,.85811566
-1.6492228,.06746788,.85275388
-.96559411,.74283853,1.0885836
-.77385021,.99889086,1.7065947
-1.2514382,.06565369,.28539951
-.17734268,1.7852737,.12480367
-.3913499,1.3172726,.69463533
-.53435672,.27050235,.97183121
-.5065393,.88572638,.90182124
-1.1553311,.95726743,.72687849
-1.3369388,.03823137,.85213493
-.69842096,.87055585,1.0596505
-.74126017,.85740805,.98279065
-.79426483,.96730916,.19550863
-.61639075,.99558048,.72971687
-.63475179,1.859435,.72010546
-.52227292,.25708916,.77671027
-.68498466,2.595429,1.1392599
-.89485062,.79868659,.18659906
-.46650905,1.1914276,.61866637
-1.2069322,.41690237,1.9657853
-1.0052447,.68451988,.51857533
-1.1134645,.88995304,.82885523
-1.0722335,.9661135,.22233409
-.67359885,.25329679,1.3661839
-1.2153644,1.2023641,.07485303
-1.8597302,.48962387,1.0376825
-1.1437527,2.0639092,1.4464747
-2.0770281,1.0327698,1.1236018
-.83420871,.73970163,.95940615
-.94927811,.8255318,.89800524
-.39907321,.79640849,.05606944
-1.4546062,1.666266,1.1862012
-1.8837131,.53903858,1.9490628
-.5195613,.14289565,.2149874
-.8983924,.03254976,1.3743065
-.8551912,.15398248,.11047296
-2.0915293,.35085904,.63274605
-1.0477613,.12801667,1.467096
-1.0524767,.30466018,.25030688
-.7726164,1.5157824,.52314648
-1.0829486,.28936518,.06175214
-.42628137,.80822311,1.068811
-.89685251,.77634207,.70447005
-.89827622,.42662418,.86199427
-.37193242,1.4388173,.75952137
-.51199185,.49875956,.34198392
-1.4910183,.898196,.44455801
-.94697943,.22934427,.25632544
-.24312518,1.2079194,.84618156
-.69366966,.74049938,.28831271
-.81573147,.2539257,.34036255
-2.2478011,1.4339923,.99710722
-.79347986,.28634373,1.310821
-.61003179,.82784152,.96256096
-.72759336,.27426304,1.1726432
-.61582659,.09066903,.23313844
-.85843569,.17590196,.65769799
-1.5316913,.12022718,.84719148
-.36327505,.88617978,1.5361273
-.58983277,.69159856,.27481469
-1.9411009,.09941127,1.6288929
-.86604133,.79265515,.53246988
-1.7586621,.35983727,2.0370542
-.78588053,.59774937,.56058039
-1.2787904,.07760599,.23890235
-.53702533,1.2904248,.33111804
-.91263692,.94350955,2.2991774
-2.2891147,.57490593,.07599132
-.51884865,1.0839699,.52700533
-.71569637,2.6406,.6432822
-1.3627996,.46894252,.98372624
-.25800468,.62869477,.05019518
-.29657539,2.0359909,.07594305
-1.4404164,.73314953,1.3670979
-.3106386,1.5720257,1.5555415
-.63541381,.55086781,.07726358
-.68961323,1.8807533,.59469761
-.74881356,.54220487,.01085302
-.9973646,.17925629,.77930903
-.64381701,.01826327,.73964091
-.66808633,.09640193,1.5296326
-.96106636,.30668718,.25938816
-.72292399,1.2851882,2.2085228
-.78865175,1.2604068,.57514814
-1.1582045,.4857994,.88555072
-1.4066981,.35415727,.99489379
-.64351694,.54034939,1.6771117
-.99097127,.09516022,.59880619
-.7644635,1.0440205,1.0964996
-.35682216,.9643439,1.5109815
-.66848862,.30789547,.41614924
-1.3850969,.65681773,.04395607
-.56685548,.68324611,1.584658
-.74706034,.90512494,.31379714
-1.1549362,.6914984,.67531427
-.77526073,.91738357,1.2207955
-1.0335294,.38974905,.84063965
-.65492656,1.2931086,.54435801
-1.6072197,.70881757,.32722391
-2.7910759,.04960538,.34979498
-1.180399,1.0700756,.03272428
-.33357727,.69269601,1.1633913
-.83565224,.63871895,1.2746182
-.25524206,.74971962,1.2279695
-.41023619,.97349953,.68979904
-1.1807322,.37702703,.22202047
-.53304297,1.350728,.0913188
-.73369887,2.0850958,.16970366
-.48972789,.84398055,1.1430584
-.88096984,.58922944,.33414754
-1.9924075,.29692101,1.7701439
-.43576421,1.8768387,.00230379
-.80253213,.16289507,.66755569
-.38859394,1.5845183,1.1505282
-1.1687375,1.0173729,1.7276617
-3.9667645,.98586637,.27674366
-.58850744,.14783543,.04063834
-.54315803,.03651551,.82363016
-.57777274,.02477896,1.0036998
-.6709763,1.8907155,.91548697
-.57698357,.71279493,.11928878
-2.3380293,.65328914,1.1940761
-1.7573208,.44966107,.59738713
-1.0436517,.55950663,1.1236023
-1.4288964,1.6694258,.91191911
-.47758693,1.0238217,.33662824
-1.6532446,.71171958,1.4135434
-1.2205573,.99543877,.60808459
-.80672495,.15233094,.185388
-.37626163,2.4259051,1.9572989
-.51728205,1.1736834,.35655472
-.50442482,.17087482,1.7249557
-1.0908256,.90886603,1.2587565
-.82669079,1.5010878,.26221513
-1.2722907,1.1441171,.69092343
-1.1308095,.97717881,.45136812
-.51483073,.40643947,.3205554
-.61622519,1.3153282,1.767963
-1.2136643,.69165458,.46950703
-1.0759239,.86569058,1.9588674
-1.1125289,.17820819,.09607314
-.70441083,.94185397,1.7200636
-.49450989,.5784437,1.0905836
-2.5786222,.37839553,2.0397694
-.72950614,.43122812,.02128773
-.55353706,.70923487,1.7001062
-.82642889,.51993898,.08691439
-.99724645,1.4688026,1.7974192
-.89082478,.05057403,1.118117
-1.130527,.43418948,.83188579
-.74935145,.01032988,.73958344
-.42809225,2.0001845,.09789531
-.58437171,.15291389,.77206381
-1.0545624,1.2824409,1.0224429
-.64589299,.51796963,.27047497
-1.2465817,.18936543,.02881629
-1.6196712,.8857149,.32648611
-.86536411,.30238164,.14372941
-.9420447,1.0229504,.20707646
-.47701755,1.8392095,1.8590809
-1.1589787,.95148743,.15702656
-.87224284,.11472561,.560455
-.46414255,1.9675638,.7400013
-.65751989,2.0095532,1.0171505
-.39588196,1.5921515,.15236675
-.82656999,.84438171,1.5581889
-.96168855,.98403462,2.0122591
-.53625148,.41206504,.40206166
-4.1288139,.32349393,.51928878
-.47679076,1.2864434,1.2725922
-1.0291114,.44431932,.25500107
-.6157849,.60592507,1.0016722
-1.516945,.09735492,.02067488
-.59324424,.57312797,.19203543
-.68944487,1.3493383,.8902446
-2.0179827,.1113851,1.703904
-.42980663,.03306957,.57570827
-1.0222703,.48517305,.02365144
-.94383631,1.6154377,1.6266694
-.32002718,1.7177143,1.0084513
-1.49908,.21248294,1.2144191
-1.3158414,.9737821,.02227344
-.82814254,.1195624,.46763507
-.676072,.02515369,.28776891
-.37282289,.68830347,.11895617
-.95463772,.15457585,.31873081
-.44534708,3.2196397,1.902875
-.65001065,.18887488,.35591498
-.80378439,2.4737064,1.2006768
-.97184345,.02892476,.55576375
-.5823292,.19776008,.00124209
-1.1081173,.140854,.67800438
-1.1047898,.37499784,.40482782
-.57297008,.43947802,1.4006888
-.48293623,1.6686517,1.7161377
-1.1446472,2.6026965,.48117633
-.8278597,.05405743,.73900033
-.482427,1.3786594,1.2209957
-1.2642145,.0493528,2.3833525
-1.3399337,.79232274,1.1121277
-1.1207631,.1535729,2.6046614
-.6666295,1.0859953,1.4925418
-1.2980876,.00145775,.40524308
-.87986536,.43977012,1.254077
-.76495392,.48708531,.76999434
-.22819188,1.4512319,1.5559066
-.29798017,2.2539215,.5195594
-1.3279845,.01138959,.52542843
-.55204144,.6481368,.4711147
-.7371133,.13344627,2.5217731
-.97721621,.7278153,.00623685
-.71864568,.36413202,.14922142
-.32531696,.93266678,.40972811
-1.3275944,.8489246,.8918725
-2.1051261,1.8318485,.46489329
-.56928496,.74741243,.49478537
-.55132374,.15612873,1.7678138
-.64968761,.72797413,.60331527
-.7593706,1.1857406,.16551784
-.49452553,.65688524,.05986132
-.96591007,1.5824132,.95557957
-1.3949041,.20959835,.15273517
-.771495,.62332057,.90622162
-.99939771,.21866531,.05581684
-.5794509,2.9343428,.81273465
-.65157422,.96315393,.85563162
-1.469735,.44554454,.22227611
-1.4194225,.24906027,.39311674
-.69578976,1.0823032,.30349019
-.53261193,1.0459475,.36097992
-1.2294385,.96887116,1.3764715
-1.1397207,1.9087721,.16810686
-.93723419,.03274611,.50538168
-.744357,.18586873,1.74743
-.63142371,.21072381,.79897729
-.24490046,1.5476428,.55420046
-.55500339,1.1142922,2.1502788
-.71890506,.18451822,.28961782
-.67832252,1.7927293,.9086118
-.90010092,.84949688,1.5537602
-.74141497,1.2130596,.12005033
-.33788184,2.3243392,.53401343
-1.12519,.2849701,.17433451
-1.2978261,.09179766,1.7197854
-.43539528,1.0530077,.44601979
-.93269848,.8269831,.87451665
-1.1407599,.36045434,.37429256
-.4904154,.49419718,.53300175
-1.1086902,.20903444,1.0252599
-.77485998,.22771891,1.1736722
-.59170368,1.6182319,.67307908
-.69911185,.30343967,1.0096926
-2.0748857,.31309908,2.2554577
-1.1718546,.63879554,.76160627
-.76021426,.50391873,1.8420283
-.80867225,1.0876699,.84895786
-.94502427,.61050312,1.039107
-1.0197147,.91889116,.27442023
-1.1222663,.58553058,1.6130752
-.69646383,1.1204853,1.3299155
-.96995097,.62124856,1.8813118
-2.0781588,1.0724831,.20557193
-.71376152,.47507119,.59306322
-.38780766,.59484607,1.540234
-.78018546,.19297933,.04441155
-.49488493,.9383246,.35981646
-.81993491,.91146144,.15742901
-1.6409895,.07655831,.174844
-.95750074,.27538899,.09962275
-2.671581,1.4314923,.19386197
-.72482079,.99488215,1.4961601
-.66439213,.21772165,.05031616
-1.4083316,.14383248,.11707053
-.93901368,.00108382,1.6638083
-.55645854,1.1663232,.14825299
-.49092389,.61197272,.66494208
-1.6620335,.22147975,1.1746149
-.53694343,1.5457999,1.0795882
-1.4740634,1.8033045,.23203832
-.44418613,.78118419,1.4152151
-.56527168,.6130185,.05143242
-.78004981,.83141726,1.2084253
-.784224,.86593962,2.7871943
-.37118992,.93603896,1.1061737
-.65027047,.40953357,.13819415
-1.8283961,.97179607,1.7308579
-1.2547597,.84515128,.64643875
-.55125658,.52896634,1.2728169
-1.1026871,.75085224,1.0895521
-1.3176639,1.3245293,.39460165
-1.6092845,.07305507,.20821872
-1.3498074,1.2962391,2.5376956
-1.0898575,.3482617,.86617832
-.56443276,1.447313,1.3797939
-.81058692,1.3992742,1.0132947
-1.344237,.68173681,.03171533
-1.0134045,.92878013,.25329334
-.60913045,1.3042856,.77964609
-1.6918336,1.3337921,1.3585901
-.48226296,1.2043178,.70425779
-.46943917,.38255269,1.8487694
-.68953778,1.1761427,1.6464388
-.58068272,.70909574,1.1138139
-.77890427,.3023003,.10989342
-1.3740884,.06611765,.86001367
-.9509233,.00566387,.52901323
-1.0402988,.34143704,.79323268
-.65702095,1.1696074,.0114046
-.96432359,.10326313,1.1830203
-.78878974,.48110169,.26063642
-.67730725,.82501575,1.0848043
-.88866184,.12903113,.31825127
-.84618598,.15492781,.15544693
-1.809165,.82383309,1.1069443
-1.5203357,.51612582,.18592445
-.38461613,.87761155,.67545672
-.41291166,.23331388,1.3521676
-.51146583,1.4470852,1.1211672
-.42032847,1.7099413,.91006925
-.4016812,1.6904252,2.5114364
-.8164876,.72371464,1.3896437
-2.7799824,.50499772,1.2775239
-.52502963,.75305658,1.1445525
-1.5781647,1.2941917,1.6949047
-.76867788,1.9708254,.42430338
-.76073908,.83814111,.45904102
-.66934632,.99665682,.25761243
-.47825968,1.5392217,.06209625
-.86738539,.3352703,.33842238
-.94007139,1.0726489,.57971966
-1.175814,.4741234,.89016182
-.25107382,.92984292,.24896981
-.84407323,2.810707,1.2503852
-.7581791,.81512639,.89860743
-.8875908,1.0272188,1.2876028
-2.3220484,2.9098063,1.1184672
-.94560284,.35029326,2.1800349
-1.0421436,1.0400936,.98758531
-.23496687,1.1797267,.23123053
-.62881894,2.2680792,.21390008
-.85414627,.6153196,.21985398
-.63791366,.93413346,.63897616
-.46992222,.59292629,1.0160193
-2.6273277,.36385775,.72546364
-1.3078592,.07616026,.08150852
-.49760243,.85242973,.06011294
-1.0603984,2.2594832,1.3287771
-.53647769,.98958145,.66615012
-.97018446,1.512814,.56125373
-.7361764,2.5284592,.85512047
-1.6600147,.01953594,1.1152014
-.94424842,.38197704,.34803017
-1.1233221,.40862132,.77812411
-.66834728,1.0435399,.19416285
-1.3722267,.35536309,1.8651174
-.94521774,1.0802134,1.1383894
-.88351731,.81027594,1.1818225
-.49396972,1.4750849,1.5208801
-.45229517,.18721471,.48623949
-.49271268,.94788612,.07884541
-.77490828,2.0511487,.32597598
-.51403222,.94936357,1.7191345
-1.2569988,.4628264,1.6226211
-.74265347,.18674009,.0994149
-.89276572,.34794053,.41616194
-.6486795,1.5081175,.01014206
-1.0191174,1.1944339,.78802725
-.71765361,.05817345,1.2399538
-1.1896502,.30862727,.23064327
-.39291993,1.6322251,.44315625
-.88567258,.4688017,1.2261407
-.38079557,1.1488663,1.1520807
-.49539343,.92197544,.54683224
-1.3512849,.75440475,2.236985
-.46050919,.22148303,1.7585038
-.45053745,.12095487,1.1619706
-.71066914,.71907346,1.0273638
-1.0520831,2.0812438,.97853707
-.74813127,.29349885,.10268707
-1.2668858,.94128637,2.1783754
-1.5621342,.5975813,.08376246
-1.7886578,.09552403,1.7315426
-2.2071013,1.0476109,.64795361
-.2759569,.55475697,.21270487
-.5617469,2.10086,.51435619
-1.0495419,.65126881,.79803187
-.8805055,.4225427,.09032212
-.82262437,.68413998,2.6069787
-.27949825,.8358399,.70780717
-.61844594,.1104375,1.5891248
-.84250265,.81890748,.58174074
-.96070136,1.0109154,.54798975
-.37557323,2.0405529,1.0185012
-1.0665261,1.310698,1.4396197
-1.4548599,1.4275678,1.4564888
-1.0984206,.46020748,1.8970606
-2.0090235,.58936972,1.1733994
-1.180496,.48654099,.8007528
-.82729314,.0540416,.59689138
-.70210232,1.5777402,.24625933
-.91065354,.36212826,2.7640054
-.19261024,1.6331447,.30616558
-.62864354,.17533613,.58056779
-.59039703,1.3361525,.0142799
-1.3238679,1.2170283,.13774106
-.5055108,1.3075364,.33158388
-.56427649,1.1630815,.16505875
-1.2097313,.14200269,.36952264
-.73667058,1.3402346,.88359277
-.73566055,.47721992,1.0860224
-1.1772874,.43731096,.33398213
-.52427002,1.1451906,.06803354
-.68322523,1.5349151,.37949732
-1.0617098,.57799847,1.071875
-1.6393962,.46938371,.90760438
-1.5868001,.60728609,.46123991
-.75313669,1.1308536,.39901802
-.37723905,2.2796224,.4375233
-.44872503,.93168842,.70967406
-.65454996,.67376371,.0216667
-.79456586,1.6115254,1.5667079
-.76220588,.59346483,1.8716497
-1.2253062,.4005129,1.3399258
-.57308671,2.2815485,.59255966
-1.1024032,.94481159,1.8459874
-.92436152,.30788542,2.9489171
-1.6312356,.1550641,.22431102
-1.3484329,1.2280912,.84812333
-.98167438,.13841609,.37243831
-.80993377,2.9406417,.50365786
-.47553115,.98575941,.44319245
-.67418539,1.0088342,1.1218373
-.47252572,.85114171,.24710085
-.97494214,.84370384,.98611008
-.84494252,.27993594,.98132966
-.73970132,1.2049771,1.5910602
-.81316506,.69283406,.29294423
-1.1258105,.5788941,.35654635
-.81215688,.99476232,1.9246066
-.67551087,.82349729,.78059803
-.43043058,.90848636,.93711547
-.74603755,1.0018132,2.5479965
-.44238802,.79167592,1.524348
-.53651289,1.0136932,.30867067
-.77830291,2.1680794,1.4349684
-2.0776702,.13748039,.71890545
-.49274231,.04139223,.50599131
-.75551525,1.2492341,.58594102
-.75463442,.42065786,1.243372
-.62945022,.03820227,.75054979
-.93801336,.11680201,.1292666
-.99377918,1.5611648,.09578711
-.88487421,1.2265687,1.1389773
-1.2908061,.8335692,.85756423
-.69740017,.49317637,.01215532
-.9825529,.15717098,.86978185
-.5031974,.52029617,1.4301387
-.5539264,.16828526,.80194109
-.55128779,.83788984,1.0637777
-1.99464,.31226605,.36984273
-.33379504,.62488986,.85116847
-.67795761,.41012133,1.2540771
-.63347853,1.4830081,1.1251207
-.84235554,1.3422675,.77768847
-.61700389,.75467884,1.2036146
-1.4349908,.35157576,.64343495
-1.4557014,.47283113,.25378466
-.82013099,1.6236654,.27436396
-.55200766,1.6747491,1.1742265
-1.3428124,.09033944,1.1197457
-.58221535,.09167764,.89252533
-.47133973,1.0666412,1.343479
-.87430842,1.2601824,.60075162
-1.0138795,.36788063,.01734848
-.94909782,.58911439,.27317964
-1.7330816,.92815988,.45920227
-1.0485168,.56079789,.9905131
-1.9303157,1.0389638,.07149811
-1.2849883,.64038493,.02852005
-.48550939,1.0647538,1.0052538
-1.6478268,.03714115,1.8858721
-.74539657,.18833328,.25839211
-.39250203,.59118735,.9905733
-.32973748,.50453024,.06828272
-.74538954,.22964436,.70668959
-.84891798,.44211747,.60522108
-.78512855,.85296478,.89756544
-.80749224,1.8700642,.0516534
-.95569265,.66803997,.09145039
-.53091642,.55750224,.33151418
-1.2204452,.48491412,2.3282944
-.95284961,1.2402816,.28377765
-1.1297674,.16120008,.05228336
-1.4930831,.91837009,.75056659
-.89837628,.6838341,.750801
-1.4953086,1.1025404,.81854774
-1.4176819,.87450614,.03475535
-.60893086,1.0224308,1.1910041
-1.0556715,1.4413302,.93195112
-.64673459,.00758075,.07651614
-1.0165418,1.2565755,.37249415
-.47752033,.1110764,.04873648
-1.1805196,.83450118,1.6703819
-.44352195,.12530364,.86488878
-1.0092977,.29240275,.33783686
-.96012428,1.4447624,2.5836042
-.79740198,2.4174997,.0054102
-1.1983498,.61190537,.27204144
-.84325003,.33226732,.29902058
-.53082986,.00890833,1.126963
-1.1308429,1.4257851,.70733166
-.62096815,1.2985932,.19611687
-.34791679,.75738621,.94261502
-1.0272812,.45851981,.14403771
-.62086159,.02428954,.56357674
-.93509093,.47692001,.76107081
-.30578973,2.1883482,.76590459
-.60193391,.13464577,.62025857
-.70259357,.16760158,.82341864
-.31992411,1.4047281,.39567715
-1.005698,.2812801,.20445979
-1.6220866,1.3254766,.75520094
-1.1501382,1.156972,.5111568
-.32654117,1.2504938,.60826124
-.58839275,1.1451529,.48439607
-.79207607,.73864971,.70651802
-.72214836,1.3562067,1.9536765
-1.1081999,.0864607,1.2227699
-.71001324,2.011997,.69546526
-.54899863,.98023256,.31554369
-.48989502,.88305497,.07272846
-.74349524,.15198802,.82061497
-.76124311,.68270507,.90303937
-1.178987,.16099257,.58671679
-1.0670602,.8328814,1.8679403
-.84328135,1.4071717,.1524713
-.99304294,1.6935236,.7348236
-.93431503,.60453712,2.732466
-.64044322,1.0117352,.25843157
-1.0917489,.95239606,.00033641
-.71230533,1.1241965,.06125251
-.76030334,1.5999053,1.0419823
-1.1475806,.0752097,1.4090268
-.58816623,.02744202,.7958024
-1.5049361,.04583078,.8822531
-.24723661,3.3738754,.18239171
-.6502062,.13257751,.39080806
-1.6267181,.71711674,1.2071543
-.70522267,1.4590499,.0799123
-1.1164756,.99022107,1.1280521
-1.4909196,.75178287,.0231576
-.58226373,.22467919,.78380764
-1.096686,1.1888077,2.0384383
-.97499605,.26075199,.40471976
-.69476185,.42534346,2.4579581
-.57840918,.49746832,.30555207
-1.0573601,1.14179,.44053734
-1.0274485,.17631578,.36813281
-.48317383,.90616015,.8460259
-.95108102,.58273062,1.2968199
-.2776714,.9709864,.31511676
-1.7692316,.28384949,.42524256
-.58374506,.74679834,.10802609
-2.3154516,.64974284,.91841864
-.67366893,.80485619,.13949707
-.93121315,.61309769,.83192116
-1.1117299,1.6330773,.34104686
-.51105024,1.13214,.73406544
-1.1880026,.10853136,.64364846
-.60905141,.39027004,.24155961
-1.1393838,.83768519,1.0317463
-.58432018,.16611814,.39533679
-.65346827,.99889547,.55902969
-1.0324008,.28640313,1.7640387
-.70278681,1.1791009,2.0060864
-1.3863837,.88593459,.1519296
-.6336809,.2772944,.75884939
-1.695952,.15061104,.92298723
-1.1718239,.21867204,.60837174
-1.0233083,.38451302,.73441135
-.87583111,.26534119,.31443716
-1.6466356,1.0640574,.71510077
-1.4080411,.45934273,.4026914
-1.0254751,.23358951,1.6154411
-1.3704222,.22623877,.84460519
-2.0145764,.78565146,2.6001944
-.65497544,.06735831,1.3974807
-1.0652127,.59777301,.34959255
-1.7639162,.05471022,.81621829
-.35844086,1.7736775,.21274905
-.70781656,.62968996,.01928049
-1.5608161,.71977979,.80333722
-.48210822,1.3214877,.52229392
-1.1160185,3.5967288,1.5435621
-.58561584,.38763365,.22860716
-.58057286,1.1520282,.35002761
-.71355013,.29200808,.9066272
-.97669182,.04223278,1.2803858
-.46535054,1.3000139,2.0604953
-.67910754,.36996085,.24068549
-1.129874,1.426386,1.1406872
-1.9913046,.85040814,.49172433
-.86721454,.28271961,.69436009
-1.765594,.15194388,.28563153
-.72187661,.70840815,.0454045
-.79030511,1.3295729,1.5642462
-.87614709,.84364274,.52138132
-.74609933,.42218949,.02120465
-.96520269,.08320164,1.4734171
-.83738489,1.547088,.26833451
-.84721267,.0084985,.82489118
-1.2310048,.23185338,.012669
-1.0340949,1.4598249,.06024909
-.56033661,.2465643,1.7091092
-1.3284931,.06485312,.17230044
-.55887485,1.3440964,1.585257
-1.0075576,.19458988,.79471272
-.90157298,.19423824,.50753425
-.88703613,.33277225,1.2234686
-.76196006,.37968148,.4755336
-.55837908,.56034827,.09478308
-1.0989029,.42749798,1.0048461
-.93696945,1.1248134,.55428828
-.95538074,1.5735579,.38848475
-.52201488,.86831825,.12085349
-.66887308,1.2525563,.39579717
-.93145599,.54879631,1.227828
-.73994471,1.8995369,.54586693
-1.0200073,.54688435,.72888832
-1.551675,.04873997,1.497348
-1.2911426,.48731973,.04387723
-.76877269,1.6370992,.46970001
-.95879788,.97540508,.01874695
-1.1309209,.7208439,1.8229426
-.88646443,.34748832,.0646255
-1.5449524,.39244777,.74969829
-.90645958,1.0033903,.09452769
-.55548634,.84648376,1.0006422
-.94586432,.28538764,.02393608
-.88062844,1.4702961,.35910596
-.3481455,.75887317,.98462965
-.82538631,.15032367,.23715209
-.81096649,.47510525,.57188983
-1.3968986,1.0552867,1.3741806
-.94817538,.25337682,2.1240913
-.63777939,1.360561,.89165381
-1.2613359,.13247599,1.3619908
-1.3174063,.68470791,.52568901
-.30523171,1.6967665,1.2691249
-1.7998593,.67450301,.40874405
-.42928959,2.0338698,.76485569
-1.2282405,.04012815,2.3270713
-.67210634,.19836579,.83172544
-1.2056768,.61745859,.02280731
-.67401507,.22249517,.3739376
-1.2005446,.51257495,.09186179
-.88553786,.73514421,.21102994
-1.0198532,.35517344,.25156247
-.61883809,.0693184,.41815179
-1.2799957,1.1811674,1.4391196
-.90718935,.10981424,1.2260451
-1.1343493,.07090129,1.092624
-1.8413132,.72945825,.39984219
-.78627999,1.1775208,.32587575
-.78818327,1.002466,1.2386831
-.75361499,1.5711888,.60438929
-.36380039,.92829735,1.0145408
-.78222288,1.9211768,.17484635
-.52854195,.8339808,.4983977
-1.2143397,1.1126547,1.1899927
-1.0113013,.59596285,.68715747
-.65446984,.57756077,.45405306
-.70145602,.66618219,1.8750415
-.78705549,1.4625099,.27252264
-1.3298608,.63096496,.38760305
-.67302498,1.7291378,.32239957
-1.1658359,.67577252,1.0604743
-.61400761,2.4694158,1.4689151
-1.2187939,.17054996,.95881827
-.35846368,1.8737021,.14937487
-.71127933,1.8343777,1.3905664
-.81451374,.48292711,1.59062
-.93317369,.03539598,.18196962
-.47678888,2.4509237,1.1912874
-.96118104,.33653937,.11574838
-.66837751,.51852349,1.1475576
-.66806502,1.1947178,.33219559
-.71961651,.13701868,1.3368661
-2.0049026,2.1750426,1.3403514
-.35688843,1.0671462,.01265189
-.34789357,2.3839491,.08530386
-.58205639,.77289921,.01775995
-1.1162092,.94268362,.74151678
-2.0388856,1.6172636,.06426775
-.58168682,.22720302,.85035926
-.58991429,1.178111,1.0721191
-1.2588686,.04161301,1.3035437
-.78267064,1.077661,1.1316805
-.66752156,.12863945,.08149763
-.33850287,2.033099,.65799429
-.37939368,.80320107,.49403518
-1.0043566,.74718155,.71639858
-.81635895,.77031824,.3377564
-1.2491298,.48381359,.01623284
-.63371036,1.3838508,.19724142
-.66463484,.4310978,.15254235
-.8154093,1.4677782,.35762941
-1.6373557,1.9159779,.04728846
-2.2993976,.62301271,.48151816
-.74935259,.57392194,.67526085
-.32601624,1.3625812,1.1211654
-.64519417,.12149722,.11123044
-1.1664558,.87811239,.3186702
-1.4756326,.44429205,.02165789
-.80044521,.9970048,.94615221
-1.19112,.31247604,.48757139
-.67767213,1.4017921,1.7150152
-.74163305,.19304096,.58208858
-.53946601,1.2041163,.80121633
-.58140532,.92919995,1.094177
-1.1662262,.98188353,.19675474
-.34492947,2.6251945,.42200182
-.67658482,.29915068,1.0908009
-1.0073369,1.153445,.3403381
-1.2901462,1.0125907,1.2398767
-.50632874,.85744703,.10583556
-.58778351,.67401056,.32535486
-.33927657,.03039109,1.125767
-1.2331673,.48622533,.05773593
-.38925466,.12897853,.64085285
-1.1101056,.46800878,.28430467
-.60495246,.14183275,1.0241412
-.85236166,1.089181,1.1909652
-1.9241594,.03278176,1.426042
-1.8545845,1.2225805,.31227555
-1.0404112,.52822024,.64666519
-.66686101,1.4696137,1.8444407
-.38786681,.41802315,.19617809
-.88791697,.87905758,1.9133345
-.82108162,.66410959,.56553392
-.35735262,.37845378,.03891047
-1.1327907,.99184787,1.905329
-.86734555,.27855141,.75312452
-.87253657,.95780636,.14590111
-.23430247,.84947072,.14940253
-.88737161,.54514991,.92747792
-.90290721,.84225901,.32142148
-.60056118,.29083983,.14846001
-1.1833374,.75881347,.01437122
-1.0179825,.45237351,1.600481
-.53423968,.19198555,1.5629509
-1.1722717,.41479424,1.5120805
-.58579216,.0250075,.1540132
-.92220619,.88668257,1.2449523
-.63740068,.31828997,1.2334218
-.47207925,.72999188,1.0641855
-.5492456,3.5638421,1.5148965
-.64547599,1.205139,1.2666653
-2.3102327,.09134375,.80604613
-.7867422,1.000546,.05074673
-.41919462,2.0125849,.13394201
-.50105136,.05118157,.52401623
-.89828337,.40928911,1.4100376
-.47965681,.33939251,.71503332
-.41243636,1.1252191,.51064739
-.59706992,.00337369,.45442231
-.99642608,2.0819917,.97068304
-.74659683,1.1284789,1.0651606
-.71412857,.07108617,.56581218
-.79068289,.38908819,1.4235479
-.67578635,.28583828,.66337401
-.61508011,.89471845,.26631586
-1.0777135,.73005453,.10090293
-2.4932225,.45247669,1.6920118
-3.3436338,.41466522,.46325692
-.63377046,.14587873,.53804359
-.51563952,.46784724,.39161398
-1.5351739,.00941681,1.0292205
-.5887544,.17880537,.11619461
-.61931206,2.3854339,1.2523942
-.49186034,.5564204,.12925932
-.96920222,.23808574,.24889175
-1.4380347,.43413202,.894439
-1.3390236,.30702521,.22905514
-.27802921,.98557421,.97267739
-.72440823,.87812146,.47089947
-.66821144,1.3521546,1.2439222
-.51504099,1.3400987,1.2425848
-3.2384933,.1541957,.55163512
-.93656249,.33315628,1.6686267
-.23660296,.94974947,.87682721
-.45678948,.16716628,.17068622
-2.0891764,.57801447,.3121727
-.91853363,.09565183,.90108725
-1.8883104,1.1116091,.00612944
-.98601118,.00115947,.88719259
-.67816272,.20860469,.31960975
-.84011415,.42964497,.06967795
-.44576748,.16412709,.95289238
-.43113156,.95161022,.44743571
-2.5214901,.74169891,.47233815
-.48215088,1.6872974,1.0378552
-.29996952,1.1513935,.41968067
-.71070799,.45708144,1.4809702
-2.3007179,.70283681,1.3983638
-.46939348,1.1137777,.64198064
-1.3713094,1.0484329,2.2191602
-1.046034,.76229571,1.3095758
-.74340131,1.2847741,1.0250733
-.46378364,.42923942,1.6273341
-2.8717092,.33111718,1.0317766
-1.5414913,.04960656,.31190094
-.31501075,.49973229,.62322507
-.82370917,.89094609,1.2819835
-.6570569,1.0938974,.08728457
-1.6069214,.2647501,.44311321
-.55457056,.5367949,.57002721
-1.4803683,.12679448,.24272737
-.79916807,.7813076,.58498752
-.72075651,.22767698,1.4164879
-1.5570938,.25056228,1.0850277
-.92698483,.55227555,.3699904
-.69866029,.78442056,.76890314
-1.3539297,.46116899,.57226109
-.89785762,1.3530996,.4417163
-.79204672,.51992028,1.2090441
-.38574959,1.8968928,.16733964
-.45926315,.98568922,.86634656
-.63910641,.52258625,.04854367
-.67027254,2.4834203,.78701548
-.74273892,.92875288,1.0889456
-.83360291,.67135067,1.0664808
-.75442725,.57938881,.32307605
-1.2100198,.33407303,.75779022
-.55369699,2.1045942,.77292241
-.36733311,.28829875,.63902053
-.75174685,.37525992,.97991177
-.64481993,.01774048,.55567123
-1.422755,1.4039239,1.4626366
-2.4298418,.15682443,2.3798009
-.38818769,1.6381839,1.1877699
-.52051309,1.3476926,.51170589
-.9896811,.04170698,.87406464
-.86099702,1.7750314,.34231166
-.48801294,1.5179109,.29306171
-.67579414,.28281088,.86162458
-1.72306,.54253874,.99998557
-1.0087633,.31463723,.996401
-.38814839,1.7257837,.78371954
-2.6091528,.35035126,.94172763
-.4426963,.76656562,1.4177592
-.98357048,.82076726,1.5381439
-1.1578395,.70720233,.62521962
-.56650235,1.2669914,1.4889197
-.80281285,.61014837,1.156319
-.55745622,.72028049,.70291388
-.88942703,.17861944,2.2515943
-.96199844,.57996485,.27369929
-2.5891214,.15461972,.68667241
-1.62138,.41897535,.63560177
-.71837689,.43780919,.99507807
-1.5061847,.89094154,.84096787
-.24463157,.9218323,.87705629
-1.0623662,.58827946,2.9681087
-.47452144,.84399802,.1313448
-.86401649,.9381413,1.2260434
-.53673491,1.6284425,.66157562
-.93469312,.69715946,1.6991552
-1.3045011,.41995488,.56085272
-.76638608,2.2031877,.71095925
-.46542928,.44554426,.46064617
-.80049369,.18808411,.77562448
-.51116046,1.3148983,1.0477356
-1.0787974,.24171599,.09426749
-.9361193,1.2005872,.90044092
-.78552602,1.2132787,.51237415
-.68170657,.36580226,.0683691
-.8906534,.64371007,.45469373
-1.3959664,.8946776,1.1337475
-.96392275,1.5853062,.8180301
-.53905476,.21851794,.11451744
-1.2475511,.76006634,.44635776
-1.680232,.06096911,.17284009
-.79089179,.59645652,.21678535
-2.8054621,.69025436,1.0882838
-.90568263,.74631026,.27789914
-.78907484,.3368811,.82148199
-.59800707,.69889139,.16956023
-.48919693,1.5474899,.37127602
-.68058455,.14481336,.420751
-.92980674,.44128384,.06975473
-.61944281,.33235708,.3988858
-1.2105996,1.3813112,.94097987
-.6439047,.6461417,2.0538751
-.95948702,1.2210429,.45502751
-.46444063,.77727098,.27250762
-1.5474533,.33931348,1.3163316
-1.4652315,.17721372,.79641131
-.62813653,1.7422696,.10943165
-.65362271,.98562354,.7315098
-.74515268,.25824582,.24908241
-2.3203081,.1131823,.10014359
-1.7668248,1.3238677,.55692889
-2.2358288,.16364376,2.2303102
-1.117462,.56711446,.07439058
-1.1402491,.52244189,.19455647
-.78624011,1.0656974,.84713209
-.46862652,1.5773716,1.6287885
-.50161071,.07859679,.93888839
-1.8440903,.30543009,2.0274433
-1.1473915,.35376206,1.8530995
-.50899138,1.0550296,.43403464
-1.8648383,.87937297,2.145814
-2.8192626,.23229579,.62069712
-.25063029,.36662465,.42552869
-.66531234,.66266276,.25105609
-1.5006631,1.3485747,.3746575
-2.2067247,.17023857,.96047477
-.53063097,.33025445,.25002529
-.76132079,1.2053237,.46718572
-.60167285,1.2310006,2.183956
-.90367757,.90733918,1.5171983
-.63630015,.4259389,1.1423768
-1.9057135,1.4621465,.1783783
-3.6161902,.06153246,2.4213922
-2.3765265,.70399822,1.8795535
-.39188689,1.5543792,.68361097
-.53431714,1.4337308,.16484082
-.57229564,.10925307,.19313187
-.65431877,.05998213,.01797897
-.59672892,.6401043,.1680151
-.71552371,1.8392966,2.2881461
-1.8957714,1.1845929,2.9341771
-.43393556,1.3300553,.16446469
-.68798485,1.1852012,.06431372
-.89595944,.24068855,.50148188
-1.0411243,.56617351,.55793893
-.64380687,.64958303,1.6786269
-.84837263,1.1490532,1.4064107
-.56788742,.45952337,1.9716948
-1.7531739,.04254806,.84527429
-.72606551,.04982175,1.6519872
-.70865053,.46219709,.34010064
-.6267348,.48190935,.24681032
-1.1836206,.2566915,.89256019
-.8712299,.58410514,.09165297
-.50314455,1.5032993,.74449478
-.83941196,.63868741,2.170131
-1.21462,1.2377964,.76362123
-.8732652,.66071545,.15177305
-.35835869,1.5492572,1.2591971
-.99076987,.29103337,.09069936
-1.1552782,.75157045,.16521191
-.6823169,1.5137784,.35812834
-.72336105,.08383388,.25300347
-.69091597,.33703172,.52106386
-1.1763493,.11881231,.46267249
-1.1795284,.8986258,.68905165
-.66010155,.81149567,1.8521438
-.7129799,.58930687,.12079049
-.72199364,.85196019,.34881387
-.44114788,1.0713618,1.0830559
-.76618409,.54872055,.09837042
-1.0158674,.39602302,.31659356
-.77499155,.57674974,.30752813
-1.2899333,1.1199979,.63939683
-1.8901591,.20404949,1.43325
-1.0759158,.41207863,.00805226
-.38410553,.81951226,1.0507818
-.74330316,.48447018,1.9948977
-1.4645376,.7440207,2.1957415
-.48792093,.35906488,.93457074
-1.9060025,.9762767,1.2570162
-.54625923,.5304958,.04700051
-.75256691,.13723193,.05818395
-1.2855878,.51550938,.25490982
-.46406122,1.8510372,.72836216
-.67863897,1.8485687,1.7574206
-.35797485,1.0754989,.62168253
-.67204037,.69801183,.25707157
-.56715585,1.139981,.48090919
-.48461258,.17631069,1.4833326
-1.2497185,.1748074,.5153138
-1.0914641,.199153,.05917995
-.86952667,.19427216,1.243466
-.50380174,.69858655,.12940963
-1.7631257,1.0508868,.53859376
-1.0756711,2.278069,.04673339
-.85784385,.42748524,1.5923391
-.89717883,.07981338,1.8672671
-2.729953,.83183738,.92769227
-.94492125,1.1387296,1.0067562
-.54418773,1.0192334,1.2763899
-.67851704,.94813866,.32631103
-.8371747,.49678106,1.0356605
-.82876048,.32409167,.36215083
-.42341303,1.3641205,1.3319783
-.5919063,.78348957,.92912121
-1.0931705,.58075201,1.9101282
-1.5427434,.11219013,.42484558
-.48280378,.2790494,.16182141
-.95033345,1.7183534,.29206984
-.38595789,2.601318,1.0885295
-1.0049549,.13221975,.17103873
-.73251597,2.4235888,.84011016
-1.7331439,.83880891,.9835884
-1.1746875,.50870002,.4836311
-.45641509,.91537348,.32016308
-1.6439773,.87580414,1.6623042
-1.3472257,.49301814,.56626484
-.96868471,1.3826491,.41242445
-.95291441,.10603883,.5380112
-1.2563275,.11865252,.1789125
-1.2934705,1.6485052,1.5291678
-1.4715603,1.9668442,.22688212
-.58365943,1.433692,.52819037
-1.6352705,1.1236807,.51993746
-1.1422625,.02276463,.07860799
-1.8223244,.71970146,.43959973
-1.0306169,.13753393,.05379221
-1.3476073,.57384176,.4203764
-1.6739832,.54928324,.93352506
-.3517705,.90967015,1.2472653
-.4643638,.53937657,.86073699
-.81875079,1.6469027,1.6305783
-.54040263,.75785583,1.0870085
-.79604579,1.2365098,.61635268
-1.2205639,.16176317,1.8919639
-.78156685,.05897935,.05677553
-.93018111,.23346777,.15564831
-.20140339,.30813155,.74528851
-1.2933262,1.1859071,.31472133
-1.2745744,.82174189,.71800583
-.39928579,.65118319,.11297831
-.91076827,1.1016984,.99979454
-1.0192728,.6654978,1.0091444
-.34231662,1.0870133,.64318098
-.59927365,.30957265,.48042603
-1.2867746,.67816993,.03590382
-.90139529,1.5958519,.96093217
-.98195509,.50623509,.99698627
-1.0925978,.48038937,.0585571
-1.0005689,1.1888089,1.6367685
-.90040683,.52209724,1.4838872
-.69705543,.80826042,.30578652
-.70092642,.0689236,.21569622
-.36960693,.33840555,.41032365
-.5253244,1.4579312,.54929244
-1.8286692,.29677027,.4389546
-.9172035,.51268235,.49216501
-.9992297,.24376249,.60245999
-1.2506918,.27381917,1.7608973
-.6612035,.89514464,1.7317256
-1.7410381,.73497519,1.2426202
-1.9745035,.24406578,.77798682
-.84592079,1.4505062,.17813292
-.94700655,.61846033,1.2305953
-.6743805,.35942866,1.0380199
-1.0358574,.22463157,.67294126
-1.3237223,.10830843,.9596969
-.86283734,1.2223348,.94203228
-.63384493,.02180131,.77332922
-1.142438,.1064199,.60369916
-.61193669,.68164233,2.5007876
-.69576744,1.5506048,.63524233
-1.0247209,.03263334,2.2871894
-.31087033,1.5882184,.40540811
-.97011828,.22962789,1.4967269
-2.0810061,1.0658375,.57118076
-.92828433,2.8477796,.69338907
-1.4214726,.67255358,.54434124
-.87290032,.55033889,.0794906
-1.9166083,.84357072,1.5534735
-.86395895,.63781755,.25978749
-.50320068,1.1298642,1.4000598
-1.5941149,.04896295,1.5269697
-.50933201,1.3200645,2.0855617
-1.2327457,.14226144,1.3897216
-2.3288236,1.2586999,.03269549
-.95206347,.03274811,.94016149
-.74005264,.98438292,.3264493
-.70882486,.89483281,1.3856549
-.51617391,1.5509926,.06597904
-.49489842,1.4794708,.65020653
-.44238368,1.4854794,.74548169
-.37643777,.43935179,.07795041
-.75378987,1.7531986,1.6838754
-.69538549,.87876652,.82046522
-.68956286,.31886785,.63843931
-.43258617,.62197117,.8352753
-.91175007,.33625406,.54894954
-.37411024,.84203449,1.0918415
-2.1684376,.07619129,.42598076
-1.9246454,.48929483,.41076851
-1.7117807,.21028159,1.4977526
-.42314447,.55911665,.08938605
-1.2135197,1.0038878,.27141062
-1.9932693,.43047207,.53475832
-.88909123,2.1768637,.30482159
-1.5017604,.22738782,.70243459
-.24068214,.60580469,.10696729
-.85000282,1.4384307,.38082931
-.38044866,.09088261,.3821031
-.7697348,.48844892,.63253707
-.65730722,.66293059,.60735829
-.67508102,.67449368,.81923673
-.37660326,.13501322,.20266077
-1.0688779,.84834962,1.6914417
-1.1859387,1.5413296,.7287391
-1.731357,.83158364,.89877985
-.95363913,.21875963,.26110981
-1.0131975,.54915232,2.1734871
-.58401556,.05371556,.15906208
-1.4799809,1.0098739,2.004313
-.85264585,.06377564,.10560077
-1.0803096,.71767429,1.2481746
-1.2553048,.76089577,1.5049252
-.72950672,1.1211592,.38312382
-1.1305501,.89899456,.05717001
-.60163166,.86580182,1.6446771
-1.0245626,1.0303686,.49062316
-.69388128,.07710422,2.6674354
-.86536695,.24067627,.48016555
-.88113938,.63387341,2.5681028
-.69143513,1.8906732,.65004181
-.57835384,1.257493,.17901534
-.72563649,.09094027,1.2233064
-1.1561485,.8863465,1.01814
-1.0588516,1.220783,1.5419722
-1.7544362,.94358695,.89685109
-1.0051426,1.1574569,.74754422
-.66501052,.68979778,1.2464103
-1.327936,.70160396,1.3188661
-.30486625,1.3874573,.58968771
-.99128596,1.612382,.81979302
-1.747792,.98444736,.31313521
-1.3073967,.13056734,.69700727
-.35787159,3.0589404,.77889123
-1.0646399,.29755041,1.1667204
-.80098635,.06393564,.05804501
-.55088771,1.4183134,1.2789654
-1.6208952,.00005995,2.3208355
-1.4092806,.67751768,.68135596
-.94547096,.87251656,.85988483
-.80875995,1.5437118,.17206358
-.75540748,.61203013,.39284106
-.52567229,1.2441364,.40457827
-.42282625,.51454214,.04501229
-1.5232908,.64141112,.1324341
-1.1933019,.38366088,.25559246
-1.635387,1.0758569,1.9383787
-2.0021352,.07866777,.67877126
-2.9815101,.01594576,1.81776
-.5402046,1.4747557,.9899708
-.66660812,1.0719577,.41084676
-.91706931,1.2744367,.32086561
-.27043961,.06299113,1.0104523
-1.3138801,.02827668,.69574916
-.44662551,.8445575,.55262057
-.7064771,1.1926282,.42762629
-.50384841,.66834728,.34994528
-.95619166,1.0764414,.26833428
-1.7838204,.0897513,.37041605
-.49795506,1.0670242,.46047288
-2.2429888,1.0872105,1.2830892
-1.6234555,.54378053,1.1448573
-2.1641896,.23951493,.23361942
-1.71312,.02372137,.40852403
-1.1450373,.11274603,1.6262045
-.29951323,2.3075943,.70142274
-.60503263,1.5688568,.63514101
-.68834929,.77431121,1.3606887
-1.4039525,.65054022,.29240854
-2.3607128,2.4197382,.58432388
-.58440947,.6627664,2.7135
-1.0800038,.32016076,1.3739984
-2.1012846,.7919633,.20637629
-.67282261,.12390646,.21262395
-.51558608,2.2197819,.74304841
-1.91903,.52806731,1.2769137
-.9931944,1.7063757,.32995628
-.67160435,2.4508911,.79895861
-1.0001083,.55453218,.02428445
-.53382556,1.3124188,.46915506
-.36823395,1.2308149,.56803602
-.38804452,.24524141,.3305414
-.30224753,1.4751305,1.5752972
-1.9460619,.68349917,.03470597
-.74507546,.1682105,.0736601
-1.2316489,.73406505,2.083524
-1.1734155,.25098795,2.0225229
-.40231039,1.0380633,1.0067582
-1.1806551,1.8096595,.31956792
-.92955228,.10213592,.6782538
-1.3366894,.21140222,1.1287943
-.57777299,.89339302,.28400756
-.33960901,1.1406563,1.4664154
-.57950495,1.5200819,.34554529
-.33019046,1.3073602,.38213446
-.44205818,1.5620879,.71842592
-1.427786,.19850098,.53911183
-1.2101025,2.400413,.93765038
-1.8704099,.52115475,2.2084273
-.58028049,1.1767034,1.0257178
-.92331261,1.4998969,.30641693
-.73792361,.65365685,1.4093228
-.96909326,1.7463968,.71414656
-.97802153,.42842053,1.321406
-.32459432,.68672973,.37577109
-.51738248,1.1574616,.06644444
-1.1388259,1.4775425,1.3561246
-.40641248,.9103601,.79473371
-.33835113,1.1203038,.80210904
-.98307246,.5769485,1.6192223
-.94309169,1.0004966,1.2111166
-1.1370742,.23903409,.73524753
-.37644514,2.9477059,.49448598
-.83451314,.5585442,.70538338
-.64484861,.46811181,.57449708
-1.0544128,2.0967931,.01094779
-.88515629,.58534896,.35736172
-.23594503,.42079718,.54173572
-.71667185,.07673013,.74003398
-.77440361,.12752931,1.3267774
-1.0154763,.54351645,1.0876055
-1.1493377,.70279097,.61401835
-1.8515369,.32283636,.52941126
-.92182724,.70311368,.27915335
-.65945726,.33159858,.41201792
-.5806412,1.6530997,.29341425
-.54773502,.65476483,.46074611
-2.3975932,.65019487,.35745211
-.98750551,.02935614,.83891579
-.61701522,1.9800345,1.3613699
-.48271144,.26962329,.45219281
-2.1792786,.6182303,.84343882
-1.6453393,.05875621,2.6646773
-.4735627,.50200591,.15096375
-.73745318,.60795269,.29809596
-.33072064,.22082341,.62590724
-1.0880671,.27259589,1.2973013
-1.014389,.70546446,.19700482
-.57929793,1.6596097,.6950678
-.72574992,.22285074,2.2713243
-.66650343,.77055209,.19984922
-.93887358,1.2013807,.34946822
-.70186258,.65498214,2.7036281
-1.329146,.11798914,.78672702
-.78192774,.05063926,1.4669768
-.80031199,1.9332165,1.3686008
-1.689676,.57552705,.20405541
-.55016153,1.6396954,.14742806
-.78200998,1.9569652,.63348591
-1.4143737,1.10233,1.1991567
-.96549782,.43889387,.94740259
-1.277739,.29393202,1.35441
-1.5564686,1.5572771,.48263848
-2.4433041,1.7739054,1.4838967
-1.4961907,.20086012,1.7852626
-.82973154,.65896295,.83746125
-1.1585267,.20492895,.95889146
-1.5675113,1.3527987,1.0761865
-.49911638,.29999767,.03800171
-1.9889033,.14976339,.05680387
-1.673711,.34763774,1.8589598
-.82213635,1.4618803,1.198137
-.83283672,1.1809219,.96375063
-.32107164,.94477172,1.043493
-.57317396,.82279384,.2703509
-.81393575,.08999854,1.8324794
-1.034292,1.6502336,.77749249
-.91105405,.74391585,1.6636699
-1.2004793,1.648129,.412366
-2.1959385,1.8844134,.19694783
-1.3200154,.414729,.54632218
-.42569009,.9548823,.6522489
-.6607221,1.3086982,1.1041789
-.55376729,.5636984,.753735
-1.0888866,1.2028841,1.2953725
-.42192496,.62829609,.67469707
-1.2173745,1.0367626,1.206822
-1.0221017,.36852425,.0146644
-.86033987,1.221696,.78912217
-1.4265021,.65127625,1.5558361
-.78144742,1.6736307,.55045428
-.70747127,.92016739,.12127705
-.28340137,.10137177,.16304576
-.51957666,1.2596026,.22652892
-.87780792,.08191362,1.7346886
-.77069699,1.6047938,.82345428
-.78436925,1.0162146,1.9065367
-.46684483,.02569708,1.1185948
-.62867898,2.0511319,.93557032
-.63142941,.09905411,.36625162
-1.0393781,.8401058,.26313629
-.60807523,1.3147165,.47603037
-.68558754,.06863672,.05900604
-.84294771,.36551373,.23260504
-.5844084,.95162224,.49558401
-.52901131,1.3181088,.73260187
-2.1180249,.8691828,1.8643216
-.76199377,.08587304,1.5451079
-.40906477,.82242719,.39327887
-1.3214605,.24740784,.26195167
-1.5735077,.46964578,1.0998192
-1.4930352,.47339242,1.0245189
-1.2036354,.19885734,.02073592
-1.3503524,.31751605,.01782783
-.36040283,.28359987,.17904049
-.79829774,.50630179,.23769244
-.95458874,.95324164,1.4534739
-.57417194,2.2895944,.10150974
-.56672114,.43340719,.36661417
-1.8351765,1.0822562,.68203706
-.5090869,1.7394813,.04097531
-.4618306,.6457766,1.3273623
-1.1061404,.31352615,2.0181314
-.87950637,1.1331143,.46249425
-1.2013948,.48217857,.15281191
-1.0745049,1.5986157,.98589841
-2.1272001,1.1822098,1.0315967
-.83033424,.62498278,.73741508
-.65644754,.5166994,.57248551
-.82556126,.03375756,1.3084407
-.68111577,.69336754,.17995471
-.45252454,1.3905157,.42885777
-.4585364,.38239892,.53330252
-1.0931996,.0525135,.21232734
-.89267187,.6216813,.71839502
-.43566136,.4895749,.53775451
-.18707091,.83772453,.5389828
-.87081259,.76523503,1.2938004
-.63698763,1.3463152,.96749784
-1.4162469,.36756475,1.8868449
-.66189739,.92317797,.1990266
-1.4032905,1.3072493,.97166175
-.74476142,3.1903631,1.2629692
-2.2386314,.64544632,1.6241107
-.63338201,.16510191,.13992188
-.72887949,1.3070154,.42705921
-1.3527553,1.4515861,.7967056
-1.3083615,1.7020024,.54834132
-.88428588,.62772995,.11226288
-.76377484,1.5715772,1.5247945
-.66570761,2.6458114,1.0967753
-.30231232,1.1705047,.17602671
-.7857638,.65795568,.20781
-1.5007833,.70072359,1.6844385
-.48749498,.73930011,.63921145
-.46702792,2.3895426,.49198153
-1.8394307,.58875916,.28661104
-.77690936,.58286402,.53077765
-.64924689,3.085492,2.2180714
-.93272823,1.0010107,1.1720065
-1.114429,.46547478,1.0762919
-.38358883,1.5498286,.7529471
-1.2124156,.04200627,1.1464329
-.617624,1.4704107,.3082889
-.72838008,.72034467,.77497158
-.68511069,.02774243,.57507377
-1.5768551,1.2088814,.49711094
-1.090043,.54566251,1.7871683
-.71515481,.6912216,.33043291
-.78331943,.74805084,.49338546
-1.0628514,.34675467,.41546283
-.6491405,.40634615,1.7197625
-1.0211247,2.4004806,1.1522046
-.29623037,1.2862998,.35684277
-.685593,.61037275,.11593869
-.9417792,.68887538,.51086002
-.26791434,.81370502,1.8319985
-.46602321,.12942232,.38878943
-1.2265309,1.0121362,.57244293
-.91093298,.76705203,1.3237008
-.45848677,.32705151,.17721788
-.89316122,1.7294477,3.6672258
-.66632801,1.0562079,2.0384104
-.84547173,2.2421483,.08653162
-.65051684,.59040892,.95303009
-.6129284,1.3848773,.01730898
-.38488407,1.2413954,2.5041415
-.45100723,.1879054,.71575165
-.65178489,.74837848,.42875586
-.58950027,.80768445,1.0911664
-.6187754,.68949867,2.0789156
-.98337584,.07952279,1.0544055
-.43517807,.76653555,.90814469
-1.2556527,.60118785,.64780918
-.5179949,2.5370661,.41206845
-1.0286988,1.7585724,.57453275
-.94097598,.03414804,.59082885
-1.3332649,.59574993,.0268577
-1.1391587,.07156824,.57565754
-.4656365,1.795352,.41945927
-1.106907,.41118224,.13047912
-.44775909,.40187428,1.1985354
-.5063035,1.4614863,.19145351
-.62858753,.610244,.25505612
-2.6010863,.00783679,.84312728
-1.2305188,2.4273301,.57876991
-1.1060251,.37554791,.26638603
-.60233071,.43361959,.32493373
-.71229761,.12757896,1.2261348
-1.0497981,.01197852,.83760235
-.65487055,.26058249,1.1376457
-1.1647417,.14552456,2.1613319
-1.1321355,.269842,1.5849737
-.47138082,.94972705,1.0147494
-.3731219,.14446508,.5097614
-1.0793715,.32494172,.45624868
-1.2025246,.44904855,1.1773516
-1.330472,.60310007,.18165797
-.97162274,.1515434,1.0972445
-3.7943028,.8284244,.89235239
-2.6752484,.95443823,.48283677
-.61132366,1.1571533,1.0980194
-1.0290768,.75826613,.23568659
-1.5305563,.20028764,.16584027
-.74309255,1.0164721,.50950043
-.6077203,1.056824,.56350638
-.72824995,.29430733,1.3466487
-.81656752,.32490257,1.0584081
-1.2075928,.67438686,.00076187
-1.3021912,.37731986,.64625304
-.34064626,.21942392,1.7230584
-1.5004741,.65885695,.45517042
-1.6554884,.75058211,.04722094
-1.3787881,.41487742,.65785317
-.73161135,1.4108058,.10006721
-1.0577191,.19417544,.77884935
-1.8792674,.69346806,1.2187042
-.49232657,1.8467481,.36595124
-.64144417,.02089125,1.0533914
-.42871601,.05503265,1.2431244
-.49798066,.65728614,.21028646
-.71111184,.00170156,.89606963
-1.082147,1.1748482,1.2734521
-.41394333,1.2417764,1.934517
-2.4631178,.49040095,.74835
-.67337673,.49495233,1.0433913
-.80146576,1.5771561,2.0095024
-2.4199709,.87879049,1.3973449
-1.2511776,.23304925,.71527
-1.4745749,.32102694,1.6653571
-1.3678503,.0262918,.36239981
-1.513652,.15841232,.54507411
-.66045685,.02750147,.58834612
-.92129745,.67898131,.17961002
-1.1810473,.40222729,.49348431
-.72539497,.139456,.33722235
-.53033252,.20027735,.97636887
-.933973,.59086829,1.3211794
-.62752189,.34058126,.69841881
-1.8095774,.64292773,2.0239612
-1.3478675,.37103706,.61947333
-1.3704938,.69069649,1.2816725
-.63540116,1.3205338,.99866746
-.76299155,.66283224,.64670082
-3.5260563,.18764466,.52905725
-.8398252,.87427508,.15787079
-.67773539,.98772483,.83560501
-.47105455,.47789476,.71118322
-1.5528198,.43992875,1.268415
-1.6517295,.00020571,.85726698
-.79138591,1.5831449,1.9948943
-.7374455,.44464872,1.4142927
-1.9053493,1.894786,2.3781248
-.76387536,.03287392,.12389782
-.98114137,.81549216,.67110954
-2.3403521,.80389035,1.6940529
-.73469478,.95204264,1.565537
-.39301604,.93549583,.82151104
-.89951319,.27306008,.5844993
-1.5253077,1.1555668,2.2083113
-.48019464,.76321938,.16114625
-1.2863474,.48978265,.12586623
-.62075936,.13700595,.40568808
-1.0856598,.53725109,.32087264
-.87676953,1.6651376,.87192029
-.54778039,.30962186,1.5616293
-.60722861,.04366938,.89874467
-.99706196,1.1087632,.15954306
-.58715404,1.2324202,.71690633
-.81567344,1.4804013,.30135296
-1.2623709,.11182957,.95177016
-1.030246,.06161032,.02424394
-1.7446658,1.4621419,1.4257077
-.36583836,1.4501681,1.6228377
-2.2462959,1.8659649,1.1972319
-1.6283245,.66741272,.37407705
-1.5910691,1.0232878,.53153669
-1.1351791,.60100541,.01565681
-.49590856,1.2358581,.74705529
-1.3618515,1.1421905,1.6453634
-.67148582,.10421449,1.3794179
-.47192192,1.3320658,.41298756
-.91465984,.11902566,.50787004
-.68669333,.70189465,1.1704196
-.39121212,2.4660791,1.0523737
-1.2087117,.13979532,1.4111145
-.7297334,.64652523,1.397902
-1.2505452,.23212128,1.8776807
-.65790167,.50744898,1.124479
-.93372368,.49250561,1.2571786
-.45100405,1.0015836,.77485739
-1.3971697,.2984355,2.3263953
-.58242374,1.1561346,1.0092273
-.36838935,1.7107713,.52714744
-.34509063,1.1381152,1.2580413
-.96887215,.26064828,.37926006
-1.3400239,.4773693,.67472147
-.88832809,.32017422,1.032573
-.85409399,.72425997,1.8377564
-2.7323918,.46160749,1.7508095
-.34849226,1.3002879,.21281283
-1.7524314,.66855439,.58389793
-.91807176,1.2665228,1.5308572
-.36649002,.80810784,.07416611
-.68459515,.52397851,.3750835
-1.3109374,1.8138844,.39675987
-1.0337927,1.9879862,2.3908099
-1.7588789,.11007711,.59015482
-.69785259,1.0989532,.35112747
-.91622118,1.4316853,.23028931
-.6062643,.96560104,.32832749
-.82536587,.4189563,.98128036
-1.7076691,1.1697355,1.7124169
-.87076774,2.0284141,.41293648
-1.2830348,.82713936,.20678632
-.98993021,.89330394,.27521678
-.77135082,.41804488,1.9123901
-1.8836578,.84032747,.70501606
-1.4437957,.50710227,.00540264
-1.7292485,.08181167,.86056307
-.39341411,.54823334,.40389821
-.58127326,.85924998,.24265174
-.45324121,.61792288,.34670832
-.6110792,.63802747,.94667937
-1.5119466,.43351074,.9332992
-.87822268,.10476011,1.0222966
-.8606249,.60351359,.19373499
-.44257611,.84665418,.35280957
-1.1544723,.29992014,1.7153999
-1.3442582,1.7507053,.32554856
-1.2319973,1.6662415,.20940043
-.72350971,1.0344942,.71802031
-.86794207,1.0333528,1.368585
-.90558486,1.3926522,.43424309
-1.1800305,.11316355,.59412847
-.91780862,.87645627,.10839267
-2.1320703,.19578538,2.2540562
-.85272562,1.1169482,1.0544527
-.73356208,1.0781871,1.1055609
-.36617593,.44964853,.43416787
-.81673956,.51912713,.21364703
-1.5707892,.54631222,2.5779874
-.59289636,.12765822,.39733439
-.97519565,1.7768083,.86821926
-.61868374,1.1651282,.93782792
-1.0442296,1.0387168,.22883834
-1.0940432,.00912961,.22999429
-.37873338,.85616918,.79514433
-.97591028,1.532191,.39297061
-.70793287,.63935215,.5227534
-.99635196,.96662845,1.3442286
-.78748835,.65685852,.00470976
-1.7873869,1.2464337,.92263924
-.37329191,1.2876028,.39550161
-.94013644,.9609786,1.4541845
-1.1908151,.08903309,.53864047
-.48090902,.75682522,.16323607
-1.4744246,1.7498358,2.0993851
-.39737655,.94076607,1.0649819
-.46014346,.95252848,.75822917
-.79356739,.92649133,.73610387
-1.975169,.31050107,.22780533
-.693276,.32860375,.15532707
-.68953702,.6946258,2.537526
-3.2327278,.65548898,.36571595
-1.4972264,.05482178,3.2967515
-1.2381065,1.6038127,.47640381
-1.7488026,.65812491,.15143669
-1.6954116,.65592903,.69903914
-1.4580967,1.5302739,.26452043
-1.0101356,2.7281861,1.9636773
-1.3163027,.59830632,.55106539
-.67624046,.28317257,.23152203
-.39633293,.70366609,.52668174
-.57317739,.31033219,.14377433
-1.5416304,.55522521,2.0417772
-1.4113041,.43245235,.67880857
-.8832939,.63911841,.39169722
-.81014978,.07430955,.8333789
-.36344574,.57186274,.48434644
-.41183825,.89287086,.60013314
-1.0251126,.89313979,.79078933
-.76098139,.87213187,.25055997
-.44975027,1.0329419,.76245619
-.71981055,.28638947,1.2080143
-.8261367,.29826452,.15222027
-.78801329,.35856612,.51428184
-.66585595,.40454774,.52332661
-.37796804,1.016796,.50873651
-.9008758,.07670841,.60010432
-1.3137684,.03308961,1.1469818
-.37187968,.86403377,.41091963
-2.7996141,.04471326,.84350944
-1.1523963,.24787189,.95252994
-2.0714009,.29829901,.32427136
-1.9943146,1.1167328,.01379812
-1.3066656,.56365024,.22565786
-.91367051,.61084108,.83141238
-.38865449,1.3585316,.11999276
-.62661314,.67461457,1.1994739
-.88632983,.3576933,1.1506408
-.6925663,.92056471,.822059
-.51222625,1.2003227,.15491587
-.69122624,.49444533,1.2937427
-1.2569566,1.1215088,.68131531
-2.4703685,.2075025,.7769208
-1.2300793,.11441974,.26418227
-.52464783,1.8932431,.66871212
-.93473993,.07179703,.03150713
-.47339987,.11866091,.45257097
-.72996644,.22608711,.85336258
-.74755864,.13482087,.95670386
-.41098129,3.1516165,1.0445483
-.72592781,2.4930206,.44407074
-.34513513,.03662477,1.4731107
-.37231079,.73462315,.17298364
-.38592801,1.3485008,1.1253315
-.6930768,1.2522585,1.6944768
-.36796998,.83301945,.47808478
-.88206094,.84225022,.07974696
-.42577972,.29317741,1.5621281
-.75374136,.11642107,1.0795925
-.97880258,.38399721,.96355996
-1.0842646,.13906421,1.2946254
-1.0499715,1.7408952,1.1627931
-.81172018,1.1666884,1.1374971
-.49669981,2.1766027,1.3692229
-.51219137,.92841965,1.1863596
-.73839053,.16221208,.44048359
-1.8106967,1.9431789,.14382249
-1.4708173,.00247639,.63613376
-.5888165,.25845188,.81815033
-.68907071,1.0048944,.29756082
-.38237801,.6579251,.85238888
-1.3150694,.36029374,.25903524
-1.0366189,.0429171,1.5305991
-1.1271222,1.7834155,1.9433178
-.98443815,.43002299,1.4257597
-.86880715,.26453674,2.0773368
-1.0472217,.82269053,.08613521
-1.237871,.67571363,.5118681
-.72379841,2.1141058,.40867529
-.6121985,.59458603,.23718224
-.70967199,.38512445,.26308366
-.44824609,.12859946,.40386019
-1.6852312,2.1080875,1.4665409
-1.4962028,.55666907,.474915
-1.175985,.46288026,1.6632042
-1.1462624,1.5364363,.78097846
-1.0288718,.73649469,.77012947
-1.8450247,1.0596898,.63739202
-1.0406078,.58140415,1.522135
-.53212828,1.2242434,1.3865675
-.9526179,1.7016386,1.501717
-.89927895,1.1326033,2.4947102
-1.4594142,.49316221,.37297232
-1.100949,.81894448,.78492589
-1.3258174,.83342687,1.0430553
-1.0320861,1.7489368,1.1769513
-1.2208224,.22695077,1.2705914
-1.2854167,.9867434,.88499884
-.87389794,1.060514,.22973264
-.82555711,.81510461,.1787248
-.46483728,.99054308,.27053876
-.79523774,.20233869,.83284861
-.70926384,1.6581063,1.4508391
-.61351049,.06443571,.57299215
-1.7567902,.47851361,.84387915
-.96142486,.21568911,.66015241
-1.9423801,.15796987,.20537699
-.64230739,2.2439384,1.2074926
-.64271847,.08816713,.68333747
-1.460682,.8804935,.18247844
-.63095708,2.1129668,.14583806
-.72354096,.65249525,1.0307003
-1.5042787,.44328769,.39789931
-2.0334423,.32367831,1.8659098
-1.2784643,.02870346,.08120958
-1.4935961,.29637179,1.0417658
-.68141264,.94275189,.42081174
-.71723657,.69782087,.35854851
-.3822816,1.4829868,.93614625
-1.0100379,.38094424,.40277367
-.42021188,.90458846,.88220432
-.78156751,1.0689121,.89123297
-1.4857916,1.7277094,2.65016
-1.9930055,1.0489457,1.1986927
-.9258146,.92804585,.70686088
-1.0921369,1.0386462,.52535299
-.98841894,.437171,.92237188
-1.5343681,.09505394,1.9738632
-.94132934,1.1830639,1.1337483
-.57239947,1.9179478,.14555954
-.33599827,1.0969344,.54641361
-2.2618901,.1581225,.53834592
-1.0077504,.91452358,.1497171
-.34847348,1.981801,.07419814
-1.6494215,1.1247648,1.7974972
-.99010268,.19828796,.91759723
-1.9557857,.38931956,1.0507761
-.690759,.14463461,.23687936
-.43124594,.19992241,.70582834
-.21663166,1.9085038,.31901924
-1.9707101,1.0901251,.67718112
-.64428757,1.1401693,.6184758
-.52636951,.16067195,.32855672
-1.4746079,.39898137,2.0194284
-.46043983,2.5844728,1.7671145
-.70000809,.60877237,1.5645245
-1.0070584,.75170219,.53403675
-.6559599,.42831596,.68689665
-1.3133678,.90641136,.13801005
-.94345066,.51311245,.74692026
-1.1912579,.8676179,.68913335
-1.144279,.57906764,.58130702
-.71436581,.56416794,.44530337
-.45185628,2.235582,.55234982
-.49508097,1.3991201,.8798062
-.74706263,.1919328,3.0206413
-1.254847,.25432922,.552419
-1.1383126,1.0653123,1.620626
-.45337382,.13671155,.52746411
-1.4158899,.7315249,.03199935
-.42587904,.41076809,1.6431615
-.3096321,2.1013,.88115078
-.95100566,.45623982,1.0079585
-.71054088,1.5475777,1.2340377
-1.2215339,.6480187,.80714428
-.96580508,.75164519,1.4373949
-.62353854,1.0133656,1.2177473
-.5394945,.6591339,1.0368973
-.85869052,.46904082,.93972305
-1.1804838,.57850756,.07196729
-.27463074,.01695206,.00991583
-.48258708,.44606465,.36940446
-.85565644,.70973753,1.0513742
-.97374429,.32325518,1.2179184
-1.1799501,.35897406,.22519616
-1.6018232,.0424748,.27932707
-1.2882426,.24889114,.34641763
-.42940383,2.4529782,.24802627
-.54626355,.24834993,.01728355
-2.4432114,.13820471,.12362266
-1.2593132,.87850504,1.6094136
-.5980748,1.3984861,.74010026
-.73849013,.04101999,2.1952279
-.57729241,.59196788,.49613025
-.93057913,.36351934,.22210041
-.96363423,1.1475447,1.6161089
-1.0032688,1.5625099,.07905612
-2.2942352,1.1450396,2.3374455
-.4278056,1.1375706,.54764248
-.80299519,2.3354321,1.1405582
-.84726281,1.9430553,.65901063
-.77598392,1.1216514,.41476573
-.46111806,1.2559712,.28157034
-1.1820744,1.1223,.14362164
-.6591749,.99569196,.09820887
-.93723291,.66532075,1.0790797
-.57988102,.21779712,.55870214
-.77866526,1.1428869,.21797393
-1.4070801,.00268674,.60134664
-.62535236,1.0398349,.70655959
-.66904686,.30328469,.43092384
-1.2193737,1.0132111,.03325464
-.54863354,.40612223,.92475787
-1.1227872,.02600779,.83189948
-.81830185,1.7705573,1.2176276
-1.1576814,.76644026,1.7040787
-.72221164,1.7474794,1.4323876
-.66709215,1.0141832,.08673839
-.72743321,.02854266,.67058315
-.94031895,.31196934,.86409207
-1.2720349,.85431151,.66880137
-.47451926,.82196606,.60557929
-.78189803,1.1357259,.44158567
-1.1679364,.97765074,1.0539748
-1.9090214,.34580596,2.3418967
-1.5145896,1.1893749,.42405532
-.64586963,1.228161,.14942572
-1.2759907,.77841462,.01340862
-1.440483,1.1302561,.4554524
-.52520107,.30736255,1.0538684
-.68890813,.36994009,.67642598
-.72070421,.76345291,.35022906
-.55899166,.78861959,.14736327
-.31915139,.92573108,.07078673
-.40306248,.66176104,.5764665
-1.0969416,.33032517,.71203769
-1.4474265,.04471573,.56138284
-1.8772466,.36618122,1.1911089
-.47150063,.26171256,.55890261
-1.0792693,2.0647339,1.180678
-1.7081376,.50157792,.47728302
-.25178342,.47978661,.36284871
-.53303579,.45762839,.05908901
-1.1399753,.29909126,.31971406
-.69259704,1.9768285,.87636162
-.97744595,1.2310339,.07930985
-.56637884,.43603025,1.5092806
-1.4688544,.62551646,1.9329858
-.52310482,.20153244,.97331337
-.65206755,.05280156,.05737723
-.98924046,1.2586913,.95661083
-.80829764,.59289797,1.5211538
-.9066605,.84551731,.51450579
-.71431437,.29676169,1.68285
-3.1376911,.30649154,.8767727
-.71526231,.33569767,1.0481192
-.92745836,.0509181,.93170755
-1.4862269,.52390399,.58814037
-1.1786664,.00605344,.6039461
-.59770466,1.7631437,1.0936021
-.69584508,1.3091676,.25011867
-.62799034,.49917374,.01800815
-.90750932,1.6354976,1.5270332
-.63197782,.4388288,.81977428
-.64471174,.01679974,.0625956
-1.6361791,.74146237,1.753593
-.30238744,1.2427435,.45298137
-.68448288,.97368738,1.709672
-.43221091,1.2191241,1.4014963
-1.2087901,.32758868,.97609435
-.88541498,1.1845361,1.0884168
-2.3676494,.41840327,.31871943
-2.9700691,.20642749,.16686301
-.6133051,.36383306,2.6034485
-.41127668,1.1903134,1.9105657
-.61359609,.17848071,.64244791
-.46126878,.48369217,.02129141
-.39745139,1.1949016,.58640372
-.87393482,.51632872,1.6531431
-1.9658449,.33986923,1.1206342
-1.3955036,.18569445,.01980114
-3.0108037,.38126986,2.4218936
-1.1234792,1.394435,.38672262
-.78026406,1.6778261,1.7472701
-.61176901,.09476369,1.467976
-1.498978,.20019217,2.424504
-1.2163131,.04167845,.31090221
-1.4802513,.66007786,.27779117
-1.0162451,1.0063419,1.5661164
-.48851654,.77587021,1.2594215
-.51467441,1.6094173,.91694147
-1.4033332,.00893666,1.047598
-.39944902,.15801405,.00992279
-1.3097669,.02570572,1.7531966
-1.2921097,.15844881,1.574396
-1.0242988,.11951664,2.0033017
-.95101362,.16160206,1.7917937
-.69129159,.35173507,.21913396
-.65974313,1.3725651,.31284213
-.64787538,.01540228,1.3686336
-1.0132751,.07357747,.0524137
-.52647672,.44432278,.76885933
-.80264745,.01925687,.94096716
-2.7935387,2.1015933,1.9454054
-.83128323,1.8944502,1.8069841
-.99330793,.17670416,.9613811
-.69411011,.43724061,.37446886
-.69484183,1.0938796,.68515204
-1.5108027,.53463736,.00685565
-.69583854,.0080659,.36322885
-1.2554889,2.0129263,1.0600911
-.2888135,.83561313,1.4521743
-.52464037,1.2711805,1.4283965
-.71442188,2.2321921,.82960726
-.61812259,.62753213,.49159859
-2.2393706,.01261771,1.9020894
-.90664407,.10976038,1.0863617
-1.7408599,.16368463,1.1138671
-.41760038,.60920457,.07513467
-.38684119,.3179231,1.5524216
-1.406735,.34216866,1.2238847
-1.5554925,.82430313,.97686918
-.72883985,2.1225505,.21713523
-.34426393,1.5117186,.35336851
-.4493669,.82168354,.99897467
-.31491168,1.2238283,1.1458669
-.98451991,1.3556026,.92618463
-2.1859891,1.702059,.22453854
-1.4468966,.44881603,.656042
-.77748219,1.637002,.90541096
-.9631776,.84566499,.06051826
-2.7620615,.37050551,1.8333164
-1.3780376,.02483247,.13473013
-.57409805,1.7131516,.36161337
-.97576509,2.432023,.10535847
-.63651241,1.9936398,.19960778
-1.033266,.11329405,.63221056
-.52111469,.05852699,1.4337365
-.38194784,1.0685639,1.2299173
-.5461234,1.6875778,1.5358807
-.83214223,.77309964,.09108367
-1.6364464,.14623469,.87104036
-.94761584,1.1781176,.37083478
-1.1794806,2.5583933,.89649376
-1.1547657,1.1399983,1.1761256
-1.5459505,.1088393,.38066184
-.57088292,1.8512132,.23320998
-.68344583,.01169273,.36435014
-1.4824199,.66043011,1.0241862
-1.1800708,.41782613,1.3972714
-.97623409,2.0857464,1.1088924
-.30702908,2.9579657,.08997645
-.58987598,.96839959,.63815997
-.98876764,1.7234982,1.1369089
-.44386683,.38373058,1.9831167
-1.7059818,.3931135,.53875354
-1.5370273,.94283678,1.1965903
-1.1505651,1.5287805,.09993868
-.65261252,.72356982,.70490967
-.78497942,1.5195623,1.122353
-1.0731786,.28739417,.55851347
-.58117844,.82578845,.71594802
-1.1514182,.83635129,.04838387
-1.640356,.61308471,1.419973
-1.6098419,1.5857762,.58628555
-.81343992,2.4542111,1.2077096
-2.5991066,.52851468,.26510209
-.83849856,.58311178,2.2189647
-1.0721738,.46360422,.53989373
-1.8254741,.14590184,.67243473
-.69243656,.5137724,.90607761
-1.4589337,.14958405,.24721466
-.43275478,1.91217,.32959606
-.64825062,.28810814,.57823288
-1.3636573,.01190749,.47235386
-.52352426,.39910056,1.0480818
-.24873178,.6724504,1.0311486
-.7082417,.67321188,.78716429
-1.1209867,1.1113956,.4614766
-.90977744,.77291674,1.2711308
-.80520215,.37820871,.52280206
-.45836798,.75726691,.29978939
-2.119928,.28276899,1.1444829
-.25428931,1.7389136,1.8553612
-.8811124,1.4407645,.41502617
-2.4169643,.44180499,.68856398
-2.6640536,.10828067,1.8661675
-.67302652,1.0250183,.28035719
-1.0506082,.03283056,.87040659
-.86115969,1.0477808,.96388795
-.4475166,1.3371418,.47512233
-.40594509,.20072151,.79253783
-.6855629,.96160958,.69414316
-.53197746,1.7758383,1.5778385
-.67465033,.38939495,1.5882548
-.90609562,.12175881,.03825603
-.79655604,.58469386,.03675833
-1.2138407,.51579317,1.0987083
-1.1777638,.99835186,.79727017
-.54013393,1.2489217,.58202172
-.67513193,.59301697,.62521485
-.78805795,.37087033,.52926828
-.86159604,1.800839,.04544283
-.39335485,.90761492,.46554633
-.57776598,1.6433473,1.3781394
-1.8350442,.80208312,.85834443
-1.6178941,1.009166,1.4393574
-.96548362,.08634478,1.356927
-.87737078,.98823592,.79459473
-1.0675338,1.4452764,.21134304
-.58305227,.72233248,.39120507
-.30277622,1.5465993,2.4510322
-.76109502,2.6140644,1.306849
-.27108088,1.7057162,.86663665
-.39208585,.75821253,1.0707496
-.5417965,.02682774,.6247181
-1.078911,1.2462052,.72560458
-1.2192755,.67606195,1.2509455
-.75762678,1.1468804,1.3823863
-1.1001229,.72708227,.05275742
-1.4263606,.86045385,.27396698
-1.0141403,1.5133104,1.3633797
-.24415969,3.1415918,.5245134
-.85028683,.29057984,2.7414778
-.4437474,1.634071,.6736587
-.82831974,.49811622,1.0998351
-.60348278,.08598594,.39276023
-.91282719,1.3011373,.9178853
-1.2819827,1.7577081,1.1041175
-.73404939,.4565636,.05838956
-.76040113,.58920636,.52053141
-1.1075264,1.1293061,.19200404
-.55054632,.91519049,1.0328867
-.64248495,.52541303,.48623829
-2.6309558,.06997318,1.2811134
-1.5048739,.65237117,.50026856
-.51459784,.20824844,.52246955
-1.654083,.21695185,.88574826
-.6561742,.66467455,1.3497118
-.65924916,.83652961,1.8304243
-.50383831,.01035559,.42296245
-.49294678,1.9445647,.43744909
-.30400889,1.7758564,1.6708859
-.76215091,1.6907993,1.2445195
-.54625722,1.4195467,1.4327666
-.62620861,.55412852,1.4631973
-.3347501,.57810349,.33249097
-.74222896,1.6172705,.1266633
-.45099691,.98283387,.54817054
-1.1946814,.58737688,1.0784751
-.72372155,.26687953,.99659593
-.86377169,.51314433,.15408729
-.84338015,1.970709,.61881528
-1.1929644,1.7756624,1.430688
-.80274767,1.5174371,.16370495
-.43572362,2.2279448,1.2636298
-.67450789,1.1655987,2.2142157
-.35358466,.82031779,.15405984
-.35886482,1.6738973,.3360616
-.69891559,1.4164243,.99266449
-.92588953,1.4922645,2.980643
-.64343859,.76528127,.8369767
-.61968926,1.3945568,1.5925383
-.29149337,1.3332911,.71541592
-1.7657506,.84550749,.38731708
-.90643751,.44066347,1.0156565
-.74616159,.34590752,.47179391
-1.3586173,.40149579,.45244128
-.23191257,2.7306109,.91036249
-1.2174894,.07636014,2.3569904
-.62317455,.29415574,.07597301
-.81983653,.06145171,1.292522
-1.1606098,.32215464,.46271081
-.81523928,.24589765,.70484902
-1.1132441,.1006368,.13442271
-.53307089,1.0132791,.71531311
-.73561579,.21705316,.44651419
-.64036863,.77535029,.94833187
-.95978445,.57331812,.08837822
-.82822445,.07117653,.37351606
-1.0873772,.18449347,.12676954
-.46844082,.65195983,.36683553
-.95615713,.94750602,1.8025891
-1.6885971,1.6446589,1.7172395
-.68369729,.59612778,.68661729
-.4254586,1.4694833,.84061499
-.5181774,.56733064,.79673154
-1.1377528,1.7576942,.08245816
-.41503931,2.1240975,.7779817
-.71276743,1.8682201,1.880869
-.53061026,.13958707,.26327976
-1.3087803,.25091046,.90314457
-.79452006,1.2415094,.33267157
-1.0781145,.35348067,1.5637959
-.80886111,.07252081,.04062126
-.87192445,1.2615668,.72759771
-.33587533,.71062472,1.3560181
-2.3071822,.05933115,.5446648
-.55665357,.40952529,.49345389
-1.1539785,.63456264,1.7252353
-1.3073918,.25193687,.56004811
-.89018877,1.3894565,.15152214
-.98548138,.49009232,.3204609
-.92409096,.7369447,1.4235094
-1.9167219,.62577107,.36076264
-1.1674933,.03081256,.68466527
-1.3003053,.6815236,.61409678
-.59848605,.4610011,.01395164
-.56880521,1.0924224,.65463167
-.76662826,1.3150643,.23654104
-1.1057677,.42233254,.32126781
-.41984372,.63798835,.5242811
-.5816772,.4012437,.35411605
-1.9087333,.29171851,.20605594
-.26845363,.96682676,.35611788
-.396603,1.4199567,.10405635
-1.0642715,.41447786,.50664116
-.78191166,.9335732,1.1245812
-1.5548552,.00550938,.34297645
-.52691442,.85512003,.67652999
-.77007165,.0880496,.9499868
-.788849,.08125472,.19348377
-.48280253,.58129187,.66410795
-1.483978,.06103914,1.1336569
-.8410125,.15287415,.46003396
-.65531184,.13929991,1.1261642
-.65197462,.09933938,.71185962
-1.038511,.05772909,.52106037
-.85322259,.6583389,.05052164
-1.2556685,.88322527,.41948151
-.38457075,.77977969,.5969995
-.4942295,2.1479019,.90034733
-1.5517515,.61558975,.20331881
-1.915669,.42711651,.77430238
-.96317014,.55327527,.48375528
-1.1772272,.5331,.39698151
-1.0052769,.72293611,.75589209
-.31672273,1.449798,.74817096
-.83250684,.45113568,.7504734
-.81763196,2.2221353,2.0638539
-.51355034,1.966807,.26108682
-.70544249,.38594361,.8323719
-.58049969,.99098958,.65676261
-.64486394,.20471004,1.4168108
-.85638588,.65809922,1.6348756
-1.2460246,.14974034,1.8599427
-.77558875,.06375199,.93268408
-1.3067032,.16962684,1.3969634
-.24610249,3.7163562,.68424981
-.90301796,1.7743651,1.1418445
-.37821705,1.9495766,.67629408
-.88898714,1.0082653,.79368137
-.50266164,.18412746,.67444193
-.66383353,1.8038754,1.2117255
-.8903209,1.2378179,.49799119
-1.0537767,.51151381,.82706502
-.69103091,.1345013,.3552259
-.60900709,1.4359886,.3792731
-.8217763,.59003001,1.3800029
-.82051424,1.0575865,.5068282
-.56022153,.02327964,1.191661
-.89745004,1.6320278,.76473808
-.59275223,.78169172,.20038095
-.8759664,.40706695,.21248746
-.44010865,.14071265,.4662772
-.98318565,.59101841,.75143476
-.28154945,.02583411,.38170448
-.28831782,2.1596583,.37492657
-1.0111253,.85188396,.34584515
-.35364645,1.7702985,.43757695
-2.3480101,.53918875,1.7056941
-1.1388167,.92411626,.28030717
-.25289442,.82167365,.02786653
-.83078996,.05124412,2.073802
-1.0131705,.63233388,1.0009814
-.83113944,1.5013647,.80937227
-.49186806,.34021635,.30065369
-1.52645,.33854451,.4992976
-.69499484,.35734011,.42235662
-1.8244644,.46802456,2.250913
-.68962537,.67856264,.77489848
-1.0067906,.1002143,.9565095
-.57008139,1.1046697,1.1212131
-2.0960904,.61868139,.07492074
-.75262028,.15232858,.26640549
-1.9457916,.56693138,.0001319
-1.2715409,.50017452,1.5990405
-1.7013087,.51667136,1.3525449
-.6313736,.2441359,1.3548627
-.38584807,.76043802,.25360902
-.67019545,.48820563,.09193021
-.7731535,2.2880494,.85166618
-1.1967949,.30042575,1.4211892
-1.0267387,1.8479873,1.7843686
-.57067258,2.497039,.48933681
-1.0945258,1.4248211,1.8445478
-1.1880034,2.5779886,.51865531
-.64129089,.73126091,.90555249
-.74262391,.30291403,1.2316514
-.60354903,.94469281,.97767639
-.68124748,.45181178,.28554981
-1.2312646,.54842336,1.402752
-.83880461,.34056498,1.612424
-.52779723,1.0253195,.3896174
-.70760687,1.1888567,.88141388
-.55881944,1.905708,.36473639
-.55676057,1.063397,.21697316
-.53119217,1.2004848,1.4485817
-.62965132,1.2066944,.53529221
-.72453044,.08700803,.03074238
-.51746006,1.8975533,1.8695335
-2.508296,.52971679,.38219335
-.52521207,2.4578292,.34122538
-.64260922,.47109575,.75992802
-.80904768,.17545157,.67240547
-.66070558,1.9970734,.6335812
-.87942213,.16657745,.36847355
-1.3825288,.00581919,2.2159113
-.95123924,.38841291,.38083305
-1.3721973,.22394591,.40003253
-.51545059,.30415101,.11644008
-1.434169,2.0818804,.57857253
-.32375464,.95130402,.21471624
-.4190883,.30990687,.03505805
-2.1833974,.18409256,.8329671
-.35695414,.30852906,.98113632
-.91061973,.64885899,.74455013
-.95684672,.263071,1.0983846
-.71757783,.72593215,1.220605
-.95925775,.05130437,.60746354
-.44033019,1.0042176,1.3823681
-.68256656,1.9402162,.76989105
-1.094444,.82500427,.6160468
-.98266884,.27739295,.27017194
-.93241676,.8285968,2.2272443
-1.2410155,.44476369,.28116476
-.95514286,1.7658976,.36094517
-.40155862,.95373491,.32395954
-.78561123,2.3539206,.35017023
-.3280834,.78980023,.6985961
-.69112979,.94516511,.72699773
-.70035023,.93354749,1.2685785
-.84843538,.78623507,1.7445972
-.61548782,.80297476,1.378123
-2.1564187,.09097009,.24215309
-.57075851,.38078689,.70957241
-.40211313,.10287168,.25963247
-.62951697,1.7654188,.27172263
-1.3073206,.11791457,.06307336
-.30026034,2.7653171,.15945314
-.97926441,1.1748922,1.4592793
-.29973042,1.4695144,.37300164
-1.099044,.8867354,.87330165
-.46641916,.93647749,.33294028
-.34268861,1.102947,.23641725
-.4522669,1.4988448,1.1371413
-1.7255483,1.0124063,.62310654
-1.1147565,1.8218409,.20438838
-.94575915,.07980934,.34773422
-.60979032,.29736533,1.6524373
-1.6295238,1.2181966,.0673337
-.66755411,.21536259,.21332999
-.62715895,.3040418,1.1094554
-.39229851,.65204308,1.0564545
-.34332948,.98034485,.19471918
-.37257944,1.4883142,.29251815
-1.1435924,.45882937,1.5374017
-.52048161,.70478956,.04385062
-.95634966,1.5636021,.28340395
-.66559598,1.090974,.64049017
-.26861017,1.9922132,.82615412
-.81730226,.11521207,.22119217
-.90121804,.37925825,.91204955
-.34435157,1.0336982,1.4069601
-.68157529,.58728522,.50276011
-.22582338,.94351775,.3414724
-.87557902,.52001239,.46462459
-1.29547,.12736967,1.7051712
-.95641584,.17259279,.98726911
-.78718626,.32321888,1.1881555
-1.0501799,.50237799,.49439808
-1.87035,1.0464399,3.6502294
-1.2422687,.00057643,.48466346
-.80499345,1.5432168,1.1453395
-.84798264,.48826661,.63060471
-.68796919,.22635972,.66817688
-1.1350823,1.1114681,1.523387
-.87868605,.02383619,.52219986
-.67567694,.52473442,.39025496
-.80726699,1.2111918,1.7909537
-.56667898,.72928427,.59037364
-1.5550561,.27404669,1.1897191
-.43401903,.66781664,.63993805
-.7428692,.61048992,1.678872
-.60420931,1.9564332,.00314182
-.71848591,.18803694,.46021006
-.99286146,.07465914,.30327728
-.83419569,.39168283,.80296672
-.90175538,.7804202,1.1212465
-.90785939,.56875821,.10905583
-.83241273,.70650716,.60344821
-2.0392868,.02837674,.20500842
-.97356433,1.8925582,1.1385825
-1.0494216,.95605198,.99396951
-.60920568,.18069852,.73544359
-.57721336,.76596839,.13694787
-.61958521,1.0618997,.49325158
-1.2734094,1.6534046,.87334049
-1.0477725,.24742443,.04724551
-.52058779,.33360585,.8737555
-.85476885,1.2530655,.36864908
-.46444448,1.5972456,.09334621
-1.3303714,.99836897,1.335067
-1.6154058,.13226755,.40056048
-.32056978,1.1209046,.0951068
-.67821517,1.431806,.13309557
-1.1522226,.04857179,1.4302721
-.3395744,1.6968339,2.311486
-.18320204,1.3289019,.0592508
-.72188153,1.0539267,1.5769564
-1.2399296,.26193714,.60197068
-1.7430735,.06627759,.77930194
-.74547359,.01044596,.89943225
-1.6310563,.44253999,.26130267
-.51633389,.58295862,.22233711
-.32381481,1.2315048,1.0418303
-.67768786,.24301387,.22899321
-.88837815,.12756246,.27813729
-.76776827,.56724497,.63097145
-.34111453,1.1262329,.89337527
-1.2617316,.1848179,1.7020223
-.69433756,.09865442,.82365207
-.95177165,.93981359,.37251891
-1.6786143,.8344637,.07036972
-.42075377,.60682853,1.0017819
-1.1661097,.13438828,.92706971
-.74496607,1.6389944,.01060576
-.23509238,1.5647595,.87397131
-1.5739433,.90223275,1.3893836
-.36192157,.37906796,1.0895296
-.80436688,.74365692,.40403336
-.6515306,.13632523,.14522617
-1.5860151,.22779242,1.7581673
-2.4578167,1.0625782,2.5006107
-.73757711,.12076793,.44108552
-1.1286623,1.3975841,1.1054347
-2.3051173,.05271431,1.5612224
-1.1253199,.17703618,.5123354
-.58553635,.89370181,.12435589
-.49030995,1.6627901,.42168299
-.44302162,.05119511,.37268295
-.29215443,.81532384,.52492612
-.7878564,.53634904,1.8628844
-1.0602122,.56004824,1.6318725
-1.3366917,.3633967,.43713967
-1.1082785,.21846614,1.6402996
-.863278,.6178733,.4703624
-.43178647,1.4202453,.2925454
-.34124749,1.5947011,.19070433
-.59975561,.95866819,2.122641
-.5738171,.00513054,1.9424178
-1.3230414,.52085315,2.1708241
-.30179636,2.1712617,.84452856
-3.5085785,.64223821,.6407037
-.4983225,2.6495246,1.1934993
-1.1841436,.98205381,.07324039
-.45127185,1.4671814,.70849088
-.9796598,.40825122,.05426616
-.49545422,.24154766,.14801989
-1.1584592,1.0544983,1.8743992
-.51403333,2.3363078,1.1761001
-.92376418,.09521745,1.2796414
-.75985062,.65394224,.63543993
-1.6982226,.78918578,.99377109
-.47900568,.60842037,.22992265
-.58172319,.84819534,.0827429
-1.0310327,.82256503,1.9438497
-.90680572,1.6279375,.50658796
-1.3487136,.16462952,.0092605
-.84934829,.92145627,.47062629
-.66576951,.54907523,.24991337
-.78773708,.53843203,1.1795437
-2.0099855,.33668574,.71646156
-.41557929,1.304855,.83478995
-.74167304,.32244183,1.3563795
-.63903366,1.1190302,.86371226
-.56861025,1.1104327,.01236755
-1.9947837,1.2406415,.20726722
-.88398015,.19213172,.73523609
-.61312231,.98629106,.96510763
-.5830617,1.8719593,.53443205
-.8797348,.13440896,.58698965
-1.2138075,1.3241719,.81594298
-.9242462,.40478497,1.8348986
-.54037757,.35222644,.23093197
-.88445691,2.673704,1.4921323
-.81565125,.60437048,.78469862
-.91402127,.66667468,.16068967
-.38811665,1.4033955,.9915936
-1.0534171,.99060085,.10006074
-.53533251,.18305195,.80751181
-.59734737,1.3746407,.50072178
-.57880543,1.1789207,.0387137
-.4799563,1.0264905,.50791741
-.76220357,2.7526834,.78708379
-1.5086528,.54083498,1.7711833
-3.0137054,1.5488337,1.2822558
-1.0217759,.02362908,1.1001703
-.51628301,.16187711,.12751342
-1.1577823,.21172295,.76154606
-.35368677,1.1097174,.94419982
-.47268996,1.2590908,.86108342
-.86474278,.26632129,.24277915
-.93524406,.11119364,.5078176
-.29706331,3.2464486,.41653539
-1.1082729,.66622129,.98235245
-.61166779,.52042873,.55055619
-1.6223927,.78829216,.97113186
-1.3154217,.28745336,.86883713
-.45547853,.5861399,.30492337
-.84520515,1.0696194,1.2484405
-.75972107,1.8763844,.61302002
-.3842719,.09537379,.70746682
-1.9356822,.37505783,1.5185673
-.49070922,.42116794,.83823937
-.99145714,.62830475,.79802518
-.51391158,.12699163,.21034558
-1.1139396,.17355676,1.4661525
-.61240002,1.3257004,.85061547
-.39855126,1.9597787,.91251036
-.85238835,2.7233094,.25152992
-.90132513,1.7370649,.47563508
-.62632664,1.1413234,1.4316302
-.56199713,.3117894,.73502955
-1.0815936,1.4107158,.10966527
-.69806581,.29097881,2.2339088
-1.3438207,.15252829,1.006245
-.56690153,.39953017,.10067909
-.56547992,1.7658202,.19155416
-.68344968,1.8219464,.27159179
-1.4035686,.06157098,.85708415
-.52307572,.19959925,.82483501
-.79419233,.19609559,.96901149
-.84250791,1.0653753,.05262471
-.45683943,1.6790844,.40448508
-.62086451,.89747749,.63029592
-1.4735731,.48673645,1.8104091
-.63480736,2.037874,.98255837
-.90316614,1.5105382,.23788273
-.34669645,1.8277242,.53312912
-.57918589,.75400989,.37941318
-1.0455758,1.1346229,1.6132767
-.80334555,.29166828,.65271267
-.76828972,.31645268,.34540614
-1.2637002,.19283063,.13343485
-.79458279,1.4161005,1.7589962
-.56796283,1.1341587,.67568954
-1.0229743,.64129447,1.5380253
-3.698682,.24707718,1.0417465
-.9227755,.16291429,1.5250129
-.68999334,.13550402,.00495775
-.7499128,.78288685,.88690563
-.87759577,.57623448,.67459176
-.83361036,.79341306,1.2317473
-.64751973,.06733138,.12594145
-.5480827,1.2743039,1.3796548
-.72535538,.25517493,.77693663
-.44165032,.55870667,.02077415
-.7611779,.47005853,.2195845
-.44908638,1.0654483,.70374993
-.84855028,1.2324767,.1981778
-.78380584,1.4384594,.80564435
-.38077349,.04198388,.80219101
-.6330877,2.0744067,1.8474038
-.72893875,1.2160752,1.2341736
-1.3851455,.25781665,1.3778962
-2.1731492,.27086821,.11940463
-1.2028446,1.1770014,.73475519
-1.3458462,.68610492,1.3680227
-.72541656,.22338721,.60973386
-1.8658365,.59150671,.63902574
-.49853192,1.0476598,.10228135
-.76466903,.14525754,.62005309
-.7286568,1.0975813,1.0431635
-1.1600613,.61909735,1.1604169
-.77922952,.06773858,.43765891
-3.1779015,.54853863,1.4063103
-1.3994719,.82367436,.24713171
-.84347076,.74980524,.37484917
-.9885705,.83564952,.79750558
-1.094166,.10613467,.30137934
-.50833965,1.080637,1.5027859
-1.507001,.24818473,.11938016
-1.3193316,.67974532,1.8947444
-.65165589,1.8885484,2.2414401
-1.8028786,.85835384,.33599743
-.76725709,.19549787,.85915953
-.79371333,1.5218807,1.0571558
-.46041925,.63749635,.07888957
-.79687606,.51840602,1.3935086
-1.0850969,.81921398,.46964643
-1.6477681,.93498898,1.019327
-.93503432,.18048629,1.2078888
-1.0784074,.01368612,.06884694
-.71226814,.58439319,1.7149301
-1.0226802,.07733398,.35767821
-.54421141,.67234584,.29522753
-.48221374,.90203244,1.3889486
-.35269315,.87503494,1.1531702
-.56679781,.13678487,.05751889
-.51538104,.06438175,.35431473
-1.1786115,.04364438,.46554648
-.76988916,.12357809,.59015744
-.40017143,.51051612,.21629624
-1.2637686,.1693691,.35523207
-.67212365,1.1824114,1.598927
-1.787884,1.0073328,1.8509792
-.85429706,.57549933,.78880127
-.87313071,.61033439,.58148274
-.28965576,1.4616683,.56513718
-.26472163,2.5653906,.30507279
-.55495753,1.4463418,1.1892643
-.92532736,.46177333,1.8062619
-1.4389244,1.5691537,2.9232531
-.68262312,1.9542251,.81574958
-.96813116,.12848186,.93177356
-.58767641,.43982681,1.3181866
-.49415994,.8428145,.58768866
-.92724634,1.2416561,1.2411851
-.98929839,.02996665,1.5787835
-1.058924,1.0675726,1.4319344
-.39079355,.48803329,.24915618
-.52865394,3.3187101,1.9698507
-.27972076,1.4192613,.34069724
-2.0898167,1.6665335,.59194681
-.61742986,.11250173,1.2695394
-1.8145875,.87831915,1.0724565
-.82537865,.14399027,.23437595
-2.5580507,.11301886,1.1563137
-.60622407,.02495952,1.0242726
-1.0510522,.55900682,.54401161
-.79483899,.72925141,1.9468267
-.64301659,.57925695,.12191245
-.75329736,2.2114742,1.2020132
-.71938976,1.3386075,.14667932
-1.5120322,.29396219,1.1469359
-1.723681,.350369,.00341944
-.34556297,1.6420458,.1868469
-.83713291,.96822048,.3171316
-.80116569,1.2897989,.59240184
-.59939783,1.616765,1.696494
-.5022148,1.4650262,1.0792238
-1.5003945,.57061559,.14319934
-.9210346,.41391827,.17045568
-.40728601,.98763058,.92975341
-.38200975,.44343392,1.1609753
-.62771765,.58562524,.39617322
-1.0833413,.26034688,.13060607
-.21546179,1.3771465,.08054496
-.56947635,1.1339584,1.2903218
-.87841072,.41533904,.29547381
-1.2459924,.48635118,.11121413
-1.0465451,.22069822,.15817575
-.98029864,1.3658066,1.5883975
-2.4294353,.10945585,.49298926
-.99028071,.06339361,.8755753
-1.4697184,.15732214,.25839515
-2.0080241,1.1899321,.85524685
-1.1714706,.86756766,.08852005
-1.9506391,3.3279187,.21823936
-1.0519317,.05032597,.22755646
-1.9033566,.27659145,1.6624021
-1.4304386,.60038051,.5378714
-.87267791,1.7256796,.91641606
-.67221001,.33195419,.6874997
-.56827303,.51177403,.29337421
-.61994859,.20286937,1.1073874
-.92711843,.55903581,1.6754399
-.67493611,.3000298,1.2689314
-.7251425,1.0010494,.57227383
-.91168957,.71200079,1.1250697
-1.097685,1.1231359,.17201639
-.62592759,.09499514,.1126922
-.56168258,1.7996535,.5900848
-.90965192,.22610221,.05975048
-.77900053,.32076432,.52214969
-.47511778,.47219389,.65007132
-.6490888,.30218621,2.076051
-.92006102,.88005949,.19505658
-.60906787,.10593218,.20936706
-1.1668918,.64167217,.84113948
-.63043016,.6407228,.47705542
-1.6863642,.50591553,1.4984866
-2.0911876,.18586619,.77134123
-1.6860627,.92133176,1.4161757
-.5419759,.04587364,.24510969
-.48325787,.85396966,.72330307
-.97495594,.86015476,2.2119086
-.40198974,.25624204,1.9783503
-1.2932071,1.2848317,.8896058
-.62712251,.2565875,1.0654328
-.47830039,1.3405646,.68934772
-.90183812,2.4572446,.968554
-.94789886,1.0815228,.89766284
-.74776316,.59711331,1.3770685
-.46664825,.91682581,.05297144
-2.1273956,.57061687,.7913005
-.84264327,1.3163596,.55277323
-1.786301,.09330254,1.1651955
-1.1827467,.3820706,.79339962
-.71421183,.67305901,.05974999
-1.545118,.1481252,3.7643939
-1.2669712,1.4170284,1.0696889
-1.2312735,.57276764,.02668456
-1.2909269,1.8980685,.16122854
-.5947659,1.1116788,.27097028
-.81599362,.21684817,.54613919
-.45976658,1.2449445,1.578032
-1.1478206,1.0007944,.50199637
-.84141573,1.046691,.54475845
-.98665227,.3195075,1.6240104
-.93376813,.3758811,1.1554622
-.52467407,.84582578,.96437427
-.63173045,1.2573573,.49332201
-.80741936,1.3215764,1.3565537
-.51427889,.72902709,.26179099
-2.1741592,1.3153854,1.5106472
-.91735876,1.1785004,.95266954
-.81610569,1.0071868,.77464827
-.4495255,.81021256,1.000369
-1.3336409,1.0474497,.41280833
-.22012453,1.2226252,1.2363053
-.57215852,1.5692364,1.9297912
-.77434302,.03390481,1.2752771
-1.0399351,3.4961237,.50837427
-.66783654,.39458931,.89423716
-1.9482736,.04083091,1.0078269
-2.6525279,.14540941,1.1855976
-.46354753,.56064645,1.5392056
-.58752941,.37306884,.48767765
-1.5727003,.91604521,.43960598
-.57415533,.27005578,.59356095
-1.1024508,.05914817,1.4414522
-1.2084988,.46427256,1.0268797
-.93827446,.44465654,.2503626
-.57324939,.72983067,.26296444
-4.1074601,.09570053,1.9662907
-1.4839621,.86708821,.66712164
-1.296767,.08143433,1.4901282
-1.1847731,.50788748,1.1193813
-1.1037664,.41381997,1.6427144
-1.1031934,.78872047,.18888939
-5.2937859,.00062067,2.383483
-1.2690925,.73195569,1.9329431
-.99924168,.15603714,.44384891
-.60000547,1.2269548,.0091658
-.60574891,.70757338,1.729087
-.70081782,.51896735,.75604559
-1.7220869,1.5152374,.23983644
-1.0390615,1.5338018,.21694527
-.56274385,.2848936,.95192475
-1.8212665,.41815254,.85963678
-1.2824202,.0605674,.97460241
-1.235245,1.5427953,.39226794
-.87156795,.72170282,.82696581
-.83384448,1.5055432,.11577349
-2.0659212,.80726625,.28565878
-.69945458,2.5076921,1.4308453
-.84984842,.412905,1.5173468
-.6576174,1.1309689,.40498487
-.68493301,1.0917795,1.1292878
-.46897558,.83899306,.42519669
-.74455696,.95140278,.73172081
-1.0772947,.99212358,.09530725
-.22978046,1.1224835,1.2509675
-.79191512,2.4853208,1.5613866
-.55338681,1.1659694,1.8516979
-1.5900642,.88118047,.26219386
-.95273794,1.0267149,1.3422637
-1.0214479,.84814434,.54153906
-.7501017,2.2074709,1.8086128
-.48829187,.39046416,.27331467
-.54933282,2.7798373,1.0034273
-1.1744691,.44605865,1.3289163
-.94509264,.17763773,1.6165896
-.25748729,1.5912177,1.2809662
-1.2456598,1.2401956,1.481741
-1.0261527,.03888703,.15454377
-1.468585,.45022924,1.3529683
-.36886464,.22432018,1.6527716
-2.9642655,.86858364,.89769853
-1.2080447,.07295123,1.8467069
-.80899252,1.4334703,1.8571556
-.75755347,1.7384248,2.0631602
-.8839973,.50052618,1.7733583
-.7193455,.91553211,.20901232
-.52973511,.71478207,.10435724
-.89271649,1.4342838,.73799548
-.97274871,.13746097,.94423369
-.81612165,.37382974,1.2346673
-.44249329,.09860919,.39585328
-1.4302578,.10035116,1.102343
-.56669169,1.434264,.9414116
-.83610537,.00343914,.13575713
-.40929155,1.1284588,.10858486
-.85789015,1.5515425,1.3022215
-.49764897,.29482196,.41805554
-.9805539,1.9469844,.18661206
-1.2117855,.96671631,.62565906
-.71919866,1.9375889,1.3414128
-.43345841,.74179987,2.3576745
-.79768742,2.2539381,.29910183
-.78444536,.0569455,1.0856682
-.78035701,.1994302,.91159126
-.36925969,1.3880274,1.0899399
-1.5525173,.16471901,.00668795
-1.4171993,1.1690147,2.7232829
-1.7995804,1.1622547,1.4532552
-2.1682503,.49112513,1.50865
-1.3819604,.26232031,.73586803
-.75486749,2.8347712,.09206699
-.82447926,1.2230865,.17819
-.59934882,.93572584,1.5429935
-1.3359149,.19806037,1.159334
-.59323523,.87931713,1.5187613
-.38692679,1.8360492,.50899597
-.64631557,.52115115,.11487488
-2.2431971,.06372587,.64949678
-.85193598,.08911596,.06091346
-1.6883793,2.6028006,.02490605
-2.0249451,.33335423,.34914606
-.49690921,2.8191514,.26259131
-.90656675,.8115889,.78818975
-.56475116,.45061177,1.5067853
-1.901131,.46214687,1.1959821
-.50648554,.51788544,1.2647077
-1.116204,1.2365641,1.0006916
-.77438539,.51732141,1.1417086
-.6448646,.52357124,.60827435
-.61128263,1.120359,.21726727
-1.1271149,.69826852,1.2150374
-1.3757083,.7994353,1.4130074
-1.0742968,.95159688,1.0462208
-.60003855,.69583125,.53078637
-1.3082286,.02795807,.95841572
-.63631028,.83871865,.65459017
-.58796915,.22496195,2.1648972
-.37596632,.21655705,.25366852
-.87916496,1.0746595,1.7534094
-.59637523,.82807738,1.1409547
-.86101065,1.9944121,.41411662
-1.0181256,1.4149331,.44199951
-.65961456,.6398217,.26849124
-1.1526127,1.3602385,.22912295
-1.2431957,.02936314,.02147996
-.5922831,.90060805,.64811763
-.68786262,1.0323553,.02429192
-.88154386,1.1996114,.39943843
-.67801548,.14901656,.7460817
-2.3378835,.78628843,.03004696
-1.2049146,1.0953815,.78304275
-.54622219,.52830705,1.0934585
-1.7348698,.04984277,.09249026
-1.5204501,.06883973,.75710067
-.54029012,1.1957863,.39029629
-.88391414,1.4979764,.22466434
-.72145355,.04025706,.20912754
-1.0976731,1.2547146,.15943529
-1.4134276,.45886951,.74445624
-1.1499668,.64320799,1.2602838
-.91575072,1.4711346,.39514342
-.41408889,1.2582378,.90848392
-.8032346,1.697734,.49760027
-.56941176,1.5722727,1.8352363
-1.2446257,.79599785,.00456142
-.36435346,.17657655,.43351054
-.6562519,1.0422128,.29795829
-1.7160836,1.6736442,1.2730485
-1.1704063,1.081397,1.7787724
-.55770413,1.0644482,.39739245
-.82706576,.48103217,.57087302
-.92025323,.82937085,.10195007
-.32877422,1.6595536,.47795956
-.58393498,.5764314,.4287689
-.89651891,1.1975262,.0093744
-1.4087048,.0198082,.46299322
-1.7271826,.32544053,1.0975564
-.46555987,1.3813452,1.3856775
-1.475549,1.4678934,1.7136715
-.67803532,2.2775314,.3949105
-1.2249949,.0226527,.31692739
-1.3583525,.16836413,.96236383
-1.2337121,.02178226,.09351609
-1.0687104,.56002003,1.141184
-.88764448,.02427446,.2152693
-1.2671923,.10210439,2.3775582
-.50865536,1.2605454,1.1317804
-.73926105,.35624511,.14050539
-.20778116,.35196533,.51390291
-.6231306,.99031929,1.1543224
-1.0720368,.36582855,1.6164095
-.47289127,.21686091,.01480683
-3.2875012,.4243632,.11353148
-.33534904,1.051564,.02195934
-.69852726,.99998893,.04653557
-.31498594,1.0986922,.55760218
-.95500418,.11128919,.34490715
-.88751789,1.2839757,2.2087844
-1.4832925,.08722828,.92788595
-.62619527,.09389479,1.0946121
-1.26599,1.304735,1.3723211
-1.4529236,.73372855,1.7709391
-1.0803785,.60094602,1.7144146
-.52503451,1.00901,.9782161
-.53894323,.63712994,.17501952
-.92958587,1.3564978,1.3881614
-1.7558708,.62599338,.95154126
-.91494682,.5186946,.85907032
-1.1519263,.46565686,2.3104093
-1.5485942,.25808458,1.5751733
-.65440323,.42745421,.98917763
-.87800311,1.9945531,.30573016
-.84551571,.485695,.14006905
-.7536421,1.1960284,.23644494
-.92910231,1.3142485,.5416675
-1.9897221,1.034802,1.3806833
-1.9874908,.81549464,.52166776
-.99324761,.42970128,.81170321
-.69495023,.9826748,.54536775
-.70577906,.32732451,.57283224
-.79600954,.55242124,.32932187
-1.2284426,.48104685,.76244328
-1.5043035,1.2255196,.46509244
-.97683994,.64178385,.04473616
-.60531001,.11678244,.55374664
-.61205547,.28888875,.53948246
-1.0328839,.49339823,.3025489
-.61339596,.79119929,.61862465
-.72269796,1.0995023,.50398962
-1.5513804,.04477903,1.1666327
-1.1484327,1.4268913,.7511989
-.69266973,.23822061,.40065322
-.43384235,.12391547,.21191611
-.86181123,.55520994,1.095343
-.38657498,.53153687,.10411614
-1.5998742,.85237783,1.0636835
-.52478516,2.7659902,.1005913
-.90544111,.41808826,.12372913
-.90311295,.18852072,1.2775356
-1.1280616,.04218938,.02324999
-.64733915,.24515823,1.0088524
-.60551401,.28244284,.25559448
-.69996655,2.7280774,1.2834788
-.51914038,.45713064,.30777609
-1.4943617,.04912,.49135961
-2.6009483,.19723788,.29462412
-1.3951901,.58301257,.076511
-.77268072,1.0726735,.66372061
-.62419106,.78533927,.85779325
-2.2409775,.54437987,1.6409547
-.63246253,1.2139375,.05678201
-.69834597,1.667185,1.5110901
-.63607008,.73685309,.86733634
-.62826286,1.8868945,1.0091795
-.45397286,.71039677,.13456077
-.64740241,1.1434826,.55281274
-.9549038,.67202945,.45484444
-.89888099,.54591775,.45472894
-.7218947,1.3051151,1.876731
-1.1733204,.37845274,.31516188
-1.0000855,.71782034,.76596856
-1.2535653,.41667603,.63382264
-.98820952,.6759027,.69301701
-.82214144,1.8240924,.84374418
-1.3930681,.21890882,.18481906
-.43900794,1.4221055,.47740778
-.52241064,1.7073072,.72721129
-1.0675839,.12529573,.15707606
-2.7422681,.7507303,2.3880456
-.83561925,.87808498,.38234277
-1.6322846,.98141433,1.6095158
-1.1169696,.4557741,1.6414292
-.27436475,1.6044757,.43809491
-.67796649,.80061054,.35585854
-.79999574,.15767654,.08280298
-1.20798,1.6293572,1.4684576
-.78139989,2.0045514,1.646916
-.49327168,1.7356464,.29677834
-.74540004,.64897428,.27381852
-.60604672,.51806672,1.2763236
-.63220435,.46914091,1.6408235
-.52015668,.42839737,1.0996729
-1.1088797,.42512275,1.0960992
-3.3431871,.79908672,1.7574568
-1.3414536,.4513536,.26904653
-2.4348905,1.1328221,.83463853
-.66103622,.12603379,.75409096
-1.1806016,.74977532,1.0452195
-.41046807,1.0948945,.1616528
-.94066832,1.9235133,.09957133
-1.3847587,1.2568369,1.9533778
-.69899924,1.1436208,.24826038
-1.1487811,1.6830248,1.8208558
-1.452436,.41208364,1.0011391
-2.4330998,.22673598,.74437224
-.82639902,1.0036633,.18522006
-1.1368791,.95516226,.02783349
-.77978521,1.334469,1.3024281
-.60403311,1.0696058,.70772129
-.42297739,.23000118,.53538657
-.90286024,1.3223431,.80594406
-.36684262,1.1563869,1.2823482
-.38872805,.83260929,1.0333585
-.41100704,.68606236,.42990764
-.53156339,1.0329871,.32959302
-.31737697,3.0648307,1.0210704
-.65967073,1.4515032,.79264107
-.74363602,1.3234245,.53774749
-.75287342,.30523359,1.0480726
-.83090525,.10680109,.05269172
-1.7258158,.42818775,.10732903
-1.0686704,.00764738,1.4885954
-.6852894,.15593904,.18526319
-.58380761,1.6334056,1.2766748
-.65525612,.60880881,.48374617
-.62788432,.06412401,.72334935
-1.3856585,.00959683,1.1812758
-2.2033095,.3764512,.60373817
-.63344124,1.4368035,1.9450389
-1.3606529,.00330537,.93908158
-.70625752,.58808361,.30615822
-1.02622,.84930301,2.1536017
-.53703598,.79938391,.33316372
-1.6526636,.14211911,1.6388472
-.53001795,.95871533,.29478227
-.55510478,.27295275,.13781054
-.42721528,1.8210597,.20845382
-1.191132,.10256888,.24071128
-.6388624,.75189189,.30566648
-.25110748,1.0625379,.3709595
-.80590755,.45379701,1.577063
-.47817618,.25653956,.47249181
-.40331465,1.1053216,.51781833
-.62577496,.37438486,1.4618586
-1.7082726,.21365289,1.2208346
-.66728322,1.2230744,.42920191
-.55291202,.60808129,.3220481
-.62006398,.25085265,.09428648
-1.0642409,.09587883,.60390965
-.3834435,.5229522,.42882702
-.98587931,.29854024,.9542967
-.88710723,.87106162,.62538251
-.15274678,3.2496892,.00840203
-1.3988452,.59921774,1.2115666
-.59647296,1.5263181,.22761921
-.56821031,1.9223257,.35095822
-1.3312769,1.2612708,.65620878
-1.0103525,.99150809,.1920621
-1.4555286,1.0199814,.15748328
-.43506632,1.9098794,.41568963
-.92011096,.31119968,.25676163
-.32791084,.69362751,.21538523
-1.6574824,.09959967,1.5142048
-.72882832,.68766504,.98220849
-.30880878,1.6289028,.0883926
-.84431761,.63916174,.1983979
-.78940342,.11791719,1.4600421
-1.1754787,.614023,.8767286
-2.6720654,.08035548,.5541238
-.89046956,.88989471,.52560636
-.81507264,.93410046,.41465093
-1.37227,.00992463,1.6705409
-.44498689,.74405015,1.2975166
-1.0292935,.22352832,.05805577
-.65339065,1.4972458,.79896111
-.7532077,.28797242,.04328426
-.28608869,3.4685093,.58406669
-.61598535,1.7300725,1.0915151
-1.0029577,.2512542,.61577182
-.83533961,1.6497034,.22521464
-.30627421,.59073821,1.3876529
-.20546066,1.1732519,.6475078
-.56533151,1.871579,1.6389485
-1.1329146,2.0465438,.71353727
-1.2043579,.94729023,.59733612
-.74461204,.19996634,.34876438
-1.7509487,.60145435,.68965444
-.55345683,.03667904,.1208657
-.43707592,1.0904453,.04641653
-.2404108,1.4987314,.0370137
-1.7109143,1.8912484,.44964816
-2.113726,.65302905,.82993861
-1.1875906,.30811476,.18746499
-1.8696541,.04531634,2.6889863
-.87395163,.08682255,.40915031
-.72177635,1.4664844,.10391538
-1.4905576,.74921065,.22880408
-.66639652,.80163733,.52383553
-.80494555,.34226465,.82561896
-.62241167,.08764277,.042611
-.88747004,.53712455,.34074197
-1.0774565,.43692566,.73153353
-1.5127079,.19225405,1.5643813
-1.1705262,1.3545172,.40314371
-1.6749106,.64750848,1.1694763
-1.5255141,.65711505,.76494344
-1.1148371,.54784065,1.3949324
-1.180817,.99744778,.25095781
-.68188014,.57017943,1.2138759
-1.5221374,.07565366,.69670498
-.95989147,.83194342,.40058859
-.48555521,1.5155558,1.2948859
-.37706996,1.3668022,1.276228
-.5241732,.80830457,2.3292969
-.38689969,.53859563,.05137318
-1.97785,.50748815,.33101288
-.86119424,1.0442176,1.3888769
-1.0341546,.21865017,.43970775
-.35991846,.17531703,.21145121
-.43424565,1.270354,1.1088202
-1.3454723,.35382413,.57007121
-1.1489952,.76793293,1.8934582
-.53175493,1.2597701,2.302436
-.42476951,.6148813,.39417396
-.64160481,.24285405,1.006807
-.42325509,1.3896161,.46741456
-1.3288649,.6791418,.35819037
-1.7796925,.69333888,.92016852
-.4307488,.19109075,.56735897
-.78058578,1.2690488,.70897846
-1.4644201,.13142845,.07972586
-.77678294,1.3125337,1.0323953
-.42307836,.79438468,1.6334334
-.78403419,.18935332,.38866613
-1.9963091,1.212833,1.0329848
-1.1731049,1.5116544,.58421825
-1.4534055,.8470056,.25752252
-.76836193,.61306635,.18595197
-.60272963,.56929364,1.2581783
-.57823672,.59595285,.40607763
-.65833172,.27082787,.00041944
-1.3549753,1.5500083,.03214567
-.87612115,1.5353071,.48461161
-.79742717,2.7597359,1.3130972
-.4593025,.66388144,.72526814
-.688197,.52860882,.58941975
-1.1387729,.13495959,.61238774
-1.2849178,1.4507154,.83135525
-.87357206,.1911325,.74878241
-1.1736969,.05784474,1.5594785
-.78213129,.48375648,.39101099
-1.0868843,.41785289,.2080371
-2.284796,.30815642,1.1453666
-.31017743,1.2599307,.68975906
-.93251705,.24638801,.918654
-.41190081,1.3177849,.64990701
-1.045526,.12826196,.5172904
-2.0640812,.4250843,.56155567
-.59208187,.38355878,.13414793
-.9359357,1.8169296,2.4045689
-1.0930056,1.3296864,1.7892725
-1.4337568,.41695428,1.7965437
-.53047925,.06891652,.39885938
-.74139836,.03619079,.07214683
-1.0236707,.74477092,1.7973108
-.82098134,.08516704,.70485627
-.88390137,1.1709756,1.7602286
-.99439193,.33497709,.35127674
-.75539717,.51635986,.96292044
-.67532607,.19285828,.26179657
-.60696083,.00851439,.3844747
-2.1906453,.63000663,.46617479
-.8590994,.86073238,.18496872
-1.0590154,.29248031,.63446612
-.96239041,.05340728,.46721371
-.43996931,.38116864,.32263741
-.97892616,2.1806708,1.2669936
-.49936864,.98010994,.16310538
-2.4746928,.36783275,.76582692
-1.08668,.78787523,.38587701
-1.8122476,1.5300511,.60600147
-1.1821434,.76179889,.13130139
-.8053629,.02457304,.02798797
-.97457283,.19746395,1.5980908
-1.3003592,1.1271754,.71357178
-.77686682,.29350169,.23616402
-1.932847,.04072306,1.5925384
-.87282871,1.3226823,1.2921429
-1.1481834,.66338973,1.2803765
-1.1124545,1.545843,.05183484
-.25272627,.80030121,.28599714
-.3449566,.1929034,1.0647311
-.74373233,1.086003,.70689921
-.33420678,.95908881,1.1607027
-.87407532,1.5036233,1.6888891
-.62150389,.10180932,.70578979
-.50573242,2.2623962,.86855124
-1.2331574,1.099731,.25602633
-.91879006,1.3979151,.34990641
-1.0060589,.07122868,2.0555299
-2.1106996,.42351972,.69183557
-.81815913,.6152294,.10541422
-.49367356,2.4731444,1.0755261
-.41811778,1.0723082,.32613822
-1.3097044,1.4960713,.73377053
-.84967545,.38442709,1.1000752
-1.1381608,.66024563,.33179513
-1.0422762,.94222262,.10324154
-.63302117,1.1437396,2.3970321
-.74521907,.52890436,.34487625
-1.8557676,1.2984726,.70853592
-.87079021,.14839972,.50706333
-1.2546913,.32236429,.59540827
-.62351051,.11706843,1.1958687
-.65811115,.13038244,.71520952
-1.2887125,.70138444,.44671545
-.73461517,.58986365,.56580514
-.80233068,1.3535062,1.2320245
-1.511553,1.3871134,1.4405751
-2.0701882,.39724283,.19939954
-.55264646,1.2717213,.12264019
-.66412829,.39212202,1.5682746
-2.0366759,.33422769,.22156463
-.20482097,2.3735559,.48959333
-1.751484,.49219095,1.4710163
-.93876552,1.2037959,.86863906
-.62448011,2.5003086,.41232644
-.78039706,.87303271,.91734974
-.94624657,.12310544,1.4789148
-.54403759,.54056639,1.0678794
-1.7378135,.37041229,.1329185
-1.2910338,.2131687,.68959918
-1.3461443,2.0666213,.603784
-1.276504,.30815482,.6036426
-.96568472,1.3919063,.01657842
-.41688605,3.111589,1.0039012
-.66565301,.14163693,.25310861
-.76927016,.30722138,1.1034274
-.87351004,.79631447,.56826936
-1.8561632,1.3712494,.75592162
-.45865716,.53153732,1.3357851
-1.2113457,1.74264,.6237258
-2.4059103,.06315394,.2463039
-.64462493,1.5904848,.03334317
-1.1736276,.24215817,.64078246
-.92852304,.98814712,1.3111085
-.53174894,.22017061,.66233781
-1.0163669,1.9176929,.34651539
-1.598703,3.0314315,.6269411
-.41798292,1.000268,.86872351
-1.1775791,1.1247115,1.3680476
-.43349689,.13901417,.44783736
-.60510116,.04362722,.62136242
-.66073142,1.385544,1.5442257
-.94432441,.21731131,1.1394399
-.43494372,1.1566264,1.0611739
-.96039301,.49945697,.41010645
-1.4497041,.48300714,.44270815
-.75310535,.72711652,.35710005
-.75674519,.90398286,.63034697
-.82249972,.8548754,.86111402
-.59663352,.21125835,.18794078
-.53394971,.62454061,.64180813
-1.4232464,.91811241,.25368302
-1.2014892,.62435058,.7913029
-1.4818934,1.8238365,.29644297
-1.0291486,.82842616,.01337088
-2.3993371,.49965725,1.6510978
-.96584885,1.2482494,.6304713
-1.5951654,.06432495,1.9112032
-.35893778,.72633409,.58579074
-1.0225442,.00687065,.14765384
-1.4889737,.46247672,.16321644
-.83538301,.71642031,.05261124
-2.0808562,2.0320316,1.2024758
-.53697962,1.2013748,.20104523
-.88935258,.7545384,1.4180838
-1.315407,.66772792,1.0847478
-1.3020443,2.0023983,1.0497116
-.8295312,.30014029,1.0990197
-.68570978,1.3501318,.77626746
-.56006528,.1584136,.21150832
-1.2841789,.42511502,.25106098
-.50841446,1.479519,1.2954068
-.79849282,.31896974,1.3179978
-.52334185,.25593986,.05944482
-.9272863,1.459308,2.1428513
-.56743439,.4733457,.91484845
-1.3299967,.83218568,.2337069
-1.5848416,1.2551735,.29222634
-2.0786918,.16843119,.27740374
-.56719723,.88145609,1.9195833
-.71484712,.43978315,.89615151
-.95110095,1.104626,.88936757
-.78023702,1.1219615,.1057307
-1.5710697,1.5118203,.07961547
-1.1005255,.48007989,.30045878
-2.2369971,.50562905,2.2337259
-.35792822,1.3605267,.25647323
-.82512032,.13947486,1.5155314
-.6332554,.29396186,.11434355
-1.1421116,.11693207,.4374214
-1.9268466,.98432608,1.0701871
-.88291392,.79308146,.53963271
-1.3522537,.37357584,.65160082
-.74446216,.55771987,.32641769
-.9746851,2.5581687,1.4855992
-.35941353,.94581325,.97934059
-2.1187065,1.0973598,2.0296035
-.85957968,.79593684,1.3290052
-1.3707419,1.4071562,1.8924002
-.79174036,.77204749,1.0007964
-.72833585,1.192857,.19675059
-.77401314,1.2968651,.8391816
-.86828386,1.1076417,.31974353
-1.5851893,.11944681,.13455481
-.53618387,2.0660035,1.235565
-.79555251,.2462921,.10390787
-.26619327,.86374045,.38106526
-.81662218,.19151821,.92193317
-1.4288039,.37829478,1.2124569
-3.3491501,.1651447,1.5012298
-1.1979246,1.9451705,.46346869
-.35819645,.85005074,.1379037
-1.4757494,.24075027,.08707512
-.44854759,1.77867,1.393757
-1.2278932,.97916996,.55179955
-1.451157,.02346054,.56888637
-.64222535,.85132701,1.7784532
-.78133351,.13910885,.14674386
-.63830614,1.0275142,2.2090251
-1.949977,2.7376774,.52836465
-.86143744,1.560393,.92350423
-.80713087,.7917853,.43877606
-.40508094,.73795471,.75638591
-1.0894778,1.1190988,2.4733285
-1.1020459,.56148926,1.2657084
-2.5329915,1.7549707,.51731981
-.82613653,1.0046992,.24334361
-.81767607,1.021623,1.3992394
-1.4952829,.61680929,1.2400345
-1.0012771,1.5352089,.70705391
-.78848963,.11809337,.25391225
-1.1199135,.84882308,.00075761
-.43662978,2.0054699,1.8576462
-1.8939157,.18870409,.66768226
-.76911019,.08001199,.35756488
-1.6606265,.79322744,.10709211
-.37938836,.89610792,1.7855959
-1.4984777,.71175862,1.3152431
-.62663029,.04834246,.37358346
-1.8703661,1.0187444,.9040434
-2.032519,1.4757542,1.7602629
-.87394411,1.4075671,2.4184037
-1.4095095,.98829487,.29897017
-.86277128,.44177213,.44092824
-.47351499,1.8708144,.63702904
-2.0903448,1.750653,1.2974381
-1.8216614,1.0851115,.82940594
-.30029587,.24887814,.06944153
-2.722738,.12198085,.79409727
-.39037244,.88854625,.62457789
-.39454677,.09441166,.13920057
-.57669408,1.1729657,.40412922
-.75020556,1.0719278,1.2174531
-.81808051,1.473228,1.9104187
-2.2325197,.39940714,2.0458124
-1.0964639,.80780174,.39095708
-.51716396,2.0397612,1.0695205
-.39655101,.59396934,.39778943
-1.018954,.6615434,.57072871
-1.144148,.78979415,.28385748
-.53181291,.18743641,1.3491063
-.48885117,.75778583,.4956728
-1.4405207,.21633645,2.271479
-.86765903,1.1899947,1.1226779
-.81077598,.63871491,.35045462
-1.2595958,.30806559,1.028441
-.89447852,1.4289778,.34135718
-.80476546,.12504786,.60303093
-.89110143,.48184567,.46608267
-.61245863,1.5978038,.78189112
-1.1542459,.60421183,.358456
-.50490938,.99383255,.04686322
-.50445798,.51774629,.29611661
-2.0284966,.6548245,.3082185
-.44127983,1.2624066,1.8682048
-.58188411,.30213325,.39620255
-1.0032333,.93902743,.39749514
-1.35632,.24438673,.6753961
-.77234228,1.2015443,.66579452
-.38098616,.91007284,.31098774
-.63316641,1.4257298,.22700649
-.77845041,.80917753,.49700536
-1.2339534,.2524507,.41593714
-.41173456,.6792154,1.3572294
-1.0225122,.38562924,1.990865
-1.5132906,.87644623,1.1487552
-1.0560405,.12324414,.84831368
-.57935874,.56351948,.06275627
-.30703016,2.0486786,.68397663
-.71305313,.04920143,1.0591628
-1.1350411,1.27892,.9932844
-.41983169,.29500528,1.3910968
-.58240215,1.23946,.31731077
-.71417601,3.0228077,1.1059642
-.93216601,1.1656622,1.6625487
-.43910619,1.9338025,.63286156
-.86093652,.24416467,.55735999
-1.6527451,.37338802,.97431574
-.4794781,1.0158472,.60142167
-2.32712,.8827112,.56205425
-.71072377,1.1876836,.29245911
-.33471244,1.2226479,.10025467
-1.420746,.29362119,2.2297027
-.49104215,.20416343,1.5844677
-.92113724,1.1699459,.13813502
-.70861962,1.2795625,.07575047
-.68281927,1.2208496,.06279807
-.98386869,.06049286,.02554891
-.68175632,1.0685573,1.6643718
-.64804673,.47260079,.45045453
-.53947657,.14603664,.55035395
-.51773589,1.671656,1.9692283
-1.6841643,.12185644,.56615428
-1.5102798,.02590061,2.8774446
-.66916671,.24079868,.16544443
-.98641947,.08685581,1.4015826
-.43341883,.21898462,.53112248
-.29601059,.82312439,1.4967103
-1.1517183,.20733403,.47138844
-1.5163074,.49555802,.82823515
-1.8309968,.11379855,1.2358553
-.99348306,.00298411,.96206612
-1.1449235,.76631928,.4051059
-1.173236,.10946222,.15800715
-1.7271844,1.1808001,1.5521889
-1.0569225,1.5106174,.80946215
-.84501933,.84938509,.12634493
-.79906996,.33692548,.41114123
-.7191224,1.1577592,.34292744
-.65058675,.21890089,1.2058911
-2.0499221,1.5559571,1.2053669
-1.830455,.41058911,1.6862141
-1.2011479,.15602653,.12630228
-.64832391,.43547178,.10598575
-1.0765895,.96511763,1.1115688
-.61022303,.00277252,.02660187
-.68050571,.60921227,2.2937178
-1.3863746,1.2167066,1.2977561
-1.3658069,2.5562864,.28115515
-.41779103,.50276683,.09400144
-.55917726,.62466746,1.8705924
-.57105825,.56506908,1.2927289
-1.6851998,.91633616,.78137462
-1.4269802,.72455186,.45356392
-1.2542049,.17724025,1.2981954
-.78261817,3.6027683,1.1913024
-.46703153,.97457517,1.333896
-1.3391696,.67059684,.25070076
-1.5437835,.29530963,.99887971
-1.0471413,.11380099,.2022584
-.77826005,.12742791,.68110685
-.43897511,.02536988,.23296861
-.50603782,.55803588,.29868197
-1.1171318,.35259067,1.0207155
-.84394278,1.1373945,.79875247
-.73252689,.11108391,.47718569
-.89118608,.09462573,.05059182
-.35807318,1.003394,1.0054661
-1.0390076,.60932577,.27922984
-.67495519,1.0077939,.71981703
-.68556081,1.335663,1.5880321
-.34965605,.63846513,.43380854
-.47256314,1.189845,.64609642
-2.860155,.21983484,.80786285
-.27071828,.15489338,.31257827
-.61319214,.69757333,.49857506
-1.2360944,.64112553,.55493228
-.9058525,.31868129,.32459882
-.82337242,.19095759,2.1162063
-1.1074906,1.2299928,.59965309
-.77701709,.90805707,.46043908
-.83344672,1.8843504,1.8834016
-.70557712,1.6185449,.24615853
-.2027122,.34035874,1.4076576
-.55064705,.58489565,2.1305737
-1.3773764,.26125038,.41605239
-.73262946,.01507395,.52986266
-.41980087,2.9637788,1.6128218
-1.4650529,.93964152,1.91097
-.95963387,.51844656,.22757681
-.27094997,1.2764645,.55862417
-.68479157,1.7527082,1.662766
-1.0357888,.0754663,.29405731
-1.1068106,.4245171,.41417436
-.68503752,1.0854828,1.9182457
-2.0760847,.21586306,.72394653
-.50362246,1.5097928,.12634896
-.88403916,.28863822,.94115568
-.62733492,1.9893745,.07548765
-.41637844,1.1343726,.66088716
-1.2392533,.10437078,.40418566
-1.2608582,.73521879,1.4655299
-.83162567,.18342237,.3585311
-.24445889,2.5793509,.21639856
-.61585362,.84848828,.81934408
-.47346635,.65755879,.42079285
-.74153858,.58478234,.46335693
-1.0960336,1.571453,.87142369
-.72221706,1.3158498,1.168738
-.75122166,.12187807,2.4443176
-.62500575,1.896704,.25724021
-1.6038247,1.3216291,2.9122197
-.60766916,2.4531489,1.005269
-.50327082,1.5947127,.56795542
-1.020242,3.5384084,.12878161
-.95803542,1.1741646,.48660206
-1.5690141,.91522675,1.588693
-.63241743,1.0496646,1.8884596
-1.2213734,.04857353,.58123629
-1.5320457,.20104826,.12158432
-1.0486388,.83854664,.07226749
-.79768339,1.3549721,1.2833789
-.84544171,.58913552,1.3084286
-.69547731,.9858683,.28598082
-.34806621,.58628108,1.0053574
-1.329393,.03007412,1.1233235
-.79785678,1.2648845,.8428409
-.75645909,.29213895,.56652493
-3.2972951,.56221248,.85857433
-.40031378,.81282951,.15986665
-1.9615221,.55012428,1.077331
-.79990717,.27067979,1.74082
-.45064954,1.02062,1.4930172
-.6544664,.39019053,.55933808
-.66861131,1.5701937,.3214915
-.80168129,1.6719752,1.6746014
-1.256835,1.3058255,.21320157
-.6728437,1.0942854,.35958631
-1.3378071,1.1618013,2.4451646
-.8067909,.37025085,2.1687164
-.86087483,.62045408,.96361775
-3.6380375,.34014093,1.81578
-.62698512,.42956997,.3657188
-1.8831151,.26577091,2.8515559
-1.3813113,.135454,.39254522
-.59025932,1.0363784,1.5621066
-.71303181,.36563361,.45973366
-.61305233,.04619311,.3210833
-.99127111,.76952897,2.6539461
-.47675925,2.1574775,.94683786
-.9257998,2.2321332,.0983587
-.5877063,1.6386034,.21781464
-1.3392107,.1927467,1.0958519
-.85610363,.35003942,1.3154168
-3.011256,.50775655,1.4158738
-.75248005,.03559309,.20370951
-1.2922519,.35231377,.32034502
-1.9555445,1.328537,.54732443
-2.072036,.94817836,.36933384
-1.0447335,.08610455,.97022383
-.66866396,.78110059,1.5317917
-2.0723839,.03941223,1.0487217
-.8650179,.62656765,.96612419
-1.7791237,.3808383,.77804222
-.57232327,.03293031,.50822503
-1.2136075,.58662242,.73177268
-2.0105336,.04440257,1.4575826
-1.1374846,.5557985,.77513558
-.68537019,.36970521,.89437993
-.71976583,.12390228,.73275429
-.92199169,.33610161,.3762692
-1.5203274,.26829208,2.2170828
-1.2877252,.54938091,.75339056
-.7190436,1.4604649,1.6953467
-1.1881131,.62842695,2.0699223
-.68210458,.67123347,1.6024738
-1.3125456,.15144212,1.3987232
-.95014392,.4721854,.34844094
-.97903676,.523149,.40671261
-.71672875,.47282902,.7631572
-.28082604,1.3263812,.07392879
-1.2886582,.4692841,1.234446
-.85432448,.61621326,1.0319474
-.97735727,.87456775,.31130245
-.60130953,.46127701,1.8396725
-.58991397,.14510114,.07385787
-1.3067862,.31198356,.47700188
-.84925063,.85670727,.48627346
-1.0101019,.08122759,1.3144652
-1.5589626,.55587632,.46636621
-1.0827051,1.2627393,.74635799
-.67817241,1.1119488,.73368447
-.82516574,1.5808609,1.5048769
-.90981552,.55908739,.49208478
-.80020854,1.1952484,1.4501879
-.62653565,1.2037438,2.4939611
-.51466052,1.3716549,.06775853
-1.0297518,.11349917,1.8881219
-1.3880368,1.3066166,1.9468799
-1.5102672,.01313056,1.9973501
-.4854047,.98645926,.12486434
-.3669144,.45935009,1.1210539
-.54581591,.27379353,.50243432
-1.0250893,.18863476,.06400754
-.34811126,.17312222,.05654557
-1.0198997,.25228169,.17996071
-.59447261,.83489906,.80395899
-1.0284271,.36234226,.63670201
-.59383631,1.3739657,.17055883
-1.7230442,.69609128,.79786595
-1.3934357,1.3306012,2.5151109
-.68733446,.24984225,.57455263
-.8102799,.54036168,1.3961581
-.47512176,.59097752,.38018696
-1.5063661,.01022239,.54732901
-1.048204,.61932063,1.7012611
-.664135,.2125422,1.3799711
-1.0601601,.26888417,1.4935162
-.98033031,.00227086,.26373925
-.50977384,1.4885943,1.2911647
-.83925579,.60526151,.75971161
-.38727233,1.3666433,.18252019
-1.0908152,1.2388566,.08470714
-1.1127091,.51503578,.22374665
-1.0897615,.01653429,.59301125
-1.5973172,.69272245,1.5530242
-.75340512,1.4518561,.33208944
-2.9032134,.19792874,.42589904
-1.2440569,.89260994,1.0117427
-.81673912,.95046491,1.9416862
-.59606792,1.2446778,.15737009
-.7888164,1.5459092,.62990366
-1.4820201,.01408672,1.2629237
-1.2419807,.2496859,.09231419
-1.2257528,.66707212,.38552728
-.74612633,.44249101,.35025223
-1.2310248,1.0098712,.38516867
-.68592726,.04654393,1.1900248
-.36910705,.49538114,1.4733028
-1.5731075,.3783348,.16173231
-.54702133,2.2606936,1.5198394
-.82888341,.30265908,1.0697934
-.8176352,.23513371,.57991953
-1.1601575,.71424002,1.0744703
-.56656867,1.3947659,1.8351586
-.93628416,1.5031513,1.0685544
-.67988911,.50010388,.40427364
-1.3158555,.45904206,.53908054
-1.5597753,.45710051,.6186336
-.64065942,.70836205,.08459075
-1.8355514,.15979558,1.4391227
-1.0864086,.99187657,.84719709
-.36399778,.5269296,.45071985
-1.6402798,.3179296,.00903172
-.54144878,1.0363637,.23024301
-1.2377686,.07023625,.88341146
-1.4266899,1.7131121,1.6138555
-1.4703192,.22102658,2.6767891
-.55420693,1.2615502,.08254038
-.65698805,.92909479,.66264043
-1.0673108,.40647656,1.2736646
-.822554,1.0474176,2.0423497
-.83577852,.26649412,.90728786
-.58879764,.86524346,.17376088
-.77058725,.89318084,.25083352
-.58709674,1.5996831,.37757584
-.7931375,1.4890213,.02175528
-2.3149057,.05883018,.9829915
-1.7575777,.95658883,.73225795
-.65434841,.19607219,.10450854
-1.7726789,.30624937,2.7586439
-1.5445518,1.9065874,.86119862
-.39194736,1.4332452,1.9613281
-.64816623,.05713623,1.3261349
-1.9291581,.0789211,.94486622
-.97197716,.72910161,.04208343
-2.0354359,1.6261703,1.6803156
-.35634266,1.7866666,1.7063305
-.44647176,.28226245,.34121976
-.49764534,1.0486012,.45107702
-.5648395,.74011477,.53317752
-1.2969658,.05430353,1.4582652
-.50627342,.52779835,.79086656
-.77409412,.2491613,.0595327
-.50307567,1.1172966,.11264853
-.63751605,.42762927,1.2769783
-.88444083,1.3013657,1.0549623
-1.4395935,1.1348719,.6808413
-.89062323,.42468349,.65917709
-.72441959,.11854098,.9998198
-2.5137391,.3864395,.80222381
-.70584688,.71713378,.00875679
-.45659533,.54453316,.42604093
-.59374044,1.0112032,.22095903
-.5418419,.53659066,.82266444
-.91405133,.30579963,.44097017
-.23195276,1.4219846,.12477326
-.84221586,1.8107594,1.0319441
-.4876829,.22610677,.82609202
-1.8430088,.54169028,1.0488444
-.94916294,.39739424,1.569473
-.66151771,.53558575,1.91597
-.37900758,.71103198,.0068149
-.5169371,.92572729,.56715387
-.82326026,.61670244,.36003857
-.5629003,.99535527,.67928543
-1.5268452,.3974041,.73477537
-1.1573337,.53915851,1.5666163
-.44611242,.47706479,.54376579
-.93965417,.54858019,1.2277719
-.34892576,.97000891,.18955992
-.53533426,.68619401,.01663312
-.97502034,.17692702,.63951977
-1.98473,.35092259,1.9697886
-.26395051,3.120188,.56261216
-2.5213005,.63946232,1.5497452
-1.2236949,1.7035447,.49092709
-.66515587,.25105896,.2003702
-1.1722175,.18821868,.23827667
-.6279815,1.1719411,.41618862
-.66595206,.47429111,.86505164
-.91022007,.00376309,.30143111
-.36773053,1.8082687,.55931351
-.55415196,1.4768018,.26140497
-.75497571,.08453438,.57603489
-.24436308,.08454495,1.4743257
-1.068429,.39137044,.80730342
-.22825819,2.0045729,.71622598
-.66825933,2.0612526,.92372636
-.70018907,.04167637,.59514277
-1.0968982,.66917739,.05300466
-1.201614,1.1311676,.13711208
-.89799882,1.0402821,1.0674403
-.60784244,.0767515,2.1685798
-.51335739,1.392744,2.4668662
-1.4859077,.01494371,.9663734
-1.2116007,1.8299923,.56958269
-.74337908,1.3206302,.21596767
-1.0936545,.35000058,1.1970176
-.54130436,.48631819,1.2237258
-.48584895,.86329098,.94214108
-1.5566538,.03924041,.67910632
-.35816494,.82623656,1.0404943
-.86752601,.69292644,1.5088288
-.48826297,1.0188536,1.1787966
-1.6986611,.00778247,.47214401
-.99406639,1.5948535,.63680562
-.43120285,1.9510645,.04850276
-2.9394242,.44442228,.21213955
-1.2534021,.85502442,2.5079392
-.58405335,.97687576,1.027571
-1.4136361,.05280492,.3001784
-.50446685,1.0012984,.75956078
-2.0589275,.40936877,1.5589509
-.52675134,.08823164,.18038201
-.84957798,.92960952,.11424217
-.7750332,.2595473,.04737035
-.95703691,.73590531,1.4456736
-.60481823,1.2551338,2.1798495
-1.940342,.81593849,1.4625626
-.5026768,.10146775,.86871536
-1.0609623,.88238303,.23413053
-.62810925,.32314501,1.3005493
-.48562135,2.2054576,.89587589
-1.7436308,1.5138065,1.0787865
-.36912857,1.253424,.20668915
-.95650024,.45029451,1.7696224
-.88770704,1.6000432,1.5451581
-.27246572,1.4083255,.82719191
-.46791865,.18564505,.62446669
-1.7607959,.06447852,.60329058
-1.7445793,1.198827,.15457633
-.87481132,.76286055,.32583093
-1.4642323,.21318395,1.0427555
-.65039572,1.3468823,.93483726
-.7004117,.04839358,1.4946359
-.88337907,1.0578752,1.7024616
-.79620886,.71585732,.7049118
-.64448184,1.5907438,.69791794
-.87176507,.56764007,1.1528988
-.47876633,.64026407,.92228296
-.98588644,1.5097654,.87786422
-.55733149,.08679057,.20982147
-1.0653865,.63789321,1.875437
-.85628054,.44166514,.70752941
-.66340496,2.7324997,.21043908
-1.0066862,.59090939,.51613248
-.69822742,.861542,1.0305541
-1.3425977,.59642981,.65323953
-.83854031,.09549994,.31957227
-1.2501082,.74145642,1.3055558
-1.7866509,.08571514,.65019536
-.92940275,.34330691,1.2223947
-.35122232,.07969544,.33583097
-.49915043,.91894093,.55333421
-1.0080755,.5503408,1.4983035
-1.3648578,.094729,.07087453
-1.0786697,.10056676,.93304787
-1.7756264,.07878033,.32184355
-.7820221,.10496233,1.974914
-1.0566491,.45200861,.59068048
-.76947707,1.5657879,2.6902052
-1.0307198,.847173,.90392094
-.51456674,.73384932,.06385537
-.40390574,.59534839,.0074933
-1.2954193,.69144352,1.6849185
-1.0562071,.83558446,1.1831711
-2.0635074,.05150261,2.1350168
-.53196065,.48148281,.64640073
-.88722082,.01820145,1.2054086
-.5363434,1.2887311,.92780865
-.22567979,1.5816967,1.2624195
-.95731785,.86730508,.39222607
-.58778307,.42315007,1.9302844
-1.0822366,.70743525,.49929194
-1.5562119,.5347366,.86824841
-.99314275,.08141036,1.6110516
-.64373376,.94258747,1.2762199
-.58148213,1.2400424,.07155007
-.53213176,.94343358,2.0497796
-.69518853,.50403131,1.611893
-.36701391,1.3042372,.65942818
-.7484169,1.6176893,.51197501
-.60375163,.74588121,.10299018
-.65296064,.40771933,.71038632
-.60937449,1.3345781,1.4720434
-1.1358241,.07229332,2.1360759
-.88143054,1.144103,.56834148
-.52011907,.02927351,.11774541
-.60567984,1.0535672,.30073095
-.71827738,.2241662,.84163583
-1.3020352,.60560896,.54323919
-.67606139,1.27352,1.7282164
-.66432668,.99466005,.28897373
-.93374035,1.5350044,.77418288
-2.0482335,.08967627,1.5828007
-.62467798,1.6280676,1.4644373
-2.0418183,.21299408,1.1867063
-1.4688887,.79979242,1.6733666
-.696424,1.0294542,.82757596
-.88830046,.19105851,1.5210553
-.5140782,.38143324,.67243549
-.92100277,2.0675736,.25863432
-.99388714,2.0604307,.75663736
-1.7653786,.10125714,.60079861
-1.0653456,.87778213,.32883088
-.55051823,1.2630497,.71228798
-1.0693116,.12148403,1.2373446
-.9115027,.93431227,2.9321928
-.66902351,.64418231,.87934766
-.79013027,.00078729,.81187726
-.72232173,1.2694714,.44167198
-.42840406,.93125104,.45812144
-.97417868,.19917405,2.5940637
-1.3167909,1.5475663,.38780872
-2.3445324,.02496742,.21232982
-1.8811647,.13161486,.17574686
-1.0528392,1.1257191,.89307741
-.45829346,.77910928,.67514231
-.82705439,1.7935787,.77789628
-.91701621,.35510339,.15200505
-.65460052,1.352481,.21428443
-.88591703,1.5408417,1.022438
-.59023624,1.8110102,.15698585
-.62275319,1.6857184,.64622634
-.78368419,1.8454998,.70271428
-.56091963,.24933211,1.240561
-.75878781,1.7894181,.38890141
-.52055897,.20054217,.93752577
-1.9793298,.47587986,.05970595
-.70055211,1.2449791,.31489
-.72977173,.61500017,.31902336
-.63791363,.36017983,.47814891
-.50212723,.27521328,.23371461
-.47034141,.15446641,.50003279
-.47115312,.62481509,.72567301
-.7505599,.95631432,.57293146
-.83563034,1.9626688,1.0728365
-.9718883,1.2233948,.41429668
-.56962258,1.8791619,.21988698
-3.4069237,.58797128,.06414246
-.69142992,1.7328551,2.8358515
-.55575509,.15506681,.43524556
-.57973866,.3196882,1.934347
-1.1918096,.50571144,.25239482
-1.5050098,.00229124,.15136709
-.76749114,.79247332,2.0297033
-.83542569,1.2159559,.30772296
-.59715927,.19512707,1.1901913
-.37293518,.06539284,.33348462
-.72132924,.42892819,1.2375282
-.67229635,.74198474,.19106263
-2.0196881,.98787232,.44842769
-1.0187017,.21665846,.55355563
-.4003043,.73521489,1.6633138
-.58613857,.62123279,.02455876
-1.0228878,.56335843,.96380382
-.98546108,.0682875,.24549958
-.76107642,.97273206,.58060091
-1.2302543,2.6282937,.27272109
-.78792891,.46068253,1.0255688
-.8950877,.16304439,.2715107
-.80729411,.70669584,1.2365974
-1.0118296,.68410698,1.600582
-.88667989,1.4567473,.93974738
-.42951974,1.0672925,.02032128
-1.5739979,.94223287,1.293422
-.97039008,.31809424,1.0653499
-.52521609,.58019398,1.7980929
-.39539621,.34080777,1.4191287
-.86414428,.79066659,.39610817
-.60379569,.61147666,1.9166882
-.49196993,1.0338584,.33018162
-.68613605,.63104418,.19891225
-1.6564794,1.1926036,1.0303178
-1.1382232,1.1332895,1.0008625
-.36550223,.44830129,.33855505
-1.224784,.51512818,.00455027
-.80604646,1.6899373,.28664707
-.32342051,1.8412957,.92796246
-.42290937,.60747767,1.3107157
-.70738537,.33064811,.44867966
-.58628115,1.5032799,.8740251
-.47622807,1.3694589,.78148216
-.58678371,.36339052,1.4561116
-1.4444091,.63865954,.34712881
-1.007107,1.0544636,.13757942
-.86624373,.42084982,.98378623
-.67801558,1.7360667,.98867815
-.82958744,1.3620046,1.069652
-.75955032,.29233506,1.0661944
-.90391242,.50634705,.57371009
-.67431915,.32959412,.28260779
-.71633165,.77690006,.57480439
-1.9267639,.03879741,1.307277
-.9078139,.68378893,1.4531031
-.51022936,.04206884,.15443972
-.92594655,1.028807,1.7720866
-1.6577473,.45042737,.58091765
-1.0793338,.69454214,1.6487501
-.64105322,1.0273229,1.0067145
-.65125225,1.0045108,1.5621753
-1.7208992,.53579457,1.534227
-.82505905,1.4825018,1.285393
-.61905613,1.0389039,.78861704
-.7737114,1.1847922,.22847066
-.85291092,.4334247,1.2785177
-.6792101,1.2387105,1.3153627
-.54488218,1.127391,.78040404
-1.3193205,.12057473,.62851432
-.51320445,.65950651,.56226116
-1.7858867,.16665023,1.1904428
-.40958688,.88357827,.23289535
-1.2729015,.3846333,1.4389343
-.80036248,.94816775,1.6960817
-1.8549288,1.1775874,1.833209
-.33764158,1.1229604,.38198793
-.45655707,1.2195776,.31812099
-1.2681807,.77683184,.52115455
-.9053633,1.1285585,1.3391021
-.9814572,.58649401,.44948733
-.58534515,1.1148733,.32407437
-.83805117,.01411756,1.2839695
-1.9456976,.32881048,.4884362
-1.1277699,.44453552,.16917798
-.67127409,1.083608,2.8880172
-2.2834431,.05777445,.71824335
-1.8747078,.06378061,.91680413
-.99357156,.04208248,.56529366
-1.0458132,.71135473,.75328395
-.5295776,1.0687294,.54126644
-1.469491,.98346791,.0684596
-1.6262592,.15723041,2.7124097
-.61747326,.86122842,1.0230346
-1.5754041,.45193324,.39366667
-1.8362457,.68729985,.87913298
-.69072661,.45628152,1.744087
-.47149941,.41450928,.28148245
-.9403795,1.0344709,.81658067
-.44416507,.37691037,2.211068
-1.1390276,.00226365,1.2421881
-.64912109,.37161671,.36744233
-.71611848,.01964228,.00801887
-.78977787,.02939994,.30386374
-.58722855,.41113608,.94018455
-1.3943716,.77401217,1.1462675
-1.2044522,.72156112,.33582168
-.52345543,.43979686,1.7694894
-.4840477,1.221761,1.2187347
-.90946049,1.048837,1.6596111
-.30515242,1.0506886,.59817268
-.86787962,.06164412,.15889454
-.96751719,1.9150714,.94064262
-1.1227459,.16486234,2.2186157
-.78848372,1.1509496,1.7983923
-1.2299528,1.0818732,.9039585
-1.1028635,.3894591,.44228859
-1.0052622,.94170636,.27532494
-.43873277,.6228643,.22733864
-.78344199,.16165197,.78691963
-1.598104,.30186912,.27638201
-.24359975,.40526432,1.2620641
-.86223258,.05739694,.75228368
-.26715028,1.4230215,.7708665
-1.6040857,.9618501,.8456442
-1.2921364,1.1123443,.49875826
-1.0598244,.7733425,.87567365
-.23655592,1.5821403,.43890308
-.62911259,.37901697,.49962065
-1.459403,.33606756,.86922409
-.77575165,1.2404741,1.1703926
-.82450036,.49952901,.68616495
-1.0329177,1.055233,.57868322
-.92720481,1.7034833,1.1085259
-.62038157,1.5254483,.61498051
-.71783921,1.269575,.0797011
-1.3316803,.81728306,.29010447
-.4834448,1.0742654,.30546644
-.64113665,.54930742,.60525977
-.76350411,.87479889,1.9190688
-.75981413,1.1971473,.27434061
-.39485096,1.7941382,.23205953
-1.3684459,.04903115,.03962947
-.92004905,.46275051,.23329262
-.62964541,.58059967,1.0468288
-.61757861,1.0060242,.73825852
-1.9198893,.13647956,.27575614
-1.4984188,.20699437,.53673807
-.57409562,2.1985294,1.883981
-.96642803,1.1618532,.32001991
-.92669558,1.5177373,1.0862102
-.3310918,.8271787,.5471827
-.85072241,.775414,1.0755375
-.80654095,.20556464,.59208053
-.93036535,.19828319,.05534181
-.66327559,.79827274,.16482305
-.50950429,1.119152,.43768485
-1.4471495,1.4866974,1.4117121
-1.178149,.23004793,.59531922
-.36253609,.6638743,.33865414
-.30900157,.51537624,.18876062
-.60959248,.70811306,.53426233
-.81733383,.2541687,.48135319
-1.1260078,.62483262,2.1998546
-1.7904137,.47413428,.78601795
-.55086074,.3908552,.86510984
-2.0763241,.57536504,1.1950945
-.3408746,2.4754206,.06358544
-1.182241,.09934394,.26800456
-.80076293,.14042316,1.3390137
-.62861066,1.0893554,.74720682
-1.7051697,.00947346,.76145396
-.3325968,.85000621,.0047087
-1.5541838,.80450032,.62185923
-.58634524,.70958,1.4266841
-.79534676,1.6368838,.43609865
-.49078293,2.0676664,.73829071
-.35533961,.29691968,.5628279
-.61445066,.55389951,.87534923
-.79179974,1.0798099,.00801101
-.48076625,.30926837,.57766706
-1.929725,.88861791,.93578945
-.74310349,1.1584928,.05125311
-1.005341,.82694848,.05409511
-1.2546766,.11134713,.71187934
-1.8195832,.72901928,.82159137
-.41485624,.64800705,.43825221
-.83104004,1.8799344,1.4103131
-.34226385,.13124788,.81181869
-.79625958,.40343207,.43614645
-.84062398,.00641361,.29944795
-.67046298,.7409926,.38299473
-.76966298,.03740412,.08046314
-1.3718431,.36730094,1.2447362
-.39668698,.45569234,.6290225
-1.4478444,.1612669,.90872107
-.86841138,1.5475393,.26685141
-.95049906,2.2353264,1.0188154
-.49798983,.73910759,.11184484
-.75043745,1.4399448,.91105125
-.74680395,1.8092722,.37842824
-.65734492,.73219927,.56008259
-1.0369117,.21454689,2.8793477
-.53585764,.11269936,1.4659905
-1.749991,.32408493,1.8496383
-1.8594366,.20078314,1.1529558
-.71646233,.85893288,1.1617698
-1.2358258,.43667898,.10126268
-1.2395208,3.3742657,.65364431
-1.16275,.3828679,.45227718
-.55855029,2.7200099,.36046623
-.36722113,1.3427827,.4562729
-.56176312,1.5073691,.03854089
-.73947231,.96080457,1.9713425
-.35553026,1.0833231,.08009513
-.46149351,1.3854139,.8179916
-2.7041342,1.689585,.94658421
-.80978237,1.0484488,.22202631
-.46148001,1.7318572,.17756315
-2.3758374,1.8727278,.34656185
-1.1616683,1.8937734,1.0182231
-.88553057,.65297021,.47756399
-1.788224,.00443,2.2619203
-.63533544,.32091135,.02617795
-.40756204,1.1805866,1.4344716
-.65872973,.09920448,.3823025
-1.0481967,.06290496,.49506089
-1.3473812,1.5322288,.23285919
-.58884624,1.1787467,.70597086
-.24559182,.93733121,1.0477966
-.90873852,.35652328,.88852552
-.74532674,2.1283872,.17534907
-.55298424,.18487124,1.120972
-1.4860279,1.1008955,2.3695482
-.42194452,.46324881,.37077317
-1.4303686,.9828818,.24001793
-.78705789,.7037009,.10231134
-.34368306,.9351082,1.8556588
-.65897767,1.6363513,.27092446
-.47942171,.43689083,1.027346
-.74706112,1.5372383,.23179013
-.66351337,2.4481041,.08881345
-.8862047,.53011252,.54722099
-1.2556769,.54290155,1.0240661
-.58929942,.86354087,.22874562
-1.0216906,.06585798,.20324495
-.7392068,.82673331,.75255855
-.42233481,.13147766,.34890343
-1.0125135,1.2081367,.88563498
-.82627088,.16696732,.65954499
-1.4193048,.94103512,.34899261
-1.170404,1.9384555,.74014521
-.87372152,.11980608,.13509583
-.73565888,1.2831849,1.1399369
-.70954031,1.0787363,1.5233007
-.86263121,.57643678,.08513889
-.96394303,.87057396,.08159676
-.53941814,.73178976,.85002852
-1.4236889,.23533234,.7872978
-1.268951,.07997893,1.578276
-.81543784,1.5318693,1.0199814
-2.9329088,.01682396,.83976684
-1.0479069,.51194971,1.2929189
-.46068035,.22850447,.42945472
-.82565526,.97508971,.14020283
-1.150851,.88195177,1.0483947
-.31361806,1.3522202,.20823538
-1.0778154,.13814231,.8960352
-.71230329,.3263309,.77099559
-.70147187,1.0866877,1.1184273
-1.2023733,1.1616098,1.0555658
-.93274952,1.1212835,.96712955
-.99443108,.39285469,.10329852
-.81122017,.55062322,.83961584
-.39533806,1.1677749,1.1355721
-1.5723996,.28485821,.15057894
-.88255515,.83117571,1.2083352
-.22835067,.33629925,.0882464
-1.9437876,.08772717,.29846702
-.66428251,.0331925,.24323721
-.46994414,.00981375,.15671102
-1.0056277,.52747453,.35730569
-1.1040252,.74268401,.44812005
-1.0978149,.04865948,2.0481387
-1.2202202,.87341884,.3183164
-1.2741913,1.9488047,.19096098
-1.4562798,1.4611596,1.2687782
-1.6208108,.87608117,1.3400669
-.2158181,2.7550746,.69578347
-.7133362,.90426174,.24648707
-.7116576,.21451072,.84187671
-1.1660383,.68109859,2.2277559
-1.4873077,1.5279818,2.330564
-.49336658,.09141487,.5447532
-.37877791,.10412415,.3657548
-1.1161835,1.4031288,1.7447909
-.5698184,1.9659218,1.0879529
-.84595651,.74553275,1.867317
-1.7412746,.34883727,.98303905
-.38025464,1.1588223,.65494546
-1.4062248,.1515469,.70920102
-.36556047,.09797518,.2481517
-.77420082,.65858066,1.1513291
-1.1851319,.45470402,.56942653
-.82683558,.71485005,1.1007515
-.40298021,.81370659,1.9736737
-.67229806,.65021211,1.9644585
-1.088811,1.1271001,.14243884
-.91075494,.7956432,.69806081
-2.0694452,.49605834,1.1857324
-.65678381,.9062056,.24377595
-1.1652405,2.0440832,1.3092156
-.8876609,.27041874,1.2487489
-2.0878504,.58809815,1.6983181
-.9672343,1.4113367,.1476558
-.47109513,1.0174238,.50713623
-1.7443741,.40651122,.78219038
-.84268657,1.8332687,1.1260952
-.30217383,.63175072,1.6379898
-1.3148013,.11107686,1.4617203
-2.3798998,1.1379046,.69646132
-1.2342001,.04217445,1.1246963
-.45679373,.66534012,1.6789538
-.61668667,.06082284,.51604133
-.77772095,.18233891,1.4669234
-.38267931,.47683439,.042248
-.82053155,1.0581467,.84519887
-1.2109144,.00183556,1.6891346
-.72642622,.93586769,.33316296
-.47129728,1.2006681,.06280491
-1.2069229,.11388987,.53938168
-1.2281388,1.1503985,1.8115594
-.55625162,.01537746,.23551781
-1.5214932,1.403797,.6383624
-.33379397,2.4630969,1.1872199
-1.9160679,.9095147,.12687709
-.7747291,.46451382,1.2107463
-.4441976,.1705739,1.9476557
-1.4027694,1.8255365,.93264151
-.66954163,.13419395,.82145392
-.55968243,1.4611927,.09457531
-.58883055,.34615609,.28478854
-1.0075961,.80325224,1.5762879
-1.1324813,.4408306,.76623136
-.3971986,.5436516,.20256876
-.88911539,1.0344339,2.0957494
-.51416025,.64557362,1.214335
-1.0315437,.62038327,.55715647
-.79706268,.19016711,.47282549
-1.0946883,.48345847,2.3072034
-.93132644,1.5161817,1.1423882
-1.8620647,.89727793,1.0095937
-4.2514966,.24972581,1.3821803
-.40872441,.42915969,.92420601
-.54224614,.07933594,.20538198
-.94623577,1.1058403,1.5829575
-.90815367,.78593123,.31363657
-.49931679,.87708847,.31763783
-.86093053,.03374021,.58762682
-.61758329,.02610407,.72009105
-.55378781,2.0483317,.8102269
-.5587175,.14107577,1.1661567
-.47528691,1.1040854,.82555968
-.36349723,.85035905,.53232367
-1.5444309,1.9763833,.18298941
-.68344253,.49108439,.00787101
-.84873259,.33538647,.68030439
-.92333377,.82386372,.61236905
-.93633165,.21133775,.33819938
-.47188262,.30152812,.71439803
-1.0934711,.91835458,2.1737553
-.56508772,.37572955,.92726384
-.75442022,.68631959,1.5743906
-1.196935,1.1986044,.78675737
-2.2652372,.63902165,.22473774
-.69978218,.67173745,.68055348
-1.65672,1.1470989,2.0139287
-1.8092749,.33187992,.9226792
-1.0605953,1.0327865,.39702543
-1.0248819,.08041959,.43653882
-.28693511,.04940658,1.102803
-.45756144,1.5599237,.05053173
-1.2762801,2.0400893,.83122845
-1.6753127,1.3779274,.4550641
-.63128208,1.0884598,.64143994
-.78574028,1.0159009,.79330785
-.5019598,.34109781,.36314384
-.74576886,1.3135898,.6825163
-.59201174,.94352273,.52317306
-.7424886,1.5780968,.70461449
-.53890126,.72630291,.16203072
-1.2962474,1.3184667,1.9045588
-.67900178,.97194907,.26546355
-2.1096753,.3061128,1.5442255
-.70568819,.0664522,2.2012806
-1.6255472,.49667556,.48027413
-.77252316,.97938845,.43248817
-.88509609,.11403981,1.3473646
-.38147808,.67651443,.09923087
-.49938817,.25716469,.76592719
-1.584282,.99971834,.49769467
-.45076556,1.5412105,1.6285101
-1.0088042,1.5183436,.51013754
-.25278156,.38542501,.26736243
-.45101141,.23879098,1.4248955
-.29885,1.4674139,1.2341312
-1.134118,.51033106,.78746686
-.41156046,.89699444,.04258411
-.33966143,.28486758,.50418333
-.92458117,.84017635,.2694375
-1.1568125,.06116898,.91982495
-.93919523,.6967858,.09130064
-.45326296,.31668118,.25171339
-1.1588417,.34726593,1.28042
-1.0122385,.52094025,.959462
-1.4193014,.59810381,1.8811035
-1.4263091,.00813592,.59057656
-1.3026964,.51724274,1.4861003
-1.3084425,.67840236,1.3982762
-.81249301,.06080568,.30054976
-2.4293838,.57982354,.52260136
-.65322487,1.1806214,1.435957
-1.4534135,1.0620212,1.4306227
-1.4304534,.45144644,.5487009
-.30481317,.34698458,.00073768
-.25699999,.72862882,.36472396
-.59156167,.28733218,.17051157
-.66787331,.22312072,.21745928
-.95554616,.25209307,1.5296223
-.5933899,.61928612,.32863383
-.60491564,.5131077,.17075153
-.44935079,1.2711224,.0369848
-.34567811,1.3632393,.43002189
-.93606321,.32411974,.51634377
-.50208063,.14213095,.49285836
-1.2333472,.74349241,2.1221634
-1.0652743,.09728823,.31398623
-.70975261,.44540635,2.1342039
-.78172337,.08520383,1.0567699
-.97197996,.25263187,.22072878
-.23543946,.75815414,.61539111
-.32584849,.74535583,.02556689
-1.4499259,.48247317,1.8651577
-1.03697,.02623855,1.7344366
-.25729567,.68178175,.13578278
-.79063568,.37944494,.33987802
-1.0391516,1.1175881,.06702534
-.50428659,1.3630664,.47993523
-.58197718,1.9425103,.00641299
-.96365012,.5755307,.83547217
-1.7867447,.21978608,1.3268114
-.61434597,.19116207,.34621941
-.8884805,2.2668877,.60687392
-.5778285,.29388718,.92820838
-.48164735,.74623096,.27036429
-.41954764,.56676892,1.9282016
-1.0217403,.0097891,.29975166
-1.2512688,1.4371677,1.4046293
-.72652872,.25699923,1.0099126
-1.1489382,.34542872,.28141762
-1.0316094,1.0348743,.29493058
-.25853153,.04966486,1.2949823
-.25814369,.95122627,.89541847
-.68045528,.6653619,1.0333934
-.87703915,1.3084502,1.2102629
-1.2890366,1.3447548,1.5827814
-1.4220306,.15605834,.4831405
-.92609575,.51676736,.0190107
-.57951282,.31573163,1.5399811
-1.1192719,.24491327,.46220447
-.88436128,.67397409,.89388206
-.98463568,.62530343,.6247191
-.82574719,.50133754,1.0034368
-.40739953,.1896408,1.2660707
-1.1218234,.63689133,.32450292
-1.2425053,1.0832831,.98851593
-.39237456,.83540825,.42651189
-1.6423465,.10989439,.65962765
-.89251887,.51038348,1.8427915
-.42900972,2.0041961,1.5395004
-.97589949,.14780039,.63493158
-1.5524476,.33022003,.55009581
-.5040096,1.4190765,.73878584
-2.4771355,.14509106,2.1614869
-1.1531032,.5902969,.09629835
-1.0474375,2.0513236,1.9101308
-1.5412121,.00769504,2.3150564
-1.4538805,.18215725,.96368489
-.95741557,.04199733,1.5132461
-1.2502062,.04480667,1.7428467
-.7546351,.13986842,.06715894
-1.8123226,.9414088,.49864388
-.98420502,2.5029556,.18688927
-.68748261,2.0413254,.71558616
-.87765635,1.2221315,.98985832
-.85775586,1.3398676,.43112694
-1.5812913,.85023866,.03005894
-2.1975286,1.0536471,.69357479
-1.6242635,.31361399,.36099165
-1.0041989,.57382612,.79646853
-.90919529,.26960195,.53265513
-.80974898,.54138227,.41194234
-.83329259,2.1853314,1.4382865
-.69708154,.20091534,.99154922
-.50549266,.99700134,.75742178
-.5248457,1.1124544,.50865522
-.71717308,1.0978589,.02253357
-.57548238,1.3667036,.37832501
-.62869744,2.181521,.24914899
-3.0974017,.33489449,1.7989703
-.45582373,.01393257,1.0957383
-.49154696,1.3596049,.78930237
-1.0059624,1.2898471,1.3414343
-1.6136949,.08467057,.36185318
-.93570921,.33816982,1.2097383
-1.3914336,.32828664,1.6038981
-1.0974306,1.0874415,.75652111
-.98886002,1.0810864,1.7766572
-.65482435,.44592409,.0427286
-.6042002,.38964938,.2986051
-.629065,.37757748,.030661
-.61673162,1.2849954,.04857719
-1.0092839,.12384084,.09886842
-.90361139,2.2534037,.59955406
-.71390385,.14532687,1.7795904
-.48087863,1.2448153,.65923472
-.91658969,.18424878,1.537565
-.69847161,.50398219,.23714837
-.45049659,1.1646959,.19264308
-.83406933,.46011384,.60689629
-1.028363,.77525883,1.9716261
-.42902813,2.0505582,1.3925743
-.48154664,.73769317,.15119119
-.86443322,2.2524765,.09184969
-1.3953776,1.1066659,.39048931
-1.3793841,.41659205,1.1677721
-1.0161129,2.0019828,.90458407
-.49815781,1.4395627,.9391406
-1.1123259,1.203925,1.7989487
-2.0668354,.48231199,.09586709
-.84209949,.44410179,1.6067336
-.71749163,1.6469168,.83301625
-1.2708942,.14593116,.31423098
-.77350314,.9018464,1.8755491
-.95587675,.84848229,2.588311
-.89373557,.67498121,.99322987
-.46918518,.90577531,.91514371
-3.237066,.51827592,1.3842365
-.71398453,1.6249664,.03902821
-.68668369,1.1042946,.37116756
-1.9210936,.62677713,.82040623
-.49335598,1.4903962,1.9141254
-.74812578,.65181604,.9384073
-.96281098,.45380783,1.2158294
-.86002088,2.0699179,.17094146
-.68139233,.68746779,.67990517
-1.0329741,.08822572,1.3357824
-.99500591,.41894272,2.408023
-2.0269955,.19618323,.18245609
-3.8543317,.23800076,1.304316
-.33991623,2.1369433,1.4882112
-.88152768,.40435973,2.5378037
-1.1032462,.48652408,.85437611
-1.9244637,.02207619,.62314621
-.93198965,.64700442,1.8463504
-1.1425105,.92523513,.29854877
-1.7498692,.03260935,1.0363707
-.97930522,.17291859,.25822783
-1.7348803,.55493378,1.0738143
-1.1814564,.69347276,.21773496
-2.0652843,1.9424198,2.3272882
-.67199465,1.3387634,.93847941
-.99119888,1.9440292,.26527675
-1.4582682,.24401009,.72192327
-.59817928,1.4102453,.02685653
-.39893082,1.125165,1.680838
-.53281096,1.0149237,.74561701
-.41821171,1.8464336,1.5539045
-.91298542,1.022394,.68527585
-.84518405,.0917021,.63822204
-.83048458,.97669215,.88801814
-1.5777122,.50698804,2.0503746
-.87911438,.47043424,.30159678
-.65994997,.02337443,2.472942
-.9800584,.10476273,.46230523
-.60630474,.1292547,.79232575
-2.8275762,.25128196,3.605297
-.89221557,.67173691,.32336846
-1.0397,1.9151173,1.9576504
-.51315176,2.8084638,.03140523
-.38490369,.9315119,.30673727
-.54070331,.80087387,.3085028
-.6571111,.35651163,.49956854
-1.5120733,.3524768,1.7407135
-.98117069,.71151889,1.0613536
-.63854141,.86142994,.13591826
-2.3920861,.05201678,.92188079
-.54378187,.02173961,.94830682
-1.0778331,.29121887,.8997326
-1.1465504,.39460192,1.6963837
-.74285012,.06731866,1.3665079
-1.8319238,.14278813,1.0251294
-.58120502,1.0329276,.09352369
-.5625901,2.1845014,.70214809
-.82287526,2.1841416,.5276158
-.32510198,.85857751,1.1486787
-1.9178112,.02434896,.11412217
-1.2351024,.37472175,1.5454035
-2.3356299,.39011695,2.1351644
-.65975026,.73709695,.90366074
-1.2531471,.24039753,.33505883
-.89357812,.26981112,1.1204277
-1.0680124,2.3391212,1.638372
-1.7405837,.01495418,.95681092
-.66527705,.32405816,.6620629
-1.1425394,1.9841039,1.971553
-.77643331,.16866995,.74997728
-.70022994,.62785563,1.1583507
-.64843396,.19336273,.3698342
-1.3994799,.13854385,.09491977
-.64021902,.50344482,.02420992
-1.5397697,1.6835802,.93407901
-.51878896,1.6272146,.87079487
-1.1432122,.28973648,.61731358
-.51549904,.89845746,.30829618
-1.1735476,1.2766895,1.1791691
-.23278611,1.6983298,.0132108
-.28023806,.66744885,.85162402
-.96122404,.21864881,2.0440499
-1.184748,.75789236,1.0787314
-.79738336,.81035491,.78906008
-.80180069,.71009337,.61737862
-.81663401,1.3385712,.20146322
-1.1975651,.82707806,.81789856
-.47441522,1.7394403,.49335733
-.30786104,.01643819,.03000791
-1.1460328,1.1998028,1.3301878
-1.0098863,1.6385159,1.6896204
-1.045301,.67192206,1.9046242
-.66329067,.59245152,1.2293275
-.66446896,.60248252,.00906841
-.53334341,.33419492,.11300593
-1.0370303,.17865081,.39733284
-.94885125,.76974593,.08645945
-.76789531,.65154979,.81380077
-.91630892,.15694687,1.0040095
-.81850452,1.1482518,1.3942359
-.99835194,.30527392,.8668255
-1.138369,1.1112295,1.4205638
-.75972742,.90113496,.66318613
-.70238555,.08153155,.35253799
-.51151848,2.1424532,.86759535
-1.9862757,.36588693,.53897987
-.97325277,1.0161998,.53589793
-1.9381077,.802596,1.7247239
-.51163748,.4737081,.75092273
-1.6494503,.88933148,.57931681
-.32830306,1.4543466,.33077853
-1.0343984,.18298075,.41578107
-.84494727,.53447309,1.8214331
-.85659837,.59774737,.21183624
-2.2699398,.44417858,.43991307
-.66199583,1.0320934,.68129416
-.53431672,.33479427,.29925745
-1.2177735,1.4600964,.3433132
-.94753176,.22645774,1.5477629
-1.7718797,.39999381,.32027143
-.72497455,1.5047492,2.2359135
-1.1534321,2.2408652,1.0960668
-.31952745,.97013436,.29604428
-.87590485,.51163595,.0719164
-1.2926663,.28621325,.24911543
-.82892861,1.7513881,.48412502
-.34331418,.66181332,.49552635
-.79784889,.52979561,1.0197989
-.76344685,1.3647536,1.368421
-1.006558,.50312106,1.8732206
-.53337356,.55165671,.65233033
-.80691181,.88213359,.88667349
-.54766382,.36746081,.24469738
-1.1966182,.53394427,.29477685
-.94182881,1.7666008,.03105936
-.79712205,.31493551,1.9967645
-1.7277355,1.5342185,.01263002
-1.0242648,.04940796,.80390879
-1.1076711,.3412647,.88695377
-.57608704,1.268772,.04482927
-2.1854818,.49461828,1.1337886
-.39015856,2.7013044,.79813252
-.51742171,.73465419,1.2290919
-1.257336,1.0066004,.85879763
-.28798239,.84095683,.25506655
-.58691163,2.1704429,1.3581022
-1.4400516,1.1492838,.97239021
-1.157618,.02274203,.93959939
-1.0425572,2.0185739,.86055975
-.89022697,.16027193,1.0609741
-.84583843,.95080963,.41361862
-.61761591,.33665503,.47639948
-1.2083042,.87075445,1.1673134
-.8274236,.38438363,1.0498633
-1.2712023,.5092277,.07004974
-.99205115,2.2217293,1.4701803
-.76522622,.67953546,.35763406
-.89638904,1.2710439,.12620613
-1.4698939,.15578354,1.1174813
-.27586453,.57646718,.5657664
-.54391029,.35740453,.51959394
-.68310684,.70292562,1.3168105
-1.6686406,.27258987,2.1482757
-.28980268,1.7918933,.72165313
-.92867207,1.3946324,.13345123
-.81747758,.25678829,.05541331
-1.4526015,.01691931,1.7512182
-.70334058,.33247706,.32294708
-1.4163819,.20546733,1.0542125
-2.0386701,.33889034,.40917461
-.73774604,.88796244,1.7371559
-1.0279144,1.4079121,.20398293
-.42852488,.74573366,.60004135
-.66711809,1.1529155,.72118045
-1.0452837,.88659744,.14494404
-1.0772717,.3594229,.18077517
-.92431671,1.6809564,.74727597
-.38058636,1.2052227,.10404435
-.90649638,.62769436,.99986851
-.71018714,1.6780532,.45490344
-.79122117,.29457193,.14112075
-.88707274,1.3159452,.31320695
-.8196924,1.1261314,.64840061
-.57830687,1.5035317,.29530082
-.74806615,2.8742505,.29018741
-.56357441,.35626374,.78738486
-.73184409,1.3610251,.02520292
-1.3354498,.10754511,.89782035
-2.2748409,1.2561872,.18961342
-1.3411737,.09310805,1.3844137
-2.9436483,.27726348,.18673989
-.850131,1.0335529,.03327821
-.53381899,.8852169,1.787831
-.84295983,1.6377724,.86375355
-.7763305,1.5921502,.27280982
-.47611494,.74983818,.86565081
-.71573741,1.0380348,.16479487
-.91376909,1.1720571,.76385502
-1.1376342,1.0337033,.93357793
-.46058191,.29038846,.26685378
-1.806238,.91986215,1.4643437
-.43270411,.42733341,.64803474
-.70671024,.2206294,.5332344
-.56302331,1.073828,.64126123
-1.4352064,.0554529,.75922859
-.61476897,.93609741,.42506788
-1.1026167,1.309828,1.8749357
-1.1230472,.42209819,.33537871
-.91057059,.30922425,.6285717
-2.9395117,.37827516,.32444304
-1.4830564,.5789428,.26479622
-.53407053,.23252401,.25424503
-.34008807,1.3415014,.02351157
-1.7797338,.88576547,.87266492
-.46936312,1.0705313,2.2533081
-.51360976,.19150757,.51903591
-.88987755,1.1052084,1.4965798
-1.1277614,1.5505791,1.1160451
-.6535701,1.8700108,1.3852619
-1.4549844,.50618691,.47735131
-.85838328,.07196287,.92111462
-.57496637,.25764767,1.3840625
-.71348287,.45458286,.31294559
-.41844609,1.821658,.51345025
-1.3286012,.69052083,.95743462
-1.242641,.70247281,.37571109
-.63973835,1.6131764,1.5469386
-.82471814,1.8728342,1.2565144
-1.6739859,.22907572,.64424239
-.45809701,.84857095,.33570734
-.70216714,.65215861,.73659484
-.48457766,1.0157218,.04694975
-.87115566,.80270427,.29349265
-.75065529,.13444417,.10312973
-.55125066,.42666691,.67649119
-.79085152,1.7861033,.05557819
-.36371975,1.2416177,.90411287
-.88494671,.20129213,.91725774
-.65017602,.65103846,.60308924
-.97856949,1.0145115,2.1678948
-.50379683,1.9496347,1.2786929
-.39823346,1.8850621,.22509208
-.84324212,.48431544,2.2900591
-.44478634,.9197607,.0568881
-.6000216,.13196732,.03603963
-1.0036877,.56372014,.09593408
-.49380396,.51633039,.36000133
-1.8516688,1.0694663,.91150613
-.61868801,.63814303,1.7566551
-.6345054,.39845569,.38399091
-1.3181722,1.2969793,.8330601
-.64863688,.40466915,1.164677
-.93360525,1.096774,1.734693
-.76943627,.42115449,.08587356
-.41985967,1.6635539,.01976088
-2.056563,1.3065459,.18495356
-1.0009044,.95508393,.17639255
-.61779357,.80739468,.01610261
-.42928901,.2667561,1.1089579
-1.3519972,.42202021,1.6120574
-1.0052752,.95916842,1.9449567
-1.0269684,.45736244,.58809255
-1.2491913,.00289324,.01827993
-.61254493,.99918659,.48386324
-.92242043,.45027626,.43173639
-.68382653,1.8583592,.35767485
-1.5295776,.00617739,.6429007
-.94194437,1.3411328,2.6892416
-1.3518914,.88106228,.52070059
-.80481345,2.2296477,.6736089
-1.1614137,.5521635,.3509553
-.80132111,.87527549,3.5327242
-.89749322,.66374692,.74170272
-.8372396,1.4706749,.12575375
-1.3675784,1.1610325,1.6897732
-.40583478,.79475788,.08005244
-.7515585,.39508128,.56562156
-.69977465,.6211053,.32048103
-3.8612692,.43921709,2.6967116
-1.683355,.99453648,.56420667
-.96694034,.08720046,1.4800844
-1.9150035,.52025179,.76698101
-1.5534457,.05524009,2.2747149
-1.3891862,1.6724332,1.2632951
-.59562567,.04880347,.73284
-.7837759,1.1744235,.13766317
-1.1007485,.9815997,1.0357148
-.72691329,1.3550641,.34998919
-.30029978,.0945729,.49144631
-1.0110427,.62272057,1.0103391
-.66185207,.07075245,.07027109
-.98915609,1.3791455,1.5737993
-1.2515883,1.020735,.29281462
-.71803862,1.5043652,.52104658
-1.7634366,.49867015,.89310257
-.36167169,2.2517288,.09876483
-.51405703,.64699282,.8349744
-1.0906833,.58534455,1.2115729
-.67051786,.31677289,1.2512317
-.37151334,1.4994292,.21379855
-1.7210525,1.1467378,1.5601651
-.21146114,1.2361002,.38146713
-.657427,1.3474813,1.0638619
-.6321338,1.6663955,1.0250232
-.36169992,1.495966,.06608497
-1.7343317,.98258328,1.4350906
-.72516174,.4190473,2.619457
-.85867578,.23658208,.33016494
-.61724608,.37418682,.16409785
-.55606716,1.7137164,1.1086552
-.7109021,.59232338,.10042714
-1.8060828,.01359627,.37763022
-1.3748144,.34463479,1.9387517
-2.4445397,1.1293817,.8543036
-.65665653,1.2830217,.60143115
-.96999708,.99240981,2.2441493
-.72239652,.11522013,.40013394
-.41380084,1.2666949,.68763439
-.79031067,.0299053,1.2914343
-.50382229,1.5535933,.45249866
-.74883299,2.0591593,.8926443
-.41866451,.84279827,.46667332
-1.0131767,.41964834,.56384563
-.64260829,.91036171,.56599318
-.95080322,.45283219,.82163086
-.8326562,.8140955,1.6570383
-.54972648,.36270693,1.4717213
-1.3682586,.32017597,.80406282
-1.1608999,.60883663,.10991253
-.96757864,1.0359348,1.1496763
-1.1157544,1.4223737,1.4284294
-.51076867,.99954653,.4617003
-.79650559,.16755752,.65621758
-.46087439,.85378906,.5164061
-.94493839,1.0542039,.50774796
-1.2701761,1.5687511,1.0062379
-.68584737,.21662659,.43881156
-.88865133,.1198649,.64201826
-.59002874,1.3810103,.72932694
-2.140814,.14790689,.66820445
-1.1468312,.47581916,1.1420064
-.73454436,.36804665,.29849541
-.40705367,.9804978,1.1604101
-1.211607,.17242833,.4316821
-.99892713,.20286933,1.9378252
-1.003844,.75010173,.89056836
-.3230555,1.3978866,1.0467815
-2.279349,.53856046,.37552712
-.45260504,2.2808994,.755071
-1.0514415,.0479299,.43086797
-.85212271,1.398481,1.2055918
-1.137416,.40771806,.41776914
-.76015949,1.2763576,1.6384868
-1.2012632,1.3393502,1.202671
-.43223384,2.3972317,.76612685
-.24866551,.37215633,.378587
-1.1194324,1.6635407,1.596691
-2.4609605,.33098315,.34580547
-.90980418,.71502578,2.1297623
-.7505094,.82733585,.10495601
-2.1108574,1.9360592,.00538293
-.7537439,.47445743,.10541552
-1.5095787,.56466043,.31271367
-.95916256,.19612679,.13291025
-1.0093769,.69734004,.07407861
-1.1743677,.53265349,1.1607162
-.46902457,1.8625502,.87868071
-.53043354,1.3951512,.23304308
-1.1283112,.61197189,.11106505
-.75573757,.34533939,.37386731
-1.5247857,1.2491021,.6294929
-1.0011896,.62692841,1.1452116
-2.1446981,.60199721,.51101034
-1.2146605,1.7363796,.68562495
-.75158869,.66134579,.5641969
-1.5234346,.36129582,.21569861
-1.0730998,1.4165611,.30761591
-1.260747,.59965736,2.7940657
-.4111881,.78715319,.17473871
-.97214029,.75130821,.99507198
-.34922801,.27622185,.98655513
-1.3993495,.47465049,.50527465
-1.6825065,.92129856,.82251089
-1.1082405,.27401443,.34278236
-.84660304,.69748108,1.204355
-.504893,1.8498264,1.2615266
-.39109027,.78214587,1.524117
-.49570315,1.0331719,.70146036
-1.0698898,1.324837,1.4009371
-.48208488,.79335967,.69613632
-1.4322304,.24079474,.52405083
-.98036955,1.5250164,1.2436737
-.61717251,2.380277,.7112296
-.80475762,1.3809198,1.6914776
-.70350193,1.2663026,.91154843
-.47197766,1.7266162,.64443607
-1.081255,.55626947,.98621607
-.99240106,1.3330063,1.1163342
-2.3560618,.76228308,.4640043
-.58381855,.79006898,1.1465757
-1.1931729,1.0244351,1.2548812
-1.4388181,.92269987,.9682689
-2.3894312,.18819694,.08632469
-1.2428454,.27443906,1.2984849
-2.6581556,.03937451,2.9169412
-.54372599,.91867799,.41358712
-.51967153,1.5997562,.1156273
-.2454119,1.5887386,1.9161883
-1.0673035,.86315742,.58606906
-.78170966,.23804783,1.4142981
-.70627347,.61116293,.98229192
-1.7438231,.64981113,.28433647
-.76017059,.21564464,.23653714
-.34084643,.80779215,.1470733
-1.5209847,.27622967,.37629474
-1.7999979,.17187567,.72901129
-1.2656862,.19265862,.52039305
-.74428519,1.4810955,.28601676
-.60773737,.65121488,.58168664
-1.2757264,.09762913,.0755984
-.57722391,.26079391,1.1229892
-.294211,.39975253,.49542248
-.58264963,.74408229,.9655736
-.63553504,1.3616214,.93357311
-.99022969,.42107268,.03938398
-.56447266,.25545594,.38876146
-.32537928,1.3861539,1.959317
-1.3375609,3.4505543,2.5399279
-.76826425,.41812134,1.0034346
-.341369,1.2208407,.249982
-.2534029,1.2286357,.74660874
-.88396443,.0611366,.02326218
-1.8049417,1.0190341,.61845119
-.61528359,.04162779,1.4442826
-.51267393,.99599957,.79193868
-.7328387,1.1330089,.12505342
-.52132329,1.8319001,.79166755
-.77387653,1.5361433,.69341974
-1.1410053,.4889815,.89000195
-.73951465,.18311916,1.0144149
-.68370722,.65338644,1.9171182
-.79570595,1.6635741,1.2504051
-1.6380877,.12564491,.28153375
-.62741852,.1383938,.55179206
-1.1496048,.51588,.56573959
-.77914195,.75506845,1.4343908
-.38959483,1.1289781,.12677681
-.44394525,1.3024535,1.3418575
-.7506595,.30331062,.11680581
-.83579579,.26794467,1.0836801
-1.3765829,.39268382,1.4407833
-.69005712,.58745601,1.3458903
-.75375695,.4759585,1.2881235
-1.2593951,.57479449,2.5969172
-.56968959,1.2192412,.95716896
-.64048023,.53433558,1.4400331
-.65809142,1.3699416,.00215759
-.40419443,.54748962,.70680889
-.73517446,1.9702168,.42868976
-.87201748,1.9974799,.32082944
-.551655,1.587772,.21353597
-.5346005,1.1669322,.47036186
-1.579357,.53502794,1.1459036
-.71594092,.60387922,1.0273613
-.3088599,1.0314866,.4957908
-.96772115,.18344852,.46039355
-1.3309959,1.7458215,.19107811
-2.2565574,.53142206,2.0249958
-.50602053,.7715328,.28502085
-.89653617,.75689872,.700782
-.56376852,.90747261,.46998247
-.79136374,.33469753,1.6972846
-2.9802743,.86200326,.94247576
-1.7639984,.16751284,.85954519
-.67230785,.35128599,.36419167
-1.1757045,.09494118,.43859542
-.98651933,1.4886163,1.0256599
-.95817462,.92879805,.62640626
-.57734025,.2977826,1.008751
-.60408903,1.8382158,1.5879039
-1.2895257,.25252247,.90453826
-1.1730264,1.1413346,.07920942
-.55693917,.61050222,.4021869
-1.2767835,2.1086872,.09777634
-.99904755,1.8851797,.91615154
-.72858815,.49478014,.74355
-1.4174416,.3171881,.48606227
-.72633888,2.9565212,.46772148
-1.1472929,.43993105,1.556815
-1.7102931,.61802745,.70957858
-.49096349,.9261732,1.5997687
-1.0860813,.05952443,.86168729
-.37877165,1.3363298,.03360755
-.81562565,.49253685,.38370216
-.64540606,.04320847,.39056016
-1.2859094,.86899032,.87929611
-1.5549128,.2753672,.30264594
-.89268912,.00857028,.51414243
-.32301921,2.9894963,.126393
-1.6960788,1.0610038,1.0139548
-.66497594,.51362741,.17628108
-.67335669,1.4637958,.94685909
-.49452054,.68942395,.67701541
-.96965667,.27336162,.07988311
-.6460602,.79389188,.28578402
-1.0952182,.62377598,1.6780965
-1.0811279,1.3825632,.56570724
-.50254273,.10668498,.59496073
-1.1584338,.79800623,.42679921
-.46733813,.20704319,.26344221
-2.1653941,.62327112,.69706654
-2.1213264,1.177559,1.2045835
-1.3958926,.76635521,.30352198
-.47731292,.82364266,1.0446458
-1.1937042,1.1978972,.2967232
-.6697209,1.8806006,2.2258698
-1.481525,.32776387,.95335842
-.76871022,.09352338,.40415217
-1.7031365,1.205512,.79949222
-.46360416,1.0014711,.37347746
-.83752183,.87089208,.34064991
-.72348482,1.0863294,.86747517
-1.880795,.39701566,1.0626412
-.29971728,1.1753352,.96086118
-1.0542886,.62727815,.83786093
-.99999212,1.0344991,.71421457
-1.073182,1.0249634,.25227645
-.90508584,.36563192,1.1310504
-.5545815,.26418631,.24857294
-1.0795784,.6757179,2.7125857
-.3356386,1.0273191,.29078078
-.91992421,.97189047,1.8507092
-1.850879,.58871176,1.1149149
-1.1311402,.17483811,.92345778
-.9221055,.75227148,.071068
-.8387141,1.8462389,.24335833
-1.9445926,.55661953,1.8715441
-2.4239046,.05605995,1.8879381
-.70667505,.85355133,1.0982084
-.2984815,1.1007689,.8382904
-.65841921,1.5350167,.35630673
-1.0889769,.01579271,.18793756
-.63797256,1.0021881,3.0841111
-.28064504,1.9334401,.77867102
-.4123002,.76911936,.34286394
-1.0679185,.39635715,.53113668
-1.0665659,.03137289,.29694997
-.4778217,.07650267,.92594974
-1.1904829,.94968668,.04569035
-.74876548,.14176106,.02068871
-1.0758501,.2997165,1.0008704
-1.0459665,.58795876,.10563085
-1.4144844,.44520456,.29617318
-.90182407,.90994574,2.4705838
-1.4685463,.18179108,.35956567
-1.0402522,1.2197828,.78321954
-1.274161,1.0454062,.2426948
-.33673853,.58736458,.20758136
-.9805352,.59952631,1.3173737
-.8204386,.62240609,.76933675
-.80112957,2.1047413,.66455204
-.85150965,.82066012,.28705353
-.51737538,.48384208,.42126236
-.44164118,1.3007999,1.4128468
-1.100313,.93524888,.60267371
-.79547821,.78843821,.01391279
-.66399811,2.9562415,.35172165
-.80397315,.26508382,.55345537
-.73700572,2.015043,.53797706
-.46353032,.41801331,.68283191
-.7106795,1.6182747,1.352688
-1.2972999,.50921805,.87615474
-.64190113,1.7149111,.23836146
-1.190358,.08812753,.12776276
-1.4229511,.03313561,.89975269
-.92745217,.10968805,.69941062
-1.3279616,2.0667919,.01566966
-.32299109,1.2321182,.36547789
-.8177627,.25077477,1.4886581
-1.0409007,.26599843,.87310691
-.68996234,.01247271,.23986765
-1.4404797,.03216535,2.1873132
-.52952047,.21041413,.1025193
-1.1541462,.19119114,1.3458813
-1.4282617,.84979069,.00774843
-.46855795,.83455696,1.0251371
-.2155313,1.5827496,.21772033
-.60805884,1.4083281,.09262593
-.6054703,.28413593,.97518925
-.7871481,.42588719,1.3412141
-.70256854,1.4771014,.23389481
-1.0161555,.69772399,1.829215
-.61696536,.2752298,.55397186
-1.4660377,1.0472005,.72011881
-.6311237,.11997638,.35573224
-.56364502,1.6252635,1.1387235
-.79700018,1.1070177,1.6786058
-.66963712,.39690119,.07698428
-.51790377,.94778651,1.0758125
-.39154203,.3230179,.15668665
-1.2017909,.20599759,.82216793
-.94905243,.47663558,1.8187289
-.53471044,.47443313,.08789604
-.63882704,.80184144,.72268707
-1.755853,.12865792,1.6086874
-2.5845727,.35908781,.2655599
-1.1714629,.6280663,1.4304675
-1.0317356,.46998311,.35036009
-1.1922412,.70974437,1.3204282
-.641276,2.2007299,.31705982
-.74827382,1.0326172,.98687069
-.7272804,1.4184312,.81326698
-.45506363,.23353038,.27452419
-1.2686848,.41000017,.27836158
-.87096775,.78973294,.07606283
-2.2129782,.77526736,2.0511335
-1.2740197,.27738899,.09949579
-.90390917,.71700214,1.9286841
-.65708246,1.3723792,1.0728429
-.43724451,1.4459452,.58909104
-.59815403,.29479251,1.5760396
-1.045212,.9320486,1.0480758
-.82130967,.35742976,.96449173
-.68640007,.10516102,1.1725288
-1.0603457,.13955647,.15987175
-.88701845,1.4644431,.76875773
-1.7117634,.23946109,.40448412
-.85911258,.77468677,.73292788
-.69986248,.64752796,1.0894273
-.69985465,.84369996,.38937055
-.7454938,.66403663,.43553825
-1.3949147,1.7101482,1.4855226
-.52681967,.53464861,1.60624
-1.0699687,1.9722205,.71052693
-.82008938,.54302814,.05064995
-2.4907422,.1156249,.31772322
-1.5478425,1.0632836,.10159438
-.96976699,.33488078,1.2403578
-1.164841,.29947108,.59649999
-.52882539,.15870494,1.3606344
-.25899853,1.8690266,.11030614
-1.1744088,.23568812,.98066378
-1.3865832,.9022365,1.4884158
-.48920009,1.6756023,1.6219493
-.80643065,1.0316541,.12880359
-1.4905863,.01379394,1.0376542
-.9821439,.3427752,1.0207326
-.511289,1.2083944,1.9324896
-2.3720218,1.2069202,1.0975525
-.68773925,.43044384,.35587117
-.7847506,1.1048931,2.8979351
-1.9440447,.13857067,1.5050616
-.44293619,1.8804112,.40086871
-.80554303,.92506318,1.5373136
-.73634968,.85098648,.56831903
-1.3778185,.4659565,.96453171
-.59977537,.67312004,.18006616
-.94281164,1.2948901,.66664127
-1.4624759,.12255063,.8338771
-.57720093,1.0761614,.49185458
-1.8904343,.1676701,1.1636951
-.93954462,2.1426951,2.3371858
-.48651071,.66995238,.32814218
-1.3737674,.90392018,.17504725
-1.2007835,.84632914,.73347954
-1.5665297,1.3608182,1.5764686
-.6699501,.84150812,1.8023458
-.82466776,1.2049156,.42415934
-1.2101392,.00376289,.11607048
-.32329943,.944626,.63240153
-1.0751014,.66439496,.51883388
-1.1431588,1.1336342,.35831627
-.43885844,.54012904,1.6441192
-.76529523,.01898198,1.2698219
-.38991388,1.4044875,.09152085
-.8011662,.81551689,.26713589
-.77002349,1.1086508,.28078188
-.6078782,.93494426,1.1331066
-.5500737,1.9561205,.8198744
-1.7234448,.01404995,1.1368962
-1.3764158,.11025231,.15448629
-1.5179455,1.6208317,.73258542
-2.2917066,.65989406,1.2092868
-.52138948,.84889826,1.0862497
-1.4782516,.77784038,2.3520386
-1.0302612,.03596586,1.2354273
-1.5277013,.17318611,2.5836427
-.35382149,1.5211208,.18078771
-1.3853009,.38318695,.28725566
-1.0304598,.42440037,1.2984801
-.43989152,1.2349505,1.3706805
-.61537969,.83122263,.37729679
-.60602029,.3897508,1.4532127
-.49113148,1.7287253,.81169672
-1.5956586,1.089833,1.3368785
-.48573812,.42408888,1.5770412
-.4728521,.81354889,.65250519
-.78758148,.04866899,.06548823
-.89835279,.51514742,1.1720255
-.71081451,.06354228,.65330186
-.87574201,.37076907,.47067214
-2.5657248,.31115354,.78898916
-.62497093,.51734045,.78561174
-1.5272874,.62607297,1.2709494
-.73423386,.3459351,.15440847
-.63644132,.06489324,1.6602738
-.52546862,.00324421,1.8847122
-.93758031,.37767061,.3039469
-1.5312276,.649624,1.7111675
-.89520463,.55669122,.64368087
-.5432024,.13825704,1.1269034
-.80009155,.75355863,.4260827
-.892308,2.405771,1.1721852
-.8057735,1.3674782,.68326701
-1.0790204,.34949035,.68920505
-.60839582,.68192234,1.539223
-1.387514,.66440428,.40610925
-.48374823,1.8088855,.41081886
-1.5241458,1.7493578,.0690786
-.45620219,.32378896,1.4949885
-.989533,1.4045841,1.5802833
-.95825801,.78840391,.06365899
-.42176272,1.3429657,1.3752332
-.67131991,.69752961,.71150558
-1.4094008,1.1038204,1.776774
-.40780649,1.8421167,.39125824
-.56564603,.97118399,1.4085407
-.68461121,2.2171935,1.1621613
-.58492624,.26205182,.8457872
-.61193384,.40046772,.37210877
-.7181795,2.495527,.33143809
-.58122589,2.7092935,.34560016
-.80604466,1.2526783,.5288156
-1.6568962,.67176767,2.4549713
-.54675697,2.4886301,.00135286
-1.1326221,1.5538809,1.0856787
-2.7966947,.20528721,.2700297
-1.0740939,.08148919,1.301275
-.59496402,.56969206,.95069107
-.5502181,1.1371734,1.7848372
-1.0207004,.08238928,.16680653
-.80158183,1.0662623,2.3007266
-.8476431,.96202152,.50830481
-2.0040826,.11448967,1.7034614
-.68901557,.79517865,.60259666
-1.6754618,.77180543,1.3821321
-.42285826,.54181869,.27028404
-1.0301684,.56767,.47260856
-.68703673,.43908821,.02554759
-1.2906834,1.5320878,1.2629509
-.69115566,1.4673091,1.1781198
-.73399844,.05423342,1.4808245
-.6379787,.64830079,.12768723
-.31968394,2.3686876,.52084046
-2.6218271,.12052284,.63759165
-.84207914,.97150714,1.6668521
-1.0556714,.71157655,.19730626
-1.0248231,1.3411618,1.3818498
-1.6802844,.76983026,.49999005
-.81928536,.15261692,.05798912
-.76888602,.97298694,.96798158
-.79146184,.46111772,1.0454408
-1.0120684,.96277085,.3433203
-.93996698,2.2436156,1.261481
-.43002318,.13681401,1.3818642
-.46863441,2.4035607,.24023597
-.75544858,.50305008,.53708025
-.53792644,1.0496871,.66928628
-.78457301,1.5162856,.34971363
-.29284021,.50592443,1.5766076
-1.0064186,.99141701,.31726868
-.30343024,1.8312391,.5689771
-.61682106,.68393385,2.5491877
-.31741099,1.7944744,.5957181
-.39657725,.72168092,.56590164
-.99652524,2.182144,2.2194541
-1.1098488,1.636562,1.8283081
-.86127273,.98647252,.97290901
-.90627155,.23527134,.97115
-.46852082,2.0303105,.60126367
-.70168412,1.8709146,1.286154
-.81791074,1.0725352,.39184028
-.67978968,2.0662519,1.2815359
-.50706106,.73831836,.04114588
-.26284938,.40002314,.33620673
-.28228419,.3684073,.60331416
-1.0245653,.9196898,.25747886
-.68603572,1.8065214,.1045295
-.75316556,1.5611793,1.785953
-.5732342,.70458956,.1199523
-.73438127,1.6352566,1.5164681
-.98019843,.33914598,1.3515618
-.46987627,.6611661,.1488964
-.44091239,.8221693,.24891041
-.54199298,.71953243,1.1307823
-1.1961004,.34053786,.51283116
-.3529863,1.719374,.54492829
-.99202998,1.2930323,.86558959
-1.2262024,1.340853,.37333314
-1.7498736,.40714006,1.6375585
-.92073792,2.1842282,.73863433
-1.1114244,.73598836,.13468304
-.55895217,1.1367176,.4883239
-.71548639,.97192324,.10534762
-1.0254742,.7871825,1.1281103
-.71074228,1.0711343,1.0535819
-.46979995,1.1142266,.80479818
-1.1007972,.56736962,.07787769
-.67678199,1.8251798,.99155184
-1.5754684,1.0551164,.26714414
-1.9899424,.85344689,1.6308766
-1.691636,.10790867,2.8449326
-.73311677,.4687263,.26092205
-1.423267,1.5701612,1.2499772
-.85533021,1.3304458,.01875169
-1.7004815,.11271902,.1297552
-.89470596,.26721631,.54347976
-.48946112,2.8376515,.14156029
-.69175369,2.5173918,1.4175256
-.6568788,.92550353,1.8299516
-2.0381619,1.7264101,1.6124126
-1.0946311,.88830855,1.621799
-1.9740235,.55440402,.0503428
-.46972959,1.9430539,.38817507
-.78035143,.28573912,1.5202393
-1.2602277,1.377517,.5984185
-2.3643502,.07349329,1.11451
-.40125273,.25066329,1.2828228
-.91178752,.04696589,1.4123513
-1.0862337,.64552562,2.2500101
-1.4709859,.72245713,1.0861154
-1.5542753,.63253862,1.6233693
-1.1353034,.39007677,1.5586195
-.95430344,.52154,1.1031938
-1.0428882,.46666079,1.7868502
-.65117162,.65966167,.96701746
-.84685375,1.2743207,1.1234658
-1.1621632,.17679951,.76884636
-.98191682,1.1610831,.73914054
-.73845059,.39466257,.75669522
-.62827515,.09093031,.57277374
-.72539756,.47537619,.49259283
-1.6848686,.81782103,1.3729511
-.86544122,1.3477547,.30493218
-.73481519,1.2360775,1.2928828
-.60925245,.24737012,.90055192
-.99820261,.13736152,.43431188
-1.6705078,.25253844,.43446226
-.42822625,1.8477336,.77853985
-1.1277918,.53964224,.28243815
-1.2897066,.06048806,1.1189281
-1.6344319,.06935833,.71146327
-.57652083,.55615951,.12204357
-1.1658591,.98283092,.47286043
-.7391346,.21558555,.6136926
-.41890561,.68231617,1.0597653
-1.3910817,.24546365,.41983524
-.54791426,2.0063684,.03275667
-.63704814,1.6620307,.05536938
-.69839693,.04652865,1.0944907
-.44557227,.28312227,.44834887
-2.1071899,1.1867673,1.0305468
-.63607733,.98138998,.15859779
-1.2515705,.20409451,.3549423
-.60509605,1.3705927,1.5443346
-.66277312,.55982358,.15757925
-1.1312492,1.6307832,.359275
-.30551346,.17013804,1.9970312
-.63546053,.70280098,1.1916681
-.47073699,.71215598,.95712486
-.97974438,.78630876,.36910812
-.72573604,.77152233,2.087028
-1.0767165,.76625498,1.8125896
-.89025567,.19901534,.57824766
-.69214192,1.7208873,.85841763
-.87594935,.23912813,.33186255
-.49001765,.43073439,1.3007571
-.67783091,.51355471,1.3665486
-.49596505,1.0163832,.28786615
-1.3737318,.40099884,1.1681101
-.36888474,1.4738983,1.5998317
-.72909191,.05674401,.01908648
-1.0801888,.66051598,.98309355
-.49215344,.85915145,.09928457
-1.0653597,.06349701,.23086159
-.62202697,.57539261,.27716136
-1.6945299,.47960587,1.7085087
-1.1800752,.39563335,.86527473
-1.3051541,1.3242409,.68986307
-.99756735,.17969678,1.3448787
-.53884797,1.2913767,.02144505
-1.0519235,1.2266852,.81479638
-.59335169,.47458662,.63963323
-.87180269,.34749879,.41437328
-1.8524289,.81286978,1.0320681
-1.0474137,.07789185,1.1893338
-1.145159,.63631009,.7933669
-.87307506,.88265292,.45401588
-.64256583,.30932317,.80045675
-.75764515,.26028617,1.6920241
-1.3392983,.09173893,.26281915
-2.389493,.01655967,.33794507
-.47840351,1.0984928,.87653382
-.28309748,.29309336,.46081878
-1.6927498,.02502303,1.6178668
-.62079182,.49872266,2.40335
-.9115411,.1927299,.76267873
-.40825077,1.2228202,.39169087
-1.4388549,.94242572,2.3495221
-2.2743517,1.1480887,.9021052
-.51516903,1.3444207,.32159303
-2.1165007,.75041339,1.1454733
-.53351735,.60067861,.44107962
-.33530645,.55512979,.13537312
-.40743896,.84718587,1.4250781
-.65059327,.10954351,.31912284
-.31709605,.61418894,1.0683603
-.65780787,2.099307,.2366118
-1.5212206,1.282327,1.012725
-.87450061,2.2007675,.60970883
-1.0799732,.57724147,2.5944183
-.94413887,1.3756552,1.8656791
-1.7365473,.20577655,2.2533824
-.55029785,1.185433,.87610681
-1.011878,.13908229,1.01692
-1.0084511,1.1453671,.4373408
-.45564655,1.6474765,.92482456
-1.1840859,2.2929181,.09220066
-1.0201075,.73954043,.39548316
-1.8282521,.09945121,.58005907
-.9943383,.75198539,1.0881266
-.73260989,.48065225,.82917129
-.74358214,.91312148,2.0023067
-.99152868,1.7400195,1.7613443
-1.1036359,.28594568,.61951033
-.82016892,.11275873,.79572369
-.61756002,.24458409,1.365856
-.66452035,.49292859,.56821754
-.26770627,1.347178,.64008789
-.90963297,.18036549,1.4434721
-1.2378269,.01452719,2.0135832
-2.4514809,1.0889443,1.6033611
-.71210265,3.0960524,.71044344
-.63046342,.41210754,.71512462
-.59359393,1.5684231,.61166492
-.717434,1.2722121,1.0652174
-.85438668,.47774161,.71435629
-.36278251,2.8237636,.08000486
-1.5193325,.95810776,1.0983787
-.74651604,1.1627567,.6004484
-.75726547,.43600975,1.5408649
-.50408871,3.9074395,1.5177831
-.56625585,1.082451,.90134688
-.40145945,.41157417,.33803008
-.38273386,1.4776745,.87096823
-.78504657,.3771612,1.9051846
-.59665682,1.1852006,2.1403582
-1.3224756,.19048438,2.204121
-1.0433785,.02374107,1.3060626
-1.4312443,.65877574,1.6407733
-1.5829985,.46402247,.83839133
-.68718165,1.4750065,.25083794
-.39304378,.11236949,.15582904
-.41088263,.762074,2.7919812
-.75390571,.16960763,1.1395617
-1.0381094,.23361115,.89496869
-.55853888,.46594298,.03929856
-1.094113,1.3695998,2.354086
-.54119978,.88987496,.23161028
-.68081688,1.4578224,1.0363442
-.7761126,.14366911,1.5393136
-.62834159,.70438714,.23352584
-.33700098,.87159865,.70550665
-1.4982525,.12707278,2.1641879
-.73339681,.42636757,1.5224366
-.26623258,1.4082577,.14752251
-.9633237,.73576502,.3829062
-1.7371878,.01573596,.71388248
-.54287514,.23360768,1.0600341
-.67708148,.08078811,.73156039
-.36279195,1.1169635,.62309178
-.37461526,1.5766097,1.0665521
-1.9183065,.47219541,.36960737
-.59009435,.64252473,.77136532
-.86493671,.43550938,.35764769
-.79516927,.20856808,.32538873
-1.2475443,.80132768,1.8450558
-1.8660311,.45804356,.37272752
-1.1704848,1.2795998,.27018715
-2.191488,.42899396,.43720209
-.6856812,.97775534,.03215836
-.53953988,.67320266,.78908604
-.82101524,.4515384,.79658045
-1.8729467,.15865673,.0156477
-.41089259,.14573355,.93500356
-1.1902067,1.6799266,.86295938
-.51088859,.04741115,1.2115141
-.46044334,.01697541,1.4513885
-.94497994,.0465958,.72782335
-.95426173,.08576343,.44832035
-.53431261,.32750722,1.6359562
-.89179074,.45544218,.16792722
-.78525737,.54588599,1.3178325
-.8176419,1.6688939,1.6880475
-.68375947,.11231432,.55051297
-1.234975,.47969716,1.8832152
-.8741358,1.1494193,.48588358
-.79847389,.13063425,.85869956
-.17684966,1.9544564,.33041243
-.70784992,1.9278106,1.3106408
-.84211007,1.9918981,.32008946
-.79415617,.61387132,.89069898
-.93890214,2.3720596,.79540913
-.59431689,.92929209,.28359537
-1.0313982,1.320247,.93787366
-2.1736195,.06175835,.43872613
-1.5248522,.47890819,1.5286595
-1.2790994,.67091532,1.5713676
-1.1078723,.54047399,2.0748221
-1.0735287,.7965993,1.7137847
-1.9139763,1.3862515,1.2060726
-1.0717639,1.8518727,1.1442408
-.55931209,.81947681,1.6298637
-.71218644,.49022192,.52738802
-.97643231,.91092679,.1576837
-.760056,.77133951,1.3759526
-1.0255595,.25310678,1.6020035
-1.1789741,.03793684,1.2525538
-1.8373167,1.7735682,1.212536
-.49862352,3.183861,.53050466
-.77695877,.8383058,.15184067
-.65079833,.38666912,.00738511
-1.028228,.8175014,.30066449
-.45142128,1.999164,.40890666
-1.382093,.69590408,.48315307
-.43406247,2.0120365,.30493702
-.88592249,1.3240961,1.8229244
-1.4017569,.90519305,.13440987
-.93036832,.11311971,1.1296779
-1.4998794,.68436801,.4845666
-1.8495839,1.0301779,.98630955
-.47135722,1.9007718,.07597082
-1.36119,.94391867,.3411666
-1.2726783,.33379609,.97719302
-1.4552615,.28197161,.66272185
-1.7789666,.27222589,.32858692
-.7047542,.09787513,.5302369
-.81813668,1.120855,.16134092
-.52730183,.57534108,1.9446869
-1.0352745,.55399404,1.4223773
-.65887407,.38928787,.11770774
-.91050161,.86307863,.16240567
-.58052361,.09133119,.09169118
-.51080522,.29491516,2.0923918
-.77110427,.83394328,.36303702
-1.0942698,.45321885,.67933546
-2.0458806,.0100524,2.1424301
-.75954232,.3058072,.94536328
-1.097533,1.2197923,1.005456
-.77072435,1.4712381,2.4133118
-.99809,1.9624234,.48723452
-1.9443342,.11592663,.08020532
-1.1065046,1.9983129,.49757851
-.44289806,.08992334,.98297948
-.43367959,1.016142,.86363246
-1.7394464,.28128481,.58542214
-1.039854,.33110616,1.7401253
-1.6744262,.11586323,.15143227
-1.6420491,.14093105,1.1409539
-.77217172,.29278592,1.973422
-.54360349,.41084842,.04285688
-1.3812963,.48245004,.50099176
-.80379242,1.3792779,.44307637
-1.2585226,.544979,.91650153
-.82401265,.58241529,.94811316
-1.1273318,.20419836,.82175665
-1.4701579,.45376229,1.7832048
-2.3482358,.06276887,3.0869728
-.73878489,.21607824,.52228736
-.63187102,1.5354828,.62421021
-1.3233169,.30804965,1.2682667
-.77454055,.83509351,1.0647361
-.68037396,1.6820788,.55447179
-1.5860191,.43523541,1.823908
-1.1482081,.01783032,1.4301662
-1.3895932,1.9437183,1.0701296
-.5413939,1.9692661,.4219836
-.87981187,1.7619975,1.0063278
-1.0273483,.62918815,2.096531
-.8033694,.79547511,.15196158
-1.5488215,.60713881,1.1447265
-1.0591065,1.764276,1.5240668
-.45834325,.8662343,1.6685728
-1.7010706,.5563087,1.3601928
-1.019727,.13330042,.34026553
-.68698864,1.9603751,.50300679
-1.4135308,.82399621,.66611932
-.59100861,2.1838842,.59357202
-1.0742518,.0218821,.1062736
-.78735906,.86571564,.75694134
-.9710071,1.1144243,.7946435
-1.1484294,1.1839502,.05840251
-.45816524,1.5086169,.67557386
-1.1983797,.4826159,1.2167327
-.59792768,.98925141,.97656329
-.75197277,.78583098,.89866397
-.96671397,1.2917225,.08924862
-2.5108524,.03478235,1.7602568
-1.5187068,.06502577,.31469456
-1.1872203,.78953834,.09602183
-.59740415,2.286946,.52265312
-.63178234,.27555936,.20475854
-1.1557705,1.1545463,1.2510105
-.47188295,.68654399,1.7695837
-.70950029,1.5071188,1.6775958
-.4235061,1.0722132,.74049538
-.34841534,.39185631,.26515107
-.88360763,.83555569,1.4968759
-2.0386213,.02481221,.72910886
-.87403656,.69381817,.99651063
-1.1167521,.44353485,.00126197
-.38571745,1.7267019,.95367775
-.93583424,.29313829,.05286692
-.79934872,1.1509966,.54173961
-1.1493251,1.3097416,.33309489
-.43005081,.94315551,.11413794
-.80759909,.56937509,.28179157
-.98561533,1.2053753,.0603198
-.82081468,2.1011066,2.3791904
-.86205322,1.0256311,.35429131
-.4892764,1.6827485,1.0140344
-.23545278,.08964238,.58577933
-1.8221486,.27642458,.28413962
-.91428521,1.0036514,.22545372
-1.2035419,.19042845,.8849769
-.89551078,.04346521,1.3678007
-.5790526,.38059918,2.6241926
-.75467272,.15187527,.6086501
-1.8312269,.60790561,.91928158
-.99623889,.94963413,1.0619191
-.72941978,.06163065,.10478876
-.5604464,2.5324887,.0294161
-2.3358032,1.7661579,.59238141
-1.1398303,.13846687,1.041109
-.98754213,.18657635,.09054038
-1.1736881,.12723443,1.0616905
-.55437195,.05589629,1.4266457
-1.0011109,1.1942835,.20267647
-.49341057,.41991689,.77742241
-.98035402,.10314097,.87210427
-.95394486,2.0988299,2.5119299
-.58274057,1.0083003,.85524571
-1.5213445,.14762319,1.3355354
-1.0698814,.40915004,.61682281
-.64308084,.65953447,.03213595
-.49176545,.56117512,.15531043
-.92749169,1.1116951,.83918469
-2.3355536,1.4473503,.45568771
-1.1210497,.4311301,1.3478889
-.72275207,.50277652,.71630301
-.69072569,1.5816351,2.3720443
-.57706827,.15233937,.67792287
-1.0251218,.88062511,.0589186
-.3606851,.36362588,.27831406
-1.4567952,.31925057,.21268825
-1.2556676,.46240284,.22620279
-1.6173642,.47679374,1.1116724
-.67758563,.13490735,.72609758
-.52804851,.9301583,.49254006
-1.1224549,.49948054,1.233004
-.77600105,.51058049,1.0061864
-.61185169,.26458561,.26053772
-.87611829,.48416321,.92352689
-.77045494,1.1788475,.04963148
-.68984673,.01945841,1.126364
-.88812596,.69472347,.96285227
-.57395513,1.4182448,.66106921
-2.2142112,.13473365,.75683935
-.84508793,.84921189,.77873825
-.70543005,.83948315,.20687013
-1.4454522,.89816798,1.4435143
-.23115105,1.4051468,.99495838
-1.2741663,.12348929,.00589696
-.85187529,.33361721,1.0819021
-.65696986,.07723375,.46344831
-1.3416359,1.4244147,.40423882
-.7763617,1.182493,2.5101812
-.27082378,.06301406,.67483008
-1.0875698,.25954449,.83829696
-1.6085887,.21756044,1.6817482
-1.0253152,1.1409416,.10308671
-.80711709,.2282618,.48220484
-.86005033,.12615052,.37147972
-.74248515,.1618625,.28498351
-.88949599,2.1543739,1.323689
-1.0563595,1.1807439,.83649262
-.34773926,.45980665,.21679183
-.91975204,1.5353613,2.0569126
-1.0955245,.10088474,.05082142
-.53165827,1.5596384,.03284912
-.71434469,.93301288,.93325753
-.96574693,.71692671,1.7311976
-.59347938,.64801,1.1619106
-.26233039,.23681362,.86478647
-.90638619,.91647341,1.888586
-.7616435,.74498314,.60644819
-.37970344,1.000236,.91867357
-.68928446,1.2666808,.64397755
-.56066172,2.7230076,1.2627411
-1.3143567,.02065778,.36268218
-.9654757,.18592371,1.2748074
-.71689428,2.0337737,.6126679
-.72417056,.19474242,.68503416
-1.1476066,.70524949,2.2443925
-.56695143,.61668417,.49714628
-1.3671749,.08262835,1.4128275
-.50962459,.00170506,.8405396
-.70457774,1.4601974,1.6699616
-.67128105,.58673065,.34308082
-.82664287,.24139634,.49931196
-.8104469,.51005852,.29403796
-.36153647,.56660721,1.306865
-.76396314,1.005191,1.469739
-1.3587396,1.4751965,.18120859
-.73133824,.35769565,1.1879091
-.96733194,1.0971265,.36480915
-.96304426,.52778453,1.214405
-.57672824,1.0624169,2.5352235
-1.6765757,.70211178,1.8034147
-1.1270399,.27059946,.85422813
-.58797285,.59110906,.55487211
-.57546793,2.4944443,.09081701
-.72930654,1.064254,2.3927571
-1.4536942,.69590949,2.1047952
-.53737999,1.0488126,2.1274452
-1.8382455,.61400918,1.6646288
-.70419368,.21963262,.73911776
-.6484968,1.6733437,2.1314309
-.24527925,1.7830322,.469209
-.7064284,.87360755,.07305234
-2.5912262,.20715094,.97382898
-.40988365,.8219723,1.2927951
-.64964524,.72048761,.45705502
-.29055343,1.9369928,.3001834
-.90909449,.461862,.27690785
-.52074845,1.1344981,1.5228795
-1.1227747,.18026728,.39307398
-.4814742,2.1746228,.40654541
-.51639401,.24161561,.76195035
-.63112513,.06653668,1.6708561
-.82570093,.24267414,1.4267004
-.73860601,1.2539007,.13913022
-1.545225,.45435372,.76504118
-.49808557,2.2730421,1.095458
-.65976766,.23916754,.75820967
-.64304559,.14084352,1.792861
-1.215111,.76705175,.91381009
-.71103343,.29008828,.61320305
-1.1103609,.08388096,.65419725
-.42699817,1.7984129,.30967585
-1.2703262,.21680324,2.3427812
-.52302109,.81757663,.75250684
-.94528772,.50087478,1.0588005
-1.3554885,.72727404,1.0684679
-2.4318249,.16950264,.58793708
-.43325683,.70352992,.47423972
-.56019182,.35226009,.10330763
-1.393364,.14001145,.86140078
-.74004381,1.656956,.5108713
-.65525022,1.3398892,.86205722
-.59728873,.16532253,1.3692373
-1.0053161,1.2283574,2.9015054
-.45800133,.46925924,.84386855
-1.2899571,.77499441,.71216936
-.82881542,1.1997426,.54705682
-2.8239935,.48642115,.7184576
-1.513378,1.6873919,1.3630771
-.55224575,.1227289,.05258752
-.41609444,.17417682,1.1205945
-.50622445,.28572542,.86351736
-.67574536,.28787441,1.0065476
-1.1626195,2.264564,1.3314788
-.4715342,1.2073902,.66055593
-.95470734,3.0247883,.67563624
-.65992668,1.6367446,.73959253
-1.2793163,.01087424,.51483606
-2.5784257,.00581467,.01083961
-1.6189568,1.0321783,.68868241
-.89707796,1.0850309,.92301688
-.36502727,.51138322,.7036179
-.36997398,2.3487908,.16495375
-.41689644,.6585227,.88957132
-2.7539506,.06521226,1.7059317
-.55573746,.54907224,.13982561
-.18061739,.84781652,.93611241
-1.6641777,.499431,1.3092734
-.35278751,.57651815,1.0119272
-.59807236,.88973043,.4350639
-.63565976,.31878024,1.3253507
-1.4117456,.33280599,2.0118877
-.81646367,.01228718,.44656631
-.90303739,.37409603,.36304282
-.81444977,.09512215,.30539456
-.5251853,2.6059488,.10417278
-.77204809,1.1420603,.42185075
-.51204033,2.0120207,.39024692
-.37638067,.75815657,.15008602
-.74007747,.045499,.26249203
-1.0814558,1.2164959,.56017876
-.61026468,2.344435,.31413798
-.62534415,.40545678,2.1869832
-.55064866,.44533908,1.4029645
-1.7203311,1.1993202,.62260683
-.84309656,.27026306,.06286714
-1.0772294,.32459536,1.394755
-.91038397,1.3090766,.64131183
-1.0642038,.05709412,.11101748
-1.2421132,.00821117,.07517735
-.83959237,.41461895,1.3254976
-1.7728028,.32652503,.26905768
-1.5030977,.84641326,.84250672
-.62443163,.57636287,.19252195
-1.4436235,.33821712,2.3702268
-1.1430192,.53883942,.49917802
-.73017003,.78237052,1.1692052
-1.344664,.76040407,.63926436
-.73339671,.54497274,.79262936
-.72705709,.37191143,.41216697
-.53735249,.55446697,1.0258147
-1.7463525,1.700656,.90108205
-.83494284,.80668944,.23233376
-1.5290495,1.0912702,.09644223
-.99281497,1.5591578,.76541621
-1.0535373,.53477214,.08660568
-1.4620768,1.3479926,1.2819263
-.58994768,1.4038182,.06315733
-.35311487,.24857519,1.1155284
-.39066202,.77402916,.89794701
-.46964926,1.3495861,.34954425
-.94365044,.23648416,.22759951
-.64196271,.03469216,1.0385891
-.39661288,.51162683,.28044278
-.72553298,.44136943,.58267424
-.96583767,.54776875,1.3961668
-.67828152,.45221403,.56761279
-.59606836,1.1059617,.64033674
-.81864072,1.372014,.39977879
-.73581855,1.5486431,.44956128
-.83989363,.03051059,.56944737
-1.0025109,.01675999,.42654578
-1.2593511,.04937931,.93416827
-3.4958043,.13176856,1.0593421
-.98116644,1.3072536,1.4564044
-.64846019,.80825264,1.0871915
-1.4024321,.88179462,.01852286
-1.2275377,.04732896,1.1609788
-.3595613,.94923272,.06668363
-.46892822,.27622347,1.1219413
-.50729076,1.9992382,.5458649
-1.4999746,.47285567,.02060174
-.64892799,.66761759,.4864606
-1.1263432,1.0815918,.14643384
-1.219739,2.0836788,.93997999
-.63716777,.25592879,.34916946
-.29804402,.55762621,.22130605
-.27710978,1.8336306,1.7133213
-1.4769027,.36207272,.46661507
-1.3158693,.4464497,.10638109
-.66994994,1.1366482,.48925341
-.89906595,.21101949,.89920665
-.62550996,1.6115016,1.0809287
-.46942898,.96736808,.87606501
-2.5656195,1.1956998,.20493489
-.80736015,.52009746,.42895518
-.60708135,.95885522,.61705769
-.93372025,.78224704,1.3185454
-.8383143,.42047029,.58452121
-.92223428,.38803263,.20129255
-1.1222316,.507757,.69448532
-.64498403,1.7150512,.47480682
-.98116592,1.0171323,.68324309
-.51282077,1.0428071,.99185336
-.54999632,.93829113,.58604408
-.45747035,.40469396,.03900327
-2.0267434,.20740262,.53048531
-1.3354163,1.7624826,1.0004481
-.80416896,.19764555,.22374304
-.36893274,1.1464227,.30045822
-2.4138902,.64674746,.70125968
-.70327724,.54752948,1.9706348
-1.7576317,2.8825147,1.474502
-1.6674026,.02732678,1.1930742
-.90843916,1.3806752,.30858234
-1.279131,.671862,.02546716
-.7761549,1.0496359,.08131854
-2.8790826,.21025638,.95195214
-.5824352,.26685338,1.3707871
-.4935384,.43639264,.38086591
-.57030776,1.4143432,.32625267
-.74607684,.19215271,.72848272
-.89354691,.86134435,1.4210157
-1.3649649,.42968782,.03600328
-.64824166,.43114237,.53490206
-1.5989928,1.1485486,.30238267
-.90005089,1.0057829,.67994909
-.456397,1.6718462,1.6414764
-.98288681,.80939758,1.294801
-.50468241,.93864089,1.3154712
-1.9990662,.10439718,1.0737276
-1.2669723,.34730073,.20753127
-.78197495,.65406821,2.2152157
-.49559487,.06654148,.32844566
-1.9798367,.72389361,.62671162
-1.1459788,.17247828,.96600658
-.37466449,.26641212,.57763142
-.43509411,1.8015642,.2120065
-3.2398836,.17086248,2.8685466
-.85862353,1.4823041,.36598423
-.63379358,.07882451,1.335847
-.87805914,.30966551,1.5405354
-1.8713204,.98343079,1.5054611
-.86895578,.67675521,1.9508119
-1.094392,1.2892271,.87825919
-.79191239,.22440972,.1369869
-1.2470746,.73362038,.23661868
-1.3119906,1.230764,.19084529
-.58399684,.10745158,.45966534
-1.3343151,1.4881376,.80330193
-.83403412,1.9983426,.12372391
-.30600406,.64854233,1.5714518
-.65505509,.7025437,.02934561
-.58160047,.14193853,.99121375
-1.2011906,2.2023727,.06500649
-.81265882,.26048351,.15813488
-1.3384936,.73869643,.77342049
-.42310455,2.2737388,.18123885
-.98530661,1.9125604,2.1156012
-.68797364,.25507074,.75560514
-.94193203,.03669186,1.0983138
-.63477883,1.285463,.58312792
-1.4960767,.54245096,.10329333
-.74476911,.91207555,1.766486
-.8098164,.39531056,.74773812
-.46092023,.81748075,.64509433
-.92733139,.09151197,.9345227
-.65377655,.26345472,.44197043
-.69453993,.1336625,1.0746929
-1.1601978,.88471185,1.235838
-.73502017,1.2476439,.05453179
-.48161502,1.5826541,.63802303
-1.64479,.20960467,.26160066
-1.2233733,.32945333,1.542933
-.59015595,.72625343,.29699278
-.66133737,.16270576,.52592673
-.42663267,1.1058772,.65036374
-.67286729,.14235616,.37566508
-.8280353,.17517072,.65098221
-.610291,.45536976,1.4524045
-.51246787,.62508519,.64885631
-1.110299,.80130038,.93350293
-1.2598047,.44717734,.46318254
-.52527844,1.3182964,.98816939
-1.3170878,.29295408,1.1409488
-.59886539,1.4034396,.24602785
-1.3096824,.1029524,.87116834
-1.0742662,1.2246572,2.5132872
-.54587541,.75883995,1.4929834
-.32411094,1.5932248,1.1509558
-.58207041,2.2374796,1.1412954
-.82646795,1.2923571,.65824841
-1.3969509,1.0962041,1.6240213
-1.1950676,.81679793,1.75696
-1.2117038,.74266788,.14947476
-.74951761,.3056412,1.9081061
-.3815647,1.4840809,.28695085
-1.7985347,.58036955,.01275122
-1.2508774,.98480185,2.9870219
-.68417264,1.3458628,.01950065
-.6597072,.15278334,1.612328
-1.2221245,1.3168778,1.7353783
-1.001011,.06032347,.12809883
-2.1420901,.16817689,1.7884619
-1.2389385,.51556678,.45119934
-.96176632,.09064157,.10018164
-1.1348713,.36129467,.20316719
-.83441196,1.0992644,.54757303
-.93267649,.95454375,.46300386
-.77078974,1.6179943,.37911394
-1.1128242,1.4010952,.80151364
-.56068446,1.2163256,.13919673
-.26897972,1.2383158,.19045223
-.76884428,.53572258,.40661111
-1.0041175,.17931081,2.0912314
-.59391292,.84937653,1.0074187
-1.7221708,.07343316,.9115745
-1.5143282,.19223214,.25393218
-.35357931,.59291934,.01282394
-.75958037,.214069,.44544894
-.39090979,.73245079,.66858694
-.5026805,1.6822675,.20874505
-.31896652,1.9115295,1.0859778
-.53599253,.66214803,1.6160918
-.80140216,.62293134,1.2492768
-.39348732,.42617522,.38851735
-2.1593273,.56806405,2.1464822
-.55947109,1.0859484,.16556623
-.63742582,1.33873,.34679981
-.59032908,.06312213,.68705046
-.74517297,1.9875185,.00332085
-.42361574,2.5224975,.70741737
-.99299124,.20018002,.67418878
-.458443,1.3070984,.27607243
-.9860351,.26072717,2.2716331
-1.2541498,.26552463,.2924726
-.54225273,.16770613,1.4660571
-.56422161,1.7780589,1.0159864
-1.3530072,1.0946024,1.124013
-.94566275,1.4726896,.47542468
-1.2368618,.50440727,1.5744463
-1.2111245,.30547233,.71244234
-.60083616,1.4984649,1.7783506
-1.1012918,.13130562,.90073099
-.79734986,1.2611662,1.9196574
-.66545881,.47048212,1.0995655
-.76907128,.60708688,.63595577
-1.0037091,1.7641145,.29692962
-.83076334,1.2852101,.8784542
-1.6097491,1.2915433,1.5040879
-1.2550993,.85616003,.43958622
-1.4656746,.6138953,.90553208
-.60053081,.32585133,.58237208
-1.0852995,1.4978361,.38984939
-1.1411494,.38727493,.51843858
-.71672177,.20805375,1.4506061
-1.8926013,.05871985,.29160878
-.82075028,.22355189,.3777171
-1.4811764,1.7091625,.81460893
-2.1104137,.76594269,2.6815656
-1.3689939,1.1177835,1.4022721
-.93925332,.73473595,.77620858
-1.8540243,.32991506,1.6440733
-.41744695,.81176824,.72076741
-1.0566408,.19565031,.99667984
-.81694093,.37048833,.88333974
-.31184563,.25326182,1.8787557
-1.4204189,.08343609,1.4709844
-.57592912,.70017395,1.1943197
-.66494757,.17694721,.27261418
-.51356669,1.8007978,1.245002
-.86872776,.45119351,.17581102
-.53610627,.18261016,1.0356878
-.52391556,1.5063021,1.1445692
-.79212353,.32033684,1.166105
-.56324207,.97135966,.19647746
-1.6650311,.59188726,.36960333
-1.4655017,.88011655,.86061587
-.65860423,.88950643,.85092356
-.93246498,.73152121,.3112409
-1.5936414,.38481048,1.8680891
-.59458007,2.0509137,1.8256121
-1.2930177,1.5431976,1.9899946
-.46958194,1.3572171,2.0816552
-.5848394,.18838276,.57673487
-.34502269,1.9138784,.48160466
-1.2440505,.00364908,.23436195
-1.1076447,.310529,.50120539
-1.1456412,.0363895,.00753203
-.76416997,.83114547,1.6300672
-.93957207,1.9639054,.75466265
-.91377319,.29845256,1.5315575
-.65750003,1.0415112,.53907885
-1.0514144,.6041622,.34113087
-1.0477843,.00876135,1.3678537
-1.3623551,.42339652,.48773309
-1.8140417,1.2202117,1.2485779
-.55993061,.17788152,1.7187185
-1.6005543,1.1928594,.28333118
-.57378723,.54392049,.03767954
-.92989784,.15554217,.62942483
-.51626552,.95259563,1.6568065
-.74578726,1.4251771,.95145435
-.32669479,1.9129023,1.9829131
-1.3452257,1.0162313,1.1938675
-.48151308,1.9031697,.43532992
-.58903959,1.6278141,1.0855526
-.87253786,.06456974,.10096787
-1.0682631,.12407726,2.4669878
-.73238298,.68159633,.76540842
-1.1021369,1.5821852,1.1653346
-.48894509,1.335285,.7533569
-.98463305,.43349568,2.1224996
-1.1143399,.02988768,1.2657578
-.76431265,.61057087,.32396442
-.74277336,1.461508,1.3563629
-.73355491,.70144162,.61831702
-1.5342156,3.1249903,.24711755
-.42293355,.75905602,.01950412
-1.3104457,.70577525,.0002263
-.49971031,1.9972798,.46297493
-1.3688063,.72088886,.37885758
-1.5184376,.87028992,.93031772
-.49746406,.08253417,.10830526
-.54869677,2.0690389,.24153687
-.81262419,.10733031,.41876122
-.46373294,.47301149,.81096903
-.24763614,1.2482717,1.3514701
-.80276358,.82849492,.1177264
-.83075343,.43140062,.98095463
-2.296558,.1834261,1.5384931
-1.1626005,.51838353,1.3228342
-1.787205,.22057475,1.7472692
-.92106937,.00372581,.54771756
-.92249576,.22878895,.52025502
-.52672032,.63354398,1.0139729
-1.0451274,1.7578383,1.8347557
-.67744137,1.2244403,.83636236
-.60376932,.13186044,.37287214
-1.9441958,.46605706,.01654511
-.41661282,1.2431768,.32864437
-.99635467,.76831279,.61675207
-.71935359,.39711463,.20677664
-.46388735,2.1431608,.43356217
-1.7565025,1.6185272,.90536757
-1.0427044,.60020634,1.1057876
-1.0624657,1.7753939,.42925051
-.63379398,1.4989031,.23205591
-.50927866,.38424088,.06589911
-1.1378958,.43663759,.3927621
-1.0205408,.23904504,.3971942
-.19537937,.33636415,.15359368
-.489385,1.2253187,.35409263
-.8639452,.00898304,1.4170171
-1.1016575,.34028268,2.421332
-.53402728,1.2386121,.09540179
-1.0025116,1.0781369,.03356563
-1.583734,.0450583,.07833013
-.63263264,.11960774,.40052138
-1.2174356,1.1022769,.36234227
-.68243602,.80017556,1.3084544
-.71569327,.12021411,.3012327
-2.0298905,.70298416,2.4360897
-.31800226,.59552842,.35762967
-.89913513,.48714456,.14489822
-.68854511,.62673783,.06859655
-.81633111,1.9807548,1.9936032
-.98111427,.17153292,.22840942
-1.2708788,1.8171087,.3615658
-.98322936,.97842936,1.8253055
-.79831294,.67110776,.5411116
-1.4602641,.14153634,2.0845241
-1.3425285,.79410783,.56125154
-1.052965,1.0817798,1.0682995
-1.804407,1.1161157,2.6107024
-.54962016,1.8523353,.49490548
-1.0492214,.17996045,1.1374429
-1.5503105,1.6577982,2.3177995
-2.0910127,.52714917,.75515206
-2.2635059,.78704591,1.3500011
-1.3890783,.47372732,2.0797019
-1.1610026,1.3224189,1.2073957
-.91803147,1.0484525,.8723979
-1.9827664,.96482284,1.0000006
-1.3307215,.37322821,.27079916
-.99449811,.46794597,.14664153
-.74684641,.4805025,1.4138008
-.55945367,.46631077,.41872557
-1.5967415,.63220853,1.6475711
-1.1833829,.27417743,.16630114
-.8937789,.46191896,.72689022
-1.8046963,.30128452,.56692556
-.38038524,.19828854,.07200768
-.99918473,.90216524,.09698675
-.63532145,.8484269,.39683803
-.64788598,.76420117,1.1312125
-.94027151,1.0086864,.35759573
-1.0920109,.15136809,.22020807
-.6800344,.08846542,.16532426
-.75198818,.54838225,.15574316
-.55146416,.15328807,.58116672
-.69352589,.23276937,.35749237
-.6951792,.93810654,1.7293432
-.26161037,1.597815,1.0300468
-.41379409,.39687655,.49975705
-.40431839,.66476388,.20230636
-.61173424,.88621793,.54883969
-.90971831,.34250936,.80367904
-.56408823,.18983422,1.2261381
-1.0329707,.37501839,1.1171379
-.79810272,1.4048329,.46671934
-.50157181,1.1793511,1.3851933
-1.2798594,.43887131,.95358544
-1.4880858,.2585804,.10738798
-.74257912,.74503969,.26425311
-3.9986607,.03603427,1.6592708
-.85565398,.54309272,.35690496
-1.0549578,1.5147828,.58429285
-.96181175,.69749502,.87831152
-1.4501329,2.19826,.25603587
-.9261832,1.6832923,.37126674
-1.3276619,.57765052,.68486532
-.37420084,.25648433,.07510996
-.70510762,.42449241,1.1349386
-.51153433,.81046266,.28439064
-1.2671305,.5973786,1.4793553
-.64345604,1.1701469,1.9238029
-.74992077,.07857721,.0136137
-.71015311,.21236401,.07316321
-.75788919,1.9090836,.98071235
-.30185817,1.5173074,.13904485
-1.5488582,.13042907,.13318858
-.38271732,1.7544739,.04238311
-.74689489,.63386084,.38826918
-1.5542573,.66350565,1.8414737
-.75248465,1.4020145,.282352
-.28557554,1.3763644,.34698597
-.95950907,.90998449,.84035339
-1.7227137,1.0858355,1.6314018
-1.1530856,.44155068,.9439467
-1.462445,1.1981925,.40072794
-.38854704,1.0505491,.86756309
-.3168568,.47564213,.16826999
-.6088783,1.0292785,.09300577
-1.8487006,.35660577,1.0092455
-2.2374449,.12489157,2.1842515
-.90753801,.59530658,.72919519
-.54568312,.11617841,.62691097
-1.109227,.05513408,.16628238
-.95134986,.69713183,1.0270921
-2.2368921,.69907812,.78761712
-.90286508,.13008882,1.4274733
-.77561525,1.4568803,.50649163
-1.8023654,.37048826,1.1515994
-1.3491406,2.4030923,.37252103
-1.1166927,.1095541,2.1863433
-1.4410181,.52829315,.60170137
-.6325816,1.9472601,1.0241222
-.9021938,.5364375,2.9860231
-.95512059,.53862919,.60479999
-.83717792,.59024965,.50751797
-.38319787,.79125615,.53448059
-.63238726,.28197407,2.2369676
-.72292013,.02621015,.63903996
-2.5191784,.04674631,.20253521
-.33201516,.89975373,.28579115
-.8042737,.64354354,2.1132185
-.44156672,.01554397,.78340108
-.4789885,2.5684093,.00357527
-.50777105,1.5030451,.02466863
-.46903137,.50942101,.29529995
-.93809897,.52643607,.04411137
-1.3547893,1.2766806,1.888115
-1.0261491,1.2032952,.13324676
-.85166214,1.2723142,.21943478
-1.2950874,.59784804,2.2379904
-.59468973,.72168262,.59739883
-1.5362652,.11879524,1.2915649
-.80822995,1.3613275,.88294014
-2.6691472,.64780201,1.2940826
-1.3042522,1.3623633,.41796089
-1.4396539,.49318823,1.0951222
-.72375657,.60586671,.64106571
-1.1652461,.32901803,.1714425
-1.5356141,.27794057,1.4184096
-.63581543,1.2184284,.13929298
-.95753863,1.1817838,.74912466
-.77214247,.73999512,.002398
-1.0184344,.93239911,.606403
-.59239461,.54458441,1.6249764
-.47546554,1.4492288,1.0946039
-.55148488,1.1393485,.26860531
-.72631796,.36647794,1.1895297
-.4001053,1.7447614,.12346476
-2.140851,.04032776,1.3940424
-.64722633,1.2287155,.26865315
-2.2380715,.09763233,.29253289
-.6404729,.20169868,1.0763423
-1.4267187,1.0152764,2.7092706
-.784669,.74184415,2.1026116
-.62999426,.9669279,1.9952419
-1.2181432,.80494712,1.3198743
-.92288033,.55037896,.28518526
-.48360364,1.2049007,.44182882
-1.4549717,.57664848,.99945222
-1.0965007,.93004196,2.1995239
-.87542508,.5081142,.02368834
-.52632783,2.0752735,.92240883
-.40276618,2.0335044,.11509733
-.32717798,.67759931,.24053149
-.65737768,.42686169,1.1619671
-.69538388,.56387804,.79734517
-.85767953,.29338661,1.4385014
-1.3220005,.39732894,1.6330407
-.39178637,.20294422,.64803941
-.47049905,1.1258958,.31599045
-.78877065,.27917956,1.3353008
-2.0061291,.09822792,1.050817
-.80625758,.40138876,1.0823648
-1.3768147,.82242418,.5244455
-.71560222,2.2139381,1.3014376
-.7539811,.98032094,1.2908627
-1.4737934,.83136296,2.0042762
-.925306,.5833758,1.1835223
-.52326006,1.7217322,.25668487
-1.0150543,.29132715,.49944728
-1.3575969,.8814103,1.5799528
-.80151581,.22503984,.52322282
-.79858666,.55811799,.69217982
-1.2162792,.91475085,.07420068
-2.2958627,.26818643,.37402163
-.79441913,.1444569,1.1711592
-1.5798826,.90900826,.15828086
-.54087903,.68140907,1.5597648
-.82505196,.12518507,.5161439
-.58931369,1.2981088,.5714202
-.96180903,.21066198,.00595342
-1.123696,1.4769279,.75574653
-.56838836,.6386693,1.3238423
-.90669017,.70298278,2.2449799
-.84887451,.32574312,.21767976
-1.5630489,.07775615,1.107803
-.58601637,.24913679,.61264751
-.29041163,2.1471822,.45791757
-.68345331,1.1558114,.44793635
-.42831226,.59553346,.7067905
-1.6259933,.73756109,1.8887364
-2.0259678,.16737519,.97919078
-.48937052,.35684802,.06641625
-.72831633,.50498794,.44576538
-1.9218344,.42325121,1.1159769
-.73670956,1.2156204,.65879327
-1.8991322,.09974941,.7207959
-.71169562,1.1134192,1.920988
-.88198922,.19203549,.2846151
-.63389794,.56286403,1.7680898
-.81656022,1.4071404,.48266344
-1.1586242,.57556494,.28166724
-.9847077,1.1742313,.8633733
-.94675307,.98208739,1.0879273
-1.0908559,.73408224,.13634308
-1.0496163,.7171714,.20970955
-2.3038042,1.4778683,.5123316
-.56523119,.76721902,.30706862
-.75975816,.78917072,.88969108
-.70700939,.62814311,.60195333
-.61909798,.05409055,.8182851
-.70284301,.81222636,.21536025
-.42451404,.19708128,1.0402306
-1.9338921,1.1594442,.64727783
-1.0960791,.0579815,.02915473
-.83235981,.67609631,1.1478557
-.2982037,1.9928084,.45580891
-1.5989932,.39240484,.77825024
-.4838787,.57724742,.76395339
-.92021991,.48970721,1.3984136
-.63603813,.18753426,.2462641
-1.0231435,.14461617,.46205995
-.4678192,.37519199,.60639159
-1.1852883,.31199118,.75988309
-.92077585,.24202127,1.1371746
-.3937555,2.4782771,.10706466
-.49350559,.60264437,.20388018
-.49430013,1.7213759,.36637217
-2.685083,.38080658,2.1720328
-.67232012,.7785405,1.8123802
-.41331295,1.3035764,.03970415
-.66569412,2.0998075,1.3630631
-.90399755,.52214477,.48201485
-2.0541913,.58992872,.4429014
-.93647426,.32355438,.04460409
-.92593293,1.2897212,1.7846262
-.62134333,1.7373439,.45449645
-.60660669,1.9766513,.02080713
-.94586454,.94994969,.12704785
-.54477804,.03438963,.84328057
-2.0558834,.58109781,1.3277336
-.27280029,.9691874,.63371097
-.5796599,2.224924,1.1676708
-.34384947,1.7667801,.90010257
-1.087972,1.3142489,.26718278
-.96200422,.24401685,1.0363619
-.33514596,1.4670437,.83599092
-1.3646771,.19022008,.94937605
-1.016129,.41896094,3.5123283
-1.132367,1.0515597,2.0754755
-.27148211,1.8777469,.1247024
-1.5710536,1.0564122,1.0975556
-1.0562888,.32947867,.57602521
-.36592855,.40220347,1.3495425
-.79937409,1.2494332,.84230189
-.7449873,.68814196,.03250438
-.8007497,1.3520108,.38940603
-.7238244,.49254242,1.0982233
-.72569725,.25460129,1.0227809
-.5059654,2.9425303,.8924649
-.95905198,1.6937621,1.7118508
-1.0386422,.42519668,1.3763511
-.74356325,.35570447,.54323835
-1.7621065,1.1802796,.05672815
-1.4290439,.48729115,.56642153
-.59580332,1.6335423,.19504977
-1.62032,.05145587,.05505265
-.84223485,.44594387,.80966555
-1.1002078,1.1411236,.6861441
-1.0668829,.56715925,1.1824324
-.5466867,.95467049,1.9759948
-.8262092,.35649578,1.0603225
-.7233776,.01475469,1.0861943
-.58611647,1.1310883,1.548111
-.85374151,.50520318,.68483738
-1.3842757,.1004451,.99225933
-.868603,.06881575,.17522551
-.54179558,.56235687,.50881698
-1.0003113,.44795042,.9789422
-1.9955633,.52613088,.22924974
-.95141506,.9284424,2.8626514
-1.5189673,.33447931,.44002103
-.91553989,.11064095,.92171988
-.61302979,.41116767,1.7801427
-1.6581768,1.0445033,.20358584
-.98532543,.25124881,.28761507
-.78560596,.53634072,1.5593055
-.54207082,1.6143496,.45304172
-1.4284734,.87308502,.54440114
-.5318752,1.568972,.68134018
-.35713559,.21288785,1.251447
-1.523858,1.201532,1.6714824
-1.6073299,1.8079028,.23258898
-.86095805,.52139593,.55357847
-1.0011523,.980647,.08048348
-1.0927603,1.0609031,1.5435432
-.56112971,.31212326,.89035426
-1.4707607,.55526556,.43878836
-.65041484,.67407058,.12314874
-.55519864,1.6004775,1.0746642
-1.009162,.91897256,1.481234
-.47780571,.29366762,.02575353
-.86407612,1.0333402,.2947585
-.71698696,1.2642905,.38724453
-1.3484813,.43831806,.96918395
-.57144404,.72634007,.59935574
-1.0038484,1.2486228,.74518209
-.89167152,1.260276,1.1266412
-.62942854,2.2697483,2.4005101
-1.3055154,.42816253,1.1549644
-.55454885,.75833677,.73748695
-.53406361,.57717727,.23371731
-.61410935,.93609268,1.0710484
-.77339424,1.469473,.88807411
-.69793959,1.9537474,.08168566
-1.3608811,.00172221,.21128191
-.32984013,1.4584781,.15390472
-.82345982,1.1354082,1.5607559
-.26243252,.90201057,1.3523424
-.76674158,.36155717,.30728165
-.98660531,.25811249,.80727499
-.89210389,.94006019,.14103671
-.66311578,.62924087,.32767935
-1.0020185,.50272836,.62917575
-.75716727,.01571572,.29425813
-.82046578,.94955052,.21813826
-.37161564,2.5555797,.99915436
-.76252585,1.1778122,1.0167331
-1.1114003,.05246131,.77353996
-.56039856,1.0794448,.48911859
-1.2029235,1.2334308,.41567598
-.33450592,.85789476,.82901084
-1.4845661,.34344892,.21302226
-.33291452,2.023685,1.0124414
-.47995763,1.6235894,1.2258477
-.32948303,.83212576,1.0423016
-1.6070581,.01543011,.2983218
-.20087837,.62997333,.2820715
-.90457295,.1223539,.75720676
-1.064245,.54678998,.52311684
-.61798555,.33995938,.07081282
-1.7418432,.16061103,1.2255896
-.78501419,.14103104,.33995339
-.57554562,1.5775726,1.4322372
-.71384953,.0786898,1.1557401
-.91876368,.41353856,.63450039
-.64226714,1.0738739,1.0380593
-.77486662,.68754103,1.1705141
-1.097164,.78676931,.35154659
-.71184683,.00350671,.13527318
-.7688974,1.1398561,.48617607
-1.6582173,.47212353,.55116485
-1.0024303,1.7803977,.88493162
-.93830933,1.320643,.45378799
-.40398897,.69906708,.02032839
-.71972722,.91150101,.68885512
-1.1368656,1.3525211,.19037729
-.75279557,.37543529,.8647139
-.51830944,1.5806756,1.4747212
-.66056783,.54246735,.65982041
-3.5734887,.06056354,1.4546866
-.57535762,1.4020288,.29388051
-.76773426,.56641943,.29080257
-1.5546747,.5521293,.64788768
-.67138868,.19204903,1.9949916
-1.376377,.49826664,.10370926
-.7295906,.07294641,1.0578065
-.6834783,.02366408,.94581165
-.85952917,1.2383808,.08598484
-1.2227814,.71011603,.62070776
-.33632105,.64919035,.80285624
-2.5308447,1.2803957,.30706017
-.64913392,1.049801,1.1715313
-2.0514787,.1399035,2.1842527
-.71930628,.92192955,1.9402155
-1.3049644,.03516973,.34514034
-1.2259528,.42617342,1.1261932
-.35823134,1.5703332,.9538068
-.61632838,.60231319,1.9178376
-.97724822,.99519613,.2507355
-.9237506,.6323579,.69262837
-.63881689,3.2683319,2.395281
-.61133954,.37170229,.1175938
-.83725655,1.2967729,1.2595073
-.45329288,2.0606931,.74088684
-1.640272,.37796164,.42958567
-1.0629115,.22778677,.85053498
-1.4809599,.11384427,2.0899556
-.98142165,.63561781,.93124233
-.64924465,.32063665,.58245648
-.67110166,1.6955971,.46439842
-1.5142303,.0412434,1.1391194
-.80527852,1.8941945,.49784124
-.88293837,.72216445,.64803487
-.84022363,.88196786,.36266557
-.9069376,.0294121,.29562335
-.83044608,1.2630937,.36255994
-.39206554,.35557191,1.5253905
-1.0867431,.39532098,1.1362874
-.56287558,.18569215,.06669859
-.57763553,.82321689,.56937484
-1.5904805,2.3049359,.51249377
-2.8772199,.03830335,.40203723
-.69106248,.29124117,.91047212
-.80622661,.93577676,.73342899
-.57046628,.96077097,1.4710608
-.66332878,.79373915,.37598856
-.93875471,1.0762463,.74837259
-1.5875087,.7193543,.40390013
-1.3245143,.30751547,.3848864
-2.1569713,.04573602,1.3104742
-1.52536,.17717863,.7021938
-.51535201,.94507615,.69990728
-2.3845463,1.3089046,1.702817
-.67443077,.3929961,.09203278
-.60939595,.63538385,.57612567
-.63469217,.36830374,.33088502
-.6724504,.35814635,.1375726
-.91831477,.74201982,.75556462
-.9027765,1.1845388,3.4576258
-1.0468416,.76347982,1.6553259
-.28745016,1.9287677,1.2643796
-1.2203174,1.4558198,.34868503
-.72142087,.35820294,.70440216
-.68985553,.09871565,.30708528
-.51549713,1.0981749,.21722969
-.4644785,.85546125,.11454018
-.60006813,.00140088,.15133141
-.72568845,.45242625,.07935522
-.50508897,.95822767,.25392335
-.47727861,1.1647129,.11636062
-.67760857,2.3995211,1.7170776
-1.0057219,.04946626,.68401252
-1.4484117,.23523756,2.5830179
-.88128899,.802208,.60444199
-.69683584,2.5648962,.28683924
-1.06561,.41315145,.2044611
-.57584041,.20085167,.14061208
-.9435554,1.090929,1.1030998
-.88203026,.93936625,.35519893
-1.1271193,.22183983,.50199017
-.66036949,.09844351,.13007565
-.575272,1.1834435,.18401349
-.69656773,.95610126,.70714932
-1.3420778,.0908619,2.0325897
-.63187931,.81412686,.70567224
-1.0787192,1.8943428,.76220867
-1.0728922,2.1607768,.85453251
-.50368564,.57950848,1.7209755
-1.8254278,.18350506,.86947072
-.96712785,.48028936,1.0891257
-1.4228196,.0603218,1.0522965
-.25755114,.25025343,.53204469
-.5151619,.66896436,.93773122
-.50136275,.77113414,1.5027736
-1.7525248,1.3867865,1.0840701
-.86828806,1.5295202,2.2229596
-.75917944,1.7393222,.1350729
-1.1002191,1.6096466,1.9999075
-.229056,2.5535483,.93264338
-1.3693334,1.3336862,.22908764
-.78461327,1.018972,.31056104
-.55732583,3.7058837,.45075997
-1.0219698,1.4389009,1.0004363
-1.2175811,.27658875,1.7888664
-.61873299,1.5965727,.76181519
-.51456733,.78118679,.2087546
-.44958061,.8352795,.58979967
-.92870404,1.1010318,.16065201
-1.7317073,.79568363,.52531337
-1.2519079,1.1710661,.51958391
-.39315117,.75741472,.24447577
-.49656551,2.5165676,.20302189
-.57871277,.62352951,1.3098541
-1.0443922,.36795773,.41726424
-1.7736063,.12995095,.5018244
-1.3182636,.34059361,.45268832
-1.3408278,.44007653,1.8923629
-.81794276,2.0413592,.32327963
-.61575219,.40131803,.53240671
-.52394207,1.1583275,.47841277
-.73619389,.25658234,1.1424387
-1.1343932,.80362172,1.1916695
-.26877964,1.0687756,.38745736
-.49529071,.19398668,.86872343
-1.1253485,.06198675,.57291156
-1.7832497,1.2293809,.85395172
-1.0669685,1.5208343,.35651972
-.61163635,1.8878412,.7354279
-.81065698,.2952614,.19337336
-.68687377,.97732555,.16184261
-.55268673,.84405059,.76119011
-1.4937764,.51275353,.89625004
-1.4223273,.62037001,.73899353
-1.9735044,.99129763,.06198076
-1.7089727,1.3920793,.26726306
-1.4782273,.21373493,.59907415
-.86288201,.76259931,.90584802
-.70989257,.55664737,.90441232
-.76991898,.30618172,1.4246803
-.53880874,1.0753368,1.5722511
-.94684642,.03694038,.55335873
-1.5834193,.04260117,.64751107
-.55836404,1.2660956,.84234629
-.95544078,.15439925,.21763776
-1.089424,.53992145,.44391855
-.50861911,.20490062,2.2705518
-1.4591059,.49978233,1.0537308
-1.0343263,1.1245334,2.038758
-.38054377,.93101655,.03900564
-.59608276,.69311675,1.2185883
-.8669984,1.1384887,.73123043
-.6518677,1.2283866,.33913146
-.39294786,1.0658194,.4530377
-.60585163,1.0053731,.19114972
-.27756601,.14991487,.04140283
-.64085837,.20407529,.03877341
-1.1367845,.27375972,.87840947
-1.3597192,2.3547834,2.1558136
-.67523,1.5342532,.79098798
-.84521071,1.4082381,1.087044
-.70388053,.42122611,1.4144227
-.89932067,1.5063146,.49872029
-.93467455,.30170463,.10721941
-.59422117,.95265281,.75118205
-.9189371,1.0988059,.93591028
-.893457,.30835542,.95722283
-.73045739,1.0386272,.26387613
-1.1369733,.08942444,.10133989
-1.008201,.54505942,.87799209
-.66429702,.55353075,2.1620162
-1.5903169,.79404774,.35840569
-.63325846,.27527599,.84235839
-.33071545,2.576386,.42884773
-1.2735033,.20942585,1.9834233
-.74667651,1.9538103,.54992063
-.951852,1.3435194,1.3397855
-1.4239015,.39833392,.11958316
-.5247817,1.9090789,.5291191
-.91761252,.58578042,1.1360626
-.59718246,.82627341,.84709337
-.70184994,1.9354554,.15554921
-.61636433,.51156806,.28728822
-1.1629085,2.4358509,1.3532112
-.67795413,2.4524616,.05155405
-1.0414902,.29389609,1.6658115
-.71645893,.81464155,.371492
-1.0382044,1.4774884,1.0063664
-.70543488,.65103229,.60317547
-.57226456,.93419845,1.1263369
-.69524175,.41895909,1.0063672
-.6837145,1.002253,.96139436
-1.4897435,.38234074,.8622629
-.41902246,.47603539,.68311933
-.5158577,.9618899,.58655786
-.69364979,.62972853,.80004758
-.35493308,.69228109,.08457458
-.62046031,.06017234,.55322688
-1.153889,.42615341,1.5890869
-.70849265,.84720923,.41636334
-.68630382,1.1832883,.42424147
-.95137478,1.045479,1.0818447
-1.0447267,.93628497,1.8712036
-.43234559,.88809372,.02824804
-1.7468872,1.0919874,.28068319
-.45105574,.94586894,.95649918
-.50360418,.01129948,.28772975
-.66796707,1.2525573,.62715932
-.59102603,.76645449,2.4411517
-.55429793,1.4362549,1.8519583
-.6822185,2.3916556,.62752051
-.67848811,.18883784,.40310134
-2.0452971,.7955603,.49564255
-.39229813,.6153164,.06737944
-1.497548,.16445776,.38918663
-.36290332,.84000359,.17939696
-1.2229307,.81436095,.49880041
-.875607,.36563027,.20466429
-.89712937,.64376464,.3988171
-1.1030703,1.1330481,.95951737
-.5042245,1.4626328,.3138774
-.81483607,.10290034,.94337301
-1.7460749,.49422707,2.1349629
-.47201147,.56239884,.6024463
-.88809922,1.1243458,.61885308
-.333986,1.9814829,.24114105
-1.5140912,1.1204797,.65238774
-.91746029,.04863687,.11987251
-.53154781,.33179443,.97337321
-.31643974,1.0680351,.67446646
-.65277872,.55168936,1.0467241
-.82504886,.46348183,.55359175
-1.8180262,.45352598,1.7074452
-1.4093359,.18730027,2.270479
-1.6751185,.8591219,.15696459
-.8242954,.30863728,2.2473274
-.78494307,.56572308,.10306254
-1.0046884,1.0081315,1.5298332
-2.0637819,.23050127,.65309705
-.83762307,.65771859,.57150673
-.47893039,.17848423,.4186376
-.32592014,.90345676,.35008521
-1.71176,.02034252,.67094195
-.61411786,1.0763916,1.0063148
-.68161143,.79344504,.42837425
-1.1630079,.31995012,.33222295
-.55887032,1.0643429,.87299881
-.4478608,.23559216,.55265839
-.96173478,.33862118,1.7311233
-.60555887,.88839096,.05004166
-.3956547,.03967719,.5691849
-.53862223,1.1335241,1.1424578
-1.1288963,.71817911,.36769487
-1.1041099,.64731594,1.6915911
-1.3663544,1.2367286,3.2357662
-1.5918459,.52405363,1.2450381
-1.1523505,.79728809,.76368135
-1.2665266,.06296581,.4726912
-1.4229969,1.0228907,.85273662
-1.3666873,.37938628,.80216986
-.81612782,.15178866,.12388163
-1.0279693,.44194038,.11745034
-1.2046929,.77266949,1.344815
-.65058394,.45850867,.7599974
-.57690397,.35559359,1.558769
-.9117866,.17949849,.3374793
-.53742516,.48117544,1.8423542
-.38435,1.2742242,2.2718523
-.54936799,.66026011,.75992842
-1.2274396,.65365302,1.2567505
-.85023267,.75863096,.42037414
-1.2918119,.0883598,.77199239
-1.6769244,.3993352,.12082004
-1.185178,.26776108,1.9116793
-.86294447,.11436163,1.0769743
-.55916506,1.6453619,.96654098
-.39867592,1.6447722,.75295586
-.50922374,.45341559,1.288752
-.79957533,1.2947189,.51944892
-.45484686,.62141717,1.4554974
-1.1485157,1.1688963,.29872297
-.30883222,1.8702957,1.4332391
-.62971138,1.4084315,.67892322
-.74615579,.92283162,.47738381
-1.2072419,.15210796,.57653221
-.32871733,.63581001,.57074747
-.89102892,1.2448101,.36440594
-.76232726,.58934136,.96010176
-.68378777,.96413044,.26017324
-1.1337346,1.1785255,.92230981
-.90776782,1.6344818,.88258702
-2.0182942,.06625374,1.0143804
-.83022869,1.6636112,.39423522
-.54447905,1.0967518,.33353205
-1.1371563,.36430131,.81332046
-1.5414773,.07320302,.5302207
-1.9672404,.177065,1.3577704
-.70001658,1.009277,.68685838
-2.3635256,.20958313,1.9878656
-.63779021,.75400985,.64577644
-.99021019,.85208953,1.6032634
-2.7839807,.18968121,1.4859552
-.57554877,.29655984,1.0258846
-.53549,.76269899,.46892812
-.6852823,.92537345,.56738002
-1.7783756,.13395046,.44348377
-.92802325,1.6579305,1.0938795
-.36333622,1.2272073,1.4272961
-.41460221,1.8054598,.02335763
-.61699384,.50234198,.99692867
-.60099734,.68343842,.00298001
-.95002027,.09757998,.9435455
-.41386216,.94799671,1.4996055
-.65038114,1.0589957,.11813468
-.81036843,.1689983,1.248216
-.66633012,1.7249769,.40395455
-1.071855,.32533584,1.1936184
-1.1125162,.17663135,.91931344
-1.3135206,.02384607,1.1432806
-.37946996,1.8063866,.32064766
-.85791747,1.0618583,1.1620933
-.58309295,.42754381,.25577484
-1.9367829,.61284787,.3488198
-.79116234,.78799556,.15775569
-.54019964,.66027663,.17791565
-1.5402519,.54491889,.31988566
-1.732065,.71057421,.66113484
-1.0136349,.90039585,.60792958
-2.9561684,.28315092,1.2184784
-.71314771,.92479208,.76762739
-.62769023,.53553973,.01882558
-.97007412,.33913434,.24976694
-2.3396174,.60165733,2.4959813
-2.6493553,.18841099,.37552048
-.44804067,.3864972,.61814769
-1.1558653,1.0118386,.10267861
-1.0753648,.17409383,.76969688
-1.6625771,1.1480557,.5457896
-1.9129483,.48548911,2.0165793
-1.0504665,.31638756,.22609714
-1.5411612,1.107047,1.6080012
-1.2691106,1.1880852,1.2770538
-2.2516994,.78555365,.3728826
-.42203819,.1123738,.08946536
-1.2917725,.72569883,.80592371
-1.3952029,.02679487,.4198039
-1.2673574,1.4482183,.77132433
-.60750667,.13719017,.76723359
-.56292759,.18709389,.12968146
-1.075742,.50384033,.90258275
-.85276601,.11419178,.62214436
-.74176812,.66615555,.78706885
-1.750474,.33494191,2.1002348
-.34103181,.8628175,1.3832838
-.649788,.7092009,.24217432
-1.1185684,.54732383,.34362619
-1.694297,.81573013,.18301255
-1.4128546,.0634542,.90057663
-.55071551,.29364872,1.2320653
-.40450443,.84094222,1.0311622
-1.6176521,.1091557,.99529356
-.5751966,.6572608,1.0114806
-1.1031729,.01516509,.85229467
-.50021585,.11893176,.00333646
-.98669073,.35131639,.13137947
-.73774209,.53867432,.52955088
-.66629007,.22317224,2.2593094
-.9193988,.70345745,.57359977
-1.6701089,.5031281,.56046971
-1.0689379,1.1553675,.31813286
-1.2738988,.56885889,.49135274
-.38895068,.89868591,.72970303
-.47218438,.11147264,.72836692
-.58167568,.60776692,1.6862147
-1.2845799,.47944586,.13293809
-.62383907,.00851635,.95027183
-1.4463233,.49239714,.89290561
-.76852702,.28969712,1.4864871
-1.0906392,.29255462,1.939804
-.2928245,.64473093,1.0114772
-1.1425614,1.5958665,1.489617
-.41119711,.47216607,.47560687
-.69399848,.39939039,.33852547
-.96696967,2.3204898,1.9800508
-.55322485,.51123672,.43903276
-2.3541016,.65046576,1.435093
-1.3397421,.7781778,.3706208
-1.2500165,.92629506,.49521631
-.96287573,1.0748054,.89396798
-.95263162,.89818388,1.4182177
-.67825645,1.458391,1.209154
-.92692332,.09970824,.00635723
-.74555426,.83203125,.47455831
-.54452685,.45959003,.029256
-1.7085794,.35990772,2.2486766
-.3289802,.71370752,.71748851
-1.4323712,.20960974,.78704957
-1.2298297,.46007234,1.9960273
-.99455739,1.9805664,1.3059657
-.53614568,.84712274,.92152107
-.74567929,1.3175541,.27434666
-.61836162,.07915087,.02924388
-1.3387086,.49905972,.55528932
-1.5078676,1.8809209,2.7542891
-.81715293,1.0341693,.57307503
-1.126264,.51339055,.40828006
-.6375848,1.3790533,1.2628298
-1.6018267,.45718955,1.0328666
-1.6215336,.43904365,1.8283674
-1.4552374,1.2514342,.35171093
-.42667792,.62157329,.58786762
-.58974267,1.3161049,1.1014376
-.87240039,.87475743,.09117062
-.54657768,.80317902,1.7394645
-.59861329,.99484949,.6167254
-1.6638724,.06705222,.31330232
-.64221117,.65194524,.54854339
-1.9322986,.091035,.62215644
-1.3528389,1.2229191,.19097975
-1.2556165,1.5457609,.54649997
-1.4237792,.6765075,1.9754417
-.83688956,.115692,.61165736
-.61375748,.91316604,1.8066442
-.71397816,.79986935,1.6790012
-.77453449,.39376464,.2908562
-.65955085,1.3856819,.03359866
-.34367415,.43890706,.67490316
-1.3625226,1.2341526,.28302125
-.97162716,.44598295,1.9852536
-2.4680412,1.2416612,.61166281
-.56638638,.94367251,.83607503
-.53426394,.04164651,.80311905
-.52929177,1.1031198,.32777277
-1.4169516,.08877043,1.2450717
-.55887275,.15742308,.5142009
-.43997425,.1006623,1.0903736
-1.6336251,1.2868521,1.4898083
-.97850365,.12652921,.42700462
-1.1579656,.88114,.49571305
-.75376591,.0557829,1.8626103
-.97694904,.53756797,.09165291
-.63887204,.17199106,.8326417
-1.0288456,.06457855,1.9565274
-.62876494,.20921194,.11111305
-.5996113,.71557592,.57840173
-.99283146,.56674964,.4991693
-.74371314,1.8044446,.71565243
-.53421332,1.3297864,.84390347
-.61946146,1.0592952,.42107491
-.829902,.6272501,.56042563
-1.0456942,.40773496,.35069199
-1.9222883,.22707647,1.2938997
-1.2212634,.61864864,.15192223
-.46878876,1.9013738,.91301355
-.62649521,.30009219,1.5276096
-1.3164456,.0831818,1.3170089
-1.3873073,1.1902047,1.0438122
-.92371356,.17433154,.02066471
-.5614122,.7730442,1.0101632
-.92223164,.42405399,.44669345
-.64768733,.2702444,.9064153
-.7475311,.16710119,.14044444
-.79685829,.04485048,1.5867454
-.35913102,1.0562776,.11086502
-1.0739383,.50294763,.27215399
-.51794427,.95714578,.38813221
-.61954084,.91220713,1.7237569
-.791453,1.4344015,.47012971
-.93335523,.27794082,1.2300809
-1.2423641,.33972221,2.0903753
-.99466426,.87175231,.05402196
-1.4975818,.12146423,.20721861
-.88534951,2.1602323,.87548503
-1.1640179,1.0818862,1.6026545
-.68879077,.54635533,.52148027
-.93810605,.60053477,.13966571
-1.0224748,.82053892,.23876446
-.30446812,1.1797508,.32535074
-.54768234,.05652382,.73176893
-.76376992,.16586051,1.4787177
-1.0538931,1.0295658,.17721838
-.65722323,.654378,1.6924623
-1.3894187,.9337013,.61073634
-.93056047,1.0857948,2.2568351
-.44767854,.90506237,.19267337
-.33134992,.79262992,1.4262861
-.38873712,.79919297,.68548203
-1.1405468,.43636757,.79246594
-1.8474332,1.4789687,.76980014
-1.1420875,.59218107,1.4109595
-.50350624,.18202769,1.5118949
-1.8494582,.35510589,.65455441
-.79861408,.83226105,.59625467
-.57816309,1.7858007,.71109474
-1.0656735,1.6275151,.71831259
-.61473101,.72032723,.07738731
-1.5896957,.08159854,1.8243821
-.7485325,.99608297,.30075085
-.32069016,1.5394546,.34261411
-.47605694,1.1300943,.05446452
-.71717774,1.2995646,.8931885
-.42349756,1.1443649,.00035793
-.75845939,.29437471,.86181854
-.92870594,.04193262,1.3998646
-3.0285819,.48315869,2.4587025
-.9691578,.6087959,.10813066
-1.370195,1.0650199,.21602132
-.42970374,.55369961,2.0852818
-.83666566,1.3220012,.43821663
-.57609846,1.106672,1.3361662
-.83190828,.75921345,2.1196068
-.34797603,1.4624997,1.5115744
-.98629352,.73985338,.42121524
-1.2663052,.49505336,.35062748
-.29537393,1.601769,1.3488425
-.66592447,.50445341,.19537848
-1.3334817,.76807218,.1450736
-1.3795647,.46074082,.43548842
-.44316852,1.1686417,.0487711
-.57972257,.22523178,.77445186
-.56567677,1.9476631,.43756152
-.47987114,1.5713379,1.4133197
-1.1816466,.30738951,1.9847293
-1.4616358,.04342972,.41018658
-.65790344,.54882354,.52815928
-.86705334,.49831598,.55314773
-.97068438,.71753837,1.6539479
-1.3606253,.32105468,.26623979
-.74119665,.43590609,1.5435123
-1.8350802,.68378011,1.9485187
-.46087636,1.3651252,.24209397
-.77586385,1.6369332,1.5584012
-.92557428,.90811058,1.0651854
-.77553545,.61692859,.22563568
-2.3559527,.67331326,.61058205
-1.533557,.1594466,1.242968
-.56081132,1.361708,.34589418
-1.4234376,1.0922609,1.8151851
-.69191265,.14143161,.1940292
-.86150841,1.5069458,.05809793
-1.0072419,.52683789,1.6051878
-1.3032639,1.3268041,2.2093874
-1.9726648,.42579246,.43330912
-.35632305,1.8548816,1.6989986
-1.5440735,.68617109,.6235323
-.94220006,.01600238,.71189487
-.91571363,1.2490722,2.7071635
-1.6755221,.51133538,2.3080726
-.72973037,.33844424,.35298842
-.91509353,.222463,.24184973
-.52184158,.68253156,1.3398569
-.33495014,1.0269265,.41485064
-.82915956,.20504136,.34774875
-.4955137,.197391,.5769308
-.35560009,.88063157,.28598357
-.51427722,1.6838424,.14696577
-1.9629583,.94447477,.67399004
-.54594598,1.9753169,.85282731
-.51632566,.48200767,.87821129
-.85137391,.36724233,.54025252
-1.2940666,.33455342,.32563588
-2.0599725,.35029741,.65199064
-.59517685,2.288478,1.0258535
-.97885377,.94989951,.24807916
-1.2692854,.24864817,.15726647
-.6621058,.97702078,.72030741
-1.0017177,.09402649,.14028971
-1.1189075,.77422079,1.4746798
-.80014485,.00352815,1.007536
-1.3660463,.30956827,.63461641
-.95887722,.95805221,.67808518
-1.1282001,.78588015,1.4580675
-1.1382768,.05397583,.74567348
-1.6056318,.86720015,.72598552
-.61344845,1.5903224,.34928313
-1.8915999,.73729312,.4820619
-.51038785,1.6358233,.0175445
-2.4584224,.02868024,.33781832
-.99790672,.30034441,.36063
-1.0349589,.3086924,.25192124
-1.0203885,1.3169301,1.1020425
-.83354492,.98319236,.13800631
-.94105164,.58681298,.23594601
-.97099717,.69117829,1.0218628
-.43032834,.31165255,.27559447
-1.0813596,.161862,.26815178
-.52433248,1.6314825,.60917894
-1.2911347,.31689092,1.230879
-.43471127,.43280337,.44863911
-1.0880369,.30068479,.56523568
-.57236035,.52946627,1.0486344
-1.3653829,.30479248,.77075576
-.66956376,.33860071,.68099411
-.53295124,1.6681086,.07426842
-3.7234647,.54907808,.4182605
-1.2439815,.768297,.41175044
-.94461633,.73390457,.65019327
-1.2512365,1.045564,.97967795
-.90757029,.78929569,.92823698
-.78641622,.10437222,1.0382075
-.61698922,1.3828506,.11036538
-1.4578169,.01757956,.51627516
-.88885106,.31487575,.51802612
-.85835415,.80174068,1.3996179
-1.0760281,.04444569,.06670415
-.91240138,1.3559683,1.4655766
-1.7611674,.14629181,1.0702985
-.23123631,.21502106,.13420706
-1.3687605,.27400524,2.0660024
-.81408448,.62707315,1.2612546
-.83820157,.54414074,2.0003802
-1.2800197,.45234592,.30167979
-.9494134,.46169951,1.2746144
-.42223614,.92106541,.20931335
-.69132383,.16696949,.46819959
-1.7250342,.10768678,.33151925
-.60348274,1.16095,.29583065
-1.0004777,1.4086154,1.0424819
-1.8954856,.84051552,.29391594
-.46233233,1.1044692,.31310165
-.87763586,.73623029,.72512113
-.74779302,1.8344297,1.3895838
-1.8735891,.58113815,1.0063442
-.61616163,.26279363,.65206902
-.83930409,.58121299,.46445388
-1.6649673,1.6635235,.78665881
-.91859213,.19206109,1.4619052
-.73238545,.47000451,.59422724
-.37422217,.15781647,.26662795
-.77312061,.61281195,.52946105
-1.0986912,.46251211,.08244686
-.70361678,.00521995,.55825994
-1.3556752,.05770111,.67096743
-.70284549,.94856683,.32332698
-.35909922,.0189422,.19645042
-1.0367554,2.6296752,1.2619585
-1.5423911,.0778769,1.0779661
-.28620187,1.4028721,.24542367
-.69045517,.17580192,.2467365
-.5095218,1.3690472,.00141397
-.69734502,.12337244,.70891728
-.87239164,1.2988797,1.1232165
-.96145938,1.2414301,.06043973
-.93645432,.8890533,1.0201508
-.60472889,.09726498,.23358652
-.50385028,1.9715672,1.4173581
-.64025638,.01341213,.18320615
-.61739069,.61865956,.43697596
-1.4880261,.2671106,.40005412
-1.1468949,1.8048744,.46158212
-.3629181,1.7530333,1.1569013
-1.4365009,.67608835,.94337614
-.44052903,.20291314,.33991058
-.51279771,.12676285,.72911251
-.84263761,.60080494,1.0780488
-.52323492,.40407247,2.1930158
-1.1625302,.39878552,.18750069
-1.0649743,.26525901,.21905166
-1.0018899,1.5992361,.30206106
-.68311034,1.9109545,.62671208
-.59415219,.76500593,1.0247561
-1.6733325,.14539183,.1883792
-1.0272908,1.3585683,.21774263
-.51945738,.43234228,.95184442
-1.1951357,.692735,.46297884
-.87845455,.72218678,1.2794743
-1.4289297,.43993881,.30355932
-.92613533,.89310456,.63722723
-1.8913443,1.0671697,.39887847
-1.3826017,.57289258,1.189578
-.98971374,1.1050974,2.0356522
-.38767888,1.0986386,.83823303
-1.9789502,.23451471,.13806241
-.71326233,.61238378,.17070926
-.52286509,.78138363,.95976932
-1.1240117,.12251816,.41381639
-.49255286,.6396058,.08219767
-.72785548,.59646646,.05486899
-1.2327067,.0222927,.80911672
-1.5361726,.22647529,1.8403524
-.80471005,.1929731,.25810925
-.87921577,.46834382,1.4034503
-1.7771784,.26525598,.50148105
-.72398178,.95362918,3.0964237
-.9394818,.36697392,.58581114
-.54411931,1.2547299,.53891162
-.89935845,2.0859025,.40616435
-.50279777,1.2400582,.15974611
-1.4892091,1.0199823,.80626439
-.84574928,1.0728358,.58794464
-.67482064,1.315759,.30633782
-.7070303,.41439274,.6615569
-1.0579511,1.0746859,.46001401
-1.7281229,.15800319,.86746627
-1.2578014,1.0445396,.81158354
-.8950673,.29426924,.35005655
-.14370143,1.5116621,.14155645
-.62773323,.17434803,1.1243499
-.36453224,1.316106,1.2811899
-.91968927,.04834591,.61558915
-2.5848017,.3009304,.01728542
-.6058308,.40823374,.64903035
-.64634998,1.6749047,1.1915472
-.60722347,.20952991,.92824934
-.63244023,1.5134139,1.0445992
-1.0897895,2.2552682,2.1634963
-.53904951,.29687146,1.2572573
-.82823144,1.1253736,1.7945595
-1.4425978,.36647511,1.4778808
-.45197127,.20008588,.94036877
-.7267292,.5751171,.32524229
-.41549607,1.4146009,.48113257
-1.2097728,.00278837,.13820105
-.8298993,1.1192043,.08235263
-.56433864,.81287739,.73776068
-1.5115021,.31882804,.10799839
-.48113918,1.8484408,.9439595
-.72137993,.41897826,1.4469675
-1.853952,.89128659,.39877472
-.80390209,.17201894,.57729608
-1.0669638,.12172709,.5863845
-.76350434,.52489291,1.5740128
-.55752945,.30578383,1.457788
-.48696782,1.0576166,.47108689
-.75822457,.28747333,.83592555
-2.3448613,.92216016,.05349141
-.21381787,.06525467,.57413982
-.89696636,.38414593,.0463001
-.30582881,1.0753009,.00508851
-.7105266,1.1602293,.47952796
-3.1132102,.26819615,1.4405612
-1.351475,.12048987,.39235537
-.28543299,1.9959483,1.7431456
-1.7953611,.57429929,1.2447227
-.58044962,1.3652985,1.8456334
-.75239992,.8096771,.40017698
-.54222858,1.004988,.288379
-.62640908,1.295027,.47380377
-.32051229,.90207373,1.1907026
-1.0425069,.372248,.65852469
-.6021585,1.0822581,.08198831
-.98815823,1.0779777,1.0902206
-.53730582,2.2694625,.35662884
-.54307534,.7383042,.62339921
-.41470533,1.5432171,1.5666641
-.97488312,.96537827,.4100672
-1.8553797,.71405455,1.1423409
-.56072411,2.5670682,.07048981
-.68402382,.83700893,.231118
-1.5229728,.74949686,.21726547
-.41910077,1.1827462,.87113345
-.64758709,1.9702204,.20508066
-.65482547,1.1342849,.79801412
-1.1741923,.55130561,.38124038
-.91670263,.74280974,.74820262
-.58328085,1.4367509,.06455467
-.28816673,1.0819977,.82114152
-1.0407263,.52098847,.53039667
-.8686089,.87973304,.63800095
-.93487702,.43033632,.86608479
-2.6424482,.0081984,2.997462
-1.2224952,.12358195,.80030239
-.77102798,.77740131,.43947774
-2.2982262,.10547402,.73621615
-.49924707,2.0463775,.64406167
-.34097361,.90390134,.35460356
-.54359502,.32475422,.64177609
-1.1538894,.83111084,1.8792411
-.68240907,1.9907478,1.0255833
-1.2528865,.42211222,.46544056
-.90523,.16726918,.47796805
-1.444307,1.7358999,.07882832
-1.0361784,1.3449441,1.4074068
-.33591471,2.2964748,.07253514
-.91160494,.10744102,.83859998
-1.5370639,.58557197,.0762728
-.81592108,.09986008,.49834942
-.79428566,.72409251,.62408368
-.88761091,.02658059,.61247037
-.43798781,.16480261,.08351476
-.17278098,1.3852441,.6405435
-1.096142,.30494356,.64287583
-1.5336347,1.6672983,.44496996
-.31480903,1.2317793,.0042782
-.66475979,2.0132047,1.8092656
-.87582264,.90500824,.57221758
-.64283868,1.0868743,1.3331081
-.7573388,1.7515177,2.7617962
-1.0045577,1.0418655,1.1727082
-.86775164,1.4869841,1.7469276
-.53785152,.7059774,.34291224
-.77370104,.53600241,.8857854
-.6136746,1.0076561,1.1546051
-1.8879233,.93844529,.7172341
-1.452637,.25199459,.88966532
-.68985852,.80078755,1.7627798
-.49609111,.79900507,.62361435
-.45862898,1.6224208,.37558803
-1.3828426,.92914397,1.4741377
-1.3505755,.46343107,.37193337
-1.2931308,.85314165,.29151142
-.6879732,.34075658,.61663243
-.93774691,.84396719,2.3646488
-.69342858,1.498051,.49583713
-.91451194,.25307159,.99382847
-.6523744,.32999886,.18381153
-.64577565,.98410697,1.7907964
-1.2601702,.62951295,.25343665
-.48992655,.19313292,.27209089
-1.1983083,1.1814615,.99423189
-.60103603,.45061185,.06243036
-.8125517,.64327769,3.5081535
-.49924812,1.8592098,.31587648
-1.5157634,1.1009984,.61204817
-.6169937,.53968474,.04094677
-.5069729,.89662193,.50727985
-.81850155,1.0918431,.23366324
-.70589672,.45898371,.58952619
-.50033361,.46890492,.28026622
-.35681534,.82840878,1.4641545
-1.1142156,.32707547,.03190551
-1.2236171,.49308964,.66571375
-1.0737957,.61231524,1.5716903
-1.5181532,.73646789,.19715144
-1.2050594,.24040606,2.513091
-.9509335,.04248996,1.2884633
-.67197976,.36131637,.28836733
-.40792932,.37386895,.48591483
-1.5418518,.68799811,.03858285
-.41966569,.04037764,.21817948
-1.0152161,.87167247,1.1615779
-.57994472,.64924548,.51311388
-.83314097,1.5314109,.21004345
-.58779045,1.3003313,.1592612
-.37510459,.34684505,.4527919
-.5372598,1.6791256,1.0846101
-.28528237,2.0741048,.84313619
-.61693225,.72808713,.08908494
-1.7994493,.35116683,.88540365
-.54785579,.17638452,1.9141408
-1.0472336,.00271785,.62922591
-.63875108,1.9858331,.28463958
-1.400274,.72621017,.64808386
-.66633234,1.6048571,2.7353272
-.42132417,.03254361,1.2696874
-.6983008,.67249279,.42366564
-1.185625,1.0436107,.72627347
-.94154802,.51862785,1.2951404
-1.1733774,1.1186427,.87253098
-1.042562,1.1856113,1.6014185
-.57878733,1.0316011,.05867536
-.27752603,.56663141,.1996966
-.54357816,.37075953,.27050615
-.54874068,.27620376,1.0958867
-.43038196,.49604027,1.5988428
-.75383552,.24048882,.9156488
-.62091794,.87699965,1.3293712
-.43222191,.42747292,.76202825
-1.1874139,.92677759,.13137011
-.74716209,1.6763891,.14066208
-.91489166,.43131107,1.347046
-1.0049308,.7663503,.76449471
-1.2915884,.93063557,.67809398
-.46506081,.47331881,1.6166852
-.71656487,.61439812,1.1847002
-.6192585,1.5724235,.14272188
-.49320696,1.7269538,.20838752
-.70477457,2.3279095,.20087782
-.34764889,2.3780574,.94641026
-1.1964493,.06658168,1.4665176
-1.1612058,.05628704,.11913373
-1.2047355,.3937105,1.458182
-.56080449,1.2970779,.45410059
-.77259846,.06709445,.06350539
-.53997456,.72128632,.27591326
-1.0057889,.498694,.41892685
-1.0884453,.17858744,.86136739
-2.7119557,.69841541,1.473465
-.7054217,1.4102155,.9213348
-.6573578,1.709695,1.4055321
-.63950698,.79328959,2.5964235
-.820477,1.3567268,.56091997
-.46817011,.2023678,.1167779
-.50441127,.3263047,.71938098
-1.0244962,1.2966765,1.8892064
-.52880778,.43263532,.64635432
-.5680027,3.1755941,.21080044
-.79991272,2.2387902,.73725361
-.93038841,.51577052,1.0550981
-.56204721,.54391843,2.4442828
-1.6739464,1.1966999,.68999556
-.77721017,.56888841,.61270467
-.97250197,1.0304753,.20153674
-2.085593,.36685672,.16111609
-.86000303,1.9286876,.61599162
-.63691232,.14267351,.44690849
-.54585278,.82972774,.62941405
-.67836786,.72349484,1.1951738
-.99188467,.7552039,.51759963
-.89283532,.78574286,.09321115
-.93010354,1.0460706,1.1719786
-.45549655,.84378014,.84659712
-.90979091,.48104111,.52088113
-.89457222,.18148865,.37945857
-.9523494,1.5073938,1.4960278
-.84356159,1.0693037,1.2374649
-.33673558,.51451333,.73409218
-.74646557,.24515807,.10641223
-.93305191,.72244123,.34683846
-1.1588396,.31628113,.44488578
-1.4803688,.45584114,.82168311
-.81007786,.17925688,.09330761
-.63797107,1.5034945,2.5589226
-1.0958715,.59831951,1.7810305
-.93016484,.60161381,.39580149
-1.6668489,.02920365,.15386246
-.61808281,.12036536,.34262849
-.62713892,.57045875,.17896551
-.55337812,.72181814,.19602995
-1.8087252,.30714603,.38303537
-.39845967,.83644331,.54114343
-1.3914987,.21766005,.95970685
-1.0660254,.0407103,.82790033
-.76903045,.72388325,.85643742
-.67928119,1.7369053,1.1435812
-1.5538702,1.0314416,2.0013128
-.73753719,.57562088,.01727812
-.58929157,.93088261,1.5375628
-1.5519599,.01829348,.26807229
-.91468244,.58047572,.14551378
-.88808138,.88015967,.38961917
-1.0524604,1.8810725,.16563724
-4.0892221,.08707611,1.9307244
-1.3756921,1.8657719,1.734311
-.46275551,1.6522425,.88270944
-.53702336,.25754223,.59333144
-.51584866,.3086278,.39810266
-.31514016,1.9253958,1.0035009
-1.0678556,.05160498,.81134336
-.3563933,1.5772784,.47259076
-1.5498661,1.24846,1.890608
-1.1957198,.62890487,.67380179
-.45106107,.66159668,.27189763
-1.8210394,.48742138,1.1558568
-.96529212,.29539212,1.2359932
-.28418313,1.8792053,1.2795254
-.99952989,1.1920933,.78706266
-.40174007,.10589396,.72744804
-.41052621,2.0238404,1.5429333
-.60425764,.67182511,.94387649
-.55482115,.59385053,.21819288
-.70888211,1.4286143,.76942781
-1.1568846,.76809954,.29318383
-1.0392232,.9227626,.33419266
-1.2753864,.72047767,2.5427855
-1.8469338,.464484,.52437545
-1.035677,.42528471,.72384415
-.40123948,.05263051,.23355298
-.58687577,.54383507,.59465524
-1.2087887,.83539387,1.1141123
-.62835061,.29873186,.27449308
-1.6065419,.35413601,.16012108
-.58827588,.36729113,.61954989
-.65221776,.37816465,.61238969
-1.0912099,1.1611825,1.9642359
-.76904185,.58909222,1.5928328
-.36619748,1.3352878,1.2624404
-1.0353451,.69588566,.31914574
-.42366235,.22657311,1.0882715
-.4396694,.95015888,1.4422181
-.64743563,.29401648,.15485198
-2.7775147,.15482928,2.1474819
-1.9009747,.07948036,.2096234
-1.0375082,1.0197104,1.3727374
-1.5258815,.95297168,.13531882
-.58043184,.63293313,.29386051
-.58169553,1.300779,.29216366
-.36157918,.33334326,.05274053
-1.9446239,.0353972,.71919477
-1.3717372,2.0176191,.73430441
-.88450048,1.4306007,.63429561
-.47431916,1.4083031,.4087202
-.52365289,.80997475,.27891144
-.57165025,.31052336,1.0220026
-1.1269969,.68367532,.38865039
-.40816066,.62596731,.66375428
-1.0222541,.96619607,1.2478592
-1.077942,.39162261,1.2790021
-.6172391,2.1571375,.45849004
-1.0995279,.21571706,.37701187
-1.0582162,.94213476,.56862616
-.33062958,1.7311542,1.2644533
-.72193308,1.0832487,.18479105
-1.2737484,1.3211672,.11855154
-.47794648,.50599073,.19940198
-1.4685321,.98066172,.25184949
-.87100143,.9579761,1.6436309
-.44259138,1.2347196,2.1729507
-1.7117556,.38745621,1.174949
-.71968204,.50153313,1.7568959
-.61422926,.12879407,.69506114
-.30933527,1.1821221,.36455415
-.59376123,1.444551,.87391058
-1.1286789,.97657847,1.1219354
-.91670656,1.3537443,.53350728
-.7294909,2.0874169,.52259347
-.98718884,.00959563,.10716393
-1.0898559,.770819,.29841965
-.45961859,1.309925,.0345745
-1.896021,.73602147,1.0389216
-.52161555,1.2201429,.77000314
-1.2191796,.67311709,.34075419
-1.0251318,1.5681493,.90804129
-2.3145641,.03113552,2.2683437
-.94374967,.63597133,.11439962
-.58449312,1.4976101,.02054088
-.91162717,.48342868,1.9547507
-.61885396,1.6879931,2.213988
-1.3463568,1.1140377,.95705142
-.63008094,.08093569,1.4537045
-.48709569,.00659722,1.0721949
-.62726834,1.195152,.46647227
-.45832777,1.3027616,.24195799
-1.1409479,.96999176,.26834068
-.58603554,.89160554,.03665615
-1.1587645,.57010683,.21817207
-1.0378898,.41340056,.35863131
-.8775868,.5340662,2.2890228
-2.6639574,.08522518,.59445309
-1.2379106,.0255353,2.1662403
-.36034907,.6819151,.34865549
-.71639952,1.1200343,1.9363063
-.99579738,.93631582,.43911105
-1.3583186,.41949193,.95791125
-.73530136,.89918461,.72514494
-.4847262,.3194926,.45079726
-1.0231628,1.286112,1.2267065
-1.619146,1.2895734,.92049969
-1.1822425,.04670243,1.3684008
-1.1233675,.21822196,.38537587
-.98298535,.44265478,.24238677
-1.3584656,1.693378,.25453441
-1.2526883,.07867729,1.6557961
-.71075143,.11800273,1.4943883
-1.1609716,1.5393269,1.2763983
-1.4543608,.44450555,.8340469
-.38525798,2.3979437,.89826534
-.68207944,2.0423459,.45258103
-.62269426,.97445683,1.1244725
-.38867269,1.0476131,.38453966
-.76850699,.19488777,1.5863388
-.85805301,1.5659923,1.2107204
-1.2584954,.32294451,.65070773
-1.6750441,.57115847,1.102494
-1.1366812,.95003921,.34925924
-.43623234,1.0117462,.14071118
-.40987339,.60701661,.11141299
-2.4766343,.40806367,1.8311574
-.95410387,.72076896,1.1787464
-.4806925,.74213075,.71612082
-.83312756,.0672284,.75079239
-.62904872,1.751354,.65881874
-1.0462696,1.2318057,1.4826888
-1.5043164,.41881384,1.6176844
-.67156683,1.1432317,.14119141
-.38923332,1.0298543,1.00627
-.96280225,.17778729,.35842782
-.51702541,.60149159,.55637267
-.52786256,.69727173,.9582841
-2.2140476,1.0461354,.13123228
-.99471142,.41216452,.34098401
-.34017586,.52412899,1.3307969
-.26229961,1.5318296,.55645688
-.50876877,.85281719,2.4948286
-.68782839,.87208541,.4138834
-.55610711,.82872636,1.5581586
-.51912791,1.4647109,.17463653
-.45354823,1.0624657,.70135675
-.43508909,.53223739,.96142909
-.75169789,.23300957,1.2435447
-.79205139,.45944174,.35431842
-.73513469,.15350497,.69292283
-.77799849,1.043026,.03809909
-.81442578,1.6142595,1.8275636
-.79391315,.15635796,2.3431941
-2.8691671,.30132074,1.1871142
-.56152797,.55135565,1.0844367
-.70714429,1.62176,.80432906
-.41446238,.50929135,.50910366
-.56854594,.02766477,2.1444519
-.80926161,1.397187,1.1326073
-.73743027,.40327223,.28869704
-.95903121,.99341542,.65526632
-.95601317,.00546764,.15789922
-.56646162,.69929979,.19350045
-.33162301,1.8322529,.72445938
-.58021821,.98992093,.14855391
-.55414174,1.0877638,.44450136
-.47682158,.56473811,1.198959
-1.2878091,1.1667707,.33687157
-.50192034,1.6135453,.46088669
-.90208147,2.8450309,.42408397
-.99476117,.71652579,.76601914
-1.1584664,1.2092206,1.7428022
-.84446076,.10155365,.20891568
-.92899652,.06215136,1.3274461
-.83663228,.42505662,1.1259892
-.67624147,1.1500422,.98160243
-.37363791,1.351148,1.8647597
-1.5393109,.06408811,.52101709
-.70808885,.10494683,1.2048411
-.51231639,.18811581,.49267148
-1.2591318,1.0587424,1.1731242
-1.7297707,1.4620379,.87445105
-.71150702,.04305345,.01487408
-1.1359007,.69238518,1.5702618
-.70945295,2.5311646,1.273353
-.38705458,.99132977,.52415048
-.36973613,1.060829,.45528567
-.91410976,.97879526,1.2429495
-.92631376,.52529014,.35076778
-.68608485,.27112429,.82372228
-.59831207,.72991402,.08244038
-1.5538966,1.3507107,.53534392
-.91241582,.58309885,.64700509
-.7587324,.83476315,.61210133
-1.0436549,.19622481,.44671224
-1.0960001,.20305548,.4462104
-.97608485,1.6869675,1.2212309
-.59017299,2.8619844,.29777601
-.62289492,.5898393,.23089002
-.61478599,.30428709,.50458687
-.99396665,.57593287,.71593617
-.56276413,.43874428,.8821252
-.80720541,.66010826,.01172729
-.49844727,1.2789714,.78342144
-2.0139231,.06181922,1.7965086
-.55098437,.0482348,1.569783
-.99857921,.35486548,2.0681784
-.56450206,.0527091,1.8509099
-.77122571,.51360041,.0478114
-.48379445,2.5789779,1.573472
-.57059513,.87702861,1.4659406
-1.2848086,1.2711359,1.6534754
-.82670919,.88285792,1.2065429
-1.2991917,.17469052,.6385102
-1.4843332,.40699378,1.0963154
-1.1712783,.01137292,.53080284
-1.1822966,.47497857,1.7168454
-1.0478597,1.1186134,1.4539033
-.82884825,1.8302436,.10968283
-.69163014,1.2555623,.56794633
-1.0657378,.92492582,.67987903
-.61682064,1.6534809,.02050991
-.43585098,1.082953,.81364365
-.45159099,.39572638,1.5775455
-3.2151771,.32775041,.79359243
-.87293631,2.9159642,1.1689441
-2.4587644,1.2114198,.62429081
-.398155,.13147814,.42328863
-.70887305,.94727921,1.2825474
-.33770093,1.8048114,.5983297
-.66100603,.57050791,.35534704
-2.8823354,.6723837,1.5727898
-1.454009,.95292876,.75751536
-.43269985,.88481063,.94300753
-1.6260189,.12679206,.98095887
-.47199246,.31351323,1.2232386
-.98222335,.02995274,.46328003
-.83805449,.1757271,.8012897
-.60275721,.88370085,.15854773
-.30210013,1.1090001,.95478152
-1.4887824,.98673059,.02576824
-.74298547,.08340643,.76493747
-.77773753,1.9823519,.01010352
-.64316267,.93005948,1.127825
-1.0494526,.93141535,.09453837
-1.0824268,1.1637894,.25707813
-1.5583713,.22960952,.14035345
-.65660845,.23961944,.25236996
-1.1103024,.87552625,.7170788
-.95652725,.92706161,1.1260935
-.74673911,.036043,.84005497
-.56765739,3.3149375,.80625826
-.7117273,.43085001,.73484048
-.95462163,1.3045646,1.888103
-.78492079,1.8268296,1.7239218
-.4862252,1.1080653,.66860428
-.62425798,.73079014,.43204084
-2.1599657,.39108835,.0645588
-.6903995,1.1419961,.0257504
-.81043529,1.1480737,.12632945
-1.0296099,.58419572,.97921965
-.78114337,1.1134601,.51783167
-1.8464624,.09613032,.21373068
-.93849511,1.5685288,2.0012348
-1.1953359,.21126934,.27252193
-1.1053713,.47439406,.06621322
-.99226297,.24447207,.34987283
-2.4993115,.27115658,.99496265
-.62884486,1.3840862,1.3053778
-.58225505,1.2169298,.43956444
-.62975341,.10309701,.02390385
-1.077984,.70083215,.26600225
-.92499232,.33515532,.90877602
-1.2753837,.26325858,.98897733
-.40608176,.40756515,.37026787
-1.3034743,.86292606,.97639647
-.68819632,1.9272746,.09613374
-.38529913,1.9048467,.827747
-.65806916,2.4065332,.09522342
-.58125057,1.1801152,.50992232
-.59532115,1.3520957,1.1623754
-1.3427084,.68468889,1.2205645
-.49895402,.26418453,1.7413985
-.95124467,.52839696,.01710196
-1.4475349,1.1782565,.06365007
-1.2658271,1.2632146,.07526522
-.93052896,.40174925,.4071238
-.97638421,.55940847,.63374869
-1.3248691,.62032956,.97362019
-1.0598124,.44392539,.87922677
-.78020908,1.0096737,1.0640146
-.37403988,.35560645,.04761817
-1.1877197,.88206512,.14599969
-.78391979,2.3017586,.409218
-1.1562517,.55363133,1.1772443
-.52382579,1.2604763,.00007781
-1.2611862,1.8701495,1.0991474
-.75713742,.01624671,.63193878
-.66290642,.44604121,.00722056
-.58324866,.38756076,.4801589
-.76577216,1.5221804,.55055008
-.76277295,.10721756,1.4952998
-.84719596,.58653848,.76350198
-.61349587,1.229557,.44228711
-.60003981,1.3107236,.83145964
-.5283621,1.4831695,.82375259
-1.1341987,.5374454,1.5757192
-.5123022,.48509227,1.2922365
-1.2208885,1.1073333,1.583154
-1.4148414,.00926754,.53583998
-.3998012,.78817248,.06732402
-1.1150553,1.1307379,1.7634486
-.90672614,1.514614,.67754293
-1.163474,.43965608,.79636375
-.73504828,.24186094,2.0890058
-.67670457,1.2456408,.06993743
-.38579173,.53653428,.69296156
-.57033486,1.0968523,.00474959
-.75241647,.3315026,.44392977
-2.4172566,1.5249137,1.9816204
-1.44588,.62442755,.57597001
-.52701546,.30159195,1.1419634
-1.815438,2.4351751,.71380307
-1.100746,.38274417,.64359912
-2.672366,.52151585,1.3250965
-.94139616,1.4354724,.25010398
-1.0665302,.3510811,.3767446
-.86228281,.22452574,.86902798
-.51530052,.49376516,1.5131569
-1.1503989,.76514028,.10953283
-.82680907,1.2763612,.89107445
-.94477521,1.4397668,.12764462
-.96192282,.51008045,.39281058
-.80478138,.6604937,.16309531
-.61522384,.83530466,.43115644
-.4704162,2.3477615,.61045848
-1.1675622,.01189077,.16082248
-.46618781,1.2133969,.16553938
-.67285634,.82017592,.9014764
-1.1561265,.74029046,.45078951
-.900604,.52008814,.30349507
-.43441802,.06331171,.52863287
-.82529193,.9684317,1.1003101
-.58045738,.42171145,.07946469
-1.5746162,.61418287,1.9743587
-.58531679,.63758784,.2013919
-.66330805,.48303354,.4773263
-.68649867,.16755188,.40745175
-.98601674,.08719737,1.7912935
-1.008441,.5456624,.43381241
-1.0167429,.79821516,.56035852
-.74714868,2.1092316,.25582091
-.72625964,.28629633,.23273765
-.91339318,.77274068,.19517486
-1.8086075,.08354735,.62322941
-.5365093,.06217764,.26917754
-3.2423871,.01700816,.82507665
-.86896822,1.6628311,.30402855
-.53377572,2.4361052,2.5942684
-.48717764,.10513679,.67367152
-1.0892003,1.2029045,.02256002
-.42358305,1.665394,.79489062
-.77729325,1.9201339,1.3125795
-.95928595,.26609724,1.5159041
-1.0670771,.50079749,.58500492
-.37430895,1.2795255,.59241235
-1.1260645,.82528035,1.4356316
-.35971717,.94220102,2.0384077
-1.244661,1.0174068,.70953701
-.87532797,1.0431368,.24636004
-1.0555526,.47895987,1.9789711
-.739585,.24846335,.12668035
-.66327779,.36905919,1.2821606
-1.2946893,.6740252,1.3579806
-.64043424,1.438477,.04138178
-1.5071044,.84566318,.20011155
-.62686425,.84864083,.04257025
-1.0740314,.82066843,.31127719
-.78266573,.34231534,.29907761
-.28091508,.72459046,.4443624
-.74286005,.46889681,.53592716
-.9871206,.81058566,1.0126937
-.5380088,2.0947625,.15733139
-1.2283676,.24831199,.5776134
-.52985269,2.1113585,.59114684
-2.8688458,.9521854,.49139946
-1.4811269,.31023055,.18426152
-1.2596015,.89588859,.75093724
-.78769988,.29039744,1.3436735
-.59186998,1.2984401,.14305027
-.44232428,.9870848,.4825764
-.8859172,.29572705,.43617949
-2.3354328,.14458796,.99599981
-2.1022423,.52071801,2.1968315
-1.0166309,.68397099,.09662806
-.81451751,.11486692,.237027
-1.069744,.97338656,.41764041
-.50322518,.53138854,1.1941218
-1.219315,.20889502,1.2145737
-.81651531,.86909333,1.181007
-1.2461111,1.2615773,.04090023
-.7867591,.51675046,.60531306
-.48255451,1.5061198,1.9834087
-.63750553,.51133344,.98084581
-.93531728,1.8698809,.19503854
-.37159228,.03680177,.78299759
-.3490457,1.0367845,1.9341835
-.73158823,.53651604,.62858521
-1.1876409,.21537441,.12835291
-.84311056,.37190667,.78054651
-.70232095,.03066532,1.6930192
-.63485232,1.3076156,1.3460201
-2.6213192,.36300975,2.2734296
-1.0466684,.86440299,.50610758
-1.1949082,.92729179,1.1121783
-1.1997259,1.5131667,.79960768
-1.4912411,.18991754,3.0127683
-.70131107,.10549469,1.3255834
-1.3331466,.14273257,1.6514719
-1.3728906,1.2395013,1.0383353
-.47525762,1.0947843,.97233351
-.88147101,.67951001,.6221678
-2.159428,.20581914,.82928383
-.35759161,.09078604,.5452956
-1.4237984,1.6675258,.37976405
-1.8253866,.8475057,.61199321
-1.0766244,.96361584,1.2798582
-.57842725,.86548463,1.0389707
-.50013368,1.3480368,.80830809
-.51795836,1.2413182,.00462004
-1.3600737,.80973238,.16587305
-.70779356,.03521013,.17114019
-1.4369772,.61493521,.79113887
-.99486522,.80563288,.57606506
-.61591664,.2676468,1.0239012
-.77037215,.39763665,.15755658
-.54982064,.41990043,.18053989
-1.646002,.35777806,2.214543
-.56045242,.34891944,.25501392
-1.2849441,.78186737,1.2957175
-.67711813,.34131899,.68646578
-1.9531813,.23552967,2.3423402
-1.0629246,.6582746,.4348972
-1.3935521,.49930563,1.3704676
-.35595145,.71372754,1.4148205
-.51972062,.48306014,1.348101
-.44184067,.83909909,1.543084
-.53997559,.53482122,.10503643
-.8231803,2.0304582,.13600223
-.73512318,1.4527893,1.3657815
-1.0244988,.86034919,1.6098263
-.49035483,.31464149,.71406136
-2.2554747,.17963854,.14667943
-.89075747,2.2476326,.73480043
-.82376053,1.0855515,.44145449
-2.4964323,.31691974,1.1513456
-1.3070232,.76391477,.12909394
-.20697807,1.4104117,.26936433
-.89015891,.54647368,1.137254
-.6136409,.21097015,.98376748
-1.0140566,.43847748,1.3854676
-1.4699552,1.815735,.63384785
-.99003368,1.2945515,1.3415731
-1.7324531,.53494907,.09063591
-1.3418386,1.1792209,.12433153
-.83194433,.12598079,1.4309803
-.29033029,1.4649447,.39268192
-.96069751,.23819178,.02519885
-1.7248027,1.6845643,.91038267
-.99575129,1.0560579,.61332561
-1.3449841,.72686116,.46791496
-.53565554,.1884419,.52203599
-1.1279085,.99429857,.08005703
-1.2543423,.28129612,.88981001
-1.3055444,.96294881,.35116075
-2.1821926,.38386236,1.0215497
-.73650288,.0105463,.18555795
-1.093097,1.1870467,1.6773768
-.76710484,.60294537,1.2330747
-.8680829,.59374387,1.5710586
-1.0784459,1.6638816,.79555959
-1.9218632,.64555165,.21540618
-.78915511,1.7593397,.37548327
-.52502295,1.9504146,1.3862236
-.6062724,.52596011,2.0226481
-1.0226858,1.9325475,1.8338844
-1.4892115,.56512568,.95448768
-.97701131,.79270288,.39182331
-2.9951066,.68830174,2.3738698
-.62879447,.90782985,.48050477
-1.0911385,.57122145,1.8982176
-1.0033072,1.0126981,.12054218
-1.4514709,.57084796,.13204996
-.78497035,.78114431,.55808238
-.376453,.35544064,.54696743
-.97034206,.97146508,1.1621196
-.44820705,2.1743334,.2990424
-1.0008183,.86912589,.41258577
-.64733419,.84834476,1.3529723
-1.1899501,1.0198258,1.0680239
-.94690363,.57308106,1.1254757
-.76191619,1.369067,2.3012253
-.59477975,.51927027,.601631
-.57185685,.34304849,1.9509658
-.57902368,.67786761,.10683783
-.55938152,1.0589726,.31584831
-.77766393,.54423195,1.9177941
-.97470147,.79343434,1.9299464
-.94583736,.32733985,1.1663169
-2.0171866,2.1579897,1.7369797
-.59957437,.68988504,1.4789196
-.52626056,1.0579517,1.0463346
-1.2176907,.33447094,.6181712
-.86218791,.46805045,.30584438
-1.6393891,.03433824,1.6517552
-.31129453,1.2284843,.87471903
-.54418473,1.4788718,.38964542
-1.0174777,1.3050759,.60460037
-.4525949,.21373431,.09477761
-1.0845023,.77002033,.54802217
-.73152622,.94256292,.62257743
-.81250721,1.7306666,.0628948
-.98622735,.08785505,.56740421
-.76235855,.2063292,.14562394
-1.0513833,1.4797218,1.2321968
-1.3052498,.79235896,2.2090931
-.32338686,2.0018398,.08243745
-1.5579577,.07320935,.70830273
-.70129951,.11829152,.81727641
-2.1301245,.43661194,.68193289
-.40615049,2.9349195,2.313991
-1.5909483,.10892327,1.1793165
-.69990004,.50036206,.46040671
-3.2237544,.17855616,1.9256314
-.32049227,1.2378038,.78340635
-.56768974,1.0308897,.38283555
-1.9289912,.16120033,1.0192725
-1.1605854,.49901209,.49662792
-1.5459786,.81033095,.16498506
-.65124747,.23786604,.7468391
-2.3565215,1.4070438,.10736968
-1.3407914,.19876315,1.3501468
-.54963884,.65619901,.27852745
-.80284473,.50508765,.25654477
-1.3084396,2.0235926,.09097533
-1.0132789,.41955644,1.1256226
-.54047414,.95022178,1.2427998
-.62498509,.35604766,.60713155
-.5034584,.7266575,1.1082762
-1.1920276,.40459635,1.317584
-.83795211,1.2745199,1.6990265
-1.4467308,.08291918,.11111062
-.47281346,2.0642612,.05729529
-.49717673,.26342167,.19184471
-.99095564,.30085783,1.4120491
-.3344058,1.4899116,2.9008107
-.62558271,.50312602,.86323943
-1.1317918,.3759559,1.9935577
-.80051552,.25928617,1.6121761
-.69671986,.74154496,.01948758
-1.2092226,.64752322,.15212328
-.5075563,1.5986325,1.1568041
-1.4151556,.68430531,.51135262
-.48242035,.21484488,.73558197
-1.5075618,.00374144,.7381274
-1.2979533,.32277515,.20136243
-.9126078,.32460325,1.1534808
-1.7260222,.3360501,1.9117939
-.54135576,2.4771195,3.005033
-.28472869,.24597425,.05335163
-.68513461,.59385596,2.4520858
-.67073331,.54201937,3.132323
-1.2093181,1.1365014,1.3264519
-1.1195643,.72804784,.28447407
-.92967461,.07090618,.75693232
-.53701701,.15599666,1.0991241
-1.2552051,.45638779,.72322845
-.65163162,1.4662531,1.0961697
-.92707913,.02511498,.58659275
-1.0300214,2.137288,.13592172
-.9325449,.10863633,1.87492
-.39131691,.73538275,.26667703
-.62543045,.14672588,2.5429004
-.60306697,1.6858792,.1873098
-.69758272,1.1748954,2.4999717
-.89401691,2.0440987,1.5106586
-.60772676,1.5296616,.23821434
-.15296804,1.9649963,.30400309
-.72415119,.72085281,.16328498
-.58380734,.8506181,.1327753
-.54715112,.7372381,.44191445
-.93292693,1.1739763,.41317613
-.81949672,.47573921,.26120052
-4.6120819,1.2122677,.99143912
-.52275597,.27855417,.65743102
-1.184728,.04377501,.13235617
-.81326741,1.6505471,.5021927
-.85847069,.51527156,.91485028
-1.2864687,.28925976,.70812634
-.41903252,.41459283,.15508692
-1.3922879,.47823454,.07425339
-.69167233,.45333638,1.07451
-2.4239704,.03142451,1.2658914
-1.062957,1.5174404,1.1647198
-.52218862,.81385021,1.2308736
-.8887096,.2892052,.27160736
-.41215226,.62863189,.24845003
-1.3389923,.23468054,1.3639118
-.80566927,.87733761,1.3663898
-.24461872,.95132415,.12287282
-1.0724494,.4023513,1.2038162
-.80758207,.64135958,.34327471
-.62340742,.02425402,.2107429
-.91232009,.14140656,.11666671
-.65132773,1.5607565,.07639353
-1.295372,1.2409938,.53272464
-1.4039994,.40408359,.41464915
-2.0396392,.02680293,.13056803
-1.2928071,.55798676,.87098515
-.50325413,.13631316,1.1118271
-.98944061,.79813728,.39735693
-.53825194,1.1460785,.90829523
-.86038552,.44939287,1.16445
-1.4331554,.12473062,2.1892605
-1.3074281,.138482,.65972077
-1.178585,.17756257,1.6454959
-.42287502,1.1007657,.18431588
-.28482119,.40147687,.36357834
-1.5282367,1.74298,.86731691
-.62352121,.27593877,.21506882
-.42833259,1.5353704,1.8361018
-1.5157908,.80200466,.59503393
-.68299416,.62800155,2.5121614
-.74072861,.93070751,.09698161
-.50792494,.65938919,.81958045
-1.0371708,.00753843,.90143509
-1.2932735,.12583838,1.1389062
-.84978253,.30736948,.72194522
-.95008412,.66275911,.05243049
-.49223222,1.2578061,.94138183
-1.0550057,.09101276,.61210977
-1.1849056,.86616938,1.4969236
-.93505617,1.2294447,.25097959
-.64042401,.43420053,.53209825
-1.0713511,.68150557,1.0746687
-.50935238,.85591418,.25883229
-.71456385,.96166345,1.3498794
-.68661042,.68392464,.97518472
-1.099242,.62868177,1.4507819
-.77722317,.97449654,.32846709
-.88944017,1.1073423,.91241906
-1.0551605,.72628194,.1905888
-2.1294732,.21447527,1.9066152
-.76337035,.20686916,.34780263
-1.1124885,.02783302,.26603717
-.93094936,.48979601,2.4429061
-.57317359,.39697844,1.3645952
-1.5905572,.20864353,.19501775
-.79363135,.68056502,2.2404343
-.72191655,1.1944686,.24192954
-.6078632,1.269344,1.3538558
-1.1882644,.2856146,.43355748
-1.5597111,.4779106,.78970566
-.59396586,.88761712,.73129809
-1.6826013,.13534202,1.035732
-.31463641,1.6084762,.65359614
-.71623879,1.2348744,.89120273
-.57691584,1.3010529,.8644534
-.67951569,.97256948,1.7279186
-.64077483,.43905019,1.0782348
-.76608348,.26790037,.31622198
-.96228748,.28532678,.22145759
-.55143215,.15825869,1.4259819
-.7124899,.41925366,.07881345
-.96604306,.0309532,.6737096
-1.3044427,1.0219398,.98277225
-.77016449,.34178456,.45794888
-.64476897,.25582939,.41928843
-.30370322,.35902111,.50172371
-.72869962,2.121169,.82977333
-.8779484,1.1436907,1.5889608
-.64485723,1.0735181,.47759815
-.41315578,.77963449,.58475887
-.51876014,.50930623,.14423058
-.74038317,.80125955,1.3274059
-.80714226,.92095033,.44830748
-.86542171,.27179913,1.5665399
-.94964853,.14655875,.1931052
-.84257547,2.5746237,1.9559064
-1.3253685,.28664006,.82070766
-.4919865,1.1190812,1.2016691
-.67988525,.40277092,1.4438627
-.7784383,.17568431,1.4484551
-1.0543374,.11352337,.98239068
-1.0721499,.08179788,.59085836
-.6470335,2.0399327,.94850736
-.4896941,1.1827498,.54433445
-1.5351251,1.1157271,1.4610127
-.9319995,.71953469,.51309998
-1.0491254,1.9612391,.01012645
-.36792276,.46947473,.39252425
-.32677638,1.3645812,.53819829
-.58258362,.67690285,.84588604
-.68867605,2.539904,.99704438
-.65243922,.57115224,2.0455113
-1.2874139,.51331556,.25258742
-1.6333519,.36416588,2.4237794
-.69090469,1.0470363,.84529159
-.86375582,.03560261,.97587424
-1.4044691,.06857649,.65688466
-.57830465,.44495005,.71164996
-.67978139,.64429918,.61055019
-.45550372,2.8636299,.9228639
-1.4299099,.40944242,.62873064
-.5813051,.22128944,.87245036
-.9261769,.86549741,1.1476426
-.40440402,.02107845,.00239596
-.6604035,.00155076,.86795595
-.68024223,1.7500067,2.4763484
-.49782893,.96243907,.73781349
-.62010846,.0206026,.25783965
-.77330574,.56707736,.20621442
-.78407289,.30275935,.36230274
-.32649876,1.5529527,.24312599
-.63722938,1.1841267,.00757615
-.74996151,.51857881,1.1397444
-.54306117,1.7834904,1.2297458
-2.8442831,1.9233474,1.0908258
-.6398441,1.6392878,.15424505
-.89378189,.48993595,.91968984
-1.462916,.82285526,1.8715102
-.63246698,.30161253,1.1676815
-.73744328,.88859662,.89368746
-.610368,.30092152,.7591123
-2.5905319,.39825341,1.4545553
-1.0712907,.27659499,1.0803684
-1.0825161,1.5799016,.39589847
-.81065616,.32898588,1.3390549
-.48058968,1.5273866,1.6491953
-.75616228,.68905692,.13295999
-.413386,.77607549,.50295592
-.88531222,.48451783,1.5324234
-.5072411,.6511584,.50190294
-.66976978,1.4492686,.92683791
-.40516913,1.0753,.79336736
-.78624959,.2875428,.83699112
-.42972784,.4763214,.69862826
-.87162866,.73515335,1.1697338
-.56139363,.25843605,.06635607
-1.2477086,1.9277721,.13867677
-.67709605,.77996461,.68633719
-.87174012,.54735712,1.3240836
-1.2211814,.55385832,1.3974319
-.64034606,.49164018,.40758012
-.65981705,1.2604899,.24206755
-.82632949,.46370525,.77645355
-1.4025171,.47270886,.50970768
-.92367775,2.1739885,.7714909
-.73195408,1.0354318,.15219296
-.34316139,.43979103,.32425374
-.37554164,.75177073,.78501072
-.67906488,1.1735004,.0804604
-.51962289,.03321507,.39444863
-.74153967,.09912807,.67456441
-1.1057165,.71794334,.44966465
-.66239099,.64432526,.85087684
-1.1338054,.22206064,.62145245
-.53126128,1.5968228,.68127648
-1.367562,.34686201,.73296808
-1.0362477,1.1827918,.17591939
-.76740018,1.6133825,1.2450923
-.88139836,.36609675,.00659358
-.51888454,1.0078093,1.7862396
-.40032203,.17580701,.78121662
-.93220351,.95429728,.62709029
-1.4245613,1.5112767,.17431408
-1.3247577,.4538707,.15944298
-.33777975,1.2784101,1.3069447
-2.3015332,.45399332,.28674395
-.64811655,2.3045856,.07548781
-2.131691,.21811155,.86985013
-.84300769,.46459537,.11909594
-1.2555272,.95968814,.97727485
-1.0932162,1.0746487,.62313604
-.5662928,.21537959,1.8438413
-.7183384,.82016977,.00245923
-.24345761,1.5847226,1.3726332
-.61357936,.45322552,.57541627
-.43825635,.71334697,.1786393
-1.8415397,.25930537,.42842531
-1.0846105,.68655152,.83367123
-.73371562,.35689506,.75389785
-.44519113,.39383168,.23185127
-.48472624,1.1758516,1.1534174
-.90645744,.59324764,.24863818
-1.1146474,.77025962,.14345153
-.72812607,.38055231,1.5993959
-1.0628037,.81283737,2.5150245
-.65876508,.08212777,1.2915346
-.32891519,.9405178,.53376312
-.92916013,.20993851,.41313696
-.91173164,.35128491,.0461125
-.39370738,1.3677216,.43293659
-.55358825,1.598744,.04925342
-.70666986,.29740809,.99354431
-1.3485425,.80585614,.91033795
-.4568809,1.2231573,.4788834
-.44812777,.74562056,.27546119
-1.8168499,1.1870203,.37059891
-.28015084,2.3343245,1.8741043
-2.571738,.44249945,2.6086615
-.68703777,1.9773628,.17942696
-.76529213,.33173631,.12264761
-.37860053,.35705986,2.0078595
-2.4808248,.37170135,.42437833
-.6360392,.7123772,1.4579801
-.29487735,.60965531,1.1054069
-1.5161381,.24422719,.21712067
-.81842365,2.5372959,.41224182
-.57248057,.14265412,.91538287
-.57338182,.32547192,.36382549
-1.1075603,.99588337,.71792851
-.65971904,1.0560243,.03212465
-.68321622,2.2534114,.50884255
-1.1748687,.93252178,.67244658
-.92347261,.14050322,1.3666705
-1.0424962,.73381136,.09276123
-1.5172877,1.0541049,.40654094
-.51294371,1.29971,.05412451
-1.6326976,.36414816,1.6175221
-1.5167495,.19900559,1.28986
-.85429282,.81987768,.96763726
-1.4327045,.93891628,2.0968062
-.38102167,.73993387,.34238792
-.89707329,1.4257216,.23908655
-.79807829,.56000166,.69948855
-.64855285,.99343271,.0403098
-1.3089401,1.2816912,.86710349
-1.0230231,.46010813,.26569087
-.33179999,2.0636804,1.8876811
-1.2800209,.44657603,1.0810347
-.83509561,.3974757,.75273479
-1.3018,.75185757,.20937935
-.80927267,2.056732,.29315752
-1.7285675,.10237531,.62886455
-.94557364,.20417868,.85909297
-.70924684,.2156802,.7593879
-.56801835,.14199698,.62258861
-1.1329404,.42155481,2.2855953
-.53493071,1.4412974,.89957633
-.71220953,.62295291,.28082282
-.87563799,1.0675566,1.6693933
-.74723485,.33744353,1.8193307
-1.4829611,.28474539,.0735901
-.47127541,1.7227148,.01808619
-1.0990041,1.3627132,.57778433
-1.3206745,.7601775,1.002929
-1.7822459,.21596079,1.6946402
-.57935618,.48846274,.08578555
-.60830702,.24858378,.50400363
-.60238983,.49342141,.82952157
-1.5975996,.13264652,.04981007
-.7561089,1.2849779,.04752101
-1.0112236,.67832021,1.4864473
-.75745538,2.6588741,.74060338
-.88158386,.34919488,1.5380533
-1.2223211,.17337392,1.9610357
-1.7784736,1.0638753,.54321327
-1.180366,.18529709,.18817773
-.76823562,.67345118,.78757404
-.80796352,.10343009,.59297844
-.3368785,2.6532335,2.4301017
-.6197941,.79891961,.56420318
-.57534226,.2358301,.06175416
-.62319052,.95588826,2.6466718
-1.0762407,.20533321,.70796352
-.92835366,1.2241697,.51527022
-.56958804,2.4832352,.21731236
-.81014961,1.9885072,1.0959845
-1.1618556,2.2557235,.07837453
-.64137404,.05595449,.56003697
-.85534558,.83516407,.61306773
-1.4289795,.02705728,2.7569743
-.92680466,.10020655,.2896521
-1.6039057,.04322754,1.4543302
-.73333074,.99200881,.47003657
-.99756451,.3750477,.91561551
-1.6596643,1.3562829,1.1505652
-.74351804,.34895162,.64283804
-1.4461777,1.0576037,.68111407
-1.937445,.00332439,2.2187295
-.86782385,.4085835,1.8016827
-2.2461614,.45789896,.48679289
-1.1508536,.6478378,.45804053
-1.0277627,.84506538,1.3396213
-.31002555,1.5184425,.03519688
-.44034991,1.1537746,1.3951833
-.42687829,1.2647285,1.8984017
-1.8693239,1.0012759,1.1145123
-1.2246877,1.3126089,.67236891
-.65313045,.11785498,1.2394504
-2.0677441,.34668019,2.0796638
-2.9060223,.91636242,.22861586
-.55507901,.72212059,.07492644
-1.2116879,.58545109,1.771824
-.60718879,.96013381,.70601008
-.4101653,1.2940113,.78338896
-1.0094925,.47233992,1.1167822
-.35964838,.61422426,1.0757687
-.65674653,1.6695802,.53408777
-1.118313,.64064203,1.1978721
-.40645899,.70308648,.23887004
-1.6135196,.04510506,.29386437
-.49933913,.15525938,1.0902229
-.61432253,.88311269,.73146771
-.89919489,.63103718,.02874329
-1.1999731,.17803525,.87496341
-1.4755227,2.1306955,.68317767
-1.4057168,.11691024,2.3278573
-1.3056559,.68316443,1.2492737
-.86389848,.79722183,1.4401973
-1.2191948,2.4122954,1.569665
-.74898867,.53834085,.92338954
-1.5284241,.20341062,.95970462
-.93259835,1.3847695,.1983589
-.34148931,1.3463013,.95882594
-.89742024,.02949545,.42625357
-.88026887,1.7410233,.52811808
-.3907246,.28195824,.31188594
-.85362555,1.479275,.05728872
-.59144525,.28003159,.08360017
-.43325421,1.1323534,1.4652906
-1.4603989,.60258855,.29680736
-.60387387,.71252199,.08592454
-.96803892,.33663581,.87976618
-.40338442,1.1341441,1.0010958
-.47308676,1.1710883,2.1556667
-1.4916729,.41862618,1.4234216
-1.513186,.63044089,.84905519
-.54684015,2.094903,.84112693
-1.6869807,1.1679383,.43407913
-1.0927412,.32819406,.30854372
-.54537554,1.2006196,1.5911716
-1.3478603,.49946001,.35062038
-.69660512,.85312163,.50215879
-.65116663,.09483406,1.5508372
-.49264743,1.7134856,.6537365
-1.8105975,.17070025,1.2378558
-1.6187841,1.3440077,1.0022457
-.89961083,.74999471,.17146243
-.36934665,1.3174972,.18883253
-.91455262,.37517699,.92925231
-.87012978,.85825286,1.1622748
-.67554324,.81528683,.64497602
-.72796689,.40324516,.71616468
-.92622408,.02326537,.18716862
-.69507876,.38288233,.9949658
-1.7801891,.66406708,1.694306
-1.050626,.71311357,.11100239
-.72784732,.76596064,1.323159
-.92806654,2.1463577,1.9646934
-1.3265114,1.8116503,.40718082
-.64709218,1.8993195,.40637787
-.62578714,1.5720057,.71613123
-.62354381,1.8363208,.60927455
-1.2442403,.12972083,.02953719
-.75683582,.51435273,.60637426
-1.371667,.37025892,.06724865
-1.0496795,1.1741682,1.0400597
-.36755265,1.7305243,.37984384
-1.2349227,.0233649,.59565865
-1.1291509,.43857023,1.2979517
-.64122269,.02096425,.02423482
-.54768254,.0834145,.03953611
-.77624136,1.0455675,.26394261
-.5487801,.06310734,1.6026148
-1.0630092,.44235134,.29042431
-.7865688,1.2659969,.48613163
-1.2670376,1.3032969,2.0027184
-.48676194,2.4164841,1.0422733
-.55722041,.24562642,.60701589
-.96732587,.4302962,1.9156838
-1.3483375,.34181957,2.3689846
-.73585046,1.7866444,.57338157
-.5310269,.81501017,.94680294
-1.194438,.10255767,1.2465274
-.86222938,.55079123,.02575186
-.58526372,.67547841,.10989397
-.86484816,1.0997578,.19264847
-.28256251,2.3354607,.26399282
-.72158714,.1991819,.37559408
-1.0375405,2.6489738,.90627963
-.59852862,1.4209114,2.0845085
-.4214695,1.4529017,1.2960356
-.48038075,1.2491836,.5256133
-.35603157,1.3773532,.46951224
-.59545749,1.5872916,.00137937
-.95537794,.94361046,.050532
-.44422476,1.335396,.50008404
-1.5312502,.26275714,.02446314
-2.5796793,.02073198,1.3807399
-.67978943,.69295969,.9605533
-2.1766547,.60263326,.64608273
-.86942762,.49844549,.24501389
-.37627572,1.0095631,.43452719
-.59421776,.06120066,1.2852596
-.49870003,.70104922,.30069658
-.67229949,.99040309,.11597539
-1.1513851,.69270538,.69692452
-1.3706784,1.0801064,1.6963887
-1.3418344,.03380247,.4294621
-.96474682,.57555621,.2431176
-1.4181839,.43784316,1.2239075
-.70934178,1.1257657,1.6296146
-1.6366922,.58690283,1.0280791
-1.5357647,.2432297,1.5229078
-.31553622,1.3562669,1.0538903
-.68792225,.69901349,.90320203
-.46338499,.56478778,.34123736
-1.5961558,.30198952,1.4851412
-.21825078,2.2007007,.54889341
-.97455105,.88532706,.3931441
-.37379635,1.8014973,.83353215
-1.0930836,1.0496075,.55740309
-.92252344,.3072259,.37227214
-.54884691,.6920049,.40740044
-.41165387,.78371258,1.5732706
-.27949511,.68540599,.0020217
-1.2013635,2.9696326,.40882887
-1.0236737,1.4948122,.23675647
-.81631944,.2565994,.41990892
-1.0226723,1.4691166,1.0734861
-.57907138,.46017182,.06917628
-.38400212,1.8010814,1.02687
-1.4531813,.64981772,.5967013
-.87660758,.57594836,1.1804396
-.63455007,1.0070724,1.3189317
-1.37078,.54335726,.66230682
-.93842385,.4648699,.56985403
-1.6858023,.65719334,2.8226439
-1.5163872,.22455743,.20086926
-1.0521868,.56518326,1.435956
-.35700339,1.9982776,.89242741
-.532948,1.4198226,.06614405
-1.3396797,.87098207,.61807739
-.24856325,1.1068683,.49526634
-1.9248222,.50326823,.57585772
-.4437494,.43165845,.53558639
-.54152456,1.3918489,1.663235
-.6822504,1.0403388,.46237295
-2.3417701,.06907957,.04352109
-1.3968699,.14938179,.21039623
-.31369161,1.6712671,1.123252
-.63424768,1.8600642,.73863534
-1.023145,.66170807,.95085331
-.92719282,.3361549,.37553339
-.35701271,.61784299,.01618807
-.52665299,2.0564578,.85481663
-.86079285,.72639691,1.1661351
-.44142021,1.6135103,.41365952
-1.9766222,.19656573,.31610363
-.58600217,1.2606614,.60464849
-.77925666,.97655765,1.6996924
-1.940305,.27658401,.98321773
-.72453846,1.8083733,.40110246
-.3083862,.80334794,.05336384
-.32323647,.67202487,.26537271
-1.1171796,.84279191,.48975742
-2.3804169,.18885457,2.7377433
-.60433537,.65566794,.64597969
-1.0846475,.13472601,.53613207
-.59049038,.77689132,.05901135
-.73214938,2.262433,.62799638
-.44193709,2.1866581,.85793815
-1.5179435,1.3466036,.23200599
-1.0789435,.95930144,2.3171139
-2.7934764,.53173757,1.6578806
-.60381913,2.0445519,1.5378756
-2.2553769,.00098954,2.22739
-.67758482,.57360939,.40692675
-.54818582,.65133854,.79222146
-1.193282,1.1672386,.54468373
-1.2349248,.41722014,.03329499
-.57373599,.37334115,.83803934
-.34593633,.41700349,.44317427
-.9343236,.73129198,1.4385106
-.56629598,.23550206,.22585155
-.8882889,.65057351,.32272838
-.92747917,1.9847132,1.0325563
-.87599786,.50248093,.58063694
-.76864339,2.2014173,.64263308
-1.5462566,1.2729829,.1266775
-.45310563,1.0772297,.44635759
-.97736831,1.593362,1.6279788
-1.1744745,.55118058,.41984215
-.40746484,1.4835553,1.1584996
-.64445241,.04522721,.06498349
-.5659927,1.0221971,.03574795
-.32215627,.29593885,.06637473
-.64667144,1.4961229,.76846605
-.60146617,1.3170128,.17597975
-.67497106,1.0559617,1.1463464
-.9231131,1.663892,.1053914
-1.5763347,1.085907,.44208155
-1.034483,.06841212,.17427601
-2.5875062,.3216096,1.5276183
-2.2162338,.16007739,1.3579277
-.62322642,.32315125,.1222767
-1.1817858,.79870244,1.2796465
-1.8807073,1.0614842,.23570774
-1.0181515,.28907054,.06678156
-1.1045564,.49899931,.22726116
-1.7308379,.57241084,.79261422
-.70231334,1.7681389,1.3977755
-1.3237468,.30865835,.31687235
-1.299911,.26019521,.15339346
-.91158076,.10572036,.02128941
-1.3119979,1.5565935,.44680504
-1.1817192,1.4361554,1.363731
-.6973528,.12741736,.07433224
-1.6256335,.06648485,.18206091
-.47725114,1.0775329,.54892661
-1.9113322,.39397266,.40675203
-.96551876,.56660029,.84442113
-1.2840565,.34854888,.40895123
-.66169338,1.819464,.20644197
-.84999359,.48816377,.59361468
-.44563542,.34454284,.99730413
-.7620354,.24929127,1.3314471
-2.0275687,1.1621508,1.5928085
-.63340269,.18851793,.04836198
-.72580403,1.1340934,.21138117
-1.379978,.73626715,1.0161079
-.4276442,.50703011,.39708737
-.3582363,.77776751,.44152059
-2.0296286,.68519421,.75224632
-.33855176,1.2085536,.20189092
-.66705853,.83012965,1.5996954
-.63167483,.31857322,.35844685
-1.0339932,.90647644,.6249356
-.70048733,1.3485348,.45190451
-.39190471,.06855184,.76261058
-.48061026,.36195734,1.4214984
-.70435157,1.411528,.15732353
-.66191766,.08987892,.81149487
-2.3585965,.50808299,.53086298
-.70900034,1.7146681,1.7463657
-1.5159426,.53577436,1.4978532
-.47869193,.29726645,.04817281
-.21015999,.61049705,.93786114
-.90429683,.42236519,1.2543597
-.69309461,1.41039,.64685322
-.40774025,.21420631,.03562601
-.77643377,1.233487,.38702381
-.39275267,1.0095542,.12478784
-1.3951036,.8443644,1.1558097
-.39115113,1.6440449,.33227879
-1.3304053,.7407143,1.5899865
-.94679491,.14654569,1.8782694
-1.9761037,.01434133,.17385053
-1.1358052,.35487923,.76262824
-.20808584,.97809447,1.4088293
-.69672276,.54602364,1.3171499
-.84641761,1.1241663,.42966577
-.55918357,1.2165002,1.606226
-.54323881,.40968798,1.1052551
-.56696759,.39070029,1.1961091
-1.002651,.31277129,.68314357
-.69324165,1.2885334,.05613407
-1.3511187,.69884884,.76162282
-.2495769,.71204484,1.1258853
-.99345225,.32057716,.4298666
-1.6130161,.05593041,1.5131863
-.31271087,2.0070846,.96963653
-.76223436,1.872424,.98168851
-.52015039,1.3160899,.46523211
-.45200872,2.5051161,.51703237
-.27628432,1.8069414,.68201762
-1.1171153,.03466919,1.0173693
-.97671402,1.1049906,.25770952
-1.401379,1.3877424,2.2170977
-.43773007,1.5287901,.17213944
-.99943371,.25687776,1.8837968
-.96582434,1.2851354,1.6309034
-1.9159568,.93583274,.09265329
-.22886692,3.2399328,.64523532
-.65602388,.54407088,.71142059
-.47234655,.92851725,.68231093
-.76053417,.9935189,.29903559
-1.6624051,.41345006,.32768835
-1.2750937,1.3940707,.25055705
-.77830006,.52702923,.21210824
-.82110495,.16100896,.57621835
-1.2194688,.38460931,.81317667
-.65921435,.60156966,.48963607
-.91882228,2.0309657,.32422162
-1.4259483,.13155093,1.2290654
-1.3851449,.15434496,1.2598837
-1.5062064,1.1630516,2.7125824
-.86052609,.20529867,.91409136
-.81563901,1.6759871,.98042586
-.96410576,.80401628,1.3586639
-.79527086,.77138036,.51699284
-1.5959448,.35250562,.70652834
-.73457845,.49466517,1.0828609
-.91588219,.07036845,.58594754
-.66229489,.23618128,1.3485052
-.40466549,.29136395,1.4963158
-1.268009,.04734291,.87753955
-.4492601,.35189613,1.3911144
-.3582487,.64467325,.12409709
-.74106828,1.4336888,1.1769495
-.45833805,.05930228,.52344453
-.54381949,1.1157084,.42483335
-.8047712,.80950617,.06727486
-.40386786,1.9347674,.04553126
-.64952883,.58577328,.45229018
-.52694452,1.0308727,1.4969249
-.70766604,.94594666,.61023174
-.71631054,.90717335,.92649328
-1.0369068,.96841703,.28045394
-.98162832,.05923147,1.2469348
-.3722195,.15741403,.52790514
-.96355892,.52449163,.2369279
-1.7297467,.6038351,1.3506531
-.58434889,.87600647,.14492429
-.87686813,1.8352809,.70102615
-.68451718,.00724502,1.1013835
-.4924203,.16091017,.05501368
-1.3556745,.55503092,.29344854
-.60941014,1.6973828,1.0878894
-1.0058056,.60196458,.97388934
-.84639996,.26038673,.37620264
-1.575636,.05546497,1.0073885
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/iris.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/iris.csv
deleted file mode 100644
index 43cd130..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/iris.csv
+++ /dev/null
@@ -1,151 +0,0 @@
-150,4,setosa,versicolor,virginica
-5.1,3.5,1.4,0.2,0
-4.9,3.0,1.4,0.2,0
-4.7,3.2,1.3,0.2,0
-4.6,3.1,1.5,0.2,0
-5.0,3.6,1.4,0.2,0
-5.4,3.9,1.7,0.4,0
-4.6,3.4,1.4,0.3,0
-5.0,3.4,1.5,0.2,0
-4.4,2.9,1.4,0.2,0
-4.9,3.1,1.5,0.1,0
-5.4,3.7,1.5,0.2,0
-4.8,3.4,1.6,0.2,0
-4.8,3.0,1.4,0.1,0
-4.3,3.0,1.1,0.1,0
-5.8,4.0,1.2,0.2,0
-5.7,4.4,1.5,0.4,0
-5.4,3.9,1.3,0.4,0
-5.1,3.5,1.4,0.3,0
-5.7,3.8,1.7,0.3,0
-5.1,3.8,1.5,0.3,0
-5.4,3.4,1.7,0.2,0
-5.1,3.7,1.5,0.4,0
-4.6,3.6,1.0,0.2,0
-5.1,3.3,1.7,0.5,0
-4.8,3.4,1.9,0.2,0
-5.0,3.0,1.6,0.2,0
-5.0,3.4,1.6,0.4,0
-5.2,3.5,1.5,0.2,0
-5.2,3.4,1.4,0.2,0
-4.7,3.2,1.6,0.2,0
-4.8,3.1,1.6,0.2,0
-5.4,3.4,1.5,0.4,0
-5.2,4.1,1.5,0.1,0
-5.5,4.2,1.4,0.2,0
-4.9,3.1,1.5,0.1,0
-5.0,3.2,1.2,0.2,0
-5.5,3.5,1.3,0.2,0
-4.9,3.1,1.5,0.1,0
-4.4,3.0,1.3,0.2,0
-5.1,3.4,1.5,0.2,0
-5.0,3.5,1.3,0.3,0
-4.5,2.3,1.3,0.3,0
-4.4,3.2,1.3,0.2,0
-5.0,3.5,1.6,0.6,0
-5.1,3.8,1.9,0.4,0
-4.8,3.0,1.4,0.3,0
-5.1,3.8,1.6,0.2,0
-4.6,3.2,1.4,0.2,0
-5.3,3.7,1.5,0.2,0
-5.0,3.3,1.4,0.2,0
-7.0,3.2,4.7,1.4,1
-6.4,3.2,4.5,1.5,1
-6.9,3.1,4.9,1.5,1
-5.5,2.3,4.0,1.3,1
-6.5,2.8,4.6,1.5,1
-5.7,2.8,4.5,1.3,1
-6.3,3.3,4.7,1.6,1
-4.9,2.4,3.3,1.0,1
-6.6,2.9,4.6,1.3,1
-5.2,2.7,3.9,1.4,1
-5.0,2.0,3.5,1.0,1
-5.9,3.0,4.2,1.5,1
-6.0,2.2,4.0,1.0,1
-6.1,2.9,4.7,1.4,1
-5.6,2.9,3.6,1.3,1
-6.7,3.1,4.4,1.4,1
-5.6,3.0,4.5,1.5,1
-5.8,2.7,4.1,1.0,1
-6.2,2.2,4.5,1.5,1
-5.6,2.5,3.9,1.1,1
-5.9,3.2,4.8,1.8,1
-6.1,2.8,4.0,1.3,1
-6.3,2.5,4.9,1.5,1
-6.1,2.8,4.7,1.2,1
-6.4,2.9,4.3,1.3,1
-6.6,3.0,4.4,1.4,1
-6.8,2.8,4.8,1.4,1
-6.7,3.0,5.0,1.7,1
-6.0,2.9,4.5,1.5,1
-5.7,2.6,3.5,1.0,1
-5.5,2.4,3.8,1.1,1
-5.5,2.4,3.7,1.0,1
-5.8,2.7,3.9,1.2,1
-6.0,2.7,5.1,1.6,1
-5.4,3.0,4.5,1.5,1
-6.0,3.4,4.5,1.6,1
-6.7,3.1,4.7,1.5,1
-6.3,2.3,4.4,1.3,1
-5.6,3.0,4.1,1.3,1
-5.5,2.5,4.0,1.3,1
-5.5,2.6,4.4,1.2,1
-6.1,3.0,4.6,1.4,1
-5.8,2.6,4.0,1.2,1
-5.0,2.3,3.3,1.0,1
-5.6,2.7,4.2,1.3,1
-5.7,3.0,4.2,1.2,1
-5.7,2.9,4.2,1.3,1
-6.2,2.9,4.3,1.3,1
-5.1,2.5,3.0,1.1,1
-5.7,2.8,4.1,1.3,1
-6.3,3.3,6.0,2.5,2
-5.8,2.7,5.1,1.9,2
-7.1,3.0,5.9,2.1,2
-6.3,2.9,5.6,1.8,2
-6.5,3.0,5.8,2.2,2
-7.6,3.0,6.6,2.1,2
-4.9,2.5,4.5,1.7,2
-7.3,2.9,6.3,1.8,2
-6.7,2.5,5.8,1.8,2
-7.2,3.6,6.1,2.5,2
-6.5,3.2,5.1,2.0,2
-6.4,2.7,5.3,1.9,2
-6.8,3.0,5.5,2.1,2
-5.7,2.5,5.0,2.0,2
-5.8,2.8,5.1,2.4,2
-6.4,3.2,5.3,2.3,2
-6.5,3.0,5.5,1.8,2
-7.7,3.8,6.7,2.2,2
-7.7,2.6,6.9,2.3,2
-6.0,2.2,5.0,1.5,2
-6.9,3.2,5.7,2.3,2
-5.6,2.8,4.9,2.0,2
-7.7,2.8,6.7,2.0,2
-6.3,2.7,4.9,1.8,2
-6.7,3.3,5.7,2.1,2
-7.2,3.2,6.0,1.8,2
-6.2,2.8,4.8,1.8,2
-6.1,3.0,4.9,1.8,2
-6.4,2.8,5.6,2.1,2
-7.2,3.0,5.8,1.6,2
-7.4,2.8,6.1,1.9,2
-7.9,3.8,6.4,2.0,2
-6.4,2.8,5.6,2.2,2
-6.3,2.8,5.1,1.5,2
-6.1,2.6,5.6,1.4,2
-7.7,3.0,6.1,2.3,2
-6.3,3.4,5.6,2.4,2
-6.4,3.1,5.5,1.8,2
-6.0,3.0,4.8,1.8,2
-6.9,3.1,5.4,2.1,2
-6.7,3.1,5.6,2.4,2
-6.9,3.1,5.1,2.3,2
-5.8,2.7,5.1,1.9,2
-6.8,3.2,5.9,2.3,2
-6.7,3.3,5.7,2.5,2
-6.7,3.0,5.2,2.3,2
-6.3,2.5,5.0,1.9,2
-6.5,3.0,5.2,2.0,2
-6.2,3.4,5.4,2.3,2
-5.9,3.0,5.1,1.8,2
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/medparlogresids.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/medparlogresids.csv
deleted file mode 100644
index a6c726d..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/medparlogresids.csv
+++ /dev/null
@@ -1,3676 +0,0 @@
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-8.561043000000000402e-01,4.734012000000000220e-01,1.122947999999999951e+02,4.468011000000000066e-01,1.596711999999999954e+01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-7.237930000000000197e-01,4.305149999999999810e-01,7.407390999999999792e+01,4.117415999999999854e-01,1.163175000000000026e+01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--3.626257999999999981e-01,-7.884961000000000331e-01,-1.762635999999999825e+01,-7.144532000000000105e-01,-3.728044999999999831e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-6.952540999999999860e-01,4.122828000000000048e-01,9.119620999999999356e+01,3.940996999999999972e-01,1.296711999999999954e+01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
-1.326297000000000059e+00,6.979185999999999446e-01,3.924463999999999686e+01,6.521791000000000116e-01,1.012335999999999991e+01
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.704108999999999874e-01,-7.664223000000000008e-01,-1.404771000000000036e+01,-7.028326000000000295e-01,-3.281231000000000009e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-6.835332000000000185e+00,1.716207999999999956e+00,3.322490000000000236e+02,1.271139999999999937e+00,7.027196000000000708e+01
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.681230000000000446e-01,3.747563999999999895e-01,3.539392000000000138e+01,3.641587000000000018e-01,6.778508999999999673e+00
-2.882135000000000113e-01,2.192947000000000091e-01,2.949614000000000047e+01,2.165885999999999922e-01,4.631745999999999697e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-5.326914000000000371e-01,3.673996999999999957e-01,2.020213999999999999e+01,3.590831999999999913e-01,4.718768999999999991e+00
-6.100712000000000357e-01,3.999677999999999845e-01,2.965409000000000006e+01,3.883282000000000123e-01,6.271955000000000169e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.070570999999999939e+00,5.463869000000000087e-01,1.404264000000000010e+02,5.072630999999999668e-01,1.996712000000000131e+01
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-1.553120999999999974e+00,6.864687999999999901e-01,2.037222999999999900e+02,6.157422000000000173e-01,2.896712000000000131e+01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-4.092022000000000159e-01,3.045207999999999804e-01,1.210814000000000057e+01,3.001345000000000263e-01,3.123356999999999939e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-6.100712000000000357e-01,3.999677999999999845e-01,2.965409000000000006e+01,3.883282000000000123e-01,6.271955000000000169e+00
--3.340430999999999817e-01,-8.429710999999999732e-01,-3.418639999999999901e+01,-7.336224000000000078e-01,-5.368254000000000303e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--3.704108999999999874e-01,-7.664223000000000008e-01,-1.404771000000000036e+01,-7.028326000000000295e-01,-3.281231000000000009e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.326914000000000371e-01,3.673996999999999957e-01,2.020213999999999999e+01,3.590831999999999913e-01,4.718768999999999991e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.681230000000000446e-01,3.747563999999999895e-01,3.539392000000000138e+01,3.641587000000000018e-01,6.778508999999999673e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-4.198035999999999990e-01,3.071039999999999881e-01,1.592090999999999923e+01,3.021588000000000052e-01,3.718768999999999991e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-1.713970999999999911e+00,7.278432999999999709e-01,2.248208999999999946e+02,6.459247000000000183e-01,3.196712000000000131e+01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-2.781887000000000110e-01,2.236103000000000118e-01,8.231498000000000204e+00,2.218424999999999980e-01,2.123356999999999939e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-4.843106999999999829e-01,3.336759999999999726e-01,3.017242999999999853e+01,3.260801999999999867e-01,5.778508999999999673e+00
-5.681230000000000446e-01,3.747563999999999895e-01,3.539392000000000138e+01,3.641587000000000018e-01,6.778508999999999673e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-6.952540999999999860e-01,4.122828000000000048e-01,9.119620999999999356e+01,3.940996999999999972e-01,1.296711999999999954e+01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.371160999999999852e-01,3.499714999999999909e-01,5.496914999999999907e+01,3.394932999999999979e-01,8.631745999999999697e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-4.748903999999999903e-01,3.202871999999999941e-01,4.860088999999999970e+01,3.121535999999999755e-01,7.631745999999999697e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.781887000000000110e-01,2.236103000000000118e-01,8.231498000000000204e+00,2.218424999999999980e-01,2.123356999999999939e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.993416999999999772e-01,3.781156999999999990e-01,6.133740000000000236e+01,3.650679000000000007e-01,9.631745999999999697e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-5.128015000000000212e-01,3.526062999999999836e-01,2.492604000000000042e+01,3.444955000000000100e-01,5.271955000000000169e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.371160999999999852e-01,3.499714999999999909e-01,5.496914999999999907e+01,3.394932999999999979e-01,8.631745999999999697e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-6.455792000000000197e-01,4.224096999999999991e-01,2.448337000000000074e+01,4.100037999999999738e-01,5.718768999999999991e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
-5.402158000000000238e-01,3.760539999999999994e-01,1.598478000000000065e+01,3.679542000000000090e-01,4.123357000000000383e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--7.758929999999999993e-02,-8.392910000000000648e-02,-1.791260999999999992e+00,-8.384289999999999798e-02,-5.102887999999999868e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-8.195601999999999610e-01,4.835400999999999727e-01,5.105839999999999890e+01,4.618120000000000003e-01,9.778508999999999673e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-1.485498999999999903e+00,7.222674000000000039e-01,7.220649000000000228e+01,6.632708000000000492e-01,1.527195000000000036e+01
-1.231421000000000099e+00,5.962283999999999917e-01,1.615250000000000057e+02,5.469924000000000452e-01,2.296712000000000131e+01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.287573000000000079e+00,1.219041999999999959e+00,5.623991999999999507e+02,9.484734999999999694e-01,7.996711999999999421e+01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-3.779518000000000044e-01,2.736488999999999727e-01,3.017901000000000167e+01,2.689502999999999755e-01,5.233564000000000327e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-4.092022000000000159e-01,3.045207999999999804e-01,1.210814000000000057e+01,3.001345000000000263e-01,3.123356999999999939e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.035671999999999926e+00,8.047632000000000119e-01,2.670181999999999789e+02,6.998851999999999851e-01,3.796712000000000131e+01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.768792999999999727e-01,-7.420447999999999489e-01,-1.115171999999999919e+01,-6.881793000000000493e-01,-2.876643000000000061e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
-3.166859000000000202e-01,2.412151999999999907e-01,1.972944999999999993e+01,2.382615999999999901e-01,3.778509000000000118e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-5.223856000000000055e-01,3.479150999999999772e-01,4.171188000000000073e+01,3.385173000000000210e-01,7.233564000000000327e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.128015000000000212e-01,3.526062999999999836e-01,2.492604000000000042e+01,3.444955000000000100e-01,5.271955000000000169e+00
-6.455792000000000197e-01,4.224096999999999991e-01,2.448337000000000074e+01,4.100037999999999738e-01,5.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-1.548680999999999974e+00,7.552837999999999496e-01,5.873322000000000287e+01,6.940804000000000418e-01,1.371876999999999924e+01
-1.613011000000000028e-01,1.369450000000000112e-01,1.287970999999999933e+01,1.363352999999999926e-01,2.233565000000000023e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.285037999999999903e+00,6.120708999999999733e-01,1.685578999999999894e+02,5.593567999999999873e-01,2.396712000000000131e+01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
-5.223856000000000055e-01,3.479150999999999772e-01,4.171188000000000073e+01,3.385173000000000210e-01,7.233564000000000327e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-3.166859000000000202e-01,2.412151999999999907e-01,1.972944999999999993e+01,2.382615999999999901e-01,3.778509000000000118e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.177804000000000073e+00,5.800170999999999522e-01,1.544920999999999935e+02,5.342088000000000392e-01,2.196712000000000131e+01
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.340430999999999817e-01,-8.429710999999999732e-01,-3.418639999999999901e+01,-7.336224000000000078e-01,-5.368254000000000303e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.057348999999999761e-01,2.321660999999999864e-01,2.441257999999999839e+01,2.292598999999999887e-01,4.233564000000000327e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.504391000000000034e-01,2.552889999999999882e-01,3.586439000000000021e+01,2.510684999999999722e-01,5.631745999999999697e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.177804000000000073e+00,5.800170999999999522e-01,1.544920999999999935e+02,5.342088000000000392e-01,2.196712000000000131e+01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
-1.499505000000000088e+00,6.721719999999999917e-01,1.966894000000000062e+02,6.051195999999999797e-01,2.796712000000000131e+01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.338654999999999928e+00,6.275671000000000443e-01,1.755908000000000015e+02,5.713285999999999643e-01,2.496712000000000131e+01
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.328735000000000110e-01,1.881362000000000034e-01,1.450796000000000063e+01,1.867167000000000132e-01,2.778509000000000118e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-2.265101999999999949e-01,1.897903999999999980e-01,5.229316999999999993e+00,1.888044999999999862e-01,1.489711000000000007e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-2.328735000000000110e-01,1.881362000000000034e-01,1.450796000000000063e+01,1.867167000000000132e-01,2.778509000000000118e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.182620999999999922e-01,2.446699999999999986e-01,1.546995000000000076e+01,2.418726999999999960e-01,3.271955000000000169e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-1.613011000000000028e-01,1.369450000000000112e-01,1.287970999999999933e+01,1.363352999999999926e-01,2.233565000000000023e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-7.584670000000000023e-01,4.731780999999999904e-01,2.876460000000000150e+01,4.560671000000000030e-01,6.718768999999999991e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--7.758929999999999993e-02,-8.392910000000000648e-02,-1.791260999999999992e+00,-8.384289999999999798e-02,-5.102887999999999868e-01
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-1.124187999999999965e+00,5.634124999999999828e-01,1.474593000000000131e+02,5.209766000000000119e-01,2.096712000000000131e+01
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-4.126646999999999954e-01,2.888257000000000185e-01,4.223264000000000351e+01,2.827869000000000077e-01,6.631745999999999697e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-4.198035999999999990e-01,3.071039999999999881e-01,1.592090999999999923e+01,3.021588000000000052e-01,3.718768999999999991e+00
--3.626257999999999981e-01,-7.884961000000000331e-01,-1.762635999999999825e+01,-7.144532000000000105e-01,-3.728044999999999831e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-7.860186999999999591e-01,4.550575000000000037e-01,8.044216000000000122e+01,4.331668000000000185e-01,1.263175000000000026e+01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-3.182620999999999922e-01,2.446699999999999986e-01,1.546995000000000076e+01,2.418726999999999960e-01,3.271955000000000169e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.993416999999999772e-01,3.781156999999999990e-01,6.133740000000000236e+01,3.650679000000000007e-01,9.631745999999999697e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.406247000000000025e+00,6.850897999999999710e-01,8.760882999999999754e+01,6.294191999999999565e-01,1.677851000000000070e+01
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-8.024875999999999676e-01,4.537259000000000153e-01,1.052620000000000005e+02,4.300393000000000132e-01,1.496711999999999954e+01
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.097129999999999939e+00,6.067063999999999790e-01,4.160829999999999984e+01,5.726204000000000294e-01,9.718768999999999991e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.504391000000000034e-01,2.552889999999999882e-01,3.586439000000000021e+01,2.510684999999999722e-01,5.631745999999999697e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.126646999999999954e-01,2.888257000000000185e-01,4.223264000000000351e+01,2.827869000000000077e-01,6.631745999999999697e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--3.442172000000000009e-01,-8.265827000000000035e-01,-2.748534000000000077e+01,-7.296150999999999609e-01,-4.766435999999999673e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-3.779518000000000044e-01,2.736488999999999727e-01,3.017901000000000167e+01,2.689502999999999755e-01,5.233564000000000327e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.704108999999999874e-01,-7.664223000000000008e-01,-1.404771000000000036e+01,-7.028326000000000295e-01,-3.281231000000000009e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-2.335180000000000033e-01,1.869186999999999932e-01,1.864613999999999905e+01,1.853841999999999990e-01,3.233565000000000023e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--7.758929999999999993e-02,-8.392910000000000648e-02,-1.791260999999999992e+00,-8.384289999999999798e-02,-5.102887999999999868e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
-5.128015000000000212e-01,3.526062999999999836e-01,2.492604000000000042e+01,3.444955000000000100e-01,5.271955000000000169e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-2.335180000000000033e-01,1.869186999999999932e-01,1.864613999999999905e+01,1.853841999999999990e-01,3.233565000000000023e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.594951999999999925e+00,7.115129999999999511e-01,1.632295000000000016e+02,6.397405000000000452e-01,2.563175000000000026e+01
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
-3.182620999999999922e-01,2.446699999999999986e-01,1.546995000000000076e+01,2.418726999999999960e-01,3.271955000000000169e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-8.561043000000000402e-01,4.734012000000000220e-01,1.122947999999999951e+02,4.468011000000000066e-01,1.596711999999999954e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.388228999999999935e+00,6.925084999999999713e-01,6.747844999999999516e+01,6.396811999999999498e-01,1.427195000000000036e+01
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-3.057348999999999761e-01,2.321660999999999864e-01,2.441257999999999839e+01,2.292598999999999887e-01,4.233564000000000327e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.328735000000000110e-01,1.881362000000000034e-01,1.450796000000000063e+01,1.867167000000000132e-01,2.778509000000000118e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-5.946025000000000338e-01,3.816070999999999769e-01,4.747831999999999653e+01,3.693783999999999956e-01,8.233563999999999439e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-7.390362999999999793e-01,4.436693999999999916e-01,5.901118999999999915e+01,4.249854000000000132e-01,1.023356000000000066e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.781887000000000110e-01,2.236103000000000118e-01,8.231498000000000204e+00,2.218424999999999980e-01,2.123356999999999939e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-5.946025000000000338e-01,3.816070999999999769e-01,4.747831999999999653e+01,3.693783999999999956e-01,8.233563999999999439e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-6.952540999999999860e-01,4.122828000000000048e-01,9.119620999999999356e+01,3.940996999999999972e-01,1.296711999999999954e+01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--3.340430999999999817e-01,-8.429710999999999732e-01,-3.418639999999999901e+01,-7.336224000000000078e-01,-5.368254000000000303e+00
-1.285037999999999903e+00,6.120708999999999733e-01,1.685578999999999894e+02,5.593567999999999873e-01,2.396712000000000131e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.340430999999999817e-01,-8.429710999999999732e-01,-3.418639999999999901e+01,-7.336224000000000078e-01,-5.368254000000000303e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-3.504391000000000034e-01,2.552889999999999882e-01,3.586439000000000021e+01,2.510684999999999722e-01,5.631745999999999697e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-5.993416999999999772e-01,3.781156999999999990e-01,6.133740000000000236e+01,3.650679000000000007e-01,9.631745999999999697e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.490611000000000019e-01,1.287397000000000125e-01,9.286469000000000307e+00,1.282800000000000051e-01,1.778508999999999896e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-8.046105999999999536e-01,4.852381000000000055e-01,3.911017999999999972e+01,4.651556000000000024e-01,8.271955000000000169e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.781887000000000110e-01,2.236103000000000118e-01,8.231498000000000204e+00,2.218424999999999980e-01,2.123356999999999939e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.265101999999999949e-01,1.897903999999999980e-01,5.229316999999999993e+00,1.888044999999999862e-01,1.489711000000000007e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
-4.843106999999999829e-01,3.336759999999999726e-01,3.017242999999999853e+01,3.260801999999999867e-01,5.778508999999999673e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-3.057348999999999761e-01,2.321660999999999864e-01,2.441257999999999839e+01,2.292598999999999887e-01,4.233564000000000327e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-4.198035999999999990e-01,3.071039999999999881e-01,1.592090999999999923e+01,3.021588000000000052e-01,3.718768999999999991e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-8.347092000000000400e-01,5.212972000000000161e-01,1.927046999999999954e+01,5.025287999999999977e-01,5.489710999999999785e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-6.615674000000000277e-01,4.049112000000000267e-01,6.770565999999999462e+01,3.890915999999999819e-01,1.063175000000000026e+01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
-2.265101999999999949e-01,1.897903999999999980e-01,5.229316999999999993e+00,1.888044999999999862e-01,1.489711000000000007e+00
--3.150870000000000060e-02,-3.243279999999999774e-02,-5.675518999999999981e-01,-3.242830000000000018e-02,-1.785565000000000069e-01
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.880206999999999518e-01,3.675555999999999823e-01,7.713043999999999301e+01,3.543703999999999743e-01,1.096711999999999954e+01
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-9.097210000000000019e-01,4.924580000000000068e-01,1.193276999999999930e+02,4.628495000000000248e-01,1.696712000000000131e+01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.306096999999999619e-01,3.757487999999999939e-01,1.224989000000000061e+01,3.683927000000000174e-01,3.489710999999999785e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-1.457311000000000023e+00,7.408571999999999935e-01,4.312127999999999872e+01,6.872200000000000530e-01,1.112335999999999991e+01
--3.626257999999999981e-01,-7.884961000000000331e-01,-1.762635999999999825e+01,-7.144532000000000105e-01,-3.728044999999999831e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
-1.285037999999999903e+00,6.120708999999999733e-01,1.685578999999999894e+02,5.593567999999999873e-01,2.396712000000000131e+01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-4.198035999999999990e-01,3.071039999999999881e-01,1.592090999999999923e+01,3.021588000000000052e-01,3.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-6.100712000000000357e-01,3.999677999999999845e-01,2.965409000000000006e+01,3.883282000000000123e-01,6.271955000000000169e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-2.464605000000000157e+00,8.977926999999999991e-01,3.232812999999999874e+02,7.615865000000000551e-01,4.596712000000000131e+01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.882135000000000113e-01,2.192947000000000091e-01,2.949614000000000047e+01,2.165885999999999922e-01,4.631745999999999697e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-2.882135000000000113e-01,2.192947000000000091e-01,2.949614000000000047e+01,2.165885999999999922e-01,4.631745999999999697e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-2.328735000000000110e-01,1.881362000000000034e-01,1.450796000000000063e+01,1.867167000000000132e-01,2.778509000000000118e+00
-1.016953999999999914e+00,5.289095999999999798e-01,1.333934999999999889e+02,4.930320000000000258e-01,1.896712000000000131e+01
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-8.561043000000000402e-01,4.734012000000000220e-01,1.122947999999999951e+02,4.468011000000000066e-01,1.596711999999999954e+01
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.360926000000000080e+00,9.532880999999999716e-01,1.147588999999999970e+02,8.341511999999999816e-01,2.427195999999999998e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-7.357477999999999518e-01,4.493267000000000233e-01,4.583691000000000315e+01,4.316189000000000275e-01,8.778508999999999673e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.285037999999999903e+00,6.120708999999999733e-01,1.685578999999999894e+02,5.593567999999999873e-01,2.396712000000000131e+01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-9.556869999999999532e-01,5.264929999999999888e-01,7.631049000000000149e+01,4.965496999999999828e-01,1.323356000000000066e+01
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.166859000000000202e-01,2.412151999999999907e-01,1.972944999999999993e+01,2.382615999999999901e-01,3.778509000000000118e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.940280000000000060e-01,1.638978000000000101e-01,7.358446999999999960e+00,1.631224000000000007e-01,1.718768999999999991e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-2.335180000000000033e-01,1.869186999999999932e-01,1.864613999999999905e+01,1.853841999999999990e-01,3.233565000000000023e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-4.843106999999999829e-01,3.336759999999999726e-01,3.017242999999999853e+01,3.260801999999999867e-01,5.778508999999999673e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-8.114019999999999566e-02,7.508189999999999309e-02,3.077214999999999812e+00,7.500660000000000660e-02,7.187687999999999855e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-1.015365000000000018e-01,9.059150000000000535e-02,1.039137000000000022e+01,9.039529999999999788e-02,1.631745999999999919e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-5.993416999999999772e-01,3.781156999999999990e-01,6.133740000000000236e+01,3.650679000000000007e-01,9.631745999999999697e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-1.613011000000000028e-01,1.369450000000000112e-01,1.287970999999999933e+01,1.363352999999999926e-01,2.233565000000000023e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.128015000000000212e-01,3.526062999999999836e-01,2.492604000000000042e+01,3.444955000000000100e-01,5.271955000000000169e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.785600000000000076e-01,2.895545999999999953e-01,8.739604999999999180e+00,2.861164999999999958e-01,2.489710999999999785e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-6.952540999999999860e-01,4.122828000000000048e-01,9.119620999999999356e+01,3.940996999999999972e-01,1.296711999999999954e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.335180000000000033e-01,1.869186999999999932e-01,1.864613999999999905e+01,1.853841999999999990e-01,3.233565000000000023e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.538131999999999944e-01,-8.084837999999999747e-01,-2.204247000000000156e+01,-7.233001999999999487e-01,-4.221491000000000327e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--7.758929999999999993e-02,-8.392910000000000648e-02,-1.791260999999999992e+00,-8.384289999999999798e-02,-5.102887999999999868e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.575231000000000048e-01,-3.767781000000000047e-01,-9.766479000000000354e+00,-3.678354999999999819e-01,-2.281231000000000009e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-1.237227000000000049e-01,1.098284000000000066e-01,6.013860000000000205e+00,1.095689999999999997e-01,1.271954999999999947e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.748903999999999903e-01,3.202871999999999941e-01,4.860088999999999970e+01,3.121535999999999755e-01,7.631745999999999697e+00
--3.704108999999999874e-01,-7.664223000000000008e-01,-1.404771000000000036e+01,-7.028326000000000295e-01,-3.281231000000000009e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.338654999999999928e+00,6.275671000000000443e-01,1.755908000000000015e+02,5.713285999999999643e-01,2.496712000000000131e+01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-4.843106999999999829e-01,3.336759999999999726e-01,3.017242999999999853e+01,3.260801999999999867e-01,5.778508999999999673e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-4.155318000000000067e-01,3.011784000000000128e-01,2.019800000000000040e+01,2.960405999999999871e-01,4.271955000000000169e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-2.335180000000000033e-01,1.869186999999999932e-01,1.864613999999999905e+01,1.853841999999999990e-01,3.233565000000000023e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.209924000000000055e-01,1.816222999999999865e-01,1.074191000000000074e+01,1.804622999999999922e-01,2.271955000000000169e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--7.758929999999999993e-02,-8.392910000000000648e-02,-1.791260999999999992e+00,-8.384289999999999798e-02,-5.102887999999999868e-01
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--2.720002999999999727e-01,-4.618575999999999793e-01,-2.171891000000000105e+01,-4.409649999999999959e-01,-3.766434999999999977e+00
-6.416374000000000244e-01,3.903728000000000198e-01,8.416331999999999880e+01,3.747579999999999800e-01,1.196711999999999954e+01
-3.069158000000000164e-01,2.400239000000000122e-01,1.163968000000000025e+01,2.376232000000000066e-01,2.718768999999999991e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-1.613011000000000028e-01,1.369450000000000112e-01,1.287970999999999933e+01,1.363352999999999926e-01,2.233565000000000023e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
-2.328735000000000110e-01,1.881362000000000034e-01,1.450796000000000063e+01,1.867167000000000132e-01,2.778509000000000118e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--7.081669999999999632e-02,-7.699219999999999675e-02,-3.442229999999999901e+00,-7.690260000000000151e-02,-7.280450000000000532e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
-3.166859000000000202e-01,2.412151999999999907e-01,1.972944999999999993e+01,2.382615999999999901e-01,3.778509000000000118e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-3.166859000000000202e-01,2.412151999999999907e-01,1.972944999999999993e+01,2.382615999999999901e-01,3.778509000000000118e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-1.588324999999999987e+00,7.818207000000000351e-01,4.699792000000000058e+01,7.199986999999999915e-01,1.212335999999999991e+01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-9.633376999999999635e-01,5.109462000000000170e-01,1.263606000000000051e+02,4.782426000000000177e-01,1.796712000000000131e+01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-1.231421000000000099e+00,5.962283999999999917e-01,1.615250000000000057e+02,5.469924000000000452e-01,2.296712000000000131e+01
-1.750072999999999990e+00,7.672717999999999483e-01,1.397412999999999954e+02,6.867594999999999672e-01,2.423356000000000066e+01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-4.271706000000000114e-01,2.924977000000000271e-01,5.603179999999999694e+01,2.856206000000000023e-01,7.967119000000000284e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-5.344039999999999901e-01,3.437256000000000200e-01,7.009756000000000142e+01,3.328170999999999768e-01,9.967119000000000284e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-6.826594999999999747e-01,4.521999999999999909e-01,1.576018000000000008e+01,4.396634999999999849e-01,4.489710999999999785e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
--3.704108999999999874e-01,-7.664223000000000008e-01,-1.404771000000000036e+01,-7.028326000000000295e-01,-3.281231000000000009e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.023760999999999977e-01,-1.169676000000000049e-01,-6.378002999999999645e+00,-1.166221999999999953e-01,-1.221491000000000104e+00
-1.637620999999999938e-01,1.377533999999999981e-01,1.675963000000000136e+01,1.370690999999999993e-01,2.631746000000000141e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-4.126646999999999954e-01,2.888257000000000185e-01,4.223264000000000351e+01,2.827869000000000077e-01,6.631745999999999697e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-8.024875999999999676e-01,4.537259000000000153e-01,1.052620000000000005e+02,4.300393000000000132e-01,1.496711999999999954e+01
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-6.524870000000000669e-02,6.086860000000000187e-02,4.064979000000000120e+00,6.081969999999999738e-02,7.785092000000000123e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.997833999999999999e-01,-2.769826000000000232e-01,-1.595246999999999993e+01,-2.721155000000000102e-01,-2.766434999999999977e+00
-2.259877999999999887e-01,1.803413000000000099e-01,2.312788000000000110e+01,1.788202000000000125e-01,3.631746000000000141e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-8.024875999999999676e-01,4.537259000000000153e-01,1.052620000000000005e+02,4.300393000000000132e-01,1.496711999999999954e+01
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--1.148520999999999986e-01,-1.305588000000000026e-01,-3.398429999999999840e+00,-1.302020000000000122e-01,-8.766426000000000496e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--2.458656999999999926e-01,-3.423031000000000268e-01,-7.275072999999999901e+00,-3.361348000000000114e-01,-1.876643000000000061e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-3.199371999999999772e-01,2.353204999999999880e-01,4.196603999999999957e+01,2.316601000000000077e-01,5.967119000000000284e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-4.807872999999999730e-01,3.187570000000000126e-01,6.306468000000000274e+01,3.099567999999999768e-01,8.967119000000000284e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-8.908420000000000227e-02,8.085470000000000157e-02,7.113269999999999982e+00,8.072830000000000283e-02,1.233564000000000105e+00
--5.534959999999999880e-02,-5.944060000000000316e-02,-4.419599999999999973e+00,-5.939030000000000004e-02,-7.664353999999999889e-01
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
-1.471751000000000031e-01,1.295917000000000041e-01,4.354854999999999698e+00,1.292426999999999881e-01,1.123356999999999939e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.095917999999999948e-01,-3.053681999999999785e-01,-2.144988999999999990e+01,-2.982766000000000028e-01,-3.368253999999999859e+00
--1.275664999999999993e-01,-1.531653000000000042e-01,-1.018604000000000021e+01,-1.523148000000000002e-01,-1.766435999999999895e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--8.514049999999999396e-02,-9.608629999999999949e-02,-8.713387000000000882e+00,-9.585240000000000427e-02,-1.368254000000000081e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-2.127037999999999984e-01,1.700770000000000060e-01,2.790027999999999864e+01,1.686673999999999951e-01,3.967118999999999840e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--2.700007999999999853e-01,-4.362619999999999831e-01,-1.682097999999999871e+01,-4.199611999999999790e-01,-3.221490999999999882e+00
-3.931079999999999991e-02,3.749500000000000055e-02,4.023120999999999725e+00,3.748100000000000043e-02,6.317464000000000413e-01
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
--1.763000000000000027e-03,-1.767099999999999964e-03,-2.312481999999999871e-01,-1.767099999999999964e-03,-3.288100000000000050e-02
-3.214184999999999959e-01,2.562717999999999940e-01,5.789560999999999957e+00,2.540935000000000277e-01,1.821444000000000063e+00
-1.613011000000000028e-01,1.369450000000000112e-01,1.287970999999999933e+01,1.363352999999999926e-01,2.233565000000000023e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-7.446049999999999891e-02,6.975370000000000181e-02,1.719028000000000000e+00,6.970410000000000494e-02,4.897112000000000132e-01
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-6.712293999999999761e-01,4.405321999999999849e-01,1.986142999999999859e+01,4.277753999999999723e-01,5.123357000000000383e+00
-3.735538999999999943e-01,2.647622000000000031e-01,4.899891999999999825e+01,2.596048000000000244e-01,6.967119000000000284e+00
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.856369999999999895e-02,-1.897039999999999837e-02,-1.156511999999999984e+00,-1.896890000000000034e-02,-2.214907999999999877e-01
-7.488707999999999476e-01,4.333751000000000131e-01,9.822908999999999935e+01,4.124975000000000169e-01,1.396711999999999954e+01
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
-1.590871000000000091e-01,1.334141000000000077e-01,2.086739999999999995e+01,1.327278000000000069e-01,2.967118999999999840e+00
-2.663205000000000156e-01,2.038828000000000029e-01,3.493316000000000088e+01,2.014776000000000067e-01,4.967119000000000284e+00
-1.392271000000000036e+00,6.427372999999999559e-01,1.826237000000000137e+02,5.829320000000000057e-01,2.596712000000000131e+01
--3.174760000000000082e-02,-3.284469999999999751e-02,-1.204015999999999975e+00,-3.283839999999999676e-02,-2.812312000000000145e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--2.698464999999999892e-01,-5.060208000000000483e-01,-3.539565000000000339e+01,-4.741587999999999914e-01,-5.032880999999999716e+00
--2.718173999999999868e-01,-4.850342999999999738e-01,-2.781814999999999927e+01,-4.589498000000000189e-01,-4.368254000000000303e+00
--1.680863999999999969e-01,-2.110146999999999995e-01,-8.170275000000000176e+00,-2.092063000000000117e-01,-1.728045000000000053e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
--1.626131000000000104e-01,-2.156214999999999937e-01,-2.132988999999999891e+01,-2.127870000000000039e-01,-3.032881000000000160e+00
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
--1.446353999999999973e-01,-1.727818999999999883e-01,-5.485247000000000206e+00,-1.718746999999999914e-01,-1.281231000000000009e+00
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
-1.054704000000000058e-01,9.323439999999999506e-02,1.383450999999999986e+01,9.299849999999999783e-02,1.967119000000000062e+00
--2.653560999999999837e-01,-4.079950999999999994e-01,-1.289832000000000001e+01,-3.956779000000000268e-01,-2.728044999999999831e+00
-1.686729999999999827e-02,1.653570000000000040e-02,1.346835000000000004e+00,1.653469999999999940e-02,2.335645000000000082e-01
--2.291479999999999906e-02,-2.360759999999999942e-02,-2.345133000000000134e+00,-2.360409999999999939e-02,-3.682536000000000143e-01
--1.861885000000000068e-01,-2.456345000000000056e-01,-1.159948999999999941e+01,-2.425192999999999932e-01,-2.221490999999999882e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--3.234632000000000063e-01,-8.578107000000000371e-01,-4.242853999999999814e+01,-7.355306999999999817e-01,-6.032880999999999716e+00
-5.185370000000000257e-02,4.861850000000000199e-02,6.801632999999999818e+00,4.858490000000000031e-02,9.671189999999999509e-01
--1.473660999999999999e-01,-1.859422000000000019e-01,-1.508164000000000016e+01,-1.842772000000000021e-01,-2.368253999999999859e+00
--5.537969999999999698e-02,-5.995720000000000216e-02,-7.264128999999999614e+00,-5.989420000000000160e-02,-1.032880999999999938e+00
--1.089963999999999933e-01,-1.292687999999999893e-01,-1.429701000000000022e+01,-1.286440000000000083e-01,-2.032881000000000160e+00
-1.616149999999999878e-02,1.591029999999999875e-02,4.782123999999999819e-01,1.590969999999999884e-02,1.233574000000000059e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
-2.645300000000000082e-02,2.572349999999999984e-02,1.285814999999999930e+00,2.572019999999999862e-02,2.719550000000000023e-01
--2.162297999999999998e-01,-3.310713000000000128e-01,-2.836277000000000115e+01,-3.212660999999999989e-01,-4.032880999999999716e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-1.300315000000000110e+00,6.395863000000000520e-01,1.056401999999999930e+02,5.889130000000000198e-01,1.819352999999999909e+01
-6.570736000000000354e-01,4.088127999999999762e-01,5.338195000000000334e+01,3.938633999999999746e-01,9.193530000000000868e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-6.286910999999999472e-01,4.369408000000000181e-01,8.989627999999999730e+00,4.274471000000000243e-01,3.101843999999999824e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-3.104094000000000020e-01,2.372537999999999869e-01,1.967583000000000126e+01,2.344215000000000049e-01,3.742258000000000084e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.192853999999999998e-01,1.062562999999999980e-01,5.899335999999999913e+00,1.060197999999999974e-01,1.239130000000000065e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.838129999999999598e-02,8.266170000000000462e-02,9.860126000000000168e-01,8.260000000000000675e-02,3.757281000000000093e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-4.888877999999999835e-01,3.570679999999999965e-01,8.959749999999999659e+00,3.512596000000000052e-01,2.799376000000000086e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-6.570736000000000354e-01,4.088127999999999762e-01,5.338195000000000334e+01,3.938633999999999746e-01,9.193530000000000868e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-8.313741999999999521e-01,5.349441000000000335e-01,1.188777999999999935e+01,5.179964000000000235e-01,4.101843999999999824e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-3.933564999999999978e-01,2.852238999999999747e-01,2.493356999999999957e+01,2.803706999999999727e-01,4.742257999999999640e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.192853999999999998e-01,1.062562999999999980e-01,5.899335999999999913e+00,1.060197999999999974e-01,1.239130000000000065e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
-4.014878000000000058e-01,2.998151000000000010e-01,1.208713999999999977e+01,2.955962999999999785e-01,3.096442999999999834e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--3.847240000000000104e-01,-6.549530000000000074e-01,-5.501152000000000264e+00,-6.250449000000000144e-01,-1.898155999999999954e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--3.847240000000000104e-01,-6.549530000000000074e-01,-5.501152000000000264e+00,-6.250449000000000144e-01,-1.898155999999999954e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-4.260081000000000007e-01,3.243348999999999815e-01,6.091472000000000442e+00,3.203501999999999739e-01,2.101843999999999824e+00
-4.260081000000000007e-01,3.243348999999999815e-01,6.091472000000000442e+00,3.203501999999999739e-01,2.101843999999999824e+00
-4.763035999999999937e-01,3.292964999999999920e-01,3.019131000000000142e+01,3.219368000000000229e-01,5.742257999999999640e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
-6.570736000000000354e-01,4.088127999999999762e-01,5.338195000000000334e+01,3.938633999999999746e-01,9.193530000000000868e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-2.205042999999999864e-01,1.853983999999999910e-01,5.179479999999999862e+00,1.844724000000000086e-01,1.465340000000000087e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-5.311487999999999765e-01,3.710235000000000061e-01,1.599070000000000036e+01,3.631816999999999962e-01,4.096442999999999834e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-4.888877999999999835e-01,3.570679999999999965e-01,8.959749999999999659e+00,3.512596000000000052e-01,2.799376000000000086e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.214642000000000444e-01,3.705520999999999954e-01,1.224879999999999924e+01,3.634404999999999997e-01,3.465339999999999865e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-6.719441999999999915e-01,4.466444999999999999e-01,1.578345999999999982e+01,4.344651999999999958e-01,4.465340999999999561e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-3.118162999999999907e-01,2.405453999999999926e-01,1.542107999999999990e+01,2.378666000000000114e-01,3.239129999999999843e+00
-3.004263999999999823e-01,2.357630000000000003e-01,1.159234999999999971e+01,2.334703999999999946e-01,2.689045999999999825e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-3.709842999999999891e-01,2.847433999999999799e-01,8.714138999999999413e+00,2.814483999999999875e-01,2.465339999999999865e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-2.205042999999999864e-01,1.853983999999999910e-01,5.179479999999999862e+00,1.844724000000000086e-01,1.465340000000000087e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--3.847240000000000104e-01,-6.549530000000000074e-01,-5.501152000000000264e+00,-6.250449000000000144e-01,-1.898155999999999954e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-2.274623000000000062e-01,1.844012999999999902e-01,1.441808999999999941e+01,1.830546000000000118e-01,2.742258000000000084e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-1.157372999999999985e+00,5.945905999999999691e-01,9.402724000000000615e+01,5.528035999999999506e-01,1.619352999999999909e+01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.657672000000000034e+00,7.417468000000000394e-01,1.346725000000000136e+02,6.674476000000000298e-01,2.319352999999999909e+01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-5.214642000000000444e-01,3.705520999999999954e-01,1.224879999999999924e+01,3.634404999999999997e-01,3.465339999999999865e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-4.260081000000000007e-01,3.243348999999999815e-01,6.091472000000000442e+00,3.203501999999999739e-01,2.101843999999999824e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-3.709842999999999891e-01,2.847433999999999799e-01,8.714138999999999413e+00,2.814483999999999875e-01,2.465339999999999865e+00
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-9.429589000000000443e-01,5.212812000000000001e-01,7.660783000000000698e+01,4.919637000000000038e-01,1.319353000000000087e+01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-4.014878000000000058e-01,2.998151000000000010e-01,1.208713999999999977e+01,2.955962999999999785e-01,3.096442999999999834e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-5.214642000000000444e-01,3.705520999999999954e-01,1.224879999999999924e+01,3.634404999999999997e-01,3.465339999999999865e+00
-6.286910999999999472e-01,4.369408000000000181e-01,8.989627999999999730e+00,4.274471000000000243e-01,3.101843999999999824e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
-6.570736000000000354e-01,4.088127999999999762e-01,5.338195000000000334e+01,3.938633999999999746e-01,9.193530000000000868e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
-5.238709000000000282e-01,3.625683000000000100e-01,2.021425999999999945e+01,3.545109000000000177e-01,4.689046000000000269e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-1.085901000000000005e+00,5.710009999999999808e-01,8.822077000000000169e+01,5.334980000000000278e-01,1.519353000000000087e+01
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-8.714876000000000289e-01,4.949724999999999819e-01,7.080136000000000251e+01,4.695261000000000018e-01,1.219353000000000087e+01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-1.872085999999999917e+00,7.974563000000000068e-01,1.520919000000000096e+02,7.082998999999999823e-01,2.619352999999999909e+01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
-1.872085999999999917e+00,7.974563000000000068e-01,1.520919000000000096e+02,7.082998999999999823e-01,2.619352999999999909e+01
-1.443257999999999930e+00,6.820456000000000296e-01,1.172531000000000034e+02,6.221303999999999723e-01,2.019352999999999909e+01
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-4.014878000000000058e-01,2.998151000000000010e-01,1.208713999999999977e+01,2.955962999999999785e-01,3.096442999999999834e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
-5.238709000000000282e-01,3.625683000000000100e-01,2.021425999999999945e+01,3.545109000000000177e-01,4.689046000000000269e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-1.014429999999999943e+00,5.465919999999999668e-01,8.241431000000000040e+01,5.132501999999999898e-01,1.419353000000000087e+01
-1.014429999999999943e+00,5.465919999999999668e-01,8.241431000000000040e+01,5.132501999999999898e-01,1.419353000000000087e+01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-2.155508999999999897e-01,1.777640000000000053e-01,1.066020999999999930e+01,1.766681999999999975e-01,2.239129999999999843e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
-4.888877999999999835e-01,3.570679999999999965e-01,8.959749999999999659e+00,3.512596000000000052e-01,2.799376000000000086e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--3.847240000000000104e-01,-6.549530000000000074e-01,-5.501152000000000264e+00,-6.250449000000000144e-01,-1.898155999999999954e+00
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-3.118162999999999907e-01,2.405453999999999926e-01,1.542107999999999990e+01,2.378666000000000114e-01,3.239129999999999843e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--3.531673000000000173e-01,-8.098043000000000324e-01,-2.238610999999999862e+01,-7.238196999999999548e-01,-4.257742000000000360e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-3.004263999999999823e-01,2.357630000000000003e-01,1.159234999999999971e+01,2.334703999999999946e-01,2.689045999999999825e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-5.592506999999999895e-01,3.701822000000000168e-01,3.544904999999999973e+01,3.598837999999999759e-01,6.742257999999999640e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.718267999999999796e-01,2.192536999999999958e-01,8.183585000000000775e+00,2.175746000000000069e-01,2.096442999999999834e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-4.121486999999999790e-01,3.025489000000000095e-01,1.590330999999999939e+01,2.977831000000000228e-01,3.689045999999999825e+00
-8.000163000000000135e-01,4.675525999999999849e-01,6.499490000000000123e+01,4.458055000000000212e-01,1.119353000000000087e+01
-9.429589000000000443e-01,5.212812000000000001e-01,7.660783000000000698e+01,4.919637000000000038e-01,1.319353000000000087e+01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-3.709842999999999891e-01,2.847433999999999799e-01,8.714138999999999413e+00,2.814483999999999875e-01,2.465339999999999865e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.043473000000000539e-01,3.479948999999999959e-01,2.494282000000000110e+01,3.401349000000000178e-01,5.239130000000000287e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.468454999999999899e-01,-1.682093000000000060e-01,-1.638258999999999910e+00,-1.676931999999999867e-01,-6.242718999999999907e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-6.635294999999999943e-01,4.486716000000000037e-01,1.216037000000000035e+01,4.374240999999999824e-01,3.799376000000000086e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.872085999999999917e+00,7.974563000000000068e-01,1.520919000000000096e+02,7.082998999999999823e-01,2.619352999999999909e+01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-4.763035999999999937e-01,3.292964999999999920e-01,3.019131000000000142e+01,3.219368000000000229e-01,5.742257999999999640e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-6.006126999999999994e-01,3.951312000000000157e-01,2.970369000000000170e+01,3.838162999999999991e-01,6.239130000000000287e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
-2.086500000000000021e+00,8.498464000000000018e-01,1.695114000000000090e+02,7.454885999999999457e-01,2.919352999999999909e+01
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--3.843208000000000180e-01,-6.875609000000000304e-01,-7.043370999999999604e+00,-6.502666000000000279e-01,-2.200623999999999914e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-4.014878000000000058e-01,2.998151000000000010e-01,1.208713999999999977e+01,2.955962999999999785e-01,3.096442999999999834e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
-3.933564999999999978e-01,2.852238999999999747e-01,2.493356999999999957e+01,2.803706999999999727e-01,4.742257999999999640e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-7.251448000000000338e-01,4.443860000000000032e-01,4.596453000000000344e+01,4.271111000000000213e-01,8.742257999999999640e+00
-2.233250999999999986e-01,1.900940000000000130e-01,3.193315999999999821e+00,1.892741000000000007e-01,1.101844000000000046e+00
-2.718267999999999796e-01,2.192536999999999958e-01,8.183585000000000775e+00,2.175746000000000069e-01,2.096442999999999834e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-2.205042999999999864e-01,1.853983999999999910e-01,5.179479999999999862e+00,1.844724000000000086e-01,1.465340000000000087e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-1.192853999999999998e-01,1.062562999999999980e-01,5.899335999999999913e+00,1.060197999999999974e-01,1.239130000000000065e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
-1.800615000000000077e+00,7.792843999999999882e-01,1.462855000000000132e+02,6.951243000000000283e-01,2.519352999999999909e+01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--3.843208000000000180e-01,-6.875609000000000304e-01,-7.043370999999999604e+00,-6.502666000000000279e-01,-2.200623999999999914e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-2.233250999999999986e-01,1.900940000000000130e-01,3.193315999999999821e+00,1.892741000000000007e-01,1.101844000000000046e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-3.004263999999999823e-01,2.357630000000000003e-01,1.159234999999999971e+01,2.334703999999999946e-01,2.689045999999999825e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.435247000000000162e-01,-8.277782999999999669e-01,-2.790861999999999910e+01,-7.299666999999999684e-01,-4.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.274623000000000062e-01,1.844012999999999902e-01,1.441808999999999941e+01,1.830546000000000118e-01,2.742258000000000084e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-6.286910999999999472e-01,4.369408000000000181e-01,8.989627999999999730e+00,4.274471000000000243e-01,3.101843999999999824e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-6.286910999999999472e-01,4.369408000000000181e-01,8.989627999999999730e+00,4.274471000000000243e-01,3.101843999999999824e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.157372999999999985e+00,5.945905999999999691e-01,9.402724000000000615e+01,5.528035999999999506e-01,1.619352999999999909e+01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-3.709842999999999891e-01,2.847433999999999799e-01,8.714138999999999413e+00,2.814483999999999875e-01,2.465339999999999865e+00
--3.814154000000000155e-01,-7.170872999999999831e-01,-8.959158999999999651e+00,-6.715801000000000132e-01,-2.534660000000000135e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-2.718267999999999796e-01,2.192536999999999958e-01,8.183585000000000775e+00,2.175746000000000069e-01,2.096442999999999834e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--3.847240000000000104e-01,-6.549530000000000074e-01,-5.501152000000000264e+00,-6.250449000000000144e-01,-1.898155999999999954e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
-8.000163000000000135e-01,4.675525999999999849e-01,6.499490000000000123e+01,4.458055000000000212e-01,1.119353000000000087e+01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-8.714876000000000289e-01,4.949724999999999819e-01,7.080136000000000251e+01,4.695261000000000018e-01,1.219353000000000087e+01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-6.286910999999999472e-01,4.369408000000000181e-01,8.989627999999999730e+00,4.274471000000000243e-01,3.101843999999999824e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-1.157372999999999985e+00,5.945905999999999691e-01,9.402724000000000615e+01,5.528035999999999506e-01,1.619352999999999909e+01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-1.085901000000000005e+00,5.710009999999999808e-01,8.822077000000000169e+01,5.334980000000000278e-01,1.519353000000000087e+01
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-4.121486999999999790e-01,3.025489000000000095e-01,1.590330999999999939e+01,2.977831000000000228e-01,3.689045999999999825e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
-4.260081000000000007e-01,3.243348999999999815e-01,6.091472000000000442e+00,3.203501999999999739e-01,2.101843999999999824e+00
-1.157372999999999985e+00,5.945905999999999691e-01,9.402724000000000615e+01,5.528035999999999506e-01,1.619352999999999909e+01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-1.445152000000000103e-01,1.252460999999999991e-01,9.160344000000000264e+00,1.248196000000000028e-01,1.742258000000000084e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-8.838129999999999598e-02,8.266170000000000462e-02,9.860126000000000168e-01,8.260000000000000675e-02,3.757281000000000093e-01
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.192853999999999998e-01,1.062562999999999980e-01,5.899335999999999913e+00,1.060197999999999974e-01,1.239130000000000065e+00
-3.004263999999999823e-01,2.357630000000000003e-01,1.159234999999999971e+01,2.334703999999999946e-01,2.689045999999999825e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-2.301989999999999939e-02,2.246269999999999864e-02,1.138465999999999978e+00,2.246050000000000130e-02,2.391298000000000035e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-5.856023000000000200e-01,3.771333000000000046e-01,4.757549000000000206e+01,3.652315999999999896e-01,8.193530000000000868e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-1.421659000000000117e-01,1.256146999999999958e-01,4.280027999999999722e+00,1.252946000000000060e-01,1.096443000000000056e+00
-1.228844000000000047e+00,6.174317999999999751e-01,9.983371999999999957e+01,5.712509000000000059e-01,1.719352999999999909e+01
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-5.238709000000000282e-01,3.625683000000000100e-01,2.021425999999999945e+01,3.545109000000000177e-01,4.689046000000000269e+00
-6.355933000000000277e-01,4.173168999999999906e-01,2.452522000000000091e+01,4.052556999999999965e-01,5.689046000000000269e+00
--2.657764000000000237e-01,-4.100574000000000163e-01,-1.314414000000000016e+01,-3.974823000000000106e-01,-2.760870000000000157e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--3.620419000000000276e-01,-7.899543999999999455e-01,-1.790501000000000076e+01,-7.151566999999999785e-01,-3.760870000000000157e+00
-3.004263999999999823e-01,2.357630000000000003e-01,1.159234999999999971e+01,2.334703999999999946e-01,2.689045999999999825e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-3.933564999999999978e-01,2.852238999999999747e-01,2.493356999999999957e+01,2.803706999999999727e-01,4.742257999999999640e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-2.052297999999999956e+00,8.591706999999999539e-01,1.300884000000000071e+02,7.594912999999999803e-01,2.474226000000000170e+01
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.309354999999999880e-01,-3.070077999999999974e-01,-5.424498999999999960e+00,-3.028983000000000092e-01,-1.534659999999999913e+00
-6.570736000000000354e-01,4.088127999999999762e-01,5.338195000000000334e+01,3.938633999999999746e-01,9.193530000000000868e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
-1.187454999999999927e+00,6.717912999999999801e-01,2.176225000000000165e+01,6.367920000000000247e-01,6.799375999999999642e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
-1.567745000000000111e-01,1.335630999999999902e-01,1.273667000000000016e+01,1.329933000000000087e-01,2.193529999999999980e+00
-6.156819999999999654e-02,5.763419999999999654e-02,3.902601999999999904e+00,5.759229999999999905e-02,7.422581999999999791e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-4.080817999999999945e-01,2.968036000000000008e-01,2.018195000000000050e+01,2.918473999999999791e-01,4.239130000000000287e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-7.002440000000000053e-02,6.582540000000000613e-02,1.644819999999999949e+00,6.578340000000000576e-02,4.653404999999999903e-01
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-3.104094000000000020e-01,2.372537999999999869e-01,1.967583000000000126e+01,2.344215000000000049e-01,3.742258000000000084e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
-4.260081000000000007e-01,3.243348999999999815e-01,6.091472000000000442e+00,3.203501999999999739e-01,2.101843999999999824e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-8.530319999999999570e-02,7.769130000000000480e-02,6.930196999999999719e+00,7.757830000000000281e-02,1.193529999999999980e+00
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.503730000000000039e-02,-3.618989999999999707e-02,-6.421223000000000347e-01,-3.618360000000000326e-02,-2.006240999999999997e-01
-2.718267999999999796e-01,2.192536999999999958e-01,8.183585000000000775e+00,2.175746000000000069e-01,2.096442999999999834e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--3.531673000000000173e-01,-8.098043000000000324e-01,-2.238610999999999862e+01,-7.238196999999999548e-01,-4.257742000000000360e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-2.229442000000000146e+00,8.831845999999999863e-01,1.811243000000000052e+02,7.685497999999999497e-01,3.119352999999999909e+01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-3.711883999999999739e-01,2.696834000000000175e-01,3.015607999999999933e+01,2.651503000000000054e-01,5.193529999999999980e+00
-7.285449999999999982e-01,4.388867000000000185e-01,5.918842999999999677e+01,4.206465999999999816e-01,1.019353000000000087e+01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
--3.820721999999999730e-01,-6.189419000000000448e-01,-4.262531000000000070e+00,-5.955721999999999960e-01,-1.624271999999999938e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--2.702202000000000215e-01,-4.381294000000000022e-01,-1.712836000000000070e+01,-4.215282000000000195e-01,-3.257741999999999916e+00
--7.324550000000000505e-02,-7.990869999999999918e-02,-3.622403999999999957e+00,-7.980790000000000106e-02,-7.608702000000000520e-01
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-8.313741999999999521e-01,5.349441000000000335e-01,1.188777999999999935e+01,5.179964000000000235e-01,4.101843999999999824e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-2.205042999999999864e-01,1.853983999999999910e-01,5.179479999999999862e+00,1.844724000000000086e-01,1.465340000000000087e+00
-2.064210000000000003e-02,2.028869999999999979e-02,2.951598999999999751e-01,2.028759999999999938e-02,1.018440000000000040e-01
--1.695109999999999950e-01,-2.135405999999999971e-01,-8.383274000000000115e+00,-2.116547000000000012e-01,-1.760869999999999935e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
-5.141310000000000047e-01,3.436040000000000205e-01,4.176901999999999759e+01,3.344771000000000272e-01,7.193529999999999980e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
-2.155508999999999897e-01,1.777640000000000053e-01,1.066020999999999930e+01,1.766681999999999975e-01,2.239129999999999843e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
-2.155508999999999897e-01,1.777640000000000053e-01,1.066020999999999930e+01,1.766681999999999975e-01,2.239129999999999843e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.468454999999999899e-01,-1.682093000000000060e-01,-1.638258999999999910e+00,-1.676931999999999867e-01,-6.242718999999999907e-01
--8.045549999999999924e-02,-8.733109999999999484e-02,-1.889839000000000047e+00,-8.723329999999999973e-02,-5.346594999999999542e-01
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
--2.137889999999999929e-02,-2.192300000000000151e-02,-1.355140000000000011e+00,-2.192070000000000130e-02,-2.577418000000000209e-01
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
-7.698180000000000300e-02,7.148079999999999712e-02,2.970444000000000084e+00,7.141540000000000388e-02,6.890456999999999832e-01
--1.464628000000000041e-01,-1.755713000000000135e-01,-5.651463999999999821e+00,-1.746134000000000019e-01,-1.310953999999999953e+00
--2.096791000000000071e-01,-2.652512000000000203e-01,-3.842745999999999995e+00,-2.628233999999999848e-01,-1.200623999999999914e+00
--3.699073999999999973e-01,-7.680327999999999600e-01,-1.427336999999999989e+01,-7.037377000000000216e-01,-3.310954000000000175e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
--3.764779999999999793e-01,-7.438232999999999651e-01,-1.133419999999999916e+01,-6.893046000000000451e-01,-2.903557000000000166e+00
--2.581851000000000007e-01,-3.790555999999999925e-01,-9.962419000000000580e+00,-3.698974999999999902e-01,-2.310954000000000175e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--3.474050000000000055e-02,-3.606560000000000321e-02,-1.340510000000000090e+00,-3.605719999999999759e-02,-3.109543000000000168e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-2.997171000000000141e-01,2.283850000000000047e-01,2.434960999999999842e+01,2.255968999999999891e-01,4.193529999999999980e+00
--1.171559999999999963e-01,-1.336393999999999915e-01,-3.527085000000000026e+00,-1.332541999999999893e-01,-9.035568000000000488e-01
--3.531673000000000173e-01,-8.098043000000000324e-01,-2.238610999999999862e+01,-7.238196999999999548e-01,-4.257742000000000360e+00
--2.468170000000000086e-01,-3.448183000000000220e-01,-7.430641999999999747e+00,-3.384757999999999933e-01,-1.903556999999999944e+00
-1.887041000000000135e-01,1.599530000000000118e-01,7.281399000000000399e+00,1.592269000000000045e-01,1.689046000000000047e+00
-1.192853999999999998e-01,1.062562999999999980e-01,5.899335999999999913e+00,1.060197999999999974e-01,1.239130000000000065e+00
-1.250489999999999935e-02,1.235319999999999994e-02,3.764715000000000145e-01,1.235289999999999999e-02,9.644320000000000670e-02
-2.282457999999999987e-01,1.833316999999999863e-01,1.854314000000000107e+01,1.818726999999999983e-01,3.193529999999999980e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-1.383189999999999940e-02,1.360699999999999930e-02,1.123726999999999920e+00,1.360629999999999999e-02,1.935302000000000133e-01
--1.820410000000000084e-01,-2.191365999999999870e-01,-2.602996000000000087e+00,-2.178854000000000068e-01,-8.981559999999999544e-01
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--2.720534000000000008e-01,-4.635484999999999745e-01,-2.210215000000000174e+01,-4.423134000000000232e-01,-3.806470000000000020e+00
-4.426596999999999893e-01,3.079182999999999781e-01,3.596255000000000024e+01,3.012597000000000191e-01,6.193529999999999980e+00
--2.005821000000000132e-01,-2.790536000000000127e-01,-1.629568000000000083e+01,-2.740469999999999851e-01,-2.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--1.291107999999999978e-01,-1.555565999999999893e-01,-1.048920999999999992e+01,-1.546600999999999948e-01,-1.806470000000000020e+00
--5.763950000000000323e-02,-6.211420000000000136e-02,-4.682743000000000322e+00,-6.205639999999999767e-02,-8.064698000000000144e-01
-5.311487999999999765e-01,3.710235000000000061e-01,1.599070000000000036e+01,3.631816999999999962e-01,4.096442999999999834e+00
-1.396043999999999896e-01,1.248781000000000058e-01,2.558501999999999832e+00,1.246199000000000057e-01,7.993759000000000281e-01
--1.043260000000000021e-01,-1.196085999999999955e-01,-6.612881999999999927e+00,-1.192368000000000039e-01,-1.257741999999999916e+00
-2.155508999999999897e-01,1.777640000000000053e-01,1.066020999999999930e+01,1.766681999999999975e-01,2.239129999999999843e+00
--1.872730999999999979e-01,-2.479215999999999920e-01,-1.187062000000000062e+01,-2.446991000000000027e-01,-2.257741999999999916e+00
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/results_glm.py b/statsmodels/scikits/statsmodels/genmod/tests/results/results_glm.py
deleted file mode 100644
index ce7b5d0..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/results_glm.py
+++ /dev/null
@@ -1,3812 +0,0 @@
-"""
-Results for test_glm.py.
-
-Hard-coded from R or Stata. Note that some of the remaining discrepancy vs.
-Stata may be because Stata uses ML by default unless you specifically ask for
-IRLS.
-"""
-import numpy as np
-from scikits.statsmodels.compatnp.py3k import asbytes
-import glm_test_resids
-import os
-from scikits.statsmodels.api import add_constant, categorical
-
-# Test Precisions
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-DECIMAL_0 = 0
-
-
-class Longley(object):
- """
- Longley used for TestGlmGaussian
-
- Results are from Stata and R.
- """
- def __init__(self):
-
- self.resids = np.array([[ 267.34002976, 267.34002976, 267.34002976,
- 267.34002976, 267.34002976],
- [ -94.0139424 , -94.0139424 , -94.0139424 , -94.0139424 ,
- -94.0139424 ],
- [ 46.28716776, 46.28716776, 46.28716776, 46.28716776,
- 46.28716776],
- [-410.11462193, -410.11462193, -410.11462193, -410.11462193,
- -410.11462193],
- [ 309.71459076, 309.71459076, 309.71459076, 309.71459076,
- 309.71459076],
- [-249.31121533, -249.31121533, -249.31121533, -249.31121533,
- -249.31121533],
- [-164.0489564 , -164.0489564 , -164.0489564 , -164.0489564 ,
- -164.0489564 ],
- [ -13.18035687, -13.18035687, -13.18035687, -13.18035687,
- -13.18035687],
- [ 14.3047726 , 14.3047726 , 14.3047726 , 14.3047726 ,
- 14.3047726 ],
- [ 455.39409455, 455.39409455, 455.39409455, 455.39409455,
- 455.39409455],
- [ -17.26892711, -17.26892711, -17.26892711, -17.26892711,
- -17.26892711],
- [ -39.05504252, -39.05504252, -39.05504252, -39.05504252,
- -39.05504252],
- [-155.5499736 , -155.5499736 , -155.5499736 , -155.5499736 ,
- -155.5499736 ],
- [ -85.67130804, -85.67130804, -85.67130804, -85.67130804,
- -85.67130804],
- [ 341.93151396, 341.93151396, 341.93151396, 341.93151396,
- 341.93151396],
- [-206.75782519, -206.75782519, -206.75782519, -206.75782519,
- -206.75782519]])
- self.null_deviance = 185008826 # taken from R.
- self.params = np.array([ 1.50618723e+01, -3.58191793e-02,
- -2.02022980e+00, -1.03322687e+00, -5.11041057e-02,
- 1.82915146e+03, -3.48225863e+06])
- self.bse = np.array([8.49149258e+01, 3.34910078e-02, 4.88399682e-01,
- 2.14274163e-01, 2.26073200e-01, 4.55478499e+02, 8.90420384e+05])
- self.aic_R = 235.23486961695903 # R adds 2 for dof to AIC
- self.aic_Stata = 14.57717943930524 # stata divides by nobs
- self.deviance = 836424.0555058046 # from R
- self.scale = 92936.006167311629
- self.llf = -109.61743480847952
- self.null_deviance = 185008826 # taken from R. Rpy bug
-
- self.bic_Stata = 836399.1760177979 # no bic in R?
- self.df_model = 6
- self.df_resid = 9
- self.chi2 = 1981.711859508729 #TODO: taken from Stata not available
- # in sm yet
-# self.pearson_chi2 = 836424.1293162981 # from Stata (?)
- self.fittedvalues = np.array([60055.659970240202, 61216.013942398131,
- 60124.71283224225, 61597.114621930756, 62911.285409240052,
- 63888.31121532945, 65153.048956395127, 63774.180356866214,
- 66004.695227399934, 67401.605905447621,
- 68186.268927114084, 66552.055042522494,
- 68810.549973595422, 69649.67130804155, 68989.068486039061,
- 70757.757825193927])
-
-class GaussianLog(object):
- """
- Uses generated data. These results are from R and Stata.
- """
- def __init__(self):
-# self.resids = np.genfromtxt('./glm_gaussian_log_resid.csv', ',')
- self.resids = np.array([[3.20800000e-04, 3.20800000e-04,
- 8.72100000e-04, 3.20800000e-04, 3.20800000e-04],
- [ 8.12100000e-04, 8.12100000e-04, 2.16350000e-03,
- 8.12100000e-04, 8.12100000e-04],
- [ -2.94800000e-04, -2.94800000e-04, -7.69700000e-04,
- -2.94800000e-04, -2.94800000e-04],
- [ 1.40190000e-03, 1.40190000e-03, 3.58560000e-03,
- 1.40190000e-03, 1.40190000e-03],
- [ -2.30910000e-03, -2.30910000e-03, -5.78490000e-03,
- -2.30910000e-03, -2.30910000e-03],
- [ 1.10380000e-03, 1.10380000e-03, 2.70820000e-03,
- 1.10380000e-03, 1.10380000e-03],
- [ -5.14000000e-06, -5.14000000e-06, -1.23000000e-05,
- -5.14000000e-06, -5.14000000e-06],
- [ -1.65500000e-04, -1.65500000e-04, -3.89200000e-04,
- -1.65500000e-04, -1.65500000e-04],
- [ -7.55400000e-04, -7.55400000e-04, -1.73870000e-03,
- -7.55400000e-04, -7.55400000e-04],
- [ -1.39800000e-04, -1.39800000e-04, -3.14800000e-04,
- -1.39800000e-04, -1.39800000e-04],
- [ -7.17000000e-04, -7.17000000e-04, -1.58000000e-03,
- -7.17000000e-04, -7.17000000e-04],
- [ -1.12200000e-04, -1.12200000e-04, -2.41900000e-04,
- -1.12200000e-04, -1.12200000e-04],
- [ 3.22100000e-04, 3.22100000e-04, 6.79000000e-04,
- 3.22100000e-04, 3.22100000e-04],
- [ -3.78000000e-05, -3.78000000e-05, -7.79000000e-05,
- -3.78000000e-05, -3.78000000e-05],
- [ 5.54500000e-04, 5.54500000e-04, 1.11730000e-03,
- 5.54500000e-04, 5.54500000e-04],
- [ 3.38400000e-04, 3.38400000e-04, 6.66300000e-04,
- 3.38400000e-04, 3.38400000e-04],
- [ 9.72000000e-05, 9.72000000e-05, 1.87000000e-04,
- 9.72000000e-05, 9.72000000e-05],
- [ -7.92900000e-04, -7.92900000e-04, -1.49070000e-03,
- -7.92900000e-04, -7.92900000e-04],
- [ 3.33000000e-04, 3.33000000e-04, 6.11500000e-04,
- 3.33000000e-04, 3.33000000e-04],
- [ -8.35300000e-04, -8.35300000e-04, -1.49790000e-03,
- -8.35300000e-04, -8.35300000e-04],
- [ -3.99700000e-04, -3.99700000e-04, -6.99800000e-04,
- -3.99700000e-04, -3.99700000e-04],
- [ 1.41300000e-04, 1.41300000e-04, 2.41500000e-04,
- 1.41300000e-04, 1.41300000e-04],
- [ -8.50700000e-04, -8.50700000e-04, -1.41920000e-03,
- -8.50700000e-04, -8.50700000e-04],
- [ 1.43000000e-06, 1.43000000e-06, 2.33000000e-06,
- 1.43000000e-06, 1.43000000e-06],
- [ -9.12000000e-05, -9.12000000e-05, -1.44900000e-04,
- -9.12000000e-05, -9.12000000e-05],
- [ 6.75500000e-04, 6.75500000e-04, 1.04650000e-03,
- 6.75500000e-04, 6.75500000e-04],
- [ 3.97900000e-04, 3.97900000e-04, 6.01100000e-04,
- 3.97900000e-04, 3.97900000e-04],
- [ 1.07000000e-05, 1.07000000e-05, 1.57000000e-05,
- 1.07000000e-05, 1.07000000e-05],
- [ -8.15200000e-04, -8.15200000e-04, -1.17060000e-03,
- -8.15200000e-04, -8.15200000e-04],
- [ -8.46400000e-04, -8.46400000e-04, -1.18460000e-03,
- -8.46400000e-04, -8.46400000e-04],
- [ 9.91200000e-04, 9.91200000e-04, 1.35180000e-03,
- 9.91200000e-04, 9.91200000e-04],
- [ -5.07400000e-04, -5.07400000e-04, -6.74200000e-04,
- -5.07400000e-04, -5.07400000e-04],
- [ 1.08520000e-03, 1.08520000e-03, 1.40450000e-03,
- 1.08520000e-03, 1.08520000e-03],
- [ 9.56100000e-04, 9.56100000e-04, 1.20500000e-03,
- 9.56100000e-04, 9.56100000e-04],
- [ 1.87500000e-03, 1.87500000e-03, 2.30090000e-03,
- 1.87500000e-03, 1.87500000e-03],
- [ -1.93920000e-03, -1.93920000e-03, -2.31650000e-03,
- -1.93920000e-03, -1.93920000e-03],
- [ 8.16000000e-04, 8.16000000e-04, 9.48700000e-04,
- 8.16000000e-04, 8.16000000e-04],
- [ 1.01520000e-03, 1.01520000e-03, 1.14860000e-03,
- 1.01520000e-03, 1.01520000e-03],
- [ 1.04150000e-03, 1.04150000e-03, 1.14640000e-03,
- 1.04150000e-03, 1.04150000e-03],
- [ -3.88200000e-04, -3.88200000e-04, -4.15600000e-04,
- -3.88200000e-04, -3.88200000e-04],
- [ 9.95900000e-04, 9.95900000e-04, 1.03690000e-03,
- 9.95900000e-04, 9.95900000e-04],
- [ -6.82800000e-04, -6.82800000e-04, -6.91200000e-04,
- -6.82800000e-04, -6.82800000e-04],
- [ -8.11400000e-04, -8.11400000e-04, -7.98500000e-04,
- -8.11400000e-04, -8.11400000e-04],
- [ -1.79050000e-03, -1.79050000e-03, -1.71250000e-03,
- -1.79050000e-03, -1.79050000e-03],
- [ 6.10000000e-04, 6.10000000e-04, 5.66900000e-04,
- 6.10000000e-04, 6.10000000e-04],
- [ 2.52600000e-04, 2.52600000e-04, 2.28100000e-04,
- 2.52600000e-04, 2.52600000e-04],
- [ -8.62500000e-04, -8.62500000e-04, -7.56400000e-04,
- -8.62500000e-04, -8.62500000e-04],
- [ -3.47300000e-04, -3.47300000e-04, -2.95800000e-04,
- -3.47300000e-04, -3.47300000e-04],
- [ -7.79000000e-05, -7.79000000e-05, -6.44000000e-05,
- -7.79000000e-05, -7.79000000e-05],
- [ 6.72000000e-04, 6.72000000e-04, 5.39400000e-04,
- 6.72000000e-04, 6.72000000e-04],
- [ -3.72100000e-04, -3.72100000e-04, -2.89900000e-04,
- -3.72100000e-04, -3.72100000e-04],
- [ -1.22900000e-04, -1.22900000e-04, -9.29000000e-05,
- -1.22900000e-04, -1.22900000e-04],
- [ -1.63470000e-03, -1.63470000e-03, -1.19900000e-03,
- -1.63470000e-03, -1.63470000e-03],
- [ 2.64400000e-04, 2.64400000e-04, 1.88100000e-04,
- 2.64400000e-04, 2.64400000e-04],
- [ 1.79230000e-03, 1.79230000e-03, 1.23650000e-03,
- 1.79230000e-03, 1.79230000e-03],
- [ -1.40500000e-04, -1.40500000e-04, -9.40000000e-05,
- -1.40500000e-04, -1.40500000e-04],
- [ -2.98500000e-04, -2.98500000e-04, -1.93600000e-04,
- -2.98500000e-04, -2.98500000e-04],
- [ -9.33100000e-04, -9.33100000e-04, -5.86400000e-04,
- -9.33100000e-04, -9.33100000e-04],
- [ 9.11200000e-04, 9.11200000e-04, 5.54900000e-04,
- 9.11200000e-04, 9.11200000e-04],
- [ -1.31840000e-03, -1.31840000e-03, -7.77900000e-04,
- -1.31840000e-03, -1.31840000e-03],
- [ -1.30200000e-04, -1.30200000e-04, -7.44000000e-05,
- -1.30200000e-04, -1.30200000e-04],
- [ 9.09300000e-04, 9.09300000e-04, 5.03200000e-04,
- 9.09300000e-04, 9.09300000e-04],
- [ -2.39500000e-04, -2.39500000e-04, -1.28300000e-04,
- -2.39500000e-04, -2.39500000e-04],
- [ 7.15300000e-04, 7.15300000e-04, 3.71000000e-04,
- 7.15300000e-04, 7.15300000e-04],
- [ 5.45000000e-05, 5.45000000e-05, 2.73000000e-05,
- 5.45000000e-05, 5.45000000e-05],
- [ 2.85310000e-03, 2.85310000e-03, 1.38600000e-03,
- 2.85310000e-03, 2.85310000e-03],
- [ 4.63400000e-04, 4.63400000e-04, 2.17800000e-04,
- 4.63400000e-04, 4.63400000e-04],
- [ 2.80900000e-04, 2.80900000e-04, 1.27700000e-04,
- 2.80900000e-04, 2.80900000e-04],
- [ 5.42000000e-05, 5.42000000e-05, 2.38000000e-05,
- 5.42000000e-05, 5.42000000e-05],
- [ -3.62300000e-04, -3.62300000e-04, -1.54000000e-04,
- -3.62300000e-04, -3.62300000e-04],
- [ -1.11900000e-03, -1.11900000e-03, -4.59800000e-04,
- -1.11900000e-03, -1.11900000e-03],
- [ 1.28900000e-03, 1.28900000e-03, 5.11900000e-04,
- 1.28900000e-03, 1.28900000e-03],
- [ -1.40820000e-03, -1.40820000e-03, -5.40400000e-04,
- -1.40820000e-03, -1.40820000e-03],
- [ -1.69300000e-04, -1.69300000e-04, -6.28000000e-05,
- -1.69300000e-04, -1.69300000e-04],
- [ -1.03620000e-03, -1.03620000e-03, -3.71000000e-04,
- -1.03620000e-03, -1.03620000e-03],
- [ 1.49150000e-03, 1.49150000e-03, 5.15800000e-04,
- 1.49150000e-03, 1.49150000e-03],
- [ -7.22000000e-05, -7.22000000e-05, -2.41000000e-05,
- -7.22000000e-05, -7.22000000e-05],
- [ 5.49000000e-04, 5.49000000e-04, 1.76900000e-04,
- 5.49000000e-04, 5.49000000e-04],
- [ -2.12320000e-03, -2.12320000e-03, -6.60400000e-04,
- -2.12320000e-03, -2.12320000e-03],
- [ 7.84000000e-06, 7.84000000e-06, 2.35000000e-06,
- 7.84000000e-06, 7.84000000e-06],
- [ 1.15580000e-03, 1.15580000e-03, 3.34700000e-04,
- 1.15580000e-03, 1.15580000e-03],
- [ 4.83400000e-04, 4.83400000e-04, 1.35000000e-04,
- 4.83400000e-04, 4.83400000e-04],
- [ -5.26100000e-04, -5.26100000e-04, -1.41700000e-04,
- -5.26100000e-04, -5.26100000e-04],
- [ -1.75100000e-04, -1.75100000e-04, -4.55000000e-05,
- -1.75100000e-04, -1.75100000e-04],
- [ -1.84600000e-03, -1.84600000e-03, -4.62100000e-04,
- -1.84600000e-03, -1.84600000e-03],
- [ 2.07200000e-04, 2.07200000e-04, 5.00000000e-05,
- 2.07200000e-04, 2.07200000e-04],
- [ -8.54700000e-04, -8.54700000e-04, -1.98700000e-04,
- -8.54700000e-04, -8.54700000e-04],
- [ -9.20000000e-05, -9.20000000e-05, -2.06000000e-05,
- -9.20000000e-05, -9.20000000e-05],
- [ 5.35700000e-04, 5.35700000e-04, 1.15600000e-04,
- 5.35700000e-04, 5.35700000e-04],
- [ -7.67300000e-04, -7.67300000e-04, -1.59400000e-04,
- -7.67300000e-04, -7.67300000e-04],
- [ -1.79710000e-03, -1.79710000e-03, -3.59500000e-04,
- -1.79710000e-03, -1.79710000e-03],
- [ 1.10910000e-03, 1.10910000e-03, 2.13500000e-04,
- 1.10910000e-03, 1.10910000e-03],
- [ -5.53800000e-04, -5.53800000e-04, -1.02600000e-04,
- -5.53800000e-04, -5.53800000e-04],
- [ 7.48000000e-04, 7.48000000e-04, 1.33400000e-04,
- 7.48000000e-04, 7.48000000e-04],
- [ 4.23000000e-04, 4.23000000e-04, 7.26000000e-05,
- 4.23000000e-04, 4.23000000e-04],
- [ -3.16400000e-04, -3.16400000e-04, -5.22000000e-05,
- -3.16400000e-04, -3.16400000e-04],
- [ -6.63200000e-04, -6.63200000e-04, -1.05200000e-04,
- -6.63200000e-04, -6.63200000e-04],
- [ 1.33540000e-03, 1.33540000e-03, 2.03700000e-04,
- 1.33540000e-03, 1.33540000e-03],
- [ -7.81200000e-04, -7.81200000e-04, -1.14600000e-04,
- -7.81200000e-04, -7.81200000e-04],
- [ 1.67880000e-03, 1.67880000e-03, 2.36600000e-04,
- 1.67880000e-03, 1.67880000e-03]])
-
- self.null_deviance = 56.691617808182208
- self.params = np.array([9.99964386e-01,-1.99896965e-02,
- -1.00027232e-04])
- self.bse = np.array([1.42119293e-04, 1.20276468e-05, 1.87347682e-07])
- self.aic_R = -1103.8187213072656 # adds 2 for dof for scale
-
- self.aic_Stata = -11.05818072104212 # divides by nobs for e(aic)
- self.deviance = 8.68876986288542e-05
- self.scale = 8.9574946938163984e-07 # from R but e(phi) in Stata
- self.llf = 555.9093606536328
- self.bic_Stata = -446.7014211525822
- self.df_model = 2
- self.df_resid = 97
- self.chi2 = 33207648.86501769 # from Stata not in sm
- self.fittedvalues = np.array([2.7181850213327747, 2.664122305869506,
- 2.6106125414084405, 2.5576658143523567, 2.5052916730829535,
- 2.4534991313100165, 2.4022966718815781, 2.3516922510411282,
- 2.3016933031175575, 2.2523067456332542, 2.2035389848154616,
- 2.1553959214958001, 2.107882957382607, 2.0610050016905817,
- 2.0147664781120667, 1.969171332114154, 1.9242230385457144,
- 1.8799246095383746, 1.8362786026854092, 1.7932871294825108,
- 1.7509518640143886, 1.7092740518711942, 1.6682545192788105,
- 1.6278936824271399, 1.5881915569806042, 1.5491477677552221,
- 1.5107615585467538, 1.4730318020945796, 1.4359570101661721,
- 1.3995353437472129, 1.3637646233226499, 1.3286423392342188,
- 1.2941656621002184, 1.2603314532836074, 1.2271362753947765,
- 1.1945764028156565, 1.162647832232141, 1.1313462931621328,
- 1.1006672584668622, 1.0706059548334832, 1.0411573732173065,
- 1.0123162792324054, 0.98407722347970683, 0.95643455180206194,
- 0.92938241545618494, 0.90291478119174029, 0.87702544122826565,
- 0.85170802312101246, 0.82695599950720078, 0.80276269772458597,
- 0.77912130929465073, 0.75602489926313921, 0.73346641539106316,
- 0.71143869718971686, 0.68993448479364294, 0.66894642766589496,
- 0.64846709313034534, 0.62848897472617915, 0.60900450038011367,
- 0.5900060403922629, 0.57148591523195513, 0.55343640314018494,
- 0.5358497475357491, 0.51871816422248385, 0.50203384839536769,
- 0.48578898144361343, 0.46997573754920047, 0.45458629007964013,
- 0.4396128177740814, 0.42504751072218311, 0.41088257613548018,
- 0.39711024391126759, 0.38372277198930843, 0.37071245150195081,
- 0.35807161171849949, 0.34579262478494655, 0.33386791026040569,
- 0.32228993945183393, 0.31105123954884056, 0.30014439756060574,
- 0.28956206405712448, 0.27929695671718968, 0.26934186368570684,
- 0.25968964674310463, 0.25033324428976694, 0.24126567414856051,
- 0.23248003618867552, 0.22396951477412205, 0.21572738104035141,
- 0.20774699500257574, 0.20002180749946474, 0.19254536197598673,
- 0.18531129610924435, 0.17831334328122878, 0.17154533390247831,
- 0.16500119659068577, 0.15867495920834204, 0.15256074976354628,
- 0.14665279717814039, 0.14094543192735109])
-
-class GaussianInverse(object):
- """
- This test uses generated data. Results are from R and Stata.
- """
- def __init__(self):
- self.resids = np.array([[-5.15300000e-04, -5.15300000e-04,
- 5.14800000e-04, -5.15300000e-04, -5.15300000e-04],
- [ -2.12500000e-04, -2.12500000e-04, 2.03700000e-04,
- -2.12500000e-04, -2.12500000e-04],
- [ -1.71400000e-04, -1.71400000e-04, 1.57200000e-04,
- -1.71400000e-04, -1.71400000e-04],
- [ 1.94020000e-03, 1.94020000e-03, -1.69710000e-03,
- 1.94020000e-03, 1.94020000e-03],
- [ -6.81100000e-04, -6.81100000e-04, 5.66900000e-04,
- -6.81100000e-04, -6.81100000e-04],
- [ 1.21370000e-03, 1.21370000e-03, -9.58800000e-04,
- 1.21370000e-03, 1.21370000e-03],
- [ -1.51090000e-03, -1.51090000e-03, 1.13070000e-03,
- -1.51090000e-03, -1.51090000e-03],
- [ 3.21500000e-04, 3.21500000e-04, -2.27400000e-04,
- 3.21500000e-04, 3.21500000e-04],
- [ -3.18500000e-04, -3.18500000e-04, 2.12600000e-04,
- -3.18500000e-04, -3.18500000e-04],
- [ 3.75600000e-04, 3.75600000e-04, -2.36300000e-04,
- 3.75600000e-04, 3.75600000e-04],
- [ 4.82300000e-04, 4.82300000e-04, -2.85500000e-04,
- 4.82300000e-04, 4.82300000e-04],
- [ -1.41870000e-03, -1.41870000e-03, 7.89300000e-04,
- -1.41870000e-03, -1.41870000e-03],
- [ 6.75000000e-05, 6.75000000e-05, -3.52000000e-05,
- 6.75000000e-05, 6.75000000e-05],
- [ 4.06300000e-04, 4.06300000e-04, -1.99100000e-04,
- 4.06300000e-04, 4.06300000e-04],
- [ -3.61500000e-04, -3.61500000e-04, 1.66000000e-04,
- -3.61500000e-04, -3.61500000e-04],
- [ -2.97400000e-04, -2.97400000e-04, 1.28000000e-04,
- -2.97400000e-04, -2.97400000e-04],
- [ -9.32700000e-04, -9.32700000e-04, 3.75800000e-04,
- -9.32700000e-04, -9.32700000e-04],
- [ 1.16270000e-03, 1.16270000e-03, -4.38500000e-04,
- 1.16270000e-03, 1.16270000e-03],
- [ 6.77900000e-04, 6.77900000e-04, -2.39200000e-04,
- 6.77900000e-04, 6.77900000e-04],
- [ -1.29330000e-03, -1.29330000e-03, 4.27000000e-04,
- -1.29330000e-03, -1.29330000e-03],
- [ 2.24500000e-04, 2.24500000e-04, -6.94000000e-05,
- 2.24500000e-04, 2.24500000e-04],
- [ 1.05510000e-03, 1.05510000e-03, -3.04900000e-04,
- 1.05510000e-03, 1.05510000e-03],
- [ 2.50400000e-04, 2.50400000e-04, -6.77000000e-05,
- 2.50400000e-04, 2.50400000e-04],
- [ 4.08600000e-04, 4.08600000e-04, -1.03400000e-04,
- 4.08600000e-04, 4.08600000e-04],
- [ -1.67610000e-03, -1.67610000e-03, 3.96800000e-04,
- -1.67610000e-03, -1.67610000e-03],
- [ 7.47600000e-04, 7.47600000e-04, -1.65700000e-04,
- 7.47600000e-04, 7.47600000e-04],
- [ 2.08200000e-04, 2.08200000e-04, -4.32000000e-05,
- 2.08200000e-04, 2.08200000e-04],
- [ -8.00800000e-04, -8.00800000e-04, 1.55700000e-04,
- -8.00800000e-04, -8.00800000e-04],
- [ 5.81200000e-04, 5.81200000e-04, -1.05900000e-04,
- 5.81200000e-04, 5.81200000e-04],
- [ 1.00980000e-03, 1.00980000e-03, -1.72400000e-04,
- 1.00980000e-03, 1.00980000e-03],
- [ 2.77400000e-04, 2.77400000e-04, -4.44000000e-05,
- 2.77400000e-04, 2.77400000e-04],
- [ -5.02800000e-04, -5.02800000e-04, 7.55000000e-05,
- -5.02800000e-04, -5.02800000e-04],
- [ 2.69800000e-04, 2.69800000e-04, -3.80000000e-05,
- 2.69800000e-04, 2.69800000e-04],
- [ 2.01300000e-04, 2.01300000e-04, -2.67000000e-05,
- 2.01300000e-04, 2.01300000e-04],
- [ -1.19690000e-03, -1.19690000e-03, 1.48900000e-04,
- -1.19690000e-03, -1.19690000e-03],
- [ -6.94200000e-04, -6.94200000e-04, 8.12000000e-05,
- -6.94200000e-04, -6.94200000e-04],
- [ 5.65500000e-04, 5.65500000e-04, -6.22000000e-05,
- 5.65500000e-04, 5.65500000e-04],
- [ 4.93100000e-04, 4.93100000e-04, -5.10000000e-05,
- 4.93100000e-04, 4.93100000e-04],
- [ 3.25000000e-04, 3.25000000e-04, -3.17000000e-05,
- 3.25000000e-04, 3.25000000e-04],
- [ -7.70200000e-04, -7.70200000e-04, 7.07000000e-05,
- -7.70200000e-04, -7.70200000e-04],
- [ 2.58000000e-05, 2.58000000e-05, -2.23000000e-06,
- 2.58000000e-05, 2.58000000e-05],
- [ -1.52800000e-04, -1.52800000e-04, 1.25000000e-05,
- -1.52800000e-04, -1.52800000e-04],
- [ 4.52000000e-05, 4.52000000e-05, -3.48000000e-06,
- 4.52000000e-05, 4.52000000e-05],
- [ -6.83900000e-04, -6.83900000e-04, 4.97000000e-05,
- -6.83900000e-04, -6.83900000e-04],
- [ -7.77600000e-04, -7.77600000e-04, 5.34000000e-05,
- -7.77600000e-04, -7.77600000e-04],
- [ 1.03170000e-03, 1.03170000e-03, -6.70000000e-05,
- 1.03170000e-03, 1.03170000e-03],
- [ 1.20000000e-03, 1.20000000e-03, -7.37000000e-05,
- 1.20000000e-03, 1.20000000e-03],
- [ -7.71600000e-04, -7.71600000e-04, 4.48000000e-05,
- -7.71600000e-04, -7.71600000e-04],
- [ -3.37000000e-04, -3.37000000e-04, 1.85000000e-05,
- -3.37000000e-04, -3.37000000e-04],
- [ 1.19880000e-03, 1.19880000e-03, -6.25000000e-05,
- 1.19880000e-03, 1.19880000e-03],
- [ -1.54610000e-03, -1.54610000e-03, 7.64000000e-05,
- -1.54610000e-03, -1.54610000e-03],
- [ 9.11600000e-04, 9.11600000e-04, -4.27000000e-05,
- 9.11600000e-04, 9.11600000e-04],
- [ -4.70800000e-04, -4.70800000e-04, 2.09000000e-05,
- -4.70800000e-04, -4.70800000e-04],
- [ -1.21550000e-03, -1.21550000e-03, 5.13000000e-05,
- -1.21550000e-03, -1.21550000e-03],
- [ 1.09160000e-03, 1.09160000e-03, -4.37000000e-05,
- 1.09160000e-03, 1.09160000e-03],
- [ -2.72000000e-04, -2.72000000e-04, 1.04000000e-05,
- -2.72000000e-04, -2.72000000e-04],
- [ -7.84500000e-04, -7.84500000e-04, 2.84000000e-05,
- -7.84500000e-04, -7.84500000e-04],
- [ 1.53330000e-03, 1.53330000e-03, -5.28000000e-05,
- 1.53330000e-03, 1.53330000e-03],
- [ -1.84450000e-03, -1.84450000e-03, 6.05000000e-05,
- -1.84450000e-03, -1.84450000e-03],
- [ 1.68550000e-03, 1.68550000e-03, -5.26000000e-05,
- 1.68550000e-03, 1.68550000e-03],
- [ -3.06100000e-04, -3.06100000e-04, 9.10000000e-06,
- -3.06100000e-04, -3.06100000e-04],
- [ 1.00950000e-03, 1.00950000e-03, -2.86000000e-05,
- 1.00950000e-03, 1.00950000e-03],
- [ 5.22000000e-04, 5.22000000e-04, -1.41000000e-05,
- 5.22000000e-04, 5.22000000e-04],
- [ -2.18000000e-05, -2.18000000e-05, 5.62000000e-07,
- -2.18000000e-05, -2.18000000e-05],
- [ -7.80600000e-04, -7.80600000e-04, 1.92000000e-05,
- -7.80600000e-04, -7.80600000e-04],
- [ 6.81400000e-04, 6.81400000e-04, -1.60000000e-05,
- 6.81400000e-04, 6.81400000e-04],
- [ -1.43800000e-04, -1.43800000e-04, 3.23000000e-06,
- -1.43800000e-04, -1.43800000e-04],
- [ 7.76000000e-04, 7.76000000e-04, -1.66000000e-05,
- 7.76000000e-04, 7.76000000e-04],
- [ 2.54900000e-04, 2.54900000e-04, -5.22000000e-06,
- 2.54900000e-04, 2.54900000e-04],
- [ 5.77500000e-04, 5.77500000e-04, -1.13000000e-05,
- 5.77500000e-04, 5.77500000e-04],
- [ 7.58100000e-04, 7.58100000e-04, -1.42000000e-05,
- 7.58100000e-04, 7.58100000e-04],
- [ -8.31000000e-04, -8.31000000e-04, 1.49000000e-05,
- -8.31000000e-04, -8.31000000e-04],
- [ -2.10340000e-03, -2.10340000e-03, 3.62000000e-05,
- -2.10340000e-03, -2.10340000e-03],
- [ -8.89900000e-04, -8.89900000e-04, 1.47000000e-05,
- -8.89900000e-04, -8.89900000e-04],
- [ 1.08570000e-03, 1.08570000e-03, -1.71000000e-05,
- 1.08570000e-03, 1.08570000e-03],
- [ -1.88600000e-04, -1.88600000e-04, 2.86000000e-06,
- -1.88600000e-04, -1.88600000e-04],
- [ 9.10000000e-05, 9.10000000e-05, -1.32000000e-06,
- 9.10000000e-05, 9.10000000e-05],
- [ 1.07700000e-03, 1.07700000e-03, -1.50000000e-05,
- 1.07700000e-03, 1.07700000e-03],
- [ 9.04100000e-04, 9.04100000e-04, -1.21000000e-05,
- 9.04100000e-04, 9.04100000e-04],
- [ -2.20000000e-04, -2.20000000e-04, 2.83000000e-06,
- -2.20000000e-04, -2.20000000e-04],
- [ -1.64030000e-03, -1.64030000e-03, 2.02000000e-05,
- -1.64030000e-03, -1.64030000e-03],
- [ 2.20600000e-04, 2.20600000e-04, -2.62000000e-06,
- 2.20600000e-04, 2.20600000e-04],
- [ -2.78300000e-04, -2.78300000e-04, 3.17000000e-06,
- -2.78300000e-04, -2.78300000e-04],
- [ -4.93000000e-04, -4.93000000e-04, 5.40000000e-06,
- -4.93000000e-04, -4.93000000e-04],
- [ -1.85000000e-04, -1.85000000e-04, 1.95000000e-06,
- -1.85000000e-04, -1.85000000e-04],
- [ -7.64000000e-04, -7.64000000e-04, 7.75000000e-06,
- -7.64000000e-04, -7.64000000e-04],
- [ 7.79600000e-04, 7.79600000e-04, -7.61000000e-06,
- 7.79600000e-04, 7.79600000e-04],
- [ 2.88400000e-04, 2.88400000e-04, -2.71000000e-06,
- 2.88400000e-04, 2.88400000e-04],
- [ 1.09370000e-03, 1.09370000e-03, -9.91000000e-06,
- 1.09370000e-03, 1.09370000e-03],
- [ 3.07000000e-04, 3.07000000e-04, -2.68000000e-06,
- 3.07000000e-04, 3.07000000e-04],
- [ -8.76000000e-04, -8.76000000e-04, 7.37000000e-06,
- -8.76000000e-04, -8.76000000e-04],
- [ -1.85300000e-04, -1.85300000e-04, 1.50000000e-06,
- -1.85300000e-04, -1.85300000e-04],
- [ 3.24700000e-04, 3.24700000e-04, -2.54000000e-06,
- 3.24700000e-04, 3.24700000e-04],
- [ 4.59600000e-04, 4.59600000e-04, -3.47000000e-06,
- 4.59600000e-04, 4.59600000e-04],
- [ -2.73300000e-04, -2.73300000e-04, 1.99000000e-06,
- -2.73300000e-04, -2.73300000e-04],
- [ 1.32180000e-03, 1.32180000e-03, -9.29000000e-06,
- 1.32180000e-03, 1.32180000e-03],
- [ -1.32620000e-03, -1.32620000e-03, 9.00000000e-06,
- -1.32620000e-03, -1.32620000e-03],
- [ 9.62000000e-05, 9.62000000e-05, -6.31000000e-07,
- 9.62000000e-05, 9.62000000e-05],
- [ -6.04400000e-04, -6.04400000e-04, 3.83000000e-06,
- -6.04400000e-04, -6.04400000e-04],
- [ -6.66300000e-04, -6.66300000e-04, 4.08000000e-06,
- -6.66300000e-04, -6.66300000e-04]])
- self.null_deviance = 6.8088354977561 # from R, Rpy bug
- self.params = np.array([ 1.00045997, 0.01991666, 0.00100126])
- self.bse = np.array([ 4.55214070e-04, 7.00529313e-05, 1.84478509e-06])
- self.aic_R = -1123.1528237643774
- self.aic_Stata = -11.25152876811373
- self.deviance = 7.1612915365488368e-05
- self.scale = 7.3827747608449547e-07
- self.llf = 565.57641188218872
- self.bic_Stata = -446.7014364279675
- self.df_model = 2
- self.df_resid = 97
- self.chi2 = 2704006.698904491
- self.fittedvalues = np.array([ 0.99954024, 0.97906956, 0.95758077,
- 0.93526008, 0.91228657,
- 0.88882978, 0.8650479 , 0.84108646, 0.81707757, 0.79313958,
- 0.76937709, 0.74588129, 0.72273051, 0.69999099, 0.67771773,
- 0.65595543, 0.63473944, 0.61409675, 0.59404691, 0.57460297,
- 0.55577231, 0.53755742, 0.51995663, 0.50296478, 0.48657379,
- 0.47077316, 0.4555505 , 0.44089187, 0.42678213, 0.41320529,
- 0.40014475, 0.38758348, 0.37550428, 0.36388987, 0.35272306,
- 0.34198684, 0.33166446, 0.32173953, 0.31219604, 0.30301842,
- 0.29419156, 0.28570085, 0.27753216, 0.26967189, 0.26210695,
- 0.25482476, 0.24781324, 0.2410608 , 0.23455636, 0.22828931,
- 0.22224947, 0.21642715, 0.21081306, 0.20539835, 0.20017455,
- 0.19513359, 0.19026777, 0.18556972, 0.18103243, 0.17664922,
- 0.1724137 , 0.16831977, 0.16436164, 0.16053377, 0.15683086,
- 0.15324789, 0.14978003, 0.1464227 , 0.14317153, 0.14002232,
- 0.13697109, 0.13401403, 0.1311475 , 0.12836802, 0.12567228,
- 0.1230571 , 0.12051944, 0.11805642, 0.11566526, 0.1133433 ,
- 0.11108802, 0.10889699, 0.10676788, 0.10469847, 0.10268664,
- 0.10073034, 0.09882763, 0.09697663, 0.09517555, 0.09342267,
- 0.09171634, 0.09005498, 0.08843707, 0.08686116, 0.08532585,
- 0.08382979, 0.0823717 , 0.08095035, 0.07956453, 0.07821311])
-
-class Star98(object):
- """
- Star98 class used with TestGlmBinomial
- """
- def __init__(self):
- self.params = (-0.0168150366, 0.0099254766, -0.0187242148,
- -0.0142385609, 0.2544871730, 0.2406936644, 0.0804086739,
- -1.9521605027, -0.3340864748, -0.1690221685, 0.0049167021,
- -0.0035799644, -0.0140765648, -0.0040049918, -0.0039063958,
- 0.0917143006, 0.0489898381, 0.0080407389, 0.0002220095,
- -0.0022492486, 2.9588779262)
- self.bse = (4.339467e-04, 6.013714e-04, 7.435499e-04, 4.338655e-04,
- 2.994576e-02, 5.713824e-02, 1.392359e-02, 3.168109e-01,
- 6.126411e-02, 3.270139e-02, 1.253877e-03, 2.254633e-04,
- 1.904573e-03, 4.739838e-04, 9.623650e-04, 1.450923e-02,
- 7.451666e-03, 1.499497e-03, 2.988794e-05, 3.489838e-04,
- 1.546712e+00)
- self.null_deviance = 34345.3688931
- self.df_null = 302
- self.deviance = 4078.76541772
- self.df_resid = 282
- self.df_model = 20
- self.aic_R = 6039.22511799
- self.aic_Stata = 19.93143846737438
- self.bic_Stata = 2467.493504191302
- self.llf = -2998.61255899391 # from R
- self.llf_Stata = -2998.612927807218
- self.scale = 1.
- self.pearson_chi2 = 4051.921614
- self.resids = glm_test_resids.star98_resids
- self.fittedvalues = np.array([ 0.5833118 , 0.75144661, 0.50058272,
- 0.68534524, 0.32251021,
- 0.68693601, 0.33299827, 0.65624766, 0.49851481, 0.506736,
- 0.23954874, 0.86631452, 0.46432936, 0.44171873, 0.66797935,
- 0.73988491, 0.51966014, 0.42442446, 0.5649369 , 0.59251634,
- 0.34798337, 0.56415024, 0.49974355, 0.3565539 , 0.20752309,
- 0.18269097, 0.44932642, 0.48025128, 0.59965277, 0.58848671,
- 0.36264203, 0.33333196, 0.74253352, 0.5081886 , 0.53421878,
- 0.56291445, 0.60205239, 0.29174423, 0.2954348 , 0.32220414,
- 0.47977903, 0.23687535, 0.11776464, 0.1557423 , 0.27854799,
- 0.22699533, 0.1819439 , 0.32554433, 0.22681989, 0.15785389,
- 0.15268609, 0.61094772, 0.20743222, 0.51649059, 0.46502006,
- 0.41031788, 0.59523288, 0.65733285, 0.27835336, 0.2371213 ,
- 0.25137045, 0.23953942, 0.27854519, 0.39652413, 0.27023163,
- 0.61411863, 0.2212025 , 0.42005842, 0.55940397, 0.35413774,
- 0.45724563, 0.57399437, 0.2168918 , 0.58308738, 0.17181104,
- 0.49873249, 0.22832683, 0.14846056, 0.5028073 , 0.24513863,
- 0.48202096, 0.52823155, 0.5086262 , 0.46295993, 0.57869402,
- 0.78363217, 0.21144435, 0.2298366 , 0.17954825, 0.32232586,
- 0.8343015 , 0.56217006, 0.47367315, 0.52535649, 0.60350746,
- 0.43210701, 0.44712008, 0.35858239, 0.2521347 , 0.19787004,
- 0.63256553, 0.51386532, 0.64997027, 0.13402072, 0.81756174,
- 0.74543642, 0.30825852, 0.23988707, 0.17273125, 0.27880599,
- 0.17395893, 0.32052828, 0.80467697, 0.18726218, 0.23842081,
- 0.19020381, 0.85835388, 0.58703615, 0.72415106, 0.64433695,
- 0.68766653, 0.32923663, 0.16352185, 0.38868816, 0.44980444,
- 0.74810044, 0.42973792, 0.53762581, 0.72714996, 0.61229484,
- 0.30267667, 0.24713253, 0.65086008, 0.48957265, 0.54955545,
- 0.5697156 , 0.36406211, 0.48906545, 0.45919413, 0.4930565 ,
- 0.39785555, 0.5078719 , 0.30159626, 0.28524393, 0.34687707,
- 0.22522042, 0.52947159, 0.29277287, 0.8585002 , 0.60800389,
- 0.75830521, 0.35648175, 0.69508796, 0.45518355, 0.21567675,
- 0.39682985, 0.49042948, 0.47615798, 0.60588234, 0.62910299,
- 0.46005639, 0.71755165, 0.48852156, 0.47940661, 0.60128813,
- 0.16589699, 0.68512861, 0.46305199, 0.68832227, 0.7006721 ,
- 0.56564937, 0.51753941, 0.54261733, 0.56072214, 0.34545715,
- 0.30226104, 0.3572956 , 0.40996287, 0.33517519, 0.36248407,
- 0.33937041, 0.34140691, 0.2627528 , 0.29955161, 0.38581683,
- 0.24840026, 0.15414272, 0.40415991, 0.53936252, 0.52111887,
- 0.28060168, 0.45600958, 0.51110589, 0.43757523, 0.46891953,
- 0.39425249, 0.5834369 , 0.55817308, 0.32051259, 0.43567448,
- 0.34134195, 0.43016545, 0.4885413 , 0.28478325, 0.2650776 ,
- 0.46784606, 0.46265983, 0.42655938, 0.18972234, 0.60448491,
- 0.211896 , 0.37886032, 0.50727577, 0.39782309, 0.50427121,
- 0.35882898, 0.39596807, 0.49160806, 0.35618002, 0.6819922 ,
- 0.36871093, 0.43079679, 0.67985516, 0.41270595, 0.68952767,
- 0.52587734, 0.32042126, 0.39120123, 0.56870985, 0.32962349,
- 0.32168989, 0.54076251, 0.4592907 , 0.48480182, 0.4408386 ,
- 0.431178 , 0.47078232, 0.55911605, 0.30331618, 0.50310393,
- 0.65036038, 0.45078895, 0.62354291, 0.56435463, 0.50034281,
- 0.52693538, 0.57217285, 0.49221472, 0.40707122, 0.44226533,
- 0.3475959 , 0.54746396, 0.86385832, 0.48402233, 0.54313657,
- 0.61586824, 0.27097185, 0.69717808, 0.52156974, 0.50401189,
- 0.56724181, 0.6577178 , 0.42732047, 0.44808396, 0.65435634,
- 0.54766225, 0.38160648, 0.49890847, 0.50879037, 0.5875452 ,
- 0.45101593, 0.5709704 , 0.3175516 , 0.39813159, 0.28305688,
- 0.40521062, 0.30120578, 0.26400428, 0.44205496, 0.40545798,
- 0.39366599, 0.55288196, 0.14104184, 0.17550155, 0.1949095 ,
- 0.40255144, 0.21016822, 0.09712017, 0.63151487, 0.25885514,
- 0.57323748, 0.61836898, 0.43268601, 0.67008878, 0.75801989,
- 0.50353406, 0.64222315, 0.29925757, 0.32592036, 0.39634977,
- 0.39582747, 0.41037006, 0.34174944])
-
-class Lbw(object):
- '''
- The LBW data can be found here
-
- http://www.stata-press.com/data/r9/rmain.html
- '''
- def __init__(self):
- # data set up for data not in datasets
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "stata_lbw_glm.csv")
- data=np.recfromcsv(open(filename, 'rb'), converters={4: lambda s: s.strip(asbytes("\""))})
- data = categorical(data, col='race', drop=True)
- self.endog = data.low
- design = np.column_stack((data['age'], data['lwt'],
- data['race_black'], data['race_other'], data['smoke'],
- data['ptl'], data['ht'], data['ui']))
- self.exog = add_constant(design)
- # Results for Canonical Logit Link
- self.params = (-.02710031, -.01515082, 1.26264728,
- .86207916, .92334482, .54183656, 1.83251780,
- .75851348, .46122388)
- self.bse = (0.036449917, 0.006925765, 0.526405169,
- 0.439146744, 0.400820976, 0.346246857, 0.691623875,
- 0.459373871, 1.204574885)
- self.aic_R = 219.447991133
- self.aic_Stata = 1.161100482182551
- self.deviance = 201.4479911325021
- self.scale = 1
- self.llf = -100.7239955662511
- self.chi2 = 25.65329337867037 # from Stata not used by sm
- self.null_deviance = 234.671996193219
- self.bic_Stata = -742.0664715782335
- self.df_resid = 180
- self.df_model = 8
- self.df_null = 188
- self.pearson_chi2 = 182.023342493558
- self.resids = glm_test_resids.lbw_resids
- self.fittedvalues = np.array([ 0.31217507, 0.12793027, 0.32119762,
- 0.48442686, 0.50853393,
- 0.24517662, 0.12755193, 0.33226988, 0.22013309, 0.26268069,
- 0.34729955, 0.18782188, 0.75404181, 0.54723527, 0.35016393,
- 0.35016393, 0.45824406, 0.25336683, 0.43087357, 0.23284101,
- 0.20146616, 0.24315597, 0.02725586, 0.22207692, 0.39800383,
- 0.05584178, 0.28403447, 0.06931188, 0.35371946, 0.3896279 ,
- 0.3896279 , 0.47812002, 0.60043853, 0.07144772, 0.29995988,
- 0.17910031, 0.22773411, 0.22691015, 0.06221253, 0.2384528 ,
- 0.32633864, 0.05131047, 0.2954536 , 0.07364416, 0.57241299,
- 0.57241299, 0.08272435, 0.23298882, 0.12658158, 0.58967487,
- 0.46989562, 0.22455631, 0.2348285 , 0.29571887, 0.28212464,
- 0.31499013, 0.68340511, 0.14090647, 0.31448425, 0.28082972,
- 0.28082972, 0.24918728, 0.27018297, 0.08175784, 0.64808999,
- 0.38252574, 0.25550797, 0.09113411, 0.40736693, 0.32644055,
- 0.54367425, 0.29606968, 0.47028421, 0.39972155, 0.25079125,
- 0.09678472, 0.08807264, 0.27467837, 0.5675742 , 0.045619 ,
- 0.10719293, 0.04826292, 0.23934092, 0.24179618, 0.23802197,
- 0.49196179, 0.31379451, 0.10605469, 0.04047396, 0.11620849,
- 0.09937016, 0.21822964, 0.29770265, 0.83912829, 0.25079125,
- 0.08548557, 0.06550308, 0.2046457 , 0.2046457 , 0.08110349,
- 0.13519643, 0.47862055, 0.38891913, 0.1383964 , 0.26176764,
- 0.31594589, 0.11418612, 0.06324112, 0.28468594, 0.21663702,
- 0.03827107, 0.27237604, 0.20246694, 0.19042999, 0.15019447,
- 0.18759474, 0.12308435, 0.19700616, 0.11564002, 0.36595033,
- 0.07765727, 0.14119063, 0.13584627, 0.11012759, 0.10102472,
- 0.10002166, 0.07439288, 0.27919958, 0.12491598, 0.06774594,
- 0.72513764, 0.17714986, 0.67373352, 0.80679436, 0.52908941,
- 0.15695938, 0.49722003, 0.41970014, 0.62375224, 0.53695622,
- 0.25474238, 0.79135707, 0.2503871 , 0.25352337, 0.33474211,
- 0.19308929, 0.24658944, 0.25495092, 0.30867144, 0.41240259,
- 0.59412526, 0.16811226, 0.48282791, 0.36566756, 0.09279325,
- 0.75337353, 0.57128885, 0.52974123, 0.44548504, 0.77748843,
- 0.3224082 , 0.40054277, 0.29522468, 0.19673553, 0.73781774,
- 0.57680312, 0.44545573, 0.30242355, 0.38720223, 0.16632904,
- 0.30804092, 0.56385194, 0.60012179, 0.48324821, 0.24636345,
- 0.26153216, 0.2348285 , 0.29023669, 0.41011454, 0.36472083,
- 0.65922069, 0.30476903, 0.09986775, 0.70658332, 0.30713075,
- 0.36096386, 0.54962701, 0.71996086, 0.6633756 ])
-
-class Scotvote(object):
- """
- Scotvot class is used with TestGlmGamma.
- """
- def __init__(self):
- self.params = (4.961768e-05, 2.034423e-03, -7.181429e-05, 1.118520e-04,
- -1.467515e-07, -5.186831e-04, -2.42717498e-06, -1.776527e-02)
- self.bse = (1.621577e-05, 5.320802e-04, 2.711664e-05, 4.057691e-05,
- 1.236569e-07, 2.402534e-04, 7.460253e-07, 1.147922e-02)
- self.null_deviance = 0.536072
- self.df_null = 31
- self.deviance = 0.087388516417
- self.df_resid = 24
- self.df_model = 7
- self.aic_R = 182.947045954721
- self.aic_Stata = 10.72212
- self.bic_Stata = -83.09027
- self.llf = -163.5539382 # from Stata, same as ours with scale = 1
-# self.llf = -82.47352 # Very close to ours as is
- self.scale = 0.003584283
- self.pearson_chi2 = .0860228056
- self.resids = glm_test_resids.scotvote_resids
- self.fittedvalues = np.array([57.80431482, 53.2733447, 50.56347993,
- 58.33003783,
- 70.46562169, 56.88801284, 66.81878401, 66.03410393,
- 57.92937473, 63.23216907, 53.9914785 , 61.28993391,
- 64.81036393, 63.47546816, 60.69696114, 74.83508176,
- 56.56991106, 72.01804172, 64.35676519, 52.02445881,
- 64.24933079, 71.15070332, 45.73479688, 54.93318588,
- 66.98031261, 52.02479973, 56.18413736, 58.12267471,
- 67.37947398, 60.49162862, 73.82609217, 69.61515621])
-
-class Cancer(object):
- '''
- The Cancer data can be found here
-
- http://www.stata-press.com/data/r10/rmain.html
- '''
- def __init__(self):
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "stata_cancer_glm.csv")
- data = np.recfromcsv(open(filename, 'rb'))
- self.endog = data.studytime
- design = np.column_stack((data.age,data.drug))
- design = categorical(design, col=1, drop=True)
- design = np.delete(design, 1, axis=1) # drop first dummy
- self.exog = add_constant(design)
-
-class CancerLog(Cancer):
- """
- CancerLog is used TestGlmGammaLog
- """
- def __init__(self):
- super(CancerLog, self).__init__()
-
- self.resids = np.array([[-8.52598100e-01,-1.45739100e+00,
- -3.92408100e+01,
- -1.41526900e+00, -5.78417200e+00],
- [ -8.23683800e-01, -1.35040200e+00, -2.64957500e+01,
- -1.31777000e+00, -4.67162900e+00],
- [ -7.30450400e-01, -1.07754600e+00, -4.02136400e+01,
- -1.06208800e+00, -5.41978500e+00],
- [ -7.04471600e-01, -1.01441500e+00, -7.25951500e+01,
- -1.00172900e+00, -7.15130900e+00],
- [ -5.28668000e-01, -6.68617300e-01, -3.80758100e+01,
- -6.65304600e-01, -4.48658700e+00],
- [ -2.28658500e-01, -2.48859700e-01, -6.14913600e+00,
- -2.48707200e-01, -1.18577100e+00],
- [ -1.93939400e-01, -2.08119900e-01, -7.46226500e+00,
- -2.08031700e-01, -1.20300800e+00],
- [ -3.55635700e-01, -4.09525000e-01, -2.14132500e+01,
- -4.08815100e-01, -2.75958600e+00],
- [ -5.73360000e-02, -5.84700000e-02, -4.12946200e+00,
- -5.84681000e-02, -4.86586900e-01],
- [ 3.09828000e-02, 3.06685000e-02, 1.86551100e+00,
- 3.06682000e-02, 2.40413800e-01],
- [ -2.11924300e-01, -2.29071300e-01, -2.18386100e+01,
- -2.28953000e-01, -2.15130900e+00],
- [ -3.10989000e-01, -3.50739300e-01, -4.19249500e+01,
- -3.50300400e-01, -3.61084500e+00],
- [ -9.22250000e-03, -9.25100000e-03, -1.13679700e+00,
- -9.25100000e-03, -1.02392100e-01],
- [ 2.39402500e-01, 2.22589700e-01, 1.88577300e+01,
- 2.22493500e-01, 2.12475600e+00],
- [ 3.35166000e-02, 3.31493000e-02, 4.51842400e+00,
- 3.31489000e-02, 3.89155400e-01],
- [ 8.49829400e-01, 6.85180200e-01, 3.57627500e+01,
- 6.82689900e-01, 5.51291500e+00],
- [ 4.12934200e-01, 3.66785200e-01, 4.65392600e+01,
- 3.66370400e-01, 4.38379500e+00],
- [ 4.64148400e-01, 4.07123200e-01, 6.25726500e+01,
- 4.06561900e-01, 5.38915500e+00],
- [ 1.71104600e+00, 1.19474800e+00, 1.12676500e+02,
- 1.18311900e+00, 1.38850500e+01],
- [ 1.26571800e+00, 9.46389000e-01, 1.30431000e+02,
- 9.40244600e-01, 1.28486900e+01],
- [ -3.48532600e-01, -3.99988300e-01, -2.95638100e+01,
- -3.99328600e-01, -3.20997700e+00],
- [ -4.04340300e-01, -4.76960100e-01, -4.10254300e+01,
- -4.75818000e-01, -4.07286500e+00],
- [ -4.92057900e-01, -6.08818300e-01, -9.34509600e+01,
- -6.06357200e-01, -6.78109700e+00],
- [ -4.02876400e-01, -4.74878400e-01, -9.15226200e+01,
- -4.73751900e-01, -6.07225700e+00],
- [ -5.15056700e-01, -6.46013300e-01, -2.19014600e+02,
- -6.43043500e-01, -1.06209700e+01],
- [ -8.70423000e-02, -8.97043000e-02, -1.26361400e+01,
- -8.96975000e-02, -1.04875100e+00],
- [ 1.28362300e-01, 1.23247800e-01, 1.70383300e+01,
- 1.23231000e-01, 1.47887800e+00],
- [ -2.39271900e-01, -2.61562100e-01, -9.30283300e+01,
- -2.61384400e-01, -4.71795100e+00],
- [ 7.37246500e-01, 6.08186000e-01, 6.25359600e+01,
- 6.06409700e-01, 6.79002300e+00],
- [ -3.64110000e-02, -3.68626000e-02, -1.41565300e+01,
- -3.68621000e-02, -7.17951200e-01],
- [ 2.68833000e-01, 2.47933100e-01, 6.67934100e+01,
- 2.47801000e-01, 4.23748400e+00],
- [ 5.96389600e-01, 5.07237700e-01, 1.13265500e+02,
- 5.06180100e-01, 8.21890300e+00],
- [ 1.98218000e-02, 1.96923000e-02, 1.00820900e+01,
- 1.96923000e-02, 4.47040700e-01],
- [ 7.74936000e-01, 6.34305300e-01, 2.51883900e+02,
- 6.32303700e-01, 1.39711800e+01],
- [ -7.63925100e-01, -1.16591700e+00, -4.93461700e+02,
- -1.14588000e+00, -1.94156600e+01],
- [ -6.23771700e-01, -8.41174800e-01, -4.40679600e+02,
- -8.34266300e-01, -1.65796100e+01],
- [ -1.63272900e-01, -1.73115100e-01, -6.73975900e+01,
- -1.73064800e-01, -3.31725800e+00],
- [ -4.28562500e-01, -5.11932900e-01, -4.73787800e+02,
- -5.10507400e-01, -1.42494800e+01],
- [ 8.00693000e-02, 7.80269000e-02, 3.95353400e+01,
- 7.80226000e-02, 1.77920500e+00],
- [ -2.13674400e-01, -2.31127400e-01, -2.15987000e+02,
- -2.31005700e-01, -6.79344600e+00],
- [ -1.63544000e-02, -1.64444000e-02, -1.05642100e+01,
- -1.64444000e-02, -4.15657600e-01],
- [ 2.04900500e-01, 1.92372100e-01, 1.10651300e+02,
- 1.92309400e-01, 4.76156600e+00],
- [ -1.94758900e-01, -2.09067700e-01, -2.35484100e+02,
- -2.08978200e-01, -6.77219400e+00],
- [ 3.16727400e-01, 2.88367800e-01, 1.87065600e+02,
- 2.88162100e-01, 7.69732400e+00],
- [ 6.24234900e-01, 5.27632500e-01, 2.57678500e+02,
- 5.26448400e-01, 1.26827400e+01],
- [ 8.30241100e-01, 6.72002100e-01, 2.86513700e+02,
- 6.69644800e-01, 1.54232100e+01],
- [ 6.55140000e-03, 6.53710000e-03, 7.92130700e+00,
- 6.53710000e-03, 2.27805800e-01],
- [ 3.41595200e-01, 3.08985000e-01, 2.88667600e+02,
- 3.08733300e-01, 9.93012900e+00]])
- self.null_deviance = 27.92207137420696 # From R (bug in rpy)
- self.params = np.array([-0.04477778, 0.57437126, 1.05210726,
- 4.64604002])
- self.bse = np.array([ 0.0147328 , 0.19694727, 0.19772507,
- 0.83534671])
-
- self.aic_R = 331.89022395372069
-
- self.aic_Stata = 7.403608467857651
- self.deviance = 16.174635536991005
- self.scale = 0.31805268736385695
-
-# self.llf = -160.94511197686035 # From R
- self.llf = -173.6866032285836 # from Staa
- self.bic_Stata = -154.1582089453923 # from Stata
- self.df_model = 3
- self.df_resid = 44
- self.chi2 = 36.77821448266359 # from Stata not in sm
-
- self.fittedvalues = np.array([ 6.78419193, 5.67167253, 7.41979002,
- 10.15123371,
- 8.48656317, 5.18582263, 6.20304079, 7.75958258,
- 8.48656317, 7.75958258, 10.15123371, 11.61071755,
- 11.10228357, 8.87520908, 11.61071755, 6.48711178,
- 10.61611394, 11.61071755, 8.11493609, 10.15123371,
- 9.21009116, 10.07296716, 13.78112366, 15.07225103,
- 20.62079147, 12.04881666, 11.5211983 , 19.71780584,
- 9.21009116, 19.71780584, 15.76249142, 13.78112366,
- 22.55271436, 18.02872842, 25.41575239, 26.579678 ,
- 20.31745227, 33.24937131, 22.22095589, 31.79337946,
- 25.41575239, 23.23857437, 34.77204095, 24.30279515,
- 20.31745227, 18.57700761, 34.77204095, 29.06987768])
-
-class CancerIdentity(Cancer):
- """
- CancerIdentity is used with TestGlmGammaIdentity
- """
- def __init__(self):
- super(CancerIdentity, self).__init__()
-
- self.resids = np.array([[ -8.52598100e-01, -1.45739100e+00,
- -3.92408100e+01,
- -1.41526900e+00, -5.78417200e+00],
- [ -8.23683800e-01, -1.35040200e+00, -2.64957500e+01,
- -1.31777000e+00, -4.67162900e+00],
- [ -7.30450400e-01, -1.07754600e+00, -4.02136400e+01,
- -1.06208800e+00, -5.41978500e+00],
- [ -7.04471600e-01, -1.01441500e+00, -7.25951500e+01,
- -1.00172900e+00, -7.15130900e+00],
- [ -5.28668000e-01, -6.68617300e-01, -3.80758100e+01,
- -6.65304600e-01, -4.48658700e+00],
- [ -2.28658500e-01, -2.48859700e-01, -6.14913600e+00,
- -2.48707200e-01, -1.18577100e+00],
- [ -1.93939400e-01, -2.08119900e-01, -7.46226500e+00,
- -2.08031700e-01, -1.20300800e+00],
- [ -3.55635700e-01, -4.09525000e-01, -2.14132500e+01,
- -4.08815100e-01, -2.75958600e+00],
- [ -5.73360000e-02, -5.84700000e-02, -4.12946200e+00,
- -5.84681000e-02, -4.86586900e-01],
- [ 3.09828000e-02, 3.06685000e-02, 1.86551100e+00,
- 3.06682000e-02, 2.40413800e-01],
- [ -2.11924300e-01, -2.29071300e-01, -2.18386100e+01,
- -2.28953000e-01, -2.15130900e+00],
- [ -3.10989000e-01, -3.50739300e-01, -4.19249500e+01,
- -3.50300400e-01, -3.61084500e+00],
- [ -9.22250000e-03, -9.25100000e-03, -1.13679700e+00,
- -9.25100000e-03, -1.02392100e-01],
- [ 2.39402500e-01, 2.22589700e-01, 1.88577300e+01,
- 2.22493500e-01, 2.12475600e+00],
- [ 3.35166000e-02, 3.31493000e-02, 4.51842400e+00,
- 3.31489000e-02, 3.89155400e-01],
- [ 8.49829400e-01, 6.85180200e-01, 3.57627500e+01,
- 6.82689900e-01, 5.51291500e+00],
- [ 4.12934200e-01, 3.66785200e-01, 4.65392600e+01,
- 3.66370400e-01, 4.38379500e+00],
- [ 4.64148400e-01, 4.07123200e-01, 6.25726500e+01,
- 4.06561900e-01, 5.38915500e+00],
- [ 1.71104600e+00, 1.19474800e+00, 1.12676500e+02,
- 1.18311900e+00, 1.38850500e+01],
- [ 1.26571800e+00, 9.46389000e-01, 1.30431000e+02,
- 9.40244600e-01, 1.28486900e+01],
- [ -3.48532600e-01, -3.99988300e-01, -2.95638100e+01,
- -3.99328600e-01, -3.20997700e+00],
- [ -4.04340300e-01, -4.76960100e-01, -4.10254300e+01,
- -4.75818000e-01, -4.07286500e+00],
- [ -4.92057900e-01, -6.08818300e-01, -9.34509600e+01,
- -6.06357200e-01, -6.78109700e+00],
- [ -4.02876400e-01, -4.74878400e-01, -9.15226200e+01,
- -4.73751900e-01, -6.07225700e+00],
- [ -5.15056700e-01, -6.46013300e-01, -2.19014600e+02,
- -6.43043500e-01, -1.06209700e+01],
- [ -8.70423000e-02, -8.97043000e-02, -1.26361400e+01,
- -8.96975000e-02, -1.04875100e+00],
- [ 1.28362300e-01, 1.23247800e-01, 1.70383300e+01,
- 1.23231000e-01, 1.47887800e+00],
- [ -2.39271900e-01, -2.61562100e-01, -9.30283300e+01,
- -2.61384400e-01, -4.71795100e+00],
- [ 7.37246500e-01, 6.08186000e-01, 6.25359600e+01,
- 6.06409700e-01, 6.79002300e+00],
- [ -3.64110000e-02, -3.68626000e-02, -1.41565300e+01,
- -3.68621000e-02, -7.17951200e-01],
- [ 2.68833000e-01, 2.47933100e-01, 6.67934100e+01,
- 2.47801000e-01, 4.23748400e+00],
- [ 5.96389600e-01, 5.07237700e-01, 1.13265500e+02,
- 5.06180100e-01, 8.21890300e+00],
- [ 1.98218000e-02, 1.96923000e-02, 1.00820900e+01,
- 1.96923000e-02, 4.47040700e-01],
- [ 7.74936000e-01, 6.34305300e-01, 2.51883900e+02,
- 6.32303700e-01, 1.39711800e+01],
- [ -7.63925100e-01, -1.16591700e+00, -4.93461700e+02,
- -1.14588000e+00, -1.94156600e+01],
- [ -6.23771700e-01, -8.41174800e-01, -4.40679600e+02,
- -8.34266300e-01, -1.65796100e+01],
- [ -1.63272900e-01, -1.73115100e-01, -6.73975900e+01,
- -1.73064800e-01, -3.31725800e+00],
- [ -4.28562500e-01, -5.11932900e-01, -4.73787800e+02,
- -5.10507400e-01, -1.42494800e+01],
- [ 8.00693000e-02, 7.80269000e-02, 3.95353400e+01,
- 7.80226000e-02, 1.77920500e+00],
- [ -2.13674400e-01, -2.31127400e-01, -2.15987000e+02,
- -2.31005700e-01, -6.79344600e+00],
- [ -1.63544000e-02, -1.64444000e-02, -1.05642100e+01,
- -1.64444000e-02, -4.15657600e-01],
- [ 2.04900500e-01, 1.92372100e-01, 1.10651300e+02,
- 1.92309400e-01, 4.76156600e+00],
- [ -1.94758900e-01, -2.09067700e-01, -2.35484100e+02,
- -2.08978200e-01, -6.77219400e+00],
- [ 3.16727400e-01, 2.88367800e-01, 1.87065600e+02,
- 2.88162100e-01, 7.69732400e+00],
- [ 6.24234900e-01, 5.27632500e-01, 2.57678500e+02,
- 5.26448400e-01, 1.26827400e+01],
- [ 8.30241100e-01, 6.72002100e-01, 2.86513700e+02,
- 6.69644800e-01, 1.54232100e+01],
- [ 6.55140000e-03, 6.53710000e-03, 7.92130700e+00,
- 6.53710000e-03, 2.27805800e-01],
- [ 3.41595200e-01, 3.08985000e-01, 2.88667600e+02,
- 3.08733300e-01, 9.93012900e+00]])
-
- self.params = np.array([ -0.5369833, 6.47296332, 16.20336802,
- 38.96617431])
- self.bse = np.array([ 0.13341238, 2.1349966 , 3.87411875, 8.19235553])
-
- self.aic_R = 328.39209118952965
-
-#TODO: the below will fail
- self.aic_Stata = 7.381090276021671
- self.deviance = 15.093762327607557
- self.scale = 0.29512089119443752
- self.null_deviance = 27.92207137420696 # from R bug in RPy
-#NOTE: our scale is Stata's dispers_p (pearson?)
-#NOTE: if scale is analagous to Stata's dispersion, then this might be
-#where the discrepancies come from?
-# self.llf = -159.19604559476483 # From R
- self.llf = -173.1461666245201 # From Stata
- self.bic_Stata = -155.2390821535193
- self.df_model = 3
- self.df_resid = 44
- self.chi2 = 51.56632068622578
- self.fittedvalues = np.array([ 6.21019277, 4.06225956,
- 7.28415938, 11.04304251,
- 8.89510929, 2.98829295, 5.13622616, 7.82114268,
- 8.89510929, 7.82114268, 11.04304251, 12.65399242,
- 12.11700911, 9.43209259, 12.65399242, 5.67320947,
- 11.58002581, 12.65399242, 8.35812599, 11.04304251,
- 9.46125627, 10.53522287, 14.294106 , 15.36807261,
- 19.12695574, 12.68315609, 12.14617279, 18.58997243,
- 9.46125627, 18.58997243, 15.90505591, 14.294106 ,
- 20.20092234, 17.51600582, 25.63546061, 26.17244391,
- 22.95054409, 28.85736043, 24.0245107 , 28.32037713,
- 25.63546061, 24.561494 , 29.39434374, 25.09847731,
- 22.95054409, 21.87657748, 29.39434374, 27.24641052])
-
-class Cpunish(object):
- '''
- The following are from the R script in models.datasets.cpunish
- Slightly different than published results, but should be correct
- Probably due to rounding in cleaning?
- '''
- def __init__(self):
- self.params = (2.611017e-04, 7.781801e-02, -9.493111e-02, 2.969349e-01,
- 2.301183e+00, -1.872207e+01, -6.801480e+00)
- self.bse = (5.187132e-05, 7.940193e-02, 2.291926e-02, 4.375164e-01,
- 4.283826e-01, 4.283961e+00, 4.146850e+00)
- self.null_deviance = 136.57281747225
- self.df_null = 16
- self.deviance = 18.591641759528944
- self.df_resid = 10
- self.df_model = 6
- self.aic_R = 77.8546573896503 # same as Stata
- self.aic_Stata = 4.579685683305706
- self.bic_Stata = -9.740492454486446
- self.chi2 = 128.8021169250578 # from Stata not in sm
- self.llf = -31.92732869482515
- self.scale = 1
- self.pearson_chi2 = 24.75374835
- self.resids = glm_test_resids.cpunish_resids
- self.fittedvalues = np.array([35.2263655, 8.1965744, 1.3118966,
- 3.6862982, 2.0823003, 1.0650316, 1.9260424, 2.4171405,
- 1.8473219, 2.8643241, 3.1211989, 3.3382067, 2.5269969,
- 0.8972542, 0.9793332, 0.5346209, 1.9790936])
-
-class InvGauss(object):
- '''
- Usef
-
- Data was generated by Hardin and Hilbe using Stata.
- Note only the first 5000 observations are used because
- the models code currently uses np.eye.
- '''
-# np.random.seed(54321)
-# x1 = np.abs(stats.norm.ppf((np.random.random(5000))))
-# x2 = np.abs(stats.norm.ppf((np.random.random(5000))))
-# X = np.column_stack((x1,x2))
-# X = add_constant(X)
-# params = np.array([.5, -.25, 1])
-# eta = np.dot(X, params)
-# mu = 1/np.sqrt(eta)
-# sigma = .5
-# This isn't correct. Errors need to be normally distributed
-# But Y needs to be Inverse Gaussian, so we could build it up
-# by throwing out data?
-# Refs: Lai (2009) Generating inverse Gaussian random variates by
-# approximation
-# Atkinson (1982) The simulation of generalized inverse gaussian and
-# hyperbolic random variables seems to be the canonical ref
-# Y = np.dot(X,params) + np.random.wald(mu, sigma, 1000)
-# model = GLM(Y, X, family=models.family.InverseGaussian(link=\
-# models.family.links.identity))
-
- def __init__(self):
- # set up data #
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "inv_gaussian.csv")
- data=np.genfromtxt(open(filename, 'rb'), delimiter=",", dtype=float)[1:]
- self.endog = data[:5000,0]
- self.exog = data[:5000,1:]
- self.exog = add_constant(self.exog)
-
-#class InvGaussDefault(InvGauss)
-# def __init__(self):
-# super(InvGaussDefault, self).__init__()
- # Results
-#NOTE: loglikelihood difference in R vs. Stata vs. Models
-# is the same situation as gamma
- self.params = (0.4519770, -0.2508288, 1.0359574)
- self.bse = (0.03148291, 0.02237211, 0.03429943)
- self.null_deviance = 1520.673165475461
- self.df_null = 4999
- self.deviance = 1423.943980407997
- self.df_resid = 4997
- self.df_model = 2
- self.aic_R = 5059.41911646446
- self.aic_Stata = 1.552280060977946
- self.bic_Stata = -41136.47039418921
- self.llf = -3877.700354 # Stata is same as ours with scale set to 1
-# self.llf = -2525.70955823223 # from R, close to ours
- self.scale = 0.2867266359127567
- self.pearson_chi2 = 1432.771536
- self.resids = glm_test_resids.invgauss_resids
- self.fittedvalues = np.array([ 1.0404339 , 0.96831526,
- 0.81265833, 0.9958362 , 1.05433442,
- 1.09866137, 0.95548191, 1.38082105, 0.98942888, 0.96521958,
- 1.02684056, 0.91412576, 0.91492102, 0.92639676, 0.96763425,
- 0.80250852, 0.85281816, 0.90962261, 0.95550299, 0.86386815,
- 0.94760134, 0.94269533, 0.98960509, 0.84787252, 0.78949111,
- 0.76873582, 0.98933453, 0.95105574, 0.8489395 , 0.88962971,
- 0.84856357, 0.88567313, 0.84505405, 0.84626147, 0.77250421,
- 0.90175601, 1.15436378, 0.98375558, 0.83539542, 0.82845381,
- 0.90703971, 0.85546165, 0.96707286, 0.84127197, 0.82096543,
- 1.1311227 , 0.87617029, 0.91194419, 1.05125511, 0.95330314,
- 0.75556148, 0.82573228, 0.80424982, 0.83800144, 0.8203644 ,
- 0.84423807, 0.98348433, 0.93165089, 0.83968706, 0.79256287,
- 1.0302839 , 0.90982028, 0.99471562, 0.70931825, 0.85471721,
- 1.02668021, 1.11308301, 0.80497105, 1.02708486, 1.07671424,
- 0.821108 , 0.86373486, 0.99104964, 1.06840593, 0.94947784,
- 0.80982122, 0.95778065, 1.0254212 , 1.03480946, 0.83942363,
- 1.17194944, 0.91772559, 0.92368795, 1.10410916, 1.12558875,
- 1.11290791, 0.87816503, 1.04299294, 0.89631173, 1.02093004,
- 0.86331723, 1.13134858, 1.01807861, 0.98441692, 0.72567667,
- 1.42760495, 0.78987436, 0.72734482, 0.81750166, 0.86451854,
- 0.90564264, 0.81022323, 0.98720325, 0.98263709, 0.99364823,
- 0.7264445 , 0.81632452, 0.7627845 , 1.10726938, 0.79195664,
- 0.86836774, 1.01558149, 0.82673675, 0.99529548, 0.97155636,
- 0.980696 , 0.85460503, 1.00460782, 0.77395244, 0.81229831,
- 0.94078297, 1.05910564, 0.95921954, 0.97841172, 0.93093166,
- 0.93009865, 0.89888111, 1.18714408, 0.98964763, 1.03388898,
- 1.67554215, 0.82998876, 1.34100687, 0.86766346, 0.96392316,
- 0.91371033, 0.76589296, 0.92329051, 0.82560326, 0.96758148,
- 0.8412995 , 1.02550678, 0.74911108, 0.8751611 , 1.01389312,
- 0.87865556, 1.24095868, 0.90678261, 0.85973204, 1.05617845,
- 0.94163038, 0.88087351, 0.95699844, 0.86083491, 0.89669384,
- 0.78646825, 1.0014202 , 0.82399199, 1.05313139, 1.06458324,
- 0.88501766, 1.19043294, 0.8458026 , 1.00231535, 0.72464305,
- 0.94790753, 0.7829744 , 1.1953009 , 0.85574035, 0.95433052,
- 0.96341484, 0.91362908, 0.94097713, 0.87273804, 0.81126399,
- 0.72715262, 0.85526116, 0.76015834, 0.8403826 , 0.9831501 ,
- 1.17104665, 0.78862494, 1.01054909, 0.91511601, 1.0990797 ,
- 0.91352124, 1.13671162, 0.98793866, 1.0300545 , 1.04490115,
- 0.85778231, 0.94824343, 1.14510618, 0.81305136, 0.88085051,
- 0.94743792, 0.94875465, 0.96206997, 0.94493612, 0.93547218,
- 1.09212018, 0.86934651, 0.90532353, 1.07066001, 1.26197714,
- 0.93858662, 0.9685039 , 0.7946546 , 1.03052031, 0.75395899,
- 0.87527062, 0.82156476, 0.949774 , 1.01000235, 0.82613526,
- 1.0224591 , 0.91529149, 0.91608832, 1.09418385, 0.8228272 ,
- 1.06337472, 1.05533176, 0.93513063, 1.00055806, 0.95474743,
- 0.91329368, 0.88711836, 0.95584926, 0.9825458 , 0.74954073,
- 0.96964967, 0.88779583, 0.95321846, 0.95390055, 0.95369029,
- 0.94326714, 1.31881201, 0.71512263, 0.84526602, 0.92323824,
- 1.01993108, 0.85155992, 0.81416851, 0.98749128, 1.00034192,
- 0.98763473, 1.05974138, 1.05912658, 0.89772172, 0.97905626,
- 1.1534306 , 0.92304181, 1.16450278, 0.7142307 , 0.99846981,
- 0.79861247, 0.73939835, 0.93776385, 1.0072242 , 0.89159707,
- 1.05514263, 1.05254569, 0.81005146, 0.95179784, 1.00278795,
- 1.04910398, 0.88427798, 0.74394266, 0.92941178, 0.83622845,
- 0.84064958, 0.93426956, 1.03619314, 1.22439347, 0.73510451,
- 0.82997071, 0.90828036, 0.80866989, 1.34078212, 0.85079169,
- 0.88346039, 0.76871666, 0.96763454, 0.66936914, 0.94175741,
- 0.97127617, 1.00844382, 0.83449557, 0.88095564, 1.17711652,
- 1.0547188 , 1.04525593, 0.93817487, 0.77978294, 1.36143199,
- 1.16127997, 1.03792952, 1.03151637, 0.83837387, 0.94326066,
- 1.0054787 , 0.99656841, 1.05575689, 0.97641643, 0.85108163,
- 0.82631589, 0.77407305, 0.90566132, 0.91308164, 0.95560906,
- 1.04523011, 1.03773723, 0.97378685, 0.83999133, 1.06926871,
- 1.01073982, 0.9804959 , 1.06473061, 1.25315673, 0.969175 ,
- 0.63443508, 0.84574684, 1.06031239, 0.93834605, 1.01784925,
- 0.93488249, 0.80240225, 0.88757274, 0.9224097 , 0.99158962,
- 0.87412592, 0.76418199, 0.78044069, 1.03117412, 0.82042521,
- 1.10272129, 1.09673757, 0.89626935, 1.01678612, 0.84911824,
- 0.95821431, 0.99169558, 0.86853864, 0.92172772, 0.94046199,
- 0.89750517, 1.09599258, 0.92387291, 1.07770118, 0.98831383,
- 0.86352396, 0.83079533, 0.94431185, 1.12424626, 1.02553104,
- 0.8357513 , 0.97019669, 0.76816092, 1.34011343, 0.86489527,
- 0.82156358, 1.25529129, 0.86820218, 0.96970237, 0.85850546,
- 0.97429559, 0.84826078, 1.02498396, 0.72478517, 0.993497 ,
- 0.76918521, 0.91079198, 0.80988325, 0.75431095, 1.02918073,
- 0.88884197, 0.82625507, 0.78564563, 0.91505355, 0.88896863,
- 0.85882361, 0.81538316, 0.67656235, 0.8564822 , 0.82473022,
- 0.92928331, 0.98068415, 0.82605685, 1.0150412 , 1.00631678,
- 0.92405101, 0.88909552, 0.94873568, 0.87657342, 0.8280683 ,
- 0.77596382, 0.96598811, 0.78922426, 0.87637606, 0.98698735,
- 0.92207026, 0.71487846, 1.03845478, 0.70749745, 1.08603388,
- 0.92697779, 0.86470448, 0.70119494, 1.00596847, 0.91426549,
- 1.05318838, 0.79621712, 0.96169742, 0.88053405, 0.98963934,
- 0.94152997, 0.88413591, 0.75035344, 0.86007123, 0.83713514,
- 0.91234911, 0.79562744, 0.84099675, 1.0334279 , 1.00272243,
- 0.95359383, 0.84292969, 0.94234155, 0.90190899, 0.97302022,
- 1.1009829 , 1.0148975 , 0.99082987, 0.75916515, 0.9204784 ,
- 0.94477378, 1.01108683, 1.00038149, 0.9259798 , 1.19400436,
- 0.80191877, 0.79565851, 0.81865924, 0.79003506, 0.8995508 ,
- 0.73137983, 0.88336018, 0.7855268 , 1.04478073, 0.90857981,
- 1.16076951, 0.76096486, 0.90004113, 0.83819665, 0.95295365,
- 1.09911441, 0.78498197, 0.95094991, 0.94333419, 0.95131688,
- 0.82961049, 1.08001761, 1.06426458, 0.94291798, 1.04381938,
- 0.90380364, 0.74060138, 0.98701862, 0.72250236, 0.86125293,
- 0.76488061, 0.9858051 , 0.98099677, 0.96849209, 0.90053351,
- 0.88469597, 0.80688516, 1.06396217, 1.02446023, 0.911863 ,
- 0.98837746, 0.91102987, 0.92810392, 1.13526335, 1.00419541,
- 1.00866175, 0.74352261, 0.91051641, 0.81868428, 0.93538014,
- 0.87822651, 0.93278572, 1.0356074 , 1.25158731, 0.98372647,
- 0.81335741, 1.06441863, 0.80305786, 0.95201148, 0.90283451,
- 1.17319519, 0.8984894 , 0.88911288, 0.91474736, 0.94512294,
- 0.92956283, 0.86682085, 1.08937227, 0.94825713, 0.9787145 ,
- 1.16747163, 0.80863682, 0.98314119, 0.91052823, 0.80913225,
- 0.78503169, 0.78751737, 1.08932193, 0.86859845, 0.96847458,
- 0.93468839, 1.10769915, 1.1769249 , 0.84916138, 1.00556408,
- 0.84508585, 0.92617942, 0.93985886, 1.17303268, 0.81172495,
- 0.93482682, 1.04082486, 1.03209348, 0.97220394, 0.90274672,
- 0.93686291, 0.91116431, 1.14814563, 0.83279158, 0.95853283,
- 1.0261179 , 0.95779432, 0.86995883, 0.78164915, 0.89946906,
- 0.9194465 , 0.97919367, 0.92719039, 0.89063569, 0.80847805,
- 0.81192101, 0.75044535, 0.86819023, 1.03420014, 0.8899434 ,
- 0.94899544, 0.9860773 , 1.10047297, 1.00243849, 0.82153972,
- 1.14289945, 0.8604684 , 0.87187524, 1.00415032, 0.78460709,
- 0.86319884, 0.92818335, 1.08892111, 1.06841003, 1.00735918,
- 1.20775251, 0.72613554, 1.25768191, 1.08573511, 0.89671127,
- 0.91259535, 1.01414208, 0.87422903, 0.82720677, 0.9568079 ,
- 1.00450416, 0.91043845, 0.84095709, 1.08010574, 0.69848293,
- 0.90769214, 0.94713501, 1.14808251, 1.0605676 , 1.21734482,
- 0.78578521, 1.01516235, 0.94330326, 0.98363817, 0.99650084,
- 0.74280796, 0.96227123, 0.95741454, 1.00980406, 0.93468092,
- 1.10098591, 1.18175828, 0.8553791 , 0.81713219, 0.82912143,
- 0.87599518, 1.15006511, 1.03151163, 0.8751847 , 1.15701331,
- 0.73394166, 0.91426368, 0.96953458, 1.13901709, 0.83028721,
- 1.15742641, 0.9395442 , 0.98118552, 0.89585426, 0.74147117,
- 0.8902096 , 1.00212097, 0.97665858, 0.92624514, 0.98006601,
- 0.9507215 , 1.00889825, 1.2406772 , 0.88768719, 0.76587533,
- 1.0081044 , 0.89608494, 1.00083526, 0.85594415, 0.76425576,
- 1.0286636 , 1.13570272, 0.82020405, 0.81961271, 1.04586579,
- 1.26560245, 0.89721521, 1.19324037, 0.948205 , 0.79414261,
- 0.85157002, 0.95155101, 0.91969239, 0.87699126, 1.03452982,
- 0.97093572, 1.14355781, 0.85088592, 0.79032079, 0.84521733,
- 0.99547581, 0.87593455, 0.8776799 , 1.05531013, 0.94557017,
- 0.91538439, 0.79679863, 1.03398557, 0.88379021, 0.98850319,
- 1.05833423, 0.90055078, 0.92267584, 0.76273738, 0.98222632,
- 0.86392524, 0.78242646, 1.19417739, 0.89159895, 0.97565002,
- 0.85818308, 0.85334266, 1.85008011, 0.87199282, 0.77873231,
- 0.78036174, 0.96023918, 0.91574121, 0.89217979, 1.16421151,
- 1.29817786, 1.18683283, 0.96096225, 0.89964569, 1.00401442,
- 0.80758845, 0.89458758, 0.7994919 , 0.85889356, 0.73147252,
- 0.7777221 , 0.9148438 , 0.72388117, 0.91134001, 1.0892724 ,
- 1.01736424, 0.86503014, 0.77344917, 1.04515616, 1.06677211,
- 0.93421936, 0.8821777 , 0.91860774, 0.96381507, 0.70913689,
- 0.82354748, 1.12416046, 0.85989778, 0.90588737, 1.22832895,
- 0.65955579, 0.93828405, 0.88946418, 0.92152859, 0.83168025,
- 0.93346887, 0.96456078, 0.9039245 , 1.03598695, 0.78405559,
- 1.21739525, 0.79019383, 0.84034646, 1.00273203, 0.96356393,
- 0.948103 , 0.90279217, 1.0187839 , 0.91630508, 1.15965854,
- 0.84203423, 0.98803156, 0.91604459, 0.90986512, 0.93384826,
- 0.76687038, 0.96251902, 0.80648134, 0.77336547, 0.85720164,
- 0.9351947 , 0.88004728, 0.91083961, 1.06225829, 0.90230812,
- 0.72383932, 0.8343425 , 0.8850996 , 1.19037918, 0.93595522,
- 0.85061223, 0.84330949, 0.82397482, 0.92075047, 0.86129584,
- 0.99296756, 0.84912251, 0.8569699 , 0.75252201, 0.80591772,
- 1.03902954, 1.04379139, 0.87360195, 0.97452318, 0.93240609,
- 0.85406409, 1.11717394, 0.95758536, 0.82772817, 0.67947416,
- 0.85957788, 0.93731268, 0.90349227, 0.79464185, 0.99148637,
- 0.8461071 , 0.95399991, 1.04320664, 0.87290871, 0.96780849,
- 0.99467159, 0.96421545, 0.80174643, 0.86475812, 0.74421362,
- 0.85230296, 0.89891758, 0.77589592, 0.98331957, 0.87387233,
- 0.92023388, 1.03037742, 0.83796515, 1.0296667 , 0.85891747,
- 1.02239978, 0.90958406, 1.09731875, 0.8032638 , 0.84482057,
- 0.8233118 , 0.86184709, 0.93105929, 0.99443502, 0.77442109,
- 0.98367982, 0.95786272, 0.81183444, 1.0526009 , 0.86993018,
- 0.985886 , 0.92016756, 1.00847155, 1.2309469 , 0.97732206,
- 0.83074957, 0.87406987, 0.95268492, 0.94189139, 0.87056443,
- 1.0135018 , 0.93051004, 1.5170931 , 0.80948763, 0.83737473,
- 1.05461331, 0.97501633, 1.01449333, 0.79760056, 1.05756482,
- 0.97300884, 0.92674035, 0.8933763 , 0.91624084, 1.13127607,
- 0.88115305, 0.9351562 , 0.91430431, 1.11668229, 1.10000526,
- 0.88171963, 0.74914744, 0.94610698, 1.13841497, 0.90551414,
- 0.89773592, 1.01696097, 0.85096063, 0.80935471, 0.68458106,
- 1.2718979 , 0.93550219, 0.96071403, 0.75434294, 0.95112257,
- 1.16233368, 0.73664915, 1.02195777, 1.07487625, 0.8937445 ,
- 0.78006023, 0.89588994, 1.16354892, 1.02629448, 0.89208642,
- 1.02088244, 0.85385355, 0.88586061, 0.94571704, 0.89710576,
- 0.95191525, 0.99819848, 0.97117841, 1.13899808, 0.88414949,
- 0.90938883, 1.02937917, 0.92936684, 0.87323594, 0.8384819 ,
- 0.87766945, 1.05869911, 0.91028734, 0.969953 , 1.11036647,
- 0.94996802, 1.01305483, 1.03697568, 0.9750155 , 1.04537837,
- 0.9314676 , 0.86589798, 1.17446667, 1.02564533, 0.82088708,
- 0.96481845, 0.86148642, 0.79174298, 1.18029919, 0.82132544,
- 0.92193776, 1.03669516, 0.96637464, 0.83725933, 0.88776321,
- 1.08395861, 0.91255709, 0.96884738, 0.89840008, 0.91168146,
- 0.99652569, 0.95693101, 0.83144932, 0.99886503, 1.02819927,
- 0.95273533, 0.95959945, 1.08515986, 0.70269432, 0.79529303,
- 0.93355669, 0.92597539, 1.0745695 , 0.87949758, 0.86133964,
- 0.95653873, 1.09161425, 0.91402143, 1.13895454, 0.89384443,
- 1.16281703, 0.8427015 , 0.7657266 , 0.92724079, 0.95383649,
- 0.86820891, 0.78942366, 1.11752711, 0.97902686, 0.87425286,
- 0.83944794, 1.12576718, 0.9196059 , 0.89844835, 1.10874172,
- 1.00396783, 0.9072041 , 1.63580253, 0.98327489, 0.68564426,
- 1.01007087, 0.92746473, 1.01328833, 0.99584546, 0.86381679,
- 1.0082541 , 0.85414132, 0.87620981, 1.22461203, 1.03935516,
- 0.86457326, 0.95165828, 0.84762138, 0.83080254, 0.84715241,
- 0.80323344, 1.09282941, 1.00902453, 1.02834261, 1.09810743,
- 0.86560231, 1.31568763, 1.03754782, 0.81298745, 1.14500629,
- 0.87364384, 0.89928367, 0.96118471, 0.83321743, 0.90590461,
- 0.98739499, 0.79408399, 1.18513754, 1.05619307, 0.99920088,
- 1.04347259, 1.07689022, 1.24916765, 0.74246274, 0.90949597,
- 0.87077335, 0.81233276, 1.05403934, 0.98333063, 0.77689527,
- 0.93181907, 0.98853585, 0.80700332, 0.89570662, 0.97102475,
- 0.69178123, 0.72950409, 0.89661719, 0.84821737, 0.8724469 ,
- 0.96453177, 0.9690018 , 0.87132764, 0.91711564, 1.79521288,
- 0.75894855, 0.90733112, 0.86565687, 0.90433268, 0.83412618,
- 1.26779628, 1.06999114, 0.73181364, 0.90334838, 0.86634581,
- 0.76999285, 1.55403008, 0.74712547, 0.84702579, 0.72396203,
- 0.82292773, 0.73633208, 0.90524618, 0.9954355 , 0.85076517,
- 0.96097585, 1.21655611, 0.77658146, 0.81026686, 1.07540173,
- 0.94219623, 0.97472554, 0.72422803, 0.85055855, 0.85905477,
- 1.17391419, 0.87644114, 1.03573284, 1.16647944, 0.87810532,
- 0.89134419, 0.83531593, 0.93448128, 1.04967869, 1.00110843,
- 0.936784 , 1.00143426, 0.79714807, 0.82656251, 0.95057309,
- 0.93821813, 0.93469098, 0.99825205, 0.95384714, 1.07063008,
- 0.97603699, 0.816668 , 0.98286184, 0.86061483, 0.88166732,
- 0.93730982, 0.77633837, 0.87671549, 0.99192439, 0.86452825,
- 0.95880282, 0.7098419 , 1.12717149, 1.16707939, 0.84854333,
- 0.87486963, 0.9255293 , 1.06534197, 0.9888494 , 1.09931069,
- 1.21859221, 0.97489537, 0.82508579, 1.14868922, 0.98076133,
- 0.85524084, 0.69042079, 0.93012936, 0.96908499, 0.94284892,
- 0.80114327, 0.919846 , 0.95753354, 1.04536666, 0.77109284,
- 0.99942571, 0.79004323, 0.91820045, 0.97665489, 0.64689716,
- 0.89444405, 0.96106598, 0.74196857, 0.92905294, 0.70500318,
- 0.95074586, 0.98518665, 1.0794044 , 1.00364488, 0.96710486,
- 0.92429638, 0.94383006, 1.12554253, 0.95199191, 0.87380738,
- 0.72183594, 0.94453761, 0.98663804, 0.68247366, 1.02761427,
- 0.93255355, 0.85264705, 1.00341417, 1.07765999, 0.97396039,
- 0.90770805, 0.82750901, 0.73824542, 1.24491161, 0.83152629,
- 0.78656996, 0.99062838, 0.98276905, 0.98291014, 1.12795903,
- 0.98742704, 0.9579893 , 0.80451701, 0.87198344, 1.24746127,
- 0.95839155, 1.11708725, 0.97113877, 0.7721646 , 0.95781621,
- 0.67069168, 1.05509376, 0.96071852, 0.99768666, 0.83008521,
- 0.9156695 , 0.86314088, 1.23081412, 1.14723685, 0.8007289 ,
- 0.81590842, 1.31857558, 0.7753396 , 1.11091566, 1.03560198,
- 1.01837739, 0.94882818, 0.82551111, 0.93188019, 0.99532255,
- 0.93848495, 0.77764975, 0.85192319, 0.79913938, 0.99495229,
- 0.96122733, 1.13845155, 0.95846389, 0.8891543 , 0.97979531,
- 0.87167192, 0.88119611, 0.79655111, 0.9298217 , 0.96399321,
- 1.02005428, 1.06936503, 0.86948022, 1.02560548, 0.9149464 ,
- 0.83797207, 0.86175383, 0.92455994, 0.89218435, 0.81546463,
- 0.98488771, 0.92784833, 0.87895608, 0.93366386, 1.17487238,
- 0.79088952, 0.9237694 , 0.76389869, 0.931953 , 0.76272078,
- 1.00304977, 0.86612561, 0.87870143, 0.93808276, 1.12489343,
- 1.00668791, 0.88027101, 0.88845209, 0.88574216, 0.84284514,
- 0.96594357, 0.94363002, 0.78245367, 0.92941326, 0.99622557,
- 0.83812683, 0.77901691, 0.9588432 , 0.82057415, 0.95178868,
- 1.01904651, 0.97598844, 0.99369336, 1.12041918, 1.19432836,
- 0.91709572, 0.94645855, 0.93656587, 0.68754669, 0.80869784,
- 0.86704186, 0.83033797, 0.71892193, 0.97549489, 1.12150683,
- 0.76214802, 1.08564181, 0.84677802, 0.68080207, 1.03577057,
- 1.07937239, 0.6773357 , 1.0279076 , 0.89945816, 0.97765439,
- 0.91322633, 0.92490964, 0.92693575, 1.12297137, 0.81825246,
- 0.87598377, 1.11873032, 0.83472799, 1.21424495, 1.02318444,
- 1.01563195, 1.05663193, 0.82533918, 0.88766496, 0.95906474,
- 0.90738779, 0.93509534, 1.06658145, 1.00231797, 1.3131534 ,
- 0.88839464, 1.081006 , 0.866936 , 0.89030904, 0.91197562,
- 0.73449761, 0.95767806, 1.03407868, 0.79812826, 1.10555445,
- 0.85610722, 0.87420881, 1.04251375, 1.14286242, 1.00025972,
- 0.83742693, 1.11116502, 0.97424809, 0.92059325, 0.93958773,
- 0.80386755, 0.6881267 , 0.88620708, 1.01715536, 1.12403581,
- 0.91078992, 0.81101399, 1.17271429, 1.09980447, 0.86063042,
- 0.80805811, 0.87988444, 0.97398188, 0.91808966, 0.90676805,
- 0.80042891, 0.84060789, 0.9710147 , 1.00012669, 1.04805667,
- 0.66912164, 0.96111694, 0.86948596, 0.9056999 , 1.01489333,
- 1.27876763, 0.873881 , 0.98276702, 0.95553234, 0.82877996,
- 0.79697623, 0.77015376, 0.8234212 , 1.13394959, 0.96244655,
- 1.06516156, 0.82743856, 1.02931842, 0.78093489, 1.01322256,
- 1.00348929, 0.9408142 , 1.06495299, 0.8599522 , 0.81640723,
- 0.81505589, 1.02506487, 0.91148383, 1.11134309, 0.83992234,
- 0.82982074, 0.9721429 , 0.98897262, 1.01815004, 0.87838456,
- 0.80573592, 1.103707 , 0.97326218, 1.08921236, 1.2638062 ,
- 0.83142563, 1.16028769, 0.86701564, 1.15610014, 0.98303722,
- 0.87138463, 0.75281511, 1.07715535, 0.91526065, 1.08769832,
- 0.83598308, 1.03580956, 0.9390066 , 0.78544378, 1.03635836,
- 0.7974467 , 0.99273331, 0.89639711, 0.9250066 , 1.14323824,
- 0.9783478 , 1.15460639, 0.94265587, 1.09317654, 0.78585439,
- 0.99523323, 0.95104776, 0.85582572, 0.96100168, 0.9131529 ,
- 0.86496966, 0.72414589, 1.05142704, 0.85570039, 0.98217968,
- 0.99031168, 1.01867086, 0.96781667, 0.98581487, 1.00415938,
- 1.0339337 , 1.13987579, 1.14205543, 0.83393745, 0.96348647,
- 0.91895164, 0.77055293, 1.0053723 , 0.93168993, 1.00332386,
- 1.04195993, 1.11933891, 0.87439883, 0.87156457, 0.96050419,
- 0.72718399, 1.13546762, 0.89614816, 0.85081037, 0.8831463 ,
- 0.76370482, 0.99582951, 1.01844155, 1.08611311, 1.15832217,
- 1.17551069, 0.97057262, 0.95163548, 0.98310701, 0.65874788,
- 0.9655409 , 0.85675853, 1.34637286, 0.93779619, 1.0005791 ,
- 0.88104966, 1.14530829, 0.93687034, 1.01472112, 1.62464726,
- 0.84652357, 0.84639676, 0.87513324, 0.94837881, 0.85425129,
- 0.89820401, 0.94906277, 0.97796792, 0.98969445, 0.8036801 ,
- 1.03936478, 0.95898918, 0.82919938, 1.29609354, 0.97833841,
- 0.86862799, 0.88040491, 0.8741178 , 0.80617278, 0.95983882,
- 0.9752235 , 0.84292828, 0.9327284 , 0.93297136, 1.06255543,
- 0.88756716, 1.13601403, 0.72311518, 0.95250034, 0.95369843,
- 1.02562728, 0.74354691, 0.78463923, 0.88720818, 1.07763289,
- 0.94502062, 0.81170329, 0.96516347, 0.76884811, 0.84169312,
- 0.83752837, 1.1487847 , 1.04311868, 0.78128663, 0.74604211,
- 0.96488513, 1.1722513 , 0.91661948, 1.06642815, 0.92185781,
- 0.93289001, 0.65208625, 0.75734648, 0.99580571, 1.21871511,
- 0.96316283, 1.06093093, 0.7914337 , 0.90494572, 0.79235327,
- 0.90771769, 0.91355145, 0.98754767, 0.88938619, 0.89503537,
- 0.82764566, 0.77267065, 0.81520031, 0.90423926, 0.94289609,
- 0.88678376, 1.03209085, 0.81319963, 0.91600997, 0.81608666,
- 0.72429125, 0.95585073, 1.14039309, 1.00326452, 0.99629944,
- 0.95647901, 0.8927127 , 0.96558599, 0.86305195, 1.0366906 ,
- 0.90494731, 0.95148458, 1.11229696, 1.17059748, 0.74867876,
- 0.99621909, 0.94246499, 0.82403515, 0.92144961, 0.93209989,
- 0.9705427 , 0.97915309, 0.92431525, 0.7589944 , 0.75208652,
- 0.89375154, 0.78820016, 1.24061454, 1.08031776, 0.88364539,
- 0.86909794, 0.98635253, 0.97620372, 1.24278282, 1.01146474,
- 0.93726261, 0.94411536, 1.08344492, 0.75389972, 1.09979822,
- 0.84271329, 1.16616317, 0.88177625, 0.8451345 , 0.91355741,
- 0.99833789, 0.86172172, 0.87076203, 0.83743078, 0.99771528,
- 1.0469295 , 0.87952668, 1.04362453, 0.96350831, 0.95744466,
- 0.84284283, 0.8773066 , 0.85984544, 1.00589365, 0.88069101,
- 1.02331332, 1.06616241, 0.78475212, 1.02296979, 0.81480926,
- 1.09008244, 0.71435844, 0.79655626, 1.09824162, 0.87785428,
- 1.18020492, 0.99852432, 0.79028362, 0.80081103, 1.10940685,
- 1.08752313, 0.90673214, 0.84978348, 0.69466992, 0.77497046,
- 0.83074014, 0.87865947, 0.78890395, 0.7925195 , 0.99749611,
- 0.91430636, 0.87863864, 0.95392862, 0.91430684, 0.97358575,
- 0.87999755, 0.88234274, 0.71682337, 1.09723693, 0.71907671,
- 0.97487202, 0.71792963, 0.88374828, 0.73386811, 0.9315647 ,
- 1.05020628, 0.99128682, 0.71831173, 1.07119604, 1.02028122,
- 1.04696848, 0.93335813, 1.04275931, 0.72181913, 0.8837163 ,
- 0.90283411, 0.96642474, 0.89851984, 0.8397063 , 0.91185676,
- 1.00573193, 0.88430729, 0.7738957 , 1.07361285, 0.92617819,
- 0.64251751, 1.05229257, 0.73378537, 1.08270418, 0.99490809,
- 1.13634433, 1.11979997, 1.03383516, 1.00661234, 1.05778729,
- 1.05977357, 1.13779694, 0.91237075, 1.04866775, 0.9163203 ,
- 0.93152436, 0.83607634, 1.13426049, 1.26438419, 0.93515536,
- 0.92181847, 0.86558905, 1.01985742, 1.44095931, 0.92256398,
- 0.83369288, 0.93369164, 0.8243758 , 0.98278708, 0.80512458,
- 1.02092014, 0.73575074, 1.2214659 , 0.85391033, 0.97617313,
- 0.82054292, 1.04792993, 0.93961791, 1.01145014, 0.89301558,
- 0.93167504, 0.88221321, 1.23543354, 0.97023998, 1.00197517,
- 0.85394662, 0.89426495, 0.81344186, 1.08242456, 0.76253284,
- 1.00642867, 0.76685541, 1.01487961, 0.84028343, 0.87979545,
- 0.92796937, 0.99796437, 1.28844084, 1.02827514, 1.03663144,
- 0.83164521, 0.95644234, 0.77797914, 0.96748275, 1.09139879,
- 0.84329253, 0.9539873 , 0.80094065, 1.13771172, 0.91557533,
- 0.93370323, 0.79977904, 1.02721929, 1.16292026, 0.92976802,
- 0.85806865, 0.97824974, 1.02721582, 0.82773004, 0.9297126 ,
- 0.93769842, 1.14995068, 1.02895292, 0.90307101, 0.85918303,
- 1.14903979, 1.0344768 , 0.7502627 , 1.27452448, 1.12150928,
- 0.87274005, 1.09807041, 0.98634666, 1.03086907, 0.94743667,
- 0.91145542, 1.04395791, 0.83396016, 0.94783374, 0.96693806,
- 0.88864359, 0.93400675, 1.08563936, 0.78599906, 0.92142347,
- 1.15487344, 1.19946426, 0.92729226, 0.83333347, 0.90837637,
- 0.89191831, 1.0581614 , 0.85162688, 1.10081699, 0.98295351,
- 0.86684217, 1.00867408, 0.95966205, 0.73170785, 1.3207658 ,
- 0.87988622, 0.82869937, 0.9620586 , 0.71668579, 1.04105616,
- 0.71415591, 1.30198958, 0.81934393, 0.86731955, 0.99773712,
- 0.99943609, 0.87678188, 1.01650692, 0.73917494, 0.92077402,
- 0.98322263, 0.90623212, 0.88261034, 1.12798871, 0.84698889,
- 0.85312827, 0.91214965, 0.8778361 , 0.99621569, 0.94155734,
- 0.66441342, 0.85925635, 0.98064691, 0.97107172, 0.96438785,
- 0.95670408, 0.87601389, 0.9388234 , 0.91165254, 1.14769638,
- 0.99856344, 0.84391431, 0.94850194, 0.93754548, 0.86398937,
- 0.95090327, 1.07959765, 1.16684297, 0.82354834, 0.93165852,
- 0.91422292, 1.14872038, 0.87050113, 0.92322683, 1.04111597,
- 0.87780005, 0.94602618, 1.10071675, 0.88412438, 0.91286998,
- 0.9045216 , 0.91750005, 0.98647095, 1.10986959, 0.98912028,
- 1.01565645, 0.93891294, 0.97696431, 0.91186476, 0.77363533,
- 1.00075969, 0.89608139, 0.99828964, 0.87239569, 0.87540604,
- 0.76152791, 0.82501538, 0.91656546, 0.74389243, 1.07923575,
- 1.00241137, 1.05628365, 1.04407879, 0.90048788, 1.1134027 ,
- 0.89745966, 0.96534 , 0.71151925, 0.91798511, 0.7337992 ,
- 0.83636115, 0.75279928, 0.95570185, 0.89073922, 0.90307955,
- 0.8030445 , 0.84374939, 0.89769981, 0.99002578, 1.01849373,
- 0.92436541, 0.79675699, 1.03910383, 1.07487895, 0.8906169 ,
- 0.97729004, 0.97284392, 0.76338988, 0.82756432, 1.12289431,
- 0.9582901 , 0.97160038, 0.90141331, 0.83271234, 1.16065947,
- 0.90605662, 1.13389282, 0.8557889 , 0.77149889, 0.9462268 ,
- 0.95908887, 1.03399986, 0.92795031, 0.73529029, 0.93630494,
- 0.96730298, 1.05490026, 0.93313995, 0.96980639, 0.9177592 ,
- 0.95483326, 0.85262905, 0.95170479, 0.9601628 , 0.94878173,
- 0.87627934, 1.00561764, 0.83441231, 0.90890643, 0.97177858,
- 1.26394809, 0.80773622, 0.72205262, 0.87692143, 1.01842034,
- 0.98128171, 1.10776014, 0.94400422, 0.92697961, 0.79523284,
- 0.8609763 , 0.96303262, 1.17190075, 1.01259271, 1.04973619,
- 0.94837034, 0.86592734, 0.85908444, 1.14914962, 0.98113587,
- 1.03070712, 0.89916573, 0.90618114, 0.93223156, 0.96031901,
- 0.94162334, 0.98908438, 0.95170104, 0.95056422, 0.81782932,
- 0.81770133, 1.32039255, 1.28822384, 0.82916292, 1.01626284,
- 0.97537737, 0.83235746, 0.78645733, 0.77916206, 0.93591612,
- 0.8469273 , 0.74309279, 0.91331015, 1.11240033, 1.41018987,
- 0.95320314, 0.95807535, 0.89382722, 0.9259679 , 0.92570222,
- 0.84567759, 0.82332966, 0.98371126, 1.00248628, 0.72107053,
- 1.09687436, 0.78399705, 0.85224803, 0.92151262, 0.85618586,
- 0.88485527, 0.954487 , 0.86659146, 1.12800711, 0.93019359,
- 0.91388385, 0.95298992, 0.96834137, 0.90256791, 1.01222062,
- 0.84883116, 1.01234642, 0.91135106, 0.83362478, 0.94928359,
- 0.82247066, 0.7671973 , 0.85663382, 0.88838144, 0.92491567,
- 0.88698604, 0.87485584, 1.08494606, 0.96431031, 1.06243095,
- 1.14062212, 1.02081623, 0.72229471, 0.82390737, 0.86599633,
- 0.95284398, 0.87238315, 1.02818071, 0.98462575, 0.81992808,
- 1.01207538, 1.0081178 , 0.88458825, 1.01726135, 0.97708359,
- 0.79820777, 1.06081843, 0.97028599, 0.95203124, 1.00482088,
- 0.71764193, 0.88115767, 0.90628038, 0.97304174, 0.77015983,
- 1.06109546, 0.89575454, 0.94824633, 0.93822134, 0.98048549,
- 0.812265 , 0.95744328, 0.79087999, 1.0222571 , 0.89100453,
- 1.03590214, 0.92699983, 0.86840126, 0.99455198, 0.87912973,
- 0.93506231, 0.80706147, 0.89931563, 0.7861299 , 0.89253527,
- 0.90052785, 0.82420191, 0.97042004, 1.03249619, 0.92354267,
- 0.80482118, 0.9007601 , 0.80123508, 0.82285143, 0.88105118,
- 1.03519622, 0.8620259 , 0.96447485, 0.80399664, 1.00324939,
- 0.96317193, 0.83260244, 0.98561657, 0.88445103, 0.70777743,
- 0.81608832, 0.98073402, 1.1206105 , 0.69903403, 0.84353026,
- 0.9064964 , 0.97055276, 0.82747966, 0.85400205, 1.01205886,
- 0.85324973, 0.90899616, 0.92797575, 0.94646632, 0.89358892,
- 0.7981183 , 0.96559671, 0.88352248, 1.09804477, 0.79152196,
- 1.1054838 , 0.93272283, 0.96165854, 0.8899703 , 0.8792494 ,
- 0.74563326, 0.85371604, 0.87760912, 0.87184716, 0.92049887,
- 0.99459292, 0.93699011, 0.90492494, 1.12981885, 1.10621082,
- 0.91391466, 1.05207781, 1.13395097, 0.87022945, 0.93165871,
- 0.89083332, 0.99584874, 0.98626911, 1.13885184, 1.17350384,
- 0.93294232, 0.79602714, 0.93670114, 1.09726582, 1.05378961,
- 0.9457279 , 1.03257053, 1.11349021, 0.80111296, 0.96415105,
- 0.99447221, 0.75745769, 0.77537636, 0.83860967, 0.90122484,
- 0.78850128, 1.19877642, 0.91190085, 0.80851919, 0.79484738,
- 0.93093657, 0.87619908, 1.22781715, 0.89734952, 0.8678127 ,
- 0.76177975, 0.82089769, 0.89288915, 1.01603179, 0.95279916,
- 0.84037366, 0.99962719, 0.84298093, 0.77234882, 0.99876963,
- 1.01856707, 1.2133211 , 0.73822878, 0.83465671, 1.08879938,
- 0.8878534 , 1.24133317, 0.89264527, 0.83938655, 1.03853109,
- 0.9842176 , 0.94257497, 0.98282054, 0.90632313, 0.75810741,
- 1.02540204, 0.86648513, 0.98430307, 0.84561701, 1.13483974,
- 1.12446434, 1.00220923, 1.23248603, 0.98999724, 0.81980761,
- 0.91334393, 0.92831557, 1.16798373, 0.8888053 , 0.9319632 ,
- 0.89206108, 0.86764558, 0.69337981, 0.9021983 , 1.09931186,
- 1.15290804, 0.62304114, 1.1205393 , 1.27030677, 1.12718725,
- 0.93002501, 0.83367301, 0.96589068, 0.86578968, 0.79204086,
- 0.85124905, 0.89121046, 0.96406141, 0.99249204, 0.93363878,
- 1.11258502, 0.92020983, 1.16020824, 0.99075915, 0.73994574,
- 0.9335638 , 0.97410789, 1.00029038, 1.43611904, 0.93089581,
- 0.94758878, 0.84808364, 0.92192819, 1.0249259 , 0.69529827,
- 0.94629021, 0.7330735 , 1.07902207, 0.93022729, 0.77375973,
- 0.95019291, 0.92333668, 0.81483081, 0.78044978, 0.85101115,
- 0.88859716, 0.88720344, 0.89291167, 1.10372601, 0.91132273,
- 1.04156844, 0.94867703, 0.83546241, 0.84227545, 0.97043199,
- 0.73281541, 0.74512501, 0.9128489 , 0.99223543, 0.7319106 ,
- 0.93065507, 1.07907995, 0.86895295, 0.84344015, 0.89394039,
- 0.88802964, 1.00580322, 1.04286883, 0.82233574, 1.0279258 ,
- 0.97550628, 1.03867605, 1.10231813, 0.9642628 , 0.91684874,
- 1.11066089, 0.99439688, 0.88595489, 0.88725073, 0.78921585,
- 0.80397616, 0.71088468, 0.98316478, 0.72820659, 0.96964036,
- 1.03825415, 1.01438989, 1.02763769, 1.29949298, 1.06450406,
- 0.86198627, 0.85588074, 0.90445183, 1.01268187, 0.87927487,
- 0.9263951 , 0.93582126, 0.88738294, 1.20707424, 0.92887657,
- 0.97891062, 0.92893689, 0.84846424, 0.96287008, 0.99565057,
- 0.93483385, 1.21357183, 0.82369562, 0.65144728, 1.11249654,
- 0.7785981 , 0.88248898, 0.8953217 , 0.95884666, 0.77538093,
- 0.82272417, 0.91073072, 1.17185169, 0.99645708, 0.88693463,
- 0.90293325, 0.93368474, 0.87575633, 1.01924242, 0.80011545,
- 0.99762674, 0.75834671, 0.91952152, 0.86754419, 0.81073894,
- 0.8880299 , 0.74868718, 0.99979109, 0.90652154, 0.92463566,
- 0.93894041, 0.92370595, 0.88766357, 1.04614978, 1.77193759,
- 0.85480724, 0.85208602, 0.96154559, 0.95832935, 0.84210613,
- 0.9604567 , 0.88597666, 1.0010723 , 0.91890105, 1.10529207,
- 0.91123688, 0.88466788, 1.09759195, 0.8946647 , 0.78066485,
- 1.04376296, 1.02951755, 0.88455241, 0.99284282, 0.82423576,
- 0.80612213, 0.80915541, 0.9482253 , 0.8887192 , 0.86163309,
- 0.891385 , 0.84850622, 1.03353375, 1.09248204, 1.05337218,
- 0.85927317, 0.89167858, 1.04868715, 0.92933249, 1.1177299 ,
- 0.99846776, 0.82418972, 0.86041965, 0.88015748, 0.89785813,
- 0.85997945, 0.97102367, 0.86679181, 1.00848475, 0.9091588 ,
- 0.92565039, 0.84019067, 0.86978485, 1.21977681, 1.14920817,
- 1.05177219, 0.84202905, 0.85356083, 1.01379321, 0.93364219,
- 1.01999942, 0.85906744, 0.98178266, 0.87218886, 0.93983742,
- 0.79713053, 1.01123331, 0.86551625, 0.81983929, 0.86782985,
- 0.86735664, 1.43316935, 0.8490094 , 0.99909103, 0.85715326,
- 0.89452366, 1.08380518, 0.74686847, 1.62233058, 0.81046611,
- 0.83563461, 0.96925792, 0.82863186, 0.87147202, 0.92609558,
- 0.8879082 , 0.93933353, 0.90043906, 0.81677055, 0.78016427,
- 0.68871014, 0.83329967, 0.81570171, 0.89780443, 0.81337668,
- 1.00772749, 0.96220158, 0.90035459, 1.06031906, 0.85832752,
- 0.93636203, 0.96336629, 0.94686138, 0.98499419, 0.87223701,
- 0.96079992, 0.81302793, 0.99287479, 0.99369685, 1.21897038,
- 0.94547481, 0.80785132, 1.02033902, 0.93270741, 0.90386512,
- 1.05290969, 1.08873223, 0.81226537, 0.87185463, 0.96283379,
- 0.95065022, 1.07603824, 1.22279786, 0.83749284, 0.93504869,
- 0.93554565, 0.95255889, 0.96665227, 0.92370811, 0.76627742,
- 1.14267254, 0.98268052, 1.10017739, 0.79569048, 0.86494449,
- 1.17939799, 0.80655859, 0.76799971, 1.0018905 , 0.83051793,
- 1.37419036, 1.10424623, 0.93729691, 0.99655914, 0.94900303,
- 1.157402 , 0.93397459, 0.8133195 , 0.8592273 , 1.024661 ,
- 0.83708977, 1.06537435, 0.93561942, 1.00402051, 0.68981047,
- 0.92807172, 0.72192097, 1.232419 , 0.97080757, 0.90350598,
- 0.95122672, 1.04663207, 0.79080723, 0.8421381 , 1.01956925,
- 0.93307897, 0.88011784, 0.78674974, 0.97537097, 0.7582792 ,
- 0.85704507, 0.97683858, 0.7739793 , 0.96245444, 0.99506991,
- 0.76853035, 0.90875698, 0.97951121, 0.93350388, 1.16380858,
- 0.8154485 , 1.16902243, 0.98644779, 0.969998 , 0.73120517,
- 1.19059456, 0.85953661, 0.99193867, 0.88144929, 0.99254885,
- 1.02956121, 0.90689455, 0.89494433, 0.85625065, 0.86227273,
- 0.99830845, 0.97635222, 0.83420327, 1.02359646, 0.93694813,
- 0.88462353, 0.97040788, 1.02543309, 0.91904348, 1.2527365 ,
- 0.82235812, 0.92026753, 0.93935859, 0.88919482, 1.00405208,
- 1.06835782, 1.34738363, 0.97831176, 0.92053317, 1.09692339,
- 0.86156677, 1.02455351, 1.25572326, 0.89721167, 0.95787106,
- 0.85059479, 0.92044416, 0.99210399, 0.94334232, 0.76604642,
- 0.8239008 , 0.70790815, 1.06013034, 1.12729012, 0.88584074,
- 0.91995677, 0.82002708, 0.91612106, 0.86556894, 0.88014564,
- 0.95764757, 0.96559535, 0.97882426, 0.70725389, 0.9273384 ,
- 0.86511581, 0.85436928, 1.26804081, 1.02018914, 0.95359667,
- 0.89336753, 0.91851577, 0.78166458, 1.02673106, 1.01340992,
- 1.34916703, 0.77389899, 1.12009884, 0.94523179, 0.87991868,
- 0.82919239, 0.98198121, 0.83653977, 0.91748611, 1.0642761 ,
- 0.86964263, 0.86304793, 1.11500797, 0.7234409 , 1.00464282,
- 1.01835251, 0.73389264, 0.88471293, 0.85754755, 1.05383962,
- 0.73121546, 0.85445808, 0.768308 , 0.81396206, 1.01261272,
- 0.76696225, 1.01770784, 0.76742866, 0.98390583, 0.96277488,
- 0.87998292, 0.85264282, 1.12704234, 0.79612317, 0.92206712,
- 1.09846877, 0.99874997, 0.87707457, 1.03404785, 1.00726392,
- 0.91613763, 0.74242708, 0.80247702, 0.90702146, 0.81638055,
- 0.78507729, 1.00066404, 0.84687328, 0.76488847, 0.89697089,
- 0.82524207, 0.84940145, 1.022041 , 0.75856559, 1.15434195,
- 1.09781849, 0.93256477, 0.96021119, 1.00796782, 0.88193493,
- 0.87902107, 0.82245196, 1.04739362, 1.133521 , 0.82969043,
- 1.01007529, 1.07135903, 0.981338 , 0.86178089, 0.77930618,
- 0.82512349, 1.2017057 , 1.30452154, 1.12652148, 1.03670177,
- 0.90631643, 0.74222362, 0.84452965, 0.86366363, 0.79192948,
- 1.10288297, 0.9554774 , 1.00912465, 0.95545229, 0.93584303,
- 0.91604017, 0.91681165, 0.76792072, 1.66615421, 0.99044246,
- 1.05068209, 0.88197497, 0.91153792, 0.82702508, 0.95182748,
- 1.05320356, 0.8466656 , 1.01676717, 0.65881123, 1.02589358,
- 1.03902555, 1.00199915, 1.03022137, 0.93427176, 0.94600332,
- 0.94594696, 0.86465228, 0.91241272, 0.72232997, 0.93380167,
- 1.1960032 , 0.87463367, 0.78428202, 0.88088 , 0.97202961,
- 0.99425528, 0.89567214, 0.84908979, 0.81004889, 0.85484368,
- 0.68478631, 0.96563032, 0.78298607, 0.71894276, 0.88632131,
- 0.8885966 , 0.99235811, 0.84002222, 0.91265424, 0.91999157,
- 0.89786651, 1.18062511, 0.92378385, 0.82501238, 1.09009807,
- 0.96787582, 1.12456979, 0.86339677, 0.8786218 , 0.89865768,
- 1.02943564, 0.98886502, 0.97135566, 0.95914954, 1.05080931,
- 0.76554446, 0.80142172, 0.99661393, 1.14749469, 0.93695459,
- 0.95769957, 1.00811373, 1.00352699, 0.98747546, 0.99436785,
- 1.10256609, 0.84366101, 0.85931876, 0.90745126, 1.04928733,
- 0.84499693, 1.14018589, 1.2337188 , 0.90516077, 0.84991869,
- 0.72984467, 0.9729476 , 0.97483938, 0.88626286, 1.02838695,
- 0.89750089, 0.80324802, 1.40726294, 0.91149383, 0.86837826,
- 1.21798148, 0.96459285, 0.71897535, 0.76230781, 0.88042964,
- 0.8205186 , 1.0517869 , 0.74269565, 0.98278109, 1.1454159 ,
- 1.03806052, 0.75238659, 0.94224089, 0.94931526, 1.24018529,
- 0.99048689, 0.88108251, 0.81008694, 0.95443294, 0.99975781,
- 0.83336879, 0.74422074, 0.87934792, 0.81994499, 0.98684546,
- 0.82176924, 0.91652824, 0.77571479, 0.77039071, 0.9951089 ,
- 0.92896121, 0.96234268, 1.00295341, 1.01455466, 0.75014075,
- 0.95568202, 0.80995874, 1.24671334, 0.89480962, 0.81300194,
- 0.76967074, 0.92514927, 0.89610963, 0.97441759, 1.19354494,
- 0.87041262, 0.97344039, 0.88983828, 0.91614149, 0.85782814,
- 0.78403196, 0.96665254, 0.91000054, 0.78641804, 0.96920714,
- 0.89670528, 0.79247817, 1.04189638, 0.86777037, 1.18686087,
- 0.79506403, 0.92389297, 0.76211023, 0.93617759, 0.91879446,
- 0.8207635 , 0.78984486, 0.93005953, 0.78743101, 0.9814347 ,
- 0.94882561, 0.9577075 , 0.81121566, 1.01025446, 0.90587214,
- 0.94842798, 0.8811194 , 1.01942816, 0.94698308, 0.92603676,
- 0.86119014, 0.97543551, 0.84730649, 0.77552262, 0.97536054,
- 0.96944817, 0.8736804 , 0.86809673, 0.98134953, 1.16303105,
- 0.81534447, 1.35930512, 0.83221293, 0.94136243, 0.76926289,
- 1.05844282, 0.87783288, 0.78921971, 0.84360428, 0.78722128,
- 1.00022607, 0.96779519, 0.95891975, 0.91900001, 1.07307813,
- 1.03713093, 0.96257742, 0.90363152, 0.88729834, 0.91929215,
- 1.00508255, 0.80838454, 0.92165553, 0.94513005, 0.95429071,
- 0.80829571, 0.79531708, 1.01317347, 0.75337253, 0.85965134,
- 0.77014567, 0.77680991, 0.77158741, 0.88882588, 0.91466414,
- 0.82815897, 0.80251251, 1.04901425, 1.03386161, 1.3267075 ,
- 1.12457236, 0.8267327 , 0.89313417, 0.85992512, 0.93482733,
- 0.83456348, 0.87991138, 0.8110149 , 0.77913188, 0.89391799,
- 0.73646974, 0.87038816, 0.99533506, 0.90744083, 0.98175496,
- 1.17458551, 0.86718975, 0.93125366, 0.76131575, 0.90419708,
- 0.95122171, 0.97531776, 1.05955142, 0.94714906, 0.79360281,
- 1.02765349, 0.85192628, 0.84680852, 0.85470655, 0.94950982,
- 0.75868699, 0.89731933, 1.00736877, 1.05171121, 0.73336848,
- 0.97323586, 0.9848978 , 1.27418684, 0.83954394, 0.73979357,
- 1.06785996, 0.97832832, 0.7903268 , 0.76600605, 0.94906446,
- 0.81383465, 0.83620612, 1.00573379, 0.86359645, 0.9962139 ,
- 0.98779432, 1.13793814, 1.02764992, 0.9070168 , 0.81340349,
- 0.94807089, 0.90499083, 0.83805736, 0.99623054, 0.91875275,
- 0.95603557, 0.93156095, 0.83858677, 1.03667466, 1.01436655,
- 0.85551979, 0.76227045, 0.84743986, 0.88487423, 0.93800365,
- 0.8984666 , 0.92600404, 0.89230381, 1.34625848, 1.10026015,
- 0.9314026 , 0.82450724, 1.0299575 , 0.98494286, 1.07564492,
- 0.96565301, 0.89677015, 1.15236174, 0.85476951, 1.00169288,
- 0.90520725, 1.06235248, 1.04267637, 0.8311949 , 0.82017897,
- 0.81635968, 0.97246582, 0.84554172, 0.85409644, 1.18006461,
- 0.96488389, 0.69228637, 0.97812108, 0.91764623, 0.86250551,
- 0.91067775, 1.04692847, 0.94594707, 1.04351374, 0.9861303 ,
- 0.92192581, 0.835444 , 0.84362223, 1.13770705, 0.8075574 ,
- 1.02260109, 1.13786456, 0.80862839, 0.89291687, 0.90278047,
- 1.11613951, 1.29900454, 1.5622857 , 0.70999772, 0.99692653,
- 0.89109939, 0.77506441, 0.86054356, 0.99498141, 0.84222293,
- 0.95213508, 0.91438286, 0.89305591, 0.9716793 , 0.88609491,
- 1.00275797, 0.90086022, 0.75336995, 1.1572679 , 0.75952094,
- 0.89203313, 0.82115965, 0.81459913, 1.02943406, 0.67063452,
- 1.08707079, 0.92139483, 0.89855103, 0.89910955, 1.07169531,
- 0.93684641, 0.84893365, 1.08659966, 1.43385982, 0.94788914,
- 0.95277539, 0.94709274, 1.08412066, 0.90274516, 0.85147284,
- 0.89327944, 0.92176174, 0.83820774, 0.90981839, 0.82303984,
- 0.95189716, 0.95154905, 0.73628819, 1.18956148, 1.20224654,
- 0.97666968, 1.08057375, 0.90369444, 0.98589538, 0.81426873,
- 0.75127684, 0.93200745, 0.833666 , 0.79532088, 0.91965037,
- 0.99540522, 0.75449668, 0.85698312, 0.79328453, 0.94667443,
- 0.7637764 , 0.77203985, 0.73841377, 0.98587851, 1.34642268,
- 0.78002774, 1.04356217, 1.02266882, 1.08936378, 0.9794388 ,
- 1.07623423, 0.78069571, 1.12194495, 0.8072132 , 0.91672662,
- 1.36102062, 0.86933509, 1.15282756, 1.06219505, 0.80295502,
- 1.00999033, 0.69418333, 0.93678452, 1.13002256, 0.91465628,
- 0.73558316, 1.1302073 , 0.85856238, 0.89450543, 1.11812369,
- 0.75891878, 0.66859534, 0.97445338, 0.82210227, 0.76292085,
- 0.79289499, 1.04380135, 0.95586226, 0.87480096, 0.81244036,
- 0.86097575, 0.84111811, 0.85369732, 0.99160655, 0.90911501,
- 0.81315845, 0.74037745, 1.04369233, 1.03535223, 1.18886682,
- 0.87092491, 0.93562683, 0.92555142, 0.95268616, 0.9653025 ,
- 0.93447525, 0.9043932 , 1.25701034, 1.10354218, 0.96588129,
- 0.94717991, 0.97010307, 0.78264501, 0.80991731, 0.98540974,
- 0.83174886, 0.66966351, 1.01747376, 1.21553117, 0.80527296,
- 1.06556826, 1.00870321, 1.03316522, 0.88994006, 0.89092714,
- 0.94119254, 0.83930854, 1.01500087, 1.03581272, 0.97608081,
- 1.11919255, 1.16586474, 0.85064102, 1.06070274, 1.00679658,
- 0.75848826, 0.97969353, 0.94834777, 1.64970724, 0.82448941,
- 1.02236919, 0.95252025, 0.98638842, 0.89094895, 0.95522527,
- 0.91533774, 0.83716951, 0.92612154, 0.8662328 , 0.9675949 ,
- 0.96758398, 0.84309291, 0.95071171, 1.0165785 , 0.96628063,
- 1.00096151, 0.83175371, 0.79063043, 0.97371271, 0.76009001,
- 1.02409279, 0.97232166, 0.8480577 , 0.8982739 , 0.9959743 ,
- 0.96604729, 0.8681602 , 0.99850841, 0.96162481, 1.01259965,
- 0.98580061, 0.82751273, 0.90469122, 0.98254028, 0.78012425,
- 0.87023012, 0.96830515, 0.9415831 , 0.8591063 , 0.82961507,
- 0.89166083, 0.88509907, 0.95987837, 1.12356244, 0.71406404,
- 0.99047619, 0.93735587, 0.80540831, 1.0024624 , 0.95179491,
- 0.83602101, 0.90343297, 0.90510417, 0.96477126, 0.79995299,
- 0.93123762, 0.73763362, 1.0619498 , 0.80929865, 0.86110233,
- 0.84552556, 0.9943 , 0.97085623, 0.75751174, 0.9201456 ,
- 1.02268858, 0.9642899 , 0.79078558, 1.03160502, 0.85200219,
- 1.02246639, 1.08771483, 0.81997868, 0.82499763, 0.92767703,
- 1.06700018, 0.7882174 , 0.7789828 , 0.89096139, 0.73155973,
- 1.01717651, 0.91889525, 0.93256065, 0.84716063, 1.00965969,
- 0.74505112, 0.80104245, 0.76003901, 0.96662605, 0.96594583,
- 1.04571121, 0.97700878, 0.85461917, 0.9150222 , 0.89110471,
- 1.11183096, 0.98143747, 1.02346975, 0.9059266 , 1.00771483,
- 0.96336096, 0.93783898, 0.90545613, 1.10404183, 0.75297691,
- 0.92548654, 0.79889783, 0.88177552, 0.93896814, 0.87309811,
- 0.80691061, 0.89725699, 1.16586955, 0.98948281, 0.94524894,
- 0.86085608, 0.76716851, 0.85362573, 1.09936882, 0.9328761 ,
- 0.74819673, 0.94331186, 0.81077304, 0.88610499, 1.01452015,
- 0.91513953, 0.92846128, 0.93539081, 0.8946682 , 0.9270336 ,
- 0.96673629, 0.9897488 , 1.11891899, 0.87551585, 0.85854576,
- 1.13458763, 1.11450768, 0.79887951, 1.091154 , 1.04180374,
- 0.79252573, 0.90484245, 0.94221016, 0.95721137, 0.86776103,
- 0.97167404, 0.83404166, 0.94634038, 0.98907413, 0.92321459,
- 1.03547804, 0.79660212, 0.94870239, 0.70027204, 0.79841059,
- 0.92563393, 1.4385341 , 0.8331731 , 0.844816 , 0.97851389,
- 1.24048695, 0.83765698, 0.83600835, 1.13901283, 1.05994936,
- 0.84292427, 0.86759056, 0.9272156 , 0.77375499, 0.99972839,
- 0.95570976, 0.97879539, 0.95528351, 0.84555495, 0.95296134,
- 0.87469056, 0.78862024, 0.793795 , 0.8516853 , 0.92816818,
- 1.02492208, 0.8037345 , 0.95481283, 0.75138828, 0.72110948,
- 1.36815666, 0.9661646 , 0.81651816, 0.87764538, 0.97397297,
- 0.99845266, 0.77433798, 0.9266279 , 1.92493013, 1.07588789,
- 0.90412593, 1.03165475, 1.00826548, 0.75500744, 0.87198881,
- 0.86871262, 0.97854606, 0.80954477, 0.84130266, 0.89674826,
- 1.43926644, 0.74873088, 1.01894282, 0.93606154, 1.08241489,
- 0.76626357, 0.97434747, 0.82824599, 1.00267494, 0.97168761,
- 1.06433173, 1.22741978, 1.46998419, 0.9521923 , 0.98276685,
- 0.92422781, 1.14241216, 1.13339577, 1.05586816, 1.04923068,
- 0.83364505, 0.98007268, 0.94322393, 0.84310173, 1.03481955,
- 1.18281181, 0.79807678, 0.840274 , 1.00344058, 1.09442855,
- 0.88033836, 0.86189964, 1.1395012 , 1.18808865, 0.78667714,
- 1.09323293, 0.81511099, 0.95830848, 0.99637275, 0.9146258 ,
- 0.96358155, 0.79048719, 0.80395604, 1.00828722, 0.92872342,
- 0.98789363, 0.96720252, 0.80541021, 0.73697557, 0.86692999,
- 0.86795696, 1.1516694 , 0.95911714, 1.13981603, 1.02002866,
- 0.90808456, 0.94208296, 0.93691739, 0.87653118, 0.72824225,
- 0.78177906, 1.2139146 , 0.83405505, 0.91764545, 0.83318595,
- 0.77930256, 0.86499397, 0.95599882, 0.73850016, 0.9630604 ,
- 0.97913407, 1.1790714 , 0.94994057, 1.04379512, 0.80815459,
- 1.16560205, 0.97486893, 1.02780804, 1.10633754, 0.78679252,
- 0.94643528, 1.19999119, 0.98621069, 0.8899674 , 0.89235261,
- 0.8728921 , 0.77089094, 0.8492628 , 0.86905159, 0.90741875,
- 0.81065291, 0.91208596, 1.04616696, 1.24291958, 0.98628605,
- 0.99751975, 0.83249612, 0.96343385, 0.77862866, 0.72381238,
- 1.17384381, 1.06013687, 0.73460652, 1.09554763, 0.82015886,
- 0.90862905, 0.89037104, 0.7866143 , 0.8570287 , 0.75061334,
- 0.94950855, 0.8091383 , 1.04055212, 0.96679573, 0.78338675,
- 0.75968533, 1.00495071, 0.6491633 , 1.02802735, 1.00725883,
- 0.89333988, 0.87539291, 0.99374251, 1.10241119, 1.14935785,
- 0.9369769 , 0.84772646, 1.05024743, 0.97411124, 0.76972352,
- 0.92161017, 0.88689841, 0.78598549, 0.93400036, 1.14699647,
- 0.98636563, 0.93051079, 1.00131515, 0.82749213, 0.96665447,
- 0.84457933, 0.95172036, 0.86372572, 0.97034285, 0.99877807,
- 0.8724721 , 0.86281118, 0.96253742, 1.13485439, 1.03410559,
- 0.83113167, 1.02644607, 1.0669284 , 0.947969 , 1.13373538,
- 0.85495039, 1.15829218, 0.72662405, 0.81755747, 0.78381403,
- 0.84360371, 1.10945791, 0.80215303, 0.8861351 , 0.97484684,
- 1.02996282, 0.86219328, 0.95675062, 1.10753315, 0.92496918,
- 0.79323289, 0.76891191, 0.93106762, 0.94523682, 0.9534338 ,
- 0.8954424 , 0.81732651, 1.00443776, 0.96178195, 0.89727229,
- 0.88917552, 0.88660003, 0.941933 , 1.03900381, 0.75262915,
- 0.94265862, 0.84472046, 1.09834757, 0.81516259, 0.90865634,
- 0.9582531 , 0.99819053, 0.8815072 , 0.92425525, 0.79085083,
- 0.98173446, 0.95199169, 0.71653726, 1.11863725, 0.97855807,
- 0.87873181, 1.37925403, 0.8085008 , 1.40027689, 0.79367826,
- 0.82070449, 0.87039383, 0.95896081, 0.75617612, 1.3196712 ,
- 0.9335008 , 0.9461447 , 1.0838461 , 0.83347962, 0.69558254,
- 0.92358528, 0.99423247, 0.94884494, 0.75094955, 0.90429063,
- 1.13740548, 0.89354463, 1.13094104, 1.7373979 , 0.87808028,
- 0.72820621, 1.02995089, 0.80134468, 0.97511989, 0.93823103,
- 0.98097787, 0.73179813, 0.93764192, 1.04399599, 0.95644709,
- 0.80476939, 0.87463727, 0.83220517, 0.76978546, 0.97056432,
- 1.1693819 , 1.0368387 , 0.98606478, 1.03538075, 0.88253058,
- 0.91105775, 0.93745618, 0.80272442, 0.77045021, 0.8482449 ,
- 1.04505306, 0.90427753, 0.706451 , 1.02687396, 0.82931474,
- 1.24255717, 0.91343217, 0.8692726 , 0.98422894, 0.82142068,
- 0.86854354, 0.77715916, 0.94490329, 0.97686366, 1.05198512,
- 0.888989 , 1.09252847, 0.8034292 , 1.04727187, 0.87246831,
- 0.89474556, 1.06031526, 0.93056174, 0.7747956 , 0.87772054,
- 1.1183045 , 0.78938083, 0.82019511, 0.82553273, 1.04324276,
- 0.7676436 , 0.68914756, 0.88400598, 0.79611901, 0.77011016,
- 0.76727015, 0.84523666, 1.09972447, 1.03942974, 1.07322466,
- 1.01079248, 1.03469338, 0.90450148, 0.87367007, 0.88432601,
- 0.85312482, 0.7328442 , 1.12256832, 0.8837547 , 0.81023384,
- 0.87068285, 0.94466637, 1.13236695, 0.95958423, 0.8099625 ,
- 1.07509372, 1.03306035, 0.99385633, 1.06433672, 1.07385915,
- 0.92709455, 1.03502217, 0.88961476, 0.8307198 , 0.98819038,
- 1.09916368, 0.8919766 , 0.90349117, 0.97554616, 0.98376763,
- 0.89285893, 0.99941071, 1.16078972, 0.66336693, 1.16389515,
- 1.10395069, 1.20381952, 0.98928899, 1.17155389, 0.81707565,
- 0.82903836, 0.95892646, 0.8437454 , 0.79017432, 0.81562954,
- 0.65169124, 0.87950793, 0.9017879 , 0.82160564, 0.87079127,
- 0.88100146, 1.00783979, 0.84102603, 1.16817499, 0.97697533,
- 0.89115235, 0.77254376, 0.7679024 , 0.97093775, 1.13881665,
- 0.90348632, 1.14654277, 1.08625707, 0.98787902, 1.49057495,
- 0.99639001, 0.97623973, 0.74807856, 0.76656108, 0.79095998,
- 1.04583503, 0.95124469, 0.90228738, 1.03129265, 1.02663212,
- 0.67704952, 0.95335397, 1.01726294, 0.78765385, 0.91140255,
- 1.04097119, 0.71881619, 1.14572601, 0.79708798, 1.07104057,
- 0.95925248, 0.72556831, 0.92256392, 1.08702165, 0.95977251,
- 0.99670254, 0.95276505, 1.15268752, 0.68215678, 1.05573208,
- 0.89672437, 0.89396611, 1.01814905, 0.81969778, 0.74390457,
- 1.20909881, 0.82388701, 1.00574083, 1.01348114, 1.01492015,
- 0.94759788, 0.99758684, 1.19912008, 0.92749943, 1.16660441,
- 0.97646538, 0.8189475 , 0.97464158, 1.01050799, 0.94368665,
- 0.70995047, 0.94469581, 1.02534612, 1.3513094 , 0.88081968,
- 1.00576693, 0.9695495 , 1.0549135 , 1.29993316, 0.91050559,
- 0.95543198, 1.02161725, 0.76895773, 1.03685293, 0.88201449,
- 0.90345561, 1.02793048, 1.00267831, 0.84653161, 0.9217411 ,
- 0.94666576, 0.94946561, 0.77482488, 0.94358305, 0.89779666,
- 1.01462131, 1.05829923, 1.13217729, 1.12260175, 0.89810828,
- 0.96305689, 0.90466377, 0.8091617 , 0.93070824, 1.03997521,
- 1.04076373, 0.95858477, 0.94382748, 0.7585222 , 1.22890096,
- 0.97300529, 0.87424719, 0.90435141, 0.91894865, 0.97819677,
- 0.80300175, 1.03729016, 1.19305569, 0.81633791, 0.7930351 ,
- 0.8141721 , 0.86764479, 0.89207142, 0.89691482, 0.86243171,
- 0.91184679, 0.94284352, 1.01357831, 1.03806277, 0.92000143,
- 0.91018767, 0.90555137, 0.89089532, 1.3530331 , 0.96933587,
- 0.82350429, 0.71549154, 1.13399156, 0.87838533, 0.99177078,
- 0.93296992, 1.43078263, 0.90278792, 0.85789581, 0.93531789,
- 0.84948314, 0.95778101, 0.80962713, 0.88865859, 1.15297165,
- 0.85695093, 0.88601982, 0.96665296, 0.9320964 , 1.04193558,
- 1.006005 , 0.78939639, 0.79344784, 0.87012624, 0.8532022 ,
- 0.93351167, 0.91705323, 0.74384626, 0.84219843, 0.78265573,
- 1.07759963, 1.0236098 , 1.00202257, 1.18687122, 1.00869294,
- 0.8809502 , 0.76397598, 0.81845324, 0.97439912, 1.10466318,
- 1.10678275, 0.96692316, 0.84120323, 1.13151276, 0.72574077,
- 0.82457571, 0.8179266 , 1.01118196, 0.84303742, 0.86255339,
- 1.03927791, 0.82302701, 1.03586066, 0.75785864, 0.9186558 ,
- 0.97139449, 0.92424514, 1.00415659, 1.08544681, 0.80940032,
- 0.9073428 , 0.83621672, 1.04027879, 0.79447936, 0.94829305,
- 1.16176292, 1.11185195, 0.88652664, 0.98676451, 0.89310091,
- 0.72272527, 0.79963233, 0.94651986, 0.91540761, 1.0498236 ,
- 0.84938647, 1.15539602, 1.03118991, 0.86565049, 0.77764016,
- 0.77866522, 0.78008955, 0.89062575, 0.81285464, 0.92554114,
- 1.08747324, 0.84338687, 0.76746516, 0.99205474, 0.86649541,
- 0.97586166, 0.9721711 , 1.14895298, 1.04659345, 1.0605085 ,
- 1.06392238, 1.08286448, 0.93612266, 0.82545354, 0.84305431,
- 0.83650404, 1.11073704, 0.91760695, 0.83281572, 0.84244131,
- 1.05843708, 0.94695861, 0.95469608, 0.96038612, 0.81373042,
- 0.94943303, 1.00824522, 0.86416102, 0.87121008, 1.04208739,
- 0.81171276, 1.12798927, 0.99122576, 0.80626996, 1.07103151,
- 0.99809277, 1.08490135, 0.9441509 , 0.98766371, 1.33205139,
- 0.92145678, 0.88112784, 0.9297591 , 1.17549838, 0.8481953 ,
- 0.96359948, 0.98478935, 0.77028684, 0.86408555, 0.92863805,
- 0.94593549, 0.78705212, 1.1923026 , 0.9983487 , 0.99152533,
- 0.95313678, 1.01847515, 1.05728959, 0.88009142, 1.00351951,
- 1.00549552, 0.81671365, 0.90545602, 0.77895202, 0.82217088,
- 0.94838645, 0.85928327, 0.90729044, 0.92975916, 0.91946285,
- 0.80537364, 1.11885357, 0.84691232, 0.85356231, 0.85102988,
- 1.06499659, 1.0242127 , 0.91245632, 0.83131215, 0.72151085,
- 0.9295769 , 0.89549018, 0.87914839, 0.93541175, 0.97319188,
- 0.791944 , 1.08008186, 0.79549907, 0.90967683, 0.80506028,
- 1.1206821 , 0.91258859, 1.24855319, 0.96112955, 1.14305514,
- 0.79327927, 0.84209204, 0.94494251, 0.89573237, 1.0571304 ,
- 0.94504292, 0.84446547, 0.92060829, 0.82347072, 0.86280426,
- 0.85516098, 0.78649432, 0.89522516, 0.94529795, 0.90322825,
- 0.9616288 , 0.77439126, 1.0130917 , 0.84021262, 0.97337238,
- 0.93206526, 0.93809914, 0.87626441, 0.92706652, 0.86819358,
- 0.74060652, 0.84046045, 0.94130171, 0.92537388, 0.80485074,
- 0.81633347, 0.76401825, 0.81300784, 0.8052467 , 1.27234895,
- 0.92674704, 1.12106762, 0.91743016, 0.94694287, 0.87309918,
- 0.99163895, 0.83777703, 0.89713459, 0.88208343, 0.90205904,
- 0.9708827 , 0.94965009, 0.81446019, 0.89512677, 0.97025135,
- 1.02314481, 0.88399736, 1.01059963, 0.86193889, 0.94621507,
- 0.97334837, 0.90122433, 0.71015398, 1.17491792, 1.13869784,
- 1.03908735, 0.85480742, 0.98971408, 1.04147459, 0.85170846,
- 0.94861439, 0.7778831 , 0.73445723, 0.89587488, 0.88627975,
- 0.98253057, 0.86159356, 1.06559385, 0.90852704, 0.86562284,
- 0.92122779, 0.98233847, 0.94989946, 0.97171474, 0.92428639,
- 1.03712828, 0.88170861, 0.86802004, 0.79670394, 0.85606075,
- 1.09636421, 0.85048902, 0.99393971, 1.10510884, 0.80515088,
- 0.95559246, 0.96803475, 0.98115871, 0.94603995, 0.8654312 ,
- 0.90759845, 0.9010954 , 0.77979965, 0.83322032, 0.8485444 ,
- 0.89217626, 0.78817966, 1.03815705, 0.84076982, 0.93362471,
- 1.06173045, 0.82612852, 0.8336989 , 0.93943901, 0.91775212,
- 1.00501856, 1.04269442, 0.93195426, 0.78377288, 1.03372915,
- 0.8415154 , 1.02888978, 0.93202174, 0.78683383, 0.85106996,
- 0.9724203 , 0.93409182, 0.97876305, 1.17153649, 0.9434591 ,
- 0.81361398, 1.09554602, 1.48193137, 0.96349931, 0.93586569,
- 1.0210303 , 0.88980694, 0.88890459, 1.05330284, 1.09511186,
- 0.91202441, 0.78753378, 0.98074421, 1.04268892, 1.14265114,
- 0.86482628, 0.87233851, 1.18915875, 0.82556032, 0.87461473,
- 1.08396187, 0.69206719, 0.88113605, 0.96951674, 0.89248729,
- 0.909926 , 0.82966779, 0.8261611 , 0.9551228 , 0.79879533,
- 1.09416042, 1.01020839, 1.04133795, 1.09654304, 0.84060693,
- 1.02612223, 1.00177693, 0.90510435, 1.2091018 , 1.03290288,
- 0.80529305, 0.74332311, 1.04728164, 1.04647891, 0.83707027,
- 0.81648396, 1.07180239, 0.7926372 , 0.99855278, 1.16851397,
- 0.94566149, 0.75612408, 0.94975744, 0.92924923, 1.03215206,
- 0.82394984, 0.84142091, 0.88028348, 1.11036047, 0.82451341,
- 0.83694112, 0.84207459, 0.94095384, 1.00173733, 1.10241786,
- 0.86609134, 0.86859604, 1.1211537 , 0.84188088, 0.89023025,
- 0.99062899, 0.96828743, 0.80106184, 0.86745454, 0.99013196,
- 0.91838615, 0.86400837, 0.95679525, 0.78893711, 1.03753175,
- 0.97177648, 0.88685941, 0.9441012 , 0.69289996, 0.84219432,
- 1.01050959, 0.83578317, 0.79907595, 1.21281139, 0.91613925,
- 1.00202544, 0.95293036, 0.84583258, 0.84574886, 0.76470341,
- 1.23606485, 1.10063291, 0.93852084, 0.97201415, 0.68523403,
- 0.94560108, 0.81903039, 1.14332074, 0.80914367, 1.46398921,
- 0.85155227, 1.41106313, 0.85740937, 0.91107708, 0.9003576 ,
- 0.94132363, 0.85710825, 0.74805485, 1.2521402 , 0.95307547,
- 0.94274593, 0.86732331, 0.83850172, 0.96835288, 1.09443821,
- 0.68532627, 0.84736457, 1.06989165, 0.81424504, 1.02942437,
- 0.80255995, 0.89258275, 0.93560962, 1.04192911, 1.13498644,
- 1.24409985, 0.93295415, 1.08360355, 1.16468059, 0.81482388,
- 0.92387137, 1.07508578, 0.86564567, 1.0142773 , 0.86143907,
- 0.91214944, 0.9757589 , 0.90588817, 0.74168224, 0.91222552,
- 0.96119617, 0.95431519, 0.78080736, 1.0327991 , 1.05112022,
- 0.92761155, 1.0183631 , 0.73188757, 0.85617225, 0.93341155,
- 0.95106173, 0.9481304 , 0.92996766, 1.08092599, 0.96485228,
- 0.97964284, 0.94224551, 1.00654477, 1.01367565, 0.89785325,
- 0.80725703, 0.7495798 , 0.78240339, 1.04479122, 0.88200252,
- 1.0664992 , 1.05951775, 0.82508097, 0.81201381, 0.81860218,
- 1.07561763, 1.02830358, 0.87348993, 1.0081337 , 0.87470565,
- 1.45597242, 0.77540871, 0.8036279 , 0.80514427, 0.92688461,
- 0.88152328, 1.56288788, 0.87251203, 0.92808414, 1.03548911,
- 0.65226699, 0.81243827, 1.03103554, 1.11995602, 0.78956176,
- 0.96734427, 0.91600861, 0.8246106 , 1.09390498, 0.98187349,
- 0.8919928 , 0.98746862, 0.96298125, 0.93854424, 0.83060031,
- 0.74692856, 0.99757209, 0.78888849, 1.17517182, 1.06657933,
- 1.1244446 , 0.93608433, 0.88898472, 0.96823218, 0.87496056,
- 0.81776683, 0.98863687, 0.82962648, 1.02395766, 0.99622674,
- 1.07138771, 0.86669915, 0.98172208, 0.8787271 , 0.86125353,
- 0.79554881, 0.93382729, 1.00706175, 1.08386454, 0.69664542,
- 0.77316657, 0.79978147, 0.80764736, 0.9969375 , 0.83554928,
- 0.91017317, 0.95323454, 1.29872357, 1.08851275, 1.01673108,
- 0.79536208, 0.84878371, 0.95165619, 0.87733936, 0.86319684,
- 0.96758495, 0.87763237, 0.95094713, 1.00143077, 1.0596993 ,
- 1.27278299, 0.82281481, 0.89765404, 0.94538181, 0.88161857,
- 0.77679456, 0.84274277, 0.89864342, 0.98705162, 0.95456512,
- 0.92712401, 0.77427128, 1.03292269, 0.87034158, 1.24316113,
- 0.98278702, 1.17325118, 1.18863971, 0.88678137, 0.90389731,
- 1.01740421, 0.80228624, 0.97742223, 0.82741518, 0.8359407 ,
- 0.7177401 , 1.02297899, 0.81896048, 0.77127181, 0.83328601,
- 0.96939523, 0.94073198, 0.90356023, 1.12355064, 1.12811114,
- 0.92403138, 1.05423548, 0.70827734, 0.95891358, 0.89898027,
- 1.02318421, 0.93775375, 0.8245529 , 0.80604304, 0.77555283,
- 0.92112699, 0.85662169, 0.92725859, 0.93599147, 0.78971931,
- 0.8337306 , 0.93775212, 0.91025099, 0.75308822, 0.95391173,
- 0.96840576, 0.8394416 , 0.89087015, 0.73703219, 0.97812386,
- 0.8787356 , 0.93985266, 0.96406021, 0.88666152, 0.89242745,
- 0.97900374, 0.85697634, 0.8795755 , 0.78581812, 0.87138735,
- 0.74602994, 0.96158936, 0.84529806, 0.85333232, 1.06116542,
- 1.05929382, 1.09720986, 1.28959453, 0.91541148, 0.87657407,
- 1.06514793, 0.8668096 , 1.07325125, 0.85009534, 0.95542191,
- 0.86977409, 0.96249874, 0.97715908, 0.89360331, 0.98859647,
- 0.67560717, 0.90213348, 1.12051182, 0.99684949, 0.9863559 ,
- 1.32246221, 0.84632664, 0.89707447, 1.00486846, 0.90843649,
- 1.02399424, 0.97899017, 0.95693977, 0.8384806 , 0.93927435,
- 0.79153251, 1.08694094, 1.01785553, 0.99674552, 0.898566 ,
- 0.94116882, 0.95224977, 0.99859129, 0.81125029, 0.85985586,
- 1.14418875, 0.96306241, 1.31398561, 0.77961419, 1.01958366,
- 0.9575668 , 0.771084 , 1.04473363, 1.01569517, 1.04560744,
- 0.9648178 , 0.93466398, 1.09313672, 0.90349389, 1.00193114,
- 0.79991514, 0.91102351, 0.9795356 , 0.89285193, 1.04898573,
- 0.93031782, 0.95087069, 1.15644699, 0.91155375, 0.93005986,
- 0.70098757, 0.82751625, 0.85462106, 1.34969332, 0.93382692,
- 1.05558387, 1.25417819, 1.0546501 , 1.05217032, 0.86031346,
- 1.00864463, 0.73592482, 1.01899722, 1.00462831, 0.96882832,
- 0.81334751, 1.05102745, 0.82288113, 1.05798623, 0.77971966,
- 1.38584414, 1.0248193 , 0.78951056, 0.76171823, 0.78407227,
- 1.14808104, 0.97890501, 0.99870905, 0.96006489, 0.78442704,
- 0.99315422, 0.83653213, 0.95210661, 0.97233777, 0.78140495,
- 0.95996216, 0.76318841, 0.82333311, 0.87123204, 0.79531258,
- 0.82681452, 1.00492217, 0.93549261, 1.00240153, 1.02086339,
- 1.00424549, 0.87437775, 0.84675564, 0.98014462, 0.77262117,
- 1.02620976, 0.91162462, 1.0275041 , 1.1475431 , 0.78167746,
- 0.86273856, 0.84499552, 0.99712362, 0.9694771 , 0.94523806,
- 0.8450763 , 0.93068519, 1.29362523, 1.0249628 , 1.05522183,
- 1.13433408, 1.06981137, 0.85666419, 0.98203234, 0.75867592,
- 0.8844762 , 0.89708521, 0.75482121, 0.80137918, 0.90412883,
- 0.88815714, 1.11497471, 0.77441965, 0.93853353, 0.8962444 ,
- 0.83055142, 0.99776183, 0.92581583, 0.78783745, 0.90934299,
- 0.81136457, 0.99000726, 0.9669203 , 1.2890399 , 1.01923088,
- 1.11076459, 1.01331706, 1.02470946, 0.92950448, 1.10298478,
- 1.03723287, 1.09129035, 0.95138186, 0.85764624, 0.86606803,
- 0.8141785 , 1.0129293 , 0.93267714, 0.95663734, 1.01940702,
- 0.8072268 , 1.0707215 , 0.90482063, 1.01546955, 0.84018308,
- 0.95938216, 0.96454054, 0.93114659, 1.09705112, 0.88720628,
- 0.81067916, 0.82667413, 0.89494027, 0.9173495 , 0.73326273,
- 1.00209461, 0.9560545 , 1.09126364, 0.95709908, 0.81314274,
- 0.8274943 , 1.37605062, 0.99097917, 1.02221806, 0.90277482,
- 1.01611791, 0.79663017, 1.16686882, 1.19669266, 0.88366356,
- 0.77661102, 0.73467145, 1.15438391, 0.91439204, 0.78280849,
- 1.07238853, 1.03588797, 1.0438292 , 0.75935005, 0.76200114,
- 0.81603429, 0.74402367, 1.1171573 , 0.90227791, 0.94762351,
- 0.92462278, 0.8847803 , 1.1343863 , 0.8662186 , 1.00410699,
- 1.05008842, 0.94783969, 0.89555844, 0.98278045, 0.80396855,
- 1.00483139, 0.82540491, 0.83284354, 0.93132265, 0.91191039,
- 0.95753995, 1.18260689, 0.84124197, 0.87429189, 0.67617592,
- 0.89495946, 0.92898357, 1.10528183, 1.06994417, 0.82259834,
- 0.74746328, 0.99070832, 1.07386274, 0.84007203, 0.89720099,
- 0.9670094 , 1.02728082, 0.78001838, 0.97709347, 0.90602469,
- 1.49985196, 0.80256976, 1.05905677, 0.98298874, 0.94679703,
- 0.94305923, 0.98720786, 0.82091251, 0.91644161, 0.79576881,
- 0.98942172, 0.92974761, 0.99307545, 0.86959859, 0.88549807,
- 1.09246144, 0.87265047, 1.01449921, 0.74353851, 0.95029192,
- 0.94385304, 0.84779449, 1.00690543, 0.79727923, 0.92285822,
- 0.83164749, 1.06508941, 1.09757529, 0.9059649 , 0.9146043 ,
- 0.74474669, 0.71306438, 0.77989422, 0.84965464, 0.9424323 ,
- 0.82492634, 0.85076686, 1.01110574, 1.01445751, 0.87929754,
- 0.8773275 , 0.72314196, 0.92285502, 1.18173931, 0.86460799,
- 0.91795108, 1.16580482, 0.79880497, 0.72734786, 0.97579653,
- 0.76967834, 0.97543732, 1.04996964, 1.16439594, 1.08656546,
- 1.15644902, 0.98333436, 1.24374723, 0.95810117, 0.8488915 ,
- 1.06288523, 0.99055893, 0.75517736, 0.95856183, 0.85574796,
- 1.00426506, 1.25275675, 0.92735225, 0.83351314, 0.90216604,
- 0.87996386, 1.13312875, 1.00891523, 0.76513657, 0.85659621,
- 0.91142459, 1.05893495, 0.92253051, 0.87153684, 1.03190013,
- 0.92160845, 1.01768282, 0.80590054, 1.05172907, 0.92758177,
- 0.86902046, 0.93927127, 0.80389584, 0.96016014, 0.9720314 ,
- 0.93255573, 0.85792534, 0.97826842, 0.80506149, 0.97170364,
- 1.08397772, 1.01866333, 1.18898045, 1.02855427, 0.94848891,
- 0.94336541, 0.93119013, 0.92907817, 1.11806635, 0.88409637,
- 0.88809707, 1.06735612, 0.98447974, 0.88816438, 1.00099784,
- 0.92443453, 1.00325146, 0.86977836, 0.84621801, 0.92361073,
- 0.85573903, 0.77309241, 0.86717528, 1.19892035, 1.07497019,
- 1.02178857, 0.8718756 , 0.90646803, 0.92912096, 1.04538692,
- 0.95245707, 0.99698525, 0.94583199, 0.92537599, 0.86720487,
- 0.89927054, 0.86111792, 0.94401208, 1.01130191, 1.03759681,
- 0.8177749 , 1.07784373, 0.79823294, 1.00839713, 1.39409602,
- 0.87146241, 1.21218822, 0.84895926, 1.01742432, 0.8044077 ,
- 0.78632084, 1.07751744, 1.13147508, 0.90268302, 0.90024653,
- 0.92072578, 0.87763264, 1.00736787, 0.90978808, 0.90895492,
- 0.90766826, 0.98956566, 0.92075658, 0.77613105, 0.93815569,
- 0.95455546, 1.00607757, 0.82187828, 0.94197599, 0.867015 ,
- 0.90709762, 0.75604815, 0.91312261, 0.9286002 , 0.74623204,
- 0.87368702, 0.83879278, 0.92224793, 0.81676402, 0.90355168,
- 0.92762955, 0.91784037, 0.82273304, 0.75947806, 0.92687078,
- 0.87971276, 1.15037445, 0.86707445, 0.8611453 , 0.91921763,
- 1.07088129, 1.05150864, 1.02162325, 0.90305964, 0.99912687,
- 0.87693204, 0.6186911 , 0.95526533, 1.15975655, 1.00061222,
- 0.74608861, 0.954568 , 0.84965574, 0.79177899, 0.9741051 ,
- 1.0119514 , 0.79147502, 0.81367071, 0.87757421, 1.01270813,
- 0.86044808, 0.9689615 , 0.9577413 , 0.79480242, 0.76073002,
- 0.83131288, 0.96379259, 0.84679732, 0.82508685, 0.89977283,
- 0.86766439, 1.12231836, 0.93058445, 1.04584181, 0.88838751,
- 0.96615893, 0.98731619, 1.05517799, 1.02860493, 0.98881473,
- 0.85210319, 0.91497438, 0.9275787 , 0.97456134, 0.9011687 ,
- 0.69417417, 0.89661214, 0.79038577, 1.08118303, 1.0509366 ,
- 0.97813138, 0.85714945, 0.97330329, 0.83611871, 0.99772489,
- 0.83591193, 0.75592677, 0.85392601, 1.02734573, 0.72404609,
- 0.83534547, 0.91630472, 0.88463459, 1.12044562, 1.10991104,
- 0.96047701, 1.12342573, 0.72046647, 0.96852239, 0.89605698,
- 0.98310243, 0.92300659, 0.87794646, 0.83109321, 1.43297752,
- 0.80609029, 0.8692251 , 0.90254649, 0.81647796, 1.07521371,
- 1.03942973, 0.96156488, 1.25225334, 1.0265727 , 0.9518054 ,
- 0.87765718, 1.15552582, 0.79577766, 0.66849239, 0.87236017,
- 1.03437641, 0.98567811, 0.78463682, 1.09573491, 0.89858959,
- 0.94056747, 1.16075317, 1.06296054, 0.85844006, 0.95475376,
- 0.67038747, 0.7924646 , 0.94009167, 0.88282093, 0.97711174,
- 0.9209607 , 1.03230176, 0.99981312, 1.12345314, 1.11705968,
- 1.02453864, 0.91724212, 0.98337942, 0.89195196, 0.83800177,
- 0.95044243, 0.76543521, 0.8613025 , 0.83907753, 0.69333275,
- 0.84411739, 0.68621941, 0.9847701 , 1.13328481, 1.1432074 ,
- 0.97156328, 0.86464461, 0.74258211, 0.97319505, 1.11453917,
- 0.87344741, 0.91382664, 1.01635943, 1.38708812, 0.81377942,
- 1.3828856 , 0.74476285, 0.86657537, 1.1216954 , 0.91008346,
- 0.800862 , 0.98356936, 0.92409916, 1.13970543, 0.97547004,
- 0.99385865, 1.16476579, 0.78678084, 1.003947 , 0.81491463,
- 1.19724322, 0.9173622 , 0.93274116, 0.80047839, 0.86798029,
- 0.9433708 , 0.82376832, 1.01726905, 0.81914971, 0.73290844])
-
-
-
-class Medpar1(object):
- '''
- The medpar1 data can be found here.
-
- http://www.stata-press.com/data/hh2/medpar1
- '''
- def __init__(self):
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "stata_medpar1_glm.csv")
- data = np.recfromcsv(open(filename, 'rb'), converters ={1: lambda s: s.strip(asbytes("\""))})
- self.endog = data.los
- design = np.column_stack((data.admitype, data.codes))
- design = categorical(design, col=0, drop=True)
- design = np.delete(design, 1, axis=1) # drop first dummy
- self.exog = add_constant(design)
-
-class InvGaussLog(Medpar1):
- """
- InvGaussLog is used with TestGlmInvgaussLog
- """
- def __init__(self):
- super(InvGaussLog, self).__init__()
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "medparlogresids.csv")
- self.resids = np.genfromtxt(open(filename, 'rb'), delimiter=",")
- self.null_deviance = 335.1539777981053 # from R, Rpy bug
- self.params = np.array([ 0.09927544, -0.19161722, 1.05712336])
- self.bse = np.array([ 0.00600728, 0.02632126, 0.04915765])
- self.aic_R = 18545.836421595981
- self.aic_Stata = 6.619000588187141
- self.deviance = 304.27188306012789
- self.scale = 0.10240599519220173
-# self.llf = -9268.9182107979905 # from R
- self.llf = -12162.72308108797 # from Stata, big rounding diff with R
- self.bic_Stata = -29849.51723280784
- self.chi2 = 398.5465213008323 # from Stata not in sm
- self.df_model = 2
- self.df_resid = 3673
- self.fittedvalues = np.array([ 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 5.22145448, 7.03292237, 5.22145448, 4.72799187, 4.72799187,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 5.76642001,
- 7.03292237, 4.28116479, 7.03292237, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 3.87656588, 7.03292237, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 5.22145448, 6.36826384, 6.36826384, 4.28116479,
- 4.72799187, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 6.36826384,
- 6.36826384, 5.22145448, 7.03292237, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 3.87656588, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 5.22145448, 5.22145448, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 7.03292237, 6.36826384,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 6.36826384, 5.22145448,
- 7.03292237, 7.03292237, 4.72799187, 5.76642001, 7.03292237,
- 4.72799187, 6.36826384, 3.87656588, 7.03292237, 7.03292237,
- 5.22145448, 5.22145448, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 4.28116479,
- 7.03292237, 6.36826384, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 6.36826384, 3.87656588, 7.03292237,
- 7.03292237, 5.22145448, 7.03292237, 5.76642001, 4.28116479,
- 5.76642001, 6.36826384, 6.36826384, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 5.22145448,
- 7.03292237, 4.28116479, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 4.28116479, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.28116479, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 4.72799187, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 4.28116479, 5.76642001,
- 5.22145448, 6.36826384, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 6.36826384,
- 5.76642001, 7.03292237, 5.22145448, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 4.28116479, 7.03292237, 5.22145448, 7.03292237, 6.36826384,
- 5.76642001, 4.28116479, 4.28116479, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 4.28116479,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 7.03292237,
- 5.76642001, 7.03292237, 4.72799187, 4.28116479, 6.36826384,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 3.87656588, 4.72799187, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 6.36826384, 3.87656588, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.28116479, 7.03292237, 6.36826384,
- 7.03292237, 5.22145448, 5.22145448, 6.36826384, 7.03292237,
- 6.36826384, 6.36826384, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 6.36826384, 7.03292237,
- 3.87656588, 6.36826384, 5.22145448, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 5.22145448, 7.03292237, 6.36826384, 5.22145448, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 6.36826384,
- 7.03292237, 6.36826384, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 3.87656588, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 5.22145448,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 3.87656588,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 6.36826384,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 3.87656588, 7.03292237, 6.36826384, 6.36826384,
- 4.72799187, 5.76642001, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 3.87656588, 5.22145448, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 6.36826384,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 5.22145448, 5.76642001, 7.03292237, 5.76642001,
- 6.36826384, 5.76642001, 5.76642001, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 4.28116479, 6.36826384, 3.87656588,
- 7.03292237, 3.5102043 , 7.03292237, 7.03292237, 5.76642001,
- 5.22145448, 7.03292237, 5.76642001, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 4.72799187,
- 7.03292237, 6.36826384, 7.03292237, 5.22145448, 7.03292237,
- 4.72799187, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 5.22145448, 4.72799187, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 6.36826384, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 4.72799187, 5.76642001, 7.03292237, 5.76642001,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 6.36826384,
- 4.72799187, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 6.36826384, 5.22145448, 5.76642001, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 6.36826384, 6.36826384, 7.03292237, 5.76642001, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 5.22145448, 7.03292237, 3.87656588, 5.76642001, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 4.72799187, 7.03292237, 6.36826384, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 6.36826384, 3.87656588, 7.03292237, 7.03292237,
- 6.36826384, 4.72799187, 4.28116479, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 3.87656588, 7.03292237, 7.03292237, 7.03292237,
- 3.87656588, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 3.87656588,
- 7.03292237, 4.72799187, 5.22145448, 5.22145448, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.22145448, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 6.36826384, 5.76642001,
- 5.76642001, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 4.72799187, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 6.36826384, 7.03292237, 7.03292237, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 7.03292237, 6.36826384, 7.03292237, 5.76642001, 4.28116479,
- 5.76642001, 7.03292237, 3.87656588, 7.03292237, 7.03292237,
- 7.03292237, 3.5102043 , 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 5.76642001, 5.76642001, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 4.28116479, 6.36826384,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 6.36826384, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 3.5102043 , 7.03292237, 7.03292237,
- 7.03292237, 3.87656588, 6.36826384, 5.76642001, 7.03292237,
- 7.03292237, 6.36826384, 4.72799187, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 3.87656588, 5.22145448, 6.36826384,
- 4.28116479, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 5.22145448, 6.36826384, 6.36826384, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 3.5102043 , 7.03292237, 5.22145448,
- 5.22145448, 7.03292237, 6.36826384, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 5.76642001, 7.03292237, 3.87656588, 7.03292237, 5.22145448,
- 3.87656588, 4.72799187, 6.36826384, 5.76642001, 7.03292237,
- 6.36826384, 7.03292237, 4.28116479, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 4.28116479, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 3.5102043 , 4.72799187, 7.03292237, 4.28116479, 7.03292237,
- 4.72799187, 7.03292237, 5.22145448, 5.76642001, 5.76642001,
- 3.87656588, 5.76642001, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 4.72799187, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 6.36826384,
- 6.36826384, 5.76642001, 7.03292237, 5.76642001, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 5.76642001, 6.36826384,
- 5.76642001, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 4.72799187, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 5.76642001, 6.36826384, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 6.36826384, 7.03292237, 5.22145448, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 5.76642001, 6.36826384,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 6.36826384, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 5.76642001, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 5.76642001, 7.03292237, 4.28116479, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 4.28116479, 7.03292237, 7.03292237,
- 6.36826384, 3.87656588, 3.5102043 , 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 4.72799187, 5.76642001, 7.03292237, 7.03292237,
- 3.87656588, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 5.76642001,
- 7.03292237, 6.36826384, 5.76642001, 7.03292237, 6.36826384,
- 5.76642001, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 4.72799187, 5.76642001, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 4.28116479,
- 7.03292237, 5.76642001, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 6.36826384, 6.36826384, 7.03292237, 7.03292237, 6.36826384,
- 3.87656588, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 3.5102043 , 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 4.72799187, 7.03292237, 6.36826384, 4.72799187,
- 4.72799187, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 4.28116479, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 7.03292237, 7.03292237, 6.36826384, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.22145448, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 6.36826384,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 6.36826384, 7.03292237, 4.72799187,
- 4.28116479, 4.72799187, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 4.28116479, 4.28116479, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 3.87656588, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 5.22145448, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 4.72799187, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 5.22145448,
- 7.03292237, 7.03292237, 3.87656588, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 5.22145448, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 5.76642001, 7.03292237, 5.76642001,
- 7.03292237, 4.28116479, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 3.87656588,
- 6.36826384, 5.76642001, 7.03292237, 4.28116479, 7.03292237,
- 5.76642001, 5.22145448, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 3.5102043 ,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 4.28116479, 4.72799187, 6.36826384, 7.03292237,
- 7.03292237, 4.28116479, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 4.28116479, 7.03292237, 7.03292237, 5.22145448,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 5.22145448, 6.36826384, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 3.5102043 , 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 6.36826384,
- 4.72799187, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 4.72799187, 5.22145448,
- 5.76642001, 7.03292237, 6.36826384, 6.36826384, 7.03292237,
- 6.36826384, 7.03292237, 5.22145448, 4.72799187, 5.76642001,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 5.22145448,
- 7.03292237, 6.36826384, 3.87656588, 6.36826384, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 3.5102043 , 7.03292237, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 6.36826384, 7.03292237, 6.36826384,
- 7.03292237, 6.36826384, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 6.36826384, 7.03292237, 7.03292237,
- 6.36826384, 4.72799187, 7.03292237, 5.22145448, 7.03292237,
- 4.72799187, 7.03292237, 4.28116479, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 6.36826384, 7.03292237, 3.87656588, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 5.22145448, 7.03292237,
- 7.03292237, 5.76642001, 6.36826384, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 5.22145448, 7.03292237, 3.5102043 ,
- 6.36826384, 6.36826384, 7.03292237, 6.36826384, 7.03292237,
- 5.22145448, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 4.28116479, 7.03292237, 7.03292237,
- 4.72799187, 4.72799187, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 5.76642001,
- 4.28116479, 7.03292237, 4.28116479, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 3.5102043 , 7.03292237, 5.22145448,
- 7.03292237, 6.36826384, 7.03292237, 6.36826384, 7.03292237,
- 4.72799187, 7.03292237, 7.03292237, 4.72799187, 3.5102043 ,
- 3.17846635, 3.87656588, 5.22145448, 6.36826384, 7.03292237,
- 4.28116479, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 3.5102043 ,
- 7.03292237, 7.03292237, 5.22145448, 6.36826384, 3.87656588,
- 4.72799187, 7.03292237, 7.03292237, 3.87656588, 7.03292237,
- 6.36826384, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 4.72799187, 6.36826384, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 5.22145448,
- 7.03292237, 5.22145448, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 4.28116479, 7.03292237, 6.36826384, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 5.76642001, 7.03292237, 4.72799187, 7.03292237,
- 7.03292237, 4.72799187, 5.76642001, 6.36826384, 7.03292237,
- 4.28116479, 6.36826384, 7.03292237, 6.36826384, 5.76642001,
- 7.03292237, 4.28116479, 5.22145448, 4.72799187, 7.03292237,
- 7.03292237, 6.36826384, 5.22145448, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 6.36826384, 5.22145448, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 6.36826384, 7.03292237,
- 5.76642001, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 3.87656588, 6.36826384, 6.36826384,
- 5.22145448, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 4.28116479, 7.03292237, 3.87656588, 7.03292237,
- 7.03292237, 5.22145448, 6.36826384, 4.72799187, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 4.28116479, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 5.76642001, 5.22145448, 5.76642001, 7.03292237, 4.28116479,
- 7.03292237, 7.03292237, 4.72799187, 6.36826384, 7.03292237,
- 4.72799187, 5.76642001, 7.03292237, 7.03292237, 6.36826384,
- 6.36826384, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 7.03292237, 6.36826384,
- 7.03292237, 4.72799187, 4.72799187, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 5.76642001, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 3.5102043 , 6.36826384, 5.22145448, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 4.72799187, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 4.72799187, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 3.87656588, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 3.5102043 , 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 4.72799187, 7.03292237, 7.03292237, 4.28116479,
- 6.36826384, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 5.76642001, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 4.72799187, 7.03292237, 4.72799187, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 3.87656588, 5.22145448, 7.03292237, 7.03292237,
- 6.36826384, 4.28116479, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 3.87656588, 6.36826384, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 5.22145448, 7.03292237,
- 5.76642001, 4.72799187, 7.03292237, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 5.76642001,
- 5.22145448, 7.03292237, 5.76642001, 6.36826384, 4.28116479,
- 7.03292237, 4.72799187, 3.87656588, 5.22145448, 7.03292237,
- 6.36826384, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 6.36826384, 5.76642001, 6.36826384, 7.03292237,
- 5.76642001, 7.03292237, 5.76642001, 5.22145448, 3.87656588,
- 5.76642001, 6.36826384, 7.03292237, 5.22145448, 6.36826384,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 4.72799187, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 3.5102043 ,
- 3.87656588, 7.03292237, 4.72799187, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 3.87656588,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 4.28116479, 7.03292237, 4.72799187, 4.72799187, 7.03292237,
- 6.36826384, 5.76642001, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 7.03292237,
- 5.76642001, 5.22145448, 7.03292237, 4.72799187, 7.03292237,
- 4.28116479, 5.76642001, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 5.22145448, 5.22145448, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 6.36826384, 7.03292237,
- 7.03292237, 5.22145448, 7.03292237, 7.03292237, 5.76642001,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 3.87656588,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 7.03292237, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 4.28116479, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 3.5102043 ,
- 7.03292237, 7.03292237, 7.03292237, 5.76642001, 4.28116479,
- 5.22145448, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 5.76642001, 6.36826384, 7.03292237,
- 5.22145448, 5.76642001, 5.76642001, 7.03292237, 7.03292237,
- 5.22145448, 7.03292237, 7.03292237, 5.22145448, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.22145448,
- 6.36826384, 5.22145448, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 5.22145448, 7.03292237, 5.76642001, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 4.72799187, 7.03292237,
- 7.03292237, 7.03292237, 6.36826384, 4.72799187, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 5.76642001, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 7.03292237,
- 4.72799187, 3.87656588, 7.03292237, 7.03292237, 4.72799187,
- 7.03292237, 7.03292237, 6.36826384, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 3.87656588, 5.76642001,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 5.22145448, 7.03292237, 6.36826384, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 5.76642001,
- 5.76642001, 7.03292237, 5.76642001, 3.87656588, 6.36826384,
- 7.03292237, 7.03292237, 7.03292237, 6.36826384, 5.76642001,
- 5.22145448, 7.03292237, 5.22145448, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 4.72799187,
- 7.03292237, 6.36826384, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 7.03292237, 7.03292237, 5.22145448, 6.36826384,
- 7.03292237, 7.03292237, 3.17846635, 5.76642001, 7.03292237,
- 3.5102043 , 7.03292237, 7.03292237, 7.03292237, 3.87656588,
- 7.03292237, 6.36826384, 6.36826384, 7.03292237, 5.22145448,
- 7.03292237, 7.03292237, 7.03292237, 7.03292237, 7.03292237,
- 7.03292237, 4.28116479, 6.36826384, 7.03292237, 6.36826384,
- 4.72799187, 7.03292237, 7.03292237, 5.22145448, 4.28116479,
- 7.03292237, 6.36826384, 7.03292237, 4.72799187, 5.76642001,
- 6.36826384, 5.22145448, 7.03292237, 7.03292237, 7.03292237,
- 6.36826384, 7.03292237, 7.03292237, 3.87656588, 7.03292237,
- 4.72799187, 7.03292237, 3.53462742, 4.76088805, 5.25778406,
- 4.31095206, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 5.25778406, 5.80654132, 5.80654132,
- 3.90353806, 5.25778406, 4.31095206, 5.80654132, 5.25778406,
- 3.53462742, 2.89810483, 5.80654132, 5.25778406, 5.80654132,
- 2.89810483, 5.80654132, 5.25778406, 3.53462742, 4.76088805,
- 5.80654132, 3.20058132, 5.80654132, 5.80654132, 4.76088805,
- 5.80654132, 3.53462742, 3.53462742, 5.80654132, 5.80654132,
- 5.80654132, 4.76088805, 5.80654132, 4.76088805, 3.90353806,
- 5.80654132, 3.53462742, 5.80654132, 2.6242144 , 3.20058132,
- 5.80654132, 5.80654132, 3.90353806, 3.20058132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 2.89810483, 5.80654132, 5.80654132, 3.90353806, 3.53462742,
- 4.31095206, 5.80654132, 5.80654132, 4.76088805, 5.80654132,
- 3.53462742, 5.80654132, 4.76088805, 2.89810483, 5.25778406,
- 4.31095206, 5.80654132, 4.31095206, 5.80654132, 5.80654132,
- 4.76088805, 4.31095206, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 4.76088805, 5.80654132, 5.25778406,
- 5.25778406, 5.80654132, 5.80654132, 3.53462742, 5.80654132,
- 3.53462742, 5.80654132, 4.31095206, 5.80654132, 5.80654132,
- 5.25778406, 5.80654132, 3.20058132, 5.80654132, 5.80654132,
- 3.20058132, 3.90353806, 5.80654132, 5.80654132, 5.25778406,
- 3.53462742, 3.20058132, 5.80654132, 4.31095206, 5.80654132,
- 5.80654132, 5.80654132, 3.20058132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 4.31095206, 5.80654132, 3.90353806,
- 5.80654132, 4.31095206, 4.31095206, 5.80654132, 4.76088805,
- 3.90353806, 3.90353806, 4.76088805, 3.90353806, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 3.53462742, 5.80654132, 3.53462742,
- 5.80654132, 5.80654132, 5.80654132, 2.89810483, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 4.76088805, 4.76088805,
- 5.80654132, 2.89810483, 5.80654132, 4.76088805, 5.80654132,
- 5.80654132, 4.31095206, 3.20058132, 5.80654132, 4.76088805,
- 5.80654132, 2.89810483, 2.89810483, 5.25778406, 3.90353806,
- 5.80654132, 5.80654132, 5.25778406, 5.80654132, 5.80654132,
- 3.90353806, 5.80654132, 5.25778406, 4.76088805, 5.80654132,
- 2.89810483, 5.25778406, 5.80654132, 5.80654132, 4.31095206,
- 5.25778406, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 2.89810483, 5.80654132, 3.53462742, 3.90353806, 5.25778406,
- 5.80654132, 3.20058132, 2.89810483, 5.80654132, 4.31095206,
- 5.80654132, 3.53462742, 5.25778406, 4.76088805, 5.80654132,
- 3.53462742, 3.90353806, 5.80654132, 3.20058132, 5.80654132,
- 5.80654132, 3.53462742, 5.25778406, 4.76088805, 4.76088805,
- 5.80654132, 5.80654132, 2.89810483, 3.20058132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.25778406, 5.25778406,
- 5.80654132, 5.80654132, 4.76088805, 5.80654132, 4.31095206,
- 5.25778406, 5.80654132, 4.31095206, 4.31095206, 5.80654132,
- 5.80654132, 3.53462742, 4.76088805, 3.53462742, 4.76088805,
- 4.31095206, 5.80654132, 3.90353806, 5.80654132, 4.76088805,
- 5.80654132, 5.80654132, 5.80654132, 4.31095206, 3.90353806,
- 5.80654132, 4.76088805, 4.76088805, 3.53462742, 5.80654132,
- 5.80654132, 5.25778406, 3.53462742, 3.20058132, 3.53462742,
- 3.90353806, 5.80654132, 4.31095206, 4.76088805, 5.80654132,
- 5.80654132, 5.80654132, 3.90353806, 4.76088805, 2.89810483,
- 5.80654132, 5.80654132, 5.80654132, 4.76088805, 5.25778406,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.90353806, 5.25778406, 4.76088805,
- 5.80654132, 4.76088805, 3.90353806, 5.80654132, 5.80654132,
- 4.76088805, 5.80654132, 5.25778406, 5.80654132, 2.89810483,
- 5.80654132, 5.25778406, 3.90353806, 3.90353806, 5.80654132,
- 5.25778406, 3.53462742, 5.80654132, 4.76088805, 5.25778406,
- 5.80654132, 3.90353806, 4.31095206, 5.80654132, 5.25778406,
- 3.90353806, 3.53462742, 5.25778406, 2.89810483, 5.80654132,
- 3.53462742, 4.76088805, 4.31095206, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 3.90353806, 5.80654132,
- 4.31095206, 5.80654132, 5.80654132, 5.25778406, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.25778406, 5.25778406,
- 5.80654132, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 4.31095206, 5.80654132, 5.25778406,
- 5.80654132, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 4.31095206, 5.25778406, 3.53462742, 2.89810483,
- 5.80654132, 5.80654132, 3.20058132, 5.80654132, 4.31095206,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 3.90353806,
- 3.90353806, 3.90353806, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 4.76088805, 3.20058132, 4.31095206, 5.80654132,
- 3.90353806, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 3.90353806, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 3.90353806, 5.80654132, 3.90353806, 3.53462742,
- 5.80654132, 4.76088805, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 4.76088805, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 3.53462742, 5.25778406, 5.80654132, 3.53462742, 5.80654132,
- 3.90353806, 5.80654132, 5.80654132, 5.80654132, 3.90353806,
- 3.20058132, 5.80654132, 5.80654132, 3.90353806, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.53462742, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.53462742, 5.25778406, 3.90353806,
- 5.80654132, 4.76088805, 4.76088805, 3.90353806, 5.80654132,
- 5.80654132, 4.31095206, 2.89810483, 5.80654132, 5.80654132,
- 3.90353806, 5.80654132, 3.53462742, 3.90353806, 5.80654132,
- 5.80654132, 4.76088805, 5.80654132, 4.31095206, 5.25778406,
- 5.25778406, 3.20058132, 3.53462742, 5.80654132, 4.31095206,
- 5.80654132, 4.76088805, 3.90353806, 4.76088805, 4.76088805,
- 5.80654132, 5.80654132, 5.25778406, 3.90353806, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 3.53462742, 4.31095206, 3.90353806, 4.76088805,
- 4.31095206, 3.53462742, 3.90353806, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.20058132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 3.90353806, 4.76088805,
- 5.25778406, 3.53462742, 3.20058132, 5.80654132, 3.90353806,
- 5.80654132, 3.53462742, 5.80654132, 5.80654132, 3.90353806,
- 5.80654132, 3.90353806, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 4.76088805, 3.90353806, 4.76088805, 5.25778406,
- 2.89810483, 5.80654132, 4.31095206, 5.80654132, 4.76088805,
- 5.80654132, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 3.53462742, 2.89810483, 5.80654132, 5.80654132, 5.80654132,
- 3.90353806, 4.76088805, 5.80654132, 5.25778406, 4.76088805,
- 5.25778406, 5.80654132, 5.80654132, 5.25778406, 5.80654132,
- 5.80654132, 5.80654132, 2.89810483, 5.25778406, 5.80654132,
- 5.80654132, 4.76088805, 4.76088805, 5.25778406, 5.80654132,
- 5.80654132, 4.31095206, 3.20058132, 3.53462742, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 5.80654132, 5.80654132, 3.90353806, 4.76088805, 5.80654132,
- 3.53462742, 5.80654132, 5.25778406, 2.89810483, 5.80654132,
- 5.25778406, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 4.31095206, 5.80654132, 3.20058132, 5.80654132,
- 5.25778406, 4.76088805, 5.25778406, 5.80654132, 4.76088805,
- 5.80654132, 3.90353806, 4.31095206, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.25778406, 5.80654132, 3.90353806,
- 4.76088805, 3.90353806, 5.80654132, 3.53462742, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 3.53462742, 5.80654132,
- 4.76088805, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 3.90353806,
- 2.6242144 , 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 4.76088805, 5.80654132, 3.53462742, 5.80654132, 5.80654132,
- 3.90353806, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.20058132, 3.20058132, 5.80654132,
- 5.80654132, 5.80654132, 3.90353806, 5.80654132, 5.25778406,
- 4.31095206, 5.25778406, 4.31095206, 4.31095206, 4.76088805,
- 5.80654132, 4.76088805, 5.80654132, 3.53462742, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 3.20058132,
- 5.80654132, 3.90353806, 5.80654132, 4.76088805, 5.80654132,
- 3.90353806, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 5.80654132, 4.31095206, 5.25778406,
- 4.31095206, 5.80654132, 3.90353806, 5.80654132, 3.53462742,
- 5.25778406, 5.80654132, 5.80654132, 4.31095206, 3.90353806,
- 3.53462742, 5.80654132, 5.80654132, 5.80654132, 4.31095206,
- 5.80654132, 5.80654132, 5.25778406, 4.76088805, 4.31095206,
- 3.20058132, 5.80654132, 3.53462742, 3.20058132, 5.80654132,
- 5.80654132, 3.20058132, 3.20058132, 5.80654132, 4.31095206,
- 4.31095206, 5.80654132, 5.80654132, 3.90353806, 3.90353806,
- 3.53462742, 5.80654132, 3.90353806, 3.53462742, 5.80654132,
- 3.90353806, 5.25778406, 5.80654132, 3.53462742, 5.80654132,
- 5.25778406, 5.80654132, 4.31095206, 3.90353806, 5.80654132,
- 5.80654132, 4.31095206, 5.25778406, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 3.20058132, 5.25778406, 2.89810483, 3.90353806, 5.80654132,
- 3.53462742, 5.80654132, 5.25778406, 5.80654132, 2.89810483,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 3.20058132,
- 5.80654132, 5.25778406, 3.53462742, 4.31095206, 4.76088805,
- 3.90353806, 5.80654132, 5.80654132, 5.25778406, 3.90353806,
- 4.76088805, 4.31095206, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 3.90353806, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 3.53462742, 5.80654132, 5.80654132, 5.25778406, 5.80654132,
- 3.20058132, 5.80654132, 4.76088805, 5.80654132, 4.76088805,
- 5.80654132, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 2.89810483, 5.80654132, 5.80654132,
- 2.89810483, 3.53462742, 5.80654132, 5.80654132, 2.89810483,
- 4.31095206, 3.53462742, 4.31095206, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 4.31095206,
- 4.76088805, 5.25778406, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 3.90353806, 5.80654132, 5.25778406,
- 5.80654132, 2.89810483, 2.89810483, 5.80654132, 3.53462742,
- 5.80654132, 3.53462742, 5.80654132, 4.31095206, 2.89810483,
- 5.80654132, 5.80654132, 2.89810483, 4.76088805, 5.80654132,
- 5.80654132, 3.20058132, 5.80654132, 3.90353806, 5.80654132,
- 5.80654132, 3.20058132, 3.90353806, 4.76088805, 4.76088805,
- 5.80654132, 3.90353806, 4.31095206, 5.80654132, 4.31095206,
- 5.80654132, 3.20058132, 4.31095206, 4.76088805, 3.53462742,
- 5.80654132, 5.80654132, 3.53462742, 3.53462742, 3.53462742,
- 5.80654132, 5.80654132, 3.90353806, 3.90353806, 3.20058132,
- 5.80654132, 5.80654132, 2.89810483, 3.90353806, 5.80654132,
- 2.89810483, 3.53462742, 3.53462742, 4.31095206, 5.80654132,
- 3.53462742, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.25778406, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 4.76088805, 5.80654132, 5.80654132, 4.76088805,
- 5.80654132, 5.80654132, 4.76088805, 4.76088805, 5.80654132,
- 5.25778406, 4.31095206, 5.80654132, 4.76088805, 3.90353806,
- 4.31095206, 5.80654132, 2.89810483, 4.31095206, 5.25778406,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 3.20058132,
- 5.25778406, 5.80654132, 4.76088805, 5.80654132, 4.31095206,
- 5.80654132, 5.80654132, 4.76088805, 4.31095206, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 4.31095206,
- 4.31095206, 3.20058132, 4.76088805, 5.80654132, 3.20058132,
- 3.20058132, 5.80654132, 3.90353806, 5.25778406, 3.20058132,
- 4.76088805, 3.20058132, 3.53462742, 4.76088805, 5.80654132,
- 5.80654132, 4.31095206, 4.76088805, 5.80654132, 4.31095206,
- 5.80654132, 4.76088805, 4.31095206, 2.89810483, 5.80654132,
- 5.80654132, 5.80654132, 4.76088805, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 4.76088805, 5.25778406, 4.31095206,
- 5.80654132, 3.90353806, 3.53462742, 4.76088805, 5.80654132,
- 4.31095206, 5.80654132, 5.80654132, 3.20058132, 5.80654132,
- 5.25778406, 5.80654132, 5.80654132, 5.80654132, 3.53462742,
- 2.6242144 , 5.80654132, 5.80654132, 3.53462742, 5.25778406,
- 3.90353806, 5.80654132, 2.89810483, 5.80654132, 3.90353806,
- 5.80654132, 5.80654132, 3.90353806, 2.89810483, 5.80654132,
- 4.76088805, 4.31095206, 5.80654132, 5.25778406, 5.80654132,
- 5.80654132, 4.31095206, 5.80654132, 5.80654132, 5.80654132,
- 3.90353806, 4.76088805, 5.80654132, 4.76088805, 5.80654132,
- 4.76088805, 3.53462742, 3.90353806, 5.80654132, 5.80654132,
- 5.80654132, 5.25778406, 5.80654132, 5.80654132, 5.25778406,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 3.53462742, 3.53462742, 3.90353806, 5.80654132, 4.31095206,
- 3.53462742, 5.80654132, 4.76088805, 4.76088805, 3.20058132,
- 3.90353806, 5.80654132, 5.25778406, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 4.31095206, 5.25778406, 4.31095206,
- 5.80654132, 3.20058132, 5.80654132, 4.31095206, 4.31095206,
- 4.76088805, 5.80654132, 4.76088805, 4.31095206, 5.80654132,
- 5.25778406, 3.53462742, 3.53462742, 5.25778406, 5.80654132,
- 3.90353806, 5.25778406, 4.31095206, 4.31095206, 3.53462742,
- 5.80654132, 3.90353806, 5.80654132, 5.80654132, 4.76088805,
- 5.25778406, 3.20058132, 3.90353806, 5.80654132, 5.25778406,
- 5.80654132, 5.80654132, 5.25778406, 5.80654132, 4.31095206,
- 5.25778406, 4.76088805, 5.80654132, 5.80654132, 5.25778406,
- 3.53462742, 5.80654132, 5.80654132, 5.80654132, 5.25778406,
- 5.25778406, 5.80654132, 3.20058132, 5.80654132, 5.80654132,
- 3.53462742, 5.80654132, 5.80654132, 5.80654132, 4.31095206,
- 5.80654132, 4.76088805, 5.80654132, 5.80654132, 5.80654132,
- 3.90353806, 4.31095206, 5.25778406, 5.80654132, 3.53462742,
- 3.90353806, 5.25778406, 4.31095206, 5.80654132, 5.25778406,
- 5.25778406, 2.89810483, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 5.25778406, 5.80654132, 4.76088805,
- 5.80654132, 5.80654132, 5.80654132, 4.31095206, 5.80654132,
- 3.20058132, 3.90353806, 5.80654132, 5.80654132, 5.25778406,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 5.80654132, 2.6242144 , 5.80654132, 3.90353806,
- 5.25778406, 4.76088805, 5.80654132, 5.80654132, 3.90353806,
- 5.80654132, 3.53462742, 2.89810483, 5.80654132, 3.53462742,
- 2.89810483, 4.76088805, 5.80654132, 5.80654132, 5.80654132,
- 4.31095206, 5.80654132, 4.76088805, 3.90353806, 2.89810483,
- 4.76088805, 5.80654132, 2.6242144 , 3.53462742, 4.31095206,
- 5.25778406, 5.25778406, 3.20058132, 4.31095206, 4.31095206,
- 3.20058132, 4.31095206, 5.25778406, 4.31095206, 5.25778406,
- 3.90353806, 4.31095206, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 3.90353806, 5.80654132, 5.80654132, 5.80654132,
- 4.31095206, 5.80654132, 5.80654132, 5.80654132, 3.90353806,
- 5.25778406, 3.90353806, 4.31095206, 4.76088805, 3.90353806,
- 5.80654132, 5.80654132, 5.80654132, 2.89810483, 5.80654132,
- 5.80654132, 5.80654132, 5.80654132, 5.80654132, 5.80654132,
- 5.80654132, 3.90353806, 3.20058132, 5.25778406, 4.76088805,
- 5.25778406])
-
-
-class InvGaussIdentity(Medpar1):
- """
- Accuracy is different for R vs Stata ML vs Stata IRLS, we are close.
- """
- def __init__(self):
- super(InvGaussIdentity, self).__init__()
- self.params = np.array([ 0.44538838, -1.05872706, 2.83947966])
- self.bse = np.array([ 0.02586783, 0.13830023, 0.20834864])
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "igaussident_resids.csv")
- self.resids = np.genfromtxt(open(filename, 'rb'), delimiter=",")
- self.null_deviance = 335.1539777981053 # from R, Rpy bug
- self.df_null = 3675
- self.deviance = 305.33661191013988
- self.df_resid = 3673
- self.df_model = 2
- self.aic_R = 18558.677276882016
- self.aic_Stata = 6.619290231464371
- self.bic_Stata = -29848.45250412075
- self.llf_stata = -12163.25544543151
- self.chi2 = 567.1229375785638 # in Stata not sm
-# self.llf = -9275.3386384410078 # from R
- self.llf = -12163.25545 # from Stata, big diff with R
- self.scale = 0.10115387793455666
- self.pearson_chi2 = 371.5346609292967 # deviance_p in Stata
- self.fittedvalues = np.array([ 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 5.51180993, 6.84797506, 5.51180993, 5.06642155, 5.06642155,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 5.9571983 ,
- 6.84797506, 4.62103317, 6.84797506, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 4.17564479, 6.84797506, 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 5.51180993, 6.40258668, 6.40258668, 4.62103317,
- 5.06642155, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.40258668,
- 6.40258668, 5.51180993, 6.84797506, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 4.17564479, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.51180993, 5.51180993, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.84797506, 6.40258668,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.40258668, 5.51180993,
- 6.84797506, 6.84797506, 5.06642155, 5.9571983 , 6.84797506,
- 5.06642155, 6.40258668, 4.17564479, 6.84797506, 6.84797506,
- 5.51180993, 5.51180993, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 4.62103317,
- 6.84797506, 6.40258668, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.40258668, 4.17564479, 6.84797506,
- 6.84797506, 5.51180993, 6.84797506, 5.9571983 , 4.62103317,
- 5.9571983 , 6.40258668, 6.40258668, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 5.51180993,
- 6.84797506, 4.62103317, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 4.62103317, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 4.62103317, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 5.06642155, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 4.62103317, 5.9571983 ,
- 5.51180993, 6.40258668, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.40258668,
- 5.9571983 , 6.84797506, 5.51180993, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 4.62103317, 6.84797506, 5.51180993, 6.84797506, 6.40258668,
- 5.9571983 , 4.62103317, 4.62103317, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 4.62103317,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.84797506,
- 5.9571983 , 6.84797506, 5.06642155, 4.62103317, 6.40258668,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 4.17564479, 5.06642155, 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.40258668, 4.17564479, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 4.62103317, 6.84797506, 6.40258668,
- 6.84797506, 5.51180993, 5.51180993, 6.40258668, 6.84797506,
- 6.40258668, 6.40258668, 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.40258668, 6.84797506,
- 4.17564479, 6.40258668, 5.51180993, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 5.51180993, 6.84797506, 6.40258668, 5.51180993, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.40258668,
- 6.84797506, 6.40258668, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 4.17564479, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 5.51180993,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.17564479,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.40258668,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 4.17564479, 6.84797506, 6.40258668, 6.40258668,
- 5.06642155, 5.9571983 , 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 4.17564479, 5.51180993, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.40258668,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 5.51180993, 5.9571983 , 6.84797506, 5.9571983 ,
- 6.40258668, 5.9571983 , 5.9571983 , 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 4.62103317, 6.40258668, 4.17564479,
- 6.84797506, 3.73025641, 6.84797506, 6.84797506, 5.9571983 ,
- 5.51180993, 6.84797506, 5.9571983 , 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 5.06642155,
- 6.84797506, 6.40258668, 6.84797506, 5.51180993, 6.84797506,
- 5.06642155, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 5.51180993, 5.06642155, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.40258668, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.06642155, 5.9571983 , 6.84797506, 5.9571983 ,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 6.40258668,
- 5.06642155, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 6.40258668, 5.51180993, 5.9571983 , 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.40258668, 6.40258668, 6.84797506, 5.9571983 , 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 5.51180993, 6.84797506, 4.17564479, 5.9571983 , 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 5.06642155, 6.84797506, 6.40258668, 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 6.40258668, 4.17564479, 6.84797506, 6.84797506,
- 6.40258668, 5.06642155, 4.62103317, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 4.17564479, 6.84797506, 6.84797506, 6.84797506,
- 4.17564479, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 4.17564479,
- 6.84797506, 5.06642155, 5.51180993, 5.51180993, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.51180993, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.40258668, 5.9571983 ,
- 5.9571983 , 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 5.06642155, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.40258668, 6.84797506, 6.84797506, 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 6.84797506, 6.40258668, 6.84797506, 5.9571983 , 4.62103317,
- 5.9571983 , 6.84797506, 4.17564479, 6.84797506, 6.84797506,
- 6.84797506, 3.73025641, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 5.9571983 , 5.9571983 , 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 4.62103317, 6.40258668,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.40258668, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 3.73025641, 6.84797506, 6.84797506,
- 6.84797506, 4.17564479, 6.40258668, 5.9571983 , 6.84797506,
- 6.84797506, 6.40258668, 5.06642155, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 4.17564479, 5.51180993, 6.40258668,
- 4.62103317, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 5.51180993, 6.40258668, 6.40258668, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 3.73025641, 6.84797506, 5.51180993,
- 5.51180993, 6.84797506, 6.40258668, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 5.9571983 , 6.84797506, 4.17564479, 6.84797506, 5.51180993,
- 4.17564479, 5.06642155, 6.40258668, 5.9571983 , 6.84797506,
- 6.40258668, 6.84797506, 4.62103317, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 4.62103317, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 3.73025641, 5.06642155, 6.84797506, 4.62103317, 6.84797506,
- 5.06642155, 6.84797506, 5.51180993, 5.9571983 , 5.9571983 ,
- 4.17564479, 5.9571983 , 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 5.06642155, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.40258668,
- 6.40258668, 5.9571983 , 6.84797506, 5.9571983 , 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 5.9571983 , 6.40258668,
- 5.9571983 , 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 5.06642155, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 5.9571983 , 6.40258668, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.40258668, 6.84797506, 5.51180993, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 5.9571983 , 6.40258668,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.40258668, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 5.9571983 , 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 5.9571983 , 6.84797506, 4.62103317, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 4.62103317, 6.84797506, 6.84797506,
- 6.40258668, 4.17564479, 3.73025641, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 5.06642155, 5.9571983 , 6.84797506, 6.84797506,
- 4.17564479, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 5.9571983 ,
- 6.84797506, 6.40258668, 5.9571983 , 6.84797506, 6.40258668,
- 5.9571983 , 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.06642155, 5.9571983 , 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 4.62103317,
- 6.84797506, 5.9571983 , 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.40258668, 6.40258668, 6.84797506, 6.84797506, 6.40258668,
- 4.17564479, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 3.73025641, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 5.06642155, 6.84797506, 6.40258668, 5.06642155,
- 5.06642155, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 4.62103317, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 6.84797506, 6.84797506, 6.40258668, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.51180993, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.40258668,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.40258668, 6.84797506, 5.06642155,
- 4.62103317, 5.06642155, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 4.62103317, 4.62103317, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 4.17564479, 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 5.51180993, 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 5.06642155, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 5.51180993,
- 6.84797506, 6.84797506, 4.17564479, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 5.51180993, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 5.9571983 , 6.84797506, 5.9571983 ,
- 6.84797506, 4.62103317, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 4.17564479,
- 6.40258668, 5.9571983 , 6.84797506, 4.62103317, 6.84797506,
- 5.9571983 , 5.51180993, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 3.73025641,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 4.62103317, 5.06642155, 6.40258668, 6.84797506,
- 6.84797506, 4.62103317, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 4.62103317, 6.84797506, 6.84797506, 5.51180993,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 5.51180993, 6.40258668, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 3.73025641, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.40258668,
- 5.06642155, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 5.06642155, 5.51180993,
- 5.9571983 , 6.84797506, 6.40258668, 6.40258668, 6.84797506,
- 6.40258668, 6.84797506, 5.51180993, 5.06642155, 5.9571983 ,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 5.51180993,
- 6.84797506, 6.40258668, 4.17564479, 6.40258668, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 3.73025641, 6.84797506, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.40258668, 6.84797506, 6.40258668,
- 6.84797506, 6.40258668, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.40258668, 6.84797506, 6.84797506,
- 6.40258668, 5.06642155, 6.84797506, 5.51180993, 6.84797506,
- 5.06642155, 6.84797506, 4.62103317, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.40258668, 6.84797506, 4.17564479, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 5.51180993, 6.84797506,
- 6.84797506, 5.9571983 , 6.40258668, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 5.51180993, 6.84797506, 3.73025641,
- 6.40258668, 6.40258668, 6.84797506, 6.40258668, 6.84797506,
- 5.51180993, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 4.62103317, 6.84797506, 6.84797506,
- 5.06642155, 5.06642155, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 5.9571983 ,
- 4.62103317, 6.84797506, 4.62103317, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 3.73025641, 6.84797506, 5.51180993,
- 6.84797506, 6.40258668, 6.84797506, 6.40258668, 6.84797506,
- 5.06642155, 6.84797506, 6.84797506, 5.06642155, 3.73025641,
- 3.28486804, 4.17564479, 5.51180993, 6.40258668, 6.84797506,
- 4.62103317, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 3.73025641,
- 6.84797506, 6.84797506, 5.51180993, 6.40258668, 4.17564479,
- 5.06642155, 6.84797506, 6.84797506, 4.17564479, 6.84797506,
- 6.40258668, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 5.06642155, 6.40258668, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 5.51180993,
- 6.84797506, 5.51180993, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 4.62103317, 6.84797506, 6.40258668, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 5.9571983 , 6.84797506, 5.06642155, 6.84797506,
- 6.84797506, 5.06642155, 5.9571983 , 6.40258668, 6.84797506,
- 4.62103317, 6.40258668, 6.84797506, 6.40258668, 5.9571983 ,
- 6.84797506, 4.62103317, 5.51180993, 5.06642155, 6.84797506,
- 6.84797506, 6.40258668, 5.51180993, 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 6.40258668, 5.51180993, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 6.40258668, 6.84797506,
- 5.9571983 , 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 4.17564479, 6.40258668, 6.40258668,
- 5.51180993, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 4.62103317, 6.84797506, 4.17564479, 6.84797506,
- 6.84797506, 5.51180993, 6.40258668, 5.06642155, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 4.62103317, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 5.9571983 , 5.51180993, 5.9571983 , 6.84797506, 4.62103317,
- 6.84797506, 6.84797506, 5.06642155, 6.40258668, 6.84797506,
- 5.06642155, 5.9571983 , 6.84797506, 6.84797506, 6.40258668,
- 6.40258668, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 6.84797506, 6.40258668,
- 6.84797506, 5.06642155, 5.06642155, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 5.9571983 , 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 3.73025641, 6.40258668, 5.51180993, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 5.06642155, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 5.06642155, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 4.17564479, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 3.73025641, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 5.06642155, 6.84797506, 6.84797506, 4.62103317,
- 6.40258668, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 5.9571983 , 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 5.06642155, 6.84797506, 5.06642155, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 4.17564479, 5.51180993, 6.84797506, 6.84797506,
- 6.40258668, 4.62103317, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 4.17564479, 6.40258668, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 5.51180993, 6.84797506,
- 5.9571983 , 5.06642155, 6.84797506, 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 5.9571983 ,
- 5.51180993, 6.84797506, 5.9571983 , 6.40258668, 4.62103317,
- 6.84797506, 5.06642155, 4.17564479, 5.51180993, 6.84797506,
- 6.40258668, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.40258668, 5.9571983 , 6.40258668, 6.84797506,
- 5.9571983 , 6.84797506, 5.9571983 , 5.51180993, 4.17564479,
- 5.9571983 , 6.40258668, 6.84797506, 5.51180993, 6.40258668,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.06642155, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 3.73025641,
- 4.17564479, 6.84797506, 5.06642155, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 4.17564479,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 4.62103317, 6.84797506, 5.06642155, 5.06642155, 6.84797506,
- 6.40258668, 5.9571983 , 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.84797506,
- 5.9571983 , 5.51180993, 6.84797506, 5.06642155, 6.84797506,
- 4.62103317, 5.9571983 , 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 5.51180993, 5.51180993, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.40258668, 6.84797506,
- 6.84797506, 5.51180993, 6.84797506, 6.84797506, 5.9571983 ,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 4.17564479,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.84797506, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 4.62103317, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 3.73025641,
- 6.84797506, 6.84797506, 6.84797506, 5.9571983 , 4.62103317,
- 5.51180993, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 5.9571983 , 6.40258668, 6.84797506,
- 5.51180993, 5.9571983 , 5.9571983 , 6.84797506, 6.84797506,
- 5.51180993, 6.84797506, 6.84797506, 5.51180993, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.51180993,
- 6.40258668, 5.51180993, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 5.51180993, 6.84797506, 5.9571983 , 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.06642155, 6.84797506,
- 6.84797506, 6.84797506, 6.40258668, 5.06642155, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 5.9571983 , 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 6.84797506,
- 5.06642155, 4.17564479, 6.84797506, 6.84797506, 5.06642155,
- 6.84797506, 6.84797506, 6.40258668, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 4.17564479, 5.9571983 ,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 5.51180993, 6.84797506, 6.40258668, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 5.9571983 ,
- 5.9571983 , 6.84797506, 5.9571983 , 4.17564479, 6.40258668,
- 6.84797506, 6.84797506, 6.84797506, 6.40258668, 5.9571983 ,
- 5.51180993, 6.84797506, 5.51180993, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 5.06642155,
- 6.84797506, 6.40258668, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 6.84797506, 6.84797506, 5.51180993, 6.40258668,
- 6.84797506, 6.84797506, 3.28486804, 5.9571983 , 6.84797506,
- 3.73025641, 6.84797506, 6.84797506, 6.84797506, 4.17564479,
- 6.84797506, 6.40258668, 6.40258668, 6.84797506, 5.51180993,
- 6.84797506, 6.84797506, 6.84797506, 6.84797506, 6.84797506,
- 6.84797506, 4.62103317, 6.40258668, 6.84797506, 6.40258668,
- 5.06642155, 6.84797506, 6.84797506, 5.51180993, 4.62103317,
- 6.84797506, 6.40258668, 6.84797506, 5.06642155, 5.9571983 ,
- 6.40258668, 5.51180993, 6.84797506, 6.84797506, 6.84797506,
- 6.40258668, 6.84797506, 6.84797506, 4.17564479, 6.84797506,
- 5.06642155, 6.84797506, 3.56230611, 4.89847125, 5.34385962,
- 4.45308287, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 5.34385962, 5.789248 , 5.789248 ,
- 4.00769449, 5.34385962, 4.45308287, 5.789248 , 5.34385962,
- 3.56230611, 2.67152936, 5.789248 , 5.34385962, 5.789248 ,
- 2.67152936, 5.789248 , 5.34385962, 3.56230611, 4.89847125,
- 5.789248 , 3.11691773, 5.789248 , 5.789248 , 4.89847125,
- 5.789248 , 3.56230611, 3.56230611, 5.789248 , 5.789248 ,
- 5.789248 , 4.89847125, 5.789248 , 4.89847125, 4.00769449,
- 5.789248 , 3.56230611, 5.789248 , 2.22614098, 3.11691773,
- 5.789248 , 5.789248 , 4.00769449, 3.11691773, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 2.67152936, 5.789248 , 5.789248 , 4.00769449, 3.56230611,
- 4.45308287, 5.789248 , 5.789248 , 4.89847125, 5.789248 ,
- 3.56230611, 5.789248 , 4.89847125, 2.67152936, 5.34385962,
- 4.45308287, 5.789248 , 4.45308287, 5.789248 , 5.789248 ,
- 4.89847125, 4.45308287, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.89847125, 5.789248 , 5.34385962,
- 5.34385962, 5.789248 , 5.789248 , 3.56230611, 5.789248 ,
- 3.56230611, 5.789248 , 4.45308287, 5.789248 , 5.789248 ,
- 5.34385962, 5.789248 , 3.11691773, 5.789248 , 5.789248 ,
- 3.11691773, 4.00769449, 5.789248 , 5.789248 , 5.34385962,
- 3.56230611, 3.11691773, 5.789248 , 4.45308287, 5.789248 ,
- 5.789248 , 5.789248 , 3.11691773, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.45308287, 5.789248 , 4.00769449,
- 5.789248 , 4.45308287, 4.45308287, 5.789248 , 4.89847125,
- 4.00769449, 4.00769449, 4.89847125, 4.00769449, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 3.56230611, 5.789248 , 3.56230611,
- 5.789248 , 5.789248 , 5.789248 , 2.67152936, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 4.89847125, 4.89847125,
- 5.789248 , 2.67152936, 5.789248 , 4.89847125, 5.789248 ,
- 5.789248 , 4.45308287, 3.11691773, 5.789248 , 4.89847125,
- 5.789248 , 2.67152936, 2.67152936, 5.34385962, 4.00769449,
- 5.789248 , 5.789248 , 5.34385962, 5.789248 , 5.789248 ,
- 4.00769449, 5.789248 , 5.34385962, 4.89847125, 5.789248 ,
- 2.67152936, 5.34385962, 5.789248 , 5.789248 , 4.45308287,
- 5.34385962, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 2.67152936, 5.789248 , 3.56230611, 4.00769449, 5.34385962,
- 5.789248 , 3.11691773, 2.67152936, 5.789248 , 4.45308287,
- 5.789248 , 3.56230611, 5.34385962, 4.89847125, 5.789248 ,
- 3.56230611, 4.00769449, 5.789248 , 3.11691773, 5.789248 ,
- 5.789248 , 3.56230611, 5.34385962, 4.89847125, 4.89847125,
- 5.789248 , 5.789248 , 2.67152936, 3.11691773, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.34385962, 5.34385962,
- 5.789248 , 5.789248 , 4.89847125, 5.789248 , 4.45308287,
- 5.34385962, 5.789248 , 4.45308287, 4.45308287, 5.789248 ,
- 5.789248 , 3.56230611, 4.89847125, 3.56230611, 4.89847125,
- 4.45308287, 5.789248 , 4.00769449, 5.789248 , 4.89847125,
- 5.789248 , 5.789248 , 5.789248 , 4.45308287, 4.00769449,
- 5.789248 , 4.89847125, 4.89847125, 3.56230611, 5.789248 ,
- 5.789248 , 5.34385962, 3.56230611, 3.11691773, 3.56230611,
- 4.00769449, 5.789248 , 4.45308287, 4.89847125, 5.789248 ,
- 5.789248 , 5.789248 , 4.00769449, 4.89847125, 2.67152936,
- 5.789248 , 5.789248 , 5.789248 , 4.89847125, 5.34385962,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.00769449, 5.34385962, 4.89847125,
- 5.789248 , 4.89847125, 4.00769449, 5.789248 , 5.789248 ,
- 4.89847125, 5.789248 , 5.34385962, 5.789248 , 2.67152936,
- 5.789248 , 5.34385962, 4.00769449, 4.00769449, 5.789248 ,
- 5.34385962, 3.56230611, 5.789248 , 4.89847125, 5.34385962,
- 5.789248 , 4.00769449, 4.45308287, 5.789248 , 5.34385962,
- 4.00769449, 3.56230611, 5.34385962, 2.67152936, 5.789248 ,
- 3.56230611, 4.89847125, 4.45308287, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 4.00769449, 5.789248 ,
- 4.45308287, 5.789248 , 5.789248 , 5.34385962, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.34385962, 5.34385962,
- 5.789248 , 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 4.45308287, 5.789248 , 5.34385962,
- 5.789248 , 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.45308287, 5.34385962, 3.56230611, 2.67152936,
- 5.789248 , 5.789248 , 3.11691773, 5.789248 , 4.45308287,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 4.00769449,
- 4.00769449, 4.00769449, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.89847125, 3.11691773, 4.45308287, 5.789248 ,
- 4.00769449, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.00769449, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.00769449, 5.789248 , 4.00769449, 3.56230611,
- 5.789248 , 4.89847125, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 4.89847125, 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 3.56230611, 5.34385962, 5.789248 , 3.56230611, 5.789248 ,
- 4.00769449, 5.789248 , 5.789248 , 5.789248 , 4.00769449,
- 3.11691773, 5.789248 , 5.789248 , 4.00769449, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 3.56230611, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 3.56230611, 5.34385962, 4.00769449,
- 5.789248 , 4.89847125, 4.89847125, 4.00769449, 5.789248 ,
- 5.789248 , 4.45308287, 2.67152936, 5.789248 , 5.789248 ,
- 4.00769449, 5.789248 , 3.56230611, 4.00769449, 5.789248 ,
- 5.789248 , 4.89847125, 5.789248 , 4.45308287, 5.34385962,
- 5.34385962, 3.11691773, 3.56230611, 5.789248 , 4.45308287,
- 5.789248 , 4.89847125, 4.00769449, 4.89847125, 4.89847125,
- 5.789248 , 5.789248 , 5.34385962, 4.00769449, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 3.56230611, 4.45308287, 4.00769449, 4.89847125,
- 4.45308287, 3.56230611, 4.00769449, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 3.11691773, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 4.00769449, 4.89847125,
- 5.34385962, 3.56230611, 3.11691773, 5.789248 , 4.00769449,
- 5.789248 , 3.56230611, 5.789248 , 5.789248 , 4.00769449,
- 5.789248 , 4.00769449, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.89847125, 4.00769449, 4.89847125, 5.34385962,
- 2.67152936, 5.789248 , 4.45308287, 5.789248 , 4.89847125,
- 5.789248 , 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 3.56230611, 2.67152936, 5.789248 , 5.789248 , 5.789248 ,
- 4.00769449, 4.89847125, 5.789248 , 5.34385962, 4.89847125,
- 5.34385962, 5.789248 , 5.789248 , 5.34385962, 5.789248 ,
- 5.789248 , 5.789248 , 2.67152936, 5.34385962, 5.789248 ,
- 5.789248 , 4.89847125, 4.89847125, 5.34385962, 5.789248 ,
- 5.789248 , 4.45308287, 3.11691773, 3.56230611, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 5.789248 , 5.789248 , 4.00769449, 4.89847125, 5.789248 ,
- 3.56230611, 5.789248 , 5.34385962, 2.67152936, 5.789248 ,
- 5.34385962, 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.45308287, 5.789248 , 3.11691773, 5.789248 ,
- 5.34385962, 4.89847125, 5.34385962, 5.789248 , 4.89847125,
- 5.789248 , 4.00769449, 4.45308287, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.34385962, 5.789248 , 4.00769449,
- 4.89847125, 4.00769449, 5.789248 , 3.56230611, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 3.56230611, 5.789248 ,
- 4.89847125, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 4.00769449,
- 2.22614098, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 4.89847125, 5.789248 , 3.56230611, 5.789248 , 5.789248 ,
- 4.00769449, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 3.11691773, 3.11691773, 5.789248 ,
- 5.789248 , 5.789248 , 4.00769449, 5.789248 , 5.34385962,
- 4.45308287, 5.34385962, 4.45308287, 4.45308287, 4.89847125,
- 5.789248 , 4.89847125, 5.789248 , 3.56230611, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 3.11691773,
- 5.789248 , 4.00769449, 5.789248 , 4.89847125, 5.789248 ,
- 4.00769449, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 5.789248 , 4.45308287, 5.34385962,
- 4.45308287, 5.789248 , 4.00769449, 5.789248 , 3.56230611,
- 5.34385962, 5.789248 , 5.789248 , 4.45308287, 4.00769449,
- 3.56230611, 5.789248 , 5.789248 , 5.789248 , 4.45308287,
- 5.789248 , 5.789248 , 5.34385962, 4.89847125, 4.45308287,
- 3.11691773, 5.789248 , 3.56230611, 3.11691773, 5.789248 ,
- 5.789248 , 3.11691773, 3.11691773, 5.789248 , 4.45308287,
- 4.45308287, 5.789248 , 5.789248 , 4.00769449, 4.00769449,
- 3.56230611, 5.789248 , 4.00769449, 3.56230611, 5.789248 ,
- 4.00769449, 5.34385962, 5.789248 , 3.56230611, 5.789248 ,
- 5.34385962, 5.789248 , 4.45308287, 4.00769449, 5.789248 ,
- 5.789248 , 4.45308287, 5.34385962, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 3.11691773, 5.34385962, 2.67152936, 4.00769449, 5.789248 ,
- 3.56230611, 5.789248 , 5.34385962, 5.789248 , 2.67152936,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 3.11691773,
- 5.789248 , 5.34385962, 3.56230611, 4.45308287, 4.89847125,
- 4.00769449, 5.789248 , 5.789248 , 5.34385962, 4.00769449,
- 4.89847125, 4.45308287, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.00769449, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 3.56230611, 5.789248 , 5.789248 , 5.34385962, 5.789248 ,
- 3.11691773, 5.789248 , 4.89847125, 5.789248 , 4.89847125,
- 5.789248 , 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 2.67152936, 5.789248 , 5.789248 ,
- 2.67152936, 3.56230611, 5.789248 , 5.789248 , 2.67152936,
- 4.45308287, 3.56230611, 4.45308287, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 4.45308287,
- 4.89847125, 5.34385962, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 4.00769449, 5.789248 , 5.34385962,
- 5.789248 , 2.67152936, 2.67152936, 5.789248 , 3.56230611,
- 5.789248 , 3.56230611, 5.789248 , 4.45308287, 2.67152936,
- 5.789248 , 5.789248 , 2.67152936, 4.89847125, 5.789248 ,
- 5.789248 , 3.11691773, 5.789248 , 4.00769449, 5.789248 ,
- 5.789248 , 3.11691773, 4.00769449, 4.89847125, 4.89847125,
- 5.789248 , 4.00769449, 4.45308287, 5.789248 , 4.45308287,
- 5.789248 , 3.11691773, 4.45308287, 4.89847125, 3.56230611,
- 5.789248 , 5.789248 , 3.56230611, 3.56230611, 3.56230611,
- 5.789248 , 5.789248 , 4.00769449, 4.00769449, 3.11691773,
- 5.789248 , 5.789248 , 2.67152936, 4.00769449, 5.789248 ,
- 2.67152936, 3.56230611, 3.56230611, 4.45308287, 5.789248 ,
- 3.56230611, 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.34385962, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.89847125, 5.789248 , 5.789248 , 4.89847125,
- 5.789248 , 5.789248 , 4.89847125, 4.89847125, 5.789248 ,
- 5.34385962, 4.45308287, 5.789248 , 4.89847125, 4.00769449,
- 4.45308287, 5.789248 , 2.67152936, 4.45308287, 5.34385962,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 3.11691773,
- 5.34385962, 5.789248 , 4.89847125, 5.789248 , 4.45308287,
- 5.789248 , 5.789248 , 4.89847125, 4.45308287, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 4.45308287,
- 4.45308287, 3.11691773, 4.89847125, 5.789248 , 3.11691773,
- 3.11691773, 5.789248 , 4.00769449, 5.34385962, 3.11691773,
- 4.89847125, 3.11691773, 3.56230611, 4.89847125, 5.789248 ,
- 5.789248 , 4.45308287, 4.89847125, 5.789248 , 4.45308287,
- 5.789248 , 4.89847125, 4.45308287, 2.67152936, 5.789248 ,
- 5.789248 , 5.789248 , 4.89847125, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.89847125, 5.34385962, 4.45308287,
- 5.789248 , 4.00769449, 3.56230611, 4.89847125, 5.789248 ,
- 4.45308287, 5.789248 , 5.789248 , 3.11691773, 5.789248 ,
- 5.34385962, 5.789248 , 5.789248 , 5.789248 , 3.56230611,
- 2.22614098, 5.789248 , 5.789248 , 3.56230611, 5.34385962,
- 4.00769449, 5.789248 , 2.67152936, 5.789248 , 4.00769449,
- 5.789248 , 5.789248 , 4.00769449, 2.67152936, 5.789248 ,
- 4.89847125, 4.45308287, 5.789248 , 5.34385962, 5.789248 ,
- 5.789248 , 4.45308287, 5.789248 , 5.789248 , 5.789248 ,
- 4.00769449, 4.89847125, 5.789248 , 4.89847125, 5.789248 ,
- 4.89847125, 3.56230611, 4.00769449, 5.789248 , 5.789248 ,
- 5.789248 , 5.34385962, 5.789248 , 5.789248 , 5.34385962,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 3.56230611, 3.56230611, 4.00769449, 5.789248 , 4.45308287,
- 3.56230611, 5.789248 , 4.89847125, 4.89847125, 3.11691773,
- 4.00769449, 5.789248 , 5.34385962, 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 4.45308287, 5.34385962, 4.45308287,
- 5.789248 , 3.11691773, 5.789248 , 4.45308287, 4.45308287,
- 4.89847125, 5.789248 , 4.89847125, 4.45308287, 5.789248 ,
- 5.34385962, 3.56230611, 3.56230611, 5.34385962, 5.789248 ,
- 4.00769449, 5.34385962, 4.45308287, 4.45308287, 3.56230611,
- 5.789248 , 4.00769449, 5.789248 , 5.789248 , 4.89847125,
- 5.34385962, 3.11691773, 4.00769449, 5.789248 , 5.34385962,
- 5.789248 , 5.789248 , 5.34385962, 5.789248 , 4.45308287,
- 5.34385962, 4.89847125, 5.789248 , 5.789248 , 5.34385962,
- 3.56230611, 5.789248 , 5.789248 , 5.789248 , 5.34385962,
- 5.34385962, 5.789248 , 3.11691773, 5.789248 , 5.789248 ,
- 3.56230611, 5.789248 , 5.789248 , 5.789248 , 4.45308287,
- 5.789248 , 4.89847125, 5.789248 , 5.789248 , 5.789248 ,
- 4.00769449, 4.45308287, 5.34385962, 5.789248 , 3.56230611,
- 4.00769449, 5.34385962, 4.45308287, 5.789248 , 5.34385962,
- 5.34385962, 2.67152936, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 5.34385962, 5.789248 , 4.89847125,
- 5.789248 , 5.789248 , 5.789248 , 4.45308287, 5.789248 ,
- 3.11691773, 4.00769449, 5.789248 , 5.789248 , 5.34385962,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 5.789248 , 2.22614098, 5.789248 , 4.00769449,
- 5.34385962, 4.89847125, 5.789248 , 5.789248 , 4.00769449,
- 5.789248 , 3.56230611, 2.67152936, 5.789248 , 3.56230611,
- 2.67152936, 4.89847125, 5.789248 , 5.789248 , 5.789248 ,
- 4.45308287, 5.789248 , 4.89847125, 4.00769449, 2.67152936,
- 4.89847125, 5.789248 , 2.22614098, 3.56230611, 4.45308287,
- 5.34385962, 5.34385962, 3.11691773, 4.45308287, 4.45308287,
- 3.11691773, 4.45308287, 5.34385962, 4.45308287, 5.34385962,
- 4.00769449, 4.45308287, 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.00769449, 5.789248 , 5.789248 , 5.789248 ,
- 4.45308287, 5.789248 , 5.789248 , 5.789248 , 4.00769449,
- 5.34385962, 4.00769449, 4.45308287, 4.89847125, 4.00769449,
- 5.789248 , 5.789248 , 5.789248 , 2.67152936, 5.789248 ,
- 5.789248 , 5.789248 , 5.789248 , 5.789248 , 5.789248 ,
- 5.789248 , 4.00769449, 3.11691773, 5.34385962, 4.89847125,
- 5.34385962])
-
-
-class Committee(object):
- def __init__(self):
- self.resids = np.array([[ -5.04950800e-01, -6.29721800e-01,
- -8.35499100e+01,
- -1.30628500e+00, -6.62028600e+00],
- [ -2.34152200e-01, -2.55423500e-01, -2.16830700e+02,
- -7.58866000e-01, -7.18370200e+00],
- [ 1.02423700e+00, 7.98775800e-01, 4.83736300e+02,
- 2.50351500e+00, 2.25135300e+01],
- [ -2.85061700e-01, -3.17796600e-01, -7.04115100e+04,
- -2.37991800e+00, -1.41745600e+02],
- [ 2.09902500e-01, 1.96787700e-01, 2.24751400e+03,
- 9.51945500e-01, 2.17724200e+01],
- [ -4.03483500e-01, -4.75741500e-01, -1.95633600e+04,
- -2.63502600e+00, -8.89461400e+01],
- [ -1.64413400e-01, -1.74401100e-01, -1.73310300e+04,
- -1.16235500e+00, -5.34213500e+01],
- [ -4.29607700e-01, -5.13466700e-01, -5.30037000e+03,
- -2.24496200e+00, -4.78260300e+01],
- [ 3.23713000e-01, 2.94184600e-01, 4.11079400e+03,
- 1.48684400e+00, 3.65598400e+01],
- [ 1.50367200e-01, 1.43429400e-01, 7.28532100e+03,
- 8.85542900e-01, 3.31355000e+01],
- [ 4.21288600e-01, 3.73428000e-01, 1.37315700e+03,
- 1.52133200e+00, 2.41570200e+01],
- [ 4.50658700e-01, 3.96586700e-01, 1.70146900e+03,
- 1.66177900e+00, 2.78032600e+01],
- [ 2.43537500e-01, 2.26174000e-01, 3.18402300e+03,
- 1.13656200e+00, 2.79073400e+01],
- [ 1.05182900e+00, 8.16205400e-01, 6.00135200e+03,
- 3.89079700e+00, 7.97131300e+01],
- [ -5.54450300e-01, -7.12749000e-01, -2.09485200e+03,
- -2.45496500e+00, -3.42189900e+01],
- [ -6.05750600e-01, -8.06411100e-01, -2.74738200e+02,
- -1.90774400e+00, -1.30510500e+01],
- [ -3.41215700e-01, -3.90244600e-01, -6.31138000e+02,
- -1.27022900e+00, -1.47600100e+01],
- [ 2.21898500e-01, 2.07328700e-01, 6.91135800e+02,
- 8.16876400e-01, 1.24392900e+01],
- [ 2.45592500e-01, 2.26639200e-01, 1.99250600e-01,
- 2.57948300e-01, 2.74723700e-01],
- [ -7.58952600e-01, -1.15300800e+00, -2.56739000e+02,
- -2.40716600e+00, -1.41474200e+01]])
- self.null_deviance = 27.81104693643434 # from R, Rpy bug
- self.params = np.array([-0.0268147 , 1.25103364, 2.91070663,
- -0.34799563, 0.00659808, -0.31303026, -6.44847076])
- self.bse = np.array([ 1.99956263e-02, 4.76820254e-01,
- 6.48362654e-01, 4.17956107e-01, 1.41512690e-03, 1.07770186e-01,
- 1.99557656e+00])
- self.aic_R = 216.66573352377935
- self.aic_Stata = 10.83328660860436
- self.deviance = 5.615520158267981
- self.scale = 0.38528595746569905
- self.llf = -101.33286676188968 # from R
- self.llf_Stata = -101.3328660860436 # same as R
- self.bic_Stata = -33.32900074962649
- self.chi2 = 5.008550263545408
- self.df_model = 6
- self.df_resid = 13
- self.fittedvalues = np.array([12.62019383, 30.18289514, 21.48377849,
- 496.74068604,
- 103.23024673, 219.94693494, 324.4301163 , 110.82526477,
- 112.44244488, 219.86056381, 56.84399998, 61.19840382,
- 114.09290269, 75.29071944, 61.21994387, 21.05130889,
- 42.75939828, 55.56133536, 0.72532053, 18.14664665])
-
-class Wfs(object):
- """
- Wfs used for TestGlmPoissonOffset
-
- Results are from Stata and R.
- """
- def __init__(self):
-
- self.resids = glm_test_resids.wfs_resids
- self.null_deviance = 3731.85161919 # from R
- self.params = [.9969348, 1.3693953, 1.6137574, 1.7849111, 1.9764051,
- .11241858, .15166023, .02297282, -.10127377, -.31014953,
- -.11709716]
- self.bse = [.0527437, .0510688, .0511949, .0512138, .0500341,
- .0324963, .0283292, .0226563, .0309871, .0552107, .0549118]
- self.aic_R = 522.14215776 # R adds 2 for dof to AIC
- self.aic_Stata = 7.459173652869477 # stata divides by nobs
-# self.deviance = 70.6652992116034 # from Stata
- self.deviance = 70.665301270867 # from R
- self.scale = 1.0
- self.llf = -250.0710778504317 # from Stata, ours with scale=1
- self.bic_Stata = -179.9959200693088 # no bic in R?
- self.df_model = 10
- self.df_resid = 59
- self.chi2 = 2699.138063147485 #TODO: taken from Stata not available
- # in sm yet
- self.fittedvalues = [7.11599,19.11356,33.76075,33.26743,11.94399,
- 27.49849,35.07923,37.22563,64.18037,108.0408,100.0948,35.67896,
- 24.10508,73.99577,52.2802,38.88975,35.06507,102.1198,107.251,
- 41.53885,196.3685,335.8434,205.3413,43.20131,41.98048,96.65113,
- 63.2286,30.78585,70.46306,172.2402,102.5898,43.06099,358.273,
- 549.8983,183.958,26.87062,62.53445,141.687,52.47494,13.10253,
- 114.9587,214.803,90.33611,18.32685,592.5995,457.4376,140.9273,
- 3.812064,111.3119,97.62744,57.48056,19.43552,130.4872,
- 151.7268,69.67963,13.04879,721.728,429.2136,128.2132,9.04735,
- 301.7067,177.3487,46.40818,4.707507,330.4211,330.7497,84.38604,
- 1456.757,451.005,67.51025]
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_cancer_glm.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/stata_cancer_glm.csv
deleted file mode 100644
index c549152..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_cancer_glm.csv
+++ /dev/null
@@ -1,49 +0,0 @@
-studytime,age,drug
-1,61,1
-1,65,1
-2,59,1
-3,52,1
-4,56,1
-4,67,1
-5,63,1
-5,58,1
-8,56,1
-8,58,1
-8,52,1
-8,49,1
-11,50,1
-11,55,1
-12,49,1
-12,62,1
-15,51,1
-17,49,1
-22,57,1
-23,52,1
-6,67,2
-6,65,2
-7,58,2
-9,56,2
-10,49,2
-11,61,2
-13,62,2
-15,50,2
-16,67,2
-19,50,2
-20,55,2
-22,58,2
-23,47,2
-32,52,2
-6,55,3
-10,54,3
-17,60,3
-19,49,3
-24,58,3
-25,50,3
-25,55,3
-28,57,3
-28,48,3
-32,56,3
-33,60,3
-34,62,3
-35,48,3
-39,52,3
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_lbw_glm.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/stata_lbw_glm.csv
deleted file mode 100644
index 18bc51b..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_lbw_glm.csv
+++ /dev/null
@@ -1,191 +0,0 @@
-id,low,age,lwt,race,smoke,ptl,ht,ui,ftv,bwt
-85,0,19,182,"black",0,0,0,1,0,2523
-86,0,33,155,"other",0,0,0,0,3,2551
-87,0,20,105,"white",1,0,0,0,1,2557
-88,0,21,108,"white",1,0,0,1,2,2594
-89,0,18,107,"white",1,0,0,1,0,2600
-91,0,21,124,"other",0,0,0,0,0,2622
-92,0,22,118,"white",0,0,0,0,1,2637
-93,0,17,103,"other",0,0,0,0,1,2637
-94,0,29,123,"white",1,0,0,0,1,2663
-95,0,26,113,"white",1,0,0,0,0,2665
-96,0,19,95,"other",0,0,0,0,0,2722
-97,0,19,150,"other",0,0,0,0,1,2733
-98,0,22,95,"other",0,0,1,0,0,2750
-99,0,30,107,"other",0,1,0,1,2,2750
-100,0,18,100,"white",1,0,0,0,0,2769
-101,0,18,100,"white",1,0,0,0,0,2769
-102,0,15,98,"black",0,0,0,0,0,2778
-103,0,25,118,"white",1,0,0,0,3,2782
-104,0,20,120,"other",0,0,0,1,0,2807
-105,0,28,120,"white",1,0,0,0,1,2821
-106,0,32,121,"other",0,0,0,0,2,2835
-107,0,31,100,"white",0,0,0,1,3,2835
-108,0,36,202,"white",0,0,0,0,1,2836
-109,0,28,120,"other",0,0,0,0,0,2863
-111,0,25,120,"other",0,0,0,1,2,2877
-112,0,28,167,"white",0,0,0,0,0,2877
-113,0,17,122,"white",1,0,0,0,0,2906
-114,0,29,150,"white",0,0,0,0,2,2920
-115,0,26,168,"black",1,0,0,0,0,2920
-116,0,17,113,"black",0,0,0,0,1,2920
-117,0,17,113,"black",0,0,0,0,1,2920
-118,0,24,90,"white",1,1,0,0,1,2948
-119,0,35,121,"black",1,1,0,0,1,2948
-120,0,25,155,"white",0,0,0,0,1,2977
-121,0,25,125,"black",0,0,0,0,0,2977
-123,0,29,140,"white",1,0,0,0,2,2977
-124,0,19,138,"white",1,0,0,0,2,2977
-125,0,27,124,"white",1,0,0,0,0,2922
-126,0,31,215,"white",1,0,0,0,2,3005
-127,0,33,109,"white",1,0,0,0,1,3033
-128,0,21,185,"black",1,0,0,0,2,3042
-129,0,19,189,"white",0,0,0,0,2,3062
-130,0,23,130,"black",0,0,0,0,1,3062
-131,0,21,160,"white",0,0,0,0,0,3062
-132,0,18,90,"white",1,0,0,1,0,3076
-133,0,18,90,"white",1,0,0,1,0,3076
-134,0,32,132,"white",0,0,0,0,4,3080
-135,0,19,132,"other",0,0,0,0,0,3090
-136,0,24,115,"white",0,0,0,0,2,3090
-137,0,22,85,"other",1,0,0,0,0,3090
-138,0,22,120,"white",0,0,1,0,1,3100
-139,0,23,128,"other",0,0,0,0,0,3104
-140,0,22,130,"white",1,0,0,0,0,3132
-141,0,30,95,"white",1,0,0,0,2,3147
-142,0,19,115,"other",0,0,0,0,0,3175
-143,0,16,110,"other",0,0,0,0,0,3175
-144,0,21,110,"other",1,0,0,1,0,3203
-145,0,30,153,"other",0,0,0,0,0,3203
-146,0,20,103,"other",0,0,0,0,0,3203
-147,0,17,119,"other",0,0,0,0,0,3225
-148,0,17,119,"other",0,0,0,0,0,3225
-149,0,23,119,"other",0,0,0,0,2,3232
-150,0,24,110,"other",0,0,0,0,0,3232
-151,0,28,140,"white",0,0,0,0,0,3234
-154,0,26,133,"other",1,2,0,0,0,3260
-155,0,20,169,"other",0,1,0,1,1,3274
-156,0,24,115,"other",0,0,0,0,2,3274
-159,0,28,250,"other",1,0,0,0,6,3303
-160,0,20,141,"white",0,2,0,1,1,3317
-161,0,22,158,"black",0,1,0,0,2,3317
-162,0,22,112,"white",1,2,0,0,0,3317
-163,0,31,150,"other",1,0,0,0,2,3321
-164,0,23,115,"other",1,0,0,0,1,3331
-166,0,16,112,"black",0,0,0,0,0,3374
-167,0,16,135,"white",1,0,0,0,0,3374
-168,0,18,229,"black",0,0,0,0,0,3402
-169,0,25,140,"white",0,0,0,0,1,3416
-170,0,32,134,"white",1,1,0,0,4,3430
-172,0,20,121,"black",1,0,0,0,0,3444
-173,0,23,190,"white",0,0,0,0,0,3459
-174,0,22,131,"white",0,0,0,0,1,3460
-175,0,32,170,"white",0,0,0,0,0,3473
-176,0,30,110,"other",0,0,0,0,0,3475
-177,0,20,127,"other",0,0,0,0,0,3487
-179,0,23,123,"other",0,0,0,0,0,3544
-180,0,17,120,"other",1,0,0,0,0,3572
-181,0,19,105,"other",0,0,0,0,0,3572
-182,0,23,130,"white",0,0,0,0,0,3586
-183,0,36,175,"white",0,0,0,0,0,3600
-184,0,22,125,"white",0,0,0,0,1,3614
-185,0,24,133,"white",0,0,0,0,0,3614
-186,0,21,134,"other",0,0,0,0,2,3629
-187,0,19,235,"white",1,0,1,0,0,3629
-188,0,25,95,"white",1,3,0,1,0,3637
-189,0,16,135,"white",1,0,0,0,0,3643
-190,0,29,135,"white",0,0,0,0,1,3651
-191,0,29,154,"white",0,0,0,0,1,3651
-192,0,19,147,"white",1,0,0,0,0,3651
-193,0,19,147,"white",1,0,0,0,0,3651
-195,0,30,137,"white",0,0,0,0,1,3699
-196,0,24,110,"white",0,0,0,0,1,3728
-197,0,19,184,"white",1,0,1,0,0,3756
-199,0,24,110,"other",0,1,0,0,0,3770
-200,0,23,110,"white",0,0,0,0,1,3770
-201,0,20,120,"other",0,0,0,0,0,3770
-202,0,25,241,"black",0,0,1,0,0,3790
-203,0,30,112,"white",0,0,0,0,1,3799
-204,0,22,169,"white",0,0,0,0,0,3827
-205,0,18,120,"white",1,0,0,0,2,3856
-206,0,16,170,"black",0,0,0,0,4,3860
-207,0,32,186,"white",0,0,0,0,2,3860
-208,0,18,120,"other",0,0,0,0,1,3884
-209,0,29,130,"white",1,0,0,0,2,3884
-210,0,33,117,"white",0,0,0,1,1,3912
-211,0,20,170,"white",1,0,0,0,0,3940
-212,0,28,134,"other",0,0,0,0,1,3941
-213,0,14,135,"white",0,0,0,0,0,3941
-214,0,28,130,"other",0,0,0,0,0,3969
-215,0,25,120,"white",0,0,0,0,2,3983
-216,0,16,95,"other",0,0,0,0,1,3997
-217,0,20,158,"white",0,0,0,0,1,3997
-218,0,26,160,"other",0,0,0,0,0,4054
-219,0,21,115,"white",0,0,0,0,1,4054
-220,0,22,129,"white",0,0,0,0,0,4111
-221,0,25,130,"white",0,0,0,0,2,4153
-222,0,31,120,"white",0,0,0,0,2,4167
-223,0,35,170,"white",0,1,0,0,1,4174
-224,0,19,120,"white",1,0,0,0,0,4238
-225,0,24,116,"white",0,0,0,0,1,4593
-226,0,45,123,"white",0,0,0,0,1,4990
-4,1,28,120,"other",1,1,0,1,0,709
-10,1,29,130,"white",0,0,0,1,2,1021
-11,1,34,187,"black",1,0,1,0,0,1135
-13,1,25,105,"other",0,1,1,0,0,1330
-15,1,25,85,"other",0,0,0,1,0,1474
-16,1,27,150,"other",0,0,0,0,0,1588
-17,1,23,97,"other",0,0,0,1,1,1588
-18,1,24,128,"black",0,1,0,0,1,1701
-19,1,24,132,"other",0,0,1,0,0,1729
-20,1,21,165,"white",1,0,1,0,1,1790
-22,1,32,105,"white",1,0,0,0,0,1818
-23,1,19,91,"white",1,2,0,1,0,1885
-24,1,25,115,"other",0,0,0,0,0,1893
-25,1,16,130,"other",0,0,0,0,1,1899
-26,1,25,92,"white",1,0,0,0,0,1928
-27,1,20,150,"white",1,0,0,0,2,1928
-28,1,21,200,"black",0,0,0,1,2,1928
-29,1,24,155,"white",1,1,0,0,0,1936
-30,1,21,103,"other",0,0,0,0,0,1970
-31,1,20,125,"other",0,0,0,1,0,2055
-32,1,25,89,"other",0,2,0,0,1,2055
-33,1,19,102,"white",0,0,0,0,2,2082
-34,1,19,112,"white",1,0,0,1,0,2084
-35,1,26,117,"white",1,1,0,0,0,2084
-36,1,24,138,"white",0,0,0,0,0,2100
-37,1,17,130,"other",1,1,0,1,0,2125
-40,1,20,120,"black",1,0,0,0,3,2126
-42,1,22,130,"white",1,1,0,1,1,2187
-43,1,27,130,"black",0,0,0,1,0,2187
-44,1,20,80,"other",1,0,0,1,0,2211
-45,1,17,110,"white",1,0,0,0,0,2225
-46,1,25,105,"other",0,1,0,0,1,2240
-47,1,20,109,"other",0,0,0,0,0,2240
-49,1,18,148,"other",0,0,0,0,0,2282
-50,1,18,110,"black",1,1,0,0,0,2296
-51,1,20,121,"white",1,1,0,1,0,2296
-52,1,21,100,"other",0,1,0,0,4,2301
-54,1,26,96,"other",0,0,0,0,0,2325
-56,1,31,102,"white",1,1,0,0,1,2353
-57,1,15,110,"white",0,0,0,0,0,2353
-59,1,23,187,"black",1,0,0,0,1,2367
-60,1,20,122,"black",1,0,0,0,0,2381
-61,1,24,105,"black",1,0,0,0,0,2381
-62,1,15,115,"other",0,0,0,1,0,2381
-63,1,23,120,"other",0,0,0,0,0,2395
-65,1,30,142,"white",1,1,0,0,0,2410
-67,1,22,130,"white",1,0,0,0,1,2410
-68,1,17,120,"white",1,0,0,0,3,2414
-69,1,23,110,"white",1,1,0,0,0,2424
-71,1,17,120,"black",0,0,0,0,2,2438
-75,1,26,154,"other",0,1,1,0,1,2442
-76,1,20,106,"other",0,0,0,0,3,2450
-77,1,26,190,"white",1,0,0,0,0,2466
-78,1,14,101,"other",1,1,0,0,0,2466
-79,1,28,95,"white",1,0,0,0,2,2466
-81,1,14,100,"other",0,0,0,0,2,2495
-82,1,23,94,"other",1,0,0,0,0,2495
-83,1,17,142,"black",0,0,1,0,0,2495
-84,1,21,130,"white",1,0,1,0,3,2495
-
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_medpar1_glm.csv b/statsmodels/scikits/statsmodels/genmod/tests/results/stata_medpar1_glm.csv
deleted file mode 100644
index bf46993..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/results/stata_medpar1_glm.csv
+++ /dev/null
@@ -1,3677 +0,0 @@
-los,admitype,codes
-8,"type1|2",9
-1,"type1|2",9
-23,"type1|2",9
-8,"type1|2",9
-1,"type1|2",7
-1,"type1|2",9
-7,"type1|2",9
-18,"type1|2",8
-9,"type1|2",9
-19,"type1|2",9
-12,"type1|2",9
-1,"type1|2",9
-18,"type1|2",9
-1,"type1|2",7
-11,"type1|2",9
-2,"type1|2",6
-19,"type1|2",9
-1,"type1|2",6
-2,"type1|2",5
-1,"type1|2",5
-10,"type1|2",9
-3,"type1|2",9
-5,"type1|2",8
-17,"type1|2",9
-1,"type1|2",7
-17,"type1|2",9
-6,"type1|2",4
-16,"type1|2",9
-20,"type1|2",9
-9,"type1|2",9
-1,"type1|2",7
-1,"type1|2",9
-7,"type1|2",9
-1,"type1|2",9
-6,"type1|2",9
-19,"type1|2",9
-14,"type1|2",3
-14,"type1|2",9
-5,"type1|2",9
-1,"type1|2",4
-16,"type1|2",9
-8,"type1|2",9
-75,"type1|2",5
-25,"type1|2",9
-11,"type1|2",9
-9,"type1|2",9
-12,"type1|2",6
-11,"type1|2",8
-9,"type1|2",8
-9,"type1|2",4
-11,"type1|2",5
-3,"type1|2",9
-7,"type1|2",9
-1,"type1|2",9
-27,"type1|2",9
-4,"type1|2",6
-1,"type1|2",9
-10,"type1|2",9
-3,"type1|2",8
-1,"type1|2",9
-10,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-1,"type1|2",7
-3,"type1|2",8
-4,"type1|2",8
-3,"type1|2",6
-36,"type1|2",9
-7,"type1|2",9
-5,"type1|2",9
-4,"type1|2",7
-7,"type1|2",9
-3,"type1|2",9
-7,"type1|2",3
-2,"type1|2",7
-10,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-5,"type1|2",6
-3,"type1|2",6
-16,"type1|2",9
-3,"type1|2",8
-7,"type1|2",9
-13,"type1|2",9
-4,"type1|2",9
-3,"type1|2",5
-4,"type1|2",9
-5,"type1|2",8
-7,"type1|2",9
-8,"type1|2",8
-4,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-12,"type1|2",9
-13,"type1|2",9
-6,"type1|2",9
-7,"type1|2",6
-4,"type1|2",8
-2,"type1|2",6
-3,"type1|2",9
-15,"type1|2",9
-2,"type1|2",5
-3,"type1|2",7
-6,"type1|2",9
-11,"type1|2",5
-1,"type1|2",8
-4,"type1|2",3
-5,"type1|2",9
-9,"type1|2",9
-5,"type1|2",6
-3,"type1|2",6
-6,"type1|2",8
-5,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-3,"type1|2",8
-2,"type1|2",4
-2,"type1|2",9
-5,"type1|2",8
-4,"type1|2",8
-6,"type1|2",9
-3,"type1|2",9
-8,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-2,"type1|2",8
-4,"type1|2",9
-3,"type1|2",8
-2,"type1|2",9
-5,"type1|2",9
-5,"type1|2",8
-9,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-7,"type1|2",7
-7,"type1|2",9
-5,"type1|2",9
-2,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-4,"type1|2",7
-13,"type1|2",9
-4,"type1|2",9
-5,"type1|2",8
-2,"type1|2",3
-8,"type1|2",9
-8,"type1|2",9
-2,"type1|2",6
-9,"type1|2",9
-7,"type1|2",7
-1,"type1|2",4
-7,"type1|2",7
-5,"type1|2",8
-5,"type1|2",8
-13,"type1|2",9
-4,"type1|2",9
-7,"type1|2",7
-3,"type1|2",9
-6,"type1|2",9
-3,"type1|2",4
-4,"type1|2",9
-2,"type1|2",8
-21,"type1|2",9
-5,"type1|2",8
-5,"type1|2",9
-4,"type1|2",6
-9,"type1|2",9
-3,"type1|2",4
-5,"type1|2",5
-4,"type1|2",9
-13,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-6,"type1|2",8
-4,"type1|2",9
-3,"type1|2",4
-4,"type1|2",6
-2,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-9,"type1|2",4
-6,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-4,"type1|2",8
-3,"type1|2",7
-13,"type1|2",9
-2,"type1|2",9
-12,"type1|2",9
-3,"type1|2",5
-5,"type1|2",9
-4,"type1|2",8
-6,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-6,"type1|2",8
-7,"type1|2",9
-2,"type1|2",8
-6,"type1|2",9
-3,"type1|2",8
-3,"type1|2",4
-3,"type1|2",7
-1,"type1|2",6
-3,"type1|2",8
-6,"type1|2",8
-5,"type1|2",9
-8,"type1|2",9
-10,"type1|2",9
-3,"type1|2",8
-7,"type1|2",9
-6,"type1|2",9
-4,"type1|2",8
-5,"type1|2",7
-3,"type1|2",9
-4,"type1|2",6
-4,"type1|2",7
-6,"type1|2",9
-2,"type1|2",9
-11,"type1|2",9
-2,"type1|2",9
-5,"type1|2",8
-5,"type1|2",9
-2,"type1|2",4
-6,"type1|2",9
-12,"type1|2",6
-5,"type1|2",9
-3,"type1|2",8
-5,"type1|2",7
-5,"type1|2",4
-2,"type1|2",4
-6,"type1|2",9
-4,"type1|2",8
-16,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-3,"type1|2",8
-4,"type1|2",4
-6,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-7,"type1|2",6
-6,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-5,"type1|2",6
-10,"type1|2",9
-3,"type1|2",7
-8,"type1|2",9
-3,"type1|2",5
-8,"type1|2",4
-3,"type1|2",8
-6,"type1|2",7
-6,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-1,"type1|2",6
-5,"type1|2",9
-5,"type1|2",9
-14,"type1|2",9
-3,"type1|2",8
-3,"type1|2",9
-7,"type1|2",9
-13,"type1|2",9
-4,"type1|2",9
-3,"type1|2",8
-11,"type1|2",9
-2,"type1|2",3
-3,"type1|2",5
-16,"type1|2",9
-39,"type1|2",9
-7,"type1|2",9
-4,"type1|2",5
-10,"type1|2",9
-4,"type1|2",9
-7,"type1|2",8
-18,"type1|2",9
-3,"type1|2",9
-6,"type1|2",8
-6,"type1|2",3
-13,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-15,"type1|2",9
-3,"type1|2",4
-5,"type1|2",9
-4,"type1|2",8
-11,"type1|2",9
-11,"type1|2",6
-12,"type1|2",6
-5,"type1|2",8
-2,"type1|2",9
-5,"type1|2",8
-3,"type1|2",8
-2,"type1|2",9
-4,"type1|2",4
-2,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-7,"type1|2",6
-9,"type1|2",8
-11,"type1|2",9
-4,"type1|2",3
-5,"type1|2",8
-4,"type1|2",6
-2,"type1|2",7
-7,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-4,"type1|2",4
-11,"type1|2",9
-2,"type1|2",6
-8,"type1|2",9
-4,"type1|2",8
-2,"type1|2",6
-2,"type1|2",5
-11,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-2,"type1|2",5
-3,"type1|2",8
-7,"type1|2",9
-3,"type1|2",8
-5,"type1|2",7
-9,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-3,"type1|2",6
-8,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-17,"type1|2",9
-5,"type1|2",3
-3,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-10,"type1|2",9
-4,"type1|2",9
-1,"type1|2",9
-13,"type1|2",9
-13,"type1|2",9
-20,"type1|2",9
-3,"type1|2",5
-13,"type1|2",9
-21,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-15,"type1|2",8
-5,"type1|2",9
-4,"type1|2",9
-14,"type1|2",8
-3,"type1|2",9
-2,"type1|2",8
-8,"type1|2",9
-3,"type1|2",6
-4,"type1|2",8
-14,"type1|2",9
-4,"type1|2",8
-5,"type1|2",9
-8,"type1|2",8
-3,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-8,"type1|2",9
-6,"type1|2",3
-4,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-4,"type1|2",8
-6,"type1|2",9
-4,"type1|2",9
-6,"type1|2",8
-1,"type1|2",9
-2,"type1|2",9
-10,"type1|2",8
-7,"type1|2",7
-5,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-2,"type1|2",7
-5,"type1|2",9
-3,"type1|2",8
-8,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-4,"type1|2",3
-2,"type1|2",9
-6,"type1|2",8
-5,"type1|2",8
-6,"type1|2",5
-5,"type1|2",7
-5,"type1|2",8
-17,"type1|2",9
-9,"type1|2",9
-19,"type1|2",9
-17,"type1|2",9
-5,"type1|2",3
-3,"type1|2",6
-3,"type1|2",5
-6,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-15,"type1|2",9
-25,"type1|2",9
-10,"type1|2",9
-5,"type1|2",5
-4,"type1|2",8
-4,"type1|2",9
-19,"type1|2",9
-6,"type1|2",7
-9,"type1|2",9
-3,"type1|2",8
-5,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-3,"type1|2",7
-9,"type1|2",9
-8,"type1|2",9
-7,"type1|2",9
-8,"type1|2",9
-6,"type1|2",9
-16,"type1|2",8
-2,"type1|2",9
-4,"type1|2",6
-2,"type1|2",7
-5,"type1|2",9
-7,"type1|2",7
-5,"type1|2",8
-4,"type1|2",7
-6,"type1|2",7
-7,"type1|2",9
-5,"type1|2",7
-9,"type1|2",9
-4,"type1|2",9
-2,"type1|2",9
-10,"type1|2",5
-3,"type1|2",8
-3,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-16,"type1|2",9
-6,"type1|2",9
-8,"type1|2",9
-12,"type1|2",9
-5,"type1|2",9
-15,"type1|2",8
-3,"type1|2",9
-9,"type1|2",8
-5,"type1|2",9
-2,"type1|2",5
-8,"type1|2",9
-11,"type1|2",9
-10,"type1|2",4
-8,"type1|2",8
-8,"type1|2",3
-3,"type1|2",9
-3,"type1|2",2
-7,"type1|2",9
-2,"type1|2",9
-2,"type1|2",7
-4,"type1|2",6
-3,"type1|2",9
-4,"type1|2",7
-2,"type1|2",4
-5,"type1|2",9
-9,"type1|2",9
-8,"type1|2",9
-17,"type1|2",9
-5,"type1|2",7
-4,"type1|2",5
-8,"type1|2",9
-6,"type1|2",8
-3,"type1|2",9
-15,"type1|2",6
-2,"type1|2",9
-4,"type1|2",5
-3,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-1,"type1|2",6
-2,"type1|2",6
-20,"type1|2",5
-30,"type1|2",9
-3,"type1|2",8
-6,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-7,"type1|2",9
-10,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-4,"type1|2",4
-15,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-3,"type1|2",7
-6,"type1|2",8
-1,"type1|2",9
-5,"type1|2",9
-5,"type1|2",7
-4,"type1|2",9
-6,"type1|2",9
-9,"type1|2",8
-4,"type1|2",5
-6,"type1|2",9
-10,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-13,"type1|2",9
-6,"type1|2",9
-87,"type1|2",9
-6,"type1|2",9
-3,"type1|2",5
-3,"type1|2",7
-6,"type1|2",9
-2,"type1|2",7
-5,"type1|2",8
-4,"type1|2",9
-6,"type1|2",9
-6,"type1|2",9
-4,"type1|2",5
-6,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-7,"type1|2",7
-7,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-7,"type1|2",9
-2,"type1|2",8
-7,"type1|2",9
-7,"type1|2",9
-3,"type1|2",7
-3,"type1|2",8
-4,"type1|2",5
-9,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-2,"type1|2",7
-8,"type1|2",9
-3,"type1|2",8
-3,"type1|2",6
-4,"type1|2",7
-4,"type1|2",5
-12,"type1|2",9
-9,"type1|2",9
-7,"type1|2",9
-10,"type1|2",8
-15,"type1|2",9
-1,"type1|2",9
-7,"type1|2",9
-15,"type1|2",9
-6,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-6,"type1|2",6
-2,"type1|2",9
-6,"type1|2",9
-4,"type1|2",8
-7,"type1|2",9
-10,"type1|2",9
-3,"type1|2",7
-7,"type1|2",9
-3,"type1|2",9
-8,"type1|2",9
-6,"type1|2",8
-8,"type1|2",9
-4,"type1|2",6
-2,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-3,"type1|2",7
-7,"type1|2",9
-5,"type1|2",8
-3,"type1|2",8
-11,"type1|2",9
-11,"type1|2",7
-4,"type1|2",9
-6,"type1|2",8
-5,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-6,"type1|2",5
-7,"type1|2",6
-7,"type1|2",9
-7,"type1|2",3
-3,"type1|2",7
-3,"type1|2",8
-4,"type1|2",9
-45,"type1|2",9
-6,"type1|2",9
-17,"type1|2",9
-6,"type1|2",9
-1,"type1|2",9
-9,"type1|2",9
-5,"type1|2",8
-3,"type1|2",9
-9,"type1|2",9
-4,"type1|2",5
-4,"type1|2",9
-4,"type1|2",8
-8,"type1|2",9
-7,"type1|2",4
-8,"type1|2",9
-12,"type1|2",9
-4,"type1|2",7
-2,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-8,"type1|2",9
-6,"type1|2",5
-4,"type1|2",8
-3,"type1|2",3
-6,"type1|2",9
-4,"type1|2",9
-5,"type1|2",8
-3,"type1|2",5
-7,"type1|2",4
-5,"type1|2",9
-3,"type1|2",9
-12,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-3,"type1|2",3
-4,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-1,"type1|2",3
-8,"type1|2",9
-2,"type1|2",9
-6,"type1|2",8
-3,"type1|2",9
-3,"type1|2",9
-2,"type1|2",8
-7,"type1|2",9
-5,"type1|2",9
-4,"type1|2",3
-11,"type1|2",9
-7,"type1|2",5
-9,"type1|2",6
-3,"type1|2",6
-11,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-3,"type1|2",8
-5,"type1|2",9
-3,"type1|2",9
-3,"type1|2",8
-4,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-12,"type1|2",9
-6,"type1|2",6
-7,"type1|2",6
-6,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-2,"type1|2",5
-7,"type1|2",8
-13,"type1|2",7
-2,"type1|2",7
-7,"type1|2",8
-5,"type1|2",9
-3,"type1|2",9
-19,"type1|2",9
-4,"type1|2",8
-5,"type1|2",9
-6,"type1|2",9
-7,"type1|2",8
-3,"type1|2",9
-2,"type1|2",9
-6,"type1|2",5
-6,"type1|2",9
-3,"type1|2",7
-3,"type1|2",9
-12,"type1|2",9
-3,"type1|2",9
-10,"type1|2",5
-10,"type1|2",4
-8,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-5,"type1|2",7
-6,"type1|2",9
-2,"type1|2",7
-9,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-5,"type1|2",6
-7,"type1|2",9
-4,"type1|2",9
-17,"type1|2",9
-2,"type1|2",6
-7,"type1|2",8
-11,"type1|2",9
-4,"type1|2",9
-6,"type1|2",8
-8,"type1|2",8
-3,"type1|2",9
-10,"type1|2",9
-3,"type1|2",7
-2,"type1|2",9
-4,"type1|2",6
-5,"type1|2",9
-5,"type1|2",9
-3,"type1|2",9
-7,"type1|2",9
-8,"type1|2",9
-6,"type1|2",9
-13,"type1|2",9
-6,"type1|2",5
-1,"type1|2",9
-13,"type1|2",9
-10,"type1|2",9
-7,"type1|2",9
-9,"type1|2",9
-8,"type1|2",9
-4,"type1|2",4
-14,"type1|2",9
-4,"type1|2",8
-3,"type1|2",9
-5,"type1|2",7
-18,"type1|2",4
-8,"type1|2",7
-6,"type1|2",9
-5,"type1|2",3
-1,"type1|2",9
-4,"type1|2",9
-13,"type1|2",9
-4,"type1|2",2
-17,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-3,"type1|2",7
-2,"type1|2",9
-31,"type1|2",9
-2,"type1|2",9
-21,"type1|2",9
-13,"type1|2",7
-5,"type1|2",7
-4,"type1|2",7
-8,"type1|2",9
-15,"type1|2",9
-5,"type1|2",8
-10,"type1|2",9
-4,"type1|2",8
-7,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-10,"type1|2",9
-4,"type1|2",7
-5,"type1|2",9
-2,"type1|2",4
-7,"type1|2",8
-2,"type1|2",7
-9,"type1|2",9
-11,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-7,"type1|2",9
-14,"type1|2",9
-4,"type1|2",9
-4,"type1|2",8
-9,"type1|2",6
-5,"type1|2",9
-1,"type1|2",9
-29,"type1|2",9
-5,"type1|2",7
-12,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-1,"type1|2",8
-5,"type1|2",9
-5,"type1|2",9
-10,"type1|2",7
-11,"type1|2",9
-15,"type1|2",9
-4,"type1|2",9
-12,"type1|2",8
-4,"type1|2",8
-10,"type1|2",9
-2,"type1|2",9
-4,"type1|2",8
-14,"type1|2",9
-4,"type1|2",9
-29,"type1|2",9
-4,"type1|2",8
-6,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-3,"type1|2",6
-5,"type1|2",9
-15,"type1|2",9
-4,"type1|2",9
-11,"type1|2",9
-4,"type1|2",2
-3,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-3,"type1|2",3
-6,"type1|2",8
-3,"type1|2",7
-6,"type1|2",9
-3,"type1|2",9
-9,"type1|2",8
-6,"type1|2",5
-8,"type1|2",9
-3,"type1|2",9
-5,"type1|2",7
-6,"type1|2",9
-2,"type1|2",3
-3,"type1|2",6
-5,"type1|2",8
-4,"type1|2",4
-35,"type1|2",9
-2,"type1|2",9
-5,"type1|2",9
-10,"type1|2",9
-5,"type1|2",9
-3,"type1|2",9
-32,"type1|2",9
-15,"type1|2",9
-2,"type1|2",8
-7,"type1|2",9
-17,"type1|2",9
-12,"type1|2",9
-9,"type1|2",9
-3,"type1|2",8
-8,"type1|2",9
-6,"type1|2",6
-4,"type1|2",8
-3,"type1|2",8
-12,"type1|2",9
-5,"type1|2",8
-9,"type1|2",9
-2,"type1|2",9
-2,"type1|2",9
-8,"type1|2",6
-2,"type1|2",9
-9,"type1|2",8
-2,"type1|2",9
-3,"type1|2",9
-2,"type1|2",5
-5,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-6,"type1|2",8
-3,"type1|2",8
-5,"type1|2",9
-25,"type1|2",9
-13,"type1|2",9
-9,"type1|2",9
-2,"type1|2",9
-4,"type1|2",8
-3,"type1|2",9
-10,"type1|2",9
-2,"type1|2",9
-12,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-5,"type1|2",2
-12,"type1|2",9
-8,"type1|2",6
-3,"type1|2",6
-8,"type1|2",9
-6,"type1|2",8
-4,"type1|2",9
-8,"type1|2",5
-5,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-2,"type1|2",5
-7,"type1|2",9
-7,"type1|2",7
-7,"type1|2",9
-2,"type1|2",3
-18,"type1|2",9
-3,"type1|2",6
-4,"type1|2",3
-3,"type1|2",5
-2,"type1|2",8
-8,"type1|2",7
-9,"type1|2",9
-2,"type1|2",8
-6,"type1|2",9
-3,"type1|2",4
-3,"type1|2",7
-5,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-5,"type1|2",6
-3,"type1|2",9
-3,"type1|2",9
-8,"type1|2",9
-10,"type1|2",9
-7,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-11,"type1|2",4
-4,"type1|2",8
-6,"type1|2",9
-11,"type1|2",9
-3,"type1|2",9
-6,"type1|2",7
-3,"type1|2",8
-8,"type1|2",9
-7,"type1|2",9
-18,"type1|2",9
-7,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-3,"type1|2",2
-4,"type1|2",5
-28,"type1|2",9
-5,"type1|2",4
-3,"type1|2",9
-5,"type1|2",5
-2,"type1|2",9
-5,"type1|2",6
-5,"type1|2",7
-5,"type1|2",7
-3,"type1|2",3
-5,"type1|2",7
-4,"type1|2",6
-4,"type1|2",9
-4,"type1|2",9
-15,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-4,"type1|2",6
-8,"type1|2",8
-8,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-7,"type1|2",6
-3,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-4,"type1|2",6
-16,"type1|2",9
-2,"type1|2",9
-13,"type1|2",8
-9,"type1|2",9
-4,"type1|2",9
-11,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-8,"type1|2",4
-1,"type1|2",5
-5,"type1|2",9
-2,"type1|2",9
-4,"type1|2",8
-8,"type1|2",9
-11,"type1|2",9
-4,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-16,"type1|2",9
-7,"type1|2",9
-2,"type1|2",8
-3,"type1|2",9
-6,"type1|2",9
-19,"type1|2",8
-5,"type1|2",8
-6,"type1|2",7
-7,"type1|2",9
-4,"type1|2",7
-9,"type1|2",8
-9,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-3,"type1|2",7
-9,"type1|2",9
-9,"type1|2",9
-8,"type1|2",9
-8,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-6,"type1|2",6
-4,"type1|2",9
-11,"type1|2",9
-6,"type1|2",7
-2,"type1|2",8
-7,"type1|2",7
-10,"type1|2",9
-5,"type1|2",9
-6,"type1|2",8
-5,"type1|2",9
-2,"type1|2",5
-4,"type1|2",9
-13,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",8
-7,"type1|2",7
-4,"type1|2",8
-8,"type1|2",5
-7,"type1|2",9
-7,"type1|2",9
-1,"type1|2",9
-11,"type1|2",9
-4,"type1|2",5
-6,"type1|2",9
-16,"type1|2",8
-6,"type1|2",9
-4,"type1|2",6
-2,"type1|2",9
-6,"type1|2",9
-5,"type1|2",8
-6,"type1|2",9
-6,"type1|2",7
-4,"type1|2",8
-4,"type1|2",7
-5,"type1|2",9
-3,"type1|2",9
-7,"type1|2",9
-3,"type1|2",8
-6,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-10,"type1|2",9
-3,"type1|2",9
-3,"type1|2",5
-7,"type1|2",9
-3,"type1|2",6
-4,"type1|2",9
-13,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-9,"type1|2",9
-10,"type1|2",9
-11,"type1|2",9
-5,"type1|2",9
-16,"type1|2",9
-3,"type1|2",5
-3,"type1|2",8
-9,"type1|2",9
-8,"type1|2",9
-5,"type1|2",8
-2,"type1|2",9
-3,"type1|2",7
-22,"type1|2",6
-16,"type1|2",9
-8,"type1|2",9
-9,"type1|2",9
-4,"type1|2",6
-6,"type1|2",9
-22,"type1|2",9
-13,"type1|2",9
-4,"type1|2",9
-14,"type1|2",9
-5,"type1|2",4
-1,"type1|2",7
-5,"type1|2",9
-14,"type1|2",4
-5,"type1|2",9
-12,"type1|2",8
-13,"type1|2",9
-15,"type1|2",9
-3,"type1|2",4
-8,"type1|2",9
-6,"type1|2",9
-13,"type1|2",8
-2,"type1|2",3
-4,"type1|2",2
-3,"type1|2",8
-3,"type1|2",9
-12,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-18,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-6,"type1|2",9
-11,"type1|2",9
-15,"type1|2",9
-2,"type1|2",7
-11,"type1|2",9
-2,"type1|2",5
-7,"type1|2",7
-12,"type1|2",9
-8,"type1|2",9
-2,"type1|2",3
-18,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-6,"type1|2",4
-2,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-2,"type1|2",7
-2,"type1|2",7
-8,"type1|2",9
-3,"type1|2",8
-1,"type1|2",7
-6,"type1|2",9
-3,"type1|2",8
-11,"type1|2",7
-7,"type1|2",9
-3,"type1|2",7
-10,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-1,"type1|2",4
-2,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-10,"type1|2",9
-4,"type1|2",5
-9,"type1|2",7
-3,"type1|2",8
-3,"type1|2",8
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-5,"type1|2",7
-6,"type1|2",4
-8,"type1|2",9
-4,"type1|2",7
-5,"type1|2",5
-4,"type1|2",9
-12,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-13,"type1|2",9
-15,"type1|2",9
-5,"type1|2",7
-10,"type1|2",8
-8,"type1|2",8
-7,"type1|2",9
-4,"type1|2",9
-2,"type1|2",8
-3,"type1|2",3
-6,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-3,"type1|2",2
-3,"type1|2",9
-7,"type1|2",9
-5,"type1|2",9
-21,"type1|2",9
-12,"type1|2",9
-8,"type1|2",9
-14,"type1|2",9
-5,"type1|2",9
-13,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-7,"type1|2",8
-13,"type1|2",9
-10,"type1|2",9
-4,"type1|2",9
-5,"type1|2",5
-2,"type1|2",9
-3,"type1|2",8
-6,"type1|2",5
-10,"type1|2",5
-5,"type1|2",9
-9,"type1|2",7
-6,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-32,"type1|2",8
-3,"type1|2",4
-2,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-4,"type1|2",7
-8,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-6,"type1|2",5
-1,"type1|2",9
-13,"type1|2",9
-5,"type1|2",8
-1,"type1|2",6
-3,"type1|2",9
-13,"type1|2",9
-7,"type1|2",9
-5,"type1|2",9
-13,"type1|2",9
-7,"type1|2",9
-4,"type1|2",6
-15,"type1|2",9
-2,"type1|2",9
-5,"type1|2",8
-2,"type1|2",9
-6,"type1|2",9
-3,"type1|2",6
-13,"type1|2",9
-3,"type1|2",8
-5,"type1|2",8
-6,"type1|2",9
-4,"type1|2",8
-1,"type1|2",9
-8,"type1|2",9
-13,"type1|2",9
-5,"type1|2",8
-3,"type1|2",8
-19,"type1|2",9
-4,"type1|2",5
-2,"type1|2",4
-8,"type1|2",5
-7,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-3,"type1|2",4
-19,"type1|2",9
-4,"type1|2",9
-23,"type1|2",9
-3,"type1|2",9
-10,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-14,"type1|2",9
-8,"type1|2",9
-6,"type1|2",9
-2,"type1|2",8
-4,"type1|2",4
-4,"type1|2",4
-4,"type1|2",9
-7,"type1|2",6
-1,"type1|2",9
-17,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-11,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-6,"type1|2",8
-10,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-6,"type1|2",7
-6,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-13,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-8,"type1|2",9
-2,"type1|2",5
-14,"type1|2",9
-4,"type1|2",3
-4,"type1|2",9
-3,"type1|2",5
-5,"type1|2",9
-14,"type1|2",9
-5,"type1|2",9
-3,"type1|2",6
-5,"type1|2",9
-3,"type1|2",4
-3,"type1|2",9
-9,"type1|2",9
-19,"type1|2",5
-6,"type1|2",6
-3,"type1|2",9
-2,"type1|2",9
-7,"type1|2",9
-4,"type1|2",8
-8,"type1|2",9
-9,"type1|2",9
-7,"type1|2",9
-9,"type1|2",9
-3,"type1|2",8
-2,"type1|2",9
-12,"type1|2",9
-10,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-5,"type1|2",7
-3,"type1|2",6
-19,"type1|2",9
-7,"type1|2",9
-5,"type1|2",3
-16,"type1|2",9
-25,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-3,"type1|2",9
-4,"type1|2",5
-3,"type1|2",8
-5,"type1|2",9
-4,"type1|2",9
-16,"type1|2",9
-1,"type1|2",9
-19,"type1|2",9
-2,"type1|2",4
-9,"type1|2",9
-6,"type1|2",9
-13,"type1|2",9
-10,"type1|2",7
-3,"type1|2",9
-8,"type1|2",6
-3,"type1|2",5
-5,"type1|2",9
-7,"type1|2",9
-10,"type1|2",9
-7,"type1|2",8
-4,"type1|2",7
-11,"type1|2",9
-14,"type1|2",7
-5,"type1|2",9
-5,"type1|2",4
-6,"type1|2",9
-8,"type1|2",9
-9,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-6,"type1|2",7
-11,"type1|2",9
-2,"type1|2",9
-9,"type1|2",9
-16,"type1|2",9
-9,"type1|2",9
-7,"type1|2",9
-5,"type1|2",7
-2,"type1|2",9
-3,"type1|2",9
-14,"type1|2",9
-12,"type1|2",9
-2,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-16,"type1|2",7
-4,"type1|2",9
-6,"type1|2",3
-5,"type1|2",8
-14,"type1|2",7
-7,"type1|2",9
-7,"type1|2",4
-6,"type1|2",9
-3,"type1|2",7
-4,"type1|2",6
-7,"type1|2",9
-7,"type1|2",9
-1,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-4,"type1|2",8
-20,"type1|2",9
-8,"type1|2",9
-7,"type1|2",9
-12,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-21,"type1|2",9
-3,"type1|2",7
-4,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-4,"type1|2",2
-3,"type1|2",9
-12,"type1|2",9
-4,"type1|2",9
-5,"type1|2",8
-6,"type1|2",9
-3,"type1|2",9
-6,"type1|2",4
-5,"type1|2",5
-5,"type1|2",8
-6,"type1|2",9
-11,"type1|2",9
-4,"type1|2",4
-3,"type1|2",7
-10,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-3,"type1|2",4
-5,"type1|2",9
-7,"type1|2",9
-4,"type1|2",6
-2,"type1|2",8
-13,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-15,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-2,"type1|2",5
-2,"type1|2",9
-6,"type1|2",6
-5,"type1|2",8
-6,"type1|2",9
-7,"type1|2",8
-8,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-6,"type1|2",9
-6,"type1|2",6
-8,"type1|2",9
-6,"type1|2",9
-3,"type1|2",6
-3,"type1|2",9
-6,"type1|2",8
-8,"type1|2",9
-3,"type1|2",9
-6,"type1|2",7
-3,"type1|2",9
-12,"type1|2",9
-4,"type1|2",2
-7,"type1|2",9
-12,"type1|2",9
-5,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-18,"type1|2",9
-1,"type1|2",8
-31,"type1|2",9
-4,"type1|2",9
-5,"type1|2",7
-1,"type1|2",9
-7,"type1|2",9
-3,"type1|2",9
-12,"type1|2",9
-10,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-1,"type1|2",8
-6,"type1|2",5
-11,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-1,"type1|2",9
-12,"type1|2",8
-4,"type1|2",9
-5,"type1|2",8
-4,"type1|2",5
-2,"type1|2",6
-3,"type1|2",7
-2,"type1|2",9
-4,"type1|2",8
-4,"type1|2",8
-4,"type1|2",9
-5,"type1|2",8
-6,"type1|2",9
-5,"type1|2",6
-7,"type1|2",5
-3,"type1|2",7
-16,"type1|2",8
-4,"type1|2",9
-5,"type1|2",9
-2,"type1|2",7
-7,"type1|2",6
-5,"type1|2",9
-8,"type1|2",8
-4,"type1|2",3
-6,"type1|2",8
-5,"type1|2",9
-7,"type1|2",7
-7,"type1|2",9
-7,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-4,"type1|2",2
-5,"type1|2",9
-2,"type1|2",9
-4,"type1|2",9
-7,"type1|2",6
-10,"type1|2",9
-10,"type1|2",8
-3,"type1|2",9
-7,"type1|2",8
-6,"type1|2",9
-8,"type1|2",8
-4,"type1|2",6
-4,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-5,"type1|2",8
-4,"type1|2",8
-8,"type1|2",9
-2,"type1|2",9
-4,"type1|2",8
-13,"type1|2",5
-4,"type1|2",9
-2,"type1|2",6
-5,"type1|2",9
-3,"type1|2",5
-5,"type1|2",9
-7,"type1|2",4
-8,"type1|2",9
-11,"type1|2",9
-5,"type1|2",8
-7,"type1|2",9
-8,"type1|2",9
-11,"type1|2",9
-7,"type1|2",9
-5,"type1|2",4
-4,"type1|2",8
-8,"type1|2",9
-6,"type1|2",3
-19,"type1|2",9
-4,"type1|2",9
-21,"type1|2",9
-9,"type1|2",8
-9,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-2,"type1|2",8
-9,"type1|2",9
-2,"type1|2",6
-11,"type1|2",9
-4,"type1|2",9
-7,"type1|2",7
-3,"type1|2",8
-4,"type1|2",9
-5,"type1|2",5
-11,"type1|2",9
-3,"type1|2",9
-2,"type1|2",6
-4,"type1|2",9
-5,"type1|2",2
-2,"type1|2",8
-4,"type1|2",8
-10,"type1|2",9
-6,"type1|2",8
-15,"type1|2",9
-11,"type1|2",6
-2,"type1|2",8
-8,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-9,"type1|2",9
-6,"type1|2",7
-3,"type1|2",4
-10,"type1|2",9
-3,"type1|2",9
-7,"type1|2",5
-3,"type1|2",5
-12,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-2,"type1|2",9
-10,"type1|2",7
-4,"type1|2",9
-4,"type1|2",7
-3,"type1|2",4
-5,"type1|2",9
-8,"type1|2",4
-3,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-12,"type1|2",9
-9,"type1|2",2
-5,"type1|2",9
-6,"type1|2",6
-7,"type1|2",9
-17,"type1|2",8
-5,"type1|2",9
-5,"type1|2",8
-8,"type1|2",9
-7,"type1|2",5
-4,"type1|2",9
-15,"type1|2",9
-7,"type1|2",5
-5,"type1|2",2
-3,"type1|2",1
-2,"type1|2",3
-4,"type1|2",6
-6,"type1|2",8
-8,"type1|2",9
-3,"type1|2",4
-9,"type1|2",9
-3,"type1|2",9
-6,"type1|2",8
-3,"type1|2",9
-8,"type1|2",8
-7,"type1|2",9
-18,"type1|2",9
-3,"type1|2",7
-24,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-3,"type1|2",5
-5,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-2,"type1|2",7
-6,"type1|2",9
-7,"type1|2",2
-6,"type1|2",9
-8,"type1|2",9
-3,"type1|2",6
-4,"type1|2",8
-15,"type1|2",3
-1,"type1|2",5
-3,"type1|2",9
-7,"type1|2",9
-4,"type1|2",3
-2,"type1|2",9
-5,"type1|2",8
-6,"type1|2",9
-3,"type1|2",8
-4,"type1|2",9
-9,"type1|2",9
-7,"type1|2",9
-12,"type1|2",9
-14,"type1|2",9
-31,"type1|2",9
-6,"type1|2",9
-6,"type1|2",9
-12,"type1|2",9
-8,"type1|2",9
-4,"type1|2",5
-6,"type1|2",9
-4,"type1|2",9
-5,"type1|2",8
-3,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-6,"type1|2",7
-5,"type1|2",9
-8,"type1|2",4
-8,"type1|2",9
-5,"type1|2",9
-9,"type1|2",9
-11,"type1|2",5
-2,"type1|2",8
-4,"type1|2",8
-4,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-8,"type1|2",9
-3,"type1|2",8
-3,"type1|2",5
-5,"type1|2",8
-53,"type1|2",9
-2,"type1|2",9
-3,"type1|2",6
-5,"type1|2",9
-3,"type1|2",7
-3,"type1|2",9
-14,"type1|2",9
-3,"type1|2",9
-4,"type1|2",7
-7,"type1|2",9
-11,"type1|2",8
-4,"type1|2",8
-10,"type1|2",9
-2,"type1|2",9
-11,"type1|2",8
-9,"type1|2",9
-8,"type1|2",6
-26,"type1|2",9
-2,"type1|2",6
-3,"type1|2",6
-6,"type1|2",9
-7,"type1|2",9
-12,"type1|2",9
-23,"type1|2",9
-13,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-3,"type1|2",5
-7,"type1|2",4
-3,"type1|2",9
-4,"type1|2",8
-4,"type1|2",9
-3,"type1|2",7
-14,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-29,"type1|2",5
-3,"type1|2",9
-3,"type1|2",7
-4,"type1|2",9
-7,"type1|2",5
-4,"type1|2",9
-5,"type1|2",9
-3,"type1|2",5
-4,"type1|2",7
-2,"type1|2",8
-4,"type1|2",9
-3,"type1|2",4
-5,"type1|2",8
-4,"type1|2",9
-6,"type1|2",8
-2,"type1|2",7
-3,"type1|2",9
-4,"type1|2",4
-2,"type1|2",6
-3,"type1|2",5
-6,"type1|2",9
-3,"type1|2",9
-6,"type1|2",8
-1,"type1|2",6
-12,"type1|2",9
-3,"type1|2",7
-9,"type1|2",9
-5,"type1|2",9
-21,"type1|2",9
-6,"type1|2",8
-5,"type1|2",9
-8,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-6,"type1|2",4
-3,"type1|2",9
-7,"type1|2",8
-4,"type1|2",6
-5,"type1|2",7
-4,"type1|2",9
-8,"type1|2",9
-2,"type1|2",9
-9,"type1|2",9
-7,"type1|2",8
-10,"type1|2",9
-9,"type1|2",9
-14,"type1|2",6
-7,"type1|2",9
-8,"type1|2",9
-5,"type1|2",8
-2,"type1|2",9
-31,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-5,"type1|2",9
-19,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-6,"type1|2",4
-8,"type1|2",9
-4,"type1|2",9
-1,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-16,"type1|2",9
-3,"type1|2",8
-5,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-6,"type1|2",8
-11,"type1|2",9
-4,"type1|2",5
-3,"type1|2",9
-6,"type1|2",9
-25,"type1|2",9
-4,"type1|2",9
-6,"type1|2",6
-9,"type1|2",8
-2,"type1|2",9
-19,"type1|2",7
-2,"type1|2",7
-11,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-4,"type1|2",4
-3,"type1|2",9
-5,"type1|2",7
-5,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-6,"type1|2",8
-14,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-3,"type1|2",3
-10,"type1|2",8
-5,"type1|2",8
-3,"type1|2",6
-5,"type1|2",9
-9,"type1|2",6
-3,"type1|2",9
-13,"type1|2",9
-4,"type1|2",9
-6,"type1|2",4
-9,"type1|2",9
-5,"type1|2",3
-14,"type1|2",9
-2,"type1|2",9
-4,"type1|2",6
-3,"type1|2",8
-3,"type1|2",5
-7,"type1|2",9
-3,"type1|2",9
-9,"type1|2",9
-3,"type1|2",8
-5,"type1|2",9
-9,"type1|2",7
-4,"type1|2",9
-2,"type1|2",9
-10,"type1|2",9
-4,"type1|2",9
-4,"type1|2",6
-4,"type1|2",4
-3,"type1|2",9
-8,"type1|2",8
-10,"type1|2",9
-5,"type1|2",9
-3,"type1|2",7
-11,"type1|2",6
-2,"type1|2",7
-8,"type1|2",9
-5,"type1|2",4
-4,"type1|2",9
-2,"type1|2",9
-3,"type1|2",5
-8,"type1|2",8
-5,"type1|2",9
-3,"type1|2",5
-4,"type1|2",7
-1,"type1|2",9
-10,"type1|2",9
-4,"type1|2",8
-16,"type1|2",8
-5,"type1|2",7
-11,"type1|2",9
-3,"type1|2",9
-2,"type1|2",9
-6,"type1|2",9
-11,"type1|2",9
-7,"type1|2",5
-4,"type1|2",9
-2,"type1|2",8
-6,"type1|2",9
-4,"type1|2",5
-3,"type1|2",5
-8,"type1|2",7
-3,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-14,"type1|2",9
-6,"type1|2",9
-10,"type1|2",5
-6,"type1|2",9
-5,"type1|2",9
-2,"type1|2",9
-5,"type1|2",8
-3,"type1|2",9
-2,"type1|2",7
-6,"type1|2",9
-5,"type1|2",5
-8,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-6,"type1|2",9
-5,"type1|2",8
-1,"type1|2",9
-4,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-3,"type1|2",9
-10,"type1|2",9
-4,"type1|2",9
-4,"type1|2",8
-4,"type1|2",9
-6,"type1|2",2
-9,"type1|2",8
-3,"type1|2",6
-2,"type1|2",9
-4,"type1|2",6
-6,"type1|2",9
-7,"type1|2",9
-11,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-5,"type1|2",5
-12,"type1|2",9
-5,"type1|2",8
-4,"type1|2",9
-11,"type1|2",9
-6,"type1|2",9
-7,"type1|2",8
-5,"type1|2",9
-10,"type1|2",9
-7,"type1|2",9
-4,"type1|2",8
-4,"type1|2",5
-8,"type1|2",9
-20,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-3,"type1|2",8
-4,"type1|2",9
-9,"type1|2",7
-5,"type1|2",9
-9,"type1|2",9
-8,"type1|2",9
-5,"type1|2",9
-1,"type1|2",6
-6,"type1|2",5
-5,"type1|2",9
-19,"type1|2",9
-3,"type1|2",9
-2,"type1|2",4
-16,"type1|2",9
-2,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-3,"type1|2",3
-4,"type1|2",9
-4,"type1|2",6
-3,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-3,"type1|2",2
-8,"type1|2",9
-4,"type1|2",8
-14,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-6,"type1|2",5
-5,"type1|2",9
-9,"type1|2",9
-2,"type1|2",4
-3,"type1|2",8
-2,"type1|2",9
-3,"type1|2",6
-3,"type1|2",9
-10,"type1|2",9
-5,"type1|2",7
-5,"type1|2",9
-10,"type1|2",9
-2,"type1|2",9
-2,"type1|2",7
-6,"type1|2",5
-8,"type1|2",9
-7,"type1|2",5
-10,"type1|2",8
-4,"type1|2",9
-13,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-10,"type1|2",8
-2,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-9,"type1|2",9
-2,"type1|2",3
-6,"type1|2",6
-6,"type1|2",9
-6,"type1|2",9
-14,"type1|2",8
-1,"type1|2",4
-12,"type1|2",9
-5,"type1|2",7
-5,"type1|2",9
-5,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-9,"type1|2",9
-14,"type1|2",9
-2,"type1|2",9
-2,"type1|2",3
-6,"type1|2",8
-14,"type1|2",9
-2,"type1|2",9
-3,"type1|2",7
-9,"type1|2",9
-3,"type1|2",6
-4,"type1|2",9
-3,"type1|2",7
-3,"type1|2",5
-5,"type1|2",9
-32,"type1|2",9
-3,"type1|2",8
-11,"type1|2",9
-7,"type1|2",9
-2,"type1|2",9
-3,"type1|2",8
-4,"type1|2",7
-11,"type1|2",6
-4,"type1|2",9
-4,"type1|2",7
-3,"type1|2",8
-4,"type1|2",4
-2,"type1|2",9
-9,"type1|2",5
-5,"type1|2",3
-4,"type1|2",6
-3,"type1|2",9
-5,"type1|2",8
-3,"type1|2",7
-7,"type1|2",9
-1,"type1|2",9
-5,"type1|2",9
-2,"type1|2",9
-3,"type1|2",8
-5,"type1|2",7
-2,"type1|2",8
-6,"type1|2",9
-4,"type1|2",7
-7,"type1|2",9
-3,"type1|2",7
-2,"type1|2",6
-3,"type1|2",3
-5,"type1|2",7
-2,"type1|2",8
-2,"type1|2",9
-2,"type1|2",6
-3,"type1|2",8
-4,"type1|2",6
-6,"type1|2",9
-4,"type1|2",9
-2,"type1|2",9
-8,"type1|2",9
-2,"type1|2",8
-4,"type1|2",9
-9,"type1|2",7
-9,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-5,"type1|2",9
-5,"type1|2",5
-3,"type1|2",7
-1,"type1|2",9
-11,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-7,"type1|2",5
-11,"type1|2",9
-6,"type1|2",9
-2,"type1|2",9
-2,"type1|2",8
-2,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-8,"type1|2",9
-12,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-4,"type1|2",9
-3,"type1|2",6
-14,"type1|2",9
-6,"type1|2",9
-7,"type1|2",9
-12,"type1|2",9
-6,"type1|2",9
-3,"type1|2",2
-3,"type1|2",3
-8,"type1|2",9
-3,"type1|2",5
-6,"type1|2",9
-12,"type1|2",9
-5,"type1|2",9
-13,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-7,"type1|2",9
-8,"type1|2",9
-3,"type1|2",9
-3,"type1|2",3
-6,"type1|2",6
-10,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-6,"type1|2",9
-3,"type1|2",9
-6,"type1|2",7
-3,"type1|2",9
-11,"type1|2",9
-17,"type1|2",9
-3,"type1|2",4
-8,"type1|2",9
-3,"type1|2",5
-2,"type1|2",5
-7,"type1|2",9
-3,"type1|2",8
-2,"type1|2",7
-19,"type1|2",9
-7,"type1|2",4
-5,"type1|2",9
-9,"type1|2",9
-7,"type1|2",9
-8,"type1|2",7
-9,"type1|2",9
-4,"type1|2",9
-7,"type1|2",7
-8,"type1|2",6
-16,"type1|2",9
-4,"type1|2",5
-6,"type1|2",9
-3,"type1|2",4
-3,"type1|2",7
-3,"type1|2",9
-3,"type1|2",9
-10,"type1|2",9
-6,"type1|2",9
-8,"type1|2",9
-3,"type1|2",9
-4,"type1|2",4
-2,"type1|2",9
-2,"type1|2",9
-7,"type1|2",9
-6,"type1|2",6
-9,"type1|2",6
-10,"type1|2",9
-1,"type1|2",9
-4,"type1|2",9
-7,"type1|2",7
-5,"type1|2",8
-10,"type1|2",9
-8,"type1|2",9
-4,"type1|2",6
-6,"type1|2",9
-6,"type1|2",9
-4,"type1|2",7
-9,"type1|2",6
-11,"type1|2",9
-5,"type1|2",9
-1,"type1|2",9
-16,"type1|2",3
-10,"type1|2",9
-15,"type1|2",9
-2,"type1|2",9
-13,"type1|2",9
-8,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-25,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-7,"type1|2",9
-14,"type1|2",9
-3,"type1|2",9
-30,"type1|2",9
-30,"type1|2",7
-2,"type1|2",9
-2,"type1|2",8
-10,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-3,"type1|2",8
-7,"type1|2",8
-6,"type1|2",9
-15,"type1|2",9
-12,"type1|2",9
-3,"type1|2",4
-7,"type1|2",9
-6,"type1|2",9
-17,"type1|2",9
-7,"type1|2",9
-3,"type1|2",9
-8,"type1|2",2
-3,"type1|2",9
-4,"type1|2",9
-6,"type1|2",9
-3,"type1|2",7
-1,"type1|2",4
-3,"type1|2",6
-6,"type1|2",9
-4,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-6,"type1|2",9
-9,"type1|2",9
-5,"type1|2",9
-5,"type1|2",8
-5,"type1|2",9
-4,"type1|2",9
-3,"type1|2",9
-1,"type1|2",9
-8,"type1|2",9
-10,"type1|2",9
-7,"type1|2",9
-6,"type1|2",9
-4,"type1|2",7
-7,"type1|2",8
-6,"type1|2",9
-5,"type1|2",6
-4,"type1|2",7
-5,"type1|2",7
-2,"type1|2",9
-9,"type1|2",9
-6,"type1|2",6
-3,"type1|2",9
-4,"type1|2",9
-4,"type1|2",6
-9,"type1|2",8
-12,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-5,"type1|2",9
-3,"type1|2",6
-13,"type1|2",8
-3,"type1|2",6
-4,"type1|2",9
-4,"type1|2",9
-10,"type1|2",9
-22,"type1|2",9
-2,"type1|2",6
-6,"type1|2",9
-7,"type1|2",7
-4,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-4,"type1|2",9
-3,"type1|2",5
-7,"type1|2",9
-4,"type1|2",9
-5,"type1|2",9
-3,"type1|2",8
-3,"type1|2",5
-6,"type1|2",6
-4,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-3,"type1|2",9
-8,"type1|2",9
-3,"type1|2",8
-10,"type1|2",9
-11,"type1|2",9
-3,"type1|2",7
-10,"type1|2",8
-6,"type1|2",9
-3,"type1|2",9
-22,"type1|2",9
-2,"type1|2",8
-6,"type1|2",9
-5,"type1|2",5
-3,"type1|2",3
-3,"type1|2",9
-7,"type1|2",9
-3,"type1|2",5
-16,"type1|2",9
-13,"type1|2",9
-7,"type1|2",8
-7,"type1|2",9
-2,"type1|2",6
-5,"type1|2",9
-9,"type1|2",9
-1,"type1|2",9
-2,"type1|2",3
-5,"type1|2",7
-9,"type1|2",9
-6,"type1|2",9
-4,"type1|2",9
-13,"type1|2",9
-4,"type1|2",7
-3,"type1|2",6
-6,"type1|2",9
-4,"type1|2",8
-16,"type1|2",9
-4,"type1|2",9
-1,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-3,"type1|2",9
-7,"type1|2",7
-5,"type1|2",7
-4,"type1|2",9
-4,"type1|2",7
-5,"type1|2",3
-2,"type1|2",8
-2,"type1|2",9
-3,"type1|2",9
-11,"type1|2",9
-3,"type1|2",8
-4,"type1|2",7
-5,"type1|2",6
-7,"type1|2",9
-2,"type1|2",6
-2,"type1|2",9
-5,"type1|2",9
-6,"type1|2",9
-11,"type1|2",9
-3,"type1|2",9
-3,"type1|2",6
-2,"type1|2",5
-3,"type1|2",9
-5,"type1|2",8
-4,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-7,"type1|2",9
-11,"type1|2",9
-5,"type1|2",9
-2,"type1|2",6
-7,"type1|2",8
-21,"type1|2",9
-7,"type1|2",9
-5,"type1|2",1
-8,"type1|2",7
-10,"type1|2",9
-4,"type1|2",2
-8,"type1|2",9
-2,"type1|2",9
-3,"type1|2",9
-9,"type1|2",3
-14,"type1|2",9
-6,"type1|2",8
-6,"type1|2",8
-3,"type1|2",9
-5,"type1|2",6
-21,"type1|2",9
-9,"type1|2",9
-4,"type1|2",9
-10,"type1|2",9
-12,"type1|2",9
-33,"type1|2",9
-4,"type1|2",4
-6,"type1|2",8
-2,"type1|2",9
-2,"type1|2",8
-3,"type1|2",5
-5,"type1|2",9
-4,"type1|2",9
-3,"type1|2",6
-3,"type1|2",4
-3,"type1|2",9
-4,"type1|2",8
-9,"type1|2",9
-2,"type1|2",5
-6,"type1|2",7
-6,"type1|2",8
-3,"type1|2",6
-8,"type1|2",9
-1,"type1|2",9
-8,"type1|2",9
-4,"type1|2",8
-6,"type1|2",9
-5,"type1|2",9
-4,"type1|2",3
-3,"type1|2",9
-5,"type1|2",5
-3,"type1|2",9
-2,"type3",4
-4,"type3",7
-3,"type3",8
-3,"type3",6
-10,"type3",9
-24,"type3",9
-15,"type3",9
-5,"type3",9
-4,"type3",9
-3,"type3",8
-2,"type3",8
-6,"type3",9
-16,"type3",9
-2,"type3",5
-7,"type3",8
-5,"type3",6
-3,"type3",9
-7,"type3",8
-3,"type3",4
-6,"type3",2
-4,"type3",9
-9,"type3",8
-3,"type3",9
-3,"type3",2
-11,"type3",9
-3,"type3",8
-4,"type3",4
-2,"type3",7
-7,"type3",9
-2,"type3",3
-5,"type3",9
-3,"type3",9
-3,"type3",7
-3,"type3",9
-2,"type3",4
-3,"type3",4
-9,"type3",9
-2,"type3",9
-3,"type3",9
-6,"type3",7
-8,"type3",9
-5,"type3",7
-5,"type3",5
-9,"type3",9
-1,"type3",4
-4,"type3",9
-3,"type3",1
-3,"type3",3
-3,"type3",9
-9,"type3",9
-3,"type3",5
-6,"type3",3
-8,"type3",9
-2,"type3",9
-5,"type3",9
-6,"type3",9
-5,"type3",9
-4,"type3",9
-3,"type3",2
-3,"type3",9
-2,"type3",9
-4,"type3",5
-3,"type3",4
-1,"type3",6
-2,"type3",9
-15,"type3",9
-3,"type3",7
-7,"type3",9
-3,"type3",4
-4,"type3",9
-3,"type3",7
-7,"type3",2
-3,"type3",8
-3,"type3",6
-6,"type3",9
-3,"type3",6
-6,"type3",9
-3,"type3",9
-2,"type3",7
-3,"type3",6
-7,"type3",9
-9,"type3",9
-5,"type3",9
-5,"type3",9
-4,"type3",9
-5,"type3",7
-3,"type3",9
-10,"type3",8
-7,"type3",8
-7,"type3",9
-4,"type3",9
-3,"type3",4
-6,"type3",9
-4,"type3",4
-9,"type3",9
-3,"type3",6
-6,"type3",9
-7,"type3",9
-2,"type3",8
-2,"type3",9
-4,"type3",3
-3,"type3",9
-4,"type3",9
-3,"type3",3
-3,"type3",5
-3,"type3",9
-3,"type3",9
-4,"type3",8
-4,"type3",4
-2,"type3",3
-7,"type3",9
-4,"type3",6
-8,"type3",9
-9,"type3",9
-6,"type3",9
-4,"type3",3
-6,"type3",9
-3,"type3",9
-3,"type3",9
-11,"type3",9
-5,"type3",6
-4,"type3",9
-3,"type3",5
-6,"type3",9
-3,"type3",6
-6,"type3",6
-6,"type3",9
-6,"type3",7
-4,"type3",5
-4,"type3",5
-1,"type3",7
-7,"type3",5
-5,"type3",9
-6,"type3",9
-6,"type3",9
-3,"type3",9
-3,"type3",9
-2,"type3",9
-4,"type3",9
-3,"type3",8
-3,"type3",4
-10,"type3",9
-3,"type3",4
-4,"type3",9
-4,"type3",9
-2,"type3",9
-1,"type3",2
-3,"type3",9
-13,"type3",9
-4,"type3",9
-6,"type3",9
-4,"type3",7
-1,"type3",7
-16,"type3",9
-1,"type3",2
-11,"type3",9
-2,"type3",7
-6,"type3",9
-1,"type3",9
-3,"type3",6
-3,"type3",3
-11,"type3",9
-1,"type3",7
-2,"type3",9
-5,"type3",2
-5,"type3",2
-11,"type3",8
-2,"type3",5
-11,"type3",9
-4,"type3",9
-3,"type3",8
-2,"type3",9
-3,"type3",9
-5,"type3",5
-15,"type3",9
-5,"type3",8
-2,"type3",7
-8,"type3",9
-2,"type3",2
-4,"type3",8
-10,"type3",9
-3,"type3",9
-4,"type3",6
-2,"type3",8
-16,"type3",9
-5,"type3",9
-7,"type3",9
-3,"type3",9
-2,"type3",2
-8,"type3",9
-3,"type3",4
-1,"type3",5
-3,"type3",8
-10,"type3",9
-4,"type3",3
-2,"type3",2
-5,"type3",9
-5,"type3",6
-5,"type3",9
-5,"type3",4
-2,"type3",8
-3,"type3",7
-7,"type3",9
-3,"type3",4
-8,"type3",5
-8,"type3",9
-6,"type3",3
-5,"type3",9
-3,"type3",9
-7,"type3",4
-2,"type3",8
-3,"type3",7
-3,"type3",7
-2,"type3",9
-5,"type3",9
-2,"type3",2
-3,"type3",3
-3,"type3",9
-4,"type3",9
-9,"type3",9
-5,"type3",9
-3,"type3",8
-2,"type3",8
-10,"type3",9
-3,"type3",9
-5,"type3",7
-2,"type3",9
-5,"type3",6
-7,"type3",8
-5,"type3",9
-6,"type3",6
-1,"type3",6
-3,"type3",9
-3,"type3",9
-8,"type3",4
-3,"type3",7
-2,"type3",4
-8,"type3",7
-7,"type3",6
-6,"type3",9
-3,"type3",5
-1,"type3",9
-4,"type3",7
-2,"type3",9
-6,"type3",9
-13,"type3",9
-3,"type3",6
-4,"type3",5
-2,"type3",9
-2,"type3",7
-3,"type3",7
-4,"type3",4
-4,"type3",9
-7,"type3",9
-3,"type3",8
-6,"type3",4
-2,"type3",3
-5,"type3",4
-1,"type3",5
-3,"type3",9
-4,"type3",6
-3,"type3",7
-4,"type3",9
-6,"type3",9
-6,"type3",9
-2,"type3",5
-3,"type3",7
-1,"type3",2
-6,"type3",9
-6,"type3",9
-3,"type3",9
-1,"type3",7
-4,"type3",8
-6,"type3",9
-6,"type3",9
-4,"type3",9
-4,"type3",9
-6,"type3",9
-3,"type3",9
-3,"type3",9
-4,"type3",5
-8,"type3",8
-3,"type3",7
-2,"type3",9
-5,"type3",7
-1,"type3",5
-8,"type3",9
-8,"type3",9
-2,"type3",7
-5,"type3",9
-2,"type3",8
-3,"type3",9
-2,"type3",2
-4,"type3",9
-4,"type3",8
-3,"type3",5
-3,"type3",5
-7,"type3",9
-3,"type3",8
-3,"type3",4
-22,"type3",9
-4,"type3",7
-3,"type3",8
-4,"type3",9
-4,"type3",5
-3,"type3",6
-29,"type3",9
-3,"type3",8
-2,"type3",5
-7,"type3",4
-4,"type3",8
-5,"type3",2
-2,"type3",9
-6,"type3",4
-1,"type3",7
-4,"type3",6
-6,"type3",9
-2,"type3",9
-19,"type3",9
-2,"type3",9
-2,"type3",9
-7,"type3",5
-5,"type3",9
-6,"type3",6
-7,"type3",9
-2,"type3",9
-5,"type3",8
-8,"type3",9
-3,"type3",9
-3,"type3",9
-9,"type3",9
-3,"type3",8
-4,"type3",8
-7,"type3",9
-2,"type3",8
-7,"type3",9
-4,"type3",9
-3,"type3",9
-13,"type3",9
-4,"type3",8
-4,"type3",6
-9,"type3",9
-2,"type3",8
-9,"type3",9
-3,"type3",8
-4,"type3",9
-7,"type3",9
-1,"type3",9
-4,"type3",9
-4,"type3",6
-3,"type3",8
-7,"type3",4
-6,"type3",2
-10,"type3",9
-6,"type3",9
-3,"type3",3
-4,"type3",9
-4,"type3",6
-15,"type3",9
-11,"type3",9
-8,"type3",9
-3,"type3",9
-4,"type3",5
-3,"type3",5
-3,"type3",5
-7,"type3",9
-5,"type3",9
-7,"type3",9
-3,"type3",9
-3,"type3",7
-4,"type3",3
-9,"type3",6
-9,"type3",9
-3,"type3",5
-4,"type3",9
-1,"type3",9
-8,"type3",9
-8,"type3",9
-16,"type3",9
-3,"type3",5
-8,"type3",9
-3,"type3",9
-12,"type3",9
-10,"type3",9
-3,"type3",5
-2,"type3",9
-5,"type3",5
-3,"type3",4
-21,"type3",9
-1,"type3",7
-3,"type3",9
-7,"type3",9
-10,"type3",9
-3,"type3",9
-3,"type3",9
-4,"type3",9
-14,"type3",9
-3,"type3",9
-3,"type3",7
-3,"type3",8
-3,"type3",9
-8,"type3",9
-3,"type3",9
-7,"type3",9
-8,"type3",9
-18,"type3",9
-5,"type3",9
-5,"type3",8
-3,"type3",4
-3,"type3",8
-3,"type3",9
-1,"type3",4
-12,"type3",9
-3,"type3",5
-3,"type3",9
-5,"type3",9
-4,"type3",9
-2,"type3",5
-3,"type3",3
-11,"type3",9
-4,"type3",9
-4,"type3",5
-32,"type3",9
-10,"type3",9
-5,"type3",9
-7,"type3",9
-6,"type3",9
-3,"type3",9
-16,"type3",9
-2,"type3",9
-2,"type3",9
-6,"type3",9
-14,"type3",9
-32,"type3",9
-26,"type3",9
-4,"type3",4
-4,"type3",9
-3,"type3",9
-3,"type3",9
-5,"type3",9
-3,"type3",4
-2,"type3",8
-1,"type3",5
-16,"type3",9
-4,"type3",7
-2,"type3",7
-7,"type3",5
-5,"type3",9
-10,"type3",9
-5,"type3",6
-3,"type3",2
-11,"type3",9
-7,"type3",9
-1,"type3",5
-5,"type3",9
-4,"type3",4
-3,"type3",5
-2,"type3",9
-2,"type3",9
-5,"type3",7
-2,"type3",9
-3,"type3",6
-5,"type3",8
-3,"type3",8
-4,"type3",3
-3,"type3",4
-4,"type3",9
-4,"type3",6
-11,"type3",9
-5,"type3",7
-3,"type3",5
-3,"type3",7
-4,"type3",7
-3,"type3",9
-4,"type3",9
-4,"type3",8
-3,"type3",5
-7,"type3",9
-8,"type3",9
-7,"type3",9
-4,"type3",9
-7,"type3",9
-13,"type3",9
-3,"type3",9
-3,"type3",4
-3,"type3",6
-4,"type3",5
-5,"type3",7
-9,"type3",6
-3,"type3",4
-5,"type3",5
-8,"type3",9
-5,"type3",9
-6,"type3",9
-4,"type3",9
-3,"type3",3
-6,"type3",9
-7,"type3",9
-20,"type3",9
-20,"type3",9
-10,"type3",9
-4,"type3",5
-7,"type3",7
-5,"type3",8
-1,"type3",4
-6,"type3",3
-5,"type3",9
-2,"type3",5
-9,"type3",9
-3,"type3",4
-9,"type3",9
-8,"type3",9
-3,"type3",5
-6,"type3",9
-3,"type3",5
-6,"type3",9
-8,"type3",9
-7,"type3",9
-9,"type3",9
-2,"type3",7
-3,"type3",5
-2,"type3",7
-7,"type3",8
-3,"type3",2
-5,"type3",9
-3,"type3",6
-7,"type3",9
-4,"type3",7
-5,"type3",9
-4,"type3",8
-7,"type3",9
-2,"type3",9
-7,"type3",9
-4,"type3",4
-1,"type3",2
-14,"type3",9
-3,"type3",9
-9,"type3",9
-4,"type3",5
-2,"type3",7
-11,"type3",9
-3,"type3",8
-3,"type3",7
-6,"type3",8
-5,"type3",9
-6,"type3",9
-2,"type3",8
-4,"type3",9
-9,"type3",9
-7,"type3",9
-2,"type3",2
-3,"type3",8
-2,"type3",9
-7,"type3",9
-8,"type3",7
-2,"type3",7
-1,"type3",8
-9,"type3",9
-4,"type3",9
-7,"type3",6
-3,"type3",3
-2,"type3",4
-11,"type3",9
-8,"type3",9
-9,"type3",9
-3,"type3",9
-8,"type3",9
-12,"type3",8
-8,"type3",9
-7,"type3",9
-6,"type3",5
-3,"type3",7
-3,"type3",9
-2,"type3",4
-11,"type3",9
-5,"type3",8
-2,"type3",2
-4,"type3",9
-2,"type3",8
-2,"type3",9
-5,"type3",9
-7,"type3",9
-2,"type3",8
-8,"type3",9
-2,"type3",9
-3,"type3",9
-9,"type3",9
-8,"type3",9
-7,"type3",9
-3,"type3",6
-11,"type3",9
-3,"type3",3
-7,"type3",9
-2,"type3",8
-3,"type3",7
-3,"type3",8
-8,"type3",9
-2,"type3",7
-6,"type3",9
-3,"type3",5
-8,"type3",6
-17,"type3",9
-19,"type3",9
-2,"type3",9
-5,"type3",9
-5,"type3",8
-8,"type3",9
-2,"type3",5
-2,"type3",7
-3,"type3",5
-8,"type3",9
-6,"type3",4
-7,"type3",9
-12,"type3",9
-3,"type3",9
-5,"type3",9
-3,"type3",4
-3,"type3",9
-10,"type3",7
-7,"type3",9
-9,"type3",9
-4,"type3",9
-3,"type3",9
-9,"type3",9
-3,"type3",9
-3,"type3",9
-5,"type3",9
-3,"type3",5
-2,"type3",1
-4,"type3",9
-4,"type3",9
-3,"type3",9
-8,"type3",9
-4,"type3",7
-3,"type3",9
-2,"type3",4
-7,"type3",9
-7,"type3",9
-3,"type3",5
-3,"type3",9
-3,"type3",9
-3,"type3",9
-7,"type3",9
-9,"type3",9
-9,"type3",9
-7,"type3",3
-3,"type3",3
-3,"type3",9
-32,"type3",9
-5,"type3",9
-4,"type3",5
-3,"type3",9
-11,"type3",8
-2,"type3",6
-6,"type3",8
-4,"type3",6
-4,"type3",6
-4,"type3",7
-6,"type3",9
-4,"type3",7
-12,"type3",9
-3,"type3",4
-14,"type3",9
-3,"type3",9
-4,"type3",9
-8,"type3",9
-5,"type3",9
-2,"type3",3
-3,"type3",9
-3,"type3",5
-4,"type3",9
-11,"type3",7
-8,"type3",9
-3,"type3",5
-10,"type3",9
-6,"type3",9
-11,"type3",9
-10,"type3",9
-2,"type3",9
-7,"type3",8
-3,"type3",9
-3,"type3",6
-2,"type3",8
-2,"type3",6
-35,"type3",9
-1,"type3",5
-4,"type3",9
-1,"type3",4
-7,"type3",8
-3,"type3",9
-4,"type3",9
-1,"type3",6
-3,"type3",5
-3,"type3",4
-2,"type3",9
-9,"type3",9
-9,"type3",9
-3,"type3",6
-4,"type3",9
-1,"type3",9
-2,"type3",8
-2,"type3",7
-3,"type3",6
-2,"type3",3
-4,"type3",9
-1,"type3",4
-2,"type3",3
-8,"type3",9
-8,"type3",9
-3,"type3",3
-1,"type3",3
-8,"type3",9
-2,"type3",6
-2,"type3",6
-4,"type3",9
-5,"type3",9
-3,"type3",5
-2,"type3",5
-2,"type3",4
-3,"type3",9
-5,"type3",5
-2,"type3",4
-2,"type3",9
-3,"type3",5
-6,"type3",8
-9,"type3",9
-1,"type3",4
-6,"type3",9
-3,"type3",8
-6,"type3",9
-3,"type3",6
-7,"type3",5
-11,"type3",9
-11,"type3",9
-5,"type3",6
-10,"type3",8
-8,"type3",9
-13,"type3",9
-4,"type3",9
-4,"type3",9
-6,"type3",9
-6,"type3",9
-6,"type3",8
-3,"type3",3
-14,"type3",8
-4,"type3",2
-6,"type3",5
-6,"type3",9
-5,"type3",4
-4,"type3",9
-6,"type3",8
-2,"type3",9
-2,"type3",2
-10,"type3",9
-4,"type3",9
-4,"type3",9
-5,"type3",9
-3,"type3",3
-2,"type3",9
-3,"type3",8
-3,"type3",4
-3,"type3",6
-5,"type3",7
-5,"type3",5
-3,"type3",9
-14,"type3",9
-3,"type3",8
-2,"type3",5
-6,"type3",7
-5,"type3",6
-4,"type3",9
-3,"type3",9
-3,"type3",9
-13,"type3",9
-31,"type3",9
-3,"type3",5
-9,"type3",9
-11,"type3",9
-6,"type3",9
-7,"type3",9
-3,"type3",9
-8,"type3",9
-7,"type3",8
-2,"type3",4
-3,"type3",9
-3,"type3",9
-3,"type3",8
-9,"type3",9
-1,"type3",3
-5,"type3",9
-3,"type3",7
-5,"type3",9
-3,"type3",7
-3,"type3",9
-2,"type3",8
-3,"type3",9
-9,"type3",9
-5,"type3",9
-7,"type3",9
-3,"type3",8
-2,"type3",2
-7,"type3",9
-2,"type3",9
-4,"type3",2
-3,"type3",4
-2,"type3",9
-3,"type3",9
-3,"type3",2
-4,"type3",6
-3,"type3",4
-7,"type3",6
-3,"type3",9
-1,"type3",9
-3,"type3",9
-9,"type3",9
-6,"type3",9
-2,"type3",9
-6,"type3",6
-3,"type3",7
-4,"type3",8
-5,"type3",9
-7,"type3",9
-3,"type3",9
-3,"type3",9
-8,"type3",8
-1,"type3",5
-3,"type3",9
-4,"type3",8
-10,"type3",9
-6,"type3",2
-2,"type3",2
-3,"type3",9
-3,"type3",4
-3,"type3",9
-2,"type3",4
-8,"type3",9
-3,"type3",6
-2,"type3",2
-4,"type3",9
-3,"type3",9
-6,"type3",2
-3,"type3",7
-6,"type3",9
-9,"type3",9
-3,"type3",3
-3,"type3",9
-3,"type3",5
-22,"type3",9
-4,"type3",9
-2,"type3",3
-2,"type3",5
-4,"type3",7
-4,"type3",7
-3,"type3",9
-5,"type3",5
-3,"type3",6
-2,"type3",9
-3,"type3",6
-3,"type3",9
-3,"type3",3
-5,"type3",6
-4,"type3",7
-3,"type3",4
-4,"type3",9
-9,"type3",9
-6,"type3",4
-1,"type3",4
-3,"type3",4
-11,"type3",9
-3,"type3",9
-2,"type3",5
-6,"type3",5
-2,"type3",3
-6,"type3",9
-7,"type3",9
-2,"type3",2
-4,"type3",5
-8,"type3",9
-1,"type3",2
-4,"type3",4
-3,"type3",4
-1,"type3",6
-9,"type3",9
-2,"type3",4
-3,"type3",9
-3,"type3",9
-4,"type3",9
-11,"type3",9
-2,"type3",9
-5,"type3",9
-5,"type3",8
-17,"type3",9
-3,"type3",9
-7,"type3",9
-18,"type3",9
-2,"type3",9
-6,"type3",9
-6,"type3",9
-2,"type3",9
-3,"type3",7
-3,"type3",9
-3,"type3",9
-4,"type3",7
-6,"type3",9
-3,"type3",9
-3,"type3",7
-3,"type3",7
-2,"type3",9
-2,"type3",8
-2,"type3",6
-10,"type3",9
-5,"type3",7
-2,"type3",5
-3,"type3",6
-9,"type3",9
-6,"type3",2
-4,"type3",6
-4,"type3",8
-3,"type3",9
-16,"type3",9
-3,"type3",9
-3,"type3",9
-2,"type3",3
-3,"type3",8
-11,"type3",9
-3,"type3",7
-3,"type3",9
-3,"type3",6
-3,"type3",9
-2,"type3",9
-3,"type3",7
-3,"type3",6
-22,"type3",9
-4,"type3",9
-7,"type3",9
-3,"type3",9
-4,"type3",9
-1,"type3",6
-6,"type3",6
-2,"type3",3
-2,"type3",7
-3,"type3",9
-2,"type3",3
-3,"type3",3
-21,"type3",9
-4,"type3",5
-3,"type3",8
-4,"type3",3
-4,"type3",7
-3,"type3",3
-2,"type3",4
-2,"type3",7
-7,"type3",9
-4,"type3",9
-8,"type3",6
-3,"type3",7
-8,"type3",9
-6,"type3",6
-2,"type3",9
-2,"type3",7
-3,"type3",6
-5,"type3",2
-22,"type3",9
-5,"type3",9
-4,"type3",9
-3,"type3",7
-8,"type3",9
-3,"type3",9
-4,"type3",9
-9,"type3",9
-3,"type3",7
-7,"type3",8
-4,"type3",6
-4,"type3",9
-3,"type3",5
-3,"type3",4
-3,"type3",7
-5,"type3",9
-2,"type3",6
-6,"type3",9
-8,"type3",9
-3,"type3",3
-7,"type3",9
-7,"type3",8
-5,"type3",9
-8,"type3",9
-5,"type3",9
-3,"type3",4
-3,"type3",1
-11,"type3",9
-5,"type3",9
-2,"type3",4
-3,"type3",8
-3,"type3",5
-7,"type3",9
-2,"type3",2
-4,"type3",9
-3,"type3",5
-8,"type3",9
-9,"type3",9
-1,"type3",5
-3,"type3",2
-3,"type3",9
-6,"type3",7
-7,"type3",6
-10,"type3",9
-3,"type3",8
-3,"type3",9
-3,"type3",9
-3,"type3",6
-3,"type3",9
-3,"type3",9
-8,"type3",9
-4,"type3",5
-5,"type3",7
-5,"type3",9
-1,"type3",7
-6,"type3",9
-2,"type3",7
-3,"type3",4
-3,"type3",5
-5,"type3",9
-3,"type3",9
-10,"type3",9
-2,"type3",8
-9,"type3",9
-8,"type3",9
-4,"type3",8
-3,"type3",9
-3,"type3",9
-4,"type3",9
-4,"type3",9
-14,"type3",9
-4,"type3",9
-7,"type3",9
-14,"type3",9
-6,"type3",9
-8,"type3",9
-4,"type3",4
-2,"type3",4
-5,"type3",5
-7,"type3",9
-3,"type3",6
-3,"type3",4
-9,"type3",9
-2,"type3",7
-3,"type3",7
-2,"type3",3
-5,"type3",5
-23,"type3",9
-3,"type3",8
-3,"type3",9
-10,"type3",9
-3,"type3",9
-10,"type3",9
-2,"type3",6
-3,"type3",8
-5,"type3",6
-4,"type3",9
-3,"type3",3
-4,"type3",9
-9,"type3",6
-10,"type3",6
-2,"type3",7
-5,"type3",9
-1,"type3",7
-7,"type3",6
-4,"type3",9
-2,"type3",8
-3,"type3",4
-2,"type3",4
-10,"type3",8
-8,"type3",9
-2,"type3",5
-30,"type3",8
-5,"type3",6
-3,"type3",6
-2,"type3",4
-15,"type3",9
-3,"type3",5
-5,"type3",9
-6,"type3",9
-3,"type3",7
-5,"type3",8
-10,"type3",3
-2,"type3",5
-4,"type3",9
-2,"type3",8
-12,"type3",9
-8,"type3",9
-6,"type3",8
-4,"type3",9
-5,"type3",6
-2,"type3",8
-3,"type3",7
-5,"type3",9
-7,"type3",9
-3,"type3",8
-4,"type3",4
-9,"type3",9
-16,"type3",9
-4,"type3",9
-3,"type3",8
-3,"type3",8
-3,"type3",9
-3,"type3",3
-3,"type3",9
-10,"type3",9
-4,"type3",4
-5,"type3",9
-13,"type3",9
-6,"type3",9
-6,"type3",6
-7,"type3",9
-9,"type3",7
-7,"type3",9
-3,"type3",9
-5,"type3",9
-4,"type3",5
-3,"type3",6
-3,"type3",8
-5,"type3",9
-4,"type3",4
-3,"type3",5
-2,"type3",8
-1,"type3",6
-7,"type3",9
-9,"type3",8
-3,"type3",8
-5,"type3",2
-7,"type3",9
-9,"type3",9
-11,"type3",9
-7,"type3",9
-2,"type3",9
-4,"type3",8
-6,"type3",9
-3,"type3",7
-4,"type3",9
-3,"type3",9
-7,"type3",9
-3,"type3",6
-3,"type3",9
-3,"type3",3
-6,"type3",5
-3,"type3",9
-10,"type3",9
-1,"type3",8
-2,"type3",9
-37,"type3",9
-3,"type3",9
-11,"type3",9
-16,"type3",9
-4,"type3",9
-5,"type3",9
-1,"type3",1
-3,"type3",9
-2,"type3",5
-2,"type3",8
-4,"type3",7
-4,"type3",9
-4,"type3",9
-3,"type3",5
-6,"type3",9
-3,"type3",4
-7,"type3",2
-5,"type3",9
-5,"type3",4
-3,"type3",2
-3,"type3",7
-4,"type3",9
-13,"type3",9
-12,"type3",9
-2,"type3",6
-12,"type3",9
-7,"type3",7
-1,"type3",5
-2,"type3",2
-7,"type3",7
-3,"type3",9
-2,"type3",1
-3,"type3",4
-6,"type3",6
-5,"type3",8
-4,"type3",8
-2,"type3",3
-5,"type3",6
-3,"type3",6
-2,"type3",3
-1,"type3",6
-3,"type3",8
-2,"type3",6
-3,"type3",8
-1,"type3",5
-2,"type3",6
-3,"type3",9
-2,"type3",9
-3,"type3",9
-4,"type3",9
-2,"type3",5
-3,"type3",9
-6,"type3",9
-3,"type3",9
-4,"type3",6
-3,"type3",9
-5,"type3",9
-10,"type3",9
-3,"type3",5
-1,"type3",8
-2,"type3",5
-6,"type3",6
-6,"type3",7
-4,"type3",5
-9,"type3",9
-5,"type3",9
-6,"type3",9
-2,"type3",2
-3,"type3",9
-2,"type3",9
-12,"type3",9
-3,"type3",9
-4,"type3",9
-4,"type3",9
-5,"type3",9
-8,"type3",5
-4,"type3",3
-4,"type3",8
-7,"type3",7
-3,"type3",8
diff --git a/statsmodels/scikits/statsmodels/genmod/tests/test_glm.py b/statsmodels/scikits/statsmodels/genmod/tests/test_glm.py
deleted file mode 100644
index 3c8ab78..0000000
--- a/statsmodels/scikits/statsmodels/genmod/tests/test_glm.py
+++ /dev/null
@@ -1,503 +0,0 @@
-"""
-
-Test functions for models.GLM
-"""
-import os
-import numpy as np
-from numpy.testing import *
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.genmod.generalized_linear_model import GLM
-from scikits.statsmodels.tools.tools import add_constant
-from scikits.statsmodels.tools.sm_exceptions import PerfectSeparationError
-from nose import SkipTest
-
-# Test Precisions
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-DECIMAL_0 = 0
-
-class CheckModelResults(object):
- '''
- res2 should be either the results from RModelWrap
- or the results as defined in model_results_data
- '''
- decimal_params = DECIMAL_4
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params,
- self.decimal_params)
-
- decimal_bse = DECIMAL_4
- def test_standard_errors(self):
- assert_almost_equal(self.res1.bse, self.res2.bse, self.decimal_bse)
-
- decimal_resids = DECIMAL_4
- def test_residuals(self):
- resids = np.column_stack((self.res1.resid_pearson,
- self.res1.resid_deviance, self.res1.resid_working,
- self.res1.resid_anscombe, self.res1.resid_response))
- assert_almost_equal(resids, self.res2.resids, self.decimal_resids)
-
- decimal_aic_R = DECIMAL_4
- def test_aic_R(self):
- # R includes the estimation of the scale as a lost dof
- # Doesn't with Gamma though
- if self.res1.scale != 1:
- dof = 2
- else:
- dof = 0
- assert_almost_equal(self.res1.aic+dof, self.res2.aic_R,
- self.decimal_aic_R)
-
- decimal_aic_Stata = DECIMAL_4
- def test_aic_Stata(self):
- # Stata uses the below llf for aic definition for these families
- if isinstance(self.res1.model.family, (sm.families.Gamma,
- sm.families.InverseGaussian)):
- llf = self.res1.model.family.loglike(self.res1.model.endog,
- self.res1.mu, scale=1)
- aic = (-2*llf+2*(self.res1.df_model+1))/self.res1.nobs
- else:
- aic = self.res1.aic/self.res1.nobs
- assert_almost_equal(aic, self.res2.aic_Stata, self.decimal_aic_Stata)
-
- decimal_deviance = DECIMAL_4
- def test_deviance(self):
- assert_almost_equal(self.res1.deviance, self.res2.deviance,
- self.decimal_deviance)
-
- decimal_scale = DECIMAL_4
- def test_scale(self):
- assert_almost_equal(self.res1.scale, self.res2.scale,
- self.decimal_scale)
-
- decimal_loglike = DECIMAL_4
- def test_loglike(self):
- # Stata uses the below llf for these families
- # We differ with R for them
- if isinstance(self.res1.model.family, (sm.families.Gamma,
- sm.families.InverseGaussian)):
- llf = self.res1.model.family.loglike(self.res1.model.endog,
- self.res1.mu, scale=1)
- else:
- llf = self.res1.llf
- assert_almost_equal(llf, self.res2.llf, self.decimal_loglike)
-
- decimal_null_deviance = DECIMAL_4
- def test_null_deviance(self):
- assert_almost_equal(self.res1.null_deviance, self.res2.null_deviance,
- self.decimal_null_deviance)
-
- decimal_bic = DECIMAL_4
- def test_bic(self):
- assert_almost_equal(self.res1.bic, self.res2.bic_Stata,
- self.decimal_bic)
-
- def test_degrees(self):
- assert_equal(self.res1.model.df_resid,self.res2.df_resid)
-
- decimal_fittedvalues = DECIMAL_4
- def test_fittedvalues(self):
- assert_almost_equal(self.res1.fittedvalues, self.res2.fittedvalues,
- self.decimal_fittedvalues)
-
-class TestGlmGaussian(CheckModelResults):
- def __init__(self):
- '''
- Test Gaussian family with canonical identity link
- '''
- # Test Precisions
- self.decimal_resids = DECIMAL_3
- self.decimal_params = DECIMAL_2
- self.decimal_bic = DECIMAL_0
- self.decimal_bse = DECIMAL_3
-
- from scikits.statsmodels.datasets.longley import load
- self.data = load()
- self.data.exog = add_constant(self.data.exog)
- self.res1 = GLM(self.data.endog, self.data.exog,
- family=sm.families.Gaussian()).fit()
- from results.results_glm import Longley
- self.res2 = Longley()
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# Gauss = r.gaussian
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm, family=Gauss)
-# self.res2.resids = np.array(self.res2.resid)[:,None]*np.ones((1,5))
-# self.res2.null_deviance = 185008826 # taken from R. Rpy bug?
-
-class TestGaussianLog(CheckModelResults):
- def __init__(self):
- # Test Precision
- self.decimal_aic_R = DECIMAL_0
- self.decimal_aic_Stata = DECIMAL_2
- self.decimal_loglike = DECIMAL_0
- self.decimal_null_deviance = DECIMAL_1
-
- nobs = 100
- x = np.arange(nobs)
- np.random.seed(54321)
-# y = 1.0 - .02*x - .001*x**2 + 0.001 * np.random.randn(nobs)
- self.X = np.c_[np.ones((nobs,1)),x,x**2]
- self.lny = np.exp(-(-1.0 + 0.02*x + 0.0001*x**2)) +\
- 0.001 * np.random.randn(nobs)
-
- GaussLog_Model = GLM(self.lny, self.X, \
- family=sm.families.Gaussian(sm.families.links.log))
- self.res1 = GaussLog_Model.fit()
- from results.results_glm import GaussianLog
- self.res2 = GaussianLog()
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# GaussLogLink = r.gaussian(link = "log")
-# GaussLog_Res_R = RModel(self.lny, self.X, r.glm, family=GaussLogLink)
-# self.res2 = GaussLog_Res_R
-
-class TestGaussianInverse(CheckModelResults):
- def __init__(self):
- # Test Precisions
- self.decimal_bic = DECIMAL_1
- self.decimal_aic_R = DECIMAL_1
- self.decimal_aic_Stata = DECIMAL_3
- self.decimal_loglike = DECIMAL_1
- self.decimal_resids = DECIMAL_3
-
- nobs = 100
- x = np.arange(nobs)
- np.random.seed(54321)
- y = 1.0 + 2.0 * x + x**2 + 0.1 * np.random.randn(nobs)
- self.X = np.c_[np.ones((nobs,1)),x,x**2]
- self.y_inv = (1. + .02*x + .001*x**2)**-1 + .001 * np.random.randn(nobs)
- InverseLink_Model = GLM(self.y_inv, self.X,
- family=sm.families.Gaussian(sm.families.links.inverse_power))
- InverseLink_Res = InverseLink_Model.fit()
- self.res1 = InverseLink_Res
- from results.results_glm import GaussianInverse
- self.res2 = GaussianInverse()
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# InverseLink = r.gaussian(link = "inverse")
-# InverseLink_Res_R = RModel(self.y_inv, self.X, r.glm, family=InverseLink)
-# self.res2 = InverseLink_Res_R
-
-class TestGlmBinomial(CheckModelResults):
- def __init__(self):
- '''
- Test Binomial family with canonical logit link using star98 dataset.
- '''
- self.decimal_resids = DECIMAL_1
- self.decimal_bic = DECIMAL_2
-
- from scikits.statsmodels.datasets.star98 import load
- from results.results_glm import Star98
- data = load()
- data.exog = add_constant(data.exog)
- self.res1 = GLM(data.endog, data.exog, \
- family=sm.families.Binomial()).fit()
- #NOTE: if you want to replicate with RModel
- #res2 = RModel(data.endog[:,0]/trials, data.exog, r.glm,
- # family=r.binomial, weights=trials)
-
- self.res2 = Star98()
-
-#TODO:
-#Non-Canonical Links for the Binomial family require the algorithm to be
-#slightly changed
-#class TestGlmBinomialLog(CheckModelResults):
-# pass
-
-#class TestGlmBinomialLogit(CheckModelResults):
-# pass
-
-#class TestGlmBinomialProbit(CheckModelResults):
-# pass
-
-#class TestGlmBinomialCloglog(CheckModelResults):
-# pass
-
-#class TestGlmBinomialPower(CheckModelResults):
-# pass
-
-#class TestGlmBinomialLoglog(CheckModelResults):
-# pass
-
-#class TestGlmBinomialLogc(CheckModelResults):
-#TODO: need include logc link
-# pass
-
-class TestGlmBernoulli(CheckModelResults):
- def __init__(self):
- from results.results_glm import Lbw
- self.res2 = Lbw()
- self.res1 = GLM(self.res2.endog, self.res2.exog,
- family=sm.families.Binomial()).fit()
-
-#class TestGlmBernoulliIdentity(CheckModelResults):
-# pass
-
-#class TestGlmBernoulliLog(CheckModelResults):
-# pass
-
-#class TestGlmBernoulliProbit(CheckModelResults):
-# pass
-
-#class TestGlmBernoulliCloglog(CheckModelResults):
-# pass
-
-#class TestGlmBernoulliPower(CheckModelResults):
-# pass
-
-#class TestGlmBernoulliLoglog(CheckModelResults):
-# pass
-
-#class test_glm_bernoulli_logc(CheckModelResults):
-# pass
-
-class TestGlmGamma(CheckModelResults):
-
- def __init__(self):
- '''
- Tests Gamma family with canonical inverse link (power -1)
- '''
- # Test Precisions
- self.decimal_aic_R = -1 #TODO: off by about 1, we are right with Stata
- self.decimal_resids = DECIMAL_2
-
- from scikits.statsmodels.datasets.scotland import load
- from results.results_glm import Scotvote
- data = load()
- data.exog = add_constant(data.exog)
- res1 = GLM(data.endog, data.exog, \
- family=sm.families.Gamma()).fit()
- self.res1 = res1
-# res2 = RModel(data.endog, data.exog, r.glm, family=r.Gamma)
- res2 = Scotvote()
- res2.aic_R += 2 # R doesn't count degree of freedom for scale with gamma
- self.res2 = res2
-
-class TestGlmGammaLog(CheckModelResults):
- def __init__(self):
- # Test Precisions
- self.decimal_resids = DECIMAL_3
- self.decimal_aic_R = DECIMAL_0
- self.decimal_fittedvalues = DECIMAL_3
-
- from results.results_glm import CancerLog
- res2 = CancerLog()
- self.res1 = GLM(res2.endog, res2.exog,
- family=sm.families.Gamma(link=sm.families.links.log)).fit()
- self.res2 = res2
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm,
-# family=r.Gamma(link="log"))
-# self.res2.null_deviance = 27.92207137420696 # From R (bug in rpy)
-# self.res2.bic = -154.1582089453923 # from Stata
-
-class TestGlmGammaIdentity(CheckModelResults):
- def __init__(self):
- # Test Precisions
- self.decimal_resids = -100 #TODO Very off from Stata?
- self.decimal_params = DECIMAL_2
- self.decimal_aic_R = DECIMAL_0
- self.decimal_loglike = DECIMAL_1
-
- from results.results_glm import CancerIdentity
- res2 = CancerIdentity()
- self.res1 = GLM(res2.endog, res2.exog,
- family=sm.families.Gamma(link=sm.families.links.identity)).fit()
- self.res2 = res2
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm,
-# family=r.Gamma(link="identity"))
-# self.res2.null_deviance = 27.92207137420696 # from R, Rpy bug
-
-class TestGlmPoisson(CheckModelResults):
- def __init__(self):
- '''
- Tests Poisson family with canonical log link.
-
- Test results were obtained by R.
- '''
- from results.results_glm import Cpunish
- from scikits.statsmodels.datasets.cpunish import load
- self.data = load()
- self.data.exog[:,3] = np.log(self.data.exog[:,3])
- self.data.exog = add_constant(self.data.exog)
- self.res1 = GLM(self.data.endog, self.data.exog,
- family=sm.families.Poisson()).fit()
- self.res2 = Cpunish()
-
-#class TestGlmPoissonIdentity(CheckModelResults):
-# pass
-
-#class TestGlmPoissonPower(CheckModelResults):
-# pass
-
-class TestGlmInvgauss(CheckModelResults):
- def __init__(self):
- '''
- Tests the Inverse Gaussian family in GLM.
-
- Notes
- -----
- Used the rndivgx.ado file provided by Hardin and Hilbe to
- generate the data. Results are read from model_results, which
- were obtained by running R_ig.s
- '''
- # Test Precisions
- self.decimal_aic_R = DECIMAL_0
- self.decimal_loglike = DECIMAL_0
-
- from results.results_glm import InvGauss
- res2 = InvGauss()
- res1 = GLM(res2.endog, res2.exog, \
- family=sm.families.InverseGaussian()).fit()
- self.res1 = res1
- self.res2 = res2
-
-class TestGlmInvgaussLog(CheckModelResults):
- def __init__(self):
- # Test Precisions
- self.decimal_aic_R = -10 # Big difference vs R.
- self.decimal_resids = DECIMAL_3
-
- from results.results_glm import InvGaussLog
- res2 = InvGaussLog()
- self.res1 = GLM(res2.endog, res2.exog,
- family=sm.families.InverseGaussian(link=\
- sm.families.links.log)).fit()
- self.res2 = res2
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm,
-# family=r.inverse_gaussian(link="log"))
-# self.res2.null_deviance = 335.1539777981053 # from R, Rpy bug
-# self.res2.llf = -12162.72308 # from Stata, R's has big rounding diff
-
-class TestGlmInvgaussIdentity(CheckModelResults):
- def __init__(self):
- # Test Precisions
- self.decimal_aic_R = -10 #TODO: Big difference vs R
- self.decimal_fittedvalues = DECIMAL_3
- self.decimal_params = DECIMAL_3
-
- from results.results_glm import Medpar1
- data = Medpar1()
- self.res1 = GLM(data.endog, data.exog,
- family=sm.families.InverseGaussian(link=\
- sm.families.links.identity)).fit()
- from results.results_glm import InvGaussIdentity
- self.res2 = InvGaussIdentity()
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm,
-# family=r.inverse_gaussian(link="identity"))
-# self.res2.null_deviance = 335.1539777981053 # from R, Rpy bug
-# self.res2.llf = -12163.25545 # from Stata, big diff with R
-
-class TestGlmNegbinomial(CheckModelResults):
- def __init__(self):
- '''
- Test Negative Binomial family with canonical log link
- '''
- # Test Precision
- self.decimal_resid = DECIMAL_1
- self.decimal_params = DECIMAL_3
- self.decimal_resids = -1 # 1 % mismatch at 0
- self.decimal_fittedvalues = DECIMAL_1
-
- from scikits.statsmodels.datasets.committee import load
- self.data = load()
- self.data.exog[:,2] = np.log(self.data.exog[:,2])
- interaction = self.data.exog[:,2]*self.data.exog[:,1]
- self.data.exog = np.column_stack((self.data.exog,interaction))
- self.data.exog = add_constant(self.data.exog)
- self.res1 = GLM(self.data.endog, self.data.exog,
- family=sm.families.NegativeBinomial()).fit()
- from results.results_glm import Committee
- res2 = Committee()
- res2.aic_R += 2 # They don't count a degree of freedom for the scale
- self.res2 = res2
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# r.library('MASS') # this doesn't work when done in rmodelwrap?
-# self.res2 = RModel(self.data.endog, self.data.exog, r.glm,
-# family=r.negative_binomial(1))
-# self.res2.null_deviance = 27.8110469364343
-
-#class TestGlmNegbinomial_log(CheckModelResults):
-# pass
-
-#class TestGlmNegbinomial_power(CheckModelResults):
-# pass
-
-#class TestGlmNegbinomial_nbinom(CheckModelResults):
-# pass
-
-#NOTE: hacked together version to test poisson offset
-class TestGlmPoissonOffset(CheckModelResults):
- @classmethod
- def setupClass(cls):
- from results.results_glm import Cpunish
- from scikits.statsmodels.datasets.cpunish import load
- data = load()
- data.exog[:,3] = np.log(data.exog[:,3])
- data.exog = add_constant(data.exog)
- exposure = [100] * len(data.endog)
- cls.res1 = GLM(data.endog, data.exog, family=sm.families.Poisson(),
- exposure=exposure).fit()
- cls.res1.params[-1] += np.log(100) # add exposure back in to param
- # to make the results the same
- cls.res2 = Cpunish()
-
-def test_prefect_pred():
- cur_dir = os.path.dirname(os.path.abspath(__file__))
- iris = np.genfromtxt(os.path.join(cur_dir, 'results', 'iris.csv'),
- delimiter=",", skip_header=1)
- y = iris[:,-1]
- X = iris[:,:-1]
- X = X[y != 2]
- y = y[y != 2]
- X = add_constant(X, prepend=True)
- glm = GLM(y, X, family=sm.families.Binomial())
- assert_raises(PerfectSeparationError, glm.fit)
-
-
-def test_attribute_writable_resettable():
- """
- Regression test for mutables and class constructors.
- """
- data = sm.datasets.longley.load()
- endog, exog = data.endog, data.exog
- glm_model = sm.GLM(endog, exog)
- assert_equal(glm_model.family.link.power, 1.0)
- glm_model.family.link.power = 2.
- assert_equal(glm_model.family.link.power, 2.0)
- glm_model2 = sm.GLM(endog, exog)
- assert_equal(glm_model2.family.link.power, 1.0)
-
-if __name__=="__main__":
- #run_module_suite()
- #taken from Fernando Perez:
- import nose
- nose.runmodule(argv=[__file__,'-vvs','-x','--pdb'],
- exit=False)
diff --git a/statsmodels/scikits/statsmodels/graphics/__init__.py b/statsmodels/scikits/statsmodels/graphics/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/graphics/correlation.py b/statsmodels/scikits/statsmodels/graphics/correlation.py
deleted file mode 100644
index db6b76d..0000000
--- a/statsmodels/scikits/statsmodels/graphics/correlation.py
+++ /dev/null
@@ -1,156 +0,0 @@
-'''correlation plots
-
-Author: Josef Perktold
-License: BSD-3
-
-example for usage with different options in
-statsmodels\sandbox\examples\thirdparty\ex_ratereturn.py
-
-'''
-import numpy as np
-
-try:
- import matplotlib.pyplot as plt
-except ImportError:
- print "plots not available without matplotlib"
-
-
-def plot_corr(dcorr, xnames=None, ynames=None, title=None, normcolor=False,
- ax=None):
- '''plot correlation of many variables in a tight color grid
-
- This creates a new figure
-
- Parameters
- ----------
- dcorr : ndarray
- correlation matrix
- xnames : None or list of strings
- labels for x axis. If None, then the matplotlib defaults are used. If
- it is an empty list, [], then not ticks and labels are added.
- ynames : None or list of strings
- labels for y axis. If None, then the matplotlib defaults are used. If
- it is an empty list, [], then not ticks and labels are added.
- title : None or string
- title for figure. If None, then default is added. If title='', then no
- title is added
- normcolor : bool
- If false (default), then the color coding range corresponds to the
- lowest and highest correlation (automatic choice by matplotlib).
- If true, then the color range is normalized to (-1, 1). If this is a
- tuple of two numbers, then they define the range for the color bar.
- ax: None or axis instance
- If ax is None, then a figure is created. If an axis instance is given,
- then only the main plot but not the colorbar is created.
-
- Returns
- -------
- fig_or_ax : matplotlib figure or axis instance
-
-
- '''
-
- nvars = dcorr.shape[0]
- #dcorr[range(nvars), range(nvars)] = np.nan
-
- if (ynames is None) and (not xnames is None):
- ynames = xnames
- if title is None:
- title = 'Correlation Matrix'
- if isinstance(normcolor, tuple):
- vmin, vmax = normcolor
- elif normcolor:
- vmin, vmax = -1.0, 1.0
- else:
- vmin, vmax = None, None
-
- if ax is None:
- fig = plt.figure()
- ax = fig.add_subplot(111)
- axis = False
- else:
- axis = True
-
- axim = ax.imshow(dcorr, cmap=plt.cm.jet, interpolation='nearest',
- extent=(0,30,0,30), vmin=vmin, vmax=vmax)
- if ynames:
- ax.set_yticks(np.arange(nvars)+0.5)
- ax.set_yticklabels(ynames[::-1], minor=True, fontsize='small',
- horizontalalignment='right')
- elif ynames == []:
- ax.set_yticks([])
-
- if xnames:
- ax.set_xticks(np.arange(nvars)+0.5)
- ax.set_xticklabels(xnames, minor=True, fontsize='small',rotation=45,
- horizontalalignment='right')
- #some keywords don't work in previous line ?
- #TODO: check if this is redundant
- plt.setp( ax.get_xticklabels(), fontsize='small', rotation=45,
- horizontalalignment='right')
- elif xnames == []:
- ax.set_xticks([])
-
- if not title == '':
- ax.set_title(title)
-
- if axis is None:
- fig.colorbar(axim)
- return fig
- else:
- return ax
-
-def plot_corr_grid(dcorrs, titles=None, ncols=2, normcolor=False, xnames=None,
- ynames=None):
- '''create a grid of correlation plots
-
- Parameters
- ----------
- dcorrs : list, iterable of ndarrays
- list of correlation matrices
- titles : None or iterable of strings
- list of titles for the subplots
- ncols : int
- number of columns in the subplot grid. Layout is designed for two or
- three columns.
- normcolor : bool or tuple
- If false (default), then the color coding range corresponds to the
- lowest and highest correlation (automatic choice by matplotlib).
- If true, then the color range is normalized to (-1, 1). If this is a
- tuple of two numbers, then they define the range for the color bar.
- xnames : None or list of strings
- labels for x axis. If None, then the matplotlib defaults are used. If
- it is an empty list, [], then not ticks and labels are added.
- ynames : None or list of strings
- labels for y axis. If None, then the matplotlib defaults are used. If
- it is an empty list, [], then not ticks and labels are added.
-
- Returns
- -------
- fig : matplotlib figure instance
-
- Notes
- -----
- possible extension for options, suppress labels except first column and
- last row.
- '''
-
- if not titles:
- titles = [None]*len(dcorrs)
- nrows = int(np.ceil(len(dcorrs) / float(ncols)))
-
- fig = plt.figure()
- for i, c in enumerate(dcorrs):
- ax = fig.add_subplot(nrows, ncols, i+1)
- plot_corr(c, xnames=xnames, ynames=ynames, title=titles[i],
- normcolor=normcolor, ax=ax)
-
- #images = [c for ax in fig.axes for c in ax.get_children() if isinstance(c, mpl.image.AxesImage)]
- images = [i for ax in fig.axes for i in ax.images ]
- fig.subplots_adjust(bottom=0.1, left=0.09, right=0.9, top=0.9)
- if ncols <=2:
- cax = fig.add_axes([0.9, 0.1, 0.025, 0.8])
- else:
- cax = fig.add_axes([0.92, 0.1, 0.025, 0.8])
- fig.colorbar(images[0], cax=cax)
- return fig
diff --git a/statsmodels/scikits/statsmodels/graphics/plot_grids.py b/statsmodels/scikits/statsmodels/graphics/plot_grids.py
deleted file mode 100644
index 21f0c58..0000000
--- a/statsmodels/scikits/statsmodels/graphics/plot_grids.py
+++ /dev/null
@@ -1,129 +0,0 @@
-'''create scatterplot with confidence ellipsis
-
-Author: Josef Perktold
-License: BSD-3
-
-TODO: update script to use sharex, sharey, and visible=False
- see http://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label
- for sharex I need to have the ax of the last_row when editing the earlier
- rows. Or you axes_grid1, imagegrid
- http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html
-'''
-
-import numpy as np
-from scipy import stats
-import matplotlib as mpl
-import matplotlib.pyplot as plt
-import matplotlib.ticker as ticker
-
-def make_ellipse(mean, cov, ax, level=0.95, color=None):
- v, w = np.linalg.eigh(cov)
- u = w[0] / np.linalg.norm(w[0])
- angle = np.arctan(u[1]/u[0])
- angle = 180 * angle / np.pi # convert to degrees
- v = 2 * np.sqrt(v * stats.chi2.ppf(level, 2)) #get size corresponding to level
- ell = mpl.patches.Ellipse(mean[:2], v[0], v[1], 180 + angle,
- facecolor='none',
- edgecolor=color,
- #ls='dashed', #for debugging
- lw=1.5)
- ell.set_clip_box(ax.bbox)
- ell.set_alpha(0.5)
- ax.add_artist(ell)
-
-
-def scatter_ellipse(data, level=0.9, varnames=None, ell_kwds=None,
- plot_kwds=None, add_titles=False, keep_ticks=False):
- '''create a grid of scatter plots with confidence ellipses
-
- ell_kwds, plot_kdes not used yet
-
- looks ok with 5 or 6 variables, too crowded with 8, too empty with 1
-
- '''
- data = np.asanyarray(data) #needs mean and cov
- nvars = data.shape[1]
- if varnames is None:
- #assuming single digit, nvars<=10 else use 'var%2d'
- varnames = ['var%d' % i for i in range(nvars)]
-
- dmean = data.mean(0)
- dcov = np.cov(data, rowvar=0)
-
- fig = plt.figure()
-
- for i in range(1, nvars):
- #print '---'
- ax_last=None
- for j in range(i):
- #print i,j, i*(nvars-1)+j+1
- ax = fig.add_subplot(nvars-1, nvars-1, (i-1)*(nvars-1)+j+1)
-## #sharey=ax_last) #sharey doesn't allow empty ticks?
-## if j == 0:
-## print 'new ax_last', j
-## ax_last = ax
-## ax.set_ylabel(varnames[i])
- #TODO: make sure we have same xlim and ylim
-
- formatter = ticker.FormatStrFormatter('% 3.1f')
- ax.yaxis.set_major_formatter(formatter)
- ax.xaxis.set_major_formatter(formatter)
-
- idx = np.array([j,i])
- ax.plot(*data[:,idx].T, ls='none', marker='.', color='k', alpha=0.5)
-
- if np.isscalar(level):
- level = [level]
- for alpha in level:
- make_ellipse(dmean[idx], dcov[idx[:,None], idx], ax, level=alpha,
- color='k')
-
- if add_titles:
- ax.set_title('%s-%s' % (varnames[i], varnames[j]))
- if not ax.is_first_col():
- if not keep_ticks:
- ax.set_yticks([])
- else:
- ax.yaxis.set_major_locator(ticker.MaxNLocator(3))
- else:
- ax.set_ylabel(varnames[i])
- if ax.is_last_row():
- ax.set_xlabel(varnames[j])
- else:
- if not keep_ticks:
- ax.set_xticks([])
- else:
- ax.xaxis.set_major_locator(ticker.MaxNLocator(3))
-
- dcorr = np.corrcoef(data, rowvar=0)
- dc = dcorr[idx[:,None], idx]
- xlim = ax.get_xlim()
- ylim = ax.get_ylim()
-## xt = xlim[0] + 0.1 * (xlim[1] - xlim[0])
-## yt = ylim[0] + 0.1 * (ylim[1] - ylim[0])
-## if dc[1,0] < 0 :
-## yt = ylim[0] + 0.1 * (ylim[1] - ylim[0])
-## else:
-## yt = ylim[1] - 0.2 * (ylim[1] - ylim[0])
- yrangeq = ylim[0] + 0.4 * (ylim[1] - ylim[0])
- if dc[1,0] < -0.25 or (dc[1,0] < 0.25 and dmean[idx][1] > yrangeq):
- yt = ylim[0] + 0.1 * (ylim[1] - ylim[0])
- else:
- yt = ylim[1] - 0.2 * (ylim[1] - ylim[0])
- xt = xlim[0] + 0.1 * (xlim[1] - xlim[0])
- ax.text(xt, yt, '$\\rho=%0.2f$'% dc[1,0])
-
- import matplotlib.ticker as mticker
-
- for ax in fig.axes:
- if ax.is_last_row(): # or ax.is_first_col():
- ax.xaxis.set_major_locator(mticker.MaxNLocator(3))
- if ax.is_first_col():
- ax.yaxis.set_major_locator(mticker.MaxNLocator(3))
-
- return fig
-
-if __name__ == '__main__':
- pass
-
-
diff --git a/statsmodels/scikits/statsmodels/graphics/qqplot.py b/statsmodels/scikits/statsmodels/graphics/qqplot.py
deleted file mode 100644
index 4355492..0000000
--- a/statsmodels/scikits/statsmodels/graphics/qqplot.py
+++ /dev/null
@@ -1,214 +0,0 @@
-import numpy as np
-from scipy import stats
-from scikits.statsmodels.regression.linear_model import OLS
-from scikits.statsmodels.tools.tools import add_constant
-
-def qqplot(data, dist=stats.norm, distargs=(), a=0, loc=0, scale=1, fit=False,
- line=False):
- """
- qqplot of the quantiles of x versus the quantiles/ppf of a distribution.
-
- Can take arguments specifying the parameters for dist or fit them
- automatically. (See fit under kwargs.)
-
- Parameters
- ----------
- data : array-like
- 1d data array
- dist : A scipy.stats or scikits.statsmodels distribution
- Compare x against dist. The default
- is scipy.stats.distributions.norm (a standard normal).
- distargs : tuple
- A tuple of arguments passed to dist to specify it fully
- so dist.ppf may be called.
- loc : float
- Location parameter for dist
- a : float
- Offset for the plotting position of an expected order statistic, for
- example. The plotting positions are given by (i - a)/(nobs - 2*a + 1)
- for i in range(0,nobs+1)
- scale : float
- Scale parameter for dist
- fit : boolean
- If fit is false, loc, scale, and distargs are passed to the
- distribution. If fit is True then the parameters for dist
- are fit automatically using dist.fit. The quantiles are formed
- from the standardized data, after subtracting the fitted loc
- and dividing by the fitted scale.
- line : str {'45', 's', 'r', q'} or None
- Options for the reference line to which the data is compared.
- '45' - 45-degree line
- 's' - standardized line, the expected order statistics are scaled by the
- standard deviation of the given sample and have the mean added to them
- 'r' - A regression line is fit
- 'q' - A line is fit through the quartiles.
- None = by default no reference line is added to the plot.
- If True a reference line is drawn on the graph. The default is to
- fit a line via OLS regression.
-
- Returns
- -------
- matplotlib figure.
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> from matplotlib import pyplot as plt
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> mod_fit = sm.OLS(data.endog, data.exog).fit()
- >>> res = mod_fit.resid
- >>> fig = sm.qqplot(res)
- >>> plt.show()
- >>> plt.close(fig)
- >>> #qqplot against quantiles of t distribution with 4 df
- >>> import scipy.stats as stats
- >>> fig = sm.qqplot(res, stats.t, distargs=(4,))
- >>> plt.show()
- >>> plt.close(fig)
- >>> #qqplot against same as above, but with mean 3 and sd 10
- >>> fig = sm.qqplot(res, stats.t, distargs=(4,), loc=3, scale=10)
- >>> plt.show()
- >>> plt.close(fig)
- >>> #automatically determine parameters for t dist
- >>> #including the loc and scale
- >>> fig = sm.qqplot(res, stats.t, fit=True, line='45')
- >>> plt.show()
- >>> plt.close(fig)
-
- Notes
- -----
- Depends on matplotlib. If fit=True then the parameters are fit using
- the distribution's fit( ) method.
-
- """
- try:
- from matplotlib import pyplot as plt
- except:
- raise ImportError("matplotlib not installed")
-
- if not hasattr(dist, 'ppf'):
- raise ValueError("distribution must have a ppf method")
-
- nobs = data.shape[0]
-
- if fit:
- fit_params = dist.fit(data)
- loc = fit_params[-2]
- scale = fit_params[-1]
- if len(fit_params)>2:
- dist = dist(*fit_params[:-2], loc = 0, scale = 1)
- else:
- dist = dist(loc=0, scale=1)
- elif distargs or loc != 0 or scale != 1:
- dist = dist(*distargs, **dict(loc=loc, scale=scale))
-
-
- try:
- theoretical_quantiles = dist.ppf(plotting_pos(nobs, a))
- except:
- raise ValueError('distribution requires more parameters')
-
- sample_quantiles = np.array(data, copy=True)
- sample_quantiles.sort()
- if fit:
- sample_quantiles -= loc
- sample_quantiles /= scale
-
-
- ax = plt.gca()
- ax.set_xmargin(0.02)
- plt.plot(theoretical_quantiles, sample_quantiles, 'bo')
- if line:
- if line not in ['r','q','45','s']:
- msg = "%s option for line not understood" % line
- raise ValueError(msg)
- qqline(ax, line, theoretical_quantiles, sample_quantiles, dist)
- xlabel = "Theoretical Quantiles"
- plt.xlabel(xlabel)
- ylabel = "Sample Quantiles"
- plt.ylabel(ylabel)
-
- return plt.gcf()
-
-def qqline(ax, line, x=None, y=None, dist=None, fmt='r-'):
- """
- Plot a reference line for a qqplot.
-
- Parameters
- ----------
- ax : matplotlib axes instance
- The axes on which to plot the line
- line : str {'45','r','s','q'}
- Options for the reference line to which the data is compared.
- '45' - 45-degree line
- 's' - standardized line, the expected order statistics are scaled by the
- standard deviation of the given sample and have the mean added to them
- 'r' - A regression line is fit
- 'q' - A line is fit through the quartiles.
- None - By default no reference line is added to the plot.
- x : array
- X data for plot. Not needed if line is '45'.
- y : array
- Y data for plot. Not needed if line is '45'.
- dist : scipy.stats.distribution
- A scipy.stats distribution, needed if line is 'q'.
-
- Notes
- -----
- There is no return value. The line is plotted on the given `ax`.
- """
- if line == '45':
- end_pts = zip(ax.get_xlim(), ax.get_ylim())
- end_pts[0] = max(end_pts[0])
- end_pts[1] = min(end_pts[1])
- ax.plot(end_pts, end_pts, fmt)
- return # does this have any side effects?
- if x is None and y is None:
- raise ValueError("If line is not 45, x and y cannot be None.")
- elif line == 'r':
- # could use ax.lines[0].get_xdata(), get_ydata(),
- # but don't know axes are 'clean'
- y = OLS(y, add_constant(x)).fit().fittedvalues
- ax.plot(x,y,fmt)
- elif line == 's':
- m,b = y.std(), y.mean()
- ref_line = x*m + b
- ax.plot(x, ref_line, fmt)
- elif line == 'q':
- q25 = stats.scoreatpercentile(y, 25)
- q75 = stats.scoreatpercentile(y, 75)
- theoretical_quartiles = dist.ppf([.25,.75])
- m = (q75 - q25) / np.diff(theoretical_quartiles)
- b = q25 - m*theoretical_quartiles[0]
- ax.plot(x, m*x + b, fmt)
-
-
-#about 10x faster than plotting_position in sandbox and mstats
-def plotting_pos(nobs, a):
- """
- Generates sequence of plotting positions
-
- Parameters
- ----------
- nobs : int
- Number of probability points to plot
- a : float
- Offset for the plotting position of an expected order statistic, for
- example.
-
- Returns
- -------
- plotting_positions : array
- The plotting positions
-
- Notes
- -----
- The plotting positions are given by (i - a)/(nobs - 2*a + 1) for i in
- range(0,nobs+1)
-
- See also
- --------
- scipy.stats.mstats.plotting_positions
- """
- return (np.arange(1.,nobs+1) - a)/(nobs- 2*a + 1)
diff --git a/statsmodels/scikits/statsmodels/graphics/regressionplots.py b/statsmodels/scikits/statsmodels/graphics/regressionplots.py
deleted file mode 100644
index fe9ff2b..0000000
--- a/statsmodels/scikits/statsmodels/graphics/regressionplots.py
+++ /dev/null
@@ -1,546 +0,0 @@
-'''Partial Regression plot and residual plots to find misspecification
-
-
-Author: Josef Perktold
-License: BSD-3
-Created: 2011-01-23
-
-update
-2011-06-05 : start to convert example to usable functions
-2011-10-27 : docstrings
-
-'''
-
-import numpy as np
-
-from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
-def plot_fit(res, exog_idx, y_true=None, ax=None):
- '''plot fit against one regressor
-
- This creates one graph with the scatterplot of observed values compared to
- fitted values.
-
- Parameters
- ----------
- res : result instance
- result instance with resid, model.endog and model.exog as attributes
- exog_idx : int
- index of regressor in exog matrix
- y_true : array_like
- (optional) If this is not None, then the array is added to the plot
- ax : None or matplotlib axis instance
- If ax is given then the plot is attached to it, otherwise a new figure
- is created and returned.
-
- Returns
- -------
- fig_or_ax : matplotlib figure or axis instance
- If ax was given as parameter then the plot is attached to it, otherwise
- a new figure is created. Either the figure or the given axis is returned.
-
- Notes
- -----
- This is currently very simple, no options or varnames yet.
-
- '''
- import matplotlib.pyplot as plt
-
- #maybe add option for wendog, wexog
- y = res.model.endog
- x1 = res.model.exog[:, exog_idx]
- x1_argsort = np.argsort(x1)
- y = y[x1_argsort]
- x1 = x1[x1_argsort]
-
- if ax is None:
- fig = plt.figure()
- ax = fig.add_subplot(111)
- fig_or_ax = fig
- else:
- fig_or_ax = ax
-
- ax.plot(x1, y, 'bo')
- if not y_true is None:
- ax.plot(x1, y_true[x1_argsort], 'b-')
- title = 'fitted versus regressor %d, blue: true, black: OLS' % exog_idx
- else:
- title = 'fitted versus regressor %d, blue: observed, black: OLS' % exog_idx
-
- prstd, iv_l, iv_u = wls_prediction_std(res)
- ax.plot(x1, res.fittedvalues[x1_argsort], 'k-') #'k-o')
- #plt.plot(x1, iv_u, 'r--')
- #plt.plot(x1, iv_l, 'r--')
- ax.fill_between(x1, iv_l[x1_argsort], iv_u[x1_argsort], alpha=0.1, color='k')
- ax.set_title(title)
-
- return fig_or_ax
-
-
-
-
-def plot_regress_exog(res, exog_idx):
- '''plot regression results against one regressor
-
- This plots four graphs in a 2 by 2 figure: 'endog versus exog',
- 'residuals versus exog', 'fitted versus exog' and
- 'fitted plus residual versus exog'
-
- Parameters
- ----------
- res : result instance
- result instance with resid, model.endog and model.exog as attributes
- exog_idx : int
- index of regressor in exog matrix
-
- Returns
- -------
- fig : matplotlib figure instance
-
- Notes
- -----
- This is currently very simple, no options or varnames yet.
-
- '''
-
- import matplotlib.pyplot as plt
-
- #maybe add option for wendog, wexog
- #y = res.endog
- x1 = res.model.exog[:,exog_idx]
-
-
- fig = plt.figure()
-
- ax = fig.add_subplot(2,2,1)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.model.endog, 'o')
- ax.set_title('endog versus exog', fontsize='small')# + namestr)
-
- ax = fig.add_subplot(2,2,2)
- #namestr = ' for %s' % self.name if self.name else ''
- ax.plot(x1, res.resid, 'o')
- ax.axhline(y=0)
- ax.set_title('residuals versus exog', fontsize='small')# + namestr)
-
- ax = fig.add_subplot(2,2,3)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.fittedvalues, 'o')
- ax.set_title('Fitted versus exog', fontsize='small')# + namestr)
-
- ax = fig.add_subplot(2,2,4)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.fittedvalues + res.resid, 'o')
- ax.set_title('Fitted plus residuals versus exog', fontsize='small')# + namestr)
-
- return fig
-
-def _partial_regression(endog, exog_i, exog_others):
- '''partial regression
-
- regress endog on exog_i conditional on exog_others
-
- uses OLS
-
- Parameters
- ----------
- endog : array_like
- exog : array_like
- exog_others : array_like
-
- Returns
- -------
- res1c : OLS results instance
-
- (res1a, res1b) : tuple of OLS results instances
- results from regression of endog on exog_others and of exog_i on
- exog_others
-
- '''
- res1a = sm.OLS(endog, exog_others).fit()
- res1b = sm.OLS(exog_i, exog_others).fit()
- res1c = sm.OLS(res1a.resid, res1b.resid).fit()
- return res1c, (res1a, res1b)
-
-
-def plot_partregress_ax(ax, endog, exog_i, exog_others, varname='',
- title_fontsize=None):
- '''partial regression plot attached to axis
-
- Parameters
- ----------
- ax : matplotlib axis instance
- endog : ndarray
- endogenous or response variable
- exog_i : ndarray
- exogenous, explanatory variable
- exog_others : ndarray
- other exogenous, explanatory variables, the effect of these variables
- will be removed by OLS regression
-
- varname : str
- name of the variable used in the title
-
- Return
- ------
- ax : matplotlib axis instance with attached plot
- TODO: this should change ?
-
-
- '''
-
- #namestr = ' for %s' % self.name if self.name else ''
- res1a = sm.OLS(endog, exog_others).fit()
- res1b = sm.OLS(exog_i, exog_others).fit()
- plt.plot(res1b.resid, res1a.resid, 'o')
- res1c = sm.OLS(res1a.resid, res1b.resid).fit()
- plt.plot(res1b.resid, res1c.fittedvalues, '-', color='k')
- ax.set_title('Partial Regression plot %s' % varname,
- fontsize=title_fontsize)# + namestr)
- return ax
-
-
-def plot_partregress(endog, exog, exog_idx=None, grid=None):
- '''plot partial regression for a set of regressors
-
- Parameters
- ----------
- endog : ndarray
- endogenous or response variable
- exog : ndarray
- exogenous, regressor variables
- exog_idx : None or list of int
- (column) indices of the exog used in the plot
- grid : None or tuple of int (nrows, ncols)
- If grid is given, then it is used for the arrangement of the subplots.
- If grid is None, then ncol is one, if there are only 2 subplots, and
- the number of columns is two otherwise.
-
- Return
- ------
- fig : matplotlib figure instance
-
-
- Notes
- -----
- A subplot is created for each explanatory variable given by exog_idx.
- The partial regression plot shows the relationship between the response
- and the given explanatory variable after removing the effect of all other
- explanatory variables in exog.
-
-
- See Also
- --------
- plot_partregress_ax
- plot_ccpr
-
-
- References
- ----------
- see http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/partregr.htm
-
- '''
-
- import scikits.statsmodels.api as sm #import only OLS and add_constant
-
- #maybe add option for using wendog, wexog instead
- y = endog
-
- if not grid is None:
- nrows, ncols = grid
- else:
- if len(exog_idx) > 2:
- nrows = int(np.ceil(len(exog_idx)/2.))
- ncols = 2
- title_fontsize = 'small'
- else:
- nrows = len(exog_idx)
- ncols = 1
- title_fontsize = None
-
- k_vars = exog.shape[1]
- #this function doesn't make sense if k_vars=1
-
- fig = plt.figure()
-
- for i,idx in enumerate(exog_idx):
- others = range(k_vars)
- others.pop(idx)
- exog_others = exog[:, others]
- ax = fig.add_subplot(nrows, ncols, i+1)
- #TODO: this should use the ax version
- #namestr = ' for %s' % self.name if self.name else ''
- res1a = sm.OLS(y, exog_others).fit()
- res1b = sm.OLS(exog[:, idx], exog_others).fit()
- plt.plot(res1b.resid, res1a.resid, 'o')
- res1c = sm.OLS(res1a.resid, res1b.resid).fit()
- plt.plot(res1b.resid, res1c.fittedvalues, '-', color='k')
- ax.set_title('Partial Regression plot %d' % idx,
- fontsize=title_fontsize)# + namestr)
-
- return fig
-
-
-
-def plot_ccpr_ax(ax, res, exog_idx=None):
- '''plot CCPR against 1 regressor
-
- Parameters
- ----------
- ax : matplotlib axis instance
- res : result instance
- uses exog and params of the result instance
- exog_idx : int
- (column) index of the exog used in the plot
-
- Return
- ------
- None : plot is attached to ax
- TODO: this should change ?
-
- See Also
- --------
- plot_ccpr
-
-
- References
- ----------
- see http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/ccpr.htm
-
- '''
-
- x1 = res.model.exog[:,exog_idx]
-
- #fig = plt.figure()
- #ax = fig.add_subplot(1,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- x1beta = x1*res.params[1]
- ax.plot(x1, x1beta + res.resid, 'o')
- ax.plot(x1, x1beta, '-')
- ax.set_title('X_%d beta_%d plus residuals versus exog (CCPR)' % (
- exog_idx, exog_idx))
-
- #return fig
-
-
-def plot_ccpr(res, exog_idx=None, grid=None):
- '''generate CCPR plot against a set of regressor
-
- Generates a CCPR (component and component-plus-residual) plot
-
- Parameters
- ----------
- res : result instance
- uses exog and params of the result instance
- exog_idx : None or list of int
- (column) indices of the exog used in the plot
- grid : None or tuple of int (nrows, ncols)
- If grid is given, then it is used for the arrangement of the subplots.
- If grid is None, then ncol is one, if there are only 2 subplots, and
- the number of columns is two otherwise.
-
- Return
- ------
- fig : matplotlib figure instance
-
-
- Notes
- -----
- Partial residual plots are formed as:
-
- Res + Betahat(i)*Xi versus Xi
-
- and CCPR adds
-
- Betahat(i)*Xi versus Xi
-
-
- See Also
- --------
- plot_ccpr_ax
-
-
- References
- ----------
- see http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/ccpr.htm
-
- '''
-
- if not grid is None:
- nrows, ncols = grid
- else:
- if len(exog_idx) > 2:
- nrows = int(np.ceil(len(exog_idx)/2.))
- ncols = 2
- else:
- nrows = len(exog_idx)
- ncols = 1
-
- fig = plt.figure()
-
- for i,idx in enumerate(exog_idx):
- ax = fig.add_subplot(nrows, ncols, i+1)
- plot_ccpr_ax(ax, res, exog_idx=idx)
-
- return fig
-
-import matplotlib.pyplot as plt
-class TestPlot(object):
-
- def __init__(self):
- self.setup() #temp: for testing without nose
-
- def setup(self):
- nsample = 100
- sig = 0.5
- x1 = np.linspace(0, 20, nsample)
- x2 = 5 + 3* np.random.randn(nsample)
- X = np.c_[x1, x2, np.sin(0.5*x1), (x2-5)**2, np.ones(nsample)]
- beta = [0.5, 0.5, 1, -0.04, 5.]
- y_true = np.dot(X, beta)
- y = y_true + sig * np.random.normal(size=nsample)
- exog0 = sm.add_constant(np.c_[x1, x2], prepend=False)
- res = sm.OLS(y, exog0).fit()
-
- self.res = res
-
- def test_plot_fit(self):
- fig = plot_fit(res, 0, y_true=None)
-
- x0 = res.model.exog[:, 0]
- yf = res.fittedvalues
- y = res.model.endog
-
- px1, px2 = fig.axes[0].get_lines()[0].get_data()
- np.testing.assert_equal(x0, px1)
- np.testing.assert_equal(y, px2)
-
- px1, px2 = fig.axes[0].get_lines()[1].get_data()
- np.testing.assert_equal(x0, px1)
- np.testing.assert_equal(yf, px2)
-
- plt.close(fig)
-
-
-
-if __name__ == '__main__':
- import numpy as np
- import scikits.statsmodels.api as sm
- import matplotlib.pyplot as plt
-
- from scikits.statsmodels.sandbox.regression.predstd import wls_prediction_std
-
- #example from tut.ols with changes
- #fix a seed for these examples
- np.random.seed(9876789)
-
- # OLS non-linear curve but linear in parameters
- # ---------------------------------------------
-
- nsample = 100
- sig = 0.5
- x1 = np.linspace(0, 20, nsample)
- x2 = 5 + 3* np.random.randn(nsample)
- X = np.c_[x1, x2, np.sin(0.5*x1), (x2-5)**2, np.ones(nsample)]
- beta = [0.5, 0.5, 1, -0.04, 5.]
- y_true = np.dot(X, beta)
- y = y_true + sig * np.random.normal(size=nsample)
-
- #estimate only linear function, misspecified because of non-linear terms
- exog0 = sm.add_constant(np.c_[x1, x2], prepend=False)
-
-# plt.figure()
-# plt.plot(x1, y, 'o', x1, y_true, 'b-')
-
- res = sm.OLS(y, exog0).fit()
- #print res.params
- #print res.bse
-
-
- plot_old = 0 #True
- if plot_old:
-
- #current bug predict requires call to model.results
- #print res.model.predict
- prstd, iv_l, iv_u = wls_prediction_std(res)
- plt.plot(x1, res.fittedvalues, 'r-o')
- plt.plot(x1, iv_u, 'r--')
- plt.plot(x1, iv_l, 'r--')
- plt.title('blue: true, red: OLS')
-
- plt.figure()
- plt.plot(res.resid, 'o')
- plt.title('Residuals')
-
- fig2 = plt.figure()
- ax = fig2.add_subplot(2,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.resid, 'o')
- ax.set_title('residuals versus exog')# + namestr)
- ax = fig2.add_subplot(2,1,2)
- plt.plot(x2, res.resid, 'o')
-
- fig3 = plt.figure()
- ax = fig3.add_subplot(2,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.fittedvalues, 'o')
- ax.set_title('Fitted values versus exog')# + namestr)
- ax = fig3.add_subplot(2,1,2)
- plt.plot(x2, res.fittedvalues, 'o')
-
- fig4 = plt.figure()
- ax = fig4.add_subplot(2,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- plt.plot(x1, res.fittedvalues + res.resid, 'o')
- ax.set_title('Fitted values plus residuals versus exog')# + namestr)
- ax = fig4.add_subplot(2,1,2)
- plt.plot(x2, res.fittedvalues + res.resid, 'o')
-
- # see http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/partregr.htm
- fig5 = plt.figure()
- ax = fig5.add_subplot(2,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- res1a = sm.OLS(y, exog0[:,[0,2]]).fit()
- res1b = sm.OLS(x1, exog0[:,[0,2]]).fit()
- plt.plot(res1b.resid, res1a.resid, 'o')
- res1c = sm.OLS(res1a.resid, res1b.resid).fit()
- plt.plot(res1b.resid, res1c.fittedvalues, '-')
- ax.set_title('Partial Regression plot')# + namestr)
- ax = fig5.add_subplot(2,1,2)
- #plt.plot(x2, res.fittedvalues + res.resid, 'o')
- res2a = sm.OLS(y, exog0[:,[0,1]]).fit()
- res2b = sm.OLS(x2, exog0[:,[0,1]]).fit()
- plt.plot(res2b.resid, res2a.resid, 'o')
- res2c = sm.OLS(res2a.resid, res2b.resid).fit()
- plt.plot(res2b.resid, res2c.fittedvalues, '-')
-
- # see http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/ccpr.htm
- fig6 = plt.figure()
- ax = fig6.add_subplot(2,1,1)
- #namestr = ' for %s' % self.name if self.name else ''
- x1beta = x1*res.params[1]
- x2beta = x2*res.params[2]
- plt.plot(x1, x1beta + res.resid, 'o')
- plt.plot(x1, x1beta, '-')
- ax.set_title('X_i beta_i plus residuals versus exog (CCPR)')# + namestr)
- ax = fig6.add_subplot(2,1,2)
- plt.plot(x2, x2beta + res.resid, 'o')
- plt.plot(x2, x2beta, '-')
-
-
- #print res.summary()
-
- doplots = 1
- if doplots:
- plot_fit(res, 0, y_true=None)
- plot_fit(res, 1, y_true=None)
- plot_partregress(y, exog0, exog_idx=[0,1])
- plot_regress_exog(res, exog_idx=[0])
- plot_ccpr(res, exog_idx=[0])
- plot_ccpr(res, exog_idx=[0,1])
-
- tp = TestPlot()
- tp.test_plot_fit()
-
- #plt.show()
-
diff --git a/statsmodels/scikits/statsmodels/graphics/tests/__init__.py b/statsmodels/scikits/statsmodels/graphics/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/graphics/tests/test_regressionplots.py b/statsmodels/scikits/statsmodels/graphics/tests/test_regressionplots.py
deleted file mode 100644
index 9e4d73d..0000000
--- a/statsmodels/scikits/statsmodels/graphics/tests/test_regressionplots.py
+++ /dev/null
@@ -1,85 +0,0 @@
-'''Tests for regressionplots, entire module is skipped
-
-'''
-
-import numpy as np
-import nose
-
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.graphics.regressionplots import (plot_fit, plot_ccpr,
- plot_partregress, plot_regress_exog )
-
-try:
- import matplotlib.pyplot as plt #makes plt available for test functions
- have_matplotlib = True
-except:
- have_matplotlib = False
-
-def setup():
- if not have_matplotlib:
- raise nose.SkipTest('No tests here')
-
-def teardown_module():
- plt.close('all')
-
-class TestPlot(object):
-
- def __init__(self):
- self.setup() #temp: for testing without nose
-
- def setup(self):
- nsample = 100
- sig = 0.5
- x1 = np.linspace(0, 20, nsample)
- x2 = 5 + 3* np.random.randn(nsample)
- X = np.c_[x1, x2, np.sin(0.5*x1), (x2-5)**2, np.ones(nsample)]
- beta = [0.5, 0.5, 1, -0.04, 5.]
- y_true = np.dot(X, beta)
- y = y_true + sig * np.random.normal(size=nsample)
- exog0 = sm.add_constant(np.c_[x1, x2], prepend=False)
- res = sm.OLS(y, exog0).fit()
-
- self.res = res
-
- def test_plot_fit(self):
- res = self.res
-
- fig = plot_fit(res, 0, y_true=None)
-
- x0 = res.model.exog[:, 0]
- yf = res.fittedvalues
- y = res.model.endog
-
- px1, px2 = fig.axes[0].get_lines()[0].get_data()
- np.testing.assert_equal(x0, px1)
- np.testing.assert_equal(y, px2)
-
- px1, px2 = fig.axes[0].get_lines()[1].get_data()
- np.testing.assert_equal(x0, px1)
- np.testing.assert_equal(yf, px2)
-
- plt.close(fig)
-
- def test_plot_oth(self):
- #just test that they run
- res = self.res
- endog = res.model.endog
- exog = res.model.exog
-
- plot_fit(res, 0, y_true=None)
- plot_partregress(endog, exog, exog_idx=[0,1])
- plot_regress_exog(res, exog_idx=[0])
- plot_ccpr(res, exog_idx=[0])
- plot_ccpr(res, exog_idx=[0,1])
-
- plt.close('all')
-
- @np.testing.dec.skipif(not have_matplotlib)
- def test_qqplot(self):
- #just test that it runs
- data = sm.datasets.longley.load()
- data.exog = sm.add_constant(data.exog)
- mod_fit = sm.OLS(data.endog, data.exog).fit()
- res = mod_fit.resid
- fig = sm.qqplot(res)
- plt.close(fig)
diff --git a/statsmodels/scikits/statsmodels/graphics/tsaplots.py b/statsmodels/scikits/statsmodels/graphics/tsaplots.py
deleted file mode 100644
index fa097fc..0000000
--- a/statsmodels/scikits/statsmodels/graphics/tsaplots.py
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-import numpy as np
-
-
-#copied/moved from sandbox/tsa/example_arma.py
-def plotacf(ax, corr, lags=None, usevlines=True, **kwargs):
- """
- Plot the auto or cross correlation.
- lags on horizontal and correlations on vertical axis
-
- Note: adjusted from matplotlib's pltxcorr
-
- Parameters
- ----------
- ax : matplotlib axis or plt
- ax can be matplotlib.pyplot or an axis of a figure
- lags : array or None
- array of lags used on horizontal axis,
- if None, then np.arange(len(corr)) is used
- corr : array
- array of values used on vertical axis
- usevlines : boolean
- If true, then vertical lines and markers are plotted. If false,
- only 'o' markers are plotted
- **kwargs : optional parameters for plot and axhline
- these are directly passed on to the matplotlib functions
-
- Returns
- -------
- a : matplotlib.pyplot.plot
- contains markers
- b : matplotlib.collections.LineCollection
- returned only if vlines is true, contains vlines
- c : instance of matplotlib.lines.Line2D
- returned only if vlines is true, contains axhline ???
-
- Data are plotted as ``plot(lags, c, **kwargs)``
-
- The default *linestyle* is *None* and the default *marker* is
- 'o', though these can be overridden with keyword args.
-
- If *usevlines* is *True*:
-
- :func:`~matplotlib.pyplot.vlines`
- rather than :func:`~matplotlib.pyplot.plot` is used to draw
- vertical lines from the origin to the xcorr. Otherwise the
- plotstyle is determined by the kwargs, which are
- :class:`~matplotlib.lines.Line2D` properties.
-
- See Also
- --------
-
- :func:`~matplotlib.pyplot.xcorr`
- :func:`~matplotlib.pyplot.acorr`
- mpl_examples/pylab_examples/xcorr_demo.py
-
- """
-
- if lags is None:
- lags = np.arange(len(corr))
- else:
- if len(lags) != len(corr):
- raise ValueError('lags and corr must be equal length')
-
- if usevlines:
- b = ax.vlines(lags, [0], corr, **kwargs)
- c = ax.axhline(**kwargs)
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a = ax.plot(lags, corr, **kwargs)
- else:
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a, = ax.plot(lags, corr, **kwargs)
- b = c = None
- return a, b, c
-
diff --git a/statsmodels/scikits/statsmodels/graphics/tukeyplot.py b/statsmodels/scikits/statsmodels/graphics/tukeyplot.py
deleted file mode 100644
index b75d9dc..0000000
--- a/statsmodels/scikits/statsmodels/graphics/tukeyplot.py
+++ /dev/null
@@ -1,77 +0,0 @@
-import numpy as np
-import matplotlib.pyplot as plt
-import matplotlib.ticker as mticker
-import matplotlib.lines as lines
-
-
-def tukeyplot(results, dim=None, yticklabels=None):
- npairs = len(results)
-
- fig = plt.figure()
- fsp = fig.add_subplot(111)
- fsp.axis([-50,50,0.5,10.5])
- fsp.set_title('95 % family-wise confidence level')
- fsp.title.set_y(1.025)
- fsp.set_yticks(np.arange(1,11))
- fsp.set_yticklabels(['V-T','V-S','T-S','V-P','T-P','S-P','V-M',
- 'T-M','S-M','P-M'])
- #fsp.yaxis.set_major_locator(mticker.MaxNLocator(npairs))
- fsp.yaxis.grid(True, linestyle='-', color='gray')
- fsp.set_xlabel('Differences in mean levels of Var', labelpad=8)
- fsp.xaxis.tick_bottom()
- fsp.yaxis.tick_left()
-
- xticklines = fsp.get_xticklines()
- for xtickline in xticklines:
- xtickline.set_marker(lines.TICKDOWN)
- xtickline.set_markersize(10)
-
- xlabels = fsp.get_xticklabels()
- for xlabel in xlabels:
- xlabel.set_y(-.04)
-
- yticklines = fsp.get_yticklines()
- for ytickline in yticklines:
- ytickline.set_marker(lines.TICKLEFT)
- ytickline.set_markersize(10)
-
- ylabels = fsp.get_yticklabels()
- for ylabel in ylabels:
- ylabel.set_x(-.04)
-
- for pair in range(npairs):
- data = .5+results[pair]/100.
- #fsp.axhline(y=npairs-pair, xmin=data[0], xmax=data[1], linewidth=1.25,
- fsp.axhline(y=npairs-pair, xmin=data.mean(), xmax=data[1], linewidth=1.25,
- color='blue', marker="|", markevery=1)
-
- fsp.axhline(y=npairs-pair, xmin=data[0], xmax=data.mean(), linewidth=1.25,
- color='blue', marker="|", markevery=1)
-
- #for pair in range(npairs):
- # data = .5+results[pair]/100.
- # data = results[pair]
- # data = np.r_[data[0],data.mean(),data[1]]
- # l = plt.plot(data, [npairs-pair]*len(data), color='black',
- # linewidth=.5, marker="|", markevery=1)
-
- fsp.axvline(x=0, linestyle="--", color='black')
-
- fig.subplots_adjust(bottom=.125)
-
-
-
-results = np.array([[-10.04391794, 26.34391794],
- [-21.45225794, 14.93557794],
- [ 5.61441206, 42.00224794],
- [-13.40225794, 22.98557794],
- [-29.60225794, 6.78557794],
- [ -2.53558794, 33.85224794],
- [-21.55225794, 14.83557794],
- [ 8.87275206, 45.26058794],
- [-10.14391794, 26.24391794],
- [-37.21058794, -0.82275206]])
-
-
-#plt.show()
-
diff --git a/statsmodels/scikits/statsmodels/info.py b/statsmodels/scikits/statsmodels/info.py
deleted file mode 100644
index dcde8d8..0000000
--- a/statsmodels/scikits/statsmodels/info.py
+++ /dev/null
@@ -1,26 +0,0 @@
-"""
-Statistical models
-
- - standard `regression` models
-
- - `GLS` (generalized least squares regression)
- - `OLS` (ordinary least square regression)
- - `WLS` (weighted least square regression)
- - `GLASAR` (GLS with autoregressive errors model)
-
- - `GLM` (generalized linear models)
- - robust statistical models
-
- - `RLM` (robust linear models using M estimators)
- - `robust.norms` estimates
- - `robust.scale` estimates (MAD, Huber's proposal 2).
- - sandbox models
- - `mixed` effects models
- - `gam` (generalized additive models)
-"""
-__docformat__ = 'restructuredtext en'
-
-depends = ['numpy',
- 'scipy']
-
-postpone_import = True
diff --git a/statsmodels/scikits/statsmodels/interface/__init__.py b/statsmodels/scikits/statsmodels/interface/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/iolib/__init__.py b/statsmodels/scikits/statsmodels/iolib/__init__.py
deleted file mode 100644
index 727c0cf..0000000
--- a/statsmodels/scikits/statsmodels/iolib/__init__.py
+++ /dev/null
@@ -1,5 +0,0 @@
-from foreign import StataReader, genfromdta, savetxt
-from table import SimpleTable, csv2st
-
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/iolib/foreign.py b/statsmodels/scikits/statsmodels/iolib/foreign.py
deleted file mode 100644
index d9925bb..0000000
--- a/statsmodels/scikits/statsmodels/iolib/foreign.py
+++ /dev/null
@@ -1,638 +0,0 @@
-"""
-Input/Output tools for working with binary data.
-
-The Stata input tools were originally written by Joe Presbrey as part of PyDTA.
-
-You can find more information here http://presbrey.mit.edu/PyDTA
-
-See also
----------
-numpy.lib.io
-"""
-
-from struct import unpack, calcsize
-import sys
-import numpy as np
-from numpy.lib._iotools import _is_string_like, easy_dtype
-
-
-### Helper classes for StataReader ###
-
-class _StataMissingValue(object):
- """
- An observation's missing value.
-
- Parameters
- -----------
- offset
- value
-
- Attributes
- ----------
- string
- value
-
- Notes
- -----
- More information:
- """
-
- def __init__(self, offset, value):
- self._value = value
- if type(value) is int or type(value) is long:
- self._str = value-offset is 1 and \
- '.' or ('.' + chr(value-offset+96))
- else:
- self._str = '.'
- string = property(lambda self: self._str, doc="The Stata representation of \
-the missing value: '.', '.a'..'.z'")
- value = property(lambda self: self._value, doc='The binary representation \
-of the missing value.')
- def __str__(self): return self._str
- __str__.__doc__ = string.__doc__
-
-class _StataVariable(object):
- """
- A dataset variable. Not intended for public use.
-
- Parameters
- ----------
- variable_data
-
- Attributes
- -----------
- format : str
- Stata variable format. See notes for more information.
- index : int
- Zero-index column index of variable.
- label : str
- Data Label
- name : str
- Variable name
- type : str
- Stata data type. See notes for more information.
- value_format : str
- Value format.
-
- Notes
- -----
- More information: http://www.stata.com/help.cgi?format
- """
- def __init__(self, variable_data):
- self._data = variable_data
-
- def __int__(self):
- return self.index
-
- def __str__(self):
- return self.name
- index = property(lambda self: self._data[0], doc='the variable\'s index \
-within an observation')
- type = property(lambda self: self._data[1], doc='the data type of \
-variable\n\nPossible types are:\n{1..244:string, b:byte, h:int, l:long, \
-f:float, d:double)')
- name = property(lambda self: self._data[2], doc='the name of the variable')
- format = property(lambda self: self._data[4], doc='the variable\'s Stata \
-format')
- value_format = property(lambda self: self._data[5], doc='the variable\'s \
-value format')
- label = property(lambda self: self._data[6], doc='the variable\'s label')
- __int__.__doc__ = index.__doc__
- __str__.__doc__ = name.__doc__
-
-class StataReader(object):
- """
- Stata .dta file reader.
-
- Provides methods to return the metadata of a Stata .dta file and
- a generator for the data itself.
-
- Parameters
- ----------
- file : file-like
- A file-like object representing a Stata .dta file.
-
- missing_values : bool
- If missing_values is True, parse missing_values and return a
- Missing Values object instead of None.
-
- See also
- --------
- scikits.statsmodels.lib.io.genfromdta
-
- Notes
- -----
- This is known only to work on file formats 113 (Stata 8/9) and 114
- (Stata 10/11). Needs to be tested on older versions.
- Known not to work on format 104, 108.
-
- For more information about the .dta format see
- http://www.stata.com/help.cgi?dta
- http://www.stata.com/help.cgi?dta_113
- """
-
- _header = {}
- _data_location = 0
- _col_sizes = ()
- _has_string_data = False
- _missing_values = False
- TYPE_MAP = range(251)+list('bhlfd')
- MISSING_VALUES = { 'b': (-127,100), 'h': (-32767, 32740), 'l':
- (-2147483647, 2147483620), 'f': (-1.701e+38, +1.701e+38), 'd':
- (-1.798e+308, +8.988e+307) }
-
- def __init__(self, fname, missing_values=False):
- self._missing_values = missing_values
- self._parse_header(fname)
-
- def file_headers(self):
- """
- Returns all .dta file headers.
-
- out: dict
- Has keys typlist, data_label, lbllist, varlist, nvar, filetype,
- ds_format, nobs, fmtlist, vlblist, time_stamp, srtlist, byteorder
- """
- return self._header
-
- def file_format(self):
- """
- Returns the file format.
-
- Returns
- -------
- out : int
-
- Notes
- -----
- Format 113: Stata 8/9
- Format 114: Stata 10/11
- """
- return self._header['ds_format']
-
- def file_label(self):
- """
- Returns the dataset's label.
-
- Returns
- ------
- out: string
- """
- return self._header['data_label']
-
- def file_timestamp(self):
- """
- Returns the date and time Stata recorded on last file save.
-
- Returns
- -------
- out : str
- """
- return self._header['time_stamp']
-
- def variables(self):
- """
- Returns a list of the dataset's StataVariables objects.
- """
- return map(_StataVariable, zip(range(self._header['nvar']),
- self._header['typlist'], self._header['varlist'],
- self._header['srtlist'],
- self._header['fmtlist'], self._header['lbllist'],
- self._header['vlblist']))
-
- def dataset(self, as_dict=False):
- """
- Returns a Python generator object for iterating over the dataset.
-
-
- Parameters
- ----------
- as_dict : bool, optional
- If as_dict is True, yield each row of observations as a dict.
- If False, yields each row of observations as a list.
-
- Returns
- -------
- Generator object for iterating over the dataset. Yields each row of
- observations as a list by default.
-
- Notes
- -----
- If missing_values is True during instantiation of StataReader then
- observations with _StataMissingValue(s) are not filtered and should
- be handled by your applcation.
- """
-
- try:
- self._file.seek(self._data_location)
- except Exception:
- pass
-
- if as_dict:
- vars = map(str, self.variables())
- for i in range(len(self)):
- yield dict(zip(vars, self._next()))
- else:
- for i in range(self._header['nobs']):
- yield self._next()
-
- ### Python special methods
-
- def __len__(self):
- """
- Return the number of observations in the dataset.
-
- This value is taken directly from the header and includes observations
- with missing values.
- """
- return self._header['nobs']
-
- def __getitem__(self, k):
- """
- Seek to an observation indexed k in the file and return it, ordered
- by Stata's output to the .dta file.
-
- k is zero-indexed. Prefer using R.data() for performance.
- """
- if not (type(k) is int or type(k) is long) or k < 0 or k > len(self)-1:
- raise IndexError(k)
- loc = self._data_location + sum(self._col_size()) * k
- if self._file.tell() != loc:
- self._file.seek(loc)
- return self._next()
-
- ### Private methods
-
- def _null_terminate(self, s):
- try:
- return s.lstrip('\x00')[:s.index('\x00')]
- except Exception:
- return s
-
- def _parse_header(self, file_object):
- self._file = file_object
-
- # parse headers
- self._header['ds_format'] = unpack('b', self._file.read(1))[0]
-
- if self._header['ds_format'] not in [113,114]:
- raise ValueError("Only file formats 113 and 114 (Stata 9, 10, 11)\
- are supported. Got format %s. Please report if you think this error is \
-incorrect." % self._header['ds_format'])
- byteorder = self._header['byteorder'] = unpack('b',
- self._file.read(1))[0]==0x1 and '>' or '<'
- self._header['filetype'] = unpack('b', self._file.read(1))[0]
- self._file.read(1)
- nvar = self._header['nvar'] = unpack(byteorder+'h',
- self._file.read(2))[0]
- if self._header['ds_format'] < 114:
- self._header['nobs'] = unpack(byteorder+'i', self._file.read(4))[0]
- else:
- self._header['nobs'] = unpack(byteorder+'i', self._file.read(4))[0]
- self._header['data_label'] = self._null_terminate(self._file.read(81))
- self._header['time_stamp'] = self._null_terminate(self._file.read(18))
-
- # parse descriptors
- self._header['typlist'] = [self.TYPE_MAP[ord(self._file.read(1))] \
- for i in range(nvar)]
- self._header['varlist'] = [self._null_terminate(self._file.read(33)) \
- for i in range(nvar)]
- self._header['srtlist'] = unpack(byteorder+('h'*(nvar+1)),
- self._file.read(2*(nvar+1)))[:-1]
- if self._header['ds_format'] <= 113:
- self._header['fmtlist'] = \
- [self._null_terminate(self._file.read(12)) \
- for i in range(nvar)]
- else:
- self._header['fmtlist'] = \
- [self._null_terminate(self._file.read(49)) \
- for i in range(nvar)]
- self._header['lbllist'] = [self._null_terminate(self._file.read(33)) \
- for i in range(nvar)]
- self._header['vlblist'] = [self._null_terminate(self._file.read(81)) \
- for i in range(nvar)]
-
- # ignore expansion fields
-# When reading, read five bytes; the last four bytes now tell you the size of
-# the next read, which you discard. You then continue like this until you
-# read 5 bytes of zeros.
-# TODO: The way I read this is that they both should be zero, but that's
-# not what we get.
-
- while True:
- data_type = unpack(byteorder+'b', self._file.read(1))[0]
- data_len = unpack(byteorder+'i', self._file.read(4))[0]
- if data_type == 0:
- break
- self._file.read(data_len)
-
- # other state vars
- self._data_location = self._file.tell()
- self._has_string_data = len(filter(lambda x: type(x) is int,
- self._header['typlist'])) > 0
- self._col_size()
-
- def _calcsize(self, fmt):
- return type(fmt) is int and fmt or \
- calcsize(self._header['byteorder']+fmt)
-
- def _col_size(self, k = None):
- """Calculate size of a data record."""
- if len(self._col_sizes) == 0:
- self._col_sizes = map(lambda x: self._calcsize(x),
- self._header['typlist'])
- if k == None:
- return self._col_sizes
- else:
- return self._col_sizes[k]
-
- def _unpack(self, fmt, byt):
- d = unpack(self._header['byteorder']+fmt, byt)[0]
- if fmt[-1] in self.MISSING_VALUES:
- nmin, nmax = self.MISSING_VALUES[fmt[-1]]
- if d < nmin or d > nmax:
- if self._missing_values:
- return _StataMissingValue(nmax, d)
- else:
- return None
- return d
-
- def _next(self):
- typlist = self._header['typlist']
- if self._has_string_data:
- data = [None]*self._header['nvar']
- for i in range(len(data)):
- if type(typlist[i]) is int:
- data[i] = self._null_terminate(self._file.read(typlist[i]))
- else:
- data[i] = self._unpack(typlist[i],
- self._file.read(self._col_size(i)))
- return data
- else:
- return map(lambda i: self._unpack(typlist[i],
- self._file.read(self._col_size(i))),
- range(self._header['nvar']))
-
-def genfromdta(fname, excludelist=None, missing_flt=-999., missing_str=""):
- """
- Returns an ndarray from a Stata .dta file.
-
- Parameters
- ----------
- fname : str or filehandle
- Stata .dta file.
- missing_values
- excludelist
- missing_flt
- missing_str
-
- Notes
- ------
- If the parser encounters a format that it doesn't understand, then it will
- convert to string. This may be the case with date formats.
- """
-#TODO: extend to get data from online
- if isinstance(fname, basestring):
- fhd = StataReader(open(fname, 'rb'), missing_values=False)
- elif not hasattr(fname, 'read'):
- raise TypeError("The input should be a string or a filehandle. "\
- "(got %s instead)" % type(fname))
- else:
- fhd = StataReader(fname, missing_values=False)
-# validate_names = np.lib._iotools.NameValidator(excludelist=excludelist,
-# deletechars=deletechars,
-# case_sensitive=case_sensitive)
-
-
-#TODO: does this need to handle the byteorder?
- header = fhd.file_headers()
-# types = header['typlist'] # typemap in StataReader?
- nobs = header['nobs']
- numvars = header['nvar']
- varnames = header['varlist']
- dataname = header['data_label']
- labels = header['vlblist'] # labels are thrown away unless DataArray
- # type is used
- data = np.zeros((nobs,numvars))
- stata_dta = fhd.dataset()
-
- # build dtype from stata formats
- # see http://www.stata.com/help.cgi?format
- # This converts all of these to float64
- # all time and strings are converted to strings
- #TODO: put these notes in the docstring
- #TODO: need to write a time parser
- to_flt = ['g','e','f','h','gc','fc', 'x', 'l'] # how to deal with x
- # and double-precision
- to_str = ['s']
- if 1:# if not convert_time: #time parser not written
- to_str.append('t')
- flt_or_str = lambda x: ((x.lower()[-1] in to_str and 's') or \
- (x.lower()[-1] in to_flt and 'f8')) or 's'
- #TODO: this is surely not the best way to handle data types
- convert_missing = {'f8' : missing_flt, 's' : missing_str}
- #TODO: needs to be made more flexible when change types
- fmt = [_.split('.')[-1] for _ in header['fmtlist']]
- remove_comma = [fmt.index(_) for _ in fmt if 'c' in _]
- for i in range(len(fmt)): # remove commas and convert any time types to 't'
- if 't' in fmt[i]:
- fmt[i] = 't'
- if i in remove_comma:
- fmt[i] = fmt[i][:-1] # needs to be changed if time doesn't req.
- # loop
- formats = map(flt_or_str, fmt)
-# have to go through the whole file first to find string lengths?
-#TODO: this is going to be miserably slow
-# have a closer look at numpy.genfromtxt and revisit this
- first_list = []
- for rownum,line in enumerate(stata_dta):
- # doesn't handle missing value objects
- # Untested for commas and string missing
- # None will only work without missing value object.
- if None in line and not remove_comma:
- for val in line:
- if val is None:
- line[line.index(val)] = convert_missing[\
- formats[line.index(val)]]
- if None in line and remove_comma:
- for i,val in enumerate(line):
- if val is None:
- line[i] = convert_missing[formats[i]]
- elif i in remove_comma:
- try: # sometimes a format, say gc is read as a float or int
- #TODO: I'm actually not sure now that comma formats
- # are read as strings.
- line[i] = ''.join(line[i].split(','))
- except:
- line[j] = str(line[j])
- if formats[i] == 'f8':
- line[i] = float(line[i])
- if remove_comma and not None in line:
- for j in remove_comma:
- try: # sometimes a format, say gc is read as a float or int
- line[j] = ''.join(line[j].split(','))
- except:
- line[j] = str(line[j])
- if formats[j] == 'f8': # change when change f8
- line[j] = float(line[j])
-
- first_list.append(line)
-#TODO: add informative error message similar to genfromtxt
-# Get string lengths
- strcolidx = []
- if 's' in formats:
- for col,type in enumerate(formats):
- if type == 's':
- strcolidx.append(col)
- for i in strcolidx:
- formats[i] = "a%i" % max(len(str(row[i])) for row in first_list)
- dt = zip(varnames, formats) # make dtype again
- dt = easy_dtype(dt)
- data = np.zeros((nobs), dtype=dt) # init final array
- for i,row in enumerate(first_list):
- data[i] = tuple(row)
-
-#TODO: make it possible to return plain array if all 'f8' for example
- return data
-
-def savetxt(fname, X, names=None, fmt='%.18e', delimiter=' '):
- """
- Save an array to a text file.
-
- This is just a copy of numpy.savetxt patched to support structured arrays
- or a header of names. Does not include py3 support now in savetxt.
-
- Parameters
- ----------
- fname : filename or file handle
- If the filename ends in ``.gz``, the file is automatically saved in
- compressed gzip format. `loadtxt` understands gzipped files
- transparently.
- X : array_like
- Data to be saved to a text file.
- names : list, optional
- If given names will be the column header in the text file. If None and
- X is a structured or recarray then the names are taken from
- X.dtype.names.
- fmt : str or sequence of strs
- A single format (%10.5f), a sequence of formats, or a
- multi-format string, e.g. 'Iteration %d -- %10.5f', in which
- case `delimiter` is ignored.
- delimiter : str
- Character separating columns.
-
- See Also
- --------
- save : Save an array to a binary file in NumPy ``.npy`` format
- savez : Save several arrays into a ``.npz`` compressed archive
-
- Notes
- -----
- Further explanation of the `fmt` parameter
- (``%[flag]width[.precision]specifier``):
-
- flags:
- ``-`` : left justify
-
- ``+`` : Forces to preceed result with + or -.
-
- ``0`` : Left pad the number with zeros instead of space (see width).
-
- width:
- Minimum number of characters to be printed. The value is not truncated
- if it has more characters.
-
- precision:
- - For integer specifiers (eg. ``d,i,o,x``), the minimum number of
- digits.
- - For ``e, E`` and ``f`` specifiers, the number of digits to print
- after the decimal point.
- - For ``g`` and ``G``, the maximum number of significant digits.
- - For ``s``, the maximum number of characters.
-
- specifiers:
- ``c`` : character
-
- ``d`` or ``i`` : signed decimal integer
-
- ``e`` or ``E`` : scientific notation with ``e`` or ``E``.
-
- ``f`` : decimal floating point
-
- ``g,G`` : use the shorter of ``e,E`` or ``f``
-
- ``o`` : signed octal
-
- ``s`` : string of characters
-
- ``u`` : unsigned decimal integer
-
- ``x,X`` : unsigned hexadecimal integer
-
- This explanation of ``fmt`` is not complete, for an exhaustive
- specification see [1]_.
-
- References
- ----------
- .. [1] `Format Specification Mini-Language
- `_, Python Documentation.
-
- Examples
- --------
- >>> savetxt('test.out', x, delimiter=',') # x is an array
- >>> savetxt('test.out', (x,y,z)) # x,y,z equal sized 1D arrays
- >>> savetxt('test.out', x, fmt='%1.4e') # use exponential notation
-
- """
-
- if _is_string_like(fname):
- if fname.endswith('.gz'):
- import gzip
- fh = gzip.open(fname, 'wb')
- else:
- fh = file(fname, 'w')
- elif hasattr(fname, 'seek'):
- fh = fname
- else:
- raise ValueError('fname must be a string or file handle')
-
- X = np.asarray(X)
-
- # Handle 1-dimensional arrays
- if X.ndim == 1:
- # Common case -- 1d array of numbers
- if X.dtype.names is None:
- X = np.atleast_2d(X).T
- ncol = 1
-
- # Complex dtype -- each field indicates a separate column
- else:
- ncol = len(X.dtype.descr)
- else:
- ncol = X.shape[1]
-
- # `fmt` can be a string with multiple insertion points or a list of formats.
- # E.g. '%10.5f\t%10d' or ('%10.5f', '$10d')
- if type(fmt) in (list, tuple):
- if len(fmt) != ncol:
- raise AttributeError('fmt has wrong shape. %s' % str(fmt))
- format = delimiter.join(fmt)
- elif type(fmt) is str:
- if fmt.count('%') == 1:
- fmt = [fmt, ]*ncol
- format = delimiter.join(fmt)
- elif fmt.count('%') != ncol:
- raise AttributeError('fmt has wrong number of %% formats. %s'
- % fmt)
- else:
- format = fmt
-
- # handle names
- if names is None and X.dtype.names:
- names = X.dtype.names
- if names is not None:
- fh.write(delimiter.join(names) + '\n')
-
- for row in X:
- fh.write(format % tuple(row) + '\n')
diff --git a/statsmodels/scikits/statsmodels/iolib/notes_table_update.txt b/statsmodels/scikits/statsmodels/iolib/notes_table_update.txt
deleted file mode 100644
index c273f1e..0000000
--- a/statsmodels/scikits/statsmodels/iolib/notes_table_update.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-updating table.py from econpy
-=============================
-
-table.py :
- reformat tabs to 4 spaces
- adjust import path in docstrings
- currently insufficient tests for backwards compatibility, might break silently
-
-test_table.py :
- renamed to test_table_econpy.py in parallel to test_table.py
- change import paths in test_table_econpy.py
- currently too many differences to maintain merge
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/iolib/stata_summary_examples.py b/statsmodels/scikits/statsmodels/iolib/stata_summary_examples.py
deleted file mode 100644
index bca5abe..0000000
--- a/statsmodels/scikits/statsmodels/iolib/stata_summary_examples.py
+++ /dev/null
@@ -1,84 +0,0 @@
-
-""". regress totemp gnpdefl gnp unemp armed pop year
-
- Source | SS df MS Number of obs = 16
--------------+------------------------------ F( 6, 9) = 330.29
- Model | 184172402 6 30695400.3 Prob > F = 0.0000
- Residual | 836424.129 9 92936.0144 R-squared = 0.9955
--------------+------------------------------ Adj R-squared = 0.9925
- Total | 185008826 15 12333921.7 Root MSE = 304.85
-
-------------------------------------------------------------------------------
- totemp | Coef. Std. Err. t P>|t| [95% Conf. Interval]
--------------+----------------------------------------------------------------
- gnpdefl | 15.06167 84.91486 0.18 0.863 -177.0291 207.1524
- gnp | -.0358191 .033491 -1.07 0.313 -.111581 .0399428
- unemp | -2.020229 .4883995 -4.14 0.003 -3.125065 -.9153928
- armed | -1.033227 .2142741 -4.82 0.001 -1.517948 -.5485049
- pop | -.0511045 .2260731 -0.23 0.826 -.5625173 .4603083
- year | 1829.151 455.4785 4.02 0.003 798.7873 2859.515
- _cons | -3482258 890420.3 -3.91 0.004 -5496529 -1467987
-------------------------------------------------------------------------------
-"""
-
-
-#From Stata using Longley dataset as in the test and example for GLM
-"""
-. glm totemp gnpdefl gnp unemp armed pop year
-
-Iteration 0: log likelihood = -109.61744
-
-Generalized linear models No. of obs = 16
-Optimization : ML Residual df = 9
- Scale parameter = 92936.01
-Deviance = 836424.1293 (1/df) Deviance = 92936.01
-Pearson = 836424.1293 (1/df) Pearson = 92936.01
-
-Variance function: V(u) = 1 [Gaussian]
-Link function : g(u) = u [Identity]
-
- AIC = 14.57718
-Log likelihood = -109.6174355 BIC = 836399.2
-
-------------------------------------------------------------------------------
- | OIM
- totemp | Coef. Std. Err. z P>|z| [95% Conf. Interval]
--------------+----------------------------------------------------------------
- gnpdefl | 15.06167 84.91486 0.18 0.859 -151.3684 181.4917
- gnp | -.0358191 .033491 -1.07 0.285 -.1014603 .029822
- unemp | -2.020229 .4883995 -4.14 0.000 -2.977475 -1.062984
- armed | -1.033227 .2142741 -4.82 0.000 -1.453196 -.6132571
- pop | -.0511045 .2260731 -0.23 0.821 -.4941996 .3919906
- year | 1829.151 455.4785 4.02 0.000 936.4298 2721.873
- _cons | -3482258 890420.3 -3.91 0.000 -5227450 -1737066
-------------------------------------------------------------------------------
-"""
-
-#RLM Example
-
-"""
-. rreg stackloss airflow watertemp acidconc
-
- Huber iteration 1: maximum difference in weights = .48402478
- Huber iteration 2: maximum difference in weights = .07083248
- Huber iteration 3: maximum difference in weights = .03630349
-Biweight iteration 4: maximum difference in weights = .2114744
-Biweight iteration 5: maximum difference in weights = .04709559
-Biweight iteration 6: maximum difference in weights = .01648123
-Biweight iteration 7: maximum difference in weights = .01050023
-Biweight iteration 8: maximum difference in weights = .0027233
-
-Robust regression Number of obs = 21
- F( 3, 17) = 74.15
- Prob > F = 0.0000
-
-------------------------------------------------------------------------------
- stackloss | Coef. Std. Err. t P>|t| [95% Conf. Interval]
--------------+----------------------------------------------------------------
- airflow | .8526511 .1223835 6.97 0.000 .5944446 1.110858
- watertemp | .8733594 .3339811 2.61 0.018 .1687209 1.577998
- acidconc | -.1224349 .1418364 -0.86 0.400 -.4216836 .1768139
- _cons | -41.6703 10.79559 -3.86 0.001 -64.447 -18.89361
-------------------------------------------------------------------------------
-
-"""
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/iolib/summary.py b/statsmodels/scikits/statsmodels/iolib/summary.py
deleted file mode 100644
index 47d6367..0000000
--- a/statsmodels/scikits/statsmodels/iolib/summary.py
+++ /dev/null
@@ -1,897 +0,0 @@
-
-
-import numpy as np
-from scikits.statsmodels.iolib.table import SimpleTable
-from scikits.statsmodels.iolib.tableformatting import (gen_fmt, fmt_2,
- fmt_params, fmt_base, fmt_2cols)
-#from scikits.statsmodels.iolib.summary2d import summary_params_2dflat
-#from summary2d import summary_params_2dflat
-
-def forg(x, prec=3):
- if prec == 3:
- #for 3 decimals
- if (abs(x) >= 1e4) or (abs(x) < 1e-4):
- return '%9.3g' % x
- else:
- return '%9.3f' % x
- elif prec == 4:
- if (abs(x) >= 1e4) or (abs(x) < 1e-4):
- return '%10.4g' % x
- else:
- return '%10.4f' % x
- else:
- raise NotImplementedError
-
-
-def summary(self, yname=None, xname=None, title=0, alpha=.05,
- returns='text', model_info=None):
- """
- Parameters
- -----------
- yname : string
- optional, Default is `Y`
- xname : list of strings
- optional, Default is `X.#` for # in p the number of regressors
- Confidance interval : (0,1) not implimented
- title : string
- optional, Defualt is 'Generalized linear model'
- returns : string
- 'text', 'table', 'csv', 'latex', 'html'
-
- Returns
- -------
- Defualt :
- returns='print'
- Prints the summarirized results
-
- Option :
- returns='text'
- Prints the summarirized results
-
- Option :
- returns='table'
- SimpleTable instance : summarizing the fit of a linear model.
-
- Option :
- returns='csv'
- returns a string of csv of the results, to import into a spreadsheet
-
- Option :
- returns='latex'
- Not implimented yet
-
- Option :
- returns='HTML'
- Not implimented yet
-
-
- Examples (needs updating)
- --------
- >>> import scikits.statsmodels as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> ols_results = sm.OLS(data.endog, data.exog).results
- >>> print ols_results.summary()
- ...
-
- Notes
- -----
- conf_int calculated from normal dist.
- """
- import time as time
-
-
-
- #TODO Make sure all self.model.__class__.__name__ are listed
- model_types = {'OLS' : 'Ordinary least squares',
- 'GLS' : 'Generalized least squares',
- 'GLSAR' : 'Generalized least squares with AR(p)',
- 'WLS' : 'Weigthed least squares',
- 'RLM' : 'Robust linear model',
- 'GLM' : 'Generalized linear model'
- }
- model_methods = {'OLS' : 'Least Squares',
- 'GLS' : 'Least Squares',
- 'GLSAR' : 'Least Squares',
- 'WLS' : 'Least Squares',
- 'RLM' : '?',
- 'GLM' : '?'
- }
- if title==0:
- title = model_types[self.model.__class__.__name__]
- if yname is None:
- try:
- yname = self.model.endog_names
- except AttributeError:
- yname = 'y'
- if xname is None:
- try:
- xname = self.model.exog_names
- except AttributeError:
- xname = ['var_%d' % i for i in range(len(self.params))]
- time_now = time.localtime()
- time_of_day = [time.strftime("%H:%M:%S", time_now)]
- date = time.strftime("%a, %d %b %Y", time_now)
- modeltype = self.model.__class__.__name__
- #dist_family = self.model.family.__class__.__name__
- nobs = self.nobs
- df_model = self.df_model
- df_resid = self.df_resid
-
-
-
- #General part of the summary table, Applicable to all? models
- #------------------------------------------------------------
- #TODO: define this generically, overwrite in model classes
- #replace definition of stubs data by single list
- #e.g.
- gen_left = [('Model type:', [modeltype]),
- ('Date:', [date]),
- ('Dependent Variable:', yname), #What happens with multiple names?
- ('df model', [df_model])
- ]
- gen_stubs_left, gen_data_left = map(None, *gen_left) #transpose row col
-
- gen_title = title
- gen_header = None
-## gen_stubs_left = ('Model type:',
-## 'Date:',
-## 'Dependent Variable:',
-## 'df model'
-## )
-## gen_data_left = [[modeltype],
-## [date],
-## yname, #What happens with multiple names?
-## [df_model]
-## ]
- gen_table_left = SimpleTable(gen_data_left,
- gen_header,
- gen_stubs_left,
- title = gen_title,
- txt_fmt = gen_fmt
- )
-
- gen_stubs_right = ('Method:',
- 'Time:',
- 'Number of Obs:',
- 'df resid'
- )
- gen_data_right = ([modeltype], #was dist family need to look at more
- time_of_day,
- [nobs],
- [df_resid]
- )
- gen_table_right = SimpleTable(gen_data_right,
- gen_header,
- gen_stubs_right,
- title = gen_title,
- txt_fmt = gen_fmt
- )
- gen_table_left.extend_right(gen_table_right)
- general_table = gen_table_left
-
- #Parameters part of the summary table
- #------------------------------------
- #Note: this is not necessary since we standardized names, only t versus normal
- tstats = {'OLS' : self.t(),
- 'GLS' : self.t(),
- 'GLSAR' : self.t(),
- 'WLS' : self.t(),
- 'RLM' : self.t(),
- 'GLM' : self.t()
- }
- prob_stats = {'OLS' : self.pvalues,
- 'GLS' : self.pvalues,
- 'GLSAR' : self.pvalues,
- 'WLS' : self.pvalues,
- 'RLM' : self.pvalues,
- 'GLM' : self.pvalues
- }
- #Dictionary to store the header names for the parameter part of the
- #summary table. look up by modeltype
- alp = str((1-alpha)*100)+'%'
- param_header = {
- 'OLS' : ['coef', 'std err', 't', 'P>|t|', alp + ' Conf. Interval'],
- 'GLS' : ['coef', 'std err', 't', 'P>|t|', alp + ' Conf. Interval'],
- 'GLSAR' : ['coef', 'std err', 't', 'P>|t|', alp + ' Conf. Interval'],
- 'WLS' : ['coef', 'std err', 't', 'P>|t|', alp + ' Conf. Interval'],
- 'GLM' : ['coef', 'std err', 't', 'P>|t|', alp + ' Conf. Interval'], #glm uses t-distribution
- 'RLM' : ['coef', 'std err', 'z', 'P>|z|', alp + ' Conf. Interval'] #checke z
- }
- params_stubs = xname
- params = self.params
- conf_int = self.conf_int(alpha)
- std_err = self.bse
- exog_len = xrange(len(xname))
- tstat = tstats[modeltype]
- prob_stat = prob_stats[modeltype]
-
- # Simpletable should be able to handle the formating
- params_data = zip(["%#6.4g" % (params[i]) for i in exog_len],
- ["%#6.4f" % (std_err[i]) for i in exog_len],
- ["%#6.4f" % (tstat[i]) for i in exog_len],
- ["%#6.4f" % (prob_stat[i]) for i in exog_len],
- ["(%#5g, %#5g)" % tuple(conf_int[i]) for i in \
- exog_len]
- )
- parameter_table = SimpleTable(params_data,
- param_header[modeltype],
- params_stubs,
- title = None,
- txt_fmt = fmt_2, #gen_fmt,
- )
-
- #special table
- #-------------
- #TODO: exists in linear_model, what about other models
- #residual diagnostics
-
-
- #output options
- #--------------
- #TODO: JP the rest needs to be fixed, similar to summary in linear_model
-
- def ols_printer():
- """
- print summary table for ols models
- """
- table = str(general_table)+'\n'+str(parameter_table)
- return table
-
- def ols_to_csv():
- """
- exports ols summary data to csv
- """
- pass
- def glm_printer():
- table = str(general_table)+'\n'+str(parameter_table)
- return table
- pass
-
- printers = {'OLS': ols_printer,
- 'GLM' : glm_printer
- }
-
- if returns=='print':
- try:
- return printers[modeltype]()
- except KeyError:
- return printers['OLS']()
-
-def _getnames(self, yname=None, xname=None):
- '''extract names from model or construct names
- '''
- if yname is None:
- try:
- yname = self.model.endog_names
- except AttributeError:
- yname = 'y'
- if xname is None:
- try:
- xname = self.model.exog_names
- except AttributeError:
- xname = ['var_%d' % i for i in range(len(self.params))]
-
- return yname, xname
-
-
-
-def summary_top(results, title=None, gleft=None, gright=None, yname=None, xname=None):
- '''generate top table(s)
-
-
- TODO: this still uses predefined model_methods
- ? allow gleft, gright to be 1 element tuples instead of filling with None?
-
- '''
- #change of names ?
- gen_left, gen_right = gleft, gright
-
- #time and names are always included
- import time
- time_now = time.localtime()
- time_of_day = [time.strftime("%H:%M:%S", time_now)]
- date = time.strftime("%a, %d %b %Y", time_now)
-
- yname, xname = _getnames(results, yname=yname, xname=xname)
-
- #create dictionary with default
- #use lambdas because some values raise exception if they are not available
- #alternate spellings are commented out to force unique labels
- default_items = dict([
- ('Dependent Variable:', lambda: [yname]),
- ('Dep. Variable:', lambda: [yname]),
- ('Model:', lambda: [results.model.__class__.__name__]),
- #('Model type:', lambda: [results.model.__class__.__name__]),
- ('Date:', lambda: [date]),
- ('Time:', lambda: time_of_day),
- ('Number of Obs:', lambda: [results.nobs]),
- #('No. of Observations:', lambda: ["%#6d" % results.nobs]),
- ('No. Observations:', lambda: ["%#6d" % results.nobs]),
- #('Df model:', lambda: [results.df_model]),
- ('Df Model:', lambda: ["%#6d" % results.df_model]),
- #TODO: check when we have non-integer df
- ('Df Residuals:', lambda: ["%#6d" % results.df_resid]),
- #('Df resid:', lambda: [results.df_resid]),
- #('df resid:', lambda: [results.df_resid]), #check capitalization
- ('Log-Likelihood:', lambda: ["%#8.5g" % results.llf]) #doesn't exist for RLM - exception
- #('Method:', lambda: [???]), #no default for this
- ])
-
- if title is None:
- title = results.model.__class__.__name__ + 'Regression Results'
-
- if gen_left is None:
- #default: General part of the summary table, Applicable to all? models
- gen_left = [('Dep. Variable:', None),
- ('Model type:', None),
- ('Date:', None),
- ('No. Observations:', None)
- ('Df model:', None),
- ('Df resid:', None)]
-
- try:
- llf = results.llf
- gen_left.append(('Log-Likelihood', None))
- except: #AttributeError, NotImplementedError
- pass
-
- gen_right = []
-
-
- gen_title = title
- gen_header = None
-
- #needed_values = [k for k,v in gleft + gright if v is None] #not used anymore
- #replace missing (None) values with default values
- gen_left_ = []
- for item, value in gen_left:
- if value is None:
- value = default_items[item]() #let KeyErrors raise exception
- gen_left_.append((item, value))
- gen_left = gen_left_
-
- if gen_right:
- gen_right_ = []
- for item, value in gen_right:
- if value is None:
- value = default_items[item]() #let KeyErrors raise exception
- gen_right_.append((item, value))
- gen_right = gen_right_
-
- #check
- missing_values = [k for k,v in gen_left + gen_right if v is None]
- assert missing_values == [], missing_values
-
- #pad both tables to equal number of rows
- if gen_right:
- if len(gen_right) < len(gen_left):
- #fill up with blank lines to same length
- gen_right += [(' ', ' ')] * (len(gen_left) - len(gen_right))
- elif len(gen_right) > len(gen_left):
- #fill up with blank lines to same length, just to keep it symmetric
- gen_left += [(' ', ' ')] * (len(gen_right) - len(gen_left))
-
- #padding in SimpleTable doesn't work like I want
- #force extra spacing and exact string length in right table
- gen_right = [('%-21s' % (' '+k), v) for k,v in gen_right]
-
- gen_stubs_right, gen_data_right = map(None, *gen_right) #transpose row col
- gen_table_right = SimpleTable(gen_data_right,
- gen_header,
- gen_stubs_right,
- title = gen_title,
- txt_fmt = fmt_2cols #gen_fmt
- )
- else:
- gen_table_right = [] #because .extend_right seems works with []
-
-
- #moved below so that we can pad if needed to match length of gen_right
- #transpose rows and columns, `unzip`
- gen_stubs_left, gen_data_left = map(None, *gen_left)
-
- gen_table_left = SimpleTable(gen_data_left,
- gen_header,
- gen_stubs_left,
- title = gen_title,
- txt_fmt = fmt_2cols
- )
-
-
- gen_table_left.extend_right(gen_table_right)
- general_table = gen_table_left
-
- return general_table #, gen_table_left, gen_table_right
-
-
-
-def summary_params(results, yname=None, xname=None, alpha=.05, use_t=True,
- skip_header=False):
- '''create a summary table for the parameters
-
- Parameters
- ----------
- res : results instance
- some required information is directly taken from the result
- instance
- yname : string or None
- optional name for the endogenous variable, default is "y"
- xname : list of strings or None
- optional names for the exogenous variables, default is "var_xx"
- alpha : float
- significance level for the confidence intervals
- use_t : bool
- indicator whether the p-values are based on the Student-t
- distribution (if True) or on the normal distribution (if False)
- skip_headers : bool
- If false (default), then the header row is added. If true, then no
- header row is added.
-
- Returns
- -------
- params_table : SimpleTable instance
- '''
-
- #Parameters part of the summary table
- #------------------------------------
- #Note: this is not necessary since we standardized names, only t versus normal
-
- if isinstance(results, tuple):
- #for multivariate endog
- #TODO: check whether I don't want to refactor this
- #we need to give parameter alpha to conf_int
- results, params, std_err, tvalues, pvalues, conf_int = results
- else:
- params = results.params
- std_err = results.bse
- tvalues = results.tvalues #is this sometimes called zvalues
- pvalues = results.pvalues
- conf_int = results.conf_int(alpha)
-
-
- #Dictionary to store the header names for the parameter part of the
- #summary table. look up by modeltype
- alp = str((1-alpha)*100)+'%'
- if use_t:
- param_header = ['coef', 'std err', 't', 'P>|t|',
- '[' + alp + ' Conf. Int.]']
- else:
- param_header = ['coef', 'std err', 'z', 'P>|z|',
- '[' + alp + ' Conf. Int.]']
-
- if skip_header:
- param_header = None
-
-
- _, xname = _getnames(results, yname=yname, xname=xname)
-
- params_stubs = xname
-
- exog_idx = xrange(len(xname))
-
-
- #center confidence intervals if they are unequal lengths
-# confint = ["(%#6.3g, %#6.3g)" % tuple(conf_int[i]) for i in \
-# exog_idx]
- confint = ["%s %s" % tuple(map(forg, conf_int[i])) for i in \
- exog_idx]
- len_ci = map(len, confint)
- max_ci = max(len_ci)
- min_ci = min(len_ci)
-
- if min_ci < max_ci:
- confint = [ci.center(max_ci) for ci in confint]
-
- #explicit f/g formatting, now uses forg, f or g depending on values
-# params_data = zip(["%#6.4g" % (params[i]) for i in exog_idx],
-# ["%#6.4f" % (std_err[i]) for i in exog_idx],
-# ["%#6.3f" % (tvalues[i]) for i in exog_idx],
-# ["%#6.3f" % (pvalues[i]) for i in exog_idx],
-# confint
-## ["(%#6.3g, %#6.3g)" % tuple(conf_int[i]) for i in \
-## exog_idx]
-# )
-
- params_data = zip([forg(params[i], prec=4) for i in exog_idx],
- [forg(std_err[i]) for i in exog_idx],
- [forg(tvalues[i]) for i in exog_idx],
- ["%#6.3f" % (pvalues[i]) for i in exog_idx],
- confint
-# ["(%#6.3g, %#6.3g)" % tuple(conf_int[i]) for i in \
-# exog_idx]
- )
- parameter_table = SimpleTable(params_data,
- param_header,
- params_stubs,
- title = None,
- txt_fmt = fmt_params #gen_fmt #fmt_2, #gen_fmt,
- )
-
- return parameter_table
-
-def summary_params_2d(result, extras=None, endog_names=None, exog_names=None,
- title=None):
- '''create summary table of regression parameters with several equations
-
- This allows interleaving of parameters with bse and/or tvalues
-
- Parameter
- ---------
- result : result instance
- the result instance with params and attributes in extras
- extras : list of strings
- additional attributes to add below a parameter row, e.g. bse or tvalues
- endog_names : None or list of strings
- names for rows of the parameter array (multivariate endog)
- exog_names : None or list of strings
- names for columns of the parameter array (exog)
- alpha : float
- level for confidence intervals, default 0.95
- title : None or string
-
- Returns
- -------
- tables : list of SimpleTable
- this contains a list of all seperate Subtables
- table_all : SimpleTable
- the merged table with results concatenated for each row of the parameter
- array
-
- '''
- if endog_names is None:
- #TODO: note the [1:] is specific to current MNLogit
- endog_names = ['endog_%d' % i for i in
- np.unique(result.model.endog)[1:]]
- if exog_names is None:
- exog_names = ['var%d' %i for i in range(len(result.params))]
-
- #TODO: check formatting options with different values
- #res_params = [['%10.4f'%item for item in row] for row in result.params]
- res_params = [[forg(item, prec=4) for item in row] for row in result.params]
- if extras: #not None or non-empty
- #maybe this should be a simple triple loop instead of list comprehension?
- #below_list = [[['%10s' % ('('+('%10.3f'%v).strip()+')')
- extras_list = [[['%10s' % ('(' + forg(v, prec=3).strip() + ')')
- for v in col]
- for col in getattr(result, what)]
- for what in extras
- ]
- data = zip(res_params, *extras_list)
- data = [i for j in data for i in j] #flatten
- stubs = zip(endog_names, *[['']*len(endog_names)]*len(extras))
- stubs = [i for j in stubs for i in j] #flatten
- #return SimpleTable(data, headers=exog_names, stubs=stubs)
- else:
- data = res_params
- stubs = endog_names
-# return SimpleTable(data, headers=exog_names, stubs=stubs,
-# data_fmts=['%10.4f'])
-
- import copy
- txt_fmt = copy.deepcopy(fmt_params)
- txt_fmt.update(dict(data_fmts = ["%s"]*result.params.shape[1]))
- return SimpleTable(data, headers=exog_names,
- stubs=stubs,
- title=title,
-# data_fmts = ["%s"]),
- txt_fmt = txt_fmt)
-
-
-def summary_params_2dflat(result, endog_names=None, exog_names=None, alpha=0.95,
- use_t=True, keep_headers=True, endog_cols=False):
- #skip_headers2=True):
- '''summary table for parameters that are 2d, e.g. multi-equation models
-
- Parameter
- ---------
- result : result instance
- the result instance with params, bse, tvalues and conf_int
- endog_names : None or list of strings
- names for rows of the parameter array (multivariate endog)
- exog_names : None or list of strings
- names for columns of the parameter array (exog)
- alpha : float
- level for confidence intervals, default 0.95
- use_t : bool
- indicator whether the p-values are based on the Student-t
- distribution (if True) or on the normal distribution (if False)
- keep_headers : bool
- If true (default), then sub-tables keep their headers. If false, then
- only the first headers are kept, the other headerse are blanked out
- endog_cols : bool
- If false (default) then params and other result statistics have
- equations by rows. If true, then equations are assumed to be in columns.
- Not implemented yet.
-
- Returns
- -------
- tables : list of SimpleTable
- this contains a list of all seperate Subtables
- table_all : SimpleTable
- the merged table with results concatenated for each row of the parameter
- array
-
- '''
-
- res = result
-
- #TODO: VAR and maybe maybe SUR or similar have equation in columns
- #doesn't work yet, I will need to transpose all attributes
- #VAR doesn't have conf_int
- if endog_cols:
- params = res.params.T
-
- if not isinstance(endog_names, list):
- #this might be specific to multinomial logit type, move?
- if endog_names is None:
- endog_basename = 'endog'
- else:
- endog_basename = endog_names
- #TODO: note, the [1:] is specific to current MNLogit
- endog_names = [endog_basename + '=%d' % i for i in
- np.unique(res.model.endog)[1:]]
-
- #check if we have the right length of names
- if not len(endog_names) == res.params.shape[0]:
- raise ValueError('endog_names has wrong length')
-
- res = result
- n_equ = res.params.shape[0]
- tables = []
- for row in range(n_equ):
- restup = (res, res.params[row], res.bse[row], res.tvalues[row],
- res.pvalues[row], res.conf_int(alpha)[row])
-
- #not used anymore in current version
-# if skip_headers2:
-# skiph = (row != 0)
-# else:
-# skiph = False
- skiph = False
- tble = summary_params(restup, yname=endog_names[row],
- xname=exog_names, alpha=.05, use_t=use_t,
- skip_header=skiph)
-
- tables.append(tble)
-
- #add titles, they will be moved to header lines in table_extend
- for i in range(len(endog_names)):
- tables[i].title = endog_names[i]
-
- table_all = table_extend(tables, keep_headers=keep_headers)
-
- return tables, table_all
-
-
-def table_extend(tables, keep_headers=True):
- '''extend a list of SimpleTables, adding titles to header of subtables
-
- This function returns the merged table as a deepcopy, in contrast to the
- SimpleTable extend method.
-
- Parameter
- ---------
- tables : list of SimpleTable instances
- keep_headers : bool
- If true, then all headers are kept. If falls, then the headers of
- subtables are blanked out.
-
- Returns
- -------
- table_all : SimpleTable
- merged tables as a single SimpleTable instance
-
- '''
- from copy import deepcopy
- for ii, t in enumerate(tables[:]): #[1:]:
- t = deepcopy(t)
-
- #move title to first cell of header
- #TODO: check if we have multiline headers
- if t[0].datatype == 'header':
- t[0][0].data = t.title
- t[0][0]._datatype = None
- t[0][0].row = t[0][1].row
- if not keep_headers and (ii > 0):
- for c in t[0][1:]:
- c.data = ''
-
- #add separating line and extend tables
- if ii == 0:
- table_all = t
- else:
- r1 = table_all[-1]
- r1.add_format('txt', row_dec_below='-')
- table_all.extend(t)
-
- table_all.title = None
- return table_all
-
-
-def summary_return(tables, return_fmt='text'):
- ######## Return Summary Tables ########
- # join table parts then print
- if return_fmt == 'text':
- strdrop = lambda x: str(x).rsplit('\n',1)[0]
- #convert to string drop last line
- return '\n'.join(map(strdrop, tables[:-1]) + [str(tables[-1])])
- elif return_fmt == 'tables':
- return tables
- elif return_fmt == 'csv':
- return '\n'.join(map(lambda x: x.as_csv(), tables))
- elif return_fmt == 'latex':
- #TODO: insert \hline after updating SimpleTable
- import copy
- table = copy.deepcopy(tables[0])
- del table[-1]
- for part in tables[1:]:
- table.extend(part)
- return table.as_latex_tabular()
- elif return_fmt == 'html':
- import copy
- table = copy.deepcopy(tables[0])
- for part in tables[1:]:
- table.extend(part)
- return table.as_html
- else:
- raise ValueError('available output formats are text, csv, latex, html')
-
-
-class Summary(object):
- '''class to hold tables for result summary presentation
-
- Construction does not take any parameters. Tables and text can be added
- with the add_... methods.
-
- Attributes
- ----------
- tables : list of tables
- Contains the list of SimpleTable instances, horizontally concatenated
- tables are not saved separately.
- extra_txt : string
- extra lines that are added to the text output, used for warnings and
- explanations.
-
- '''
- def __init__(self):
- self.tables = []
- self.extra_txt = None
-
- def __str__(self):
- return self.as_text()
-
- def __repr__(self):
- #return '<' + str(type(self)) + '>\n"""\n' + self.__str__() + '\n"""'
- return str(type(self)) + '\n"""\n' + self.__str__() + '\n"""'
-
- def add_table_2cols(self, res, title=None, gleft=None, gright=None,
- yname=None, xname=None):
- '''add a double table, 2 tables with one column merged horizontally
-
- Parameters
- ----------
- res : results instance
- some required information is directly taken from the result
- instance
- title : string or None
- if None, then a default title is used.
- ?how did I do no title?
- gleft : list of tuples
- elements for the left table, tuples are (name, value) pairs
- If gleft is None, then a default table is created
- gright : list of tuples or None
- elements for the right table, tuples are (name, value) pairs
- yname : string or None
- optional name for the endogenous variable, default is "y"
- xname : list of strings or None
- optional names for the exogenous variables, default is "var_xx"
-
- Returns
- -------
- None : tables are attached
-
- '''
-
- table = summary_top(res, title=title, gleft=gleft, gright=gright,
- yname=yname, xname=xname)
- self.tables.append(table)
-
- def add_table_params(self, res, yname=None, xname=None, alpha=.05,
- use_t=True):
- '''create and add a table for the parameter estimates
-
- Parameters
- ----------
- res : results instance
- some required information is directly taken from the result
- instance
- yname : string or None
- optional name for the endogenous variable, default is "y"
- xname : list of strings or None
- optional names for the exogenous variables, default is "var_xx"
- alpha : float
- significance level for the confidence intervals
- use_t : bool
- indicator whether the p-values are based on the Student-t
- distribution (if True) or on the normal distribution (if False)
-
- Returns
- -------
- None : table is attached
-
- '''
- if res.params.ndim == 1:
- table = summary_params(res, yname=yname, xname=xname, alpha=alpha,
- use_t=use_t)
- elif res.params.ndim == 2:
-# _, table = summary_params_2dflat(res, yname=yname, xname=xname,
-# alpha=alpha, use_t=use_t)
- _, table = summary_params_2dflat(res, endog_names=yname,
- exog_names=xname,
- alpha=alpha, use_t=use_t)
- else:
- raise ValueError('params has to be 1d or 2d')
- self.tables.append(table)
-
- def add_extra_txt(self, etext):
- '''add additional text that will be added at the end in text format
-
- Parameters
- ----------
- etext : string
- string with lines that are added to the text output.
-
- '''
- self.extra_txt = '\n'.join(etext)
-
- def as_text(self):
- '''return tables as string
-
- Returns
- -------
- txt : string
- summary tables and extra text as one string
-
- '''
- txt = summary_return(self.tables, return_fmt='text')
- if not self.extra_txt is None:
- txt = txt + '\n\n' + self.extra_txt
- return txt
-
- def as_latex(self):
- '''return tables as string
-
- Returns
- -------
- latex : string
- summary tables and extra text as string of Latex
-
- Notes
- -----
- This currently merges tables with different number of columns.
- It is recommended to use `as_latex_tabular` directly on the individual
- tables.
-
- '''
- return summary_return(self.tables, return_fmt='latex')
-
- def as_csv(self):
- '''return tables as string
-
- Returns
- -------
- latex : string
- concatenated summary tables in comma delimited format
-
- '''
- return summary_return(self.tables, return_fmt='csv')
-
-
-if __name__ == "__main__":
- import scikits.statsmodels.api as sm
- data = sm.datasets.longley.load()
- data.exog = sm.add_constant(data.exog)
- res = sm.OLS(data.endog, data.exog).fit()
- #summary(
-
diff --git a/statsmodels/scikits/statsmodels/iolib/table.py b/statsmodels/scikits/statsmodels/iolib/table.py
deleted file mode 100644
index d04819b..0000000
--- a/statsmodels/scikits/statsmodels/iolib/table.py
+++ /dev/null
@@ -1,844 +0,0 @@
-"""
-Provides a simple table class. A SimpleTable is essentially
-a list of lists plus some formatting functionality.
-
-Dependencies: the Python 2.5+ standard library.
-
-Installation: just copy this module into your working directory (or
- anywhere in your pythonpath).
-
-Basic use::
-
- mydata = [[11,12],[21,22]] # data MUST be 2-dimensional
- myheaders = [ "Column 1", "Column 2" ]
- mystubs = [ "Row 1", "Row 2" ]
- tbl = SimpleTable(mydata, myheaders, mystubs, title="Title")
- print( tbl )
- print( tbl.as_csv() )
-
-A SimpleTable is inherently (but not rigidly) rectangular.
-You should create it from a *rectangular* (2d!) iterable of data.
-Each item in your rectangular iterable will become the data
-of a single Cell. In principle, items can be any object,
-not just numbers and strings. However, default conversion
-during table production is by simple string interpolation.
-(So you cannot have a tuple as a data item *and* rely on
-the default conversion.)
-
-A SimpleTable allows only one column (the first) of stubs at
-initilization, concatenation of tables allows you to produce tables
-with interior stubs. (You can also assign the datatype 'stub' to the
-cells in any column, or use ``insert_stubs``.) A SimpleTable can be
-concatenated with another SimpleTable or extended by another
-SimpleTable. ::
-
- table1.extend_right(table2)
- table1.extend(table2)
-
-
-A SimpleTable can be initialized with `datatypes`: a list of ints that
-provide indexes into `data_fmts` and `data_aligns`. Each data cell is
-assigned a datatype, which will control formatting. If you do not
-specify the `datatypes` list, it will be set to ``range(ncols)`` where
-`ncols` is the number of columns in the data. (I.e., cells in a
-column have their own datatype.) This means that you can just specify
-`data_fmts` without bothering to provide a `datatypes` list. If
-``len(datatypes)']
- if self.title:
- title = '%s ' % self.title
- formatted_rows.append(title)
- formatted_rows.extend( row.as_string('html', **fmt) for row in self )
- formatted_rows.append('')
- return '\n'.join(formatted_rows)
- def as_latex_tabular(self, **fmt_dict):
- '''Return string, the table as a LaTeX tabular environment.
- Note: will equire the booktabs package.'''
- #fetch the text format, override with fmt_dict
- fmt = self._get_fmt('latex', **fmt_dict)
- aligns = self[-1].get_aligns('latex', **fmt)
- formatted_rows = [ r'\begin{tabular}{%s}' % aligns ]
-
- table_dec_above = fmt['table_dec_above']
- if table_dec_above:
- formatted_rows.append(table_dec_above)
-
- formatted_rows.extend(
- row.as_string(output_format='latex', **fmt) for row in self )
-
- table_dec_below = fmt['table_dec_below']
- if table_dec_below:
- formatted_rows.append(table_dec_below)
-
- formatted_rows.append(r'\end{tabular}')
- #tabular does not support caption, but make it available for figure environment
- if self.title:
- title = r'%%\caption{%s}' % self.title
- formatted_rows.append(title)
- return '\n'.join(formatted_rows)
- """
- if fmt_dict['strip_backslash']:
- ltx_stubs = [stub.replace('\\',r'$\backslash$') for stub in self.stubs]
- ltx_headers = [header.replace('\\',r'$\backslash$') for header in self.headers]
- ltx_headers = self.format_headers(fmt_dict, ltx_headers)
- else:
- ltx_headers = self.format_headers(fmt_dict)
- ltx_stubs = self.format_stubs(fmt_dict, ltx_stubs)
- """
- def extend_right(self, table):
- """Return None.
- Extend each row of `self` with corresponding row of `table`.
- Does **not** import formatting from ``table``.
- This generally makes sense only if the two tables have
- the same number of rows, but that is not enforced.
- :note: To extend append a table below, just use `extend`,
- which is the ordinary list method. This generally makes sense
- only if the two tables have the same number of columns,
- but that is not enforced.
- """
- for row1, row2 in zip(self, table):
- row1.extend(row2)
- def label_cells(self, func):
- """Return None. Labels cells based on `func`.
- If ``func(cell) is None`` then its datatype is
- not changed; otherwise it is set to ``func(cell)``.
- """
- for row in self:
- for cell in row:
- label = func(cell)
- if label is not None:
- cell.datatype = label
- @property
- def data(self):
- return [row.data for row in self]
-#END: class SimpleTable
-
-def pad(s, width, align):
- """Return string padded with spaces,
- based on alignment parameter."""
- if align == 'l':
- s = s.ljust(width)
- elif align == 'r':
- s = s.rjust(width)
- else:
- s = s.center(width)
- return s
-
-
-class Row(list):
- """Provides a table row as a list of cells.
- A row can belong to a SimpleTable, but does not have to.
- """
- def __init__(self, seq, datatype='data', table=None, celltype=None,
- dec_below='row_dec_below', **fmt_dict):
- """
- Parameters
- ----------
- seq : sequence of data or cells
- table : SimpleTable
- datatype : str ('data' or 'header')
- dec_below : str
- (e.g., 'header_dec_below' or 'row_dec_below')
- decoration tag, identifies the decoration to go below the row.
- (Decoration is repeated as needed for text formats.)
- """
- self.datatype = datatype
- self.table = table
- if celltype is None:
- if table is None:
- celltype = Cell
- else:
- celltype = table._Cell
- self._Cell = celltype
- self._fmt = fmt_dict
- self.special_fmts = dict() #special formatting for any output format
- self.dec_below = dec_below
- list.__init__(self, (celltype(cell,row=self) for cell in seq))
- def add_format(self, output_format, **fmt_dict):
- """
- Return None. Adds row-instance specific formatting
- for the specified output format.
- Example: myrow.add_format('txt', row_dec_below='+-')
- """
- output_format = get_output_format(output_format)
- if output_format not in self.special_fmts:
- self.special_fmts[output_format] = dict()
- self.special_fmts[output_format].update(fmt_dict)
- def insert_stub(self, loc, stub):
- """Return None. Inserts a stub cell
- in the row at `loc`.
- """
- _Cell = self._Cell
- if not isinstance(stub, _Cell):
- stub = stub
- stub = _Cell(stub, datatype='stub', row=self)
- self.insert(loc, stub)
- def _get_fmt(self, output_format, **fmt_dict):
- """Return dict, the formatting options.
- """
- output_format = get_output_format(output_format)
- #first get the default formatting
- try:
- fmt = default_fmts[output_format].copy()
- except KeyError:
- raise ValueError('Unknown format: %s' % output_format)
- #second get table specific formatting (if possible)
- try:
- fmt.update(self.table.output_formats[output_format])
- except AttributeError:
- pass
- #finally, add formatting for this row and this call
- fmt.update(self._fmt)
- fmt.update(fmt_dict)
- special_fmt = self.special_fmts.get(output_format, None)
- if special_fmt is not None:
- fmt.update(special_fmt)
- return fmt
- def get_aligns(self, output_format, **fmt_dict):
- """Return string, sequence of column alignments.
- Ensure comformable data_aligns in `fmt_dict`."""
- fmt = self._get_fmt(output_format, **fmt_dict)
- return ''.join( cell.alignment(output_format, **fmt) for cell in self )
- def as_string(self, output_format='txt', **fmt_dict):
- """Return string: the formatted row.
- This is the default formatter for rows.
- Override this to get different formatting.
- A row formatter must accept as arguments
- a row (self) and an output format,
- one of ('html', 'txt', 'csv', 'latex').
- """
- fmt = self._get_fmt(output_format, **fmt_dict)
-
- #get column widths
- try:
- colwidths = self.table.get_colwidths(output_format, **fmt)
- except AttributeError:
- colwidths = fmt.get('colwidths')
- if colwidths is None:
- colwidths = (0,) * len(self)
-
- colsep = fmt['colsep']
- row_pre = fmt.get('row_pre','')
- row_post = fmt.get('row_post','')
- formatted_cells = []
- for cell, width in zip(self, colwidths):
- content = cell.format(width, output_format=output_format, **fmt)
- formatted_cells.append(content)
- formatted_row = row_pre + colsep.join(formatted_cells) + row_post
- formatted_row = self._decorate_below(formatted_row, output_format, **fmt)
- return formatted_row
- def _decorate_below(self, row_as_string, output_format, **fmt_dict):
- """This really only makes sense for the text and latex output formats."""
- dec_below = fmt_dict.get(self.dec_below, None)
- if dec_below is None:
- result = row_as_string
- else:
- output_format = get_output_format(output_format)
- if output_format == 'txt':
- row0len = len(row_as_string)
- dec_len = len (dec_below)
- repeat, addon = divmod(row0len, dec_len)
- result = row_as_string + "\n" + (dec_below * repeat + dec_below[:addon])
- elif output_format == 'latex':
- result = row_as_string + "\n" + dec_below
- else:
- raise ValueError("I can't decorate a %s header."%output_format)
- return result
- @property
- def data(self):
- return [cell.data for cell in self]
-#END class Row
-
-
-class Cell(object):
- """Provides a table cell.
- A cell can belong to a Row, but does not have to.
- """
- def __init__(self, data='', datatype=None, row=None, **fmt_dict):
- try: #might have passed a Cell instance
- self.data = data.data
- self._datatype = data.datatype
- self._fmt = data._fmt
- except AttributeError: #passed ordinary data
- self.data = data
- self._datatype = datatype
- self._fmt = dict()
- self._fmt.update(fmt_dict)
- self.row = row
- def __str__(self):
- return '%s' % self.data
- def _get_fmt(self, output_format, **fmt_dict):
- """Return dict, the formatting options.
- """
- output_format = get_output_format(output_format)
- #first get the default formatting
- try:
- fmt = default_fmts[output_format].copy()
- except KeyError:
- raise ValueError('Unknown format: %s' % output_format)
- #then get any table specific formtting
- try:
- fmt.update(self.row.table.output_formats[output_format])
- except AttributeError:
- pass
- #then get any row specific formtting
- try:
- fmt.update(self.row._fmt)
- except AttributeError:
- pass
- #finally add formatting for this instance and call
- fmt.update(self._fmt)
- fmt.update(fmt_dict)
- return fmt
- def alignment(self, output_format, **fmt_dict):
- fmt = self._get_fmt(output_format, **fmt_dict)
- datatype = self.datatype
- data_aligns = fmt.get('data_aligns','c')
- if isinstance(datatype, int):
- align = data_aligns[datatype % len(data_aligns)]
- elif datatype == 'stub':
- #still support deprecated `stubs_align`
- align = fmt.get('stubs_align') or fmt.get('stub_align','l')
- elif datatype in fmt:
- label_align = '%s_align' % datatype
- align = fmt.get(label_align,'c')
- else:
- raise ValueError('Unknown cell datatype: %s'%datatype)
- return align
- def format(self, width, output_format='txt', **fmt_dict):
- """Return string.
- This is the default formatter for cells.
- Override this to get different formating.
- A cell formatter must accept as arguments
- a cell (self) and an output format,
- one of ('html', 'txt', 'csv', 'latex').
- It will generally respond to the datatype,
- one of (int, 'header', 'stub').
- """
- fmt = self._get_fmt(output_format, **fmt_dict)
-
- data = self.data
- datatype = self.datatype
- data_fmts = fmt.get('data_fmts')
- if data_fmts is None:
- #chk allow for deprecated use of data_fmt
- data_fmt = fmt.get('data_fmt')
- if data_fmt is None:
- data_fmt = '%s'
- data_fmts = [data_fmt]
- data_aligns = fmt.get('data_aligns','c')
- if isinstance(datatype, int):
- datatype = datatype % len(data_fmts) #constrain to indexes
- content = data_fmts[datatype] % data
- elif datatype in fmt:
- dfmt = fmt.get(datatype)
- try:
- content = dfmt % data
- except TypeError: #dfmt is not a substitution string
- content = dfmt
- else:
- raise ValueError('Unknown cell datatype: %s'%datatype)
- align = self.alignment(output_format, **fmt)
- return pad(content, width, align)
- def get_datatype(self):
- if self._datatype == None:
- dtype = self.row.datatype
- else:
- dtype = self._datatype
- return dtype
- def set_datatype(self, val):
- #TODO: add checking
- self._datatype = val
- datatype = property(get_datatype, set_datatype)
-#END class Cell
-
-
-
-
-
-######### begin: default formats for SimpleTable ##############
-""" Some formatting suggestions:
-
-- if you want rows to have no extra spacing,
- set colwidths=0 and colsep=''.
- (Naturally the columns will not align.)
-- if you want rows to have minimal extra spacing,
- set colwidths=1. The columns will align.
-- to get consistent formatting, you should leave
- all field width handling to SimpleTable:
- use 0 as the field width in data_fmts. E.g., ::
-
- data_fmts = ["%#0.6g","%#0.6g","%#0.4g","%#0.4g"],
- colwidths = 14,
- data_aligns = "r",
-"""
-default_txt_fmt = dict(
- fmt = 'txt',
- #basic table formatting
- table_dec_above='=',
- table_dec_below='-',
- title_align='c',
- #basic row formatting
- row_pre = '',
- row_post = '',
- header_dec_below = '-',
- row_dec_below = None,
- colwidths = None,
- colsep=' ',
- data_aligns = "c",
- #data formats
- #data_fmt = "%s", #deprecated; use data_fmts
- data_fmts = ["%s"],
- #labeled alignments
- #stubs_align = 'l', #deprecated; use data_fmts
- stub_align = 'l',
- header_align = 'c',
- #labeled formats
- header_fmt = '%s', #deprecated; just use 'header'
- stub_fmt = '%s', #deprecated; just use 'stub'
- header='%s',
- stub='%s',
- empty_cell = '', #deprecated; just use 'empty'
- empty = '',
- missing='--',
- )
-
-default_csv_fmt = dict(
- fmt = 'csv',
- table_dec_above = None, #'',
- table_dec_below = None, #'',
- #basic row formatting
- row_pre = '',
- row_post = '',
- header_dec_below = None, #'',
- row_dec_below = None,
- title_align = '',
- data_aligns = "l",
- colwidths = None,
- colsep = ',',
- #data formats
- data_fmt = '%s', #deprecated; use data_fmts
- data_fmts = ['%s'],
- #labeled alignments
- #stubs_align = 'l', #deprecated; use data_fmts
- stub_align = "l",
- header_align = 'c',
- #labeled formats
- header_fmt = '"%s"', #deprecated; just use 'header'
- stub_fmt = '"%s"', #deprecated; just use 'stub'
- empty_cell = '', #deprecated; just use 'empty'
- header='%s',
- stub='%s',
- empty = '',
- missing='--',
- )
-
-default_html_fmt = dict(
- #basic table formatting
- table_dec_above=None,
- table_dec_below=None,
- header_dec_below=None,
- row_dec_below = None,
- title_align='c',
- #basic row formatting
- colwidths = None,
- colsep=' ',
- row_pre = '\n ',
- row_post = '\n ',
- data_aligns = "c",
- #data formats
- data_fmts = ['%s '],
- data_fmt = "%s ", #deprecated; use data_fmts
- #labeled alignments
- #stubs_align = 'l', #deprecated; use data_fmts
- stub_align = 'l',
- header_align = 'c',
- #labeled formats
- header_fmt = '%s ', #deprecated; just use `header`
- stub_fmt = '%s ', #deprecated; just use `stub`
- empty_cell = ' ', #deprecated; just use `empty`
- header='%s ',
- stub='%s ',
- empty = ' ',
- missing='-- ',
- )
-
-default_latex_fmt = dict(
- fmt = 'ltx',
- #basic table formatting
- table_dec_above = r'\toprule',
- table_dec_below = r'\bottomrule',
- header_dec_below = r'\midrule',
- row_dec_below = None,
- strip_backslash = True, # NotImplemented
- #row formatting
- row_post = r' \\',
- data_aligns = 'c',
- colwidths = None,
- colsep = ' & ',
- #data formats
- data_fmts = ['%s'],
- data_fmt = '%s', #deprecated; use data_fmts
- #labeled alignments
- #stubs_align = 'l', #deprecated; use data_fmts
- stub_align = 'l',
- header_align = 'c',
- #labeled formats
- header_fmt = r'\textbf{%s}', #deprecated; just use 'header'
- stub_fmt = r'\textbf{%s}', #deprecated; just use 'stub'
- empty_cell = '', #deprecated; just use 'empty'
- header = r'\textbf{%s}',
- stub = r'\textbf{%s}',
- empty = '',
- missing = '--'
- )
-default_fmts = dict(
-html= default_html_fmt,
-txt=default_txt_fmt,
-latex=default_latex_fmt,
-csv=default_csv_fmt
-)
-output_format_translations = dict(
-htm='html',
-text='txt',
-ltx='latex'
-)
-def get_output_format(output_format):
- if output_format not in ('html', 'txt', 'latex', 'csv'):
- try: output_format = output_format_translations[output_format]
- except KeyError: raise ValueError('unknown output format %s'%output_format)
- return output_format
-
-######### end: default formats ##############
-
-
diff --git a/statsmodels/scikits/statsmodels/iolib/tableformatting.py b/statsmodels/scikits/statsmodels/iolib/tableformatting.py
deleted file mode 100644
index 68284fc..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tableformatting.py
+++ /dev/null
@@ -1,102 +0,0 @@
-"""
-Summary Table formating
-This is here to help keep the formating consistent across the different models
-"""
-
-gen_fmt = dict(
- data_fmts = ["%s", "%s", "%s", "%s", "%s"],
- empty_cell = '',
- colwidths = 7, #17,
- colsep=' ',
- row_pre = ' ',
- row_post = ' ',
- table_dec_above='=',
- table_dec_below=None,
- header_dec_below=None,
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
- # Note table_1l_fmt over rides the below formating unless it is not
- # appended to table_1l
-fmt_1_right = dict(
- data_fmts = ["%s", "%s", "%s", "%s", "%s"],
- empty_cell = '',
- colwidths = 16,
- colsep=' ',
- row_pre = '',
- row_post = '',
- table_dec_above='=',
- table_dec_below=None,
- header_dec_below=None,
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
-
-fmt_2 = dict(
- data_fmts = ["%s", "%s", "%s", "%s"],
- empty_cell = '',
- colwidths = 10,
- colsep=' ',
- row_pre = ' ',
- row_post = ' ',
- table_dec_above='=',
- table_dec_below='=',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
-
-
-# new version
-fmt_base = dict(
- data_fmts = ["%s", "%s", "%s", "%s", "%s"],
- empty_cell = '',
- colwidths = 10,
- colsep=' ',
- row_pre = '',
- row_post = '',
- table_dec_above='=',
- table_dec_below='=', #TODO need '=' at the last subtable
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
-
-import copy
-fmt_2cols = copy.deepcopy(fmt_base)
-
-fmt2 = dict(
- data_fmts = ["%18s", "-%19s", "%18s", "%19s"], #TODO:
- colsep=' ',
- colwidths = 18,
- stub_fmt = '-%21s',
- )
-fmt_2cols.update(fmt2)
-
-fmt_params = copy.deepcopy(fmt_base)
-
-fmt3 = dict(
- data_fmts = ["%s", "%s", "%8s", "%s", "%23s"],
- )
-fmt_params.update(fmt3)
-
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/__init__.py b/statsmodels/scikits/statsmodels/iolib/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/results/__init__.py b/statsmodels/scikits/statsmodels/iolib/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.npy_ b/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.npy_
deleted file mode 100644
index bb245dd..0000000
Binary files a/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.npy_ and /dev/null differ
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.py b/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.py
deleted file mode 100644
index ee89269..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tests/results/macrodata.py
+++ /dev/null
@@ -1,207 +0,0 @@
-from numpy import array
-
-macrodata_result = array(
- [ (1959.0, 1.0, 2710.349, 1707.4, 286.898, 470.045, 1886.9, 28.98, 139.7, 2.82, 5.8, 177.146, 0.0, 0.0),
- (1959.0, 2.0, 2778.801, 1733.7, 310.859, 481.301, 1919.7, 29.15, 141.7, 3.08, 5.1, 177.83, 2.34, 0.74),
- (1959.0, 3.0, 2775.488, 1751.8, 289.226, 491.26, 1916.4, 29.35, 140.5, 3.82, 5.3, 178.657, 2.74, 1.09),
- (1959.0, 4.0, 2785.204, 1753.7, 299.356, 484.052, 1931.3, 29.37, 140.0, 4.33, 5.6, 179.386, 0.27, 4.06),
- (1960.0, 1.0, 2847.699, 1770.5, 331.722, 462.199, 1955.5, 29.54, 139.6, 3.5, 5.2, 180.007, 2.31, 1.19),
- (1960.0, 2.0, 2834.39, 1792.9, 298.152, 460.4, 1966.1, 29.55, 140.2, 2.68, 5.2, 180.671, 0.14, 2.55),
- (1960.0, 3.0, 2839.022, 1785.8, 296.375, 474.676, 1967.8, 29.75, 140.9, 2.36, 5.6, 181.528, 2.7, -0.34),
- (1960.0, 4.0, 2802.616, 1788.2, 259.764, 476.434, 1966.6, 29.84, 141.1, 2.29, 6.3, 182.287, 1.21, 1.08),
- (1961.0, 1.0, 2819.264, 1787.7, 266.405, 475.854, 1984.5, 29.81, 142.1, 2.37, 6.8, 182.992, -0.4, 2.77),
- (1961.0, 2.0, 2872.005, 1814.3, 286.246, 480.328, 2014.4, 29.92, 142.9, 2.29, 7.0, 183.691, 1.47, 0.81),
- (1961.0, 3.0, 2918.419, 1823.1, 310.227, 493.828, 2041.9, 29.98, 144.1, 2.32, 6.8, 184.524, 0.8, 1.52),
- (1961.0, 4.0, 2977.83, 1859.6, 315.463, 502.521, 2082.0, 30.04, 145.2, 2.6, 6.2, 185.242, 0.8, 1.8),
- (1962.0, 1.0, 3031.241, 1879.4, 334.271, 520.96, 2101.7, 30.21, 146.4, 2.73, 5.6, 185.874, 2.26, 0.47),
- (1962.0, 2.0, 3064.709, 1902.5, 331.039, 523.066, 2125.2, 30.22, 146.5, 2.78, 5.5, 186.538, 0.13, 2.65),
- (1962.0, 3.0, 3093.047, 1917.9, 336.962, 538.838, 2137.0, 30.38, 146.7, 2.78, 5.6, 187.323, 2.11, 0.67),
- (1962.0, 4.0, 3100.563, 1945.1, 325.65, 535.912, 2154.6, 30.44, 148.3, 2.87, 5.5, 188.013, 0.79, 2.08),
- (1963.0, 1.0, 3141.087, 1958.2, 343.721, 522.917, 2172.5, 30.48, 149.7, 2.9, 5.8, 188.58, 0.53, 2.38),
- (1963.0, 2.0, 3180.447, 1976.9, 348.73, 518.108, 2193.1, 30.69, 151.3, 3.03, 5.7, 189.242, 2.75, 0.29),
- (1963.0, 3.0, 3240.332, 2003.8, 360.102, 546.893, 2217.9, 30.75, 152.6, 3.38, 5.5, 190.028, 0.78, 2.6),
- (1963.0, 4.0, 3264.967, 2020.6, 364.534, 532.383, 2254.6, 30.94, 153.7, 3.52, 5.6, 190.668, 2.46, 1.06),
- (1964.0, 1.0, 3338.246, 2060.5, 379.523, 529.686, 2299.6, 30.95, 154.8, 3.51, 5.5, 191.245, 0.13, 3.38),
- (1964.0, 2.0, 3376.587, 2096.7, 377.778, 526.175, 2362.1, 31.02, 156.8, 3.47, 5.2, 191.889, 0.9, 2.57),
- (1964.0, 3.0, 3422.469, 2135.2, 386.754, 522.008, 2392.7, 31.12, 159.2, 3.53, 5.0, 192.631, 1.29, 2.25),
- (1964.0, 4.0, 3431.957, 2141.2, 389.91, 514.603, 2420.4, 31.28, 160.7, 3.76, 5.0, 193.223, 2.05, 1.71),
- (1965.0, 1.0, 3516.251, 2188.8, 429.145, 508.006, 2447.4, 31.38, 162.0, 3.93, 4.9, 193.709, 1.28, 2.65),
- (1965.0, 2.0, 3563.96, 2213.0, 429.119, 508.931, 2474.5, 31.58, 163.1, 3.84, 4.7, 194.303, 2.54, 1.3),
- (1965.0, 3.0, 3636.285, 2251.0, 444.444, 529.446, 2542.6, 31.65, 166.0, 3.93, 4.4, 194.997, 0.89, 3.04),
- (1965.0, 4.0, 3724.014, 2314.3, 446.493, 544.121, 2594.1, 31.88, 169.1, 4.35, 4.1, 195.539, 2.9, 1.46),
- (1966.0, 1.0, 3815.423, 2348.5, 484.244, 556.593, 2618.4, 32.28, 171.8, 4.62, 3.9, 195.999, 4.99, -0.37),
- (1966.0, 2.0, 3828.124, 2354.5, 475.408, 571.371, 2624.7, 32.45, 170.3, 4.65, 3.8, 196.56, 2.1, 2.55),
- (1966.0, 3.0, 3853.301, 2381.5, 470.697, 594.514, 2657.8, 32.85, 171.2, 5.23, 3.8, 197.207, 4.9, 0.33),
- (1966.0, 4.0, 3884.52, 2391.4, 472.957, 599.528, 2688.2, 32.9, 171.9, 5.0, 3.7, 197.736, 0.61, 4.39),
- (1967.0, 1.0, 3918.74, 2405.3, 460.007, 640.682, 2728.4, 33.1, 174.2, 4.22, 3.8, 198.206, 2.42, 1.8),
- (1967.0, 2.0, 3919.556, 2438.1, 440.393, 631.43, 2750.8, 33.4, 178.1, 3.78, 3.8, 198.712, 3.61, 0.17),
- (1967.0, 3.0, 3950.826, 2450.6, 453.033, 641.504, 2777.1, 33.7, 181.6, 4.42, 3.8, 199.311, 3.58, 0.84),
- (1967.0, 4.0, 3980.97, 2465.7, 462.834, 640.234, 2797.4, 34.1, 184.3, 4.9, 3.9, 199.808, 4.72, 0.18),
- (1968.0, 1.0, 4063.013, 2524.6, 472.907, 651.378, 2846.2, 34.4, 186.6, 5.18, 3.7, 200.208, 3.5, 1.67),
- (1968.0, 2.0, 4131.998, 2563.3, 492.026, 646.145, 2893.5, 34.9, 190.5, 5.5, 3.5, 200.706, 5.77, -0.28),
- (1968.0, 3.0, 4160.267, 2611.5, 476.053, 640.615, 2899.3, 35.3, 194.0, 5.21, 3.5, 201.29, 4.56, 0.65),
- (1968.0, 4.0, 4178.293, 2623.5, 480.998, 636.729, 2918.4, 35.7, 198.7, 5.85, 3.4, 201.76, 4.51, 1.34),
- (1969.0, 1.0, 4244.1, 2652.9, 512.686, 633.224, 2923.4, 36.3, 200.7, 6.08, 3.4, 202.161, 6.67, -0.58),
- (1969.0, 2.0, 4256.46, 2669.8, 508.601, 623.16, 2952.9, 36.8, 201.7, 6.49, 3.4, 202.677, 5.47, 1.02),
- (1969.0, 3.0, 4283.378, 2682.7, 520.36, 623.613, 3012.9, 37.3, 202.9, 7.02, 3.6, 203.302, 5.4, 1.63),
- (1969.0, 4.0, 4263.261, 2704.1, 492.334, 606.9, 3034.9, 37.9, 206.2, 7.64, 3.6, 203.849, 6.38, 1.26),
- (1970.0, 1.0, 4256.573, 2720.7, 476.925, 594.888, 3050.1, 38.5, 206.7, 6.76, 4.2, 204.401, 6.28, 0.47),
- (1970.0, 2.0, 4264.289, 2733.2, 478.419, 576.257, 3103.5, 38.9, 208.0, 6.66, 4.8, 205.052, 4.13, 2.52),
- (1970.0, 3.0, 4302.259, 2757.1, 486.594, 567.743, 3145.4, 39.4, 212.9, 6.15, 5.2, 205.788, 5.11, 1.04),
- (1970.0, 4.0, 4256.637, 2749.6, 458.406, 564.666, 3135.1, 39.9, 215.5, 4.86, 5.8, 206.466, 5.04, -0.18),
- (1971.0, 1.0, 4374.016, 2802.2, 517.935, 542.709, 3197.3, 40.1, 220.0, 3.65, 5.9, 207.065, 2.0, 1.65),
- (1971.0, 2.0, 4398.829, 2827.9, 533.986, 534.905, 3245.3, 40.6, 224.9, 4.76, 5.9, 207.661, 4.96, -0.19),
- (1971.0, 3.0, 4433.943, 2850.4, 541.01, 532.646, 3259.7, 40.9, 227.2, 4.7, 6.0, 208.345, 2.94, 1.75),
- (1971.0, 4.0, 4446.264, 2897.8, 524.085, 516.14, 3294.2, 41.2, 230.1, 3.87, 6.0, 208.917, 2.92, 0.95),
- (1972.0, 1.0, 4525.769, 2936.5, 561.147, 518.192, 3314.9, 41.5, 235.6, 3.55, 5.8, 209.386, 2.9, 0.64),
- (1972.0, 2.0, 4633.101, 2992.6, 595.495, 526.473, 3346.1, 41.8, 238.8, 3.86, 5.7, 209.896, 2.88, 0.98),
- (1972.0, 3.0, 4677.503, 3038.8, 603.97, 498.116, 3414.6, 42.2, 245.0, 4.47, 5.6, 210.479, 3.81, 0.66),
- (1972.0, 4.0, 4754.546, 3110.1, 607.104, 496.54, 3550.5, 42.7, 251.5, 5.09, 5.3, 210.985, 4.71, 0.38),
- (1973.0, 1.0, 4876.166, 3167.0, 645.654, 504.838, 3590.7, 43.7, 252.7, 5.98, 5.0, 211.42, 9.26, -3.28),
- (1973.0, 2.0, 4932.571, 3165.4, 675.837, 497.033, 3626.2, 44.2, 257.5, 7.19, 4.9, 211.909, 4.55, 2.64),
- (1973.0, 3.0, 4906.252, 3176.7, 649.412, 475.897, 3644.4, 45.6, 259.0, 8.06, 4.8, 212.475, 12.47, -4.41),
- (1973.0, 4.0, 4953.05, 3167.4, 674.253, 476.174, 3688.9, 46.8, 263.8, 7.68, 4.8, 212.932, 10.39, -2.71),
- (1974.0, 1.0, 4909.617, 3139.7, 631.23, 491.043, 3632.3, 48.1, 267.2, 7.8, 5.1, 213.361, 10.96, -3.16),
- (1974.0, 2.0, 4922.188, 3150.6, 628.102, 490.177, 3601.1, 49.3, 269.3, 7.89, 5.2, 213.854, 9.86, -1.96),
- (1974.0, 3.0, 4873.52, 3163.6, 592.672, 492.586, 3612.4, 51.0, 272.3, 8.16, 5.6, 214.451, 13.56, -5.4),
- (1974.0, 4.0, 4854.34, 3117.3, 598.306, 496.176, 3596.0, 52.3, 273.9, 6.96, 6.6, 214.931, 10.07, -3.11),
- (1975.0, 1.0, 4795.295, 3143.4, 493.212, 490.603, 3581.9, 53.0, 276.2, 5.53, 8.2, 215.353, 5.32, 0.22),
- (1975.0, 2.0, 4831.942, 3195.8, 476.085, 486.679, 3749.3, 54.0, 283.7, 5.57, 8.9, 215.973, 7.48, -1.91),
- (1975.0, 3.0, 4913.328, 3241.4, 516.402, 498.836, 3698.6, 54.9, 285.4, 6.27, 8.5, 216.587, 6.61, -0.34),
- (1975.0, 4.0, 4977.511, 3275.7, 530.596, 500.141, 3736.0, 55.8, 288.4, 5.26, 8.3, 217.095, 6.5, -1.24),
- (1976.0, 1.0, 5090.663, 3341.2, 585.541, 495.568, 3791.0, 56.1, 294.7, 4.91, 7.7, 217.528, 2.14, 2.77),
- (1976.0, 2.0, 5128.947, 3371.8, 610.513, 494.532, 3822.2, 57.0, 297.2, 5.28, 7.6, 218.035, 6.37, -1.09),
- (1976.0, 3.0, 5154.072, 3407.5, 611.646, 493.141, 3856.7, 57.9, 302.0, 5.05, 7.7, 218.644, 6.27, -1.22),
- (1976.0, 4.0, 5191.499, 3451.8, 615.898, 494.415, 3884.4, 58.7, 308.3, 4.57, 7.8, 219.179, 5.49, -0.92),
- (1977.0, 1.0, 5251.762, 3491.3, 646.198, 498.509, 3887.5, 60.0, 316.0, 4.6, 7.5, 219.684, 8.76, -4.16),
- (1977.0, 2.0, 5356.131, 3510.6, 696.141, 506.695, 3931.8, 60.8, 320.2, 5.06, 7.1, 220.239, 5.3, -0.24),
- (1977.0, 3.0, 5451.921, 3544.1, 734.078, 509.605, 3990.8, 61.6, 326.4, 5.82, 6.9, 220.904, 5.23, 0.59),
- (1977.0, 4.0, 5450.793, 3597.5, 713.356, 504.584, 4071.2, 62.7, 334.4, 6.2, 6.6, 221.477, 7.08, -0.88),
- (1978.0, 1.0, 5469.405, 3618.5, 727.504, 506.314, 4096.4, 63.9, 339.9, 6.34, 6.3, 221.991, 7.58, -1.24),
- (1978.0, 2.0, 5684.569, 3695.9, 777.454, 518.366, 4143.4, 65.5, 347.6, 6.72, 6.0, 222.585, 9.89, -3.18),
- (1978.0, 3.0, 5740.3, 3711.4, 801.452, 520.199, 4177.1, 67.1, 353.3, 7.64, 6.0, 223.271, 9.65, -2.01),
- (1978.0, 4.0, 5816.222, 3741.3, 819.689, 524.782, 4209.8, 68.5, 358.6, 9.02, 5.9, 223.865, 8.26, 0.76),
- (1979.0, 1.0, 5825.949, 3760.2, 819.556, 525.524, 4255.9, 70.6, 368.0, 9.42, 5.9, 224.438, 12.08, -2.66),
- (1979.0, 2.0, 5831.418, 3758.0, 817.66, 532.04, 4226.1, 73.0, 377.2, 9.3, 5.7, 225.055, 13.37, -4.07),
- (1979.0, 3.0, 5873.335, 3794.9, 801.742, 531.232, 4250.3, 75.2, 380.8, 10.49, 5.9, 225.801, 11.88, -1.38),
- (1979.0, 4.0, 5889.495, 3805.0, 786.817, 531.126, 4284.3, 78.0, 385.8, 11.94, 5.9, 226.451, 14.62, -2.68),
- (1980.0, 1.0, 5908.467, 3798.4, 781.114, 548.115, 4296.2, 80.9, 383.8, 13.75, 6.3, 227.061, 14.6, -0.85),
- (1980.0, 2.0, 5787.373, 3712.2, 710.64, 561.895, 4236.1, 82.6, 394.0, 7.9, 7.3, 227.726, 8.32, -0.42),
- (1980.0, 3.0, 5776.617, 3752.0, 656.477, 554.292, 4279.7, 84.7, 409.0, 10.34, 7.7, 228.417, 10.04, 0.3),
- (1980.0, 4.0, 5883.46, 3802.0, 723.22, 556.13, 4368.1, 87.2, 411.3, 14.75, 7.4, 228.937, 11.64, 3.11),
- (1981.0, 1.0, 6005.717, 3822.8, 795.091, 567.618, 4358.1, 89.1, 427.4, 13.95, 7.4, 229.403, 8.62, 5.32),
- (1981.0, 2.0, 5957.795, 3822.8, 757.24, 584.54, 4358.6, 91.5, 426.9, 15.33, 7.4, 229.966, 10.63, 4.69),
- (1981.0, 3.0, 6030.184, 3838.3, 804.242, 583.89, 4455.4, 93.4, 428.4, 14.58, 7.4, 230.641, 8.22, 6.36),
- (1981.0, 4.0, 5955.062, 3809.3, 773.053, 590.125, 4464.4, 94.4, 442.7, 11.33, 8.2, 231.157, 4.26, 7.07),
- (1982.0, 1.0, 5857.333, 3833.9, 692.514, 591.043, 4469.6, 95.0, 447.1, 12.95, 8.8, 231.645, 2.53, 10.42),
- (1982.0, 2.0, 5889.074, 3847.7, 691.9, 596.403, 4500.8, 97.5, 448.0, 11.97, 9.4, 232.188, 10.39, 1.58),
- (1982.0, 3.0, 5866.37, 3877.2, 683.825, 605.37, 4520.6, 98.1, 464.5, 8.1, 9.9, 232.816, 2.45, 5.65),
- (1982.0, 4.0, 5871.001, 3947.9, 622.93, 623.307, 4536.4, 97.9, 477.2, 7.96, 10.7, 233.322, -0.82, 8.77),
- (1983.0, 1.0, 5944.02, 3986.6, 645.11, 630.873, 4572.2, 98.8, 493.2, 8.22, 10.4, 233.781, 3.66, 4.56),
- (1983.0, 2.0, 6077.619, 4065.7, 707.372, 644.322, 4605.5, 99.8, 507.8, 8.69, 10.1, 234.307, 4.03, 4.66),
- (1983.0, 3.0, 6197.468, 4137.6, 754.937, 662.412, 4674.7, 100.8, 517.2, 8.99, 9.4, 234.907, 3.99, 5.01),
- (1983.0, 4.0, 6325.574, 4203.2, 834.427, 639.197, 4771.1, 102.1, 525.1, 8.89, 8.5, 235.385, 5.13, 3.76),
- (1984.0, 1.0, 6448.264, 4239.2, 921.763, 644.635, 4875.4, 103.3, 535.0, 9.43, 7.9, 235.839, 4.67, 4.76),
- (1984.0, 2.0, 6559.594, 4299.9, 952.841, 664.839, 4959.4, 104.1, 540.9, 9.94, 7.5, 236.348, 3.09, 6.85),
- (1984.0, 3.0, 6623.343, 4333.0, 974.989, 662.294, 5036.6, 105.1, 543.7, 10.19, 7.4, 236.976, 3.82, 6.37),
- (1984.0, 4.0, 6677.264, 4390.1, 958.993, 684.282, 5084.5, 105.7, 557.0, 8.14, 7.3, 237.468, 2.28, 5.87),
- (1985.0, 1.0, 6740.275, 4464.6, 927.375, 691.613, 5072.0, 107.0, 570.4, 8.25, 7.3, 237.9, 4.89, 3.36),
- (1985.0, 2.0, 6797.344, 4505.2, 943.383, 708.524, 5172.7, 107.7, 589.1, 7.17, 7.3, 238.466, 2.61, 4.56),
- (1985.0, 3.0, 6903.523, 4590.8, 932.959, 732.305, 5140.7, 108.5, 607.8, 7.13, 7.2, 239.113, 2.96, 4.17),
- (1985.0, 4.0, 6955.918, 4600.9, 969.434, 732.026, 5193.9, 109.9, 621.4, 7.14, 7.0, 239.638, 5.13, 2.01),
- (1986.0, 1.0, 7022.757, 4639.3, 967.442, 728.125, 5255.8, 108.7, 641.0, 6.56, 7.0, 240.094, -4.39, 10.95),
- (1986.0, 2.0, 7050.969, 4688.7, 945.972, 751.334, 5315.5, 109.5, 670.3, 6.06, 7.2, 240.651, 2.93, 3.13),
- (1986.0, 3.0, 7118.95, 4770.7, 916.315, 779.77, 5343.3, 110.2, 694.9, 5.31, 7.0, 241.274, 2.55, 2.76),
- (1986.0, 4.0, 7153.359, 4799.4, 917.736, 767.671, 5346.5, 111.4, 730.2, 5.44, 6.8, 241.784, 4.33, 1.1),
- (1987.0, 1.0, 7193.019, 4792.1, 945.776, 772.247, 5379.4, 112.7, 743.9, 5.61, 6.6, 242.252, 4.64, 0.97),
- (1987.0, 2.0, 7269.51, 4856.3, 947.1, 782.962, 5321.0, 113.8, 743.0, 5.67, 6.3, 242.804, 3.89, 1.79),
- (1987.0, 3.0, 7332.558, 4910.4, 948.055, 783.804, 5416.2, 115.0, 756.2, 6.19, 6.0, 243.446, 4.2, 1.99),
- (1987.0, 4.0, 7458.022, 4922.2, 1021.98, 795.467, 5493.1, 116.0, 756.2, 5.76, 5.9, 243.981, 3.46, 2.29),
- (1988.0, 1.0, 7496.6, 5004.4, 964.398, 773.851, 5562.1, 117.2, 768.1, 5.76, 5.7, 244.445, 4.12, 1.64),
- (1988.0, 2.0, 7592.881, 5040.8, 987.858, 765.98, 5614.3, 118.5, 781.4, 6.48, 5.5, 245.021, 4.41, 2.07),
- (1988.0, 3.0, 7632.082, 5080.6, 994.204, 760.245, 5657.5, 119.9, 783.3, 7.22, 5.5, 245.693, 4.7, 2.52),
- (1988.0, 4.0, 7733.991, 5140.4, 1007.371, 783.065, 5708.5, 121.2, 785.7, 8.03, 5.3, 246.224, 4.31, 3.72),
- (1989.0, 1.0, 7806.603, 5159.3, 1045.975, 767.024, 5773.4, 123.1, 779.2, 8.67, 5.2, 246.721, 6.22, 2.44),
- (1989.0, 2.0, 7865.016, 5182.4, 1033.753, 784.275, 5749.8, 124.5, 777.8, 8.15, 5.2, 247.342, 4.52, 3.63),
- (1989.0, 3.0, 7927.393, 5236.1, 1021.604, 791.819, 5787.0, 125.4, 786.6, 7.76, 5.3, 248.067, 2.88, 4.88),
- (1989.0, 4.0, 7944.697, 5261.7, 1011.119, 787.844, 5831.3, 127.5, 795.4, 7.65, 5.4, 248.659, 6.64, 1.01),
- (1990.0, 1.0, 8027.693, 5303.3, 1021.07, 799.681, 5875.1, 128.9, 806.2, 7.8, 5.3, 249.306, 4.37, 3.44),
- (1990.0, 2.0, 8059.598, 5320.8, 1021.36, 800.639, 5913.9, 130.5, 810.1, 7.7, 5.3, 250.132, 4.93, 2.76),
- (1990.0, 3.0, 8059.476, 5341.0, 997.319, 793.513, 5918.1, 133.4, 819.8, 7.33, 5.7, 251.057, 8.79, -1.46),
- (1990.0, 4.0, 7988.864, 5299.5, 934.248, 800.525, 5878.2, 134.7, 827.2, 6.67, 6.1, 251.889, 3.88, 2.79),
- (1991.0, 1.0, 7950.164, 5284.4, 896.21, 806.775, 5896.3, 135.1, 843.2, 5.83, 6.6, 252.643, 1.19, 4.65),
- (1991.0, 2.0, 8003.822, 5324.7, 891.704, 809.081, 5941.1, 136.2, 861.5, 5.54, 6.8, 253.493, 3.24, 2.29),
- (1991.0, 3.0, 8037.538, 5345.0, 913.904, 793.987, 5953.6, 137.2, 878.0, 5.18, 6.9, 254.435, 2.93, 2.25),
- (1991.0, 4.0, 8069.046, 5342.6, 948.891, 778.378, 5992.4, 138.3, 910.4, 4.14, 7.1, 255.214, 3.19, 0.95),
- (1992.0, 1.0, 8157.616, 5434.5, 927.796, 778.568, 6082.9, 139.4, 943.8, 3.88, 7.4, 255.992, 3.17, 0.71),
- (1992.0, 2.0, 8244.294, 5466.7, 988.912, 777.762, 6129.5, 140.5, 963.2, 3.5, 7.6, 256.894, 3.14, 0.36),
- (1992.0, 3.0, 8329.361, 5527.1, 999.135, 786.639, 6160.6, 141.7, 1003.8, 2.97, 7.6, 257.861, 3.4, -0.44),
- (1992.0, 4.0, 8417.016, 5594.6, 1030.758, 787.064, 6248.2, 142.8, 1030.4, 3.12, 7.4, 258.679, 3.09, 0.02),
- (1993.0, 1.0, 8432.485, 5617.2, 1054.979, 762.901, 6156.5, 143.8, 1047.6, 2.92, 7.2, 259.414, 2.79, 0.13),
- (1993.0, 2.0, 8486.435, 5671.1, 1063.263, 752.158, 6252.3, 144.5, 1084.5, 3.02, 7.1, 260.255, 1.94, 1.08),
- (1993.0, 3.0, 8531.108, 5732.7, 1062.514, 744.227, 6265.7, 145.6, 1113.0, 3.0, 6.8, 261.163, 3.03, -0.04),
- (1993.0, 4.0, 8643.769, 5783.7, 1118.583, 748.102, 6358.1, 146.3, 1131.6, 3.05, 6.6, 261.919, 1.92, 1.13),
- (1994.0, 1.0, 8727.919, 5848.1, 1166.845, 721.288, 6332.6, 147.2, 1141.1, 3.48, 6.6, 262.631, 2.45, 1.02),
- (1994.0, 2.0, 8847.303, 5891.5, 1234.855, 717.197, 6440.6, 148.4, 1150.5, 4.2, 6.2, 263.436, 3.25, 0.96),
- (1994.0, 3.0, 8904.289, 5938.7, 1212.655, 736.89, 6487.9, 149.4, 1150.1, 4.68, 6.0, 264.301, 2.69, 2.0),
- (1994.0, 4.0, 9003.18, 5997.3, 1269.19, 716.702, 6574.0, 150.5, 1151.4, 5.53, 5.6, 265.044, 2.93, 2.6),
- (1995.0, 1.0, 9025.267, 6004.3, 1282.09, 715.326, 6616.6, 151.8, 1149.3, 5.72, 5.5, 265.755, 3.44, 2.28),
- (1995.0, 2.0, 9044.668, 6053.5, 1247.61, 712.492, 6617.2, 152.6, 1145.4, 5.52, 5.7, 266.557, 2.1, 3.42),
- (1995.0, 3.0, 9120.684, 6107.6, 1235.601, 707.649, 6666.8, 153.5, 1137.3, 5.32, 5.7, 267.456, 2.35, 2.97),
- (1995.0, 4.0, 9184.275, 6150.6, 1270.392, 681.081, 6706.2, 154.7, 1123.5, 5.17, 5.6, 268.151, 3.11, 2.05),
- (1996.0, 1.0, 9247.188, 6206.9, 1287.128, 695.265, 6777.7, 156.1, 1124.8, 4.91, 5.5, 268.853, 3.6, 1.31),
- (1996.0, 2.0, 9407.052, 6277.1, 1353.795, 705.172, 6850.6, 157.0, 1112.4, 5.09, 5.5, 269.667, 2.3, 2.79),
- (1996.0, 3.0, 9488.879, 6314.6, 1422.059, 692.741, 6908.9, 158.2, 1086.1, 5.04, 5.3, 270.581, 3.05, 2.0),
- (1996.0, 4.0, 9592.458, 6366.1, 1418.193, 690.744, 6946.8, 159.4, 1081.5, 4.99, 5.3, 271.36, 3.02, 1.97),
- (1997.0, 1.0, 9666.235, 6430.2, 1451.304, 681.445, 7008.9, 159.9, 1063.8, 5.1, 5.2, 272.083, 1.25, 3.85),
- (1997.0, 2.0, 9809.551, 6456.2, 1543.976, 693.525, 7061.5, 160.4, 1066.2, 5.01, 5.0, 272.912, 1.25, 3.76),
- (1997.0, 3.0, 9932.672, 6566.0, 1571.426, 691.261, 7142.4, 161.5, 1065.5, 5.02, 4.9, 273.852, 2.73, 2.29),
- (1997.0, 4.0, 10008.874, 6641.1, 1596.523, 690.311, 7241.5, 162.0, 1074.4, 5.11, 4.7, 274.626, 1.24, 3.88),
- (1998.0, 1.0, 10103.425, 6707.2, 1672.732, 668.783, 7406.2, 162.2, 1076.1, 5.02, 4.6, 275.304, 0.49, 4.53),
- (1998.0, 2.0, 10194.277, 6822.6, 1652.716, 687.184, 7512.0, 163.2, 1075.0, 4.98, 4.4, 276.115, 2.46, 2.52),
- (1998.0, 3.0, 10328.787, 6913.1, 1700.071, 681.472, 7591.0, 163.9, 1086.0, 4.49, 4.5, 277.003, 1.71, 2.78),
- (1998.0, 4.0, 10507.575, 7019.1, 1754.743, 688.147, 7646.5, 164.7, 1097.8, 4.38, 4.4, 277.79, 1.95, 2.43),
- (1999.0, 1.0, 10601.179, 7088.3, 1809.993, 683.601, 7698.4, 165.9, 1101.9, 4.39, 4.3, 278.451, 2.9, 1.49),
- (1999.0, 2.0, 10684.049, 7199.9, 1803.674, 683.594, 7716.0, 166.7, 1098.7, 4.54, 4.3, 279.295, 1.92, 2.62),
- (1999.0, 3.0, 10819.914, 7286.4, 1848.949, 697.936, 7765.9, 168.1, 1102.3, 4.75, 4.2, 280.203, 3.35, 1.41),
- (1999.0, 4.0, 11014.254, 7389.2, 1914.567, 713.445, 7887.7, 169.3, 1121.9, 5.2, 4.1, 280.976, 2.85, 2.35),
- (2000.0, 1.0, 11043.044, 7501.3, 1887.836, 685.216, 8053.4, 170.9, 1113.5, 5.63, 4.0, 281.653, 3.76, 1.87),
- (2000.0, 2.0, 11258.454, 7571.8, 2018.529, 712.641, 8135.9, 172.7, 1103.0, 5.81, 3.9, 282.385, 4.19, 1.62),
- (2000.0, 3.0, 11267.867, 7645.9, 1986.956, 698.827, 8222.3, 173.9, 1098.7, 6.07, 4.0, 283.19, 2.77, 3.3),
- (2000.0, 4.0, 11334.544, 7713.5, 1987.845, 695.597, 8234.6, 175.6, 1097.7, 5.7, 3.9, 283.9, 3.89, 1.81),
- (2001.0, 1.0, 11297.171, 7744.3, 1882.691, 710.403, 8296.5, 176.4, 1114.9, 4.39, 4.2, 284.55, 1.82, 2.57),
- (2001.0, 2.0, 11371.251, 7773.5, 1876.65, 725.623, 8273.7, 177.4, 1139.7, 3.54, 4.4, 285.267, 2.26, 1.28),
- (2001.0, 3.0, 11340.075, 7807.7, 1837.074, 730.493, 8484.5, 177.6, 1166.0, 2.72, 4.8, 286.047, 0.45, 2.27),
- (2001.0, 4.0, 11380.128, 7930.0, 1731.189, 739.318, 8385.5, 177.7, 1190.9, 1.74, 5.5, 286.728, 0.23, 1.51),
- (2002.0, 1.0, 11477.868, 7957.3, 1789.327, 756.915, 8611.6, 179.3, 1185.9, 1.75, 5.7, 287.328, 3.59, -1.84),
- (2002.0, 2.0, 11538.77, 7997.8, 1810.779, 774.408, 8658.9, 180.0, 1199.5, 1.7, 5.8, 288.028, 1.56, 0.14),
- (2002.0, 3.0, 11596.43, 8052.0, 1814.531, 786.673, 8629.2, 181.2, 1204.0, 1.61, 5.7, 288.783, 2.66, -1.05),
- (2002.0, 4.0, 11598.824, 8080.6, 1813.219, 799.967, 8649.6, 182.6, 1226.8, 1.2, 5.8, 289.421, 3.08, -1.88),
- (2003.0, 1.0, 11645.819, 8122.3, 1813.141, 800.196, 8681.3, 183.2, 1248.4, 1.14, 5.9, 290.019, 1.31, -0.17),
- (2003.0, 2.0, 11738.706, 8197.8, 1823.698, 838.775, 8812.5, 183.7, 1287.9, 0.96, 6.2, 290.704, 1.09, -0.13),
- (2003.0, 3.0, 11935.461, 8312.1, 1889.883, 839.598, 8935.4, 184.9, 1297.3, 0.94, 6.1, 291.449, 2.6, -1.67),
- (2003.0, 4.0, 12042.817, 8358.0, 1959.783, 845.722, 8986.4, 186.3, 1306.1, 0.9, 5.8, 292.057, 3.02, -2.11),
- (2004.0, 1.0, 12127.623, 8437.6, 1970.015, 856.57, 9025.9, 187.4, 1332.1, 0.94, 5.7, 292.635, 2.35, -1.42),
- (2004.0, 2.0, 12213.818, 8483.2, 2055.58, 861.44, 9115.0, 189.1, 1340.5, 1.21, 5.6, 293.31, 3.61, -2.41),
- (2004.0, 3.0, 12303.533, 8555.8, 2082.231, 876.385, 9175.9, 190.8, 1361.0, 1.63, 5.4, 294.066, 3.58, -1.95),
- (2004.0, 4.0, 12410.282, 8654.2, 2125.152, 865.596, 9303.4, 191.8, 1366.6, 2.2, 5.4, 294.741, 2.09, 0.11),
- (2005.0, 1.0, 12534.113, 8719.0, 2170.299, 869.204, 9189.6, 193.8, 1357.8, 2.69, 5.3, 295.308, 4.15, -1.46),
- (2005.0, 2.0, 12587.535, 8802.9, 2131.468, 870.044, 9253.0, 194.7, 1366.6, 3.01, 5.1, 295.994, 1.85, 1.16),
- (2005.0, 3.0, 12683.153, 8865.6, 2154.949, 890.394, 9308.0, 199.2, 1375.0, 3.52, 5.0, 296.77, 9.14, -5.62),
- (2005.0, 4.0, 12748.699, 8888.5, 2232.193, 875.557, 9358.7, 199.4, 1380.6, 4.0, 4.9, 297.435, 0.4, 3.6),
- (2006.0, 1.0, 12915.938, 8986.6, 2264.721, 900.511, 9533.8, 200.7, 1380.5, 4.51, 4.7, 298.061, 2.6, 1.91),
- (2006.0, 2.0, 12962.462, 9035.0, 2261.247, 892.839, 9617.3, 202.7, 1369.2, 4.82, 4.7, 298.766, 3.97, 0.85),
- (2006.0, 3.0, 12965.916, 9090.7, 2229.636, 892.002, 9662.5, 201.9, 1369.4, 4.9, 4.7, 299.593, -1.58, 6.48),
- (2006.0, 4.0, 13060.679, 9181.6, 2165.966, 894.404, 9788.8, 203.574, 1373.6, 4.92, 4.4, 300.32, 3.3, 1.62),
- (2007.0, 1.0, 13099.901, 9265.1, 2132.609, 882.766, 9830.2, 205.92, 1379.7, 4.95, 4.5, 300.977, 4.58, 0.36),
- (2007.0, 2.0, 13203.977, 9291.5, 2162.214, 898.713, 9842.7, 207.338, 1370.0, 4.72, 4.5, 301.714, 2.75, 1.97),
- (2007.0, 3.0, 13321.109, 9335.6, 2166.491, 918.983, 9883.9, 209.133, 1379.2, 4.0, 4.7, 302.509, 3.45, 0.55),
- (2007.0, 4.0, 13391.249, 9363.6, 2123.426, 925.11, 9886.2, 212.495, 1377.4, 3.01, 4.8, 303.204, 6.38, -3.37),
- (2008.0, 1.0, 13366.865, 9349.6, 2082.886, 943.372, 9826.8, 213.997, 1384.0, 1.56, 4.9, 303.803, 2.82, -1.26),
- (2008.0, 2.0, 13415.266, 9351.0, 2026.518, 961.28, 10059.0, 218.61, 1409.3, 1.74, 5.4, 304.483, 8.53, -6.79),
- (2008.0, 3.0, 13324.6, 9267.7, 1990.693, 991.551, 9838.3, 216.889, 1474.7, 1.17, 6.0, 305.27, -3.16, 4.33),
- (2008.0, 4.0, 13141.92, 9195.3, 1857.661, 1007.273, 9920.4, 212.174, 1576.5, 0.12, 6.9, 305.952, -8.79, 8.91),
- (2009.0, 1.0, 12925.41, 9209.2, 1558.494, 996.287, 9926.4, 212.671, 1592.8, 0.22, 8.1, 306.547, 0.94, -0.71),
- (2009.0, 2.0, 12901.504, 9189.0, 1456.678, 1023.528, 10077.5, 214.469, 1653.6, 0.18, 9.2, 307.226, 3.37, -3.19),
- (2009.0, 3.0, 12990.341, 9256.0, 1486.398, 1044.088, 10040.6, 216.385, 1673.9, 0.12, 9.6, 308.013, 3.56, -3.44)],
- dtype=[('year', ' 2510.2491 (stata) -> 2710.34912109375
-# (dta/ndarray)
- curdir = os.path.dirname(os.path.abspath(__file__))
- #res2 = np.load(curdir+'/results/macrodata.npy')
- #res2 = res2.view((float,len(res2[0])))
- from results.macrodata import macrodata_result
- res2 = macrodata_result.view((float,len(macrodata_result[0])))
- res1 = sm.iolib.genfromdta(curdir+'/../../datasets/macrodata/macrodata.dta')
- res1 = res1.view((float,len(res1[0])))
- assert_array_almost_equal(res1, res2, DECIMAL_3)
-
-if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__,'-vvs','-x','--pdb'],
- exit=False)
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/test_summary.py b/statsmodels/scikits/statsmodels/iolib/tests/test_summary.py
deleted file mode 100644
index dcee4f5..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tests/test_summary.py
+++ /dev/null
@@ -1,65 +0,0 @@
-'''examples to check summary, not converted to tests yet
-
-
-'''
-
-if __name__ == '__main__':
-
- from scikits.statsmodels.regression.tests.test_regression import TestOLS
-
- #def mytest():
- aregression = TestOLS()
- TestOLS.setupClass()
- results = aregression.res1
- r_summary = str(results.summary_old())
- print r_summary
- olsres = results
-
- print '\n\n'
-
- r_summary = str(results.summary())
- print r_summary
- print '\n\n'
-
-
- from scikits.statsmodels.discrete.tests.test_discrete import TestProbitNewton
-
- aregression = TestProbitNewton()
- TestProbitNewton.setupClass()
- results = aregression.res1
- r_summary = str(results.summary())
- print r_summary
- print '\n\n'
-
- probres = results
-
- from scikits.statsmodels.robust.tests.test_rlm import TestHampel
-
- aregression = TestHampel()
- #TestHampel.setupClass()
- results = aregression.res1
- r_summary = str(results.summary())
- print r_summary
- rlmres = results
-
- print '\n\n'
-
- from scikits.statsmodels.genmod.tests.test_glm import TestGlmBinomial
-
- aregression = TestGlmBinomial()
- #TestGlmBinomial.setupClass()
- results = aregression.res1
- r_summary = str(results.summary())
- print r_summary
-
- #print results.summary2(return_fmt='latex')
- #print results.summary2(return_fmt='csv')
-
- smry = olsres.summary()
- print smry.as_csv()
-
-# import matplotlib.pyplot as plt
-# plt.plot(rlmres.model.endog,'o')
-# plt.plot(rlmres.fittedvalues,'-')
-#
-# plt.show()
\ No newline at end of file
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/test_summary_old.py b/statsmodels/scikits/statsmodels/iolib/tests/test_summary_old.py
deleted file mode 100644
index 0ed323d..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tests/test_summary_old.py
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-def test_regression_summary():
- #little luck getting this test to pass (It should?), can be used for
- #visual testing of the regression.summary table
- #fixed, might fail at minute changes
- from scikits.statsmodels.regression.tests.test_regression import TestOLS
- #from test_regression import TestOLS
- import time
- from string import Template
- t = time.localtime()
- desired = Template(
-''' Summary of Regression Results
-=======================================
-| Dependent Variable: y|
-| Model: OLS|
-| Method: Least Squares|
-| Date: $XXcurrentXdateXX|
-| Time: $XXtimeXXX|
-| # obs: 16.0|
-| Df residuals: 9.0|
-| Df model: 6.0|
-==============================================================================
-| coefficient std. error t-statistic prob. |
-------------------------------------------------------------------------------
-| x1 15.06 84.91 0.1774 0.8631 |
-| x2 -0.03582 0.03349 -1.0695 0.3127 |
-| x3 -2.020 0.4884 -4.1364 0.0025 |
-| x4 -1.033 0.2143 -4.8220 0.0009 |
-| x5 -0.05110 0.2261 -0.2261 0.8262 |
-| x6 1829. 455.5 4.0159 0.0030 |
-| const -3.482e+06 8.904e+05 -3.9108 0.0036 |
-==============================================================================
-| Models stats Residual stats |
-------------------------------------------------------------------------------
-| R-squared: 0.9955 Durbin-Watson: 2.559 |
-| Adjusted R-squared: 0.9925 Omnibus: 0.7486 |
-| F-statistic: 330.3 Prob(Omnibus): 0.6878 |
-| Prob (F-statistic): 4.984e-10 JB: 0.6841 |
-| Log likelihood: -109.6 Prob(JB): 0.7103 |
-| AIC criterion: 233.2 Skew: 0.4200 |
-| BIC criterion: 238.6 Kurtosis: 2.434 |
-------------------------------------------------------------------------------'''
-).substitute(XXcurrentXdateXX = str(time.strftime("%a, %d %b %Y",t)),
- XXtimeXXX = str(time.strftime("%H:%M:%S",t)))
- desired = str(desired)
- aregression = TestOLS()
- TestOLS.setupClass()
- results = aregression.res1
- r_summary = str(results.summary_old())
-
-## print('###')
-## print(r_summary)
-## print('###')
-## print(desired)
-## print('###')
- actual = r_summary
- import numpy as np
- actual = '\n'.join((line.rstrip() for line in actual.split('\n')))
-# print len(actual), len(desired)
-# print repr(actual)
-# print repr(desired)
-# counter = 0
-# for c1,c2 in zip(actual, desired):
-# if not c1==c2 and counter<20:
-# print c1,c2
-# counter += 1
- np.testing.assert_(actual == desired)
-
-
-if __name__ == '__main__':
- test_regression_summary()
-
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/test_table.py b/statsmodels/scikits/statsmodels/iolib/tests/test_table.py
deleted file mode 100644
index 750736d..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tests/test_table.py
+++ /dev/null
@@ -1,161 +0,0 @@
-import numpy as np
-import unittest
-from scikits.statsmodels.iolib.table import SimpleTable, default_txt_fmt
-from scikits.statsmodels.iolib.table import default_latex_fmt
-from scikits.statsmodels.iolib.table import default_html_fmt
-
-ltx_fmt1 = default_latex_fmt.copy()
-html_fmt1 = default_html_fmt.copy()
-
-class TestSimpleTable(unittest.TestCase):
- def test_SimpleTable_1(self):
- """Basic test, test_SimpleTable_1"""
- desired = '''
-=====================
- header1 header2
----------------------
-stub1 1.30312 2.73999
-stub2 1.95038 2.65765
----------------------
-'''
- test1data = [[1.30312, 2.73999],[1.95038, 2.65765]]
- test1stubs = ('stub1', 'stub2')
- test1header = ('header1', 'header2')
- actual = SimpleTable(test1data, test1header, test1stubs,
- txt_fmt=default_txt_fmt)
- actual = '\n%s\n' % actual.as_text()
- self.assertEqual(desired, str(actual))
-
- def test_SimpleTable_2(self):
- """ Test SimpleTable.extend_right()"""
- desired = '''
-=============================================================
- header s1 header d1 header s2 header d2
--------------------------------------------------------------
-stub R1 C1 10.30312 10.73999 stub R1 C2 50.95038 50.65765
-stub R2 C1 90.30312 90.73999 stub R2 C2 40.95038 40.65765
--------------------------------------------------------------
-'''
- data1 = [[10.30312, 10.73999], [90.30312, 90.73999]]
- data2 = [[50.95038, 50.65765], [40.95038, 40.65765]]
- stubs1 = ['stub R1 C1', 'stub R2 C1']
- stubs2 = ['stub R1 C2', 'stub R2 C2']
- header1 = ['header s1', 'header d1']
- header2 = ['header s2', 'header d2']
- actual1 = SimpleTable(data1, header1, stubs1, txt_fmt=default_txt_fmt)
- actual2 = SimpleTable(data2, header2, stubs2, txt_fmt=default_txt_fmt)
- actual1.extend_right(actual2)
- actual = '\n%s\n' % actual1.as_text()
- self.assertEqual(desired, str(actual))
-
- def test_SimpleTable_3(self):
- """ Test SimpleTable.extend() as in extend down"""
- desired = '''
-==============================
- header s1 header d1
-------------------------------
-stub R1 C1 10.30312 10.73999
-stub R2 C1 90.30312 90.73999
- header s2 header d2
-------------------------------
-stub R1 C2 50.95038 50.65765
-stub R2 C2 40.95038 40.65765
-------------------------------
-'''
- data1 = [[10.30312, 10.73999], [90.30312, 90.73999]]
- data2 = [[50.95038, 50.65765], [40.95038, 40.65765]]
- stubs1 = ['stub R1 C1', 'stub R2 C1']
- stubs2 = ['stub R1 C2', 'stub R2 C2']
- header1 = ['header s1', 'header d1']
- header2 = ['header s2', 'header d2']
- actual1 = SimpleTable(data1, header1, stubs1, txt_fmt=default_txt_fmt)
- actual2 = SimpleTable(data2, header2, stubs2, txt_fmt=default_txt_fmt)
- actual1.extend(actual2)
- actual = '\n%s\n' % actual1.as_text()
- self.assertEqual(desired, str(actual))
-
- def test_SimpleTable_4(self):
- """Basic test, test_SimpleTable_4
- test uses custom txt_fmt"""
- txt_fmt1 = dict(data_fmts = ['%3.2f', '%d'],
- empty_cell = ' ',
- colwidths = 1,
- colsep=' * ',
- row_pre = '* ',
- row_post = ' *',
- table_dec_above='*',
- table_dec_below='*',
- header_dec_below='*',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='r',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
- ltx_fmt1 = default_latex_fmt.copy()
- html_fmt1 = default_html_fmt.copy()
- cell0data = 0.0000
- cell1data = 1
- row0data = [cell0data, cell1data]
- row1data = [2, 3.333]
- table1data = [ row0data, row1data ]
- test1stubs = ('stub1', 'stub2')
- test1header = ('header1', 'header2')
- tbl = SimpleTable(table1data, test1header, test1stubs,txt_fmt=txt_fmt1,
- ltx_fmt=ltx_fmt1, html_fmt=html_fmt1)
- def test_txt_fmt1(self):
- """Limited test of custom txt_fmt"""
- desired = """
-*****************************
-* * header1 * header2 *
-*****************************
-* stub1 * 0.00 * 1 *
-* stub2 * 2.00 * 3 *
-*****************************
-"""
- actual = '\n%s\n' % tbl.as_text()
- #print(actual)
- #print(desired)
- self.assertEqual(actual, desired)
- def test_ltx_fmt1(self):
- """Limited test of custom ltx_fmt"""
- desired = r"""
-\begin{tabular}{lcc}
-\toprule
- & \textbf{header1} & \textbf{header2} \\
-\midrule
-\textbf{stub1} & 0.0 & 1 \\
-\textbf{stub2} & 2 & 3.333 \\
-\bottomrule
-\end{tabular}
-"""
- actual = '\n%s\n' % tbl.as_latex_tabular()
- #print(actual)
- #print(desired)
- self.assertEqual(actual, desired)
- def test_html_fmt1(self):
- """Limited test of custom html_fmt"""
- desired = """
-
-
- header1 header2
-
-
- stub1 0.0 1
-
-
- stub2 2 3.333
-
-
-"""
- actual = '\n%s\n' % tbl.as_html()
- self.assertEqual(actual, desired)
-
-
-if __name__ == "__main__":
- #unittest.main()
- pass
-
-
diff --git a/statsmodels/scikits/statsmodels/iolib/tests/test_table_econpy.py b/statsmodels/scikits/statsmodels/iolib/tests/test_table_econpy.py
deleted file mode 100644
index 7f1a908..0000000
--- a/statsmodels/scikits/statsmodels/iolib/tests/test_table_econpy.py
+++ /dev/null
@@ -1,147 +0,0 @@
-'''
-Unit tests table.py.
-
-:see: http://docs.python.org/lib/minimal-example.html for an intro to unittest
-:see: http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-1-unittest.html
-:see: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/305292
-'''
-from __future__ import absolute_import
-import unittest
-
-try:
- import numpy as np
- has_numpy = True
-except ImportError:
- has_numpy = False
-
-__docformat__ = "restructuredtext en"
-
-from scikits.statsmodels.iolib.table import Cell, Row, SimpleTable
-from scikits.statsmodels.iolib.table import default_latex_fmt
-from scikits.statsmodels.iolib.table import default_html_fmt
-
-ltx_fmt1 = default_latex_fmt.copy()
-html_fmt1 = default_html_fmt.copy()
-
-txt_fmt1 = dict(
- data_fmts = ['%0.2f', '%d'],
- empty_cell = ' ',
- colwidths = 1,
- colsep=' * ',
- row_pre = '* ',
- row_post = ' *',
- table_dec_above='*',
- table_dec_below='*',
- header_dec_below='*',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='r',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
-)
-cell0data = 0.0000
-cell1data = 1
-row0data = [cell0data, cell1data]
-row1data = [2, 3.333]
-table1data = [ row0data, row1data ]
-test1stubs = ('stub1', 'stub2')
-test1header = ('header1', 'header2')
-#test1header = ('header1\nheader1a', 'header2\nheader2a')
-tbl = SimpleTable(table1data, test1header, test1stubs,
- txt_fmt=txt_fmt1, ltx_fmt=ltx_fmt1, html_fmt=html_fmt1)
-
-
-def custom_labeller(cell):
- if cell.data is np.nan:
- return 'missing'
-
-
-
-class test_Cell(unittest.TestCase):
- def test_celldata(self):
- celldata = cell0data, cell1data, row1data[0], row1data[1]
- cells = [Cell(datum, datatype=i%2) for i, datum in enumerate(celldata)]
- for cell, datum in zip(cells, celldata):
- self.assertEqual(cell.data, datum)
-
-class test_SimpleTable(unittest.TestCase):
- def test_txt_fmt1(self):
- """Limited test of custom txt_fmt"""
- desired = """
-*****************************
-* * header1 * header2 *
-*****************************
-* stub1 * 0.00 * 1 *
-* stub2 * 2.00 * 3 *
-*****************************
-"""
- actual = '\n%s\n' % tbl.as_text()
- #print('actual')
- #print(actual)
- #print('desired')
- #print(desired)
- self.assertEqual(actual, desired)
- def test_ltx_fmt1(self):
- """Limited test of custom ltx_fmt"""
- desired = r"""
-\begin{tabular}{lcc}
-\toprule
- & \textbf{header1} & \textbf{header2} \\
-\midrule
-\textbf{stub1} & 0.0 & 1 \\
-\textbf{stub2} & 2 & 3.333 \\
-\bottomrule
-\end{tabular}
-"""
- actual = '\n%s\n' % tbl.as_latex_tabular()
- #print(actual)
- #print(desired)
- self.assertEqual(actual, desired)
- def test_html_fmt1(self):
- """Limited test of custom html_fmt"""
- desired = """
-
-
- header1 header2
-
-
- stub1 0.0 1
-
-
- stub2 2 3.333
-
-
-"""
- #the previous has significant trailing whitespace that got removed
- #desired = '''\n\n\n header1 header2 \n \n\n stub1 0.0 1 \n \n\n stub2 2 3.333 \n \n
\n'''
- actual = '\n%s\n' % tbl.as_html()
- actual = '\n'.join((line.rstrip() for line in actual.split('\n')))
- #print(actual)
- #print(desired)
- #print len(actual), len(desired)
- self.assertEqual(actual, desired)
- def test_customlabel(self):
- """Limited test of custom custom labeling"""
- if has_numpy:
- tbl = SimpleTable(table1data, test1header, test1stubs, txt_fmt=txt_fmt1)
- tbl[1][1].data = np.nan
- tbl.label_cells(custom_labeller)
- #print([[c.datatype for c in row] for row in tbl])
- desired = """
-*****************************
-* * header1 * header2 *
-*****************************
-* stub1 * -- * 1 *
-* stub2 * 2.00 * 3 *
-*****************************
-"""
- actual = '\n%s\n' % tbl.as_text(missing='--')
- #print(actual)
- #print(desired)
- self.assertEqual(actual, desired)
-
-if __name__=="__main__":
- unittest.main()
-
diff --git a/statsmodels/scikits/statsmodels/miscmodels/__init__.py b/statsmodels/scikits/statsmodels/miscmodels/__init__.py
deleted file mode 100644
index 68a3a24..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/__init__.py
+++ /dev/null
@@ -1,5 +0,0 @@
-from tmodel import TLinearModel
-from count import * #remove this after debugging/refactoring
-
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/miscmodels/count.py b/statsmodels/scikits/statsmodels/miscmodels/count.py
deleted file mode 100644
index 0f8c4e3..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/count.py
+++ /dev/null
@@ -1,332 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Mon Jul 26 08:34:59 2010
-
-Author: josef-pktd
-
-changes:
-added offset and zero-inflated version of Poisson
- - kind of ok, need better test cases,
- - a nan in ZIP bse, need to check hessian calculations
- - found error in ZIP loglike
- - all tests pass with
-
-Issues
-------
-* If true model is not zero-inflated then numerical Hessian for ZIP has zeros
- for the inflation probability and is not invertible.
- -> hessian inverts and bse look ok if row and column are dropped, pinv also works
-* GenericMLE: still get somewhere (where?)
- "CacheWriteWarning: The attribute 'bse' cannot be overwritten"
-* bfgs is too fragile, doesn't come back
-* `nm` is slow but seems to work
-* need good start_params and their use in genericmle needs to be checked for
- consistency, set as attribute or method (called as attribute)
-* numerical hessian needs better scaling
-
-* check taking parts out of the loop, e.g. factorial(endog) could be precalculated
-
-
-"""
-
-import numpy as np
-from scipy import stats
-from scipy.misc import factorial
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.base.model import GenericLikelihoodModel
-
-def maxabs(arr1, arr2):
- return np.max(np.abs(arr1 - arr2))
-
-def maxabsrel(arr1, arr2):
- return np.max(np.abs(arr2 / arr1 - 1))
-
-class NonlinearDeltaCov(object):
- '''Asymptotic covariance by Deltamethod
-
- the function is designed for 2d array, with rows equal to
- the number of equations and columns equal to the number
- of parameters. 1d params work by chance ?
-
- fun: R^{m*k) -> R^{m} where m is number of equations and k is
- the number of parameters.
-
- equations follow Greene
-
- '''
- def __init__(self, fun, params, cov_params):
- self.fun = fun
- self.params = params
- self.cov_params = cov_params
-
- def grad(self, params=None, **kwds):
- if params is None:
- params = self.params
- kwds.setdefault('epsilon', 1e-4)
- from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1
- return approx_fprime1(params, self.fun, **kwds)
-
- def cov(self):
- g = self.grad()
- covar = np.dot(np.dot(g, self.cov_params), g.T)
- return covar
-
- def expected(self):
- # rename: misnomer, this is the MLE of the fun
- return self.fun(self.params)
-
- def wald(self, value):
- m = self.expected()
- v = self.cov()
- df = np.size(m)
- diff = m - value
- lmstat = np.dot(np.dot(diff.T, np.linalg.inv(v)), diff)
- return lmstat, stats.chi2.sf(lmstat, df)
-
-
-
-
-class PoissonGMLE(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Poisson Model
-
- This is an example for generic MLE which has the same
- statistical model as discretemod.Poisson.
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- '''
-
- # copied from discretemod.Poisson
- def nloglikeobs(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
- XB = np.dot(self.exog, params)
- endog = self.endog
- return np.exp(XB) - endog*XB + np.log(factorial(endog))
-
- def predict_distribution(self, exog):
- '''return frozen scipy.stats distribution with mu at estimated prediction
- '''
- if not hasattr(self, result):
- raise
- else:
- mu = np.exp(np.dot(exog, params))
- return stats.poisson(mu, loc=0)
-
-
-
-class PoissonOffsetGMLE(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Poisson Model
-
- This is an example for generic MLE which has the same
- statistical model as discretemod.Poisson but adds offset
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- '''
-
- def __init__(self, endog, exog=None, offset=None, **kwds):
- # let them be none in case user wants to use inheritance
- if not offset is None:
- if offset.ndim == 1:
- offset = offset[:,None] #need column
- self.offset = offset.ravel()
- else:
- self.offset = 0.
- super(PoissonOffsetGMLE, self).__init__(endog, exog, **kwds)
-
-#this was added temporarily for bug-hunting, but shouldn't be needed
-# def loglike(self, params):
-# return -self.nloglikeobs(params).sum(0)
-
- # original copied from discretemod.Poisson
- def nloglikeobs(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
-
- XB = self.offset + np.dot(self.exog, params)
- endog = self.endog
- nloglik = np.exp(XB) - endog*XB + np.log(factorial(endog))
- return nloglik
-
-class PoissonZiGMLE(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Poisson Model
-
- This is an example for generic MLE which has the same statistical model
- as discretemod.Poisson but adds offset and zero-inflation.
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- There are numerical problems if there is no zero-inflation.
-
- '''
-
- def __init__(self, endog, exog=None, offset=None, **kwds):
- # let them be none in case user wants to use inheritance
-
- super(PoissonZiGMLE, self).__init__(endog, exog, **kwds)
- if not offset is None:
- if offset.ndim == 1:
- offset = offset[:,None] #need column
- self.offset = offset.ravel() #which way?
- else:
- self.offset = 0.
- if exog is None:
- self.exog = np.ones((self.nobs,1))
- self.nparams = self.exog.shape[1]
- #what's the shape in regression for exog if only constant
- self.start_params = np.hstack((np.ones(self.nparams), 0))
- self.cloneattr = ['start_params']
-
-
- # original copied from discretemod.Poisson
- def nloglikeobs(self, params):
- """
- Loglikelihood of Poisson model
-
- Parameters
- ----------
- params : array-like
- The parameters of the model.
-
- Returns
- -------
- The log likelihood of the model evaluated at `params`
-
- Notes
- --------
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
- """
- beta = params[:-1]
- gamm = 1 / (1 + np.exp(params[-1])) #check this
- # replace with np.dot(self.exogZ, gamma)
- #print np.shape(self.offset), self.exog.shape, beta.shape
- XB = self.offset + np.dot(self.exog, beta)
- endog = self.endog
- nloglik = -np.log(1-gamm) + np.exp(XB) - endog*XB + np.log(factorial(endog))
- nloglik[endog==0] = - np.log(gamm + np.exp(-nloglik[endog==0]))
-
- return nloglik
-
-
-
-if __name__ == '__main__':
-
- #Example:
- np.random.seed(98765678)
- nobs = 1000
- rvs = np.random.randn(nobs,6)
- data_exog = rvs
- data_exog = sm.add_constant(data_exog)
- xbeta = 1 + 0.1*rvs.sum(1)
- data_endog = np.random.poisson(np.exp(xbeta))
- #print data_endog
-
- modp = MyPoisson(data_endog, data_exog)
- resp = modp.fit()
- print resp.params
- print resp.bse
-
- from scikits.statsmodels.discretemod import Poisson
- resdp = Poisson(data_endog, data_exog).fit()
- print '\ncompare with discretemod'
- print 'compare params'
- print resdp.params - resp.params
- print 'compare bse'
- print resdp.bse - resp.bse
-
- gmlp = sm.GLM(data_endog, data_exog, family=sm.families.Poisson())
- resgp = gmlp.fit()
- ''' this creates a warning, bug bse is double defined ???
- c:\josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\decorators.py:105: CacheWriteWarning: The attribute 'bse' cannot be overwritten
- warnings.warn(errmsg, CacheWriteWarning)
- '''
- print '\ncompare with GLM'
- print 'compare params'
- print resgp.params - resp.params
- print 'compare bse'
- print resgp.bse - resp.bse
-
- lam = np.exp(np.dot(data_exog, resp.params))
- '''mean of Poisson distribution'''
- predmean = stats.poisson.stats(lam,moments='m')
- print np.max(np.abs(predmean - lam))
-
- fun = lambda params: np.exp(np.dot(data_exog.mean(0), params))
-
- lamcov = NonlinearDeltaCov(fun, resp.params, resdp.cov_params())
- print lamcov.cov().shape
- print lamcov.cov()
-
- print 'analytical'
- xm = data_exog.mean(0)
- print np.dot(np.dot(xm, resdp.cov_params()), xm.T) * \
- np.exp(2*np.dot(data_exog.mean(0), resp.params))
-
- ''' cov of linear transformation of params
- >>> np.dot(np.dot(xm, resdp.cov_params()), xm.T)
- 0.00038904130127582825
- >>> resp.cov_params(xm)
- 0.00038902428119179394
- >>> np.dot(np.dot(xm, resp.cov_params()), xm.T)
- 0.00038902428119179394
- '''
-
- print lamcov.wald(1.)
- print lamcov.wald(2.)
- print lamcov.wald(2.6)
-
- do_bootstrap = False
- if do_bootstrap:
- m,s,r = resp.bootstrap(method='newton')
- print m
- print s
- print resp.bse
-
-
- print '\ncomparison maxabs, masabsrel'
- print 'discr params', maxabs(resdp.params, resp.params), maxabsrel(resdp.params, resp.params)
- print 'discr bse ', maxabs(resdp.bse, resp.bse), maxabsrel(resdp.bse, resp.bse)
- print 'discr bsejac', maxabs(resdp.bse, resp.bsejac), maxabsrel(resdp.bse, resp.bsejac)
- print 'discr bsejhj', maxabs(resdp.bse, resp.bsejhj), maxabsrel(resdp.bse, resp.bsejhj)
- print
- print 'glm params ', maxabs(resdp.params, resp.params), maxabsrel(resdp.params, resp.params)
- print 'glm bse ', maxabs(resdp.bse, resp.bse), maxabsrel(resdp.bse, resp.bse)
-
diff --git a/statsmodels/scikits/statsmodels/miscmodels/nonlinls.py b/statsmodels/scikits/statsmodels/miscmodels/nonlinls.py
deleted file mode 100644
index cb9e24f..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/nonlinls.py
+++ /dev/null
@@ -1,308 +0,0 @@
-'''Non-linear least squares
-
-
-
-Author: Josef Perktold based on scipy.optimize.curve_fit
-
-'''
-import numpy as np
-from scipy import optimize
-
-from scikits.statsmodels.base.model import Model
-
-
-class Results(object):
- '''just a dummy placeholder for now
- most results from RegressionResults can be used here
- '''
- pass
-
-
-##def getjaccov(retval, n):
-## '''calculate something and raw covariance matrix from return of optimize.leastsq
-##
-## I cannot figure out how to recover the Jacobian, or whether it is even
-## possible
-##
-## this is a partial copy of scipy.optimize.leastsq
-## '''
-## info = retval[-1]
-## #n = len(x0) #nparams, where do I get this
-## cov_x = None
-## if info in [1,2,3,4]:
-## from numpy.dual import inv
-## from numpy.linalg import LinAlgError
-## perm = np.take(np.eye(n), retval[1]['ipvt']-1,0)
-## r = np.triu(np.transpose(retval[1]['fjac'])[:n,:])
-## R = np.dot(r, perm)
-## try:
-## cov_x = inv(np.dot(np.transpose(R),R))
-## except LinAlgError:
-## print 'cov_x not available'
-## pass
-## return r, R, cov_x
-##
-##def _general_function(params, xdata, ydata, function):
-## return function(xdata, *params) - ydata
-##
-##def _weighted_general_function(params, xdata, ydata, function, weights):
-## return weights * (function(xdata, *params) - ydata)
-##
-
-
-
-class NonlinearLS(Model): #or subclass a model
- '''Base class for estimation of a non-linear model with least squares
-
- This class is supposed to be subclassed, and the subclass has to provide a method
- `_predict` that defines the non-linear function `f(params) that is predicting the endogenous
- variable. The model is assumed to be
-
- :math: y = f(params) + error
-
- and the estimator minimizes the sum of squares of the estimated error.
-
- :math: min_parmas \sum (y - f(params))**2
-
- f has to return the prediction for each observation. Exogenous or explanatory variables
- should be accessed as attributes of the class instance, and can be given as arguments
- when the instance is created.
-
- Warning:
- Weights are not correctly handled yet in the results statistics,
- but included when estimating the parameters.
-
- similar to scipy.optimize.curve_fit
- API difference: params are array_like not split up, need n_params information
-
- includes now weights similar to curve_fit
- no general sigma yet (OLS and WLS, but no GLS)
-
- This is currently holding on to intermediate results that are not necessary
- but useful for testing.
-
- Fit returns and instance of RegressionResult, in contrast to the linear
- model, results in this case are based on a local approximation, essentially
- y = f(X, params) is replaced by y = grad * params where grad is the Gradient
- or Jacobian with the shape (nobs, nparams). See for example Greene
-
- Examples
- --------
-
- class Myfunc(NonlinearLS):
-
- def _predict(self, params):
- x = self.exog
- a, b, c = params
- return a*np.exp(-b*x) + c
-
- Ff we have data (y, x), we can create an instance and fit it with
-
- mymod = Myfunc(y, x)
- myres = mymod.fit(nparams=3)
-
- and use the non-linear regression results, for example
-
- myres.params
- myres.bse
- myres.tvalues
-
-
- '''
- def __init__(self, endog=None, exog=None, weights=None, sigma=None):
- self.endog = endog
- self.exog = exog
- if not sigma is None:
- sigma = np.asarray(sigma)
- if sigma.ndim < 2:
- self.sigma = sigma
- self.weights = 1./sigma
- else:
- raise ValueError('correlated errors are not handled yet')
- else:
- self.weights = None
-
- def predict(self, exog, params=None):
- #copied from GLS, Model has different signature
- return self._predict(params)
-
-
- def _predict(self, params):
- pass
-
- def start_value(self):
- return None
-
- def geterrors(self, params, weights=None):
- if weights is None:
- if self.weights is None:
- return self.endog - self._predict(params)
- else:
- weights = self.weights
- return weights * (self.endog - self._predict(params))
-
- def errorsumsquares(self, params):
- return (self.geterrors(params)**2).sum()
-
-
- def fit(self, start_value=None, nparams=None, **kw):
- #if hasattr(self, 'start_value'):
- #I added start_value even if it's empty, not sure about it
- #but it makes a visible placeholder
-
- if not start_value is None:
- p0 = start_value
- else:
- #nesting so that start_value is only calculated if it is needed
- p0 = self.start_value()
- if not p0 is None:
- pass
- elif not nparams is None:
- p0 = 0.1 * np.ones(nparams)
- else:
- raise ValueError('need information about start values for' +
- 'optimization')
-
- func = self.geterrors
- res = optimize.leastsq(func, p0, full_output=1, **kw)
- (popt, pcov, infodict, errmsg, ier) = res
-
- if ier not in [1,2,3,4]:
- msg = "Optimal parameters not found: " + errmsg
- raise RuntimeError(msg)
-
- err = infodict['fvec']
-
- ydata = self.endog
- if (len(ydata) > len(p0)) and pcov is not None:
- #this can use the returned errors instead of recalculating
-
- s_sq = (err**2).sum()/(len(ydata)-len(p0))
- pcov = pcov * s_sq
- else:
- pcov = None
-
- self.df_resid = len(ydata)-len(p0)
- self.df_model = len(p0)
- fitres = Results()
- fitres.params = popt
- fitres.pcov = pcov
- fitres.rawres = res
- self.wendog = self.endog #add weights
- self.wexog = self.jac_predict(popt)
- pinv_wexog = np.linalg.pinv(self.wexog)
- self.normalized_cov_params = np.dot(pinv_wexog,
- np.transpose(pinv_wexog))
-
- #TODO: check effect of `weights` on result statistics
- #I think they are correctly included in cov_params
- #maybe not anymore, I'm not using pcov of leastsq
- #direct calculation with jac_predict misses the weights
-
-## if not weights is None
-## fitres.wexogw = self.weights * self.jacpredict(popt)
- from scikits.statsmodels.regression import RegressionResults
- results = RegressionResults
-
- beta = popt
- lfit = RegressionResults(self, beta,
- normalized_cov_params=self.normalized_cov_params)
-
- lfit.fitres = fitres #mainly for testing
- self._results = lfit
- return lfit
-
- def fit_minimal(self, start_value):
- '''minimal fitting with no extra calculations'''
- func = self.geterrors
- res = optimize.leastsq(func, start_value, full_output=0, **kw)
- return res
-
- def fit_random(self, ntries=10, rvs_generator=None, nparams=None):
- '''fit with random starting values
-
- this could be replaced with a global fitter
-
- '''
-
- if nparams is None:
- nparams = self.nparams
- if rvs_generator is None:
- rvs = np.random.uniform(low=-10, high=10, size=(ntries, nparams))
- else:
- rvs = rvs_generator(size=(ntries, nparams))
-
- results = np.array([np.r_[self.fit_minimal(rv), rv] for rv in rvs])
- #selct best results and check how many solutions are within 1e-6 of best
- #not sure what leastsq returns
- return results
-
- def jac_predict(self, params):
- '''jacobian of prediction function using complex step derivative
-
- This assumes that the predict function does not use complex variable
- but is designed to do so.
-
- '''
- from scikits.statsmodels.sandbox.regression.numdiff \
- import approx_fprime_cs
-
- jaccs_err = approx_fprime_cs(params, self._predict)
- return jaccs_err
-
-
-class Myfunc(NonlinearLS):
-
- #predict model.Model has a different signature
-## def predict(self, params, exog=None):
-## if not exog is None:
-## x = exog
-## else:
-## x = self.exog
-## a, b, c = params
-## return a*np.exp(-b*x) + c
-
- def _predict(self, params):
- x = self.exog
- a, b, c = params
- return a*np.exp(-b*x) + c
-
-
-
-
-
-if __name__ == '__main__':
- def func0(x, a, b, c):
- return a*np.exp(-b*x) + c
-
- def func(params, x):
- a, b, c = params
- return a*np.exp(-b*x) + c
-
- def error(params, x, y):
- return y - func(params, x)
-
- def error2(params, x, y):
- return (y - func(params, x))**2
-
-
-
-
- x = np.linspace(0,4,50)
- params = np.array([2.5, 1.3, 0.5])
- y0 = func(params, x)
- y = y0 + 0.2*np.random.normal(size=len(x))
-
- res = optimize.leastsq(error, params, args=(x, y), full_output=True)
-## r, R, c = getjaccov(res[1:], 3)
-
- mod = Myfunc(y, x)
- resmy = mod.fit(nparams=3)
-
- cf_params, cf_pcov = optimize.curve_fit(func0, x, y)
- cf_bse = np.sqrt(np.diag(cf_pcov))
- print res[0]
- print cf_params
- print resmy.params
- print cf_bse
- print resmy.bse
diff --git a/statsmodels/scikits/statsmodels/miscmodels/tests/__init__.py b/statsmodels/scikits/statsmodels/miscmodels/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/miscmodels/tests/test_poisson.py b/statsmodels/scikits/statsmodels/miscmodels/tests/test_poisson.py
deleted file mode 100644
index dc9c068..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/tests/test_poisson.py
+++ /dev/null
@@ -1,147 +0,0 @@
-'''Testing GenericLikelihoodModel variations on Poisson
-
-
-'''
-import numpy as np
-from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.miscmodels import PoissonGMLE, PoissonOffsetGMLE, \
- PoissonZiGMLE
-from scikits.statsmodels.discrete.discrete_model import Poisson
-
-
-DEC = 1
-
-class Compare(object):
-
- def test_params(self):
- assert_almost_equal(self.res.params, self.res_glm.params, DEC)
- assert_almost_equal(self.res.params, self.res_discrete.params, DEC)
-
- def test_cov_params(self):
- assert_almost_equal(self.res.bse, self.res_glm.bse, DEC)
- assert_almost_equal(self.res.bse, self.res_discrete.bse, DEC)
- #TODO check problem with the following, precision is low,
- #dof error? last t-value is 22, 23, error is around 1% for PoissonMLE
- #this was with constant=1,
- #now changed constant=0.1 to make it less significant and test passes
- #overall precision for tstat looks like 1%
-
- #assert_almost_equal(self.res.tval, self.res_glm.t(), DEC)
- assert_almost_equal(self.res.tvalues, self.res_discrete.tvalues, DEC)
- #assert_almost_equal(self.res.params, self.res_discrete.params)
-
-
-class TestPoissonMLE(Compare):
-
- def __init__(self):
-
- # generate artificial data
- np.random.seed(98765678)
- nobs = 200
- rvs = np.random.randn(nobs,6)
- data_exog = rvs
- data_exog = sm.add_constant(data_exog)
- xbeta = 0.1 + 0.1*rvs.sum(1)
- data_endog = np.random.poisson(np.exp(xbeta))
-
- #estimate discretemod.Poisson as benchmark
- self.res_discrete = Poisson(data_endog, data_exog).fit(disp=0)
-
- mod_glm = sm.GLM(data_endog, data_exog, family=sm.families.Poisson())
- self.res_glm = mod_glm.fit()
-
- #estimate generic MLE
- self.mod = PoissonGMLE(data_endog, data_exog)
- self.res = self.mod.fit(start_params=0.9 * self.res_discrete.params,
- method='nm', disp=0)
-
-
-
-
-class TestPoissonOffset(Compare):
- #this uses the first exog to construct an offset variable
- def __init__(self):
-
- # generate artificial data
- np.random.seed(98765678)
- nobs = 200
- rvs = np.random.randn(nobs,6)
- data_exog = rvs
- data_exog = sm.add_constant(data_exog)
- xbeta = 1 + 0.1*rvs.sum(1)
- data_endog = np.random.poisson(np.exp(xbeta))
-
- #estimate discretemod.Poisson as benchmark
- self.res_discrete = Poisson(data_endog, data_exog).fit(disp=0)
-
- mod_glm = sm.GLM(data_endog, data_exog, family=sm.families.Poisson())
- self.res_glm = mod_glm.fit()
-
- #estimate generic MLE
- #self.mod = PoissonGMLE(data_endog, data_exog)
- #res = self.mod.fit()
- offset = self.res_discrete.params[0] * data_exog[:,0] #1d ???
- #self.res = PoissonOffsetGMLE(data_endog, data_exog[:,1:], offset=offset).fit(start_params = np.ones(6)/2., method='nm')
- modo = PoissonOffsetGMLE(data_endog, data_exog[:,1:], offset=offset)
- self.res = modo.fit(start_params = 0.9*self.res_discrete.params[1:],
- method='nm', disp=0)
-
-
-
- def test_params(self):
- assert_almost_equal(self.res.params, self.res_glm.params[1:], DEC)
- assert_almost_equal(self.res.params, self.res_discrete.params[1:], DEC)
-
- def test_cov_params(self):
- assert_almost_equal(self.res.bse, self.res_glm.bse[1:], DEC)
- assert_almost_equal(self.res.bse, self.res_discrete.bse[1:], DEC)
- #precision of next is very low ???
- #assert_almost_equal(self.res.tval, self.res_glm.t()[1:], DEC)
- #assert_almost_equal(self.res.params, self.res_discrete.params)
-
-class TestPoissonZi(Compare):
- #this uses the first exog to construct an offset variable
- def __init__(self):
-
- # generate artificial data
- np.random.seed(98765678)
- nobs = 200
- rvs = np.random.randn(nobs,6)
- data_exog = rvs
- data_exog = sm.add_constant(data_exog)
- xbeta = 1 + 0.1*rvs.sum(1)
- data_endog = np.random.poisson(np.exp(xbeta))
-
- #estimate discretemod.Poisson as benchmark
- self.res_discrete = Poisson(data_endog, data_exog).fit(disp=0)
-
- mod_glm = sm.GLM(data_endog, data_exog, family=sm.families.Poisson())
- self.res_glm = mod_glm.fit()
-
- #estimate generic MLE
- #self.mod = PoissonGMLE(data_endog, data_exog)
- #res = self.mod.fit()
- offset = self.res_discrete.params[0] * data_exog[:,0] #1d ???
- self.res = PoissonZiGMLE(data_endog, data_exog[:,1:],offset=offset).fit(
- start_params=np.r_[0.9*self.res_discrete.params[1:],10],
- method='nm', disp=0)
-
-
-
- self.decimal = 1
-
- def test_params(self):
- assert_almost_equal(self.res.params[:-1], self.res_glm.params[1:], self.decimal)
- assert_almost_equal(self.res.params[:-1], self.res_discrete.params[1:], self.decimal)
-
- def test_cov_params(self):
- #skip until I have test with zero-inflated data
- #use bsejac for now since it seems to work
- assert_almost_equal(self.res.bsejac[:-1], self.res_glm.bse[1:], self.decimal)
- assert_almost_equal(self.res.bsejac[:-1], self.res_discrete.bse[1:], self.decimal)
- #assert_almost_equal(self.res.tval[:-1], self.res_glm.t()[1:], self.decimal)
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/miscmodels/tmodel.py b/statsmodels/scikits/statsmodels/miscmodels/tmodel.py
deleted file mode 100644
index f708ad5..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/tmodel.py
+++ /dev/null
@@ -1,154 +0,0 @@
-"""Linear Model with Student-t distributed errors
-
-Because the t distribution has fatter tails than the normal distribution, it
-can be used to model observations with heavier tails and observations that have
-some outliers. For the latter case, the t-distribution provides more robust
-estimators for mean or mean parameters (what about var?).
-
-
-
-References
-----------
-Kenneth L. Lange, Roderick J. A. Little, Jeremy M. G. Taylor (1989)
-Robust Statistical Modeling Using the t Distribution
-Journal of the American Statistical Association
-Vol. 84, No. 408 (Dec., 1989), pp. 881-896
-Published by: American Statistical Association
-Stable URL: http://www.jstor.org/stable/2290063
-
-not read yet
-
-
-Created on 2010-09-24
-Author: josef-pktd
-License: BSD
-
-TODO
-----
-* add starting values based on OLS
-* bugs: store_params doesn't seem to be defined, I think this was a module
- global for debugging - commented out
-* parameter restriction: check whether version with some fixed parameters works
-
-
-"""
-#mostly copied from the examples directory written for trying out generic mle.
-
-import numpy as np
-from scipy import special #, stats
-#redefine some shortcuts
-np_log = np.log
-np_pi = np.pi
-sps_gamln = special.gammaln
-
-
-from scikits.statsmodels.base.model import GenericLikelihoodModel
-
-class TLinearModel(GenericLikelihoodModel):
- '''Maximum Likelihood Estimation of Linear Model with t-distributed errors
-
- This is an example for generic MLE.
-
- Except for defining the negative log-likelihood method, all
- methods and results are generic. Gradients and Hessian
- and all resulting statistics are based on numerical
- differentiation.
-
- '''
-
-
- def loglike(self, params):
- return -self.nloglikeobs(params).sum(0)
-
- def nloglikeobs(self, params):
- """
- Loglikelihood of linear model with t distributed errors.
-
- Parameters
- ----------
- params : array
- The parameters of the model. The last 2 parameters are degrees of
- freedom and scale.
-
- Returns
- -------
- loglike : array, (nobs,)
- The log likelihood of the model evaluated at `params` for each
- observation defined by self.endog and self.exog.
-
- Notes
- -----
- .. math :: \\ln L=\\sum_{i=1}^{n}\\left[-\\lambda_{i}+y_{i}x_{i}^{\\prime}\\beta-\\ln y_{i}!\\right]
-
- The t distribution is the standard t distribution and not a standardized
- t distribution, which means that the scale parameter is not equal to the
- standard deviation.
-
- self.fixed_params and self.expandparams can be used to fix some
- parameters. (I doubt this has been tested in this model.)
-
- """
- #print len(params),
- #store_params.append(params)
- if not self.fixed_params is None:
- #print 'using fixed'
- params = self.expandparams(params)
-
- beta = params[:-2]
- df = params[-2]
- scale = np.abs(params[-1]) #TODO check behavior around zero
- loc = np.dot(self.exog, beta)
- endog = self.endog
- x = (endog - loc)/scale
- #next part is stats.t._logpdf
- lPx = sps_gamln((df+1)/2) - sps_gamln(df/2.)
- lPx -= 0.5*np_log(df*np_pi) + (df+1)/2.*np_log(1+(x**2)/df)
- lPx -= np_log(scale) # correction for scale
- return -lPx
-
-
-from scipy import stats
-from scikits.statsmodels.tsa.arma_mle import Arma
-
-class TArma(Arma):
- '''Univariate Arma Model with t-distributed errors
-
- This inherit all methods except loglike from tsa.arma_mle.Arma
-
- This uses the standard t-distribution, the implied variance of
- the error is not equal to scale, but ::
-
- error_variance = df/(df-2)*scale**2
-
- Notes
- -----
- This might be replaced by a standardized t-distribution with scale**2
- equal to variance
-
- '''
-
- def loglike(self, params):
- return -self.nloglikeobs(params).sum(0)
-
-
- #add for Jacobian calculation bsejac in GenericMLE, copied from loglike
- def nloglikeobs(self, params):
- """
- Loglikelihood for arma model for each observation, t-distribute
-
- Notes
- -----
- The ancillary parameter is assumed to be the last element of
- the params vector
- """
-
- errorsest = self.geterrors(params)
- #sigma2 = np.maximum(params[-1]**2, 1e-6) #do I need this
- #axis = 0
- #nobs = len(errorsest)
-
- df = params[-2]
- scale = np.abs(params[-1])
- llike = - stats.t._logpdf(errorsest/scale, df) + np_log(scale)
- return llike
-
diff --git a/statsmodels/scikits/statsmodels/miscmodels/try_mlecov.py b/statsmodels/scikits/statsmodels/miscmodels/try_mlecov.py
deleted file mode 100644
index 6bd6b44..0000000
--- a/statsmodels/scikits/statsmodels/miscmodels/try_mlecov.py
+++ /dev/null
@@ -1,235 +0,0 @@
-'''Multivariate Normal Model with full covariance matrix
-
-toeplitz structure is not exploited, need cholesky or inv for toeplitz
-
-Author: josef-pktd
-'''
-
-
-import numpy as np
-#from scipy import special #, stats
-from scipy import linalg
-from scipy.linalg import norm, toeplitz
-
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.base.model import (GenericLikelihoodModel,
- LikelihoodModel)
-from scikits.statsmodels.tsa.arima_process import arma_acovf, arma_generate_sample
-
-
-def mvn_loglike_sum(x, sigma):
- '''loglike multivariate normal
-
- copied from GLS and adjusted names
- not sure why this differes from mvn_loglike
- '''
- nobs = len(x)
- nobs2 = nobs / 2.0
- SSR = (x**2).sum()
- llf = -np.log(SSR) * nobs2 # concentrated likelihood
- llf -= (1+np.log(np.pi/nobs2))*nobs2 # with likelihood constant
- if np.any(sigma) and sigma.ndim == 2:
- #FIXME: robust-enough check? unneeded if _det_sigma gets defined
- llf -= .5*np.log(np.linalg.det(sigma))
- return llf
-
-def mvn_loglike(x, sigma):
- '''loglike multivariate normal
-
- assumes x is 1d, (nobs,) and sigma is 2d (nobs, nobs)
-
- brute force from formula
- no checking of correct inputs
- use of inv and log-det should be replace with something more efficient
- '''
- #see numpy thread
- #Sturla: sqmahal = (cx*cho_solve(cho_factor(S),cx.T).T).sum(axis=1)
- sigmainv = linalg.inv(sigma)
- logdetsigma = np.log(np.linalg.det(sigma))
- nobs = len(x)
-
- llf = - np.dot(x, np.dot(sigmainv, x))
- llf -= nobs * np.log(2 * np.pi)
- llf -= logdetsigma
- llf *= 0.5
- return llf
-
-def mvn_loglike_chol(x, sigma):
- '''loglike multivariate normal
-
- assumes x is 1d, (nobs,) and sigma is 2d (nobs, nobs)
-
- brute force from formula
- no checking of correct inputs
- use of inv and log-det should be replace with something more efficient
- '''
- #see numpy thread
- #Sturla: sqmahal = (cx*cho_solve(cho_factor(S),cx.T).T).sum(axis=1)
- sigmainv = np.linalg.inv(sigma)
- cholsigmainv = np.linalg.cholesky(sigmainv).T
- x_whitened = np.dot(cholsigmainv, x)
-
- logdetsigma = np.log(np.linalg.det(sigma))
- nobs = len(x)
- from scipy import stats
- print 'scipy.stats'
- print np.log(stats.norm.pdf(x_whitened)).sum()
-
- llf = - np.dot(x_whitened.T, x_whitened)
- llf -= nobs * np.log(2 * np.pi)
- llf -= logdetsigma
- llf *= 0.5
- return llf, logdetsigma, 2 * np.sum(np.log(np.diagonal(cholsigmainv)))
-#0.5 * np.dot(x_whitened.T, x_whitened) + nobs * np.log(2 * np.pi) + logdetsigma)
-
-def mvn_nloglike_obs(x, sigma):
- '''loglike multivariate normal
-
- assumes x is 1d, (nobs,) and sigma is 2d (nobs, nobs)
-
- brute force from formula
- no checking of correct inputs
- use of inv and log-det should be replace with something more efficient
- '''
- #see numpy thread
- #Sturla: sqmahal = (cx*cho_solve(cho_factor(S),cx.T).T).sum(axis=1)
-
- #Still wasteful to calculate pinv first
- sigmainv = np.linalg.inv(sigma)
- cholsigmainv = np.linalg.cholesky(sigmainv).T
- #2 * np.sum(np.log(np.diagonal(np.linalg.cholesky(A)))) #Dag mailinglist
- # logdet not needed ???
- #logdetsigma = 2 * np.sum(np.log(np.diagonal(cholsigmainv)))
- x_whitened = np.dot(cholsigmainv, x)
-
- #sigmainv = linalg.cholesky(sigma)
- logdetsigma = np.log(np.linalg.det(sigma))
-
- sigma2 = 1. # error variance is included in sigma
-
- llike = 0.5 * (np.log(sigma2) - 2.* np.log(np.diagonal(cholsigmainv))
- + (x_whitened**2)/sigma2
- + np.log(2*np.pi))
-
- return llike
-
-def invertibleroots(ma):
- import numpy.polynomial as poly
- pr = poly.polyroots(ma)
- insideroots = np.abs(pr)<1
- if insideroots.any():
- pr[np.abs(pr)<1] = 1./pr[np.abs(pr)<1]
- pnew = poly.Polynomial.fromroots(pr)
- mainv = pn.coef/pnew.coef[0]
- wasinvertible = False
- else:
- mainv = ma
- wasinvertible = True
- return mainv, wasinvertible
-
-def getpoly(self, params):
- ar = np.r_[[1], -params[:self.nar]]
- ma = np.r_[[1], params[-self.nma:]]
- import numpy.polynomial as poly
- return poly.Polynomial(ar), poly.Polynomial(ma)
-
-class MLEGLS(GenericLikelihoodModel):
- '''ARMA model with exact loglikelhood for short time series
-
- Inverts (nobs, nobs) matrix, use only for nobs <= 200 or so.
-
- This class is a pattern for small sample GLS-like models. Intended use
- for loglikelihood of initial observations for ARMA.
-
-
-
- TODO:
- This might be missing the error variance. Does it assume error is
- distributed N(0,1)
- Maybe extend to mean handling, or assume it is already removed.
- '''
-
-
- def _params2cov(self, params, nobs):
- '''get autocovariance matrix from ARMA regression parameter
-
- ar parameters are assumed to have rhs parameterization
-
- '''
- ar = np.r_[[1], -params[:self.nar]]
- ma = np.r_[[1], params[-self.nma:]]
- #print 'ar', ar
- #print 'ma', ma
- #print 'nobs', nobs
- autocov = arma_acovf(ar, ma, nobs=nobs)
- #print 'arma_acovf(%r, %r, nobs=%d)' % (ar, ma, nobs)
- #print autocov.shape
- #something is strange fixed in aram_acovf
- autocov = autocov[:nobs]
- sigma = toeplitz(autocov)
- return sigma
-
- def loglike(self, params):
- sig = self._params2cov(params[:-1], self.nobs)
- sig = sig * params[-1]**2
- loglik = mvn_loglike(self.endog, sig)
- return loglik
-
- def fit_invertible(self, *args, **kwds):
- res = self.fit(*args, **kwds)
- ma = np.r_[[1], res.params[self.nar: self.nar+self.nma]]
- mainv, wasinvertible = invertibleroots(ma)
- if not wasinvertible:
- start_params = res.params.copy()
- start_params[self.nar: self.nar+self.nma] = mainv[1:]
- #need to add args kwds
- res = self.fit(start_params=start_params)
- return res
-
-
-
-if __name__ == '__main__':
- nobs = 50
- ar = [1.0, -0.8, 0.1]
- ma = [1.0, 0.1, 0.2]
- #ma = [1]
- np.random.seed(9875789)
- y = arma_generate_sample(ar,ma,nobs,2)
- y -= y.mean() #I haven't checked treatment of mean yet, so remove
- mod = MLEGLS(y)
- mod.nar, mod.nma = 2, 2 #needs to be added, no init method
- mod.nobs = len(y)
- res = mod.fit(start_params=[0.1, -0.8, 0.2, 0.1, 1.])
- print 'DGP', ar, ma
- print res.params
- from scikits.statsmodels.regression import yule_walker
- print yule_walker(y, 2)
- #resi = mod.fit_invertible(start_params=[0.1,0,0.2,0, 0.5])
- #print resi.params
-
- arpoly, mapoly = getpoly(mod, res.params[:-1])
-
- data = sm.datasets.sunspots.load()
- #ys = data.endog[-100:]
-## ys = data.endog[12:]-data.endog[:-12]
-## ys -= ys.mean()
-## mods = MLEGLS(ys)
-## mods.nar, mods.nma = 13, 1 #needs to be added, no init method
-## mods.nobs = len(ys)
-## ress = mods.fit(start_params=np.r_[0.4, np.zeros(12), [0.2, 5.]],maxiter=200)
-## print ress.params
-## #from scikits.statsmodels.sandbox.tsa import arima as tsaa
-## #tsaa
-## import matplotlib.pyplot as plt
-## plt.plot(data.endog[1])
-## #plt.show()
-
- sigma = mod._params2cov(res.params[:-1], nobs) * res.params[-1]**2
- print mvn_loglike(y, sigma)
- llo = mvn_nloglike_obs(y, sigma)
- print llo.sum(), llo.shape
- print mvn_loglike_chol(y, sigma)
- print mvn_loglike_sum(y, sigma)
-
-
-
diff --git a/statsmodels/scikits/statsmodels/nonparametric/__init__.py b/statsmodels/scikits/statsmodels/nonparametric/__init__.py
deleted file mode 100644
index 0b828f4..0000000
--- a/statsmodels/scikits/statsmodels/nonparametric/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from kde import KDE
-from lowess import lowess
-import bandwidths
-
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/nonparametric/bandwidths.py b/statsmodels/scikits/statsmodels/nonparametric/bandwidths.py
deleted file mode 100644
index d409c35..0000000
--- a/statsmodels/scikits/statsmodels/nonparametric/bandwidths.py
+++ /dev/null
@@ -1,104 +0,0 @@
-import numpy as np
-from scipy.stats import scoreatpercentile as sap
-
-#from scipy.stats import norm
-
-def _select_sigma(X):
- """
- Returns the smaller of std(X, ddof=1) or normalized IQR(X) over axis 0.
-
- References
- ----------
- Silverman (1986) p.47
- """
-# normalize = norm.ppf(.75) - norm.ppf(.25)
- normalize = 1.349
-# IQR = np.subtract.reduce(percentile(X, [75,25],
-# axis=axis), axis=axis)/normalize
- IQR = (sap(X, 75) - sap(X, 25))/normalize
- return np.minimum(np.std(X, axis=0, ddof=1), IQR)
-
-
-## Univariate Rule of Thumb Bandwidths ##
-def bw_scott(x):
- """
- Scott's Rule of Thumb
-
- Parameter
- ---------
- x : array-like
- Array for which to get the bandwidth
-
- Returns
- -------
- bw : float
- The estimate of the bandwidth
-
- Notes
- -----
- Returns 1.059 * A * n ** (-1/5.)
-
- A = min(std(x, ddof=1), IQR/1.349)
- IQR = np.subtract.reduce(np.percentile(x, [75,25]))
-
- References
- ---------- ::
-
- Scott, D.W. (1992) `Multivariate Density Estimation: Theory, Practice, and
- Visualization.`
- """
- A = _select_sigma(x)
- n = len(x)
- return 1.059 * A * n ** -.2
-
-def bw_silverman(x):
- """f
- Silverman's Rule of Thumb
-
- Parameter
- ---------
- x : array-like
- Array for which to get the bandwidth
-
- Returns
- -------
- bw : float
- The estimate of the bandwidth
-
- Notes
- -----
- Returns .9 * A * n ** (-1/5.)
-
- A = min(std(x, ddof=1), IQR/1.349)
- IQR = np.subtract.reduce(np.percentile(x, [75,25]))
-
- References
- ---------- ::
-
- Silverman, B.W. (1986) `Density Estimation.`
- """
- A = _select_sigma(x)
- n = len(x)
- return .9 * A * n ** -.2
-
-## Plug-In Methods ##
-
-## Least Squares Cross-Validation ##
-
-## Helper Functions ##
-
-bandwidth_funcs = dict(scott=bw_scott,silverman=bw_silverman)
-
-def select_bandwidth(X, bw, kernel):
- """
- Selects bandwidth
- """
- bw = bw.lower()
- if bw not in ["scott","silverman"]:
- raise ValueError("Bandwidth %s not understood" % bw)
-#TODO: uncomment checks when we have non-rule of thumb bandwidths for diff. kernels
-# if kernel == "gauss":
- return bandwidth_funcs[bw](X)
-# else:
-# raise ValueError("Only Gaussian Kernels are currently supported")
-
diff --git a/statsmodels/scikits/statsmodels/nonparametric/kde.py b/statsmodels/scikits/statsmodels/nonparametric/kde.py
deleted file mode 100644
index bbbaa17..0000000
--- a/statsmodels/scikits/statsmodels/nonparametric/kde.py
+++ /dev/null
@@ -1,504 +0,0 @@
-"""
-Univariate Kernel Density Estimators
-
-References
-----------
-Racine, Jeff. (2008) "Nonparametric Econometrics: A Primer," Foundation and
- Trends in Econometrics: Vol 3: No 1, pp1-88.
- http://dx.doi.org/10.1561/0800000009
-
-http://en.wikipedia.org/wiki/Kernel_%28statistics%29
-
-Silverman, B.W. Density Estimation for Statistics and Data Anaylsis.
-"""
-import numpy as np
-from scipy import integrate, stats
-from scikits.statsmodels.sandbox.nonparametric import kernels
-from scikits.statsmodels.tools.decorators import (cache_readonly,
- resettable_cache)
-import bandwidths
-from kdetools import (forrt, revrt, silverman_transform, linbin, counts)
-
-#### Kernels Switch for estimators ####
-
-kernel_switch = dict(gau=kernels.Gaussian, epa=kernels.Epanechnikov,
- uni=kernels.Uniform, tri=kernels.Triangular,
- biw=kernels.Biweight, triw=kernels.Triweight,
- cos=kernels.Cosine)
-
-def _checkisfit(self):
- try:
- self.density
- except:
- raise ValueError("Call fit to fit the density first")
-
-
-#### Kernel Density Estimator Class ###
-
-class KDE(object):
- """
- Kernel Density Estimator
-
- Parameters
- ----------
- endog : array-like
- The variable for which the density estimate is desired.
-
- Notes
- -----
- If cdf, sf, cumhazard, or entropy are computed, they are computed based on
- the definition of the kernel rather than the FFT approximation, even if
- the density is fit with FFT = True.
- """
- _cache = resettable_cache()
-
- def __init__(self, endog):
- self.endog = np.asarray(endog)
-
- def fit(self, kernel="gau", bw="scott", fft=True, weights=None,
- gridsize=None, adjust=1, cut=3, clip=(-np.inf, np.inf)):
- """
- Attach the density estimate to the KDE class.
-
- Parameters
- ----------
- kernel : str
- The Kernel to be used. Choices are
- - "biw" for biweight
- - "cos" for cosine
- - "epa" for Epanechnikov
- - "gauss" for Gaussian.
- - "tri" for triangular
- - "triw" for triweight
- - "uni" for uniform
- bw : str, float
- "scott" - 1.059 * A * nobs ** (-1/5.), where A is
- min(std(X),IQR/1.34)
- "silverman" - .9 * A * nobs ** (-1/5.), where A is
- min(std(X),IQR/1.34)
- If a float is given, it is the bandwidth.
- fft : bool
- Whether or not to use FFT. FFT implementation is more
- computationally efficient. However, only the Gaussian kernel
- is implemented. If FFT is False, then a 'nobs' x 'gridsize'
- intermediate array is created.
- gridsize : int
- If gridsize is None, max(len(X), 50) is used.
- cut : float
- Defines the length of the grid past the lowest and highest values
- of X so that the kernel goes to zero. The end points are
- -/+ cut*bw*{min(X) or max(X)}
- adjust : float
- An adjustment factor for the bw. Bandwidth becomes bw * adjust.
- """
- try:
- bw = float(bw)
- self.bw_method = "user-given"
- except:
- self.bw_method = bw
- endog = self.endog
-
- if fft:
- if kernel != "gau":
- msg = "Only gaussian kernel is available for fft"
- raise NotImplementedError(msg)
- if weights is not None:
- msg = "Weights are not implemented for fft"
- raise NotImplementedError(msg)
- density, grid, bw = kdensityfft(endog, kernel=kernel, bw=bw,
- adjust=adjust, weights=weights, gridsize=gridsize,
- clip=clip, cut=cut)
- else:
- density, grid, bw = kdensity(endog, kernel=kernel, bw=bw,
- adjust=adjust, weights=weights, gridsize=gridsize,
- clip=clip, cut=cut)
- self.density = density
- self.support = grid
- self.bw = bw
- self.kernel = kernel_switch[kernel](h=bw) # we instantiate twice,
- # should this passed to funcs?
-
- @cache_readonly
- def cdf(self):
- """
- Returns the cumulative distribution function evaluated at the support.
-
- Notes
- -----
- Will not work if fit has not been called.
- """
- _checkisfit(self)
- density = self.density
- kern = self.kernel
- if kern.domain is None: # TODO: test for grid point at domain bound
- a,b = -np.inf,np.inf
- else:
- a,b = kern.domain
- func = lambda x,s: kern.density(s,x)
-
- support = self.support
- support = np.r_[a,support]
- gridsize = len(support)
- endog = self.endog
- probs = [integrate.quad(func, support[i-1], support[i],
- args=endog)[0] for i in xrange(1,gridsize)]
- return np.cumsum(probs)
-
- @cache_readonly
- def cumhazard(self):
- """
- Returns the hazard function evaluated at the support.
-
- Notes
- -----
- Will not work if fit has not been called.
-
- """
- _checkisfit(self)
- return -np.log(self.sf)
-
- @cache_readonly
- def sf(self):
- """
- Returns the survival function evaluated at the support.
-
- Notes
- -----
- Will not work if fit has not been called.
- """
- _checkisfit(self)
- return 1 - self.cdf
-
- @cache_readonly
- def entropy(self):
- """
- Returns the differential entropy evaluated at the support
-
- Notes
- -----
- Will not work if fit has not been called. 1e-12 is added to each
- probability to ensure that log(0) is not called.
- """
- _checkisfit(self)
-
- def entr(x,s):
- pdf = kern.density(s,x)
- return pdf*np.log(pdf+1e-12)
-
- pdf = self.density
- kern = self.kernel
-
- if kern.domain is not None:
- a,b = self.domain
- else:
- a,b = -np.inf,np.inf
- endog = self.endog
- #TODO: below could run into integr problems, cf. stats.dist._entropy
- return -integrate.quad(entr, a,b, args=(endog,))[0]
-
- @cache_readonly
- def icdf(self):
- """
- Inverse Cumulative Distribution (Quantile) Function
-
- Notes
- -----
- Will not work if fit has not been called. Uses
- `scipy.stats.mstats.mquantiles`.
- """
- _checkisfit(self)
- gridsize = len(self.density)
- return stats.mstats.mquantiles(self.endog, np.linspace(0,1,
- gridsize))
-
- def evaluate(self, point):
- """
- Evaluate density at a single point.
-
- Paramters
- ---------
- point : float
- Point at which to evaluate the density.
- """
- _checkisfit(self)
- return self.kernel.density(self.endog, point)
-
-#### Kernel Density Estimator Functions ####
-
-def kdensity(X, kernel="gauss", bw="scott", weights=None, gridsize=None,
- adjust=1, clip=(-np.inf,np.inf), cut=3, retgrid=True):
- """
- Rosenblatz-Parzen univariate kernel desnity estimator
-
- Parameters
- ----------
- X : array-like
- The variable for which the density estimate is desired.
- kernel : str
- The Kernel to be used. Choices are
- - "biw" for biweight
- - "cos" for cosine
- - "epa" for Epanechnikov
- - "gauss" for Gaussian.
- - "tri" for triangular
- - "triw" for triweight
- - "uni" for uniform
- bw : str, float
- "scott" - 1.059 * A * nobs ** (-1/5.), where A is min(std(X),IQR/1.34)
- "silverman" - .9 * A * nobs ** (-1/5.), where A is min(std(X),IQR/1.34)
- If a float is given, it is the bandwidth.
- weights : array or None
- Optional weights. If the X value is clipped, then this weight is
- also dropped.
- gridsize : int
- If gridsize is None, max(len(X), 50) is used.
- adjust : float
- An adjustment factor for the bw. Bandwidth becomes bw * adjust.
- clip : tuple
- Observations in X that are outside of the range given by clip are
- dropped. The number of observations in X is then shortened.
- cut : float
- Defines the length of the grid past the lowest and highest values of X
- so that the kernel goes to zero. The end points are
- -/+ cut*bw*{min(X) or max(X)}
- retgrid : bool
- Whether or not to return the grid over which the density is estimated.
-
- Returns
- -------
- density : array
- The densities estimated at the grid points.
- grid : array, optional
- The grid points at which the density is estimated.
-
- Notes
- -----
- Creates an intermediate (`gridsize` x `nobs`) array. Use FFT for a more
- computationally efficient version.
- """
- X = np.asarray(X)
- if X.ndim == 1:
- X = X[:,None]
- clip_x = np.logical_and(X>clip[0], X z_high)
- k = kern(k) # estimate density
- k[domain_mask] = 0
- else:
- k = kern(k) # estimate density
-
- k[k<0] = 0 # get rid of any negative values, do we need this?
-
- dens = np.dot(k,weights)/(q*bw)
-
- if retgrid:
- return dens, grid, bw
- else:
- return dens, bw
-
-def kdensityfft(X, kernel="gau", bw="scott", weights=None, gridsize=None,
- adjust=1, clip=(-np.inf,np.inf), cut=3, retgrid=True):
- """
- Rosenblatz-Parzen univariate kernel desnity estimator
-
- Parameters
- ----------
- X : array-like
- The variable for which the density estimate is desired.
- kernel : str
- ONLY GAUSSIAN IS CURRENTLY IMPLEMENTED.
- "bi" for biweight
- "cos" for cosine
- "epa" for Epanechnikov, default
- "epa2" for alternative Epanechnikov
- "gau" for Gaussian.
- "par" for Parzen
- "rect" for rectangular
- "tri" for triangular
- bw : str, float
- "scott" - 1.059 * A * nobs ** (-1/5.), where A is min(std(X),IQR/1.34)
- "silverman" - .9 * A * nobs ** (-1/5.), where A is min(std(X),IQR/1.34)
- If a float is given, it is the bandwidth.
- weights : array or None
- WEIGHTS ARE NOT CURRENTLY IMPLEMENTED.
- Optional weights. If the X value is clipped, then this weight is
- also dropped.
- gridsize : int
- If gridsize is None, min(len(X), 512) is used. Note that the provided
- number is rounded up to the next highest power of 2.
- adjust : float
- An adjustment factor for the bw. Bandwidth becomes bw * adjust.
- clip : tuple
- Observations in X that are outside of the range given by clip are
- dropped. The number of observations in X is then shortened.
- cut : float
- Defines the length of the grid past the lowest and highest values of X
- so that the kernel goes to zero. The end points are
- -/+ cut*bw*{X.min() or X.max()}
- retgrid : bool
- Whether or not to return the grid over which the density is estimated.
-
- Returns
- -------
- density : array
- The densities estimated at the grid points.
- grid : array, optional
- The grid points at which the density is estimated.
-
- Notes
- -----
- Only the default kernel is implemented. Weights aren't implemented yet.
- This follows Silverman (1982) with changes suggested by Jones and Lotwick
- (1984). However, the discretization step is replaced by linear binning
- of Fan and Marron (1994). This should be extended to accept the parts
- that are dependent only on the data to speed things up for
- cross-validation.
-
- References
- ---------- ::
-
- Fan, J. and J.S. Marron. (1994) `Fast implementations of nonparametric
- curve estimators`. Journal of Computational and Graphical Statistics.
- 3.1, 35-56.
- Jones, M.C. and H.W. Lotwick. (1984) `Remark AS R50: A Remark on Algorithm
- AS 176. Kernal Density Estimation Using the Fast Fourier Transform`.
- Journal of the Royal Statistical Society. Series C. 33.1, 120-2.
- Silverman, B.W. (1982) `Algorithm AS 176. Kernel density estimation using
- the Fast Fourier Transform. Journal of the Royal Statistical Society.
- Series C. 31.2, 93-9.
- """
- X = np.asarray(X)
- X = X[np.logical_and(X>clip[0], X0: # there are points of X in the grid here
-# Xingrid = X[j:j+count[k]] # get all these points
-# # get weights at grid[k],grid[k+1]
-# binned[k] += np.sum(grid[k+1]-Xingrid)
-# binned[k+1] += np.sum(Xingrid-grid[k])
-# j += count[k]
-# binned /= (nobs)*delta**2 # normalize binned to sum to 1/delta
-
-#NOTE: THE ABOVE IS WRONG, JUST TRY WITH LINEAR BINNING
- binned = linbin(X,a,b,gridsize)/(delta*nobs)
-
- # step 2 compute FFT of the weights, using Munro (1976) FFT convention
- y = forrt(binned)
-
- # step 3 and 4 for optimal bw compute zstar and the density estimate f
- # don't have to redo the above if just changing bw, ie., for cross val
-
-#NOTE: silverman_transform is the closed form solution of the FFT of the
-#gaussian kernel. Not yet sure how to generalize it.
- zstar = silverman_transform(bw, gridsize, RANGE)*y # 3.49 in Silverman
- # 3.50 w Gaussian kernel
- f = revrt(zstar)
- if retgrid:
- return f, grid, bw
- else:
- return f, bw
-
-if __name__ == "__main__":
- import numpy as np
- np.random.seed(12345)
- xi = np.random.randn(100)
- f,grid, bw1 = kdensity(xi, kernel="gauss", bw=.372735, retgrid=True)
- f2, bw2 = kdensityfft(xi, kernel="gauss", bw="silverman",retgrid=False)
-
-# do some checking vs. silverman algo.
-# you need denes.f, http://lib.stat.cmu.edu/apstat/176
-#NOTE: I (SS) made some changes to the Fortran
-# and the FFT stuff from Munro http://lib.stat.cmu.edu/apstat/97o
-# then compile everything and link to denest with f2py
-#Make pyf file as usual, then compile shared object
-#f2py denest.f -m denest2 -h denest.pyf
-#edit pyf
-#-c flag makes it available to other programs, fPIC builds a shared library
-#/usr/bin/gfortran -Wall -c -fPIC fft.f
-#f2py -c denest.pyf ./fft.o denest.f
-
- try:
- from denest2 import denest
- a = -3.4884382032045504
- b = 4.3671504686785605
- RANGE = b - a
- bw = bandwidths.bw_silverman(xi)
-
- ft,smooth,ifault,weights,smooth1 = denest(xi,a,b,bw,np.zeros(512),np.zeros(512),0,
- np.zeros(512), np.zeros(512))
-# We use a different binning algo, so only accurate up to 3 decimal places
- np.testing.assert_almost_equal(f2, smooth, 3)
-#NOTE: for debugging
-# y2 = forrt(weights)
-# RJ = np.arange(512/2+1)
-# FAC1 = 2*(np.pi*bw/RANGE)**2
-# RJFAC = RJ**2*FAC1
-# BC = 1 - RJFAC/(6*(bw/((b-a)/M))**2)
-# FAC = np.exp(-RJFAC)/BC
-# SMOOTH = np.r_[FAC,FAC[1:-1]] * y2
-
-# dens = revrt(SMOOTH)
-
- except:
-# ft = np.loadtxt('./ft_silver.csv')
-# smooth = np.loadtxt('./smooth_silver.csv')
- print "Didn't get the estimates from the Silverman algorithm"
diff --git a/statsmodels/scikits/statsmodels/nonparametric/kdetools.py b/statsmodels/scikits/statsmodels/nonparametric/kdetools.py
deleted file mode 100644
index 94ca463..0000000
--- a/statsmodels/scikits/statsmodels/nonparametric/kdetools.py
+++ /dev/null
@@ -1,73 +0,0 @@
-#### Convenience Functions to be moved to kerneltools ####
-import numpy as np
-
-def forrt(X,m=None):
- """
- RFFT with order like Munro (1976) FORTT routine.
- """
- if m is None:
- m = len(X)
- y = np.fft.rfft(X,m)/m
- return np.r_[y.real,y[1:-1].imag]
-
-def revrt(X,m=None):
- """
- Inverse of forrt. Equivalent to Munro (1976) REVRT routine.
- """
- if m is None:
- m = len(X)
- y = X[:m/2+1] + np.r_[0,X[m/2+1:],0]*1j
- return np.fft.irfft(y)*m
-
-def silverman_transform(bw, M, RANGE):
- """
- FFT of Gaussian kernel following to Silverman AS 176.
-
- Notes
- -----
- Underflow is intentional as a dampener.
- """
- J = np.arange(M/2+1)
- FAC1 = 2*(np.pi*bw/RANGE)**2
- JFAC = J**2*FAC1
- BC = 1 - 1./3 * (J*1./M*np.pi)**2
- FAC = np.exp(-JFAC)/BC
- kern_est = np.r_[FAC,FAC[1:-1]]
- return kern_est
-
-def linbin(X,a,b,M, trunc=1):
- """
- Linear Binning as described in Fan and Marron (1994)
- """
- gcnts = np.zeros(M)
- delta = (b-a)/(M-1)
-
- for x in X:
- lxi = ((x - a)/delta) # +1
- li = int(lxi)
- rem = lxi - li
- if li > 1 and li < M:
- gcnts[li] = gcnts[li] + 1-rem
- gcnts[li+1] = gcnts[li+1] + rem
- if li > M and trunc == 0:
- gcnts[M] = gncts[M] + 1
-
- return gcnts
-
-def counts(x,v):
- """
- Counts the number of elements of x that fall within the grid points v
-
- Notes
- -----
- Using np.digitize and np.bincount
- """
- idx = np.digitize(x,v)
- try: # numpy 1.6
- return np.bincount(idx, minlength=len(v))
- except:
- bc = np.bincount(idx)
- return np.r_[bc,np.zeros(len(v)-len(bc))]
-
-def kdesum(x,axis=0):
- return np.asarray([np.sum(x[i] - x, axis) for i in range(len(x))])
diff --git a/statsmodels/scikits/statsmodels/nonparametric/lowess.py b/statsmodels/scikits/statsmodels/nonparametric/lowess.py
deleted file mode 100644
index ba36108..0000000
--- a/statsmodels/scikits/statsmodels/nonparametric/lowess.py
+++ /dev/null
@@ -1,383 +0,0 @@
-"""
-Univariate lowess function, like in R.
-
-References
-----------
-Hastie, Tibshirani, Friedman. (2009) The Elements of Statistical Learning: Data Mining, Inference, and Prediction, Second Edition: Chapter 6.
-
-Cleveland, W.S. (1979) "Robust Locally Weighted Regression and Smoothing Scatterplots". Journal of the American Statistical Association 74 (368): 829-836.
-"""
-
-import numpy as np
-from scipy.linalg import lstsq
-
-
-def lowess(endog, exog, frac = 2./3, it = 3):
- """
- LOWESS (Locally Weighted Scatterplot Smoothing)
-
- A lowess function that outs smoothed estimates of endog
- at the given exog values from points (exog, endog)
-
- Parameters
- ----------
- endog: 1-D numpy array
- The y-values of the observed points
- exog: 1-D numpy array
- The x-values of the observed points
- frac: float
- Between 0 and 1. The fraction of the data used
- when estimating each y-value.
- it: int
- The number of residual-based reweightings
- to perform.
-
- Returns
- -------
- out: numpy array
- A numpy array with two columns. The first column
- is the sorted x values and the second column the
- associated estimated y-values.
-
- Notes
- -----
- This lowess function implements the algorithm given in the
- reference below using local linear estimates.
-
- Suppose the input data has N points. The algorithm works by
- estimating the true y_i by taking the frac*N closest points
- to (x_i,y_i) based on their x values and estimating y_i
- using a weighted linear regression. The weight for (x_j,y_j)
- is __lowess_tricube function applied to |x_i-x_j|.
-
- If iter>0, then further weighted local linear regressions
- are performed, where the weights are the same as above
- times the __lowess_bisquare function of the residuals. Each iteration
- takes approximately the same amount of time as the original fit,
- so these iterations are expensive. They are most useful when
- the noise has extremely heavy tails, such as Cauchy noise.
- Noise with less heavy-tails, such as t-distributions with df>2,
- are less problematic. The weights downgrade the influence of
- points with large residuals. In the extreme case, points whose
- residuals are larger than 6 times the median absolute residual
- are given weight 0.
-
- Some experimentation is likely required to find a good
- choice of frac and iter for a particular dataset.
-
-
- References
- ----------
- Cleveland, W.S. (1979) "Robust Locally Weighted Regression
- and Smoothing Scatterplots". Journal of the American Statistical
- Association 74 (368): 829-836.
-
-
- Examples
- --------
- The below allows a comparison between how different the fits from
- lowess for different values of frac can be.
-
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> from sm.nonparametric import lowess
- >>> x = np.random.uniform(low = -2*np.pi, high = 2*np.pi, size=500)
- >>> y = np.sin(x) + np.random.normal(size=len(x))
- >>> z = lowess(y,x)
- >>> w = lowess(y,x, frac=1./3)
-
- This gives a similar comparison for when it is 0 vs not.
-
- >>> import numpy as np
- >>> import scipy.stats as stats
- >>> import scikits.statsmodels.api as sm
- >>> from sm.nonparametric import lowess
- >>> x = np.random.uniform(low = -2*np.pi, high = 2*np.pi, size=500)
- >>> y = np.sin(x) + stats.cauchy.rvs(size=len(x))
- >>> z = lowess(y,x, frac= 1./3, it=0)
- >>> w = lowess(y,x, frac=1./3)
-
- """
-
- x = exog
- y = endog
-
-
- if exog.ndim != 1:
- raise ValueError('exog must be a vector')
- if endog.ndim != 1:
- raise ValueError('endog must be a vector')
- if endog.shape[0] != x.shape[0] :
- raise ValueError('exog and endog must have same length')
-
- n = exog.shape[0]
- fitted = np.zeros(n)
-
- k = int(frac * n)
-
- index_array = np.argsort(exog)
- x_copy = np.array(exog[index_array], dtype ='float32')
- y_copy = endog[index_array]
-
- fitted, weights = __lowess_initial_fit(x_copy, y_copy, k, n)
-
- for i in xrange(it):
- __lowess_robustify_fit(x_copy, y_copy, fitted,
- weights, k, n)
-
- out = np.array([x_copy, fitted]).T
- out.shape = (n,2)
-
- return out
-
-
-def __lowess_initial_fit(x_copy, y_copy, k, n):
- """
- The initial weighted local linear regression for lowess.
-
- Parameters
- ----------
- x_copy : 1-d ndarray
- The x-values/exogenous part of the data being smoothed
- y_copy : 1-d ndarray
- The y-values/ endogenous part of the data being smoothed
- k : int
- The number of data points which affect the linear fit for
- each estimated point
- n : int
- The total number of points
-
- Returns
- -------
- fitted : 1-d ndarray
- The fitted y-values
- weights : 2-d ndarray
- An n by k array. The contribution to the weights in the
- local linear fit coming from the distances between the
- x-values
-
- """
- weights = np.zeros((n,k), dtype = x_copy.dtype)
- nn_indices = [0,k]
-
- X = np.ones((k,2))
- fitted = np.zeros(n)
-
- for i in xrange(n):
-
- left_width = x_copy[i] - x_copy[nn_indices[0]]
- right_width = x_copy[nn_indices[1]-1] - x_copy[i]
- width = max(left_width, right_width)
-
- __lowess_wt_standardize(weights[i,:],
- x_copy[nn_indices[0]:nn_indices[1]],
- x_copy[i], width)
- __lowess_tricube(weights[i,:])
- np.sqrt(weights[i,:], out=weights[i,:])
-
- X[:,1] = x_copy[nn_indices[0]:nn_indices[1]]
- y_i = weights[i,:] * y_copy[nn_indices[0]:nn_indices[1]]
-
- beta = lstsq(weights[i,:].reshape(k,1) * X, y_i)[0]
-
- fitted[i] = beta[0] + beta[1]*x_copy[i]
-
- __lowess_update_nn(x_copy, nn_indices, i+1)
-
-
- return fitted, weights
-
-
-def __lowess_wt_standardize(weights, new_entries, x_copy_i, width):
- """
- The initial phase of creating the weights.
- Subtract the current x_i and divide by the width.
-
- Parameters
- ----------
- weights : ndarray
- The memory where (new_entries - x_copy_i)/width will be placed
- new_entries : ndarray
- The x-values of the k closest points to x[i]
- x_copy_i : float
- x[i], the i'th point in the (sorted) x values
- width : float
- The maximum distance between x[i] and any point in new_entries
-
- Returns
- -------
- Nothing. The modifications are made to weight in place.
-
- """
- weights[:] = new_entries
- weights -= x_copy_i
- weights /= width
-
-
-
-def __lowess_robustify_fit(x_copy, y_copy, fitted, weights, k, n):
- """
- Additional weighted local linear regressions, performed if
- iter>0. They take into account the sizes of the residuals,
- to eliminate the effect of extreme outliers.
-
- Parameters
- ----------
- x_copy : 1-d ndarray
- The x-values/exogenous part of the data being smoothed
- y_copy : 1-d ndarray
- The y-values/ endogenous part of the data being smoothed
- fitted : 1-d ndarray
- The fitted y-values from the previous iteration
- weights : 2-d ndarray
- An n by k array. The contribution to the weights in the
- local linear fit coming from the distances between the
- x-values
- k : int
- The number of data points which affect the linear fit for
- each estimated point
- n : int
- The total number of points
-
- Returns
- -------
- Nothing. The fitted values are modified in place.
-
-
- """
- nn_indices = [0,k]
- X = np.ones((k,2))
-
- residual_weights = np.copy(y_copy)
- residual_weights.shape = (n,)
- residual_weights -= fitted
- np.absolute(residual_weights, out=residual_weights)
- s = np.median(residual_weights)
- residual_weights /= (6*s)
- too_big = residual_weights>=1
- __lowess_bisquare(residual_weights)
- residual_weights[too_big] = 0
-
-
- for i in xrange(n):
-
- total_weights = weights[i,:] * residual_weights[nn_indices[0]:
- nn_indices[1]]
-
- X[:,1] = x_copy[nn_indices[0]:nn_indices[1]]
- y_i = total_weights * y_copy[nn_indices[0]:nn_indices[1]]
- total_weights.shape = (k,1)
-
- beta = lstsq(total_weights * X, y_i)[0]
-
- fitted[i] = beta[0] + beta[1] * x_copy[i]
-
- __lowess_update_nn(x_copy, nn_indices, i+1)
-
-
-
-
-
-def __lowess_update_nn(x, cur_nn,i):
- """
- Update the endpoints of the nearest neighbors to
- the ith point.
-
- Parameters
- ----------
- x : iterable
- The sorted points of x-values
- cur_nn : list of length 2
- The two current indices between which are the
- k closest points to x[i]. (The actual value of
- k is irrelevant for the algorithm.
- i : int
- The index of the current value in x for which
- the k closest points are desired.
-
- Returns
- -------
- Nothing. It modifies cur_nn in place.
-
- """
- while True:
- if cur_nn[1]>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> ols_resid = sm.OLS(data.endog, data.exog).fit().resid
- >>> res_fit = sm.OLS(ols_resid[1:], ols_resid[:-1]).fit()
- >>> rho = res_fit.params
-
- `rho` is a consistent estimator of the correlation of the residuals from
- an OLS fit of the longley data. It is assumed that this is the true rho
- of the AR process data.
-
- >>> from scipy.linalg import toeplitz
- >>> order = toeplitz(np.arange(16))
- >>> sigma = rho**order
-
- `sigma` is an n x n matrix of the autocorrelation structure of the
- data.
-
- >>> gls_model = sm.GLS(data.endog, data.exog, sigma=sigma)
- >>> gls_results = gls_model.results
-
- """
-
- def __init__(self, endog, exog, sigma=None):
-#TODO: add options igls, for iterative fgls if sigma is None
-#TODO: default is sigma is none should be two-step GLS
- if sigma is not None:
- self.sigma = np.asarray(sigma)
- else:
- self.sigma = sigma
- if self.sigma is not None and not self.sigma.shape == (): #greedy logic
- nobs = int(endog.shape[0])
- if self.sigma.ndim == 1 or np.squeeze(self.sigma).ndim == 1:
- if self.sigma.shape[0] != nobs:
- raise ValueError("sigma is not the correct dimension. \
-Should be of length %s, if sigma is a 1d array" % nobs)
- elif self.sigma.shape[0] != nobs and \
- self.sigma.shape[1] != nobs:
- raise ValueError("expected an %s x %s array for sigma" % \
- (nobs, nobs))
- if self.sigma is not None:
- nobs = int(endog.shape[0])
- if self.sigma.shape == ():
- self.sigma = np.diag(np.ones(nobs)*self.sigma)
- if np.squeeze(self.sigma).ndim == 1:
- self.sigma = np.diag(np.squeeze(self.sigma))
- self.cholsigmainv = np.linalg.cholesky(np.linalg.pinv(\
- self.sigma)).T
- super(GLS, self).__init__(endog, exog)
-
- def initialize(self):
- self.wexog = self.whiten(self.exog)
- self.wendog = self.whiten(self.endog)
- # overwrite nobs from class Model:
- self.nobs = float(self.wexog.shape[0])
- self.df_resid = self.nobs - rank(self.exog)
-# Below assumes that we have a constant
- self.df_model = float(rank(self.exog)-1)
-
- def whiten(self, X):
- """
- GLS whiten method.
-
- Parameters
- -----------
- X : array-like
- Data to be whitened.
-
- Returns
- -------
- np.dot(cholsigmainv,X)
-
- See Also
- --------
- regression.GLS
- """
- X = np.asarray(X)
- if np.any(self.sigma) and not self.sigma==():
- return np.dot(self.cholsigmainv, X)
- else:
- return X
-
- def fit(self, method="pinv", **kwargs):
- """
- Full fit of the model.
-
- The results include an estimate of covariance matrix, (whitened)
- residuals and an estimate of scale.
-
- Parameters
- ----------
- method : str
- Can be "pinv", "qr", or "mle". "pinv" uses the
- Moore-Penrose pseudoinverse to solve the least squares problem.
- "svd" uses the Singular Value Decomposition. "qr" uses the
- QR factorization. "mle" fits the model via maximum likelihood.
- "mle" is not yet implemented.
-
- Returns
- -------
- A RegressionResults class instance.
-
- See Also
- ---------
- regression.RegressionResults
-
- Notes
- -----
- Currently it is assumed that all models will have an intercept /
- constant in the design matrix for postestimation statistics.
-
- The fit method uses the pseudoinverse of the design/exogenous variables
- to solve the least squares minimization.
-
- """
- exog = self.wexog
- endog = self.wendog
-
- if method == "pinv":
- if ((not hasattr(self, 'pinv_wexog')) or
- (not hasattr(self, 'normalized_cov_params'))):
- self.pinv_wexog = pinv_wexog = np.linalg.pinv(self.wexog)
- self.normalized_cov_params = np.dot(pinv_wexog,
- np.transpose(pinv_wexog))
- beta = np.dot(self.pinv_wexog, endog)
-
- elif method == "qr":
- if ((not hasattr(self, '_exog_Q')) or
- (not hasattr(self, 'normalized_cov_params'))):
- Q, R = np.linalg.qr(exog)
- self._exog_Q, self._exog_R = Q, R
- self.normalized_cov_params = np.linalg.inv(np.dot(R.T, R))
- else:
- Q, R = self._exog_Q, self._exog_R
-
- beta = np.linalg.solve(R,np.dot(Q.T,endog))
-
- # no upper triangular solve routine in numpy/scipy?
- lfit = RegressionResults(self, beta,
- normalized_cov_params=self.normalized_cov_params)
- return RegressionResultsWrapper(lfit)
-
- def predict(self, params, exog=None):
- """
- Return linear predicted values from a design matrix.
-
- Parameters
- ----------
- params : array-like, optional after fit has been called
- Parameters of a linear model
- exog : array-like, optional.
- Design / exogenous data. Model exog is used if None.
-
- Returns
- -------
- An array of fitted values
-
- Notes
- -----
- If the model as not yet been fit, params is not optional.
- """
- #JP: this doesn't look correct for GLMAR
- #SS: it needs its own predict method
- if exog is None:
- exog = self.exog
- return np.dot(exog, params)
-
- def loglike(self, params):
- """
- Returns the value of the gaussian loglikelihood function at params.
-
- Given the whitened design matrix, the loglikelihood is evaluated
- at the parameter vector `params` for the dependent variable `endog`.
-
- Parameters
- ----------
- params : array-like
- The parameter estimates
-
- Returns
- -------
- loglike : float
- The value of the loglikelihood function for a GLS Model.
-
-
- Notes
- -----
- The loglikelihood function for the normal distribution is
-
- .. math:: -\\frac{n}{2}\\log\\left(Y-\\hat{Y}\\right)-\\frac{n}{2}\\left(1+\\log\\left(\\frac{2\\pi}{n}\\right)\\right)-\\frac{1}{2}\\log\\left(\\left|\\Sigma\\right|\\right)
-
- Y and Y-hat are whitened.
-
- """
-#TODO: combine this with OLS/WLS loglike and add _det_sigma argument
- nobs2 = self.nobs / 2.0
- SSR = ss(self.wendog - np.dot(self.wexog,params))
- llf = -np.log(SSR) * nobs2 # concentrated likelihood
- llf -= (1+np.log(np.pi/nobs2))*nobs2 # with likelihood constant
- if np.any(self.sigma) and self.sigma.ndim == 2:
-#FIXME: robust-enough check? unneeded if _det_sigma gets defined
- llf -= .5*np.log(np.linalg.det(self.sigma))
- # with error covariance matrix
- return llf
-
-
-
-class WLS(GLS):
- """
- A regression model with diagonal but non-identity covariance structure.
-
- The weights are presumed to be (proportional to) the inverse of the
- variance of the observations. That is, if the variables are to be
- transformed by 1/sqrt(W) you must supply weights = 1/W. Note that this
- is different than the behavior for GLS with a diagonal Sigma, where you
- would just supply W.
-
- **Methods**
-
- whiten
- Returns the input scaled by sqrt(W)
-
-
- Parameters
- ----------
-
- endog : array-like
- n length array containing the response variabl
- exog : array-like
- n x p array of design / exogenous data
- weights : array-like, optional
- 1d array of weights. If you supply 1/W then the variables are pre-
- multiplied by 1/sqrt(W). If no weights are supplied the default value
- is 1 and WLS reults are the same as OLS.
-
- Attributes
- ----------
- weights : array
- The stored weights supplied as an argument.
-
- See regression.GLS
-
-
-
- Examples
- ---------
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> Y = [1,3,4,5,2,3,4]
- >>> X = range(1,8)
- >>> X = sm.add_constant(X)
- >>> wls_model = sm.WLS(Y,X, weights=range(1,8))
- >>> results = wls_model.fit()
- >>> results.params
- array([ 0.0952381 , 2.91666667])
- >>> results.tvalues
- array([ 0.35684428, 2.0652652 ])
-
- >>> print results.f_test([1,0])
-
-
- Notes
- -----
- If the weights are a function of the data, then the postestimation statistics
- such as fvalue and mse_model might not be correct, as the package does not
- yet support no-constant regression.
- """
-#FIXME: bug in fvalue or f_test for this example?
-#UPDATE the bug is in fvalue, f_test is correct vs. R
-#mse_model is calculated incorrectly according to R
-#same fixed used for WLS in the tests doesn't work
-#mse_resid is good
- def __init__(self, endog, exog, weights=1.):
- weights = np.array(weights)
- if weights.shape == ():
- self.weights = weights
- else:
- design_rows = exog.shape[0]
- if not(weights.shape[0] == design_rows and
- weights.size == design_rows) :
- raise ValueError(\
- 'Weights must be scalar or same length as design')
- self.weights = weights.reshape(design_rows)
- super(WLS, self).__init__(endog, exog)
-
- def whiten(self, X):
- """
- Whitener for WLS model, multiplies each column by sqrt(self.weights)
-
- Parameters
- ----------
- X : array-like
- Data to be whitened
-
- Returns
- -------
- sqrt(weights)*X
- """
- X = np.asarray(X)
- if X.ndim == 1:
- return X * np.sqrt(self.weights)
- elif X.ndim == 2:
- if np.shape(self.weights) == ():
- whitened = np.sqrt(self.weights)*X
- else:
- whitened = np.sqrt(self.weights)[:,None]*X
- return whitened
-
- def loglike(self, params):
- """
- Returns the value of the gaussian loglikelihood function at params.
-
- Given the whitened design matrix, the loglikelihood is evaluated
- at the parameter vector `params` for the dependent variable `Y`.
-
- Parameters
- ----------
- params : array-like
- The parameter estimates.
-
- Returns
- -------
- The value of the loglikelihood function for a WLS Model.
-
- Notes
- --------
- .. math:: -\\frac{n}{2}\\log\\left(Y-\\hat{Y}\\right)-\\frac{n}{2}\\left(1+\\log\\left(\\frac{2\\pi}{n}\\right)\\right)-\\frac{1}{2}log\\left(\\left|W\\right|\\right)
-
- where :math:`W` is a diagonal matrix
- """
- nobs2 = self.nobs / 2.0
- SSR = ss(self.wendog - np.dot(self.wexog,params))
- #SSR = ss(self.endog - np.dot(self.exog,params))
- llf = -np.log(SSR) * nobs2 # concentrated likelihood
- llf -= (1+np.log(np.pi/nobs2))*nobs2 # with constant
- if np.all(self.weights != 1): #FIXME: is this a robust-enough check?
- llf -= .5*np.log(np.multiply.reduce(1/self.weights)) # with weights
- return llf
-
-class OLS(WLS):
- """
- A simple ordinary least squares model.
-
- **Methods**
-
- inherited from regression.GLS
-
- Parameters
- ----------
- endog : array-like
- 1d vector of response/dependent variable
- exog: array-like
- Column ordered (observations in rows) design matrix.
-
-
- Attributes
- ----------
- weights : scalar
- Has an attribute weights = array(1.0) due to inheritance from WLS.
-
- See regression.GLS
-
- Examples
- --------
- >>> import numpy as np
- >>>
- >>> import scikits.statsmodels.api as sm
- >>>
- >>> Y = [1,3,4,5,2,3,4]
- >>> X = range(1,8) #[:,np.newaxis]
- >>> X = sm.add_constant(X)
- >>>
- >>> model = sm.OLS(Y,X)
- >>> results = model.fit()
- >>> # or results = model.results
- >>> results.params
- array([ 0.25 , 2.14285714])
- >>> results.tvales
- array([ 0.98019606, 1.87867287])
- >>> print results.t_test([0,1])
-
- >>> print results.f_test(np.identity(2))
-
-
- Notes
- -----
- OLS, as the other models, assumes that the design matrix contains a constant.
- """
-#TODO: change example to use datasets. This was the point of datasets!
- def __init__(self, endog, exog=None):
- super(OLS, self).__init__(endog, exog)
-
- def loglike(self, params):
- '''
- The likelihood function for the clasical OLS model.
-
- Parameters
- ----------
- params : array-like
- The coefficients with which to estimate the loglikelihood.
-
- Returns
- -------
- The concentrated likelihood function evaluated at params.
- '''
- nobs2 = self.nobs/2.
- dev = self.endog - np.dot(self.exog, params)
- return -nobs2*np.log(2*np.pi)-nobs2*np.log(1/(2*nobs2) *\
- np.dot(np.transpose(dev), (dev))) - nobs2
-
- def whiten(self, Y):
- """
- OLS model whitener does nothing: returns Y.
- """
- return Y
-
-class GLSAR(GLS):
- """
- A regression model with an AR(p) covariance structure.
-
- The linear autoregressive process of order p--AR(p)--is defined as:
- TODO
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> X = range(1,8)
- >>> X = sm.add_constant(X)
- >>> Y = [1,3,4,5,8,10,9]
- >>> model = sm.GLSAR(Y, X, rho=2)
- >>> for i in range(6):
- ... results = model.fit()
- ... print "AR coefficients:", model.rho
- ... rho, sigma = sm.regression.yule_walker(results.resid,
- ... order=model.order)
- ... model = sm.GLSAR(Y, X, rho)
- AR coefficients: [ 0. 0.]
- AR coefficients: [-0.52571491 -0.84496178]
- AR coefficients: [-0.620642 -0.88654567]
- AR coefficients: [-0.61887622 -0.88137957]
- AR coefficients: [-0.61894058 -0.88152761]
- AR coefficients: [-0.61893842 -0.88152263]
- >>> results.params
- array([ 1.58747943, -0.56145497])
- >>> results.tvalues
- array([ 30.796394 , -2.66543144])
- >>> print results.t_test([0,1])
-
- >>> import numpy as np
- >>> print(results.f_test(np.identity(2)))
-
-
- Or, equivalently
-
- >>> model2 = sm.GLSAR(Y, X, rho=2)
- >>> res = model2.iterative_fit(maxiter=6)
- >>> model2.rho
- array([-0.61893842, -0.88152263])
-
- Notes
- -----
- GLSAR is considered to be experimental.
- """
- def __init__(self, endog, exog=None, rho=1):
- if isinstance(rho, np.int):
- self.order = rho
- self.rho = np.zeros(self.order, np.float64)
- else:
- self.rho = np.squeeze(np.asarray(rho))
- if len(self.rho.shape) not in [0,1]:
- raise ValueError("AR parameters must be a scalar or a vector")
- if self.rho.shape == ():
- self.rho.shape = (1,)
- self.order = self.rho.shape[0]
- if exog is None:
- #JP this looks wrong, should be a regression on constant
- #results for rho estimate now identical to yule-walker on y
- #super(AR, self).__init__(endog, add_constant(endog))
- super(GLSAR, self).__init__(endog, np.ones((endog.shape[0],1)))
- else:
- super(GLSAR, self).__init__(endog, exog)
-
- def iterative_fit(self, maxiter=3):
- """
- Perform an iterative two-stage procedure to estimate a GLS model.
-
- The model is assumed to have AR(p) errors, AR(p) parameters and
- regression coefficients are estimated simultaneously.
-
- Parameters
- ----------
- maxiter : integer, optional
- the number of iterations
- """
-#TODO: update this after going through example.
- for i in range(maxiter-1):
- self.initialize()
- results = self.fit()
- self.rho, _ = yule_walker(results.resid,
- order=self.order, df=None)
- results = self.fit() #final estimate
- return results # add missing return
-
- def whiten(self, X):
- """
- Whiten a series of columns according to an AR(p)
- covariance structure.
-
- Parameters
- ----------
- X : array-like
- The data to be whitened
-
- Returns
- -------
- TODO
- """
-#TODO: notation for AR process
- X = np.asarray(X, np.float64)
- _X = X.copy()
- #dimension handling is not DRY
- # I think previous code worked for 2d because of single index rows in np
- if X.ndim == 1:
- for i in range(self.order):
- _X[(i+1):] = _X[(i+1):] - self.rho[i] * X[0:-(i+1)]
- return _X[self.order:]
- elif X.ndim == 2:
- for i in range(self.order):
- _X[(i+1):,:] = _X[(i+1):,:] - self.rho[i] * X[0:-(i+1),:]
- return _X[self.order:,:]
-
-def yule_walker(X, order=1, method="unbiased", df=None, inv=False, demean=True):
- """
- Estimate AR(p) parameters from a sequence X using Yule-Walker equation.
-
- Unbiased or maximum-likelihood estimator (mle)
-
- See, for example:
-
- http://en.wikipedia.org/wiki/Autoregressive_moving_average_model
-
- Parameters
- ----------
- X : array-like
- 1d array
- order : integer, optional
- The order of the autoregressive process. Default is 1.
- method : string, optional
- Method can be "unbiased" or "mle" and this determines denominator in
- estimate of autocorrelation function (ACF) at lag k. If "mle", the
- denominator is n=X.shape[0], if "unbiased" the denominator is n-k.
- The default is unbiased.
- df : integer, optional
- Specifies the degrees of freedom. If `df` is supplied, then it is assumed
- the X has `df` degrees of freedom rather than `n`. Default is None.
- inv : bool
- If inv is True the inverse of R is also returned. Default is False.
- demean : bool
- True, the mean is subtracted from `X` before estimation.
-
- Returns
- -------
- rho
- The autoregressive coefficients
- sigma
- TODO
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> from scikits.statsmodels.datasets.sunspots import load
- >>> data = load()
- >>> rho, sigma = sm.regression.yule_walker(data.endog, \
- order=4, method="mle")
-
- >>> rho
- array([ 1.28310031, -0.45240924, -0.20770299, 0.04794365])
- >>> sigma
- 16.808022730464351
-
- """
-#TODO: define R better, look back at notes and technical notes on YW.
-#First link here is useful
-#http://www-stat.wharton.upenn.edu/~steele/Courses/956/ResourceDetails/YuleWalkerAndMore.htm
- method = str(method).lower()
- if method not in ["unbiased", "mle"]:
- raise ValueError("ACF estimation method must be 'unbiased' or 'MLE'")
- X = np.array(X)
- if demean:
- X -= X.mean() # automatically demean's X
- n = df or X.shape[0]
-
- if method == "unbiased": # this is df_resid ie., n - p
- denom = lambda k: n - k
- else:
- denom = lambda k: n
- if X.ndim > 1 and X.shape[1] != 1:
- raise ValueError("expecting a vector to estimate AR parameters")
- r = np.zeros(order+1, np.float64)
- r[0] = (X**2).sum() / denom(0)
- for k in range(1,order+1):
- r[k] = (X[0:-k]*X[k:]).sum() / denom(k)
- R = toeplitz(r[:-1])
-
- rho = np.linalg.solve(R, r[1:])
- sigmasq = r[0] - (r[1:]*rho).sum()
- if inv == True:
- return rho, np.sqrt(sigmasq), np.linalg.inv(R)
- else:
- return rho, np.sqrt(sigmasq)
-
-class RegressionResults(base.LikelihoodModelResults):
- """
- This class summarizes the fit of a linear regression model.
-
- It handles the output of contrasts, estimates of covariance, etc.
-
- Returns
- -------
- **Attributes**
-
- aic
- Aikake's information criteria :math:`-2llf + 2(df_model+1)`
- bic
- Bayes' information criteria :math:`-2llf + \log(n)(df_model+1)`
- bse
- The standard errors of the parameter estimates.
- pinv_wexog
- See specific model class docstring
- centered_tss
- The total sum of squares centered about the mean
- cov_HC0
- See HC0_se below. Only available after calling HC0_se.
- cov_HC1
- See HC1_se below. Only available after calling HC1_se.
- cov_HC2
- See HC2_se below. Only available after calling HC2_se.
- cov_HC3
- See HC3_se below. Only available after calling HC3_se.
- df_model :
- Model degress of freedom. The number of regressors p - 1 for the
- constant Note that df_model does not include the constant even though
- the design does. The design is always assumed to have a constant
- in calculating results for now.
- df_resid
- Residual degrees of freedom. n - p. Note that the constant *is*
- included in calculating the residual degrees of freedom.
- ess
- Explained sum of squares. The centered total sum of squares minus
- the sum of squared residuals.
- fvalue
- F-statistic of the fully specified model. Calculated as the mean
- squared error of the model divided by the mean squared error of the
- residuals.
- f_pvalue
- p-value of the F-statistic
- fittedvalues
- The predicted the values for the original (unwhitened) design.
- het_scale
- Only available if HC#_se is called. See HC#_se for more information.
- HC0_se
- White's (1980) heteroskedasticity robust standard errors.
- Defined as sqrt(diag(X.T X)^(-1)X.T diag(e_i^(2)) X(X.T X)^(-1)
- where e_i = resid[i]
- HC0_se is a property. It is not evaluated until it is called.
- When it is called the RegressionResults instance will then have
- another attribute cov_HC0, which is the full heteroskedasticity
- consistent covariance matrix and also `het_scale`, which is in
- this case just resid**2. HCCM matrices are only appropriate for OLS.
- HC1_se
- MacKinnon and White's (1985) alternative heteroskedasticity robust
- standard errors.
- Defined as sqrt(diag(n/(n-p)*HC_0)
- HC1_se is a property. It is not evaluated until it is called.
- When it is called the RegressionResults instance will then have
- another attribute cov_HC1, which is the full HCCM and also `het_scale`,
- which is in this case n/(n-p)*resid**2. HCCM matrices are only
- appropriate for OLS.
- HC2_se
- MacKinnon and White's (1985) alternative heteroskedasticity robust
- standard errors.
- Defined as (X.T X)^(-1)X.T diag(e_i^(2)/(1-h_ii)) X(X.T X)^(-1)
- where h_ii = x_i(X.T X)^(-1)x_i.T
- HC2_se is a property. It is not evaluated until it is called.
- When it is called the RegressionResults instance will then have
- another attribute cov_HC2, which is the full HCCM and also `het_scale`,
- which is in this case is resid^(2)/(1-h_ii). HCCM matrices are only
- appropriate for OLS.
- HC3_se
- MacKinnon and White's (1985) alternative heteroskedasticity robust
- standard errors.
- Defined as (X.T X)^(-1)X.T diag(e_i^(2)/(1-h_ii)^(2)) X(X.T X)^(-1)
- where h_ii = x_i(X.T X)^(-1)x_i.T
- HC3_se is a property. It is not evaluated until it is called.
- When it is called the RegressionResults instance will then have
- another attribute cov_HC3, which is the full HCCM and also `het_scale`,
- which is in this case is resid^(2)/(1-h_ii)^(2). HCCM matrices are
- only appropriate for OLS.
- model
- A pointer to the model instance that called fit() or results.
- mse_model
- Mean squared error the model. This is the explained sum of squares
- divided by the model degrees of freedom.
- mse_resid
- Mean squared error of the residuals. The sum of squared residuals
- divided by the residual degrees of freedom.
- mse_total
- Total mean squared error. Defined as the uncentered total sum of
- squares divided by n the number of observations.
- nobs
- Number of observations n.
- normalized_cov_params
- See specific model class docstring
- params
- The linear coefficients that minimize the least squares criterion. This
- is usually called Beta for the classical linear model.
- pvalues
- The two-tailed p values for the t-stats of the params.
- resid
- The residuals of the model.
- rsquared
- R-squared of a model with an intercept. This is defined here as
- 1 - `ssr`/`centered_tss`
- rsquared_adj
- Adjusted R-squared. This is defined here as
- 1 - (n-1)/(n-p)*(1-`rsquared`)
- scale
- A scale factor for the covariance matrix.
- Default value is ssr/(n-p). Note that the square root of `scale` is
- often called the standard error of the regression.
- ssr
- Sum of squared (whitened) residuals.
- uncentered_tss
- Uncentered sum of squares. Sum of the squared values of the
- (whitened) endogenous response variable.
- wresid
- The residuals of the transformed/whitened regressand and regressor(s)
- """
-
- # For robust covariance matrix properties
- _HC0_se = None
- _HC1_se = None
- _HC2_se = None
- _HC3_se = None
-
- _cache = {} # needs to be a class attribute for scale setter?
-
- def __init__(self, model, params, normalized_cov_params=None, scale=1.):
- super(RegressionResults, self).__init__(model, params,
- normalized_cov_params,
- scale)
- self._cache = resettable_cache()
-
- def __str__(self):
- self.summary()
-
-## def __repr__(self):
-## print self.summary()
-
- @cache_readonly
- def df_resid(self):
- return self.model.df_resid
-
- @cache_readonly
- def df_model(self):
- return self.model.df_model
-
- @cache_readonly
- def nobs(self):
- return float(self.model.wexog.shape[0])
-
- @cache_readonly
- def fittedvalues(self):
- return self.model.predict(self.params, self.model.exog)
-
- @cache_readonly
- def wresid(self):
- return self.model.wendog - self.model.predict(self.params,
- self.model.wexog)
-
- @cache_readonly
- def resid(self):
- return self.model.endog - self.model.predict(self.params,
- self.model.exog)
-
-# def _getscale(self):
-# val = self._cache.get("scale", None)
-# if val is None:
-# val = ss(self.wresid) / self.df_resid
-# self._cache["scale"] = val
-# return val
-
-# def _setscale(self, val):
-# self._cache.setdefault("scale", val)
-
-# scale = property(_getscale, _setscale)
-
-#TODO: fix writable example
- @cache_writable()
- def scale(self):
- wresid = self.wresid
- return np.dot(wresid, wresid) / self.df_resid
-
- @cache_readonly
- def ssr(self):
- wresid = self.wresid
- return np.dot(wresid, wresid)
-
- @cache_readonly
- def centered_tss(self):
- centered_wendog = self.model.wendog - np.mean(self.model.wendog)
- return np.dot(centered_wendog, centered_wendog)
-
- @cache_readonly
- def uncentered_tss(self):
- wendog = self.model.wendog
- return np.dot(wendog, wendog)
-
- @cache_readonly
- def ess(self):
- return self.centered_tss - self.ssr
-
-# Centered R2 for models with intercepts
-# have a look in test_regression.test_wls to see
-# how to compute these stats for a model without intercept,
-# and when the weights are a (linear?) function of the data...
- @cache_readonly
- def rsquared(self):
- return 1 - self.ssr/self.centered_tss
-
- @cache_readonly
- def rsquared_adj(self):
- return 1 - (self.nobs - 1)/self.df_resid * (1 - self.rsquared)
-
- @cache_readonly
- def mse_model(self):
- return self.ess/self.df_model
-
- @cache_readonly
- def mse_resid(self):
- return self.ssr/self.df_resid
-
- @cache_readonly
- def mse_total(self):
- return self.uncentered_tss/self.nobs
-
- @cache_readonly
- def fvalue(self):
- return self.mse_model/self.mse_resid
-
- @cache_readonly
- def f_pvalue(self):
- return stats.f.sf(self.fvalue, self.df_model, self.df_resid)
-
- @cache_readonly
- def bse(self):
- return np.sqrt(np.diag(self.cov_params()))
-
- @cache_readonly
- def pvalues(self):
- return stats.t.sf(np.abs(self.tvalues), self.df_resid)*2
-
- @cache_readonly
- def aic(self):
- return -2 * self.llf + 2 * (self.df_model + 1)
-
- @cache_readonly
- def bic(self):
- return -2 * self.llf + np.log(self.nobs) * (self.df_model + 1)
-
-# Centered R2 for models with intercepts
-# have a look in test_regression.test_wls to see
-# how to compute these stats for a model without intercept,
-# and when the weights are a (linear?) function of the data...
-
-#TODO: make these properties reset bse
- def _HCCM(self, scale):
- H = np.dot(self.model.pinv_wexog,
- scale[:,None]*self.model.pinv_wexog.T)
- return H
-
- @property
- def HC0_se(self):
- """
- See statsmodels.RegressionResults
- """
- if self._HC0_se is None:
- self.het_scale = self.resid**2 # or whitened residuals? only OLS?
- self.cov_HC0 = self._HCCM(self.het_scale)
- self._HC0_se = np.sqrt(np.diag(self.cov_HC0))
- return self._HC0_se
-
- @property
- def HC1_se(self):
- """
- See statsmodels.RegressionResults
- """
- if self._HC1_se is None:
- self.het_scale = self.nobs/(self.df_resid)*(self.resid**2)
- self.cov_HC1 = self._HCCM(self.het_scale)
- self._HC1_se = np.sqrt(np.diag(self.cov_HC1))
- return self._HC1_se
-
- @property
- def HC2_se(self):
- """
- See statsmodels.RegressionResults
- """
- if self._HC2_se is None:
- # probably could be optimized
- h = np.diag(chain_dot(self.model.exog,
- self.normalized_cov_params,
- self.model.exog.T))
- self.het_scale = self.resid**2/(1-h)
- self.cov_HC2 = self._HCCM(self.het_scale)
- self._HC2_se = np.sqrt(np.diag(self.cov_HC2))
- return self._HC2_se
-
- @property
- def HC3_se(self):
- """
- See statsmodels.RegressionResults
- """
- if self._HC3_se is None:
- # above probably could be optimized to only calc the diag
- h = np.diag(chain_dot(self.model.exog,
- self.normalized_cov_params,
- self.model.exog.T))
- self.het_scale=(self.resid/(1-h))**2
- self.cov_HC3 = self._HCCM(self.het_scale)
- self._HC3_se = np.sqrt(np.diag(self.cov_HC3))
- return self._HC3_se
-
-#TODO: this needs a test
- def norm_resid(self):
- """
- Residuals, normalized to have unit length and unit variance.
-
- Returns
- -------
- An array wresid/sqrt(scale)
-
- Notes
- -----
- This method is untested
- """
- if not hasattr(self, 'resid'):
- raise ValueError('need normalized residuals to estimate standard '
- 'deviation')
- return self.wresid * recipr(np.sqrt(self.scale))
-
- def compare_f_test(self, restricted):
- '''use F test to test whether restricted model is correct
-
- Parameters
- ----------
- restricted : Result instance
- The restricted model is assumed to be nested in the current
- model. The result instance of the restricted model is required to
- have two attributes, residual sum of squares, `ssr`, residual
- degrees of freedom, `df_resid`.
-
- Returns
- -------
- f_value : float
- test statistic, F distributed
- p_value : float
- p-value of the test statistic
- df_diff : int
- degrees of freedom of the restriction, i.e. difference in df between
- models
-
- Notes
- -----
- See mailing list discussion October 17,
-
- '''
- ssr_full = self.ssr
- ssr_restr = restricted.ssr
- df_full = self.df_resid
- df_restr = restricted.df_resid
-
- df_diff = (df_restr - df_full)
- f_value = (ssr_restr - ssr_full) / df_diff / ssr_full * df_full
- p_value = stats.f.sf(f_value, df_diff, df_full)
- return f_value, p_value, df_diff
-
- def compare_lr_test(self, restricted):
- '''
- Likelihood ratio test to test whether restricted model is correct
-
- Parameters
- ----------
- restricted : Result instance
- The restricted model is assumed to be nested in the current model.
- The result instance of the restricted model is required to have two
- attributes, residual sum of squares, `ssr`, residual degrees of
- freedom, `df_resid`.
-
- Returns
- -------
- lr_stat : float
- likelihood ratio, chisquare distributed with df_diff degrees of
- freedom
- p_value : float
- p-value of the test statistic
- df_diff : int
- degrees of freedom of the restriction, i.e. difference in df between
- models
-
- Notes
- -----
-
- .. math:: D=-2\\log\\left(\\frac{\\mathcal{L}_{null}}
- {\\mathcal{L}_{alternative}}\\right)
-
- where :math:`\mathcal{L}` is the likelihood of the model. With :math:`D`
- distributed as chisquare with df equal to difference in number of
- parameters or equivalently difference in residual degrees of freedom
-
- TODO: put into separate function, needs tests
- '''
-# See mailing list discussion October 17,
- llf_full = self.llf
- llf_restr = restricted.llf
- df_full = self.df_resid
- df_restr = restricted.df_resid
-
- lrdf = (df_restr - df_full)
- lrstat = -2*(llf_restr - llf_full)
- lr_pvalue = stats.chi2.sf(lrstat, lrdf)
-
- return lrstat, lr_pvalue, lrdf
-
-
- def summary(self, yname=None, xname=None, title=None, alpha=.05):
- """Summarize the Regression Results
-
- Parameters
- -----------
- yname : string, optional
- Default is `y`
- xname : list of strings, optional
- Default is `var_##` for ## in p the number of regressors
- title : string, optional
- Title for the top table. If not None, then this replaces the
- default title
- alpha : float
- significance level for the confidence intervals
-
- Returns
- -------
- smry : Summary instance
- this holds the summary tables and text, which can be printed or
- converted to various output formats.
-
- See Also
- --------
- scikits.statsmodels.iolib.summary.Summary : class to hold summary
- results
-
- """
-
- #TODO: import where we need it (for now), add as cached attributes
- from scikits.statsmodels.stats.stattools import (jarque_bera,
- omni_normtest, durbin_watson)
- jb, jbpv, skew, kurtosis = jarque_bera(self.wresid)
- omni, omnipv = omni_normtest(self.wresid)
-
- #TODO: reuse condno from somewhere else ?
- #condno = np.linalg.cond(np.dot(self.wexog.T, self.wexog))
- wexog = self.model.wexog
- eigvals = np.linalg.linalg.eigvalsh(np.dot(wexog.T, wexog))
- eigvals = np.sort(eigvals) #in increasing order
- condno = eigvals[-1]/eigvals[0]
-
- self.diagn = dict(jb=jb, jbpv=jbpv, skew=skew, kurtosis=kurtosis,
- omni=omni, omnipv=omnipv, condno=condno,
- mineigval=eigvals[0])
-
-# #TODO not used yet
-# diagn_left_header = ['Models stats']
-# diagn_right_header = ['Residual stats']
-
- #TODO: requiring list/iterable is a bit annoying
- #need more control over formatting
- #TODO: default don't work if it's not identically spelled
-
- top_left = [('Dep. Variable:', None),
- ('Model:', None),
- ('Method:', ['Least Squares']),
- ('Date:', None),
- ('Time:', None),
- ('No. Observations:', None),
- ('Df Residuals:', None), #[self.df_resid]), #TODO: spelling
- ('Df Model:', None), #[self.df_model])
- ]
-
- top_right = [('R-squared:', ["%#8.3f" % self.rsquared]),
- ('Adj. R-squared:', ["%#8.3f" % self.rsquared_adj]),
- ('F-statistic:', ["%#8.4g" % self.fvalue] ),
- ('Prob (F-statistic):', ["%#6.3g" % self.f_pvalue]),
- ('Log-Likelihood:', None), #["%#6.4g" % self.llf]),
- ('AIC:', ["%#8.4g" % self.aic]),
- ('BIC:', ["%#8.4g" % self.bic])
- ]
-
- diagn_left = [('Omnibus:', ["%#6.3f" % omni]),
- ('Prob(Omnibus):', ["%#6.3f" % omnipv]),
- ('Skew:', ["%#6.3f" % skew]),
- ('Kurtosis:', ["%#6.3f" % kurtosis])
- ]
-
- diagn_right = [('Durbin-Watson:', ["%#8.3f" % durbin_watson(self.wresid)]),
- ('Jarque-Bera (JB):', ["%#8.3f" % jb]),
- ('Prob(JB):', ["%#8.3g" % jbpv]),
- ('Cond. No.', ["%#8.3g" % condno])
- ]
-
-
- if title is None:
- title = self.model.__class__.__name__ + ' ' + "Regression Results"
-
- #create summary table instance
- from scikits.statsmodels.iolib.summary import Summary
- smry = Summary()
- smry.add_table_2cols(self, gleft=top_left, gright=top_right,
- yname=yname, xname=xname, title=title)
- smry.add_table_params(self, yname=yname, xname=xname, alpha=.05,
- use_t=True)
-
- smry.add_table_2cols(self, gleft=diagn_left, gright=diagn_right,
- yname=yname, xname=xname,
- title="")
-
- #add warnings/notes, added to text format only
- etext =[]
- if eigvals[0] < 1e-10:
- wstr = \
-'''The smallest eigenvalue is %6.3g. This might indicate that there are
-strong multicollinearity problems or that the design matrix is singular.''' \
- % eigvals[0]
- etext.append(wstr)
- elif condno > 1000: #TODO: what is recommended
- wstr = \
-'''The condition number is large, %6.3g. This might indicate that there are
-strong multicollinearity or other numerical problems.''' % condno
- etext.append(wstr)
-
- if etext:
- smry.add_extra_txt(etext)
-
- return smry
-
-# top = summary_top(self, gleft=topleft, gright=diagn_left, #[],
-# yname=yname, xname=xname,
-# title=self.model.__class__.__name__ + ' ' +
-# "Regression Results")
-# par = summary_params(self, yname=yname, xname=xname, alpha=.05,
-# use_t=False)
-#
-# diagn = summary_top(self, gleft=diagn_left, gright=diagn_right,
-# yname=yname, xname=xname,
-# title="Linear Model")
-#
-# return summary_return([top, par, diagn], return_fmt=return_fmt)
-
-
- def summary_old(self, yname=None, xname=None, returns='text'):
- """returns a string that summarizes the regression results
-
- Parameters
- -----------
- yname : string, optional
- Default is `Y`
- xname : list of strings, optional
- Default is `X.#` for # in p the number of regressors
-
- Returns
- -------
- String summarizing the fit of a linear model.
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.longley.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> ols_results = sm.OLS(data.endog, data.exog).fit()
- >>> print ols_results.summary()
- ...
-
- Notes
- -----
- All residual statistics are calculated on whitened residuals.
- """
- import time
- from scikits.statsmodels.iolib.table import SimpleTable
- from scikits.statsmodels.stats.stattools import (jarque_bera,
- omni_normtest, durbin_watson)
-
- if yname is None:
- yname = self.model.endog_names
- if xname is None:
- xname = self.model.exog_names
- modeltype = self.model.__class__.__name__
-
- llf, aic, bic = self.llf, self.aic, self.bic
- JB, JBpv, skew, kurtosis = jarque_bera(self.wresid)
- omni, omnipv = omni_normtest(self.wresid)
-
- t = time.localtime()
-
- part1_fmt = dict(
- data_fmts = ["%s"],
- empty_cell = '',
- colwidths = 15,
- colsep=' ',
- row_pre = '| ',
- row_post = '|',
- table_dec_above='=',
- table_dec_below='',
- header_dec_below=None,
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = "r",
- stubs_align = "l",
- fmt = 'txt'
- )
- part2_fmt = dict(
- #data_fmts = ["%#12.6g","%#12.6g","%#10.4g","%#5.4g"],
- data_fmts = ["%#10.4g","%#10.4g","%#6.4f","%#6.4f"],
- #data_fmts = ["%#15.4F","%#15.4F","%#15.4F","%#14.4G"],
- empty_cell = '',
- colwidths = 14,
- colsep=' ',
- row_pre = '| ',
- row_post = ' |',
- table_dec_above='=',
- table_dec_below='=',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
- part3_fmt = dict(
- #data_fmts = ["%#12.6g","%#12.6g","%#10.4g","%#5.4g"],
- data_fmts = ["%#10.4g","%#10.4g","%#10.4g","%#6.4g"],
- empty_cell = '',
- colwidths = 15,
- colsep=' ',
- row_pre = '| ',
- row_post = ' |',
- table_dec_above=None,
- table_dec_below='-',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
-
- # Print the first part of the summary table
- part1data = [[yname],
- [modeltype],
- ['Least Squares'],
- [time.strftime("%a, %d %b %Y",t)],
- [time.strftime("%H:%M:%S",t)],
- [self.nobs],
- [self.df_resid],
- [self.df_model]]
- part1header = None
- part1title = 'Summary of Regression Results'
- part1stubs = ('Dependent Variable:',
- 'Model:',
- 'Method:',
- 'Date:',
- 'Time:',
- '# obs:',
- 'Df residuals:',
- 'Df model:')
- part1 = SimpleTable(part1data,
- part1header,
- part1stubs,
- title=part1title,
- txt_fmt = part1_fmt)
-
- ######## summary Part 2 #######
-
- part2data = zip([self.params[i] for i in range(len(xname))],
- [self.bse[i] for i in range(len(xname))],
- [self.tvalues[i] for i in range(len(xname))],
- [self.pvalues[i] for i in range(len(xname))])
- part2header = ('coefficient', 'std. error', 't-statistic', 'prob.')
- part2stubs = xname
- #dfmt={'data_fmt':["%#12.6g","%#12.6g","%#10.4g","%#5.4g"]}
- part2 = SimpleTable(part2data,
- part2header,
- part2stubs,
- title=None,
- txt_fmt = part2_fmt)
-
- #self.summary2 = part2
- ######## summary Part 3 #######
-
- part3Lheader = ['Models stats']
- part3Rheader = ['Residual stats']
- part3Lstubs = ('R-squared:',
- 'Adjusted R-squared:',
- 'F-statistic:',
- 'Prob (F-statistic):',
- 'Log likelihood:',
- 'AIC criterion:',
- 'BIC criterion:',)
- part3Rstubs = ('Durbin-Watson:',
- 'Omnibus:',
- 'Prob(Omnibus):',
- 'JB:',
- 'Prob(JB):',
- 'Skew:',
- 'Kurtosis:')
- part3Ldata = [[self.rsquared], [self.rsquared_adj],
- [self.fvalue],
- [self.f_pvalue],
- [llf],
- [aic],
- [bic]]
- part3Rdata = [[durbin_watson(self.wresid)],
- [omni],
- [omnipv],
- [JB],
- [JBpv],
- [skew],
- [kurtosis]]
- part3L = SimpleTable(part3Ldata, part3Lheader, part3Lstubs,
- txt_fmt = part3_fmt)
- part3R = SimpleTable(part3Rdata, part3Rheader, part3Rstubs,
- txt_fmt = part3_fmt)
- part3L.extend_right(part3R)
- ######## Return Summary Tables ########
- # join table parts then print
- if returns == 'text':
- return str(part1) + '\n' + str(part2) + '\n' + str(part3L)
- elif returns == 'tables':
- return [part1, part2 ,part3L]
- elif returns == 'csv':
- return part1.as_csv() + '\n' + part2.as_csv() + '\n' + \
- part3L.as_csv()
- elif returns == 'latex':
- print('not available yet')
- elif returns == 'html':
- print('not available yet')
-
-class RegressionResultsWrapper(wrap.ResultsWrapper):
-
- _attrs = {
- 'chisq' : 'columns',
- 'sresid' : 'rows',
- 'weights' : 'rows',
- 'wresid' : 'rows',
- 'bcov_unscaled' : 'cov',
- 'bcov_scaled' : 'cov',
- 'HC0_se' : 'columns',
- 'HC1_se' : 'columns',
- 'HC2_se' : 'columns',
- 'HC3_se' : 'columns'
- }
-
- _wrap_attrs = wrap.union_dicts(base.LikelihoodResultsWrapper._attrs,
- _attrs)
-
- _methods = {
- 'norm_resid' : 'rows',
- }
-
- _wrap_methods = wrap.union_dicts(
- base.LikelihoodResultsWrapper._wrap_methods,
- _methods)
-wrap.populate_wrapper(RegressionResultsWrapper,
- RegressionResults)
-
-
-if __name__ == "__main__":
- import scikits.statsmodels.api as sm
- data = sm.datasets.longley.load()
- data.exog = add_constant(data.exog)
- ols_results = OLS(data.endog, data.exog).fit() #results
- gls_results = GLS(data.endog, data.exog).fit() #results
- print(ols_results.summary())
- tables = ols_results.summary(returns='tables')
- csv = ols_results.summary(returns='csv')
-"""
- Summary of Regression Results
-=======================================
-| Dependent Variable: ['y']|
-| Model: OLS|
-| Method: Least Squares|
-| Date: Tue, 29 Jun 2010|
-| Time: 22:32:21|
-| # obs: 16.0|
-| Df residuals: 9.0|
-| Df model: 6.0|
-===========================================================================
-| coefficient std. error t-statistic prob.|
----------------------------------------------------------------------------
-| x1 15.0619 84.9149 0.1774 0.8631|
-| x2 -0.0358 0.0335 -1.0695 0.3127|
-| x3 -2.0202 0.4884 -4.1364 0.002535|
-| x4 -1.0332 0.2143 -4.8220 0.0009444|
-| x5 -0.0511 0.2261 -0.2261 0.8262|
-| x6 1829.1515 455.4785 4.0159 0.003037|
-| const -3482258.6346 890420.3836 -3.9108 0.003560|
-===========================================================================
-| Models stats Residual stats |
----------------------------------------------------------------------------
-| R-squared: 0.995479 Durbin-Watson: 2.55949 |
-| Adjusted R-squared: 0.992465 Omnibus: 0.748615 |
-| F-statistic: 330.285 Prob(Omnibus): 0.687765 |
-| Prob (F-statistic): 4.98403e-10 JB: 0.352773 |
-| Log likelihood: -109.617 Prob(JB): 0.838294 |
-| AIC criterion: 233.235 Skew: 0.419984 |
-| BIC criterion: 238.643 Kurtosis: 2.43373 |
----------------------------------------------------------------------------
-"""
diff --git a/statsmodels/scikits/statsmodels/regression/tests/__init__.py b/statsmodels/scikits/statsmodels/regression/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/regression/tests/results/__init__.py b/statsmodels/scikits/statsmodels/regression/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/regression/tests/results/results_regression.py b/statsmodels/scikits/statsmodels/regression/tests/results/results_regression.py
deleted file mode 100644
index b899d26..0000000
--- a/statsmodels/scikits/statsmodels/regression/tests/results/results_regression.py
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-Hard-coded results for test_regression
-"""
-
-### REGRESSION MODEL RESULTS : OLS, GLS, WLS, AR###
-
-import numpy as np
-
-class Longley(object):
- '''
- The results for the Longley dataset were obtained from NIST
-
- http://www.itl.nist.gov/div898/strd/general/dataarchive.html
-
- Other results were obtained from Stata
- '''
- def __init__(self):
- self.params = ( 15.0618722713733, -0.358191792925910E-01,
- -2.02022980381683, -1.03322686717359, -0.511041056535807E-01,
- 1829.15146461355, -3482258.63459582)
- self.bse = (84.9149257747669, 0.334910077722432E-01,
- 0.488399681651699, 0.214274163161675, 0.226073200069370,
- 455.478499142212, 890420.383607373)
- self.scale = 92936.0061673238
- self.rsquared = 0.995479004577296
- self.rsquared_adj = 0.99246501
- self.df_model = 6
- self.df_resid = 9
- self.ess = 184172401.944494
- self.ssr = 836424.055505915
- self.mse_model = 30695400.3240823
- self.mse_resid = 92936.0061673238
- self.fvalue = 330.285339234588
- self.llf = -109.6174
- self.aic = 233.2349
- self.bic = 238.643
- self.pvalues = np.array([ 0.86314083, 0.31268106, 0.00253509,
- 0.00094437, 0.8262118 , 0.0030368 , 0.0035604 ])
-#pvalues from rmodelwrap
- self.resid = np.array((267.34003, -94.01394, 46.28717, -410.11462,
- 309.71459, -249.31122, -164.04896, -13.18036, 14.30477, 455.39409,
- -17.26893, -39.05504, -155.54997, -85.67131, 341.93151,
- -206.75783))
-
- def conf_int(self): # a method to be consistent with sm
- return [(-177.0291,207.1524), (-.111581,.0399428),(-3.125065,
- -.9153928),(-1.517948,-.5485049),(-.5625173,.4603083),
- (798.7873,2859.515),(-5496529,-1467987)]
-
-
- HC0_se=(51.22035, 0.02458, 0.38324, 0.14625, 0.15821,
- 428.38438, 832212)
- HC1_se=(68.29380, 0.03277, 0.51099, 0.19499, 0.21094,
- 571.17917, 1109615)
- HC2_se=(67.49208, 0.03653, 0.55334, 0.20522, 0.22324,
- 617.59295, 1202370)
- HC3_se=(91.11939, 0.05562, 0.82213, 0.29879, 0.32491,
- 922.80784, 1799477)
-
-class LongleyGls(object):
- '''
- The following results were obtained from running the test script with R.
- '''
- def __init__(self):
- self.params = (6.73894832e-02, -4.74273904e-01, 9.48988771e+04)
- self.bse = (1.07033903e-02, 1.53385472e-01, 1.39447723e+04)
- self.llf = -121.4294962954981
- self.fittedvalues = [59651.8255, 60860.1385, 60226.5336, 61467.1268,
- 63914.0846, 64561.9553, 64935.9028, 64249.1684, 66010.0426,
- 66834.7630, 67612.9309, 67018.8998, 68918.7758, 69310.1280,
- 69181.4207, 70598.8734]
- self.resid = [671.174465, 261.861502, -55.533603, -280.126803,
- -693.084618, -922.955349, 53.097212, -488.168351, 8.957367,
- 1022.236970, 556.069099, -505.899787, -263.775842, 253.871965,
- 149.579309, -47.873374]
- self.scale = 542.443043098**2
- self.tvalues = [6.296088, -3.092039, 6.805337]
- self.pvalues = [2.761673e-05, 8.577197e-03, 1.252284e-05]
- self.bic = 253.118790021
- self.aic = 250.858992591
diff --git a/statsmodels/scikits/statsmodels/regression/tests/test_regression.py b/statsmodels/scikits/statsmodels/regression/tests/test_regression.py
deleted file mode 100644
index 82af57a..0000000
--- a/statsmodels/scikits/statsmodels/regression/tests/test_regression.py
+++ /dev/null
@@ -1,608 +0,0 @@
-"""
-Test functions for models.regression
-"""
-import numpy as np
-from numpy.testing import *
-from scipy.linalg import toeplitz
-from scikits.statsmodels.tools.tools import add_constant
-from scikits.statsmodels.regression.linear_model import (OLS, GLSAR, WLS, GLS,
- yule_walker)
-from scikits.statsmodels.datasets import longley
-#from check_for_rpy import skip_rpy
-from nose import SkipTest
-from scipy.stats import t as student_t
-
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-DECIMAL_7 = 7
-DECIMAL_0 = 0
-#skipR = skip_rpy()
-#if not skipR:
-# from rpy import r, RPyRException
-# from rmodelwrap import RModel
-
-
-class CheckRegressionResults(object):
- '''
- res2 contains results from Rmodelwrap or were obtained from a statistical
- packages such as R, Stata, or SAS and were written to model_results
- '''
-
- decimal_params = DECIMAL_4
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params,
- self.decimal_params)
-
- decimal_standarderrors = DECIMAL_4
- def test_standarderrors(self):
- assert_almost_equal(self.res1.bse,self.res2.bse,
- self.decimal_standarderrors)
-
- decimal_confidenceintervals = DECIMAL_4
- def test_confidenceintervals(self):
-# if hasattr(self.res2, 'conf_int'):
-# self.check_confidenceintervals(self.res1.conf_int(),
-# self.res2.conf_int)
-# else:
-# raise SkipTest, "Results from Rpy"
-#NOTE: stata rounds residuals (at least) to sig digits so approx_equal
- conf1 = self.res1.conf_int()
- conf2 = self.res2.conf_int()
- for i in range(len(conf1)):
- assert_approx_equal(conf1[i][0], conf2[i][0],
- self.decimal_confidenceintervals)
- assert_approx_equal(conf1[i][1], conf2[i][1],
- self.decimal_confidenceintervals)
-
- decimal_conf_int_subset = DECIMAL_4
- def test_conf_int_subset(self):
- if len(self.res1.params) > 1:
- ci1 = self.res1.conf_int(cols=(1,2))
- ci2 = self.res1.conf_int()[1:3]
- assert_almost_equal(ci1, ci2, self.decimal_conf_int_subset)
- else:
- pass
-
- decimal_scale = DECIMAL_4
- def test_scale(self):
- assert_almost_equal(self.res1.scale, self.res2.scale,
- self.decimal_scale)
-
- decimal_rsquared = DECIMAL_4
- def test_rsquared(self):
- assert_almost_equal(self.res1.rsquared, self.res2.rsquared,
- self.decimal_rsquared)
-
- decimal_rsquared_adj = DECIMAL_4
- def test_rsquared_adj(self):
- assert_almost_equal(self.res1.rsquared_adj, self.res2.rsquared_adj,
- self.decimal_rsquared_adj)
-
- def test_degrees(self):
- assert_equal(self.res1.model.df_model, self.res2.df_model)
- assert_equal(self.res1.model.df_resid, self.res2.df_resid)
-
- decimal_ess = DECIMAL_4
- def test_ess(self):
- """
- Explained Sum of Squares
- """
- assert_almost_equal(self.res1.ess, self.res2.ess,
- self.decimal_ess)
-
- decimal_ssr = DECIMAL_4
- def test_sumof_squaredresids(self):
- assert_almost_equal(self.res1.ssr, self.res2.ssr, self.decimal_ssr)
-
- decimal_mse_resid = DECIMAL_4
- def test_mse_resid(self):
- """
- Mean squared error of residuals
- """
- assert_almost_equal(self.res1.mse_model, self.res2.mse_model,
- self.decimal_mse_resid)
-
- decimal_mse_model = DECIMAL_4
- def test_mse_model(self):
- assert_almost_equal(self.res1.mse_resid, self.res2.mse_resid,
- self.decimal_mse_model)
-
- decimal_fvalue = DECIMAL_4
- def test_fvalue(self):
- #didn't change this, not sure it should complain -inf not equal -inf
- #if not (np.isinf(self.res1.fvalue) and np.isinf(self.res2.fvalue)):
- assert_almost_equal(self.res1.fvalue, self.res2.fvalue,
- self.decimal_fvalue)
-
- decimal_loglike = DECIMAL_4
- def test_loglike(self):
- assert_almost_equal(self.res1.llf, self.res2.llf, self.decimal_loglike)
-
- decimal_aic = DECIMAL_4
- def test_aic(self):
- assert_almost_equal(self.res1.aic, self.res2.aic, self.decimal_aic)
-
- decimal_bic = DECIMAL_4
- def test_bic(self):
- assert_almost_equal(self.res1.bic, self.res2.bic, self.decimal_bic)
-
- decimal_pvalues = DECIMAL_4
- def test_pvalues(self):
- assert_almost_equal(self.res1.pvalues, self.res2.pvalues,
- self.decimal_pvalues)
-
- decimal_wresid = DECIMAL_4
- def test_wresid(self):
- assert_almost_equal(self.res1.wresid, self.res2.wresid,
- self.decimal_wresid)
-
- decimal_resids = DECIMAL_4
- def test_resids(self):
- assert_almost_equal(self.res1.resid, self.res2.resid,
- self.decimal_resids)
-
-#TODO: test fittedvalues and what else?
-
-class TestOLS(CheckRegressionResults):
- @classmethod
- def setupClass(cls):
- from results.results_regression import Longley
- data = longley.load()
- data.exog = add_constant(data.exog)
- res1 = OLS(data.endog, data.exog).fit()
- res2 = Longley()
- res2.wresid = res1.wresid # workaround hack
- cls.res1 = res1
- cls.res2 = res2
-
- res_qr = OLS(data.endog, data.exog).fit(method="qr")
- cls.res_qr = res_qr
-
-
-# Robust error tests. Compare values computed with SAS
- def test_HC0_errors(self):
- '''
- They are split up because the copied results do not have any DECIMAL_4
- places for the last place.
- '''
- assert_almost_equal(self.res1.HC0_se[:-1],
- self.res2.HC0_se[:-1], DECIMAL_4)
- assert_approx_equal(np.round(self.res1.HC0_se[-1]), self.res2.HC0_se[-1])
-
- def test_HC1_errors(self):
- assert_almost_equal(self.res1.HC1_se[:-1],
- self.res2.HC1_se[:-1], DECIMAL_4)
- assert_approx_equal(self.res1.HC1_se[-1], self.res2.HC1_se[-1])
-
- def test_HC2_errors(self):
- assert_almost_equal(self.res1.HC2_se[:-1],
- self.res2.HC2_se[:-1], DECIMAL_4)
- assert_approx_equal(self.res1.HC2_se[-1], self.res2.HC2_se[-1])
-
- def test_HC3_errors(self):
- assert_almost_equal(self.res1.HC3_se[:-1],
- self.res2.HC3_se[:-1], DECIMAL_4)
- assert_approx_equal(self.res1.HC3_se[-1], self.res2.HC3_se[-1])
-
- def test_qr_params(self):
- assert_almost_equal(self.res1.params,
- self.res_qr.params, 6)
-
- def test_qr_normalized_cov_params(self):
- #todo: need assert_close
- assert_almost_equal(np.ones_like(self.res1.normalized_cov_params),
- self.res1.normalized_cov_params /
- self.res_qr.normalized_cov_params, 5)
-
-
-class TestFtest(object):
- """
- Tests f_test vs. RegressionResults
- """
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- cls.res1 = OLS(data.endog, data.exog).fit()
- R = np.identity(7)[:-1,:]
- cls.Ftest = cls.res1.f_test(R)
-
- def test_F(self):
- assert_almost_equal(self.Ftest.fvalue, self.res1.fvalue, DECIMAL_4)
-
- def test_p(self):
- assert_almost_equal(self.Ftest.pvalue, self.res1.f_pvalue, DECIMAL_4)
-
- def test_Df_denom(self):
- assert_equal(self.Ftest.df_denom, self.res1.model.df_resid)
-
- def test_Df_num(self):
- assert_equal(self.Ftest.df_num, 6)
-
-class TestFTest2(object):
- '''
- A joint test that the coefficient on
- GNP = the coefficient on UNEMP and that the coefficient on
- POP = the coefficient on YEAR for the Longley dataset.
-
- Ftest1 is from statsmodels. Results are from Rpy using R's car library.
- '''
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- res1 = OLS(data.endog, data.exog).fit()
- R2 = [[0,1,-1,0,0,0,0],[0, 0, 0, 0, 1, -1, 0]]
- cls.Ftest1 = res1.f_test(R2)
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# try:
-# r.library('car')
-# except RPyRException:
-# raise SkipTest, "car library not installed for R"
-# self.R2 = [[0,1,-1,0,0,0,0],[0, 0, 0, 0, 1, -1, 0]]
-# self.Ftest2 = self.res1.f_test(self.R2)
-# self.R_Results = RModel(self.data.endog, self.data.exog, r.lm).robj
-# self.F = r.linear_hypothesis(self.R_Results,
-# r.c('x.2 = x.3', 'x.5 = x.6'))
-
-
- def test_fvalue(self):
- assert_almost_equal(self.Ftest1.fvalue, 9.7404618732968196, DECIMAL_4)
-
- def test_pvalue(self):
- assert_almost_equal(self.Ftest1.pvalue, 0.0056052885317493459,
- DECIMAL_4)
-
- def test_df_denom(self):
- assert_equal(self.Ftest1.df_denom, 9)
-
- def test_df_num(self):
- assert_equal(self.Ftest1.df_num, 2)
-
-class TestFtestQ(object):
- """
- A joint hypothesis test that Rb = q. Coefficient tests are essentially
- made up. Test values taken from Stata.
- """
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- res1 = OLS(data.endog, data.exog).fit()
- R = np.array([[0,1,1,0,0,0,0],
- [0,1,0,1,0,0,0],
- [0,1,0,0,0,0,0],
- [0,0,0,0,1,0,0],
- [0,0,0,0,0,1,0]])
- q = np.array([0,0,0,1,0])
- cls.Ftest1 = res1.f_test(R,q)
-
- def test_fvalue(self):
- assert_almost_equal(self.Ftest1.fvalue, 70.115557, 5)
-
- def test_pvalue(self):
- assert_almost_equal(self.Ftest1.pvalue, 6.229e-07, 10)
-
- def test_df_denom(self):
- assert_equal(self.Ftest1.df_denom, 9)
-
- def test_df_num(self):
- assert_equal(self.Ftest1.df_num, 5)
-
-
-class TestTtest(object):
- '''
- Test individual t-tests. Ie., are the coefficients significantly
- different than zero.
-
- '''
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- cls.res1 = OLS(data.endog, data.exog).fit()
- R = np.identity(7)
- cls.Ttest = cls.res1.t_test(R)
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# else:
-# self.R_Results = RModel(data.endog, data.exog, r.lm).robj
-
- def test_tvalue(self):
- assert_almost_equal(self.Ttest.tvalue, self.res1.tvalues, DECIMAL_4)
-
- def test_sd(self):
- assert_almost_equal(self.Ttest.sd, self.res1.bse, DECIMAL_4)
-
- def test_pvalue(self):
- assert_almost_equal(self.Ttest.pvalue,
- student_t.sf(np.abs(self.res1.tvalues),self.res1.model.df_resid),
- DECIMAL_4)
-
- def test_df_denom(self):
- assert_equal(self.Ttest.df_denom, self.res1.model.df_resid)
-
- def test_effect(self):
- assert_almost_equal(self.Ttest.effect, self.res1.params)
-
-class TestTtest2(object):
- '''
- Tests the hypothesis that the coefficients on POP and YEAR
- are equal.
-
- Results from RPy using 'car' package.
- '''
- @classmethod
- def setupClass(cls):
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# try:
-# r.library('car')
-# except RPyRException:
-# raise SkipTest, "car library not installed for R"
- R = np.zeros(7)
- R[4:6] = [1,-1]
-# self.R = R
- data = longley.load()
- data.exog = add_constant(data.exog)
- res1 = OLS(data.endog, data.exog).fit()
- cls.Ttest1 = res1.t_test(R)
-# self.R_Results = RModel(self.data.endog, self.data.exog, r.lm).robj
-# self.Ttest2 = r.linear_hypothesis(self.R_Results, 'x.5 = x.6')
-# t = np.sign(np.inner(R, self.res1.params))*\
-# np.sqrt(self.Ttest2['F'][1])
-# self.t = t
-# self.effect = np.sum(R * self.res1.params)
-
- def test_tvalue(self):
- assert_almost_equal(self.Ttest1.tvalue, -4.0167754636397284,
- DECIMAL_4)
-
- def test_sd(self):
- assert_almost_equal(self.Ttest1.sd, 455.39079425195314, DECIMAL_4)
-
- def test_pvalue(self):
- assert_almost_equal(self.Ttest1.pvalue, 0.0015163772380932246,
- DECIMAL_4)
-
- def test_df_denom(self):
- assert_equal(self.Ttest1.df_denom, 9)
-
- def test_effect(self):
- assert_almost_equal(self.Ttest1.effect, -1829.2025687186533, DECIMAL_4)
-
-class TestGLS(object):
- '''
- These test results were obtained by replication with R.
- '''
- @classmethod
- def setupClass(cls):
- from results.results_regression import LongleyGls
-
- data = longley.load()
- exog = add_constant(np.column_stack(\
- (data.exog[:,1],data.exog[:,4])))
- tmp_results = OLS(data.endog, exog).fit()
- rho = np.corrcoef(tmp_results.resid[1:],
- tmp_results.resid[:-1])[0][1] # by assumption
- order = toeplitz(np.arange(16))
- sigma = rho**order
- GLS_results = GLS(data.endog, exog, sigma=sigma).fit()
- cls.res1 = GLS_results
- cls.res2 = LongleyGls()
-
- def test_aic(self):
- assert_approx_equal(self.res1.aic+2, self.res2.aic, 3)
-
- def test_bic(self):
- assert_approx_equal(self.res1.bic, self.res2.bic, 2)
-
- def test_loglike(self):
- assert_almost_equal(self.res1.llf, self.res2.llf, DECIMAL_0)
-
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_1)
-
- def test_resid(self):
- assert_almost_equal(self.res1.resid, self.res2.resid, DECIMAL_4)
-
- def test_scale(self):
- assert_almost_equal(self.res1.scale, self.res2.scale, DECIMAL_4)
-
- def test_tvalues(self):
- assert_almost_equal(self.res1.tvalues, self.res2.tvalues, DECIMAL_4)
-
- def test_standarderrors(self):
- assert_almost_equal(self.res1.bse, self.res2.bse, DECIMAL_4)
-
- def test_fittedvalues(self):
- assert_almost_equal(self.res1.fittedvalues, self.res2.fittedvalues,
- DECIMAL_4)
-
- def test_pvalues(self):
- assert_almost_equal(self.res1.pvalues, self.res2.pvalues, DECIMAL_4)
-
-class TestGLS_nosigma(CheckRegressionResults):
- '''
- Test that GLS with no argument is equivalent to OLS.
- '''
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- ols_res = OLS(data.endog, data.exog).fit()
- gls_res = GLS(data.endog, data.exog).fit()
- cls.res1 = gls_res
- cls.res2 = ols_res
-# self.res2.conf_int = self.res2.conf_int()
-
-# def check_confidenceintervals(self, conf1, conf2):
-# assert_almost_equal(conf1, conf2, DECIMAL_4)
-
-#class TestWLS(CheckRegressionResults):
-# '''
-# Test WLS with Greene's credit card data
-# '''
-# def __init__(self):
-# from scikits.statsmodels.datasets.ccard import load
-# self.data = load()
-# self.res1 = WLS(self.data.endog, self.data.exog,
-# weights=1/self.data.exog[:,2]).fit()
-#FIXME: triaged results for noconstant
-# self.res1.ess = self.res1.uncentered_tss - self.res1.ssr
-# self.res1.rsquared = self.res1.ess/self.res1.uncentered_tss
-# self.res1.mse_model = self.res1.ess/(self.res1.df_model + 1)
-# self.res1.fvalue = self.res1.mse_model/self.res1.mse_resid
-# self.res1.rsquared_adj = 1 -(self.res1.nobs)/(self.res1.df_resid)*\
-# (1-self.res1.rsquared)
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed"
-# self.res2 = RModel(self.data.endog, self.data.exog, r.lm,
-# weights=1/self.data.exog[:,2])
-# self.res2.wresid = self.res2.rsum['residuals']
-# self.res2.scale = self.res2.scale**2 # R has sigma not sigma**2
-
-# def check_confidenceintervals(self, conf1, conf2):
-# assert_almost_equal(conf1, conf2, DECIMAL_4)
-
-
-class TestWLS_GLS(CheckRegressionResults):
- @classmethod
- def setupClass(cls):
- from scikits.statsmodels.datasets.ccard import load
- data = load()
- cls.res1 = WLS(data.endog, data.exog, weights = 1/data.exog[:,2]).fit()
- cls.res2 = GLS(data.endog, data.exog, sigma = data.exog[:,2]).fit()
-
- def check_confidenceintervals(self, conf1, conf2):
- assert_almost_equal(conf1, conf2(), DECIMAL_4)
-
-class TestWLS_OLS(CheckRegressionResults):
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- cls.res1 = OLS(data.endog, data.exog).fit()
- cls.res2 = WLS(data.endog, data.exog).fit()
-
- def check_confidenceintervals(self, conf1, conf2):
- assert_almost_equal(conf1, conf2(), DECIMAL_4)
-
-class TestGLS_OLS(CheckRegressionResults):
- @classmethod
- def setupClass(cls):
- data = longley.load()
- data.exog = add_constant(data.exog)
- cls.res1 = GLS(data.endog, data.exog).fit()
- cls.res2 = OLS(data.endog, data.exog).fit()
-
- def check_confidenceintervals(self, conf1, conf2):
- assert_almost_equal(conf1, conf2(), DECIMAL_4)
-
-#TODO: test AR
-# why the two-stage in AR?
-#class test_ar(object):
-# from scikits.statsmodels.datasets.sunspots import load
-# data = load()
-# model = AR(data.endog, rho=4).fit()
-# R_res = RModel(data.endog, aic="FALSE", order_max=4)
-
-# def test_params(self):
-# assert_almost_equal(self.model.rho,
-# pass
-
-# def test_order(self):
-# In R this can be defined or chosen by minimizing the AIC if aic=True
-# pass
-
-
-class TestYuleWalker(object):
- @classmethod
- def setupClass(cls):
- from scikits.statsmodels.datasets.sunspots import load
- data = load()
- cls.rho, cls.sigma = yule_walker(data.endog, order=4,
- method="mle")
- cls.R_params = [1.2831003105694765, -0.45240924374091945,
- -0.20770298557575195, 0.047943648089542337]
-
-# def setup(self):
-# if skipR:
-# raise SkipTest, "Rpy not installed."
-#
-# R_results = r.ar(self.data.endog, aic="FALSE", order_max=4)
-# self.R_params = R_results['ar']
-
- def test_params(self):
- assert_almost_equal(self.rho, self.R_params, DECIMAL_4)
-
-class TestDataDimensions(CheckRegressionResults):
- @classmethod
- def setupClass(cls):
- np.random.seed(54321)
- cls.endog_n_ = np.random.uniform(0,20,size=30)
- cls.endog_n_one = cls.endog_n_[:,None]
- cls.exog_n_ = np.random.uniform(0,20,size=30)
- cls.exog_n_one = cls.exog_n_[:,None]
- cls.degen_exog = cls.exog_n_one[:-1]
- cls.mod1 = OLS(cls.endog_n_one, cls.exog_n_one)
- cls.mod1.df_model += 1
- #cls.mod1.df_resid -= 1
- cls.res1 = cls.mod1.fit()
- # Note that these are created for every subclass..
- # A little extra overhead probably
- cls.mod2 = OLS(cls.endog_n_one, cls.exog_n_one)
- cls.mod2.df_model += 1
- cls.res2 = cls.mod2.fit()
-
- def check_confidenceintervals(self, conf1, conf2):
- assert_almost_equal(conf1, conf2(), DECIMAL_4)
-
-class TestNxNx(TestDataDimensions):
- @classmethod
- def setupClass(cls):
- super(TestNxNx, cls).setupClass()
- cls.mod2 = OLS(cls.endog_n_, cls.exog_n_)
- cls.mod2.df_model += 1
- cls.res2 = cls.mod2.fit()
-
-class TestNxOneNx(TestDataDimensions):
- @classmethod
- def setupClass(cls):
- super(TestNxOneNx, cls).setupClass()
- cls.mod2 = OLS(cls.endog_n_one, cls.exog_n_)
- cls.mod2.df_model += 1
- cls.res2 = cls.mod2.fit()
-
-class TestNxNxOne(TestDataDimensions):
- @classmethod
- def setupClass(cls):
- super(TestNxNxOne, cls).setupClass()
- cls.mod2 = OLS(cls.endog_n_, cls.exog_n_one)
- cls.mod2.df_model += 1
- cls.res2 = cls.mod2.fit()
-
-def test_bad_size():
- np.random.seed(54321)
- data = np.random.uniform(0,20,31)
- assert_raises(ValueError, OLS, data, data[1:])
-
-if __name__=="__main__":
-
- import nose
- # run_module_suite()
- nose.runmodule(argv=[__file__,'-vvs','-x','--pdb', '--pdb-failure'],
- exit=False)
-
- # nose.runmodule(argv=[__file__,'-vvs','-x'], exit=False) #, '--pdb'
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/resampling/__init__.py b/statsmodels/scikits/statsmodels/resampling/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/robust/__init__.py b/statsmodels/scikits/statsmodels/robust/__init__.py
deleted file mode 100644
index af05d00..0000000
--- a/statsmodels/scikits/statsmodels/robust/__init__.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""
-Robust statistical models
-"""
-import norms
-from .scale import mad, stand_mad, Huber, HuberScale, hubers_scale
-
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/robust/norms.py b/statsmodels/scikits/statsmodels/robust/norms.py
deleted file mode 100644
index a523e52..0000000
--- a/statsmodels/scikits/statsmodels/robust/norms.py
+++ /dev/null
@@ -1,853 +0,0 @@
-import numpy as np
-
-#TODO: add plots to weighting functions for online docs.
-
-class RobustNorm(object):
- """
- The parent class for the norms used for robust regression.
-
- Lays out the methods expected of the robust norms to be used
- by scikits.statsmodels.RLM.
-
- Parameters
- ----------
- None :
- Some subclasses have optional tuning constants.
-
- References
- ----------
- PJ Huber. 'Robust Statistics' John Wiley and Sons, Inc., New York, 1981.
-
- DC Montgomery, EA Peck. 'Introduction to Linear Regression Analysis',
- John Wiley and Sons, Inc., New York, 2001.
-
- R Venables, B Ripley. 'Modern Applied Statistics in S'
- Springer, New York, 2002.
-
- See Also
- --------
- scikits.statsmodels.rlm for more information on how the estimators are used
- and the inputs for the methods of RobustNorm and subclasses.
-
- Notes
- -----
- Currently only M-estimators are available.
- """
-
- def rho(self, z):
- """
- The robust criterion estimator function.
-
- Abstract method:
-
- -2 loglike used in M-estimator
- """
- raise NotImplementedError
-
- def psi(self, z):
- """
- Derivative of rho. Sometimes referred to as the influence function.
-
- Abstract method:
-
- psi = rho'
- """
- raise NotImplementedError
-
- def weights(self, z):
- """
- Returns the value of psi(z) / z
-
- Abstract method:
-
- psi(z) / z
- """
- raise NotImplementedError
-
- def psi_deriv(self, z):
- '''
- Deriative of psi. Used to obtain robust covariance matrix.
-
- See scikits.statsmodels.rlm for more information.
-
- Abstract method:
-
- psi_derive = psi'
- '''
- raise NotImplementedError
-
- def __call__(self, z):
- """
- Returns the value of estimator rho applied to an input
- """
- return self.rho(z)
-
-class LeastSquares(RobustNorm):
-
- """
- Least squares rho for M-estimation and its derived functions.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm for the methods.
- """
-
- def rho(self, z):
- """
- The least squares estimator rho function
-
- Parameters
- -----------
- z : array
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = (1/2.)*z**2
- """
-
- return z**2 * 0.5
-
- def psi(self, z):
- """
- The psi function for the least squares estimator
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z
- """
-
- return np.asarray(z)
-
- def weights(self, z):
- """
- The least squares estimator weighting function for the IRLS algorithm.
-
- The psi function scaled by the input z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = np.ones(z.shape)
- """
-
- z = np.asarray(z)
- return np.ones(z.shape, np.float64)
-
- def psi_deriv(self, z):
- """
- The derivative of the least squares psi function.
-
- Returns
- -------
- psi_deriv : array
- ones(z.shape)
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
- return np.ones(z.shape, np.float64)
-
-class HuberT(RobustNorm):
- """
- Huber's T for M estimation.
-
- Parameters
- ----------
- t : float, optional
- The tuning constant for Huber's t function. The default value is
- 1.345.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm
- """
-
- def __init__(self, t=1.345):
- self.t = t
-
- def _subset(self, z):
- """
- Huber's T is defined piecewise over the range for z
- """
- z = np.asarray(z)
- return np.less_equal(np.fabs(z), self.t)
-
- def rho(self, z):
- """
- The robust criterion function for Huber's t.
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = .5*z**2 for \|z\| <= t
-
- rho(z) = \|z\|*t - .5*t**2 for \|z\| > t
- """
- z = np.asarray(z)
- test = self._subset(z)
- return (test * 0.5 * z**2 +
- (1 - test) * (np.fabs(z) * self.t - 0.5 * self.t**2))
-
- def psi(self, z):
- """
- The psi function for Huber's t estimator
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z for \|z\| <= t
-
- psi(z) = sign(z)*t for \|z\| > t
- """
- z = np.asarray(z)
- test = self._subset(z)
- return test * z + (1 - test) * self.t * np.sign(z)
-
- def weights(self, z):
- """
- Huber's t weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = 1 for \|z\| <= t
-
- weights(z) = t/\|z\| for \|z\| > t
- """
- z = np.asarray(z)
- test = self._subset(z)
- absz = np.fabs(z)
- absz[test] = 1.0
- return test + (1 - test) * self.t / absz
-
- def psi_deriv(self, z):
- """
- The derivative of Huber's t psi function
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
- return np.less_equal(np.fabs(z), self.t)
-
-#TODO: untested, but looks right. RamsayE not available in R or SAS?
-class RamsayE(RobustNorm):
- """
- Ramsay's Ea for M estimation.
-
- Parameters
- ----------
- a : float, optional
- The tuning constant for Ramsay's Ea function. The default value is
- 0.3.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm
- """
-
- def __init__(self, a = .3):
- self.a = a
-
- def rho(self, z):
- """
- The robust criterion function for Ramsay's Ea.
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = a**-2 * (1 - exp(-a*\|z\|)*(1 + a*\|z\|))
- """
- z = np.asarray(z)
- return (1 - np.exp(-self.a * np.fabs(z)) *
- (1 + self.a * np.fabs(z))) / self.a**2
-
- def psi(self, z):
- """
- The psi function for Ramsay's Ea estimator
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z*exp(-a*\|z\|)
- """
- z = np.asarray(z)
- return z * np.exp(-self.a * np.fabs(z))
-
- def weights(self, z):
- """
- Ramsay's Ea weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = exp(-a*\|z\|)
- """
-
- z = np.asarray(z)
- return np.exp(-self.a * np.fabs(z))
-
- def psi_deriv(self, z):
- """
- The derivative of Ramsay's Ea psi function.
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
-
- return np.exp(-self.a * np.fabs(z)) + z**2*\
- np.exp(-self.a*np.fabs(z))*-self.a/np.fabs(z)
-
-class AndrewWave(RobustNorm):
-
- """
- Andrew's wave for M estimation.
-
- Parameters
- ----------
- a : float, optional
- The tuning constant for Andrew's Wave function. The default value is
- 1.339.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm
-
- """
- def __init__(self, a = 1.339):
- self.a = a
-
- def _subset(self, z):
- """
- Andrew's wave is defined piecewise over the range of z.
- """
- z = np.asarray(z)
- return np.less_equal(np.fabs(z), self.a * np.pi)
-
- def rho(self, z):
- """
- The robust criterion function for Andrew's wave.
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = a*(1-cos(z/a)) for \|z\| <= a*pi
-
- rho(z) = 2*a for \|z\| > a*pi
- """
-
- a = self.a
- z = np.asarray(z)
- test = self._subset(z)
- return (test * a * (1 - np.cos(z / a)) +
- (1 - test) * 2 * a)
-
- def psi(self, z):
- """
- The psi function for Andrew's wave
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = sin(z/a) for \|z\| <= a*pi
-
- psi(z) = 0 for \|z\| > a*pi
- """
-
- a = self.a
- z = np.asarray(z)
- test = self._subset(z)
- return test * np.sin(z / a)
-
- def weights(self, z):
- """
- Andrew's wave weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = sin(z/a)/(z/a) for \|z\| <= a*pi
-
- weights(z) = 0 for \|z\| > a*pi
- """
- a = self.a
- z = np.asarray(z)
- test = self._subset(z)
- return test * np.sin(z / a) / (z / a)
-
- def psi_deriv(self, z):
- """
- The derivative of Andrew's wave psi function
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
-
- test = self._subset(z)
- return test*np.cos(z / self.a)/self.a
-
-#TODO: this is untested
-class TrimmedMean(RobustNorm):
- """
- Trimmed mean function for M-estimation.
-
- Parameters
- ----------
- c : float, optional
- The tuning constant for Ramsay's Ea function. The default value is
- 2.0.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm
- """
-
- def __init__(self, c=2.):
- self.c = c
-
- def _subset(self, z):
- """
- Least trimmed mean is defined piecewise over the range of z.
- """
-
- z = np.asarray(z)
- return np.less_equal(np.fabs(z), self.c)
-
- def rho(self, z):
- """
- The robust criterion function for least trimmed mean.
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = (1/2.)*z**2 for \|z\| <= c
-
- rho(z) = 0 for \|z\| > c
- """
-
- z = np.asarray(z)
- test = self._subset(z)
- return test * z**2 * 0.5
-
- def psi(self, z):
- """
- The psi function for least trimmed mean
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z for \|z\| <= c
-
- psi(z) = 0 for \|z\| > c
-
- """
- z = np.asarray(z)
- test = self._subset(z)
- return test * z
-
- def weights(self, z):
- """
- Least trimmed mean weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = 1 for \|z\| <= c
-
- weights(z) = 0 for \|z\| > c
-
- """
- z = np.asarray(z)
- test = self._subset(z)
- return test
-
- def psi_derive(self, z):
- """
- The derivative of least trimmed mean psi function
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
- test = self.subzet(z)
- return test
-
-class Hampel(RobustNorm):
- """
-
- Hampel function for M-estimation.
-
- Parameters
- ----------
- a : float, optional
- b : float, optional
- c : float, optional
- The tuning constants for Hampel's function. The default values are
- a,b,c = 2, 4, 8.
-
- See also
- --------
- scikits.statsmodels.robust.norms.RobustNorm
- """
-
- def __init__(self, a = 2., b = 4., c = 8.):
- self.a = a
- self.b = b
- self.c = c
-
- def _subset(self, z):
- """
- Hampel's function is defined piecewise over the range of z
- """
- z = np.fabs(np.asarray(z))
- t1 = np.less_equal(z, self.a)
- t2 = np.less_equal(z, self.b) * np.greater(z, self.a)
- t3 = np.less_equal(z, self.c) * np.greater(z, self.b)
- return t1, t2, t3
-
- def rho(self, z):
- """
- The robust criterion function for Hampel's estimator
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = (1/2.)*z**2 for \|z\| <= a
-
- rho(z) = a*\|z\| - 1/2.*a**2 for a < \|z\| <= b
-
- rho(z) = a*(c*\|z\|-(1/2.)*z**2)/(c-b) for b < \|z\| <= c
-
- rho(z) = a*(b + c - a) for \|z\| > c
- """
-
- z = np.fabs(z)
- a = self.a; b = self.b; c = self.c
- t1, t2, t3 = self._subset(z)
- v = (t1 * z**2 * 0.5 +
- t2 * (a * z - a**2 * 0.5) +
- t3 * (a * (c * z - z**2 * 0.5) / (c - b) - 7 * a**2 / 6.) +
- (1 - t1 + t2 + t3) * a * (b + c - a))
- return v
-
- def psi(self, z):
- """
- The psi function for Hampel's estimator
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z for \|z\| <= a
-
- psi(z) = a*sign(z) for a < \|z\| <= b
-
- psi(z) = a*sign(z)*(c - \|z\|)/(c-b) for b < \|z\| <= c
-
- psi(z) = 0 for \|z\| > c
- """
- z = np.asarray(z)
- a = self.a; b = self.b; c = self.c
- t1, t2, t3 = self._subset(z)
- s = np.sign(z)
- z = np.fabs(z)
- v = s * (t1 * z +
- t2 * a*s +
- t3 * a*s * (c - z) / (c - b))
- return v
-
- def weights(self, z):
- """
- Hampel weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- weights(z) = 1 for \|z\| <= a
-
- weights(z) = a/\|z\| for a < \|z\| <= b
-
- weights(z) = a*(c - \|z\|)/(\|z\|*(c-b)) for b < \|z\| <= c
-
- weights(z) = 0 for \|z\| > c
-
- """
- z = np.asarray(z)
- a = self.a; b = self.b; c = self.c
- t1, t2, t3 = self._subset(z)
- v = (t1 +
- t2 * a/np.fabs(z) +
- t3 * a*(c-np.fabs(z))/(np.fabs(z)*(c-b)))
- v[np.where(np.isnan(v))]=1. # for some reason 0 returns a nan?
- return v
-
- def psi_deriv(self, z):
- t1, t2, t3 = self._subset(z)
- return t1 + t3 * (self.a*np.sign(z)*z)/(np.fabs(z)*(self.c-self.b))
-
-class TukeyBiweight(RobustNorm):
- """
-
- Tukey's biweight function for M-estimation.
-
- Parameters
- ----------
- c : float, optional
- The tuning constant for Tukey's Biweight. The default value is
- c = 4.685.
-
- Notes
- -----
- Tukey's biweight is sometime's called bisquare.
- """
-
- def __init__(self, c = 4.685):
- self.c = c
-
- def _subset(self, z):
- """
- Tukey's biweight is defined piecewise over the range of z
- """
- z = np.fabs(np.asarray(z))
- return np.less_equal(z, self.c)
-
- def rho(self, z):
- """
- The robust criterion function for Tukey's biweight estimator
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- rho : array
- rho(z) = -(1 - (z/c)**2)**3 * c**2/6. for \|z\| <= R
-
- rho(z) = 0 for \|z\| > R
- """
- subset = self._subset(z)
- return -(1 - (z / self.c)**2)**3 * subset * self.c**2 / 6.
-
- def psi(self, z):
- """
- The psi function for Tukey's biweight estimator
-
- The analytic derivative of rho
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- psi : array
- psi(z) = z*(1 - (z/c)**2)**2 for \|z\| <= R
-
- psi(z) = 0 for \|z\| > R
- """
-
- z = np.asarray(z)
- subset = self._subset(z)
- return z * (1 - (z / self.c)**2)**2 * subset
-
-
- def weights(self, z):
- """
- Tukey's biweight weighting function for the IRLS algorithm
-
- The psi function scaled by z
-
- Parameters
- ----------
- z : array-like
- 1d array
-
- Returns
- -------
- weights : array
- psi(z) = (1 - (z/c)**2)**2 for \|z\| <= R
-
- psi(z) = 0 for \|z\| > R
- """
-
- subset = self._subset(z)
- return (1 - (z / self.c)**2)**2 * subset
-
- def psi_deriv(self, z):
- """
- The derivative of Tukey's biweight psi function
-
- Notes
- -----
- Used to estimate the robust covariance matrix.
- """
- subset = self._subset(z)
- return subset*((1 - (z/self.c)**2)**2 - (4*z**2/self.c**2) *\
- (1-(z/self.c)**2))
-
-def estimate_location(a, scale, norm=None, axis=0, initial=None,
- maxiter=30, tol=1.0e-06):
- """
- M-estimator of location using self.norm and a current
- estimator of scale.
-
- This iteratively finds a solution to
-
- norm.psi((a-mu)/scale).sum() == 0
-
- Parameters
- ----------
- a : array
- Array over which the location parameter is to be estimated
- scale : array
- Scale parameter to be used in M-estimator
- norm : RobustNorm, optional
- Robust norm used in the M-estimator. The default is HuberT().
- axis : int, optional
- Axis along which to estimate the location parameter. The default is 0.
- initial : array, optional
- Initial condition for the location parameter. Default is None, which
- uses the median of a.
- niter : int, optional
- Maximum number of iterations. The default is 30.
- tol : float, optional
- Toleration for convergence. The default is 1e-06.
-
- Returns
- --------
- mu : array
- Estimate of location
- """
- if norm is None:
- norm = HuberT()
-
- if initial is None:
- mu = np.median(a, axis)
- else:
- mu = initial
-
- for iter in range(maxiter):
- W = norm.weights((a-mu)/scale)
- nmu = np.sum(W*a, axis) / np.sum(W, axis)
- if np.alltrue(np.less(np.fabs(mu - nmu), scale * tol)):
- return nmu
- else:
- mu = nmu
- raise ValueError("location estimator failed to converge in %d iterations"\
- % maxiter)
-
diff --git a/statsmodels/scikits/statsmodels/robust/robust_linear_model.py b/statsmodels/scikits/statsmodels/robust/robust_linear_model.py
deleted file mode 100644
index 4d24de6..0000000
--- a/statsmodels/scikits/statsmodels/robust/robust_linear_model.py
+++ /dev/null
@@ -1,596 +0,0 @@
-"""
-Robust linear models with support for the M-estimators listed under
-:ref:`norms `.
-
-References
-----------
-PJ Huber. 'Robust Statistics' John Wiley and Sons, Inc., New York. 1981.
-
-PJ Huber. 1973, 'The 1972 Wald Memorial Lectures: Robust Regression:
- Asymptotics, Conjectures, and Monte Carlo.' The Annals of Statistics,
- 1.5, 799-821.
-
-R Venables, B Ripley. 'Modern Applied Statistics in S' Springer, New York,
- 2002.
-"""
-import numpy as np
-import scipy.stats as stats
-
-from scikits.statsmodels.tools.decorators import (cache_readonly,
- resettable_cache)
-from scikits.statsmodels.tools.tools import rank
-import scikits.statsmodels.regression.linear_model as lm
-import scikits.statsmodels.robust.norms as norms
-import scikits.statsmodels.robust.scale as scale
-import scikits.statsmodels.base.model as base
-import scikits.statsmodels.base.wrapper as wrap
-
-__all__ = ['RLM']
-
-class RLM(base.LikelihoodModel):
- """
- Robust Linear Models
-
- Estimate a robust linear model via iteratively reweighted least squares
- given a robust criterion estimator.
-
- Parameters
- ----------
- endog : array-like
- 1d endogenous response variable
- exog : array-like
- n x p exogenous design matrix
- M : scikits.statsmodels.robust.norms.RobustNorm, optional
- The robust criterion function for downweighting outliers.
- The current options are LeastSquares, HuberT, RamsayE, AndrewWave,
- TrimmedMean, Hampel, and TukeyBiweight. The default is HuberT().
- See scikits.statsmodels.robust.norms for more information.
-
- Notes
- -----
-
- **Attributes**
-
- df_model : float
- The degrees of freedom of the model. The number of regressors p less
- one for the intercept. Note that the reported model degrees
- of freedom does not count the intercept as a regressor, though
- the model is assumed to have an intercept.
- df_resid : float
- The residual degrees of freedom. The number of observations n
- less the number of regressors p. Note that here p does include
- the intercept as using a degree of freedom.
- endog : array
- See above. Note that endog is a reference to the data so that if
- data is already an array and it is changed, then `endog` changes
- as well.
- exog : array
- See above. Note that endog is a reference to the data so that if
- data is already an array and it is changed, then `endog` changes
- as well.
- history : dict
- Contains information about the iterations. Its keys are `fittedvalues`,
- `deviance`, and `params`.
- M : scikits.statsmodels.robust.norms.RobustNorm
- See above. Robust estimator instance instantiated.
- nobs : float
- The number of observations n
- pinv_wexog : array
- The pseudoinverse of the design / exogenous data array. Note that
- RLM has no whiten method, so this is just the pseudo inverse of the
- design.
- normalized_cov_params : array
- The p x p normalized covariance of the design / exogenous data.
- This is approximately equal to (X.T X)^(-1)
-
-
- Examples
- ---------
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.stackloss.load()
- >>> data.exog = sm.add_constant(data.exog)
- >>> rlm_model = sm.RLM(data.endog, data.exog,
- M=sm.robust.norms.HuberT())
-
- >>> rlm_results = rlm_model.fit()
- >>> rlm_results.params
- array([ 0.82938433, 0.92606597, -0.12784672, -41.02649835])
- >>> rlm_results.bse
- array([ 0.11100521, 0.30293016, 0.12864961, 9.79189854])
- >>> rlm_results_HC2 = rlm_model.fit(cov="H2")
- >>> rlm_results_HC2.params
- array([ 0.82938433, 0.92606597, -0.12784672, -41.02649835])
- >>> rlm_results_HC2.bse
- array([ 0.11945975, 0.32235497, 0.11796313, 9.08950419])
- >>>
- >>> rlm_hamp_hub = sm.RLM(data.endog, data.exog,
- M=sm.robust.norms.Hampel()).fit(
- sm.robust.scale.HuberScale())
-
- >>> rlm_hamp_hub.params
- array([ 0.73175452, 1.25082038, -0.14794399, -40.27122257])
-
- """
-
- def __init__(self, endog, exog, M=norms.HuberT()):
- self.M = M
- super(base.LikelihoodModel, self).__init__(endog, exog)
- self._initialize()
-
- def _initialize(self):
- """
- Initializes the model for the IRLS fit.
-
- Resets the history and number of iterations.
- """
- self.history = {'deviance' : [np.inf], 'params' : [np.inf],
- 'weights' : [np.inf], 'sresid' : [np.inf], 'scale' : []}
- self.iteration = 0
- self.pinv_wexog = np.linalg.pinv(self.exog)
- self.normalized_cov_params = np.dot(self.pinv_wexog,
- np.transpose(self.pinv_wexog))
- self.df_resid = np.float(self.exog.shape[0] - rank(self.exog))
- self.df_model = np.float(rank(self.exog)-1)
- self.nobs = float(self.endog.shape[0])
-
- def score(self, params):
- raise NotImplementedError
-
- def information(self, params):
- raise NotImplementedError
-
- def loglike(self, params):
- raise NotImplementedError
-
- def deviance(self, tmp_results):
- """
- Returns the (unnormalized) log-likelihood from the M estimator.
- """
- return self.M((self.endog - tmp_results.fittedvalues) /
- tmp_results.scale).sum()
-
- def _update_history(self, tmp_results):
- self.history['deviance'].append(self.deviance(tmp_results))
- self.history['params'].append(tmp_results.params)
- self.history['scale'].append(tmp_results.scale)
- self.history['sresid'].append(tmp_results.resid/tmp_results.scale)
- self.history['weights'].append(tmp_results.model.weights)
-
- def _estimate_scale(self, resid):
- """
- Estimates the scale based on the option provided to the fit method.
- """
- if isinstance(self.scale_est, str):
- if self.scale_est.lower() == 'mad':
- return scale.mad(resid)
- if self.scale_est.lower() == 'stand_mad':
- return scale.stand_mad(resid)
- elif isinstance(self.scale_est, scale.HuberScale):
- return scale.hubers_scale(self.df_resid, self.nobs, resid)
- else:
- return scale.scale_est(self, resid)**2
-
- def fit(self, maxiter=50, tol=1e-8, scale_est='mad', init=None, cov='H1',
- update_scale=True, conv='dev'):
- """
- Fits the model using iteratively reweighted least squares.
-
- The IRLS routine runs until the specified objective converges to `tol`
- or `maxiter` has been reached.
-
- Parameters
- ----------
- conv : string
- Indicates the convergence criteria.
- Available options are "coefs" (the coefficients), "weights" (the
- weights in the iteration), "resids" (the standardized residuals),
- and "dev" (the un-normalized log-likelihood for the M
- estimator). The default is "dev".
- cov : string, optional
- 'H1', 'H2', or 'H3'
- Indicates how the covariance matrix is estimated. Default is 'H1'.
- See rlm.RLMResults for more information.
- init : string
- Specifies method for the initial estimates of the parameters.
- Default is None, which means that the least squares estimate
- is used. Currently it is the only available choice.
- maxiter : int
- The maximum number of iterations to try. Default is 50.
- scale_est : string or HuberScale()
- 'mad', 'stand_mad', or HuberScale()
- Indicates the estimate to use for scaling the weights in the IRLS.
- The default is 'mad' (median absolute deviation. Other options are
- use 'stand_mad' for the median absolute deviation standardized
- around the median and 'HuberScale' for Huber's proposal 2.
- Huber's proposal 2 has optional keyword arguments d, tol, and
- maxiter for specifying the tuning constant, the convergence
- tolerance, and the maximum number of iterations.
- See models.robust.scale for more information.
- tol : float
- The convergence tolerance of the estimate. Default is 1e-8.
- update_scale : Bool
- If `update_scale` is False then the scale estimate for the
- weights is held constant over the iteration. Otherwise, it
- is updated for each fit in the iteration. Default is True.
-
- Returns
- -------
- results : object
- scikits.statsmodels.rlm.RLMresults
- """
- if not cov.upper() in ["H1","H2","H3"]:
- raise ValueError("Covariance matrix %s not understood" % cov)
- else:
- self.cov = cov.upper()
- conv = conv.lower()
- if not conv in ["weights","coefs","dev","resid"]:
- raise ValueError("Convergence argument %s not understood" \
- % conv)
- self.scale_est = scale_est
- wls_results = lm.WLS(self.endog, self.exog).fit()
- if not init:
- self.scale = self._estimate_scale(wls_results.resid)
- self._update_history(wls_results)
- self.iteration = 1
- if conv == 'coefs':
- criterion = self.history['params']
- elif conv == 'dev':
- criterion = self.history['deviance']
- elif conv == 'resid':
- criterion = self.history['sresid']
- elif conv == 'weights':
- criterion = self.history['weights']
- while (np.all(np.fabs(criterion[self.iteration]-\
- criterion[self.iteration-1]) > tol) and \
- self.iteration < maxiter):
-# self.weights = self.M.weights((self.endog - \
-# wls_results.fittedvalues)/self.scale)
- self.weights = self.M.weights(wls_results.resid/self.scale)
- wls_results = lm.WLS(self.endog, self.exog,
- weights=self.weights).fit()
- if update_scale is True:
- self.scale = self._estimate_scale(wls_results.resid)
- self._update_history(wls_results)
- self.iteration += 1
- results = RLMResults(self, wls_results.params,
- self.normalized_cov_params, self.scale)
-
- results.fit_options = dict(cov=cov.upper(), scale_est=scale_est,
- norm=self.M.__class__.__name__, conv=conv)
- #norm is not changed in fit, no old state
-
- #doing the next causes exception
- #self.cov = self.scale_est = None #reset for additional fits
- #iteration and history could contain wrong state with repeated fit
- return RLMResultsWrapper(results)
-
-class RLMResults(base.LikelihoodModelResults):
- """
- Class to contain RLM results
-
- Returns
- -------
- **Attributes**
-
- bcov_scaled : array
- p x p scaled covariance matrix specified in the model fit method.
- The default is H1. H1 is defined as
- ``k**2 * (1/df_resid*sum(M.psi(sresid)**2)*scale**2)/
- ((1/nobs*sum(M.psi_deriv(sresid)))**2) * (X.T X)^(-1)``
-
- where ``k = 1 + (df_model +1)/nobs * var_psiprime/m**2``
- where ``m = mean(M.psi_deriv(sresid))`` and
- ``var_psiprime = var(M.psi_deriv(sresid))``
-
- H2 is defined as
- ``k * (1/df_resid) * sum(M.psi(sresid)**2) *scale**2/
- ((1/nobs)*sum(M.psi_deriv(sresid)))*W_inv``
-
- H3 is defined as
- ``1/k * (1/df_resid * sum(M.psi(sresid)**2)*scale**2 *
- (W_inv X.T X W_inv))``
-
- where `k` is defined as above and
- ``W_inv = (M.psi_deriv(sresid) exog.T exog)^(-1)``
-
- See the technical documentation for cleaner formulae.
- bcov_unscaled : array
- The usual p x p covariance matrix with scale set equal to 1. It
- is then just equivalent to normalized_cov_params.
- bse : array
- An array of the standard errors of the parameters. The standard
- errors are taken from the robust covariance matrix specified in the
- argument to fit.
- chisq : array
- An array of the chi-squared values of the paramter estimates.
- df_model
- See RLM.df_model
- df_resid
- See RLM.df_resid
- fittedvalues : array
- The linear predicted values. dot(exog, params)
- model : scikits.statsmodels.rlm.RLM
- A reference to the model instance
- nobs : float
- The number of observations n
- normalized_cov_params : array
- See RLM.normalized_cov_params
- params : array
- The coefficients of the fitted model
- pinv_wexog : array
- See RLM.pinv_wexog
- pvalues : array
- The p values associated with `tvalues`. Note that `tvalues` are assumed to be distributed
- standard normal rather than Student's t.
- resid : array
- The residuals of the fitted model. endog - fittedvalues
- scale : float
- The type of scale is determined in the arguments to the fit method in
- RLM. The reported scale is taken from the residuals of the weighted
- least squares in the last IRLS iteration if update_scale is True. If
- update_scale is False, then it is the scale given by the first OLS
- fit before the IRLS iterations.
- sresid : array
- The scaled residuals.
- tvalues : array
- The "t-statistics" of params. These are defined as params/bse where bse are taken
- from the robust covariance matrix specified in the argument to fit.
- weights : array
- The reported weights are determined by passing the scaled residuals
- from the last weighted least squares fit in the IRLS algortihm.
-
- See also
- --------
- scikits.statsmodels.model.LikelihoodModelResults
- """
-
-
- def __init__(self, model, params, normalized_cov_params, scale):
- super(RLMResults, self).__init__(model, params,
- normalized_cov_params, scale)
- self.model = model
- self.df_model = model.df_model
- self.df_resid = model.df_resid
- self.nobs = model.nobs
- self._cache = resettable_cache()
-
- #TODO: "pvals" should come from chisq on bse?
-
- @cache_readonly
- def fittedvalues(self):
- return np.dot(self.model.exog, self.params)
-
- @cache_readonly
- def resid(self):
- return self.model.endog - self.fittedvalues # before bcov
-
- @cache_readonly
- def sresid(self):
- return self.resid/self.scale
-
- @cache_readonly
- def bcov_unscaled(self):
- return self.cov_params(scale=1.)
-
- @cache_readonly
- def weights(self):
- return self.model.weights
-
- @cache_readonly
- def bcov_scaled(self):
- model = self.model
- m = np.mean(model.M.psi_deriv(self.sresid))
- var_psiprime = np.var(model.M.psi_deriv(self.sresid))
- k = 1 + (self.df_model+1)/self.nobs * var_psiprime/m**2
-
- if model.cov == "H1":
- return k**2 * (1/self.df_resid*\
- np.sum(model.M.psi(self.sresid)**2)*self.scale**2)\
- /((1/self.nobs*np.sum(model.M.psi_deriv(self.sresid)))**2)\
- *model.normalized_cov_params
- else:
- W = np.dot(model.M.psi_deriv(self.sresid)*model.exog.T,
- model.exog)
- W_inv = np.linalg.inv(W)
- # [W_jk]^-1 = [SUM(psi_deriv(Sr_i)*x_ij*x_jk)]^-1
- # where Sr are the standardized residuals
- if model.cov == "H2":
- # These are correct, based on Huber (1973) 8.13
- return k*(1/self.df_resid)*np.sum(\
- model.M.psi(self.sresid)**2)*self.scale**2\
- /((1/self.nobs)*np.sum(\
- model.M.psi_deriv(self.sresid)))*W_inv
- elif model.cov == "H3":
- return k**-1*1/self.df_resid*np.sum(\
- model.M.psi(self.sresid)**2)*self.scale**2\
- *np.dot(np.dot(W_inv, np.dot(model.exog.T,model.exog)),\
- W_inv)
-
- def t(self):
- """
- Deprecated method to return t-values. Use tvalues attribute instead.
- """
- import warnings
- warnings.warn("t will be removed in the next release. Use attribute "
- "tvalues instead", FutureWarning)
- return self.tvalues
-
- @cache_readonly
- def pvalues(self):
- return stats.norm.sf(np.abs(self.tvalues))*2
-
- @cache_readonly
- def bse(self):
- return np.sqrt(np.diag(self.bcov_scaled))
-
- @cache_readonly
- def chisq(self):
- return (self.params/self.bse)**2
-
- def summary(self, yname=None, xname=None, title=0, alpha=.05,
- return_fmt='text'):
- """
- This is for testing the new summary setup
- """
- from scikits.statsmodels.iolib.summary import (summary_top,
- summary_params, summary_return)
-
-## left = [(i, None) for i in (
-## 'Dependent Variable:',
-## 'Model type:',
-## 'Method:',
-## 'Date:',
-## 'Time:',
-## 'Number of Obs:',
-## 'df resid',
-## 'df model',
-## )]
- top_left = [('Dep. Variable:', None),
- ('Model:', None),
- ('Method:', ['IRLS']),
- ('Norm:', [self.fit_options['norm']]),
- ('Scale Est.:', [self.fit_options['scale_est']]),
- ('Cov Type:', [self.fit_options['cov']]),
- ('Date:', None),
- ('Time:', None),
- ('No. Iterations:', ["%d" % self.model.iteration]), #stale state?
- ]
- top_right = [('No. Observations:', None),
- ('Df Residuals:', None),
- ('Df Model:', None)
- ]
-
- if not title is None:
- title = "Robust linear Model Regression Results"
-
- #boiler plate
- from scikits.statsmodels.iolib.summary import Summary
- smry = Summary()
- smry.add_table_2cols(self, gleft=top_left, gright=top_right, #[],
- yname=yname, xname=xname, title=title)
- smry.add_table_params(self, yname=yname, xname=xname, alpha=.05,
- use_t=False)
-
- #diagnostic table is not used yet
-# smry.add_table_2cols(self, gleft=diagn_left, gright=diagn_right,
-# yname=yname, xname=xname,
-# title="")
-
-#add warnings/notes, added to text format only
- etext =[]
- wstr = \
-'''If the model instance has been used for another fit with different fit
-parameters, then the fit options might not be the correct ones anymore .'''
- etext.append(wstr)
-
- if etext:
- smry.add_extra_txt(etext)
-
- return smry
-
-class RLMResultsWrapper(lm.RegressionResultsWrapper):
- pass
-wrap.populate_wrapper(RLMResultsWrapper, RLMResults)
-
-if __name__=="__main__":
-#NOTE: This is to be removed
-#Delivery Time Data is taken from Montgomery and Peck
- import scikits.statsmodels.api as sm
-
-#delivery time(minutes)
- endog = np.array([16.68, 11.50, 12.03, 14.88, 13.75, 18.11, 8.00, 17.83,
- 79.24, 21.50, 40.33, 21.00, 13.50, 19.75, 24.00, 29.00, 15.35, 19.00,
- 9.50, 35.10, 17.90, 52.32, 18.75, 19.83, 10.75])
-
-#number of cases, distance (Feet)
- exog = np.array([[7, 3, 3, 4, 6, 7, 2, 7, 30, 5, 16, 10, 4, 6, 9, 10, 6,
- 7, 3, 17, 10, 26, 9, 8, 4], [560, 220, 340, 80, 150, 330, 110, 210, 1460,
- 605, 688, 215, 255, 462, 448, 776, 200, 132, 36, 770, 140, 810, 450, 635,
- 150]])
- exog = exog.T
- exog = sm.add_constant(exog)
-
-# model_ols = models.regression.OLS(endog, exog)
-# results_ols = model_ols.fit()
-
-# model_huber = RLM(endog, exog, M=norms.HuberT(t=2.))
-# results_huber = model_huber.fit(scale_est="stand_mad", update_scale=False)
-
-# model_ramsaysE = RLM(endog, exog, M=norms.RamsayE())
-# results_ramsaysE = model_ramsaysE.fit(update_scale=False)
-
-# model_andrewWave = RLM(endog, exog, M=norms.AndrewWave())
-# results_andrewWave = model_andrewWave.fit(update_scale=False)
-
-# model_hampel = RLM(endog, exog, M=norms.Hampel(a=1.7,b=3.4,c=8.5)) # convergence problems with scale changed, not with 2,4,8 though?
-# results_hampel = model_hampel.fit(update_scale=False)
-
-#######################
-### Stack Loss Data ###
-#######################
- from scikits.statsmodels.datasets.stackloss import load
- data = load()
- data.exog = sm.add_constant(data.exog)
-#############
-### Huber ###
-#############
-# m1_Huber = RLM(data.endog, data.exog, M=norms.HuberT())
-# results_Huber1 = m1_Huber.fit()
-# m2_Huber = RLM(data.endog, data.exog, M=norms.HuberT())
-# results_Huber2 = m2_Huber.fit(cov="H2")
-# m3_Huber = RLM(data.endog, data.exog, M=norms.HuberT())
-# results_Huber3 = m3_Huber.fit(cov="H3")
-##############
-### Hampel ###
-##############
-# m1_Hampel = RLM(data.endog, data.exog, M=norms.Hampel())
-# results_Hampel1 = m1_Hampel.fit()
-# m2_Hampel = RLM(data.endog, data.exog, M=norms.Hampel())
-# results_Hampel2 = m2_Hampel.fit(cov="H2")
-# m3_Hampel = RLM(data.endog, data.exog, M=norms.Hampel())
-# results_Hampel3 = m3_Hampel.fit(cov="H3")
-################
-### Bisquare ###
-################
-# m1_Bisquare = RLM(data.endog, data.exog, M=norms.TukeyBiweight())
-# results_Bisquare1 = m1_Bisquare.fit()
-# m2_Bisquare = RLM(data.endog, data.exog, M=norms.TukeyBiweight())
-# results_Bisquare2 = m2_Bisquare.fit(cov="H2")
-# m3_Bisquare = RLM(data.endog, data.exog, M=norms.TukeyBiweight())
-# results_Bisquare3 = m3_Bisquare.fit(cov="H3")
-
-
-##############################################
-# Huber's Proposal 2 scaling #
-##############################################
-
-################
-### Huber'sT ###
-################
- m1_Huber_H = RLM(data.endog, data.exog, M=norms.HuberT())
- results_Huber1_H = m1_Huber_H.fit(scale_est=scale.HuberScale())
-# m2_Huber_H
-# m3_Huber_H
-# m4 = RLM(data.endog, data.exog, M=norms.HuberT())
-# results4 = m1.fit(scale_est="Huber")
-# m5 = RLM(data.endog, data.exog, M=norms.Hampel())
-# results5 = m2.fit(scale_est="Huber")
-# m6 = RLM(data.endog, data.exog, M=norms.TukeyBiweight())
-# results6 = m3.fit(scale_est="Huber")
-
-
-
-
-# print """Least squares fit
-#%s
-#Huber Params, t = 2.
-#%s
-#Ramsay's E Params
-#%s
-#Andrew's Wave Params
-#%s
-#Hampel's 17A Function
-#%s
-#""" % (results_ols.params, results_huber.params, results_ramsaysE.params,
-# results_andrewWave.params, results_hampel.params)
-
diff --git a/statsmodels/scikits/statsmodels/robust/scale.py b/statsmodels/scikits/statsmodels/robust/scale.py
deleted file mode 100644
index 9564a3a..0000000
--- a/statsmodels/scikits/statsmodels/robust/scale.py
+++ /dev/null
@@ -1,253 +0,0 @@
-"""
-Support and standalone functions for Robust Linear Models
-
-References
-----------
-PJ Huber. 'Robust Statistics' John Wiley and Sons, Inc., New York, 1981.
-
-R Venables, B Ripley. 'Modern Applied Statistics in S'
- Springer, New York, 2002.
-"""
-
-import numpy as np
-from scipy.stats import norm as Gaussian
-import norms
-from scikits.statsmodels.tools import tools
-
-def mad(a, c=Gaussian.ppf(3/4.), axis=0): # c \approx .6745
- """
- The Median Absolute Deviation along given axis of an array
-
- Parameters
- ----------
- a : array-like
- Input array.
- c : float, optional
- The normalization constant. Defined as scipy.stats.norm.ppf(3/4.),
- which is approximately .6745.
- axis : int, optional
- The defaul is 0.
-
- Returns
- -------
- mad : float
- `mad` = median(abs(`a`))/`c`
- """
- a = np.asarray(a)
- return np.median((np.fabs(a))/c, axis=axis)
-
-def stand_mad(a, c=Gaussian.ppf(3/4.), axis=0):
- """
- The standardized Median Absolute Deviation along given axis of an array.
-
- Parameters
- ----------
- a : array-like
- Input array.
- c : float, optional
- The normalization constant. Defined as scipy.stats.norm.ppf(3/4.),
- which is approximately .6745.
- axis : int, optional
- The defaul is 0.
-
- Returns
- -------
- mad : float
- `mad` = median(abs(`a`-median(`a`))/`c`
- """
-
- a = np.asarray(a)
- d = np.median(a, axis = axis)
- d = tools.unsqueeze(d, axis, a.shape)
- return np.median(np.fabs(a - d)/c, axis = axis)
-
-class Huber(object):
- """
- Huber's proposal 2 for estimating location and scale jointly.
-
- Parameters
- ----------
- c : float, optional
- Threshold used in threshold for chi=psi**2. Default value is 1.5.
- tol : float, optional
- Tolerance for convergence. Default value is 1e-08.
- maxiter : int, optional0
- Maximum number of iterations. Default value is 30.
- norm : scikits.statsmodels.robust.norms.RobustNorm, optional
- A robust norm used in M estimator of location. If None,
- the location estimator defaults to a one-step
- fixed point version of the M-estimator using Huber's T.
-
- call
- Return joint estimates of Huber's scale and location.
-
- Examples
- --------
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
- >>> chem_data = np.array([2.20, 2.20, 2.4, 2.4, 2.5, 2.7, 2.8, 2.9, 3.03,
- ... 3.03, 3.10, 3.37, 3.4, 3.4, 3.4, 3.5, 3.6, 3.7, 3.7, 3.7, 3.7,
- ... 3.77, 5.28, 28.95])
- >>> sm.robust.scale.huber(chem_data)
- (array(3.2054980819923693), array(0.67365260010478967))
- """
-
- def __init__(self, c=1.5, tol=1.0e-08, maxiter=30, norm=None):
- self.c = c
- self.maxiter = maxiter
- self.tol = tol
- self.norm = norm
- tmp = 2 * Gaussian.cdf(c) - 1
- self.gamma = tmp + c**2 * (1 - tmp) - 2 * c * Gaussian.pdf(c)
-
- def __call__(self, a, mu=None, initscale=None, axis=0):
- """
- Compute Huber's proposal 2 estimate of scale, using an optional
- initial value of scale and an optional estimate of mu. If mu
- is supplied, it is not reestimated.
-
- Parameters
- ----------
- a : array
- 1d array
- mu : float or None, optional
- If the location mu is supplied then it is not reestimated.
- Default is None, which means that it is estimated.
- initscale : float or None, optional
- A first guess on scale. If initscale is None then the standardized
- median absolute deviation of a is used.
-
- Notes
- -----
- `Huber` minimizes the function
-
- sum(psi((a[i]-mu)/scale)**2)
-
- as a function of (mu, scale), where
-
- psi(x) = np.clip(x, -self.c, self.c)
- """
- a = np.asarray(a)
- if mu is None:
- n = a.shape[0] - 1
- mu = np.median(a, axis=axis)
- est_mu = True
- else:
- n = a.shape[0]
- mu = mu
- est_mu = False
-
- if initscale is None:
- scale = stand_mad(a, axis=axis)
- else:
- scale = initscale
- scale = tools.unsqueeze(scale, axis, a.shape)
- mu = tools.unsqueeze(mu, axis, a.shape)
- return self._estimate_both(a, scale, mu, axis, est_mu, n)
-
- def _estimate_both(self, a, scale, mu, axis, est_mu, n):
- """
- Estimate scale and location simultaneously with the following
- pseudo_loop:
-
- while not_converged:
- mu, scale = estimate_location(a, scale, mu), estimate_scale(a, scale, mu)
-
- where estimate_location is an M-estimator and estimate_scale implements
- the check used in Section 5.5 of Venables & Ripley
- """
- for _ in range(self.maxiter):
- # Estimate the mean along a given axis
- if est_mu:
- if self.norm is None:
- # This is a one-step fixed-point estimator
- # if self.norm == norms.HuberT
- # It should be faster than using norms.HuberT
- nmu = np.clip(a, mu-self.c*scale,
- mu+self.c*scale).sum(axis) / a.shape[axis]
- else:
- nmu = norms.estimate_location(a, scale, self.norm, axis, mu,
- self.maxiter, self.tol)
- else:
- # Effectively, do nothing
- nmu = mu.squeeze()
- nmu = tools.unsqueeze(nmu, axis, a.shape)
-
- subset = np.less_equal(np.fabs((a - mu)/scale), self.c)
- card = subset.sum(axis)
-
- nscale = np.sqrt(np.sum(subset * (a - nmu)**2, axis) \
- / (n * self.gamma - (a.shape[axis] - card) * self.c**2))
- nscale = tools.unsqueeze(nscale, axis, a.shape)
-
- test1 = np.alltrue(np.less_equal(np.fabs(scale - nscale),
- nscale * self.tol))
- test2 = np.alltrue(np.less_equal(np.fabs(mu - nmu), nscale*self.tol))
- if not (test1 and test2):
- mu = nmu; scale = nscale
- else:
- return nmu.squeeze(), nscale.squeeze()
- raise ValueError('joint estimation of location and scale failed to converge in %d iterations' % self.maxiter)
-
-huber = Huber()
-
-class HuberScale(object):
- """
- Huber's scaling for fitting robust linear models.
-
- Huber's scale is intended to be used as the scale estimate in the
- IRLS algorithm and is slightly different than the `Huber` class.
-
- Parameters
- ----------
- d : float, optional
- d is the tuning constant for Huber's scale. Default is 2.5
- tol : float, optional
- The convergence tolerance
- maxiter : int, optiona
- The maximum number of iterations. The default is 30.
-
- Methods
- -------
- call
- Return's Huber's scale computed as below
-
- Notes
- --------
- Huber's scale is the iterative solution to
-
- scale_(i+1)**2 = 1/(n*h)*sum(chi(r/sigma_i)*sigma_i**2
-
- where the Huber function is
-
- chi(x) = (x**2)/2 for \|x\| < d
- chi(x) = (d**2)/2 for \|x\| >= d
-
- and the Huber constant h = (n-p)/n*(d**2 + (1-d**2)*\
- scipy.stats.norm.cdf(d) - .5 - d*sqrt(2*pi)*exp(-0.5*d**2)
- """
- def __init__(self, d=2.5, tol=1e-08, maxiter=30):
- self.d = d
- self.tol = tol
- self.maxiter = maxiter
-
- def __call__(self, df_resid, nobs, resid):
- h = (df_resid)/nobs*(self.d**2 + (1-self.d**2)*\
- Gaussian.cdf(self.d)-.5 - self.d/(np.sqrt(2*np.pi))*\
- np.exp(-.5*self.d**2))
- s = stand_mad(resid)
- subset = lambda x: np.less(np.fabs(resid/x),self.d)
- chi = lambda s: subset(s)*(resid/s)**2/2+(1-subset(s))*(self.d**2/2)
- scalehist = [np.inf,s]
- niter = 1
- while (np.abs(scalehist[niter-1] - scalehist[niter])>self.tol \
- and niter < self.maxiter):
- nscale = np.sqrt(1/(nobs*h)*np.sum(chi(scalehist[-1]))*\
- scalehist[-1]**2)
- scalehist.append(nscale)
- niter += 1
- if niter == self.maxiter:
- raise ValueError("Huber's scale failed to converge")
- return scalehist[-1]
-
-hubers_scale = HuberScale()
diff --git a/statsmodels/scikits/statsmodels/robust/tests/__init__.py b/statsmodels/scikits/statsmodels/robust/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/robust/tests/results/__init__.py b/statsmodels/scikits/statsmodels/robust/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/robust/tests/results/results_rlm.py b/statsmodels/scikits/statsmodels/robust/tests/results/results_rlm.py
deleted file mode 100644
index 13b4b27..0000000
--- a/statsmodels/scikits/statsmodels/robust/tests/results/results_rlm.py
+++ /dev/null
@@ -1,396 +0,0 @@
-### RLM MODEL RESULTS ###
-
-import numpy as np
-
-def _shift_intercept(arr):
- """
- A convenience function to make the SAS covariance matrix
- compatible with statsmodels.rlm covariance
- """
- arr = np.asarray(arr)
- side = np.sqrt(len(arr))
- return np.roll(np.roll(arr.reshape(side,side),-1, axis =1), -1, axis=0)
-
-class Huber(object):
- """
- """
- def __init__(self):
- self.params = np.array([ 0.82937387, 0.92610818, -0.12784916,
- -41.02653105])
- self.bse = np.array([ 0.11118035, 0.3034081 , 0.12885259, 9.8073472 ])
- self.scale = 2.4407137948148447
- self.weights = np.array([ 1., 1., 0.7858871, 0.50494094, 1.,
- 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
- 0.36814106])
- self.resid = np.array([ 3.05027584, -2.07757332, 4.17721071,
- 6.50163171, -1.64615192, -2.57226011, -1.73127333, -0.73127333,
- -2.25476463, 0.48083217,1.63147461, 1.42973363, -2.26346951,
- -0.78323693, 2.26646556, 0.88291808, -0.83307835, 0.06186577,
- 0.26360675, 1.54306186, -8.91752986])
- self.df_model = 3
- self.df_resid = 17
- self.bcov_unscaled = np.array([[ 1.72887367e-03, -3.47079127e-03,
- -6.79080082e-04, 2.73387119e-02],
- [ -3.47079127e-03, 1.28754242e-02, 9.95952051e-07,
- -6.19611175e-02],
- [ -6.79080082e-04, 9.95952051e-07, 2.32216722e-03,
- -1.59355028e-01],
- [ 2.73387119e-02, -6.19611175e-02, -1.59355028e-01,
- 1.34527267e+01]]) # From R
- self.fittedvalues = np.array([ 38.94972416, 39.07757332, 32.82278929,
- 21.49836829,
- 19.64615192, 20.57226011, 20.73127333, 20.73127333,
- 17.25476463, 13.51916783, 12.36852539, 11.57026637,
- 13.26346951, 12.78323693, 5.73353444, 6.11708192,
- 8.83307835, 7.93813423, 8.73639325, 13.45693814,
- 23.91752986])
- self.tvalues = np.array([ 7.45971657, 3.0523516 , -0.99221261,
- -4.18324448])
- # from R this is equivalent to
-# self.res1.params/np.sqrt(np.diag(self.res1.bcov_scaled))
-
-# def conf_int(self): # method to be consistent with sm
-# return
-
-
-
- # The below are taken from SAS
-
- huber_h1 = [95.8813, 0.19485, -0.44161, -1.13577, 0.1949, 0.01232,
- -0.02474, -0.00484, -0.4416, -0.02474, 0.09177, 0.00001, -1.1358,
- -0.00484, 0.00001, 0.01655]
- h1 = _shift_intercept(huber_h1)
-
- huber_h2 = [82.6191, 0.07942, -0.23915, -0.95604, 0.0794, 0.01427,
- -0.03013, -0.00344, -0.2392, -0.03013, 0.10391, -0.00166, -0.9560,
- -0.00344, -0.00166, 0.01392]
- h2 = _shift_intercept(huber_h2)
-
- huber_h3 = [70.1633, -0.04533, -0.00790, -0.78618, -0.0453, 0.01656,
- -0.03608, -0.00203, -0.0079, -0.03608, 0.11610, -0.00333, -0.7862,
- -0.00203, -0.00333, 0.01138]
- h3 = _shift_intercept(huber_h3)
-
-class Hampel(object):
- """
- """
- def __init__(self):
- self.params = np.array([ 0.74108304, 1.22507934, -0.14552506,
- -40.47473236])
- self.bse = np.array([ 0.13482596, 0.36793632, 0.1562567 ,
- 11.89315426])
- self.scale = 3.0882646556217064
- self.weights = np.array([ 1., 1., 1., 1., 1., 1., 1., 1., 1.,
- 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0.80629719])
- self.resid = np.array([ 3.06267708, -2.08284798, 4.36377602,
- 5.78635972, -1.7634816 ,
- -2.98856094, -2.34048993, -1.34048993, -3.02422878, 1.08249252,
- 2.39221804, 2.47177232, -1.62645737, -0.25076107, 2.32088237,
- 0.88430719, -1.37812296, -0.35944755, -0.43900184, 1.40555003,
- -7.65988702])
- self.df_model = 3
- self.df_resid = 17
- self.bcov_unscaled = np.array([[ 1.72887367e-03, -3.47079127e-03,
- -6.79080082e-04,
- 2.73387119e-02],
- [ -3.47079127e-03, 1.28754242e-02, 9.95952051e-07,
- -6.19611175e-02],
- [ -6.79080082e-04, 9.95952051e-07, 2.32216722e-03,
- -1.59355028e-01],
- [ 2.73387119e-02, -6.19611175e-02, -1.59355028e-01,
- 1.34527267e+01]])
- self.fittedvalues = np.array([ 38.93732292, 39.08284798,
- 32.63622398, 22.21364028,
- 19.7634816 , 20.98856094, 21.34048993, 21.34048993,
- 18.02422878, 12.91750748, 11.60778196, 10.52822768,
- 12.62645737, 12.25076107, 5.67911763, 6.11569281,
- 9.37812296, 8.35944755, 9.43900184, 13.59444997,
- 22.65988702])
- self.tvalues = np.array([ 5.49659011, 3.32959607, -0.93132046,
- -3.40319578])
-
- hampel_h1 = [141.309, 0.28717, -0.65085, -1.67388, 0.287, 0.01816,
- -0.03646, -0.00713, -0.651, -0.03646, 0.13524, 0.00001, -1.674,
- -0.00713, 0.00001, 0.02439]
- h1 = _shift_intercept(hampel_h1)
-
- hampel_h2 = [135.248, 0.18207, -0.36884, -1.60217, 0.182, 0.02120,
- -0.04563, -0.00567, -0.369, -0.04563, 0.15860, -0.00290, -1.602,
- -0.00567, -0.00290, 0.02329]
- h2 = _shift_intercept(hampel_h2)
-
- hampel_h3 = [128.921, 0.05409, -0.02445, -1.52732, 0.054, 0.02514,
- -0.05732, -0.00392, -0.024, -0.05732, 0.18871, -0.00652, -1.527,
- -0.00392, -0.00652, 0.02212]
- h3 = _shift_intercept(hampel_h3)
-
-class BiSquare(object):
- def __init__(self):
- self.params = np.array([ 0.9275471 , 0.65073222, -0.11233103,
- -42.28525369])
- self.bse = np.array([ 0.10805398, 0.29487634, 0.12522928,
- 9.5315672 ])
- self.scale = 2.2818858795649497
- self.weights = np.array([ 0.89283149, 0.88496132, 0.79040651,
- 0.3358111 , 0.94617358, 0.90040725, 0.96630596, 0.99729171,
- 0.94968061, 0.99900087, 0.98959903, 0.99831448, 0.84731833,
- 0.96455873, 0.91767906, 0.98724523, 0.99762848, 0.99694419,
- 0.98650731, 0.95897484, 0.00222999])
- self.resid = np.array([ 2.50917802, -2.60315301, 3.56070896,
- 6.93256033, -1.76597524, -2.41670746, -1.39345348, -0.39345348,
- -1.70651907, -0.23917521, 0.77180408, 0.31020526,
- -3.01451315, -1.42960401, 2.19218084, 0.85518774,
- -0.36817892, 0.4181383 , 0.87973712, 1.53911661,
- -10.43556344])
- self.df_model = 3
- self.df_resid = 17
- self.bcov_unscaled = np.array([[ 1.72887367e-03, -3.47079127e-03,
- -6.79080082e-04, 2.73387119e-02],
- [ -3.47079127e-03, 1.28754242e-02, 9.95952051e-07,
- -6.19611175e-02],
- [ -6.79080082e-04, 9.95952051e-07, 2.32216722e-03,
- -1.59355028e-01],
- [ 2.73387119e-02, -6.19611175e-02, -1.59355028e-01,
- 1.34527267e+01]])
- self.fittedvalues = np.array([ 39.49082198, 39.60315301, 33.43929104,
- 21.06743967,
- 19.76597524, 20.41670746, 20.39345348, 20.39345348,
- 16.70651907, 14.23917521, 13.22819592, 12.68979474,
- 14.01451315, 13.42960401, 5.80781916, 6.14481226,
- 8.36817892, 7.5818617 , 8.12026288, 13.46088339,
- 25.43556344])
- self.tvalues = np.array([ 8.58410823, 2.20679698, -0.8970029 ,
- -4.43633799])
-
-
- bisquare_h1 = [90.3354, 0.18358, -0.41607, -1.07007, 0.1836, 0.01161,
- -0.02331, -0.00456, -0.4161, -0.02331, 0.08646, 0.00001, -1.0701,
- -0.00456, 0.00001, 0.01559]
- h1 = _shift_intercept(bisquare_h1)
-
- bisquare_h2 = [67.82521, 0.091288, -0.29038, -0.78124, 0.091288,
- 0.013849, -0.02914, -0.00352, -0.29038, -0.02914, 0.101088, -0.001,
- -0.78124, -0.00352, -0.001, 0.011766]
- h2 = _shift_intercept(bisquare_h2)
-
- bisquare_h3 = [48.8983, 0.000442, -0.15919, -0.53523, 0.000442,
- 0.016113, -0.03461, -0.00259, -0.15919, -0.03461, 0.112728,
- -0.00164, -0.53523, -0.00259, -0.00164, 0.008414]
- h3 = _shift_intercept(bisquare_h3)
-
-class Andrews(object):
- def __init__(self):
- self.params = [0.9282, 0.6492, -.1123,-42.2930]
- self.bse = [.1061, .2894, .1229, 9.3561]
- self.scale = 2.2801
- self.df_model = 3.
- self.df_resid = 17.
-# self.bcov_unscaled = [] # not given as part of SAS
- self.resid = [2.503338458, -2.608934536, 3.5548678338, 6.9333705014,
- -1.768179527, -2.417404513, -1.392991531, -0.392991531,
- -1.704759385,-0.244545418, 0.7659115325, 0.3028635237,
- -3.019999429,-1.434221475,2.1912017882, 0.8543828047,
- -0.366664104,0.4192468573,0.8822948661,1.5378731634,
- -10.44592783]
-
- self.sresids = [1.0979293816, -1.144242351, 1.5591155202, 3.040879735,
- -0.775498914, -1.06023995, -0.610946684, -0.172360612,
- -0.747683723, -0.107254214, 0.3359181307, 0.1328317233,
- -1.324529688, -0.629029563, 0.9610305856, 0.3747203984,
- -0.160813769, 0.1838758324, 0.3869622398, 0.6744897502,
- -4.581438458]
-
- self.weights = [0.8916509101, 0.8826581922, 0.7888664106, 0.3367252734,
- 0.9450252405, 0.8987321912, 0.9656622, 0.9972406688,
- 0.948837669, 0.9989310017, 0.9895434667, 0.998360628,
- 0.8447116551, 0.9636222149, 0.916330067, 0.9869982597,
- 0.9975977354, 0.9968600162, 0.9861384742, 0.9582432444, 0]
-
- def conf_int(self): # method to be consistent with sm
- return [(0.7203,1.1360),(.0819,1.2165),(-.3532,.1287),
- (-60.6305,-23.9555)]
-
-
-
- andrews_h1 = [87.5357, 0.177891, -0.40318, -1.03691, 0.177891, 0.01125,
- -0.02258, -0.00442, -0.40318, -0.02258, 0.083779, 6.481E-6,
- -1.03691, -0.00442, 6.481E-6, 0.01511]
- h1 = _shift_intercept(andrews_h1)
-
- andrews_h2 = [66.50472, 0.10489, -0.3246, -0.76664, 0.10489, 0.012786,
- -0.02651, -0.0036, -0.3246, -0.02651, 0.09406, -0.00065,
- -0.76664, -0.0036, -0.00065, 0.011567]
- h2 = _shift_intercept(andrews_h2)
-
- andrews_h3 = [48.62157, 0.034949, -0.24633, -0.53394, 0.034949, 0.014088,
- -0.02956, -0.00287, -0.24633, -0.02956, 0.100628, -0.00104,
- -0.53394, -0.00287, -0.00104, 0.008441]
- h3 = _shift_intercept(andrews_h3)
-
-
-
-
-### RLM Results with Huber's Proposal 2 ###
-### Obtained from SAS ###
-
-class HuberHuber(object):
- def __init__(self):
- self.h1 = [114.4936, 0.232675, -0.52734, -1.35624, 0.232675, 0.014714,
- -0.02954, -0.00578, -0.52734, -0.02954, 0.10958, 8.476E-6,
- -1.35624, -0.00578, 8.476E-6, 0.019764]
- self.h1 = _shift_intercept(self.h1)
- self.h2 = [103.2876, 0.152602, -0.33476, -1.22084, 0.152602, 0.016904,
- -0.03766, -0.00434, -0.33476, -0.03766, 0.132043, -0.00214,
- -1.22084, -0.00434, -0.00214, 0.017739]
- self.h2 = _shift_intercept(self.h2)
- self.h3 = [ 91.7544, 0.064027, -0.11379, -1.08249, 0.064027, 0.019509,
- -0.04702, -0.00278, -0.11379, -0.04702, 0.157872, -0.00462,
- -1.08249, -0.00278, -0.00462, 0.015677]
- self.h3 = _shift_intercept(self.h3)
- self.resid = [2.909155172, -2.225912162, 4.134132661, 6.163172632,
- -1.741815737, -2.789321552, -2.02642336, -1.02642336,
- -2.593402734, 0.698655, 1.914261011, 1.826699492, -2.031210331,
- -0.592975466, 2.306098648, 0.900896645, -1.037551854,
- -0.092080512, -0.004518993, 1.471737448, -8.498372406]
- self.sresids = [0.883018497, -0.675633129, 1.25483702, 1.870713355,
- -0.528694904, -0.84664529, -0.615082113, -0.311551209,
- -0.787177874, 0.212063383, 0.581037374, 0.554459746,
- -0.616535106, -0.179986379, 0.699972205, 0.273449972,
- -0.314929051, -0.027949281, -0.001371654, 0.446717797,
- -2.579518651]
- self.weights = [1, 1, 1, 0.718977066, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 0.52141511]
-
- self.params = (.7990,1.0475,-0.1351,-41.0892)
- self.bse = (.1213,.3310,.1406,10.7002)
- self.scale = 3.2946
- self.df_model = 3
- self.df_resid = 17
-
- def conf_int(self): # method for consistency with sm
- return [(0.5612,1.0367),(.3987,1.6963),
- (-.4106,.1405),(-62.0611,-20.1172)]
-
-
-
-class HampelHuber(object):
- def __init__(self):
- self.h1 = [147.4727, 0.299695, -0.67924, -1.7469, 0.299695, 0.018952,
- -0.03805, -0.00744, -0.67924, -0.03805, 0.141144, 0.000011,
- -1.7469, -0.00744, 0.000011, 0.025456]
- self.h1 = _shift_intercept(self.h1)
- self.h2 = [141.148, 0.190007, -0.38493, -1.67206, 0.190007, 0.02213,
- -0.04762, -0.00592, -0.38493, -0.04762, 0.165518, -0.00303,
- -1.67206, -0.00592, -0.00303, 0.024301]
- self.h2 = _shift_intercept(self.h2)
- self.h3 = [134.5444, 0.05645, -0.02552, -1.59394, 0.05645, 0.026232,
- -0.05982, -0.00409, -0.02552, -0.05982, 0.196946, -0.0068,
- -1.59394, -0.00409, -0.0068, 0.023083]
- self.h3 = _shift_intercept(self.h3)
- self.resid = [3.125725599, -2.022218392, 4.434082972, 5.753880172,
- -1.744479058, -2.995299443, -2.358455878, -1.358455878,
- -3.068281354, 1.150212629, 2.481708553, 2.584584946,
- -1.553899388, -0.177335865, 2.335744732, 0.891912757,
- -1.43012351, -0.394515569, -0.497391962, 1.407968887,
- -7.505098501]
- self.sresids = [0.952186413, -0.616026205, 1.350749906, 1.752798302,
- -0.531418771, -0.912454834, -0.718453867, -0.413824947,
- -0.934687235, 0.350388031, 0.756000196, 0.787339321,
- -0.473362692, -0.054021633, 0.711535395, 0.27170242,
- -0.43565698, -0.120180852, -0.151519976, 0.428908041,
- -2.28627005]
- self.weights = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 0.874787298]
-
- self.params = (.7318,1.2508,-0.1479,-40.2712)
- self.bse = (.1377, .3757, .1596, 12.1438)
- self.scale = 3.2827
- self.df_model = 3
- self.df_resid = 17
-
- def conf_int(self):
- return [(0.4619,1.0016),(.5145,1.9872),
- (-.4607,.1648),(-64.0727,-16.4697)]
-
-class BisquareHuber(object):
- def __init__(self):
- self.h1 = [129.9556, 0.264097, -0.59855, -1.5394, 0.264097,
- 0.016701, -0.03353, -0.00656, -0.59855, -0.03353,
- 0.124379, 9.621E-6, -1.5394, -0.00656, 9.621E-6, 0.022433]
- self.h1 = _shift_intercept(self.h1)
- self.h2 = [109.7685, 0.103038, -0.25926, -1.28355, 0.103038, 0.0214,
- -0.04688, -0.00453, -0.25926, -0.04688, 0.158535, -0.00327,
- -1.28355, -0.00453, -0.00327, 0.018892]
- self.h2 = _shift_intercept(self.h2)
- self.h3 = [91.80527, -0.09171, 0.171716, -1.05244, -0.09171,
- 0.027999, -0.06493, -0.00223, 0.171716, -0.06493, 0.203254,
- -0.0071, -1.05244, -0.00223, -0.0071, 0.015584]
- self.h3 = _shift_intercept(self.h3)
- self.resid = [3.034895447, -2.09863887, 4.229870063, 6.18871385,
- -1.715906134, -2.763596142, -2.010080245, -1.010080245,
- -2.590747917, 0.712961901, 1.914770759, 1.82892645, -2.019969464,
- -0.598781979, 2.260467209, 0.859864256, -1.057306197, -0.122565974,
- -0.036721665, 1.471074632, -8.432085298]
- self.sresids = [0.918227061, -0.634956635, 1.279774287, 1.872435025,
- -0.519158394, -0.836143718, -0.608162656, -0.305606249, -0.78384738, 0.215711191, 0.579326161, 0.553353415, -0.611154703, -0.181165324,
- 0.683918836, 0.26015744, -0.319894764, -0.037083121, -0.011110375,
- 0.445083055, -2.551181429]
- self.weights = [0.924649089, 0.963600796, 0.856330585, 0.706048833,
- 0.975591792, 0.937309703, 0.966582366, 0.991507994, 0.944798311,
- 0.995764589, 0.969652425, 0.972293856, 0.966255569, 0.997011618,
- 0.957833493, 0.993842376, 0.990697247, 0.9998747, 0.999988752,
- 0.982030803, 0.494874977]
- self.params = (.7932, 1.0477, -0.1335, -40.8949)
- self.bse = (.1292, .3527, .1498, 11.3998)
- self.scale = 3.3052
- self.df_model = 3
- self.df_resid = 17
-
- def conf_int(self):
- return [(0.5399,1.0465),(.3565,1.7389),
- (-.4271,.1600),(-63.2381,-18.5517)]
-
-
-
-class AndrewsHuber(object):
- def __init__(self):
- self.h1 = [129.9124, 0.264009, -0.59836, -1.53888, 0.264009,
- 0.016696, -0.03352, -0.00656, -0.59836, -0.03352, 0.124337,
- 9.618E-6, -1.53888, -0.00656, 9.618E-6, 0.022425]
- self.h1 = _shift_intercept(self.h1)
- self.h2 = [109.7595, 0.105022, -0.26535, -1.28332, .105022, 0.021321,
- -0.04664, -0.00456, -0.26535, -0.04664, 0.157885, -0.00321,
- -1.28332, -0.00456, -0.00321, 0.018895]
- self.h2 = _shift_intercept(self.h2)
- self.h3 = [91.82518, -0.08649, 0.155965, -1.05238, -0.08649, 0.027785,
- -0.06427, -0.0023, 0.155965, -0.06427, 0.201544, -0.00693,
- -1.05238, -0.0023, -0.00693, 0.015596]
- self.h3 = _shift_intercept(self.h3)
- self.resid = [3.040515104, -2.093093543, 4.235081748, 6.188729166,
- -1.714119676, -2.762695255, -2.009618953, -1.009618953,
- -2.591649784, 0.715967584, 1.918445405, 1.833412337,
- -2.016815123, -0.595695587, 2.260536347, 0.859710406,
- -1.059386228, -0.1241257, -0.039092633, 1.471556455,
- -8.424624872]
- self.sresids = [0.919639919, -0.633081011, 1.280950793, 1.871854667,
- -0.518455862, -0.835610004, -0.607833129, -0.305371248,
- -0.783875269, 0.216552902, 0.580256606, 0.554537345,
- -0.610009696, -0.180175208, 0.683726076, 0.260029627,
- -0.320423952, -0.037543293, -0.011824031, 0.445089734,
- -2.548127888]
- self.weights = [0.923215335, 0.963157359, 0.854300342, 0.704674258,
- 0.975199805, 0.936344742, 0.9660077, 0.991354016, 0.943851708,
- 0.995646409, 0.968993767, 0.971658421, 0.965766352, 0.99698502,
- 0.957106815, 0.993726436, 0.990483134, 0.999868981, 0.999987004,
- 0.981686004, 0.496752113]
- self.params = (.7928, 1.0486, -0.1336, -40.8818)
- self.bse = (.1292, .3526, .1498, 11.3979)
- self.scale = 3.3062
- self.df_model = 3
- self.df_resid = 17
-
- def conf_int(self):
- return [(0.5395,1.0460),(.3575,1.7397),
- (-.4271,.1599),(-63.2213,-18.5423)]
-
-
diff --git a/statsmodels/scikits/statsmodels/robust/tests/test_rlm.py b/statsmodels/scikits/statsmodels/robust/tests/test_rlm.py
deleted file mode 100644
index ecc0648..0000000
--- a/statsmodels/scikits/statsmodels/robust/tests/test_rlm.py
+++ /dev/null
@@ -1,260 +0,0 @@
-"""
-Test functions for sm.rlm
-"""
-
-from numpy.testing import *
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.robust.robust_linear_model import RLM
-from nose import SkipTest
-
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-
-class CheckRlmResults(object):
- '''
- res2 contains results from Rmodelwrap or were obtained from a statistical
- packages such as R, Stata, or SAS and written to results.results_rlm
-
- Covariance matrices were obtained from SAS and are imported from
- results.results_rlm
- '''
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_4)
-
- decimal_standarderrors = DECIMAL_4
- def test_standarderrors(self):
- assert_almost_equal(self.res1.bse, self.res2.bse,
- self.decimal_standarderrors)
-
-#TODO: get other results from SAS, though if it works for one...
- def test_confidenceintervals(self):
- if not hasattr(self.res2, 'conf_int'):
- raise SkipTest("Results from R")
- else:
- assert_almost_equal(self.res1.conf_int(), self.res2.conf_int(),
- DECIMAL_4)
-
- decimal_scale = DECIMAL_4
- def test_scale(self):
- assert_almost_equal(self.res1.scale, self.res2.scale,
- self.decimal_scale)
-
- def test_weights(self):
- assert_almost_equal(self.res1.weights, self.res2.weights, DECIMAL_4)
-
- def test_residuals(self):
- assert_almost_equal(self.res1.resid, self.res2.resid, DECIMAL_4)
-
- def test_degrees(self):
- assert_almost_equal(self.res1.model.df_model, self.res2.df_model,
- DECIMAL_4)
- assert_almost_equal(self.res1.model.df_resid, self.res2.df_resid,
- DECIMAL_4)
-
- def test_bcov_unscaled(self):
- if not hasattr(self.res2, 'bcov_unscaled'):
- raise SkipTest("No unscaled cov matrix from SAS")
- else:
- assert_almost_equal(self.res1.bcov_unscaled,
- self.res2.bcov_unscaled, DECIMAL_4)
-
- decimal_bcov_scaled = DECIMAL_4
- def test_bcov_scaled(self):
- assert_almost_equal(self.res1.bcov_scaled, self.res2.h1,
- self.decimal_bcov_scaled)
- assert_almost_equal(self.res1.h2, self.res2.h2,
- self.decimal_bcov_scaled)
- assert_almost_equal(self.res1.h3, self.res2.h3,
- self.decimal_bcov_scaled)
-
-#TODO: figure out how to handle in results
-# def test_tvalues(self):
-# assert_almost_equal(self.res1.params/np.sqrt(np.diag(res1.bcov_scaled)),
-# res2.tvalues)
-
-class TestRlm(CheckRlmResults):
- from scikits.statsmodels.datasets.stackloss import load
- data = load() # class attributes for subclasses
- data.exog = sm.add_constant(data.exog)
- def __init__(self):
- # Test precisions
- self.decimal_standarderrors = DECIMAL_1
- self.decimal_scale = DECIMAL_3
-
- results = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit() # default M
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H2").bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H3").bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
-
- def setup(self):
-# r.library('MASS')
-# self.res2 = RModel(self.data.endog, self.data.exog,
-# r.rlm, psi="psi.huber")
- from results.results_rlm import Huber
- self.res2 = Huber()
-
-class TestHampel(TestRlm):
- def __init__(self):
- # Test precisions
- self.decimal_standarderrors = DECIMAL_2
- self.decimal_scale = DECIMAL_3
- self.decimal_bcov_scaled = DECIMAL_3
-
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.Hampel()).fit()
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.Hampel()).fit(cov="H2").bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.Hampel()).fit(cov="H3").bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
-# self.res2 = RModel(self.data.endog[:,None], self.data.exog,
-# r.rlm, psi="psi.hampel") #, init="lts")
- from results.results_rlm import Hampel
- self.res2 = Hampel()
-
-
-
-class TestRlmBisquare(TestRlm):
- def __init__(self):
- # Test precisions
- self.decimal_standarderrors = DECIMAL_1
-
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.TukeyBiweight()).fit()
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.TukeyBiweight()).fit(cov=\
- "H2").bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.TukeyBiweight()).fit(cov=\
- "H3").bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
-# self.res2 = RModel(self.data.endog, self.data.exog,
-# r.rlm, psi="psi.bisquare")
- from results.results_rlm import BiSquare
- self.res2 = BiSquare()
-
-
-class TestRlmAndrews(TestRlm):
- def __init__(self):
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit()
- h2 = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit(cov=\
- "H2").bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit(cov=\
- "H3").bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
- from results.results_rlm import Andrews
- self.res2 = Andrews()
-
-### tests with Huber scaling
-
-class TestRlmHuber(CheckRlmResults):
- from scikits.statsmodels.datasets.stackloss import load
- data = load()
- data.exog = sm.add_constant(data.exog)
- def __init__(self):
- results = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit(scale_est=\
- sm.robust.scale.HuberScale())
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H2",
- scale_est=sm.robust.scale.HuberScale()).bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.HuberT()).fit(cov="H3",
- scale_est=sm.robust.scale.HuberScale()).bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
- from results.results_rlm import HuberHuber
- self.res2 = HuberHuber()
-
-class TestHampelHuber(TestRlm):
- def __init__(self):
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.Hampel()).fit(scale_est=\
- sm.robust.scale.HuberScale())
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.Hampel()).fit(cov="H2",
- scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.Hampel()).fit(cov="H3",
- scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
- from results.results_rlm import HampelHuber
- self.res2 = HampelHuber()
-
-class TestRlmBisquareHuber(TestRlm):
- def __init__(self):
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.TukeyBiweight()).fit(\
- scale_est=\
- sm.robust.scale.HuberScale())
- h2 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.TukeyBiweight()).fit(cov=\
- "H2", scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,\
- M=sm.robust.norms.TukeyBiweight()).fit(cov=\
- "H3", scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
- from results.results_rlm import BisquareHuber
- self.res2 = BisquareHuber()
-
-class TestRlmAndrewsHuber(TestRlm):
- def __init__(self):
- results = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit(scale_est=\
- sm.robust.scale.HuberScale())
- h2 = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit(cov=\
- "H2", scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- h3 = RLM(self.data.endog, self.data.exog,
- M=sm.robust.norms.AndrewWave()).fit(cov=\
- "H3", scale_est=\
- sm.robust.scale.HuberScale()).bcov_scaled
- self.res1 = results
- self.res1.h2 = h2
- self.res1.h3 = h3
-
- def setup(self):
- from results.results_rlm import AndrewsHuber
- self.res2 = AndrewsHuber()
-
-if __name__=="__main__":
- run_module_suite()
diff --git a/statsmodels/scikits/statsmodels/robust/tests/test_scale.py b/statsmodels/scikits/statsmodels/robust/tests/test_scale.py
deleted file mode 100644
index cc74525..0000000
--- a/statsmodels/scikits/statsmodels/robust/tests/test_scale.py
+++ /dev/null
@@ -1,116 +0,0 @@
-"""
-Test functions for models.robust.scale
-"""
-
-import numpy as np
-from numpy.random import standard_normal
-from numpy.testing import *
-
-# Example from Section 5.5, Venables & Ripley (2002)
-
-import scikits.statsmodels.robust.scale as scale
-
-DECIMAL = 4
-#TODO: Can replicate these tests using stackloss data and R if this
-# data is a problem
-class TestChem(object):
- def __init__(self):
- self.chem = np.array([2.20, 2.20, 2.4, 2.4, 2.5, 2.7, 2.8, 2.9, 3.03,
- 3.03, 3.10, 3.37, 3.4, 3.4, 3.4, 3.5, 3.6, 3.7, 3.7, 3.7, 3.7,
- 3.77, 5.28, 28.95])
-
- def test_mean(self):
- assert_almost_equal(np.mean(self.chem), 4.2804, DECIMAL)
-
- def test_median(self):
- assert_almost_equal(np.median(self.chem), 3.385, DECIMAL)
-
- def test_stand_mad(self):
- assert_almost_equal(scale.stand_mad(self.chem), 0.52632, DECIMAL)
-
- def test_huber_scale(self):
- assert_almost_equal(scale.huber(self.chem)[0], 3.20549, DECIMAL)
-
- def test_huber_location(self):
- assert_almost_equal(scale.huber(self.chem)[1], 0.67365, DECIMAL)
-
- def test_huber_huberT(self):
- n = scale.norms.HuberT()
- n.t = 1.5
- h = scale.Huber(norm=n)
- assert_almost_equal(scale.huber(self.chem)[0], h(self.chem)[0], DECIMAL)
- assert_almost_equal(scale.huber(self.chem)[1], h(self.chem)[1], DECIMAL)
-
- def test_huber_Hampel(self):
- hh = scale.Huber(norm=scale.norms.Hampel())
- assert_almost_equal(hh(self.chem)[0], 3.17434, DECIMAL)
- assert_almost_equal(hh(self.chem)[1], 0.66782, DECIMAL)
-
-class TestMad(object):
- def __init__(self):
- np.random.seed(54321)
- self.X = standard_normal((40,10))
-
- def test_stand_mad(self):
- m = scale.stand_mad(self.X)
- assert_equal(m.shape, (10,))
-
- def test_mad(self):
- n = scale.mad(self.X)
- assert_equal(n.shape, (10,))
-
-class TestMadAxes():
- def __init__(self):
- np.random.seed(54321)
- self.X = standard_normal((40,10,30))
-
- def test_axis0(self):
- m = scale.stand_mad(self.X, axis=0)
- assert_equal(m.shape, (10,30))
-
- def test_axis1(self):
- m = scale.stand_mad(self.X, axis=1)
- assert_equal(m.shape, (40,30))
-
- def test_axis2(self):
- m = scale.stand_mad(self.X, axis=2)
- assert_equal(m.shape, (40,10))
-
- def test_axisneg1(self):
- m = scale.stand_mad(self.X, axis=-1)
- assert_equal(m.shape, (40,10))
-
-class TestHuber():
- def __init__(self):
- np.random.seed(54321)
- self.X = standard_normal((40,10))
-
- def basic_functionality(self):
- h = scale.Huber(maxiter=100)
- m, s = h(self.X)
- assert_equal(m.shape, (10,))
-
-class TestHuberAxes(object):
- def __init__(self):
- np.random.seed(54321)
- self.X = standard_normal((40,10,30))
- self.h = scale.Huber(maxiter=1000, tol=1.0e-05)
-
- def test_default(self):
- m, s = self.h(self.X, axis=0)
- assert_equal(m.shape, (10,30))
-
- def test_axis1(self):
- m, s = self.h(self.X, axis=1)
- assert_equal(m.shape, (40,30))
-
- def test_axis2(self):
- m, s = self.h(self.X, axis=2)
- assert_equal(m.shape, (40,10))
-
- def test_axisneg1(self):
- m, s = self.h(self.X, axis=-1)
- assert_equal(m.shape, (40,10))
-
-if __name__=="__main__":
- run_module_suite()
diff --git a/statsmodels/scikits/statsmodels/sandbox/__init__.py b/statsmodels/scikits/statsmodels/sandbox/__init__.py
deleted file mode 100644
index ab9ae16..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-'''This is sandbox code
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/archive/__init__.py b/statsmodels/scikits/statsmodels/sandbox/archive/__init__.py
deleted file mode 100644
index fa097fc..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/archive/__init__.py
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-import numpy as np
-
-
-#copied/moved from sandbox/tsa/example_arma.py
-def plotacf(ax, corr, lags=None, usevlines=True, **kwargs):
- """
- Plot the auto or cross correlation.
- lags on horizontal and correlations on vertical axis
-
- Note: adjusted from matplotlib's pltxcorr
-
- Parameters
- ----------
- ax : matplotlib axis or plt
- ax can be matplotlib.pyplot or an axis of a figure
- lags : array or None
- array of lags used on horizontal axis,
- if None, then np.arange(len(corr)) is used
- corr : array
- array of values used on vertical axis
- usevlines : boolean
- If true, then vertical lines and markers are plotted. If false,
- only 'o' markers are plotted
- **kwargs : optional parameters for plot and axhline
- these are directly passed on to the matplotlib functions
-
- Returns
- -------
- a : matplotlib.pyplot.plot
- contains markers
- b : matplotlib.collections.LineCollection
- returned only if vlines is true, contains vlines
- c : instance of matplotlib.lines.Line2D
- returned only if vlines is true, contains axhline ???
-
- Data are plotted as ``plot(lags, c, **kwargs)``
-
- The default *linestyle* is *None* and the default *marker* is
- 'o', though these can be overridden with keyword args.
-
- If *usevlines* is *True*:
-
- :func:`~matplotlib.pyplot.vlines`
- rather than :func:`~matplotlib.pyplot.plot` is used to draw
- vertical lines from the origin to the xcorr. Otherwise the
- plotstyle is determined by the kwargs, which are
- :class:`~matplotlib.lines.Line2D` properties.
-
- See Also
- --------
-
- :func:`~matplotlib.pyplot.xcorr`
- :func:`~matplotlib.pyplot.acorr`
- mpl_examples/pylab_examples/xcorr_demo.py
-
- """
-
- if lags is None:
- lags = np.arange(len(corr))
- else:
- if len(lags) != len(corr):
- raise ValueError('lags and corr must be equal length')
-
- if usevlines:
- b = ax.vlines(lags, [0], corr, **kwargs)
- c = ax.axhline(**kwargs)
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a = ax.plot(lags, corr, **kwargs)
- else:
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a, = ax.plot(lags, corr, **kwargs)
- b = c = None
- return a, b, c
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/archive/linalg_covmat.py b/statsmodels/scikits/statsmodels/sandbox/archive/linalg_covmat.py
deleted file mode 100644
index d0c4ed8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/archive/linalg_covmat.py
+++ /dev/null
@@ -1,282 +0,0 @@
-
-import math
-import numpy as np
-from scipy import linalg, stats
-
-from linalg_decomp_1 import tiny2zero
-
-#univariate standard normal distribution
-#following from scipy.stats.distributions with adjustments
-sqrt2pi = math.sqrt(2 * np.pi)
-logsqrt2pi = math.log(sqrt2pi)
-
-class StandardNormal(object):
- '''Distribution of vector x, with independent distribution N(0,1)
-
- this is the same as univariate normal for pdf and logpdf
-
- other methods not checked/adjusted yet
-
- '''
- def rvs(self, size):
- return np.random.standard_normal(size)
- def pdf(self, x):
- return exp(-x**2 * 0.5) / sqrt2pi
- def logpdf(self, x):
- return -x**2 * 0.5 - logsqrt2pi
- def _cdf(self, x):
- return special.ndtr(x)
- def _logcdf(self, x):
- return log(special.ndtr(x))
- def _ppf(self, q):
- return special.ndtri(q)
-
-
-class AffineTransform(object):
- '''affine full rank transformation of a multivariate distribution
-
- no dimension checking, assumes everything broadcasts correctly
- first version without bound support
-
- provides distribution of y given distribution of x
- y = const + tmat * x
-
- '''
- def __init__(self, const, tmat, dist):
- self.const = const
- self.tmat = tmat
- self.dist = dist
- self.nrv = len(const)
- if not np.equal(self.nrv, tmat.shape).all():
- raise ValueError('dimension of const and tmat do not agree')
-
- #replace the following with a linalgarray class
- self.tmatinv = linalg.inv(tmat)
- self.absdet = np.abs(np.linalg.det(self.tmat))
- self.logabsdet = np.log(np.abs(np.linalg.det(self.tmat)))
- self.dist
-
- def rvs(self, size):
- #size can only be integer not yet tuple
- print (size,)+(self.nrv,)
- return self.transform(self.dist.rvs(size=(size,)+(self.nrv,)))
-
- def transform(self, x):
- #return np.dot(self.tmat, x) + self.const
- return np.dot(x, self.tmat) + self.const
-
- def invtransform(self, y):
- return np.dot(self.tmatinv, y - self.const)
-
- def pdf(self, x):
- return 1. / self.absdet * self.dist.pdf(self.invtransform(x))
-
- def logpdf(self, x):
- return - self.logabsdet + self.dist.logpdf(self.invtransform(x))
-
-
-from linalg_decomp_1 import SvdArray, OneTimeProperty
-
-class MultivariateNormal(object):
- '''multivariate normal distribution with plain linalg
-
- '''
-
- def __init__(mean, sigma):
- self.mean = mean
- self.sigma = sigma
- self.sigmainv = sigmainv
-
-class MultivariateNormalChol(object):
- '''multivariate normal distribution with cholesky decomposition of sigma
-
- ignoring mean at the beginning, maybe
-
- needs testing for broadcasting to contemporaneously but not intertemporaly
- correlated random variable, which axis?,
- maybe swapaxis or rollaxis if x.ndim != mean.ndim == (sigma.ndim - 1)
-
- initially 1d is ok, 2d should work with iid in axis 0 and mvn in axis 1
-
- '''
-
- def __init__(self, mean, sigma):
- self.mean = mean
- self.sigma = sigma
- self.sigmainv = sigmainv
- self.cholsigma = linalg.cholesky(sigma)
- #the following makes it lower triangular with increasing time
- self.cholsigmainv = linalg.cholesky(sigmainv)[::-1,::-1]
- #todo: this might be a trick todo backward instead of forward filtering
-
- def whiten(self, x):
- return np.dot(cholsigmainv, x)
-
- def logpdf_obs(self, x):
- x = x - self.mean
- x_whitened = self.whiten(x)
-
- #sigmainv = linalg.cholesky(sigma)
- logdetsigma = np.log(np.linalg.det(sigma))
-
- sigma2 = 1. # error variance is included in sigma
-
- llike = 0.5 * (np.log(sigma2)
- - 2.* np.log(np.diagonal(self.cholsigmainv))
- + (x_whitened**2)/sigma2
- + np.log(2*np.pi))
-
- return llike
-
- def logpdf(self, x):
- return self.logpdf_obs(x).sum(-1)
-
- def pdf(self, x):
- return np.exp(self.logpdf(x))
-
-
-
-class MultivariateNormal(object):
-
- def __init__(self, mean, sigma):
- self.mean = mean
- self.sigma = SvdArray(sigma)
-
-
-
-
-def loglike_ar1(x, rho):
- '''loglikelihood of AR(1) process, as a test case
-
- sigma_u partially hard coded
-
- Greene chapter 12 eq. (12-31)
- '''
- x = np.asarray(x)
- u = np.r_[x[0], x[1:] - rho * x[:-1]]
- sigma_u2 = 2*(1-rho**2)
- loglik = 0.5*(-(u**2).sum(0) / sigma_u2 + np.log(1-rho**2)
- - x.shape[0] * (np.log(2*np.pi) + np.log(sigma_u2)))
- return loglik
-
-
-def ar2transform(x, arcoefs):
- '''
-
- (Greene eq 12-30)
- '''
- a1, a2 = arcoefs
- y = np.zeros_like(x)
- y[0] = np.sqrt((1+a2) * ((1-a2)**2 - a1**2) / (1-a2)) * x[0]
- y[1] = np.sqrt(1-a2**2) * x[2] - a1 * np.sqrt(1-a1**2)/(1-a2) * x[1] #TODO:wrong index in x
- y[2:] = x[2:] - a1 * x[1:-1] - a2 * x[:-2]
- return y
-
-
-def mvn_loglike(x, sigma):
- '''loglike multivariate normal
-
- assumes x is 1d, (nobs,) and sigma is 2d (nobs, nobs)
-
- brute force from formula
- no checking of correct inputs
- use of inv and log-det should be replace with something more efficient
- '''
- #see numpy thread
- #Sturla: sqmahal = (cx*cho_solve(cho_factor(S),cx.T).T).sum(axis=1)
- sigmainv = linalg.inv(sigma)
- logdetsigma = np.log(np.linalg.det(sigma))
- nobs = len(x)
-
- llf = - np.dot(x, np.dot(sigmainv, x))
- llf -= nobs * np.log(2 * np.pi)
- llf -= logdetsigma
- llf *= 0.5
- return llf
-
-def mvn_nloglike_obs(x, sigma):
- '''loglike multivariate normal
-
- assumes x is 1d, (nobs,) and sigma is 2d (nobs, nobs)
-
- brute force from formula
- no checking of correct inputs
- use of inv and log-det should be replace with something more efficient
- '''
- #see numpy thread
- #Sturla: sqmahal = (cx*cho_solve(cho_factor(S),cx.T).T).sum(axis=1)
-
- #Still wasteful to calculate pinv first
- sigmainv = linalg.inv(sigma)
- cholsigmainv = linalg.cholesky(sigmainv)
- #2 * np.sum(np.log(np.diagonal(np.linalg.cholesky(A)))) #Dag mailinglist
- # logdet not needed ???
- #logdetsigma = 2 * np.sum(np.log(np.diagonal(cholsigmainv)))
- x_whitened = np.dot(cholsigmainv, x)
-
- #sigmainv = linalg.cholesky(sigma)
- logdetsigma = np.log(np.linalg.det(sigma))
-
- sigma2 = 1. # error variance is included in sigma
-
- llike = 0.5 * (np.log(sigma2) - 2.* np.log(np.diagonal(cholsigmainv))
- + (x_whitened**2)/sigma2
- + np.log(2*np.pi))
-
- return llike, (x_whitened**2)
-
-nobs = 10
-x = np.arange(nobs)
-autocov = 2*0.8**np.arange(nobs)# +0.01 * np.random.randn(nobs)
-sigma = linalg.toeplitz(autocov)
-#sigma = np.diag(1+np.random.randn(10)**2)
-
-cholsigma = linalg.cholesky(sigma).T#, lower=True)
-
-sigmainv = linalg.inv(sigma)
-cholsigmainv = linalg.cholesky(sigmainv)
-#2 * np.sum(np.log(np.diagonal(np.linalg.cholesky(A)))) #Dag mailinglist
-# logdet not needed ???
-#logdetsigma = 2 * np.sum(np.log(np.diagonal(cholsigmainv)))
-x_whitened = np.dot(cholsigmainv, x)
-
-#sigmainv = linalg.cholesky(sigma)
-logdetsigma = np.log(np.linalg.det(sigma))
-
-sigma2 = 1. # error variance is included in sigma
-
-llike = 0.5 * (np.log(sigma2) - 2.* np.log(np.diagonal(cholsigmainv))
- + (x_whitened**2)/sigma2
- + np.log(2*np.pi))
-
-ll, ls = mvn_nloglike_obs(x, sigma)
-#the following are all the same for diagonal sigma
-print ll.sum(), 'll.sum()'
-print llike.sum(), 'llike.sum()'
-print np.log(stats.norm._pdf(x_whitened)).sum() - 0.5 * logdetsigma,
-print 'stats whitened'
-print np.log(stats.norm.pdf(x,scale=np.sqrt(np.diag(sigma)))).sum(),
-print 'stats scaled'
-print 0.5*(np.dot(linalg.cho_solve((linalg.cho_factor(sigma, lower=False)[0].T,
- False),x.T), x)
- + nobs*np.log(2*np.pi)
- - 2.* np.log(np.diagonal(cholsigmainv)).sum())
-print 0.5*(np.dot(linalg.cho_solve((linalg.cho_factor(sigma)[0].T, False),x.T), x) + nobs*np.log(2*np.pi)- 2.* np.log(np.diagonal(cholsigmainv)).sum())
-print 0.5*(np.dot(linalg.cho_solve(linalg.cho_factor(sigma),x.T), x) + nobs*np.log(2*np.pi)- 2.* np.log(np.diagonal(cholsigmainv)).sum())
-print mvn_loglike(x, sigma)
-
-
-normtransf = AffineTransform(np.zeros(nobs), cholsigma, StandardNormal())
-print normtransf.logpdf(x_whitened).sum()
-#print normtransf.rvs(5)
-print loglike_ar1(x, 0.8)
-
-mch = MultivariateNormalChol(np.zeros(nobs), sigma)
-print mch.logpdf(x)
-
-#print tiny2zero(mch.cholsigmainv / mch.cholsigmainv[-1,-1])
-
-xw = mch.whiten(x)
-print 'xSigmax', np.dot(xw,xw)
-print 'xSigmax', np.dot(x,linalg.cho_solve(linalg.cho_factor(mch.sigma),x))
-print 'xSigmax', np.dot(x,linalg.cho_solve((mch.cholsigma, False),x))
diff --git a/statsmodels/scikits/statsmodels/sandbox/archive/linalg_decomp_1.py b/statsmodels/scikits/statsmodels/sandbox/archive/linalg_decomp_1.py
deleted file mode 100644
index 727e26d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/archive/linalg_decomp_1.py
+++ /dev/null
@@ -1,333 +0,0 @@
-'''Recipes for more efficient work with linalg using classes
-
-
-intended for use for multivariate normal and linear regression
-calculations
-
-x is the data (nobs, nvars)
-m is the moment matrix (x'x) or a covariance matrix Sigma
-
-examples:
-x'sigma^{-1}x
-z = Px where P=Sigma^{-1/2} or P=Sigma^{1/2}
-
-Initially assume positive definite, then add spectral cutoff and
-regularization of moment matrix, and extend to PCA
-
-maybe extend to sparse if some examples work out
-(transformation matrix P for random effect and for toeplitz)
-
-
-Author: josef-pktd
-Created on 2010-10-20
-'''
-
-
-import numpy as np
-from scipy import linalg
-
-
-#this has been copied from nitime a long time ago
-#TODO: ceck whether class has changed in nitime
-class OneTimeProperty(object):
-
-
- """A descriptor to make special properties that become normal attributes.
-
- This is meant to be used mostly by the auto_attr decorator in this module.
- Author: Fernando Perez, copied from nitime
- """
- def __init__(self,func):
-
- """Create a OneTimeProperty instance.
-
- Parameters
- ----------
- func : method
-
- The method that will be called the first time to compute a value.
- Afterwards, the method's name will be a standard attribute holding
- the value of this computation.
- """
- self.getter = func
- self.name = func.func_name
-
- def __get__(self,obj,type=None):
- """This will be called on attribute access on the class or instance. """
-
- if obj is None:
- # Being called on the class, return the original function. This way,
- # introspection works on the class.
- #return func
- print 'class access'
- return self.getter
-
- val = self.getter(obj)
- #print "** auto_attr - loading '%s'" % self.name # dbg
- setattr(obj, self.name, val)
- return val
-
-
-class PlainMatrixArray(object):
- '''Class that defines linalg operation on an array
-
- simplest version as benchmark
-
- linear algebra recipes for multivariate normal and linear
- regression calculations
-
- '''
- def __init__(self, data=None, sym=None):
- if not data is None:
- if sym is None:
- self.x = np.asarray(data)
- self.m = np.dot(self.x.T, self.x)
- else:
- raise ValueError('data and sym cannot be both given')
- elif not sym is None:
- self.m = np.asarray(sym)
- self.x = np.eye(*self.m.shape) #default
-
- else:
- raise ValueError('either data or sym need to be given')
-
- @OneTimeProperty
- def minv(self):
- return np.linalg.inv(self.m)
-
- @OneTimeProperty
- def m_y(self, y):
- return np.dot(self.m, y)
-
- def minv_y(self, y):
- return np.dot(self.minv, y)
-
- @OneTimeProperty
- def mpinv(self):
- return linalg.pinv(self.m)
-
- @OneTimeProperty
- def xpinv(self):
- return linalg.pinv(self.x)
-
- def yt_m_y(self, y):
- return np.dot(y.T, np.dot(self.m, y))
-
- def yt_minv_y(self, y):
- return np.dot(y.T, np.dot(self.minv, y))
-
- #next two are redundant
- def y_m_yt(self, y):
- return np.dot(y, np.dot(self.m, y.T))
-
- def y_minv_yt(self, y):
- return np.dot(y, np.dot(self.minv, y.T))
-
- @OneTimeProperty
- def mdet(self):
- return linalg.det(self.m)
-
- @OneTimeProperty
- def mlogdet(self):
- return np.log(linalg.det(self.m))
-
- @OneTimeProperty
- def meigh(self):
- evals, evecs = linalg.eigh(self.m)
- sortind = np.argsort(evals)[::-1]
- return evals[sortind], evecs[:,sortind]
-
- @OneTimeProperty
- def mhalf(self):
- evals, evecs = self.meigh
- return np.dot(np.diag(evals**0.5), evecs.T)
- #return np.dot(evecs, np.dot(np.diag(evals**0.5), evecs.T))
- #return np.dot(evecs, 1./np.sqrt(evals) * evecs.T))
-
- @OneTimeProperty
- def minvhalf(self):
- evals, evecs = self.meigh
- return np.dot(evecs, 1./np.sqrt(evals) * evecs.T)
-
-
-
-class SvdArray(PlainMatrixArray):
- '''Class that defines linalg operation on an array
-
- svd version, where svd is taken on original data array, if
- or when it matters
-
- no spectral cutoff in first version
- '''
-
- def __init__(self, data=None, sym=None):
- super(SvdArray, self).__init__(data=data, sym=sym)
-
- u, s, v = np.linalg.svd(self.x, full_matrices=1)
- self.u, self.s, self.v = u, s, v
- self.sdiag = linalg.diagsvd(s, *x.shape)
- self.sinvdiag = linalg.diagsvd(1./s, *x.shape)
-
- def _sdiagpow(self, p):
- return linalg.diagsvd(np.power(self.s, p), *x.shape)
-
- @OneTimeProperty
- def minv(self):
- sinvv = np.dot(self.sinvdiag, self.v)
- return np.dot(sinvv.T, sinvv)
-
-
- @OneTimeProperty
- def meigh(self):
- evecs = self.v.T
- evals = self.s**2
- return evals, evecs
-
- @OneTimeProperty
- def mdet(self):
- return self.meigh[0].prod()
-
- @OneTimeProperty
- def mlogdet(self):
- return np.log(self.meigh[0]).sum()
-
- @OneTimeProperty
- def mhalf(self):
- return np.dot(np.diag(self.s), self.v)
-
- @OneTimeProperty
- def xxthalf(self):
- return np.dot(self.u, self.sdiag)
-
- @OneTimeProperty
- def xxtinvhalf(self):
- return np.dot(self.u, self.sinvdiag)
-
-
-class CholArray(PlainMatrixArray):
- '''Class that defines linalg operation on an array
-
- cholesky version, where svd is taken on original data array, if
- or when it matters
-
- plan: use cholesky factor and cholesky solve
- nothing implemented yet
- '''
-
- def __init__(self, data=None, sym=None):
- super(SvdArray, self).__init__(data=data, sym=sym)
-
-
- def yt_minv_y(self, y):
- '''xSigmainvx
- doesn't use stored cholesky yet
- '''
- return np.dot(x,linalg.cho_solve(linalg.cho_factor(self.m),x))
- #same as
- #lower = False #if cholesky(sigma) is used, default is upper
- #np.dot(x,linalg.cho_solve((self.cholsigma, lower),x))
-
-
-
-def testcompare(m1, m2):
- from numpy.testing import assert_almost_equal, assert_approx_equal
- decimal = 12
-
- #inv
- assert_almost_equal(m1.minv, m2.minv, decimal=decimal)
-
- #matrix half and invhalf
- #fix sign in test, should this be standardized
- s1 = np.sign(m1.mhalf.sum(1))[:,None]
- s2 = np.sign(m2.mhalf.sum(1))[:,None]
- scorr = s1/s2
- assert_almost_equal(m1.mhalf, m2.mhalf * scorr, decimal=decimal)
- assert_almost_equal(m1.minvhalf, m2.minvhalf, decimal=decimal)
-
- #eigenvalues, eigenvectors
- evals1, evecs1 = m1.meigh
- evals2, evecs2 = m2.meigh
- assert_almost_equal(evals1, evals2, decimal=decimal)
- #normalization can be different: evecs in columns
- s1 = np.sign(evecs1.sum(0))
- s2 = np.sign(evecs2.sum(0))
- scorr = s1/s2
- assert_almost_equal(evecs1, evecs2 * scorr, decimal=decimal)
-
- #determinant
- assert_approx_equal(m1.mdet, m2.mdet, significant=13)
- assert_approx_equal(m1.mlogdet, m2.mlogdet, significant=13)
-
-####### helper function for interactive work
-def tiny2zero(x, eps = 1e-15):
- '''replace abs values smaller than eps by zero, makes copy
- '''
- mask = np.abs(x.copy()) < eps
- x[mask] = 0
- return x
-
-def maxabs(x):
- return np.max(np.abs(x))
-
-
-if __name__ == '__main__':
-
-
- n = 5
- y = np.arange(n)
- x = np.random.randn(100,n)
- autocov = 2*0.8**np.arange(n) +0.01 * np.random.randn(n)
- sigma = linalg.toeplitz(autocov)
-
- mat = PlainMatrixArray(sym=sigma)
- print tiny2zero(mat.mhalf)
- mih = mat.minvhalf
- print tiny2zero(mih) #for nicer printing
-
- mat2 = PlainMatrixArray(data=x)
- print maxabs(mat2.yt_minv_y(np.dot(x.T, x)) - mat2.m)
- print tiny2zero(mat2.minv_y(mat2.m))
-
- mat3 = SvdArray(data=x)
- print mat3.meigh[0]
- print mat2.meigh[0]
-
- testcompare(mat2, mat3)
-
- '''
- m = np.dot(x.T, x)
-
- u,s,v = np.linalg.svd(x, full_matrices=1)
- Sig = linalg.diagsvd(s,*x.shape)
-
- >>> np.max(np.abs(np.dot(u, np.dot(Sig, v)) - x))
- 3.1086244689504383e-015
- >>> np.max(np.abs(np.dot(u.T, u) - np.eye(100)))
- 3.3306690738754696e-016
- >>> np.max(np.abs(np.dot(v.T, v) - np.eye(5)))
- 6.6613381477509392e-016
- >>> np.max(np.abs(np.dot(Sig.T, Sig) - np.diag(s**2)))
- 5.6843418860808015e-014
-
- >>> evals,evecs = linalg.eigh(np.dot(x.T, x))
- >>> evals[::-1]
- array([ 123.36404464, 112.17036442, 102.04198468, 76.60832278,
- 74.70484487])
-
- >>> s**2
- array([ 123.36404464, 112.17036442, 102.04198468, 76.60832278,
- 74.70484487])
-
- >>> np.max(np.abs(np.dot(v.T, np.dot(np.diag(s**2), v)) - m))
- 1.1368683772161603e-013
-
- >>> us = np.dot(u, Sig)
- >>> np.max(np.abs(np.dot(us, us.T) - np.dot(x, x.T)))
- 1.0658141036401503e-014
-
- >>> sv = np.dot(Sig, v)
- >>> np.max(np.abs(np.dot(sv.T, sv) - np.dot(x.T, x)))
- 1.1368683772161603e-013
-
-
- '''
diff --git a/statsmodels/scikits/statsmodels/sandbox/archive/tsa.py b/statsmodels/scikits/statsmodels/sandbox/archive/tsa.py
deleted file mode 100644
index c73b2e3..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/archive/tsa.py
+++ /dev/null
@@ -1,50 +0,0 @@
-'''Collection of alternative implementations for time series analysis
-
-'''
-
-
-'''
->>> signal.fftconvolve(x,x[::-1])[len(x)-1:len(x)+10]/x.shape[0]
-array([ 2.12286549e+00, 1.27450889e+00, 7.86898619e-02,
- -5.80017553e-01, -5.74814915e-01, -2.28006995e-01,
- 9.39554926e-02, 2.00610244e-01, 1.32239575e-01,
- 1.24504352e-03, -8.81846018e-02])
->>> sm.tsa.stattools.acovf(X, fft=True)[:order+1]
-array([ 2.12286549e+00, 1.27450889e+00, 7.86898619e-02,
- -5.80017553e-01, -5.74814915e-01, -2.28006995e-01,
- 9.39554926e-02, 2.00610244e-01, 1.32239575e-01,
- 1.24504352e-03, -8.81846018e-02])
-
->>> import nitime.utils as ut
->>> ut.autocov(s)[:order+1]
-array([ 2.12286549e+00, 1.27450889e+00, 7.86898619e-02,
- -5.80017553e-01, -5.74814915e-01, -2.28006995e-01,
- 9.39554926e-02, 2.00610244e-01, 1.32239575e-01,
- 1.24504352e-03, -8.81846018e-02])
-'''
-
-def acovf_fft(x, demean=True):
- '''autocovariance function with call to fftconvolve, biased
-
- Parameters
- ----------
- x : array_like
- timeseries, signal
- demean : boolean
- If true, then demean time series
-
- Returns
- -------
- acovf : array
- autocovariance for data, same length as x
-
- might work for nd in parallel with time along axis 0
-
- '''
- from scipy import signal
- x = np.asarray(x)
-
- if demean:
- x = x - x.mean()
-
- signal.fftconvolve(x,x[::-1])[len(x)-1:len(x)+10]/x.shape[0]
diff --git a/statsmodels/scikits/statsmodels/sandbox/bspline.py b/statsmodels/scikits/statsmodels/sandbox/bspline.py
deleted file mode 100644
index 940c11e..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/bspline.py
+++ /dev/null
@@ -1,661 +0,0 @@
-'''
-Bspines and smoothing splines.
-
-General references:
-
- Craven, P. and Wahba, G. (1978) "Smoothing noisy data with spline functions.
- Estimating the correct degree of smoothing by
- the method of generalized cross-validation."
- Numerische Mathematik, 31(4), 377-403.
-
- Hastie, Tibshirani and Friedman (2001). "The Elements of Statistical
- Learning." Springer-Verlag. 536 pages.
-
- Hutchison, M. and Hoog, F. "Smoothing noisy data with spline functions."
- Numerische Mathematik, 47(1), 99-106.
-'''
-
-import numpy as np
-import numpy.linalg as L
-
-from scipy.linalg import solveh_banded
-from scipy.optimize import golden
-from models import _hbspline #removed because this was segfaulting
-
-# Issue warning regarding heavy development status of this module
-import warnings
-_msg = "The bspline code is technology preview and requires significant work\
-on the public API and documentation. The API will likely change in the future"
-warnings.warn(_msg, UserWarning)
-
-
-def _band2array(a, lower=0, symmetric=False, hermitian=False):
- """
- Take an upper or lower triangular banded matrix and return a
- numpy array.
-
- INPUTS:
- a -- a matrix in upper or lower triangular banded matrix
- lower -- is the matrix upper or lower triangular?
- symmetric -- if True, return the original result plus its transpose
- hermitian -- if True (and symmetric False), return the original
- result plus its conjugate transposed
-
- """
-
- n = a.shape[1]
- r = a.shape[0]
- _a = 0
-
- if not lower:
- for j in range(r):
- _b = np.diag(a[r-1-j],k=j)[j:(n+j),j:(n+j)]
- _a += _b
- if symmetric and j > 0: _a += _b.T
- elif hermitian and j > 0: _a += _b.conjugate().T
- else:
- for j in range(r):
- _b = np.diag(a[j],k=j)[0:n,0:n]
- _a += _b
- if symmetric and j > 0: _a += _b.T
- elif hermitian and j > 0: _a += _b.conjugate().T
- _a = _a.T
-
- return _a
-
-
-def _upper2lower(ub):
- """
- Convert upper triangular banded matrix to lower banded form.
-
- INPUTS:
- ub -- an upper triangular banded matrix
-
- OUTPUTS: lb
- lb -- a lower triangular banded matrix with same entries
- as ub
- """
-
- lb = np.zeros(ub.shape, ub.dtype)
- nrow, ncol = ub.shape
- for i in range(ub.shape[0]):
- lb[i,0:(ncol-i)] = ub[nrow-1-i,i:ncol]
- lb[i,(ncol-i):] = ub[nrow-1-i,0:i]
- return lb
-
-def _lower2upper(lb):
- """
- Convert lower triangular banded matrix to upper banded form.
-
- INPUTS:
- lb -- a lower triangular banded matrix
-
- OUTPUTS: ub
- ub -- an upper triangular banded matrix with same entries
- as lb
- """
-
- ub = np.zeros(lb.shape, lb.dtype)
- nrow, ncol = lb.shape
- for i in range(lb.shape[0]):
- ub[nrow-1-i,i:ncol] = lb[i,0:(ncol-i)]
- ub[nrow-1-i,0:i] = lb[i,(ncol-i):]
- return ub
-
-def _triangle2unit(tb, lower=0):
- """
- Take a banded triangular matrix and return its diagonal and the
- unit matrix: the banded triangular matrix with 1's on the diagonal,
- i.e. each row is divided by the corresponding entry on the diagonal.
-
- INPUTS:
- tb -- a lower triangular banded matrix
- lower -- if True, then tb is assumed to be lower triangular banded,
- in which case return value is also lower triangular banded.
-
- OUTPUTS: d, b
- d -- diagonal entries of tb
- b -- unit matrix: if lower is False, b is upper triangular
- banded and its rows of have been divided by d,
- else lower is True, b is lower triangular banded
- and its columns have been divieed by d.
-
- """
-
- if lower: d = tb[0].copy()
- else: d = tb[-1].copy()
-
- if lower: return d, (tb / d)
- else:
- l = _upper2lower(tb)
- return d, _lower2upper(l / d)
-
-def _trace_symbanded(a, b, lower=0):
- """
- Compute the trace(ab) for two upper or banded real symmetric matrices
- stored either in either upper or lower form.
-
- INPUTS:
- a, b -- two banded real symmetric matrices (either lower or upper)
- lower -- if True, a and b are assumed to be the lower half
-
-
- OUTPUTS: trace
- trace -- trace(ab)
-
- """
-
- if lower:
- t = _zero_triband(a * b, lower=1)
- return t[0].sum() + 2 * t[1:].sum()
- else:
- t = _zero_triband(a * b, lower=0)
- return t[-1].sum() + 2 * t[:-1].sum()
-
-
-def _zero_triband(a, lower=0):
- """
- Explicitly zero out unused elements of a real symmetric banded matrix.
-
- INPUTS:
- a -- a real symmetric banded matrix (either upper or lower hald)
- lower -- if True, a is assumed to be the lower half
-
- """
-
- nrow, ncol = a.shape
- if lower:
- for i in range(nrow): a[i,(ncol-i):] = 0.
- else:
- for i in range(nrow): a[i,0:i] = 0.
- return a
-
-
-class BSpline(object):
-
- '''
-
- Bsplines of a given order and specified knots.
-
- Implementation is based on description in Chapter 5 of
-
- Hastie, Tibshirani and Friedman (2001). "The Elements of Statistical
- Learning." Springer-Verlag. 536 pages.
-
-
- INPUTS:
- knots -- a sorted array of knots with knots[0] the lower boundary,
- knots[1] the upper boundary and knots[1:-1] the internal
- knots.
- order -- order of the Bspline, default is 4 which yields cubic
- splines
- M -- number of additional boundary knots, if None it defaults
- to order
- coef -- an optional array of real-valued coefficients for the Bspline
- of shape (knots.shape + 2 * (M - 1) - order,).
- x -- an optional set of x values at which to evaluate the
- Bspline to avoid extra evaluation in the __call__ method
-
- '''
- # FIXME: update parameter names, replace single character names
- # FIXME: `order` should be actual spline order (implemented as order+1)
- ## FIXME: update the use of spline order in extension code (evaluate is recursively called)
- # FIXME: eliminate duplicate M and m attributes (m is order, M is related to tau size)
-
- def __init__(self, knots, order=4, M=None, coef=None, x=None):
-
- knots = np.squeeze(np.unique(np.asarray(knots)))
-
- if knots.ndim != 1:
- raise ValueError('expecting 1d array for knots')
-
- self.m = order
- if M is None:
- M = self.m
- self.M = M
-
- self.tau = np.hstack([[knots[0]]*(self.M-1), knots, [knots[-1]]*(self.M-1)])
-
- self.K = knots.shape[0] - 2
- if coef is None:
- self.coef = np.zeros((self.K + 2 * self.M - self.m), np.float64)
- else:
- self.coef = np.squeeze(coef)
- if self.coef.shape != (self.K + 2 * self.M - self.m):
- raise ValueError('coefficients of Bspline have incorrect shape')
- if x is not None:
- self.x = x
-
- def _setx(self, x):
- self._x = x
- self._basisx = self.basis(self._x)
-
- def _getx(self):
- return self._x
-
- x = property(_getx, _setx)
-
- def __call__(self, *args):
- """
- Evaluate the BSpline at a given point, yielding
- a matrix B and return
-
- B * self.coef
-
-
- INPUTS:
- args -- optional arguments. If None, it returns self._basisx,
- the BSpline evaluated at the x values passed in __init__.
- Otherwise, return the BSpline evaluated at the
- first argument args[0].
-
- OUTPUTS: y
- y -- value of Bspline at specified x values
-
- BUGS:
- If self has no attribute x, an exception will be raised
- because self has no attribute _basisx.
-
- """
-
- if not args:
- b = self._basisx.T
- else:
- x = args[0]
- b = np.asarray(self.basis(x)).T
- return np.squeeze(np.dot(b, self.coef))
-
- def basis_element(self, x, i, d=0):
- """
- Evaluate a particular basis element of the BSpline,
- or its derivative.
-
- INPUTS:
- x -- x values at which to evaluate the basis element
- i -- which element of the BSpline to return
- d -- the order of derivative
-
- OUTPUTS: y
- y -- value of d-th derivative of the i-th basis element
- of the BSpline at specified x values
-
- """
-
- x = np.asarray(x, np.float64)
- _shape = x.shape
- if _shape == ():
- x.shape = (1,)
- x.shape = (np.product(_shape,axis=0),)
- if i < self.tau.shape[0] - 1:
- ## TODO: OWNDATA flags...
- v = _hbspline.evaluate(x, self.tau, self.m, d, i, i+1)
- else:
- return np.zeros(x.shape, np.float64)
-
- if (i == self.tau.shape[0] - self.m):
- v = np.where(np.equal(x, self.tau[-1]), 1, v)
- v.shape = _shape
- return v
-
- def basis(self, x, d=0, lower=None, upper=None):
- """
- Evaluate the basis of the BSpline or its derivative.
- If lower or upper is specified, then only
- the [lower:upper] elements of the basis are returned.
-
- INPUTS:
- x -- x values at which to evaluate the basis element
- i -- which element of the BSpline to return
- d -- the order of derivative
- lower -- optional lower limit of the set of basis
- elements
- upper -- optional upper limit of the set of basis
- elements
-
- OUTPUTS: y
- y -- value of d-th derivative of the basis elements
- of the BSpline at specified x values
-
- """
- x = np.asarray(x)
- _shape = x.shape
- if _shape == ():
- x.shape = (1,)
- x.shape = (np.product(_shape,axis=0),)
-
- if upper is None:
- upper = self.tau.shape[0] - self.m
- if lower is None:
- lower = 0
- upper = min(upper, self.tau.shape[0] - self.m)
- lower = max(0, lower)
-
- d = np.asarray(d)
- if d.shape == ():
- v = _hbspline.evaluate(x, self.tau, self.m, int(d), lower, upper)
- else:
- if d.shape[0] != 2:
- raise ValueError("if d is not an integer, expecting a jx2 \
- array with first row indicating order \
- of derivative, second row coefficient in front.")
- v = 0
- for i in range(d.shape[1]):
- v += d[1,i] * _hbspline.evaluate(x, self.tau, self.m, d[0,i], lower, upper)
-
- v.shape = (upper-lower,) + _shape
- if upper == self.tau.shape[0] - self.m:
- v[-1] = np.where(np.equal(x, self.tau[-1]), 1, v[-1])
- return v
-
- def gram(self, d=0):
- """
- Compute Gram inner product matrix, storing it in lower
- triangular banded form.
-
- The (i,j) entry is
-
- G_ij = integral b_i^(d) b_j^(d)
-
- where b_i are the basis elements of the BSpline and (d) is the
- d-th derivative.
-
- If d is a matrix then, it is assumed to specify a differential
- operator as follows: the first row represents the order of derivative
- with the second row the coefficient corresponding to that order.
-
- For instance:
-
- [[2, 3],
- [3, 1]]
-
- represents 3 * f^(2) + 1 * f^(3).
-
- INPUTS:
- d -- which derivative to apply to each basis element,
- if d is a matrix, it is assumed to specify
- a differential operator as above
-
- OUTPUTS: gram
- gram -- the matrix of inner products of (derivatives)
- of the BSpline elements
-
- """
-
- d = np.squeeze(d)
- if np.asarray(d).shape == ():
- self.g = _hbspline.gram(self.tau, self.m, int(d), int(d))
- else:
- d = np.asarray(d)
- if d.shape[0] != 2:
- raise ValueError("if d is not an integer, expecting a jx2 \
- array with first row indicating order \
- of derivative, second row coefficient in front.")
- if d.shape == (2,):
- d.shape = (2,1)
- self.g = 0
- for i in range(d.shape[1]):
- for j in range(d.shape[1]):
- self.g += d[1,i]* d[1,j] * _hbspline.gram(self.tau, self.m, int(d[0,i]), int(d[0,j]))
- self.g = self.g.T
- self.d = d
- return np.nan_to_num(self.g)
-
-class SmoothingSpline(BSpline):
-
- penmax = 30.
- method = "target_df"
- target_df = 5
- default_pen = 1.0e-03
- optimize = True
-
- '''
- A smoothing spline, which can be used to smooth scatterplots, i.e.
- a list of (x,y) tuples.
-
- See fit method for more information.
-
- '''
-
- def fit(self, y, x=None, weights=None, pen=0.):
- """
- Fit the smoothing spline to a set of (x,y) pairs.
-
- INPUTS:
- y -- response variable
- x -- if None, uses self.x
- weights -- optional array of weights
- pen -- constant in front of Gram matrix
-
- OUTPUTS: None
- The smoothing spline is determined by self.coef,
- subsequent calls of __call__ will be the smoothing spline.
-
- ALGORITHM:
- Formally, this solves a minimization:
-
- fhat = ARGMIN_f SUM_i=1^n (y_i-f(x_i))^2 + pen * int f^(2)^2
-
- int is integral. pen is lambda (from Hastie)
-
- See Chapter 5 of
-
- Hastie, Tibshirani and Friedman (2001). "The Elements of Statistical
- Learning." Springer-Verlag. 536 pages.
-
- for more details.
-
- TODO:
- Should add arbitrary derivative penalty instead of just
- second derivative.
- """
-
- banded = True
-
- if x is None:
- x = self._x
- bt = self._basisx.copy()
- else:
- bt = self.basis(x)
-
- if pen == 0.: # can't use cholesky for singular matrices
- banded = False
-
- if x.shape != y.shape:
- raise ValueError('x and y shape do not agree, by default x are \
- the Bspline\'s internal knots')
-
- if pen >= self.penmax:
- pen = self.penmax
-
-
- if weights is not None:
- self.weights = weights
- else:
- self.weights = 1.
-
- _w = np.sqrt(self.weights)
- bt *= _w
-
- # throw out rows with zeros (this happens at boundary points!)
-
- mask = np.flatnonzero(1 - np.alltrue(np.equal(bt, 0), axis=0))
-
- bt = bt[:,mask]
- y = y[mask]
-
- self.df_total = y.shape[0]
-
- bty = np.squeeze(np.dot(bt, _w * y))
- self.N = y.shape[0]
-
- if not banded:
- self.btb = np.dot(bt, bt.T)
- _g = _band2array(self.g, lower=1, symmetric=True)
- self.coef, _, self.rank = L.lstsq(self.btb + pen*_g, bty)[0:3]
- self.rank = min(self.rank, self.btb.shape[0])
- del(_g)
- else:
- self.btb = np.zeros(self.g.shape, np.float64)
- nband, nbasis = self.g.shape
- for i in range(nbasis):
- for k in range(min(nband, nbasis-i)):
- self.btb[k,i] = (bt[i] * bt[i+k]).sum()
-
- bty.shape = (1,bty.shape[0])
- self.pen = pen
- self.chol, self.coef = solveh_banded(self.btb +
- pen*self.g,
- bty, lower=1)
-
- self.coef = np.squeeze(self.coef)
- self.resid = y * self.weights - np.dot(self.coef, bt)
- self.pen = pen
-
- del(bty); del(mask); del(bt)
-
- def smooth(self, y, x=None, weights=None):
-
- if self.method == "target_df":
- if hasattr(self, 'pen'):
- self.fit(y, x=x, weights=weights, pen=self.pen)
- else:
- self.fit_target_df(y, x=x, weights=weights, df=self.target_df)
- elif self.method == "optimize_gcv":
- self.fit_optimize_gcv(y, x=x, weights=weights)
-
-
- def gcv(self):
- """
- Generalized cross-validation score of current fit.
-
- Craven, P. and Wahba, G. "Smoothing noisy data with spline functions.
- Estimating the correct degree of smoothing by
- the method of generalized cross-validation."
- Numerische Mathematik, 31(4), 377-403.
- """
-
- norm_resid = (self.resid**2).sum()
- return norm_resid / (self.df_total - self.trace())
-
- def df_resid(self):
- """
- Residual degrees of freedom in the fit.
-
- self.N - self.trace()
-
- where self.N is the number of observations of last fit.
- """
-
- return self.N - self.trace()
-
- def df_fit(self):
- """
- How many degrees of freedom used in the fit?
-
- self.trace()
-
- """
- return self.trace()
-
- def trace(self):
- """
- Trace of the smoothing matrix S(pen)
-
- TODO: addin a reference to Wahba, and whoever else I used.
- """
-
- if self.pen > 0:
- _invband = _hbspline.invband(self.chol.copy())
- tr = _trace_symbanded(_invband, self.btb, lower=1)
- return tr
- else:
- return self.rank
-
- def fit_target_df(self, y, x=None, df=None, weights=None, tol=1.0e-03,
- apen=0, bpen=1.0e-03):
-
- """
- Fit smoothing spline with approximately df degrees of freedom
- used in the fit, i.e. so that self.trace() is approximately df.
-
- Uses binary search strategy.
-
- In general, df must be greater than the dimension of the null space
- of the Gram inner product. For cubic smoothing splines, this means
- that df > 2.
-
- INPUTS:
- y -- response variable
- x -- if None, uses self.x
- df -- target degrees of freedom
- weights -- optional array of weights
- tol -- (relative) tolerance for convergence
- apen -- lower bound of penalty for binary search
- bpen -- upper bound of penalty for binary search
-
- OUTPUTS: None
- The smoothing spline is determined by self.coef,
- subsequent calls of __call__ will be the smoothing spline.
-
- """
-
- df = df or self.target_df
-
- olddf = y.shape[0] - self.m
-
- if hasattr(self, "pen"):
- self.fit(y, x=x, weights=weights, pen=self.pen)
- curdf = self.trace()
- if np.fabs(curdf - df) / df < tol:
- return
- if curdf > df:
- apen, bpen = self.pen, 2 * self.pen
- else:
- apen, bpen = 0., self.pen
-
- while True:
-
- curpen = 0.5 * (apen + bpen)
- self.fit(y, x=x, weights=weights, pen=curpen)
- curdf = self.trace()
- if curdf > df:
- apen, bpen = curpen, 2 * curpen
- else:
- apen, bpen = apen, curpen
- if apen >= self.penmax:
- raise ValueError("penalty too large, try setting penmax \
- higher or decreasing df")
- if np.fabs(curdf - df) / df < tol:
- break
-
- def fit_optimize_gcv(self, y, x=None, weights=None, tol=1.0e-03,
- brack=(-100,20)):
- """
- Fit smoothing spline trying to optimize GCV.
-
- Try to find a bracketing interval for scipy.optimize.golden
- based on bracket.
-
- It is probably best to use target_df instead, as it is
- sometimes difficult to find a bracketing interval.
-
- INPUTS:
- y -- response variable
- x -- if None, uses self.x
- df -- target degrees of freedom
- weights -- optional array of weights
- tol -- (relative) tolerance for convergence
- brack -- an initial guess at the bracketing interval
-
- OUTPUTS: None
- The smoothing spline is determined by self.coef,
- subsequent calls of __call__ will be the smoothing spline.
-
- """
-
- def _gcv(pen, y, x):
- self.fit(y, x=x, pen=np.exp(pen))
- a = self.gcv()
- return a
-
- a = golden(_gcv, args=(y,x), brack=bracket, tol=tol)
diff --git a/statsmodels/scikits/statsmodels/sandbox/contrast_old.py b/statsmodels/scikits/statsmodels/sandbox/contrast_old.py
deleted file mode 100644
index b3050a8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/contrast_old.py
+++ /dev/null
@@ -1,169 +0,0 @@
-import copy
-
-import numpy as np
-from numpy.linalg import pinv
-from scikits.statsmodels.sandbox import utils_old as utils
-
-class ContrastResults(object):
- """
- Results from looking at a particular contrast of coefficients in
- a parametric model. The class does nothing, it is a container
- for the results from T and F contrasts.
- """
-
- def __init__(self, t=None, F=None, sd=None, effect=None, df_denom=None,
- df_num=None):
- if F is not None:
- self.F = F
- self.df_denom = df_denom
- self.df_num = df_num
- else:
- self.t = t
- self.sd = sd
- self.effect = effect
- self.df_denom = df_denom
-
- def __array__(self):
- if hasattr(self, "F"):
- return self.F
- else:
- return self.t
-
- def __str__(self):
- if hasattr(self, 'F'):
- return '' % \
- (`self.F`, self.df_denom, self.df_num)
- else:
- return '' % \
- (`self.effect`, `self.sd`, `self.t`, self.df_denom)
-
-
-class Contrast(object):
- """
- This class is used to construct contrast matrices in regression models.
- They are specified by a (term, formula) pair.
-
- The term, T, is a linear combination of columns of the design
- matrix D=formula(). The matrix attribute is
- a contrast matrix C so that
-
- colspan(dot(D, C)) = colspan(dot(D, dot(pinv(D), T)))
-
- where pinv(D) is the generalized inverse of D. Further, the matrix
-
- Tnew = dot(C, D)
-
- is full rank. The rank attribute is the rank of
-
- dot(D, dot(pinv(D), T))
-
- In a regression model, the contrast tests that E(dot(Tnew, Y)) = 0
- for each column of Tnew.
-
- """
-
- def __init__(self, term, formula, name=''):
- self.term = term
- self.formula = formula
- if name is '':
- self.name = str(term)
- else:
- self.name = name
-
- def __str__(self):
- return '' % \
- `{'term':str(self.term), 'formula':str(self.formula)}`
-
- def compute_matrix(self, *args, **kw):
- """
- Construct a contrast matrix C so that
-
- colspan(dot(D, C)) = colspan(dot(D, dot(pinv(D), T)))
-
- where pinv(D) is the generalized inverse of D=self.D=self.formula().
-
- If the design, self.D is already set,
- then evaldesign can be set to False.
- """
-
- t = copy.copy(self.term)
- t.namespace = self.formula.namespace
- T = np.transpose(np.array(t(*args, **kw)))
-
- if T.ndim == 1:
- T.shape = (T.shape[0], 1)
-
- self.T = utils.clean0(T)
-
- self.D = self.formula.design(*args, **kw)
-
- self._matrix = contrastfromcols(self.T, self.D)
- try:
- self.rank = self.matrix.shape[1]
- except:
- self.rank = 1
-
- def _get_matrix(self):
- """
- This will fail if the formula needs arguments to construct
- the design.
- """
- if not hasattr(self, "_matrix"):
- self.compute_matrix()
- return self._matrix
- matrix = property(_get_matrix)
-
-def contrastfromcols(L, D, pseudo=None):
- """
- From an n x p design matrix D and a matrix L, tries
- to determine a p x q contrast matrix C which
- determines a contrast of full rank, i.e. the
- n x q matrix
-
- dot(transpose(C), pinv(D))
-
- is full rank.
-
- L must satisfy either L.shape[0] == n or L.shape[1] == p.
-
- If L.shape[0] == n, then L is thought of as representing
- columns in the column space of D.
-
- If L.shape[1] == p, then L is thought of as what is known
- as a contrast matrix. In this case, this function returns an estimable
- contrast corresponding to the dot(D, L.T)
-
- Note that this always produces a meaningful contrast, not always
- with the intended properties because q is always non-zero unless
- L is identically 0. That is, it produces a contrast that spans
- the column space of L (after projection onto the column space of D).
-
- """
-
- L = np.asarray(L)
- D = np.asarray(D)
-
- n, p = D.shape
-
- if L.shape[0] != n and L.shape[1] != p:
- raise ValueError, 'shape of L and D mismatched'
-
- if pseudo is None:
- pseudo = pinv(D)
-
- if L.shape[0] == n:
- C = np.dot(pseudo, L).T
- else:
- C = L
- C = np.dot(pseudo, np.dot(D, C.T)).T
-
- Lp = np.dot(D, C.T)
-
- if len(Lp.shape) == 1:
- Lp.shape = (n, 1)
-
- if utils.rank(Lp) != Lp.shape[1]:
- Lp = utils.fullrank(Lp)
- C = np.dot(pseudo, Lp).T
-
- return np.squeeze(C)
diff --git a/statsmodels/scikits/statsmodels/sandbox/cox.py b/statsmodels/scikits/statsmodels/sandbox/cox.py
deleted file mode 100644
index 01d830b..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/cox.py
+++ /dev/null
@@ -1,303 +0,0 @@
-'''Cox proportional hazards regression model.
-
-
-some dimension problems
-fixed import errors
-currently produces parameter estimate but then raises exception for other results
-
-
-finally, after running the script several times, I get a OSError with too many
-open file handles
-
-updates and changes :
-
-as of 2010-05-15
-AttributeError: 'CoxPH' object has no attribute 'cachedir'
-Traceback (most recent call last):
- File "C:\...\scikits\statsmodels\sandbox\cox.py", line 244, in
- res = c.newton([0.4])
-AttributeError: 'CoxPH' object has no attribute 'newton'
-
-replaced newton by call to new fit method for mle with bfgs
-
-feels very slow
-need testcase before trying to fix
-
-'''
-
-
-import shutil
-import tempfile
-
-import numpy as np
-
-
-from scikits.statsmodels.base import model
-import survival
-
-class Discrete(object):
-
- """
- A simple little class for working with discrete random vectors.
-
- Note: assumes x is 2-d and observations are in 0 axis, variables in 1 axis
- """
-
- def __init__(self, x, w=None):
- self.x = np.squeeze(x)
- if self.x.shape == ():
- self.x = np.array([self.x])
-## #JP added and removed again b/c still broadcast error
-## if self.x.ndim == 1:
-## self.x = self.x[:,None]
- self.n = self.x.shape[0]
- if w is None:
- w = np.ones(self.n, np.float64)
- else:
- if w.shape[0] != self.n:
- raise ValueError('incompatible shape for weights w')
- if np.any(np.less(w, 0)):
- raise ValueError('weights should be non-negative')
- self.w = w*1.0 / w.sum()
-
- def mean(self, f=None): #JP: this is expectation, "expect" in mine
- if f is None:
- fx = self.x
- else:
- fx = f(self.x)
- return (fx * self.w).sum()
-
- def cov(self):
- mu = self.mean() #JP: call to method (confusing name)
- dx = self.x - mu#np.multiply.outer(mu, self.x.shape[1])
- return np.dot(dx, np.transpose(dx))
-## if dx.ndim == 1:
-## dx = dx[:,None]
-## return np.dot(dx.T, dx)
-
-class Observation(survival.RightCensored):
-
- def __getitem__(self, item):
- if self.namespace is not None:
- return self.namespace[item]
- else:
- return getattr(self, item)
-
- def __init__(self, time, delta, namespace=None):
- self.namespace = namespace
- survival.RightCensored.__init__(self, time, delta)
-
- def __call__(self, formula, time=None, **extra):
- return formula(namespace=self, time=time, **extra)
-
-class CoxPH(model.LikelihoodModel):
- """Cox proportional hazards regression model."""
-
- def __init__(self, subjects, formula, time_dependent=False):
- self.subjects, self.formula = subjects, formula
- self.time_dependent = time_dependent
- self.initialize(self.subjects)
-
- def initialize(self, subjects):
- print 'called initialize'
- self.failures = {}
- for i in range(len(subjects)):
- s = subjects[i]
- if s.delta:
- if s.time not in self.failures:
- self.failures[s.time] = [i]
- else:
- self.failures[s.time].append(i)
-
- self.failure_times = self.failures.keys()
- self.failure_times.sort()
-
- def cache(self):
- if self.time_dependent:
- self.cachedir = tempfile.mkdtemp()
-
- self.design = {}
- self.risk = {}
- first = True
-
- for t in self.failures.keys():
- if self.time_dependent:
- d = np.array([s(self.formula, time=t)
- for s in self.subjects]).astype('>> c.fit()
- Traceback (most recent call last):
- File "", line 1, in
- c.fit()
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental\scikits\statsmodels\model.py", line 132, in fit
- start_params = [0]*self.exog.shape[1] # will fail for shape (K,)
- AttributeError: 'CoxPH' object has no attribute 'exog'
- >>> c.fit([0.4])
- Traceback (most recent call last):
- File "", line 1, in
- c.fit([0.4])
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental\scikits\statsmodels\model.py", line 148, in fit
- H = self.hessian(history[-1])
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental\scikits\statsmodels\model.py", line 115, in hessian
- raise NotImplementedError
- NotImplementedError
- >>> c.fit([0.4],method="bfgs")
- Optimization terminated successfully.
- Current function value: 802.354181
- Iterations: 3
- Function evaluations: 5
- Gradient evaluations: 5
-
- >>> res=c.fit([0.4],method="bfgs")
- Optimization terminated successfully.
- Current function value: 802.354181
- Iterations: 3
- Function evaluations: 5
- Gradient evaluations: 5
- >>> res.params
- array([ 0.34924421])
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/datarich/__init__.py b/statsmodels/scikits/statsmodels/sandbox/datarich/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/datarich/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/datarich/factormodels.py b/statsmodels/scikits/statsmodels/sandbox/datarich/factormodels.py
deleted file mode 100644
index 7d0ef66..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/datarich/factormodels.py
+++ /dev/null
@@ -1,189 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sun Nov 14 08:21:41 2010
-
-Author: josef-pktd
-License: BSD (3-clause)
-"""
-
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox.tools import pca
-from scikits.statsmodels.sandbox.tools.cross_val import LeaveOneOut
-
-#converting example Principal Component Regression to a class
-#from sandbox/example_pca_regression.py
-
-
-class FactorModelUnivariate(object):
- '''
-
- Todo:
- check treatment of const, make it optional ?
- add hasconst (0 or 1), needed when selecting nfact+hasconst
- options are arguments in calc_factors, should be more public instead
- cross-validation is slow for large number of observations
- '''
- def __init__(self, endog, exog):
- #do this in a superclass?
- self.endog = np.asarray(endog)
- self.exog = np.asarray(exog)
-
-
- def calc_factors(self, x=None, keepdim=0, addconst=True):
- '''get factor decomposition of exogenous variables
-
- This uses principal component analysis to obtain the factors. The number
- of factors kept is the maximum that will be considered in the regression.
- '''
- if x is None:
- x = self.exog
- else:
- x = np.asarray(x)
- xred, fact, evals, evecs = pca(x, keepdim=keepdim, normalize=1)
- self.exog_reduced = xred
- #self.factors = fact
- if addconst:
- self.factors = sm.add_constant(fact, prepend=True)
- self.hasconst = 1 #needs to be int
- else:
- self.factors = fact
- self.hasconst = 0 #needs to be int
-
- self.evals = evals
- self.evecs = evecs
-
- def fit_fixed_nfact(self, nfact):
- if not hasattr(self, 'factors_wconst'):
- self.calc_factors()
- return sm.OLS(self.endog, self.factors[:,:nfact+1]).fit()
-
- def fit_find_nfact(self, maxfact=None, skip_crossval=True, cv_iter=None):
- '''estimate the model and selection criteria for up to maxfact factors
-
- The selection criteria that are calculated are AIC, BIC, and R2_adj. and
- additionally cross-validation prediction error sum of squares if `skip_crossval`
- is false. Cross-validation is not used by default because it can be
- time consuming to calculate.
-
- By default the cross-validation method is Leave-one-out on the full dataset.
- A different cross-validation sample can be specified as an argument to
- cv_iter.
-
- Results are attached in `results_find_nfact`
-
-
-
- '''
- #print 'OLS on Factors'
- if not hasattr(self, 'factors'):
- self.calc_factors()
-
- hasconst = self.hasconst
- if maxfact is None:
- maxfact = self.factors.shape[1] - hasconst
-
- if (maxfact+hasconst) < 1:
- raise ValueError('nothing to do, number of factors (incl. constant) should ' +
- 'be at least 1')
-
- #temporary safety
- maxfact = min(maxfact, 10)
-
- y0 = self.endog
- results = []
- #xred, fact, eva, eve = pca(x0, keepdim=0, normalize=1)
- for k in range(1, maxfact+hasconst): #k includes now the constnat
- #xred, fact, eva, eve = pca(x0, keepdim=k, normalize=1)
- # this is faster and same result
- fact = self.factors[:,:k]
- res = sm.OLS(y0, fact).fit()
- ## print 'k =', k
- ## print res.params
- ## print 'aic: ', res.aic
- ## print 'bic: ', res.bic
- ## print 'llf: ', res.llf
- ## print 'R2 ', res.rsquared
- ## print 'R2 adj', res.rsquared_adj
-
- if not skip_crossval:
- if cv_iter is None:
- cv_iter = LeaveOneOut(len(y0))
- prederr2 = 0.
- for inidx, outidx in cv_iter:
- res_l1o = sm.OLS(y0[inidx], fact[inidx,:]).fit()
- #print data.endog[outidx], res.model.predict(data.exog[outidx,:]),
- prederr2 += (y0[outidx] - res_l1o.model.predict(fact[outidx,:]))**2.
- else:
- prederr2 = np.nan
-
- results.append([k, res.aic, res.bic, res.rsquared_adj, prederr2])
-
- self.results_find_nfact = results = np.array(results)
- self.best_nfact = np.r_[(np.argmin(results[:,1:3],0), np.argmax(results[:,3],0),
- np.argmin(results[:,-1],0))]
-
- def summary_find_nfact(self):
- '''provides a summary for the selection of the number of factors
-
- Returns
- -------
- sumstr : string
- summary of the results for selecting the number of factors
-
- '''
- if not hasattr(self, 'results_find_nfact'):
- self.fit_find_nfact()
-
-
- results = self.results_find_nfact
- sumstr = ''
- sumstr += '\n' + 'Best result for k, by AIC, BIC, R2_adj, L1O'
-# best = np.r_[(np.argmin(results[:,1:3],0), np.argmax(results[:,3],0),
-# np.argmin(results[:,-1],0))]
-
- sumstr += '\n' + ' '*19 + '%5d %4d %6d %5d' % tuple(self.best_nfact)
-
- from scikits.statsmodels.iolib.table import (SimpleTable, default_txt_fmt,
- default_latex_fmt, default_html_fmt)
-
- headers = 'k, AIC, BIC, R2_adj, L1O'.split(', ')
- numformat = ['%6d'] + ['%10.3f']*4 #'%10.4f'
- txt_fmt1 = dict(data_fmts = numformat)
- tabl = SimpleTable(results, headers, None, txt_fmt=txt_fmt1)
-
- sumstr += '\n' + "PCA regression on simulated data,"
- sumstr += '\n' + "DGP: 2 factors and 4 explanatory variables"
- sumstr += '\n' + tabl.__str__()
- sumstr += '\n' + "Notes: k is number of components of PCA,"
- sumstr += '\n' + " constant is added additionally"
- sumstr += '\n' + " k=0 means regression on constant only"
- sumstr += '\n' + " L1O: sum of squared prediction errors for leave-one-out"
- return sumstr
-
-
-if __name__ == '__main__':
-
- examples = [1]
- if 1 in examples:
- nobs = 500
- f0 = np.c_[np.random.normal(size=(nobs,2)), np.ones((nobs,1))]
- f2xcoef = np.c_[np.repeat(np.eye(2),2,0),np.arange(4)[::-1]].T
- f2xcoef = np.array([[ 1., 1., 0., 0.],
- [ 0., 0., 1., 1.],
- [ 3., 2., 1., 0.]])
- f2xcoef = np.array([[ 0.1, 3., 1., 0.],
- [ 0., 0., 1.5, 0.1],
- [ 3., 2., 1., 0.]])
- x0 = np.dot(f0, f2xcoef)
- x0 += 0.1*np.random.normal(size=x0.shape)
- ytrue = np.dot(f0,[1., 1., 1.])
- y0 = ytrue + 0.1*np.random.normal(size=ytrue.shape)
-
- mod = FactorModelUnivariate(y0, x0)
- print mod.summary_find_nfact()
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/dataset_notes.rst b/statsmodels/scikits/statsmodels/sandbox/dataset_notes.rst
deleted file mode 100644
index 45440e8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/dataset_notes.rst
+++ /dev/null
@@ -1,66 +0,0 @@
-Adding a dataset.
-
-Main Steps
-1) Obtain permission to use the data.
-
-1) Obtain permission! This is really important! I usually look up an e-mail
-address and politely (and briefly) explain why I would like to use the data.
-Most people get back to me almost immediately, and I have never had anyone say
-no. After all, I think most academics are sympathetic to the idea that
-information wants to be free...
-
-2) Make a directory in the datasets folder. For this example I will be using
-the Spector and Mazzeo data from Greene's Econometric Analysis, so I make a
-folder called statsmodels/datasets/spector
-
-3) Copy the template_data.py file over to the new directory, but rename it data.py. It contains all the meta information for the datasets. So we now have datasets/spector/data.py
-
-4) Put the raw data into this folder and convert it.
-
-Sometimes the data used for examples is different than the raw data. If this
-is the case then the datasets/spector directory should contain a folder named
-src for the original data. In this case, the data is clean, so I just put a
-file name spector.csv into datasets/spector. This file is just an ascii file
-with spaces as delimiters. If the file requires a little cleaning, then put the
-raw data in src and create a file called spector.csv in the spector folder for
-the cleaned data.
-
-After this is done, we use the convert function in scikits.statsmodels.datasets.data_utils to convert the data into the format needed. In the folder with our .csv file, just do.
-
-from scikits.statsmodels.datasets.data_utils import convert
-convert('./spector.csv', delimiter=" ")
-
-This creates a spector.py file, which contains all of the variables as lists of strings.
-
-5) Edit data.py to reflect the correct meta information.
-
-Usually, this will require editing the COPYRIGHT, TITLE, SOURCE,
-DESCRSHORT (and/or DESCRLONG), and "NOTE"
-
-6) Edit the Load class of data.py to load the newly created dataset.
-
-In this case, we change the following lines to read
-
-from spector import __dict__, names
-self.endog = np.array(self._d[self._names[4]], dtype=float)
-self.exog = np.column_stack(self._d[i] \
- for i in self._names[1:4]).astype(np.float)
-
-This is probably not the best way to handle the datasets class, and will
-probably change in the future as the datasets package becomes more robust.
-Suggetions are very welcome.
-
-7) Create an __init__.py in the new folder
-
-The __init__.py file should contain
-
-from data import *
-
-8) Edit the datasets.__init__.py to import the new directory
-
-9) Make sure everything is correct, and you've saved everything,
- and put the directory under version control.
-
-bzr add spector
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/descstats.py b/statsmodels/scikits/statsmodels/sandbox/descstats.py
deleted file mode 100644
index ada17d2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/descstats.py
+++ /dev/null
@@ -1,229 +0,0 @@
-'''
-Glue for returning descriptive statistics.
-'''
-import numpy as np
-from scipy import stats
-import os
-
-#############################################
-#
-#============================================
-# Univariate Descriptive Statistics
-#============================================
-#
-
-def sign_test(samp,mu0=0):
- '''
- Signs test with mu0=0 by default (though
- the median is often used in practice)
-
- Parameters
- ----------
- samp
-
- mu0
-
- Returns
- ---------
- M, p-value
-
- where
-
- M=(N(+) - N(-))/2, N(+) is the number of values above Mu0,
- N(-) is the number of values below. Values equal to Mu0
- are discarded.
-
- The p-value for M is calculated using the binomial distrubution
- and can be intrepreted the same as for a t-test.
-
- See Also
- ---------
- scipy.stats.wilcoxon
- '''
- pos=np.sum(samp>mu0)
- neg=np.sum(samp>> descstats(data.exog,v=['x_1','x_2','x_3'])
- '''
-
- x = np.array(data) # or rather, the data we're interested in
- if cols is None:
-# if isinstance(x, np.recarray):
-# cols = np.array(len(x.dtype.names))
- if not isinstance(x, np.recarray) and x.ndim == 1:
- x = x[:,None]
-
- if x.shape[1] == 1:
- desc = '''
- ---------------------------------------------
- Univariate Descriptive Statistics
- ---------------------------------------------
-
- Var. Name %(name)12s
- ----------
- Obs. %(nobs)22i Range %(range)22s
- Sum of Wts. %(sum)22s Coeff. of Variation %(coeffvar)22.4g
- Mode %(mode)22.4g Skewness %(skewness)22.4g
- Repeats %(nmode)22i Kurtosis %(kurtosis)22.4g
- Mean %(mean)22.4g Uncorrected SS %(uss)22.4g
- Median %(median)22.4g Corrected SS %(ss)22.4g
- Variance %(variance)22.4g Sum Observations %(sobs)22.4g
- Std. Dev. %(stddev)22.4g
- ''' % {'name': cols, 'sum': 'N/A', 'nobs': len(x), 'mode': \
- stats.mode(x)[0][0], 'nmode': stats.mode(x)[1][0], \
- 'mean': x.mean(), 'median': np.median(x), 'range': \
- '('+str(x.min())+', '+str(x.max())+')', 'variance': \
- x.var(), 'stddev': x.std(), 'coeffvar': \
- stats.variation(x), 'skewness': stats.skew(x), \
- 'kurtosis': stats.kurtosis(x), 'uss': stats.ss(x),\
- 'ss': stats.ss(x-x.mean()), 'sobs': np.sum(x)}
-
-# ''' % {'name': cols[0], 'sum': 'N/A', 'nobs': len(x[cols[0]]), 'mode': \
-# stats.mode(x[cols[0]])[0][0], 'nmode': stats.mode(x[cols[0]])[1][0], \
-# 'mean': x[cols[0]].mean(), 'median': np.median(x[cols[0]]), 'range': \
-# '('+str(x[cols[0]].min())+', '+str(x[cols[0]].max())+')', 'variance': \
-# x[cols[0]].var(), 'stddev': x[cols[0]].std(), 'coeffvar': \
-# stats.variation(x[cols[0]]), 'skewness': stats.skew(x[cols[0]]), \
-# 'kurtosis': stats.kurtosis(x[cols[0]]), 'uss': stats.ss(x[cols[0]]),\
-# 'ss': stats.ss(x[cols[0]]-x[cols[0]].mean()), 'sobs': np.sum(x[cols[0]])}
-
- desc+= '''
-
- Percentiles
- -------------
- 1 %% %12.4g
- 5 %% %12.4g
- 10 %% %12.4g
- 25 %% %12.4g
-
- 50 %% %12.4g
-
- 75 %% %12.4g
- 90 %% %12.4g
- 95 %% %12.4g
- 99 %% %12.4g
- ''' % tuple([stats.scoreatpercentile(x,per) for per in (1,5,10,25,
- 50,75,90,95,99)])
- t,p_t=stats.ttest_1samp(x,0)
- M,p_M=sign_test(x)
- S,p_S=stats.wilcoxon(np.squeeze(x))
-
- desc+= '''
-
- Tests of Location (H0: Mu0=0)
- -----------------------------
- Test Statistic Two-tailed probability
- -----------------+-----------------------------------------
- Student's t | t %7.5f Pr > |t| <%.4f
- Sign | M %8.2f Pr >= |M| <%.4f
- Signed Rank | S %8.2f Pr >= |S| <%.4f
-
- ''' % (t,p_t,M,p_M,S,p_S)
-# Should this be part of a 'descstats'
-# in any event these should be split up, so that they can be called
-# individually and only returned together if someone calls summary
-# or something of the sort
-
- elif x.shape[1] > 1:
- desc ='''
- Var. Name | Obs. Mean Std. Dev. Range
- ------------+--------------------------------------------------------'''+\
- os.linesep
-
-# for recarrays with columns passed as names
-# if isinstance(cols[0],str):
-# for var in cols:
-# desc += "%(name)15s %(obs)9i %(mean)12.4g %(stddev)12.4g \
-#%(range)20s" % {'name': var, 'obs': len(x[var]), 'mean': x[var].mean(),
-# 'stddev': x[var].std(), 'range': '('+str(x[var].min())+', '\
-# +str(x[var].max())+')'+os.linesep}
-# else:
- for var in range(x.shape[1]):
- desc += "%(name)15s %(obs)9i %(mean)12.4g %(stddev)12.4g \
-%(range)20s" % {'name': var, 'obs': len(x[:,var]), 'mean': x[:,var].mean(),
- 'stddev': x[:,var].std(), 'range': '('+str(x[:,var].min())+', '+\
- str(x[:,var].max())+')'+os.linesep}
- else:
- raise ValueError, "data not understood"
-
- return desc
-
-#if __name__=='__main__':
-# test descstats
-# import os
-# loc='http://eagle1.american.edu/~js2796a/data/handguns_data.csv'
-# relpath=(load_dataset(loc))
-# dta=np.recfromcsv(relpath)
-# descstats(dta,['stpop'])
-# raw_input('Hit enter for multivariate test')
-# descstats(dta,['stpop','avginc','vio'])
-
-# with plain arrays
-# import string2dummy as s2d
-# dts=s2d.string2dummy(dta)
-# ndts=np.vstack(dts[col] for col in dts.dtype.names)
-# observations in columns and data in rows
-# is easier for the call to stats
-
-# what to make of
-# ndts=np.column_stack(dts[col] for col in dts.dtype.names)
-# ntda=ntds.swapaxis(1,0)
-# ntda is ntds returns false?
-
-# or now we just have detailed information about the different strings
-# would this approach ever be inappropriate for a string typed variable
-# other than dates?
-# descstats(ndts, [1])
-# raw_input("Enter to try second part")
-# descstats(ndts, [1,20,3])
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
- import os
- data = sm.datasets.longley.load()
- data.exog = sm.add_constant(data.exog)
- sum1 = descstats(data.exog)
- sum1a = descstats(data.exog[:,:1])
-
-# loc='http://eagle1.american.edu/~js2796a/data/handguns_data.csv'
-# dta=np.recfromcsv(loc)
-# summary2 = descstats(dta,['stpop'])
-# summary3 = descstats(dta,['stpop','avginc','vio'])
-#TODO: needs a by argument
-# summary4 = descstats(dta) this fails
-# this is a bug
-# p = dta[['stpop']]
-# p.view(dtype = np.float, type = np.ndarray)
-# this works
-# p.view(dtype = np.int, type = np.ndarray)
-
-### This is *really* slow ###
- if os.path.isfile('./Econ724_PS_I_Data.csv'):
- data2 = np.recfromcsv('./Econ724_PS_I_Data.csv')
- sum2 = descstats(data2.ahe)
- sum3 = descstats(np.column_stack((data2.ahe,data2.yrseduc)))
- sum4 = descstats(np.column_stack(([data2[_] for \
- _ in data2.dtype.names])))
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/__init__.py b/statsmodels/scikits/statsmodels/sandbox/distributions/__init__.py
deleted file mode 100644
index 72a6b33..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-'''temporary location for enhancements to scipy.stats
-
-includes
-^^^^^^^^
-
-* Per Brodtkorb's estimation enhancements to scipy.stats.distributions
- - distributions_per.py is copy of scipy.stats.distributions.py with changes
- - distributions_profile.py partially extracted classes and functions to
- separate code into more managable pieces
-* josef's extra distribution and helper functions
- - moment helpers
- - goodness of fit test
- - fitting distributions with some fixed parameters
- - find best distribution that fits data: working script
-* example and test folders to keep all together
-
-status
-^^^^^^
-
-mixed status : from not-working to well-tested
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/copula.py b/statsmodels/scikits/statsmodels/sandbox/distributions/copula.py
deleted file mode 100644
index 6760e11..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/copula.py
+++ /dev/null
@@ -1,316 +0,0 @@
-'''
-
-Which Archimedean is Best?
-Extreme Value copulas formulas are based on Genest 2009
-
-References
-----------
-
-Genest, C., 2009. Rank-based inference for bivariate extreme-value
-copulas. The Annals of Statistics, 37(5), pp.2990-3022.
-
-
-
-'''
-
-
-import numpy as np
-from scipy.special import expm1, log1p
-
-
-def copula_bv_indep(u,v):
- '''independent bivariate copula
- '''
- return u*v
-
-def copula_bv_min(u,v):
- '''comonotonic bivariate copula
- '''
- return np.minimum(u, v)
-
-def copula_bv_max(u, v):
- '''countermonotonic bivariate copula
- '''
- return np.maximum(u + v - 1, 0)
-
-def copula_bv_clayton(u, v, theta):
- '''Clayton or Cook, Johnson bivariate copula
- '''
- if not theta > 0:
- raise ValueError('theta needs to be strictly positive')
- return np.power(np.power(u, -theta) + np.power(v, -theta) - 1, -theta)
-
-def copula_bv_frank(u, v, theta):
- '''Cook, Johnson bivariate copula
- '''
- if not theta > 0:
- raise ValueError('theta needs to be strictly positive')
- cdfv = -np.log(1 + expm1(-theta*u) * expm1(-theta*v) / expm1(-theta))/theta
- cdfv = np.minimum(cdfv, 1) #necessary for example if theta=100
- return cdfv
-
-
-def copula_bv_gauss(u, v, rho):
- raise NotImplementedError
-
-def copula_bv_t(u, v, rho, df):
- raise NotImplementedError
-
-#not used yet
-class Transforms(object):
- def __init__(self):
- pass
-
-class TransfFrank(object):
-
- def evaluate(self, t, theta):
- return - (np.log(-expm1(-theta*t)) - np.log(-expm1(-theta)))
- #return - np.log(expm1(-theta*t) / expm1(-theta))
-
- def inverse(self, phi, theta):
- return -np.log1p(np.exp(-phi) * expm1(-theta)) / theta
-
-class TransfClayton(object):
-
- def _checkargs(theta):
- return theta > 0
-
- def evaluate(self, t, theta):
- return np.power(t, -theta) - 1.
-
- def inverse(self, phi, theta):
- return np.power(1 + phi, -theta)
-
-class TransfGumbel(object):
- '''
- requires theta >=1
- '''
-
- def _checkargs(theta):
- return theta >= 1
-
- def evaluate(self, t, theta):
- return np.power(-np.log(t), theta)
-
- def inverse(self, phi, theta):
- return np.exp(-np.power(phi, 1. / theta))
-
-class TransfIndep(object):
- def evaluate(self, t):
- return -np.log(t)
-
- def inverse(self, phi):
- return np.exp(-phi)
-
-def copula_bv_archimedean(u, v, transform, args=()):
- '''
- '''
- phi = transform.evaluate
- phi_inv = transform.inverse
- cdfv = phi_inv(phi(u, *args) + phi(v, *args), *args)
- return cdfv
-
-
-def copula_mv_archimedean(u, transform, args=(), axis=-1):
- '''generic multivariate Archimedean copula
- '''
- phi = transform.evaluate
- phi_inv = transform.inverse
- cdfv = phi_inv(phi(u, *args).sum(axis), *args)
- return cdfv
-
-
-def copula_bv_ev(u, v, transform, args=()):
- '''generic bivariate extreme value copula
- '''
- return np.exp(np.log(u * v) * (transform(np.log(v)/np.log(u*v), *args)))
-
-def transform_tawn(t, a1, a2, theta):
- '''asymmetric logistic model of Tawn 1988
-
- special case: a1=a2=1 : Gumbel
-
- restrictions:
- - theta in (0,1]
- - a1, a2 in [0,1]
- '''
-
- def _check_args(a1, a2, theta):
- condth = (theta > 0) and (theta <= 1)
- conda1 = (a1 >= 0) and (a1 <= 1)
- conda2 = (a2 >= 0) and (a2 <= 1)
- return condth and conda1 and conda2
-
- if not np.all(_check_args(a1, a2, theta)):
- raise ValueError('invalid args')
-
- transf = (1 - a1) * (1-t)
- transf += (1 - a2) * t
- transf += ((a1 * t)**(1./theta) + (a2 * (1-t))**(1./theta))**theta
-
- return transf
-
-def transform_joe(t, a1, a2, theta):
- '''asymmetric negative logistic model of Joe 1990
-
- special case: a1=a2=1 : symmetric negative logistic of Galambos 1978
-
- restrictions:
- - theta in (0,inf)
- - a1, a2 in (0,1]
- '''
-
- def _check_args(a1, a2, theta):
- condth = (theta > 0)
- conda1 = (a1 > 0) and (a1 <= 1)
- conda2 = (a2 > 0) and (a2 <= 1)
- return condth and conda1 and conda2
-
- if not np.all(_check_args(a1, a2, theta)):
- raise ValueError('invalid args')
-
- transf = 1 - ((a1 * (1-t))**(-1./theta) + (a2 * t)**(-1./theta))**(-theta)
- return transf
-
-
-def transform_tawn2(t, theta, k):
- '''asymmetric mixed model of Tawn 1988
-
- special case: k=0, theta in [0,1] : symmetric mixed model of
- Tiago de Oliveira 1980
-
- restrictions:
- - theta > 0
- - theta + 3*k > 0
- - theta + k <= 1
- - theta + 2*k <= 1
- '''
-
- def _check_args(theta, k):
- condth = (theta >= 0)
- cond1 = (theta + 3*k > 0) and (theta + k <= 1) and (theta + 2*k <= 1)
- return condth and cond1
-
- if not np.all(_check_args(theta, k)):
- raise ValueError('invalid args')
-
- transf = 1 - (theta + k) * t + theta * t*t + k * t**3
- return transf
-
-def transform_bilogistic(t, beta, delta):
- '''bilogistic model of Coles and Tawn 1994, Joe, Smith and Weissman 1992
-
- restrictions:
- - (beta, delta) in (0,1)^2 or
- - (beta, delta) in (-inf,0)^2
-
- not vectorized because of numerical integration
- '''
-
- def _check_args(beta, delta):
- cond1 = (beta > 0) and (beta <= 1) and (delta > 0) and (delta <= 1)
- cond2 = (beta < 0) and (delta < 0)
- return cond1 | cond2
-
- if not np.all(_check_args(beta, delta)):
- raise ValueError('invalid args')
-
- def _integrant(w):
- term1 = (1 - beta) * np.power(w, -beta) * (1-t)
- term2 = (1 - delta) * np.power(1-w, -delta) * t
- np.maximum(term1, term2)
-
- from scipy.integrate import quad
- transf = quad(_integrant, 0, 1)
- return transf
-
-def transform_hr(t, lamda):
- '''model of Huesler Reiss 1989
-
- special case: a1=a2=1 : symmetric negative logistic of Galambos 1978
-
- restrictions:
- - lambda in (0,inf)
- '''
-
- def _check_args(lamda):
- cond = (lamda > 0)
- return cond
-
- if not np.all(_check_args(lamda)):
- raise ValueError('invalid args')
-
- term = np.log((1. - t) / t) * 0.5 / lamda
-
- from scipy.stats import norm #use special if I want to avoid stats import
- transf = (1 - t) * norm._cdf(lamda + term) + t * norm._cdf(lamda - term)
- return transf
-
-def transform_tev(t, rho, x):
- '''t-EV model of Demarta and McNeil 2005
-
- restrictions:
- - rho in (-1,1)
- - x > 0
- '''
-
- def _check_args(rho, x):
- cond1 = (x > 0)
- cond2 = (rho > 0) and (rho < 1)
- return cond1 and cond2
-
- if not np.all(_check_args(rho, x)):
- raise ValueError('invalid args')
-
- from scipy.stats import t as stats_t #use special if I want to avoid stats import
-
- z = np.sqrt(1. + x) * (np.power(t/(1.-t), 1./x) - rho)
- z /= np.sqrt(1 - rho*rho)
- transf = (1 - t) * stats_t._cdf(z, x+1) + t * stats_t._cdf(z, x+1)
- return transf
-
-#define dictionary of copulas by names and aliases
-copulanames = {'indep' : copula_bv_indep,
- 'i' : copula_bv_indep,
- 'min' : copula_bv_min,
- 'max' : copula_bv_max,
- 'clayton' : copula_bv_clayton,
- 'cookjohnson' : copula_bv_clayton,
- 'cj' : copula_bv_clayton,
- 'frank' : copula_bv_frank,
- 'gauss' : copula_bv_gauss,
- 'normal' : copula_bv_gauss,
- 't' : copula_bv_frank}
-
-class CopulaBivariate(object):
- '''bivariate copula class
-
- Instantiation needs the arguments, cop_args, that are required for copula
- '''
- def __init__(self, marginalcdfs, copula, copargs=()):
- if copula in copulanames:
- self.copula = copulanames[copula]
- else:
- #see if we can call it as a copula function
- try:
- tmp = copula(0.5, 0.5, *copargs)
- except: #blanket since we throw again
- raise ValueError('copula needs to be a copula name or callable')
- self.copula = copula
-
- #no checking done on marginals
- self.marginalcdfs = marginalcdfs
- self.copargs = copargs
-
- def cdf(self, xy, args=None):
- '''xx needs to be iterable, instead of x,y for extension to multivariate
- '''
- x, y = xy
- if args is None:
- args = self.copargs
- return self.copula(self.marginalcdfs[0](x), self.marginalcdfs[1](y),
- *args)
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/estimators.py b/statsmodels/scikits/statsmodels/sandbox/distributions/estimators.py
deleted file mode 100644
index 3a458fa..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/estimators.py
+++ /dev/null
@@ -1,694 +0,0 @@
-'''estimate distribution parameters by various methods
-method of moments or matching quantiles, and Maximum Likelihood estimation
-based on binned data and Maximum Product-of-Spacings
-
-Warning: I'm still finding cut-and-paste and refactoring errors, e.g.
- hardcoded variables from outer scope in functions
- some results don't seem to make sense for Pareto case,
- looks better now after correcting some name errors
-
-initially loosely based on a paper and blog for quantile matching
- by John D. Cook
- formula for gamma quantile (ppf) matching by him (from paper)
- http://www.codeproject.com/KB/recipes/ParameterPercentile.aspx
- http://www.johndcook.com/blog/2010/01/31/parameters-from-percentiles/
- this is what I actually used (in parts):
- http://www.bepress.com/mdandersonbiostat/paper55/
-
-quantile based estimator
-^^^^^^^^^^^^^^^^^^^^^^^^
-only special cases for number or parameters so far
-Is there a literature for GMM estimation of distribution parameters? check
- found one: Wu/Perloff 2007
-
-
-binned estimator
-^^^^^^^^^^^^^^^^
-* I added this also
-* use it for chisquare tests with estimation distribution parameters
-* move this to distribution_extras (next to gof tests powerdiscrepancy and
- continuous) or add to distribution_patch
-
-
-example: t-distribution
-* works with quantiles if they contain tail quantiles
-* results with momentcondquant don't look as good as mle estimate
-
-TODOs
-* rearange and make sure I don't use module globals (as I did initially) DONE
- make two version exactly identified method of moments with fsolve
- and GMM (?) version with fmin
- and maybe the special cases of JD Cook
- update: maybe exact (MM) version is not so interesting compared to GMM
-* add semifrozen version of moment and quantile based estimators,
- e.g. for beta (both loc and scale fixed), or gamma (loc fixed)
-* add beta example to the semifrozen MLE, fitfr, code
- -> added method of moment estimator to _fitstart for beta
-* start a list of how well different estimators, especially current mle work
- for the different distributions
-* need general GMM code (with optimal weights ?), looks like a good example
- for it
-* get example for binned data estimation, mailing list a while ago
-* any idea when these are better than mle ?
-* check language: I use quantile to mean the value of the random variable, not
- quantile between 0 and 1.
-* for GMM: move moment conditions to separate function, so that they can be
- used for further analysis, e.g. covariance matrix of parameter estimates
-* question: Are GMM properties different for matching quantiles with cdf or
- ppf? Estimate should be the same, but derivatives of moment conditions
- differ.
-* add maximum spacings estimator, Wikipedia, Per Brodtkorb -> basic version Done
-* add parameter estimation based on empirical characteristic function
- (Carrasco/Florens), especially for stable distribution
-* provide a model class based on estimating all distributions, and collect
- all distribution specific information
-
-
-References
-----------
-
-Ximing Wu, Jeffrey M. Perloff, GMM estimation of a maximum entropy
-distribution with interval data, Journal of Econometrics, Volume 138,
-Issue 2, 'Information and Entropy Econometrics' - A Volume in Honor of
-Arnold Zellner, June 2007, Pages 532-546, ISSN 0304-4076,
-DOI: 10.1016/j.jeconom.2006.05.008.
-http://www.sciencedirect.com/science/article/B6VC0-4K606TK-4/2/78bc07c6245546374490f777a6bdbbcc
-http://escholarship.org/uc/item/7jf5w1ht (working paper)
-
-Johnson, Kotz, Balakrishnan: Volume 2
-
-
-Author : josef-pktd
-License : BSD
-created : 2010-04-20
-
-changes:
-added Maximum Product-of-Spacings 2010-05-12
-
-'''
-
-
-import numpy as np
-from scipy import stats, optimize, special
-
-cache = {} #module global storage for temp results, not used
-
-
-# the next two use distfn from module scope - not anymore
-def gammamomentcond(distfn, params, mom2, quantile=None):
- '''estimate distribution parameters based method of moments (mean,
- variance) for distributions with 1 shape parameter and fixed loc=0.
-
- Returns
- -------
- cond : function
-
- Notes
- -----
- first test version, quantile argument not used
-
- '''
- def cond(params):
- alpha, scale = params
- mom2s = distfn.stats(alpha, 0.,scale)
- #quantil
- return np.array(mom2)-mom2s
- return cond
-
-def gammamomentcond2(distfn, params, mom2, quantile=None):
- '''estimate distribution parameters based method of moments (mean,
- variance) for distributions with 1 shape parameter and fixed loc=0.
-
- Returns
- -------
- difference : array
- difference between theoretical and empirical moments
-
- Notes
- -----
- first test version, quantile argument not used
-
- The only difference to previous function is return type.
-
- '''
- alpha, scale = params
- mom2s = distfn.stats(alpha, 0.,scale)
- return np.array(mom2)-mom2s
-
-
-
-######### fsolve doesn't move in small samples, fmin not very accurate
-def momentcondunbound(distfn, params, mom2, quantile=None):
- '''moment conditions for estimating distribution parameters using method
- of moments, uses mean, variance and one quantile for distributions
- with 1 shape parameter.
-
- Returns
- -------
- difference : array
- difference between theoretical and empirical moments and quantiles
-
- '''
- shape, loc, scale = params
- mom2diff = np.array(distfn.stats(shape, loc,scale)) - mom2
- if not quantile is None:
- pq, xq = quantile
- #ppfdiff = distfn.ppf(pq, alpha)
- cdfdiff = distfn.cdf(xq, shape, loc, scale) - pq
- return np.concatenate([mom2diff, cdfdiff[:1]])
- return mom2diff
-
-
-###### loc scale only
-def momentcondunboundls(distfn, params, mom2, quantile=None, shape=None):
- '''moment conditions for estimating loc and scale of a distribution
- with method of moments using either 2 quantiles or 2 moments (not both).
-
- Returns
- -------
- difference : array
- difference between theoretical and empirical moments or quantiles
-
- '''
- loc, scale = params
- mom2diff = np.array(distfn.stats(shape, loc, scale)) - mom2
- if not quantile is None:
- pq, xq = quantile
- #ppfdiff = distfn.ppf(pq, alpha)
- cdfdiff = distfn.cdf(xq, shape, loc, scale) - pq
- #return np.concatenate([mom2diff, cdfdiff[:1]])
- return cdfdiff
- return mom2diff
-
-
-
-######### try quantile GMM with identity weight matrix
-#(just a guess that's what it is
-
-def momentcondquant(distfn, params, mom2, quantile=None, shape=None):
- '''moment conditions for estimating distribution parameters by matching
- quantiles, defines as many moment conditions as quantiles.
-
- Returns
- -------
- difference : array
- difference between theoretical and empirical quantiles
-
- Notes
- -----
- This can be used for method of moments or for generalized method of
- moments.
-
- '''
- #this check looks redundant/unused know
- if len(params) == 2:
- loc, scale = params
- elif len(params) == 3:
- shape, loc, scale = params
- else:
- #raise NotImplementedError
- pass #see whether this might work, seems to work for beta with 2 shape args
-
- #mom2diff = np.array(distfn.stats(*params)) - mom2
- #if not quantile is None:
- pq, xq = quantile
- #ppfdiff = distfn.ppf(pq, alpha)
- cdfdiff = distfn.cdf(xq, *params) - pq
- #return np.concatenate([mom2diff, cdfdiff[:1]])
- return cdfdiff
- #return mom2diff
-
-def fitquantilesgmm(distfn, x, start=None, pquant=None, frozen=None):
- if pquant is None:
- pquant = np.array([0.01, 0.05,0.1,0.4,0.6,0.9,0.95,0.99])
- if start is None:
- if hasattr(distfn, '_fitstart'):
- start = distfn._fitstart(x)
- else:
- start = [1]*distfn.numargs + [0.,1.]
- #TODO: vectorize this:
- xqs = [stats.scoreatpercentile(x, p) for p in pquant*100]
- mom2s = None
- parest = optimize.fmin(lambda params:np.sum(
- momentcondquant(distfn, params, mom2s,(pquant,xqs), shape=None)**2), start)
- return parest
-
-
-
-def fitbinned(distfn, freq, binedges, start, fixed=None):
- '''estimate parameters of distribution function for binned data using MLE
-
- Parameters
- ----------
- distfn : distribution instance
- needs to have cdf method, as in scipy.stats
- freq : array, 1d
- frequency count, e.g. obtained by histogram
- binedges : array, 1d
- binedges including lower and upper bound
- start : tuple or array_like ?
- starting values, needs to have correct length
-
- Returns
- -------
- paramest : array
- estimated parameters
-
- Notes
- -----
- todo: add fixed parameter option
-
- added factorial
-
- '''
- if not fixed is None:
- raise NotImplementedError
- nobs = np.sum(freq)
- lnnobsfact = special.gammaln(nobs+1)
- def nloglike(params):
- '''negative loglikelihood function of binned data
-
- corresponds to multinomial
- '''
- prob = np.diff(distfn.cdf(binedges, *params))
- return -(lnnobsfact + np.sum(freq*np.log(prob)- special.gammaln(freq+1)))
- return optimize.fmin(nloglike, start)
-
-
-def fitbinnedgmm(distfn, freq, binedges, start, fixed=None, weightsoptimal=True):
- '''estimate parameters of distribution function for binned data using GMM
-
- Parameters
- ----------
- distfn : distribution instance
- needs to have cdf method, as in scipy.stats
- freq : array, 1d
- frequency count, e.g. obtained by histogram
- binedges : array, 1d
- binedges including lower and upper bound
- start : tuple or array_like ?
- starting values, needs to have correct length
- fixed : None
- not used yet
- weightsoptimal : boolean
- If true, then the optimal weighting matrix for GMM is used. If false,
- then the identity matrix is used
-
- Returns
- -------
- paramest : array
- estimated parameters
-
- Notes
- -----
- todo: add fixed parameter option
-
- added factorial
-
- '''
- if not fixed is None:
- raise NotImplementedError
- nobs = np.sum(freq)
- if weightsoptimal:
- weights = freq/float(nobs)
- else:
- weights = np.ones(len(freq))
- freqnormed = freq/float(nobs)
- # skip turning weights into matrix diag(freq/float(nobs))
- def gmmobjective(params):
- '''negative loglikelihood function of binned data
-
- corresponds to multinomial
- '''
- prob = np.diff(distfn.cdf(binedges, *params))
- momcond = freqnormed - prob
- return np.dot(momcond*weights, momcond)
- return optimize.fmin(gmmobjective, start)
-
-#Addition from try_maxproductspacings:
-"""Estimating Parameters of Log-Normal Distribution with Maximum
-Likelihood and Maximum Product-of-Spacings
-
-MPS definiton from JKB page 233
-
-Created on Tue May 11 13:52:50 2010
-Author: josef-pktd
-License: BSD
-"""
-
-def hess_ndt(fun, pars, args, options):
- import numdifftools as ndt
- if not ('stepMax' in options or 'stepFix' in options):
- options['stepMax'] = 1e-5
- f = lambda params: fun(params, *args)
- h = ndt.Hessian(f, **options)
- return h(pars), h
-
-def logmps(params, xsorted, dist):
- '''calculate negative log of Product-of-Spacings
-
- Parameters
- ----------
- params : array_like, tuple ?
- parameters of the distribution funciton
- xsorted : array_like
- data that is already sorted
- dist : instance of a distribution class
- only cdf method is used
-
- Returns
- -------
- mps : float
- negative log of Product-of-Spacings
-
-
- Notes
- -----
- MPS definiton from JKB page 233
- '''
- xcdf = np.r_[0., dist.cdf(xsorted, *params), 1.]
- D = np.diff(xcdf)
- return -np.log(D).mean()
-
-def getstartparams(dist, data):
- '''get starting values for estimation of distribution parameters
-
- Parameters
- ----------
- dist : distribution instance
- the distribution instance needs to have either a method fitstart
- or an attribute numargs
- data : ndarray
- data for which preliminary estimator or starting value for
- parameter estimation is desired
-
- Returns
- -------
- x0 : ndarray
- preliminary estimate or starting value for the parameters of
- the distribution given the data, including loc and scale
-
- '''
- if hasattr(dist, 'fitstart'):
- #x0 = getattr(dist, 'fitstart')(data)
- x0 = dist.fitstart(data)
- else:
- if np.isfinite(dist.a):
- x0 = np.r_[[1.]*dist.numargs, (data.min()-1), 1.]
- else:
- x0 = np.r_[[1.]*dist.numargs, (data.mean()-1), 1.]
- return x0
-
-def fit_mps(dist, data, x0=None):
- '''Estimate distribution parameters with Maximum Product-of-Spacings
-
- Parameters
- ----------
- params : array_like, tuple ?
- parameters of the distribution funciton
- xsorted : array_like
- data that is already sorted
- dist : instance of a distribution class
- only cdf method is used
-
- Returns
- -------
- x : ndarray
- estimates for the parameters of the distribution given the data,
- including loc and scale
-
-
- '''
- xsorted = np.sort(data)
- if x0 is None:
- x0 = getstartparams(dist, xsorted)
- args = (xsorted, dist)
- print x0
- #print args
- return optimize.fmin(logmps, x0, args=args)
-
-
-
-if __name__ == '__main__':
-
- #Example: gamma - distribution
- #-----------------------------
-
- print '\n\nExample: gamma Distribution'
- print '---------------------------'
-
- alpha = 2
- xq = [0.5, 4]
- pq = [0.1, 0.9]
- print stats.gamma.ppf(pq, alpha)
- xq = stats.gamma.ppf(pq, alpha)
- print np.diff((stats.gamma.ppf(pq, np.linspace(0.01,4,10)[:,None])*xq[::-1]))
- #optimize.bisect(lambda alpha: np.diff((stats.gamma.ppf(pq, alpha)*xq[::-1])))
- print optimize.fsolve(lambda alpha: np.diff((stats.gamma.ppf(pq, alpha)*xq[::-1])), 3.)
-
- distfn = stats.gamma
- mcond = gammamomentcond(distfn, [5.,10], mom2=stats.gamma.stats(alpha, 0.,1.), quantile=None)
- print optimize.fsolve(mcond, [1.,2.])
- mom2 = stats.gamma.stats(alpha, 0.,1.)
- print optimize.fsolve(lambda params:gammamomentcond2(distfn, params, mom2), [1.,2.])
-
- grvs = stats.gamma.rvs(alpha, 0.,2., size=1000)
- mom2 = np.array([grvs.mean(), grvs.var()])
- alphaestq = optimize.fsolve(lambda params:gammamomentcond2(distfn, params, mom2), [1.,3.])
- print alphaestq
- print 'scale = ', xq/stats.gamma.ppf(pq, alphaestq)
-
-
- #Example beta - distribution
- #---------------------------
-
- #Warning: this example had cut-and-paste errors
-
- print '\n\nExample: beta Distribution'
- print '--------------------------'
-
- #monkey patching :
-## if hasattr(stats.beta, '_fitstart'):
-## del stats.beta._fitstart #bug in _fitstart #raises AttributeError: _fitstart
- #stats.distributions.beta_gen._fitstart = lambda self, data : np.array([1,1,0,1])
- #_fitstart seems to require a tuple
- stats.distributions.beta_gen._fitstart = lambda self, data : (5,5,0,1)
-
- pq = np.array([0.01, 0.05,0.1,0.4,0.6,0.9,0.95,0.99])
- #rvsb = stats.beta.rvs(0.5,0.15,size=200)
- rvsb = stats.beta.rvs(10,15,size=2000)
- print 'true params', 10, 15, 0, 1
- print stats.beta.fit(rvsb)
- xqsb = [stats.scoreatpercentile(rvsb, p) for p in pq*100]
- mom2s = np.array([rvsb.mean(), rvsb.var()])
- betaparest_gmmquantile = optimize.fmin(lambda params:np.sum(momentcondquant(stats.beta, params, mom2s,(pq,xqsb), shape=None)**2),
- [10,10, 0., 1.], maxiter=2000)
- print 'betaparest_gmmquantile', betaparest_gmmquantile
- #result sensitive to initial condition
-
-
- #Example t - distribution
- #------------------------
-
- print '\n\nExample: t Distribution'
- print '-----------------------'
-
- nobs = 1000
- distfn = stats.t
- pq = np.array([0.1,0.9])
- paramsdgp = (5, 0, 1)
- trvs = distfn.rvs(5, 0, 1, size=nobs)
- xqs = [stats.scoreatpercentile(trvs, p) for p in pq*100]
- mom2th = distfn.stats(*paramsdgp)
- mom2s = np.array([trvs.mean(), trvs.var()])
- tparest_gmm3quantilefsolve = optimize.fsolve(lambda params:momentcondunbound(distfn,params, mom2s,(pq,xqs)), [10,1.,2.])
- print 'tparest_gmm3quantilefsolve', tparest_gmm3quantilefsolve
- tparest_gmm3quantile = optimize.fmin(lambda params:np.sum(momentcondunbound(distfn,params, mom2s,(pq,xqs))**2), [10,1.,2.])
- print 'tparest_gmm3quantile', tparest_gmm3quantile
- print distfn.fit(trvs)
-
- ##
-
- ##distfn = stats.t
- ##pq = np.array([0.1,0.9])
- ##paramsdgp = (5, 0, 1)
- ##trvs = distfn.rvs(5, 0, 1, size=nobs)
- ##xqs = [stats.scoreatpercentile(trvs, p) for p in pq*100]
- ##mom2th = distfn.stats(*paramsdgp)
- ##mom2s = np.array([trvs.mean(), trvs.var()])
- print optimize.fsolve(lambda params:momentcondunboundls(distfn, params, mom2s,shape=5), [1.,2.])
- print optimize.fmin(lambda params:np.sum(momentcondunboundls(distfn, params, mom2s,shape=5)**2), [1.,2.])
- print distfn.fit(trvs)
- #loc, scale, based on quantiles
- print optimize.fsolve(lambda params:momentcondunboundls(distfn, params, mom2s,(pq,xqs),shape=5), [1.,2.])
-
- ##
-
- pq = np.array([0.01, 0.05,0.1,0.4,0.6,0.9,0.95,0.99])
- #paramsdgp = (5, 0, 1)
- xqs = [stats.scoreatpercentile(trvs, p) for p in pq*100]
- tparest_gmmquantile = optimize.fmin(lambda params:np.sum(momentcondquant(distfn, params, mom2s,(pq,xqs), shape=None)**2), [10, 1.,2.])
- print 'tparest_gmmquantile', tparest_gmmquantile
- tparest_gmmquantile2 = fitquantilesgmm(distfn, trvs, start=[10, 1.,2.], pquant=None, frozen=None)
- print 'tparest_gmmquantile2', tparest_gmmquantile2
-
-
- ##
-
-
- #use trvs from before
- bt = stats.t.ppf(np.linspace(0,1,21),5)
- ft,bt = np.histogram(trvs,bins=bt)
- print 'fitbinned t-distribution'
- tparest_mlebinew = fitbinned(stats.t, ft, bt, [10, 0, 1])
- tparest_gmmbinewidentity = fitbinnedgmm(stats.t, ft, bt, [10, 0, 1])
- tparest_gmmbinewoptimal = fitbinnedgmm(stats.t, ft, bt, [10, 0, 1], weightsoptimal=False)
- print paramsdgp
-
- #Note: this can be used for chisquare test and then has correct asymptotic
- # distribution for a distribution with estimated parameters, find ref again
- #TODO combine into test with binning included, check rule for number of bins
-
- #bt2 = stats.t.ppf(np.linspace(trvs.,1,21),5)
- ft2,bt2 = np.histogram(trvs,bins=50)
- 'fitbinned t-distribution'
- tparest_mlebinel = fitbinned(stats.t, ft2, bt2, [10, 0, 1])
- tparest_gmmbinelidentity = fitbinnedgmm(stats.t, ft2, bt2, [10, 0, 1])
- tparest_gmmbineloptimal = fitbinnedgmm(stats.t, ft2, bt2, [10, 0, 1], weightsoptimal=False)
- tparest_mle = stats.t.fit(trvs)
-
- np.set_printoptions(precision=6)
- print 'sample size', nobs
- print 'true (df, loc, scale) ', paramsdgp
- print 'parest_mle ', tparest_mle
- print
- print 'tparest_mlebinel ', tparest_mlebinel
- print 'tparest_gmmbinelidentity ', tparest_gmmbinelidentity
- print 'tparest_gmmbineloptimal ', tparest_gmmbineloptimal
- print
- print 'tparest_mlebinew ', tparest_mlebinew
- print 'tparest_gmmbinewidentity ', tparest_gmmbinewidentity
- print 'tparest_gmmbinewoptimal ', tparest_gmmbinewoptimal
- print
- print 'tparest_gmmquantileidentity', tparest_gmmquantile
- print 'tparest_gmm3quantilefsolve ', tparest_gmm3quantilefsolve
- print 'tparest_gmm3quantile ', tparest_gmm3quantile
-
- ''' example results:
- standard error for df estimate looks large
- note: iI don't impose that df is an integer, (b/c not necessary)
- need Monte Carlo to check variance of estimators
-
-
- sample size 1000
- true (df, loc, scale) (5, 0, 1)
- parest_mle [ 4.571405 -0.021493 1.028584]
-
- tparest_mlebinel [ 4.534069 -0.022605 1.02962 ]
- tparest_gmmbinelidentity [ 2.653056 0.012807 0.896958]
- tparest_gmmbineloptimal [ 2.437261 -0.020491 0.923308]
-
- tparest_mlebinew [ 2.999124 -0.0199 0.948811]
- tparest_gmmbinewidentity [ 2.900939 -0.020159 0.93481 ]
- tparest_gmmbinewoptimal [ 2.977764 -0.024925 0.946487]
-
- tparest_gmmquantileidentity [ 3.940797 -0.046469 1.002001]
- tparest_gmm3quantilefsolve [ 10. 1. 2.]
- tparest_gmm3quantile [ 6.376101 -0.029322 1.112403]
- '''
-
- #Example with Maximum Product of Spacings Estimation
- #===================================================
-
- #Example: Lognormal Distribution
- #-------------------------------
-
- #tough problem for MLE according to JKB
- #but not sure for which parameters
-
- print '\n\nExample: Lognormal Distribution'
- print '-------------------------------'
-
- sh = np.exp(10)
- sh = 0.01
- print sh
- x = stats.lognorm.rvs(sh,loc=100, scale=10,size=200)
-
- print x.min()
- print stats.lognorm.fit(x, 1.,loc=x.min()-1,scale=1)
-
- xsorted = np.sort(x)
-
- x0 = [1., x.min()-1, 1]
- args = (xsorted, stats.lognorm)
- print optimize.fmin(logmps,x0,args=args)
-
-
- #Example: Lomax, Pareto, Generalized Pareto Distributions
- #--------------------------------------------------------
-
- #partially a follow-up to the discussion about numpy.random.pareto
- #Reference: JKB
- #example Maximum Product of Spacings Estimation
-
- # current results:
- # doesn't look very good yet sensitivity to starting values
- # Pareto and Generalized Pareto look like a tough estimation problemprint '\n\nExample: Lognormal Distribution'
-
- print '\n\nExample: Lomax, Pareto, Generalized Pareto Distributions'
- print '--------------------------------------------------------'
-
-
-
- #p2rvs = np.random.pareto(2,size=500)# + 1
- p2rvs = stats.genpareto.rvs(2, size=500)
- #Note: is Lomax without +1; and classical Pareto with +1
- p2rvssorted = np.sort(p2rvs)
- argsp = (p2rvssorted, stats.pareto)
- x0p = [1., p2rvs.min()-5, 1]
- print optimize.fmin(logmps,x0p,args=argsp)
- print stats.pareto.fit(p2rvs, 0.5, loc=-20, scale=0.5)
- print 'gpdparest_ mle', stats.genpareto.fit(p2rvs)
- parsgpd = fit_mps(stats.genpareto, p2rvs)
- print 'gpdparest_ mps', parsgpd
- argsgpd = (p2rvssorted, stats.genpareto)
- options = dict(stepFix=1e-7)
- #hess_ndt(fun, pars, argsgdp, options)
- #the results for the following look strange, maybe refactoring error
- he, h = hess_ndt(logmps, parsgpd, argsgpd, options)
- print np.linalg.eigh(he)[0]
- f = lambda params: logmps(params, *argsgpd)
- print f(parsgpd)
- #add binned
- fp2, bp2 = np.histogram(p2rvs, bins=50)
- 'fitbinned t-distribution'
- gpdparest_mlebinel = fitbinned(stats.genpareto, fp2, bp2, x0p)
- gpdparest_gmmbinelidentity = fitbinnedgmm(stats.genpareto, fp2, bp2, x0p)
- print 'gpdparest_mlebinel', gpdparest_mlebinel
- print 'gpdparest_gmmbinelidentity', gpdparest_gmmbinelidentity
- gpdparest_gmmquantile2 = fitquantilesgmm(stats.genpareto, p2rvs, start=x0p, pquant=None, frozen=None)
- print 'gpdparest_gmmquantile2', gpdparest_gmmquantile2
- #something wrong : something hard coded ?
- '''
- >>> fitquantilesgmm(stats.genpareto, p2rvs, start=x0p, pquant=np.linspace(0.5,0.95,10), frozen=None)
- Traceback (most recent call last):
- File "", line 1, in
- fitquantilesgmm(stats.genpareto, p2rvs, start=x0p, pquant=np.linspace(0.5,0.95,10), frozen=None)
- File "C:\...\scikits\statsmodels\sandbox\stats\distribution_estimators.py", line 224, in fitquantilesgmm
- parest = optimize.fmin(lambda params:np.sum(momentcondquant(distfn, params, mom2s,(pq,xqs), shape=None)**2), start)
- File "c:\...\scipy-trunk_after\trunk\dist\scipy-0.8.0.dev6156.win32\programs\python25\lib\site-packages\scipy\optimize\optimize.py", line 183, in fmin
- fsim[0] = func(x0)
- File "c:\...\scipy-trunk_after\trunk\dist\scipy-0.8.0.dev6156.win32\programs\python25\lib\site-packages\scipy\optimize\optimize.py", line 103, in function_wrapper
- return function(x, *args)
- File "C:\...\scikits\statsmodels\sandbox\stats\distribution_estimators.py", line 224, in
- parest = optimize.fmin(lambda params:np.sum(momentcondquant(distfn, params, mom2s,(pq,xqs), shape=None)**2), start)
- File "C:\...\scikits\statsmodels\sandbox\stats\distribution_estimators.py", line 210, in momentcondquant
- cdfdiff = distfn.cdf(xq, *params) - pq
- ValueError: shape mismatch: objects cannot be broadcast to a single shape
- '''
- print fitquantilesgmm(stats.genpareto, p2rvs, start=x0p,
- pquant=np.linspace(0.01,0.99,10), frozen=None)
- fp2, bp2 = np.histogram(p2rvs,
- bins=stats.genpareto(2).ppf(np.linspace(0,0.99,10)))
- print 'fitbinnedgmm equal weight bins',
- print fitbinnedgmm(stats.genpareto, fp2, bp2, x0p)
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/__init__.py b/statsmodels/scikits/statsmodels/sandbox/distributions/examples/__init__.py
deleted file mode 100644
index 16e3853..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-#
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_fitfr.py b/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_fitfr.py
deleted file mode 100644
index 06298be..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_fitfr.py
+++ /dev/null
@@ -1,28 +0,0 @@
-'''Example for estimating distribution parameters when some are fixed.
-
-This uses currently a patched version of the distributions, two methods are
-added to the continuous distributions. This has no side effects.
-It also adds bounds to vonmises, which changes the behavior of it for some
-methods.
-
-'''
-
-import numpy as np
-from scipy import stats
-#Note the following import attaches methods to scipy.stats.distributions
-# and adds bounds to stats.vonmises
-from scikits.statsmodels.sandbox.distributions import sppatch
-
-
-np.random.seed(12345)
-x = stats.gamma.rvs(2.5, loc=0, scale=1.2, size=200)
-
-#estimate all parameters
-print stats.gamma.fit(x)
-print stats.gamma.fit_fr(x, frozen=[np.nan, np.nan, np.nan])
-#estimate shape parameter only
-print stats.gamma.fit_fr(x, frozen=[np.nan, 0., 1.2])
-
-np.random.seed(12345)
-x = stats.lognorm.rvs(2, loc=0, scale=2, size=200)
-print stats.lognorm.fit_fr(x, frozen=[np.nan, 0., np.nan])
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_gof.py b/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_gof.py
deleted file mode 100644
index c58dddd..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_gof.py
+++ /dev/null
@@ -1,13 +0,0 @@
-
-import numpy as np
-from scipy import stats
-from scikits.statsmodels.stats import gof
-
-poissrvs = stats.poisson.rvs(0.6, size = 200)
-
-freq, expfreq, histsupp = gof.gof_binning_discrete(poissrvs, stats.poisson, (0.6,), nsupp=20)
-(chi2val, pval) = stats.chisquare(freq, expfreq)
-print chi2val, pval
-
-print gof.gof_chisquare_discrete(stats.poisson, (0.6,), poissrvs, 0.05,
- 'Poisson')
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_mvelliptical.py b/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_mvelliptical.py
deleted file mode 100644
index b400423..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/ex_mvelliptical.py
+++ /dev/null
@@ -1,164 +0,0 @@
-# -*- coding: utf-8 -*-
-"""examples for multivariate normal and t distributions
-
-
-Created on Fri Jun 03 16:00:26 2011
-
-@author: josef
-
-
-for comparison I used R mvtnorm version 0.9-96
-
-"""
-
-import numpy as np
-import scikits.statsmodels.sandbox.distributions.mv_normal as mvd
-
-from numpy.testing import assert_array_almost_equal
-
-cov3 = np.array([[ 1. , 0.5 , 0.75],
- [ 0.5 , 1.5 , 0.6 ],
- [ 0.75, 0.6 , 2. ]])
-
-mu = np.array([-1, 0.0, 2.0])
-
-#************** multivariate normal distribution ***************
-
-mvn3 = mvd.MVNormal(mu, cov3)
-
-#compare with random sample
-x = mvn3.rvs(size=1000000)
-
-xli = [[2., 1., 1.5],
- [0., 2., 1.5],
- [1.5, 1., 2.5],
- [0., 1., 1.5]]
-
-xliarr = np.asarray(xli).T[None,:, :]
-
-#from R session
-#pmvnorm(lower=-Inf,upper=(x[0,.]-mu)/sqrt(diag(cov3)),mean=rep(0,3),corr3)
-r_cdf = [0.3222292, 0.3414643, 0.5450594, 0.3116296]
-r_cdf_errors = [1.715116e-05, 1.590284e-05, 5.356471e-05, 3.567548e-05]
-n_cdf = [mvn3.cdf(a) for a in xli]
-assert_array_almost_equal(r_cdf, n_cdf, decimal=4)
-
-print n_cdf
-print
-print (x>> np.random.seed(464239857)
- >>> rvstsq = squaretg.rvs(10,size=100000)
- >>> squaretg.moment(4,10)
- 2734.3750000000009
- >>> (rvstsq**4).mean()
- 2739.672765170933
- >>> squaretg.moment(3,10)
- 78.124999999997044
- >>> (rvstsq**3).mean()
- 84.13950048850549
- >>> squaretg.stats(10, moments='mvsk')
- (array(1.2500000000000022), array(4.6874999999630909), array(5.7735026919777912), array(106.00000000170148))
- >>> stats.describe(rvstsq)
- (100000, (3.2953470738423724e-009, 92.649615690914473), 1.2534924690963247, 4.7741427958594098, 6.1562177957041895, 100.99331166052181)
- '''
- # checking the distribution
- # fraction of observations in each decile
- dec = squaretg.ppf(np.linspace(0.,1,11),10)
- freq,edges = np.histogram(rvstsq, bins=dec)
- print freq/float(len(rvstsq))
-
- import matplotlib.pyplot as plt
- freq,edges,_ = plt.hist(rvstsq, bins=50, range=(0,4),normed=True)
- edges += (edges[1]-edges[0])/2.0
- plt.plot(edges[:-1], squaretg.pdf(edges[:-1], 10), 'r')
- #plt.show()
- #plt.close()
-
- '''
- >>> plt.plot(edges[:-1], squaretg.pdf(edges[:-1], 10), 'r')
- []
- >>> plt.fill(edges[4:8], squaretg.pdf(edges[4:8], 10), 'r')
- []
- >>> plt.show()
- >>> plt.fill_between(edges[4:8], squaretg.pdf(edges[4:8], 10), y2=0, 'r')
- SyntaxError: non-keyword arg after keyword arg (, line 1)
- >>> plt.fill_between(edges[4:8], squaretg.pdf(edges[4:8], 10), 0, 'r')
- Traceback (most recent call last):
- AttributeError: 'module' object has no attribute 'fill_between'
- >>> fig = figure()
- Traceback (most recent call last):
- NameError: name 'figure' is not defined
- >>> ax1 = fig.add_subplot(311)
- Traceback (most recent call last):
- NameError: name 'fig' is not defined
- >>> fig = plt.figure()
- >>> ax1 = fig.add_subplot(111)
- >>> ax1.fill_between(edges[4:8], squaretg.pdf(edges[4:8], 10), 0, 'r')
- Traceback (most recent call last):
- AttributeError: 'AxesSubplot' object has no attribute 'fill_between'
- >>> ax1.fill(edges[4:8], squaretg.pdf(edges[4:8], 10), 0, 'r')
- Traceback (most recent call last):
- '''
-
- import nose
- nose.runmodule(argv=['__main__','-vvs','-x'],#,'--pdb', '--pdb-failure'],
- exit=False)
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/matchdist.py b/statsmodels/scikits/statsmodels/sandbox/distributions/examples/matchdist.py
deleted file mode 100644
index 54135e2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/examples/matchdist.py
+++ /dev/null
@@ -1,263 +0,0 @@
-'''given a 1D sample of observation, find a matching distribution
-
-* estimate maximum likelihood paramater for each distribution
-* rank estimated distribution by Kolmogorov-Smirnov and Anderson-Darling
- test statistics
-
-Author: Josef Pktd
-License: Simplified BSD
-original December 2008
-
-TODO:
-
-* refactor to result class
-* split estimation by support, add option and choose automatically
-*
-
-'''
-
-from scipy import stats
-import numpy as np
-import matplotlib.mlab as mlab
-import matplotlib.pyplot as plt
-
-#stats.distributions.beta_gen._fitstart = lambda self, data : (5,5,0,1)
-
-def plothist(x,distfn, args, loc, scale, right=1):
-
- plt.figure()
- # the histogram of the data
- n, bins, patches = plt.hist(x, 25, normed=1, facecolor='green', alpha=0.75)
- maxheight = max([p.get_height() for p in patches])
- print maxheight
- axlim = list(plt.axis())
- #print axlim
- axlim[-1] = maxheight*1.05
- #plt.axis(tuple(axlim))
-## print bins
-## print 'args in plothist', args
- # add a 'best fit' line
- #yt = stats.norm.pdf( bins, loc=loc, scale=scale)
- yt = distfn.pdf( bins, loc=loc, scale=scale, *args)
- yt[yt>maxheight]=maxheight
- lt = plt.plot(bins, yt, 'r--', linewidth=1)
- ys = stats.t.pdf( bins, 10,scale=10,)*right
- ls = plt.plot(bins, ys, 'b-', linewidth=1)
-
- plt.xlabel('Smarts')
- plt.ylabel('Probability')
- plt.title(r'$\mathrm{Testing: %s :}\ \mu=%f,\ \sigma=%f$'%(distfn.name,loc,scale))
-
- #plt.axis([bins[0], bins[-1], 0, 0.134+0.05])
-
- plt.grid(True)
- plt.draw()
- #plt.show()
- #plt.close()
-
-
-
-
-
-#targetdist = ['norm','t','truncnorm','johnsonsu','johnsonsb',
-targetdist = ['norm','alpha', 'anglit', 'arcsine',
- 'beta', 'betaprime', 'bradford', 'burr', 'fisk', 'cauchy',
- 'chi', 'chi2', 'cosine', 'dgamma', 'dweibull', 'erlang',
- 'expon', 'exponweib', 'exponpow', 'fatiguelife', 'foldcauchy',
- 'f', 'foldnorm', 'frechet_r', 'weibull_min', 'frechet_l',
- 'weibull_max', 'genlogistic', 'genpareto', 'genexpon', 'genextreme',
- 'gamma', 'gengamma', 'genhalflogistic', 'gompertz', 'gumbel_r',
- 'gumbel_l', 'halfcauchy', 'halflogistic', 'halfnorm', 'hypsecant',
- 'gausshyper', 'invgamma', 'invnorm', 'invweibull', 'johnsonsb',
- 'johnsonsu', 'laplace', 'levy', 'levy_l',
- 'logistic', 'loggamma', 'loglaplace', 'lognorm', 'gilbrat',
- 'maxwell', 'mielke', 'nakagami', 'ncx2', 'ncf', 't',
- 'nct', 'pareto', 'lomax', 'powerlaw', 'powerlognorm', 'powernorm',
- 'rdist', 'rayleigh', 'reciprocal', 'rice', 'recipinvgauss',
- 'semicircular', 'triang', 'truncexpon', 'truncnorm',
- 'tukeylambda', 'uniform', 'vonmises', 'wald', 'wrapcauchy',
-
- 'binom', 'bernoulli', 'nbinom', 'geom', 'hypergeom', 'logser',
- 'poisson', 'planck', 'boltzmann', 'randint', 'zipf', 'dlaplace']
-
-left = []
-right = []
-finite = []
-unbound = []
-other = []
-contdist = []
-discrete = []
-
-categ = {('open','open'):'unbound', ('0','open'):'right',('open','0',):'left',
- ('finite','finite'):'finite',('oth','oth'):'other'}
-categ = {('open','open'):unbound, ('0','open'):right,('open','0',):left,
- ('finite','finite'):finite,('oth','oth'):other}
-
-categ2 = {
- ('open', '0') : ['frechet_l', 'weibull_max', 'levy_l'],
- ('finite', 'finite') : ['anglit', 'cosine', 'rdist', 'semicircular'],
- ('0', 'open') : ['alpha', 'burr', 'fisk', 'chi', 'chi2', 'erlang',
- 'expon', 'exponweib', 'exponpow', 'fatiguelife', 'foldcauchy', 'f',
- 'foldnorm', 'frechet_r', 'weibull_min', 'genpareto', 'genexpon',
- 'gamma', 'gengamma', 'genhalflogistic', 'gompertz', 'halfcauchy',
- 'halflogistic', 'halfnorm', 'invgamma', 'invnorm', 'invweibull',
- 'levy', 'loglaplace', 'lognorm', 'gilbrat', 'maxwell', 'mielke',
- 'nakagami', 'ncx2', 'ncf', 'lomax', 'powerlognorm', 'rayleigh',
- 'rice', 'recipinvgauss', 'truncexpon', 'wald'],
- ('open', 'open') : ['cauchy', 'dgamma', 'dweibull', 'genlogistic', 'genextreme',
- 'gumbel_r', 'gumbel_l', 'hypsecant', 'johnsonsu', 'laplace',
- 'logistic', 'loggamma', 't', 'nct', 'powernorm', 'reciprocal',
- 'truncnorm', 'tukeylambda', 'vonmises'],
- ('0', 'finite') : ['arcsine', 'beta', 'betaprime', 'bradford', 'gausshyper',
- 'johnsonsb', 'powerlaw', 'triang', 'uniform', 'wrapcauchy'],
- ('finite', 'open') : ['pareto']
- }
-
-#Note: weibull_max == frechet_l
-
-right_incorrect = ['genextreme']
-
-right_all = categ2[('0', 'open')] + categ2[('0', 'finite')] + categ2[('finite', 'open')]\
- + right_incorrect
-
-for distname in targetdist:
- distfn = getattr(stats,distname)
- if hasattr(distfn,'_pdf'):
- if np.isinf(distfn.a):
- low = 'open'
- elif distfn.a == 0:
- low = '0'
- else:
- low = 'finite'
- if np.isinf(distfn.b):
- high = 'open'
- elif distfn.b == 0:
- high = '0'
- else:
- high = 'finite'
- contdist.append(distname)
- categ.setdefault((low,high),[]).append(distname)
-
-not_good = ['genextreme', 'reciprocal', 'vonmises']
-# 'genextreme' is right (or left?), 'reciprocal' requires 00]
- rightfactor = 1
- rvs_right = rvs_pos
- print '='*50
- print 'samplesize = ', n
- for distname in targetdist:
- distfn = getattr(stats,distname)
- if distname in right_all:
- rvs = rvs_right
- rind = rightfactor
-
- else:
- rvs = rvs_orig
- rind = 1
- print '-'*30
- print 'target = %s' % distname
- sm = rvs.mean()
- sstd = np.sqrt(rvs.var())
- ssupp = (rvs.min(), rvs.max())
- if distname in ['truncnorm','betaprime','reciprocal']:
-
- par0 = (sm-2*sstd,sm+2*sstd)
- par_est = tuple(distfn.fit(rvs,loc=sm,scale=sstd,*par0))
- elif distname == 'norm':
- par_est = tuple(distfn.fit(rvs,loc=sm,scale=sstd))
- elif distname == 'genextreme':
- par_est = tuple(distfn.fit(rvs,-5,loc=sm,scale=sstd))
- elif distname == 'wrapcauchy':
- par_est = tuple(distfn.fit(rvs,0.5,loc=0,scale=sstd))
- elif distname == 'f':\
- par_est = tuple(distfn.fit(rvs,10,15,loc=0,scale=1))
-
- elif distname in right:
- sm = rvs.mean()
- sstd = np.sqrt(rvs.var())
- par_est = tuple(distfn.fit(rvs,loc=0,scale=1))
- else:
- sm = rvs.mean()
- sstd = np.sqrt(rvs.var())
- par_est = tuple(distfn.fit(rvs,loc=sm,scale=sstd))
-
-
- print 'fit', par_est
- arg_est = par_est[:-2]
- loc_est = par_est[-2]
- scale_est = par_est[-1]
- rvs_normed = (rvs-loc_est)/scale_est
- ks_stat, ks_pval = stats.kstest(rvs_normed,distname, arg_est)
- print 'kstest', ks_stat, ks_pval
- quant = 0.1
- crit = distfn.ppf(1-quant*float(rind), loc=loc_est, scale=scale_est,*par_est)
- tail_prob = stats.t.sf(crit,dgp_arg,scale=dgp_scale)
- print 'crit, prob', quant, crit, tail_prob
- #if distname == 'norm':
- #plothist(rvs,loc_est,scale_est)
- #args = tuple()
- results.append([distname,ks_stat, ks_pval,arg_est,loc_est,scale_est,crit,tail_prob ])
- #plothist(rvs,distfn,arg_est,loc_est,scale_est)
-
- #plothist(rvs,distfn,arg_est,loc_est,scale_est)
- #plt.show()
- #plt.close()
- #TODO: collect results and compare tail quantiles
-
-
- from operator import itemgetter
-
- res_sort = sorted(results, key = itemgetter(2))
-
- res_sort.reverse() #kstest statistic: smaller is better, pval larger is better
-
- print 'number of distributions', len(res_sort)
- imagedir = 'matchresults'
- import os
- if not os.path.exists(imagedir):
- os.makedirs(imagedir)
-
- for ii,di in enumerate(res_sort):
- distname,ks_stat, ks_pval,arg_est,loc_est,scale_est,crit,tail_prob = di[:]
- distfn = getattr(stats,distname)
- if distname in right_all:
- rvs = rvs_right
- rind = rightfactor
- ri = 'r'
- else:
- rvs = rvs_orig
- ri = ''
- rind = 1
- print '%s ks-stat = %f, ks-pval = %f tail_prob = %f)' % \
- (distname, ks_stat, ks_pval, tail_prob)
- ## print 'arg_est = %s, loc_est = %f scale_est = %f)' % \
- ## (repr(arg_est),loc_est,scale_est)
- plothist(rvs,distfn,arg_est,loc_est,scale_est,right = rind)
- plt.savefig(os.path.join(imagedir,'%s%s%02d_%s.png'% (prefix, ri,ii, distname)))
- ##plt.show()
- ##plt.close()
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/extras.py b/statsmodels/scikits/statsmodels/sandbox/distributions/extras.py
deleted file mode 100644
index 8cb6b6d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/extras.py
+++ /dev/null
@@ -1,1233 +0,0 @@
-'''Various extensions to distributions
-
-* skew normal and skew t distribution by Azzalini, A. & Capitanio, A.
-* Gram-Charlier expansion distribution (using 4 moments),
-* distributions based on non-linear transformation
- - Transf_gen
- - ExpTransf_gen, LogTransf_gen
- - TransfTwo_gen
- (defines as examples: square, negative square and abs transformations)
- - this versions are without __new__
-* mnvormcdf, mvstdnormcdf : cdf, rectangular integral for multivariate normal
- distribution
-
-TODO:
-* Where is Transf_gen for general monotonic transformation ? found and added it
-* write some docstrings, some parts I don't remember
-* add Box-Cox transformation, parameterized ?
-
-
-this is only partially cleaned, still includes test examples as functions
-
-main changes
-* add transf_gen (2010-05-09)
-* added separate example and tests (2010-05-09)
-* collect transformation function into classes
-
-Example
--------
-
->>> logtg = Transf_gen(stats.t, np.exp, np.log,
- numargs = 1, a=0, name = 'lnnorm',
- longname = 'Exp transformed normal',
- extradoc = '\ndistribution of y = exp(x), with x standard normal'
- 'precision for moment andstats is not very high, 2-3 decimals')
->>> logtg.cdf(5, 6)
-0.92067704211191848
->>> stats.t.cdf(np.log(5), 6)
-0.92067704211191848
-
->>> logtg.pdf(5, 6)
-0.021798547904239293
->>> stats.t.pdf(np.log(5), 6)
-0.10899273954837908
->>> stats.t.pdf(np.log(5), 6)/5. #derivative
-0.021798547909675815
-
-
-Author: josef-pktd
-License: BSD
-
-'''
-
-#note copied from distr_skewnorm_0.py
-
-from scipy import stats, special, integrate # integrate is for scipy 0.6.0 ???
-from scipy.stats import distributions
-from scikits.statsmodels.stats.moment_helpers import mvsk2mc, mc2mvsk
-import numpy as np
-
-class SkewNorm_gen(distributions.rv_continuous):
- '''univariate Skew-Normal distribution of Azzalini
-
- class follows scipy.stats.distributions pattern
- but with __init__
-
-
- '''
- def __init__(self):
- #super(SkewNorm_gen,self).__init__(
- distributions.rv_continuous.__init__(self,
- name = 'Skew Normal distribution', shapes = 'alpha',
- extradoc = ''' ''' )
-
- def _argcheck(self, alpha):
- return 1 #(alpha >= 0)
-
- def _rvs(self, alpha):
- # see http://azzalini.stat.unipd.it/SN/faq.html
- delta = alpha/np.sqrt(1+alpha**2)
- u0 = stats.norm.rvs(size=self._size)
- u1 = delta*u0 + np.sqrt(1-delta**2)*stats.norm.rvs(size=self._size)
- return np.where(u0>0, u1, -u1)
-
- def _munp(self, n, alpha):
- # use pdf integration with _mom0_sc if only _pdf is defined.
- # default stats calculation uses ppf, which is much slower
- return self._mom0_sc(n, alpha)
-
- def _pdf(self,x,alpha):
- # 2*normpdf(x)*normcdf(alpha*x)
- return 2.0/np.sqrt(2*np.pi)*np.exp(-x**2/2.0) * special.ndtr(alpha*x)
-
- def _stats_skip(self,x,alpha,moments='mvsk'):
- #skip for now to force moment integration as check
- pass
-
-skewnorm = SkewNorm_gen()
-def example_n():
-
- print skewnorm.pdf(1,0), stats.norm.pdf(1), skewnorm.pdf(1,0) - stats.norm.pdf(1)
- print skewnorm.pdf(1,1000), stats.chi.pdf(1,1), skewnorm.pdf(1,1000) - stats.chi.pdf(1,1)
- print skewnorm.pdf(-1,-1000), stats.chi.pdf(1,1), skewnorm.pdf(-1,-1000) - stats.chi.pdf(1,1)
- rvs = skewnorm.rvs(0,size=500)
- print 'sample mean var: ', rvs.mean(), rvs.var()
- print 'theoretical mean var', skewnorm.stats(0)
- rvs = skewnorm.rvs(5,size=500)
- print 'sample mean var: ', rvs.mean(), rvs.var()
- print 'theoretical mean var', skewnorm.stats(5)
- print skewnorm.cdf(1,0), stats.norm.cdf(1), skewnorm.cdf(1,0) - stats.norm.cdf(1)
- print skewnorm.cdf(1,1000), stats.chi.cdf(1,1), skewnorm.cdf(1,1000) - stats.chi.cdf(1,1)
- print skewnorm.sf(0.05,1000), stats.chi.sf(0.05,1), skewnorm.sf(0.05,1000) - stats.chi.sf(0.05,1)
-
-# generated the same way as distributions in stats.distributions
-class SkewNorm2_gen(distributions.rv_continuous):
- '''univariate Skew-Normal distribution of Azzalini
-
- class follows scipy.stats.distributions pattern
-
- '''
- def _argcheck(self, alpha):
- return 1 #where(alpha>=0, 1, 0)
-
- def _pdf(self,x,alpha):
- # 2*normpdf(x)*normcdf(alpha*x
- return 2.0/np.sqrt(2*np.pi)*np.exp(-x**2/2.0) * special.ndtr(alpha*x)
-
-skewnorm2 = SkewNorm2_gen(name = 'Skew Normal distribution', shapes = 'alpha',
- extradoc = ''' -inf < alpha < inf''')
-
-
-
-class ACSkewT_gen(distributions.rv_continuous):
- '''univariate Skew-T distribution of Azzalini
-
- class follows scipy.stats.distributions pattern
- but with __init__
- '''
- def __init__(self):
- #super(SkewT_gen,self).__init__(
- distributions.rv_continuous.__init__(self,
- name = 'Skew T distribution', shapes = 'alpha',
- extradoc = '''
-Skewed T distribution by Azzalini, A. & Capitanio, A. (2003)_
-
-the pdf is given by:
- pdf(x) = 2.0 * t.pdf(x, df) * t.cdf(df+1, alpha*x*np.sqrt((1+df)/(x**2+df)))
-
-with alpha >=0
-
-Note: different from skewed t distribution by Hansen 1999
-.._
-Azzalini, A. & Capitanio, A. (2003), Distributions generated by perturbation of
-symmetry with emphasis on a multivariate skew-t distribution,
-appears in J.Roy.Statist.Soc, series B, vol.65, pp.367-389
-
-''' )
-
- def _argcheck(self, df, alpha):
- return (alpha == alpha)*(df>0)
-
-## def _arg_check(self, alpha):
-## return np.where(alpha>=0, 0, 1)
-## def _argcheck(self, alpha):
-## return np.where(alpha>=0, 1, 0)
-
- def _rvs(self, df, alpha):
- # see http://azzalini.stat.unipd.it/SN/faq.html
- #delta = alpha/np.sqrt(1+alpha**2)
- V = stats.chi2.rvs(df, size=self._size)
- z = skewnorm.rvs(alpha, size=self._size)
- return z/np.sqrt(V/df)
-
- def _munp(self, n, df, alpha):
- # use pdf integration with _mom0_sc if only _pdf is defined.
- # default stats calculation uses ppf
- return self._mom0_sc(n, df, alpha)
-
- def _pdf(self,x,df,alpha):
- # 2*normpdf(x)*normcdf(alpha*x)
- return 2.0*distributions.t._pdf(x, df) * special.stdtr(df+1, alpha*x*np.sqrt((1+df)/(x**2+df)))
-
-def example_T():
- skewt = ACSkewT_gen()
- rvs = skewt.rvs(10,0,size=500)
- print 'sample mean var: ', rvs.mean(), rvs.var()
- print 'theoretical mean var', skewt.stats(10,0)
- print 't mean var', stats.t.stats(10)
- print skewt.stats(10,1000) # -> folded t distribution, as alpha -> inf
- rvs = np.abs(stats.t.rvs(10,size=1000))
- print rvs.mean(), rvs.var()
-
-##
-##def mvsk2cm(*args):
-## mu,sig,sk,kur = args
-## # Get central moments
-## cnt = [None]*4
-## cnt[0] = mu
-## cnt[1] = sig #*sig
-## cnt[2] = sk * sig**1.5
-## cnt[3] = (kur+3.0) * sig**2.0
-## return cnt
-##
-##
-##def mvsk2m(args):
-## mc, mc2, skew, kurt = args#= self._stats(*args,**mdict)
-## mnc = mc
-## mnc2 = mc2 + mc*mc
-## mc3 = skew*(mc2**1.5) # 3rd central moment
-## mnc3 = mc3+3*mc*mc2+mc**3 # 3rd non-central moment
-## mc4 = (kurt+3.0)*(mc2**2.0) # 4th central moment
-## mnc4 = mc4+4*mc*mc3+6*mc*mc*mc2+mc**4
-## return (mc, mc2, mc3, mc4), (mnc, mnc2, mnc3, mnc4)
-##
-##def mc2mvsk(args):
-## mc, mc2, mc3, mc4 = args
-## skew = mc3 / mc2**1.5
-## kurt = mc4 / mc2**2.0 - 3.0
-## return (mc, mc2, skew, kurt)
-##
-##def m2mc(args):
-## mnc, mnc2, mnc3, mnc4 = args
-## mc = mnc
-## mc2 = mnc2 - mnc*mnc
-## #mc3 = skew*(mc2**1.5) # 3rd central moment
-## mc3 = mnc3 - (3*mc*mc2+mc**3) # 3rd central moment
-## #mc4 = (kurt+3.0)*(mc2**2.0) # 4th central moment
-## mc4 = mnc4 - (4*mc*mc3+6*mc*mc*mc2+mc**4)
-## return (mc, mc2, mc3, mc4)
-
-
-from numpy import poly1d,sqrt, exp
-import scipy
-def _hermnorm(N):
- # return the negatively normalized hermite polynomials up to order N-1
- # (inclusive)
- # using the recursive relationship
- # p_n+1 = p_n(x)' - x*p_n(x)
- # and p_0(x) = 1
- plist = [None]*N
- plist[0] = poly1d(1)
- for n in range(1,N):
- plist[n] = plist[n-1].deriv() - poly1d([1,0])*plist[n-1]
- return plist
-
-def pdf_moments_st(cnt):
- """Return the Gaussian expanded pdf function given the list of central
- moments (first one is mean).
-
- version of scipy.stats, any changes ?
- the scipy.stats version has a bug and returns normal distribution
-
- """
-
- N = len(cnt)
- if N < 2:
- raise ValueError, "At least two moments must be given to" + \
- "approximate the pdf."
-
- totp = poly1d(1)
- sig = sqrt(cnt[1])
- mu = cnt[0]
- if N > 2:
- Dvals = _hermnorm(N+1)
- for k in range(3,N+1):
- # Find Ck
- Ck = 0.0
- for n in range((k-3)/2):
- m = k-2*n
- if m % 2: # m is odd
- momdiff = cnt[m-1]
- else:
- momdiff = cnt[m-1] - sig*sig*scipy.factorial2(m-1)
- Ck += Dvals[k][m] / sig**m * momdiff
- # Add to totp
- raise
- print Dvals
- print Ck
- totp = totp + Ck*Dvals[k]
-
- def thisfunc(x):
- xn = (x-mu)/sig
- return totp(xn)*exp(-xn*xn/2.0)/sqrt(2*np.pi)/sig
- return thisfunc, totp
-
-def pdf_mvsk(mvsk):
- """Return the Gaussian expanded pdf function given the list of 1st, 2nd
- moment and skew and Fisher (excess) kurtosis.
-
-
-
- Parameters
- ----------
- mvsk : list of mu, mc2, skew, kurt
- distribution is matched to these four moments
-
- Returns
- -------
- pdffunc : function
- function that evaluates the pdf(x), where x is the non-standardized
- random variable.
-
-
- Notes
- -----
-
- Changed so it works only if four arguments are given. Uses explicit
- formula, not loop.
-
- This implements a Gram-Charlier expansion of the normal distribution
- where the first 2 moments coincide with those of the normal distribution
- but skew and kurtosis can deviate from it.
-
- In the Gram-Charlier distribution it is possible that the density
- becomes negative. This is the case when the deviation from the
- normal distribution is too large.
-
-
-
- References
- ----------
- http://en.wikipedia.org/wiki/Edgeworth_series
- Johnson N.L., S. Kotz, N. Balakrishnan: Continuous Univariate
- Distributions, Volume 1, 2nd ed., p.30
- """
- N = len(mvsk)
- if N < 4:
- raise ValueError, "Four moments must be given to" + \
- "approximate the pdf."
-
- mu, mc2, skew, kurt = mvsk
-
- totp = poly1d(1)
- sig = sqrt(mc2)
- if N > 2:
- Dvals = _hermnorm(N+1)
- C3 = skew/6.0
- C4 = kurt/24.0
- # Note: Hermite polynomial for order 3 in _hermnorm is negative
- # instead of positive
- totp = totp - C3*Dvals[3] + C4*Dvals[4]
-
- def pdffunc(x):
- xn = (x-mu)/sig
- return totp(xn)*np.exp(-xn*xn/2.0)/np.sqrt(2*np.pi)/sig
- return pdffunc
-
-def pdf_moments(cnt):
- """Return the Gaussian expanded pdf function given the list of central
- moments (first one is mean).
-
- Changed so it works only if four arguments are given. Uses explicit
- formula, not loop.
-
- Notes
- -----
-
- This implements a Gram-Charlier expansion of the normal distribution
- where the first 2 moments coincide with those of the normal distribution
- but skew and kurtosis can deviate from it.
-
- In the Gram-Charlier distribution it is possible that the density
- becomes negative. This is the case when the deviation from the
- normal distribution is too large.
-
-
-
- References
- ----------
- http://en.wikipedia.org/wiki/Edgeworth_series
- Johnson N.L., S. Kotz, N. Balakrishnan: Continuous Univariate
- Distributions, Volume 1, 2nd ed., p.30
- """
- N = len(cnt)
- if N < 2:
- raise ValueError, "At least two moments must be given to" + \
- "approximate the pdf."
-
-
-
- mc, mc2, mc3, mc4 = cnt
- skew = mc3 / mc2**1.5
- kurt = mc4 / mc2**2.0 - 3.0 # Fisher kurtosis, excess kurtosis
-
- totp = poly1d(1)
- sig = sqrt(cnt[1])
- mu = cnt[0]
- if N > 2:
- Dvals = _hermnorm(N+1)
-## for k in range(3,N+1):
-## # Find Ck
-## Ck = 0.0
-## for n in range((k-3)/2):
-## m = k-2*n
-## if m % 2: # m is odd
-## momdiff = cnt[m-1]
-## else:
-## momdiff = cnt[m-1] - sig*sig*scipy.factorial2(m-1)
-## Ck += Dvals[k][m] / sig**m * momdiff
-## # Add to totp
-## raise
-## print Dvals
-## print Ck
-## totp = totp + Ck*Dvals[k]
- C3 = skew/6.0
- C4 = kurt/24.0
- totp = totp - C3*Dvals[3] + C4*Dvals[4]
-
- def thisfunc(x):
- xn = (x-mu)/sig
- return totp(xn)*np.exp(-xn*xn/2.0)/np.sqrt(2*np.pi)/sig
- return thisfunc
-
-class NormExpan_gen(distributions.rv_continuous):
- '''Gram-Charlier Expansion of Normal distribution
-
- class follows scipy.stats.distributions pattern
- but with __init__
-
- '''
- def __init__(self,args, **kwds):
- #todo: replace with super call
- distributions.rv_continuous.__init__(self,
- name = 'Normal Expansion distribution', shapes = 'alpha',
- extradoc = '''
- The distribution is defined as the Gram-Charlier expansion of
- the normal distribution using the first four moments. The pdf
- is given by
-
- pdf(x) = (1+ skew/6.0 * H(xc,3) + kurt/24.0 * H(xc,4))*normpdf(xc)
-
- where xc = (x-mu)/sig is the standardized value of the random variable
- and H(xc,3) and H(xc,4) are Hermite polynomials
-
- Note: This distribution has to be parameterized during
- initialization and instantiation, and does not have a shape
- parameter after instantiation (similar to frozen distribution
- except for location and scale.) Location and scale can be used
- as with other distributions, however note, that they are relative
- to the initialized distribution.
- ''' )
- #print args, kwds
- mode = kwds.get('mode', 'sample')
-
- if mode == 'sample':
- mu,sig,sk,kur = stats.describe(args)[2:]
- self.mvsk = (mu,sig,sk,kur)
- cnt = mvsk2mc((mu,sig,sk,kur))
- elif mode == 'mvsk':
- cnt = mvsk2mc(args)
- self.mvsk = args
- elif mode == 'centmom':
- cnt = args
- self.mvsk = mc2mvsk(cnt)
- else:
- raise ValueError, "mode must be 'mvsk' or centmom"
-
- self.cnt = cnt
- #self.mvsk = (mu,sig,sk,kur)
- #self._pdf = pdf_moments(cnt)
- self._pdf = pdf_mvsk(self.mvsk)
-
- def _munp(self,n):
- # use pdf integration with _mom0_sc if only _pdf is defined.
- # default stats calculation uses ppf
- return self._mom0_sc(n)
-
- def _stats_skip(self):
- # skip for now to force numerical integration of pdf for testing
- return self.mvsk
-
-
-def examples_normexpand():
- skewnorm = SkewNorm_gen()
- rvs = skewnorm.rvs(5,size=100)
- normexpan = NormExpan_gen(rvs, mode='sample')
-
- smvsk = stats.describe(rvs)[2:]
- print 'sample: mu,sig,sk,kur'
- print smvsk
-
- dmvsk = normexpan.stats(moments='mvsk')
- print 'normexpan: mu,sig,sk,kur'
- print dmvsk
- print 'mvsk diff distribution - sample'
- print np.array(dmvsk) - np.array(smvsk)
- print 'normexpan attributes mvsk'
- print mc2mvsk(normexpan.cnt)
- print normexpan.mvsk
-
- from scikits.statsmodels.stats.momenthelpers import mvsk2mnc, mnc2mc
- mnc = mvsk2mnc(dmvsk)
- mc = mnc2mc(mnc)
- print 'central moments'
- print mc
- print 'non-central moments'
- print mnc
-
-
- pdffn = pdf_moments(mc)
- print '\npdf approximation from moments'
- print 'pdf at', mc[0]-1,mc[0]+1
- print pdffn([mc[0]-1,mc[0]+1])
- print normexpan.pdf([mc[0]-1,mc[0]+1])
-
-
-## copied from nonlinear_transform_gen.py
-
-''' A class for the distribution of a non-linear monotonic transformation of a continuous random variable
-
-simplest usage:
-example: create log-gamma distribution, i.e. y = log(x),
- where x is gamma distributed (also available in scipy.stats)
- loggammaexpg = Transf_gen(stats.gamma, np.log, np.exp)
-
-example: what is the distribution of the discount factor y=1/(1+x)
- where interest rate x is normally distributed with N(mux,stdx**2)')?
- (just to come up with a story that implies a nice transformation)
- invnormalg = Transf_gen(stats.norm, inversew, inversew_inv, decr=True, a=-np.inf)
-
-This class does not work well for distributions with difficult shapes,
- e.g. 1/x where x is standard normal, because of the singularity and jump at zero.
-
-Note: I'm working from my version of scipy.stats.distribution.
- But this script runs under scipy 0.6.0 (checked with numpy: 1.2.0rc2 and python 2.4)
-
-This is not yet thoroughly tested, polished or optimized
-
-TODO:
- * numargs handling is not yet working properly, numargs needs to be specified (default = 0 or 1)
- * feeding args and kwargs to underlying distribution is untested and incomplete
- * distinguish args and kwargs for the transformed and the underlying distribution
- - currently all args and no kwargs are transmitted to underlying distribution
- - loc and scale only work for transformed, but not for underlying distribution
- - possible to separate args for transformation and underlying distribution parameters
-
- * add _rvs as method, will be faster in many cases
-
-
-Created on Tuesday, October 28, 2008, 12:40:37 PM
-Author: josef-pktd
-License: BSD
-
-'''
-
-from scipy import integrate # for scipy 0.6.0
-
-from scipy import stats, info
-from scipy.stats import distributions
-
-
-def get_u_argskwargs(**kwargs):
- #Todo: What's this? wrong spacing, used in Transf_gen TransfTwo_gen
- u_kwargs = dict((k.replace('u_','',1),v) for k,v in kwargs.items()
- if k.startswith('u_'))
- u_args = u_kwargs.pop('u_args',None)
- return u_args, u_kwargs
-
-class Transf_gen(distributions.rv_continuous):
- '''a class for non-linear monotonic transformation of a continuous random variable
-
- '''
- def __init__(self, kls, func, funcinv, *args, **kwargs):
- #print args
- #print kwargs
-
- self.func = func
- self.funcinv = funcinv
- #explicit for self.__dict__.update(kwargs)
- #need to set numargs because inspection does not work
- self.numargs = kwargs.pop('numargs', 0)
- #print self.numargs
- name = kwargs.pop('name','transfdist')
- longname = kwargs.pop('longname','Non-linear transformed distribution')
- extradoc = kwargs.pop('extradoc',None)
- a = kwargs.pop('a', -np.inf)
- b = kwargs.pop('b', np.inf)
- self.decr = kwargs.pop('decr', False)
- #defines whether it is a decreasing (True)
- # or increasing (False) monotonic transformation
-
-
- self.u_args, self.u_kwargs = get_u_argskwargs(**kwargs)
- self.kls = kls #(self.u_args, self.u_kwargs)
- # possible to freeze the underlying distribution
-
- super(Transf_gen,self).__init__(a=a, b=b, name = name,
- longname = longname, extradoc = extradoc)
-
- def _rvs(self, *args, **kwargs):
- self.kls._size = self._size
- return self.funcinv(self.kls._rvs(*args))
-
-
- def _cdf(self,x,*args, **kwargs):
- #print args
- if not self.decr:
- return self.kls._cdf(self.funcinv(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self.kls._cdf(self.funcinv(x),*args, **kwargs)
- def _ppf(self, q, *args, **kwargs):
- if not self.decr:
- return self.func(self.kls._ppf(q,*args, **kwargs))
- else:
- return self.func(self.kls._ppf(1-q,*args, **kwargs))
-
-
-def inverse(x):
- return np.divide(1.0,x)
-
-mux, stdx = 0.05, 0.1
-mux, stdx = 9.0, 1.0
-def inversew(x):
- return 1.0/(1+mux+x*stdx)
-def inversew_inv(x):
- return (1.0/x - 1.0 - mux)/stdx #.np.divide(1.0,x)-10
-
-def identit(x):
- return x
-
-invdnormalg = Transf_gen(stats.norm, inversew, inversew_inv, decr=True, #a=-np.inf,
- numargs = 0, name = 'discf', longname = 'normal-based discount factor',
- extradoc = '\ndistribution of discount factor y=1/(1+x)) with x N(0.05,0.1**2)')
-
-lognormalg = Transf_gen(stats.norm, np.exp, np.log,
- numargs = 2, a=0, name = 'lnnorm',
- longname = 'Exp transformed normal',
- extradoc = '\ndistribution of y = exp(x), with x standard normal'
- 'precision for moment andstats is not very high, 2-3 decimals')
-
-
-loggammaexpg = Transf_gen(stats.gamma, np.log, np.exp, numargs=1)
-
-## copied form nonlinear_transform_short.py
-
-'''univariate distribution of a non-linear monotonic transformation of a
-random variable
-
-'''
-from scipy import stats
-from scipy.stats import distributions
-import numpy as np
-
-class ExpTransf_gen(distributions.rv_continuous):
- '''Distribution based on log/exp transformation
-
- the constructor can be called with a distribution class
- and generates the distribution of the transformed random variable
-
- '''
- def __init__(self, kls, *args, **kwargs):
- #print args
- #print kwargs
- #explicit for self.__dict__.update(kwargs)
- if 'numargs' in kwargs:
- self.numargs = kwargs['numargs']
- else:
- self.numargs = 1
- if 'name' in kwargs:
- name = kwargs['name']
- else:
- name = 'Log transformed distribution'
- if 'a' in kwargs:
- a = kwargs['a']
- else:
- a = 0
- super(ExpTransf_gen,self).__init__(a=0, name = name)
- self.kls = kls
- def _cdf(self,x,*args):
- pass
- #print args
- return self.kls.cdf(np.log(x),*args)
- def _ppf(self, q, *args):
- return np.exp(self.kls.ppf(q,*args))
-
-class LogTransf_gen(distributions.rv_continuous):
- '''Distribution based on log/exp transformation
-
- the constructor can be called with a distribution class
- and generates the distribution of the transformed random variable
-
- '''
- def __init__(self, kls, *args, **kwargs):
- #explicit for self.__dict__.update(kwargs)
- if 'numargs' in kwargs:
- self.numargs = kwargs['numargs']
- else:
- self.numargs = 1
- if 'name' in kwargs:
- name = kwargs['name']
- else:
- name = 'Log transformed distribution'
- if 'a' in kwargs:
- a = kwargs['a']
- else:
- a = 0
-
- super(LogTransf_gen,self).__init__(a=a, name = name)
- self.kls = kls
-
- def _cdf(self,x, *args):
- #print args
- return self.kls._cdf(np.exp(x),*args)
- def _ppf(self, q, *args):
- return np.log(self.kls._ppf(q,*args))
-
-def examples_transf():
- ##lognormal = ExpTransf(a=0.0, xa=-10.0, name = 'Log transformed normal')
- ##print lognormal.cdf(1)
- ##print stats.lognorm.cdf(1,1)
- ##print lognormal.stats()
- ##print stats.lognorm.stats(1)
- ##print lognormal.rvs(size=10)
-
- print 'Results for lognormal'
- lognormalg = ExpTransf_gen(stats.norm, a=0, name = 'Log transformed normal general')
- print lognormalg.cdf(1)
- print stats.lognorm.cdf(1,1)
- print lognormalg.stats()
- print stats.lognorm.stats(1)
- print lognormalg.rvs(size=5)
-
- ##print 'Results for loggamma'
- ##loggammag = ExpTransf_gen(stats.gamma)
- ##print loggammag._cdf(1,10)
- ##print stats.loggamma.cdf(1,10)
-
- print 'Results for expgamma'
- loggammaexpg = LogTransf_gen(stats.gamma)
- print loggammaexpg._cdf(1,10)
- print stats.loggamma.cdf(1,10)
- print loggammaexpg._cdf(2,15)
- print stats.loggamma.cdf(2,15)
-
-
- # this requires change in scipy.stats.distribution
- #print loggammaexpg.cdf(1,10)
-
- print 'Results for loglaplace'
- loglaplaceg = LogTransf_gen(stats.laplace)
- print loglaplaceg._cdf(2)
- print stats.loglaplace.cdf(2,1)
- loglaplaceexpg = ExpTransf_gen(stats.laplace)
- print loglaplaceexpg._cdf(2)
- stats.loglaplace.cdf(3,3)
- #0.98148148148148151
- loglaplaceexpg._cdf(3,0,1./3)
- #0.98148148148148151
-
-
-
-
-
-## copied from transformtwo.py
-
-'''
-Created on Apr 28, 2009
-
-@author: Josef Perktold
-'''
-
-''' A class for the distribution of a non-linear u-shaped or hump shaped transformation of a
-continuous random variable
-
-This is a companion to the distributions of non-linear monotonic transformation to the case
-when the inverse mapping is a 2-valued correspondence, for example for absolute value or square
-
-simplest usage:
-example: create squared distribution, i.e. y = x**2,
- where x is normal or t distributed
-
-
-This class does not work well for distributions with difficult shapes,
- e.g. 1/x where x is standard normal, because of the singularity and jump at zero.
-
-
-This verifies for normal - chi2, normal - halfnorm, foldnorm, and t - F
-
-TODO:
- * numargs handling is not yet working properly,
- numargs needs to be specified (default = 0 or 1)
- * feeding args and kwargs to underlying distribution works in t distribution example
- * distinguish args and kwargs for the transformed and the underlying distribution
- - currently all args and no kwargs are transmitted to underlying distribution
- - loc and scale only work for transformed, but not for underlying distribution
- - possible to separate args for transformation and underlying distribution parameters
-
- * add _rvs as method, will be faster in many cases
-
-'''
-
-
-class TransfTwo_gen(distributions.rv_continuous):
- '''Distribution based on a non-monotonic (u- or hump-shaped transformation)
-
- the constructor can be called with a distribution class, and functions
- that define the non-linear transformation.
- and generates the distribution of the transformed random variable
-
- Note: the transformation, it's inverse and derivatives need to be fully
- specified: func, funcinvplus, funcinvminus, derivplus, derivminus.
- Currently no numerical derivatives or inverse are calculated
-
- This can be used to generate distribution instances similar to the
- distributions in scipy.stats.
-
- '''
- #a class for non-linear non-monotonic transformation of a continuous random variable
- def __init__(self, kls, func, funcinvplus, funcinvminus, derivplus,
- derivminus, *args, **kwargs):
- #print args
- #print kwargs
-
- self.func = func
- self.funcinvplus = funcinvplus
- self.funcinvminus = funcinvminus
- self.derivplus = derivplus
- self.derivminus = derivminus
- #explicit for self.__dict__.update(kwargs)
- #need to set numargs because inspection does not work
- self.numargs = kwargs.pop('numargs', 0)
- #print self.numargs
- name = kwargs.pop('name','transfdist')
- longname = kwargs.pop('longname','Non-linear transformed distribution')
- extradoc = kwargs.pop('extradoc',None)
- a = kwargs.pop('a', -np.inf) # attached to self in super
- b = kwargs.pop('b', np.inf) # self.a, self.b would be overwritten
- self.shape = kwargs.pop('shape', False)
- #defines whether it is a `u` shaped or `hump' shaped
- # transformation
-
-
- self.u_args, self.u_kwargs = get_u_argskwargs(**kwargs)
- self.kls = kls #(self.u_args, self.u_kwargs)
- # possible to freeze the underlying distribution
-
- super(TransfTwo_gen,self).__init__(a=a, b=b, name = name,
- longname = longname, extradoc = extradoc)
-
- def _rvs(self, *args):
- self.kls._size = self._size #size attached to self, not function argument
- return self.func(self.kls._rvs(*args))
-
- def _pdf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'u':
- signpdf = 1
- elif self.shape == 'hump':
- signpdf = -1
- else:
- raise ValueError, 'shape can only be `u` or `hump`'
-
- return signpdf * (self.derivplus(x)*self.kls._pdf(self.funcinvplus(x),*args, **kwargs) -
- self.derivminus(x)*self.kls._pdf(self.funcinvminus(x),*args, **kwargs))
- #note scipy _cdf only take *args not *kwargs
-
- def _cdf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'u':
- return self.kls._cdf(self.funcinvplus(x),*args, **kwargs) - \
- self.kls._cdf(self.funcinvminus(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self._sf(x,*args, **kwargs)
-
- def _sf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'hump':
- return self.kls._cdf(self.funcinvplus(x),*args, **kwargs) - \
- self.kls._cdf(self.funcinvminus(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self._cdf(x, *args, **kwargs)
-
- def _munp(self, n,*args, **kwargs):
- return self._mom0_sc(n,*args)
-# ppf might not be possible in general case?
-# should be possible in symmetric case
-# def _ppf(self, q, *args, **kwargs):
-# if self.shape == 'u':
-# return self.func(self.kls._ppf(q,*args, **kwargs))
-# elif self.shape == 'hump':
-# return self.func(self.kls._ppf(1-q,*args, **kwargs))
-
-#TODO: rename these functions to have unique names
-
-class SquareFunc(object):
- '''class to hold quadratic function with inverse function and derivative
-
- using instance methods instead of class methods, if we want extension
- to parameterized function
- '''
- def inverseplus(self, x):
- return np.sqrt(x)
-
- def inverseminus(self, x):
- return 0.0 - np.sqrt(x)
-
- def derivplus(self, x):
- return 0.5/np.sqrt(x)
-
- def derivminus(self, x):
- return 0.0 - 0.5/np.sqrt(x)
-
- def squarefunc(self, x):
- return np.power(x,2)
-
-sqfunc = SquareFunc()
-
-squarenormalg = TransfTwo_gen(stats.norm, sqfunc.squarefunc, sqfunc.inverseplus,
- sqfunc.inverseminus, sqfunc.derivplus, sqfunc.derivminus,
- shape='u', a=0.0, b=np.inf,
- numargs = 0, name = 'squarenorm', longname = 'squared normal distribution',
- extradoc = '\ndistribution of the square of a normal random variable' +\
- ' y=x**2 with x N(0.0,1)')
- #u_loc=l, u_scale=s)
-squaretg = TransfTwo_gen(stats.t, sqfunc.squarefunc, sqfunc.inverseplus,
- sqfunc.inverseminus, sqfunc.derivplus, sqfunc.derivminus,
- shape='u', a=0.0, b=np.inf,
- numargs = 1, name = 'squarenorm', longname = 'squared t distribution',
- extradoc = '\ndistribution of the square of a t random variable' +\
- ' y=x**2 with x t(dof,0.0,1)')
-
-def inverseplus(x):
- return np.sqrt(-x)
-
-def inverseminus(x):
- return 0.0 - np.sqrt(-x)
-
-def derivplus(x):
- return 0.0 - 0.5/np.sqrt(-x)
-
-def derivminus(x):
- return 0.5/np.sqrt(-x)
-
-def negsquarefunc(x):
- return -np.power(x,2)
-
-
-negsquarenormalg = TransfTwo_gen(stats.norm, negsquarefunc, inverseplus, inverseminus,
- derivplus, derivminus, shape='hump', a=-np.inf, b=0.0,
- numargs = 0, name = 'negsquarenorm', longname = 'negative squared normal distribution',
- extradoc = '\ndistribution of the negative square of a normal random variable' +\
- ' y=-x**2 with x N(0.0,1)')
- #u_loc=l, u_scale=s)
-
-def inverseplus(x):
- return x
-
-def inverseminus(x):
- return 0.0 - x
-
-def derivplus(x):
- return 1.0
-
-def derivminus(x):
- return 0.0 - 1.0
-
-def absfunc(x):
- return np.abs(x)
-
-
-absnormalg = TransfTwo_gen(stats.norm, np.abs, inverseplus, inverseminus,
- derivplus, derivminus, shape='u', a=0.0, b=np.inf,
- numargs = 0, name = 'absnorm', longname = 'absolute of normal distribution',
- extradoc = '\ndistribution of the absolute value of a normal random variable' +\
- ' y=abs(x) with x N(0,1)')
-
-
-#copied from mvncdf.py
-'''multivariate normal probabilities and cumulative distribution function
-a wrapper for scipy.stats.kde.mvndst
-
-
- SUBROUTINE MVNDST( N, LOWER, UPPER, INFIN, CORREL, MAXPTS,
- & ABSEPS, RELEPS, ERROR, VALUE, INFORM )
-*
-* A subroutine for computing multivariate normal probabilities.
-* This subroutine uses an algorithm given in the paper
-* "Numerical Computation of Multivariate Normal Probabilities", in
-* J. of Computational and Graphical Stat., 1(1992), pp. 141-149, by
-* Alan Genz
-* Department of Mathematics
-* Washington State University
-* Pullman, WA 99164-3113
-* Email : AlanGenz@wsu.edu
-*
-* Parameters
-*
-* N INTEGER, the number of variables.
-* LOWER REAL, array of lower integration limits.
-* UPPER REAL, array of upper integration limits.
-* INFIN INTEGER, array of integration limits flags:
-* if INFIN(I) < 0, Ith limits are (-infinity, infinity);
-* if INFIN(I) = 0, Ith limits are (-infinity, UPPER(I)];
-* if INFIN(I) = 1, Ith limits are [LOWER(I), infinity);
-* if INFIN(I) = 2, Ith limits are [LOWER(I), UPPER(I)].
-* CORREL REAL, array of correlation coefficients; the correlation
-* coefficient in row I column J of the correlation matrix
-* should be stored in CORREL( J + ((I-2)*(I-1))/2 ), for J < I.
-* THe correlation matrix must be positive semidefinite.
-* MAXPTS INTEGER, maximum number of function values allowed. This
-* parameter can be used to limit the time. A sensible
-* strategy is to start with MAXPTS = 1000*N, and then
-* increase MAXPTS if ERROR is too large.
-* ABSEPS REAL absolute error tolerance.
-* RELEPS REAL relative error tolerance.
-* ERROR REAL estimated absolute error, with 99% confidence level.
-* VALUE REAL estimated value for the integral
-* INFORM INTEGER, termination status parameter:
-* if INFORM = 0, normal completion with ERROR < EPS;
-* if INFORM = 1, completion with ERROR > EPS and MAXPTS
-* function vaules used; increase MAXPTS to
-* decrease ERROR;
-* if INFORM = 2, N > 500 or N < 1.
-*
-
-
-
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[10.0,10.0],[0,0],[0.5])
-(2e-016, 1.0, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[100.0,100.0],[0,0],[0.0])
-(2e-016, 1.0, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[1.0,1.0],[0,0],[0.0])
-(2e-016, 0.70786098173714096, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.001,1.0],[0,0],[0.0])
-(2e-016, 0.42100802096993045, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.001,10.0],[0,0],[0.0])
-(2e-016, 0.50039894221391101, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.001,100.0],[0,0],[0.0])
-(2e-016, 0.50039894221391101, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.01,100.0],[0,0],[0.0])
-(2e-016, 0.5039893563146316, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.1,100.0],[0,0],[0.0])
-(2e-016, 0.53982783727702899, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.1,100.0],[2,2],[0.0])
-(2e-016, 0.019913918638514494, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.0,0.0],[0,0],[0.0])
-(2e-016, 0.25, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.0,0.0],[-1,0],[0.0])
-(2e-016, 0.5, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.0,0.0],[-1,0],[0.5])
-(2e-016, 0.5, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.0,0.0],[0,0],[0.5])
-(2e-016, 0.33333333333333337, 0)
->>> scipy.stats.kde.mvn.mvndst([0.0,0.0],[0.0,0.0],[0,0],[0.99])
-(2e-016, 0.47747329317779391, 0)
-'''
-
-#from scipy.stats import kde
-
-informcode = {0: 'normal completion with ERROR < EPS',
- 1: '''completion with ERROR > EPS and MAXPTS function values used;
- increase MAXPTS to decrease ERROR;''',
- 2: 'N > 500 or N < 1'}
-
-def mvstdnormcdf(lower, upper, corrcoef, **kwds):
- '''standardized multivariate normal cumulative distribution function
-
- This is a wrapper for scipy.stats.kde.mvn.mvndst which calculates
- a rectangular integral over a standardized multivariate normal
- distribution.
-
- This function assumes standardized scale, that is the variance in each dimension
- is one, but correlation can be arbitrary, covariance = correlation matrix
-
- Parameters
- ----------
- lower, upper : array_like, 1d
- lower and upper integration limits with length equal to the number
- of dimensions of the multivariate normal distribution. It can contain
- -np.inf or np.inf for open integration intervals
- corrcoef : float or array_like
- specifies correlation matrix in one of three ways, see notes
- optional keyword parameters to influence integration
- * maxpts : int, maximum number of function values allowed. This
- parameter can be used to limit the time. A sensible
- strategy is to start with `maxpts` = 1000*N, and then
- increase `maxpts` if ERROR is too large.
- * abseps : float absolute error tolerance.
- * releps : float relative error tolerance.
-
- Returns
- -------
- cdfvalue : float
- value of the integral
-
-
- Notes
- -----
- The correlation matrix corrcoef can be given in 3 different ways
- If the multivariate normal is two-dimensional than only the
- correlation coefficient needs to be provided.
- For general dimension the correlation matrix can be provided either
- as a one-dimensional array of the upper triangular correlation
- coefficients stacked by rows, or as full square correlation matrix
-
- See Also
- --------
- mvnormcdf : cdf of multivariate normal distribution without
- standardization
-
- Examples
- --------
-
- >>> print mvstdnormcdf([-np.inf,-np.inf], [0.0,np.inf], 0.5)
- 0.5
- >>> corr = [[1.0, 0, 0.5],[0,1,0],[0.5,0,1]]
- >>> print mvstdnormcdf([-np.inf,-np.inf,-100.0], [0.0,0.0,0.0], corr, abseps=1e-6)
- 0.166666399198
- >>> print mvstdnormcdf([-np.inf,-np.inf,-100.0],[0.0,0.0,0.0],corr, abseps=1e-8)
- something wrong completion with ERROR > EPS and MAXPTS function values used;
- increase MAXPTS to decrease ERROR; 1.048330348e-006
- 0.166666546218
- >>> print mvstdnormcdf([-np.inf,-np.inf,-100.0],[0.0,0.0,0.0], corr,
- maxpts=100000, abseps=1e-8)
- 0.166666588293
-
- '''
- n = len(lower)
- #don't know if converting to array is necessary,
- #but it makes ndim check possible
- lower = np.array(lower)
- upper = np.array(upper)
- corrcoef = np.array(corrcoef)
-
- correl = np.zeros(n*(n-1)/2.0) #dtype necessary?
-
- if (lower.ndim != 1) or (upper.ndim != 1):
- raise ValueError, 'can handle only 1D bounds'
- if len(upper) != n:
- raise ValueError, 'bounds have different lengths'
- if n==2 and corrcoef.size==1:
- correl = corrcoef
- #print 'case scalar rho', n
- elif corrcoef.ndim == 1 and len(corrcoef) == n*(n-1)/2.0:
- #print 'case flat corr', corrcoeff.shape
- correl = corrcoef
- elif corrcoef.shape == (n,n):
- #print 'case square corr', correl.shape
- correl = corrcoef[np.tril_indices(n, -1)]
-# for ii in range(n):
-# for jj in range(ii):
-# correl[ jj + ((ii-2)*(ii-1))/2] = corrcoef[ii,jj]
- else:
- raise ValueError, 'corrcoef has incorrect dimension'
-
- if not 'maxpts' in kwds:
- if n >2:
- kwds['maxpts'] = 10000*n
-
- lowinf = np.isneginf(lower)
- uppinf = np.isposinf(upper)
- infin = 2.0*np.ones(n)
-
- np.putmask(infin,lowinf,0)# infin.putmask(0,lowinf)
- np.putmask(infin,uppinf,1) #infin.putmask(1,uppinf)
- #this has to be last
- np.putmask(infin,lowinf*uppinf,-1)
-
-## #remove infs
-## np.putmask(lower,lowinf,-100)# infin.putmask(0,lowinf)
-## np.putmask(upper,uppinf,100) #infin.putmask(1,uppinf)
-
- #print lower,',',upper,',',infin,',',correl
- #print correl.shape
- #print kwds.items()
- error, cdfvalue, inform = scipy.stats.kde.mvn.mvndst(lower,upper,infin,correl,**kwds)
- if inform:
- print 'something wrong', informcode[inform], error
- return cdfvalue
-
-
-def mvnormcdf(upper, mu, cov, lower=None, **kwds):
- '''multivariate normal cumulative distribution function
-
- This is a wrapper for scipy.stats.kde.mvn.mvndst which calculates
- a rectangular integral over a multivariate normal distribution.
-
- Parameters
- ----------
- lower, upper : array_like, 1d
- lower and upper integration limits with length equal to the number
- of dimensions of the multivariate normal distribution. It can contain
- -np.inf or np.inf for open integration intervals
- mu : array_lik, 1d
- list or array of means
- cov : array_like, 2d
- specifies covariance matrix
- optional keyword parameters to influence integration
- * maxpts : int, maximum number of function values allowed. This
- parameter can be used to limit the time. A sensible
- strategy is to start with `maxpts` = 1000*N, and then
- increase `maxpts` if ERROR is too large.
- * abseps : float absolute error tolerance.
- * releps : float relative error tolerance.
-
- Returns
- -------
- cdfvalue : float
- value of the integral
-
-
- Notes
- -----
- This function normalizes the location and scale of the multivariate
- normal distribution and then uses `mvstdnormcdf` to call the integration.
-
- See Also
- --------
- mvstdnormcdf : location and scale standardized multivariate normal cdf
- '''
-
- upper = np.array(upper)
- if lower is None:
- lower = -np.ones(upper.shape) * np.inf
- else:
- lower = np.array(lower)
- cov = np.array(cov)
- stdev = np.sqrt(np.diag(cov)) # standard deviation vector
- #do I need to make sure stdev is float and not int?
- #is this correct to normalize to corr?
- lower = (lower - mu)/stdev
- upper = (upper - mu)/stdev
- divrow = np.atleast_2d(stdev)
- corr = cov/divrow/divrow.T
- #v/np.sqrt(np.atleast_2d(np.diag(covv)))/np.sqrt(np.atleast_2d(np.diag(covv))).T
-
- return mvstdnormcdf(lower, upper, corr, **kwds)
-
-
-if __name__ == '__main__':
- examples_transf()
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/genpareto.py b/statsmodels/scikits/statsmodels/sandbox/distributions/genpareto.py
deleted file mode 100644
index d105ffc..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/genpareto.py
+++ /dev/null
@@ -1,238 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Thu Aug 12 14:59:03 2010
-
-Warning: not tried out or tested yet, Done
-
-Author: josef-pktd
-"""
-import numpy as np
-from scipy import stats
-from scipy import comb
-from scipy.stats.distributions import rv_continuous
-
-from numpy import where, inf
-from numpy import abs as np_abs
-
-## Generalized Pareto with reversed sign of c as in literature
-class genpareto2_gen(rv_continuous):
- def _argcheck(self, c):
- c = np.asarray(c)
- self.b = where(c > 0, 1.0/np_abs(c), inf)
- return where(c==0, 0, 1)
- def _pdf(self, x, c):
- Px = np.power(1-c*x,-1.0+1.0/c)
- return Px
- def _logpdf(self, x, c):
- return (-1.0+1.0/c) * np.log1p(-c*x)
- def _cdf(self, x, c):
- return 1.0 - np.power(1-c*x,1.0/c)
- def _ppf(self, q, c):
- vals = -1.0/c * (np.power(1-q, c)-1)
- return vals
- def _munp(self, n, c):
- k = np.arange(0,n+1)
- val = (1.0/c)**n * np.sum(comb(n,k)*(-1)**k / (1.0+c*k),axis=0)
- return where(c*n > -1, val, inf)
- def _entropy(self, c):
- if (c < 0):
- return 1-c
- else:
- self.b = 1.0 / c
- return rv_continuous._entropy(self, c)
-
-genpareto2 = genpareto2_gen(a=0.0,name='genpareto',
- longname="A generalized Pareto",
- shapes='c',extradoc="""
-
-Generalized Pareto distribution
-
-genpareto2.pdf(x,c) = (1+c*x)**(-1-1/c)
-for c != 0, and for x >= 0 for all c, and x < 1/abs(c) for c < 0.
-"""
- )
-
-shape, loc, scale = 0.5, 0, 1
-rv = np.arange(5)
-quant = [0.01, 0.1, 0.5, 0.9, 0.99]
-for method, x in [('pdf', rv),
- ('cdf', rv),
- ('sf', rv),
- ('ppf', quant),
- ('isf', quant)]:
- print getattr(genpareto2, method)(x, shape, loc, scale)
- print getattr(stats.genpareto, method)(x, -shape, loc, scale)
-
-print genpareto2.stats(shape, loc, scale, moments='mvsk')
-print stats.genpareto.stats(-shape, loc, scale, moments='mvsk')
-print genpareto2.entropy(shape, loc, scale)
-print stats.genpareto.entropy(-shape, loc, scale)
-
-
-def paramstopot(thresh, shape, scale):
- '''transform shape scale for peak over threshold
-
- y = x-u|x>u ~ GPD(k, sigma-k*u) if x ~ GPD(k, sigma)
- notation of de Zea Bermudez, Kotz
- k, sigma is shape, scale
- '''
- return shape, scale - shape*thresh
-
-def paramsfrompot(thresh, shape, scalepot):
- return shape, scalepot + shape*thresh
-
-def warnif(cond, msg):
- if not cond:
- print msg, 'does not hold'
-
-def meanexcess(thresh, shape, scale):
- '''mean excess function of genpareto
-
- assert are inequality conditions in de Zea Bermudez, Kotz
- '''
- warnif(shape > -1, 'shape > -1')
- warnif(thresh >= 0, 'thresh >= 0') #make it weak inequality
- warnif((scale - shape*thresh) > 0, '(scale - shape*thresh) > 0')
- return (scale - shape*thresh) / (1 + shape)
-
-
-def meanexcess_plot(data, params=None, lidx=100, uidx=10, method='emp', plot=0):
- if method == 'est':
- #doesn't make much sense yet,
- #estimate the parameters and use theoretical meanexcess
- if params is None:
- raise NotImplementedError
- else:
- pass #estimate parames
- elif method == 'emp':
- #calculate meanexcess from data
- datasorted = np.sort(data)
- meanexcess = (datasorted[::-1].cumsum())/np.arange(1,len(data)+1) - datasorted[::-1]
- meanexcess = meanexcess[::-1]
- if plot:
- plt.plot(datasorted[:-uidx], meanexcess[:-uidx])
- if not params is None:
- shape, scale = params
- plt.plot(datasorted[:-uidx], (scale - datasorted[:-uidx] * shape) / (1. + shape))
- return datasorted, meanexcess
-
-
-print meanexcess(5, -0.5, 10)
-print meanexcess(5, -2, 10)
-import matplotlib.pyplot as plt
-
-data = genpareto2.rvs(-0.75, scale=5, size=1000)
-#data = np.random.uniform(50, size=1000)
-#data = stats.norm.rvs(0, np.sqrt(50), size=1000)
-#data = stats.pareto.rvs(1.5, np.sqrt(50), size=1000)
-tmp = meanexcess_plot(data, params=(-0.75, 5), plot=1)
-print tmp[1][-20:]
-print tmp[0][-20:]
-#plt.show()
-
-def meanexcess_emp(data):
- datasorted = np.sort(data).astype(float)
- meanexcess = (datasorted[::-1].cumsum())/np.arange(1,len(data)+1) - datasorted[::-1]
- meancont = (datasorted[::-1].cumsum())/np.arange(1,len(data)+1)
- meanexcess = meanexcess[::-1]
- return datasorted, meanexcess, meancont[::-1]
-
-def meanexcess_dist(self, lb, *args, **kwds):
- #default function in expect is identity
- # need args in call
- if np.ndim(lb) == 0:
- return self.expect(lb=lb, conditional=True)
- else:
- return np.array([self.expect(lb=lbb, conditional=True) for
- lbb in lb])
-
-ds, me, mc = meanexcess_emp(1.*np.arange(1,10))
-print ds
-print me
-print mc
-
-print meanexcess_dist(stats.norm, lb=0.5)
-print meanexcess_dist(stats.norm, lb=[-np.inf, -0.5, 0, 0.5])
-rvs = stats.norm.rvs(size=100000)
-rvs = rvs - rvs.mean()
-print rvs.mean(), rvs[rvs>-0.5].mean(), rvs[rvs>0].mean(), rvs[rvs>0.5].mean()
-
-
-
-'''
-C:\Programs\Python25\lib\site-packages\matplotlib-0.99.1-py2.5-win32.egg\matplotlib\rcsetup.py:117: UserWarning: rcParams key "numerix" is obsolete and has no effect;
- please delete it from your matplotlibrc file
- warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
-[ 1. 0.5 0. 0. 0. ]
-[ 1. 0.5 0. 0. 0. ]
-[ 0. 0.75 1. 1. 1. ]
-[ 0. 0.75 1. 1. 1. ]
-[ 1. 0.25 0. 0. 0. ]
-[ 1. 0.25 0. 0. 0. ]
-[ 0.01002513 0.1026334 0.58578644 1.36754447 1.8 ]
-[ 0.01002513 0.1026334 0.58578644 1.36754447 1.8 ]
-[ 1.8 1.36754447 0.58578644 0.1026334 0.01002513]
-[ 1.8 1.36754447 0.58578644 0.1026334 0.01002513]
-(array(0.66666666666666674), array(0.22222222222222243), array(0.56568542494923058), array(-0.60000000000032916))
-(array(0.66666666666666674), array(0.22222222222222243), array(0.56568542494923058), array(-0.60000000000032916))
-0.5
-0.5
-25.0
-shape > -1 does not hold
--20
-[ 41.4980671 42.83145298 44.24197578 45.81622844 47.57145212
- 49.52692287 51.70553275 54.0830766 56.61358997 59.53409167
- 62.8970042 66.73494156 71.04227973 76.24015612 82.71835988
- 89.79611663 99.4252195 106.2372462 94.83432424 0. ]
-[ 15.79736355 16.16373531 17.44204268 17.47968055 17.73264951
- 18.23939099 19.02638455 20.79746264 23.7169161 24.48807136
- 25.90496638 28.35556795 32.27623618 34.65714495 37.37093362
- 47.32957609 51.27970515 78.98913941 129.04309012 189.66864848]
->>> np.arange(10)
-array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
->>> meanexcess_emp(np.arange(10))
-(array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), array([4, 4, 5, 5, 5, 6, 6, 5, 4, 0]), array([9, 8, 8, 7, 7, 6, 6, 5, 5, 4]))
->>> meanexcess_emp(1*np.arange(10))
-(array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), array([4, 4, 5, 5, 5, 6, 6, 5, 4, 0]), array([9, 8, 8, 7, 7, 6, 6, 5, 5, 4]))
->>> meanexcess_emp(1.*np.arange(10))
-(array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9.]), array([ 4.5 , 4.88888889, 5.25 , 5.57142857, 5.83333333,
- 6. , 6. , 5.66666667, 4.5 , 0. ]), array([ 9. , 8.5, 8. , 7.5, 7. , 6.5, 6. , 5.5, 5. , 4.5]))
->>> meanexcess_emp(0.5**np.arange(10))
-(array([ 0.00195313, 0.00390625, 0.0078125 , 0.015625 , 0.03125 ,
- 0.0625 , 0.125 , 0.25 , 0.5 , 1. ]), array([ 0.19960938, 0.22135417, 0.24804688, 0.28125 , 0.32291667,
- 0.375 , 0.4375 , 0.5 , 0.5 , 0. ]), array([ 1. , 0.75 , 0.58333333, 0.46875 , 0.3875 ,
- 0.328125 , 0.28348214, 0.24902344, 0.22178819, 0.19980469]))
->>> meanexcess_emp(np.arange(10)**0.5)
-(array([ 0. , 1. , 1.41421356, 1.73205081, 2. ,
- 2.23606798, 2.44948974, 2.64575131, 2.82842712, 3. ]), array([ 1.93060005, 2.03400006, 2.11147337, 2.16567659, 2.19328936,
- 2.18473364, 2.11854461, 1.94280904, 1.5 , 0. ]), array([ 3. , 2.91421356, 2.82472615, 2.73091704, 2.63194723,
- 2.52662269, 2.41311242, 2.28825007, 2.14511117, 1.93060005]))
->>> meanexcess_emp(np.arange(10)**-2)
-(array([-2147483648, 0, 0, 0, 0,
- 0, 0, 0, 0, 1]), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), array([ 1, 0, 0, 0, 0,
- 0, 0, 0, 0, -214748365]))
->>> meanexcess_emp(np.arange(10)**(-0.5))
-(array([ 0.33333333, 0.35355339, 0.37796447, 0.40824829, 0.4472136 ,
- 0.5 , 0.57735027, 0.70710678, 1. , Inf]), array([ Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, NaN]), array([ Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf]))
->>> np.arange(10)**(-0.5)
-array([ Inf, 1. , 0.70710678, 0.57735027, 0.5 ,
- 0.4472136 , 0.40824829, 0.37796447, 0.35355339, 0.33333333])
->>> meanexcess_emp(np.arange(1,10)**(-0.5))
-(array([ 0.33333333, 0.35355339, 0.37796447, 0.40824829, 0.4472136 ,
- 0.5 , 0.57735027, 0.70710678, 1. ]), array([ 0.4857152 , 0.50223543, 0.51998842, 0.53861177, 0.55689141,
- 0.57111426, 0.56903559, 0.5 , 0. ]), array([ 1. , 0.85355339, 0.76148568, 0.69611426, 0.64633413,
- 0.60665316, 0.57398334, 0.5464296 , 0.52275224]))
->>> meanexcess_emp(np.arange(1,10))
-(array([1, 2, 3, 4, 5, 6, 7, 8, 9]), array([4, 5, 5, 5, 6, 6, 5, 4, 0]), array([9, 8, 8, 7, 7, 6, 6, 5, 5]))
->>> meanexcess_emp(1.*np.arange(1,10))
-(array([ 1., 2., 3., 4., 5., 6., 7., 8., 9.]), array([ 4.88888889, 5.25 , 5.57142857, 5.83333333, 6. ,
- 6. , 5.66666667, 4.5 , 0. ]), array([ 9. , 8.5, 8. , 7.5, 7. , 6.5, 6. , 5.5, 5. ]))
->>> datasorted = np.sort(1.*np.arange(1,10))
->>> (datasorted[::-1].cumsum()-datasorted[::-1])
-array([ 0., 9., 17., 24., 30., 35., 39., 42., 44.])
->>> datasorted[::-1].cumsum()
-array([ 9., 17., 24., 30., 35., 39., 42., 44., 45.])
->>> datasorted[::-1]
-array([ 9., 8., 7., 6., 5., 4., 3., 2., 1.])
->>>
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/gof_new.py b/statsmodels/scikits/statsmodels/sandbox/distributions/gof_new.py
deleted file mode 100644
index 9efde50..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/gof_new.py
+++ /dev/null
@@ -1,705 +0,0 @@
-'''More Goodness of fit tests
-
-contains
-
-GOF : 1 sample gof tests based on Stephens 1970, plus AD A^2
-bootstrap : vectorized bootstrap p-values for gof test with fitted parameters
-
-
-Created : 2011-05-21
-Author : Josef Perktold
-
-parts based on ks_2samp and kstest from scipy.stats.stats
-(license: Scipy BSD, but were completely rewritten by Josef Perktold)
-
-
-References
-----------
-
-'''
-
-import numpy as np
-
-from scipy.stats import distributions
-
-from scikits.statsmodels.tools.decorators import cache_readonly
-
-from scipy.special import kolmogorov as ksprob
-
-#from scipy.stats unchanged
-def ks_2samp(data1, data2):
- """
- Computes the Kolmogorov-Smirnof statistic on 2 samples.
-
- This is a two-sided test for the null hypothesis that 2 independent samples
- are drawn from the same continuous distribution.
-
- Parameters
- ----------
- a, b : sequence of 1-D ndarrays
- two arrays of sample observations assumed to be drawn from a continuous
- distribution, sample sizes can be different
-
-
- Returns
- -------
- D : float
- KS statistic
- p-value : float
- two-tailed p-value
-
-
- Notes
- -----
-
- This tests whether 2 samples are drawn from the same distribution. Note
- that, like in the case of the one-sample K-S test, the distribution is
- assumed to be continuous.
-
- This is the two-sided test, one-sided tests are not implemented.
- The test uses the two-sided asymptotic Kolmogorov-Smirnov distribution.
-
- If the K-S statistic is small or the p-value is high, then we cannot
- reject the hypothesis that the distributions of the two samples
- are the same.
-
- Examples
- --------
-
- >>> from scipy import stats
- >>> import numpy as np
- >>> from scipy.stats import ks_2samp
-
- >>> #fix random seed to get the same result
- >>> np.random.seed(12345678);
-
- >>> n1 = 200 # size of first sample
- >>> n2 = 300 # size of second sample
-
- different distribution
- we can reject the null hypothesis since the pvalue is below 1%
-
- >>> rvs1 = stats.norm.rvs(size=n1,loc=0.,scale=1);
- >>> rvs2 = stats.norm.rvs(size=n2,loc=0.5,scale=1.5)
- >>> ks_2samp(rvs1,rvs2)
- (0.20833333333333337, 4.6674975515806989e-005)
-
- slightly different distribution
- we cannot reject the null hypothesis at a 10% or lower alpha since
- the pvalue at 0.144 is higher than 10%
-
- >>> rvs3 = stats.norm.rvs(size=n2,loc=0.01,scale=1.0)
- >>> ks_2samp(rvs1,rvs3)
- (0.10333333333333333, 0.14498781825751686)
-
- identical distribution
- we cannot reject the null hypothesis since the pvalue is high, 41%
-
- >>> rvs4 = stats.norm.rvs(size=n2,loc=0.0,scale=1.0)
- >>> ks_2samp(rvs1,rvs4)
- (0.07999999999999996, 0.41126949729859719)
-
- """
- data1, data2 = map(np.asarray, (data1, data2))
- n1 = data1.shape[0]
- n2 = data2.shape[0]
- n1 = len(data1)
- n2 = len(data2)
- data1 = np.sort(data1)
- data2 = np.sort(data2)
- data_all = np.concatenate([data1,data2])
- #reminder: searchsorted inserts 2nd into 1st array
- cdf1 = np.searchsorted(data1,data_all,side='right')/(1.0*n1)
- cdf2 = (np.searchsorted(data2,data_all,side='right'))/(1.0*n2)
- d = np.max(np.absolute(cdf1-cdf2))
- #Note: d absolute not signed distance
- en = np.sqrt(n1*n2/float(n1+n2))
- try:
- prob = ksprob((en+0.12+0.11/en)*d)
- except:
- prob = 1.0
- return d, prob
-
-
-
-#from scipy.stats unchanged
-def kstest(rvs, cdf, args=(), N=20, alternative = 'two_sided', mode='approx',**kwds):
- """
- Perform the Kolmogorov-Smirnov test for goodness of fit
-
- This performs a test of the distribution G(x) of an observed
- random variable against a given distribution F(x). Under the null
- hypothesis the two distributions are identical, G(x)=F(x). The
- alternative hypothesis can be either 'two_sided' (default), 'less'
- or 'greater'. The KS test is only valid for continuous distributions.
-
- Parameters
- ----------
- rvs : string or array or callable
- string: name of a distribution in scipy.stats
-
- array: 1-D observations of random variables
-
- callable: function to generate random variables, requires keyword
- argument `size`
-
- cdf : string or callable
- string: name of a distribution in scipy.stats, if rvs is a string then
- cdf can evaluate to `False` or be the same as rvs
- callable: function to evaluate cdf
-
- args : tuple, sequence
- distribution parameters, used if rvs or cdf are strings
- N : int
- sample size if rvs is string or callable
- alternative : 'two_sided' (default), 'less' or 'greater'
- defines the alternative hypothesis (see explanation)
-
- mode : 'approx' (default) or 'asymp'
- defines the distribution used for calculating p-value
-
- 'approx' : use approximation to exact distribution of test statistic
-
- 'asymp' : use asymptotic distribution of test statistic
-
-
- Returns
- -------
- D : float
- KS test statistic, either D, D+ or D-
- p-value : float
- one-tailed or two-tailed p-value
-
- Notes
- -----
-
- In the one-sided test, the alternative is that the empirical
- cumulative distribution function of the random variable is "less"
- or "greater" than the cumulative distribution function F(x) of the
- hypothesis, G(x)<=F(x), resp. G(x)>=F(x).
-
- Examples
- --------
-
- >>> from scipy import stats
- >>> import numpy as np
- >>> from scipy.stats import kstest
-
- >>> x = np.linspace(-15,15,9)
- >>> kstest(x,'norm')
- (0.44435602715924361, 0.038850142705171065)
-
- >>> np.random.seed(987654321) # set random seed to get the same result
- >>> kstest('norm','',N=100)
- (0.058352892479417884, 0.88531190944151261)
-
- is equivalent to this
-
- >>> np.random.seed(987654321)
- >>> kstest(stats.norm.rvs(size=100),'norm')
- (0.058352892479417884, 0.88531190944151261)
-
- Test against one-sided alternative hypothesis:
-
- >>> np.random.seed(987654321)
-
- Shift distribution to larger values, so that cdf_dgp(x)< norm.cdf(x):
-
- >>> x = stats.norm.rvs(loc=0.2, size=100)
- >>> kstest(x,'norm', alternative = 'less')
- (0.12464329735846891, 0.040989164077641749)
-
- Reject equal distribution against alternative hypothesis: less
-
- >>> kstest(x,'norm', alternative = 'greater')
- (0.0072115233216311081, 0.98531158590396395)
-
- Don't reject equal distribution against alternative hypothesis: greater
-
- >>> kstest(x,'norm', mode='asymp')
- (0.12464329735846891, 0.08944488871182088)
-
-
- Testing t distributed random variables against normal distribution:
-
- With 100 degrees of freedom the t distribution looks close to the normal
- distribution, and the kstest does not reject the hypothesis that the sample
- came from the normal distribution
-
- >>> np.random.seed(987654321)
- >>> stats.kstest(stats.t.rvs(100,size=100),'norm')
- (0.072018929165471257, 0.67630062862479168)
-
- With 3 degrees of freedom the t distribution looks sufficiently different
- from the normal distribution, that we can reject the hypothesis that the
- sample came from the normal distribution at a alpha=10% level
-
- >>> np.random.seed(987654321)
- >>> stats.kstest(stats.t.rvs(3,size=100),'norm')
- (0.131016895759829, 0.058826222555312224)
-
- """
- if isinstance(rvs, basestring):
- #cdf = getattr(stats, rvs).cdf
- if (not cdf) or (cdf == rvs):
- cdf = getattr(distributions, rvs).cdf
- rvs = getattr(distributions, rvs).rvs
- else:
- raise AttributeError('if rvs is string, cdf has to be the same distribution')
-
-
- if isinstance(cdf, basestring):
- cdf = getattr(distributions, cdf).cdf
- if callable(rvs):
- kwds = {'size':N}
- vals = np.sort(rvs(*args,**kwds))
- else:
- vals = np.sort(rvs)
- N = len(vals)
- cdfvals = cdf(vals, *args)
-
- if alternative in ['two_sided', 'greater']:
- Dplus = (np.arange(1.0, N+1)/N - cdfvals).max()
- if alternative == 'greater':
- return Dplus, distributions.ksone.sf(Dplus,N)
-
- if alternative in ['two_sided', 'less']:
- Dmin = (cdfvals - np.arange(0.0, N)/N).max()
- if alternative == 'less':
- return Dmin, distributions.ksone.sf(Dmin,N)
-
- if alternative == 'two_sided':
- D = np.max([Dplus,Dmin])
- if mode == 'asymp':
- return D, distributions.kstwobign.sf(D*np.sqrt(N))
- if mode == 'approx':
- pval_two = distributions.kstwobign.sf(D*np.sqrt(N))
- if N > 2666 or pval_two > 0.80 - N*0.3/1000.0 :
- return D, distributions.kstwobign.sf(D*np.sqrt(N))
- else:
- return D, distributions.ksone.sf(D,N)*2
-
-#TODO: split into modification and pvalue functions separately ?
-# for separate testing and combining different pieces
-
-def dplus_st70_upp(stat, nobs):
- mod_factor = np.sqrt(nobs) + 0.12 + 0.11 / np.sqrt(nobs)
- stat_modified = stat * mod_factor
- pval = np.exp(-2 * stat_modified**2)
- digits = np.sum(stat > np.array([0.82, 0.82, 1.00]))
- #repeat low to get {0,2,3}
- return stat_modified, pval, digits
-
-dminus_st70_upp = dplus_st70_upp
-
-
-def d_st70_upp(stat, nobs):
- mod_factor = np.sqrt(nobs) + 0.12 + 0.11 / np.sqrt(nobs)
- stat_modified = stat * mod_factor
- pval = 2 * np.exp(-2 * stat_modified**2)
- digits = np.sum(stat > np.array([0.91, 0.91, 1.08]))
- #repeat low to get {0,2,3}
- return stat_modified, pval, digits
-
-def v_st70_upp(stat, nobs):
- mod_factor = np.sqrt(nobs) + 0.155 + 0.24 / np.sqrt(nobs)
- #repeat low to get {0,2,3}
- stat_modified = stat * mod_factor
- zsqu = stat_modified**2
- pval = (8 * zsqu - 2) * np.exp(-2 * zsqu)
- digits = np.sum(stat > np.array([1.06, 1.06, 1.26]))
- return stat_modified, pval, digits
-
-def wsqu_st70_upp(stat, nobs):
- nobsinv = 1. / nobs
- stat_modified = (stat - 0.4 * nobsinv + 0.6 * nobsinv**2) * (1 + nobsinv)
- pval = 0.05 * np.exp(2.79 - 6 * stat_modified)
- digits = np.nan # some explanation in txt
- #repeat low to get {0,2,3}
- return stat_modified, pval, digits
-
-def usqu_st70_upp(stat, nobs):
- nobsinv = 1. / nobs
- stat_modified = (stat - 0.1 * nobsinv + 0.1 * nobsinv**2)
- stat_modified *= (1 + 0.8 * nobsinv)
- pval = 2 * np.exp(- 2 * stat_modified * np.pi**2)
- digits = np.sum(stat > np.array([0.29, 0.29, 0.34]))
- #repeat low to get {0,2,3}
- return stat_modified, pval, digits
-
-def a_st70_upp(stat, nobs):
- nobsinv = 1. / nobs
- stat_modified = (stat - 0.7 * nobsinv + 0.9 * nobsinv**2)
- stat_modified *= (1 + 1.23 * nobsinv)
- pval = 1.273 * np.exp(- 2 * stat_modified / 2. * np.pi**2)
- digits = np.sum(stat > np.array([0.11, 0.11, 0.452]))
- #repeat low to get {0,2,3}
- return stat_modified, pval, digits
-
-
-
-gof_pvals = {}
-
-gof_pvals['stephens70upp'] = {
- 'd_plus' : dplus_st70_upp,
- 'd_minus' : dplus_st70_upp,
- 'd' : d_st70_upp,
- 'v' : v_st70_upp,
- 'wsqu' : wsqu_st70_upp,
- 'usqu' : usqu_st70_upp,
- 'a' : a_st70_upp }
-
-def pval_kstest_approx(D, N):
- pval_two = distributions.kstwobign.sf(D*np.sqrt(N))
- if N > 2666 or pval_two > 0.80 - N*0.3/1000.0 :
- return D, distributions.kstwobign.sf(D*np.sqrt(N)), np.nan
- else:
- return D, distributions.ksone.sf(D,N)*2, np.nan
-
-gof_pvals['scipy'] = {
- 'd_plus' : lambda Dplus, N: (Dplus, distributions.ksone.sf(Dplus, N), np.nan),
- 'd_minus' : lambda Dmin, N: (Dmin, distributions.ksone.sf(Dmin,N), np.nan),
- 'd' : lambda D, N: (D, distributions.kstwobign.sf(D*np.sqrt(N)), np.nan)
- }
-
-gof_pvals['scipy_approx'] = {
- 'd' : pval_kstest_approx }
-
-class GOF(object):
- '''One Sample Goodness of Fit tests
-
- includes Kolmogorov-Smirnov D, D+, D-, Kuiper V, Cramer-von Mises W^2, U^2 and
- Anderson-Darling A, A^2. The p-values for all tests except for A^2 are based on
- the approximatiom given in Stephens 1970. A^2 has currently no p-values. For
- the Kolmogorov-Smirnov test the tests as given in scipy.stats are also available
- as options.
-
-
-
-
- design: I might want to retest with different distributions, to calculate
- data summary statistics only once, or add separate class that holds
- summary statistics and data (sounds good).
-
-
-
-
- '''
-
-
-
-
- def __init__(self, rvs, cdf, args=(), N=20):
- if isinstance(rvs, basestring):
- #cdf = getattr(stats, rvs).cdf
- if (not cdf) or (cdf == rvs):
- cdf = getattr(distributions, rvs).cdf
- rvs = getattr(distributions, rvs).rvs
- else:
- raise AttributeError('if rvs is string, cdf has to be the same distribution')
-
-
- if isinstance(cdf, basestring):
- cdf = getattr(distributions, cdf).cdf
- if callable(rvs):
- kwds = {'size':N}
- vals = np.sort(rvs(*args,**kwds))
- else:
- vals = np.sort(rvs)
- N = len(vals)
- cdfvals = cdf(vals, *args)
-
- self.nobs = N
- self.vals_sorted = vals
- self.cdfvals = cdfvals
-
-
-
- @cache_readonly
- def d_plus(self):
- nobs = self.nobs
- cdfvals = self.cdfvals
- return (np.arange(1.0, nobs+1)/nobs - cdfvals).max()
-
- @cache_readonly
- def d_minus(self):
- nobs = self.nobs
- cdfvals = self.cdfvals
- return (cdfvals - np.arange(0.0, nobs)/nobs).max()
-
- @cache_readonly
- def d(self):
- return np.max([self.d_plus, self.d_minus])
-
- @cache_readonly
- def v(self):
- '''Kuiper'''
- return self.d_plus + self.d_minus
-
- @cache_readonly
- def wsqu(self):
- '''Cramer von Mises'''
- nobs = self.nobs
- cdfvals = self.cdfvals
- #use literal formula, TODO: simplify with arange(,,2)
- wsqu = ((cdfvals - (2. * np.arange(1., nobs+1) - 1)/nobs/2.)**2).sum() \
- + 1./nobs/12.
- return wsqu
-
- @cache_readonly
- def usqu(self):
- nobs = self.nobs
- cdfvals = self.cdfvals
- #use literal formula, TODO: simplify with arange(,,2)
- usqu = self.wsqu - nobs * (cdfvals.mean() - 0.5)**2
- return usqu
-
- @cache_readonly
- def a(self):
- nobs = self.nobs
- cdfvals = self.cdfvals
-
- #one loop instead of large array
- msum = 0
- for j in xrange(1,nobs):
- mj = cdfvals[j] - cdfvals[:j]
- mask = (mj > 0.5)
- mj[mask] = 1 - mj[mask]
- msum += mj.sum()
-
- a = nobs / 4. - 2. / nobs * msum
- return a
-
- @cache_readonly
- def asqu(self):
- '''Stephens 1974, doesn't have p-value formula for A^2'''
- nobs = self.nobs
- cdfvals = self.cdfvals
-
- asqu = -((2. * np.arange(1., nobs+1) - 1) *
- (np.log(cdfvals) + np.log(1-cdfvals[::-1]) )).sum()/nobs - nobs
-
- return asqu
-
-
- def get_test(self, testid='d', pvals='stephens70upp'):
- '''
-
- '''
- #print gof_pvals[pvals][testid]
- stat = getattr(self, testid)
- if pvals == 'stephens70upp':
- return gof_pvals[pvals][testid](stat, self.nobs), stat
- else:
- return gof_pvals[pvals][testid](stat, self.nobs)
-
-
-
-
-
-
-
-
-def gof_mc(randfn, distr, nobs=100):
- #print '\nIs it correctly sized?'
- from collections import defaultdict
-
- results = defaultdict(list)
- for i in xrange(1000):
- rvs = randfn(nobs)
- goft = GOF(rvs, distr)
- for ti in all_gofs:
- results[ti].append(goft.get_test(ti, 'stephens70upp')[0][1])
-
- resarr = np.array([results[ti] for ti in all_gofs])
- print ' ', ' '.join(all_gofs)
- print 'at 0.01:', (resarr < 0.01).mean(1)
- print 'at 0.05:', (resarr < 0.05).mean(1)
- print 'at 0.10:', (resarr < 0.1).mean(1)
-
-def asquare(cdfvals, axis=0):
- '''vectorized Anderson Darling A^2, Stephens 1974'''
- ndim = len(cdfvals.shape)
- nobs = cdfvals.shape[axis]
- slice_reverse = [slice(None)] * ndim #might make copy if not specific axis???
- islice = [None] * ndim
- islice[axis] = slice(None)
- slice_reverse[axis] = slice(None, None, -1)
- asqu = -((2. * np.arange(1., nobs+1)[islice] - 1) *
- (np.log(cdfvals) + np.log(1-cdfvals[slice_reverse]))/nobs).sum(axis) \
- - nobs
-
- return asqu
-
-
-#class OneSGOFFittedVec(object):
-# '''for vectorized fitting'''
- # currently I use the bootstrap as function instead of full class
-
- #note: kwds loc and scale are a pain
- # I would need to overwrite rvs, fit and cdf depending on fixed parameters
-
- #def bootstrap(self, distr, args=(), kwds={}, nobs=200, nrep=1000,
-def bootstrap(distr, args=(), nobs=200, nrep=100, value=None, batch_size=None):
- '''Monte Carlo (or parametric bootstrap) p-values for gof
-
- currently hardcoded for A^2 only
-
- assumes vectorized fit_vec method,
- builds and analyses (nobs, nrep) sample in one step
-
- rename function to less generic
-
- this works also with nrep=1
-
- '''
- #signature similar to kstest ?
- #delegate to fn ?
-
- #rvs_kwds = {'size':(nobs, nrep)}
- #rvs_kwds.update(kwds)
-
-
- #it will be better to build a separate batch function that calls bootstrap
- #keep batch if value is true, but batch iterate from outside if stat is returned
- if (not batch_size is None):
- if value is None:
- raise ValueError('using batching requires a value')
- n_batch = int(np.ceil(nrep/float(batch_size)))
- count = 0
- for irep in xrange(n_batch):
- rvs = distr.rvs(args, **{'size':(batch_size, nobs)})
- params = distr.fit_vec(rvs, axis=1)
- params = map(lambda x: np.expand_dims(x, 1), params)
- cdfvals = np.sort(distr.cdf(rvs, params), axis=1)
- stat = asquare(cdfvals, axis=1)
- count += (stat >= value).sum()
- return count / float(n_batch * batch_size)
- else:
- #rvs = distr.rvs(args, **kwds) #extension to distribution kwds ?
- rvs = distr.rvs(args, **{'size':(nrep, nobs)})
- params = distr.fit_vec(rvs, axis=1)
- params = map(lambda x: np.expand_dims(x, 1), params)
- cdfvals = np.sort(distr.cdf(rvs, params), axis=1)
- stat = asquare(cdfvals, axis=1)
- if value is None: #return all bootstrap results
- stat_sorted = np.sort(stat)
- return stat_sorted
- else: #calculate and return specific p-value
- return (stat >= value).mean()
-
-
-
-def bootstrap2(value, distr, args=(), nobs=200, nrep=100):
- '''Monte Carlo (or parametric bootstrap) p-values for gof
-
- currently hardcoded for A^2 only
-
- non vectorized, loops over all parametric bootstrap replications and calculates
- and returns specific p-value,
-
- rename function to less generic
-
- '''
- #signature similar to kstest ?
- #delegate to fn ?
-
- #rvs_kwds = {'size':(nobs, nrep)}
- #rvs_kwds.update(kwds)
-
-
- count = 0
- for irep in xrange(nrep):
- #rvs = distr.rvs(args, **kwds) #extension to distribution kwds ?
- rvs = distr.rvs(args, **{'size':nobs})
- params = distr.fit_vec(rvs)
- cdfvals = np.sort(distr.cdf(rvs, params))
- stat = asquare(cdfvals, axis=0)
- count += (stat >= value)
- return count * 1. / nrep
-
-
-class NewNorm(object):
- '''just a holder for modified distributions
- '''
-
- def fit_vec(self, x, axis=0):
- return x.mean(axis), x.std(axis)
-
- def cdf(self, x, args):
- return distributions.norm.cdf(x, loc=args[0], scale=args[1])
-
- def rvs(self, args, size):
- loc=args[0]
- scale=args[1]
- return loc + scale * distributions.norm.rvs(size=size)
-
-
-
-
-if __name__ == '__main__':
- from scipy import stats
- #rvs = np.random.randn(1000)
- rvs = stats.t.rvs(3, size=200)
- print 'scipy kstest'
- print kstest(rvs, 'norm')
- goft = GOF(rvs, 'norm')
- print goft.get_test()
-
- all_gofs = ['d', 'd_plus', 'd_minus', 'v', 'wsqu', 'usqu', 'a']
- for ti in all_gofs:
- print ti, goft.get_test(ti, 'stephens70upp')
-
- print '\nIs it correctly sized?'
- from collections import defaultdict
-
- results = defaultdict(list)
- nobs = 200
- for i in xrange(100):
- rvs = np.random.randn(nobs)
- goft = GOF(rvs, 'norm')
- for ti in all_gofs:
- results[ti].append(goft.get_test(ti, 'stephens70upp')[0][1])
-
- resarr = np.array([results[ti] for ti in all_gofs])
- print ' ', ' '.join(all_gofs)
- print 'at 0.01:', (resarr < 0.01).mean(1)
- print 'at 0.05:', (resarr < 0.05).mean(1)
- print 'at 0.10:', (resarr < 0.1).mean(1)
-
- gof_mc(lambda nobs: stats.t.rvs(3, size=nobs), 'norm', nobs=200)
-
- nobs = 200
- nrep = 100
- bt = bootstrap(NewNorm(), args=(0,1), nobs=nobs, nrep=nrep, value=None)
- quantindex = np.floor(nrep * np.array([0.99, 0.95, 0.9])).astype(int)
- print bt[quantindex]
-
- #the bootstrap results match Stephens pretty well for nobs=100, but not so well for
- #large (1000) or small (20) nobs
- '''
- >>> np.array([15.0, 10.0, 5.0, 2.5, 1.0])/100. #Stephens
- array([ 0.15 , 0.1 , 0.05 , 0.025, 0.01 ])
- >>> nobs = 100
- >>> [bootstrap(NewNorm(), args=(0,1), nobs=nobs, nrep=10000, value=c/ (1 + 4./nobs - 25./nobs**2)) for c in [0.576, 0.656, 0.787, 0.918, 1.092]]
- [0.1545, 0.10009999999999999, 0.049000000000000002, 0.023, 0.0104]
- >>>
- '''
-
- #test equality of loop, vectorized, batch-vectorized
- np.random.seed(8765679)
- resu1 = bootstrap(NewNorm(), args=(0,1), nobs=nobs, nrep=100,
- value=0.576/(1 + 4./nobs - 25./nobs**2))
- np.random.seed(8765679)
- tmp = [bootstrap(NewNorm(), args=(0,1), nobs=nobs, nrep=1) for _ in range(100)]
- resu2 = (np.array(tmp) > 0.576/(1 + 4./nobs - 25./nobs**2)).mean()
- np.random.seed(8765679)
- tmp = [bootstrap(NewNorm(), args=(0,1), nobs=nobs, nrep=1,
- value=0.576/ (1 + 4./nobs - 25./nobs**2),
- batch_size=10) for _ in range(10)]
- resu3 = np.array(resu).mean()
- from numpy.testing import assert_almost_equal, assert_array_almost_equal
- assert_array_almost_equal(resu1, resu2, 15)
- assert_array_almost_equal(resu2, resu3, 15)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/mixture_rvs.py b/statsmodels/scikits/statsmodels/sandbox/distributions/mixture_rvs.py
deleted file mode 100644
index db0d6a1..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/mixture_rvs.py
+++ /dev/null
@@ -1,268 +0,0 @@
-import numpy as np
-
-def _make_index(prob,size):
- """
- Returns a boolean index for given probabilities.
-
- Notes
- ---------
- prob = [.75,.25] means that there is a 75% chance of the first column
- being True and a 25% chance of the second column being True. The
- columns are mutually exclusive.
- """
- rv = np.random.uniform(size=(size,1))
- cumprob = np.cumsum(prob)
- return np.logical_and(np.r_[0,cumprob[:-1]] <= rv, rv < cumprob)
-
-def mixture_rvs(prob, size, dist, kwargs=None):
- """
- Sample from a mixture of distributions.
-
- Parameters
- ----------
- prob : array-like
- Probability of sampling from each distribution in dist
- size : int
- The length of the returned sample.
- dist : array-like
- An iterable of distributions objects from scipy.stats.
- kwargs : tuple of dicts, optional
- A tuple of dicts. Each dict in kwargs can have keys loc, scale, and
- args to be passed to the respective distribution in dist. If not
- provided, the distribution defaults are used.
-
- Examples
- --------
- Say we want 5000 random variables from mixture of normals with two
- distributions norm(-1,.5) and norm(1,.5) and we want to sample from the
- first with probability .75 and the second with probability .25.
-
- >>> from scipy import stats
- >>> prob = [.75,.25]
- >>> Y = mixture_rvs(prob, 5000, dist=[stats.norm, stats.norm], kwargs =
- (dict(loc=-1,scale=.5),dict(loc=1,scale=.5)))
- """
- if len(prob) != len(dist):
- raise ValueError("You must provide as many probabilities as distributions")
- if not np.allclose(np.sum(prob), 1):
- raise ValueError("prob does not sum to 1")
-
- if kwargs is None:
- kwargs = ({},)*len(prob)
-
- idx = _make_index(prob,size)
- sample = np.empty(size)
- for i in range(len(prob)):
- sample_idx = idx[...,i]
- sample_size = sample_idx.sum()
- loc = kwargs[i].get('loc',0)
- scale = kwargs[i].get('scale',1)
- args = kwargs[i].get('args',())
- sample[sample_idx] = dist[i].rvs(*args, **dict(loc=loc,scale=scale,
- size=sample_size))
- return sample
-
-
-class MixtureDistribution(object):
- '''univariate mixture distribution
-
- for simple case for now (unbound support)
- does not yet inherit from scipy.stats.distributions
-
- adding pdf to mixture_rvs, some restrictions on broadcasting
- Currently it does not hold any state, all arguments included in each method.
- '''
-
- #def __init__(self, prob, size, dist, kwargs=None):
-
- def rvs(self, prob, size, dist, kwargs=None):
- return mixture_rvs(prob, size, dist, kwargs=kwargs)
-
-
- def pdf(self, x, prob, dist, kwargs=None):
- """
- pdf a mixture of distributions.
-
- Parameters
- ----------
- prob : array-like
- Probability of sampling from each distribution in dist
- dist : array-like
- An iterable of distributions objects from scipy.stats.
- kwargs : tuple of dicts, optional
- A tuple of dicts. Each dict in kwargs can have keys loc, scale, and
- args to be passed to the respective distribution in dist. If not
- provided, the distribution defaults are used.
-
- Examples
- --------
- Say we want 5000 random variables from mixture of normals with two
- distributions norm(-1,.5) and norm(1,.5) and we want to sample from the
- first with probability .75 and the second with probability .25.
-
- >>> from scipy import stats
- >>> prob = [.75,.25]
- >>> Y = mixture.pdf(x, prob, dist=[stats.norm, stats.norm], kwargs =
- (dict(loc=-1,scale=.5),dict(loc=1,scale=.5)))
- """
- if len(prob) != len(dist):
- raise ValueError("You must provide as many probabilities as distributions")
- if not np.allclose(np.sum(prob), 1):
- raise ValueError("prob does not sum to 1")
-
- if kwargs is None:
- kwargs = ({},)*len(prob)
-
- for i in range(len(prob)):
- loc = kwargs[i].get('loc',0)
- scale = kwargs[i].get('scale',1)
- args = kwargs[i].get('args',())
- if i == 0: #assume all broadcast the same as the first dist
- pdf_ = prob[i] * dist[i].pdf(x, args=args, loc=loc, scale=scale)
- else:
- pdf_ += prob[i] * dist[i].pdf(x, args=args, loc=loc, scale=scale)
- return pdf_
-
- def cdf(self, x, prob, dist, kwargs=None):
- """
- cdf of a mixture of distributions.
-
- Parameters
- ----------
- prob : array-like
- Probability of sampling from each distribution in dist
- size : int
- The length of the returned sample.
- dist : array-like
- An iterable of distributions objects from scipy.stats.
- kwargs : tuple of dicts, optional
- A tuple of dicts. Each dict in kwargs can have keys loc, scale, and
- args to be passed to the respective distribution in dist. If not
- provided, the distribution defaults are used.
-
- Examples
- --------
- Say we want 5000 random variables from mixture of normals with two
- distributions norm(-1,.5) and norm(1,.5) and we want to sample from the
- first with probability .75 and the second with probability .25.
-
- >>> from scipy import stats
- >>> prob = [.75,.25]
- >>> Y = mixture.pdf(x, prob, dist=[stats.norm, stats.norm], kwargs =
- (dict(loc=-1,scale=.5),dict(loc=1,scale=.5)))
- """
- if len(prob) != len(dist):
- raise ValueError("You must provide as many probabilities as distributions")
- if not np.allclose(np.sum(prob), 1):
- raise ValueError("prob does not sum to 1")
-
- if kwargs is None:
- kwargs = ({},)*len(prob)
-
- for i in range(len(prob)):
- loc = kwargs[i].get('loc',0)
- scale = kwargs[i].get('scale',1)
- args = kwargs[i].get('args',())
- if i == 0: #assume all broadcast the same as the first dist
- cdf_ = prob[i] * dist[i].cdf(x, args=args, loc=loc, scale=scale)
- else:
- cdf_ += prob[i] * dist[i].cdf(x, args=args, loc=loc, scale=scale)
- return cdf_
-
-
-def mv_mixture_rvs(prob, size, dist, nvars, **kwargs):
- """
- Sample from a mixture of multivariate distributions.
-
- Parameters
- ----------
- prob : array-like
- Probability of sampling from each distribution in dist
- size : int
- The length of the returned sample.
- dist : array-like
- An iterable of distributions instances with callable method rvs.
- nvargs : int
- dimension of the multivariate distribution, could be inferred instead
- kwargs : tuple of dicts, optional
- ignored
-
- Examples
- --------
- Say we want 2000 random variables from mixture of normals with two
- multivariate normal distributions, and we want to sample from the
- first with probability .4 and the second with probability .6.
-
- import scikits.statsmodels.sandbox.distributions.mv_normal as mvd
-
- cov3 = np.array([[ 1. , 0.5 , 0.75],
- [ 0.5 , 1.5 , 0.6 ],
- [ 0.75, 0.6 , 2. ]])
-
- mu = np.array([-1, 0.0, 2.0])
- mu2 = np.array([4, 2.0, 2.0])
- mvn3 = mvd.MVNormal(mu, cov3)
- mvn32 = mvd.MVNormal(mu2, cov3/2., 4)
- rvs = mix.mv_mixture_rvs([0.4, 0.6], 2000, [mvn3, mvn32], 3)
-
- """
- if len(prob) != len(dist):
- raise ValueError("You must provide as many probabilities as distributions")
- if not np.allclose(np.sum(prob), 1):
- raise ValueError("prob does not sum to 1")
-
- if kwargs is None:
- kwargs = ({},)*len(prob)
-
- idx = _make_index(prob,size)
- sample = np.empty((size, nvars))
- for i in range(len(prob)):
- sample_idx = idx[...,i]
- sample_size = sample_idx.sum()
- #loc = kwargs[i].get('loc',0)
- #scale = kwargs[i].get('scale',1)
- #args = kwargs[i].get('args',())
- sample[sample_idx] = dist[i].rvs(size=sample_size)
- return sample
-
-
-
-if __name__ == '__main__':
-
- from scipy import stats
-
- obs_dist = mixture_rvs([.25,.75], size=10000, dist=[stats.norm, stats.beta],
- kwargs=(dict(loc=-1,scale=.5),dict(loc=1,scale=1,args=(1,.5))))
-
-
-
- nobs = 10000
- mix = MixtureDistribution()
-## mrvs = mixture_rvs([1/3.,2/3.], size=nobs, dist=[stats.norm, stats.norm],
-## kwargs = (dict(loc=-1,scale=.5),dict(loc=1,scale=.75)))
-
- mix_kwds = (dict(loc=-1,scale=.25),dict(loc=1,scale=.75))
- mrvs = mix.rvs([1/3.,2/3.], size=nobs, dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
-
- grid = np.linspace(-4,4, 100)
- mpdf = mix.pdf(grid, [1/3.,2/3.], dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
- mcdf = mix.cdf(grid, [1/3.,2/3.], dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
-
- doplot = 1
- if doplot:
- import matplotlib.pyplot as plt
- plt.figure()
- plt.hist(mrvs, bins=50, normed=True, color='red')
- plt.title('histogram of sample and pdf')
- plt.plot(grid, mpdf, lw=2, color='black')
-
- plt.figure()
- plt.hist(mrvs, bins=50, normed=True, cumulative=True, color='red')
- plt.title('histogram of sample and pdf')
- plt.plot(grid, mcdf, lw=2, color='black')
-
- plt.show()
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/multivariate.py b/statsmodels/scikits/statsmodels/sandbox/distributions/multivariate.py
deleted file mode 100644
index ca593c2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/multivariate.py
+++ /dev/null
@@ -1,174 +0,0 @@
-'''Multivariate Distribution
-
-Probability of a multivariate t distribution
-
-Now also mvstnormcdf has tests against R mvtnorm
-
-Still need non-central t, extra options, and convenience function for
-location, scale version.
-
-Author: Josef Perktold
-License: BSD (3-clause)
-
-Reference:
-Genz and Bretz for formula
-
-'''
-import numpy as np
-from scipy import integrate, stats, special
-from scipy.stats import chi,chi2
-
-from extras import mvnormcdf, mvstdnormcdf, mvnormcdf
-
-from numpy import exp as np_exp
-from numpy import log as np_log
-from scipy.special import gamma as sps_gamma
-from scipy.special import gammaln as sps_gammaln
-
-def chi2_pdf(self, x, df):
- '''pdf of chi-square distribution'''
- #from scipy.stats.distributions
- Px = x**(df/2.0-1)*np.exp(-x/2.0)
- Px /= special.gamma(df/2.0)* 2**(df/2.0)
- return Px
-
-def chi_pdf(x, df):
- tmp = (df-1.)*np_log(x) + (-x*x*0.5) - (df*0.5-1)*np_log(2.0) \
- - sps_gammaln(df*0.5)
- return np_exp(tmp)
- #return x**(df-1.)*np_exp(-x*x*0.5)/(2.0)**(df*0.5-1)/sps_gamma(df*0.5)
-
-def chi_logpdf(x, df):
- tmp = (df-1.)*np_log(x) + (-x*x*0.5) - (df*0.5-1)*np_log(2.0) \
- - sps_gammaln(df*0.5)
- return tmp
-
-def funbgh(s, a, b, R, df):
- sqrt_df = np.sqrt(df+0.5)
- ret = chi_logpdf(s,df)
- ret += np_log(mvstdnormcdf(s*a/sqrt_df, s*b/sqrt_df, R,
- maxpts=1000000, abseps=1e-6))
- ret = np_exp(ret)
- return ret
-
-def funbgh2(s, a, b, R, df):
- n = len(a)
- sqrt_df = np.sqrt(df)
- #np.power(s, df-1) * np_exp(-s*s*0.5)
- return np_exp((df-1)*np_log(s)-s*s*0.5) \
- * mvstdnormcdf(s*a/sqrt_df, s*b/sqrt_df, R[np.tril_indices(n, -1)],
- maxpts=1000000, abseps=1e-4)
-
-def bghfactor(df):
- return np.power(2.0, 1-df*0.5) / sps_gamma(df*0.5)
-
-
-def mvstdtprob(a, b, R, df, ieps=1e-5, quadkwds=None, mvstkwds=None):
- '''probability of rectangular area of standard t distribution
-
- assumes mean is zero and R is correlation matrix
-
- Notes
- -----
- This function does not calculate the estimate of the combined error
- between the underlying multivariate normal probability calculations
- and the integration.
-
- '''
- kwds = dict(args=(a,b,R,df), epsabs=1e-4, epsrel=1e-2, limit=150)
- if not quadkwds is None:
- kwds.update(quadkwds)
- #print kwds
- res, err = integrate.quad(funbgh2, *chi.ppf([ieps,1-ieps], df),
- **kwds)
- prob = res * bghfactor(df)
- return prob
-
-#written by Enzo Michelangeli, style changes by josef-pktd
-# Student's T random variable
-def multivariate_t_rvs(m, S, df=np.inf, n=1):
- '''generate random variables of multivariate t distribution
-
- Parameters
- ----------
- m : array_like
- mean of random variable, length determines dimension of random variable
- S : array_like
- square array of covariance matrix
- df : int or float
- degrees of freedom
- n : int
- number of observations, return random array will be (n, len(m))
-
- Returns
- -------
- rvs : ndarray, (n, len(m))
- each row is an independent draw of a multivariate t distributed
- random variable
-
-
- '''
- m = np.asarray(m)
- d = len(m)
- if df == np.inf:
- x = 1.
- else:
- x = np.random.chisquare(df, n)/df
- z = np.random.multivariate_normal(np.zeros(d),S,(n,))
- return m + z/np.sqrt(x)[:,None] # same output format as random.multivariate_normal
-
-
-
-
-if __name__ == '__main__':
- corr = np.asarray([[1.0, 0, 0.5],[0,1,0],[0.5,0,1]])
- corr_indep = np.asarray([[1.0, 0, 0],[0,1,0],[0,0,1]])
- corr_equal = np.asarray([[1.0, 0.5, 0.5],[0.5,1,0.5],[0.5,0.5,1]])
- R = corr_equal
- a = np.array([-np.inf,-np.inf,-100.0])
- a = np.array([-0.96,-0.96,-0.96])
- b = np.array([0.0,0.0,0.0])
- b = np.array([0.96,0.96, 0.96])
- a[:] = -1
- b[:] = 3
- df = 10.
- sqrt_df = np.sqrt(df)
- print mvstdnormcdf(a, b, corr, abseps=1e-6)
-
- #print integrate.quad(funbgh, 0, np.inf, args=(a,b,R,df))
- print (stats.t.cdf(b[0], df) - stats.t.cdf(a[0], df))**3
-
- s = 1
- print mvstdnormcdf(s*a/sqrt_df, s*b/sqrt_df, R)
-
-
- df=4
- print mvstdtprob(a, b, R, df)
-
- S = np.array([[1.,.5],[.5,1.]])
- print multivariate_t_rvs([10.,20.], S, 2, 5)
-
- nobs = 10000
- rvst = multivariate_t_rvs([10.,20.], S, 2, nobs)
- print np.sum((rvst<[10.,20.]).all(1),0) * 1. / nobs
- print mvstdtprob(-np.inf*np.ones(2), np.zeros(2), R[:2,:2], 2)
-
-
- '''
- > lower <- -1
- > upper <- 3
- > df <- 4
- > corr <- diag(3)
- > delta <- rep(0, 3)
- > pmvt(lower=lower, upper=upper, delta=delta, df=df, corr=corr)
- [1] 0.5300413
- attr(,"error")
- [1] 4.321136e-05
- attr(,"msg")
- [1] "Normal Completion"
- > (pt(upper, df) - pt(lower, df))**3
- [1] 0.4988254
-
- '''
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/mv_measures.py b/statsmodels/scikits/statsmodels/sandbox/distributions/mv_measures.py
deleted file mode 100644
index b15e601..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/mv_measures.py
+++ /dev/null
@@ -1,196 +0,0 @@
-'''using multivariate dependence and divergence measures
-
-The standard correlation coefficient measures only linear dependence between
-random variables.
-kendall's tau measures any monotonic relationship also non-linear.
-
-mutual information measures any kind of dependence, but does not distinguish
-between positive and negative relationship
-
-
-mutualinfo_kde and mutualinfo_binning follow Khan et al. 2007
-
-Shiraj Khan, Sharba Bandyopadhyay, Auroop R. Ganguly, Sunil Saigal,
-David J. Erickson, III, Vladimir Protopopescu, and George Ostrouchov,
-Relative performance of mutual information estimation methods for
-quantifying the dependence among short and noisy data,
-Phys. Rev. E 76, 026209 (2007)
-http://pre.aps.org/abstract/PRE/v76/i2/e026209
-
-
-'''
-
-import numpy as np
-from scipy import stats
-from scipy.stats import gaussian_kde
-
-import scikits.statsmodels.sandbox.infotheo as infotheo
-
-
-def mutualinfo_kde(y, x, normed=True):
- '''mutual information of two random variables estimated with kde
-
- '''
- nobs = len(x)
- if not len(y) == nobs:
- raise ValueError('both data arrays need to have the same size')
- x = np.asarray(x, float)
- y = np.asarray(y, float)
- yx = np.vstack((y,x))
- kde_x = gaussian_kde(x)(x)
- kde_y = gaussian_kde(y)(y)
- kde_yx = gaussian_kde(yx)(yx)
-
- mi_obs = np.log(kde_yx) - np.log(kde_x) - np.log(kde_y)
- mi = mi_obs.sum() / nobs
- if normed:
- mi_normed = np.sqrt(1. - np.exp(-2 * mi))
- return mi_normed
- else:
- return mi
-
-def mutualinfo_kde_2sample(y, x, normed=True):
- '''mutual information of two random variables estimated with kde
-
- '''
- nobs = len(x)
- x = np.asarray(x, float)
- y = np.asarray(y, float)
- #yx = np.vstack((y,x))
- kde_x = gaussian_kde(x.T)(x.T)
- kde_y = gaussian_kde(y.T)(x.T)
- #kde_yx = gaussian_kde(yx)(yx)
-
- mi_obs = np.log(kde_x) - np.log(kde_y)
- if len(mi_obs) != nobs: raise
- mi = mi_obs.mean()
- if normed:
- mi_normed = np.sqrt(1. - np.exp(-2 * mi))
- return mi_normed
- else:
- return mi
-
-def mutualinfo_binned(y, x, bins, normed=True):
- '''mutual information of two random variables estimated with kde
-
-
-
- Notes
- -----
- bins='auto' selects the number of bins so that approximately 5 observations
- are expected to be in each bin under the assumption of independence. This
- follows roughly the description in Kahn et al. 2007
-
- '''
- nobs = len(x)
- if not len(y) == nobs:
- raise ValueError('both data arrays need to have the same size')
- x = np.asarray(x, float)
- y = np.asarray(y, float)
- #yx = np.vstack((y,x))
-
-
-## fyx, binsy, binsx = np.histogram2d(y, x, bins=bins)
-## fx, binsx_ = np.histogram(x, bins=binsx)
-## fy, binsy_ = np.histogram(y, bins=binsy)
-
- if bins == 'auto':
- ys = np.sort(y)
- xs = np.sort(x)
- #quantiles = np.array([0,0.25, 0.4, 0.6, 0.75, 1])
- qbin_sqr = np.sqrt(5./nobs)
- quantiles = np.linspace(0, 1, 1./qbin_sqr)
- quantile_index = ((nobs-1)*quantiles).astype(int)
- #move edges so that they don't coincide with an observation
- shift = 1e-6 + np.ones(quantiles.shape)
- shift[0] -= 2*1e-6
- binsy = ys[quantile_index] + shift
- binsx = xs[quantile_index] + shift
-
- elif np.size(bins) == 1:
- binsy = bins
- binsx = bins
- elif (len(bins) == 2):
- binsy, binsx = bins
-## if np.size(bins[0]) == 1:
-## binsx = bins[0]
-## if np.size(bins[1]) == 1:
-## binsx = bins[1]
-
- fx, binsx = np.histogram(x, bins=binsx)
- fy, binsy = np.histogram(y, bins=binsy)
- fyx, binsy, binsx = np.histogram2d(y, x, bins=(binsy, binsx))
-
- pyx = fyx * 1. / nobs
- px = fx * 1. / nobs
- py = fy * 1. / nobs
-
-
- mi_obs = pyx * (np.log(pyx+1e-10) - np.log(py)[:,None] - np.log(px))
- mi = mi_obs.sum()
-
- if normed:
- mi_normed = np.sqrt(1. - np.exp(-2 * mi))
- return mi_normed, (pyx, py, px, binsy, binsx), mi_obs
- else:
- return mi
-
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
-
- funtype = ['linear', 'quadratic'][1]
- nobs = 200
- sig = 2#5.
- #x = np.linspace(-3, 3, nobs) + np.random.randn(nobs)
- x = np.sort(3*np.random.randn(nobs))
- exog = sm.add_constant(x, prepend=True)
- #y = 0 + np.log(1+x**2) + sig * np.random.randn(nobs)
- if funtype == 'quadratic':
- y = 0 + x**2 + sig * np.random.randn(nobs)
- if funtype == 'linear':
- y = 0 + x + sig * np.random.randn(nobs)
-
- print 'correlation'
- print np.corrcoef(y,x)[0, 1]
- print 'pearsonr', stats.pearsonr(y,x)
- print 'spearmanr', stats.spearmanr(y,x)
- print 'kendalltau', stats.kendalltau(y,x)
-
- pxy, binsx, binsy = np.histogram2d(x,y, bins=5)
- px, binsx_ = np.histogram(x, bins=binsx)
- py, binsy_ = np.histogram(y, bins=binsy)
- print 'mutualinfo', infotheo.mutualinfo(px*1./nobs, py*1./nobs,
- 1e-15+pxy*1./nobs, logbase=np.e)
-
- print 'mutualinfo_kde normed', mutualinfo_kde(y,x)
- print 'mutualinfo_kde ', mutualinfo_kde(y,x, normed=False)
- mi_normed, (pyx2, py2, px2, binsy2, binsx2), mi_obs = \
- mutualinfo_binned(y, x, 5, normed=True)
- print 'mutualinfo_binned normed', mi_normed
- print 'mutualinfo_binned ', mi_obs.sum()
-
- mi_normed, (pyx2, py2, px2, binsy2, binsx2), mi_obs = \
- mutualinfo_binned(y, x, 'auto', normed=True)
- print 'auto'
- print 'mutualinfo_binned normed', mi_normed
- print 'mutualinfo_binned ', mi_obs.sum()
-
- ys = np.sort(y)
- xs = np.sort(x)
- by = ys[((nobs-1)*np.array([0, 0.25, 0.4, 0.6, 0.75, 1])).astype(int)]
- bx = xs[((nobs-1)*np.array([0, 0.25, 0.4, 0.6, 0.75, 1])).astype(int)]
- mi_normed, (pyx2, py2, px2, binsy2, binsx2), mi_obs = \
- mutualinfo_binned(y, x, (by,bx), normed=True)
- print 'quantiles'
- print 'mutualinfo_binned normed', mi_normed
- print 'mutualinfo_binned ', mi_obs.sum()
-
- doplot = 1#False
- if doplot:
- import matplotlib.pyplot as plt
- plt.plot(x, y, 'o')
- olsres = sm.OLS(y, exog).fit()
- plt.plot(x, olsres.fittedvalues)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/mv_normal.py b/statsmodels/scikits/statsmodels/sandbox/distributions/mv_normal.py
deleted file mode 100644
index db6be6f..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/mv_normal.py
+++ /dev/null
@@ -1,1278 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Multivariate Normal and t distributions
-
-
-
-Created on Sat May 28 15:38:23 2011
-
-@author: Josef Perktold
-
-TODO:
-* renaming,
- - after adding t distribution, cov doesn't make sense for Sigma DONE
- - should mean also be renamed to mu, if there will be distributions
- with mean != mu
-* not sure about corner cases
- - behavior with (almost) singular sigma or transforms
- - df <= 2, is everything correct if variance is not finite or defined ?
-* check to return possibly univariate distribution for marginals or conditional
- distributions, does univariate special case work? seems ok for conditional
-* are all the extra transformation methods useful outside of testing ?
- - looks like I have some mixup in definitions of standardize, normalize
-* new methods marginal, conditional, ... just added, typos ?
- - largely tested for MVNormal, not yet for MVT DONE
-* conditional: reusing, vectorizing, should we reuse a projection matrix or
- allow for a vectorized, conditional_mean similar to OLS.predict
-* add additional things similar to LikelihoodModelResults? quadratic forms,
- F distribution, and others ???
-* add Delta method for nonlinear functions here, current function is hidden
- somewhere in miscmodels
-* raise ValueErrors for wrong input shapes, currently only partially checked
-
-* quantile method (ppf for equal bounds for multiple testing) is missing
- http://svitsrv25.epfl.ch/R-doc/library/mvtnorm/html/qmvt.html seems to use
- just a root finder for inversion of cdf
-
-* normalize has ambiguous definition, and mixing it up in different versions
- std from sigma or std from cov ?
- I would like to get what I need for mvt-cdf, or not
- univariate standard t distribution has scale=1 but std>1
- FIXED: add std_sigma, and normalize uses std_sigma
-
-* more work: bivariate distributions,
- inherit from multivariate but overwrite some methods for better efficiency,
- e.g. cdf and expect
-
-I kept the original MVNormal0 class as reference, can be deleted
-
-
-See Also
---------
-sandbox/examples/ex_mvelliptical.py
-
-Examples
---------
-
-Note, several parts of these examples are random and the numbers will not be
-(exactly) the same.
-
->>> import numpy as np
->>> import scikits.statsmodels.sandbox.distributions.mv_normal as mvd
->>>
->>> from numpy.testing import assert_array_almost_equal
->>>
->>> cov3 = np.array([[ 1. , 0.5 , 0.75],
-... [ 0.5 , 1.5 , 0.6 ],
-... [ 0.75, 0.6 , 2. ]])
-
->>> mu = np.array([-1, 0.0, 2.0])
-
-multivariate normal distribution
---------------------------------
-
->>> mvn3 = mvd.MVNormal(mu, cov3)
->>> mvn3.rvs(size=3)
-array([[-0.08559948, -1.0319881 , 1.76073533],
- [ 0.30079522, 0.55859618, 4.16538667],
- [-1.36540091, -1.50152847, 3.87571161]])
-
->>> mvn3.std
-array([ 1. , 1.22474487, 1.41421356])
->>> a = [0.0, 1.0, 1.5]
->>> mvn3.pdf(a)
-0.013867410439318712
->>> mvn3.cdf(a)
-0.31163181123730122
-
-Monte Carlo integration
-
->>> mvn3.expect_mc(lambda x: (x >> mvn3.expect_mc(lambda x: (x >> mvt3 = mvd.MVT(mu, cov3, 4)
->>> mvt3.rvs(size=4)
-array([[-0.94185437, 0.3933273 , 2.40005487],
- [ 0.07563648, 0.06655433, 7.90752238],
- [ 1.06596474, 0.32701158, 2.03482886],
- [ 3.80529746, 7.0192967 , 8.41899229]])
-
->>> mvt3.pdf(a)
-0.010402959362646937
->>> mvt3.cdf(a)
-0.30269483623249821
->>> mvt3.expect_mc(lambda x: (x >> mvt3.cov
-array([[ 2. , 1. , 1.5],
- [ 1. , 3. , 1.2],
- [ 1.5, 1.2, 4. ]])
->>> mvt3.corr
-array([[ 1. , 0.40824829, 0.53033009],
- [ 0.40824829, 1. , 0.34641016],
- [ 0.53033009, 0.34641016, 1. ]])
-
-get normalized distribution
-
->>> mvt3n = mvt3.normalized()
->>> mvt3n.sigma
-array([[ 1. , 0.40824829, 0.53033009],
- [ 0.40824829, 1. , 0.34641016],
- [ 0.53033009, 0.34641016, 1. ]])
->>> mvt3n.cov
-array([[ 2. , 0.81649658, 1.06066017],
- [ 0.81649658, 2. , 0.69282032],
- [ 1.06066017, 0.69282032, 2. ]])
-
-What's currently there?
-
->>> [i for i in dir(mvn3) if not i[0]=='_']
-['affine_transformed', 'cdf', 'cholsigmainv', 'conditional', 'corr', 'cov',
-'expect_mc', 'extra_args', 'logdetsigma', 'logpdf', 'marginal', 'mean',
-'normalize', 'normalized', 'normalized2', 'nvars', 'pdf', 'rvs', 'sigma',
-'sigmainv', 'standardize', 'standardized', 'std', 'std_sigma', 'whiten']
-
->>> [i for i in dir(mvt3) if not i[0]=='_']
-['affine_transformed', 'cdf', 'cholsigmainv', 'corr', 'cov', 'df', 'expect_mc',
-'extra_args', 'logdetsigma', 'logpdf', 'marginal', 'mean', 'normalize',
-'normalized', 'normalized2', 'nvars', 'pdf', 'rvs', 'sigma', 'sigmainv',
-'standardize', 'standardized', 'std', 'std_sigma', 'whiten']
-
-"""
-
-import numpy as np
-
-from scikits.statsmodels.sandbox.distributions.multivariate import (
- mvstdtprob, mvstdnormcdf, mvnormcdf)
-
-def expect_mc(dist, func=lambda x: 1, size=50000):
- '''calculate expected value of function by Monte Carlo integration
-
- Parameters
- ----------
- dist : distribution instance
- needs to have rvs defined as a method for drawing random numbers
- func : callable
- function for which expectation is calculated, this function needs to
- be vectorized, integration is over axis=0
- size : int
- number of random samples to use in the Monte Carlo integration,
-
-
- Notes
- -----
- this doesn't batch
-
- Returns
- -------
- expected value : ndarray
- return of function func integrated over axis=0 by MonteCarlo, this will
- have the same shape as the return of func without axis=0
-
- Examples
- --------
-
- integrate probability that both observations are negative
-
- >>> mvn = mve.MVNormal([0,0],2.)
- >>> mve.expect_mc(mvn, lambda x: (x>> c = stats.norm.isf(0.05, scale=np.sqrt(2.))
- >>> expect_mc(mvn, lambda x: (np.abs(x)>np.array([c, c])), size=100000)
- array([ 0.09969, 0.0986 ])
-
- or calling the method
-
- >>> mvn.expect_mc(lambda x: (np.abs(x)>np.array([c, c])), size=100000)
- array([ 0.09937, 0.10075])
-
-
- '''
- def fun(x):
- return func(x) # * dist.pdf(x)
- rvs = dist.rvs(size=size)
- return fun(rvs).mean(0)
-
-def expect_mc_bounds(dist, func=lambda x: 1, size=50000, lower=None, upper=None,
- conditional=False, overfact=1.2):
- '''calculate expected value of function by Monte Carlo integration
-
- Parameters
- ----------
- dist : distribution instance
- needs to have rvs defined as a method for drawing random numbers
- func : callable
- function for which expectation is calculated, this function needs to
- be vectorized, integration is over axis=0
- size : int
- minimum number of random samples to use in the Monte Carlo integration,
- the actual number used can be larger because of oversampling.
- lower : None or array_like
- lower integration bounds, if None, then it is set to -inf
- upper : None or array_like
- upper integration bounds, if None, then it is set to +inf
- conditional : bool
- If true, then the expectation is conditional on being in within
- [lower, upper] bounds, otherwise it is unconditional
- overfact : float
- oversampling factor, the actual number of random variables drawn in
- each attempt are overfact * remaining draws. Extra draws are also
- used in the integration.
-
-
- Notes
- -----
- this doesn't batch
-
- Returns
- -------
- expected value : ndarray
- return of function func integrated over axis=0 by MonteCarlo, this will
- have the same shape as the return of func without axis=0
-
- Examples
- --------
- >>> mvn = mve.MVNormal([0,0],2.)
- >>> mve.expect_mc_bounds(mvn, lambda x: np.ones(x.shape[0]),
- lower=[-10,-10],upper=[0,0])
- 0.24990416666666668
-
- get 3 marginal moments with one integration
-
- >>> mvn = mve.MVNormal([0,0],1.)
- >>> mve.expect_mc_bounds(mvn, lambda x: np.dstack([x, x**2, x**3, x**4]),
- lower=[-np.inf,-np.inf], upper=[np.inf,np.inf])
- array([[ 2.88629497e-03, 9.96706297e-01, -2.51005344e-03,
- 2.95240921e+00],
- [ -5.48020088e-03, 9.96004409e-01, -2.23803072e-02,
- 2.96289203e+00]])
- >>> from scipy import stats
- >>> [stats.norm.moment(i) for i in [1,2,3,4]]
- [0.0, 1.0, 0.0, 3.0]
-
-
- '''
- #call rvs once to find length of random vector
- rvsdim = dist.rvs(size=1).shape[-1]
- if lower is None:
- lower = -np.inf * np.ones(rvsdim)
- else:
- lower = np.asarray(lower)
- if upper is None:
- upper = np.inf * np.ones(rvsdim)
- else:
- upper = np.asarray(upper)
-
- def fun(x):
- return func(x) # * dist.pdf(x)
-
- rvsli = []
- used = 0 #remain = size #inplace changes size
- total = 0
- while True:
- remain = size - used #just a temp variable
- rvs = dist.rvs(size=int(remain * overfact))
- total += int(size * overfact)
-
- rvsok = rvs[((rvs >= lower) & (rvs <= upper)).all(-1)]
- #if rvsok.ndim == 1: #possible shape problems if only 1 random vector
- rvsok = np.atleast_2d(rvsok)
- used += rvsok.shape[0]
-
- rvsli.append(rvsok) #[:remain]) use extras instead
- print used
- if used >= size: break
- rvs = np.vstack(rvsli)
- print rvs.shape
- assert used == rvs.shape[0] #saftey check
- mean_conditional = fun(rvs).mean(0)
- if conditional:
- return mean_conditional
- else:
- return mean_conditional * (used * 1. / total)
-
-
-def bivariate_normal(x, mu, cov):
- """
- Bivariate Gaussian distribution for equal shape *X*, *Y*.
-
- See `bivariate normal
- `_
- at mathworld.
- """
- X, Y = np.transpose(x)
- mux, muy = mu
- sigmax, sigmaxy, tmp, sigmay = np.ravel(cov)
- sigmax, sigmay = np.sqrt(sigmax), np.sqrt(sigmay)
- Xmu = X-mux
- Ymu = Y-muy
-
- rho = sigmaxy/(sigmax*sigmay)
- z = Xmu**2/sigmax**2 + Ymu**2/sigmay**2 - 2*rho*Xmu*Ymu/(sigmax*sigmay)
- denom = 2*np.pi*sigmax*sigmay*np.sqrt(1-rho**2)
- return np.exp( -z/(2*(1-rho**2))) / denom
-
-
-
-class BivariateNormal(object):
-
-
- #TODO: make integration limits more flexible
- # or normalize before integration
-
- def __init__(self, mean, cov):
- self.mean = mu
- self.cov = cov
- self.sigmax, self.sigmaxy, tmp, self.sigmay = np.ravel(cov)
- self.nvars = 2
-
- def rvs(self, size=1):
- return np.random.multivariate_normal(self.mean, self.cov, size=size)
-
- def pdf(self, x):
- return bivariate_normal(x, self.mean, self.cov)
-
- def logpdf(self, x):
- #TODO: replace this
- return np.log(self.pdf(x))
-
- def cdf(self, x):
- return self.expect(upper=x)
-
- def expect(self, func=lambda x: 1, lower=(-10,-10), upper=(10,10)):
- def fun(x, y):
- x = np.column_stack((x,y))
- return func(x) * self.pdf(x)
- from scipy.integrate import dblquad
- return dblquad(fun, lower[0], upper[0], lambda y: lower[1],
- lambda y: upper[1])
-
- def kl(self, other):
- '''Kullback-Leibler divergence between this and another distribution
-
- int f(x) (log f(x) - log g(x)) dx
-
- where f is the pdf of self, and g is the pdf of other
-
- uses double integration with scipy.integrate.dblquad
-
- limits currently hardcoded
-
- '''
- fun = lambda x : self.logpdf(x) - other.logpdf(x)
- return self.expect(fun)
-
- def kl_mc(self, other, size=500000):
- fun = lambda x : self.logpdf(x) - other.logpdf(x)
- rvs = self.rvs(size=size)
- return fun(rvs).mean()
-
-class MVElliptical(object):
- '''Base Class for multivariate elliptical distributions, normal and t
-
- contains common initialization, and some common methods
- subclass needs to implement at least rvs and logpdf methods
-
- '''
- #getting common things between normal and t distribution
-
-
- def __init__(self, mean, sigma, *args, **kwds):
- '''initialize instance
-
- Parameters
- ----------
- mean : array_like
- parameter mu (might be renamed), for symmetric distributions this
- is the mean
- sigma : array_like, 2d
- dispersion matrix, covariance matrix in normal distribution, but
- only proportional to covariance matrix in t distribution
- args : list
- distribution specific arguments, e.g. df for t distribution
- kwds : dict
- currently not used
-
- '''
-
- self.extra_args = []
- self.mean = np.asarray(mean)
- self.sigma = sigma = np.asarray(sigma)
- sigma = np.squeeze(sigma)
- self.nvars = nvars = len(mean)
- #self.covchol = np.linalg.cholesky(sigma)
-
-
- #in the following sigma is original, self.sigma is full matrix
- if sigma.shape == ():
- #iid
- self.sigma = np.eye(nvars) * sigma
- self.sigmainv = np.eye(nvars) / sigma
- self.cholsigmainv = np.eye(nvars) / np.sqrt(sigma)
- elif (sigma.ndim == 1) and (len(sigma) == nvars):
- #independent heteroscedastic
- self.sigma = np.diag(sigma)
- self.sigmainv = np.diag(1. / sigma)
- self.cholsigmainv = np.diag( 1. / np.sqrt(sigma))
- elif sigma.shape == (nvars, nvars): #python tuple comparison
- #general
- self.sigmainv = np.linalg.pinv(sigma)
- self.cholsigmainv = np.linalg.cholesky(self.sigmainv).T
- else:
- raise ValueError('sigma has invalid shape')
-
- #store logdetsigma for logpdf
- self.logdetsigma = np.log(np.linalg.det(self.sigma))
-
- def rvs(self, size=1):
- '''random variable
-
- Parameters
- ----------
- size : int or tuple
- the number and shape of random variables to draw.
-
- Returns
- -------
- rvs : ndarray
- the returned random variables with shape given by size and the
- dimension of the multivariate random vector as additional last
- dimension
-
-
- '''
- raise NotImplementedError
-
- def logpdf(self, x):
- '''logarithm of probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- logpdf : float or array
- probability density value of each random vector
-
-
- this should be made to work with 2d x,
- with multivariate normal vector in each row and iid across rows
- doesn't work now because of dot in whiten
-
- '''
-
-
- raise NotImplementedError
-
- def cdf(self, x, **kwds):
- '''cumulative distribution function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
- kwds : dict
- contains options for the numerical calculation of the cdf
-
- Returns
- -------
- cdf : float or array
- probability density value of each random vector
-
- '''
- raise NotImplementedError
-
-
- def affine_transformed(self, shift, scale_matrix):
- '''affine transformation define in subclass because of distribution
- specific restrictions'''
- #implemented in subclass at least for now
- raise NotImplementedError
-
- def whiten(self, x):
- """
- whiten the data by linear transformation
-
- Parameters
- -----------
- x : array-like, 1d or 2d
- Data to be whitened, if 2d then each row contains an independent
- sample of the multivariate random vector
-
- Returns
- -------
- np.dot(x, self.cholsigmainv.T)
-
- Notes
- -----
- This only does rescaling, it doesn't subtract the mean, use standardize
- for this instead
-
- See Also
- --------
- standardize : subtract mean and rescale to standardized random variable.
-
- """
- x = np.asarray(x)
- return np.dot(x, self.cholsigmainv.T)
-
- def pdf(self, x):
- '''probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- pdf : float or array
- probability density value of each random vector
-
- '''
- return np.exp(self.logpdf(x))
-
- def standardize(self, x):
- '''standardize the random variable, i.e. subtract mean and whiten
-
- Parameters
- -----------
- x : array-like, 1d or 2d
- Data to be whitened, if 2d then each row contains an independent
- sample of the multivariate random vector
-
- Returns
- -------
- np.dot(x - self.mean, self.cholsigmainv.T)
-
- Notes
- -----
-
-
- See Also
- --------
- whiten : rescale random variable, standardize without subtracting mean.
-
-
- '''
- return self.whiten(x - self.mean)
-
- def standardized(self):
- '''return new standardized MVNormal instance
- '''
- return self.affine_transformed(-self.mean, self.cholsigmainv)
-
-
- def normalize(self, x):
- '''normalize the random variable, i.e. subtract mean and rescale
-
- The distribution will have zero mean and sigma equal to correlation
-
- Parameters
- -----------
- x : array-like, 1d or 2d
- Data to be whitened, if 2d then each row contains an independent
- sample of the multivariate random vector
-
- Returns
- -------
- (x - self.mean)/std_sigma
-
- Notes
- -----
-
-
- See Also
- --------
- whiten : rescale random variable, standardize without subtracting mean.
-
-
- '''
- std_ = np.atleast_2d(self.std_sigma)
- return (x - self.mean)/std_ #/std_.T
-
- def normalized(self, demeaned=True):
- '''return a normalized distribution where sigma=corr
-
- if demeaned is True, then mean will be set to zero
-
- '''
- if demeaned:
- mean_new = np.zeros_like(self.mean)
- else:
- mean_new = self.mean / self.std_sigma
- sigma_new = self.corr
- args = [getattr(self, ea) for ea in self.extra_args]
- return self.__class__(mean_new, sigma_new, *args)
-
- def normalized2(self, demeaned=True):
- '''return a normalized distribution where sigma=corr
-
-
-
- second implementation for testing affine transformation
- '''
- if demeaned:
- shift = -self.mean
- else:
- shift = self.mean * (1. / self.std_sigma - 1.)
- return self.affine_transformed(shift, np.diag(1. / self.std_sigma))
- #the following "standardizes" cov instead
- #return self.affine_transformed(shift, self.cholsigmainv)
-
-
-
- @property
- def std(self):
- '''standard deviation, square root of diagonal elements of cov
- '''
- return np.sqrt(np.diag(self.cov))
-
- @property
- def std_sigma(self):
- '''standard deviation, square root of diagonal elements of sigma
- '''
- return np.sqrt(np.diag(self.sigma))
-
-
- @property
- def corr(self):
- '''correlation matrix'''
- return self.cov / np.outer(self.std, self.std)
-
- expect_mc = expect_mc
-
- def marginal(self, indices):
- '''return marginal distribution for variables given by indices
-
- this should be correct for normal and t distribution
-
- Parameters
- ----------
- indices : array_like, int
- list of indices of variables in the marginal distribution
-
- Returns
- -------
- mvdist : instance
- new instance of the same multivariate distribution class that
- contains the marginal distribution of the variables given in
- indices
-
- '''
- indices = np.asarray(indices)
- mean_new = self.mean[indices]
- sigma_new = self.sigma[indices[:,None], indices]
- args = [getattr(self, ea) for ea in self.extra_args]
- return self.__class__(mean_new, sigma_new, *args)
-
-
-#parts taken from linear_model, but heavy adjustments
-class MVNormal0(object):
- '''Class for Multivariate Normal Distribution
-
- original full version, kept for testing, new version inherits from
- MVElliptical
-
- uses Cholesky decomposition of covariance matrix for the transformation
- of the data
-
- '''
-
-
- def __init__(self, mean, cov):
- self.mean = mean
- self.cov = cov = np.asarray(cov)
- cov = np.squeeze(cov)
- self.nvars = nvars = len(mean)
-
-
- #in the following cov is original, self.cov is full matrix
- if cov.shape == ():
- #iid
- self.cov = np.eye(nvars) * cov
- self.covinv = np.eye(nvars) / cov
- self.cholcovinv = np.eye(nvars) / np.sqrt(cov)
- elif (cov.ndim == 1) and (len(cov) == nvars):
- #independent heteroscedastic
- self.cov = np.diag(cov)
- self.covinv = np.diag(1. / cov)
- self.cholcovinv = np.diag( 1. / np.sqrt(cov))
- elif cov.shape == (nvars, nvars): #python tuple comparison
- #general
- self.covinv = np.linalg.pinv(cov)
- self.cholcovinv = np.linalg.cholesky(self.covinv).T
- else:
- raise ValueError('cov has invalid shape')
-
- #store logdetcov for logpdf
- self.logdetcov = np.log(np.linalg.det(self.cov))
-
- def whiten(self, x):
- """
- whiten the data by linear transformation
-
- Parameters
- -----------
- X : array-like, 1d or 2d
- Data to be whitened, if 2d then each row contains an independent
- sample of the multivariate random vector
-
- Returns
- -------
- np.dot(x, self.cholcovinv.T)
-
- Notes
- -----
- This only does rescaling, it doesn't subtract the mean, use standardize
- for this instead
-
- See Also
- --------
- standardize : subtract mean and rescale to standardized random variable.
-
- """
- x = np.asarray(x)
- if np.any(self.cov):
- #return np.dot(self.cholcovinv, x)
- return np.dot(x, self.cholcovinv.T)
- else:
- return x
-
- def rvs(self, size=1):
- '''random variable
-
- Parameters
- ----------
- size : int or tuple
- the number and shape of random variables to draw.
-
- Returns
- -------
- rvs : ndarray
- the returned random variables with shape given by size and the
- dimension of the multivariate random vector as additional last
- dimension
-
- Notes
- -----
- uses numpy.random.multivariate_normal directly
-
- '''
- return np.random.multivariate_normal(self.mean, self.cov, size=size)
-
- def pdf(self, x):
- '''probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- pdf : float or array
- probability density value of each random vector
-
- '''
-
- return np.exp(self.logpdf(x))
-
- def logpdf(self, x):
- '''logarithm of probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- logpdf : float or array
- probability density value of each random vector
-
-
- this should be made to work with 2d x,
- with multivariate normal vector in each row and iid across rows
- doesn't work now because of dot in whiten
-
- '''
- x = np.asarray(x)
- x_whitened = self.whiten(x - self.mean)
- SSR = np.sum(x_whitened**2, -1)
- llf = -SSR
- llf -= self.nvars * np.log(2. * np.pi)
- llf -= self.logdetcov
- llf *= 0.5
- return llf
-
- expect_mc = expect_mc
-
-
-class MVNormal(MVElliptical):
- '''Class for Multivariate Normal Distribution
-
- uses Cholesky decomposition of covariance matrix for the transformation
- of the data
-
- '''
- __name__ == 'Multivariate Normal Distribution'
-
-
- def rvs(self, size=1):
- '''random variable
-
- Parameters
- ----------
- size : int or tuple
- the number and shape of random variables to draw.
-
- Returns
- -------
- rvs : ndarray
- the returned random variables with shape given by size and the
- dimension of the multivariate random vector as additional last
- dimension
-
- Notes
- -----
- uses numpy.random.multivariate_normal directly
-
- '''
- return np.random.multivariate_normal(self.mean, self.sigma, size=size)
-
- def logpdf(self, x):
- '''logarithm of probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- logpdf : float or array
- probability density value of each random vector
-
-
- this should be made to work with 2d x,
- with multivariate normal vector in each row and iid across rows
- doesn't work now because of dot in whiten
-
- '''
- x = np.asarray(x)
- x_whitened = self.whiten(x - self.mean)
- SSR = np.sum(x_whitened**2, -1)
- llf = -SSR
- llf -= self.nvars * np.log(2. * np.pi)
- llf -= self.logdetsigma
- llf *= 0.5
- return llf
-
- def cdf(self, x, **kwds):
- '''cumulative distribution function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
- kwds : dict
- contains options for the numerical calculation of the cdf
-
- Returns
- -------
- cdf : float or array
- probability density value of each random vector
-
- '''
- #lower = -np.inf * np.ones_like(x)
- #return mvstdnormcdf(lower, self.standardize(x), self.corr, **kwds)
- return mvnormcdf(x, self.mean, self.cov, **kwds)
-
- @property
- def cov(self):
- '''covariance matrix'''
- return self.sigma
-
- def affine_transformed(self, shift, scale_matrix):
- '''return distribution of an affine transform
-
- for full rank scale_matrix only
-
- Parameters
- ----------
- shift : array_like
- shift of mean
- scale_matrix : array_like
- linear transformation matrix
-
- Returns
- -------
- mvt : instance of MVT
- instance of multivariate t distribution given by affine
- transformation
-
-
- Notes
- -----
- the affine transformation is defined by
- y = a + B x
-
- where a is shift,
- B is a scale matrix for the linear transformation
-
- Notes
- -----
- This should also work to select marginal distributions, but not
- tested for this case yet.
-
- currently only tested because it's called by standardized
-
- '''
- B = scale_matrix #tmp variable
- mean_new = np.dot(B, self.mean) + shift
- sigma_new = np.dot(np.dot(B, self.sigma), B.T)
- return MVNormal(mean_new, sigma_new)
-
- def conditional(self, indices, values):
- '''return conditional distribution
-
- indices are the variables to keep, the complement is the conditioning
- set
- values are the values of the conditioning variables
-
- \bar{\mu} = \mu_1 + \Sigma_{12} \Sigma_{22}^{-1} \left( a - \mu_2 \right)
-
- and covariance matrix
-
- \overline{\Sigma} = \Sigma_{11} - \Sigma_{12} \Sigma_{22}^{-1} \Sigma_{21}.T
-
- Parameters
- ----------
- indices : array_like, int
- list of indices of variables in the marginal distribution
- given : array_like
- values of the conditioning variables
-
- Returns
- -------
- mvn : instance of MVNormal
- new instance of the MVNormal class that contains the conditional
- distribution of the variables given in indices for given
- values of the excluded variables.
-
-
- '''
- #indices need to be nd arrays for broadcasting
- keep = np.asarray(indices)
- given = np.asarray([i for i in range(self.nvars) if not i in keep])
- sigmakk = self.sigma[keep[:, None], keep]
- sigmagg = self.sigma[given[:, None], given]
- sigmakg = self.sigma[keep[:, None], given]
- sigmagk = self.sigma[given[:, None], keep]
-
-
- sigma_new = sigmakk - np.dot(sigmakg, np.linalg.solve(sigmagg, sigmagk))
- mean_new = self.mean[keep] + \
- np.dot(sigmakg, np.linalg.solve(sigmagg, values-self.mean[given]))
-
-# #or
-# sig = np.linalg.solve(sigmagg, sigmagk).T
-# mean_new = self.mean[keep] + np.dot(sigmakg, values-self.mean[given])
-# sigma_new = sigmakk - np.dot(sigmakg, sig)
- return MVNormal(mean_new, sigma_new)
-
-
-
-from scipy import special
-#redefine some shortcuts
-np_log = np.log
-np_pi = np.pi
-sps_gamln = special.gammaln
-
-class MVT(MVElliptical):
-
- __name__ == 'Multivariate Student T Distribution'
-
- def __init__(self, mean, sigma, df):
- '''initialize instance
-
- Parameters
- ----------
- mean : array_like
- parameter mu (might be renamed), for symmetric distributions this
- is the mean
- sigma : array_like, 2d
- dispersion matrix, covariance matrix in normal distribution, but
- only proportional to covariance matrix in t distribution
- args : list
- distribution specific arguments, e.g. df for t distribution
- kwds : dict
- currently not used
-
- '''
- super(MVT, self).__init__(mean, sigma)
- self.extra_args = ['df'] #overwrites extra_args of super
- self.df = df
-
- def rvs(self, size=1):
- '''random variables with Student T distribution
-
- Parameters
- ----------
- size : int or tuple
- the number and shape of random variables to draw.
-
- Returns
- -------
- rvs : ndarray
- the returned random variables with shape given by size and the
- dimension of the multivariate random vector as additional last
- dimension
- - TODO: Not sure if this works for size tuples with len>1.
-
- Notes
- -----
- generated as a chi-square mixture of multivariate normal random
- variables.
- does this require df>2 ?
-
-
- '''
- from multivariate import multivariate_t_rvs
- return multivariate_t_rvs(self.mean, self.sigma, df=self.df, n=size)
-
-
- def logpdf(self, x):
- '''logarithm of probability density function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
-
- Returns
- -------
- logpdf : float or array
- probability density value of each random vector
-
- '''
-
- x = np.asarray(x)
-
- df = self.df
- nvars = self.nvars
-
- x_whitened = self.whiten(x - self.mean) #should be float
-
- llf = - nvars * np_log(df * np_pi)
- llf -= self.logdetsigma
- llf -= (df + nvars) * np_log(1 + np.sum(x_whitened**2,-1) / df)
- llf *= 0.5
- llf += sps_gamln((df + nvars) / 2.) - sps_gamln(df / 2.)
-
- return llf
-
- def cdf(self, x, **kwds):
- '''cumulative distribution function
-
- Parameters
- ----------
- x : array_like
- can be 1d or 2d, if 2d, then each row is taken as independent
- multivariate random vector
- kwds : dict
- contains options for the numerical calculation of the cdf
-
- Returns
- -------
- cdf : float or array
- probability density value of each random vector
-
- '''
- lower = -np.inf * np.ones_like(x)
- #std_sigma = np.sqrt(np.diag(self.sigma))
- upper = (x - self.mean)/self.std_sigma
- return mvstdtprob(lower, upper, self.corr, self.df, **kwds)
- #mvstdtcdf doesn't exist yet
- #return mvstdtcdf(lower, x, self.corr, df, **kwds)
-
- @property
- def cov(self):
- '''covariance matrix
-
- The covariance matrix for the t distribution does not exist for df<=2,
- and is equal to sigma * df/(df-2) for df>2
-
- '''
- if self.df <= 2:
- return np.nan * np.ones_like(self.sigma)
- else:
- return self.df / (self.df - 2.) * self.sigma
-
- def affine_transformed(self, shift, scale_matrix):
- '''return distribution of a full rank affine transform
-
- for full rank scale_matrix only
-
- Parameters
- ----------
- shift : array_like
- shift of mean
- scale_matrix : array_like
- linear transformation matrix
-
- Returns
- -------
- mvt : instance of MVT
- instance of multivariate t distribution given by affine
- transformation
-
-
- Notes
- -----
-
- This checks for eigvals<=0, so there are possible problems for cases
- with positive eigenvalues close to zero.
-
- see: http://www.statlect.com/mcdstu1.htm
-
- I'm not sure about general case, non-full rank transformation are not
- multivariate t distributed.
-
- y = a + B x
-
- where a is shift,
- B is full rank scale matrix with same dimension as sigma
-
- '''
- #full rank method could also be in elliptical and called with super
- #after the rank check
- B = scale_matrix #tmp variable as shorthand
- if not B.shape == (self.nvars, self.nvars):
- if (np.linalg.eigvals(B) <= 0).any():
- raise ValueError('affine transform has to be full rank')
-
- mean_new = np.dot(B, self.mean) + shift
- sigma_new = np.dot(np.dot(B, self.sigma), B.T)
- return MVT(mean_new, sigma_new, self.df)
-
-
-def quad2d(func=lambda x: 1, lower=(-10,-10), upper=(10,10)):
- def fun(x, y):
- x = np.column_stack((x,y))
- return func(x)
- from scipy.integrate import dblquad
- return dblquad(fun, lower[0], upper[0], lambda y: lower[1],
- lambda y: upper[1])
-
-if __name__ == '__main__':
-
- from numpy.testing import assert_almost_equal, assert_array_almost_equal
-
- examples = ['mvn']
-
- mu = (0,0)
- covx = np.array([[1.0, 0.5], [0.5, 1.0]])
- mu3 = [-1, 0., 2.]
- cov3 = np.array([[ 1. , 0.5 , 0.75],
- [ 0.5 , 1.5 , 0.6 ],
- [ 0.75, 0.6 , 2. ]])
-
-
- if 'mvn' in examples:
- bvn = BivariateNormal(mu, covx)
- rvs = bvn.rvs(size=1000)
- print rvs.mean(0)
- print np.cov(rvs, rowvar=0)
- print bvn.expect()
- print bvn.cdf([0,0])
- bvn1 = BivariateNormal(mu, np.eye(2))
- bvn2 = BivariateNormal(mu, 4*np.eye(2))
- fun = lambda(x) : np.log(bvn1.pdf(x)) - np.log(bvn.pdf(x))
- print bvn1.expect(fun)
- print bvn1.kl(bvn2), bvn1.kl_mc(bvn2)
- print bvn2.kl(bvn1), bvn2.kl_mc(bvn1)
- print bvn1.kl(bvn), bvn1.kl_mc(bvn)
- mvn = MVNormal(mu, covx)
- mvn.pdf([0,0])
- mvn.pdf(np.zeros((2,2)))
- #np.dot(mvn.cholcovinv.T, mvn.cholcovinv) - mvn.covinv
-
- cov3 = np.array([[ 1. , 0.5 , 0.75],
- [ 0.5 , 1.5 , 0.6 ],
- [ 0.75, 0.6 , 2. ]])
- mu3 = [-1, 0., 2.]
- mvn3 = MVNormal(mu3, cov3)
- mvn3.pdf((0., 2., 3.))
- mvn3.logpdf((0., 2., 3.))
- #comparisons with R mvtnorm::dmvnorm
- #decimal=14
-# mvn3.logpdf(cov3) - [-7.667977543898155, -6.917977543898155, -5.167977543898155]
-# #decimal 18
-# mvn3.pdf(cov3) - [0.000467562492721686, 0.000989829804859273, 0.005696077243833402]
-# #cheating new mean, same cov
-# mvn3.mean = np.array([0,0,0])
-# #decimal= 16
-# mvn3.pdf(cov3) - [0.02914269740502042, 0.02269635555984291, 0.01767593948287269]
-
- #as asserts
- r_val = [-7.667977543898155, -6.917977543898155, -5.167977543898155]
- assert_array_almost_equal( mvn3.logpdf(cov3), r_val, decimal = 14)
- #decimal 18
- r_val = [0.000467562492721686, 0.000989829804859273, 0.005696077243833402]
- assert_array_almost_equal( mvn3.pdf(cov3), r_val, decimal = 17)
- #cheating new mean, same cov, too dangerous, got wrong instance in tests
- #mvn3.mean = np.array([0,0,0])
- mvn3c = MVNormal(np.array([0,0,0]), cov3)
- r_val = [0.02914269740502042, 0.02269635555984291, 0.01767593948287269]
- assert_array_almost_equal( mvn3c.pdf(cov3), r_val, decimal = 16)
-
- mvn3b = MVNormal((0,0,0), 1)
- fun = lambda(x) : np.log(mvn3.pdf(x)) - np.log(mvn3b.pdf(x))
- print mvn3.expect_mc(fun)
- print mvn3.expect_mc(fun, size=200000)
-
-
- mvt = MVT((0,0), 1, 5)
- assert_almost_equal(mvt.logpdf(np.array([0.,0.])), -1.837877066409345,
- decimal=15)
- assert_almost_equal(mvt.pdf(np.array([0.,0.])), 0.1591549430918953,
- decimal=15)
-
- mvt.logpdf(np.array([1.,1.]))-(-3.01552989458359)
-
- mvt1 = MVT((0,0), 1, 1)
- mvt1.logpdf(np.array([1.,1.]))-(-3.48579549941151) #decimal=16
-
- rvs = mvt.rvs(100000)
- assert_almost_equal(np.cov(rvs, rowvar=0), mvt.cov, decimal=1)
-
- mvt31 = MVT(mu3, cov3, 1)
- assert_almost_equal(mvt31.pdf(cov3),
- [0.0007276818698165781, 0.0009980625182293658, 0.0027661422056214652],
- decimal=18)
-
- mvt = MVT(mu3, cov3, 3)
- assert_almost_equal(mvt.pdf(cov3),
- [0.000863777424247410, 0.001277510788307594, 0.004156314279452241],
- decimal=17)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/otherdist.py b/statsmodels/scikits/statsmodels/sandbox/distributions/otherdist.py
deleted file mode 100644
index e3023d4..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/otherdist.py
+++ /dev/null
@@ -1,313 +0,0 @@
-'''Parametric Mixture Distributions
-
-Created on Sat Jun 04 2011
-
-Author: Josef Perktold
-
-
-Notes:
-
-Compound Poisson has mass point at zero
-http://en.wikipedia.org/wiki/Compound_Poisson_distribution
-and would need special treatment
-
-need a distribution that has discrete mass points and contiuous range, e.g.
-compound Poisson, Tweedie (for some parameter range),
-pdf of Tobit model (?) - truncation with clipping
-
-Question: Metaclasses and class factories for generating new distributions from
-existing distributions by transformation, mixing, compounding
-
-'''
-
-
-
-import numpy as np
-from scipy import stats
-
-class ParametricMixtureD(object):
- '''mixtures with a discrete distribution
-
- The mixing distribution is a discrete distribution like scipy.stats.poisson.
- All distribution in the mixture of the same type and parameterized
- by the outcome of the mixing distribution and have to be a continuous
- distribution (or have a pdf method).
- As an example, a mixture of normal distributed random variables with
- Poisson as the mixing distribution.
-
-
- assumes vectorized shape, loc and scale as in scipy.stats.distributions
-
- assume mixing_dist is frozen
-
- initialization looks fragile for all possible cases of lower and upper
- bounds of the distributions.
-
- '''
- def __init__(self, mixing_dist, base_dist, bd_args_func, bd_kwds_func,
- cutoff=1e-3):
- '''create a mixture distribution
-
- Parameters
- ----------
- mixing_dist : discrete frozen distribution
- mixing distribution
- base_dist : continuous distribution
- parameterized distributions in the mixture
- bd_args_func : callable
- function that builds the tuple of args for the base_dist.
- The function obtains as argument the values in the support of
- the mixing distribution and should return an empty tuple or
- a tuple of arrays.
- bd_kwds_func : callable
- function that builds the dictionary of kwds for the base_dist.
- The function obtains as argument the values in the support of
- the mixing distribution and should return an empty dictionary or
- a dictionary with arrays as values.
- cutoff : float
- If the mixing distribution has infinite support, then the
- distribution is truncated with approximately (subject to integer
- conversion) the cutoff probability in the missing tail. Random
- draws that are outside the truncated range are clipped, that is
- assigned to the highest or lowest value in the truncated support.
-
- '''
- self.mixing_dist = mixing_dist
- self.base_dist = base_dist
- #self.bd_args = bd_args
- if not np.isneginf(mixing_dist.dist.a):
- lower = mixing_dist.dist.a
- else:
- lower = mixing_dist.ppf(1e-4)
- if not np.isposinf(mixing_dist.dist.b):
- upper = mixing_dist.dist.b
- else:
- upper = mixing_dist.isf(1e-4)
- self.ma = lower
- self.mb = upper
- mixing_support = np.arange(lower, upper+1)
- self.mixing_probs = mixing_dist.pmf(mixing_support)
-
- self.bd_args = bd_args_func(mixing_support)
- self.bd_kwds = bd_kwds_func(mixing_support)
-
- def rvs(self, size=1):
- mrvs = self.mixing_dist.rvs(size)
- #TODO: check strange cases ? this assumes continous integers
- mrvs_idx = (np.clip(mrvs, self.ma, self.mb) - self.ma).astype(int)
-
- bd_args = tuple(md[mrvs_idx] for md in self.bd_args)
- bd_kwds = dict((k, self.bd_kwds[k][mrvs_idx]) for k in self.bd_kwds)
- kwds = {'size':size}
- kwds.update(bd_kwds)
- rvs = self.base_dist.rvs(*self.bd_args, **kwds)
- return rvs, mrvs_idx
-
-
-
-
-
- def pdf(self, x):
- x = np.asarray(x)
- if np.size(x) > 1:
- x = x[...,None] #[None, ...]
- bd_probs = self.base_dist.pdf(x, *self.bd_args, **self.bd_kwds)
- prob = (bd_probs * self.mixing_probs).sum(-1)
- return prob, bd_probs
-
- def cdf(self, x):
- x = np.asarray(x)
- if np.size(x) > 1:
- x = x[...,None] #[None, ...]
- bd_probs = self.base_dist.cdf(x, *self.bd_args, **self.bd_kwds)
- prob = (bd_probs * self.mixing_probs).sum(-1)
- return prob, bd_probs
-
-
-#try:
-
-class ClippedContinuous(object):
- '''clipped continuous distribution with a masspoint at clip_lower
-
-
- Notes
- -----
- first version, to try out possible designs
- insufficient checks for valid arguments and not clear
- whether it works for distributions that have compact support
-
- clip_lower is fixed and independent of the distribution parameters.
- The clip_lower point in the pdf has to be interpreted as a mass point,
- i.e. different treatment in integration and expect function, which means
- none of the generic methods for this can be used.
-
- maybe this will be better designed as a mixture between a degenerate or
- discrete and a continuous distribution
-
- Warning: uses equality to check for clip_lower values in function
- arguments, since these are floating points, the comparison might fail
- if clip_lower values are not exactly equal.
- We could add a check whether the values are in a small neighborhood, but
- it would be expensive (need to search and check all values).
-
- '''
-
- def __init__(self, base_dist, clip_lower):
- self.base_dist = base_dist
- self.clip_lower = clip_lower
-
- def _get_clip_lower(self, kwds):
- '''helper method to get clip_lower from kwds or attribute
-
- '''
- if not 'clip_lower' in kwds:
- clip_lower = self.clip_lower
- else:
- clip_lower = kwds.pop('clip_lower')
- return clip_lower, kwds
-
- def rvs(self, *args, **kwds):
- clip_lower, kwds = self._get_clip_lower(kwds)
- rvs_ = self.base_dist.rvs(*args, **kwds)
- #same as numpy.clip ?
- rvs_[rvs_ < clip_lower] = clip_lower
- return rvs_
-
-
-
- def pdf(self, x, *args, **kwds):
- x = np.atleast_1d(x)
- if not 'clip_lower' in kwds:
- clip_lower = self.clip_lower
- else:
- #allow clip_lower to be a possible parameter
- clip_lower = kwds.pop('clip_lower')
- pdf_raw = np.atleast_1d(self.base_dist.pdf(x, *args, **kwds))
- clip_mask = (x == self.clip_lower)
- if np.any(clip_mask):
- clip_prob = self.base_dist.cdf(clip_lower, *args, **kwds)
- pdf_raw[clip_mask] = clip_prob
-
- #the following will be handled by sub-classing rv_continuous
- pdf_raw[x < clip_lower] = 0
-
- return pdf_raw
-
- def cdf(self, x, *args, **kwds):
- if not 'clip_lower' in kwds:
- clip_lower = self.clip_lower
- else:
- #allow clip_lower to be a possible parameter
- clip_lower = kwds.pop('clip_lower')
- cdf_raw = self.base_dist.cdf(x, *args, **kwds)
-
- #not needed if equality test is used
-## clip_mask = (x == self.clip_lower)
-## if np.any(clip_mask):
-## clip_prob = self.base_dist.cdf(clip_lower, *args, **kwds)
-## pdf_raw[clip_mask] = clip_prob
-
- #the following will be handled by sub-classing rv_continuous
- #if self.a is defined
- cdf_raw[x < clip_lower] = 0
-
- return cdf_raw
-
- def sf(self, x, *args, **kwds):
- if not 'clip_lower' in kwds:
- clip_lower = self.clip_lower
- else:
- #allow clip_lower to be a possible parameter
- clip_lower = kwds.pop('clip_lower')
-
- sf_raw = self.base_dist.sf(x, *args, **kwds)
- sf_raw[x <= clip_lower] = 1
-
- return sf_raw
-
-
- def ppf(self, x, *args, **kwds):
- raise NotImplementedError
-
- def plot(self, x, *args, **kwds):
-
- clip_lower, kwds = self._get_clip_lower(kwds)
- mass = self.pdf(clip_lower, *args, **kwds)
- xr = np.concatenate(([clip_lower+1e-6], x[x>clip_lower]))
- import matplotlib.pyplot as plt
- #x = np.linspace(-4, 4, 21)
- #plt.figure()
- plt.xlim(clip_lower-0.1, x.max())
- #remove duplicate calculation
- xpdf = self.pdf(x, *args, **kwds)
- plt.ylim(0, max(mass, xpdf.max())*1.1)
- plt.plot(xr, self.pdf(xr, *args, **kwds))
- #plt.vline(clip_lower, self.pdf(clip_lower, *args, **kwds))
- plt.stem([clip_lower], [mass],
- linefmt='b-', markerfmt='bo', basefmt='r-')
- return
-
-
-
-
-if __name__ == '__main__':
-
- doplots = 1
-
- #*********** Poisson-Normal Mixture
- mdist = stats.poisson(2.)
- bdist = stats.norm
- bd_args_fn = lambda x: ()
- #bd_kwds_fn = lambda x: {'loc': np.atleast_2d(10./(1+x))}
- bd_kwds_fn = lambda x: {'loc': x, 'scale': 0.1*np.ones_like(x)} #10./(1+x)}
-
-
- pd = ParametricMixtureD(mdist, bdist, bd_args_fn, bd_kwds_fn)
- print pd.pdf(1)
- p, bp = pd.pdf(np.linspace(0,20,21))
- pc, bpc = pd.cdf(np.linspace(0,20,21))
- print pd.rvs()
- rvs, m = pd.rvs(size=1000)
-
-
- if doplots:
- import matplotlib.pyplot as plt
- plt.hist(rvs, bins = 100)
- plt.title('poisson mixture of normal distributions')
-
- #********** clipped normal distribution (Tobit)
-
- bdist = stats.norm
- clip_lower_ = 0. #-0.5
- cnorm = ClippedContinuous(bdist, clip_lower_)
- x = np.linspace(1e-8, 4, 11)
- print cnorm.pdf(x)
- print cnorm.cdf(x)
-
- if doplots:
- #plt.figure()
- #cnorm.plot(x)
- plt.figure()
- cnorm.plot(x = np.linspace(-1, 4, 51), loc=0.5, scale=np.sqrt(2))
- plt.title('clipped normal distribution')
-
- fig = plt.figure()
- for i, loc in enumerate([0., 0.5, 1.,2.]):
- fig.add_subplot(2,2,i+1)
- cnorm.plot(x = np.linspace(-1, 4, 51), loc=loc, scale=np.sqrt(2))
- plt.title('clipped normal, loc = %3.2f' % loc)
-
-
- loc = 1.5
- rvs = cnorm.rvs(loc=loc, size=2000)
- plt.figure()
- plt.hist(rvs, bins=50)
- plt.title('clipped normal rvs, loc = %3.2f' % loc)
-
-
- #plt.show()
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/quantize.py b/statsmodels/scikits/statsmodels/sandbox/distributions/quantize.py
deleted file mode 100644
index ae91868..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/quantize.py
+++ /dev/null
@@ -1,145 +0,0 @@
-'''Quantizing a continuous distribution in 2d
-
-Author: josef-pktd
-'''
-
-
-import numpy as np
-
-def prob_bv_rectangle(lower, upper, cdf):
- '''helper function for probability of a rectangle in a bivariate distribution
-
- Parameters
- ----------
- lower : array_like
- tuple of lower integration bounds
- upper : array_like
- tuple of upper integration bounds
- cdf : callable
- cdf(x,y), cumulative distribution function of bivariate distribution
-
-
- how does this generalize to more than 2 variates ?
- '''
- probuu = cdf(*upper)
- probul = cdf(upper[0], lower[1])
- problu = cdf(lower[0], upper[1])
- probll = cdf(*lower)
- return probuu - probul - problu + probll
-
-def prob_mv_grid(bins, cdf, axis=-1):
- '''helper function for probability of a rectangle grid in a multivariate distribution
-
- how does this generalize to more than 2 variates ?
-
- bins : tuple
- tuple of bin edges, currently it is assumed that they broadcast
- correctly
-
- '''
- if not isinstance(bins, np.ndarray):
- bins = map(np.asarray, bins)
- n_dim = len(bins)
- bins_ = []
- #broadcast if binedges are 1d
- if all(map(np.ndim, bins) == np.ones(n_dim)):
- for d in xrange(n_dim):
- sl = [None]*n_dim
- sl[d] = slice(None)
- bins_.append(bins[d][sl])
- else: #assume it is already correctly broadcasted
- n_dim = bins.shape[0]
- bins_ = bins
-
- print len(bins)
- cdf_values = cdf(bins_)
- probs = cdf_values.copy()
- for d in xrange(n_dim):
- probs = np.diff(probs, axis=d)
-
- return probs
-
-
-def prob_quantize_cdf(binsx, binsy, cdf):
- '''quantize a continuous distribution given by a cdf
-
- Parameters
- ----------
- binsx : array_like, 1d
- binedges
-
- '''
- binsx = np.asarray(binsx)
- binsy = np.asarray(binsy)
- nx = len(binsx) - 1
- ny = len(binsy) - 1
- probs = np.nan * np.ones((nx, ny)) #np.empty(nx,ny)
- cdf_values = cdf(binsx[:,None], binsy)
- cdf_func = lambda x, y: cdf_values[x,y]
- for xind in range(1, nx+1):
- for yind in range(1, ny+1):
- upper = (xind, yind)
- lower = (xind-1, yind-1)
- #print upper,lower,
- probs[xind-1,yind-1] = prob_bv_rectangle(lower, upper, cdf_func)
-
- assert not np.isnan(probs).any()
- return probs
-
-def prob_quantize_cdf_old(binsx, binsy, cdf):
- '''quantize a continuous distribution given by a cdf
-
- old version without precomputing cdf values
-
- Parameters
- ----------
- binsx : array_like, 1d
- binedges
-
- '''
- binsx = np.asarray(binsx)
- binsy = np.asarray(binsy)
- nx = len(binsx) - 1
- ny = len(binsy) - 1
- probs = np.nan * np.ones((nx, ny)) #np.empty(nx,ny)
- for xind in range(1, nx+1):
- for yind in range(1, ny+1):
- upper = (binsx[xind], binsy[yind])
- lower = (binsx[xind-1], binsy[yind-1])
- #print upper,lower,
- probs[xind-1,yind-1] = prob_bv_rectangle(lower, upper, cdf)
-
- assert not np.isnan(probs).any()
- return probs
-
-
-
-
-if __name__ == '__main__':
- from numpy.testing import assert_almost_equal
- unif_2d = lambda x,y: x*y
- assert_almost_equal(prob_bv_rectangle([0,0], [1,0.5], unif_2d), 0.5, 14)
- assert_almost_equal(prob_bv_rectangle([0,0], [0.5,0.5], unif_2d), 0.25, 14)
-
- arr1b = np.array([[ 0.05, 0.05, 0.05, 0.05],
- [ 0.05, 0.05, 0.05, 0.05],
- [ 0.05, 0.05, 0.05, 0.05],
- [ 0.05, 0.05, 0.05, 0.05],
- [ 0.05, 0.05, 0.05, 0.05]])
-
- arr1a = prob_quantize_cdf(np.linspace(0,1,6), np.linspace(0,1,5), unif_2d)
- assert_almost_equal(arr1a, arr1b, 14)
-
- arr2b = np.array([[ 0.25],
- [ 0.25],
- [ 0.25],
- [ 0.25]])
- arr2a = prob_quantize_cdf(np.linspace(0,1,5), np.linspace(0,1,2), unif_2d)
- assert_almost_equal(arr2a, arr2b, 14)
-
- arr3b = np.array([[ 0.25, 0.25, 0.25, 0.25]])
- arr3a = prob_quantize_cdf(np.linspace(0,1,2), np.linspace(0,1,5), unif_2d)
- assert_almost_equal(arr3a, arr3b, 14)
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/sppatch.py b/statsmodels/scikits/statsmodels/sandbox/distributions/sppatch.py
deleted file mode 100644
index 1898278..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/sppatch.py
+++ /dev/null
@@ -1,721 +0,0 @@
-'''patching scipy to fit distributions and expect method
-
-This adds new methods to estimate continuous distribution parameters with some
-fixed/frozen parameters. It also contains functions that calculate the expected
-value of a function for any continuous or discrete distribution
-
-It temporarily also contains Bootstrap and Monte Carlo function for testing the
-distribution fit, but these are neither general nor verified.
-
-Author: josef-pktd
-License: Simplified BSD
-'''
-
-import numpy as np
-from scipy import stats, optimize, integrate
-
-
-########## patching scipy
-
-#vonmises doesn't define finite bounds, because it is intended for circular
-#support which does not define a proper pdf on the real line
-
-stats.distributions.vonmises.a = -np.pi
-stats.distributions.vonmises.b = np.pi
-
-#the next 3 functions are for fit with some fixed parameters
-#As they are written, they do not work as functions, only as methods
-
-def _fitstart(self, x):
- '''example method, method of moment estimator as starting values
-
- Parameters
- ----------
- x : array
- data for which the parameters are estimated
-
- Returns
- -------
- est : tuple
- preliminary estimates used as starting value for fitting, not
- necessarily a consistent estimator
-
- Notes
- -----
- This needs to be written and attached to each individual distribution
-
- This example was written for the gamma distribution, but not verified
- with literature
-
- '''
- loc = np.min([x.min(),0])
- a = 4/stats.skew(x)**2
- scale = np.std(x) / np.sqrt(a)
- return (a, loc, scale)
-
-def _fitstart_beta(self, x, fixed=None):
- '''method of moment estimator as starting values for beta distribution
-
- Parameters
- ----------
- x : array
- data for which the parameters are estimated
- fixed : None or array_like
- sequence of numbers and np.nan to indicate fixed parameters and parameters
- to estimate
-
- Returns
- -------
- est : tuple
- preliminary estimates used as starting value for fitting, not
- necessarily a consistent estimator
-
- Notes
- -----
- This needs to be written and attached to each individual distribution
-
- References
- ----------
- for method of moment estimator for known loc and scale
- http://en.wikipedia.org/wiki/Beta_distribution#Parameter_estimation
- http://www.itl.nist.gov/div898/handbook/eda/section3/eda366h.htm
- NIST reference also includes reference to MLE in
- Johnson, Kotz, and Balakrishan, Volume II, pages 221-235
-
- '''
- #todo: separate out this part to be used for other compact support distributions
- # e.g. rdist, vonmises, and truncnorm
- # but this might not work because it might still be distribution specific
- a, b = x.min(), x.max()
- eps = (a-b)*0.01
- if fixed is None:
- #this part not checked with books
- loc = a - eps
- scale = (a - b) * (1 + 2*eps)
- else:
- if np.isnan(fixed[-2]):
- #estimate loc
- loc = a - eps
- else:
- loc = fixed[-2]
- if np.isnan(fixed[-1]):
- #estimate scale
- scale = (b + eps) - loc
- else:
- scale = fixed[-1]
-
- #method of moment for known loc scale:
- scale = float(scale)
- xtrans = (x - loc)/scale
- xm = xtrans.mean()
- xv = xtrans.var()
- tmp = (xm*(1-xm)/xv - 1)
- p = xm * tmp
- q = (1 - xm) * tmp
-
- return (p, q, loc, scale) #check return type and should fixed be returned ?
-
-def _fitstart_poisson(self, x, fixed=None):
- '''maximum likelihood estimator as starting values for Poisson distribution
-
- Parameters
- ----------
- x : array
- data for which the parameters are estimated
- fixed : None or array_like
- sequence of numbers and np.nan to indicate fixed parameters and parameters
- to estimate
-
- Returns
- -------
- est : tuple
- preliminary estimates used as starting value for fitting, not
- necessarily a consistent estimator
-
- Notes
- -----
- This needs to be written and attached to each individual distribution
-
- References
- ----------
- MLE :
- http://en.wikipedia.org/wiki/Poisson_distribution#Maximum_likelihood
-
- '''
- #todo: separate out this part to be used for other compact support distributions
- # e.g. rdist, vonmises, and truncnorm
- # but this might not work because it might still be distribution specific
- a = x.min()
- eps = 0 # is this robust ?
- if fixed is None:
- #this part not checked with books
- loc = a - eps
- else:
- if np.isnan(fixed[-1]):
- #estimate loc
- loc = a - eps
- else:
- loc = fixed[-1]
-
- #MLE for standard (unshifted, if loc=0) Poisson distribution
-
- xtrans = (x - loc)
- lambd = xtrans.mean()
- #second derivative d loglike/ dlambd Not used
- #dlldlambd = 1/lambd # check
-
- return (lambd, loc) #check return type and should fixed be returned ?
-
-
-def nnlf_fr(self, thetash, x, frmask):
- # new frozen version
- # - sum (log pdf(x, theta),axis=0)
- # where theta are the parameters (including loc and scale)
- #
- try:
- if frmask != None:
- theta = frmask.copy()
- theta[np.isnan(frmask)] = thetash
- else:
- theta = thetash
- loc = theta[-2]
- scale = theta[-1]
- args = tuple(theta[:-2])
- except IndexError:
- raise ValueError, "Not enough input arguments."
- if not self._argcheck(*args) or scale <= 0:
- return np.inf
- x = np.array((x-loc) / scale)
- cond0 = (x <= self.a) | (x >= self.b)
- if (np.any(cond0)):
- return np.inf
- else:
- N = len(x)
- #raise ValueError
- return self._nnlf(x, *args) + N*np.log(scale)
-
-def fit_fr(self, data, *args, **kwds):
- '''estimate distribution parameters by MLE taking some parameters as fixed
-
- Parameters
- ----------
- data : array, 1d
- data for which the distribution parameters are estimated,
- args : list ? check
- starting values for optimization
- kwds :
-
- - 'frozen' : array_like
- values for frozen distribution parameters and, for elements with
- np.nan, the corresponding parameter will be estimated
-
- Returns
- -------
- argest : array
- estimated parameters
-
-
- Examples
- --------
- generate random sample
- >>> np.random.seed(12345)
- >>> x = stats.gamma.rvs(2.5, loc=0, scale=1.2, size=200)
-
- estimate all parameters
- >>> stats.gamma.fit(x)
- array([ 2.0243194 , 0.20395655, 1.44411371])
- >>> stats.gamma.fit_fr(x, frozen=[np.nan, np.nan, np.nan])
- array([ 2.0243194 , 0.20395655, 1.44411371])
-
- keep loc fixed, estimate shape and scale parameters
- >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, np.nan])
- array([ 2.45603985, 1.27333105])
-
- keep loc and scale fixed, estimate shape parameter
- >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
- array([ 3.00048828])
- >>> stats.gamma.fit_fr(x, frozen=[np.nan, 0.0, 1.2])
- array([ 2.57792969])
-
- estimate only scale parameter for fixed shape and loc
- >>> stats.gamma.fit_fr(x, frozen=[2.5, 0.0, np.nan])
- array([ 1.25087891])
-
- Notes
- -----
- self is an instance of a distribution class. This can be attached to
- scipy.stats.distributions.rv_continuous
-
- *Todo*
-
- * check if docstring is correct
- * more input checking, args is list ? might also apply to current fit method
-
- '''
- loc0, scale0 = map(kwds.get, ['loc', 'scale'],[0.0, 1.0])
- Narg = len(args)
-
- if Narg == 0 and hasattr(self, '_fitstart'):
- x0 = self._fitstart(data)
- elif Narg > self.numargs:
- raise ValueError, "Too many input arguments."
- else:
- args += (1.0,)*(self.numargs-Narg)
- # location and scale are at the end
- x0 = args + (loc0, scale0)
-
- if 'frozen' in kwds:
- frmask = np.array(kwds['frozen'])
- if len(frmask) != self.numargs+2:
- raise ValueError, "Incorrect number of frozen arguments."
- else:
- # keep starting values for not frozen parameters
- x0 = np.array(x0)[np.isnan(frmask)]
- else:
- frmask = None
-
- #print x0
- #print frmask
- return optimize.fmin(self.nnlf_fr, x0,
- args=(np.ravel(data), frmask), disp=0)
-
-
-#The next two functions/methods calculate expected value of an arbitrary
-#function, however for the continuous functions intquad is use, which might
-#require continuouity or smoothness in the function.
-
-
-#TODO: add option for Monte Carlo integration
-
-def expect(self, fn=None, args=(), loc=0, scale=1, lb=None, ub=None, conditional=False):
- '''calculate expected value of a function with respect to the distribution
-
- location and scale only tested on a few examples
-
- Parameters
- ----------
- all parameters are keyword parameters
- fn : function (default: identity mapping)
- Function for which integral is calculated. Takes only one argument.
- args : tuple
- argument (parameters) of the distribution
- lb, ub : numbers
- lower and upper bound for integration, default is set to the support
- of the distribution
- conditional : boolean (False)
- If true then the integral is corrected by the conditional probability
- of the integration interval. The return value is the expectation
- of the function, conditional on being in the given interval.
-
- Returns
- -------
- expected value : float
-
- Notes
- -----
- This function has not been checked for it's behavior when the integral is
- not finite. The integration behavior is inherited from scipy.integrate.quad.
-
- '''
- if fn is None:
- def fun(x, *args):
- return x*self.pdf(x, loc=loc, scale=scale, *args)
- else:
- def fun(x, *args):
- return fn(x)*self.pdf(x, loc=loc, scale=scale, *args)
- if lb is None:
- lb = loc + self.a * scale #(self.a - loc)/(1.0*scale)
- if ub is None:
- ub = loc + self.b * scale #(self.b - loc)/(1.0*scale)
- if conditional:
- invfac = (self.sf(lb, loc=loc, scale=scale, *args)
- - self.sf(ub, loc=loc, scale=scale, *args))
- else:
- invfac = 1.0
- return integrate.quad(fun, lb, ub,
- args=args)[0]/invfac
-
-
-def expect_v2(self, fn=None, args=(), loc=0, scale=1, lb=None, ub=None, conditional=False):
- '''calculate expected value of a function with respect to the distribution
-
- location and scale only tested on a few examples
-
- Parameters
- ----------
- all parameters are keyword parameters
- fn : function (default: identity mapping)
- Function for which integral is calculated. Takes only one argument.
- args : tuple
- argument (parameters) of the distribution
- lb, ub : numbers
- lower and upper bound for integration, default is set using
- quantiles of the distribution, see Notes
- conditional : boolean (False)
- If true then the integral is corrected by the conditional probability
- of the integration interval. The return value is the expectation
- of the function, conditional on being in the given interval.
-
- Returns
- -------
- expected value : float
-
- Notes
- -----
- This function has not been checked for it's behavior when the integral is
- not finite. The integration behavior is inherited from scipy.integrate.quad.
-
- The default limits are lb = self.ppf(1e-9, *args), ub = self.ppf(1-1e-9, *args)
-
- For some heavy tailed distributions, 'alpha', 'cauchy', 'halfcauchy',
- 'levy', 'levy_l', and for 'ncf', the default limits are not set correctly
- even when the expectation of the function is finite. In this case, the
- integration limits, lb and ub, should be chosen by the user. For example,
- for the ncf distribution, ub=1000 works in the examples.
-
- There are also problems with numerical integration in some other cases,
- for example if the distribution is very concentrated and the default limits
- are too large.
-
- '''
- #changes: 20100809
- #correction and refactoring how loc and scale are handled
- #uses now _pdf
- #needs more testing for distribution with bound support, e.g. genpareto
-
- if fn is None:
- def fun(x, *args):
- return (loc + x*scale)*self._pdf(x, *args)
- else:
- def fun(x, *args):
- return fn(loc + x*scale)*self._pdf(x, *args)
- if lb is None:
- #lb = self.a
- try:
- lb = self.ppf(1e-9, *args) #1e-14 quad fails for pareto
- except ValueError:
- lb = self.a
- else:
- lb = max(self.a, (lb - loc)/(1.0*scale)) #transform to standardized
- if ub is None:
- #ub = self.b
- try:
- ub = self.ppf(1-1e-9, *args)
- except ValueError:
- ub = self.b
- else:
- ub = min(self.b, (ub - loc)/(1.0*scale))
- if conditional:
- invfac = self._sf(lb,*args) - self._sf(ub,*args)
- else:
- invfac = 1.0
- return integrate.quad(fun, lb, ub,
- args=args, limit=500)[0]/invfac
-
-### for discrete distributions
-
-#TODO: check that for a distribution with finite support the calculations are
-# done with one array summation (np.dot)
-
-#based on _drv2_moment(self, n, *args), but streamlined
-def expect_discrete(self, fn=None, args=(), loc=0, lb=None, ub=None,
- conditional=False):
- '''calculate expected value of a function with respect to the distribution
- for discrete distribution
-
- Parameters
- ----------
- (self : distribution instance as defined in scipy stats)
- fn : function (default: identity mapping)
- Function for which integral is calculated. Takes only one argument.
- args : tuple
- argument (parameters) of the distribution
- optional keyword parameters
- lb, ub : numbers
- lower and upper bound for integration, default is set to the support
- of the distribution, lb and ub are inclusive (ul<=k<=ub)
- conditional : boolean (False)
- If true then the expectation is corrected by the conditional
- probability of the integration interval. The return value is the
- expectation of the function, conditional on being in the given
- interval (k such that ul<=k<=ub).
-
- Returns
- -------
- expected value : float
-
- Notes
- -----
- * function is not vectorized
- * accuracy: uses self.moment_tol as stopping criterium
- for heavy tailed distribution e.g. zipf(4), accuracy for
- mean, variance in example is only 1e-5,
- increasing precision (moment_tol) makes zipf very slow
- * suppnmin=100 internal parameter for minimum number of points to evaluate
- could be added as keyword parameter, to evaluate functions with
- non-monotonic shapes, points include integers in (-suppnmin, suppnmin)
- * uses maxcount=1000 limits the number of points that are evaluated
- to break loop for infinite sums
- (a maximum of suppnmin+1000 positive plus suppnmin+1000 negative integers
- are evaluated)
-
-
- '''
-
- #moment_tol = 1e-12 # increase compared to self.moment_tol,
- # too slow for only small gain in precision for zipf
-
- #avoid endless loop with unbound integral, eg. var of zipf(2)
- maxcount = 1000
- suppnmin = 100 #minimum number of points to evaluate (+ and -)
-
- if fn is None:
- def fun(x):
- #loc and args from outer scope
- return (x+loc)*self._pmf(x, *args)
- else:
- def fun(x):
- #loc and args from outer scope
- return fn(x+loc)*self._pmf(x, *args)
- # used pmf because _pmf does not check support in randint
- # and there might be problems(?) with correct self.a, self.b at this stage
- # maybe not anymore, seems to work now with _pmf
-
- self._argcheck(*args) # (re)generate scalar self.a and self.b
- if lb is None:
- lb = (self.a)
- else:
- lb = lb - loc
-
- if ub is None:
- ub = (self.b)
- else:
- ub = ub - loc
- if conditional:
- invfac = self.sf(lb,*args) - self.sf(ub+1,*args)
- else:
- invfac = 1.0
-
- tot = 0.0
- low, upp = self._ppf(0.001, *args), self._ppf(0.999, *args)
- low = max(min(-suppnmin, low), lb)
- upp = min(max(suppnmin, upp), ub)
- supp = np.arange(low, upp+1, self.inc) #check limits
- #print 'low, upp', low, upp
- tot = np.sum(fun(supp))
- diff = 1e100
- pos = upp + self.inc
- count = 0
-
- #handle cases with infinite support
-
- while (pos <= ub) and (diff > self.moment_tol) and count <= maxcount:
- diff = fun(pos)
- tot += diff
- pos += self.inc
- count += 1
-
- if self.a < 0: #handle case when self.a = -inf
- diff = 1e100
- pos = low - self.inc
- while (pos >= lb) and (diff > self.moment_tol) and count <= maxcount:
- diff = fun(pos)
- tot += diff
- pos -= self.inc
- count += 1
- if count > maxcount:
- # replace with proper warning
- print 'sum did not converge'
- return tot/invfac
-
-stats.distributions.rv_continuous.fit_fr = fit_fr
-stats.distributions.rv_continuous.nnlf_fr = nnlf_fr
-stats.distributions.rv_continuous.expect = expect
-stats.distributions.rv_discrete.expect = expect_discrete
-stats.distributions.beta_gen._fitstart = _fitstart_beta #not tried out yet
-stats.distributions.poisson_gen._fitstart = _fitstart_poisson #not tried out yet
-
-########## end patching scipy
-
-
-def distfitbootstrap(sample, distr, nrepl=100):
- '''run bootstrap for estimation of distribution parameters
-
- hard coded: only one shape parameter is allowed and estimated,
- loc=0 and scale=1 are fixed in the estimation
-
- Parameters
- ----------
- sample : array
- original sample data for bootstrap
- distr : distribution instance with fit_fr method
- nrepl : integer
- number of bootstrap replications
-
- Returns
- -------
- res : array (nrepl,)
- parameter estimates for all bootstrap replications
-
- '''
- nobs = len(sample)
- res = np.zeros(nrepl)
- for ii in xrange(nrepl):
- rvsind = np.random.randint(nobs, size=nobs)
- x = sample[rvsind]
- res[ii] = distr.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
- return res
-
-def distfitmc(sample, distr, nrepl=100, distkwds={}):
- '''run Monte Carlo for estimation of distribution parameters
-
- hard coded: only one shape parameter is allowed and estimated,
- loc=0 and scale=1 are fixed in the estimation
-
- Parameters
- ----------
- sample : array
- original sample data, in Monte Carlo only used to get nobs,
- distr : distribution instance with fit_fr method
- nrepl : integer
- number of Monte Carlo replications
-
- Returns
- -------
- res : array (nrepl,)
- parameter estimates for all Monte Carlo replications
-
- '''
- arg = distkwds.pop('arg')
- nobs = len(sample)
- res = np.zeros(nrepl)
- for ii in xrange(nrepl):
- x = distr.rvs(arg, size=nobs, **distkwds)
- res[ii] = distr.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
- return res
-
-
-def printresults(sample, arg, bres, kind='bootstrap'):
- '''calculate and print Bootstrap or Monte Carlo result
-
- Parameters
- ----------
- sample : array
- original sample data
- arg : float (for general case will be array)
- bres : array
- parameter estimates from Bootstrap or Monte Carlo run
- kind : {'bootstrap', 'montecarlo'}
- output is printed for Mootstrap (default) or Monte Carlo
-
- Returns
- -------
- None, currently only printing
-
- Notes
- -----
- still a bit a mess because it is used for both Bootstrap and Monte Carlo
-
- made correction:
- reference point for bootstrap is estimated parameter
-
- not clear:
- I'm not doing any ddof adjustment in estimation of variance, do we
- need ddof>0 ?
-
- todo: return results and string instead of printing
-
- '''
- print 'true parameter value'
- print arg
- print 'MLE estimate of parameters using sample (nobs=%d)'% (nobs)
- argest = distr.fit_fr(sample, frozen=[np.nan, 0.0, 1.0])
- print argest
- if kind == 'bootstrap':
- #bootstrap compares to estimate from sample
- argorig = arg
- arg = argest
-
- print '%s distribution of parameter estimate (nrepl=%d)'% (kind, nrepl)
- print 'mean = %f, bias=%f' % (bres.mean(0), bres.mean(0)-arg)
- print 'median', np.median(bres, axis=0)
- print 'var and std', bres.var(0), np.sqrt(bres.var(0))
- bmse = ((bres - arg)**2).mean(0)
- print 'mse, rmse', bmse, np.sqrt(bmse)
- bressorted = np.sort(bres)
- print '%s confidence interval (90%% coverage)' % kind
- print bressorted[np.floor(nrepl*0.05)], bressorted[np.floor(nrepl*0.95)]
- print '%s confidence interval (90%% coverage) normal approximation' % kind
- print stats.norm.ppf(0.05, loc=bres.mean(), scale=bres.std()),
- print stats.norm.isf(0.05, loc=bres.mean(), scale=bres.std())
- print 'Kolmogorov-Smirnov test for normality of %s distribution' % kind
- print ' - estimated parameters, p-values not really correct'
- print stats.kstest(bres, 'norm', (bres.mean(), bres.std()))
-
-
-if __name__ == '__main__':
-
- examplecases = ['largenumber', 'bootstrap', 'montecarlo'][:]
-
- if 'largenumber' in examplecases:
-
- print '\nDistribution: vonmises'
-
- for nobs in [200]:#[20000, 1000, 100]:
- x = stats.vonmises.rvs(1.23, loc=0, scale=1, size=nobs)
- print '\nnobs:', nobs
- print 'true parameter'
- print '1.23, loc=0, scale=1'
- print 'unconstraint'
- print stats.vonmises.fit(x)
- print stats.vonmises.fit_fr(x, frozen=[np.nan, np.nan, np.nan])
- print 'with fixed loc and scale'
- print stats.vonmises.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
-
- print '\nDistribution: gamma'
- distr = stats.gamma
- arg, loc, scale = 2.5, 0., 20.
-
- for nobs in [200]:#[20000, 1000, 100]:
- x = distr.rvs(arg, loc=loc, scale=scale, size=nobs)
- print '\nnobs:', nobs
- print 'true parameter'
- print '%f, loc=%f, scale=%f' % (arg, loc, scale)
- print 'unconstraint'
- print distr.fit(x)
- print distr.fit_fr(x, frozen=[np.nan, np.nan, np.nan])
- print 'with fixed loc and scale'
- print distr.fit_fr(x, frozen=[np.nan, 0.0, 1.0])
- print 'with fixed loc'
- print distr.fit_fr(x, frozen=[np.nan, 0.0, np.nan])
-
-
- ex = ['gamma', 'vonmises'][0]
-
- if ex == 'gamma':
- distr = stats.gamma
- arg, loc, scale = 2.5, 0., 1
- elif ex == 'vonmises':
- distr = stats.vonmises
- arg, loc, scale = 1.5, 0., 1
- else:
- raise ValueError('wrong example')
-
- nobs = 100
- nrepl = 1000
-
- sample = distr.rvs(arg, loc=loc, scale=scale, size=nobs)
-
- print '\nDistribution:', distr
- if 'bootstrap' in examplecases:
- print '\nBootstrap'
- bres = distfitbootstrap(sample, distr, nrepl=nrepl )
- printresults(sample, arg, bres)
-
- if 'montecarlo' in examplecases:
- print '\nMonteCarlo'
- mcres = distfitmc(sample, distr, nrepl=nrepl,
- distkwds=dict(arg=arg, loc=loc, scale=scale))
- printresults(sample, arg, mcres, kind='montecarlo')
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/__init__.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/_est_fit.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/_est_fit.py
deleted file mode 100644
index 11f97fc..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/_est_fit.py
+++ /dev/null
@@ -1,70 +0,0 @@
-# NOTE: contains only one test, _est_cont_fit, that is renamed so that
-# nose doesn't run it
-# I put this here for the record and for the case when someone wants to
-# verify the quality of fit
-# with current parameters: relatively small sample size, default starting values
-# Ran 84 tests in 401.797s
-# FAILED (failures=15)
-
-
-import numpy.testing as npt
-import numpy as np
-
-from scipy import stats
-
-from distparams import distcont
-
-# this is not a proper statistical test for convergence, but only
-# verifies that the estimate and true values don't differ by too much
-n_repl1 = 1000 # sample size for first run
-n_repl2 = 5000 # sample size for second run, if first run fails
-thresh_percent = 0.25 # percent of true parameters for fail cut-off
-thresh_min = 0.75 # minimum difference estimate - true to fail test
-
-#distcont = [['genextreme', (3.3184017469423535,)]]
-
-def _est_cont_fit():
- # this tests the closeness of the estimated parameters to the true
- # parameters with fit method of continuous distributions
- # Note: is slow, some distributions don't converge with sample size <= 10000
-
- for distname, arg in distcont:
- yield check_cont_fit, distname,arg
-
-
-def check_cont_fit(distname,arg):
- distfn = getattr(stats, distname)
- rvs = distfn.rvs(size=n_repl1,*arg)
- est = distfn.fit(rvs) #,*arg) # start with default values
-
- truearg = np.hstack([arg,[0.0,1.0]])
- diff = est-truearg
-
- txt = ''
- diffthreshold = np.max(np.vstack([truearg*thresh_percent,
- np.ones(distfn.numargs+2)*thresh_min]),0)
- # threshold for location
- diffthreshold[-2] = np.max([np.abs(rvs.mean())*thresh_percent,thresh_min])
-
- if np.any(np.isnan(est)):
- raise AssertionError('nan returned in fit')
- else:
- if np.any((np.abs(diff) - diffthreshold) > 0.0):
-## txt = 'WARNING - diff too large with small sample'
-## print 'parameter diff =', diff - diffthreshold, txt
- rvs = np.concatenate([rvs,distfn.rvs(size=n_repl2-n_repl1,*arg)])
- est = distfn.fit(rvs) #,*arg)
- truearg = np.hstack([arg,[0.0,1.0]])
- diff = est-truearg
- if np.any((np.abs(diff) - diffthreshold) > 0.0):
- txt = 'parameter: %s\n' % str(truearg)
- txt += 'estimated: %s\n' % str(est)
- txt += 'diff : %s\n' % str(diff)
- raise AssertionError('fit not very good in %s\n' % distfn.name + txt)
-
-
-
-if __name__ == "__main__":
- import nose
- #nose.run(argv=['', __file__])
- nose.runmodule(argv=[__file__,'-s'], exit=False)
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/check_moments.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/check_moments.py
deleted file mode 100644
index e678c04..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/check_moments.py
+++ /dev/null
@@ -1,159 +0,0 @@
-'''script to test expect and moments in distributions.stats method
-
-not written as a test, prints results, renamed to prevent nose from running it
-
-
-'''
-
-import numpy as np
-from scipy import stats
-#from scikits.statsmodels.stats.moment_helpers import mnc2mvsk
-from scikits.statsmodels.sandbox.distributions.sppatch import expect_v2
-
-from distparams import distcont, distdiscrete#, distslow
-
-
-specialcases = {'ncf':{'ub':1000} # diverges if it's too large, checked for mean
- }
-
-#next functions are copies from sm.stats.moment_helpers
-def mc2mvsk(args):
- '''convert central moments to mean, variance, skew, kurtosis
- '''
- mc, mc2, mc3, mc4 = args
- skew = np.divide(mc3, mc2**1.5)
- kurt = np.divide(mc4, mc2**2.0) - 3.0
- return (mc, mc2, skew, kurt)
-
-def mnc2mvsk(args):
- '''convert central moments to mean, variance, skew, kurtosis
- '''
- #convert four non-central moments to central moments
- mnc, mnc2, mnc3, mnc4 = args
- mc = mnc
- mc2 = mnc2 - mnc*mnc
- mc3 = mnc3 - (3*mc*mc2+mc**3) # 3rd central moment
- mc4 = mnc4 - (4*mc*mc3+6*mc*mc*mc2+mc**4)
- return mc2mvsk((mc, mc2, mc3, mc4))
-
-def mom_nc0(x):
- return 1.
-
-def mom_nc1(x):
- return x
-
-def mom_nc2(x):
- return x*x
-
-def mom_nc3(x):
- return x*x*x
-
-def mom_nc4(x):
- return np.power(x,4)
-
-res = {}
-distex = []
-distlow = []
-distok = []
-distnonfinite = []
-
-def check_cont_basic():
- #results saved in module global variable
-
- for distname, distargs in distcont[:]:
- #if distname not in distex_0: continue
- distfn = getattr(stats, distname)
-## np.random.seed(765456)
-## sn = 1000
-## rvs = distfn.rvs(size=sn,*arg)
-## sm = rvs.mean()
-## sv = rvs.var()
-## skurt = stats.kurtosis(rvs)
-## sskew = stats.skew(rvs)
- m,v,s,k = distfn.stats(*distargs, **dict(moments='mvsk'))
- st = np.array([m,v,s,k])
- mask = np.isfinite(st)
- if mask.sum() < 4:
- distnonfinite.append(distname)
- print distname
- #print 'stats ', m,v,s,k
- expect = distfn.expect
- expect = lambda *args, **kwds : expect_v2(distfn, *args, **kwds)
-
- special_kwds = specialcases.get(distname, {})
- mnc0 = expect(mom_nc0, args=distargs, **special_kwds)
- mnc1 = expect(args=distargs, **special_kwds)
- mnc2 = expect(mom_nc2, args=distargs, **special_kwds)
- mnc3 = expect(mom_nc3, args=distargs, **special_kwds)
- mnc4 = expect(mom_nc4, args=distargs, **special_kwds)
-
- mnc1_lc = expect(args=distargs, loc=1, scale=2, **special_kwds)
- #print mnc1, mnc2, mnc3, mnc4
- try:
- me, ve, se, ke = mnc2mvsk((mnc1, mnc2, mnc3, mnc4))
- except:
- print 'exception', mnc1, mnc2, mnc3, mnc4, st
- me, ve, se, ke = [np.nan]*4
- if mask.size > 0:
- distex.append(distname)
- #print 'expect', me, ve, se, ke,
- #print mnc1, mnc2, mnc3, mnc4
-
- em = np.array([me, ve, se, ke])
-
- diff = st[mask] - em[mask]
- print diff, mnc1_lc - (1 + 2*mnc1)
- if np.size(diff)>0 and np.max(np.abs(diff)) > 1e-3:
- distlow.append(distname)
- else:
- distok.append(distname)
-
- res[distname] = [mnc0, st, em, diff, mnc1_lc]
-
-def nct_kurt_bug():
- '''test for incorrect kurtosis of nct
-
- D. Hogben, R. S. Pinkham, M. B. Wilk: The Moments of the Non-Central
- t-DistributionAuthor(s): Biometrika, Vol. 48, No. 3/4 (Dec., 1961),
- pp. 465-468
- '''
- from numpy.testing import assert_almost_equal
- mvsk_10_1 = (1.08372, 1.325546, 0.39993, 1.2499424941142943)
- assert_almost_equal(stats.nct.stats(10, 1, moments='mvsk'), mvsk_10_1, decimal=6)
- c1=np.array([1.08372])
- c2=np.array([.0755460, 1.25000])
- c3 = np.array([.0297802, .580566])
- c4 = np.array([0.0425458, 1.17491, 6.25])
-
- #calculation for df=10, for arbitrary nc
- nc = 1
- mc1 = c1.item()
- mc2 = (c2*nc**np.array([2,0])).sum()
- mc3 = (c3*nc**np.array([3,1])).sum()
- mc4 = c4=np.array([0.0425458, 1.17491, 6.25])
- mvsk_nc = mc2mvsk((mc1,mc2,mc3,mc4))
-
-if __name__ == '__main__':
-
- check_cont_basic()
- #print [(k, v[0]) for k,v in res.items() if np.abs(v[0]-1)>1e-3]
- #print [(k, v[2][0], 1+2*v[2][0]) for k,v in res.items() if np.abs(v[-1]-(1+2*v[2][0]))>1e-3]
- mean_ = [(k, v[1][0], v[2][0]) for k,v in res.items()
- if np.abs(v[1][0] - v[2][0])>1e-6 and np.isfinite(v[1][0])]
- var_ = [(k, v[1][1], v[2][1]) for k,v in res.items()
- if np.abs(v[1][1] - v[2][1])>1e-2 and np.isfinite(v[1][1])]
- skew = [(k, v[1][2], v[2][2]) for k,v in res.items()
- if np.abs(v[1][2] - v[2][2])>1e-2 and np.isfinite(v[1][1])]
- kurt = [(k, v[1][3], v[2][3]) for k,v in res.items()
- if np.abs(v[1][3] - v[2][3])>1e-2 and np.isfinite(v[1][1])]
-
- from scikits.statsmodels.iolib import SimpleTable
- if len(mean_) > 0:
- print '\nMean difference at least 1e-6'
- print SimpleTable(mean_, headers=['distname', 'diststats', 'expect'])
- print '\nVariance difference at least 1e-2'
- print SimpleTable(var_, headers=['distname', 'diststats', 'expect'])
- print '\nSkew difference at least 1e-2'
- print SimpleTable(skew, headers=['distname', 'diststats', 'expect'])
- print '\nKurtosis difference at least 1e-2'
- print SimpleTable(kurt, headers=['distname', 'diststats', 'expect'])
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/distparams.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/distparams.py
deleted file mode 100644
index e25e1be..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/distparams.py
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-distcont = [
- ['alpha', (3.5704770516650459,)],
- ['anglit', ()],
- ['arcsine', ()],
- ['beta', (2.3098496451481823, 0.62687954300963677)],
- ['betaprime', (5, 6)], # avoid unbound error in entropy with (100, 86)],
- ['bradford', (0.29891359763170633,)],
- ['burr', (10.5, 4.3)], #incorrect mean and var for(0.94839838075366045, 4.3820284068855795)],
- ['cauchy', ()],
- ['chi', (78,)],
- ['chi2', (55,)],
- ['cosine', ()],
- ['dgamma', (1.1023326088288166,)],
- ['dweibull', (2.0685080649914673,)],
- ['erlang', (20,)], #correction numargs = 1
- ['expon', ()],
- ['exponpow', (2.697119160358469,)],
- ['exponweib', (2.8923945291034436, 1.9505288745913174)],
- ['f', (29, 18)],
- #['fatiguelife', (29,)], #correction numargs = 1, variance very large
- ['fatiguelife', (2,)],
- ['fisk', (3.0857548622253179,)],
- ['foldcauchy', (4.7164673455831894,)],
- ['foldnorm', (1.9521253373555869,)],
- ['frechet_l', (3.6279911255583239,)],
- ['frechet_r', (1.8928171603534227,)],
- ['gamma', (1.9932305483800778,)],
- ['gausshyper', (13.763771604130699, 3.1189636648681431,
- 2.5145980350183019, 5.1811649903971615)], #veryslow
- ['genexpon', (9.1325976465418908, 16.231956600590632, 3.2819552690843983)],
- ['genextreme', (-0.1,)], # sample mean test fails for (3.3184017469423535,)],
- ['gengamma', (4.4162385429431925, 3.1193091679242761)],
- ['genhalflogistic', (0.77274727809929322,)],
- ['genlogistic', (0.41192440799679475,)],
- ['genpareto', (0.1,)], # use case with finite moments
- ['gilbrat', ()],
- ['gompertz', (0.94743713075105251,)],
- ['gumbel_l', ()],
- ['gumbel_r', ()],
- ['halfcauchy', ()],
- ['halflogistic', ()],
- ['halfnorm', ()],
- ['hypsecant', ()],
- #['invgamma', (2.0668996136993067,)], #convergence problem with expect
- #['invgamma', (3.0,)],
- ['invgamma', (5.0,)], #kurtosis requires alpha > 4
- ['invnorm', (0.14546264555347513,)],
- ['invweibull', (10.58,)], # sample mean test fails at(0.58847112119264788,)]
- ['johnsonsb', (4.3172675099141058, 3.1837781130785063)],
- ['johnsonsu', (2.554395574161155, 2.2482281679651965)],
- ['ksone', (1000,)], #replace 22 by 100 to avoid failing range, ticket 956
- ['kstwobign', ()],
- ['laplace', ()],
- ['levy', ()],
- ['levy_l', ()],
-# ['levy_stable', (0.35667405469844993,
-# -0.67450531578494011)], #NotImplementedError
- # rvs not tested
- ['loggamma', (0.41411931826052117,)],
- ['logistic', ()],
- ['loglaplace', (3.2505926592051435,)],
- ['lognorm', (0.95368226960575331,)],
- ['lomax', (1.8771398388773268,)], #this has infinite variance
- ['lomax', (10,)], #first 4 moments are finite
- ['maxwell', ()],
- ['mielke', (10.4, 3.6)], # sample mean test fails for (4.6420495492121487, 0.59707419545516938)],
- # mielke: good results if 2nd parameter >2, weird mean or var below
- ['nakagami', (4.9673794866666237,)],
- ['ncf', (27, 27, 0.41578441799226107)],
- ['nct', (14, 0.24045031331198066)],
- ['ncx2', (21, 1.0560465975116415)],
- ['norm', ()],
- ['pareto', (2.621716532144454,)],
- ['powerlaw', (1.6591133289905851,)],
- ['powerlognorm', (2.1413923530064087, 0.44639540782048337)],
- ['powernorm', (4.4453652254590779,)],
- ['rayleigh', ()],
- ['rdist', (0.9,)], # feels also slow
-# ['rdist', (3.8266985793976525,)], #veryslow, especially rvs
- #['rdist', (541.0,)], # from ticket #758 #veryslow
- ['recipinvgauss', (0.63004267809369119,)],
- ['reciprocal', (0.0062309367010521255, 1.0062309367010522)],
- ['rice', (0.7749725210111873,)],
- ['semicircular', ()],
- ['t', (2.7433514990818093,)],
- ['triang', (0.15785029824528218,)],
- ['truncexpon', (4.6907725456810478,)],
- ['truncnorm', (-1.0978730080013919, 2.7306754109031979)],
- ['tukeylambda', (3.1321477856738267,)],
- ['uniform', ()],
- ['vonmises', (3.9939042581071398,)],
- ['wald', ()],
- ['weibull_max', (2.8687961709100187,)],
- ['weibull_min', (1.7866166930421596,)],
- ['wrapcauchy', (0.031071279018614728,)]]
-
-distdiscrete = [
- ['bernoulli',(0.3,)],
- ['binom', (5, 0.4)],
- ['boltzmann',(1.4, 19)],
- ['dlaplace', (0.8,)], #0.5
- ['geom', (0.5,)],
- ['hypergeom',(30, 12, 6)],
- ['hypergeom',(21,3,12)], #numpy.random (3,18,12) numpy ticket:921
- ['hypergeom',(21,18,11)], #numpy.random (18,3,11) numpy ticket:921
- ['logser', (0.6,)], # reenabled, numpy ticket:921
- ['nbinom', (5, 0.5)],
- ['nbinom', (0.4, 0.4)], #from tickets: 583
- ['planck', (0.51,)], #4.1
- ['poisson', (0.6,)],
- ['randint', (7, 31)],
- ['skellam', (15, 8)],
- ['zipf', (4,)] ] # arg=4 is ok,
- # Zipf broken for arg = 2, e.g. weird .stats
- # looking closer, mean, var should be inf for arg=2
-
-distslow = ['rdist', 'gausshyper', 'recipinvgauss', 'ksone', 'genexpon',
- 'vonmises', 'rice', 'mielke', 'semicircular', 'cosine', 'invweibull',
- 'powerlognorm', 'johnsonsu', 'kstwobign']
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_extras.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_extras.py
deleted file mode 100644
index 8078186..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_extras.py
+++ /dev/null
@@ -1,111 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sun Apr 17 22:13:36 2011
-
-@author: josef
-"""
-
-import numpy as np
-from numpy.testing import assert_
-
-from scikits.statsmodels.sandbox.distributions.extras import (skewnorm,
- skewnorm2, ACSkewT_gen)
-
-
-def test_skewnorm():
- #library("sn")
- #dsn(c(-2,-1,0,1,2), shape=10)
- #psn(c(-2,-1,0,1,2), shape=10)
- #noquote(sprintf("%.15e,", snp))
- pdf_r = np.array([2.973416551551523e-90, 3.687562713971017e-24,
- 3.989422804014327e-01, 4.839414490382867e-01,
- 1.079819330263761e-01])
- pdf_sn = skewnorm.pdf([-2,-1,0,1,2], 10)
-
- #res = (snp-snp_r)/snp
- assert_(np.allclose(pdf_sn, pdf_r,rtol=1e-13, atol=0))
-
- pdf_sn2 = skewnorm2.pdf([-2,-1,0,1,2], 10)
- assert_(np.allclose(pdf_sn2, pdf_r, rtol=1e-13, atol=0))
-
-
- cdf_r = np.array([0.000000000000000e+00, 0.000000000000000e+00,
- 3.172551743055357e-02, 6.826894921370859e-01,
- 9.544997361036416e-01])
- cdf_sn = skewnorm.cdf([-2,-1,0,1,2], 10)
- assert_(np.allclose(cdf_sn, cdf_r, rtol=1e-13, atol=1e-25))
-
- cdf_sn2 = skewnorm2.cdf([-2,-1,0,1,2], 10)
- assert_(np.allclose(cdf_sn2, cdf_r, rtol=1e-13, atol=1e-25))
-
-
-def test_skewt():
- skewt = ACSkewT_gen()
- x = [-2, -1, -0.5, 0, 1, 2]
- #noquote(sprintf("%.15e,", dst(c(-2,-1, -0.5,0,1,2), shape=10)))
- #default in R:sn is df=inf
- pdf_r = np.array([2.973416551551523e-90, 3.687562713971017e-24,
- 2.018401586422970e-07, 3.989422804014327e-01,
- 4.839414490382867e-01, 1.079819330263761e-01])
- pdf_st = skewt.pdf(x, 1000000, 10)
- pass
- np.allclose(pdf_st, pdf_r, rtol=0, atol=1e-6)
- np.allclose(pdf_st, pdf_r, rtol=1e-1, atol=0)
-
-
- #noquote(sprintf("%.15e,", pst(c(-2,-1, -0.5,0,1,2), shape=10)))
- cdf_r = np.array([0.000000000000000e+00, 0.000000000000000e+00,
- 3.729478836866917e-09, 3.172551743055357e-02,
- 6.826894921370859e-01, 9.544997361036416e-01])
- cdf_st = skewt.cdf(x, 1000000, 10)
- np.allclose(cdf_st, cdf_r, rtol=0, atol=1e-6)
- np.allclose(cdf_st, cdf_r, rtol=1e-1, atol=0)
- #assert_(np.allclose(cdf_st, cdf_r, rtol=1e-13, atol=1e-15))
-
-
- #noquote(sprintf("%.15e,", dst(c(-2,-1, -0.5,0,1,2), shape=10, df=5)))
- pdf_r = np.array([2.185448836190663e-07, 1.272381597868587e-05,
- 5.746937644959992e-04, 3.796066898224945e-01,
- 4.393468708859825e-01, 1.301804021075493e-01])
- pdf_st = skewt.pdf(x, 5, 10) #args = (df, alpha)
- assert_(np.allclose(pdf_st, pdf_r, rtol=1e-13, atol=1e-25))
-
- #noquote(sprintf("%.15e,", pst(c(-2,-1, -0.5,0,1,2), shape=10, df=5)))
- cdf_r = np.array([8.822783669199699e-08, 2.638467463775795e-06,
- 6.573106017198583e-05, 3.172551743055352e-02,
- 6.367851708183412e-01, 8.980606093979784e-01])
- cdf_st = skewt.cdf(x, 5, 10) #args = (df, alpha)
- assert_(np.allclose(cdf_st, cdf_r, rtol=1e-10, atol=0))
-
-
- #noquote(sprintf("%.15e,", dst(c(-2,-1, -0.5,0,1,2), shape=10, df=1)))
- pdf_r = np.array([3.941955996757291e-04, 1.568067236862745e-03,
- 6.136996029432048e-03, 3.183098861837907e-01,
- 3.167418189469279e-01, 1.269297588738406e-01])
- pdf_st = skewt.pdf(x, 1, 10) #args = (df, alpha) = (1, 10))
- assert_(np.allclose(pdf_st, pdf_r, rtol=1e-13, atol=1e-25))
-
- #noquote(sprintf("%.15e,", pst(c(-2,-1, -0.5,0,1,2), shape=10, df=1)))
- cdf_r = np.array([7.893671370544414e-04, 1.575817262600422e-03,
- 3.128720749105560e-03, 3.172551743055351e-02,
- 5.015758172626005e-01, 7.056221318361879e-01])
- cdf_st = skewt.cdf(x, 1, 10) #args = (df, alpha) = (1, 10)
- assert_(np.allclose(cdf_st, cdf_r, rtol=1e-13, atol=1e-25))
-
-
-
-if __name__ == '__main__':
- import nose
- nose.runmodule(argv=['__main__','-vvs','-x','--pdb', '--pdb-failure'],
- exit=False)
-
- print ('Done')
-
-
-'''
->>> skewt.pdf([-2,-1,0,1,2], 10000000, 10)
-array([ 2.98557345e-90, 3.68850289e-24, 3.98942271e-01,
- 4.83941426e-01, 1.07981952e-01])
->>> skewt.pdf([-2,-1,0,1,2], np.inf, 10)
-array([ nan, nan, nan, nan, nan])
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_multivariate.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_multivariate.py
deleted file mode 100644
index c84adbd..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/test_multivariate.py
+++ /dev/null
@@ -1,174 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sat Apr 16 15:02:13 2011
-@author: Josef Perktold
-"""
-
-import numpy as np
-from numpy.testing import assert_almost_equal, assert_array_almost_equal
-
-from scikits.statsmodels.sandbox.distributions.multivariate import (
- mvstdtprob, mvstdnormcdf)
-from scikits.statsmodels.sandbox.distributions.mv_normal import MVT, MVNormal
-
-class Test_MVN_MVT_prob(object):
- #test for block integratal, cdf, of multivariate t and normal
- #comparison results from R
-
- def __init__(self):
- self.corr_equal = np.asarray([[1.0, 0.5, 0.5],[0.5,1,0.5],[0.5,0.5,1]])
- self.a = -1 * np.ones(3)
- self.b = 3 * np.ones(3)
- self.df = 4
-
- corr2 = self.corr_equal.copy()
- corr2[2,1] = -0.5
- self.corr2 = corr2
-
-
- def test_mvn_mvt_1(self):
- a, b = self.a, self.b
- df = self.df
- corr_equal = self.corr_equal
- #result from R, mvtnorm with option
- #algorithm = GenzBretz(maxpts = 100000, abseps = 0.000001, releps = 0)
- # or higher
- probmvt_R = 0.60414 #report, ed error approx. 7.5e-06
- probmvn_R = 0.673970 #reported error approx. 6.4e-07
- assert_almost_equal(probmvt_R, mvstdtprob(a, b, corr_equal, df), 4)
- assert_almost_equal(probmvn_R,
- mvstdnormcdf(a, b, corr_equal, abseps=1e-5), 4)
-
- mvn_high = mvstdnormcdf(a, b, corr_equal, abseps=1e-8, maxpts=10000000)
- assert_almost_equal(probmvn_R, mvn_high, 5)
- #this still barely fails sometimes at 6 why?? error is -7.2627419411830374e-007
- #>>> 0.67396999999999996 - 0.67397072627419408
- #-7.2627419411830374e-007
- #>>> assert_almost_equal(0.67396999999999996, 0.67397072627419408, 6)
- #Fail
-
- def test_mvn_mvt_2(self):
- a, b = self.a, self.b
- df = self.df
- corr2 = self.corr2
-
- probmvn_R = 0.6472497 #reported error approx. 7.7e-08
- probmvt_R = 0.5881863 #highest reported error up to approx. 1.99e-06
- assert_almost_equal(probmvt_R, mvstdtprob(a, b, corr2, df), 4)
- assert_almost_equal(probmvn_R, mvstdnormcdf(a, b, corr2, abseps=1e-5), 4)
-
- def test_mvn_mvt_3(self):
- a, b = self.a, self.b
- df = self.df
- corr2 = self.corr2
-
- #from -inf
- #print 'from -inf'
- a2 = a.copy()
- a2[:] = -np.inf
- probmvn_R = 0.9961141 #using higher precision in R, error approx. 6.866163e-07
- probmvt_R = 0.9522146 #using higher precision in R, error approx. 1.6e-07
- assert_almost_equal(probmvt_R, mvstdtprob(a2, b, corr2, df), 4)
- assert_almost_equal(probmvn_R, mvstdnormcdf(a2, b, corr2, maxpts=100000,
- abseps=1e-5), 4)
-
- def test_mvn_mvt_4(self):
- a, bl = self.a, self.b
- df = self.df
- corr2 = self.corr2
-
- #from 0 to inf
- #print '0 inf'
- a2 = a.copy()
- a2[:] = -np.inf
- probmvn_R = 0.1666667 #error approx. 6.1e-08
- probmvt_R = 0.1666667 #error approx. 8.2e-08
- assert_almost_equal(probmvt_R, mvstdtprob(np.zeros(3), -a2, corr2, df), 4)
- assert_almost_equal(probmvn_R,
- mvstdnormcdf(np.zeros(3), -a2, corr2,
- maxpts=100000, abseps=1e-5), 4)
-
- def test_mvn_mvt_5(self):
- a, bl = self.a, self.b
- df = self.df
- corr2 = self.corr2
-
- #unequal integration bounds
- #print "ue"
- a3 = np.array([0.5, -0.5, 0.5])
- probmvn_R = 0.06910487 #using higher precision in R, error approx. 3.5e-08
- probmvt_R = 0.05797867 #using higher precision in R, error approx. 5.8e-08
- assert_almost_equal(mvstdtprob(a3, a3+1, corr2, df), probmvt_R, 4)
- assert_almost_equal(probmvn_R, mvstdnormcdf(a3, a3+1, corr2,
- maxpts=100000, abseps=1e-5), 4)
-
-
-class TestMVDistributions(object):
- #this is not well organized
-
- def __init__(self):
- covx = np.array([[1.0, 0.5], [0.5, 1.0]])
- mu3 = [-1, 0., 2.]
- cov3 = np.array([[ 1. , 0.5 , 0.75],
- [ 0.5 , 1.5 , 0.6 ],
- [ 0.75, 0.6 , 2. ]])
- self.mu3 = mu3
- self.cov3 = cov3
-
- mvn3 = MVNormal(mu3, cov3)
- mvn3c = MVNormal(np.array([0,0,0]), cov3)
- self.mvn3 = mvn3
- self.mvn3c = mvn3c
-
-
- def test_mvn_pdf(self):
- cov3 = self.cov3
- mvn3 = self.mvn3
- mvn3c = self.mvn3c
-
- r_val = [-7.667977543898155, -6.917977543898155, -5.167977543898155]
- assert_array_almost_equal( mvn3.logpdf(cov3), r_val, decimal = 14)
- #decimal 18
- r_val = [0.000467562492721686, 0.000989829804859273, 0.005696077243833402]
- assert_array_almost_equal( mvn3.pdf(cov3), r_val, decimal = 17)
- #cheating new mean, same cov, too dangerous, got wrong instance in tests
- #mvn3.mean = np.array([0,0,0])
- mvn3b = MVNormal(np.array([0,0,0]), cov3)
- r_val = [0.02914269740502042, 0.02269635555984291, 0.01767593948287269]
- assert_array_almost_equal( mvn3b.pdf(cov3), r_val, decimal = 16)
-
- def test_mvt_pdf(self):
- cov3 = self.cov3
- mu3 = self.mu3
-
- mvt = MVT((0,0), 1, 5)
- assert_almost_equal(mvt.logpdf(np.array([0.,0.])), -1.837877066409345,
- decimal=15)
- assert_almost_equal(mvt.pdf(np.array([0.,0.])), 0.1591549430918953,
- decimal=15)
-
- mvt.logpdf(np.array([1.,1.]))-(-3.01552989458359)
-
- mvt1 = MVT((0,0), 1, 1)
- mvt1.logpdf(np.array([1.,1.]))-(-3.48579549941151) #decimal=16
-
- rvs = mvt.rvs(100000)
- assert_almost_equal(np.cov(rvs, rowvar=0), mvt.cov, decimal=1)
-
- mvt31 = MVT(mu3, cov3, 1)
- assert_almost_equal(mvt31.pdf(cov3),
- [0.0007276818698165781, 0.0009980625182293658, 0.0027661422056214652],
- decimal=17)
-
- mvt = MVT(mu3, cov3, 3)
- assert_almost_equal(mvt.pdf(cov3),
- [0.000863777424247410, 0.001277510788307594, 0.004156314279452241],
- decimal=17)
-
-
-if __name__ == '__main__':
- import nose
- nose.runmodule(argv=['__main__','-vvs','-x'],#,'--pdb', '--pdb-failure'],
- exit=False)
-
- print ('Done')
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/testtransf.py b/statsmodels/scikits/statsmodels/sandbox/distributions/tests/testtransf.py
deleted file mode 100644
index 37d139f..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/tests/testtransf.py
+++ /dev/null
@@ -1,167 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-
-
-Created on Sun May 09 22:35:21 2010
-Author: josef-pktd
-License: BSD
-
-todo:
-change moment calculation, (currently uses default _ppf method - I think)
->>> lognormalg.moment(4)
-Warning: The algorithm does not converge. Roundoff error is detected
- in the extrapolation table. It is assumed that the requested tolerance
- cannot be achieved, and that the returned result (if full_output = 1) is
- the best which can be obtained.
-array(2981.0032380193438)
-"""
-
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-from scipy import stats, special
-from scikits.statsmodels.sandbox.distributions.extras import (
- lognormalg, squarenormalg, absnormalg, negsquarenormalg, squaretg)
-
-
-#some patches to scipy.stats.distributions so tests work and pass
-
-#patch frozen distributions with a name
-stats.distributions.rv_frozen.name = property(lambda self: self.dist.name)
-
-#patch f distribution, correct skew and maybe kurtosis
-def f_stats(self, dfn, dfd):
- arr, where, inf, sqrt, nan = np.array, np.where, np.inf, np.sqrt, np.nan
- v2 = arr(dfd*1.0)
- v1 = arr(dfn*1.0)
- mu = where (v2 > 2, v2 / arr(v2 - 2), inf)
- mu2 = 2*v2*v2*(v2+v1-2)/(v1*(v2-2)**2 * (v2-4))
- mu2 = where(v2 > 4, mu2, inf)
- #g1 = 2*(v2+2*v1-2)/(v2-6)*sqrt((2*v2-4)/(v1*(v2+v1-2)))
- g1 = 2*(v2+2*v1-2.)/(v2-6.)*np.sqrt(2*(v2-4.)/(v1*(v2+v1-2.)))
- g1 = where(v2 > 6, g1, nan)
- #g2 = 3/(2*v2-16)*(8+g1*g1*(v2-6))
- g2 = 3/(2.*v2-16)*(8+g1*g1*(v2-6.))
- g2 = where(v2 > 8, g2, nan)
- return mu, mu2, g1, g2
-
-stats.distributions.f_gen._stats = f_stats
-
-#correct kurtosis by subtracting 3 (Fisher)
-#after this it matches halfnorm for arg close to zero
-def foldnorm_stats(self, c):
- arr, where, inf, sqrt, nan = np.array, np.where, np.inf, np.sqrt, np.nan
- exp = np.exp
- pi = np.pi
-
- fac = special.erf(c/sqrt(2))
- mu = sqrt(2.0/pi)*exp(-0.5*c*c)+c*fac
- mu2 = c*c + 1 - mu*mu
- c2 = c*c
- g1 = sqrt(2/pi)*exp(-1.5*c2)*(4-pi*exp(c2)*(2*c2+1.0))
- g1 += 2*c*fac*(6*exp(-c2) + 3*sqrt(2*pi)*c*exp(-c2/2.0)*fac + \
- pi*c*(fac*fac-1))
- g1 /= pi*mu2**1.5
-
- g2 = c2*c2+6*c2+3+6*(c2+1)*mu*mu - 3*mu**4
- g2 -= 4*exp(-c2/2.0)*mu*(sqrt(2.0/pi)*(c2+2)+c*(c2+3)*exp(c2/2.0)*fac)
- g2 /= mu2**2.0
- g2 -= 3.
- return mu, mu2, g1, g2
-
-stats.distributions.foldnorm_gen._stats = foldnorm_stats
-
-
-#-----------------------------
-
-DECIMAL = 5
-
-class Test_Transf2(object):
-
- def __init__(self):
- self.dist_equivalents = [
- #transf, stats.lognorm(1))
- (lognormalg, stats.lognorm(1)),
- #transf2
- (squarenormalg, stats.chi2(1)),
- (absnormalg, stats.halfnorm),
- (absnormalg, stats.foldnorm(1e-5)), #try frozen
- #(negsquarenormalg, 1-stats.chi2), # won't work as distribution
- (squaretg(10), stats.f(1, 10))] #try both frozen
-
-
- l,s = 0.0, 1.0
- self.ppfq = [0.1,0.5,0.9]
- self.xx = [0.95,1.0,1.1]
- self.nxx = [-0.95,-1.0,-1.1]
-
- def test_equivalent(self):
- xx, ppfq = self.xx, self.ppfq
- for d1,d2 in self.dist_equivalents:
-## print d1.name
- assert_almost_equal(d1.cdf(xx), d2.cdf(xx), err_msg='cdf'+d1.name)
- assert_almost_equal(d1.pdf(xx), d2.pdf(xx),
- err_msg='pdf '+d1.name+d2.name)
- assert_almost_equal(d1.sf(xx), d2.sf(xx),
- err_msg='sf '+d1.name+d2.name)
- assert_almost_equal(d1.ppf(ppfq), d2.ppf(ppfq),
- err_msg='ppq '+d1.name+d2.name)
- assert_almost_equal(d1.isf(ppfq), d2.isf(ppfq),
- err_msg='isf '+d1.name+d2.name)
- self.d1 = d1
- self.d2 = d2
-## print d1, d2
-## print d1.moment(3)
-## print d2.moment(3)
- #work around bug#1293
- if hasattr(d2, 'dist'):
- d2mom = d2.dist.moment(3, *d2.args)
- else:
- d2mom = d2.moment(3)
- assert_almost_equal(d1.moment(3), d2mom,
- DECIMAL,
- err_msg='moment '+d1.name+d2.name)
- s1 = d1.stats(moments='mvsk')
- s2 = d2.stats(moments='mvsk')
- #stats(moments='k') prints warning for lognormalg
- assert_almost_equal(s1[:2], s2[:2],
- err_msg='stats '+d1.name+d2.name)
- assert_almost_equal(s1[2:], s2[2:],
- decimal=2, #lognorm for kurtosis
- err_msg='stats '+d1.name+d2.name)
-
- def test_equivalent_negsq(self):
- '''special case negsquarenormalg
-
- negsquarenormalg.cdf(x) == stats.chi2(1).cdf(-x), for x<=0
- '''
- xx, nxx, ppfq = self.xx, self.nxx, self.ppfq
- d1,d2 = (negsquarenormalg, stats.chi2(1))
- #print d1.name
- assert_almost_equal(d1.cdf(nxx), 1-d2.cdf(xx), err_msg='cdf'+d1.name)
- assert_almost_equal(d1.pdf(nxx), d2.pdf(xx))
- assert_almost_equal(d1.sf(nxx), 1-d2.sf(xx))
- assert_almost_equal(d1.ppf(ppfq), -d2.ppf(ppfq)[::-1])
- assert_almost_equal(d1.isf(ppfq), -d2.isf(ppfq)[::-1])
- assert_almost_equal(d1.moment(3), -d2.moment(3))
- ch2oddneg = [v*(-1)**(i+1) for i,v in
- enumerate(d2.stats(moments='mvsk'))]
- assert_almost_equal(d1.stats(moments='mvsk'), ch2oddneg,
- err_msg='stats '+d1.name+d2.name)
-
-
-if __name__ == '__main__':
- tt = Test_Transf2()
- tt.test_equivalent()
- tt.test_equivalent_negsq()
-
- debug = 0
- if debug:
- print negsquarenormalg.ppf([0.1,0.5,0.9])
- print stats.chi2.ppf([0.1,0.5,0.9],1)
- print negsquarenormalg.a
- print negsquarenormalg.b
-
- print absnormalg.stats( moments='mvsk')
- print stats.foldnorm(1e-10).stats( moments='mvsk')
- print stats.halfnorm.stats( moments='mvsk')
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/transform_functions.py b/statsmodels/scikits/statsmodels/sandbox/distributions/transform_functions.py
deleted file mode 100644
index 95fc99b..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/transform_functions.py
+++ /dev/null
@@ -1,191 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Nonlinear Transformation classes
-
-
-Created on Sat Apr 16 16:06:11 2011
-
-Author: Josef Perktold
-License : BSD
-"""
-
-import numpy as np
-
-
-class TransformFunction(object):
-
- def __call__(self, x):
- self.func(x)
-
-
-
-## Hump and U-shaped functions
-
-
-class SquareFunc(TransformFunction):
- '''class to hold quadratic function with inverse function and derivative
-
- using instance methods instead of class methods, if we want extension
- to parameterized function
- '''
-
- def func(self, x):
- return np.power(x, 2.)
-
- def inverseplus(self, x):
- return np.sqrt(x)
-
- def inverseminus(self, x):
- return 0.0 - np.sqrt(x)
-
- def derivplus(self, x):
- return 0.5/np.sqrt(x)
-
- def derivminus(self, x):
- return 0.0 - 0.5/np.sqrt(x)
-
-
-
-
-class NegSquareFunc(TransformFunction):
- '''negative quadratic function
-
- '''
- def func(self, x):
- return -np.power(x,2)
-
- def inverseplus(self, x):
- return np.sqrt(-x)
-
- def inverseminus(self, x):
- return 0.0 - np.sqrt(-x)
-
- def derivplus(self, x):
- return 0.0 - 0.5/np.sqrt(-x)
-
- def derivminus(self, x):
- return 0.5/np.sqrt(-x)
-
-
-class AbsFunc(TransformFunction):
- '''class for absolute value transformation
- '''
-
- def func(self, x):
- return np.abs(x)
-
- def inverseplus(self, x):
- return x
-
- def inverseminus(self, x):
- return 0.0 - x
-
- def derivplus(self, x):
- return 1.0
-
- def derivminus(self, x):
- return 0.0 - 1.0
-
-
-## monotonic functions
-# more monotone functions in families.links, some for restricted domains
-
-
-class LogFunc(TransformFunction):
-
- def func(self, x):
- return np.log(x)
-
- def inverse(self, y):
- return np.exp(y)
-
- def deriv(self, x):
- return 1./x
-
-class ExpFunc(TransformFunction):
-
-
- def func(self, x):
- return np.exp(x)
-
- def inverse(self, y):
- return np.log(y)
-
- def deriv(self, x):
- return np.exp(x)
-
-
-class BoxCoxNonzeroFunc(TransformFunction):
-
- def __init__(self, lamda):
- self.lamda = lamda
-
- def func(self, x):
- return (np.power(x, self.lamda) - 1)/self.lamda
-
- def inverse(self, y):
- return (self.lamda * y + 1)/self.lamda
-
- def deriv(self, x):
- return np.power(x, self.lamda - 1)
-
-
-class AffineFunc(TransformFunction):
-
- def __init__(self, constant, slope):
- self.constant = constant
- self.slope = slope
-
- def func(self, x):
- return self.constant + self.slope * x
-
- def inverse(self, y):
- return (y - self.constant) / self.slope
-
- def deriv(self, x):
- return self.slope
-
-
-class ChainFunc(TransformFunction):
-
- def __init__(self, finn, fout):
- self.finn = finn
- self.fout = fout
-
- def func(self, x):
- return self.fout.func(self.finn.func(x))
-
- def inverse(self, y):
- return self.f1.inverse(self.fout.inverse(y))
-
- def deriv(self, x):
- z = self.finn.func(x)
- return self.fout.deriv(z) * self.finn.deriv(x)
-
-
-#def inverse(x):
-# return np.divide(1.0,x)
-#
-#mux, stdx = 0.05, 0.1
-#mux, stdx = 9.0, 1.0
-#def inversew(x):
-# return 1.0/(1+mux+x*stdx)
-#def inversew_inv(x):
-# return (1.0/x - 1.0 - mux)/stdx #.np.divide(1.0,x)-10
-#
-#def identit(x):
-# return x
-
-
-if __name__ == '__main__':
- absf = AbsFunc()
- absf.func(5) == 5
- absf.func(-5) == 5
- absf.inverseplus(5) == 5
- absf.inverseminus(5) == -5
-
- chainf = ChainFunc(AffineFunc(1,2), BoxCoxNonzeroFunc(2))
- print chainf.func(3.)
- chainf2 = ChainFunc(BoxCoxNonzeroFunc(2), AffineFunc(1,2))
- print chainf.func(3.)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/transformed.py b/statsmodels/scikits/statsmodels/sandbox/distributions/transformed.py
deleted file mode 100644
index dfa74d0..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/transformed.py
+++ /dev/null
@@ -1,453 +0,0 @@
-
-
-## copied from nonlinear_transform_gen.py
-
-''' A class for the distribution of a non-linear monotonic transformation of a continuous random variable
-
-simplest usage:
-example: create log-gamma distribution, i.e. y = log(x),
- where x is gamma distributed (also available in scipy.stats)
- loggammaexpg = Transf_gen(stats.gamma, np.log, np.exp)
-
-example: what is the distribution of the discount factor y=1/(1+x)
- where interest rate x is normally distributed with N(mux,stdx**2)')?
- (just to come up with a story that implies a nice transformation)
- invnormalg = Transf_gen(stats.norm, inversew, inversew_inv, decr=True, a=-np.inf)
-
-This class does not work well for distributions with difficult shapes,
- e.g. 1/x where x is standard normal, because of the singularity and jump at zero.
-
-Note: I'm working from my version of scipy.stats.distribution.
- But this script runs under scipy 0.6.0 (checked with numpy: 1.2.0rc2 and python 2.4)
-
-This is not yet thoroughly tested, polished or optimized
-
-TODO:
- * numargs handling is not yet working properly, numargs needs to be specified (default = 0 or 1)
- * feeding args and kwargs to underlying distribution is untested and incomplete
- * distinguish args and kwargs for the transformed and the underlying distribution
- - currently all args and no kwargs are transmitted to underlying distribution
- - loc and scale only work for transformed, but not for underlying distribution
- - possible to separate args for transformation and underlying distribution parameters
-
- * add _rvs as method, will be faster in many cases
-
-
-Created on Tuesday, October 28, 2008, 12:40:37 PM
-Author: josef-pktd
-License: BSD
-
-'''
-
-from scipy import integrate # for scipy 0.6.0
-
-from scipy import stats, info
-from scipy.stats import distributions
-import numpy as np
-
-def get_u_argskwargs(**kwargs):
- #Todo: What's this? wrong spacing, used in Transf_gen TransfTwo_gen
- u_kwargs = dict((k.replace('u_','',1),v) for k,v in kwargs.items()
- if k.startswith('u_'))
- u_args = u_kwargs.pop('u_args',None)
- return u_args, u_kwargs
-
-class Transf_gen(distributions.rv_continuous):
- '''a class for non-linear monotonic transformation of a continuous random variable
-
- '''
- def __init__(self, kls, func, funcinv, *args, **kwargs):
- #print args
- #print kwargs
-
- self.func = func
- self.funcinv = funcinv
- #explicit for self.__dict__.update(kwargs)
- #need to set numargs because inspection does not work
- self.numargs = kwargs.pop('numargs', 0)
- #print self.numargs
- name = kwargs.pop('name','transfdist')
- longname = kwargs.pop('longname','Non-linear transformed distribution')
- extradoc = kwargs.pop('extradoc',None)
- a = kwargs.pop('a', -np.inf)
- b = kwargs.pop('b', np.inf)
- self.decr = kwargs.pop('decr', False)
- #defines whether it is a decreasing (True)
- # or increasing (False) monotonic transformation
-
-
- self.u_args, self.u_kwargs = get_u_argskwargs(**kwargs)
- self.kls = kls #(self.u_args, self.u_kwargs)
- # possible to freeze the underlying distribution
-
- super(Transf_gen,self).__init__(a=a, b=b, name = name,
- longname = longname, extradoc = extradoc)
-
- def _cdf(self,x,*args, **kwargs):
- #print args
- if not self.decr:
- return self.kls._cdf(self.funcinv(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self.kls._cdf(self.funcinv(x),*args, **kwargs)
- def _ppf(self, q, *args, **kwargs):
- if not self.decr:
- return self.func(self.kls._ppf(q,*args, **kwargs))
- else:
- return self.func(self.kls._ppf(1-q,*args, **kwargs))
-
-
-def inverse(x):
- return np.divide(1.0,x)
-
-mux, stdx = 0.05, 0.1
-mux, stdx = 9.0, 1.0
-def inversew(x):
- return 1.0/(1+mux+x*stdx)
-def inversew_inv(x):
- return (1.0/x - 1.0 - mux)/stdx #.np.divide(1.0,x)-10
-
-def identit(x):
- return x
-
-invdnormalg = Transf_gen(stats.norm, inversew, inversew_inv, decr=True, #a=-np.inf,
- numargs = 0, name = 'discf', longname = 'normal-based discount factor',
- extradoc = '\ndistribution of discount factor y=1/(1+x)) with x N(0.05,0.1**2)')
-
-lognormalg = Transf_gen(stats.norm, np.exp, np.log,
- numargs = 2, a=0, name = 'lnnorm',
- longname = 'Exp transformed normal',
- extradoc = '\ndistribution of y = exp(x), with x standard normal'
- 'precision for moment andstats is not very high, 2-3 decimals')
-
-
-loggammaexpg = Transf_gen(stats.gamma, np.log, np.exp, numargs=1)
-
-## copied form nonlinear_transform_short.py
-
-'''univariate distribution of a non-linear monotonic transformation of a
-random variable
-
-'''
-from scipy import stats
-from scipy.stats import distributions
-import numpy as np
-
-class ExpTransf_gen(distributions.rv_continuous):
- '''Distribution based on log/exp transformation
-
- the constructor can be called with a distribution class
- and generates the distribution of the transformed random variable
-
- '''
- def __init__(self, kls, *args, **kwargs):
- #print args
- #print kwargs
- #explicit for self.__dict__.update(kwargs)
- if 'numargs' in kwargs:
- self.numargs = kwargs['numargs']
- else:
- self.numargs = 1
- if 'numargs' in kwargs:
- name = kwargs['name']
- else:
- name = 'Log transformed distribution'
- if 'a' in kwargs:
- a = kwargs['a']
- else:
- a = 0
- super(ExpTransf_gen,self).__init__(a=0, name = 'Log transformed distribution')
- self.kls = kls
- def _cdf(self,x,*args):
- #print args
- return self.kls._cdf(np.log(x),*args)
- def _ppf(self, q, *args):
- return np.exp(self.kls._ppf(q,*args))
-
-class LogTransf_gen(distributions.rv_continuous):
- '''Distribution based on log/exp transformation
-
- the constructor can be called with a distribution class
- and generates the distribution of the transformed random variable
-
- '''
- def __init__(self, kls, *args, **kwargs):
- #explicit for self.__dict__.update(kwargs)
- if 'numargs' in kwargs:
- self.numargs = kwargs['numargs']
- else:
- self.numargs = 1
- if 'name' in kwargs:
- name = kwargs['name']
- else:
- name = 'Log transformed distribution'
- if 'a' in kwargs:
- a = kwargs['a']
- else:
- a = 0
-
- super(LogTransf_gen,self).__init__(a=a, name = name)
- self.kls = kls
-
- def _cdf(self,x, *args):
- #print args
- return self.kls._cdf(np.exp(x),*args)
- def _ppf(self, q, *args):
- return np.log(self.kls._ppf(q,*args))
-
-def examples_transf():
- ##lognormal = ExpTransf(a=0.0, xa=-10.0, name = 'Log transformed normal')
- ##print lognormal.cdf(1)
- ##print stats.lognorm.cdf(1,1)
- ##print lognormal.stats()
- ##print stats.lognorm.stats(1)
- ##print lognormal.rvs(size=10)
-
- print 'Results for lognormal'
- lognormalg = ExpTransf_gen(stats.norm, a=0, name = 'Log transformed normal general')
- print lognormalg.cdf(1)
- print stats.lognorm.cdf(1,1)
- print lognormalg.stats()
- print stats.lognorm.stats(1)
- print lognormalg.rvs(size=5)
-
- ##print 'Results for loggamma'
- ##loggammag = ExpTransf_gen(stats.gamma)
- ##print loggammag._cdf(1,10)
- ##print stats.loggamma.cdf(1,10)
-
- print 'Results for expgamma'
- loggammaexpg = LogTransf_gen(stats.gamma)
- print loggammaexpg._cdf(1,10)
- print stats.loggamma.cdf(1,10)
- print loggammaexpg._cdf(2,15)
- print stats.loggamma.cdf(2,15)
-
-
- # this requires change in scipy.stats.distribution
- #print loggammaexpg.cdf(1,10)
-
- print 'Results for loglaplace'
- loglaplaceg = LogTransf_gen(stats.laplace)
- print loglaplaceg._cdf(2,10)
- print stats.loglaplace.cdf(2,10)
- loglaplaceexpg = ExpTransf_gen(stats.laplace)
- print loglaplaceexpg._cdf(2,10)
-
-
-
-
-## copied from transformtwo.py
-
-'''
-Created on Apr 28, 2009
-
-@author: Josef Perktold
-'''
-
-''' A class for the distribution of a non-linear u-shaped or hump shaped transformation of a
-continuous random variable
-
-This is a companion to the distributions of non-linear monotonic transformation to the case
-when the inverse mapping is a 2-valued correspondence, for example for absolute value or square
-
-simplest usage:
-example: create squared distribution, i.e. y = x**2,
- where x is normal or t distributed
-
-
-This class does not work well for distributions with difficult shapes,
- e.g. 1/x where x is standard normal, because of the singularity and jump at zero.
-
-
-This verifies for normal - chi2, normal - halfnorm, foldnorm, and t - F
-
-TODO:
- * numargs handling is not yet working properly,
- numargs needs to be specified (default = 0 or 1)
- * feeding args and kwargs to underlying distribution works in t distribution example
- * distinguish args and kwargs for the transformed and the underlying distribution
- - currently all args and no kwargs are transmitted to underlying distribution
- - loc and scale only work for transformed, but not for underlying distribution
- - possible to separate args for transformation and underlying distribution parameters
-
- * add _rvs as method, will be faster in many cases
-
-'''
-
-
-class TransfTwo_gen(distributions.rv_continuous):
- '''Distribution based on a non-monotonic (u- or hump-shaped transformation)
-
- the constructor can be called with a distribution class, and functions
- that define the non-linear transformation.
- and generates the distribution of the transformed random variable
-
- Note: the transformation, it's inverse and derivatives need to be fully
- specified: func, funcinvplus, funcinvminus, derivplus, derivminus.
- Currently no numerical derivatives or inverse are calculated
-
- This can be used to generate distribution instances similar to the
- distributions in scipy.stats.
-
- '''
- #a class for non-linear non-monotonic transformation of a continuous random variable
- def __init__(self, kls, func, funcinvplus, funcinvminus, derivplus,
- derivminus, *args, **kwargs):
- #print args
- #print kwargs
-
- self.func = func
- self.funcinvplus = funcinvplus
- self.funcinvminus = funcinvminus
- self.derivplus = derivplus
- self.derivminus = derivminus
- #explicit for self.__dict__.update(kwargs)
- #need to set numargs because inspection does not work
- self.numargs = kwargs.pop('numargs', 0)
- #print self.numargs
- name = kwargs.pop('name','transfdist')
- longname = kwargs.pop('longname','Non-linear transformed distribution')
- extradoc = kwargs.pop('extradoc',None)
- a = kwargs.pop('a', -np.inf) # attached to self in super
- b = kwargs.pop('b', np.inf) # self.a, self.b would be overwritten
- self.shape = kwargs.pop('shape', False)
- #defines whether it is a `u` shaped or `hump' shaped
- # transformation
-
-
- self.u_args, self.u_kwargs = get_u_argskwargs(**kwargs)
- self.kls = kls #(self.u_args, self.u_kwargs)
- # possible to freeze the underlying distribution
-
- super(TransfTwo_gen,self).__init__(a=a, b=b, name = name,
- longname = longname, extradoc = extradoc)
-
- def _rvs(self, *args):
- self.kls._size = self._size #size attached to self, not function argument
- return self.func(self.kls._rvs(*args))
-
- def _pdf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'u':
- signpdf = 1
- elif self.shape == 'hump':
- signpdf = -1
- else:
- raise ValueError, 'shape can only be `u` or `hump`'
-
- return signpdf * (self.derivplus(x)*self.kls._pdf(self.funcinvplus(x),*args, **kwargs) -
- self.derivminus(x)*self.kls._pdf(self.funcinvminus(x),*args, **kwargs))
- #note scipy _cdf only take *args not *kwargs
-
- def _cdf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'u':
- return self.kls._cdf(self.funcinvplus(x),*args, **kwargs) - \
- self.kls._cdf(self.funcinvminus(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self._sf(x,*args, **kwargs)
-
- def _sf(self,x,*args, **kwargs):
- #print args
- if self.shape == 'hump':
- return self.kls._cdf(self.funcinvplus(x),*args, **kwargs) - \
- self.kls._cdf(self.funcinvminus(x),*args, **kwargs)
- #note scipy _cdf only take *args not *kwargs
- else:
- return 1.0 - self._cdf(x, *args, **kwargs)
-
- def _munp(self, n,*args, **kwargs):
- return self._mom0_sc(n,*args)
-# ppf might not be possible in general case?
-# should be possible in symmetric case
-# def _ppf(self, q, *args, **kwargs):
-# if self.shape == 'u':
-# return self.func(self.kls._ppf(q,*args, **kwargs))
-# elif self.shape == 'hump':
-# return self.func(self.kls._ppf(1-q,*args, **kwargs))
-
-#TODO: rename these functions to have unique names
-
-class SquareFunc(object):
- '''class to hold quadratic function with inverse function and derivative
-
- using instance methods instead of class methods, if we want extension
- to parameterized function
- '''
- def inverseplus(self, x):
- return np.sqrt(x)
-
- def inverseminus(self, x):
- return 0.0 - np.sqrt(x)
-
- def derivplus(self, x):
- return 0.5/np.sqrt(x)
-
- def derivminus(self, x):
- return 0.0 - 0.5/np.sqrt(x)
-
- def squarefunc(self, x):
- return np.power(x,2)
-
-sqfunc = SquareFunc()
-
-squarenormalg = TransfTwo_gen(stats.norm, sqfunc.squarefunc, sqfunc.inverseplus,
- sqfunc.inverseminus, sqfunc.derivplus, sqfunc.derivminus,
- shape='u', a=0.0, b=np.inf,
- numargs = 0, name = 'squarenorm', longname = 'squared normal distribution',
- extradoc = '\ndistribution of the square of a normal random variable' +\
- ' y=x**2 with x N(0.0,1)')
- #u_loc=l, u_scale=s)
-squaretg = TransfTwo_gen(stats.t, sqfunc.squarefunc, sqfunc.inverseplus,
- sqfunc.inverseminus, sqfunc.derivplus, sqfunc.derivminus,
- shape='u', a=0.0, b=np.inf,
- numargs = 1, name = 'squarenorm', longname = 'squared t distribution',
- extradoc = '\ndistribution of the square of a t random variable' +\
- ' y=x**2 with x t(dof,0.0,1)')
-
-def inverseplus(x):
- return np.sqrt(-x)
-
-def inverseminus(x):
- return 0.0 - np.sqrt(-x)
-
-def derivplus(x):
- return 0.0 - 0.5/np.sqrt(-x)
-
-def derivminus(x):
- return 0.5/np.sqrt(-x)
-
-def negsquarefunc(x):
- return -np.power(x,2)
-
-
-negsquarenormalg = TransfTwo_gen(stats.norm, negsquarefunc, inverseplus, inverseminus,
- derivplus, derivminus, shape='hump', a=-np.inf, b=0.0,
- numargs = 0, name = 'negsquarenorm', longname = 'negative squared normal distribution',
- extradoc = '\ndistribution of the negative square of a normal random variable' +\
- ' y=-x**2 with x N(0.0,1)')
- #u_loc=l, u_scale=s)
-
-def inverseplus(x):
- return x
-
-def inverseminus(x):
- return 0.0 - x
-
-def derivplus(x):
- return 1.0
-
-def derivminus(x):
- return 0.0 - 1.0
-
-def absfunc(x):
- return np.abs(x)
-
-
-absnormalg = TransfTwo_gen(stats.norm, np.abs, inverseplus, inverseminus,
- derivplus, derivminus, shape='u', a=0.0, b=np.inf,
- numargs = 0, name = 'absnorm', longname = 'absolute of normal distribution',
- extradoc = '\ndistribution of the absolute value of a normal random variable' +\
- ' y=abs(x) with x N(0,1)')
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/try_max.py b/statsmodels/scikits/statsmodels/sandbox/distributions/try_max.py
deleted file mode 100644
index 6e5caaa..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/try_max.py
+++ /dev/null
@@ -1,75 +0,0 @@
-'''
-
-adjusted from Denis on pystatsmodels mailing list
-
-there might still be problems with loc and scale,
-
-'''
-
-
-from __future__ import division
-import numpy as np
-from scipy import stats
-__date__ = "2010-12-29 dec"
-
-class MaxDist(stats.rv_continuous):
- """ max of n of scipy.stats normal expon ...
- Example:
- maxnormal10 = RVmax( scipy.stats.norm, 10 )
- sample = maxnormal10( size=1000 )
- sample.cdf = cdf ^ n, ppf ^ (1/n)
- """
- def __init__( self, dist, n ):
- self.dist = dist
- self.n = n
- extradoc = 'maximumdistribution is the distribution of the '\
- + 'maximum of n i.i.d. random variable'
- super(MaxDist, self).__init__(name='maxdist', a=dist.a, b=dist.b,
- longname = 'A maximumdistribution', extradoc = extradoc)
-
- def _pdf(self, x, *args, **kw):
- return self.n * self.dist.pdf(x, *args, **kw) \
- * self.dist.cdf(x, *args, **kw )**(self.n-1)
-
- def _cdf(self, x, *args, **kw):
- return self.dist.cdf(x, *args, **kw)**self.n
-
- def _ppf(self, q, *args, **kw):
- # y = F(x) ^ n <=> x = F-1( y ^ 1/n)
- return self.dist.ppf(q**(1./self.n), *args, **kw)
-
-## def rvs( self, *args, **kw ):
-## size = kw.pop( "size", 1 )
-## u = np.random.uniform( size=size, **kw ) ** (1 / self.n)
-## return self.dist.ppf( u, **kw )
-
-
-maxdistr = MaxDist(stats.norm, 10)
-
-print maxdistr.rvs(size=10)
-print maxdistr.stats(moments = 'mvsk')
-
-'''
->>> print maxdistr.stats(moments = 'mvsk')
-(array(1.5387527308351818), array(0.34434382328492852), array(0.40990510188513779), array(0.33139861783918922))
->>> rvs = np.random.randn(1000,10)
->>> stats.describe(rvs.max(1))
-(1000, (-0.028558517753519492, 3.6134958002753685), 1.5560520428553426, 0.34965234046170773, 0.48504309950278557, 0.17691859056779258)
->>> rvs2 = maxdistr.rvs(size=1000)
->>> stats.describe(rvs2)
-(1000, (-0.015290995091401905, 3.3227019151170931), 1.5248146840651813, 0.32827518543128631, 0.23998620901199566, -0.080555658370268013)
->>> rvs2 = maxdistr.rvs(size=10000)
->>> stats.describe(rvs2)
-(10000, (-0.15855091764294812, 4.1898138060896937), 1.532862047388899, 0.34361316060467512, 0.43128838106936973, 0.41115043864619061)
-
->>> maxdistr.pdf(1.5)
-0.69513824417156755
-
-#integrating the pdf
->>> maxdistr.expect()
-1.5387527308351729
->>> maxdistr.expect(lambda x:1)
-0.99999999999999956
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/distributions/try_pot.py b/statsmodels/scikits/statsmodels/sandbox/distributions/try_pot.py
deleted file mode 100644
index 42ce1c8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/distributions/try_pot.py
+++ /dev/null
@@ -1,73 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Wed May 04 06:09:18 2011
-
-@author: josef
-"""
-
-import numpy as np
-
-def mean_residual_life(x, frac=None, alpha=0.05):
- '''emprirical mean residual life or expected shortfall
-
- Parameters
- ----------
-
-
- todo: check formula for std of mean
- doesn't include case for all observations
- last observations std is zero
- vectorize loop using cumsum
- frac doesn't work yet
-
- '''
-
- axis = 0 #searchsorted is 1d only
- x = np.asarray(x)
- nobs = x.shape[axis]
- xsorted = np.sort(x, axis=axis)
- if frac is None:
- xthreshold = xsorted
- else:
- xthreshold = xsorted[np.floor(nobs * frac).astype(int)]
- #use searchsorted instead of simple index in case of ties
- xlargerindex = np.searchsorted(xsorted, xthreshold, side='right')
-
- #replace loop with cumsum ?
- result = []
- for i in range(len(xthreshold)-1):
- k_ind = xlargerindex[i]
- rmean = x[k_ind:].mean()
- rstd = x[k_ind:].std() #this doesn't work for last observations, nans
- rmstd = rstd/np.sqrt(nobs-k_ind) #std error of mean, check formula
- result.append((k_ind, xthreshold[i], rmean, rmstd))
-
- res = np.array(result)
- crit = 1.96 # todo: without loading stats, crit = -stats.t.ppf(0.05)
- confint = res[:,1:2] + crit * res[:,-1:] * np.array([[-1,1]])
- return np.column_stack((res, confint))
-
-expected_shortfall = mean_residual_life #alias
-
-
-if __name__ == "__main__":
- rvs = np.random.standard_t(5, size= 10)
- res = mean_residual_life(rvs)
- print res
- rmean = [rvs[i:].mean() for i in range(len(rvs))]
- print res[:,2] - rmean[1:]
-
-'''
->>> mean_residual_life(rvs, frac= 0.5)
-Traceback (most recent call last):
- File "", line 1, in
- File "E:\Josef\eclipsegworkspace\statsmodels-josef-experimental-030\scikits\statsmodels\sandbox\distributions\try_pot.py", line 35, in mean_residual_life
- for i in range(len(xthreshold)-1):
-TypeError: object of type 'numpy.float64' has no len()
->>> mean_residual_life(rvs, frac= [0.5])
-array([[ 1. , -1.16904459, 0.35165016, 0.41090978, -1.97442776,
- -0.36366142],
- [ 1. , -1.16904459, 0.35165016, 0.41090978, -1.97442776,
- -0.36366142],
- [ 1. , -1.1690445
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/bayesprior.py b/statsmodels/scikits/statsmodels/sandbox/examples/bayesprior.py
deleted file mode 100644
index 0ee4c87..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/bayesprior.py
+++ /dev/null
@@ -1,246 +0,0 @@
-#
-# This script examines the predictive prior densities of two local level
-# models given the same priors for parameters that appear to be the same.
-# Reference: Del Negro and Schorfheide.
-
-try:
- import pymc
- pymc_installed = 1
-except:
- print "pymc not imported"
- pymc_installed = 0
-from scipy.stats import gamma, beta, invgamma
-import numpy as np
-from matplotlib import pyplot as plt
-from scipy import stats
-from scipy.stats import rv_continuous
-from scipy.special import gammaln, gammaincinv, gamma, gammainc
-from numpy import log,exp
-
-#np.random.seed(12345)
-
-class igamma_gen(rv_continuous):
- def _pdf(self, x, a, b):
- return exp(self._logpdf(x,a,b))
- def _logpdf(self, x, a, b):
- return a*log(b) - gammaln(a) -(a+1)*log(x) - b/x
- def _cdf(self, x, a, b):
- return 1.0-gammainc(a,b/x) # why is this different than the wiki?
- def _ppf(self, q, a, b):
- return b/gammaincinv(a,1-q)
-#NOTE: should be correct, work through invgamma example and 2 param inv gamma
-#CDF
- def _munp(self, n, a, b):
- args = (a,b)
- super(igamma_gen, self)._munp(self, n, *args)
-#TODO: is this robust for differential entropy in this case? closed form or
-#shortcuts in special?
- def _entropy(self, *args):
- def integ(x):
- val = self._pdf(x, *args)
- return val*log(val)
-
- entr = -integrate.quad(integ, self.a, self.b)[0]
- if not np.isnan(entr):
- return entr
- else:
- raise ValueError("Problem with integration. Returned nan.")
-
-igamma = igamma_gen(a=0.0, name='invgamma', longname="An inverted gamma",
- shapes = 'a,b', extradoc="""
-
-Inverted gamma distribution
-
-invgamma.pdf(x,a,b) = b**a*x**(-a-1)/gamma(a) * exp(-b/x)
-for x > 0, a > 0, b>0.
-"""
-)
-
-
-#NOTE: the above is unnecessary. B takes the same role as the scale parameter
-# in inverted gamma
-
-palpha = np.random.gamma(400.,.005, size=10000)
-print "First moment: %s\nSecond moment: %s" % (palpha.mean(),palpha.std())
-palpha = palpha[0]
-
-prho = np.random.beta(49.5,49.5, size=1e5)
-print "Beta Distribution"
-print "First moment: %s\nSecond moment: %s" % (prho.mean(),prho.std())
-prho = prho[0]
-
-psigma = igamma.rvs(1.,4.**2/2, size=1e5)
-print "Inverse Gamma Distribution"
-print "First moment: %s\nSecond moment: %s" % (psigma.mean(),psigma.std())
-
-# First do the univariate case
-# y_t = theta_t + epsilon_t
-# epsilon ~ N(0,1)
-# Where theta ~ N(mu,lambda**2)
-
-
-# or the model
-# y_t = theta2_t + theta1_t * y_t-1 + epsilon_t
-
-# Prior 1:
-# theta1 ~ uniform(0,1)
-# theta2|theta1 ~ N(mu,lambda**2)
-# Prior 2:
-# theta1 ~ U(0,1)
-# theta2|theta1 ~ N(mu(1-theta1),lambda**2(1-theta1)**2)
-
-draws = 400
-# prior beliefs, from JME paper
-mu_, lambda_ = 1.,2.
-
-# Model 1
-y1y2 = np.zeros((draws,2))
-for draw in range(draws):
- theta = np.random.normal(mu_,lambda_**2)
- y1 = theta + np.random.normal()
- y2 = theta + np.random.normal()
- y1y2[draw] = y1,y2
-
-
-# log marginal distribution
-lnp1p2_mod1 = stats.norm.pdf(y1,loc=mu_, scale=lambda_**2+1)*\
- stats.norm.pdf(y2,mu_,scale=lambda_**2+1)
-
-
-# Model 2
-pmu_pairsp1 = np.zeros((draws,2))
-y1y2pairsp1 = np.zeros((draws,2))
-# prior 1
-for draw in range(draws):
- theta1 = np.random.uniform(0,1)
- theta2 = np.random.normal(mu_, lambda_**2)
-# mu = theta2/(1-theta1)
-#don't do this to maintain independence theta2 is the _location_
-# y1 = np.random.normal(mu_, lambda_**2)
- y1 = theta2
-# pmu_pairsp1[draw] = mu, theta1
- pmu_pairsp1[draw] = theta2, theta1 # mean, autocorr
- y2 = theta2 + theta1 * y1 + np.random.normal()
- y1y2pairsp1[draw] = y1,y2
-
-
-
-# for a = 0, b = 1 - epsilon = .99999
-# mean of u is .5*.99999
-# variance is 1./12 * .99999**2
-
-# Model 2
-pmu_pairsp2 = np.zeros((draws,2))
-y1y2pairsp2 = np.zeros((draws,2))
-# prior 2
-theta12_2 = []
-for draw in range(draws):
-# y1 = np.random.uniform(-4,6)
- theta1 = np.random.uniform(0,1)
- theta2 = np.random.normal(mu_*(1-theta1), lambda_**2*(1-theta1)**2)
- theta12_2.append([theta1,theta2])
-
- mu = theta2/(1-theta1)
- y1 = np.random.normal(mu_,lambda_**2)
- y2 = theta2 + theta1 * y1 + np.random.normal()
- pmu_pairsp2[draw] = mu, theta1
- y1y2pairsp2[draw] = y1,y2
-
-fig = plt.figure()
-fsp = fig.add_subplot(221)
-fsp.scatter(pmu_pairsp1[:,0], pmu_pairsp1[:,1], color='b', facecolor='none')
-fsp.set_ylabel('Autocorrelation (Y)')
-fsp.set_xlabel('Mean (Y)')
-fsp.set_title('Model 2 (P1)')
-fsp.axis([-20,20,0,1])
-
-fsp = fig.add_subplot(222)
-fsp.scatter(pmu_pairsp2[:,0],pmu_pairsp2[:,1], color='b', facecolor='none')
-fsp.set_title('Model 2 (P2)')
-fsp.set_ylabel('Autocorrelation (Y)')
-fsp.set_xlabel('Mean (Y)')
-fsp.set_title('Model 2 (P2)')
-fsp.axis([-20,20,0,1])
-
-fsp = fig.add_subplot(223)
-fsp.scatter(y1y2pairsp1[:,0], y1y2pairsp1[:,1], color='b', marker='o',
- facecolor='none')
-fsp.scatter(y1y2[:,0], y1y2[:,1], color ='g', marker='+')
-fsp.set_title('Model 1 vs. Model 2 (P1)')
-fsp.set_ylabel('Y(2)')
-fsp.set_xlabel('Y(1)')
-fsp.axis([-20,20,-20,20])
-
-fsp = fig.add_subplot(224)
-fsp.scatter(y1y2pairsp2[:,0], y1y2pairsp2[:,1], color='b', marker='o')
-fsp.scatter(y1y2[:,0], y1y2[:,1], color='g', marker='+')
-fsp.set_title('Model 1 vs. Model 2 (P2)')
-fsp.set_ylabel('Y(2)')
-fsp.set_xlabel('Y(1)')
-fsp.axis([-20,20,-20,20])
-
-#plt.show()
-
-#TODO: this doesn't look the same as the working paper?
-#NOTE: but it matches the language? I think mine is right!
-
-# Contour plots.
-# on the basis of observed data. ie., the mgrid
-#np.mgrid[6:-4:10j,-4:6:10j]
-
-
-
-
-# Example 2:
-# 2 NK Phillips Curves
-# Structural form
-# M1: y_t = 1/alpha *E_t[y_t+1] + mu_t
-# mu_t = p1 * mu_t-1 + epsilon_t
-# epsilon_t ~ N(0,sigma2)
-
-# Reduced form Law of Motion
-# M1: y_t = p1*y_t-1 + 1/(1-p1/alpha)*epsilon_t
-
-# specify prior for M1
-# for i = 1,2
-# theta_i = [alpha
-# p_i
-# sigma]
-# truncate effective priors by the determinancy region
-# for determinancy we need alpha > 1
-# p in [0,1)
-# palpha ~ Gamma(2.00,.10)
-# mean = 2.00
-# std = .1 which implies k = 400, theta = .005
-palpha = np.random.gamma(400,.005)
-
-# pi ~ Beta(.5,.05)
-pi = np.random.beta(49.5, 49.5)
-
-# psigma ~ InvGamma(1.00,4.00)
-#def invgamma(a,b):
-# return np.sqrt(b*a**2/np.sum(np.random.random(b,1)**2, axis=1))
-#NOTE: Use inverse gamma distribution igamma
-psigma = igamma.rvs(1.,4.0, size=1e6) #TODO: parameterization is not correct vs.
-# Del Negro and Schorfheide
-if pymc_installed:
- psigma2 = pymc.rinverse_gamma(1.,4.0, size=1e6)
-else:
- psigma2 = stats.invgamma.rvs(1., scale=4.0, size=1e6)
-nsims = 500
-y = np.zeros((nsims))
-#for i in range(1,nsims):
-# y[i] = .9*y[i-1] + 1/(1-p1/alpha) + np.random.normal()
-
-#Are these supposed to be sampled jointly?
-
-# InvGamma(sigma|v,s) propto sigma**(-v-1)*e**(-vs**2/2*sigma**2)
-#igamma =
-
-# M2: y_t = 1/alpha * E_t[y_t+1] + p2*y_t-1 + mu_t
-# mu_t ~ epsilon_t
-# epsilon_t ~ n(0,sigma2)
-
-# Reduced form Law of Motion
-# y_t = 1/2 (alpha-sqrt(alpha**2-4*p2*alpha)) * y_t-1 + 2*alpha/(alpha + \
-# sqrt(alpha**2 - 4*p2*alpha)) * epsilon_t
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/dji_table.csv b/statsmodels/scikits/statsmodels/sandbox/examples/dji_table.csv
deleted file mode 100644
index bb3bc63..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/dji_table.csv
+++ /dev/null
@@ -1,20434 +0,0 @@
-Date,Open,High,Low,Close,Volume,Adj Close
-2010-02-12,10137.23,10140.18,9962.13,10099.14,4160680000,10099.14
-2010-02-11,10037.85,10184.85,9963.19,10144.19,4400870000,10144.19
-2010-02-10,10055.46,10120.15,9946.26,10038.38,4251450000,10038.38
-2010-02-09,9910.28,10154.24,9910.28,10058.64,5114260000,10058.64
-2010-02-08,10005.43,10059.24,9882.85,9908.39,4089820000,9908.39
-2010-02-05,10003.69,10078.89,9822.84,10012.23,6438900000,10012.23
-2010-02-04,10273.12,10273.12,9984.35,10002.18,5859690000,10002.18
-2010-02-03,10291.73,10356.86,10192.03,10270.55,4285450000,10270.55
-2010-02-02,10186.13,10333.35,10138.75,10296.85,4749540000,10296.85
-2010-02-01,10068.99,10227.24,10068.99,10185.53,4077610000,10185.53
-2010-01-29,10122.04,10272.29,10014.35,10067.33,5412850000,10067.33
-2010-01-28,10236.92,10310.68,10023.80,10120.46,5452400000,10120.46
-2010-01-27,10194.29,10294.13,10060.98,10236.16,5319120000,10236.16
-2010-01-26,10195.35,10323.00,10102.17,10194.29,4731910000,10194.29
-2010-01-25,10175.10,10316.65,10135.95,10196.86,4481390000,10196.86
-2010-01-22,10389.58,10450.04,10133.15,10172.98,6208650000,10172.98
-2010-01-21,10603.91,10651.14,10334.18,10389.88,6874289600,10389.88
-2010-01-20,10719.69,10719.69,10492.36,10603.15,4810560000,10603.15
-2010-01-19,10608.37,10763.45,10555.47,10725.43,4724830000,10725.43
-2010-01-15,10706.99,10736.54,10529.09,10609.65,4758730000,10609.65
-2010-01-14,10680.16,10767.15,10619.02,10710.55,3915200000,10710.55
-2010-01-13,10628.09,10747.12,10569.07,10680.77,4170360000,10680.77
-2010-01-12,10662.86,10701.48,10523.35,10627.26,4716160000,10627.26
-2010-01-11,10620.31,10739.87,10538.91,10663.99,4255780000,10663.99
-2010-01-08,10606.40,10653.11,10509.74,10618.19,4389590000,10618.19
-2010-01-07,10571.11,10655.60,10471.73,10606.86,5270680000,10606.86
-2010-01-06,10564.72,10655.22,10488.28,10573.68,4972660000,10573.68
-2010-01-05,10584.56,10647.14,10468.86,10572.02,2491020000,10572.02
-2010-01-04,10430.69,10641.62,10430.69,10583.96,3991400000,10583.96
-2009-12-31,10548.51,10578.74,10420.56,10428.05,2076990000,10428.05
-2009-12-30,10544.36,10583.28,10470.75,10548.51,2277300000,10548.51
-2009-12-29,10547.83,10605.65,10518.59,10545.41,2491020000,10545.41
-2009-12-28,10517.91,10550.78,10517.91,10547.07,2716400000,10547.07
-2009-12-24,10467.12,10541.26,10450.95,10520.10,1267710000,10520.10
-2009-12-23,10464.32,10520.93,10409.00,10466.44,3166870000,10466.44
-2009-12-22,10414.67,10511.56,10399.33,10464.93,3641130000,10464.93
-2009-12-21,10330.10,10489.41,10330.10,10414.14,3977340000,10414.14
-2009-12-18,10309.39,10412.55,10237.75,10328.89,6325890000,10328.89
-2009-12-17,10439.99,10439.99,10279.39,10308.26,7615070400,10308.26
-2009-12-16,10449.81,10552.75,10401.90,10441.12,4829820000,10441.12
-2009-12-15,10499.31,10542.09,10380.96,10452.00,5045100000,10452.00
-2009-12-14,10471.28,10566.88,10431.60,10501.05,4548490000,10501.05
-2009-12-11,10403.41,10516.47,10385.42,10471.50,3791090000,10471.50
-2009-12-10,10336.00,10479.06,10332.14,10405.83,3996490000,10405.83
-2009-12-09,10282.85,10377.11,10207.29,10337.05,4115410000,10337.05
-2009-12-08,10385.42,10385.42,10216.44,10285.97,4748030000,10285.97
-2009-12-07,10386.86,10478.23,10321.11,10390.11,4103360000,10390.11
-2009-12-04,10368.57,10549.04,10285.44,10388.90,5781140000,10388.90
-2009-12-03,10455.63,10533.55,10338.49,10366.15,4810030000,10366.15
-2009-12-02,10470.44,10537.63,10386.03,10452.68,3941340000,10452.68
-2009-12-01,10343.82,10537.03,10343.82,10471.58,4249310000,10471.58
-2009-11-30,10309.77,10394.34,10238.05,10344.84,3895520000,10344.84
-2009-11-27,10452.23,10452.23,10179.33,10309.92,2362910000,10309.92
-2009-11-25,10432.96,10513.60,10385.65,10464.40,3036350000,10464.40
-2009-11-24,10451.25,10488.66,10335.62,10433.71,3700820000,10433.71
-2009-11-23,10320.13,10524.40,10320.13,10450.95,3827920000,10450.95
-2009-11-20,10327.91,10377.41,10237.60,10318.16,3751230000,10318.16
-2009-11-19,10425.33,10425.33,10226.41,10332.44,4178030000,10332.44
-2009-11-18,10426.27,10471.28,10330.33,10426.31,4293340000,10426.31
-2009-11-17,10404.77,10465.76,10318.69,10437.42,3824070000,10437.42
-2009-11-16,10267.53,10465.83,10267.53,10406.96,4565850000,10406.96
-2009-11-13,10197.85,10332.29,10162.93,10270.47,3792610000,10270.47
-2009-11-12,10289.82,10341.21,10157.64,10197.47,4160250000,10197.47
-2009-11-11,10247.42,10357.38,10217.19,10291.26,4286700000,10291.26
-2009-11-10,10223.01,10300.33,10148.12,10246.97,4394770000,10246.97
-2009-11-09,10020.62,10248.93,10020.62,10226.94,4460030000,10226.94
-2009-11-06,10001.35,10077.08,9898.49,10023.42,4277130000,10023.42
-2009-11-05,9807.80,10043.75,9807.80,10005.96,4848350000,10005.96
-2009-11-04,9767.30,9962.35,9745.76,9802.14,5635510000,9802.14
-2009-11-03,9787.47,9844.84,9649.78,9771.91,5487500000,9771.91
-2009-11-02,9712.13,9883.68,9647.06,9789.44,6202640000,9789.44
-2009-10-30,9961.52,9980.19,9664.89,9712.73,6512420000,9712.73
-2009-10-29,9762.91,9996.67,9762.91,9962.58,5595040000,9962.58
-2009-10-28,9881.11,9940.89,9723.31,9762.69,6600350000,9762.69
-2009-10-27,9868.34,9994.55,9802.36,9882.17,5337380000,9882.17
-2009-10-26,9972.33,10107.99,9817.55,9867.96,6363380000,9867.96
-2009-10-23,10099.90,10138.59,9908.70,9972.18,4767460000,9972.18
-2009-10-22,9946.18,10133.08,9879.07,10081.31,5192410000,10081.31
-2009-10-21,10038.84,10157.94,9909.83,9949.36,5616290000,9949.36
-2009-10-20,10092.42,10157.26,9952.98,10041.48,5396930000,10041.48
-2009-10-19,9996.67,10146.61,9967.49,10092.19,4619240000,10092.19
-2009-10-16,10061.36,10072.62,9884.51,9995.91,4894740000,9995.91
-2009-10-15,10014.88,10087.43,9916.93,10062.94,5369780000,10062.94
-2009-10-14,9873.55,10064.98,9873.55,10015.86,5406420000,10015.86
-2009-10-13,9883.98,9935.53,9780.90,9871.06,4320480000,9871.06
-2009-10-12,9865.24,9978.07,9814.45,9885.80,3710430000,9885.80
-2009-10-09,9786.04,9890.41,9731.32,9864.94,3763780000,9864.94
-2009-10-08,9728.22,9872.50,9709.78,9786.87,4988400000,9786.87
-2009-10-07,9725.69,9782.56,9634.96,9725.58,4238220000,9725.58
-2009-10-06,9601.26,9793.37,9601.26,9731.25,5029840000,9731.25
-2009-10-05,9488.73,9640.33,9449.81,9599.75,4313310000,9599.75
-2009-10-02,9507.62,9571.71,9378.77,9487.67,5583240000,9487.67
-2009-10-01,9711.60,9714.70,9482.98,9509.28,5791450000,9509.28
-2009-09-30,9741.83,9817.17,9583.04,9712.28,5998860000,9712.28
-2009-09-29,9789.74,9861.99,9705.10,9742.20,4949900000,9742.20
-2009-09-28,9663.23,9861.39,9658.09,9789.36,3726950000,9789.36
-2009-09-25,9706.68,9781.73,9605.19,9665.19,4507090000,9665.19
-2009-09-24,9749.99,9836.82,9637.53,9707.44,5505610000,9707.44
-2009-09-23,9830.63,9937.72,9724.90,9748.55,5531930000,9748.55
-2009-09-22,9779.61,9890.71,9742.96,9829.87,5246600000,9829.87
-2009-09-21,9818.61,9846.12,9688.40,9778.86,4615280000,9778.86
-2009-09-18,9784.75,9898.57,9751.27,9820.20,5607970000,9820.20
-2009-09-17,9789.82,9896.38,9706.23,9783.92,6668110000,9783.92
-2009-09-16,9683.71,9837.05,9648.95,9791.71,6793529600,9791.71
-2009-09-15,9626.42,9745.91,9553.80,9683.41,6185620000,9683.41
-2009-09-14,9598.08,9662.10,9492.96,9626.80,4979610000,9626.80
-2009-09-11,9625.44,9698.67,9532.11,9605.41,4922600000,9605.41
-2009-09-10,9546.54,9666.55,9479.20,9627.48,5191380000,9627.48
-2009-09-09,9496.59,9604.43,9435.45,9547.22,5202550000,9547.22
-2009-09-08,9440.13,9564.45,9402.80,9497.34,5235160000,9497.34
-2009-09-04,9345.36,9465.37,9302.28,9441.27,4097370000,9441.27
-2009-09-03,9282.03,9350.27,9252.93,9344.61,4624280000,9344.61
-2009-09-02,9306.21,9378.77,9223.08,9280.67,5842730000,9280.67
-2009-09-01,9492.32,9573.67,9275.15,9310.60,6862360000,9310.60
-2009-08-31,9542.91,9552.97,9389.27,9496.28,5004560000,9496.28
-2009-08-28,9582.74,9666.71,9476.63,9544.20,5785780000,9544.20
-2009-08-27,9541.63,9629.98,9440.43,9580.63,5785880000,9580.63
-2009-08-26,9538.61,9613.65,9446.71,9543.52,5080060000,9543.52
-2009-08-25,9509.21,9646.53,9485.70,9539.29,5768740000,9539.29
-2009-08-24,9506.18,9625.89,9442.17,9509.28,6302450000,9509.28
-2009-08-21,9347.86,9549.19,9347.86,9505.96,5885550000,9505.96
-2009-08-20,9278.55,9385.72,9237.52,9350.05,4893160000,9350.05
-2009-08-19,9208.68,9333.34,9099.14,9279.16,4257000000,9279.16
-2009-08-18,9134.36,9262.08,9124.08,9217.94,4198970000,9217.94
-2009-08-17,9313.85,9313.85,9078.28,9135.34,4854970000,9135.34
-2009-08-14,9398.04,9425.17,9214.47,9321.40,4940750000,9321.40
-2009-08-13,9362.29,9448.97,9269.26,9398.19,5250660000,9398.19
-2009-08-12,9236.06,9442.47,9199.80,9361.61,5498170000,9361.61
-2009-08-11,9334.33,9351.86,9180.23,9241.45,5773160000,9241.45
-2009-08-10,9368.41,9420.56,9249.99,9337.95,5406080000,9337.95
-2009-08-07,9258.45,9466.89,9258.45,9370.07,6827089600,9370.07
-2009-08-06,9277.19,9378.01,9168.44,9256.26,6753380000,9256.26
-2009-08-05,9315.36,9374.38,9173.20,9280.97,7242120000,9280.97
-2009-08-04,9285.05,9370.30,9207.21,9320.19,5713700000,9320.19
-2009-08-03,9173.65,9342.11,9162.09,9286.56,5603440000,9286.56
-2009-07-31,9154.61,9264.65,9081.30,9171.61,5139070000,9171.61
-2009-07-30,9072.84,9298.13,9072.84,9154.46,6035180000,9154.46
-2009-07-29,9092.34,9141.23,8967.26,9070.72,5178770000,9070.72
-2009-07-28,9106.92,9154.76,8980.03,9096.72,5490350000,9096.72
-2009-07-27,9093.09,9154.23,8996.58,9108.51,4631290000,9108.51
-2009-07-24,9066.11,9144.48,8955.77,9093.24,4458300000,9093.24
-2009-07-23,8882.31,9143.05,8837.95,9069.29,5761650000,9069.29
-2009-07-22,8912.39,8993.48,8802.13,8881.26,4634100000,8881.26
-2009-07-21,8848.15,8991.07,8780.82,8915.94,5309300000,8915.94
-2009-07-20,8746.05,8884.43,8717.26,8848.15,4853150000,8848.15
-2009-07-17,8711.89,8797.97,8638.81,8743.94,5141380000,8743.94
-2009-07-16,8612.66,8750.28,8543.97,8711.82,4898640000,8711.82
-2009-07-15,8363.95,8643.04,8363.95,8616.21,5238830000,8616.21
-2009-07-14,8331.37,8407.48,8255.27,8359.49,4149030000,8359.49
-2009-07-13,8146.82,8348.08,8106.16,8331.68,4499440000,8331.68
-2009-07-10,8182.49,8216.65,8057.57,8146.52,3912080000,8146.52
-2009-07-09,8179.01,8273.48,8117.27,8183.17,4347170000,8183.17
-2009-07-08,8157.02,8259.05,8057.94,8178.41,5721780000,8178.41
-2009-07-07,8324.95,8355.48,8138.51,8163.60,4673300000,8163.60
-2009-07-06,8279.30,8364.02,8156.49,8324.87,4712580000,8324.87
-2009-07-02,8503.00,8503.00,8260.41,8280.74,3931000000,8280.74
-2009-07-01,8447.53,8610.32,8447.00,8504.06,3919400000,8504.06
-2009-06-30,8528.93,8584.17,8369.99,8447.00,4627570000,8447.00
-2009-06-29,8440.13,8569.59,8406.57,8529.38,4211760000,8529.38
-2009-06-26,8468.54,8509.73,8364.17,8438.39,6076660000,8438.39
-2009-06-25,8299.25,8512.60,8236.07,8472.40,4911240000,8472.40
-2009-06-24,8323.51,8456.83,8246.20,8299.86,4636720000,8299.86
-2009-06-23,8340.44,8413.22,8239.17,8322.91,5071020000,8322.91
-2009-06-22,8538.52,8538.52,8306.66,8339.01,4903940000,8339.01
-2009-06-19,8556.96,8665.26,8476.02,8539.73,5713390000,8539.73
-2009-06-18,8496.73,8634.28,8438.61,8555.60,4684010000,8555.60
-2009-06-17,8504.36,8602.99,8421.46,8497.18,5523650000,8497.18
-2009-06-16,8612.44,8688.69,8483.58,8504.67,4951200000,8504.67
-2009-06-15,8798.50,8798.50,8540.87,8612.13,4697880000,8612.13
-2009-06-12,8770.01,8850.95,8671.61,8799.26,4528120000,8799.26
-2009-06-11,8736.23,8911.11,8697.99,8770.92,5500840000,8770.92
-2009-06-10,8763.66,8871.36,8625.21,8739.02,5379420000,8739.02
-2009-06-09,8764.83,8854.80,8688.99,8763.06,4439950000,8763.06
-2009-06-08,8759.35,8832.13,8593.84,8764.49,4483430000,8764.49
-2009-06-05,8751.75,8900.48,8673.41,8763.13,5277910000,8763.13
-2009-06-04,8665.72,8802.59,8609.17,8750.24,5352890000,8750.24
-2009-06-03,8740.07,8750.83,8556.90,8675.24,5323770000,8675.24
-2009-06-02,8721.60,8832.16,8635.25,8740.87,5987340000,8740.87
-2009-06-01,8501.53,8797.58,8501.53,8721.44,6370440000,8721.44
-2009-05-29,8404.04,8541.27,8323.91,8500.33,6050420000,8500.33
-2009-05-28,8300.50,8463.70,8221.65,8403.80,5738980000,8403.80
-2009-05-27,8473.65,8534.66,8280.82,8300.02,5698800000,8300.02
-2009-05-26,8275.33,8523.59,8194.33,8473.49,5667050000,8473.49
-2009-05-22,8292.21,8415.75,8218.86,8277.32,5155320000,8277.32
-2009-05-21,8416.07,8416.07,8185.25,8292.13,6019840000,8292.13
-2009-05-20,8471.82,8645.85,8376.40,8422.04,8205060000,8422.04
-2009-05-19,8502.48,8594.16,8402.61,8474.85,6616270000,8474.85
-2009-05-18,8270.15,8534.66,8270.15,8504.08,5702150000,8504.08
-2009-05-15,8326.22,8422.28,8206.67,8268.64,5439720000,8268.64
-2009-05-14,8285.92,8427.93,8218.94,8331.32,6134870000,8331.32
-2009-05-13,8461.80,8461.80,8208.74,8284.89,7091820000,8284.89
-2009-05-12,8419.17,8574.88,8306.47,8469.11,6871750400,8469.11
-2009-05-11,8569.23,8569.23,8347.41,8418.77,6150600000,8418.77
-2009-05-08,8410.73,8657.96,8388.11,8574.65,8163280000,8574.65
-2009-05-07,8513.56,8651.51,8296.04,8409.85,9120100000,8409.85
-2009-05-06,8403.48,8608.26,8350.12,8512.28,8555040000,8512.28
-2009-05-05,8425.55,8520.80,8321.37,8410.65,6882860000,8410.65
-2009-05-04,8213.60,8488.87,8213.60,8426.74,7038840000,8426.74
-2009-05-01,8167.41,8278.28,8047.54,8212.41,5312170000,8212.41
-2009-04-30,8188.51,8383.81,8083.62,8168.12,6862540000,8168.12
-2009-04-29,8018.31,8278.12,8018.31,8185.73,6101620000,8185.73
-2009-04-28,8023.56,8136.74,7898.75,8016.95,6328000000,8016.95
-2009-04-27,8073.82,8152.27,7920.42,8025.00,5613460000,8025.00
-2009-04-24,7957.45,8182.30,7905.60,8076.29,7114440000,8076.29
-2009-04-23,7886.81,8015.36,7762.80,7957.06,6563100000,7957.06
-2009-04-22,7964.78,8111.02,7802.46,7886.57,7327860000,7886.57
-2009-04-21,7841.73,8027.54,7699.79,7969.56,7436489600,7969.56
-2009-04-20,8128.94,8128.94,7801.58,7841.73,6973960000,7841.73
-2009-04-17,8125.43,8251.20,8024.92,8131.33,7352009600,8131.33
-2009-04-16,8029.14,8201.81,7933.08,8125.43,6598670000,8125.43
-2009-04-15,7914.92,8069.92,7808.19,8029.62,6241100000,8029.62
-2009-04-14,8057.41,8076.05,7840.53,7920.18,7569840000,7920.18
-2009-04-13,8082.02,8146.86,7888.96,8057.81,6434890000,8057.81
-2009-04-09,7839.89,8150.44,7839.89,8083.38,7600710400,8083.38
-2009-04-08,7788.68,7925.36,7715.09,7837.11,5938460000,7837.11
-2009-04-07,7968.92,7968.92,7733.56,7789.56,5155580000,7789.56
-2009-04-06,8016.16,8037.42,7830.66,7975.85,6210000000,7975.85
-2009-04-03,7980.63,8090.71,7850.33,8017.59,5855640000,8017.59
-2009-04-02,7763.99,8129.33,7763.99,7978.08,7542809600,7978.08
-2009-04-01,7606.13,7804.77,7450.74,7761.60,6034140000,7761.60
-2009-03-31,7523.77,7744.24,7502.98,7608.92,6089100000,7608.92
-2009-03-30,7773.31,7773.31,7406.85,7522.02,5912660000,7522.02
-2009-03-27,7922.57,7922.57,7695.97,7776.18,5600210000,7776.18
-2009-03-26,7752.36,7969.00,7709.19,7924.56,6992960000,7924.56
-2009-03-25,7659.81,7897.48,7539.54,7749.81,7687180000,7749.81
-2009-03-24,7773.47,7837.11,7585.98,7660.21,6767980000,7660.21
-2009-03-23,7279.25,7789.24,7279.25,7775.86,7715769600,7775.86
-2009-03-20,7402.31,7524.81,7215.77,7278.38,7643720000,7278.38
-2009-03-19,7489.68,7624.45,7325.13,7400.80,9033870400,7400.80
-2009-03-18,7395.70,7592.03,7218.24,7486.58,9098449600,7486.58
-2009-03-17,7218.00,7407.41,7129.60,7395.70,6156800000,7395.70
-2009-03-16,7225.33,7428.75,7171.41,7216.97,7883540000,7216.97
-2009-03-13,7219.20,7241.98,7106.34,7223.98,6787089600,7223.98
-2009-03-12,6932.39,7198.25,6840.79,7170.06,7326630400,7170.06
-2009-03-11,6923.13,7078.22,6804.55,6930.40,7287809600,6930.40
-2009-03-10,6547.01,6951.50,6547.01,6926.49,8618329600,6926.49
-2009-03-09,6625.74,6758.44,6440.08,6547.05,7277320000,6547.05
-2009-03-06,6595.16,6776.44,6443.27,6626.94,7331830400,6626.94
-2009-03-05,6874.01,6874.01,6531.28,6594.44,7507249600,6594.44
-2009-03-04,6726.50,7012.19,6715.11,6875.84,7673620000,6875.84
-2009-03-03,6764.81,6922.59,6661.74,6726.02,7583230400,6726.02
-2009-03-02,7056.48,7056.48,6736.69,6763.29,7868289600,6763.29
-2009-02-27,7180.97,7244.61,6952.06,7062.93,8926480000,7062.93
-2009-02-26,7269.06,7451.13,7135.25,7182.08,7599969600,7182.08
-2009-02-25,7349.58,7442.13,7123.94,7270.89,7483640000,7270.89
-2009-02-24,7115.34,7396.34,7077.35,7350.94,7234489600,7350.94
-2009-02-23,7365.99,7477.10,7092.64,7114.78,6509300000,7114.78
-2009-02-20,7461.49,7500.44,7226.29,7365.67,8210590400,7365.67
-2009-02-19,7555.23,7679.01,7420.63,7465.95,5746940000,7465.95
-2009-02-18,7546.35,7661.56,7451.37,7555.63,5740710000,7555.63
-2009-02-17,7845.63,7845.63,7502.59,7552.60,5907820000,7552.60
-2009-02-13,7933.00,8005.96,7811.38,7850.41,5296650000,7850.41
-2009-02-12,7931.97,7956.02,7662.04,7932.76,6476460000,7932.76
-2009-02-11,7887.05,8042.36,7820.14,7939.53,5926460000,7939.53
-2009-02-10,8269.36,8293.17,7835.83,7888.88,6770169600,7888.88
-2009-02-09,8281.38,8376.56,8137.70,8270.87,5574370000,8270.87
-2009-02-06,8056.38,8360.07,8044.03,8280.59,6484100000,8280.59
-2009-02-05,7954.83,8138.65,7811.70,8063.07,6624030000,8063.07
-2009-02-04,8070.32,8197.04,7899.79,7956.66,6420450000,7956.66
-2009-02-03,7936.99,8157.13,7855.19,8078.36,5886310000,8078.36
-2009-02-02,8000.62,8053.43,7796.17,7936.83,5673270000,7936.83
-2009-01-30,8149.01,8243.95,7924.88,8000.86,5350580000,8000.86
-2009-01-29,8373.06,8373.06,8092.14,8149.01,5067060000,8149.01
-2009-01-28,8175.93,8446.33,8175.93,8375.45,6199180000,8375.45
-2009-01-27,8117.39,8264.10,8042.60,8174.73,5353260000,8174.73
-2009-01-26,8078.04,8278.12,7971.15,8116.03,6039940000,8116.03
-2009-01-23,8108.79,8187.88,7856.86,8077.56,5832160000,8077.56
-2009-01-22,8224.43,8239.33,7925.75,8122.80,5843830000,8122.80
-2009-01-21,7949.17,8286.40,7890.63,8228.10,6467830000,8228.10
-2009-01-20,8279.63,8309.02,7920.66,7949.09,6375230000,7949.09
-2009-01-16,8215.67,8424.59,8086.01,8281.22,6786040000,8281.22
-2009-01-15,8196.24,8326.06,7949.65,8212.49,7807350400,8212.49
-2009-01-14,8446.01,8446.01,8097.95,8200.14,5407880000,8200.14
-2009-01-13,8474.61,8584.68,8325.59,8448.56,5567460000,8448.56
-2009-01-12,8599.26,8653.97,8391.85,8473.97,4725050000,8473.97
-2009-01-09,8738.80,8800.45,8541.75,8599.18,4716500000,8599.18
-2009-01-08,8769.94,8807.14,8593.52,8742.46,4991550000,8742.46
-2009-01-07,8996.94,8996.94,8690.45,8769.70,4704940000,8769.70
-2009-01-06,8954.57,9175.19,8868.07,9015.10,5392620000,9015.10
-2009-01-05,9027.13,9093.47,8841.70,8952.89,5413910000,8952.89
-2009-01-02,8772.25,9080.57,8725.10,9034.69,4048270000,9034.69
-2008-12-31,8666.48,8862.65,8634.06,8776.39,4172940000,8776.39
-2008-12-30,8487.51,8700.89,8463.70,8668.39,3627800000,8668.39
-2008-12-29,8515.87,8575.60,8349.24,8483.93,3323430000,8483.93
-2008-12-26,8468.71,8581.58,8434.94,8515.55,1880050000,8515.55
-2008-12-24,8428.17,8498.26,8417.02,8468.48,1546550000,8468.48
-2008-12-23,8518.65,8647.60,8376.80,8419.49,4051970000,8419.49
-2008-12-22,8573.37,8672.06,8351.79,8519.69,4869850000,8519.69
-2008-12-19,8606.50,8823.78,8499.06,8579.11,6705310000,8579.11
-2008-12-18,8823.94,8946.36,8516.02,8604.99,5675000000,8604.99
-2008-12-17,8921.91,9001.96,8701.13,8824.34,5907380000,8824.34
-2008-12-16,8565.65,8985.63,8534.03,8924.14,6009780000,8924.14
-2008-12-15,8628.81,8738.40,8431.04,8564.53,4982390000,8564.53
-2008-12-12,8563.10,8705.43,8272.22,8629.68,5959590000,8629.68
-2008-12-11,8750.13,8861.86,8480.18,8565.09,5513840000,8565.09
-2008-12-10,8693.00,8942.46,8589.86,8761.42,5942130000,8761.42
-2008-12-09,8934.10,8978.14,8591.69,8691.33,5693110000,8691.33
-2008-12-08,8637.65,9151.61,8637.65,8934.18,6553600000,8934.18
-2008-12-05,8376.08,8722.47,8084.25,8635.42,6165370000,8635.42
-2008-12-04,8587.07,8705.98,8222.84,8376.24,5860390000,8376.24
-2008-12-03,8409.14,8654.77,8170.19,8591.69,6221880000,8591.69
-2008-12-02,8153.75,8490.62,8072.47,8419.09,6170100000,8419.09
-2008-12-01,8826.89,8826.89,8123.04,8149.09,6052010000,8149.09
-2008-11-28,8690.24,8840.33,8687.05,8829.04,2740860000,8829.04
-2008-11-26,8464.49,8760.46,8250.80,8726.61,5793260000,8726.61
-2008-11-25,8445.14,8682.09,8244.43,8479.47,6952700000,8479.47
-2008-11-24,8048.09,8624.27,8023.32,8443.39,7879440000,8443.39
-2008-11-21,7552.37,8121.45,7392.27,8046.42,9495900000,8046.42
-2008-11-20,7995.53,8224.35,7464.51,7552.29,9093740000,7552.29
-2008-11-19,8420.69,8534.34,7967.33,7997.28,6548600000,7997.28
-2008-11-18,8273.34,8540.08,8075.81,8424.75,6679470000,8424.75
-2008-11-17,8494.84,8596.31,8197.12,8273.58,4927490000,8273.58
-2008-11-14,8822.19,8980.93,8421.08,8497.31,5881030000,8497.31
-2008-11-13,8281.14,8898.41,7947.74,8835.25,7849120000,8835.25
-2008-11-12,8684.52,8684.52,8235.66,8282.66,5764180000,8282.66
-2008-11-11,8864.32,8892.20,8499.62,8693.96,4998340000,8693.96
-2008-11-10,8946.60,9212.94,8735.61,8870.54,4572000000,8870.54
-2008-11-07,8696.03,9032.54,8661.22,8943.81,4931640000,8943.81
-2008-11-06,9134.01,9216.37,8607.14,8695.79,6102230000,8695.79
-2008-11-05,9616.60,9628.15,9086.06,9139.27,5426640000,9139.27
-2008-11-04,9323.89,9711.46,9323.89,9625.28,5531290000,9625.28
-2008-11-03,9326.04,9488.92,9175.03,9319.83,4492280000,9319.83
-2008-10-31,9179.09,9498.48,9014.78,9325.01,6394350000,9325.01
-2008-10-30,9004.66,9380.36,8916.81,9180.69,6175830000,9180.69
-2008-10-29,9062.33,9405.05,8800.61,8990.96,7077800000,8990.96
-2008-10-28,8178.72,9112.51,8153.79,9065.12,7096950400,9065.12
-2008-10-27,8375.92,8639.64,8085.37,8175.77,5558050000,8175.77
-2008-10-24,8683.21,8683.21,8088.63,8378.95,6550050000,8378.95
-2008-10-23,8519.77,8864.48,8200.06,8691.25,7189900000,8691.25
-2008-10-22,9027.84,9027.84,8324.07,8519.21,6147980000,8519.21
-2008-10-21,9179.11,9293.07,9017.30,9045.21,5121830000,9045.21
-2008-10-20,8852.30,9305.89,8799.49,9265.43,5175640000,9265.43
-2008-10-17,8975.35,9304.38,8640.83,8852.22,6581780000,8852.22
-2008-10-16,8577.04,9073.64,8176.17,8979.26,7984500000,8979.26
-2008-10-15,9301.91,9301.91,8516.50,8577.91,6542330000,8577.91
-2008-10-14,9388.97,9924.28,9050.06,9310.99,8161990400,9310.99
-2008-10-13,8462.42,9501.91,8462.42,9387.61,7263369600,9387.61
-2008-10-10,8568.67,8989.13,7773.71,8451.19,11456230400,8451.19
-2008-10-09,9261.69,9522.77,8523.27,8579.19,8285670400,8579.19
-2008-10-08,9437.23,9778.04,9042.97,9258.10,8716329600,9258.10
-2008-10-07,9955.42,10205.04,9391.67,9447.11,7069209600,9447.11
-2008-10-06,10322.52,10322.52,9503.10,9955.50,7956020000,9955.50
-2008-10-03,10483.96,10844.69,10261.75,10325.38,6716120000,10325.38
-2008-10-02,10825.54,10843.10,10368.08,10482.85,6285640000,10482.85
-2008-10-01,10847.40,11022.06,10495.99,10831.07,5782130000,10831.07
-2008-09-30,10371.58,10922.03,10371.58,10850.66,6065000000,10850.66
-2008-09-29,11139.62,11139.62,10266.76,10365.45,7305060000,10365.45
-2008-09-26,11019.04,11218.48,10781.37,11143.13,5383610000,11143.13
-2008-09-25,10827.17,11206.05,10799.77,11022.06,5877640000,11022.06
-2008-09-24,10850.02,11041.02,10696.38,10825.17,4820360000,10825.17
-2008-09-23,11015.69,11214.65,10763.77,10854.17,5185730000,10854.17
-2008-09-22,11394.42,11450.81,10956.43,11015.69,5368130000,11015.69
-2008-09-19,11027.51,11415.48,11027.51,11388.44,9387169600,11388.44
-2008-09-18,10609.01,11149.07,10403.75,11019.69,10082689600,11019.69
-2008-09-17,11056.58,11068.87,10521.81,10609.66,9431870400,10609.66
-2008-09-16,10905.62,11193.12,10604.70,11059.02,9459830400,11059.02
-2008-09-15,11416.37,11416.37,10849.85,10917.51,8279510400,10917.51
-2008-09-12,11429.32,11532.72,11191.08,11421.99,6273260000,11421.99
-2008-09-11,11264.44,11461.15,11018.72,11433.71,6869249600,11433.71
-2008-09-10,11233.91,11453.50,11135.64,11268.92,6543440000,11268.92
-2008-09-09,11514.73,11623.50,11209.81,11230.73,7380630400,11230.73
-2008-09-08,11224.87,11656.64,11224.87,11510.74,7351340000,11510.74
-2008-09-05,11185.63,11301.73,10998.77,11220.96,5017080000,11220.96
-2008-09-04,11532.48,11532.48,11130.26,11188.23,5212500000,11188.23
-2008-09-03,11506.01,11629.69,11328.84,11532.88,5056980000,11532.88
-2008-09-02,11545.63,11831.29,11444.79,11516.92,4783560000,11516.92
-2008-08-29,11713.23,11730.49,11508.78,11543.55,3288120000,11543.55
-2008-08-28,11499.87,11756.46,11493.72,11715.18,3854280000,11715.18
-2008-08-27,11412.46,11575.14,11349.69,11502.51,3499610000,11502.51
-2008-08-26,11383.56,11483.62,11284.47,11412.87,3587570000,11412.87
-2008-08-25,11626.19,11626.19,11336.82,11386.25,3420600000,11386.25
-2008-08-22,11426.79,11684.00,11426.79,11628.06,3741070000,11628.06
-2008-08-21,11415.23,11501.29,11263.63,11430.21,4032590000,11430.21
-2008-08-20,11345.94,11511.06,11240.18,11417.43,4555030000,11417.43
-2008-08-19,11478.09,11501.45,11260.53,11348.55,4159760000,11348.55
-2008-08-18,11659.65,11744.49,11410.18,11479.39,3829290000,11479.39
-2008-08-15,11611.21,11776.41,11540.05,11659.90,4041820000,11659.90
-2008-08-14,11532.07,11744.33,11399.84,11615.93,4064000000,11615.93
-2008-08-13,11632.81,11689.05,11377.37,11532.96,4787600000,11532.96
-2008-08-12,11781.70,11830.39,11541.43,11642.47,4711290000,11642.47
-2008-08-11,11729.67,11933.55,11580.19,11782.35,5067310000,11782.35
-2008-08-08,11432.09,11808.49,11344.23,11734.32,4966810000,11734.32
-2008-08-07,11655.42,11680.50,11355.63,11431.43,5319380000,11431.43
-2008-08-06,11603.64,11745.71,11454.64,11656.07,4873420000,11656.07
-2008-08-05,11286.02,11652.24,11286.02,11615.77,1219310000,11615.77
-2008-08-04,11326.32,11449.67,11144.59,11284.15,4562280000,11284.15
-2008-08-01,11379.89,11512.61,11205.41,11326.32,4684870000,11326.32
-2008-07-31,11577.99,11631.16,11317.69,11378.02,5346050000,11378.02
-2008-07-30,11397.56,11681.47,11328.68,11583.69,5631330000,11583.69
-2008-07-29,11133.44,11444.05,11086.13,11397.56,5414240000,11397.56
-2008-07-28,11369.47,11439.25,11094.76,11131.08,4282960000,11131.08
-2008-07-25,11341.14,11540.78,11252.47,11370.69,4672560000,11370.69
-2008-07-24,11630.34,11714.21,11288.79,11349.28,6127980000,11349.28
-2008-07-23,11603.39,11820.21,11410.02,11632.38,6705830000,11632.38
-2008-07-22,11457.90,11692.79,11273.32,11602.50,6180230000,11602.50
-2008-07-21,11495.02,11663.40,11339.02,11467.34,4630640000,11467.34
-2008-07-18,11436.56,11599.57,11290.50,11496.57,5653280000,11496.57
-2008-07-17,11238.39,11538.50,11118.46,11446.66,7365209600,11446.66
-2008-07-16,10961.89,11308.41,10831.61,11239.28,6738630400,11239.28
-2008-07-15,11050.80,11201.67,10731.96,10962.54,7363640000,10962.54
-2008-07-14,11103.64,11299.70,10972.63,11055.19,5434860000,11055.19
-2008-07-11,11226.17,11292.04,10908.64,11100.54,6742200000,11100.54
-2008-07-10,11148.01,11351.24,11006.01,11229.02,5840430000,11229.02
-2008-07-09,11381.93,11505.12,11115.61,11147.44,5181000000,11147.44
-2008-07-08,11225.03,11459.52,11101.19,11384.21,6034110000,11384.21
-2008-07-07,11289.19,11477.52,11094.44,11231.96,5265420000,11231.96
-2008-07-03,11297.33,11336.49,11158.02,11288.53,3247590000,11288.53
-2008-07-02,11382.34,11510.41,11180.58,11215.51,5276090000,11215.51
-2008-07-01,11344.64,11465.79,11106.65,11382.26,5846290000,11382.26
-2008-06-30,11345.70,11504.55,11226.34,11350.01,5032330000,11350.01
-2008-06-27,11452.85,11556.33,11248.48,11346.51,6208260000,11346.51
-2008-06-26,11808.57,11808.57,11431.92,11453.42,5231280000,11453.42
-2008-06-25,11805.31,12008.70,11683.75,11811.83,4825640000,11811.83
-2008-06-24,11842.36,11962.37,11668.53,11807.43,4705050000,11807.43
-2008-06-23,11843.83,11986.96,11731.06,11842.36,4186370000,11842.36
-2008-06-20,12062.19,12078.23,11785.04,11842.69,5324900000,11842.69
-2008-06-19,12022.54,12188.31,11881.03,12063.09,4811670000,12063.09
-2008-06-18,12158.68,12212.33,11947.07,12029.06,4573570000,12029.06
-2008-06-17,12269.65,12378.67,12114.14,12160.30,3801960000,12160.30
-2008-06-16,12306.86,12381.44,12139.79,12269.08,3706940000,12269.08
-2008-06-13,12144.59,12376.72,12096.23,12307.35,4080420000,12307.35
-2008-06-12,12089.63,12337.72,12041.43,12141.58,4734240000,12141.58
-2008-06-11,12286.34,12317.20,12029.46,12083.77,4779980000,12083.77
-2008-06-10,12277.71,12425.98,12116.58,12289.76,4635070000,12289.76
-2008-06-09,12210.13,12406.36,12102.50,12280.32,4404570000,12280.32
-2008-06-06,12602.74,12602.74,12180.50,12209.81,4771660000,12209.81
-2008-06-05,12388.81,12652.81,12358.07,12604.45,4350790000,12604.45
-2008-06-04,12391.86,12540.37,12283.74,12390.48,4338640000,12390.48
-2008-06-03,12503.20,12620.98,12317.61,12402.85,4396380000,12402.85
-2008-06-02,12637.67,12645.40,12385.76,12503.82,3714320000,12503.82
-2008-05-30,12647.36,12750.84,12555.60,12638.32,3845630000,12638.32
-2008-05-29,12593.87,12760.21,12493.47,12646.22,3894440000,12646.22
-2008-05-28,12542.90,12693.77,12437.38,12594.03,3927240000,12594.03
-2008-05-27,12479.63,12626.84,12397.56,12548.35,3588860000,12548.35
-2008-05-23,12620.90,12637.43,12420.20,12479.63,3516380000,12479.63
-2008-05-22,12597.69,12743.68,12515.78,12625.62,3955960000,12625.62
-2008-05-21,12824.94,12926.71,12550.39,12601.19,4517990000,12601.19
-2008-05-20,13026.04,13026.04,12742.29,12828.68,3854320000,12828.68
-2008-05-19,12985.41,13170.97,12899.19,13028.16,3683970000,13028.16
-2008-05-16,12992.74,13069.52,12860.60,12986.80,3842590000,12986.80
-2008-05-15,12891.29,13028.16,12798.39,12992.66,3836480000,12992.66
-2008-05-14,12825.12,13037.44,12806.21,12898.38,3979370000,12898.38
-2008-05-13,12872.08,12957.65,12716.16,12832.18,4018590000,12832.18
-2008-05-12,12768.38,12903.33,12746.36,12876.05,3370630000,12876.05
-2008-05-09,12860.68,12871.75,12648.09,12745.88,3518620000,12745.88
-2008-05-08,12814.84,12965.95,12727.56,12866.78,3827550000,12866.78
-2008-05-07,13010.82,13097.77,12756.14,12814.35,4075860000,12814.35
-2008-05-06,12968.89,13071.07,12817.53,13020.83,3924100000,13020.83
-2008-05-05,13056.57,13105.75,12896.50,12969.54,3410090000,12969.54
-2008-05-02,13012.53,13191.49,12931.35,13058.20,3953030000,13058.20
-2008-05-01,12818.34,13079.94,12721.94,13010.00,4448780000,13010.00
-2008-04-30,12831.45,13052.91,12746.45,12820.13,4508890000,12820.13
-2008-04-29,12870.37,12970.27,12737.82,12831.94,3815320000,12831.94
-2008-04-28,12890.76,13015.62,12791.55,12871.75,3607000000,12871.75
-2008-04-25,12848.38,12987.29,12703.70,12891.86,3891150000,12891.86
-2008-04-24,12764.68,12979.88,12651.51,12848.95,4461660000,12848.95
-2008-04-23,12721.45,12883.80,12627.00,12763.22,4103610000,12763.22
-2008-04-22,12825.02,12870.86,12604.53,12720.23,3821900000,12720.23
-2008-04-21,12850.91,12902.69,12666.08,12825.02,3420570000,12825.02
-2008-04-18,12626.76,12965.47,12626.76,12849.36,4222380000,12849.36
-2008-04-17,12617.40,12725.93,12472.71,12620.49,3713880000,12620.49
-2008-04-16,12371.51,12670.56,12371.51,12619.27,4260370000,12619.27
-2008-04-15,12303.60,12459.36,12223.97,12362.47,3581230000,12362.47
-2008-04-14,12324.77,12430.86,12208.42,12302.06,3565020000,12302.06
-2008-04-11,12579.78,12579.78,12280.89,12325.42,3723790000,12325.42
-2008-04-10,12526.78,12705.90,12447.96,12581.98,3686150000,12581.98
-2008-04-09,12574.65,12686.93,12416.53,12527.26,3556670000,12527.26
-2008-04-08,12602.66,12664.38,12440.55,12576.44,3602500000,12576.44
-2008-04-07,12612.59,12786.83,12550.22,12612.43,3747780000,12612.43
-2008-04-04,12626.35,12738.30,12489.40,12609.42,3703100000,12609.42
-2008-04-03,12604.69,12734.97,12455.04,12626.03,3920100000,12626.03
-2008-04-02,12651.67,12790.28,12488.22,12608.92,4320440000,12608.92
-2008-04-01,12266.64,12693.93,12266.64,12654.36,4745120000,12654.36
-2008-03-31,12215.92,12384.84,12095.18,12262.89,4188990000,12262.89
-2008-03-28,12303.92,12441.67,12164.22,12216.40,3686980000,12216.40
-2008-03-27,12421.88,12528.13,12264.76,12302.46,4037930000,12302.46
-2008-03-26,12531.79,12531.79,12309.62,12422.86,4055670000,12422.86
-2008-03-25,12547.34,12639.82,12397.62,12532.60,4145120000,12532.60
-2008-03-24,12361.97,12687.61,12346.17,12548.64,4499000000,12548.64
-2008-03-20,12102.43,12434.34,12024.68,12361.32,6145220000,12361.32
-2008-03-19,12391.52,12525.19,12077.27,12099.66,5358550000,12099.66
-2008-03-18,11975.92,12411.63,11975.92,12392.66,5335630000,12392.66
-2008-03-17,11946.45,12119.69,11650.44,11972.25,5683010000,11972.25
-2008-03-14,12146.39,12249.86,11781.43,11951.09,5153780000,11951.09
-2008-03-13,12096.49,12242.29,11832.88,12145.74,5073360000,12145.74
-2008-03-12,12148.61,12360.58,12037.79,12110.24,4414280000,12110.24
-2008-03-11,11741.33,12205.98,11741.33,12156.81,5109080000,12156.81
-2008-03-10,11893.04,11993.75,11691.47,11740.15,4261240000,11740.15
-2008-03-07,12039.09,12131.33,11778.66,11893.69,4565410000,11893.69
-2008-03-06,12254.59,12267.86,12010.03,12040.39,4323460000,12040.39
-2008-03-05,12204.93,12392.74,12105.36,12254.99,4277710000,12254.99
-2008-03-04,12259.14,12291.22,11991.06,12213.80,4757180000,12213.80
-2008-03-03,12264.36,12344.71,12101.29,12258.90,4117570000,12258.90
-2008-02-29,12579.58,12579.58,12210.30,12266.39,4426730000,12266.39
-2008-02-28,12689.28,12713.99,12463.32,12582.18,3938580000,12582.18
-2008-02-27,12683.54,12815.59,12527.64,12694.28,3904700000,12694.28
-2008-02-26,12569.48,12771.14,12449.08,12684.92,4096060000,12684.92
-2008-02-25,12380.77,12612.47,12292.03,12570.22,3866350000,12570.22
-2008-02-22,12281.09,12429.05,12116.92,12381.02,3572660000,12381.02
-2008-02-21,12426.85,12545.79,12225.36,12284.30,3696660000,12284.30
-2008-02-20,12333.31,12489.29,12159.42,12427.26,3870520000,12427.26
-2008-02-19,12349.59,12571.11,12276.81,12337.22,3613550000,12337.22
-2008-02-15,12376.66,12441.20,12216.68,12348.21,3583300000,12348.21
-2008-02-14,12551.51,12611.26,12332.03,12376.98,3644760000,12376.98
-2008-02-13,12368.12,12627.76,12354.22,12552.24,3856420000,12552.24
-2008-02-12,12241.56,12524.12,12207.90,12373.41,4044640000,12373.41
-2008-02-11,12181.89,12332.76,12006.79,12240.01,3593140000,12240.01
-2008-02-08,12248.47,12330.97,12058.01,12182.13,3768490000,12182.13
-2008-02-07,12196.20,12366.99,12045.00,12247.00,4589160000,12247.00
-2008-02-06,12257.25,12436.33,12142.14,12200.10,4008120000,12200.10
-2008-02-05,12631.85,12631.85,12234.97,12265.13,4315740000,12265.13
-2008-02-04,12743.11,12810.34,12557.61,12635.16,3495780000,12635.16
-2008-02-01,12638.17,12841.88,12510.05,12743.19,4650770000,12743.19
-2008-01-31,12438.28,12734.74,12197.09,12650.36,4970290000,12650.36
-2008-01-30,12480.14,12715.96,12311.55,12442.83,4742760000,12442.83
-2008-01-29,12385.19,12604.92,12262.29,12480.30,4232960000,12480.30
-2008-01-28,12205.71,12423.81,12061.42,12383.89,4100930000,12383.89
-2008-01-25,12391.70,12590.69,12103.61,12207.17,4882250000,12207.17
-2008-01-24,12272.69,12522.82,12114.83,12378.61,5735300000,12378.61
-2008-01-23,11969.08,12339.10,11530.12,12270.17,3241680000,12270.17
-2008-01-22,12092.72,12167.42,11508.74,11971.19,6544690000,11971.19
-2008-01-18,12159.94,12441.85,11953.71,12099.30,6004840000,12099.30
-2008-01-17,12467.05,12597.85,12089.38,12159.21,5303130000,12159.21
-2008-01-16,12476.81,12699.05,12294.48,12466.16,5440620000,12466.16
-2008-01-15,12777.50,12777.50,12425.92,12501.11,4601640000,12501.11
-2008-01-14,12613.78,12866.10,12596.95,12778.15,3682090000,12778.15
-2008-01-11,12850.74,12863.34,12495.91,12606.30,4495840000,12606.30
-2008-01-10,12733.11,12931.29,12632.15,12853.09,5170490000,12853.09
-2008-01-09,12590.21,12814.97,12431.53,12735.31,5351030000,12735.31
-2008-01-08,12820.90,12998.11,12511.03,12589.07,4705390000,12589.07
-2008-01-07,12801.15,12984.95,12640.44,12827.49,4221260000,12827.49
-2008-01-04,13046.56,13049.65,12740.51,12800.18,4166000000,12800.18
-2008-01-03,13044.12,13197.43,12968.44,13056.72,3429500000,13056.72
-2008-01-02,13261.82,13338.23,12969.42,13043.96,3452650000,13043.96
-2007-12-31,13364.16,13423.91,13197.35,13264.82,2440880000,13264.82
-2007-12-28,13361.23,13494.30,13272.14,13365.87,2420510000,13365.87
-2007-12-27,13549.17,13551.53,13325.71,13359.61,2365770000,13359.61
-2007-12-26,13547.95,13614.53,13440.16,13551.69,2010500000,13551.69
-2007-12-24,13487.12,13562.72,13451.35,13550.04,2200000,13550.04
-2007-12-21,13241.66,13518.20,13241.66,13450.65,4508590000,13450.65
-2007-12-20,13206.46,13354.00,13112.98,13245.64,3526890000,13245.64
-2007-12-19,13231.98,13368.79,13097.77,13207.27,3401300000,13207.27
-2007-12-18,13168.66,13346.84,13059.32,13232.47,3723690000,13232.47
-2007-12-17,13339.20,13378.38,13111.92,13167.20,3569030000,13167.20
-2007-12-14,13515.11,13557.54,13284.66,13339.85,3401050000,13339.85
-2007-12-13,13473.98,13586.73,13281.00,13517.96,3635170000,13517.96
-2007-12-12,13434.80,13778.98,13299.61,13473.90,4482120000,13473.90
-2007-12-11,13726.87,13850.92,13374.89,13432.77,4080180000,13432.77
-2007-12-10,13623.55,13807.02,13582.50,13727.03,2911760000,13727.03
-2007-12-07,13618.27,13744.02,13514.22,13625.58,3177710000,13625.58
-2007-12-06,13445.85,13652.49,13362.37,13619.89,3568570000,13619.89
-2007-12-05,13244.01,13513.00,13244.01,13444.96,3663660000,13444.96
-2007-12-04,13311.24,13395.21,13139.56,13248.73,3343620000,13248.73
-2007-12-03,13368.22,13490.24,13207.60,13314.57,3323250000,13314.57
-2007-11-30,13314.25,13570.31,13225.32,13371.72,4422200000,13371.72
-2007-11-29,13287.91,13399.03,13150.21,13311.73,3524730000,13311.73
-2007-11-28,12958.04,13353.51,12958.04,13289.45,4508020000,13289.45
-2007-11-27,12744.78,13040.38,12711.98,12958.44,4320720000,12958.44
-2007-11-26,12979.99,13104.44,12707.26,12743.44,3706470000,12743.44
-2007-11-23,12889.45,12981.56,12796.29,12980.88,1612720000,12980.88
-2007-11-21,13006.65,13055.59,12725.39,12799.04,4076230000,12799.04
-2007-11-20,12955.92,13179.23,12800.74,13010.14,4875150000,13010.14
-2007-11-19,13176.30,13195.48,12871.14,12958.44,4119650000,12958.44
-2007-11-16,13109.48,13293.44,12987.22,13176.79,4168870000,13176.79
-2007-11-15,13230.68,13333.59,13007.95,13110.05,3941010000,13110.05
-2007-11-14,13305.47,13465.20,13159.88,13231.01,4031470000,13231.01
-2007-11-13,12975.11,13357.57,12975.11,13307.09,4141310000,13307.09
-2007-11-12,13039.16,13238.73,12910.40,12987.55,4192520000,12987.55
-2007-11-09,13261.17,13321.81,12920.65,13042.74,4587050000,13042.74
-2007-11-08,13299.70,13463.66,13001.93,13266.29,5439720000,13266.29
-2007-11-07,13646.72,13646.72,13269.46,13300.02,4353160000,13300.02
-2007-11-06,13542.34,13716.55,13460.73,13660.94,3879160000,13660.94
-2007-11-05,13592.58,13666.15,13393.67,13543.40,3819330000,13543.40
-2007-11-02,13569.90,13708.58,13381.64,13595.10,4285990000,13595.10
-2007-11-01,13924.16,13924.16,13522.75,13567.87,4241470000,13567.87
-2007-10-31,13792.06,13990.65,13711.59,13930.01,3953070000,13930.01
-2007-10-30,13869.04,13930.91,13719.80,13792.47,3212520000,13792.47
-2007-10-29,13807.35,13966.18,13748.33,13870.26,3124480000,13870.26
-2007-10-26,13675.66,13885.95,13622.01,13806.70,3612120000,13806.70
-2007-10-25,13677.85,13819.78,13471.87,13671.92,4183960000,13671.92
-2007-10-24,13675.58,13751.50,13423.74,13675.25,4003300000,13675.25
-2007-10-23,13568.93,13754.91,13494.95,13676.23,3309120000,13676.23
-2007-10-22,13521.62,13636.80,13337.90,13566.97,3471830000,13566.97
-2007-10-19,13888.47,13888.47,13478.94,13522.02,4160970000,13522.02
-2007-10-18,13887.90,13984.39,13746.22,13888.96,3203210000,13888.96
-2007-10-17,13920.66,14075.84,13738.66,13892.54,3638070000,13892.54
-2007-10-16,13986.34,14061.37,13810.68,13912.94,3234560000,13912.94
-2007-10-15,14092.43,14157.38,13877.82,13984.80,3139290000,13984.80
-2007-10-12,14016.34,14168.51,13949.85,14093.08,2788690000,14093.08
-2007-10-11,14079.10,14279.96,13917.82,14015.12,3911260000,14015.12
-2007-10-10,14165.02,14225.66,13963.26,14078.69,3044760000,14078.69
-2007-10-09,14043.73,14198.83,13980.90,14164.53,2932040000,14164.53
-2007-10-08,14065.36,14134.05,13747.41,14043.73,2040650000,14043.73
-2007-10-05,13969.07,14169.49,13965.05,14066.01,2919030000,14066.01
-2007-10-04,13967.89,14074.54,13894.98,13974.31,2690430000,13974.31
-2007-10-03,14038.86,14090.48,13883.43,13968.05,3065320000,13968.05
-2007-10-02,14087.14,14166.16,13951.72,14047.31,3101910000,14047.31
-2007-10-01,13895.71,14147.30,13869.86,14087.55,3281990000,14087.55
-2007-09-28,13912.94,13994.64,13802.96,13895.63,2925350000,13895.63
-2007-09-27,13879.53,13991.63,13811.17,13912.94,2872180000,13912.94
-2007-09-26,13779.30,13962.61,13741.26,13878.15,3237390000,13878.15
-2007-09-25,13757.84,13847.10,13629.16,13778.65,3187770000,13778.65
-2007-09-24,13821.57,13930.74,13702.89,13759.06,3131310000,13759.06
-2007-09-21,13768.33,13948.95,13740.61,13820.19,3679460000,13820.19
-2007-09-20,13813.52,13893.02,13680.21,13766.70,2957700000,13766.70
-2007-09-19,13740.61,13936.68,13689.80,13815.56,3846750000,13815.56
-2007-09-18,13403.18,13772.15,13379.68,13739.39,3708940000,13739.39
-2007-09-17,13441.95,13514.71,13306.69,13403.42,2598390000,13403.42
-2007-09-14,13421.39,13507.55,13273.68,13442.52,2641740000,13442.52
-2007-09-13,13292.38,13519.91,13292.38,13424.88,2877080000,13424.88
-2007-09-12,13298.31,13408.62,13195.40,13291.65,2885720000,13291.65
-2007-09-11,13129.40,13369.77,13124.68,13308.39,3015330000,13308.39
-2007-09-10,13116.39,13280.67,12992.02,13127.85,2835720000,13127.85
-2007-09-07,13360.74,13360.74,13059.16,13113.38,3191080000,13113.38
-2007-09-06,13306.44,13464.79,13217.11,13363.35,2459590000,13363.35
-2007-09-05,13442.85,13442.85,13203.86,13305.47,2991600000,13305.47
-2007-09-04,13358.39,13521.86,13248.57,13448.86,2766600000,13448.86
-2007-08-31,13240.84,13472.35,13240.84,13357.74,2731610000,13357.74
-2007-08-30,13287.91,13355.46,13126.39,13238.73,2582960000,13238.73
-2007-08-29,13043.07,13336.93,13020.63,13289.29,2824070000,13289.29
-2007-08-28,13318.43,13319.61,13024.29,13041.85,3078090000,13041.85
-2007-08-27,13377.16,13438.46,13248.32,13322.13,2406180000,13322.13
-2007-08-24,13231.78,13402.20,13174.27,13378.87,2541400000,13378.87
-2007-08-23,13237.27,13358.22,13127.69,13235.88,3084390000,13235.88
-2007-08-22,13088.26,13304.33,13075.34,13236.13,3309120000,13236.13
-2007-08-21,13120.05,13228.57,12975.68,13090.86,3012150000,13090.86
-2007-08-20,13078.51,13245.80,12938.77,13121.35,3321340000,13121.35
-2007-08-17,12848.05,13289.70,12847.24,13079.08,3570040000,13079.08
-2007-08-16,12859.52,12996.73,12455.92,12845.78,6509300000,12845.78
-2007-08-15,13021.93,13184.51,12800.83,12861.47,4290930000,12861.47
-2007-08-14,13235.72,13309.04,12974.30,13028.92,3814630000,13028.92
-2007-08-13,13238.24,13440.08,13163.54,13236.53,3696280000,13236.53
-2007-08-10,13270.59,13386.43,12958.04,13239.54,5345780000,13239.54
-2007-08-09,13652.33,13675.66,13196.05,13270.68,5889600000,13270.68
-2007-08-08,13497.23,13769.63,13386.92,13657.86,5499560000,13657.86
-2007-08-07,13467.72,13635.09,13282.38,13504.30,4909390000,13504.30
-2007-08-06,13183.13,13501.86,13077.05,13468.78,5067200000,13468.78
-2007-08-03,13462.25,13539.50,13156.79,13181.91,4272110000,13181.91
-2007-08-02,13357.82,13547.47,13272.79,13463.33,4368850000,13463.33
-2007-08-01,13211.09,13431.06,13041.77,13362.37,5256780000,13362.37
-2007-07-31,13360.66,13579.41,13182.15,13211.99,4524520000,13211.99
-2007-07-30,13266.21,13445.12,13143.87,13358.31,4128780000,13358.31
-2007-07-27,13472.68,13589.17,13228.57,13265.47,4784650000,13265.47
-2007-07-26,13783.12,13793.61,13307.74,13473.57,4472550000,13473.57
-2007-07-25,13718.25,13919.77,13607.70,13785.07,4283200000,13785.07
-2007-07-24,13940.90,13967.65,13661.51,13716.95,4115830000,13716.95
-2007-07-23,13851.73,14039.59,13819.54,13943.42,3102700000,13943.42
-2007-07-20,14000.73,14039.67,13745.65,13851.08,3745780000,13851.08
-2007-07-19,13918.79,14121.04,13860.18,14000.41,3251450000,14000.41
-2007-07-18,13955.05,14020.89,13768.73,13918.22,3609220000,13918.22
-2007-07-17,13951.96,14095.60,13880.67,13971.55,3007140000,13971.55
-2007-07-16,13907.09,14053.57,13834.33,13950.98,2704110000,13950.98
-2007-07-13,13859.86,13982.93,13784.83,13907.25,2801120000,13907.25
-2007-07-12,13579.33,13889.45,13579.33,13861.73,3489600000,13861.73
-2007-07-11,13500.40,13638.75,13435.45,13577.87,3082920000,13577.87
-2007-07-10,13648.59,13685.90,13463.57,13501.70,3244280000,13501.70
-2007-07-09,13612.66,13739.06,13563.89,13649.97,2715330000,13649.97
-2007-07-06,13559.01,13670.46,13501.54,13611.68,2441520000,13611.68
-2007-07-05,13576.24,13637.78,13459.84,13565.84,2622950000,13565.84
-2007-07-03,13556.87,13592.07,13531.83,13577.30,1560790000,13577.30
-2007-07-02,13409.60,13586.97,13406.59,13535.43,2648990000,13535.43
-2007-06-29,13422.61,13556.16,13291.32,13408.62,3165410000,13408.62
-2007-06-28,13427.48,13537.47,13342.05,13422.28,3006710000,13422.28
-2007-06-27,13336.93,13455.36,13205.08,13427.73,3398150000,13427.73
-2007-06-26,13352.37,13491.70,13272.79,13337.66,3398530000,13337.66
-2007-06-25,13360.09,13519.34,13273.68,13352.05,3287250000,13352.05
-2007-06-22,13545.03,13564.13,13323.51,13360.26,4284320000,13360.26
-2007-06-21,13486.66,13596.56,13368.79,13545.84,3161110000,13545.84
-2007-06-20,13636.56,13735.08,13469.43,13489.42,3286900000,13489.42
-2007-06-19,13611.68,13705.41,13527.14,13635.42,2873590000,13635.42
-2007-06-18,13639.00,13720.29,13560.15,13612.98,2480240000,13612.98
-2007-06-15,13556.65,13741.18,13556.65,13639.48,3406030000,13639.48
-2007-06-14,13482.43,13622.66,13444.07,13553.73,2813630000,13553.73
-2007-06-13,13287.62,13502.76,13287.62,13482.35,3077930000,13482.35
-2007-06-12,13424.39,13474.12,13264.05,13295.01,3056200000,13295.01
-2007-06-11,13423.74,13519.88,13335.16,13424.96,2525280000,13424.96
-2007-06-08,13267.14,13445.19,13207.73,13424.39,2993460000,13424.39
-2007-06-07,13463.48,13517.85,13236.34,13266.73,3538470000,13266.73
-2007-06-06,13590.66,13606.75,13403.10,13465.67,2964190000,13465.67
-2007-06-05,13673.19,13689.40,13523.70,13595.46,2939450000,13595.46
-2007-06-04,13667.21,13723.37,13575.14,13676.32,2738930000,13676.32
-2007-06-01,13628.69,13756.69,13562.54,13668.11,2927020000,13668.11
-2007-05-31,13633.00,13718.82,13564.49,13627.64,3335530000,13627.64
-2007-05-30,13517.89,13650.64,13403.26,13633.08,2980210000,13633.08
-2007-05-29,13507.28,13603.26,13428.86,13521.34,2571790000,13521.34
-2007-05-25,13441.94,13571.48,13410.00,13507.28,2316250000,13507.28
-2007-05-24,13522.60,13645.52,13391.56,13441.13,3365530000,13441.13
-2007-05-23,13540.84,13648.69,13476.72,13525.65,3084260000,13525.65
-2007-05-22,13544.99,13632.03,13466.57,13539.95,2860500000,13539.95
-2007-05-21,13556.53,13636.98,13473.31,13542.88,3465360000,13542.88
-2007-05-18,13476.40,13611.95,13454.46,13556.53,2959050000,13556.53
-2007-05-17,13486.96,13558.24,13384.89,13476.72,2868640000,13476.72
-2007-05-16,13374.13,13526.54,13325.49,13487.53,2915350000,13487.53
-2007-05-15,13346.05,13518.33,13302.65,13383.84,3071020000,13383.84
-2007-05-14,13325.81,13432.84,13265.02,13346.78,2776130000,13346.78
-2007-05-11,13212.20,13373.35,13192.62,13326.22,2720780000,13326.22
-2007-05-10,13359.05,13376.20,13161.08,13215.13,3031240000,13215.13
-2007-05-09,13300.62,13410.17,13229.92,13362.87,2935550000,13362.87
-2007-05-08,13309.40,13359.05,13192.45,13309.07,2795720000,13309.07
-2007-05-07,13264.13,13385.06,13218.87,13312.97,2545090000,13312.97
-2007-05-04,13243.08,13340.60,13176.61,13264.62,2761930000,13264.62
-2007-05-03,13206.65,13306.55,13131.42,13241.38,3007970000,13241.38
-2007-05-02,13133.94,13291.60,13105.34,13211.88,3189800000,13211.88
-2007-05-01,13062.75,13188.96,12993.02,13136.14,3400350000,13136.14
-2007-04-30,13120.21,13226.99,13003.91,13062.91,3093420000,13062.91
-2007-04-27,13104.04,13195.05,13002.37,13120.94,2732810000,13120.94
-2007-04-26,13088.84,13197.49,13016.43,13105.50,3211800000,13105.50
-2007-04-25,12951.42,13142.31,12929.80,13089.89,3252590000,13089.89
-2007-04-24,12919.64,13033.66,12845.12,12953.94,3119750000,12953.94
-2007-04-23,12961.49,13029.59,12867.96,12919.40,2575020000,12919.40
-2007-04-20,12811.15,13035.77,12811.15,12961.98,3329940000,12961.98
-2007-04-19,12799.77,12889.17,12677.47,12808.63,2913610000,12808.63
-2007-04-18,12771.08,12871.21,12691.20,12803.84,2971330000,12803.84
-2007-04-17,12719.56,12837.40,12669.50,12773.04,2920570000,12773.04
-2007-04-16,12611.64,12770.60,12596.36,12720.46,2870140000,12720.46
-2007-04-13,12551.91,12654.47,12504.04,12612.13,2690020000,12612.13
-2007-04-12,12483.64,12580.92,12407.50,12552.96,2770570000,12552.96
-2007-04-11,12573.12,12618.63,12432.53,12484.62,2950190000,12484.62
-2007-04-10,12568.49,12641.87,12496.48,12573.85,2510110000,12573.85
-2007-04-09,12562.64,12641.22,12505.83,12569.14,2349410000,12569.14
-2007-04-05,12505.73,12573.02,12501.25,12560.83,2357230000,12560.83
-2007-04-04,12511.36,12591.81,12444.55,12530.05,2616320000,12530.05
-2007-04-03,12431.28,12534.49,12378.94,12510.93,2921760000,12510.93
-2007-04-02,12354.52,12450.81,12284.54,12382.30,2875880000,12382.30
-2007-03-30,12348.91,12442.40,12237.87,12354.35,2903960000,12354.35
-2007-03-29,12301.48,12424.77,12251.89,12348.75,2854710000,12348.75
-2007-03-28,12396.49,12415.56,12234.50,12300.36,3000440000,12300.36
-2007-03-27,12468.59,12484.54,12336.89,12397.29,2673040000,12397.29
-2007-03-26,12480.37,12526.27,12339.53,12469.07,2754660000,12469.07
-2007-03-23,12460.50,12550.07,12396.89,12481.01,2619020000,12481.01
-2007-03-22,12446.72,12524.03,12364.21,12461.14,3129970000,12461.14
-2007-03-21,12288.98,12489.02,12220.49,12447.52,3184770000,12447.52
-2007-03-20,12226.81,12324.31,12172.66,12288.10,2795940000,12288.10
-2007-03-19,12110.41,12273.52,12110.41,12226.17,2777180000,12226.17
-2007-03-16,12160.16,12226.01,12053.05,12110.41,3393640000,12110.41
-2007-03-15,12133.16,12228.42,12060.10,12159.68,2821900000,12159.68
-2007-03-14,12074.52,12187.88,11926.79,12133.40,3758350000,12133.40
-2007-03-13,12307.49,12319.66,12049.85,12075.96,3485570000,12075.96
-2007-03-12,12275.68,12385.44,12205.58,12318.62,2664000000,12318.62
-2007-03-09,12262.06,12379.51,12200.62,12276.32,2623050000,12276.32
-2007-03-08,12193.33,12355.47,12183.79,12260.70,3014850000,12260.70
-2007-03-07,12204.46,12315.18,12122.11,12192.45,3141350000,12192.45
-2007-03-06,12051.17,12252.61,12051.17,12207.59,3358160000,12207.59
-2007-03-05,12111.61,12220.16,11973.58,12050.41,3480520000,12050.41
-2007-03-02,12233.78,12293.15,12064.91,12114.10,3312260000,12114.10
-2007-03-01,12265.59,12338.89,11996.17,12234.34,3874910000,12234.34
-2007-02-28,12214.92,12396.81,12122.03,12268.63,3925250000,12268.63
-2007-02-27,12628.90,12628.90,12078.85,12216.24,4065230000,12216.24
-2007-02-26,12647.88,12746.34,12562.72,12632.26,2822170000,12632.26
-2007-02-23,12679.89,12726.79,12578.51,12647.48,2579950000,12647.48
-2007-02-22,12735.77,12792.97,12621.93,12686.02,1950770000,12686.02
-2007-02-21,12782.87,12813.88,12662.79,12738.41,2606980000,12738.41
-2007-02-20,12766.85,12845.76,12675.04,12786.64,2337860000,12786.64
-2007-02-16,12764.13,12829.42,12685.86,12767.57,2399450000,12767.57
-2007-02-15,12741.70,12828.38,12681.85,12765.01,2490920000,12765.01
-2007-02-14,12651.29,12793.29,12623.21,12741.86,2699290000,12741.86
-2007-02-13,12549.19,12702.36,12549.19,12654.85,2652150000,12654.85
-2007-02-12,12595.90,12605.11,12536.77,12552.55,2395680000,12552.55
-2007-02-09,12638.03,12725.59,12518.58,12580.83,2951810000,12580.83
-2007-02-08,12639.16,12666.88,12576.59,12637.63,2816180000,12637.63
-2007-02-07,12656.86,12748.99,12589.56,12666.87,2618820000,12666.87
-2007-02-06,12661.66,12738.41,12586.44,12666.31,2608710000,12666.31
-2007-02-05,12641.08,12681.06,12630.50,12661.74,2439430000,12661.74
-2007-02-02,12673.84,12740.65,12582.99,12653.49,2569450000,12653.49
-2007-02-01,12617.20,12741.30,12563.85,12673.68,2914890000,12673.68
-2007-01-31,12520.03,12685.54,12461.30,12621.69,2976690000,12621.69
-2007-01-30,12484.70,12538.06,12463.07,12523.31,2706250000,12523.31
-2007-01-29,12487.10,12599.74,12422.93,12490.78,2730480000,12490.78
-2007-01-26,12503.28,12582.67,12391.44,12487.02,2626620000,12487.02
-2007-01-25,12621.77,12670.48,12461.54,12502.56,2994330000,12502.56
-2007-01-24,12534.37,12659.42,12489.98,12621.77,2783180000,12621.77
-2007-01-23,12467.96,12553.44,12467.96,12533.80,2975070000,12533.80
-2007-01-22,12566.33,12619.04,12389.68,12477.16,2540120000,12477.16
-2007-01-19,12567.93,12649.89,12462.50,12565.53,2777480000,12565.53
-2007-01-18,12575.06,12674.16,12487.90,12567.93,2822430000,12567.93
-2007-01-17,12563.53,12613.28,12550.95,12577.15,2690270000,12577.15
-2007-01-16,12555.84,12638.27,12489.90,12582.59,2599530000,12582.59
-2007-01-12,12514.66,12616.08,12432.30,12556.08,2686480000,12556.08
-2007-01-11,12442.96,12586.12,12413.72,12514.98,2857870000,12514.98
-2007-01-10,12417.00,12487.18,12313.01,12442.16,2764660000,12442.16
-2007-01-09,12424.77,12516.66,12337.85,12416.60,3038380000,12416.60
-2007-01-08,12393.93,12445.37,12337.53,12423.49,2763340000,12423.49
-2007-01-05,12480.05,12504.40,12326.79,12398.01,2919400000,12398.01
-2007-01-04,12467.32,12510.26,12405.47,12480.69,3004460000,12480.69
-2007-01-03,12459.54,12630.34,12373.82,12474.52,3429160000,12474.52
-2006-12-29,12500.48,12560.16,12423.81,12463.15,1678200000,12463.15
-2006-12-28,12510.57,12566.17,12440.23,12501.52,1508570000,12501.52
-2006-12-27,12463.46,12518.34,12407.62,12510.57,1667370000,12510.57
-2006-12-26,12341.94,12439.19,12301.40,12407.63,1310310000,12407.63
-2006-12-22,12407.87,12417.96,12341.77,12343.21,1647590000,12343.21
-2006-12-21,12461.62,12526.59,12369.97,12421.25,2322410000,12421.25
-2006-12-20,12471.32,12549.35,12393.45,12463.87,2387630000,12463.87
-2006-12-19,12439.51,12517.78,12348.50,12471.32,2717060000,12471.32
-2006-12-18,12446.24,12545.74,12372.30,12441.27,2568140000,12441.27
-2006-12-15,12417.96,12536.37,12377.35,12445.52,3229580000,12445.52
-2006-12-14,12317.50,12472.76,12271.44,12416.76,2729700000,12416.76
-2006-12-13,12312.71,12411.55,12263.19,12317.50,2552260000,12317.50
-2006-12-12,12328.24,12396.01,12222.65,12315.58,2738170000,12315.58
-2006-12-11,12306.21,12399.54,12245.32,12328.48,2289900000,12328.48
-2006-12-08,12256.21,12332.16,12243.31,12307.48,2440460000,12307.48
-2006-12-07,12310.13,12396.33,12233.06,12278.41,2743150000,12278.41
-2006-12-06,12328.72,12390.88,12239.95,12309.25,2725280000,12309.25
-2006-12-05,12283.69,12398.57,12218.24,12331.60,2755700000,12331.60
-2006-12-04,12195.57,12349.87,12149.27,12283.85,2766320000,12283.85
-2006-12-01,12220.97,12289.30,12070.52,12194.13,2800980000,12194.13
-2006-11-30,12226.73,12317.10,12118.42,12221.93,4006230000,12221.93
-2006-11-29,12134.40,12283.05,12119.70,12226.73,2790970000,12226.73
-2006-11-28,12095.27,12148.78,12073.40,12136.44,2639750000,12136.44
-2006-11-27,12279.13,12303.32,12079.01,12121.71,2711210000,12121.71
-2006-11-24,12321.71,12340.89,12219.28,12280.17,832550000,12280.17
-2006-11-22,12321.91,12403.54,12238.43,12326.95,2237710000,12326.95
-2006-11-21,12312.13,12409.31,12233.94,12321.59,2597940000,12321.59
-2006-11-20,12340.71,12400.10,12257.34,12316.54,2546710000,12316.54
-2006-11-17,12293.49,12342.55,12278.20,12342.55,2726100000,12342.55
-2006-11-16,12250.05,12375.37,12204.00,12305.82,2835730000,12305.82
-2006-11-15,12214.37,12326.07,12156.37,12251.71,2831130000,12251.71
-2006-11-14,12132.44,12261.15,12051.68,12218.01,3027480000,12218.01
-2006-11-13,12084.89,12164.22,12084.89,12131.88,2386340000,12131.88
-2006-11-10,12102.74,12173.08,12074.01,12108.43,2290200000,12108.43
-2006-11-09,12174.70,12236.10,12039.59,12103.30,3012050000,12103.30
-2006-11-08,12147.38,12233.54,12051.60,12176.54,2814820000,12176.54
-2006-11-07,12104.75,12239.94,12065.20,12156.77,2636390000,12156.77
-2006-11-06,11985.16,12146.45,11973.23,12105.55,2533550000,12105.55
-2006-11-03,12018.30,12095.30,11928.97,11986.04,2419730000,11986.04
-2006-11-02,12023.98,12070.25,11938.89,12018.54,2646180000,12018.54
-2006-11-01,12080.25,12160.70,11972.99,12031.02,2821160000,12031.02
-2006-10-31,12086.18,12160.46,11986.84,12080.73,2803030000,12080.73
-2006-10-30,12074.01,12117.07,12050.23,12086.49,2770440000,12086.49
-2006-10-27,12164.78,12202.72,12024.78,12090.26,2458450000,12090.26
-2006-10-26,12134.84,12236.10,12037.99,12163.66,2793350000,12163.66
-2006-10-25,12127.24,12212.16,12017.66,12134.68,2953540000,12134.68
-2006-10-24,12116.51,12204.80,12028.14,12127.88,2876890000,12127.88
-2006-10-23,12001.33,12177.35,11940.41,12116.91,2480430000,12116.91
-2006-10-20,12013.01,12087.38,11881.34,12002.37,2526410000,12002.37
-2006-10-19,11988.92,12082.33,11911.44,12011.73,2619830000,12011.73
-2006-10-18,11947.62,12108.91,11900.79,11992.68,2658840000,11992.68
-2006-10-17,11977.40,12024.54,11849.16,11950.02,2519620000,11950.02
-2006-10-16,11957.70,11996.92,11945.70,11980.59,2305920000,11980.59
-2006-10-13,11947.22,12009.97,11862.29,11960.51,2482920000,11960.51
-2006-10-12,11896.63,11959.14,11852.12,11947.70,2514350000,11947.70
-2006-10-11,11865.49,11907.60,11762.72,11852.13,2521000000,11852.13
-2006-10-10,11857.73,11930.33,11778.09,11867.17,2376140000,11867.17
-2006-10-09,11849.56,11923.53,11759.36,11857.81,1935170000,11857.81
-2006-10-06,11865.49,11921.04,11743.35,11850.21,2523000000,11850.21
-2006-10-05,11832.51,11869.33,11821.55,11866.69,2817240000,11866.69
-2006-10-04,11722.94,11879.18,11654.02,11850.61,3019880000,11850.61
-2006-10-03,11670.11,11794.41,11608.23,11727.34,2682690000,11727.34
-2006-10-02,11678.99,11773.60,11608.79,11670.35,2154480000,11670.35
-2006-09-29,11718.05,11782.49,11642.17,11679.07,2273430000,11679.07
-2006-09-28,11689.40,11775.36,11625.92,11718.45,2397820000,11718.45
-2006-09-27,11670.19,11775.60,11595.75,11689.24,2749190000,11689.24
-2006-09-26,11575.73,11723.74,11517.54,11669.39,2673350000,11669.39
-2006-09-25,11536.67,11616.23,11486.00,11575.81,2710240000,11575.81
-2006-09-22,11532.91,11588.62,11423.57,11508.10,2162880000,11508.10
-2006-09-21,11611.67,11677.39,11471.76,11533.23,2627440000,11533.23
-2006-09-20,11542.28,11680.19,11514.50,11613.19,2543070000,11613.19
-2006-09-19,11554.60,11605.67,11450.30,11540.91,2390850000,11540.91
-2006-09-18,11538.35,11588.22,11528.43,11555.00,2325080000,11555.00
-2006-09-15,11528.75,11661.38,11504.57,11560.77,3198030000,11560.77
-2006-09-14,11508.82,11548.84,11495.77,11527.39,2351220000,11527.39
-2006-09-13,11487.69,11605.59,11423.73,11543.32,2597220000,11543.32
-2006-09-12,11412.52,11512.74,11396.83,11498.09,2791580000,11498.09
-2006-09-11,11389.87,11468.88,11295.90,11396.84,2506430000,11396.84
-2006-09-08,11332.24,11448.30,11295.18,11392.11,2132890000,11392.11
-2006-09-07,11405.16,11443.66,11273.89,11331.44,2325850000,11331.44
-2006-09-06,11421.33,11469.27,11395.15,11406.20,2329870000,11406.20
-2006-09-05,11461.83,11533.87,11385.95,11469.28,2114480000,11469.28
-2006-09-01,11427.41,11476.40,11381.14,11464.15,1800520000,11464.15
-2006-08-31,11383.47,11451.03,11326.80,11381.15,1974540000,11381.15
-2006-08-30,11365.98,11452.95,11309.99,11382.91,2060690000,11382.91
-2006-08-29,11352.65,11432.38,11255.88,11369.94,2093720000,11369.94
-2006-08-28,11285.33,11411.24,11240.91,11352.01,1834920000,11352.01
-2006-08-25,11301.22,11350.09,11218.66,11284.05,1667580000,11284.05
-2006-08-24,11297.82,11386.59,11232.83,11304.46,1930320000,11304.46
-2006-08-23,11337.12,11394.75,11238.67,11297.90,1893670000,11297.90
-2006-08-22,11344.41,11426.13,11279.25,11339.84,1908740000,11339.84
-2006-08-21,11353.29,11381.46,11322.31,11345.04,1759240000,11345.04
-2006-08-18,11333.76,11437.66,11273.49,11381.47,2033910000,11381.47
-2006-08-17,11321.19,11372.34,11298.54,11334.96,2458340000,11334.96
-2006-08-16,11224.91,11373.78,11207.85,11327.12,2554570000,11327.12
-2006-08-15,11098.03,11271.25,11098.03,11230.26,2334100000,11230.26
-2006-08-14,11089.07,11242.83,11049.68,11097.87,2118020000,11097.87
-2006-08-11,11103.55,11121.40,11042.88,11088.02,2004540000,11088.02
-2006-08-10,11073.14,11176.47,10998.06,11124.37,2402190000,11124.37
-2006-08-09,11168.47,11296.22,11044.64,11076.18,2555180000,11076.18
-2006-08-08,11218.18,11319.51,11117.80,11173.59,2457840000,11173.59
-2006-08-07,11239.47,11294.14,11143.02,11219.38,2045660000,11219.38
-2006-08-04,11244.59,11367.94,11165.11,11240.35,2530970000,11240.35
-2006-08-03,11195.28,11304.78,11101.55,11242.59,2728440000,11242.59
-2006-08-02,11167.91,11228.98,11124.52,11199.92,2610750000,11199.92
-2006-08-01,11184.80,11210.65,11035.92,11125.73,2527690000,11125.73
-2006-07-31,11218.90,11265.80,11115.24,11185.68,2461300000,11185.68
-2006-07-28,11102.11,11282.05,11102.11,11219.70,2480420000,11219.70
-2006-07-27,11104.19,11245.47,11040.80,11100.43,2776710000,11100.43
-2006-07-26,11102.91,11208.09,10987.41,11102.51,2667710000,11102.51
-2006-07-25,11037.59,11133.73,11000.05,11103.71,2563930000,11103.71
-2006-07-24,10868.70,11096.35,10868.70,11051.05,2312720000,11051.05
-2006-07-21,10937.94,10995.73,10778.58,10868.38,2704090000,10868.38
-2006-07-20,11007.26,11098.75,10884.47,10928.10,2345580000,10928.10
-2006-07-19,10854.22,11038.16,10796.74,11011.42,2701980000,11011.42
-2006-07-18,10745.84,10867.02,10658.35,10799.23,2481750000,10799.23
-2006-07-17,10739.35,10858.22,10668.35,10747.36,2146410000,10747.36
-2006-07-14,10846.53,10892.64,10664.43,10739.35,2467120000,10739.35
-2006-07-13,11012.62,11015.19,10790.82,10846.29,2545760000,10846.29
-2006-07-12,11133.97,11181.12,10973.37,11013.18,2250450000,11013.18
-2006-07-11,11102.59,11186.32,10987.33,11134.77,2310850000,11134.77
-2006-07-10,11130.53,11174.47,11090.10,11103.55,1854590000,11103.55
-2006-07-07,11224.18,11227.62,11040.32,11090.67,1988150000,11090.67
-2006-07-06,11147.12,11301.58,11117.16,11225.30,2009160000,11225.30
-2006-07-05,11225.06,11239.47,11083.94,11151.82,2165070000,11151.82
-2006-07-03,11149.34,11277.09,11146.06,11228.02,1114470000,11228.02
-2006-06-30,11190.80,11288.86,11100.11,11150.22,3049560000,11150.22
-2006-06-29,10974.36,11225.06,10974.36,11190.80,2621250000,11190.80
-2006-06-28,10925.30,11026.07,10869.02,10973.56,2085490000,10973.56
-2006-06-27,11048.24,11064.09,10920.73,10924.74,2203130000,10924.74
-2006-06-26,10990.29,11089.07,10937.06,11045.28,1878580000,11045.28
-2006-06-23,11019.19,11098.67,10932.82,10989.09,2017270000,10989.09
-2006-06-22,11077.78,11127.73,10954.83,11019.11,2148180000,11019.11
-2006-06-21,10975.24,11165.91,10952.43,11079.46,2361230000,11079.46
-2006-06-20,10942.03,11066.73,10895.28,10974.84,2232950000,10974.84
-2006-06-19,11014.87,11098.99,10886.63,10942.11,2517200000,10942.11
-2006-06-16,11009.10,11045.04,10984.29,11014.54,2783390000,11014.54
-2006-06-15,10817.48,11049.85,10788.34,11015.19,2775480000,11015.19
-2006-06-14,10713.10,10816.99,10699.25,10816.91,2667990000,10816.91
-2006-06-13,10783.14,10893.04,10653.23,10706.14,3215770000,10706.14
-2006-06-12,10892.00,10969.32,10767.61,10792.58,2247010000,10792.58
-2006-06-09,10939.14,11015.67,10842.89,10891.92,2214000000,10891.92
-2006-06-08,10929.70,11032.15,10726.15,10938.82,3543790000,10938.82
-2006-06-07,11002.06,11107.48,10897.76,10930.90,2644170000,10930.90
-2006-06-06,11048.24,11140.45,10890.24,11002.14,2697650000,11002.14
-2006-06-05,11247.55,11259.96,11025.75,11048.72,2313470000,11048.72
-2006-06-02,11260.52,11329.28,11158.06,11247.87,2295540000,11247.87
-2006-06-01,11169.03,11290.86,11115.40,11260.28,2360160000,11260.28
-2006-05-31,11091.15,11225.78,11050.40,11168.31,2692160000,11168.31
-2006-05-30,11277.25,11277.25,11071.70,11094.43,2176190000,11094.43
-2006-05-26,11211.69,11329.36,11177.43,11278.61,1814020000,11278.61
-2006-05-25,11114.96,11258.12,11089.55,11211.05,2372730000,11211.05
-2006-05-24,11100.11,11241.15,10980.29,11117.32,2999030000,11117.32
-2006-05-23,11126.29,11254.68,11068.49,11098.35,2605250000,11098.35
-2006-05-22,11092.90,11175.03,11040.16,11125.32,2773010000,11125.32
-2006-05-19,11124.37,11254.60,11009.98,11144.06,2982300000,11144.06
-2006-05-18,11206.17,11301.26,11096.35,11128.29,2537490000,11128.29
-2006-05-17,11410.13,11412.28,11139.17,11205.61,2830200000,11205.61
-2006-05-16,11428.21,11520.42,11334.64,11419.89,2386210000,11419.89
-2006-05-15,11380.43,11485.61,11273.65,11428.77,2505660000,11428.77
-2006-05-12,11500.01,11551.40,11336.96,11380.99,2567970000,11380.99
-2006-05-11,11639.29,11660.58,11449.74,11500.73,2531520000,11500.73
-2006-05-10,11630.48,11709.09,11545.64,11642.65,2268550000,11642.65
-2006-05-09,11584.62,11684.28,11535.71,11639.77,2157290000,11639.77
-2006-05-08,11576.37,11665.14,11504.09,11584.54,2151300000,11584.54
-2006-05-05,11440.62,11616.16,11440.62,11577.74,2294760000,11577.74
-2006-05-04,11401.80,11512.18,11366.82,11438.86,2431450000,11438.86
-2006-05-03,11414.69,11472.96,11308.55,11400.28,2395230000,11400.28
-2006-05-02,11372.74,11427.43,11343.28,11416.44,2403470000,11416.44
-2006-05-01,11367.78,11476.96,11304.30,11343.29,2437040000,11343.29
-2006-04-28,11358.33,11462.95,11278.13,11367.14,2419920000,11367.14
-2006-04-27,11349.53,11465.75,11220.74,11382.51,2772010000,11382.51
-2006-04-26,11283.25,11428.77,11256.12,11354.49,2502690000,11354.49
-2006-04-25,11336.56,11401.32,11213.05,11283.25,2366380000,11283.25
-2006-04-24,11346.81,11420.05,11246.35,11336.32,2117330000,11336.32
-2006-04-21,11343.45,11468.16,11272.61,11347.45,2392630000,11347.45
-2006-04-20,11278.53,11429.25,11221.30,11342.89,2512920000,11342.89
-2006-04-19,11265.40,11379.79,11181.84,11278.77,2447310000,11278.77
-2006-04-18,11074.58,11302.30,11064.01,11268.77,2595440000,11268.77
-2006-04-17,11137.33,11203.13,11017.43,11073.78,1794650000,11073.78
-2006-04-13,11130.13,11210.73,11053.29,11137.65,1891940000,11137.65
-2006-04-12,11089.47,11194.00,11052.17,11129.97,1938100000,11129.97
-2006-04-11,11141.33,11220.98,11017.99,11089.63,2232880000,11089.63
-2006-04-10,11119.88,11211.37,11083.06,11141.33,1898320000,11141.33
-2006-04-07,11228.10,11268.92,11108.75,11120.04,2082470000,11120.04
-2006-04-06,11233.01,11294.30,11137.57,11216.50,2281680000,11216.50
-2006-04-05,11203.21,11290.30,11141.82,11239.55,2420020000,11239.55
-2006-04-04,11142.54,11269.17,11094.03,11203.85,2147660000,11203.85
-2006-04-03,11113.00,11287.02,11101.07,11144.94,2494080000,11144.94
-2006-03-31,11151.34,11229.47,11069.78,11109.32,2236710000,11109.32
-2006-03-30,11195.36,11259.08,11118.12,11150.70,2294560000,11150.70
-2006-03-29,11154.94,11283.97,11117.48,11215.70,2143540000,11215.70
-2006-03-28,11250.11,11312.31,11132.05,11154.54,2148580000,11154.54
-2006-03-27,11280.13,11314.96,11194.07,11250.11,2029700000,11250.11
-2006-03-24,11270.61,11353.21,11197.21,11279.97,2326070000,11279.97
-2006-03-23,11317.35,11363.46,11207.85,11270.29,1980940000,11270.29
-2006-03-22,11234.51,11358.01,11200.22,11317.43,2039810000,11317.43
-2006-03-21,11275.89,11364.34,11188.56,11235.47,2147370000,11235.47
-2006-03-20,11278.93,11350.73,11208.33,11274.53,1976830000,11274.53
-2006-03-17,11294.94,11294.94,11253.23,11279.65,2549620000,11279.65
-2006-03-16,11210.97,11324.80,11176.07,11253.24,2292180000,11253.24
-2006-03-15,11149.76,11258.28,11097.23,11209.77,2293000000,11209.77
-2006-03-14,11076.02,11190.96,11030.23,11151.34,2165270000,11151.34
-2006-03-13,11067.61,11157.82,11019.75,11076.02,2070330000,11076.02
-2006-03-10,10972.92,11125.41,10948.43,11076.34,2123450000,11076.34
-2006-03-09,11005.66,11093.39,10923.86,10972.28,2140110000,10972.28
-2006-03-08,10977.08,11065.61,10885.99,11005.74,2442870000,11005.74
-2006-03-07,10957.31,11032.31,10885.35,10980.69,2268050000,10980.69
-2006-03-06,11022.47,11084.66,10899.76,10958.59,2280190000,10958.59
-2006-03-03,11024.23,11125.01,10942.99,11021.59,2152950000,11021.59
-2006-03-02,11052.57,11090.91,10951.71,11025.51,2494590000,11025.51
-2006-03-01,10993.25,11115.80,10960.60,11053.53,2308320000,11053.53
-2006-02-28,11096.75,11115.24,10947.07,10993.41,2370860000,10993.41
-2006-02-27,11062.81,11180.48,11038.72,11097.55,1975320000,11097.55
-2006-02-24,11068.33,11085.38,11010.46,11061.85,1933010000,11061.85
-2006-02-23,11133.52,11167.83,11017.27,11069.22,2144210000,11069.22
-2006-02-22,11086.98,11159.02,11064.25,11137.17,2222380000,11137.17
-2006-02-21,11115.48,11182.68,11011.18,11069.06,2104320000,11069.06
-2006-02-17,11119.56,11178.80,11035.44,11115.32,2128260000,11115.32
-2006-02-16,11059.05,11154.14,10997.66,11120.68,2251490000,11120.68
-2006-02-15,11025.67,11115.56,10940.18,11058.97,2317590000,11058.97
-2006-02-14,10890.72,11071.54,10873.62,11028.39,2437940000,11028.39
-2006-02-13,10915.21,10982.93,10824.60,10892.32,1850080000,10892.32
-2006-02-10,10883.51,10972.76,10787.62,10919.05,2290050000,10919.05
-2006-02-09,10859.42,11003.50,10800.91,10883.35,2441920000,10883.35
-2006-02-08,10742.16,10897.44,10712.30,10858.62,2456860000,10858.62
-2006-02-07,10796.42,10874.79,10691.97,10749.76,2366370000,10749.76
-2006-02-06,10793.30,10868.62,10725.91,10798.27,2132360000,10798.27
-2006-02-03,10849.57,10905.28,10725.35,10793.62,2282210000,10793.62
-2006-02-02,10950.11,10987.73,10800.35,10851.98,2565300000,10851.98
-2006-02-01,10862.14,11001.82,10815.39,10953.95,2589410000,10953.95
-2006-01-31,10900.40,10970.28,10807.55,10864.86,2708310000,10864.86
-2006-01-30,10913.13,10930.34,10887.67,10899.92,2282730000,10899.92
-2006-01-27,10815.32,10988.29,10766.01,10907.21,2623620000,10907.21
-2006-01-26,10768.17,10827.96,10709.73,10809.47,2856780000,10809.47
-2006-01-25,10713.26,10832.93,10615.20,10709.74,2617060000,10709.74
-2006-01-24,10690.21,10804.75,10624.49,10712.22,2608720000,10712.22
-2006-01-23,10668.75,10783.70,10607.36,10688.77,2256070000,10688.77
-2006-01-20,10880.71,10890.08,10637.21,10667.39,2845810000,10667.39
-2006-01-19,10855.18,10965.00,10796.66,10880.71,2444020000,10880.71
-2006-01-18,10890.08,10934.90,10778.33,10854.86,2233200000,10854.86
-2006-01-17,10957.55,10977.01,10841.17,10896.32,2179970000,10896.32
-2006-01-13,10961.48,11033.04,10888.88,10959.87,2206510000,10959.87
-2006-01-12,11043.12,11070.10,10918.09,10962.36,2318350000,10962.36
-2006-01-11,11011.66,11099.15,10939.86,11043.44,2406130000,11043.44
-2006-01-10,11010.46,11054.49,10902.96,11011.58,2373080000,11011.58
-2006-01-09,10959.47,11053.93,10906.33,11011.90,2301490000,11011.90
-2006-01-06,10875.45,11005.98,10846.21,10959.31,2446560000,10959.31
-2006-01-05,10880.39,10951.39,10797.55,10882.15,2433340000,10882.15
-2006-01-04,10843.97,10946.27,10772.89,10880.15,2515330000,10880.15
-2006-01-03,10718.30,10888.40,10650.18,10847.41,2554570000,10847.41
-2005-12-30,10783.86,10801.87,10675.64,10717.50,1443500000,10717.50
-2005-12-29,10795.70,10870.71,10747.76,10784.82,1382540000,10784.82
-2005-12-28,10778.25,10858.07,10750.40,10796.26,1422360000,10796.26
-2005-12-27,10883.75,10956.99,10754.16,10777.77,1540470000,10777.77
-2005-12-23,10901.68,10904.40,10869.98,10883.27,1285810000,10883.27
-2005-12-22,10831.56,10928.34,10785.93,10889.44,1888500000,10889.44
-2005-12-21,10805.63,10933.70,10776.01,10833.73,2065170000,10833.73
-2005-12-20,10836.93,10905.28,10754.56,10805.55,1996690000,10805.55
-2005-12-19,10875.51,10970.04,10781.70,10836.53,2208810000,10836.53
-2005-12-16,10881.67,10978.21,10830.84,10875.59,2584190000,10875.59
-2005-12-15,10883.43,10985.01,10803.55,10881.67,2180590000,10881.67
-2005-12-14,10821.32,10953.07,10786.34,10883.51,2145520000,10883.51
-2005-12-13,10765.69,10902.64,10694.29,10823.72,2390020000,10823.72
-2005-12-12,10778.66,10857.02,10707.18,10767.77,1876550000,10767.77
-2005-12-09,10751.76,10845.33,10694.05,10778.58,1896290000,10778.58
-2005-12-08,10808.43,10871.11,10705.17,10755.12,2178300000,10755.12
-2005-12-07,10856.86,10916.89,10737.27,10810.91,2093830000,10810.91
-2005-12-06,10835.41,10956.13,10809.15,10856.86,2110740000,10856.86
-2005-12-05,10876.95,10923.37,10766.57,10835.01,2325840000,10835.01
-2005-12-02,10912.01,10952.83,10818.36,10877.51,2125580000,10877.51
-2005-12-01,10806.03,10969.97,10806.03,10912.57,2614830000,10912.57
-2005-11-30,10883.91,10959.80,10789.38,10805.87,2374690000,10805.87
-2005-11-29,10888.48,10994.85,10850.29,10888.16,2268340000,10888.16
-2005-11-28,10932.74,10992.39,10839.37,10890.72,2016900000,10890.72
-2005-11-25,10915.13,10997.50,10883.55,10931.62,724940000,10931.62
-2005-11-23,10865.90,10950.59,10855.42,10916.09,1985400000,10916.09
-2005-11-22,10815.96,10907.77,10729.99,10871.43,2291420000,10871.43
-2005-11-21,10766.33,10871.11,10708.86,10820.28,2117350000,10820.28
-2005-11-18,10719.34,10865.58,10663.79,10766.33,2453290000,10766.33
-2005-11-17,10677.00,10778.50,10619.61,10720.22,2298040000,10720.22
-2005-11-16,10697.81,10710.78,10653.14,10674.76,2121580000,10674.76
-2005-11-15,10697.01,10783.62,10610.08,10686.44,2359370000,10686.44
-2005-11-14,10686.60,10756.88,10618.89,10697.17,1899780000,10697.17
-2005-11-11,10641.30,10725.99,10595.89,10686.04,1773140000,10686.04
-2005-11-10,10550.61,10655.22,10519.71,10640.10,2378460000,10640.10
-2005-11-09,10539.24,10637.78,10466.24,10546.21,2214460000,10546.21
-2005-11-08,10574.18,10606.80,10478.49,10539.72,1965050000,10539.72
-2005-11-07,10531.24,10632.34,10488.74,10586.23,1987580000,10586.23
-2005-11-04,10523.23,10593.51,10441.59,10530.76,2050510000,10530.76
-2005-11-03,10470.49,10613.84,10421.98,10522.59,2716630000,10522.59
-2005-11-02,10406.29,10527.32,10347.70,10472.73,2648090000,10472.73
-2005-11-01,10437.51,10510.03,10352.42,10406.77,2457850000,10406.77
-2005-10-31,10403.17,10539.16,10372.67,10440.07,2567470000,10440.07
-2005-10-28,10231.15,10433.51,10213.14,10402.77,2379400000,10402.77
-2005-10-27,10334.81,10348.66,10229.95,10229.95,2395370000,10229.95
-2005-10-26,10377.39,10474.18,10283.10,10344.98,2467750000,10344.98
-2005-10-25,10383.88,10457.52,10282.78,10377.87,2312470000,10377.87
-2005-10-24,10219.15,10411.57,10219.15,10385.00,2197790000,10385.00
-2005-10-21,10282.22,10354.02,10161.60,10215.22,2470920000,10215.22
-2005-10-20,10411.73,10483.21,10230.27,10281.10,2617250000,10281.10
-2005-10-19,10277.18,10444.15,10173.52,10414.13,2703590000,10414.13
-2005-10-18,10349.14,10412.85,10233.47,10285.26,2197010000,10285.26
-2005-10-17,10287.42,10419.58,10213.06,10348.10,2054570000,10348.10
-2005-10-14,10216.59,10327.21,10165.12,10287.34,2188940000,10287.34
-2005-10-13,10216.91,10309.20,10098.18,10216.59,2351150000,10216.59
-2005-10-12,10247.40,10308.23,10186.17,10216.90,2491280000,10216.90
-2005-10-11,10239.16,10361.15,10195.13,10253.17,2299040000,10253.17
-2005-10-10,10292.95,10378.19,10184.09,10238.76,2195990000,10238.76
-2005-10-07,10287.42,10387.48,10221.47,10292.31,2126080000,10292.31
-2005-10-06,10317.36,10425.98,10200.81,10287.10,2792030000,10287.10
-2005-10-05,10434.81,10477.21,10299.27,10317.36,2546780000,10317.36
-2005-10-04,10534.36,10618.41,10409.89,10441.11,2341420000,10441.11
-2005-10-03,10569.50,10637.00,10486.17,10535.48,2097490000,10535.48
-2005-09-30,10540.51,10569.81,10526.34,10568.70,2097520000,10568.70
-2005-09-29,10472.61,10583.43,10389.01,10552.78,2176120000,10552.78
-2005-09-28,10456.61,10560.02,10390.05,10473.08,2106980000,10473.08
-2005-09-27,10444.58,10534.31,10376.83,10456.21,1976270000,10456.21
-2005-09-26,10420.22,10544.98,10381.53,10443.63,2022220000,10443.63
-2005-09-23,10421.81,10494.42,10328.59,10419.59,1973020000,10419.59
-2005-09-22,10376.20,10489.64,10303.51,10422.05,2424720000,10422.05
-2005-09-21,10484.23,10512.02,10335.28,10378.03,2548150000,10378.03
-2005-09-20,10558.19,10642.26,10453.98,10481.52,2319250000,10481.52
-2005-09-19,10641.87,10656.75,10497.29,10557.63,2076540000,10557.63
-2005-09-16,10560.50,10696.24,10539.64,10641.94,3152470000,10641.94
-2005-09-15,10545.85,10627.85,10488.05,10558.75,2079340000,10558.75
-2005-09-14,10545.85,10627.85,10488.05,10558.75,1986750000,10558.75
-2005-09-13,10673.71,10701.57,10561.61,10597.44,2082360000,10597.44
-2005-09-12,10678.41,10743.77,10618.13,10682.94,1938050000,10682.94
-2005-09-09,10594.10,10727.53,10573.47,10678.56,1992560000,10678.56
-2005-09-08,10633.11,10670.60,10530.01,10595.93,1955380000,10595.93
-2005-09-07,10588.68,10667.10,10534.23,10633.50,2067700000,10633.50
-2005-09-06,10447.69,10621.96,10447.69,10589.24,1932090000,10589.24
-2005-09-02,10460.67,10536.14,10400.88,10447.37,1640160000,10447.37
-2005-09-01,10481.44,10557.47,10382.09,10459.63,2229860000,10459.63
-2005-08-31,10415.84,10484.55,10357.65,10481.60,2365510000,10481.60
-2005-08-30,10461.54,10476.83,10329.15,10412.82,1916470000,10412.82
-2005-08-29,10396.90,10508.35,10321.42,10463.05,1599450000,10463.05
-2005-08-26,10450.95,10480.01,10355.02,10397.29,1541090000,10397.29
-2005-08-25,10434.39,10506.60,10391.71,10450.63,1571110000,10450.63
-2005-08-24,10519.34,10584.30,10407.56,10434.87,1930800000,10434.87
-2005-08-23,10571.01,10604.29,10475.63,10519.58,1678620000,10519.58
-2005-08-22,10559.78,10669.81,10509.07,10569.89,1621330000,10569.89
-2005-08-19,10552.70,10656.59,10503.90,10559.23,1558790000,10559.23
-2005-08-18,10531.12,10592.34,10517.67,10554.92,1808170000,10554.92
-2005-08-17,10505.60,10625.86,10472.45,10550.71,1859150000,10550.71
-2005-08-16,10631.59,10650.14,10489.24,10513.45,1820410000,10513.45
-2005-08-15,10599.19,10687.72,10532.48,10634.38,1562880000,10634.38
-2005-08-12,10682.70,10688.68,10549.19,10600.30,1709300000,10600.30
-2005-08-11,10591.83,10721.56,10549.43,10685.89,1941560000,10685.89
-2005-08-10,10606.52,10746.87,10553.81,10594.41,2172320000,10594.41
-2005-08-09,10537.65,10662.80,10537.01,10615.67,1897520000,10615.67
-2005-08-08,10557.24,10635.65,10497.45,10536.93,1804140000,10536.93
-2005-08-05,10610.34,10643.46,10512.49,10558.03,1930280000,10558.03
-2005-08-04,10696.80,10709.77,10568.70,10610.10,1981220000,10610.10
-2005-08-03,10681.51,10735.17,10600.02,10697.59,1999980000,10697.59
-2005-08-02,10623.79,10729.60,10600.62,10683.74,2043120000,10683.74
-2005-08-01,10641.78,10713.51,10578.97,10623.15,1716870000,10623.15
-2005-07-29,10705.16,10754.60,10608.27,10640.91,1789600000,10640.91
-2005-07-28,10633.50,10745.68,10603.49,10705.55,2001680000,10705.55
-2005-07-27,10579.45,10689.31,10530.50,10637.09,1945800000,10637.09
-2005-07-26,10597.60,10667.90,10535.58,10579.77,1934180000,10579.77
-2005-07-25,10651.66,10709.69,10565.12,10596.48,1717580000,10596.48
-2005-07-22,10624.19,10702.21,10552.54,10651.18,1766990000,10651.18
-2005-07-21,10690.03,10735.33,10567.98,10627.77,2129840000,10627.77
-2005-07-20,10629.52,10726.81,10535.10,10689.15,2063340000,10689.15
-2005-07-19,10576.90,10718.69,10573.00,10646.56,2041280000,10646.56
-2005-07-18,10640.19,10681.99,10533.59,10574.99,1582100000,10574.99
-2005-07-15,10629.44,10698.07,10559.46,10640.83,1716400000,10640.83
-2005-07-14,10559.86,10696.96,10559.86,10628.88,2048710000,10628.88
-2005-07-13,10513.36,10596.98,10481.36,10557.39,1812500000,10557.39
-2005-07-12,10519.49,10583.02,10444.46,10513.89,1932010000,10513.89
-2005-07-11,10449.60,10570.67,10425.97,10519.72,1846300000,10519.72
-2005-07-08,10302.90,10486.50,10279.65,10449.14,1900810000,10449.14
-2005-07-07,10269.76,10337.84,10142.24,10302.29,1952440000,10302.29
-2005-07-06,10366.52,10413.23,10242.21,10270.68,1883470000,10270.68
-2005-07-05,10292.62,10388.91,10282.64,10371.80,1805820000,10371.80
-2005-07-01,10273.59,10380.78,10239.91,10303.44,1593820000,10303.44
-2005-06-30,10374.18,10458.19,10253.49,10274.97,2109490000,10274.97
-2005-06-29,10405.94,10472.46,10332.52,10374.48,1769280000,10374.48
-2005-06-28,10291.01,10434.18,10285.86,10405.63,1772410000,10405.63
-2005-06-27,10298.07,10377.55,10229.40,10290.78,1738620000,10290.78
-2005-06-24,10422.28,10452.82,10266.30,10297.83,2418800000,10297.83
-2005-06-23,10587.09,10617.39,10401.49,10421.44,2029920000,10421.44
-2005-06-22,10599.36,10676.24,10543.28,10587.93,1823250000,10587.93
-2005-06-21,10608.88,10670.56,10545.89,10599.67,1720700000,10599.67
-2005-06-20,10621.54,10656.66,10539.21,10609.10,1714530000,10609.10
-2005-06-17,10580.41,10710.38,10561.00,10623.07,2407370000,10623.07
-2005-06-16,10566.76,10632.20,10501.92,10578.65,1776040000,10578.65
-2005-06-15,10548.65,10628.67,10471.69,10566.37,1840440000,10566.37
-2005-06-14,10521.95,10617.01,10473.92,10547.57,1698150000,10547.57
-2005-06-13,10503.57,10611.10,10437.32,10522.56,1661350000,10522.56
-2005-06-10,10503.02,10581.13,10410.50,10512.63,1664180000,10512.63
-2005-06-09,10477.75,10556.90,10410.80,10503.02,1824120000,10503.02
-2005-06-08,10484.84,10575.81,10439.77,10476.86,1715490000,10476.86
-2005-06-07,10466.00,10603.15,10454.18,10483.07,1851370000,10483.07
-2005-06-06,10461.64,10519.79,10410.28,10467.03,1547120000,10467.03
-2005-06-03,10552.82,10572.18,10427.35,10460.97,1627520000,10460.97
-2005-06-02,10548.83,10590.07,10478.26,10553.49,1813790000,10553.49
-2005-06-01,10462.86,10616.15,10433.48,10549.87,1810100000,10549.87
-2005-05-31,10541.89,10574.92,10437.77,10467.48,1840680000,10467.48
-2005-05-27,10537.08,10579.94,10489.35,10542.55,1381430000,10542.55
-2005-05-26,10458.68,10581.87,10450.55,10537.60,1654110000,10537.60
-2005-05-25,10503.17,10516.17,10396.46,10457.80,1742180000,10457.80
-2005-05-24,10522.68,10550.24,10433.78,10503.68,1681000000,10503.68
-2005-05-23,10472.80,10589.92,10438.36,10523.56,1681170000,10523.56
-2005-05-20,10492.75,10535.24,10400.60,10471.91,1631750000,10471.91
-2005-05-19,10464.45,10538.71,10394.39,10493.19,1775860000,10493.19
-2005-05-18,10323.19,10518.17,10323.19,10464.45,2266320000,10464.45
-2005-05-17,10247.49,10357.30,10175.81,10331.88,1887260000,10331.88
-2005-05-16,10139.61,10274.39,10118.32,10252.29,1856860000,10252.29
-2005-05-13,10188.23,10268.85,10062.76,10140.12,2188590000,10140.12
-2005-05-12,10299.74,10357.37,10155.86,10189.48,1995290000,10189.48
-2005-05-11,10272.91,10355.31,10172.86,10300.25,1834970000,10300.25
-2005-05-10,10382.94,10389.96,10230.35,10281.11,1889660000,10281.11
-2005-05-09,10345.40,10416.56,10288.95,10384.34,1857020000,10384.34
-2005-05-06,10339.71,10454.40,10300.70,10345.40,1707200000,10345.40
-2005-05-05,10384.49,10447.08,10276.75,10340.38,1997100000,10340.38
-2005-05-04,10255.25,10412.20,10239.95,10384.64,2306480000,10384.64
-2005-05-03,10251.04,10327.37,10169.39,10256.95,2167020000,10256.95
-2005-05-02,10192.00,10309.86,10149.06,10251.70,1980040000,10251.70
-2005-04-29,10073.47,10231.31,10021.23,10192.51,2362360000,10192.51
-2005-04-28,10194.58,10229.09,10036.74,10070.37,2182270000,10070.37
-2005-04-27,10150.32,10250.23,10048.27,10198.80,2151520000,10198.80
-2005-04-26,10240.99,10298.85,10108.79,10151.13,1959740000,10151.13
-2005-04-25,10158.52,10305.87,10148.25,10242.47,1795030000,10242.47
-2005-04-22,10216.68,10266.48,10055.29,10157.71,2045880000,10157.71
-2005-04-21,10010.51,10250.30,10010.51,10218.60,2308560000,10218.60
-2005-04-20,10131.18,10232.34,9978.74,10012.36,2217050000,10012.36
-2005-04-19,10071.55,10220.21,10021.08,10127.41,2142700000,10127.41
-2005-04-18,10088.54,10183.50,9961.52,10071.25,2180670000,10071.25
-2005-04-15,10276.61,10311.26,10059.36,10087.51,2689960000,10087.51
-2005-04-14,10403.71,10457.06,10248.23,10278.75,2355040000,10278.75
-2005-04-13,10507.45,10567.38,10355.16,10403.93,2049740000,10403.93
-2005-04-12,10448.63,10552.60,10331.21,10507.97,1979830000,10507.97
-2005-04-11,10462.08,10530.58,10393.36,10448.56,1525310000,10448.56
-2005-04-08,10546.32,10584.60,10445.31,10461.34,1661330000,10461.34
-2005-04-07,10485.88,10589.99,10434.30,10546.32,1900620000,10546.32
-2005-04-06,10453.45,10557.18,10434.22,10486.02,1797400000,10486.02
-2005-04-05,10421.14,10530.14,10372.59,10458.46,1870800000,10458.46
-2005-04-04,10401.71,10496.44,10307.64,10421.14,2079770000,10421.14
-2005-04-01,10504.57,10600.56,10349.02,10404.30,2168690000,10404.30
-2005-03-31,10541.59,10586.15,10448.19,10503.76,2214230000,10503.76
-2005-03-30,10405.77,10564.80,10395.21,10540.93,2097110000,10540.93
-2005-03-29,10486.10,10565.46,10351.76,10405.70,2223250000,10405.70
-2005-03-28,10444.13,10568.05,10412.79,10485.65,1746220000,10485.65
-2005-03-24,10457.06,10554.60,10415.16,10442.87,1721720000,10442.87
-2005-03-23,10470.58,10558.51,10384.34,10456.02,2246870000,10456.02
-2005-03-22,10565.39,10651.41,10446.78,10470.51,2114470000,10470.51
-2005-03-21,10629.90,10662.93,10503.46,10565.39,1819440000,10565.39
-2005-03-18,10627.83,10709.85,10520.60,10629.67,2344370000,10629.67
-2005-03-17,10633.30,10707.86,10561.10,10626.35,1581930000,10626.35
-2005-03-16,10741.63,10764.16,10569.30,10633.07,1653190000,10633.07
-2005-03-15,10804.29,10884.76,10716.87,10745.10,1513530000,10745.10
-2005-03-14,10773.92,10859.12,10709.26,10804.51,1437430000,10804.51
-2005-03-11,10845.30,10897.68,10728.62,10774.36,1449820000,10774.36
-2005-03-10,10806.28,10907.45,10757.36,10851.51,1604020000,10851.51
-2005-03-09,10912.32,10949.20,10768.66,10805.62,1704970000,10805.62
-2005-03-08,10935.60,10996.56,10863.40,10912.62,1523090000,10912.62
-2005-03-07,10940.55,11027.15,10886.09,10936.86,1488830000,10936.86
-2005-03-04,10834.51,10996.93,10834.51,10940.55,1636820000,10940.55
-2005-03-03,10812.27,10904.34,10744.14,10833.03,1616240000,10833.03
-2005-03-02,10825.68,10896.66,10736.16,10811.97,1568540000,10811.97
-2005-03-01,10794.98,10849.14,10769.04,10830.00,1708060000,10830.00
-2005-02-28,10842.05,10877.07,10709.41,10766.23,1795480000,10766.23
-2005-02-25,10748.42,10871.53,10698.32,10841.60,1523680000,10841.60
-2005-02-24,10672.24,10779.39,10612.24,10748.79,1518750000,10748.79
-2005-02-23,10609.28,10735.42,10583.64,10673.79,1501090000,10673.79
-2005-02-22,10783.38,10806.36,10596.79,10611.20,1744940000,10611.20
-2005-02-18,10755.15,10854.98,10682.29,10785.22,1551200000,10785.22
-2005-02-17,10835.03,10873.60,10729.95,10754.26,1580120000,10754.26
-2005-02-16,10832.03,10889.78,10746.21,10834.88,1490100000,10834.88
-2005-02-15,10791.06,10886.31,10745.10,10837.32,1527080000,10837.32
-2005-02-14,10795.72,10853.80,10722.63,10791.13,1290180000,10791.13
-2005-02-11,10742.92,10865.69,10680.15,10796.01,1562300000,10796.01
-2005-02-10,10665.00,10803.92,10633.67,10749.61,1491670000,10749.61
-2005-02-09,10717.76,10781.38,10621.84,10664.11,1511040000,10664.11
-2005-02-08,10712.51,10783.97,10647.85,10724.63,1416170000,10724.63
-2005-02-07,10715.76,10774.80,10650.59,10715.76,1347270000,10715.76
-2005-02-04,10593.17,10750.94,10553.93,10716.13,1648160000,10716.13
-2005-02-03,10592.21,10640.69,10511.96,10593.10,1554460000,10593.10
-2005-02-02,10551.05,10638.25,10501.02,10596.79,1561740000,10596.79
-2005-02-01,10489.72,10609.73,10464.38,10551.94,1681980000,10551.94
-2005-01-31,10428.76,10559.77,10414.49,10489.94,1679800000,10489.94
-2005-01-28,10470.58,10520.61,10331.58,10427.20,1641800000,10427.20
-2005-01-27,10498.14,10535.16,10379.47,10467.40,1600600000,10467.40
-2005-01-26,10463.19,10571.66,10433.56,10498.59,1635900000,10498.59
-2005-01-25,10369.42,10534.72,10369.42,10461.56,1610400000,10461.56
-2005-01-24,10393.58,10491.71,10317.10,10368.61,1494600000,10368.61
-2005-01-21,10471.98,10541.30,10370.97,10392.99,1643500000,10392.99
-2005-01-20,10538.90,10582.09,10414.72,10471.47,1692000000,10471.47
-2005-01-19,10626.05,10668.40,10519.20,10539.97,1498700000,10539.97
-2005-01-18,10554.23,10665.44,10456.61,10628.79,1596800000,10628.79
-2005-01-14,10506.71,10606.47,10475.01,10558.00,1335400000,10558.00
-2005-01-13,10617.41,10650.96,10463.26,10505.83,1510300000,10505.83
-2005-01-12,10561.32,10648.52,10481.37,10617.78,1562100000,10617.78
-2005-01-11,10619.77,10632.63,10504.72,10556.22,1488800000,10556.22
-2005-01-10,10603.44,10696.85,10544.99,10621.03,1490400000,10621.03
-2005-01-07,10624.80,10697.81,10545.80,10603.96,1477900000,10603.96
-2005-01-06,10593.19,10708.37,10555.48,10622.88,1569100000,10622.88
-2005-01-05,10629.53,10736.16,10561.03,10597.83,1738900000,10597.83
-2005-01-04,10727.81,10803.62,10587.48,10630.78,1720200000,10630.78
-2005-01-03,10783.75,10892.67,10694.18,10729.43,1505900000,10729.43
-2004-12-31,10800.30,10849.81,10759.94,10783.01,786900000,10783.01
-2004-12-30,10829.12,10880.03,10781.67,10800.30,829800000,10800.30
-2004-12-29,10853.72,10872.71,10771.26,10829.19,924900000,10829.19
-2004-12-28,10776.06,10890.82,10774.51,10854.54,984200000,10854.54
-2004-12-27,10828.01,10892.52,10755.67,10776.13,922000000,10776.13
-2004-12-23,10815.00,10895.10,10780.12,10827.12,956100000,10827.12
-2004-12-22,10752.34,10861.33,10709.78,10815.89,1390800000,10815.89
-2004-12-21,10661.89,10789.66,10646.60,10759.43,1483700000,10759.43
-2004-12-20,10652.14,10769.13,10622.20,10661.60,1422800000,10661.60
-2004-12-17,10704.83,10766.01,10562.76,10649.92,2335000000,10649.92
-2004-12-16,10691.71,10776.43,10612.31,10705.64,1793900000,10705.64
-2004-12-15,10675.71,10749.53,10601.74,10691.45,1695800000,10691.45
-2004-12-14,10640.53,10715.76,10571.67,10676.45,1544400000,10676.45
-2004-12-13,10543.44,10678.52,10520.61,10638.32,1436100000,10638.32
-2004-12-10,10552.16,10616.23,10469.62,10543.22,1443700000,10543.22
-2004-12-09,10492.45,10579.94,10389.81,10552.82,1624700000,10552.82
-2004-12-08,10438.77,10550.16,10395.05,10494.23,1525200000,10494.23
-2004-12-07,10546.80,10612.90,10423.21,10440.58,1533900000,10440.58
-2004-12-06,10591.32,10614.82,10490.31,10547.06,1354400000,10547.06
-2004-12-03,10597.90,10670.47,10515.73,10592.21,1566700000,10592.21
-2004-12-02,10590.44,10670.02,10485.21,10585.12,1774900000,10585.12
-2004-12-01,10425.80,10618.59,10421.66,10590.22,1772800000,10590.22
-2004-11-30,10475.27,10530.80,10380.58,10428.02,1553500000,10428.02
-2004-11-29,10520.64,10590.73,10390.92,10475.90,1378500000,10475.90
-2004-11-26,10518.69,10574.70,10479.52,10522.23,504580000,10522.23
-2004-11-24,10493.86,10565.76,10451.66,10520.31,1149600000,10520.31
-2004-11-23,10486.69,10547.28,10407.18,10492.60,1428300000,10492.60
-2004-11-22,10455.73,10535.46,10380.95,10489.42,1392700000,10489.42
-2004-11-19,10571.63,10588.29,10419.89,10456.91,1526600000,10456.91
-2004-11-18,10549.20,10639.43,10499.62,10572.55,1456700000,10572.55
-2004-11-17,10481.83,10655.09,10470.21,10549.57,1684200000,10549.57
-2004-11-16,10549.79,10570.56,10445.31,10487.65,1364400000,10487.65
-2004-11-15,10541.89,10612.31,10463.34,10550.24,1453300000,10550.24
-2004-11-12,10469.21,10565.48,10419.77,10539.01,1531600000,10539.01
-2004-11-11,10386.95,10513.42,10364.10,10469.84,1393000000,10469.84
-2004-11-10,10378.59,10470.21,10330.54,10385.48,1504300000,10385.48
-2004-11-09,10387.62,10466.81,10327.00,10386.37,1450800000,10386.37
-2004-11-08,10385.15,10452.58,10313.51,10391.31,1358700000,10391.31
-2004-11-05,10317.05,10458.10,10279.96,10387.54,1724400000,10387.54
-2004-11-04,10132.48,10352.81,10076.36,10314.76,1782700000,10314.76
-2004-11-03,10137.05,10253.27,10062.80,10137.05,1767500000,10137.05
-2004-11-02,10053.87,10180.85,9976.29,10035.73,1659000000,10035.73
-2004-11-01,10028.73,10124.44,9953.29,10054.39,1395900000,10054.39
-2004-10-29,10004.69,10083.44,9936.77,10027.47,1500800000,10027.47
-2004-10-28,9998.94,10074.89,9900.42,10004.54,1628200000,10004.54
-2004-10-27,9888.25,10051.96,9807.80,10002.03,1741900000,10002.03
-2004-10-26,9750.59,9914.65,9718.94,9888.48,1685400000,9888.48
-2004-10-25,9757.22,9827.20,9660.18,9749.99,1380500000,9749.99
-2004-10-22,9863.85,9920.99,9732.81,9757.81,1469600000,9757.81
-2004-10-21,9884.65,9969.07,9769.16,9865.76,1673000000,9865.76
-2004-10-20,9895.19,9957.05,9766.95,9886.93,1685700000,9886.93
-2004-10-19,9958.38,10064.20,9854.19,9897.62,1737500000,9897.62
-2004-10-18,9932.98,10002.18,9816.73,9956.32,1373300000,9956.32
-2004-10-15,9895.63,10022.31,9845.56,9933.38,1645100000,9933.38
-2004-10-14,10002.54,10048.48,9837.22,9894.45,1489500000,9894.45
-2004-10-13,10085.21,10157.11,9935.08,10002.33,1546200000,10002.33
-2004-10-12,10080.42,10121.49,9985.44,10077.18,1320100000,10077.18
-2004-10-11,10056.09,10142.74,10017.67,10081.97,943800000,10081.97
-2004-10-08,10124.11,10177.53,10013.91,10055.20,1291600000,10055.20
-2004-10-07,10239.84,10267.57,10086.83,10125.40,1447500000,10125.40
-2004-10-06,10170.70,10267.14,10112.20,10239.92,1416700000,10239.92
-2004-10-05,10216.76,10253.93,10123.19,10177.68,1418400000,10177.68
-2004-10-04,10191.40,10313.81,10153.79,10216.54,1534000000,10216.54
-2004-10-01,10082.04,10237.05,10081.38,10192.65,1582200000,10192.65
-2004-09-30,10136.38,10155.49,9987.36,10080.27,1748000000,10080.27
-2004-09-29,10078.06,10160.50,10002.57,10136.24,1402900000,10136.24
-2004-09-28,9989.73,10132.04,9950.71,10077.40,1396600000,10077.40
-2004-09-27,10046.65,10077.32,9952.78,9988.54,1263500000,9988.54
-2004-09-24,10039.42,10111.39,9993.92,10047.24,1255400000,10047.24
-2004-09-23,10108.29,10134.84,9999.67,10038.90,1286300000,10038.90
-2004-09-22,10244.05,10244.05,10075.33,10109.18,1379900000,10109.18
-2004-09-21,10204.52,10291.39,10159.54,10244.93,1325000000,10244.93
-2004-09-20,10283.87,10293.23,10152.90,10204.89,1197600000,10204.89
-2004-09-17,10245.82,10352.37,10219.71,10284.46,1422600000,10284.46
-2004-09-16,10231.59,10315.72,10194.35,10244.49,1113900000,10244.49
-2004-09-15,10316.90,10324.87,10195.60,10231.36,1256000000,10231.36
-2004-09-14,10315.13,10374.79,10260.93,10318.16,1204500000,10318.16
-2004-09-13,10306.65,10380.47,10250.61,10314.76,1299800000,10314.76
-2004-09-10,10289.47,10348.68,10196.19,10313.07,1261200000,10313.07
-2004-09-09,10313.36,10337.33,10269.49,10289.10,1371300000,10289.10
-2004-09-08,10342.42,10390.64,10267.94,10313.36,1246300000,10313.36
-2004-09-07,10261.52,10388.95,10255.62,10341.16,1214400000,10341.16
-2004-09-03,10277.82,10346.99,10229.52,10260.20,924170000,10260.20
-2004-09-02,10168.39,10312.99,10129.01,10290.28,1118400000,10290.28
-2004-09-01,10170.12,10230.48,10092.37,10168.46,1142100000,10168.46
-2004-08-31,10121.97,10198.03,10056.09,10173.92,1138200000,10173.92
-2004-08-30,10193.83,10226.87,10110.43,10122.52,843100000,10122.52
-2004-08-27,10174.07,10235.49,10143.91,10195.01,845400000,10195.01
-2004-08-26,10181.07,10225.61,10124.88,10173.41,1023600000,10173.41
-2004-08-25,10098.49,10224.29,10041.93,10181.74,1192200000,10181.74
-2004-08-24,10074.89,10165.07,10044.66,10098.63,1092500000,10098.63
-2004-08-23,10111.10,10159.54,10046.72,10073.05,1021900000,10073.05
-2004-08-20,10040.81,10143.76,9989.65,10110.14,1199900000,10110.14
-2004-08-19,10082.78,10111.91,9972.39,10040.82,1249400000,10040.82
-2004-08-18,9964.22,10097.01,9910.82,10083.15,1282500000,10083.15
-2004-08-17,9955.50,10053.21,9916.05,9972.83,1267800000,9972.83
-2004-08-16,9825.35,9987.58,9807.44,9954.55,1206200000,9954.55
-2004-08-13,9814.11,9897.34,9746.60,9825.35,1175100000,9825.35
-2004-08-12,9936.48,9940.02,9780.52,9814.59,1405100000,9814.59
-2004-08-11,9931.24,9981.61,9804.63,9938.32,1410400000,9938.32
-2004-08-10,9815.55,9961.70,9798.44,9944.67,1245600000,9944.67
-2004-08-09,9816.14,9902.49,9773.74,9814.66,1086000000,9814.66
-2004-08-06,9960.67,9963.47,9767.54,9815.33,1521000000,9815.33
-2004-08-05,10127.10,10158.44,9945.84,9963.03,1397400000,9963.03
-2004-08-04,10117.96,10186.16,10029.02,10126.51,1369200000,10126.51
-2004-08-03,10178.27,10228.49,10064.57,10120.24,1338300000,10120.24
-2004-08-02,10138.45,10224.29,10063.75,10179.16,1276000000,10179.16
-2004-07-30,10129.12,10194.13,10045.76,10139.71,1298200000,10139.71
-2004-07-29,10115.52,10213.08,10049.74,10129.24,1530100000,10129.24
-2004-07-28,10084.03,10170.31,9966.34,10117.07,1554300000,10117.07
-2004-07-27,9963.54,10133.95,9942.75,10085.14,1610800000,10085.14
-2004-07-26,9964.71,10054.32,9874.38,9961.92,1413400000,9961.92
-2004-07-23,10045.46,10069.51,9893.93,9962.22,1337500000,9962.22
-2004-07-22,10047.60,10114.41,9906.62,10050.33,1680800000,10050.33
-2004-07-21,10156.30,10279.96,10027.92,10046.13,1679500000,10046.13
-2004-07-20,10094.43,10186.90,10031.24,10149.07,1445800000,10149.07
-2004-07-19,10140.95,10211.60,10027.33,10094.06,1319900000,10094.06
-2004-07-16,10162.34,10289.40,10095.32,10139.78,1450300000,10139.78
-2004-07-15,10208.20,10275.27,10115.81,10163.16,1408700000,10163.16
-2004-07-14,10232.84,10313.95,10129.31,10208.80,1462000000,10208.80
-2004-07-13,10238.37,10297.58,10188.45,10247.59,1199700000,10247.59
-2004-07-12,10211.75,10284.39,10130.42,10238.22,1114600000,10238.22
-2004-07-09,10173.12,10277.16,10150.32,10213.22,1186300000,10213.22
-2004-07-08,10238.52,10297.73,10134.99,10171.56,1401100000,10171.56
-2004-07-07,10211.92,10300.53,10156.45,10240.29,1328600000,10240.29
-2004-07-06,10280.26,10308.43,10163.60,10219.34,1283300000,10219.34
-2004-07-02,10334.00,10371.40,10228.71,10282.83,1085000000,10282.83
-2004-07-01,10434.00,10473.23,10255.55,10334.16,1495700000,10334.16
-2004-06-30,10413.43,10489.16,10348.98,10435.48,1473800000,10435.48
-2004-06-29,10356.35,10460.25,10315.65,10413.43,1375000000,10413.43
-2004-06-28,10377.52,10505.16,10317.64,10357.09,1354600000,10357.09
-2004-06-25,10444.24,10514.67,10329.88,10371.84,1812900000,10371.84
-2004-06-24,10477.43,10530.01,10398.16,10443.81,1394900000,10443.81
-2004-06-23,10395.14,10498.67,10323.32,10479.57,1444200000,10479.57
-2004-06-22,10370.21,10431.05,10284.24,10395.07,1382300000,10395.07
-2004-06-21,10417.82,10471.76,10336.44,10371.47,1123900000,10371.47
-2004-06-18,10375.82,10471.84,10328.20,10416.41,1500600000,10416.41
-2004-06-17,10378.59,10417.69,10308.25,10377.52,1296700000,10377.52
-2004-06-16,10380.23,10433.52,10320.60,10379.58,1168400000,10379.58
-2004-06-15,10336.51,10464.04,10319.89,10380.43,1345900000,10380.43
-2004-06-14,10401.23,10403.50,10283.48,10334.73,1179400000,10334.73
-2004-06-10,10367.80,10448.00,10333.94,10410.10,1160600000,10410.10
-2004-06-09,10431.10,10466.59,10325.07,10368.44,1276800000,10368.44
-2004-06-08,10389.41,10462.97,10323.94,10432.52,1190300000,10432.52
-2004-06-07,10243.31,10410.81,10243.31,10391.08,1211800000,10391.08
-2004-06-04,10196.83,10327.84,10196.83,10242.82,1115300000,10242.82
-2004-06-03,10261.85,10309.46,10163.40,10195.91,1232400000,10195.91
-2004-06-02,10199.78,10310.10,10170.57,10262.97,1251700000,10262.97
-2004-06-01,10187.18,10254.17,10104.07,10202.65,1238000000,10202.65
-2004-05-28,10205.83,10250.27,10137.14,10188.45,1172600000,10188.45
-2004-05-27,10109.89,10267.66,10106.13,10205.20,1447500000,10205.20
-2004-05-26,10116.84,10175.75,10034.16,10109.89,1369400000,10109.89
-2004-05-25,9958.08,10139.27,9895.41,10117.62,1545700000,10117.62
-2004-05-24,9968.02,10084.91,9891.22,9958.43,1227500000,9958.43
-2004-05-21,9939.34,10058.50,9910.81,9966.74,1258600000,9966.74
-2004-05-20,9939.12,10014.50,9867.73,9937.64,1211000000,9937.64
-2004-05-19,9962.55,10124.79,9919.90,9937.71,1548600000,9937.71
-2004-05-18,9906.71,10028.27,9895.77,9968.51,1353000000,9968.51
-2004-05-17,10009.92,10009.92,9827.21,9906.91,1430100000,9906.91
-2004-05-14,10008.43,10096.69,9912.45,10012.87,1335900000,10012.87
-2004-05-13,10044.31,10100.24,9924.94,10010.74,1411100000,10010.74
-2004-05-12,10011.52,10089.87,9822.10,10045.16,1697600000,10045.16
-2004-05-11,9989.24,10092.78,9928.91,10019.47,1533800000,10019.47
-2004-05-10,10116.28,10116.28,9881.86,9990.02,1918400000,9990.02
-2004-05-07,10240.62,10302.93,10086.94,10117.34,1653600000,10117.34
-2004-05-06,10308.20,10332.10,10147.21,10241.26,1509300000,10241.26
-2004-05-05,10316.98,10382.98,10249.63,10310.95,1469000000,10310.95
-2004-05-04,10314.32,10403.14,10232.31,10317.20,1662100000,10317.20
-2004-05-03,10227.27,10365.74,10199.67,10314.00,1571600000,10314.00
-2004-04-30,10273.06,10374.61,10198.39,10225.57,1634700000,10225.57
-2004-04-29,10339.41,10443.81,10199.31,10272.27,1859000000,10272.27
-2004-04-28,10476.67,10479.58,10301.65,10342.60,1855600000,10342.60
-2004-04-27,10445.38,10570.92,10410.52,10478.16,1518000000,10478.16
-2004-04-26,10472.91,10540.26,10396.75,10444.73,1290600000,10444.73
-2004-04-23,10463.11,10543.95,10362.97,10472.84,1396100000,10472.84
-2004-04-22,10314.99,10529.12,10255.88,10461.20,1826700000,10461.20
-2004-04-21,10311.87,10398.53,10200.38,10317.27,1738100000,10317.27
-2004-04-20,10437.85,10530.61,10297.39,10314.50,1508500000,10314.50
-2004-04-19,10451.62,10501.79,10351.97,10437.85,1194900000,10437.85
-2004-04-16,10398.32,10500.57,10343.74,10451.97,1487800000,10451.97
-2004-04-15,10377.95,10481.21,10279.37,10397.46,1568700000,10397.46
-2004-04-14,10378.10,10453.39,10259.35,10377.95,1547700000,10377.95
-2004-04-13,10516.05,10572.13,10343.17,10381.28,1423200000,10381.28
-2004-04-12,10444.38,10559.28,10439.27,10515.56,1102400000,10515.56
-2004-04-08,10482.77,10590.15,10383.84,10442.03,1199800000,10442.03
-2004-04-07,10569.26,10580.51,10422.74,10480.15,1458800000,10480.15
-2004-04-06,10553.76,10596.37,10467.26,10570.81,1397700000,10570.81
-2004-04-05,10470.59,10582.22,10423.33,10558.37,1413700000,10558.37
-2004-04-02,10375.33,10548.74,10375.33,10470.59,1629200000,10470.59
-2004-04-01,10357.52,10449.33,10299.48,10373.33,1560700000,10373.33
-2004-03-31,10380.89,10428.59,10287.11,10357.70,1560700000,10357.70
-2004-03-30,10327.63,10411.41,10264.15,10381.70,1332400000,10381.70
-2004-03-29,10212.91,10389.93,10212.91,10329.63,1405500000,10329.63
-2004-03-26,10218.37,10306.22,10145.63,10212.97,1319100000,10212.97
-2004-03-25,10049.56,10246.15,10049.56,10218.82,1471700000,10218.82
-2004-03-24,10065.41,10140.23,9975.86,10048.23,1527800000,10048.23
-2004-03-23,10066.67,10177.04,10020.75,10063.64,1458200000,10063.64
-2004-03-22,10185.93,10185.93,9985.19,10064.75,1452300000,10064.75
-2004-03-19,10295.85,10355.41,10163.71,10186.60,1457400000,10186.60
-2004-03-18,10298.96,10355.04,10187.78,10295.78,1369200000,10295.78
-2004-03-17,10184.30,10356.59,10184.30,10300.30,1490100000,10300.30
-2004-03-16,10103.41,10253.26,10085.34,10184.67,1500700000,10184.67
-2004-03-15,10238.45,10252.68,10066.08,10102.89,1600600000,10102.89
-2004-03-12,10130.67,10281.63,10097.04,10240.08,1388500000,10240.08
-2004-03-11,10288.85,10356.22,10102.75,10128.38,1889900000,10128.38
-2004-03-10,10457.59,10523.11,10259.34,10296.89,1648400000,10296.89
-2004-03-09,10529.52,10567.03,10391.48,10456.96,1499400000,10456.96
-2004-03-08,10595.37,10677.85,10505.85,10529.48,1254400000,10529.48
-2004-03-05,10582.59,10681.40,10497.11,10595.55,1398200000,10595.55
-2004-03-04,10593.48,10645.33,10522.59,10588.00,1265800000,10588.00
-2004-03-03,10588.59,10651.03,10506.66,10593.11,1334500000,10593.11
-2004-03-02,10678.36,10713.92,10539.40,10591.48,1476000000,10591.48
-2004-03-01,10582.25,10720.14,10568.74,10678.14,1497100000,10678.14
-2004-02-27,10581.55,10689.55,10519.03,10583.92,1540400000,10583.92
-2004-02-26,10598.14,10652.96,10493.70,10580.14,1383900000,10580.14
-2004-02-25,10566.59,10660.73,10509.40,10601.62,1360700000,10601.62
-2004-02-24,10609.55,10681.40,10479.33,10566.37,1543600000,10566.37
-2004-02-23,10619.55,10711.84,10508.89,10609.62,1380400000,10609.62
-2004-02-20,10666.29,10722.77,10559.11,10619.03,1479600000,10619.03
-2004-02-19,10674.59,10794.95,10626.44,10664.73,1562800000,10664.73
-2004-02-18,10706.68,10764.36,10623.62,10671.99,1382400000,10671.99
-2004-02-17,10628.88,10762.07,10628.88,10714.88,1396500000,10714.88
-2004-02-13,10696.22,10755.47,10578.66,10627.85,1329200000,10627.85
-2004-02-12,10735.18,10775.03,10636.44,10694.07,1464300000,10694.07
-2004-02-11,10605.48,10779.40,10561.55,10737.70,1699300000,10737.70
-2004-02-10,10578.74,10667.03,10511.18,10613.85,1403900000,10613.85
-2004-02-09,10592.00,10634.81,10433.70,10579.03,1303500000,10579.03
-2004-02-06,10494.89,10634.81,10433.70,10593.03,1477600000,10593.03
-2004-02-05,10469.33,10566.37,10399.92,10495.55,1566600000,10495.55
-2004-02-04,10503.11,10567.85,10394.81,10470.74,1634800000,10470.74
-2004-02-03,10499.48,10571.48,10414.15,10505.18,1476900000,10505.18
-2004-02-02,10487.78,10614.44,10395.55,10499.18,1599200000,10499.18
-2004-01-30,10510.22,10551.03,10385.56,10488.07,1635000000,10488.07
-2004-01-29,10467.41,10611.56,10369.92,10510.29,1921900000,10510.29
-2004-01-28,10610.07,10703.25,10412.44,10468.37,1842000000,10468.37
-2004-01-27,10701.10,10748.81,10579.33,10609.92,1673100000,10609.92
-2004-01-26,10568.00,10725.18,10510.44,10702.51,1480600000,10702.51
-2004-01-23,10625.25,10691.77,10490.14,10568.29,1561200000,10568.29
-2004-01-22,10624.22,10717.40,10545.03,10623.18,1693700000,10623.18
-2004-01-21,10522.77,10665.70,10453.11,10623.62,1757600000,10623.62
-2004-01-20,10601.40,10676.96,10447.92,10528.66,1698200000,10528.66
-2004-01-16,10556.37,10666.88,10503.70,10600.51,1721100000,10600.51
-2004-01-15,10534.52,10639.03,10454.52,10553.85,1695000000,10553.85
-2004-01-14,10428.67,10573.85,10426.89,10538.37,1514600000,10538.37
-2004-01-13,10485.18,10539.25,10341.19,10427.18,1595900000,10427.18
-2004-01-12,10461.55,10543.03,10389.85,10485.18,1510200000,10485.18
-2004-01-09,10589.25,10603.48,10420.52,10458.89,1720700000,10458.89
-2004-01-08,10530.07,10651.99,10480.59,10592.44,1868400000,10592.44
-2004-01-07,10535.46,10587.55,10432.00,10529.03,1704900000,10529.03
-2004-01-06,10543.85,10584.07,10454.37,10538.66,1494500000,10538.66
-2004-01-05,10411.85,10575.92,10411.85,10544.07,1578200000,10544.07
-2004-01-02,10452.74,10554.96,10367.41,10409.85,1153200000,10409.85
-2003-12-31,10426.30,10494.44,10382.89,10453.92,1027500000,10453.92
-2003-12-30,10449.70,10493.11,10374.52,10425.04,1012600000,10425.04
-2003-12-29,10321.35,10457.78,10319.70,10450.00,1058800000,10450.00
-2003-12-26,10305.85,10368.89,10282.22,10324.67,356070000,10324.67
-2003-12-24,10341.41,10365.63,10263.04,10305.19,518060000,10305.19
-2003-12-23,10337.56,10421.48,10265.71,10341.26,1145300000,10341.26
-2003-12-22,10276.48,10371.11,10216.08,10338.00,1251700000,10338.00
-2003-12-19,10249.48,10345.44,10189.63,10278.22,1657300000,10278.22
-2003-12-18,10141.41,10278.82,10117.78,10248.08,1579900000,10248.08
-2003-12-17,10128.75,10186.67,10040.08,10145.26,1441700000,10145.26
-2003-12-16,10023.34,10173.19,9986.23,10129.56,1547900000,10129.56
-2003-12-15,10046.53,10180.97,9994.38,10022.82,1520800000,10022.82
-2003-12-12,10008.75,10091.71,9946.60,10042.16,1223100000,10042.16
-2003-12-11,9922.45,10056.97,9896.16,10008.16,1441100000,10008.16
-2003-12-10,9922.38,10000.53,9848.97,9921.86,1444000000,9921.86
-2003-12-09,9966.45,10048.75,9887.57,9923.42,1465500000,9923.42
-2003-12-08,9862.01,9997.34,9824.83,9965.27,1218900000,9965.27
-2003-12-05,9923.27,9954.16,9819.05,9862.68,1265900000,9862.68
-2003-12-04,9874.83,9978.08,9814.97,9930.82,1463100000,9930.82
-2003-12-03,9851.94,9974.45,9824.31,9873.42,1441700000,9873.42
-2003-12-02,9899.64,9936.97,9798.83,9853.64,1383200000,9853.64
-2003-12-01,9785.35,9943.34,9777.64,9899.05,1375000000,9899.05
-2003-11-28,9779.72,9832.16,9733.20,9782.46,487220000,9782.46
-2003-11-26,9763.49,9838.01,9689.05,9779.57,1097700000,9779.57
-2003-11-25,9748.68,9821.94,9679.13,9763.94,1333700000,9763.94
-2003-11-24,9629.87,9788.60,9629.87,9747.79,1302800000,9747.79
-2003-11-21,9622.02,9692.53,9556.68,9628.53,1273800000,9628.53
-2003-11-20,9688.46,9756.09,9576.91,9619.42,1326700000,9619.42
-2003-11-19,9620.68,9731.94,9584.31,9690.46,1326200000,9690.46
-2003-11-18,9711.44,9792.16,9601.35,9624.16,1354300000,9624.16
-2003-11-17,9765.64,9775.35,9603.57,9710.83,1374300000,9710.83
-2003-11-14,9836.46,9919.19,9709.13,9768.68,1356100000,9768.68
-2003-11-13,9846.97,9895.71,9740.53,9837.94,1383000000,9837.94
-2003-11-12,9729.50,9882.60,9700.02,9848.83,1349300000,9848.83
-2003-11-11,9756.53,9801.21,9673.64,9737.79,1162500000,9737.79
-2003-11-10,9807.49,9861.05,9702.46,9756.53,1243600000,9756.53
-2003-11-07,9857.12,9945.71,9770.31,9809.79,1440500000,9809.79
-2003-11-06,9820.68,9888.90,9738.53,9856.97,1453900000,9856.97
-2003-11-05,9837.64,9883.86,9746.98,9820.83,1401800000,9820.83
-2003-11-04,9857.49,9905.94,9770.46,9838.83,1417600000,9838.83
-2003-11-03,9802.46,9936.31,9792.60,9858.46,1378200000,9858.46
-2003-10-31,9786.75,9880.08,9745.94,9801.12,1498900000,9801.12
-2003-10-30,9772.01,9882.97,9719.20,9786.61,1629700000,9786.61
-2003-10-29,9747.05,9830.23,9663.27,9774.53,1562600000,9774.53
-2003-10-28,9609.72,9769.57,9592.54,9748.31,1629200000,9748.31
-2003-10-27,9584.54,9696.98,9553.80,9608.16,1371800000,9608.16
-2003-10-24,9600.98,9631.50,9463.28,9582.46,1420300000,9582.46
-2003-10-23,9597.20,9661.05,9517.50,9613.13,1604300000,9613.13
-2003-10-22,9741.98,9741.98,9551.65,9598.24,1647200000,9598.24
-2003-10-21,9778.31,9824.90,9697.94,9747.64,1498000000,9747.64
-2003-10-20,9721.50,9816.97,9665.35,9777.94,1172600000,9777.94
-2003-10-17,9791.86,9833.12,9679.72,9721.79,1352000000,9721.79
-2003-10-16,9798.68,9838.53,9679.13,9791.72,1417700000,9791.72
-2003-10-15,9824.09,9901.64,9731.57,9803.05,1521100000,9803.05
-2003-10-14,9763.27,9833.42,9696.90,9812.98,1271900000,9812.98
-2003-10-13,9675.72,9814.97,9675.72,9764.38,1040500000,9764.38
-2003-10-10,9682.90,9743.12,9622.31,9674.68,1108100000,9674.68
-2003-10-09,9633.35,9798.08,9617.35,9680.01,1578700000,9680.01
-2003-10-08,9653.33,9699.35,9571.35,9630.90,1262500000,9630.90
-2003-10-07,9593.28,9672.68,9512.76,9654.61,1279500000,9654.61
-2003-10-06,9572.39,9656.09,9524.39,9594.98,1025800000,9594.98
-2003-10-03,9492.54,9701.87,9492.54,9572.31,1570500000,9572.31
-2003-10-02,9464.76,9539.20,9397.87,9487.80,1269300000,9487.80
-2003-10-01,9275.06,9472.69,9275.06,9469.20,1566300000,9469.20
-2003-09-30,9378.10,9393.35,9199.43,9275.06,1590500000,9275.06
-2003-09-29,9314.42,9431.54,9259.68,9380.24,1366500000,9380.24
-2003-09-26,9342.43,9407.89,9257.99,9313.08,1472500000,9313.08
-2003-09-25,9425.58,9493.44,9311.47,9343.96,1530000000,9343.96
-2003-09-24,9575.97,9612.53,9400.67,9425.51,1556000000,9425.51
-2003-09-23,9535.76,9623.34,9479.41,9576.04,1301700000,9576.04
-2003-09-22,9641.80,9641.87,9467.83,9535.41,1278800000,9535.41
-2003-09-19,9661.80,9719.49,9582.64,9644.82,1518600000,9644.82
-2003-09-18,9544.04,9691.55,9513.37,9659.13,1498800000,9659.13
-2003-09-17,9566.08,9641.45,9510.28,9545.65,1338210000,9545.65
-2003-09-16,9449.16,9587.90,9426.84,9567.34,1403200000,9567.34
-2003-09-15,9471.19,9541.02,9396.03,9448.81,1151300000,9448.81
-2003-09-12,9456.88,9517.37,9348.59,9471.55,1236700000,9471.55
-2003-09-11,9415.05,9540.60,9374.49,9459.76,1335900000,9459.76
-2003-09-10,9504.88,9545.51,9373.08,9420.46,1582100000,9420.46
-2003-09-09,9584.92,9617.02,9459.85,9507.20,1414800000,9507.20
-2003-09-08,9503.41,9638.57,9492.25,9586.29,1299300000,9586.29
-2003-09-05,9589.52,9602.22,9441.93,9503.34,1465200000,9503.34
-2003-09-04,9569.09,9661.80,9492.74,9587.90,1453900000,9587.90
-2003-09-03,9521.86,9632.75,9465.72,9568.46,1675600000,9568.46
-2003-09-02,9416.67,9563.83,9357.44,9523.27,1470500000,9523.27
-2003-08-29,9373.33,9444.25,9320.52,9415.82,945100000,9415.82
-2003-08-28,9334.35,9415.68,9246.48,9374.21,1165200000,9374.21
-2003-08-27,9339.82,9387.82,9280.03,9333.79,1051400000,9333.79
-2003-08-26,9316.03,9372.45,9203.54,9340.45,1178700000,9340.45
-2003-08-25,9349.44,9381.51,9242.56,9317.64,971700000,9317.64
-2003-08-22,9436.04,9535.97,9323.26,9348.87,1308900000,9348.87
-2003-08-21,9399.96,9517.37,9345.71,9423.68,1407100000,9423.68
-2003-08-20,9420.13,9454.49,9324.03,9397.51,1210800000,9397.51
-2003-08-19,9412.17,9490.60,9315.25,9428.90,1300600000,9428.90
-2003-08-18,9320.66,9466.79,9309.16,9412.45,1127600000,9412.45
-2003-08-15,9308.52,9360.27,9253.20,9321.69,636370000,9321.69
-2003-08-14,9272.25,9356.63,9193.33,9310.56,1186800000,9310.56
-2003-08-13,9303.69,9350.19,9213.43,9271.76,1208800000,9271.76
-2003-08-12,9218.12,9329.04,9163.29,9310.06,1132300000,9310.06
-2003-08-11,9189.62,9275.61,9124.00,9217.35,1022200000,9217.35
-2003-08-08,9127.36,9230.37,9097.74,9191.09,1086600000,9191.09
-2003-08-07,9060.48,9171.13,9003.63,9126.45,1389300000,9126.45
-2003-08-06,9032.96,9151.38,8964.13,9061.74,1491000000,9061.74
-2003-08-05,9185.27,9210.21,9024.77,9036.32,1351700000,9036.32
-2003-08-04,9154.18,9231.84,9033.66,9186.04,1318700000,9186.04
-2003-08-01,9232.68,9266.37,9100.12,9153.97,1390600000,9153.97
-2003-07-31,9199.35,9398.02,9183.80,9233.80,1608000000,9233.80
-2003-07-30,9204.39,9272.88,9131.70,9200.05,1391900000,9200.05
-2003-07-29,9268.19,9327.36,9135.62,9204.46,1508900000,9204.46
-2003-07-28,9284.92,9356.77,9182.96,9266.51,1328600000,9266.51
-2003-07-25,9113.85,9296.62,9062.38,9284.57,1397500000,9284.57
-2003-07-24,9196.56,9313.99,9092.98,9112.51,1559000000,9112.51
-2003-07-23,9159.08,9249.91,9064.69,9194.24,1362700000,9194.24
-2003-07-22,9098.65,9221.83,9008.60,9158.45,1439700000,9158.45
-2003-07-21,9187.80,9219.87,9025.12,9096.69,1254200000,9096.69
-2003-07-18,9052.29,9212.31,9034.36,9188.15,1365200000,9188.15
-2003-07-17,9089.34,9160.27,8968.82,9050.82,1661400000,9050.82
-2003-07-16,9133.70,9185.63,9005.23,9094.59,1662000000,9094.59
-2003-07-15,9179.18,9260.42,9054.60,9128.97,1518600000,9128.97
-2003-07-14,9126.45,9316.44,9126.45,9177.15,1448900000,9177.15
-2003-07-11,9036.39,9176.59,9009.01,9119.59,1212700000,9119.59
-2003-07-10,9154.53,9154.53,8978.13,9036.04,1465700000,9036.04
-2003-07-09,9221.90,9270.22,9077.91,9156.21,1618000000,9156.21
-2003-07-08,9213.48,9281.77,9122.24,9223.09,1565700000,9223.09
-2003-07-07,9073.92,9289.90,9073.92,9216.79,1429100000,9216.79
-2003-07-03,9141.16,9164.48,9014.06,9070.21,775900000,9070.21
-2003-07-02,9043.54,9168.82,9025.12,9142.84,1519300000,9142.84
-2003-07-01,8983.66,9068.05,8843.61,9040.95,1460200000,9040.95
-2003-06-30,8990.74,9100.12,8934.71,8985.44,1587200000,8985.44
-2003-06-27,9079.74,9135.91,8938.26,8989.05,1267800000,8989.05
-2003-06-26,9011.06,9118.82,8953.83,9079.04,1387400000,9079.04
-2003-06-25,9109.57,9195.20,8984.29,9011.53,1459200000,9011.53
-2003-06-24,9071.48,9179.25,9020.08,9109.85,1388300000,9109.85
-2003-06-23,9199.49,9215.32,9003.83,9072.95,1398100000,9072.95
-2003-06-20,9180.93,9306.36,9149.21,9200.75,1698000000,9200.75
-2003-06-19,9293.80,9346.34,9134.50,9179.53,1530100000,9179.53
-2003-06-18,9322.67,9363.15,9185.17,9293.80,1488900000,9293.80
-2003-06-17,9319.66,9406.50,9234.78,9323.02,1479700000,9323.02
-2003-06-16,9117.56,9335.49,9117.56,9318.96,1345900000,9318.96
-2003-06-13,9197.88,9234.23,9042.63,9117.12,1271600000,9117.12
-2003-06-12,9184.29,9270.64,9089.38,9196.55,1553100000,9196.55
-2003-06-11,9048.85,9202.08,9010.13,9183.22,1520000000,9183.22
-2003-06-10,8980.79,9111.11,8946.06,9054.89,1275400000,9054.89
-2003-06-09,9061.18,9109.43,8909.78,8980.00,1307000000,8980.00
-2003-06-06,9045.57,9248.71,9008.87,9062.79,1837200000,9062.79
-2003-06-05,9036.67,9106.70,8905.37,9041.30,1693100000,9041.30
-2003-06-04,8919.94,9076.94,8882.75,9038.98,1618700000,9038.98
-2003-06-03,8898.23,8973.02,8823.51,8922.95,1450200000,8922.95
-2003-06-02,8851.45,9040.46,8833.66,8897.81,1662500000,8897.81
-2003-05-30,8711.46,8897.04,8711.46,8850.26,1688800000,8850.26
-2003-05-29,8787.23,8895.99,8657.96,8711.18,1685800000,8711.18
-2003-05-28,8781.84,8885.34,8721.90,8793.12,1559000000,8793.12
-2003-05-27,8600.54,8812.30,8523.64,8781.35,1532000000,8781.35
-2003-05-23,8594.02,8668.47,8513.98,8601.38,1201000000,8601.38
-2003-05-22,8516.99,8650.33,8495.35,8594.02,1448500000,8594.02
-2003-05-21,8485.62,8577.64,8389.68,8516.43,1457800000,8516.43
-2003-05-20,8494.09,8593.61,8394.51,8491.36,1505300000,8491.36
-2003-05-19,8676.52,8676.52,8455.72,8493.39,1375700000,8493.39
-2003-05-16,8710.36,8766.36,8614.33,8678.97,1505500000,8678.97
-2003-05-15,8649.22,8766.58,8613.84,8713.14,1508700000,8713.14
-2003-05-14,8673.29,8744.94,8575.96,8647.82,1401800000,8647.82
-2003-05-13,8722.88,8757.40,8611.18,8679.25,1418100000,8679.25
-2003-05-12,8603.90,8764.12,8544.24,8726.73,1378800000,8726.73
-2003-05-09,8492.69,8637.58,8482.89,8604.60,1326100000,8604.60
-2003-05-08,8558.67,8591.01,8435.61,8491.22,1379600000,8491.22
-2003-05-07,8585.42,8650.82,8494.87,8560.63,1531900000,8560.63
-2003-05-06,8531.28,8658.18,8486.88,8588.36,1649600000,8588.36
-2003-05-05,8583.17,8643.11,8472.67,8531.57,1446300000,8531.57
-2003-05-02,8453.48,8612.86,8389.40,8582.68,1554300000,8582.68
-2003-05-01,8478.48,8519.09,8328.55,8454.25,1397500000,8454.25
-2003-04-30,8501.38,8557.62,8402.36,8480.09,1788510000,8480.09
-2003-04-29,8472.88,8578.55,8414.61,8502.99,1525600000,8502.99
-2003-04-28,8306.84,8515.80,8290.46,8471.61,1273000000,8471.61
-2003-04-25,8438.98,8453.06,8258.80,8306.35,1335800000,8306.35
-2003-04-24,8512.44,8527.99,8363.28,8440.04,1648100000,8440.04
-2003-04-23,8484.92,8587.72,8398.65,8515.66,1667200000,8515.66
-2003-04-22,8326.38,8509.43,8238.14,8484.99,1631200000,8484.99
-2003-04-21,8336.67,8423.09,8270.56,8328.90,1118700000,8328.90
-2003-04-17,8255.79,8388.28,8172.52,8337.65,1430600000,8337.65
-2003-04-16,8405.72,8459.15,8217.27,8257.61,1587600000,8257.61
-2003-04-15,8347.66,8443.11,8251.38,8402.36,1460200000,8402.36
-2003-04-14,8203.97,8375.19,8175.60,8351.10,1131000000,8351.10
-2003-04-11,8223.22,8360.76,8156.77,8203.41,1141600000,8203.41
-2003-04-10,8198.99,8274.56,8109.85,8221.33,1275300000,8221.33
-2003-04-09,8299.28,8404.25,8174.90,8197.94,1293700000,8197.94
-2003-04-08,8299.12,8382.43,8222.24,8298.92,1235400000,8298.92
-2003-04-07,8284.15,8550.40,8272.24,8300.41,1494000000,8300.41
-2003-04-04,8240.59,8348.29,8176.66,8277.15,1241200000,8277.15
-2003-04-03,8285.76,8378.76,8199.49,8240.38,1351500000,8240.38
-2003-04-02,8070.98,8342.27,8070.98,8285.06,1589800000,8285.06
-2003-04-01,7992.83,8133.03,7947.38,8069.86,1461600000,8069.86
-2003-03-31,8142.83,8142.83,7903.97,7992.13,1495500000,7992.13
-2003-03-28,8198.85,8224.83,8070.77,8145.77,1227000000,8145.77
-2003-03-27,8226.39,8272.03,8085.40,8201.45,1232900000,8201.45
-2003-03-26,8279.88,8323.01,8165.52,8229.88,1319700000,8229.88
-2003-03-25,8216.85,8355.93,8155.65,8280.23,1333400000,8280.23
-2003-03-24,8514.82,8514.82,8166.78,8214.68,1293000000,8214.68
-2003-03-21,8290.38,8552.08,8290.38,8521.97,1883710000,8521.97
-2003-03-20,8264.68,8335.20,8122.59,8286.60,1439100000,8286.60
-2003-03-19,8193.04,8304.04,8116.01,8265.45,1473400000,8265.45
-2003-03-18,8142.69,8253.48,8057.54,8194.23,1555100000,8194.23
-2003-03-17,7857.96,8163.56,7763.56,8141.92,1700420000,8141.92
-2003-03-14,7822.17,7961.60,7761.25,7859.71,1541900000,7859.71
-2003-03-13,7555.29,7847.03,7555.29,7821.75,1816300000,7821.75
-2003-03-12,7517.76,7582.96,7397.31,7552.07,1620000000,7552.07
-2003-03-11,7568.53,7673.98,7488.00,7524.06,1427700000,7524.06
-2003-03-10,7739.40,7739.40,7545.77,7568.18,1255000000,7568.18
-2003-03-07,7671.75,7780.57,7536.18,7740.03,1368500000,7740.03
-2003-03-06,7774.76,7795.07,7624.97,7673.99,1299200000,7673.99
-2003-03-05,7702.35,7801.79,7639.82,7775.60,1332700000,7775.60
-2003-03-04,7838.14,7859.08,7688.98,7704.87,1256600000,7704.87
-2003-03-03,7890.24,7997.66,7809.05,7837.86,1208900000,7837.86
-2003-02-28,7886.11,7987.80,7826.72,7891.08,1373300000,7891.08
-2003-02-27,7807.96,7950.46,7774.34,7884.99,1287800000,7884.99
-2003-02-26,7907.39,7944.93,7767.62,7806.98,1374400000,7806.98
-2003-02-25,7856.42,7931.14,7700.53,7909.50,1483700000,7909.50
-2003-02-24,8017.34,8017.34,7828.06,7858.24,1229200000,7858.24
-2003-02-21,7915.52,8055.79,7843.81,8018.11,1398200000,8018.11
-2003-02-20,8002.70,8051.37,7858.24,7914.96,1194100000,7914.96
-2003-02-19,8033.80,8079.11,7913.70,8000.60,1075600000,8000.60
-2003-02-18,7909.30,8114.82,7909.30,8041.15,1250800000,8041.15
-2003-02-14,7750.90,7936.56,7704.96,7908.80,1404600000,7908.80
-2003-02-13,7756.55,7817.88,7602.81,7749.87,1489300000,7749.87
-2003-02-12,7836.36,7892.96,7720.39,7758.17,1260500000,7758.17
-2003-02-11,7920.93,8010.89,7798.69,7843.11,1307000000,7843.11
-2003-02-10,7865.74,7963.03,7777.98,7920.11,1238200000,7920.11
-2003-02-07,7932.45,8019.46,7811.10,7864.23,1276800000,7864.23
-2003-02-06,7981.95,8031.66,7855.87,7929.30,1430900000,7929.30
-2003-02-05,8014.45,8162.96,7950.42,7985.18,1450800000,7985.18
-2003-02-04,8104.61,8104.61,7915.93,8013.29,1451600000,8013.29
-2003-02-03,8053.74,8189.35,8032.90,8109.82,1258500000,8109.82
-2003-01-31,7939.72,8121.37,7884.66,8053.81,1578530000,8053.81
-2003-01-30,8109.14,8169.81,7918.19,7945.13,1510300000,7945.13
-2003-01-29,8087.95,8173.31,7916.89,8110.71,1595400000,8110.71
-2003-01-28,7991.07,8153.36,7954.95,8088.84,1459100000,8088.84
-2003-01-27,8128.54,8167.41,7929.16,7989.56,1435900000,7989.56
-2003-01-24,8367.89,8367.89,8092.00,8131.01,1574800000,8131.01
-2003-01-23,8320.72,8437.69,8215.61,8369.47,1744550000,8369.47
-2003-01-22,8439.54,8493.50,8270.94,8318.73,1560800000,8318.73
-2003-01-21,8586.26,8650.43,8421.03,8442.90,1335200000,8442.90
-2003-01-17,8695.82,8695.82,8523.60,8586.74,1358200000,8586.74
-2003-01-16,8721.12,8837.47,8634.46,8697.87,1534600000,8697.87
-2003-01-15,8843.64,8865.65,8674.43,8723.18,1432100000,8723.18
-2003-01-14,8787.22,8865.41,8717.56,8842.62,1379400000,8842.62
-2003-01-13,8787.83,8896.09,8721.12,8785.98,1396300000,8785.98
-2003-01-10,8776.04,8846.25,8654.21,8784.89,1485400000,8784.89
-2003-01-09,8596.68,8814.09,8596.68,8776.18,1560300000,8776.18
-2003-01-08,8735.93,8749.44,8549.72,8595.31,1467600000,8595.31
-2003-01-07,8775.84,8843.37,8661.20,8740.59,1545200000,8740.59
-2003-01-06,8602.78,8826.71,8578.86,8773.57,1435900000,8773.57
-2003-01-03,8607.38,8669.91,8503.71,8601.69,1130800000,8601.69
-2003-01-02,8342.38,8633.02,8342.38,8607.52,1229200000,8607.52
-2002-12-31,8332.24,8400.46,8216.44,8341.63,1088500000,8341.63
-2002-12-30,8304.06,8405.67,8214.93,8332.85,1057800000,8332.85
-2002-12-27,8429.28,8470.05,8272.31,8303.78,758400000,8303.78
-2002-12-26,8448.86,8587.98,8392.23,8432.61,721100000,8432.61
-2002-12-24,8491.99,8522.98,8407.45,8448.11,458310000,8448.11
-2002-12-23,8511.39,8573.92,8418.90,8493.29,1112100000,8493.29
-2002-12-20,8367.41,8557.47,8367.41,8511.32,1782730000,8511.32
-2002-12-19,8441.94,8530.25,8302.41,8364.80,1385900000,8364.80
-2002-12-18,8531.31,8553.76,8367.89,8447.35,1446200000,8447.35
-2002-12-17,8626.99,8672.38,8495.21,8535.39,1251800000,8535.39
-2002-12-16,8436.59,8649.06,8421.58,8627.40,1271600000,8627.40
-2002-12-13,8536.07,8563.16,8374.68,8433.71,1330800000,8433.71
-2002-12-12,8590.99,8662.71,8466.21,8538.40,1255300000,8538.40
-2002-12-11,8571.52,8669.91,8452.84,8589.14,1285100000,8589.14
-2002-12-10,8473.61,8624.93,8419.86,8574.26,1286600000,8574.26
-2002-12-09,8643.99,8643.99,8438.24,8473.41,1320800000,8473.41
-2002-12-06,8620.88,8707.21,8469.16,8645.77,1241100000,8645.77
-2002-12-05,8740.66,8796.68,8572.00,8623.28,1250200000,8623.28
-2002-12-04,8734.22,8834.04,8600.93,8737.85,1588900000,8737.85
-2002-12-03,8861.13,8882.04,8649.89,8742.93,1488400000,8742.93
-2002-12-02,8902.95,9076.35,8757.60,8862.57,1612000000,8862.57
-2002-11-29,8933.67,8995.78,8847.42,8896.09,643460000,8896.09
-2002-11-27,8678.96,8975.08,8678.96,8931.68,1350300000,8931.68
-2002-11-26,8844.12,8845.01,8634.53,8676.42,1543600000,8676.42
-2002-11-25,8804.97,8918.03,8717.63,8849.40,1574000000,8849.40
-2002-11-22,8842.41,8944.16,8732.23,8804.84,1626800000,8804.84
-2002-11-21,8625.48,8910.83,8619.58,8845.15,2415100000,8845.15
-2002-11-20,8469.57,8675.12,8402.72,8623.01,1517300000,8623.01
-2002-11-19,8484.93,8566.45,8355.62,8474.78,1337400000,8474.78
-2002-11-18,8579.74,8671.41,8444.26,8486.57,1282600000,8486.57
-2002-11-15,8535.64,8622.30,8421.10,8579.09,1400100000,8579.09
-2002-11-14,8403.69,8596.50,8396.27,8542.13,1488100000,8542.13
-2002-11-13,8380.32,8523.47,8237.65,8398.49,1463400000,8398.49
-2002-11-12,8356.73,8557.25,8286.13,8386.00,1377100000,8386.00
-2002-11-11,8535.81,8541.09,8315.40,8358.95,1113000000,8358.95
-2002-11-08,8585.75,8688.96,8455.01,8537.13,1446500000,8537.13
-2002-11-07,8766.08,8766.08,8517.78,8586.24,1466900000,8586.24
-2002-11-06,8677.17,8841.61,8561.48,8771.01,1623700000,8771.01
-2002-11-05,8568.76,8730.92,8497.60,8678.27,1354100000,8678.27
-2002-11-04,8521.60,8787.30,8510.08,8571.60,1645900000,8571.60
-2002-11-01,8395.64,8569.24,8271.77,8517.64,1450400000,8517.64
-2002-10-31,8427.34,8538.17,8293.17,8397.03,1641300000,8397.03
-2002-10-30,8363.95,8502.32,8273.99,8427.41,1422300000,8427.41
-2002-10-29,8367.28,8456.19,8161.01,8368.94,1529700000,8368.94
-2002-10-28,8448.98,8601.01,8281.34,8368.04,1382600000,8368.04
-2002-10-25,8317.48,8474.92,8210.74,8443.99,1340400000,8443.99
-2002-10-24,8495.38,8607.04,8253.60,8317.34,1700570000,8317.34
-2002-10-23,8448.56,8546.57,8256.79,8494.27,1593900000,8494.27
-2002-10-22,8534.08,8543.65,8303.33,8450.16,1549200000,8450.16
-2002-10-21,8320.74,8580.13,8191.87,8538.24,1447000000,8538.24
-2002-10-18,8287.72,8383.16,8115.72,8322.40,1423100000,8322.40
-2002-10-17,8038.31,8395.99,8038.31,8275.04,1780390000,8275.04
-2002-10-16,8232.10,8232.10,7958.34,8036.03,1585000000,8036.03
-2002-10-15,7883.23,8304.58,7883.23,8255.68,1956000000,8255.68
-2002-10-14,7848.21,7948.91,7725.23,7877.40,1200300000,7877.40
-2002-10-11,7540.74,7919.57,7540.74,7850.29,1854130000,7850.29
-2002-10-10,7286.34,7588.25,7181.47,7533.95,2090230000,7533.95
-2002-10-09,7499.96,7500.03,7215.39,7286.27,1885030000,7286.27
-2002-10-08,7425.82,7680.57,7294.53,7501.49,1938430000,7501.49
-2002-10-07,7528.68,7685.42,7368.46,7422.84,1576500000,7422.84
-2002-10-04,7719.34,7817.06,7428.32,7528.40,1835930000,7528.40
-2002-10-03,7753.46,7943.64,7638.47,7717.19,1674500000,7717.19
-2002-10-02,7936.57,7996.77,7696.66,7755.61,1668900000,7755.61
-2002-10-01,7593.04,7964.24,7558.36,7938.79,1780900000,7938.79
-2002-09-30,7698.81,7729.53,7422.28,7591.93,1721870000,7591.93
-2002-09-27,7996.01,7997.12,7664.89,7701.45,1507300000,7701.45
-2002-09-26,7844.62,8086.86,7800.97,7997.12,1650000000,7997.12
-2002-09-25,7687.16,7939.90,7641.87,7841.82,1651500000,7841.82
-2002-09-24,7871.23,7893.36,7606.77,7683.13,1670240000,7683.13
-2002-09-23,7984.77,7984.77,7738.06,7872.15,1381100000,7872.15
-2002-09-20,7945.93,8081.04,7868.60,7986.02,1792800000,7986.02
-2002-09-19,8170.65,8170.65,7904.87,7942.39,1524000000,7942.39
-2002-09-18,8203.07,8283.49,8013.42,8172.45,1501000000,8172.45
-2002-09-17,8386.35,8508.61,8169.88,8207.55,1448600000,8207.55
-2002-09-16,8311.79,8435.04,8214.27,8380.18,1001400000,8380.18
-2002-09-13,8377.68,8414.79,8175.85,8312.69,1271000000,8312.69
-2002-09-12,8574.94,8574.94,8334.82,8379.41,1191600000,8379.41
-2002-09-11,8604.27,8767.82,8545.11,8581.17,846600000,8581.17
-2002-09-10,8520.14,8660.94,8447.73,8602.61,1186400000,8602.61
-2002-09-09,8425.88,8584.30,8288.28,8519.38,1130600000,8519.38
-2002-09-06,8296.46,8526.80,8296.46,8427.20,1184500000,8427.20
-2002-09-05,8420.20,8420.20,8173.56,8283.70,1401300000,8283.70
-2002-09-04,8308.53,8495.03,8216.98,8425.12,1372100000,8425.12
-2002-09-03,8659.27,8659.27,8282.87,8308.05,1323400000,8308.05
-2002-08-30,8669.26,8811.72,8572.85,8663.50,929900000,8663.50
-2002-08-29,8690.69,8769.34,8514.10,8670.99,1271100000,8670.99
-2002-08-28,8823.93,8832.18,8610.79,8694.09,1146600000,8694.09
-2002-08-27,8917.49,9040.04,8747.77,8824.41,1307700000,8824.41
-2002-08-26,8873.93,8981.23,8723.43,8919.01,1016900000,8919.01
-2002-08-23,9051.49,9051.49,8806.38,8872.96,1071500000,8872.96
-2002-08-22,8961.18,9129.10,8860.34,9053.64,1373000000,9053.64
-2002-08-21,8866.14,9033.52,8768.51,8957.23,1353100000,8957.23
-2002-08-20,8986.50,8989.69,8789.13,8872.07,1308500000,8872.07
-2002-08-19,8777.09,9037.38,8720.81,8990.79,1299800000,8990.79
-2002-08-16,8813.07,8899.42,8644.59,8778.06,1265300000,8778.06
-2002-08-15,8745.04,8914.37,8620.98,8818.14,1505100000,8818.14
-2002-08-14,8479.14,8778.89,8295.34,8743.31,1533800000,8743.31
-2002-08-13,8683.15,8801.87,8445.91,8482.39,1297700000,8482.39
-2002-08-12,8741.92,8753.14,8528.15,8688.89,1036500000,8688.89
-2002-08-09,8707.24,8824.92,8538.46,8745.45,1294900000,8745.45
-2002-08-08,8456.29,8755.70,8364.29,8712.02,1646700000,8712.02
-2002-08-07,8282.25,8520.95,8171.70,8456.15,1490400000,8456.15
-2002-08-06,8049.93,8472.28,8049.93,8274.09,1514100000,8274.09
-2002-08-05,8312.92,8371.00,7991.43,8043.63,1425500000,8043.63
-2002-08-02,8504.96,8566.36,8179.80,8313.13,1538100000,8313.13
-2002-08-01,8732.58,8758.40,8430.68,8506.62,1672200000,8506.62
-2002-07-31,8678.65,8793.36,8463.21,8736.59,2049360000,8736.59
-2002-07-30,8707.03,8806.86,8484.05,8680.03,1826090000,8680.03
-2002-07-29,8267.99,8749.12,8267.99,8711.88,1778650000,8711.88
-2002-07-26,8192.61,8350.10,8039.89,8264.39,1796100000,8264.39
-2002-07-25,8185.89,8390.39,7893.34,8186.31,2424700000,8186.31
-2002-07-24,7698.46,8243.07,7489.53,8191.29,2775560000,8191.29
-2002-07-23,7785.55,8007.91,7590.75,7702.34,2441020000,7702.34
-2002-07-22,8015.04,8173.08,7668.35,7784.58,2248060000,7784.58
-2002-07-19,8356.74,8356.74,7940.83,8019.26,2654100000,8019.26
-2002-07-18,8540.47,8683.84,8350.72,8409.49,1736300000,8409.49
-2002-07-17,8476.21,8765.39,8401.12,8542.48,2566500000,8542.48
-2002-07-16,8635.31,8697.69,8346.29,8473.11,1843700000,8473.11
-2002-07-15,8681.28,8720.18,8220.78,8639.19,2574800000,8639.19
-2002-07-12,8805.33,8903.00,8555.15,8684.53,1607400000,8684.53
-2002-07-11,8812.12,8937.87,8557.84,8801.53,2080480000,8801.53
-2002-07-10,9098.16,9188.71,8772.94,8813.50,1816900000,8813.50
-2002-07-09,9273.38,9357.35,9065.88,9096.09,1348900000,9096.09
-2002-07-08,9375.70,9433.08,9184.90,9274.90,1184400000,9274.90
-2002-07-05,9061.54,9399.65,9054.97,9379.50,699400000,9379.50
-2002-07-03,9006.37,9140.32,8832.89,9054.97,1527800000,9054.97
-2002-07-02,9104.95,9185.88,8918.11,9007.75,1823000000,9007.75
-2002-07-01,9239.25,9381.37,9059.88,9109.79,1425500000,9109.79
-2002-06-28,9270.33,9435.44,9131.49,9243.26,2117000000,9243.26
-2002-06-27,9122.12,9342.33,8992.32,9269.92,1908600000,9269.92
-2002-06-26,9108.22,9207.07,8831.92,9120.11,336570000,9120.11
-2002-06-25,9285.56,9457.38,9089.17,9126.82,1513700000,9126.82
-2002-06-24,9252.47,9417.23,9046.04,9281.82,1552600000,9281.82
-2002-06-21,9430.66,9456.76,9186.71,9253.79,1497200000,9253.79
-2002-06-20,9561.64,9628.11,9390.10,9431.77,1389700000,9431.77
-2002-06-19,9702.00,9760.20,9514.29,9561.57,1336100000,9561.57
-2002-06-18,9684.52,9775.83,9588.29,9706.12,1193100000,9706.12
-2002-06-17,9476.50,9736.58,9462.30,9687.42,1236600000,9687.42
-2002-06-14,9498.92,9538.93,9229.63,9474.21,1549000000,9474.21
-2002-06-13,9612.87,9671.64,9454.41,9502.80,1405500000,9502.80
-2002-06-12,9515.12,9682.37,9380.82,9617.71,1795720000,9617.71
-2002-06-11,9647.62,9794.17,9487.91,9517.26,1212400000,9517.26
-2002-06-10,9587.38,9744.33,9509.91,9645.40,1226200000,9645.40
-2002-06-07,9592.38,9668.18,9416.33,9589.67,1341300000,9589.67
-2002-06-06,9795.70,9820.41,9552.85,9624.64,1601500000,9624.64
-2002-06-05,9688.53,9860.91,9636.82,9796.80,1300100000,9796.80
-2002-06-04,9710.34,9798.74,9541.36,9687.84,1466600000,9687.84
-2002-06-03,9923.94,10016.04,9685.49,9709.79,1324300000,9709.79
-2002-05-31,9915.15,10074.16,9865.89,9925.25,1277300000,9925.25
-2002-05-30,9915.01,9995.76,9769.64,9911.69,1286600000,9911.69
-2002-05-29,9976.94,10056.31,9860.42,9923.04,1081800000,9923.04
-2002-05-28,10106.54,10144.53,9917.64,9981.58,996500000,9981.58
-2002-05-24,10211.92,10255.93,10054.58,10104.26,885400000,10104.26
-2002-05-23,10158.30,10268.87,10044.20,10216.08,1192900000,10216.08
-2002-05-22,10098.58,10200.78,10004.41,10157.88,1136300000,10157.88
-2002-05-21,10229.08,10322.15,10060.46,10105.71,1169200000,10105.71
-2002-05-20,10348.93,10357.44,10164.39,10229.50,989800000,10229.50
-2002-05-17,10291.05,10400.62,10209.49,10353.08,1274400000,10353.08
-2002-05-16,10242.11,10374.05,10168.64,10289.21,1256600000,10289.21
-2002-05-15,10288.56,10382.97,10152.97,10243.68,1420200000,10243.68
-2002-05-14,10119.34,10346.59,10119.34,10298.14,1414500000,10298.14
-2002-05-13,9938.82,10148.71,9892.73,10109.66,1088600000,10109.66
-2002-05-10,10040.25,10115.23,9891.04,9939.92,1171900000,9939.92
-2002-05-09,10137.96,10185.08,9966.63,10037.42,1153000000,10037.42
-2002-05-08,9847.96,10203.76,9847.96,10141.83,1502000000,10141.83
-2002-05-07,9810.53,9985.32,9749.73,9836.55,1354700000,9836.55
-2002-05-06,10005.80,10081.98,9780.29,9808.04,1122600000,9808.04
-2002-05-03,10091.73,10130.97,9891.49,10006.63,1284500000,10006.63
-2002-05-02,10057.62,10182.94,9970.92,10091.87,1364000000,10091.87
-2002-05-01,9944.90,10121.21,9778.42,10059.63,1451400000,10059.63
-2002-04-30,9818.90,10063.64,9775.10,9946.22,1628600000,9946.22
-2002-04-29,9910.52,10012.16,9767.15,9819.87,1314700000,9819.87
-2002-04-26,10037.42,10127.85,9875.44,9910.72,1374200000,9910.72
-2002-04-25,10028.70,10103.64,9864.08,10035.06,1517400000,10035.06
-2002-04-24,10090.07,10209.64,9984.00,10030.43,1373200000,10030.43
-2002-04-23,10137.20,10243.06,10003.84,10089.24,1388500000,10089.24
-2002-04-22,10256.00,10299.39,10056.45,10136.43,1181800000,10136.43
-2002-04-19,10212.69,10338.83,10151.52,10257.11,1185000000,10257.11
-2002-04-18,10219.47,10334.67,10010.22,10205.28,1359300000,10205.28
-2002-04-17,10299.66,10379.51,10137.47,10220.78,1376900000,10220.78
-2002-04-16,10100.38,10365.12,10100.38,10301.32,1341300000,10301.32
-2002-04-15,10189.57,10261.05,10037.90,10093.67,1120400000,10093.67
-2002-04-12,10178.57,10312.26,10083.92,10190.82,1282100000,10190.82
-2002-04-11,10378.89,10425.87,10116.37,10176.08,1505600000,10176.08
-2002-04-10,10210.40,10437.43,10175.18,10381.73,1447900000,10381.73
-2002-04-09,10249.84,10362.98,10156.57,10208.67,1235400000,10208.67
-2002-04-08,10258.91,10300.78,10049.94,10249.08,1095300000,10249.08
-2002-04-05,10235.80,10403.66,10169.79,10271.64,1110200000,10271.64
-2002-04-04,10199.54,10301.53,10118.10,10235.17,1283800000,10235.17
-2002-04-03,10311.81,10377.09,10116.02,10198.29,1219700000,10198.29
-2002-04-02,10352.46,10394.94,10204.66,10313.71,1176700000,10313.71
-2002-04-01,10402.07,10434.52,10226.59,10362.70,1050900000,10362.70
-2002-03-28,10429.68,10537.48,10341.59,10403.94,1147600000,10403.94
-2002-03-27,10351.28,10490.15,10300.29,10426.91,1180100000,10426.91
-2002-03-26,10280.51,10475.00,10233.65,10353.36,1223600000,10353.36
-2002-03-25,10428.43,10497.76,10255.59,10281.67,1057900000,10281.67
-2002-03-22,10477.70,10537.62,10324.23,10427.67,1243300000,10427.67
-2002-03-21,10501.99,10577.82,10326.99,10479.84,1339200000,10479.84
-2002-03-20,10626.85,10634.84,10455.56,10501.57,1304900000,10501.57
-2002-03-19,10578.38,10722.78,10530.63,10635.25,1255000000,10635.25
-2002-03-18,10608.54,10707.01,10488.84,10577.75,1169500000,10577.75
-2002-03-15,10516.45,10663.69,10452.10,10607.23,1493900000,10607.23
-2002-03-14,10501.29,10615.74,10421.17,10517.14,1208800000,10517.14
-2002-03-13,10620.17,10648.68,10427.67,10501.85,1354000000,10501.85
-2002-03-12,10604.32,10682.72,10462.34,10632.35,1304400000,10632.35
-2002-03-11,10570.07,10679.68,10470.85,10611.24,1210200000,10611.24
-2002-03-08,10531.67,10728.87,10480.33,10572.49,1412000000,10572.49
-2002-03-07,10578.10,10663.82,10405.95,10525.37,1517400000,10525.37
-2002-03-06,10431.96,10637.19,10393.84,10574.29,1541300000,10574.29
-2002-03-05,10591.38,10639.96,10349.90,10433.41,1549300000,10433.41
-2002-03-04,10368.10,10656.50,10313.01,10586.82,1594300000,10586.82
-2002-03-01,10111.04,10397.09,10086.51,10368.86,1456500000,10368.86
-2002-02-28,10130.28,10283.89,10055.34,10106.13,1392200000,10106.13
-2002-02-27,10117.65,10315.72,10025.86,10127.58,1393800000,10127.58
-2002-02-26,10145.86,10241.89,9986.84,10115.26,1309200000,10115.26
-2002-02-25,9969.75,10204.04,9934.94,10145.71,1367400000,10145.71
-2002-02-22,9834.89,10032.45,9726.67,9968.15,1411000000,9968.15
-2002-02-21,9933.56,10072.98,9788.11,9834.68,1381600000,9834.68
-2002-02-20,9742.37,9990.78,9674.91,9941.17,1438900000,9941.17
-2002-02-19,9899.24,9923.39,9704.03,9745.14,1189900000,9745.14
-2002-02-15,10000.83,10065.37,9843.54,9903.04,1359200000,9903.04
-2002-02-14,9989.67,10092.29,9905.95,10001.99,1272500000,10001.99
-2002-02-13,9856.99,10056.24,9839.18,9989.67,1215900000,9989.67
-2002-02-12,9880.35,9943.24,9766.18,9863.74,1094200000,9863.74
-2002-02-11,9739.81,9933.07,9668.34,9884.78,1159400000,9884.78
-2002-02-08,9627.65,9795.38,9503.52,9744.24,1371900000,9744.24
-2002-02-07,9650.97,9799.67,9562.12,9625.44,1441600000,9625.44
-2002-02-06,9682.04,9801.33,9558.18,9653.39,1665800000,9653.39
-2002-02-05,9684.74,9842.77,9553.96,9685.43,1778300000,9685.43
-2002-02-04,9905.46,9940.96,9648.55,9687.09,1437600000,9687.09
-2002-02-01,9923.04,10022.82,9795.45,9907.26,1367200000,9907.26
-2002-01-31,9763.20,9963.79,9701.76,9920.00,1557000000,9920.00
-2002-01-30,9619.14,9821.81,9443.32,9762.86,2019600000,9762.86
-2002-01-29,9865.54,9952.59,9576.65,9618.24,1812000000,9618.24
-2002-01-28,9843.05,9959.44,9746.66,9865.75,1186800000,9865.75
-2002-01-25,9793.23,9949.54,9697.47,9840.08,1345100000,9840.08
-2002-01-24,9734.21,9926.71,9670.99,9796.07,1552800000,9796.07
-2002-01-23,9710.96,9853.64,9588.49,9730.96,1479200000,9730.96
-2002-01-22,9772.34,9905.26,9652.01,9713.80,1311600000,9713.80
-2002-01-18,9830.94,9873.98,9673.11,9771.85,1333300000,9771.85
-2002-01-17,9712.21,9910.11,9684.39,9850.04,1380100000,9850.04
-2002-01-16,9916.54,9923.32,9661.00,9712.27,1482500000,9712.27
-2002-01-15,9892.73,10038.94,9805.33,9924.15,1386900000,9924.15
-2002-01-14,9985.38,10038.87,9831.98,9891.42,1286400000,9891.42
-2002-01-11,10069.52,10163.77,9938.12,9987.53,1211900000,9987.53
-2002-01-10,10092.50,10174.91,9956.67,10067.86,1299000000,10067.86
-2002-01-09,10153.18,10311.98,10049.25,10094.09,1452000000,10094.09
-2002-01-08,10195.76,10270.53,10063.43,10150.55,1258800000,10150.55
-2002-01-07,10261.33,10345.40,10137.61,10197.05,1308300000,10197.05
-2002-01-04,10176.84,10341.87,10132.14,10259.74,1513000000,10259.74
-2002-01-03,10073.88,10227.36,10002.54,10172.14,1398900000,10172.14
-2002-01-02,10021.71,10125.85,9889.69,10073.40,1171000000,10073.40
-2001-12-31,10136.36,10178.71,10002.96,10021.57,943600000,10021.57
-2001-12-28,10133.94,10220.78,10067.17,10136.99,917400000,10136.99
-2001-12-27,10088.71,10187.71,10036.10,10131.31,876300000,10131.31
-2001-12-26,10035.55,10203.28,10014.10,10088.14,791100000,10088.14
-2001-12-24,10036.59,10114.91,9987.39,10035.34,439670000,10035.34
-2001-12-21,9986.84,10148.13,9935.70,10035.34,1694000000,10035.34
-2001-12-20,10064.13,10141.21,9912.76,9985.18,1490500000,9985.18
-2001-12-19,9994.59,10142.95,9876.96,10070.49,1484900000,10070.49
-2001-12-18,9893.22,10066.27,9876.19,9998.39,1354000000,9998.39
-2001-12-17,9809.42,9996.25,9747.77,9891.97,1260400000,9891.97
-2001-12-14,9764.72,9888.44,9661.14,9811.15,1306800000,9811.15
-2001-12-13,9889.13,9927.95,9691.30,9766.45,1511500000,9766.45
-2001-12-12,9887.27,9985.59,9745.42,9894.81,1449700000,9894.81
-2001-12-11,9925.60,10063.98,9794.48,9888.37,1367200000,9888.37
-2001-12-10,10047.04,10123.78,9868.03,9921.45,1218700000,9921.45
-2001-12-07,10099.14,10160.24,9938.54,10049.46,1248200000,10049.46
-2001-12-06,10113.53,10220.23,9997.98,10099.14,1487900000,10099.14
-2001-12-05,9891.35,10195.04,9875.92,10114.29,1765300000,10114.29
-2001-12-04,9765.55,9937.29,9700.24,9893.84,1318500000,9893.84
-2001-12-03,9848.93,9861.94,9651.87,9763.96,1202900000,9763.96
-2001-11-30,9828.80,9945.80,9752.26,9851.56,1343600000,9851.56
-2001-11-29,9710.34,9873.29,9629.72,9829.42,1375700000,9829.42
-2001-11-28,9867.06,9889.13,9662.80,9711.86,1423700000,9711.86
-2001-11-27,9980.33,10021.48,9776.07,9872.60,1288000000,9872.60
-2001-11-26,9961.58,10054.58,9862.22,9982.75,1129800000,9982.75
-2001-11-23,9833.09,9983.24,9804.37,9959.71,410300000,9959.71
-2001-11-21,9894.19,9932.31,9746.45,9834.68,1029300000,9834.68
-2001-11-20,9968.64,10023.37,9825.06,9901.38,1330200000,9901.38
-2001-11-19,9870.45,10040.46,9826.96,9976.46,1316800000,9976.46
-2001-11-16,9871.51,9967.94,9754.07,9866.99,1337400000,9866.99
-2001-11-15,9824.65,9967.46,9745.43,9872.39,1454500000,9872.39
-2001-11-14,9751.13,9943.18,9683.97,9823.61,1443400000,9823.61
-2001-11-13,9551.43,9811.29,9551.43,9750.95,1370100000,9750.95
-2001-11-12,9606.13,9642.25,9347.76,9554.37,991600000,9554.37
-2001-11-09,9586.96,9692.35,9478.75,9608.00,1093800000,9608.00
-2001-11-08,9558.39,9765.00,9506.91,9587.52,1517500000,9587.52
-2001-11-07,9584.68,9695.67,9457.99,9554.37,1411300000,9554.37
-2001-11-06,9437.09,9627.44,9315.79,9591.12,1356000000,9591.12
-2001-11-05,9326.59,9534.58,9326.59,9441.03,1267700000,9441.03
-2001-11-02,9264.52,9406.93,9152.91,9323.54,1121900000,9323.54
-2001-11-01,9087.45,9320.77,8987.61,9263.90,1317400000,9263.90
-2001-10-31,9123.64,9281.68,9018.26,9075.14,1352500000,9075.14
-2001-10-30,9264.52,9265.34,9011.96,9121.98,1297400000,9121.98
-2001-10-29,9543.37,9543.37,9232.83,9269.50,1106100000,9269.50
-2001-10-26,9462.28,9626.54,9369.35,9545.17,1244500000,9545.17
-2001-10-25,9342.29,9491.48,9143.09,9462.90,1364400000,9462.90
-2001-10-24,9341.40,9456.40,9218.29,9345.62,1336200000,9345.62
-2001-10-23,9379.17,9499.78,9249.02,9340.08,1317300000,9340.08
-2001-10-22,9203.91,9438.75,9101.08,9377.03,1105700000,9377.03
-2001-10-19,9162.81,9278.36,9027.74,9204.11,1294900000,9204.11
-2001-10-18,9230.75,9310.33,9061.02,9163.22,1262900000,9163.22
-2001-10-17,9389.76,9539.22,9199.89,9232.97,1452200000,9232.97
-2001-10-16,9346.31,9479.37,9239.68,9384.23,1210500000,9384.23
-2001-10-15,9340.84,9417.51,9181.07,9347.62,1024700000,9347.62
-2001-10-12,9409.07,9426.30,9146.34,9344.16,1331400000,9344.16
-2001-10-11,9242.63,9522.61,9204.04,9410.45,1704580000,9410.45
-2001-10-10,9052.30,9305.97,8975.15,9240.86,1312400000,9240.86
-2001-10-09,9066.56,9168.42,8927.34,9052.44,1227800000,9052.44
-2001-10-08,9115.75,9187.85,8937.86,9067.94,979000000,9067.94
-2001-10-05,9058.83,9208.41,8894.47,9119.77,1301700000,9119.77
-2001-10-04,9127.24,9259.61,8982.28,9060.88,1609100000,9060.88
-2001-10-03,8946.02,9193.32,8800.99,9123.78,1650600000,9123.78
-2001-10-02,8836.69,9001.03,8737.61,8950.59,1289800000,8950.59
-2001-10-01,8845.97,8931.70,8659.90,8836.83,1175600000,8836.83
-2001-09-28,8679.07,8945.68,8633.75,8847.56,1727400000,8847.56
-2001-09-27,8567.46,8757.47,8398.14,8681.42,1467000000,8681.42
-2001-09-26,8660.06,8766.81,8457.37,8567.39,1519100000,8567.39
-2001-09-25,8605.59,8778.23,8435.56,8659.97,1613800000,8659.97
-2001-09-24,8242.32,8733.39,8242.32,8603.86,1746600000,8603.86
-2001-09-21,8356.56,8484.22,7926.93,8235.81,2317300000,8235.81
-2001-09-20,8375.72,8711.38,8304.45,8376.21,2004800000,8376.21
-2001-09-19,8903.54,8990.37,8453.01,8759.13,2120550000,8759.13
-2001-09-18,8922.70,9126.89,8743.91,8903.40,1650410000,8903.40
-2001-09-17,9294.55,9294.55,8755.46,8920.70,2330830000,8920.70
-2001-09-10,9603.36,9740.44,9431.07,9605.51,1276600000,9605.51
-2001-09-07,9841.25,9842.08,9507.04,9605.85,1424300000,9605.85
-2001-09-06,10028.35,10053.73,9762.03,9840.84,1359700000,9840.84
-2001-09-05,9998.12,10140.79,9820.98,10033.27,1384500000,10033.27
-2001-09-04,9946.98,10238.50,9858.34,9997.49,1178300000,9997.49
-2001-08-31,9918.96,10072.22,9846.72,9949.75,920100000,9949.75
-2001-08-30,10077.07,10149.10,9829.35,9919.58,1157000000,9919.58
-2001-08-29,10224.45,10292.60,10030.43,10090.90,963700000,10090.90
-2001-08-28,10382.56,10405.88,10175.60,10222.03,987100000,10222.03
-2001-08-27,10422.76,10498.03,10334.88,10382.35,842600000,10382.35
-2001-08-24,10232.48,10487.52,10190.34,10423.17,1043600000,10423.17
-2001-08-23,10276.41,10357.09,10142.66,10229.15,986200000,10229.15
-2001-08-22,10170.30,10340.76,10099.07,10276.90,1110800000,10276.90
-2001-08-21,10320.07,10436.39,10132.92,10174.14,1041600000,10174.14
-2001-08-20,10239.33,10388.23,10146.05,10320.07,897100000,10320.07
-2001-08-17,10385.46,10418.68,10143.49,10240.78,974300000,10240.78
-2001-08-16,10342.10,10460.82,10198.15,10392.52,1055400000,10392.52
-2001-08-15,10407.05,10530.36,10289.01,10345.95,1065600000,10345.95
-2001-08-14,10416.95,10513.68,10333.29,10412.17,964600000,10412.17
-2001-08-13,10411.90,10504.82,10314.95,10415.91,837600000,10415.91
-2001-08-10,10296.89,10473.34,10164.67,10416.25,960900000,10416.25
-2001-08-09,10291.15,10361.52,10160.51,10298.56,1104200000,10298.56
-2001-08-08,10456.18,10509.80,10245.68,10293.50,1124600000,10293.50
-2001-08-07,10399.03,10520.11,10324.50,10458.74,1012000000,10458.74
-2001-08-06,10504.13,10549.59,10337.23,10401.31,811700000,10401.31
-2001-08-03,10550.01,10592.98,10381.10,10512.78,939900000,10512.78
-2001-08-02,10513.47,10663.07,10454.53,10551.18,1218300000,10551.18
-2001-08-01,10527.38,10659.33,10423.31,10510.01,1340300000,10510.01
-2001-07-31,10403.18,10639.40,10364.84,10522.81,1129200000,10522.81
-2001-07-30,10418.68,10513.26,10301.05,10401.72,909100000,10401.72
-2001-07-27,10451.89,10516.38,10316.27,10416.67,1015300000,10416.67
-2001-07-26,10403.46,10498.73,10237.46,10455.63,1213900000,10455.63
-2001-07-25,10241.75,10466.28,10159.34,10405.67,1280700000,10405.67
-2001-07-24,10423.80,10469.40,10170.82,10241.12,1198700000,10241.12
-2001-07-23,10576.92,10644.73,10374.81,10424.42,986900000,10424.42
-2001-07-20,10606.19,10668.33,10456.25,10576.65,1170900000,10576.65
-2001-07-19,10574.33,10758.14,10480.54,10610.00,1343500000,10610.00
-2001-07-18,10594.54,10676.83,10374.55,10569.83,1316300000,10569.83
-2001-07-17,10468.62,10683.76,10363.51,10606.39,1238100000,10606.39
-2001-07-16,10537.98,10649.02,10374.55,10472.12,1039800000,10472.12
-2001-07-13,10478.39,10615.42,10374.01,10539.06,1121700000,10539.06
-2001-07-12,10269.31,10542.02,10249.58,10478.99,1394000000,10478.99
-2001-07-11,10174.70,10355.83,10049.38,10241.02,1384100000,10241.02
-2001-07-10,10300.82,10406.87,10104.06,10175.64,1263800000,10175.64
-2001-07-09,10253.62,10389.91,10166.55,10299.40,1045700000,10299.40
-2001-07-06,10476.73,10483.82,10176.26,10252.68,1056700000,10252.68
-2001-07-05,10566.23,10617.47,10403.57,10479.86,934900000,10479.86
-2001-07-03,10588.89,10648.00,10479.99,10571.11,622110000,10571.11
-2001-07-02,10504.95,10707.24,10397.20,10593.72,1128300000,10593.72
-2001-06-29,10565.27,10729.18,10374.32,10502.40,1832360000,10502.40
-2001-06-28,10438.73,10736.43,10429.74,10566.21,1327300000,10566.21
-2001-06-27,10470.35,10608.48,10351.10,10434.84,1162100000,10434.84
-2001-06-26,10497.30,10600.90,10313.40,10472.48,1198900000,10472.48
-2001-06-25,10607.88,10711.19,10417.93,10504.22,1050100000,10504.22
-2001-06-22,10716.50,10753.27,10513.61,10604.59,1189200000,10604.59
-2001-06-21,10646.39,10848.47,10512.67,10715.43,1546820000,10715.43
-2001-06-20,10593.79,10770.88,10480.20,10647.33,1350100000,10647.33
-2001-06-19,10654.30,10793.46,10514.74,10596.67,1184900000,10596.67
-2001-06-18,10622.50,10781.45,10531.78,10645.38,1111600000,10645.38
-2001-06-15,10690.13,10792.25,10495.69,10623.64,1635550000,10623.64
-2001-06-14,10868.27,10874.91,10604.45,10690.13,1242900000,10690.13
-2001-06-13,10942.00,11065.92,10817.21,10871.62,1063600000,10871.62
-2001-06-12,10914.67,11009.93,10744.99,10948.38,1136500000,10948.38
-2001-06-11,10974.79,11038.56,10819.29,10922.09,870100000,10922.09
-2001-06-08,11095.62,11096.46,10882.92,10977.00,726200000,10977.00
-2001-06-07,11069.58,11169.34,10940.11,11090.74,1089600000,11090.74
-2001-06-06,11177.73,11236.68,10998.48,11070.24,1061900000,11070.24
-2001-06-05,11061.39,11234.98,10973.10,11175.84,1116800000,11175.84
-2001-06-04,10991.77,11125.99,10898.80,11061.52,836500000,11061.52
-2001-06-01,10913.57,11063.61,10793.46,10990.41,1015000000,10990.41
-2001-05-31,10873.23,11023.25,10798.53,10911.94,1226600000,10911.94
-2001-05-30,11032.96,11089.89,10819.74,10872.64,1158600000,10872.64
-2001-05-29,11004.66,11162.96,10913.44,11039.14,1026000000,11039.14
-2001-05-25,11122.03,11166.92,10949.01,11005.37,828100000,11005.37
-2001-05-24,11107.07,11248.19,10977.20,11122.42,1100700000,11122.42
-2001-05-23,11257.76,11308.44,11033.16,11105.51,1134800000,11105.51
-2001-05-22,11339.80,11411.63,11162.83,11257.24,1260400000,11257.24
-2001-05-21,11299.14,11436.42,11149.82,11337.92,1174900000,11337.92
-2001-05-18,11245.78,11374.87,11123.01,11301.74,1130800000,11301.74
-2001-05-17,11218.65,11413.46,11104.34,11248.58,1355600000,11248.58
-2001-05-16,10864.74,11258.21,10779.66,11215.92,1405300000,11215.92
-2001-05-15,10877.46,10979.35,10752.73,10872.97,1071800000,10872.97
-2001-05-14,10819.55,10930.09,10730.74,10877.33,858200000,10877.33
-2001-05-11,10908.30,10969.39,10716.16,10821.31,906200000,10821.31
-2001-05-10,10868.87,11049.39,10826.90,10910.44,1056700000,10910.44
-2001-05-09,10875.96,10964.84,10739.78,10866.98,1132400000,10866.98
-2001-05-08,10936.66,11001.66,10755.07,10883.51,1006300000,10883.51
-2001-05-07,10952.35,11059.51,10822.74,10935.17,949000000,10935.17
-2001-05-04,10793.20,10989.95,10638.48,10951.24,1082100000,10951.24
-2001-05-03,10872.32,10911.06,10657.99,10796.65,1137900000,10796.65
-2001-05-02,10902.77,11024.31,10726.77,10876.68,1342200000,10876.68
-2001-05-01,10734.05,10966.07,10669.32,10898.34,1181300000,10898.34
-2001-04-30,10814.41,10973.15,10666.13,10734.97,1226000000,10734.97
-2001-04-27,10694.95,10894.60,10632.36,10810.05,1091300000,10810.05
-2001-04-26,10633.01,10820.72,10533.98,10692.35,1345200000,10692.35
-2001-04-25,10453.43,10675.95,10373.14,10625.20,1203600000,10625.20
-2001-04-24,10529.75,10694.61,10401.45,10454.34,1216500000,10454.34
-2001-04-23,10571.00,10669.71,10393.05,10532.23,1012600000,10532.23
-2001-04-20,10690.33,10755.46,10445.43,10579.85,1338700000,10579.85
-2001-04-19,10616.09,10768.28,10468.79,10693.71,1486800000,10693.71
-2001-04-18,10226.88,10806.41,10215.69,10615.83,1918900000,10615.83
-2001-04-17,10151.73,10286.61,9980.22,10216.73,1109600000,10216.73
-2001-04-16,10118.16,10282.38,9991.14,10158.56,913900000,10158.56
-2001-04-12,10013.08,10178.22,9862.71,10126.94,1102000000,10126.94
-2001-04-11,10109.05,10246.59,9898.77,10013.47,1290300000,10013.47
-2001-04-10,9850.35,10226.85,9850.35,10102.74,1349600000,10102.74
-2001-04-09,9793.58,9999.35,9699.92,9845.15,1062800000,9845.15
-2001-04-06,9913.94,9951.73,9600.91,9791.09,1266800000,9791.09
-2001-04-05,9527.21,9969.92,9527.21,9918.05,1368000000,9918.05
-2001-04-04,9480.95,9693.05,9303.48,9515.42,1425590000,9515.42
-2001-04-03,9774.78,9779.74,9385.43,9485.71,1386100000,9485.71
-2001-04-02,9877.16,10043.02,9638.35,9777.93,1204200000,9777.93
-2001-03-30,9799.47,9998.49,9685.07,9878.78,1280800000,9878.78
-2001-03-29,9784.94,9950.22,9583.67,9799.06,1234500000,9799.06
-2001-03-28,9939.68,9939.68,9607.06,9785.35,1333400000,9785.35
-2001-03-27,9687.93,10012.98,9584.29,9947.54,1314200000,9947.54
-2001-03-26,9509.25,9820.50,9489.75,9687.53,1114000000,9687.53
-2001-03-23,9395.58,9631.80,9249.63,9504.78,1364900000,9504.78
-2001-03-22,9490.66,9565.40,9047.56,9389.48,1723950000,9389.48
-2001-03-21,9717.46,9807.08,9391.42,9487.00,1346300000,9487.00
-2001-03-20,9961.14,10130.45,9675.51,9720.76,1235900000,9720.76
-2001-03-19,9820.05,10059.08,9720.94,9959.11,1126200000,9959.11
-2001-03-16,10023.55,10119.44,9720.17,9823.41,1543560000,9823.41
-2001-03-15,9982.92,10190.80,9887.68,10031.28,1259500000,10031.28
-2001-03-14,10279.42,10279.42,9817.74,9973.46,1397400000,9973.46
-2001-03-13,10206.89,10397.83,10021.60,10290.80,1360900000,10290.80
-2001-03-12,10638.52,10638.63,10138.90,10208.25,1229000000,10208.25
-2001-03-09,10850.11,10874.15,10520.42,10644.62,1085900000,10644.62
-2001-03-08,10727.16,10940.45,10625.95,10858.25,1114100000,10858.25
-2001-03-07,10591.86,10822.23,10524.76,10729.60,1132200000,10729.60
-2001-03-06,10570.17,10759.40,10508.43,10591.22,1091800000,10591.22
-2001-03-05,10468.93,10659.52,10393.59,10562.30,929200000,10562.30
-2001-03-02,10438.04,10645.57,10239.81,10466.31,1294000000,10466.31
-2001-03-01,10493.25,10605.23,10236.92,10450.14,1294900000,10450.14
-2001-02-28,10639.32,10750.23,10374.62,10495.28,1225300000,10495.28
-2001-02-27,10638.44,10787.29,10463.92,10636.88,1114100000,10636.88
-2001-02-26,10447.59,10701.92,10347.59,10642.53,1130800000,10642.53
-2001-02-23,10529.25,10595.01,10225.14,10441.90,1231300000,10441.90
-2001-02-22,10527.80,10694.50,10278.93,10526.81,1365900000,10526.81
-2001-02-21,10721.29,10828.48,10468.32,10526.58,1208500000,10526.58
-2001-02-20,10800.23,10988.29,10612.25,10730.88,1112200000,10730.88
-2001-02-16,10884.11,10946.11,10652.33,10799.82,1257200000,10799.82
-2001-02-15,10800.65,11023.44,10694.43,10891.02,1153700000,10891.02
-2001-02-14,10899.42,10989.61,10683.39,10795.41,1150300000,10795.41
-2001-02-13,10950.18,11114.44,10774.98,10903.32,1075200000,10903.32
-2001-02-12,10779.42,11024.92,10727.02,10946.77,1039100000,10946.77
-2001-02-09,10878.51,10979.12,10682.77,10781.45,1075500000,10781.45
-2001-02-08,10940.62,11080.42,10776.04,10880.55,1107200000,10880.55
-2001-02-07,10948.95,11140.09,10794.29,10946.72,1158300000,10946.72
-2001-02-06,10965.03,11117.80,10820.28,10957.42,1059600000,10957.42
-2001-02-05,10860.44,11061.42,10759.98,10965.85,1013000000,10965.85
-2001-02-02,10982.71,11093.01,10786.69,10864.10,1048400000,10864.10
-2001-02-01,10884.82,11063.95,10759.85,10983.63,1118800000,10983.63
-2001-01-31,10882.25,11072.28,10705.23,10887.36,1295300000,10887.36
-2001-01-30,10702.19,10950.38,10609.77,10881.20,1149800000,10881.20
-2001-01-29,10657.13,10832.56,10515.99,10702.19,1053100000,10702.19
-2001-01-26,10727.08,10874.28,10506.26,10659.98,1098000000,10659.98
-2001-01-25,10644.53,10882.42,10520.90,10729.52,1258000000,10729.52
-2001-01-24,10651.85,10795.80,10483.49,10646.97,1309000000,10646.97
-2001-01-23,10575.80,10773.94,10459.91,10649.81,1232600000,10649.81
-2001-01-22,10581.90,10749.44,10371.66,10578.24,1164000000,10578.24
-2001-01-19,10686.00,10792.14,10448.93,10587.59,1407800000,10587.59
-2001-01-18,10584.57,10834.43,10466.01,10678.28,1445000000,10678.28
-2001-01-17,10660.95,10817.35,10442.83,10584.34,1349100000,10584.34
-2001-01-16,10525.78,10751.48,10362.72,10652.66,1205700000,10652.66
-2001-01-12,10608.74,10743.75,10339.94,10525.38,1276000000,10525.38
-2001-01-11,10600.20,10808.00,10400.94,10609.55,1411200000,10609.55
-2001-01-10,10568.48,10728.30,10325.71,10604.27,1296500000,10604.27
-2001-01-09,10625.21,10801.09,10387.12,10572.55,1191300000,10572.55
-2001-01-08,10658.73,10818.98,10407.85,10621.35,1115500000,10621.35
-2001-01-05,10912.81,10990.59,10492.84,10662.01,1430800000,10662.01
-2001-01-04,10944.94,11224.41,10672.58,10912.41,216940000,10912.41
-2001-01-03,10637.42,11212.62,10367.19,10945.75,188070000,10945.75
-2001-01-02,10790.92,10916.98,10450.55,10646.15,1129400000,10646.15
-2000-12-29,10868.76,11031.05,10675.75,10787.99,1035500000,10787.99
-2000-12-28,10795.20,11009.44,10645.42,10868.76,1015300000,10868.76
-2000-12-27,10690.10,10944.60,10551.00,10803.16,1092700000,10803.16
-2000-12-26,10638.21,10813.78,10479.71,10692.44,806500000,10692.44
-2000-12-22,10495.26,10772.07,10364.06,10635.56,1087100000,10635.56
-2000-12-21,10314.38,10651.96,10158.16,10487.29,1449900000,10487.29
-2000-12-20,10580.97,10604.08,10197.59,10318.93,1421600000,10318.93
-2000-12-19,10643.14,10865.35,10441.41,10584.37,1324900000,10584.37
-2000-12-18,10433.34,10783.82,10417.43,10645.42,1189900000,10645.42
-2000-12-15,10647.98,10706.84,10324.24,10434.96,156110000,10434.96
-2000-12-14,10794.82,10864.49,10508.53,10674.99,1061300000,10674.99
-2000-12-13,10777.95,11002.23,10653.76,10794.44,1195100000,10794.44
-2000-12-12,10722.77,10968.77,10582.09,10768.27,1083400000,10768.27
-2000-12-11,10719.36,10931.33,10521.04,10725.80,1202400000,10725.80
-2000-12-08,10632.14,10896.82,10534.69,10712.91,1358300000,10712.91
-2000-12-07,10644.66,10791.40,10448.99,10617.36,1128000000,10617.36
-2000-12-06,10896.14,10995.41,10513.84,10664.38,1399300000,10664.38
-2000-12-05,10576.78,11044.70,10504.36,10898.72,900300000,10898.72
-2000-12-04,10377.33,10701.35,10227.17,10560.95,1103000000,10560.95
-2000-12-01,10416.76,10645.42,10238.54,10373.54,1195200000,10373.54
-2000-11-30,10610.53,10690.16,10204.80,10414.49,1186530000,10414.49
-2000-11-29,10502.74,10746.66,10383.02,10629.11,402100000,10629.11
-2000-11-28,10537.86,10730.35,10356.47,10507.58,1028200000,10507.58
-2000-11-27,10479.33,10758.04,10411.08,10546.07,946100000,10546.07
-2000-11-24,10403.87,10596.50,10354.20,10470.23,404870000,10470.23
-2000-11-22,10484.26,10589.67,10251.06,10399.32,963200000,10399.32
-2000-11-21,10465.57,10676.13,10303.39,10494.50,1137100000,10494.50
-2000-11-20,10624.18,10707.22,10331.45,10462.65,955800000,10462.65
-2000-11-17,10657.13,10824.77,10462.55,10629.87,1070400000,10629.87
-2000-11-16,10705.33,10857.38,10536.30,10656.03,956300000,10656.03
-2000-11-15,10681.21,10863.83,10544.17,10707.60,1066800000,10707.60
-2000-11-14,10528.25,10809.61,10484.64,10681.06,1118800000,10681.06
-2000-11-13,10595.35,10701.54,10273.24,10517.25,1129300000,10517.25
-2000-11-10,10813.78,10886.20,10497.53,10602.95,962500000,10602.95
-2000-11-09,10902.11,10989.34,10576.40,10834.25,1111000000,10834.25
-2000-11-08,10954.34,11152.02,10779.27,10907.06,909300000,10907.06
-2000-11-07,10978.72,11105.75,10825.15,10952.18,880900000,10952.18
-2000-11-06,10820.60,11092.10,10741.73,10977.21,930900000,10977.21
-2000-11-03,10883.17,10996.17,10650.72,10817.95,997700000,10817.95
-2000-11-02,10903.17,11071.06,10731.49,10880.51,1167700000,10880.51
-2000-11-01,10966.21,11103.10,10736.42,10899.47,1206800000,10899.47
-2000-10-31,10835.39,11108.79,10681.06,10971.14,1366400000,10971.14
-2000-10-30,10588.06,10944.98,10506.25,10835.77,1186500000,10835.77
-2000-10-27,10381.60,10696.43,10296.70,10590.62,1086300000,10590.62
-2000-10-26,10330.18,10563.25,10128.18,10380.12,1303800000,10380.12
-2000-10-25,10395.66,10563.99,10170.08,10326.48,1315600000,10326.48
-2000-10-24,10273.57,10583.96,10136.69,10393.07,1158600000,10393.07
-2000-10-23,10230.29,10496.28,10078.24,10271.72,1046800000,10271.72
-2000-10-20,10141.13,10406.76,9925.82,10226.59,1177400000,10226.59
-2000-10-19,10014.61,10317.23,9901.77,10142.98,1297900000,10142.98
-2000-10-18,10085.99,10171.47,9571.40,9975.02,1441700000,9975.02
-2000-10-17,10242.87,10402.32,9924.34,10089.71,1161500000,10089.71
-2000-10-16,10184.78,10428.95,10033.84,10238.80,1005400000,10238.80
-2000-10-13,10031.62,10325.37,9883.27,10192.18,1223900000,10192.18
-2000-10-12,10424.14,10462.25,9873.66,10034.58,1388600000,10034.58
-2000-10-11,10521.07,10647.23,10228.44,10413.79,1387500000,10413.79
-2000-10-10,10569.17,10744.52,10377.16,10524.40,1044000000,10524.40
-2000-10-09,10596.91,10762.10,10438.94,10568.43,716600000,10568.43
-2000-10-06,10726.76,10871.42,10440.05,10596.54,1150100000,10596.54
-2000-10-05,10783.72,10940.23,10570.28,10724.92,1176100000,10724.92
-2000-10-04,10723.33,10972.41,10596.54,10784.48,1167400000,10784.48
-2000-10-03,10709.84,10976.11,10561.03,10719.74,1098100000,10719.74
-2000-10-02,10659.06,10876.23,10479.27,10700.13,1051200000,10700.13
-2000-09-29,10821.40,10923.21,10552.15,10650.92,1197100000,10650.92
-2000-09-28,10629.84,10948.00,10539.48,10824.06,1206200000,10824.06
-2000-09-27,10634.45,10821.10,10439.31,10628.36,1174700000,10628.36
-2000-09-26,10806.30,10915.44,10499.61,10631.32,1106600000,10631.32
-2000-09-25,10847.37,11039.47,10664.24,10808.15,982400000,10808.15
-2000-09-22,10678.30,10936.53,10505.16,10847.37,1185500000,10847.37
-2000-09-21,10680.52,10902.12,10548.08,10765.52,1105400000,10765.52
-2000-09-20,10794.47,10906.93,10500.35,10687.92,1104000000,10687.92
-2000-09-19,10812.22,10960.95,10645.38,10789.29,1024900000,10789.29
-2000-09-18,10926.42,11053.80,10693.84,10808.52,962500000,10808.52
-2000-09-15,11087.84,11203.26,10857.73,10927.00,1268400000,10927.00
-2000-09-14,11189.58,11285.39,10986.47,11087.47,1014000000,11087.47
-2000-09-13,11225.03,11350.87,11020.14,11182.18,1068300000,11182.18
-2000-09-12,11197.71,11351.98,11015.70,11233.23,991200000,11233.23
-2000-09-11,11219.54,11367.15,11043.07,11195.49,899300000,11195.49
-2000-09-08,11261.72,11381.95,11059.72,11220.65,961000000,11220.65
-2000-09-07,11316.01,11444.84,11124.83,11259.87,985500000,11259.87
-2000-09-06,11253.58,11518.83,11186.25,11310.64,995100000,11310.64
-2000-09-05,11221.76,11382.69,11094.50,11260.61,838500000,11260.61
-2000-09-01,11219.54,11406.74,11130.01,11238.78,767700000,11238.78
-2000-08-31,11105.23,11415.99,11040.85,11215.10,1056600000,11215.10
-2000-08-30,11209.01,11282.06,11034.57,11103.01,818400000,11103.01
-2000-08-29,11249.27,11356.42,11100.79,11215.10,795600000,11215.10
-2000-08-28,11194.48,11410.44,11123.35,11252.84,733600000,11252.84
-2000-08-25,11180.54,11301.41,11073.59,11192.63,685600000,11192.63
-2000-08-24,11143.91,11302.51,11009.12,11182.74,837100000,11182.74
-2000-08-23,11130.55,11253.06,10990.44,11144.65,871000000,11144.65
-2000-08-22,11082.20,11274.67,11000.33,11139.15,818800000,11139.15
-2000-08-21,11058.85,11193.73,10945.39,11079.81,731600000,11079.81
-2000-08-18,11051.20,11180.54,10933.30,11046.48,821400000,11046.48
-2000-08-17,11010.95,11180.91,10899.24,11055.64,922400000,11055.64
-2000-08-16,11068.83,11171.02,10888.62,11008.39,929800000,11008.39
-2000-08-15,11175.05,11227.06,10965.54,11067.00,895900000,11067.00
-2000-08-14,11027.07,11232.92,10928.91,11176.14,783800000,11176.14
-2000-08-11,10905.98,11131.83,10841.37,11027.80,835500000,11027.80
-2000-08-10,10901.06,11069.93,10779.47,10908.76,940800000,10908.76
-2000-08-09,10970.94,11097.03,10780.02,10905.83,1054000000,10905.83
-2000-08-08,10865.15,11083.11,10741.38,10976.89,992200000,10976.89
-2000-08-07,10773.98,10973.23,10657.50,10867.01,854800000,10867.01
-2000-08-04,10713.36,10873.97,10555.68,10767.75,956000000,10767.75
-2000-08-03,10679.37,10844.30,10518.68,10706.58,1095600000,10706.58
-2000-08-02,10609.15,10818.66,10514.29,10687.53,986300000,10687.53
-2000-08-01,10523.81,10728.92,10428.58,10606.95,938700000,10606.95
-2000-07-31,10514.29,10727.09,10374.00,10521.98,952600000,10521.98
-2000-07-28,10594.97,10732.14,10367.28,10511.17,980000000,10511.17
-2000-07-27,10516.83,10745.93,10450.01,10586.13,1156400000,10586.13
-2000-07-26,10689.36,10790.13,10447.18,10516.48,1235800000,10516.48
-2000-07-25,10689.28,10867.20,10557.49,10699.97,969400000,10699.97
-2000-07-24,10731.44,10895.84,10545.47,10685.12,880300000,10685.12
-2000-07-21,10843.51,10949.58,10614.06,10733.56,968300000,10733.56
-2000-07-20,10700.68,10980.34,10671.33,10843.87,1064600000,10843.87
-2000-07-19,10724.15,10907.15,10587.89,10696.08,909400000,10696.08
-2000-07-18,10799.16,10895.57,10613.00,10739.92,908300000,10739.92
-2000-07-17,10812.40,10969.38,10653.30,10804.27,906000000,10804.27
-2000-07-14,10793.31,10935.44,10661.43,10812.75,960600000,10812.75
-2000-07-13,10774.92,10963.02,10643.40,10788.71,1026800000,10788.71
-2000-07-12,10722.24,10930.84,10639.51,10783.76,1001200000,10783.76
-2000-07-11,10649.06,10877.46,10544.76,10727.19,980500000,10727.19
-2000-07-10,10627.14,10792.25,10520.01,10646.58,838700000,10646.58
-2000-07-07,10483.33,10742.04,10419.25,10635.98,931700000,10635.98
-2000-07-06,10481.45,10644.11,10303.28,10481.47,947300000,10481.47
-2000-07-05,10538.23,10674.16,10362.33,10483.60,1019300000,10483.60
-2000-07-03,10450.36,10610.17,10353.66,10560.67,451900000,10560.67
-2000-06-30,10393.09,10626.79,10161.51,10447.89,1459700000,10447.89
-2000-06-29,10523.90,10582.94,10279.24,10398.04,1110900000,10398.04
-2000-06-28,10506.39,10712.70,10399.10,10527.79,1095100000,10527.79
-2000-06-27,10541.58,10741.69,10384.60,10504.46,1042500000,10504.46
-2000-06-26,10403.69,10680.26,10365.15,10542.99,889000000,10542.99
-2000-06-23,10376.47,10555.37,10283.13,10404.75,847600000,10404.75
-2000-06-22,10495.97,10596.73,10256.97,10376.12,1022700000,10376.12
-2000-06-21,10446.83,10607.69,10312.48,10497.74,1009600000,10497.74
-2000-06-20,10558.90,10632.09,10318.84,10435.16,1031500000,10435.16
-2000-06-19,10448.40,10733.56,10322.02,10557.84,921700000,10557.84
-2000-06-16,10717.76,10784.47,10393.44,10449.30,1250800000,10449.30
-2000-06-15,10689.63,10889.48,10552.89,10714.82,1011400000,10714.82
-2000-06-14,10632.46,10860.84,10542.99,10687.95,929700000,10687.95
-2000-06-13,10562.31,10751.86,10395.56,10621.84,935900000,10621.84
-2000-06-12,10615.12,10757.60,10476.88,10564.21,774100000,10564.21
-2000-06-09,10678.47,10848.38,10515.52,10614.06,786000000,10614.06
-2000-06-08,10818.78,10887.72,10524.92,10668.72,854300000,10668.72
-2000-06-07,10733.48,10974.07,10588.64,10812.86,854600000,10812.86
-2000-06-06,10822.61,10916.97,10592.82,10735.57,950100000,10735.57
-2000-06-05,10793.11,10951.79,10629.03,10815.30,838600000,10815.30
-2000-06-02,10660.09,11013.05,10600.46,10794.76,1162400000,10794.76
-2000-06-01,10532.27,10780.37,10422.95,10652.20,960100000,10652.20
-2000-05-31,10528.28,10692.73,10377.37,10522.33,960500000,10522.33
-2000-05-30,10302.31,10596.00,10287.94,10527.13,844200000,10527.13
-2000-05-26,10322.89,10487.72,10163.20,10299.24,722600000,10299.24
-2000-05-25,10529.87,10644.32,10207.75,10323.92,984500000,10323.92
-2000-05-24,10420.90,10679.53,10240.99,10535.35,1152300000,10535.35
-2000-05-23,10539.12,10671.74,10325.63,10422.27,869900000,10422.27
-2000-05-22,10624.79,10718.00,10308.15,10542.55,869000000,10542.55
-2000-05-19,10764.22,10821.83,10468.18,10626.85,853700000,10626.85
-2000-05-18,10771.80,10938.34,10669.00,10777.28,807900000,10777.28
-2000-05-17,10930.64,10947.25,10648.78,10769.74,820500000,10769.74
-2000-05-16,10816.01,11086.72,10723.48,10934.57,955500000,10934.57
-2000-05-15,10606.97,10902.36,10509.31,10807.78,854600000,10807.78
-2000-05-12,10549.06,10780.37,10444.54,10609.37,858200000,10609.37
-2000-05-11,10369.27,10676.88,10315.69,10545.97,953600000,10545.97
-2000-05-10,10533.09,10649.95,10169.77,10367.78,1006400000,10367.78
-2000-05-09,10607.54,10765.75,10435.96,10536.75,896600000,10536.75
-2000-05-08,10571.31,10744.22,10400.40,10603.63,787600000,10603.63
-2000-05-05,10409.70,10688.61,10312.91,10577.86,805500000,10577.86
-2000-05-04,10478.89,10631.53,10293.05,10412.49,925800000,10412.49
-2000-05-03,10732.21,10754.39,10345.17,10480.13,991600000,10480.13
-2000-05-02,10805.58,10932.47,10580.65,10731.12,1011500000,10731.12
-2000-05-01,10749.42,11001.34,10622.22,10811.78,966300000,10811.78
-2000-04-28,10892.76,11005.07,10632.46,10733.91,984600000,10733.91
-2000-04-27,10941.91,11024.61,10650.14,10888.10,1111000000,10888.10
-2000-04-26,11127.92,11246.75,10816.44,10945.50,999600000,10945.50
-2000-04-25,10916.65,11265.67,10764.62,11124.82,1071100000,11124.82
-2000-04-24,10822.33,11060.29,10579.10,10906.10,868700000,10906.10
-2000-04-20,10668.19,10941.47,10582.51,10844.05,896200000,10844.05
-2000-04-19,10748.97,10909.20,10503.40,10674.96,1001400000,10674.96
-2000-04-18,10584.02,10941.78,10424.90,10767.42,1109400000,10767.42
-2000-04-17,10303.29,10721.50,10128.62,10582.51,1204700000,10582.51
-2000-04-14,10922.85,10922.85,10173.92,10305.77,1279700000,10305.77
-2000-04-13,11132.58,11290.80,10806.51,10923.55,1032000000,10923.55
-2000-04-12,11283.05,11600.43,11026.47,11125.13,1175900000,11125.13
-2000-04-11,11180.98,11459.58,11024.22,11287.08,971400000,11287.08
-2000-04-10,11114.89,11404.35,10955.43,11186.56,853700000,11186.56
-2000-04-07,11122.03,11317.79,10932.78,11111.48,891600000,11111.48
-2000-04-06,11029.56,11303.83,10921.07,11114.27,1008000000,11114.27
-2000-04-05,11163.29,11326.79,10894.00,11033.92,1110300000,11033.92
-2000-04-04,11225.34,11531.24,10682.72,11164.84,1515460000,11164.84
-2000-04-03,10863.28,11344.17,10821.71,11221.93,1021700000,11221.93
-2000-03-31,10993.28,11244.58,10801.23,10921.92,1227400000,10921.92
-2000-03-30,11008.17,11258.23,10796.58,10980.25,1193400000,10980.25
-2000-03-29,10939.05,11214.48,10792.24,11018.72,1061900000,11018.72
-2000-03-28,11023.68,11192.76,10804.65,10936.11,959100000,10936.11
-2000-03-27,11093.25,11274.98,10881.90,11025.85,901000000,11025.85
-2000-03-24,11107.45,11311.28,10901.44,11112.72,1052200000,11112.72
-2000-03-23,10884.38,11224.72,10737.63,11119.86,1078300000,11119.86
-2000-03-22,10916.96,11054.71,10671.86,10866.70,1075000000,10866.70
-2000-03-21,10680.24,11012.20,10515.50,10907.34,1065900000,10907.34
-2000-03-20,10594.75,10866.08,10456.86,10680.24,920800000,10680.24
-2000-03-17,10629.98,10849.32,10399.15,10595.23,1295100000,10595.23
-2000-03-16,10139.58,10716.23,10139.58,10630.60,1482300000,10630.60
-2000-03-15,9808.15,10294.60,9676.90,10131.41,1302800000,10131.41
-2000-03-14,9957.67,10149.41,9747.33,9811.24,1094000000,9811.24
-2000-03-13,9911.22,10111.25,9670.07,9947.13,1016100000,9947.13
-2000-03-10,10008.55,10211.77,9792.93,9928.82,1138800000,9928.82
-2000-03-09,9855.29,10097.28,9667.28,10010.73,1123000000,10010.73
-2000-03-08,9800.69,10037.41,9611.75,9856.53,1203000000,9856.53
-2000-03-07,10197.61,10208.66,9651.77,9796.03,1314100000,9796.03
-2000-03-06,10358.96,10518.91,10038.65,10170.50,1029000000,10170.50
-2000-03-03,10171.12,10581.89,10148.16,10367.20,1150300000,10367.20
-2000-03-02,10135.44,10361.61,9986.53,10164.92,1198600000,10164.92
-2000-03-01,10128.11,10355.72,9935.96,10137.93,1274100000,10137.93
-2000-02-29,10039.58,10332.14,9926.65,10128.31,1204300000,10128.31
-2000-02-28,9854.66,10228.52,9760.36,10038.65,1026500000,10038.65
-2000-02-25,10090.77,10196.02,9767.80,9862.12,1065200000,9862.12
-2000-02-24,10242.48,10321.90,9877.94,10092.63,1215000000,10092.63
-2000-02-23,10294.82,10443.21,10077.74,10225.73,993700000,10225.73
-2000-02-22,10219.83,10446.62,10011.66,10304.84,980000000,10304.84
-2000-02-18,10514.57,10562.34,10129.24,10219.52,1042300000,10219.52
-2000-02-17,10565.76,10768.66,10348.66,10514.57,1034800000,10514.57
-2000-02-16,10711.82,10831.64,10468.65,10561.41,1018800000,10561.41
-2000-02-15,10520.15,10821.09,10377.44,10718.09,1092100000,10718.09
-2000-02-14,10431.65,10674.96,10327.56,10519.84,927300000,10519.84
-2000-02-11,10638.64,10763.38,10301.12,10425.21,1025700000,10425.21
-2000-02-10,10697.92,10853.67,10491.30,10643.63,1058800000,10643.63
-2000-02-09,10948.82,11016.54,10647.97,10699.16,1050500000,10699.16
-2000-02-08,10904.26,11139.40,10826.67,10957.60,1047700000,10957.60
-2000-02-07,10965.97,11097.52,10732.67,10905.79,918100000,10905.79
-2000-02-04,11014.37,11200.83,10847.54,10963.80,1045100000,10963.80
-2000-02-03,11010.48,11207.97,10799.68,11013.44,1146500000,11013.44
-2000-02-02,11037.64,11228.44,10876.00,11003.20,1038600000,11003.20
-2000-02-01,10937.74,11187.18,10798.44,11041.05,981000000,11041.05
-2000-01-31,10735.77,11059.67,10610.43,10940.53,993800000,10940.53
-2000-01-28,11024.92,11115.20,10649.21,10738.87,1095800000,10738.87
-2000-01-27,11035.55,11274.36,10818.30,11028.02,1129500000,11028.02
-2000-01-26,11025.85,11280.87,10870.73,11032.99,1117300000,11032.99
-2000-01-25,11010.96,11228.75,10779.83,11029.89,1073700000,11029.89
-2000-01-24,11251.94,11501.15,10849.01,11008.17,1115800000,11008.17
-2000-01-21,11356.26,11513.87,11113.65,11251.71,1209800000,11251.71
-2000-01-20,11490.29,11654.72,11194.32,11351.30,1100700000,11351.30
-2000-01-19,11535.24,11710.57,11320.28,11489.36,1087800000,11489.36
-2000-01-18,11719.19,11834.67,11397.22,11560.72,1056700000,11560.72
-2000-01-14,11619.35,11908.50,11506.42,11722.98,1085900000,11722.98
-2000-01-13,11558.24,11761.14,11421.42,11582.43,1030400000,11582.43
-2000-01-12,11506.73,11751.83,11385.74,11551.10,974600000,11551.10
-2000-01-11,11568.47,11748.11,11398.30,11511.08,1014000000,11511.08
-2000-01-10,11532.48,11765.17,11427.00,11572.20,1064800000,11572.20
-2000-01-07,11247.06,11655.65,11168.26,11522.56,1225200000,11522.56
-2000-01-06,11113.37,11447.79,10963.18,11253.26,1092300000,11253.26
-2000-01-05,10989.37,11337.65,10862.66,11122.65,1085500000,11122.65
-2000-01-04,11349.75,11358.44,10907.03,10997.93,1009000000,10997.93
-2000-01-03,11501.85,11641.07,11180.98,11357.51,931800000,11357.51
-1999-12-31,11453.48,11598.26,11368.05,11497.12,374050000,11497.12
-1999-12-30,11484.36,11640.33,11388.94,11452.86,554680000,11452.86
-1999-12-29,11472.88,11658.68,11367.53,11484.66,567860000,11484.66
-1999-12-28,11389.24,11613.72,11302.08,11476.71,655400000,11476.71
-1999-12-27,11410.65,11603.02,11253.15,11391.08,722600000,11391.08
-1999-12-23,11202.07,11506.38,11202.07,11405.76,728600000,11405.76
-1999-12-22,11199.45,11375.17,11075.76,11203.60,850000000,11203.60
-1999-12-21,11142.43,11336.03,10973.61,11200.54,963500000,11200.54
-1999-12-20,11254.50,11417.38,11026.22,11144.27,904600000,11144.27
-1999-12-17,11259.26,11497.20,11103.59,11257.43,1349800000,11257.43
-1999-12-16,11224.40,11396.89,11016.13,11244.89,1070300000,11244.89
-1999-12-15,11158.78,11400.48,11014.60,11225.32,1033900000,11225.32
-1999-12-14,11195.34,11336.33,11027.13,11160.17,1027800000,11160.17
-1999-12-13,11217.46,11379.46,11024.38,11192.59,977600000,11192.59
-1999-12-10,11137.85,11358.66,11042.12,11224.70,987200000,11224.70
-1999-12-09,11073.62,11327.46,10962.60,11134.79,1122100000,11134.79
-1999-12-08,11107.26,11273.33,10957.41,11068.12,957000000,11068.12
-1999-12-07,11221.65,11351.32,10993.49,11106.65,1085800000,11106.65
-1999-12-06,11286.79,11412.79,11100.53,11225.01,916800000,11225.01
-1999-12-03,11046.10,11423.50,11046.10,11286.18,1006400000,11286.18
-1999-12-02,10995.02,11183.72,10896.24,11039.06,900700000,11039.06
-1999-12-01,10876.47,11111.24,10798.07,10998.39,884000000,10998.39
-1999-11-30,10945.49,11142.13,10785.22,10877.81,951500000,10877.81
-1999-11-29,10985.73,11059.25,10813.97,10947.92,866100000,10947.92
-1999-11-26,11007.26,11115.83,10938.44,10988.91,312120000,10988.91
-1999-11-24,11000.22,11131.12,10859.23,11008.17,734800000,11008.17
-1999-11-23,11090.29,11178.83,10899.60,10995.63,926100000,10995.63
-1999-11-22,11008.78,11195.34,10887.67,11089.52,873500000,11089.52
-1999-11-19,11033.25,11146.41,10871.77,11003.89,893800000,11003.89
-1999-11-18,10887.67,11147.02,10859.92,11035.70,1022800000,11035.70
-1999-11-17,10929.00,11040.90,10774.21,10883.09,960000000,10883.09
-1999-11-16,10762.89,10992.88,10691.94,10932.33,942200000,10932.33
-1999-11-15,10764.73,10899.22,10626.80,10760.75,795700000,10760.75
-1999-11-12,10593.51,10845.16,10513.03,10769.32,900200000,10769.32
-1999-11-11,10603.25,10716.71,10485.20,10595.30,891300000,10595.30
-1999-11-10,10611.94,10713.04,10449.42,10597.74,984700000,10597.74
-1999-11-09,10715.10,10806.02,10506.61,10617.32,854300000,10617.32
-1999-11-08,10668.42,10838.74,10548.20,10718.85,806800000,10718.85
-1999-11-05,10639.95,10885.53,10636.59,10704.48,1007300000,10704.48
-1999-11-04,10612.42,10817.95,10523.43,10639.64,981700000,10639.64
-1999-11-03,10582.54,10759.22,10485.50,10609.06,914400000,10609.06
-1999-11-02,10653.71,10816.11,10508.14,10581.84,904500000,10581.84
-1999-11-01,10730.78,10828.96,10568.08,10648.51,861000000,10648.51
-1999-10-29,10629.18,10883.10,10580.11,10729.86,1120500000,10729.86
-1999-10-28,10397.67,10726.70,10397.67,10622.53,1135100000,10622.53
-1999-10-27,10302.76,10515.21,10172.32,10394.89,950100000,10394.89
-1999-10-26,10350.88,10486.39,10208.73,10302.13,878300000,10302.13
-1999-10-25,10468.98,10518.37,10225.82,10349.93,777000000,10349.93
-1999-10-22,10581.69,10581.69,10301.18,10470.25,959200000,10470.25
-1999-10-21,10390.71,10414.52,10047.57,10297.69,1012500000,10297.69
-1999-10-20,10203.31,10485.13,10144.46,10392.36,928800000,10392.36
-1999-10-19,10117.54,10418.01,10093.80,10204.93,905700000,10204.93
-1999-10-18,10018.45,10221.08,9884.20,10116.28,818700000,10116.28
-1999-10-15,10286.61,10286.61,9911.43,10019.71,912600000,10019.71
-1999-10-14,10230.89,10416.74,10071.64,10286.61,892300000,10286.61
-1999-10-13,10412.31,10495.89,10173.58,10232.16,821500000,10232.16
-1999-10-12,10648.81,10659.58,10366.08,10417.06,778300000,10417.06
-1999-10-11,10649.76,10781.16,10545.60,10648.18,655900000,10648.18
-1999-10-08,10534.52,10743.48,10423.71,10649.76,897300000,10649.76
-1999-10-07,10588.34,10687.12,10430.99,10537.05,827800000,10537.05
-1999-10-06,10399.77,10655.46,10340.75,10588.34,895200000,10588.34
-1999-10-05,10401.23,10578.21,10250.20,10400.59,965700000,10400.59
-1999-10-04,10274.58,10538.32,10220.44,10401.23,803300000,10401.23
-1999-10-01,10335.69,10425.92,10108.05,10273.00,896200000,10273.00
-1999-09-30,10214.11,10456.32,10156.85,10336.95,1017600000,10336.95
-1999-09-29,10274.27,10408.51,10119.76,10213.48,856000000,10213.48
-1999-09-28,10300.51,10386.03,10055.17,10275.53,885400000,10275.53
-1999-09-27,10279.33,10498.74,10201.76,10303.39,780600000,10303.39
-1999-09-24,10311.94,10428.14,10128.63,10279.33,872800000,10279.33
-1999-09-23,10524.07,10643.75,10260.33,10318.59,890800000,10318.59
-1999-09-22,10599.42,10688.39,10407.56,10524.07,822200000,10524.07
-1999-09-21,10822.95,10822.95,10517.10,10598.47,817300000,10598.47
-1999-09-20,10801.87,10918.88,10715.93,10823.90,568000000,10823.90
-1999-09-17,10745.38,10946.74,10690.61,10803.63,861900000,10803.63
-1999-09-16,10795.77,10876.46,10592.46,10737.46,739000000,10737.46
-1999-09-15,10910.40,11049.96,10757.41,10801.42,787300000,10801.42
-1999-09-14,11028.74,11061.04,10815.67,10910.33,734500000,10910.33
-1999-09-13,11027.40,11146.52,10886.90,11030.33,657900000,11030.33
-1999-09-10,11087.00,11218.39,10965.74,11028.43,808500000,11028.43
-1999-09-09,11031.28,11172.17,10900.83,11079.40,773900000,11079.40
-1999-09-08,11034.13,11164.89,10898.62,11036.34,791200000,11036.34
-1999-09-07,11079.08,11191.80,10910.65,11034.13,715300000,11034.13
-1999-09-03,10922.36,11155.70,10922.36,11078.45,663200000,11078.45
-1999-09-02,10923.95,10923.95,10669.71,10843.21,687100000,10843.21
-1999-09-01,10828.44,11013.55,10784.32,10937.88,708200000,10937.88
-1999-08-31,10909.70,11079.08,10725.43,10829.28,861700000,10829.28
-1999-08-30,11087.69,11176.60,10869.81,10914.13,597900000,10914.13
-1999-08-27,11198.45,11295.33,11021.14,11090.17,570050000,11090.17
-1999-08-26,11326.04,11393.48,11133.86,11198.45,719000000,11198.45
-1999-08-25,11282.38,11428.94,11106.31,11326.04,864600000,11326.04
-1999-08-24,11297.54,11404.87,11135.76,11283.30,732700000,11283.30
-1999-08-23,11099.66,11344.09,11087.95,11299.76,682600000,11299.76
-1999-08-20,10963.84,11155.07,10916.35,11100.61,661200000,11100.61
-1999-08-19,10988.85,11037.29,10809.65,10963.84,684200000,10963.84
-1999-08-18,11109.66,11153.49,10913.50,10991.38,682800000,10991.38
-1999-08-17,11049.64,11180.08,10963.52,11117.08,691500000,11117.08
-1999-08-16,10980.11,11105.05,10853.98,11046.79,583550000,11046.79
-1999-08-13,10822.00,11049.64,10822.00,10973.65,691700000,10973.65
-1999-08-12,10785.65,10967.64,10688.07,10789.39,745600000,10789.39
-1999-08-11,10650.59,10878.99,10596.26,10787.80,792300000,10787.80
-1999-08-10,10704.22,10812.82,10487.34,10655.15,836200000,10655.15
-1999-08-09,10714.03,10854.61,10571.56,10707.70,684300000,10707.70
-1999-08-06,10792.58,10896.08,10584.54,10714.03,698900000,10714.03
-1999-08-05,10675.41,10876.77,10509.19,10793.82,859300000,10793.82
-1999-08-04,10675.66,10901.78,10585.17,10674.77,789300000,10674.77
-1999-08-03,10645.96,10812.82,10538.00,10677.31,739600000,10677.31
-1999-08-02,10654.83,10849.23,10551.30,10645.96,649550000,10645.96
-1999-07-30,10791.29,10897.98,10594.99,10655.15,736800000,10655.15
-1999-07-29,10920.15,10920.15,10672.24,10791.29,770100000,10791.29
-1999-07-28,10979.04,11090.48,10851.13,10972.07,690900000,10972.07
-1999-07-27,10863.16,11079.40,10834.35,10979.04,723800000,10979.04
-1999-07-26,10910.96,11014.50,10748.86,10863.16,613450000,10863.16
-1999-07-23,10979.67,11069.59,10813.77,10910.96,630580000,10910.96
-1999-07-22,11002.78,11140.51,10796.67,10969.22,771700000,10969.22
-1999-07-21,10998.94,11142.72,10865.69,11002.78,785500000,11002.78
-1999-07-20,11130.06,11245.62,10914.13,10996.13,754800000,10996.13
-1999-07-19,11209.84,11321.61,11069.90,11187.68,642330000,11187.68
-1999-07-16,11188.63,11300.08,11069.27,11209.84,714100000,11209.84
-1999-07-15,11200.03,11313.37,11072.75,11186.41,818800000,11186.41
-1999-07-14,11202.24,11289.95,11051.86,11148.10,756100000,11148.10
-1999-07-13,11106.31,11277.60,11013.55,11175.02,736000000,11175.02
-1999-07-12,11234.22,11314.64,11087.95,11200.98,685300000,11200.98
-1999-07-09,11142.72,11284.25,11050.59,11193.70,701000000,11193.70
-1999-07-08,11118.66,11290.58,10985.68,11126.89,830600000,11126.89
-1999-07-07,11129.74,11268.42,11008.16,11187.36,791200000,11187.36
-1999-07-06,11119.93,11291.21,11021.78,11135.12,722900000,11135.12
-1999-07-02,11089.53,11205.41,10995.50,11139.24,613570000,11139.24
-1999-07-01,10972.39,11156.65,10841.63,11066.42,843400000,11066.42
-1999-06-30,10805.22,11120.24,10657.36,10970.80,1117000000,10970.80
-1999-06-29,10673.83,10855.56,10589.61,10815.35,820100000,10815.35
-1999-06-28,10633.93,10792.24,10535.15,10655.15,652910000,10655.15
-1999-06-25,10586.44,10719.42,10477.21,10552.56,623460000,10552.56
-1999-06-24,10620.32,10736.83,10404.07,10534.83,690400000,10534.83
-1999-06-23,10702.32,10791.29,10542.75,10666.86,731800000,10666.86
-1999-06-22,10768.49,10879.94,10639.63,10721.63,716500000,10721.63
-1999-06-21,10865.06,10960.36,10684.91,10815.98,686600000,10815.98
-1999-06-18,10885.00,10978.09,10751.39,10855.56,914500000,10855.56
-1999-06-17,10732.71,10936.61,10642.80,10841.63,700300000,10841.63
-1999-06-16,10709.92,10883.74,10608.92,10784.95,806800000,10784.95
-1999-06-15,10612.09,10740.00,10500.01,10594.99,696600000,10594.99
-1999-06-14,10490.83,10691.24,10414.52,10563.33,669400000,10563.33
-1999-06-11,10619.69,10744.11,10386.98,10490.51,698200000,10490.51
-1999-06-10,10621.58,10736.20,10452.52,10621.27,716500000,10621.27
-1999-06-09,10780.84,10871.39,10602.59,10690.29,662000000,10690.29
-1999-06-08,10878.35,10954.66,10671.93,10765.64,685900000,10765.64
-1999-06-07,10805.20,11016.40,10718.47,10909.38,664300000,10909.38
-1999-06-04,10702.64,10892.60,10558.26,10799.84,694500000,10799.84
-1999-06-03,10629.18,10767.86,10515.52,10663.69,719600000,10663.69
-1999-06-02,10591.82,10694.09,10388.24,10577.89,728000000,10577.89
-1999-06-01,10549.08,10717.20,10334.42,10596.26,683800000,10596.26
-1999-05-28,10489.56,10690.07,10389.94,10559.74,649960000,10559.74
-1999-05-27,10643.04,10734.21,10372.96,10466.93,811400000,10466.93
-1999-05-26,10580.94,10818.08,10416.06,10702.16,870800000,10702.16
-1999-05-25,10651.73,10818.96,10494.52,10531.09,826700000,10531.09
-1999-05-24,10829.87,10924.26,10568.85,10654.67,754700000,10654.67
-1999-05-21,10879.13,10974.69,10728.12,10829.28,686600000,10829.28
-1999-05-20,10892.40,11020.70,10773.83,10866.74,752200000,10866.74
-1999-05-19,10836.67,10988.85,10722.81,10887.39,801100000,10887.39
-1999-05-18,10895.94,11017.75,10678.86,10836.95,753400000,10836.95
-1999-05-17,10864.35,10976.32,10677.64,10853.47,665500000,10853.47
-1999-05-14,10950.26,11076.55,10787.03,10913.32,727800000,10913.32
-1999-05-13,11087.71,11244.36,10931.36,11107.19,796900000,11107.19
-1999-05-12,11002.38,11146.71,10759.54,11000.37,825500000,11000.37
-1999-05-11,11059.65,11185.08,10882.11,11026.15,836100000,11026.15
-1999-05-10,11029.25,11173.05,10876.38,11007.25,773300000,11007.25
-1999-05-07,10967.16,11135.54,10838.29,11031.59,814900000,11031.59
-1999-05-06,10909.02,11093.44,10730.33,10946.82,875400000,10946.82
-1999-05-05,10902.72,11055.36,10711.15,10955.41,913500000,10955.41
-1999-05-04,11012.11,11140.12,10787.32,10886.11,933100000,10886.11
-1999-05-03,10788.75,11083.13,10701.12,11014.69,811400000,11014.69
-1999-04-30,10933.94,11072.25,10603.76,10789.04,936500000,10789.04
-1999-04-29,10864.64,11052.49,10710.00,10878.38,1003600000,10878.38
-1999-04-28,10806.22,11050.77,10665.90,10845.45,951700000,10845.45
-1999-04-27,10781.88,10977.46,10647.29,10831.71,891700000,10831.71
-1999-04-26,10721.17,10854.33,10540.47,10718.59,712000000,10718.59
-1999-04-23,10646.71,10858.34,10530.45,10689.67,744900000,10689.67
-1999-04-22,10735.77,10896.42,10517.85,10727.18,927900000,10727.18
-1999-04-21,10462.58,10702.56,10309.09,10581.42,920000000,10581.42
-1999-04-20,10440.53,10610.06,10212.87,10448.55,985400000,10448.55
-1999-04-19,10566.07,10879.76,10284.39,10440.53,1214400000,10440.53
-1999-04-16,10497.26,10632.90,10299.55,10493.89,1002300000,10493.89
-1999-04-15,10411.66,10673.90,10201.31,10462.72,1089800000,10462.72
-1999-04-14,10436.91,10692.49,10196.87,10411.66,952000000,10411.66
-1999-04-13,10340.62,10512.11,10239.33,10395.01,810900000,10395.01
-1999-04-12,10094.19,10384.46,10042.02,10339.51,810800000,10339.51
-1999-04-09,10166.62,10298.71,10035.09,10173.84,716100000,10173.84
-1999-04-08,10083.93,10282.62,9980.69,10197.70,850500000,10197.70
-1999-04-07,10023.43,10166.62,9859.98,10085.31,816400000,10085.31
-1999-04-06,9985.69,10097.25,9862.48,9963.49,787500000,9963.49
-1999-04-05,9893.84,10080.87,9826.40,10007.33,695800000,10007.33
-1999-04-01,9825.29,9927.69,9707.91,9832.51,703000000,9832.51
-1999-03-31,9968.21,10025.10,9744.82,9786.16,924300000,9786.16
-1999-03-30,10003.84,10035.36,9812.53,9913.26,729000000,9913.26
-1999-03-29,9879.41,10089.48,9837.78,10006.78,747900000,10006.78
-1999-03-26,9795.88,9923.53,9700.69,9822.24,707200000,9822.24
-1999-03-25,9735.66,9916.59,9666.28,9836.39,784200000,9836.39
-1999-03-24,9702.08,9803.09,9547.23,9666.84,761900000,9666.84
-1999-03-23,9846.66,9897.72,9593.85,9671.83,811300000,9671.83
-1999-03-22,9901.88,10005.95,9796.99,9890.51,658200000,9890.51
-1999-03-19,10107.79,10158.57,9856.37,9903.55,914700000,9903.55
-1999-03-18,9958.59,10060.62,9776.17,9997.62,831000000,9997.62
-1999-03-17,9939.90,10024.54,9792.55,9879.41,752300000,9879.41
-1999-03-16,9969.32,10062.84,9857.48,9930.47,751900000,9930.47
-1999-03-15,9880.24,10027.59,9807.53,9958.77,727200000,9958.77
-1999-03-12,9927.14,10042.58,9779.78,9876.35,825800000,9876.35
-1999-03-11,9815.86,9992.35,9742.32,9897.44,904800000,9897.44
-1999-03-10,9735.10,9849.71,9624.94,9772.84,841900000,9772.84
-1999-03-09,9703.47,9856.65,9586.08,9693.76,803700000,9693.76
-1999-03-08,9728.72,9825.02,9616.33,9727.61,714600000,9727.61
-1999-03-05,9636.65,9799.92,9558.41,9736.08,834900000,9736.08
-1999-03-04,9339.18,9549.99,9272.08,9467.40,770900000,9467.40
-1999-03-03,9311.74,9397.86,9163.41,9275.88,751700000,9275.88
-1999-03-02,9382.10,9494.57,9216.66,9297.61,753600000,9297.61
-1999-03-01,9315.27,9419.32,9167.76,9324.78,699500000,9324.78
-1999-02-26,9382.64,9459.52,9177.54,9306.58,784600000,9306.58
-1999-02-25,9395.66,9446.32,9200.27,9366.34,740500000,9366.34
-1999-02-24,9547.88,9662.77,9357.81,9399.67,782000000,9399.67
-1999-02-23,9549.21,9659.58,9425.26,9544.42,781100000,9544.42
-1999-02-22,9346.62,9596.13,9289.04,9552.68,718500000,9552.68
-1999-02-19,9284.51,9430.59,9218.13,9339.95,700000000,9339.95
-1999-02-18,9239.72,9368.48,9145.09,9298.63,742400000,9298.63
-1999-02-17,9240.79,9409.53,9124.03,9195.47,735100000,9195.47
-1999-02-16,9333.34,9458.46,9187.10,9297.03,653760000,9297.03
-1999-02-12,9346.47,9437.35,9161.35,9274.89,691500000,9274.89
-1999-02-11,9176.28,9423.19,9088.49,9363.46,815800000,9363.46
-1999-02-10,9135.86,9267.68,9025.41,9177.31,721400000,9177.31
-1999-02-09,9268.46,9361.92,9076.13,9133.03,736000000,9133.03
-1999-02-08,9318.66,9427.83,9148.99,9291.11,705400000,9291.11
-1999-02-05,9317.12,9457.43,9141.27,9304.24,872000000,9304.24
-1999-02-04,9389.72,9511.50,9178.60,9304.50,854400000,9304.50
-1999-02-03,9275.41,9454.09,9176.80,9366.81,876500000,9366.81
-1999-02-02,9318.40,9394.10,9146.16,9274.12,845500000,9274.12
-1999-02-01,9405.43,9513.05,9266.91,9345.70,799400000,9345.70
-1999-01-29,9317.37,9457.18,9172.16,9358.83,917000000,9358.83
-1999-01-28,9220.57,9384.83,9134.57,9281.33,848800000,9281.33
-1999-01-27,9378.65,9461.04,9135.86,9200.23,893800000,9200.23
-1999-01-26,9210.78,9408.77,9118.35,9324.58,896400000,9324.58
-1999-01-25,9117.58,9273.09,8994.26,9203.32,723900000,9203.32
-1999-01-22,9149.51,9289.31,8998.89,9120.67,785900000,9120.67
-1999-01-21,9371.96,9479.83,9150.28,9264.08,871800000,9264.08
-1999-01-20,9395.64,9555.01,9230.35,9335.91,905700000,9335.91
-1999-01-19,9408.52,9499.14,9165.73,9355.22,785500000,9355.22
-1999-01-15,9200.74,9381.74,9124.02,9340.55,798100000,9340.55
-1999-01-14,9315.06,9380.20,9052.44,9120.93,797200000,9120.93
-1999-01-13,9213.62,9485.24,9134.06,9349.56,931500000,9349.56
-1999-01-12,9599.55,9680.40,9394.87,9474.68,800200000,9474.68
-1999-01-11,9613.97,9751.46,9446.36,9619.89,818000000,9619.89
-1999-01-08,9612.17,9759.44,9447.91,9643.32,937800000,9643.32
-1999-01-07,9445.33,9616.29,9369.12,9537.76,863000000,9537.76
-1999-01-06,9399.25,9608.05,9331.02,9544.97,986900000,9544.97
-1999-01-05,9201.00,9389.46,9137.66,9311.19,775000000,9311.19
-1999-01-04,9212.84,9393.84,9089.00,9184.27,877000000,9184.27
-1998-12-31,9271.55,9343.64,9106.77,9181.43,719200000,9181.43
-1998-12-30,9310.17,9390.75,9211.30,9274.64,594220000,9274.64
-1998-12-29,9222.63,9375.30,9152.34,9320.98,586490000,9320.98
-1998-12-28,9251.21,9330.50,9133.54,9226.75,531560000,9226.75
-1998-12-24,9202.29,9289.57,9146.42,9217.99,246980000,9217.99
-1998-12-23,9085.91,9255.84,9022.58,9202.03,697500000,9202.03
-1998-12-22,9000.95,9122.99,8909.29,9044.46,680500000,9044.46
-1998-12-21,8903.89,9150.54,8874.28,8988.85,744800000,8988.85
-1998-12-18,8902.86,9012.28,8789.31,8903.63,839600000,8903.63
-1998-12-17,8787.55,8959.76,8725.21,8875.82,739400000,8875.82
-1998-12-16,8843.38,8922.94,8675.52,8790.60,725500000,8790.60
-1998-12-15,8725.72,8878.40,8614.75,8823.30,777900000,8823.30
-1998-12-14,8767.95,8868.10,8610.63,8695.60,741800000,8695.60
-1998-12-11,8814.29,8916.24,8680.41,8821.76,688900000,8821.76
-1998-12-10,9008.42,9034.42,8795.24,8841.58,748600000,8841.58
-1998-12-09,9025.41,9138.18,8881.23,9009.19,694200000,9009.19
-1998-12-08,9038.03,9153.63,8903.37,9027.98,727700000,9027.98
-1998-12-07,9031.59,9146.93,8946.11,9070.47,671200000,9070.47
-1998-12-04,8964.91,9078.70,8873.76,9016.14,709700000,9016.14
-1998-12-03,9031.33,9112.69,8839.78,8879.68,799100000,8879.68
-1998-12-02,9039.57,9154.40,8922.94,9064.54,727400000,9064.54
-1998-12-01,9039.57,9214.65,8934.52,9133.54,789200000,9133.54
-1998-11-30,9292.40,9348.53,9074.07,9116.55,687900000,9116.55
-1998-11-27,9333.85,9403.62,9263.82,9333.08,256950000,9333.08
-1998-11-25,9292.91,9387.66,9199.20,9314.28,583580000,9314.28
-1998-11-24,9327.93,9457.95,9219.28,9301.15,766200000,9301.15
-1998-11-23,9225.72,9425.77,9137.92,9374.27,774100000,9374.27
-1998-11-20,9129.94,9215.93,9048.32,9159.55,721200000,9159.55
-1998-11-19,9081.02,9147.96,8967.22,9056.05,671000000,9056.05
-1998-11-18,8988.85,9095.70,8897.96,9041.11,652510000,9041.11
-1998-11-17,8991.17,9158.26,8870.42,8986.28,705200000,8986.28
-1998-11-16,8921.14,9093.12,8885.09,9011.25,615580000,9011.25
-1998-11-13,8863.21,8982.16,8782.62,8919.59,602270000,8919.59
-1998-11-12,8823.04,8951.26,8733.70,8829.74,662300000,8829.74
-1998-11-11,8922.42,8980.35,8759.19,8823.82,715700000,8823.82
-1998-11-10,8895.17,9020.00,8760.99,8863.98,671300000,8863.98
-1998-11-09,8980.87,9024.89,8813.00,8897.96,592990000,8897.96
-1998-11-06,8902.86,9042.40,8831.02,8975.46,683100000,8975.46
-1998-11-05,8782.11,8943.79,8676.55,8915.47,770200000,8915.47
-1998-11-04,8801.93,8933.49,8660.33,8783.14,861100000,8783.14
-1998-11-03,8708.99,8819.18,8601.88,8706.15,704300000,8706.15
-1998-11-02,8645.65,8804.51,8573.56,8706.15,753800000,8706.15
-1998-10-30,8591.58,8718.25,8481.39,8592.10,785000000,8592.10
-1998-10-29,8371.22,8539.83,8305.54,8495.03,699400000,8495.03
-1998-10-28,8372.74,8504.04,8271.55,8371.97,677500000,8371.97
-1998-10-27,8503.79,8586.69,8309.92,8366.04,764500000,8366.04
-1998-10-26,8483.96,8564.03,8349.57,8432.21,609910000,8432.21
-1998-10-23,8531.34,8589.01,8366.04,8452.29,637640000,8452.29
-1998-10-22,8519.03,8629.17,8334.12,8533.14,754900000,8533.14
-1998-10-21,8504.67,8641.02,8380.72,8519.23,745100000,8519.23
-1998-10-20,8540.09,8713.62,8419.08,8505.85,958200000,8505.85
-1998-10-19,8415.48,8591.07,8321.50,8466.45,738600000,8466.45
-1998-10-16,8384.84,8521.29,8244.26,8416.76,1042200000,8416.76
-1998-10-15,7953.07,8375.57,7885.62,8299.36,937600000,8299.36
-1998-10-14,7925.01,8107.29,7812.75,7968.78,791200000,7968.78
-1998-10-13,7982.68,8093.90,7805.29,7938.14,733300000,7938.14
-1998-10-12,8038.03,8162.65,7931.19,8001.47,691100000,8001.47
-1998-10-09,7806.57,7976.76,7628.15,7899.52,878100000,7899.52
-1998-10-08,7734.48,7822.02,7399.78,7731.91,1114600000,7731.91
-1998-10-07,7754.82,7913.94,7558.89,7741.69,977000000,7741.69
-1998-10-06,7733.97,7951.53,7646.43,7742.98,845700000,7742.98
-1998-10-05,7760.75,7866.82,7507.14,7726.24,817500000,7726.24
-1998-10-02,7631.50,7866.31,7496.84,7784.69,902900000,7784.69
-1998-10-01,7749.42,7856.26,7540.87,7632.53,899700000,7632.53
-1998-09-30,8025.42,8097.51,7775.42,7842.62,800100000,7842.62
-1998-09-29,8141.28,8253.79,7946.63,8080.52,760100000,8080.52
-1998-09-28,8114.76,8239.37,7986.80,8108.84,690500000,8108.84
-1998-09-25,7911.10,8127.89,7849.06,8028.77,736800000,8028.77
-1998-09-24,8117.33,8227.53,7906.73,8001.99,805900000,8001.99
-1998-09-23,7988.60,8198.43,7891.79,8154.41,899700000,8154.41
-1998-09-22,7987.83,8038.29,7816.87,7897.20,694900000,7897.20
-1998-09-21,7739.12,8008.43,7653.64,7933.25,609880000,7933.25
-1998-09-18,7942.77,8012.03,7759.97,7895.66,794700000,7895.66
-1998-09-17,7905.96,8001.99,7795.50,7873.77,694500000,7873.77
-1998-09-16,8061.46,8159.30,7923.46,8089.78,797500000,8089.78
-1998-09-15,7918.83,8087.21,7840.30,8024.39,724600000,8024.39
-1998-09-14,7936.08,8081.29,7848.03,7945.35,714400000,7945.35
-1998-09-11,7583.61,7866.31,7497.10,7795.50,819100000,7795.50
-1998-09-10,7680.42,7761.00,7469.04,7615.54,880300000,7615.54
-1998-09-09,7995.04,8094.16,7796.79,7865.02,704300000,7865.02
-1998-09-08,7964.91,8103.69,7779.03,8020.78,814800000,8020.78
-1998-09-04,7737.32,7831.29,7450.24,7640.25,780300000,7640.25
-1998-09-03,7679.13,7841.59,7499.68,7682.22,880500000,7682.22
-1998-09-02,7901.06,8036.23,7710.54,7782.37,894600000,7782.37
-1998-09-01,7583.09,7937.37,7379.70,7827.43,1216600000,7827.43
-1998-08-31,8078.97,8149.00,7517.70,7539.07,917500000,7539.07
-1998-08-28,8193.54,8301.68,7951.27,8051.68,840300000,8051.68
-1998-08-27,8377.89,8448.69,8062.24,8165.99,938600000,8165.99
-1998-08-26,8492.97,8639.47,8396.68,8523.35,674100000,8523.35
-1998-08-25,8632.00,8740.91,8510.22,8602.65,664900000,8602.65
-1998-08-24,8584.63,8680.66,8452.29,8566.61,558100000,8566.61
-1998-08-21,8600.34,8600.34,8307.60,8533.65,725700000,8533.65
-1998-08-20,8639.47,8726.75,8538.29,8611.41,621630000,8611.41
-1998-08-19,8745.80,8797.81,8635.61,8693.28,633630000,8693.28
-1998-08-18,8593.90,8767.69,8551.93,8714.65,690600000,8714.65
-1998-08-17,8404.66,8613.98,8350.34,8574.85,584380000,8574.85
-1998-08-14,8531.85,8635.87,8342.10,8425.00,644030000,8425.00
-1998-08-13,8535.46,8656.46,8399.51,8459.50,660700000,8459.50
-1998-08-12,8528.76,8621.71,8437.10,8552.96,711700000,8552.96
-1998-08-11,8431.44,8538.29,8263.32,8462.85,774400000,8462.85
-1998-08-10,8585.40,8689.16,8491.17,8574.85,579180000,8574.85
-1998-08-07,8610.63,8745.03,8490.40,8598.02,759100000,8598.02
-1998-08-06,8513.83,8671.14,8415.22,8577.68,768400000,8577.68
-1998-08-05,8493.75,8641.79,8316.10,8546.78,851600000,8546.78
-1998-08-04,8859.86,8896.68,8463.37,8487.31,852600000,8487.31
-1998-08-03,8868.10,8948.17,8729.58,8786.74,620400000,8786.74
-1998-07-31,9024.64,9109.34,8810.94,8883.29,645910000,8883.29
-1998-07-30,8962.85,9113.20,8884.83,9026.95,687400000,9026.95
-1998-07-29,8976.49,9039.57,8831.28,8914.96,644350000,8914.96
-1998-07-28,8982.16,9065.57,8786.48,8934.78,703600000,8934.78
-1998-07-27,8905.17,9084.63,8806.05,9028.24,619990000,9028.24
-1998-07-24,9002.24,9077.67,8814.29,8937.36,698600000,8937.36
-1998-07-23,9130.46,9196.11,8892.56,8932.98,741600000,8932.98
-1998-07-22,9185.71,9264.85,8996.83,9128.91,739800000,9128.91
-1998-07-21,9296.26,9369.12,9145.65,9190.19,659700000,9190.19
-1998-07-20,9340.55,9408.26,9206.15,9295.75,560580000,9295.75
-1998-07-17,9328.19,9412.64,9259.96,9337.97,618030000,9337.97
-1998-07-16,9233.23,9368.35,9173.19,9328.19,677800000,9328.19
-1998-07-15,9246.57,9388.69,9165.99,9234.47,723900000,9234.47
-1998-07-14,9100.07,9314.54,9087.20,9245.54,700300000,9245.54
-1998-07-13,9107.03,9186.58,9020.52,9096.21,574880000,9096.21
-1998-07-10,9098.53,9194.82,8976.23,9105.74,576080000,9105.74
-1998-07-09,9135.36,9217.07,9014.30,9089.78,663600000,9089.78
-1998-07-08,9107.96,9231.27,9041.70,9174.97,607230000,9174.97
-1998-07-07,9094.76,9209.85,9001.84,9085.04,624890000,9085.04
-1998-07-06,9017.53,9137.11,8965.97,9091.77,514750000,9091.77
-1998-07-02,9037.71,9094.01,8956.25,9025.26,510210000,9025.26
-1998-07-01,9011.56,9103.23,8918.64,9048.67,701600000,9048.67
-1998-06-30,9010.81,9085.79,8868.57,8952.02,757200000,8952.02
-1998-06-29,9002.34,9099.24,8930.84,8997.36,564350000,8997.36
-1998-06-26,8948.28,9047.93,8879.78,8944.54,520050000,8944.54
-1998-06-25,8950.52,9079.56,8863.58,8935.58,669900000,8935.58
-1998-06-24,8828.46,8970.20,8740.52,8923.87,714900000,8923.87
-1998-06-23,8789.35,8877.78,8724.83,8828.46,657100000,8828.46
-1998-06-22,8705.65,8805.04,8639.38,8711.13,531550000,8711.13
-1998-06-19,8844.90,8885.01,8664.79,8712.87,715500000,8712.87
-1998-06-18,8825.72,8900.20,8740.77,8813.01,590440000,8813.01
-1998-06-17,8745.51,8932.34,8695.43,8829.46,744400000,8829.46
-1998-06-16,8666.04,8751.24,8524.55,8665.29,664600000,8665.29
-1998-06-15,8723.34,8818.99,8588.32,8627.93,595820000,8627.93
-1998-06-12,8812.77,8891.24,8660.56,8834.94,633300000,8834.94
-1998-06-11,8975.43,9015.54,8774.40,8811.77,627470000,8811.77
-1998-06-10,9031.98,9145.08,8891.98,8971.70,609410000,8971.70
-1998-06-09,9074.58,9130.13,8966.72,9049.92,563610000,9049.92
-1998-06-08,9052.66,9155.04,8994.12,9069.60,543390000,9069.60
-1998-06-05,8920.88,9057.39,8866.57,9037.71,558440000,9037.71
-1998-06-04,8798.07,8916.64,8719.85,8870.56,577470000,8870.56
-1998-06-03,8909.42,8970.20,8769.67,8803.80,584480000,8803.80
-1998-06-02,8961.48,9014.05,8838.92,8891.24,590930000,8891.24
-1998-06-01,8907.93,9023.01,8805.04,8922.37,537660000,8922.37
-1998-05-29,9004.83,9060.13,8859.60,8899.95,556780000,8899.95
-1998-05-28,8947.53,9040.70,8861.59,8970.20,588900000,8970.20
-1998-05-27,8902.45,9015.04,8760.95,8936.57,682040000,8936.57
-1998-05-26,9167.00,9201.63,8949.78,8963.73,541410000,8963.73
-1998-05-22,9153.05,9209.35,9040.70,9114.44,444070000,9114.44
-1998-05-21,9173.48,9248.96,9058.64,9132.37,551970000,9132.37
-1998-05-20,9101.98,9219.06,9010.56,9171.48,587240000,9171.48
-1998-05-19,9097.00,9164.51,8997.36,9054.65,566020000,9054.65
-1998-05-18,9088.53,9171.23,8972.20,9050.91,519100000,9050.91
-1998-05-15,9161.52,9240.74,9051.91,9096.00,621990000,9096.00
-1998-05-14,9136.86,9266.89,9077.07,9172.23,578380000,9172.23
-1998-05-13,9178.06,9283.09,9119.67,9211.84,600010000,9211.84
-1998-05-12,9098.00,9214.08,9023.51,9161.77,604420000,9161.77
-1998-05-11,9125.65,9231.52,9045.43,9091.52,560840000,9091.52
-1998-05-08,8981.91,9143.09,8951.27,9055.15,567890000,9055.15
-1998-05-07,9044.44,9102.98,8914.90,8976.68,582240000,8976.68
-1998-05-06,9174.72,9223.80,9017.28,9054.65,606540000,9054.65
-1998-05-05,9189.92,9251.95,9062.37,9147.57,583630000,9147.57
-1998-05-04,9201.38,9311.98,9134.86,9192.66,551700000,9192.66
-1998-05-01,9106.47,9211.84,9015.54,9147.07,581970000,9147.07
-1998-04-30,9018.28,9169.99,8970.95,9063.37,695600000,9063.37
-1998-04-29,8899.21,9036.47,8857.85,8951.52,638790000,8951.52
-1998-04-28,8920.88,9051.16,8828.71,8898.96,678600000,8898.96
-1998-04-27,8937.07,9026.25,8796.08,8917.64,685960000,8917.64
-1998-04-24,9143.83,9206.36,8983.65,9064.62,633890000,9064.62
-1998-04-23,9176.96,9269.88,9061.88,9143.33,653190000,9143.33
-1998-04-22,9184.93,9287.32,9083.80,9176.72,696740000,9176.72
-1998-04-21,9137.85,9250.20,9051.41,9184.94,675640000,9184.94
-1998-04-20,9166.75,9245.22,9027.25,9141.84,595190000,9141.84
-1998-04-17,9077.57,9213.58,9010.06,9167.50,672290000,9167.50
-1998-04-16,9162.27,9204.12,8978.92,9076.57,699570000,9076.57
-1998-04-15,9110.45,9249.95,9017.53,9162.27,685020000,9162.27
-1998-04-14,9014.30,9177.96,8971.45,9110.20,613730000,9110.20
-1998-04-13,8997.11,9107.21,8870.31,9012.30,564480000,9012.30
-1998-04-09,8891.48,9062.12,8891.48,8994.86,548940000,8994.86
-1998-04-08,8951.52,9023.51,8821.73,8891.48,616330000,8891.48
-1998-04-07,8995.36,9072.34,8862.34,8956.50,670760000,8956.50
-1998-04-06,9051.16,9170.74,8958.49,9033.23,625810000,9033.23
-1998-04-03,8986.64,9085.79,8896.22,8983.41,653880000,8983.41
-1998-04-02,8900.20,9025.26,8829.21,8986.64,674340000,8986.64
-1998-04-01,8818.50,8935.33,8715.61,8868.32,677310000,8868.32
-1998-03-31,8852.12,8937.57,8726.32,8799.81,674930000,8799.81
-1998-03-30,8802.30,8877.04,8701.66,8782.12,497400000,8782.12
-1998-03-27,8835.68,8941.31,8741.77,8796.08,582190000,8796.08
-1998-03-26,8847.89,8931.09,8769.92,8846.89,606770000,8846.89
-1998-03-25,8943.05,8997.11,8780.88,8872.80,676550000,8872.80
-1998-03-24,8887.00,8962.48,8815.01,8904.44,605720000,8904.44
-1998-03-23,8839.42,8939.31,8758.71,8816.25,631350000,8816.25
-1998-03-20,8814.01,8957.25,8766.43,8906.43,717310000,8906.43
-1998-03-19,8776.89,8855.11,8708.64,8803.05,598240000,8803.05
-1998-03-18,8749.24,8825.72,8655.83,8775.40,632690000,8775.40
-1998-03-17,8706.64,8812.52,8633.41,8749.99,680960000,8749.99
-1998-03-16,8647.36,8760.45,8573.37,8718.85,548980000,8718.85
-1998-03-13,8669.28,8733.30,8563.90,8602.52,597800000,8602.52
-1998-03-12,8622.20,8725.58,8576.86,8659.56,594940000,8659.56
-1998-03-11,8682.73,8740.52,8599.28,8675.75,655260000,8675.75
-1998-03-10,8623.19,8688.71,8550.45,8643.12,631920000,8643.12
-1998-03-09,8601.02,8661.56,8482.45,8567.14,624700000,8567.14
-1998-03-06,8505.86,8610.49,8432.62,8569.39,665500000,8569.39
-1998-03-05,8480.20,8536.80,8377.32,8444.33,648270000,8444.33
-1998-03-04,8524.55,8609.99,8454.79,8539.24,644280000,8539.24
-1998-03-03,8532.77,8632.16,8464.26,8584.83,612360000,8584.83
-1998-03-02,8528.78,8649.35,8427.89,8550.45,591470000,8550.45
-1998-02-27,8532.77,8616.72,8426.15,8545.72,574480000,8545.72
-1998-02-26,8471.48,8541.98,8377.82,8490.67,646280000,8490.67
-1998-02-25,8455.29,8510.60,8362.37,8457.78,611350000,8457.78
-1998-02-24,8370.10,8457.78,8303.83,8370.10,589880000,8370.10
-1998-02-23,8381.31,8490.92,8331.98,8410.20,550730000,8410.20
-1998-02-20,8350.67,8449.06,8291.88,8413.94,594300000,8413.94
-1998-02-19,8379.56,8463.26,8327.25,8375.58,581820000,8375.58
-1998-02-18,8419.17,8503.12,8326.75,8451.06,606000000,8451.06
-1998-02-17,8439.35,8483.94,8335.97,8398.50,605890000,8398.50
-1998-02-13,8346.68,8416.43,8269.21,8370.10,531940000,8370.10
-1998-02-12,8260.49,8412.20,8206.93,8369.60,611480000,8369.60
-1998-02-11,8298.60,8367.61,8223.87,8314.55,599300000,8314.55
-1998-02-10,8241.81,8368.10,8149.88,8295.61,642800000,8295.61
-1998-02-09,8185.26,8256.75,8104.55,8180.52,524810000,8180.52
-1998-02-06,8178.28,8255.26,8102.30,8189.49,569650000,8189.49
-1998-02-05,8129.71,8215.65,8037.54,8117.25,703980000,8117.25
-1998-02-04,8160.35,8188.00,8050.99,8129.71,695420000,8129.71
-1998-02-03,8107.78,8193.23,8010.63,8160.35,692120000,8160.35
-1998-02-02,7987.46,8157.86,7987.46,8107.78,724320000,8107.78
-1998-01-30,7973.02,8023.83,7850.95,7906.50,613380000,7906.50
-1998-01-29,7915.47,8015.12,7883.09,7973.02,750760000,7973.02
-1998-01-28,7815.08,7985.97,7761.52,7915.47,708470000,7915.47
-1998-01-27,7712.94,7890.56,7677.07,7815.08,679140000,7815.08
-1998-01-26,7700.74,7813.59,7629.99,7712.94,555080000,7712.94
-1998-01-23,7730.88,7814.08,7609.31,7700.74,635770000,7700.74
-1998-01-22,7794.40,7833.26,7637.71,7730.88,646570000,7730.88
-1998-01-21,7873.12,7874.87,7707.96,7794.40,626160000,7794.40
-1998-01-20,7753.55,7908.00,7696.01,7873.12,644790000,7873.12
-1998-01-16,7691.77,7846.47,7687.04,7753.55,670080000,7753.55
-1998-01-15,7784.69,7803.87,7651.66,7691.77,569050000,7691.77
-1998-01-14,7732.13,7836.25,7669.10,7784.69,603280000,7784.69
-1998-01-13,7647.18,7791.17,7610.31,7732.13,646740000,7732.13
-1998-01-12,7580.42,7706.22,7391.59,7647.18,705450000,7647.18
-1998-01-09,7802.62,7815.08,7513.41,7580.42,746420000,7580.42
-1998-01-08,7902.27,7935.40,7733.12,7802.62,652140000,7802.62
-1998-01-07,7906.25,7943.87,7751.56,7902.27,667390000,7902.27
-1998-01-06,7978.99,7999.17,7832.52,7906.25,618360000,7906.25
-1998-01-05,7965.04,8072.91,7865.40,7978.99,628070000,7978.99
-1998-01-02,7908.25,8001.41,7845.47,7965.04,366730000,7965.04
-1997-12-31,7915.97,7995.93,7833.76,7908.25,467280000,7908.25
-1997-12-30,7792.41,7958.32,7787.68,7915.97,499500000,7915.97
-1997-12-29,7712.94,7835.01,7712.94,7792.41,443160000,7792.41
-1997-12-26,7660.13,7743.34,7634.72,7679.31,154900000,7679.31
-1997-12-24,7691.77,7767.75,7624.26,7660.13,265980000,7660.13
-1997-12-23,7819.31,7874.12,7667.11,7691.77,515070000,7691.77
-1997-12-22,7756.29,7892.05,7710.45,7819.31,530670000,7819.31
-1997-12-19,7846.50,7878.60,7563.23,7756.29,793200000,7756.29
-1997-12-18,7957.41,7991.48,7781.35,7846.50,618870000,7846.50
-1997-12-17,7976.31,8068.81,7879.08,7957.41,618900000,7957.41
-1997-12-16,7922.59,8069.06,7889.52,7976.31,623320000,7976.31
-1997-12-15,7838.30,7992.72,7807.96,7922.59,597150000,7922.59
-1997-12-12,7848.99,7947.21,7756.73,7838.30,579280000,7838.30
-1997-12-11,7961.64,7961.64,7778.37,7848.99,631770000,7848.99
-1997-12-10,8049.66,8077.27,7881.07,7978.79,602290000,7978.79
-1997-12-09,8110.84,8142.67,7990.98,8049.66,539130000,8049.66
-1997-12-08,8149.13,8195.88,8057.37,8110.84,490320000,8110.84
-1997-12-05,8050.16,8209.56,7980.04,8149.13,563590000,8149.13
-1997-12-04,8032.01,8159.58,7978.30,8050.16,633470000,8050.16
-1997-12-03,8018.83,8118.30,7915.63,8032.01,624610000,8032.01
-1997-12-02,8013.11,8096.66,7935.03,8018.83,576120000,8018.83
-1997-12-01,7823.62,8048.92,7823.62,8013.11,590300000,8013.11
-1997-11-28,7794.78,7872.86,7786.08,7823.13,189070000,7823.13
-1997-11-26,7808.95,7893.50,7749.77,7794.78,487750000,7794.78
-1997-11-25,7767.92,7880.32,7706.00,7808.95,587890000,7808.95
-1997-11-24,7881.07,7887.28,7723.41,7767.92,514920000,7767.92
-1997-11-21,7826.61,7934.53,7758.47,7881.07,611000000,7881.07
-1997-11-20,7724.74,7889.77,7718.19,7826.61,602610000,7826.61
-1997-11-19,7650.82,7779.75,7599.50,7724.74,542720000,7724.74
-1997-11-18,7698.22,7772.62,7607.11,7650.82,521380000,7650.82
-1997-11-17,7613.49,7781.71,7613.49,7698.22,576540000,7698.22
-1997-11-14,7487.76,7634.61,7431.03,7572.48,635760000,7572.48
-1997-11-13,7401.32,7546.45,7334.77,7487.76,653960000,7487.76
-1997-11-12,7558.73,7573.22,7359.32,7401.32,585340000,7401.32
-1997-11-11,7552.59,7599.74,7518.21,7558.73,435660000,7558.73
-1997-11-10,7581.32,7687.90,7511.83,7552.59,464140000,7552.59
-1997-11-07,7646.89,7646.89,7460.99,7581.32,569980000,7581.32
-1997-11-06,7692.57,7758.63,7597.78,7683.24,522890000,7683.24
-1997-11-05,7689.13,7791.78,7628.96,7692.57,565680000,7692.57
-1997-11-04,7674.39,7757.15,7583.29,7689.13,541590000,7689.13
-1997-11-03,7443.07,7674.39,7443.07,7674.39,564740000,7674.39
-1997-10-31,7381.67,7544.24,7329.61,7442.08,638070000,7442.08
-1997-10-30,7506.67,7569.78,7340.42,7381.67,712230000,7381.67
-1997-10-29,7498.32,7664.08,7409.67,7506.67,777660000,7506.67
-1997-10-28,7161.15,7553.57,6936.45,7498.32,1202550000,7498.32
-1997-10-27,7715.41,7717.37,7150.10,7161.15,693730000,7161.15
-1997-10-24,7847.77,7975.47,7645.91,7715.41,677630000,7715.41
-1997-10-23,7957.05,7957.05,7767.22,7847.77,673270000,7847.77
-1997-10-22,8060.44,8124.78,7941.33,8034.65,613490000,8034.65
-1997-10-21,7921.44,8090.40,7909.41,8060.44,582310000,8060.44
-1997-10-20,7847.03,7966.63,7774.83,7921.44,483880000,7921.44
-1997-10-17,7938.88,7953.61,7731.12,7847.03,624980000,7847.03
-1997-10-16,8057.98,8146.14,7880.18,7938.88,597010000,7938.88
-1997-10-15,8096.29,8127.48,7997.57,8057.98,505310000,8057.98
-1997-10-14,8072.22,8168.24,7990.20,8096.29,510330000,8096.29
-1997-10-13,8045.21,8150.31,8026.30,8072.22,354800000,8072.22
-1997-10-10,8061.42,8091.38,7961.96,8045.21,500680000,8045.21
-1997-10-09,8095.06,8127.72,7980.87,8061.42,551840000,8061.42
-1997-10-08,8178.31,8208.52,8019.92,8095.06,573110000,8095.06
-1997-10-07,8100.22,8218.34,8058.96,8178.31,551970000,8178.31
-1997-10-06,8038.58,8160.63,8017.71,8100.22,495620000,8100.22
-1997-10-03,8027.53,8183.22,7937.89,8038.58,623370000,8038.58
-1997-10-02,8015.50,8087.45,7943.79,8027.53,474760000,8027.53
-1997-10-01,7945.26,8081.06,7909.41,8015.50,598660000,8015.50
-1997-09-30,7991.43,8045.70,7900.08,7945.26,587500000,7945.26
-1997-09-29,7922.18,8030.48,7862.99,7991.43,477100000,7991.43
-1997-09-26,7853.66,7970.80,7853.66,7922.18,505340000,7922.18
-1997-09-25,7906.71,7962.45,7802.34,7848.01,524880000,7848.01
-1997-09-24,7970.06,8065.84,7866.43,7906.71,639460000,7906.71
-1997-09-23,7996.83,8048.16,7885.34,7970.06,522930000,7970.06
-1997-09-22,7917.27,8078.36,7889.27,7996.83,490900000,7996.83
-1997-09-19,7922.72,7972.29,7821.69,7917.27,631040000,7917.27
-1997-09-18,7886.44,8049.36,7858.93,7922.72,566830000,7922.72
-1997-09-17,7895.92,7981.54,7816.47,7886.44,590550000,7886.44
-1997-09-16,7721.14,7951.18,7709.75,7895.92,636380000,7895.92
-1997-09-15,7742.97,7832.86,7680.95,7721.14,468030000,7721.14
-1997-09-12,7660.98,7779.67,7584.56,7742.97,544150000,7742.97
-1997-09-11,7719.28,7745.29,7556.23,7660.98,575020000,7660.98
-1997-09-10,7851.91,7868.16,7686.30,7719.28,517620000,7719.28
-1997-09-09,7835.18,7922.05,7768.52,7851.91,502200000,7851.91
-1997-09-08,7822.41,7921.35,7795.00,7835.18,466430000,7835.18
-1997-09-05,7867.24,7952.01,7765.27,7822.41,536400000,7822.41
-1997-09-04,7894.64,7936.45,7788.50,7867.24,559310000,7867.24
-1997-09-03,7879.78,7972.22,7828.45,7894.64,549060000,7894.64
-1997-09-02,7650.99,7903.47,7650.99,7879.78,491870000,7879.78
-1997-08-29,7694.43,7729.73,7580.85,7622.42,413910000,7622.42
-1997-08-28,7787.33,7831.70,7634.50,7694.43,486300000,7694.43
-1997-08-27,7782.22,7850.51,7666.55,7787.33,492150000,7787.33
-1997-08-26,7859.57,7891.62,7734.61,7782.22,449110000,7782.22
-1997-08-25,7887.91,7974.08,7791.75,7859.57,388990000,7859.57
-1997-08-22,7893.95,7904.86,7695.36,7887.91,460160000,7887.91
-1997-08-21,8021.23,8043.06,7834.02,7893.95,499000000,7893.95
-1997-08-20,7918.10,8037.95,7870.95,8021.23,521270000,8021.23
-1997-08-19,7803.36,7947.37,7776.65,7918.10,545630000,7918.10
-1997-08-18,7694.66,7847.49,7588.28,7803.36,514330000,7803.36
-1997-08-15,7919.26,7919.26,7685.14,7694.66,537820000,7694.66
-1997-08-14,7928.32,8027.73,7843.54,7942.03,530460000,7942.03
-1997-08-13,7960.84,8075.58,7848.19,7928.32,587210000,7928.32
-1997-08-12,8062.11,8132.49,7926.46,7960.84,499310000,7960.84
-1997-08-11,8031.22,8122.27,7922.52,8062.11,480340000,8062.11
-1997-08-08,8170.58,8170.58,7961.07,8031.22,563420000,8031.22
-1997-08-07,8259.31,8340.14,8158.73,8188.00,576030000,8188.00
-1997-08-06,8187.54,8302.05,8130.63,8259.31,565200000,8259.31
-1997-08-05,8198.45,8251.88,8129.93,8187.54,525710000,8187.54
-1997-08-04,8194.04,8261.40,8097.65,8198.45,456000000,8198.45
-1997-08-01,8222.61,8287.65,8062.11,8194.04,513750000,8194.04
-1997-07-31,8254.89,8328.99,8160.36,8222.61,547830000,8222.61
-1997-07-30,8174.53,8313.19,8156.88,8254.89,568470000,8254.89
-1997-07-29,8121.11,8232.36,8049.34,8174.53,544540000,8174.53
-1997-07-28,8113.44,8221.68,8051.89,8121.11,466920000,8121.11
-1997-07-25,8116.93,8200.31,8037.95,8113.44,521510000,8113.44
-1997-07-24,8088.36,8174.53,7968.51,8116.93,571020000,8116.93
-1997-07-23,8061.65,8199.15,8024.95,8088.36,616930000,8088.36
-1997-07-22,7906.72,8093.93,7870.72,8061.65,579590000,8061.65
-1997-07-21,7890.46,7981.51,7783.85,7906.72,459500000,7906.72
-1997-07-18,8020.77,8057.23,7829.61,7890.46,589710000,7890.46
-1997-07-17,8038.88,8136.67,7910.67,8020.77,629250000,8020.77
-1997-07-16,7975.71,8108.10,7919.73,8038.88,647390000,8038.88
-1997-07-15,7922.98,8037.03,7843.78,7975.71,598370000,7975.71
-1997-07-14,7921.82,8001.26,7831.00,7922.98,485960000,7922.98
-1997-07-11,7886.76,7984.02,7837.68,7921.82,500050000,7921.82
-1997-07-10,7842.43,7953.94,7777.06,7886.76,551340000,7886.76
-1997-07-09,7962.31,8027.68,7775.48,7842.43,589110000,7842.43
-1997-07-08,7858.49,8000.08,7824.33,7962.31,526010000,7962.31
-1997-07-07,7895.81,7983.79,7805.34,7858.49,518780000,7858.49
-1997-07-03,7805.79,7952.35,7805.79,7895.81,374680000,7895.81
-1997-07-02,7722.33,7814.38,7648.14,7795.38,526970000,7795.38
-1997-07-01,7672.79,7801.04,7613.53,7722.33,544190000,7722.33
-1997-06-30,7687.72,7768.01,7571.46,7672.79,561540000,7672.79
-1997-06-27,7654.25,7793.12,7627.33,7687.72,472540000,7687.72
-1997-06-26,7689.98,7754.22,7581.64,7654.25,499780000,7654.25
-1997-06-25,7758.06,7832.48,7615.57,7689.98,603040000,7689.98
-1997-06-24,7787.01,7787.01,7602.90,7758.06,542650000,7758.06
-1997-06-23,7796.51,7816.87,7592.04,7604.26,492940000,7604.26
-1997-06-20,7777.06,7868.44,7733.64,7796.51,653110000,7796.51
-1997-06-19,7718.71,7834.51,7697.45,7777.06,536940000,7777.06
-1997-06-18,7760.78,7789.28,7651.30,7718.71,491740000,7718.71
-1997-06-17,7772.09,7834.97,7680.71,7760.78,543010000,7760.78
-1997-06-16,7782.04,7829.99,7712.37,7772.09,414280000,7772.09
-1997-06-13,7711.47,7829.08,7683.42,7782.04,575810000,7782.04
-1997-06-12,7575.83,7741.42,7569.66,7711.47,592730000,7711.47
-1997-06-11,7539.27,7633.96,7476.29,7575.83,513740000,7575.83
-1997-06-10,7478.50,7599.61,7459.12,7539.27,526980000,7539.27
-1997-06-09,7435.78,7548.52,7412.44,7478.50,465810000,7478.50
-1997-06-06,7305.29,7473.98,7290.26,7435.78,488940000,7435.78
-1997-06-05,7269.66,7376.97,7241.33,7305.29,452610000,7305.29
-1997-06-04,7312.15,7350.36,7214.29,7269.66,466690000,7269.66
-1997-06-03,7289.40,7379.98,7225.02,7312.15,527120000,7312.15
-1997-06-02,7331.04,7383.84,7244.76,7289.40,435950000,7289.40
-1997-05-30,7330.18,7385.99,7203.99,7331.04,537200000,7331.04
-1997-05-29,7357.23,7404.44,7272.24,7330.18,462600000,7330.18
-1997-05-28,7383.41,7430.20,7287.26,7357.23,487340000,7357.23
-1997-05-27,7345.91,7421.32,7276.68,7383.41,436150000,7383.41
-1997-05-23,7260.61,7382.58,7260.61,7345.91,417030000,7345.91
-1997-05-22,7290.69,7348.79,7210.33,7258.13,426940000,7258.13
-1997-05-21,7303.46,7385.47,7218.99,7290.69,540730000,7290.69
-1997-05-20,7228.88,7336.02,7123.38,7303.46,450850000,7303.46
-1997-05-19,7194.67,7274.21,7140.69,7228.88,345140000,7228.88
-1997-05-16,7332.31,7332.31,7192.61,7194.67,486780000,7194.67
-1997-05-15,7286.16,7363.63,7225.99,7333.55,458180000,7333.55
-1997-05-14,7274.21,7381.76,7238.35,7286.16,504960000,7286.16
-1997-05-13,7292.75,7350.85,7211.16,7274.21,489760000,7274.21
-1997-05-12,7169.53,7317.47,7156.35,7292.75,459370000,7292.75
-1997-05-09,7136.62,7235.76,7079.63,7169.53,455690000,7169.53
-1997-05-08,7085.65,7236.96,7040.30,7136.62,534120000,7136.62
-1997-05-07,7225.32,7246.60,7064.78,7085.65,500580000,7085.65
-1997-05-06,7213.68,7299.98,7139.43,7225.32,603680000,7225.32
-1997-05-05,7071.20,7220.91,7029.46,7213.68,549410000,7213.68
-1997-05-02,6976.48,7104.51,6935.54,7071.20,499770000,7071.20
-1997-05-01,7008.99,7041.90,6891.39,6976.48,460380000,6976.48
-1997-04-30,6962.03,7081.23,6912.26,7008.99,562830000,7008.99
-1997-04-29,6820.75,6998.15,6820.75,6962.03,547690000,6962.03
-1997-04-28,6738.87,6826.37,6691.51,6783.02,404470000,6783.02
-1997-04-25,6792.25,6826.77,6681.08,6738.87,414350000,6738.87
-1997-04-24,6812.72,6923.90,6742.89,6792.25,493640000,6792.25
-1997-04-23,6833.59,6902.23,6746.50,6812.72,489350000,6812.72
-1997-04-22,6660.21,6858.08,6628.50,6833.59,507500000,6833.59
-1997-04-21,6703.55,6768.17,6594.38,6660.21,397300000,6660.21
-1997-04-18,6658.60,6749.71,6616.46,6703.55,468940000,6703.55
-1997-04-17,6679.87,6750.91,6600.80,6658.60,503760000,6658.60
-1997-04-16,6587.16,6708.77,6506.08,6679.87,498820000,6679.87
-1997-04-15,6457.92,6626.09,6457.92,6587.16,507370000,6587.16
-1997-04-14,6391.69,6487.22,6315.84,6451.90,406800000,6451.90
-1997-04-11,6529.48,6529.48,6358.42,6391.69,444380000,6391.69
-1997-04-10,6563.84,6626.91,6495.48,6540.05,421790000,6540.05
-1997-04-09,6609.16,6662.41,6521.16,6563.84,451500000,6563.84
-1997-04-08,6555.91,6638.62,6491.71,6609.16,450790000,6609.16
-1997-04-07,6526.07,6639.00,6508.70,6555.91,453790000,6555.91
-1997-04-04,6477.35,6561.57,6376.90,6526.07,544580000,6526.07
-1997-04-03,6517.01,6540.43,6379.16,6477.35,498010000,6477.35
-1997-04-02,6611.05,6636.73,6476.60,6517.01,478210000,6517.01
-1997-04-01,6583.48,6667.70,6482.64,6611.05,515770000,6611.05
-1997-03-31,6740.59,6743.23,6532.49,6583.48,555880000,6583.48
-1997-03-27,6880.70,6918.47,6654.86,6740.59,476790000,6740.59
-1997-03-26,6876.17,6954.72,6811.21,6880.70,506670000,6880.70
-1997-03-25,6905.25,6984.94,6832.74,6876.17,487520000,6876.17
-1997-03-24,6804.79,6933.58,6746.63,6905.25,451970000,6905.25
-1997-03-21,6820.28,6890.52,6742.85,6804.79,544830000,6804.79
-1997-03-20,6877.68,6901.47,6765.14,6820.28,497480000,6820.28
-1997-03-19,6896.56,6944.15,6794.22,6877.68,539200000,6877.68
-1997-03-18,6955.48,6997.40,6841.05,6896.56,467490000,6896.56
-1997-03-17,6935.46,7004.20,6820.28,6955.48,495260000,6955.48
-1997-03-14,6878.89,6996.27,6851.19,6935.46,491540000,6935.46
-1997-03-13,7023.59,7023.59,6852.72,6878.89,507560000,6878.89
-1997-03-12,7085.16,7111.72,6988.96,7039.37,490200000,7039.37
-1997-03-11,7079.39,7158.28,7026.28,7085.16,493250000,7085.16
-1997-03-10,7000.89,7103.25,6970.10,7079.39,468780000,7079.39
-1997-03-07,6944.70,7047.07,6927.00,7000.89,508270000,7000.89
-1997-03-06,6945.85,7017.05,6896.60,6944.70,540310000,6944.70
-1997-03-05,6852.72,6966.64,6836.95,6945.85,532500000,6945.85
-1997-03-04,6918.92,6983.95,6814.63,6852.72,537890000,6852.72
-1997-03-03,6877.74,6957.01,6798.46,6918.92,437220000,6918.92
-1997-02-28,6925.07,6978.18,6820.78,6877.74,508280000,6877.74
-1997-02-27,6983.18,7028.59,6885.44,6925.07,467190000,6925.07
-1997-02-26,7037.83,7076.31,6878.12,6983.18,573920000,6983.18
-1997-02-25,7008.20,7099.79,6935.08,7037.83,527450000,7037.83
-1997-02-24,6931.62,7049.76,6868.50,7008.20,462450000,7008.20
-1997-02-21,6927.38,6984.72,6869.27,6931.62,478450000,6931.62
-1997-02-20,7020.13,7035.91,6890.82,6927.38,492220000,6927.38
-1997-02-19,7067.46,7112.87,6980.87,7020.13,519350000,7020.13
-1997-02-18,6988.96,7084.39,6946.62,7067.46,474110000,7067.46
-1997-02-14,7022.44,7074.77,6935.85,6988.96,491540000,6988.96
-1997-02-13,6961.63,7074.39,6924.30,7022.44,593710000,7022.44
-1997-02-12,6858.11,6976.64,6844.26,6961.63,563890000,6961.63
-1997-02-11,6806.54,6887.36,6756.90,6858.11,483090000,6858.11
-1997-02-10,6855.80,6908.14,6771.14,6806.54,471590000,6806.54
-1997-02-07,6773.06,6906.22,6747.28,6855.80,540910000,6855.80
-1997-02-06,6746.90,6821.17,6683.40,6773.06,519660000,6773.06
-1997-02-05,6833.48,6913.14,6704.56,6746.90,580520000,6746.90
-1997-02-04,6806.16,6859.65,6738.43,6833.48,506530000,6833.48
-1997-02-03,6813.09,6858.11,6733.04,6806.16,463600000,6806.16
-1997-01-31,6823.86,6912.37,6769.99,6813.09,578550000,6813.09
-1997-01-30,6740.74,6845.03,6719.96,6823.86,524160000,6823.86
-1997-01-29,6656.08,6766.91,6627.98,6740.74,498390000,6740.74
-1997-01-28,6660.69,6823.48,6612.20,6656.08,541580000,6656.08
-1997-01-27,6696.48,6748.82,6598.73,6660.69,445760000,6660.69
-1997-01-24,6755.75,6798.08,6629.91,6696.48,542920000,6696.48
-1997-01-23,6850.03,6953.55,6724.19,6755.75,685070000,6755.75
-1997-01-22,6883.90,6913.14,6801.16,6850.03,587300000,6850.03
-1997-01-21,6843.87,6934.69,6771.14,6883.90,571280000,6883.90
-1997-01-20,6833.10,6893.13,6777.30,6843.87,440470000,6843.87
-1997-01-17,6765.37,6863.88,6732.66,6833.10,534640000,6833.10
-1997-01-16,6726.88,6818.47,6688.40,6765.37,537290000,6765.37
-1997-01-15,6762.29,6800.77,6669.93,6726.88,524990000,6726.88
-1997-01-14,6709.18,6816.17,6689.94,6762.29,531600000,6762.29
-1997-01-13,6703.79,6773.45,6647.99,6709.18,445400000,6709.18
-1997-01-10,6625.67,6725.35,6530.62,6703.79,545860000,6703.79
-1997-01-09,6549.48,6677.24,6520.23,6625.67,555370000,6625.67
-1997-01-08,6600.66,6650.30,6509.84,6549.48,557510000,6549.48
-1997-01-07,6567.18,6621.82,6481.75,6600.66,538220000,6600.66
-1997-01-06,6544.09,6647.22,6508.30,6567.18,531350000,6567.18
-1997-01-03,6442.49,6586.42,6437.10,6544.09,452970000,6544.09
-1997-01-02,6448.27,6511.38,6318.96,6442.49,463230000,6442.49
-1996-12-31,6549.37,6580.90,6421.74,6448.27,399760000,6448.27
-1996-12-30,6560.91,6623.96,6518.23,6549.37,339060000,6549.37
-1996-12-27,6546.68,6607.81,6510.93,6560.91,253810000,6560.91
-1996-12-26,6522.85,6594.74,6495.94,6546.68,254630000,6546.68
-1996-12-24,6489.02,6546.68,6467.10,6522.85,165140000,6522.85
-1996-12-23,6484.40,6539.76,6428.27,6489.02,343280000,6489.02
-1996-12-20,6473.64,6597.43,6445.19,6484.40,654340000,6484.40
-1996-12-19,6352.15,6499.40,6352.15,6473.64,526410000,6473.64
-1996-12-18,6308.33,6399.06,6272.96,6346.77,500490000,6346.77
-1996-12-17,6268.35,6354.46,6206.83,6308.33,519840000,6308.33
-1996-12-16,6304.87,6388.68,6227.98,6268.35,447560000,6268.35
-1996-12-13,6303.71,6377.14,6227.59,6304.87,458540000,6304.87
-1996-12-12,6402.52,6465.57,6283.72,6303.71,492920000,6303.71
-1996-12-11,6457.88,6457.88,6317.94,6402.52,494210000,6402.52
-1996-12-10,6463.94,6545.56,6427.04,6473.25,446120000,6473.25
-1996-12-09,6381.94,6496.73,6375.98,6463.94,381570000,6463.94
-1996-12-06,6437.10,6441.20,6274.24,6381.94,500860000,6381.94
-1996-12-05,6422.94,6491.14,6363.31,6437.10,483710000,6437.10
-1996-12-04,6442.69,6482.20,6339.46,6422.94,498240000,6422.94
-1996-12-03,6521.70,6577.23,6422.94,6442.69,516160000,6442.69
-1996-12-02,6521.70,6553.01,6439.34,6521.70,412520000,6521.70
-1996-11-29,6499.34,6551.15,6490.40,6521.70,151550000,6521.70
-1996-11-27,6528.41,6566.43,6457.97,6499.34,377780000,6499.34
-1996-11-26,6547.79,6606.30,6475.49,6528.41,527380000,6528.41
-1996-11-25,6471.76,6565.68,6443.44,6547.79,475260000,6547.79
-1996-11-22,6418.47,6498.22,6402.44,6471.76,525210000,6471.76
-1996-11-21,6430.02,6463.56,6370.02,6418.47,464430000,6418.47
-1996-11-20,6397.60,6482.20,6370.02,6430.02,497900000,6430.02
-1996-11-19,6346.91,6428.16,6323.06,6397.60,461980000,6397.60
-1996-11-18,6348.03,6407.66,6297.34,6346.91,388520000,6346.91
-1996-11-15,6313.00,6414.37,6277.22,6348.03,529100000,6348.03
-1996-11-14,6274.24,6350.64,6232.50,6313.00,480350000,6313.00
-1996-11-13,6266.04,6317.10,6206.78,6274.24,429840000,6274.24
-1996-11-12,6255.60,6314.49,6199.70,6266.04,472940000,6266.04
-1996-11-11,6219.82,6292.87,6198.58,6255.60,353960000,6255.60
-1996-11-08,6206.04,6247.40,6151.62,6219.82,402320000,6219.82
-1996-11-07,6177.71,6238.83,6130.38,6206.04,502530000,6206.04
-1996-11-06,6081.18,6200.44,6060.69,6177.71,509600000,6177.71
-1996-11-05,6041.68,6125.53,6029.01,6081.18,492860000,6081.18
-1996-11-04,6021.93,6083.05,5981.30,6041.68,398790000,6041.68
-1996-11-01,6029.38,6082.67,5975.34,6021.93,465510000,6021.93
-1996-10-31,5993.23,6063.67,5955.59,6029.38,488500000,6029.38
-1996-10-30,6007.02,6055.84,5956.71,5993.23,437770000,5993.23
-1996-10-29,5972.73,6054.72,5938.82,6007.02,443890000,6007.02
-1996-10-28,6007.02,6063.67,5952.61,5972.73,383630000,5972.73
-1996-10-25,5992.48,6047.64,5954.47,6007.02,367640000,6007.02
-1996-10-24,6036.46,6080.07,5953.72,5992.48,418970000,5992.48
-1996-10-23,6061.80,6081.93,5965.65,6036.46,442170000,6036.46
-1996-10-22,6090.87,6114.73,6015.59,6061.80,410790000,6061.80
-1996-10-21,6094.23,6162.80,6027.89,6090.87,414630000,6090.87
-1996-10-18,6059.20,6119.57,6011.49,6094.23,473020000,6094.23
-1996-10-17,6020.81,6101.31,5994.72,6059.20,478550000,6059.20
-1996-10-16,6004.78,6056.21,5943.66,6020.81,441410000,6020.81
-1996-10-15,6010.00,6077.83,5951.12,6004.78,458980000,6004.78
-1996-10-14,5969.38,6043.91,5952.61,6010.00,322000000,6010.00
-1996-10-11,5921.67,5999.56,5912.36,5969.38,396050000,5969.38
-1996-10-10,5930.62,5956.71,5876.58,5921.67,394950000,5921.67
-1996-10-09,5966.77,5985.03,5892.23,5930.62,408450000,5930.62
-1996-10-08,5979.81,6032.36,5930.24,5966.77,435070000,5966.77
-1996-10-07,5992.86,6025.28,5945.15,5979.81,380750000,5979.81
-1996-10-04,5932.85,6023.79,5917.20,5992.86,463940000,5992.86
-1996-10-03,5933.97,5972.36,5887.76,5932.85,386500000,5932.85
-1996-10-02,5904.90,5966.02,5888.88,5933.97,440130000,5933.97
-1996-10-01,5882.17,5942.17,5833.72,5904.90,421550000,5904.90
-1996-09-30,5845.18,5934.32,5845.18,5882.17,394260000,5882.17
-1996-09-27,5868.85,5903.99,5819.65,5872.92,414760000,5872.92
-1996-09-26,5877.36,5928.04,5828.90,5868.85,500870000,5868.85
-1996-09-25,5874.03,5928.77,5827.42,5877.36,451710000,5877.36
-1996-09-24,5894.74,5952.08,5831.86,5874.03,460150000,5874.03
-1996-09-23,5888.46,5913.24,5820.39,5894.74,297760000,5894.74
-1996-09-20,5867.74,5925.82,5840.74,5888.46,519420000,5888.46
-1996-09-19,5877.36,5908.80,5818.17,5867.74,398580000,5867.74
-1996-09-18,5888.83,5919.90,5838.15,5877.36,396600000,5877.36
-1996-09-17,5889.20,5929.51,5830.38,5888.83,449850000,5888.83
-1996-09-16,5838.52,5920.64,5823.72,5889.20,430080000,5889.20
-1996-09-13,5786.73,5871.44,5786.73,5838.52,488360000,5838.52
-1996-09-12,5754.92,5815.59,5739.76,5771.94,398820000,5771.94
-1996-09-11,5727.18,5777.49,5696.85,5754.92,376880000,5754.92
-1996-09-10,5733.84,5767.87,5681.68,5727.18,372960000,5727.18
-1996-09-09,5662.08,5756.40,5662.08,5733.84,311530000,5733.84
-1996-09-06,5606.96,5696.48,5585.51,5659.86,348710000,5659.86
-1996-09-05,5656.90,5669.47,5592.53,5606.96,361430000,5606.96
-1996-09-04,5648.39,5682.05,5608.81,5656.90,351290000,5656.90
-1996-09-03,5616.21,5667.99,5550.37,5648.39,345740000,5648.39
-1996-08-30,5647.65,5659.86,5571.45,5616.21,258380000,5616.21
-1996-08-29,5712.38,5716.82,5615.47,5647.65,321120000,5647.65
-1996-08-28,5711.27,5747.89,5678.72,5712.38,296440000,5712.38
-1996-08-27,5693.89,5735.32,5670.58,5711.27,310520000,5711.27
-1996-08-26,5722.74,5742.71,5665.41,5693.89,281430000,5693.89
-1996-08-23,5733.47,5761.58,5679.09,5722.74,308010000,5722.74
-1996-08-22,5689.82,5761.95,5662.45,5733.47,354950000,5733.47
-1996-08-21,5721.26,5734.95,5648.76,5689.82,348820000,5689.82
-1996-08-20,5699.44,5747.52,5670.21,5721.26,334960000,5721.26
-1996-08-19,5689.45,5728.66,5664.30,5699.44,294080000,5699.44
-1996-08-16,5665.78,5722.74,5646.54,5689.45,337650000,5689.45
-1996-08-15,5666.88,5701.66,5633.22,5665.78,323950000,5665.78
-1996-08-14,5647.28,5695.00,5614.36,5666.88,343470000,5666.88
-1996-08-13,5618.06,5713.86,5618.06,5647.28,362470000,5647.28
-1996-08-12,5681.31,5746.04,5625.83,5704.98,312170000,5704.98
-1996-08-09,5713.49,5747.15,5654.31,5681.31,327280000,5681.31
-1996-08-08,5718.67,5746.41,5661.34,5713.49,334570000,5713.49
-1996-08-07,5696.11,5754.55,5659.12,5718.67,394340000,5718.67
-1996-08-06,5674.28,5716.45,5630.26,5696.11,347290000,5696.11
-1996-08-05,5679.83,5719.04,5639.14,5674.28,307240000,5674.28
-1996-08-02,5601.41,5703.51,5601.41,5679.83,442080000,5679.83
-1996-08-01,5528.91,5628.79,5507.83,5594.75,439110000,5594.75
-1996-07-31,5481.93,5558.13,5460.48,5528.91,403560000,5528.91
-1996-07-30,5434.59,5503.73,5403.52,5481.93,341090000,5481.93
-1996-07-29,5473.06,5497.47,5414.61,5434.59,281560000,5434.59
-1996-07-26,5422.01,5503.02,5397.97,5473.06,349900000,5473.06
-1996-07-25,5355.80,5469.36,5355.80,5422.01,405390000,5422.01
-1996-07-24,5346.55,5402.04,5244.83,5354.69,463030000,5354.69
-1996-07-23,5390.94,5447.90,5313.63,5346.55,421900000,5346.55
-1996-07-22,5426.82,5446.05,5346.92,5390.94,327300000,5390.94
-1996-07-19,5464.18,5490.44,5393.53,5426.82,408070000,5426.82
-1996-07-18,5376.88,5500.43,5352.10,5464.18,474460000,5464.18
-1996-07-17,5358.76,5465.29,5325.10,5376.88,513830000,5376.88
-1996-07-16,5349.51,5438.66,5170.11,5358.76,68290000,5358.76
-1996-07-15,5510.56,5527.93,5326.98,5349.51,419020000,5349.51
-1996-07-12,5520.54,5562.65,5455.16,5510.56,397790000,5510.56
-1996-07-11,5600.33,5600.33,5447.77,5520.54,520470000,5520.54
-1996-07-10,5581.86,5628.03,5515.00,5603.65,421350000,5603.65
-1996-07-09,5550.83,5622.49,5540.12,5581.86,379200000,5581.86
-1996-07-08,5588.14,5622.12,5519.80,5550.83,367560000,5550.83
-1996-07-05,5657.58,5657.58,5570.77,5588.14,181470000,5588.14
-1996-07-03,5720.38,5749.93,5656.47,5703.02,336260000,5703.02
-1996-07-02,5729.98,5769.88,5668.29,5720.38,388000000,5720.38
-1996-07-01,5654.63,5749.19,5637.26,5729.98,345750000,5729.98
-1996-06-28,5677.53,5724.44,5625.81,5654.63,470460000,5654.63
-1996-06-27,5682.70,5715.21,5616.21,5677.53,405580000,5677.53
-1996-06-26,5719.27,5739.22,5652.04,5682.70,386520000,5682.70
-1996-06-25,5717.79,5760.27,5668.66,5719.27,391900000,5719.27
-1996-06-24,5705.23,5770.61,5688.61,5717.79,333840000,5717.79
-1996-06-21,5659.43,5722.22,5639.11,5705.23,520340000,5705.23
-1996-06-20,5648.35,5709.30,5606.97,5659.43,441060000,5659.43
-1996-06-19,5628.03,5693.78,5600.70,5648.35,383610000,5648.35
-1996-06-18,5652.78,5683.44,5607.71,5628.03,373290000,5628.03
-1996-06-17,5649.45,5689.72,5614.36,5652.78,298410000,5652.78
-1996-06-14,5657.95,5687.13,5609.93,5649.45,390630000,5649.45
-1996-06-13,5668.29,5714.84,5622.86,5657.95,397620000,5657.95
-1996-06-12,5668.66,5725.55,5637.63,5668.29,397190000,5668.29
-1996-06-11,5687.87,5747.71,5637.63,5668.66,405390000,5668.66
-1996-06-10,5697.11,5727.03,5643.54,5687.87,337480000,5687.87
-1996-06-07,5667.19,5708.93,5559.69,5697.11,445710000,5697.11
-1996-06-06,5697.48,5750.67,5639.48,5667.19,464800000,5667.19
-1996-06-05,5665.71,5718.53,5631.35,5697.48,380360000,5697.48
-1996-06-04,5624.71,5697.84,5616.58,5665.71,386040000,5665.71
-1996-06-03,5643.18,5662.75,5587.40,5624.71,318470000,5624.71
-1996-05-31,5693.41,5712.62,5614.36,5643.18,351750000,5643.18
-1996-05-30,5673.83,5734.41,5625.07,5693.41,381960000,5693.41
-1996-05-29,5709.67,5743.65,5632.46,5673.83,346730000,5673.83
-1996-05-28,5762.86,5798.69,5680.48,5709.67,341480000,5709.67
-1996-05-24,5762.12,5815.68,5722.59,5762.86,329150000,5762.86
-1996-05-23,5778.00,5833.04,5704.12,5762.12,431850000,5762.12
-1996-05-22,5736.26,5803.49,5687.87,5778.00,423670000,5778.00
-1996-05-21,5748.82,5794.63,5698.21,5736.26,409610000,5736.26
-1996-05-20,5687.50,5778.74,5657.58,5748.82,385000000,5748.82
-1996-05-17,5635.05,5729.61,5631.35,5687.50,429140000,5687.50
-1996-05-16,5625.44,5677.53,5577.42,5635.05,392070000,5635.05
-1996-05-15,5624.71,5691.57,5590.72,5625.44,447790000,5625.44
-1996-05-14,5582.60,5663.12,5566.71,5624.71,460440000,5624.71
-1996-05-13,5518.14,5601.80,5495.42,5582.60,394180000,5582.60
-1996-05-10,5478.03,5559.68,5478.03,5518.14,428370000,5518.14
-1996-05-09,5474.06,5534.76,5419.87,5475.14,404310000,5475.14
-1996-05-08,5420.95,5486.34,5327.74,5474.06,495460000,5474.06
-1996-05-07,5464.31,5486.34,5392.05,5420.95,410770000,5420.95
-1996-05-06,5478.03,5528.97,5397.83,5464.31,375820000,5464.31
-1996-05-03,5498.27,5555.71,5439.74,5478.03,434010000,5478.03
-1996-05-02,5575.22,5578.11,5455.27,5498.27,442960000,5498.27
-1996-05-01,5569.08,5619.29,5523.56,5575.22,404620000,5575.22
-1996-04-30,5573.41,5606.29,5522.83,5569.08,393390000,5569.08
-1996-04-29,5567.99,5611.71,5515.25,5573.41,344030000,5573.41
-1996-04-26,5566.91,5618.57,5517.78,5567.99,402530000,5567.99
-1996-04-25,5553.90,5601.23,5490.68,5566.91,461120000,5566.91
-1996-04-24,5588.59,5619.29,5512.36,5553.90,494220000,5553.90
-1996-04-23,5564.74,5621.82,5534.76,5588.59,452690000,5588.59
-1996-04-22,5535.48,5610.62,5516.33,5564.74,397460000,5564.74
-1996-04-19,5551.74,5593.64,5504.41,5535.48,435690000,5535.48
-1996-04-18,5549.93,5600.51,5493.93,5551.74,415150000,5551.74
-1996-04-17,5620.02,5653.25,5500.07,5549.93,465200000,5549.93
-1996-04-16,5592.92,5656.14,5554.99,5620.02,453310000,5620.02
-1996-04-15,5532.59,5614.60,5517.41,5592.92,346370000,5592.92
-1996-04-12,5487.07,5577.39,5445.16,5532.59,413270000,5532.59
-1996-04-11,5485.98,5540.17,5382.66,5487.07,519710000,5487.07
-1996-04-10,5560.41,5601.23,5452.02,5485.98,475150000,5485.98
-1996-04-09,5594.37,5644.58,5530.06,5560.41,426790000,5560.41
-1996-04-08,5624.71,5624.71,5518.14,5594.37,411810000,5594.37
-1996-04-04,5689.74,5737.07,5633.02,5682.88,383400000,5682.88
-1996-04-03,5671.68,5712.50,5619.29,5689.74,386620000,5689.74
-1996-04-02,5637.72,5706.72,5597.26,5671.68,406640000,5671.68
-1996-04-01,5587.14,5670.23,5562.57,5637.72,392120000,5637.72
-1996-03-29,5630.85,5682.88,5550.29,5587.14,413510000,5587.14
-1996-03-28,5626.88,5664.45,5564.74,5630.85,370750000,5630.85
-1996-03-27,5670.60,5703.47,5596.53,5626.88,406280000,5626.88
-1996-03-26,5643.86,5701.30,5595.81,5670.60,400090000,5670.60
-1996-03-25,5636.64,5712.14,5592.92,5643.86,336700000,5643.86
-1996-03-22,5626.88,5681.07,5589.67,5636.64,329390000,5636.64
-1996-03-21,5655.42,5696.25,5590.03,5626.88,367180000,5626.88
-1996-03-20,5669.51,5724.06,5590.39,5655.42,409780000,5655.42
-1996-03-19,5683.60,5755.86,5619.66,5669.51,438300000,5669.51
-1996-03-18,5584.97,5706.00,5573.41,5683.60,437100000,5683.60
-1996-03-15,5586.06,5628.69,5523.56,5584.97,529970000,5584.97
-1996-03-14,5568.72,5662.29,5536.56,5586.06,492630000,5586.06
-1996-03-13,5583.89,5626.52,5513.80,5568.72,413030000,5568.72
-1996-03-12,5581.00,5622.55,5464.67,5583.89,454980000,5583.89
-1996-03-11,5470.45,5605.20,5425.29,5581.00,449500000,5581.00
-1996-03-08,5612.79,5612.79,5395.30,5470.45,546550000,5470.45
-1996-03-07,5629.77,5667.34,5572.33,5641.69,425790000,5641.69
-1996-03-06,5642.42,5700.22,5585.70,5629.77,428220000,5629.77
-1996-03-05,5600.15,5655.78,5558.24,5642.42,445700000,5642.42
-1996-03-04,5536.56,5646.39,5511.99,5600.15,417270000,5600.15
-1996-03-01,5485.62,5573.41,5424.20,5536.56,471480000,5536.56
-1996-02-29,5506.21,5562.21,5440.46,5485.62,453170000,5485.62
-1996-02-28,5549.21,5625.07,5487.07,5506.21,447790000,5506.21
-1996-02-27,5565.10,5597.26,5478.76,5549.21,431340000,5549.21
-1996-02-26,5630.49,5647.83,5530.42,5565.10,399330000,5565.10
-1996-02-23,5608.46,5693.36,5546.32,5630.49,443130000,5630.49
-1996-02-22,5515.97,5638.44,5511.63,5608.46,494750000,5608.46
-1996-02-21,5458.53,5548.12,5440.82,5515.97,431220000,5515.97
-1996-02-20,5503.32,5515.97,5393.50,5458.53,395910000,5458.53
-1996-02-16,5551.37,5563.30,5470.45,5503.32,445570000,5503.32
-1996-02-15,5579.55,5623.27,5514.88,5551.37,415320000,5551.37
-1996-02-14,5601.23,5633.02,5534.39,5579.55,421790000,5579.55
-1996-02-13,5600.15,5644.94,5530.06,5601.23,441540000,5601.23
-1996-02-12,5541.62,5643.50,5531.14,5600.15,401490000,5600.15
-1996-02-09,5539.45,5603.76,5474.06,5541.62,477640000,5541.62
-1996-02-08,5492.12,5559.68,5441.55,5539.45,474970000,5539.45
-1996-02-07,5459.61,5520.30,5423.84,5492.12,462730000,5492.12
-1996-02-06,5407.59,5483.82,5371.82,5459.61,465940000,5459.61
-1996-02-05,5373.99,5433.96,5319.43,5407.59,377760000,5407.59
-1996-02-02,5405.06,5442.99,5338.94,5373.99,420020000,5373.99
-1996-02-01,5395.30,5438.29,5335.69,5405.06,461610000,5405.06
-1996-01-31,5381.21,5433.24,5314.38,5395.30,472210000,5395.30
-1996-01-30,5304.98,5409.75,5288.73,5381.21,464350000,5381.21
-1996-01-29,5271.75,5338.22,5246.82,5304.98,363330000,5304.98
-1996-01-26,5216.83,5293.78,5187.21,5271.75,385700000,5271.75
-1996-01-25,5242.84,5289.45,5173.84,5216.83,453270000,5216.83
-1996-01-24,5192.27,5297.04,5176.73,5242.84,476380000,5242.84
-1996-01-23,5219.36,5241.76,5141.33,5192.27,416910000,5192.27
-1996-01-22,5184.68,5254.77,5133.02,5219.36,398040000,5219.36
-1996-01-19,5124.35,5214.66,5087.49,5184.68,497720000,5184.68
-1996-01-18,5066.90,5166.98,5032.58,5124.35,450410000,5124.35
-1996-01-17,5088.22,5133.38,5028.61,5066.90,458720000,5066.90
-1996-01-16,5043.78,5116.04,5000.79,5088.22,425220000,5088.22
-1996-01-15,5061.12,5099.42,5012.71,5043.78,306180000,5043.78
-1996-01-12,5065.10,5114.23,5000.07,5061.12,383400000,5061.12
-1996-01-11,5032.94,5099.78,5002.96,5065.10,408800000,5065.10
-1996-01-10,5130.13,5151.69,5000.07,5032.94,496830000,5032.94
-1996-01-09,5197.70,5239.23,5100.86,5130.13,417400000,5130.13
-1996-01-08,5181.43,5207.08,5179.98,5197.70,130360000,5197.70
-1996-01-05,5173.84,5217.55,5107.00,5181.43,437110000,5181.43
-1996-01-04,5194.07,5259.46,5114.23,5173.84,512580000,5173.84
-1996-01-03,5177.45,5252.60,5143.13,5194.07,468950000,5194.07
-1996-01-02,5117.12,5208.16,5087.13,5177.45,364180000,5177.45
-1995-12-29,5095.80,5144.58,5063.65,5117.12,319680000,5117.12
-1995-12-28,5105.92,5132.65,5062.21,5095.80,288470000,5095.80
-1995-12-27,5110.26,5146.74,5077.74,5105.92,252270000,5105.92
-1995-12-26,5097.97,5149.27,5072.32,5110.26,217030000,5110.26
-1995-12-22,5096.53,5146.74,5064.01,5097.97,289600000,5097.97
-1995-12-21,5059.32,5135.91,5031.50,5096.53,415780000,5096.53
-1995-12-20,5109.89,5173.48,5047.39,5059.32,437650000,5059.32
-1995-12-19,5075.21,5146.02,5016.68,5109.89,18440000,5109.89
-1995-12-18,5159.39,5159.39,5042.70,5075.21,426230000,5075.21
-1995-12-15,5182.15,5217.55,5135.54,5176.73,636780000,5176.73
-1995-12-14,5216.47,5266.69,5148.55,5182.15,461960000,5182.15
-1995-12-13,5174.92,5246.10,5144.22,5216.47,414680000,5216.47
-1995-12-12,5184.32,5226.23,5132.29,5174.92,349410000,5174.92
-1995-12-11,5156.86,5225.50,5122.18,5184.32,342050000,5184.32
-1995-12-08,5159.39,5200.21,5115.31,5156.86,327500000,5156.86
-1995-12-07,5199.13,5211.05,5124.35,5159.39,379260000,5159.39
-1995-12-06,5177.45,5234.53,5147.47,5199.13,417750000,5199.13
-1995-12-05,5139.52,5216.83,5108.45,5177.45,434000000,5177.45
-1995-12-04,5087.13,5157.58,5057.87,5139.52,405080000,5139.52
-1995-12-01,5074.49,5133.02,5038.36,5087.13,392650000,5087.13
-1995-11-30,5105.56,5143.13,5033.17,5074.49,439470000,5074.49
-1995-11-29,5078.10,5126.51,5047.03,5105.56,398230000,5105.56
-1995-11-28,5070.88,5105.56,5006.21,5078.10,408860000,5078.10
-1995-11-27,5048.84,5114.23,5034.03,5070.88,356180000,5070.88
-1995-11-24,5041.61,5072.68,5028.61,5048.84,125870000,5048.84
-1995-11-22,5023.55,5096.17,4982.72,5041.61,404900000,5041.61
-1995-11-21,4983.09,5050.28,4948.04,5023.55,405860000,5023.55
-1995-11-20,4989.95,5030.77,4946.60,4983.09,333110000,4983.09
-1995-11-17,4969.36,5022.10,4934.31,4989.95,429990000,4989.95
-1995-11-16,4922.75,5003.68,4902.16,4969.36,418430000,4969.36
-1995-11-15,4871.81,4939.73,4835.69,4922.75,373090000,4922.75
-1995-11-14,4872.90,4923.11,4826.29,4871.81,353650000,4871.81
-1995-11-13,4870.37,4909.75,4821.23,4872.90,292390000,4872.90
-1995-11-10,4864.23,4896.02,4820.51,4870.37,297950000,4870.37
-1995-11-09,4852.67,4902.52,4811.84,4864.23,379500000,4864.23
-1995-11-08,4797.03,4877.59,4775.71,4852.67,359770000,4852.67
-1995-11-07,4814.01,4839.30,4770.66,4797.03,365720000,4797.03
-1995-11-06,4825.57,4862.78,4779.33,4814.01,309090000,4814.01
-1995-11-03,4808.59,4858.81,4774.63,4825.57,344360000,4825.57
-1995-11-02,4766.68,4833.16,4745.00,4808.59,396150000,4808.59
-1995-11-01,4755.48,4801.73,4719.72,4766.68,377930000,4766.68
-1995-10-31,4756.57,4821.96,4735.97,4755.48,377350000,4755.48
-1995-10-30,4741.75,4798.84,4716.46,4756.57,318840000,4756.57
-1995-10-27,4703.82,4766.68,4653.24,4741.75,378820000,4741.75
-1995-10-26,4753.68,4777.88,4655.05,4703.82,464190000,4703.82
-1995-10-25,4783.66,4824.49,4708.88,4753.68,433570000,4753.68
-1995-10-24,4755.48,4819.07,4730.92,4783.66,415400000,4783.66
-1995-10-23,4794.86,4805.70,4724.41,4755.48,329720000,4755.48
-1995-10-20,4802.45,4836.41,4758.37,4794.86,388140000,4794.86
-1995-10-19,4777.52,4830.27,4744.28,4802.45,406620000,4802.45
-1995-10-18,4795.95,4837.49,4747.53,4777.52,411270000,4777.52
-1995-10-17,4784.38,4831.35,4747.90,4795.95,352940000,4795.95
-1995-10-16,4793.78,4823.04,4751.51,4784.38,299520000,4784.38
-1995-10-13,4764.88,4845.08,4749.70,4793.78,373970000,4793.78
-1995-10-12,4735.25,4790.16,4709.24,4764.88,343930000,4764.88
-1995-10-11,4720.80,4773.91,4686.43,4735.25,343060000,4735.25
-1995-10-10,4726.22,4745.73,4638.43,4720.80,412670000,4720.80
-1995-10-09,4769.21,4781.13,4691.54,4726.22,275280000,4726.22
-1995-10-06,4762.71,4805.70,4731.64,4769.21,314170000,4769.21
-1995-10-05,4740.67,4794.86,4705.63,4762.71,367410000,4762.71
-1995-10-04,4749.70,4787.27,4689.01,4740.67,339350000,4740.67
-1995-10-03,4761.26,4791.61,4702.74,4749.70,385890000,4749.70
-1995-10-02,4789.08,4817.98,4732.72,4761.26,304990000,4761.26
-1995-09-29,4787.64,4834.96,4757.65,4789.08,337670000,4789.08
-1995-09-28,4762.35,4810.03,4731.64,4787.64,367610000,4787.64
-1995-09-27,4765.60,4790.16,4692.98,4762.35,410970000,4762.35
-1995-09-26,4769.93,4816.54,4738.86,4765.60,362550000,4765.60
-1995-09-25,4764.15,4804.62,4728.02,4769.93,273110000,4769.93
-1995-09-22,4767.40,4789.44,4706.35,4764.15,370750000,4764.15
-1995-09-21,4792.69,4820.15,4728.75,4767.40,367060000,4767.40
-1995-09-20,4767.04,4828.46,4746.45,4792.69,402530000,4792.69
-1995-09-19,4780.41,4798.11,4734.53,4767.04,371080000,4767.04
-1995-09-18,4797.57,4814.01,4729.47,4780.41,328630000,4780.41
-1995-09-15,4801.80,4839.48,4762.35,4797.57,459370000,4797.57
-1995-09-14,4765.52,4830.32,4731.36,4801.80,382860000,4801.80
-1995-09-13,4747.21,4801.09,4697.55,4765.52,381450000,4765.52
-1995-09-12,4704.94,4762.35,4689.45,4747.21,342580000,4747.21
-1995-09-11,4700.72,4744.04,4672.54,4704.94,296820000,4704.94
-1995-09-08,4669.72,4722.91,4648.59,4700.72,317260000,4700.72
-1995-09-07,4683.81,4710.58,4640.14,4669.72,321710000,4669.72
-1995-09-06,4670.08,4716.21,4648.95,4683.81,369510000,4683.81
-1995-09-05,4647.54,4697.90,4625.70,4670.08,332660000,4670.08
-1995-09-01,4610.56,4672.19,4594.71,4647.54,255710000,4647.54
-1995-08-31,4604.57,4634.51,4582.38,4610.56,300890000,4610.56
-1995-08-30,4608.44,4639.79,4582.38,4604.57,329780000,4604.57
-1995-08-29,4594.00,4625.35,4554.21,4608.44,311290000,4608.44
-1995-08-28,4601.40,4632.39,4566.53,4594.00,267860000,4594.00
-1995-08-25,4580.62,4629.93,4569.70,4601.40,255990000,4601.40
-1995-08-24,4584.85,4618.30,4552.80,4580.62,299200000,4580.62
-1995-08-23,4620.42,4636.27,4571.81,4584.85,291380000,4584.85
-1995-08-22,4614.78,4646.13,4580.62,4620.42,290350000,4620.42
-1995-08-21,4617.60,4676.42,4593.65,4614.78,303200000,4614.78
-1995-08-18,4630.63,4665.15,4597.88,4617.60,312030000,4617.60
-1995-08-17,4639.08,4659.16,4587.66,4630.63,354460000,4630.63
-1995-08-16,4640.84,4673.60,4593.30,4639.08,390070000,4639.08
-1995-08-15,4659.86,4672.89,4602.10,4640.84,330040000,4640.84
-1995-08-14,4618.30,4677.12,4601.75,4659.86,263750000,4659.86
-1995-08-11,4643.66,4659.51,4584.85,4618.30,267850000,4618.30
-1995-08-10,4671.49,4698.96,4621.47,4643.66,306660000,4643.66
-1995-08-09,4693.32,4712.34,4649.30,4671.49,303390000,4671.49
-1995-08-08,4693.32,4722.55,4654.23,4693.32,305150000,4693.32
-1995-08-07,4683.46,4727.84,4667.26,4693.32,276040000,4693.32
-1995-08-04,4701.42,4728.54,4660.57,4683.46,314730000,4683.46
-1995-08-03,4690.15,4720.44,4632.04,4701.42,353110000,4701.42
-1995-08-02,4700.37,4772.56,4667.96,4690.15,374310000,4690.15
-1995-08-01,4708.47,4742.98,4648.59,4700.37,334770000,4700.37
-1995-07-31,4715.51,4753.55,4671.13,4708.47,291950000,4708.47
-1995-07-28,4732.77,4762.70,4686.28,4715.51,311580000,4715.51
-1995-07-27,4707.06,4767.99,4691.56,4732.77,356570000,4732.77
-1995-07-26,4714.45,4750.73,4665.15,4707.06,393460000,4707.06
-1995-07-25,4668.67,4743.69,4651.76,4714.45,373210000,4714.45
-1995-07-24,4641.55,4701.42,4620.42,4668.67,315170000,4668.67
-1995-07-21,4641.55,4676.06,4596.82,4641.55,427770000,4641.55
-1995-07-20,4628.87,4684.52,4578.51,4641.55,383380000,4641.55
-1995-07-19,4686.28,4698.60,4530.26,4628.87,489850000,4628.87
-1995-07-18,4734.53,4734.53,4648.24,4686.28,372230000,4686.28
-1995-07-17,4708.82,4767.63,4681.35,4736.29,322540000,4736.29
-1995-07-14,4727.48,4736.99,4664.79,4708.82,312930000,4708.82
-1995-07-13,4727.29,4766.58,4676.06,4727.48,387470000,4727.48
-1995-07-12,4680.60,4747.00,4654.66,4727.29,416000000,4727.29
-1995-07-11,4702.39,4724.52,4647.74,4680.60,376770000,4680.60
-1995-07-10,4702.73,4747.69,4670.91,4702.39,409700000,4702.39
-1995-07-07,4664.00,4740.77,4628.38,4702.73,466540000,4702.73
-1995-07-06,4615.23,4681.98,4587.91,4664.00,420470000,4664.00
-1995-07-05,4585.15,4652.24,4561.63,4615.23,357810000,4615.23
-1995-07-03,4556.10,4594.83,4536.04,4585.15,117870000,4585.15
-1995-06-30,4550.56,4606.24,4513.90,4556.10,311320000,4556.10
-1995-06-29,4556.79,4592.76,4510.45,4550.56,313060000,4550.56
-1995-06-28,4542.61,4587.22,4512.87,4556.79,368060000,4556.79
-1995-06-27,4551.25,4592.41,4511.48,4542.61,346950000,4542.61
-1995-06-26,4585.84,4600.02,4536.38,4551.25,296720000,4551.25
-1995-06-23,4589.64,4609.70,4549.18,4585.84,321530000,4585.84
-1995-06-22,4547.10,4614.20,4535.35,4589.64,420950000,4589.64
-1995-06-21,4550.56,4583.07,4517.02,4547.10,398210000,4547.10
-1995-06-20,4553.68,4587.22,4497.99,4550.56,382290000,4550.56
-1995-06-19,4510.79,4577.19,4498.69,4553.68,322620000,4553.68
-1995-06-16,4496.27,4533.96,4482.43,4510.79,442740000,4510.79
-1995-06-15,4491.08,4527.74,4466.87,4496.27,334640000,4496.27
-1995-06-14,4484.51,4510.79,4449.23,4491.08,330750000,4491.08
-1995-06-13,4446.46,4504.91,4440.24,4484.51,339620000,4484.51
-1995-06-12,4423.99,4482.09,4415.69,4446.46,287830000,4446.46
-1995-06-09,4458.57,4466.87,4394.59,4423.99,328960000,4423.99
-1995-06-08,4462.03,4492.12,4431.59,4458.57,289880000,4458.57
-1995-06-07,4485.20,4497.65,4432.29,4462.03,327790000,4462.03
-1995-06-06,4476.55,4520.47,4446.46,4485.20,340470000,4485.20
-1995-06-05,4444.39,4510.45,4417.76,4476.55,337520000,4476.55
-1995-06-02,4472.75,4496.27,4406.35,4444.39,366000000,4444.39
-1995-06-01,4465.14,4499.72,4421.56,4472.75,345890000,4472.75
-1995-05-31,4378.68,4467.91,4360.70,4465.14,358160000,4465.14
-1995-05-30,4369.00,4412.92,4334.41,4378.68,283020000,4378.68
-1995-05-26,4412.23,4423.64,4338.91,4369.00,290730000,4369.00
-1995-05-25,4427.44,4451.31,4375.91,4412.23,341820000,4412.23
-1995-05-24,4436.44,4480.70,4390.78,4438.16,391750000,4438.16
-1995-05-23,4395.63,4451.65,4372.46,4436.44,362690000,4436.44
-1995-05-22,4341.33,4416.03,4337.87,4395.63,285600000,4395.63
-1995-05-19,4340.64,4368.65,4287.38,4341.33,354010000,4341.33
-1995-05-18,4422.60,4426.41,4330.95,4340.64,351850000,4340.64
-1995-05-17,4435.05,4452.69,4386.63,4422.60,347930000,4422.60
-1995-05-16,4437.47,4464.10,4408.08,4435.05,366180000,4435.05
-1995-05-15,4430.56,4468.94,4398.74,4437.47,316240000,4437.47
-1995-05-12,4411.19,4463.07,4371.07,4430.56,361000000,4430.56
-1995-05-11,4404.62,4446.12,4365.19,4411.19,339900000,4411.19
-1995-05-10,4390.78,4440.24,4347.55,4404.62,381990000,4404.62
-1995-05-09,4383.87,4421.22,4360.00,4390.78,361430000,4390.78
-1995-05-08,4343.40,4407.04,4316.43,4383.87,291810000,4383.87
-1995-05-05,4359.66,4389.75,4310.55,4343.40,342380000,4343.40
-1995-05-04,4373.15,4426.41,4329.92,4359.66,434920000,4359.66
-1995-05-03,4328.88,4392.51,4312.28,4373.15,392290000,4373.15
-1995-05-02,4316.08,4348.25,4288.42,4328.88,300660000,4328.88
-1995-05-01,4321.27,4352.74,4278.73,4316.08,296830000,4316.08
-1995-04-28,4314.70,4348.94,4270.78,4321.27,320270000,4321.27
-1995-04-27,4299.83,4335.10,4269.05,4314.70,350850000,4314.70
-1995-04-26,4300.17,4324.73,4267.32,4299.83,350790000,4299.83
-1995-04-25,4303.98,4337.18,4267.32,4300.17,351790000,4300.17
-1995-04-24,4270.09,4328.88,4239.65,4303.98,325760000,4303.98
-1995-04-21,4230.66,4296.37,4214.41,4270.09,403210000,4270.09
-1995-04-20,4207.49,4263.86,4186.39,4230.66,368440000,4230.66
-1995-04-19,4179.13,4232.39,4143.51,4207.49,377520000,4207.49
-1995-04-18,4195.38,4221.67,4152.15,4179.13,344680000,4179.13
-1995-04-17,4208.18,4260.06,4174.63,4195.38,333930000,4195.38
-1995-04-13,4197.81,4243.46,4173.94,4208.18,301510000,4208.18
-1995-04-12,4187.08,4221.67,4163.57,4197.81,327880000,4197.81
-1995-04-11,4198.15,4229.97,4168.06,4187.08,309710000,4187.08
-1995-04-10,4192.62,4219.94,4163.91,4198.15,260980000,4198.15
-1995-04-07,4205.41,4226.86,4154.23,4192.62,314750000,4192.62
-1995-04-06,4200.57,4239.31,4179.13,4205.41,320460000,4205.41
-1995-04-05,4201.61,4229.62,4166.33,4200.57,315170000,4200.57
-1995-04-04,4168.41,4220.98,4154.23,4201.61,330550000,4201.61
-1995-04-03,4157.69,4202.30,4129.68,4168.41,287380000,4168.41
-1995-03-31,4172.56,4194.00,4100.28,4157.69,352940000,4157.69
-1995-03-30,4160.80,4213.37,4128.29,4172.56,362020000,4172.56
-1995-03-29,4151.81,4213.71,4121.72,4160.80,385910000,4160.80
-1995-03-28,4157.34,4176.02,4120.68,4151.81,320360000,4151.81
-1995-03-27,4138.67,4177.40,4113.08,4157.34,296160000,4157.34
-1995-03-24,4087.83,4155.27,4087.14,4138.67,358370000,4138.67
-1995-03-23,4082.99,4107.89,4046.33,4087.83,318490000,4087.83
-1995-03-22,4072.61,4107.54,4039.07,4082.99,313120000,4082.99
-1995-03-21,4083.68,4122.41,4046.67,4072.61,367110000,4072.61
-1995-03-20,4073.65,4115.15,4051.17,4083.68,301720000,4083.68
-1995-03-17,4069.15,4101.66,4044.94,4073.65,415810000,4073.65
-1995-03-16,4038.37,4095.78,4021.77,4069.15,336330000,4069.15
-1995-03-15,4048.75,4070.19,4008.63,4038.37,309540000,4038.37
-1995-03-14,4025.23,4087.14,4014.86,4048.75,346140000,4048.75
-1995-03-13,4035.61,4060.85,3999.29,4025.23,275280000,4025.23
-1995-03-10,3983.39,4054.97,3978.20,4035.61,383000000,4035.61
-1995-03-09,3979.23,4011.40,3953.99,3983.39,319100000,3983.39
-1995-03-08,3962.63,4002.41,3944.65,3979.23,349700000,3979.23
-1995-03-07,3997.56,4009.67,3935.31,3962.63,355550000,3962.63
-1995-03-06,3989.61,4015.89,3944.31,3997.56,298850000,3997.56
-1995-03-03,3979.93,4004.83,3946.03,3989.61,330840000,3989.61
-1995-03-02,3994.80,4009.67,3947.07,3979.93,329430000,3979.93
-1995-03-01,4011.05,4033.19,3960.56,3994.80,362590000,3994.80
-1995-02-28,3988.57,4021.43,3967.48,4011.05,317120000,4011.05
-1995-02-27,4011.74,4033.19,3966.78,3988.57,285790000,3988.57
-1995-02-24,4003.33,4033.61,3974.06,4011.74,302850000,4011.74
-1995-02-23,3979.45,4034.62,3979.45,4003.33,394100000,4003.33
-1995-02-22,3963.97,4002.32,3944.46,3973.05,339140000,3973.05
-1995-02-21,3953.54,3989.88,3930.66,3963.97,308060000,3963.97
-1995-02-17,3987.52,4001.99,3937.05,3953.54,350560000,3953.54
-1995-02-16,3986.17,4011.07,3948.16,3987.52,360990000,3987.52
-1995-02-15,3958.25,4019.15,3937.73,3986.17,377940000,3986.17
-1995-02-14,3954.21,3984.83,3930.66,3958.25,300720000,3958.25
-1995-02-13,3939.07,3974.74,3920.57,3954.21,256210000,3954.21
-1995-02-10,3932.68,3962.96,3908.46,3939.07,295550000,3939.07
-1995-02-09,3935.37,3967.33,3904.76,3932.68,325570000,3932.68
-1995-02-08,3937.39,3967.67,3909.13,3935.37,317910000,3935.37
-1995-02-07,3937.73,3960.27,3907.45,3937.39,317110000,3937.39
-1995-02-06,3928.64,3964.31,3900.04,3937.73,325660000,3937.73
-1995-02-03,3876.16,3959.60,3876.16,3928.64,440950000,3928.64
-1995-02-02,3847.56,3884.23,3828.38,3870.77,322030000,3870.77
-1995-02-01,3843.86,3886.25,3809.21,3847.56,395300000,3847.56
-1995-01-31,3832.08,3872.12,3809.54,3843.86,411570000,3843.86
-1995-01-30,3857.99,3881.20,3794.40,3832.08,318530000,3832.08
-1995-01-27,3870.44,3914.18,3827.37,3857.99,339490000,3857.99
-1995-01-26,3871.45,3903.41,3839.15,3870.44,304650000,3870.44
-1995-01-25,3862.70,3908.79,3832.08,3871.45,342240000,3871.45
-1995-01-24,3867.41,3898.36,3840.16,3862.70,315410000,3862.70
-1995-01-23,3869.43,3885.58,3815.26,3867.41,325810000,3867.41
-1995-01-20,3882.21,3898.70,3826.70,3869.43,376870000,3869.43
-1995-01-19,3928.98,3929.99,3866.74,3882.21,297220000,3882.21
-1995-01-18,3930.66,3950.85,3889.95,3928.98,343100000,3928.98
-1995-01-17,3932.34,3953.88,3895.33,3930.66,330890000,3930.66
-1995-01-16,3908.46,3955.56,3889.95,3932.34,315800000,3932.34
-1995-01-13,3859.00,3924.27,3852.61,3908.46,336740000,3908.46
-1995-01-12,3862.03,3886.59,3831.41,3859.00,313040000,3859.00
-1995-01-11,3866.74,3899.71,3824.68,3862.03,346310000,3862.03
-1995-01-10,3861.35,3912.49,3844.87,3866.74,352440000,3866.74
-1995-01-09,3867.41,3889.28,3834.44,3861.35,278710000,3861.35
-1995-01-06,3850.92,3902.40,3823.67,3867.41,308070000,3867.41
-1995-01-05,3857.65,3876.83,3825.35,3850.92,309140000,3850.92
-1995-01-04,3838.48,3876.83,3815.26,3857.65,319510000,3857.65
-1995-01-03,3834.44,3864.72,3805.50,3838.48,262450000,3838.48
-1994-12-30,3833.43,3874.48,3812.91,3834.44,256260000,3834.44
-1994-12-29,3839.49,3867.41,3812.91,3833.43,250650000,3833.43
-1994-12-28,3861.69,3871.45,3816.94,3839.49,246260000,3839.49
-1994-12-27,3833.43,3882.21,3832.08,3861.69,211180000,3861.69
-1994-12-23,3814.92,3860.01,3808.53,3833.43,196540000,3833.43
-1994-12-22,3801.80,3850.59,3780.61,3814.92,339670000,3814.92
-1994-12-21,3767.15,3836.46,3761.77,3801.80,378790000,3801.80
-1994-12-20,3790.70,3807.19,3752.35,3767.15,325510000,3767.15
-1994-12-19,3807.19,3815.26,3764.46,3790.70,271850000,3790.70
-1994-12-16,3765.47,3817.95,3758.07,3807.19,481860000,3807.19
-1994-12-15,3746.29,3794.07,3729.13,3765.47,332790000,3765.47
-1994-12-14,3715.34,3772.20,3700.53,3746.29,355000000,3746.29
-1994-12-13,3718.37,3749.32,3690.78,3715.34,307110000,3715.34
-1994-12-12,3691.11,3734.52,3667.90,3718.37,285730000,3718.37
-1994-12-09,3685.73,3713.32,3638.97,3691.11,336440000,3691.11
-1994-12-08,3735.52,3757.39,3670.25,3685.73,362280000,3685.73
-1994-12-07,3745.95,3758.07,3700.87,3735.52,283490000,3735.52
-1994-12-06,3741.92,3762.10,3703.56,3745.95,298890000,3745.95
-1994-12-05,3745.62,3779.93,3715.67,3741.92,258480000,3741.92
-1994-12-02,3700.87,3755.04,3680.68,3745.62,284740000,3745.62
-1994-12-01,3739.23,3755.37,3680.68,3700.87,285920000,3700.87
-1994-11-30,3738.55,3783.30,3718.37,3739.23,300800000,3739.23
-1994-11-29,3739.56,3755.04,3703.90,3738.55,286580000,3738.55
-1994-11-28,3708.27,3759.41,3693.13,3739.56,265020000,3739.56
-1994-11-25,3675.97,3722.40,3675.97,3708.27,118290000,3708.27
-1994-11-23,3677.99,3704.91,3612.05,3674.63,430730000,3674.63
-1994-11-22,3769.51,3787.34,3669.58,3677.99,387270000,3677.99
-1994-11-21,3815.26,3845.20,3758.74,3769.51,293030000,3769.51
-1994-11-18,3828.05,3844.87,3773.21,3815.26,356730000,3815.26
-1994-11-17,3845.20,3868.08,3797.77,3828.05,323190000,3828.05
-1994-11-16,3826.36,3864.38,3803.82,3845.20,296980000,3845.20
-1994-11-15,3829.73,3871.45,3794.40,3826.36,336330000,3826.36
-1994-11-14,3801.47,3849.91,3795.07,3829.73,260380000,3829.73
-1994-11-11,3821.99,3830.06,3779.93,3801.47,220800000,3801.47
-1994-11-10,3831.75,3873.47,3821.99,3821.99,280910000,3821.99
-1994-11-09,3830.74,3882.89,3798.44,3831.75,341500000,3831.75
-1994-11-08,3808.87,3857.65,3798.75,3830.74,290860000,3830.74
-1994-11-07,3807.52,3830.40,3781.62,3808.87,255030000,3808.87
-1994-11-04,3845.88,3879.52,3802.81,3807.52,280560000,3807.52
-1994-11-03,3837.13,3872.46,3814.25,3845.88,284480000,3845.88
-1994-11-02,3863.37,3888.94,3820.31,3837.13,331360000,3837.13
-1994-11-01,3908.12,3919.90,3836.79,3863.37,314940000,3863.37
-1994-10-31,3930.66,3956.90,3889.28,3908.12,302810000,3908.12
-1994-10-28,3875.15,3953.54,3863.37,3930.66,381450000,3930.66
-1994-10-27,3848.23,3893.99,3834.44,3875.15,327790000,3875.15
-1994-10-26,3850.59,3891.97,3816.61,3848.23,322560000,3848.23
-1994-10-25,3855.30,3883.56,3803.49,3850.59,326100000,3850.59
-1994-10-24,3891.30,3925.61,3840.16,3855.30,282800000,3855.30
-1994-10-21,3911.15,3921.58,3861.35,3891.30,309410000,3891.30
-1994-10-20,3936.04,3954.89,3873.13,3911.15,326100000,3911.15
-1994-10-19,3917.54,3958.25,3887.93,3936.04,317030000,3936.04
-1994-10-18,3923.93,3945.46,3892.64,3917.54,259730000,3917.54
-1994-10-17,3910.47,3949.84,3883.22,3923.93,238490000,3923.93
-1994-10-14,3889.95,3927.97,3862.03,3910.47,251770000,3910.47
-1994-10-13,3878.18,3944.12,3878.18,3889.95,337900000,3889.95
-1994-10-12,3876.83,3903.07,3844.87,3875.15,269550000,3875.15
-1994-10-11,3828.96,3898.36,3828.96,3876.83,355540000,3876.83
-1994-10-10,3797.43,3843.19,3789.36,3821.32,213110000,3821.32
-1994-10-07,3775.56,3826.03,3754.37,3797.43,284230000,3797.43
-1994-10-06,3787.34,3810.89,3752.01,3775.56,272620000,3775.56
-1994-10-05,3801.13,3811.56,3736.20,3787.34,359670000,3787.34
-1994-10-04,3846.89,3873.47,3788.35,3801.13,325620000,3801.13
-1994-10-03,3843.19,3872.79,3809.21,3846.89,269130000,3846.89
-1994-09-30,3854.63,3891.30,3825.69,3843.19,292060000,3843.19
-1994-09-29,3878.18,3892.64,3834.78,3854.63,302280000,3854.63
-1994-09-28,3863.04,3904.76,3854.29,3878.18,330020000,3878.18
-1994-09-27,3849.24,3891.63,3828.72,3863.04,290330000,3863.04
-1994-09-26,3831.75,3869.43,3804.50,3849.24,272530000,3849.24
-1994-09-23,3837.13,3872.46,3806.51,3831.75,300060000,3831.75
-1994-09-22,3851.60,3882.55,3818.29,3837.13,305210000,3837.13
-1994-09-21,3869.09,3886.92,3806.85,3851.60,355330000,3851.60
-1994-09-20,3932.01,3932.01,3859.67,3869.09,326050000,3869.09
-1994-09-19,3933.35,3972.72,3909.80,3936.72,272920000,3936.72
-1994-09-16,3953.88,3955.22,3894.66,3933.35,410750000,3933.35
-1994-09-15,3895.33,3959.93,3883.90,3953.88,281890000,3953.88
-1994-09-14,3879.86,3918.55,3856.64,3895.33,297480000,3895.33
-1994-09-13,3860.34,3905.76,3854.29,3879.86,293370000,3879.86
-1994-09-12,3874.81,3897.02,3843.86,3860.34,244680000,3860.34
-1994-09-09,3902.06,3902.06,3844.20,3874.81,293330000,3874.81
-1994-09-08,3886.25,3926.96,3872.46,3908.46,295010000,3908.46
-1994-09-07,3898.70,3920.90,3860.68,3886.25,292110000,3886.25
-1994-09-06,3885.58,3918.55,3860.01,3898.70,199670000,3898.70
-1994-09-02,3901.44,3928.64,3871.98,3885.58,216150000,3885.58
-1994-09-01,3913.42,3927.99,3871.66,3901.44,285670000,3901.44
-1994-08-31,3917.30,3954.54,3878.78,3913.42,354650000,3913.42
-1994-08-30,3898.85,3934.14,3875.87,3917.30,294520000,3917.30
-1994-08-29,3881.05,3927.34,3869.39,3898.85,266080000,3898.85
-1994-08-26,3836.69,3903.38,3836.69,3881.05,305120000,3881.05
-1994-08-25,3846.73,3872.63,3810.47,3829.89,284200000,3829.89
-1994-08-24,3775.83,3852.56,3767.41,3846.73,309780000,3846.73
-1994-08-23,3751.22,3804.64,3745.07,3775.83,307240000,3775.83
-1994-08-22,3755.11,3771.94,3722.41,3751.22,235870000,3751.22
-1994-08-19,3755.43,3785.22,3727.59,3755.11,276630000,3755.11
-1994-08-18,3776.48,3793.63,3736.98,3755.43,287330000,3755.43
-1994-08-17,3784.57,3812.09,3754.46,3776.48,309250000,3776.48
-1994-08-16,3760.29,3804.64,3732.45,3784.57,306640000,3784.57
-1994-08-15,3768.71,3798.17,3742.16,3760.29,223210000,3760.29
-1994-08-12,3750.90,3792.66,3738.27,3768.71,249270000,3768.71
-1994-08-11,3766.76,3785.86,3728.56,3750.90,275690000,3750.90
-1994-08-10,3755.76,3793.97,3738.27,3766.76,279470000,3766.76
-1994-08-09,3753.81,3773.89,3728.56,3755.76,259130000,3755.76
-1994-08-08,3747.02,3780.68,3732.77,3753.81,217670000,3753.81
-1994-08-05,3765.79,3769.68,3725.00,3747.02,230270000,3747.02
-1994-08-04,3792.66,3807.23,3752.52,3765.79,289150000,3765.79
-1994-08-03,3796.22,3815.00,3762.88,3792.66,283840000,3792.66
-1994-08-02,3798.17,3829.25,3776.48,3796.22,294740000,3796.22
-1994-08-01,3764.50,3809.50,3749.28,3798.17,258180000,3798.17
-1994-07-29,3730.83,3782.63,3726.30,3764.50,269560000,3764.50
-1994-07-28,3720.47,3757.05,3701.69,3730.83,247560000,3730.83
-1994-07-27,3735.68,3753.17,3693.27,3720.47,251680000,3720.47
-1994-07-26,3741.84,3764.50,3706.22,3735.68,232670000,3735.68
-1994-07-25,3735.04,3762.56,3713.67,3741.84,213470000,3741.84
-1994-07-22,3732.45,3765.15,3707.19,3735.04,261090000,3735.04
-1994-07-21,3727.27,3763.20,3684.86,3732.45,292080000,3732.45
-1994-07-20,3748.31,3763.85,3706.22,3727.27,267740000,3727.27
-1994-07-19,3755.43,3777.45,3726.30,3748.31,251530000,3748.31
-1994-07-18,3753.81,3779.39,3725.00,3755.43,227480000,3755.43
-1994-07-15,3739.25,3769.35,3712.37,3753.81,275860000,3753.81
-1994-07-14,3704.28,3763.53,3697.48,3739.25,319950000,3739.25
-1994-07-13,3702.66,3738.27,3683.89,3704.28,265840000,3704.28
-1994-07-12,3702.99,3725.32,3660.90,3702.66,252250000,3702.66
-1994-07-11,3709.14,3735.36,3671.26,3702.99,222580000,3702.99
-1994-07-08,3688.42,3728.56,3660.90,3709.14,236520000,3709.14
-1994-07-07,3674.50,3714.32,3656.04,3688.42,258500000,3688.42
-1994-07-06,3652.48,3698.13,3631.11,3674.50,233640000,3674.50
-1994-07-05,3646.65,3680.65,3621.73,3652.48,193030000,3652.48
-1994-07-01,3624.96,3675.79,3611.04,3646.65,199030000,3646.65
-1994-06-30,3667.05,3683.56,3610.72,3624.96,294110000,3624.96
-1994-06-29,3669.64,3711.73,3645.68,3667.05,263890000,3667.05
-1994-06-28,3685.50,3705.58,3630.47,3669.64,265880000,3669.64
-1994-06-27,3636.94,3694.89,3603.92,3685.50,250110000,3685.50
-1994-06-24,3699.09,3704.80,3616.65,3636.94,261260000,3636.94
-1994-06-23,3724.77,3752.04,3685.14,3699.09,256480000,3699.09
-1994-06-22,3707.97,3748.87,3694.65,3724.77,251110000,3724.77
-1994-06-21,3741.90,3756.80,3674.68,3707.97,298730000,3707.97
-1994-06-20,3771.07,3771.07,3716.21,3741.90,229520000,3741.90
-1994-06-17,3811.34,3821.48,3764.09,3776.78,373400000,3776.78
-1994-06-16,3790.41,3830.68,3771.39,3811.34,254880000,3811.34
-1994-06-15,3814.83,3838.29,3772.02,3790.41,269740000,3790.41
-1994-06-14,3783.12,3839.88,3769.17,3814.83,288550000,3814.83
-1994-06-13,3773.45,3808.17,3741.26,3783.12,242810000,3783.12
-1994-06-10,3753.14,3798.68,3739.60,3773.45,222480000,3773.45
-1994-06-09,3749.45,3776.83,3721.45,3753.14,252870000,3753.14
-1994-06-08,3755.91,3780.83,3721.45,3749.45,256000000,3749.45
-1994-06-07,3768.52,3788.52,3733.14,3755.91,234680000,3755.91
-1994-06-06,3772.22,3812.83,3749.75,3768.52,259080000,3768.52
-1994-06-03,3758.99,3792.22,3732.52,3772.22,271490000,3772.22
-1994-06-02,3760.83,3791.60,3732.83,3758.99,271150000,3758.99
-1994-06-01,3758.37,3785.14,3717.76,3760.83,279910000,3760.83
-1994-05-31,3757.14,3783.29,3725.45,3758.37,216700000,3758.37
-1994-05-27,3753.46,3772.18,3723.68,3757.14,186430000,3757.14
-1994-05-26,3755.30,3785.07,3722.76,3753.46,255740000,3753.46
-1994-05-25,3745.17,3768.19,3710.79,3755.30,254410000,3755.30
-1994-05-24,3742.41,3786.30,3707.11,3745.17,280040000,3745.17
-1994-05-23,3766.35,3770.65,3711.40,3742.41,249390000,3742.41
-1994-05-20,3758.98,3788.76,3721.84,3766.35,295180000,3766.35
-1994-05-19,3732.89,3782.92,3707.72,3758.98,303680000,3758.98
-1994-05-18,3720.61,3761.74,3683.16,3732.89,339280000,3732.89
-1994-05-17,3671.50,3735.04,3653.70,3720.61,311280000,3720.61
-1994-05-16,3659.68,3694.21,3628.52,3671.50,234680000,3671.50
-1994-05-13,3652.84,3690.32,3626.37,3659.68,252070000,3659.68
-1994-05-12,3629.04,3682.58,3624.58,3652.84,272770000,3652.84
-1994-05-11,3656.41,3678.42,3609.71,3629.04,277400000,3629.04
-1994-05-10,3629.04,3684.67,3627.56,3656.41,297660000,3656.41
-1994-05-09,3669.50,3676.93,3612.39,3629.04,250870000,3629.04
-1994-05-06,3695.97,3702.51,3625.77,3669.50,291910000,3669.50
-1994-05-05,3697.75,3731.07,3675.45,3695.97,255690000,3695.97
-1994-05-04,3714.41,3730.17,3670.09,3697.75,267940000,3697.75
-1994-05-03,3701.02,3736.12,3669.79,3714.41,288270000,3714.41
-1994-05-02,3681.69,3734.04,3648.97,3701.02,296130000,3701.02
-1994-04-29,3668.31,3707.87,3642.13,3681.69,293970000,3681.69
-1994-04-28,3699.54,3723.93,3640.35,3668.31,325200000,3668.31
-1994-04-26,3705.78,3733.15,3669.79,3699.54,288110000,3699.54
-1994-04-25,3648.68,3721.25,3635.29,3705.78,262220000,3705.78
-1994-04-22,3652.54,3690.32,3621.01,3648.68,295710000,3648.68
-1994-04-21,3598.71,3673.96,3582.94,3652.54,378760000,3652.54
-1994-04-20,3619.82,3662.66,3546.65,3598.71,366540000,3598.71
-1994-04-19,3620.42,3670.39,3567.18,3619.82,323280000,3619.82
-1994-04-18,3661.47,3679.61,3593.35,3620.42,271450000,3620.42
-1994-04-15,3663.25,3699.24,3631.13,3661.47,309550000,3661.47
-1994-04-14,3661.47,3693.59,3625.77,3663.25,275130000,3663.25
-1994-04-13,3681.69,3704.30,3616.85,3661.47,278030000,3661.47
-1994-04-12,3688.83,3722.14,3661.17,3681.69,256250000,3681.69
-1994-04-11,3674.26,3720.66,3651.35,3688.83,243180000,3688.83
-1994-04-08,3693.26,3717.15,3644.03,3674.26,264090000,3674.26
-1994-04-07,3679.73,3712.83,3642.59,3693.26,289280000,3693.26
-1994-04-06,3675.41,3722.34,3643.16,3679.73,302000000,3679.73
-1994-04-05,3625.02,3698.15,3625.02,3675.41,366890000,3675.41
-1994-04-04,3633.08,3633.08,3520.80,3593.35,344390000,3593.35
-1994-03-31,3626.75,3673.10,3544.12,3635.96,403580000,3635.96
-1994-03-30,3699.02,3718.88,3612.36,3626.75,390520000,3626.75
-1994-03-29,3762.35,3771.86,3689.23,3699.02,301630000,3699.02
-1994-03-28,3774.73,3793.45,3719.74,3762.35,287360000,3762.35
-1994-03-25,3821.09,3845.85,3764.66,3774.73,249670000,3774.73
-1994-03-24,3865.42,3865.42,3792.58,3821.09,303800000,3821.09
-1994-03-23,3862.55,3901.41,3839.80,3869.46,284600000,3869.46
-1994-03-22,3864.85,3896.23,3840.66,3862.55,283090000,3862.55
-1994-03-21,3895.65,3898.25,3838.65,3864.85,247390000,3864.85
-1994-03-18,3865.14,3911.78,3838.65,3895.65,462240000,3895.65
-1994-03-17,3848.15,3891.34,3821.66,3865.14,303950000,3865.14
-1994-03-16,3849.59,3879.53,3819.94,3848.15,306820000,3848.15
-1994-03-15,3862.98,3888.46,3826.85,3849.59,329260000,3849.59
-1994-03-14,3862.70,3894.21,3835.96,3862.98,260160000,3862.98
-1994-03-11,3830.62,3872.83,3806.69,3862.70,303250000,3862.70
-1994-03-10,3853.41,3865.51,3801.63,3830.62,369370000,3830.62
-1994-03-09,3851.72,3874.52,3817.95,3853.41,309810000,3853.41
-1994-03-08,3856.22,3881.55,3822.45,3851.72,298110000,3851.72
-1994-03-07,3832.30,3882.40,3824.71,3856.22,285580000,3856.22
-1994-03-04,3824.42,3868.04,3800.50,3832.30,311850000,3832.30
-1994-03-03,3831.74,3862.13,3784.74,3824.42,291960000,3824.42
-1994-03-02,3809.23,3845.25,3741.69,3831.74,361130000,3831.74
-1994-03-01,3832.02,3848.34,3772.93,3809.23,304450000,3809.23
-1994-02-28,3838.78,3874.52,3817.95,3832.02,267610000,3832.02
-1994-02-25,3839.90,3868.89,3811.76,3838.78,273680000,3838.78
-1994-02-24,3891.68,3895.62,3823.86,3839.90,342940000,3839.90
-1994-02-23,3911.66,3931.36,3872.83,3891.68,309910000,3891.68
-1994-02-22,3887.46,3928.83,3873.39,3911.66,270900000,3911.66
-1994-02-18,3922.64,3931.92,3869.73,3887.46,293210000,3887.46
-1994-02-17,3937.27,3975.82,3894.21,3922.64,340030000,3922.64
-1994-02-16,3928.27,3964.85,3906.32,3937.27,295450000,3937.27
-1994-02-15,3904.06,3950.50,3891.40,3928.27,306790000,3928.27
-1994-02-14,3894.78,3935.86,3873.67,3904.06,263190000,3904.06
-1994-02-11,3895.34,3920.95,3855.94,3894.78,213740000,3894.78
-1994-02-10,3931.92,3953.59,3882.96,3895.34,327250000,3895.34
-1994-02-09,3906.03,3956.97,3887.74,3931.92,332670000,3931.92
-1994-02-08,3906.32,3951.34,3873.67,3906.03,318180000,3906.03
-1994-02-07,3871.42,3923.48,3840.75,3906.32,348270000,3906.32
-1994-02-04,3967.66,3979.76,3857.63,3871.42,378380000,3871.42
-1994-02-03,3975.54,3995.52,3932.77,3967.66,318350000,3967.66
-1994-02-02,3964.01,3997.78,3937.27,3975.54,328960000,3975.54
-1994-02-01,3978.36,3998.06,3938.12,3964.01,322510000,3964.01
-1994-01-31,3945.43,4002.84,3937.27,3978.36,322870000,3978.36
-1994-01-28,3926.30,3971.89,3919.54,3945.43,313140000,3945.43
-1994-01-27,3908.00,3951.34,3876.77,3926.30,346500000,3926.30
-1994-01-26,3895.34,3934.74,3863.82,3908.00,304660000,3908.00
-1994-01-25,3912.79,3937.55,3863.82,3895.34,326120000,3895.34
-1994-01-24,3914.48,3947.68,3882.11,3912.79,296900000,3912.79
-1994-01-21,3891.96,3933.33,3875.36,3914.48,346220000,3914.48
-1994-01-20,3884.37,3915.60,3857.91,3891.96,310450000,3891.96
-1994-01-19,3870.29,3909.97,3839.34,3884.37,311370000,3884.37
-1994-01-18,3870.29,3905.19,3840.75,3870.29,309730000,3870.29
-1994-01-17,3867.20,3896.75,3833.71,3870.29,233980000,3870.29
-1994-01-14,3842.43,3891.96,3830.62,3867.20,304910000,3867.20
-1994-01-13,3848.63,3864.67,3808.38,3842.43,277970000,3842.43
-1994-01-12,3850.31,3876.49,3809.79,3848.63,310690000,3848.63
-1994-01-11,3865.51,3885.21,3823.02,3850.31,305490000,3850.31
-1994-01-10,3820.77,3874.52,3804.72,3865.51,319490000,3865.51
-1994-01-07,3803.88,3842.15,3778.83,3820.77,324920000,3820.77
-1994-01-06,3798.82,3843.84,3771.52,3803.88,367880000,3803.88
-1994-01-05,3783.90,3821.33,3750.41,3798.82,400030000,3798.82
-1994-01-04,3756.60,3798.25,3718.89,3783.90,326600000,3783.90
-1994-01-03,3754.09,3790.70,3715.24,3756.60,270140000,3756.60
-1993-12-31,3775.88,3804.11,3745.15,3754.09,168590000,3754.09
-1993-12-30,3794.33,3806.34,3759.96,3775.88,195860000,3775.88
-1993-12-29,3793.77,3818.92,3764.43,3794.33,269570000,3794.33
-1993-12-28,3792.93,3813.33,3766.10,3793.77,200960000,3793.77
-1993-12-27,3757.72,3804.95,3750.46,3792.93,171200000,3792.93
-1993-12-23,3762.19,3791.81,3739.56,3757.72,227240000,3757.72
-1993-12-22,3745.15,3780.64,3725.86,3762.19,272440000,3762.19
-1993-12-21,3755.21,3774.77,3719.72,3745.15,273370000,3745.15
-1993-12-20,3751.57,3777.84,3728.66,3755.21,255900000,3755.21
-1993-12-17,3726.14,3768.90,3706.30,3751.57,363750000,3751.57
-1993-12-16,3716.92,3756.60,3694.29,3726.14,284620000,3726.14
-1993-12-15,3742.63,3776.44,3689.82,3716.92,331770000,3716.92
-1993-12-14,3764.43,3785.94,3726.70,3742.63,275050000,3742.63
-1993-12-13,3740.67,3780.64,3711.33,3764.43,256580000,3764.43
-1993-12-10,3729.78,3758.84,3704.91,3740.67,245620000,3740.67
-1993-12-09,3734.53,3764.43,3709.94,3729.78,287570000,3729.78
-1993-12-08,3718.88,3756.60,3693.73,3734.53,314460000,3734.53
-1993-12-07,3710.21,3746.82,3689.26,3718.88,285690000,3718.88
-1993-12-06,3704.07,3738.44,3687.30,3710.21,292370000,3710.21
-1993-12-03,3702.11,3726.98,3677.80,3704.07,268780000,3704.07
-1993-12-02,3697.08,3725.30,3674.17,3702.11,256370000,3702.11
-1993-12-01,3683.95,3731.73,3673.33,3697.08,293870000,3697.08
-1993-11-30,3677.80,3713.57,3654.88,3683.95,290250000,3683.95
-1993-11-29,3683.95,3721.67,3654.33,3677.80,272710000,3677.80
-1993-11-26,3687.58,3703.23,3660.75,3683.95,90220000,3683.95
-1993-11-24,3674.17,3709.94,3654.33,3687.58,230630000,3687.58
-1993-11-23,3670.25,3702.67,3649.57,3674.17,261590000,3674.17
-1993-11-22,3694.01,3697.92,3627.78,3670.25,280130000,3670.25
-1993-11-19,3685.34,3711.05,3640.07,3694.01,302970000,3694.01
-1993-11-18,3704.35,3721.95,3649.57,3685.34,313480000,3685.34
-1993-11-17,3710.77,3749.90,3660.19,3704.35,319560000,3704.35
-1993-11-16,3677.52,3723.91,3653.77,3710.77,303980000,3710.77
-1993-11-15,3684.51,3705.74,3653.49,3677.52,251030000,3677.52
-1993-11-12,3662.43,3707.42,3648.74,3684.51,326240000,3684.51
-1993-11-11,3663.55,3700.43,3638.40,3662.43,287110000,3662.43
-1993-11-10,3640.07,3683.39,3616.60,3663.55,283450000,3663.55
-1993-11-09,3647.90,3689.82,3623.03,3640.07,278290000,3640.07
-1993-11-08,3643.43,3674.17,3621.91,3647.90,232340000,3647.90
-1993-11-05,3624.98,3663.83,3585.86,3643.43,336900000,3643.43
-1993-11-04,3661.87,3681.99,3609.61,3624.98,323430000,3624.98
-1993-11-03,3697.64,3714.69,3638.40,3661.87,342110000,3661.87
-1993-11-02,3692.61,3724.75,3656.00,3697.64,304780000,3697.64
-1993-11-01,3680.59,3708.26,3656.84,3692.61,256030000,3692.61
-1993-10-29,3687.86,3712.45,3656.84,3680.59,270570000,3680.59
-1993-10-28,3664.66,3713.57,3657.96,3687.86,301220000,3687.86
-1993-10-27,3672.49,3692.33,3634.76,3664.66,279830000,3664.66
-1993-10-26,3673.61,3701.55,3636.16,3672.49,284530000,3672.49
-1993-10-25,3649.30,3694.01,3618.28,3673.61,260310000,3673.61
-1993-10-22,3636.16,3697.92,3612.13,3649.30,301440000,3649.30
-1993-10-21,3645.10,3678.36,3610.45,3636.16,288820000,3636.16
-1993-10-20,3635.32,3667.74,3611.85,3645.10,305670000,3645.10
-1993-10-19,3642.31,3669.97,3601.79,3635.32,304400000,3635.32
-1993-10-18,3629.73,3675.84,3595.92,3642.31,329570000,3642.31
-1993-10-15,3621.63,3664.66,3596.20,3629.73,366110000,3629.73
-1993-10-14,3603.19,3652.09,3574.40,3621.63,353820000,3621.63
-1993-10-13,3593.13,3628.34,3574.12,3603.19,290930000,3603.19
-1993-10-12,3593.41,3619.39,3575.24,3593.13,263970000,3593.13
-1993-10-11,3584.74,3611.01,3565.46,3593.41,183190000,3593.41
-1993-10-08,3583.63,3610.45,3550.37,3584.74,243590000,3584.74
-1993-10-07,3598.99,3616.32,3564.90,3583.63,255210000,3583.63
-1993-10-06,3587.26,3620.79,3570.21,3598.99,277070000,3598.99
-1993-10-05,3577.76,3616.88,3553.72,3587.26,294570000,3587.26
-1993-10-04,3581.11,3603.19,3550.65,3577.76,229380000,3577.76
-1993-10-01,3555.12,3605.14,3541.71,3581.11,256870000,3581.11
-1993-09-30,3566.30,3583.63,3528.57,3555.12,282740000,3555.12
-1993-09-29,3566.02,3596.48,3538.91,3566.30,277690000,3566.30
-1993-09-28,3567.70,3589.49,3542.27,3566.02,243320000,3566.02
-1993-09-27,3543.11,3589.49,3539.47,3567.70,244920000,3567.70
-1993-09-24,3539.75,3568.54,3507.90,3543.11,248270000,3543.11
-1993-09-23,3547.02,3567.70,3513.48,3539.75,276660000,3539.75
-1993-09-22,3537.24,3577.20,3516.56,3547.02,288960000,3547.02
-1993-09-21,3575.80,3592.57,3501.47,3537.24,301740000,3537.24
-1993-09-20,3613.25,3632.81,3567.98,3575.80,228040000,3575.80
-1993-09-17,3630.85,3637.28,3580.83,3613.25,369600000,3613.25
-1993-09-16,3633.65,3651.25,3601.79,3630.85,229700000,3630.85
-1993-09-15,3615.76,3644.82,3573.84,3633.65,294410000,3633.65
-1993-09-14,3634.21,3639.51,3590.61,3615.76,258620000,3615.76
-1993-09-13,3621.63,3655.16,3607.66,3634.21,244970000,3634.21
-1993-09-10,3589.49,3636.16,3576.64,3621.63,269950000,3621.63
-1993-09-09,3588.93,3616.04,3556.52,3589.49,258070000,3589.49
-1993-09-08,3607.10,3623.31,3561.27,3588.93,283100000,3588.93
-1993-09-07,3633.93,3649.02,3592.57,3607.10,229500000,3607.10
-1993-09-03,3626.10,3651.53,3603.75,3633.93,197160000,3633.93
-1993-09-02,3645.10,3660.19,3610.17,3626.10,259870000,3626.10
-1993-09-01,3651.25,3665.50,3619.67,3645.10,245040000,3645.10
-1993-08-31,3643.99,3662.99,3619.67,3651.25,252830000,3651.25
-1993-08-30,3640.63,3667.46,3621.63,3643.99,194180000,3643.99
-1993-08-27,3648.18,3656.28,3606.54,3640.63,196140000,3640.63
-1993-08-26,3652.09,3681.71,3620.23,3648.18,247800000,3648.18
-1993-08-25,3638.96,3674.17,3620.51,3652.09,301640000,3652.09
-1993-08-24,3605.98,3648.18,3590.89,3638.96,270700000,3638.96
-1993-08-23,3615.48,3630.57,3578.87,3605.98,212500000,3605.98
-1993-08-20,3612.13,3633.37,3580.55,3615.48,276800000,3615.48
-1993-08-19,3604.86,3632.25,3581.11,3612.13,293330000,3612.13
-1993-08-18,3586.98,3638.96,3577.48,3604.86,312940000,3604.86
-1993-08-17,3579.15,3611.29,3554.00,3586.98,261320000,3586.98
-1993-08-16,3569.65,3606.54,3547.86,3579.15,229190000,3579.15
-1993-08-13,3569.09,3594.52,3547.58,3569.65,214370000,3569.65
-1993-08-12,3583.35,3607.66,3537.24,3569.09,278530000,3569.09
-1993-08-11,3572.73,3607.94,3550.93,3583.35,268330000,3583.35
-1993-08-10,3576.08,3599.83,3547.02,3572.73,255520000,3572.73
-1993-08-09,3560.43,3599.83,3541.15,3576.08,232750000,3576.08
-1993-08-06,3548.97,3583.35,3536.12,3560.43,221150000,3560.43
-1993-08-05,3552.05,3574.12,3523.54,3548.97,249650000,3548.97
-1993-08-04,3561.27,3579.99,3530.25,3552.05,230040000,3552.05
-1993-08-03,3560.99,3588.10,3530.81,3561.27,254540000,3561.27
-1993-08-02,3539.47,3578.32,3524.94,3560.99,230380000,3560.99
-1993-07-30,3567.42,3581.11,3515.72,3539.47,254420000,3539.47
-1993-07-29,3553.45,3593.41,3531.37,3567.42,261240000,3567.42
-1993-07-28,3565.46,3588.38,3524.38,3553.45,270530000,3553.45
-1993-07-27,3567.70,3604.86,3533.60,3565.46,256750000,3565.46
-1993-07-26,3546.74,3584.74,3541.43,3567.70,223280000,3567.70
-1993-07-23,3525.22,3569.37,3508.17,3546.74,222170000,3546.74
-1993-07-22,3555.40,3566.86,3514.32,3525.22,249630000,3525.22
-1993-07-21,3544.78,3573.84,3516.84,3555.40,278590000,3555.40
-1993-07-20,3535.28,3567.98,3500.63,3544.78,275130000,3544.78
-1993-07-19,3528.29,3563.23,3502.87,3535.28,216370000,3535.28
-1993-07-16,3550.93,3571.61,3505.94,3528.29,263100000,3528.29
-1993-07-15,3542.55,3573.01,3509.85,3550.93,277810000,3550.93
-1993-07-14,3515.44,3562.39,3507.34,3542.55,285890000,3542.55
-1993-07-13,3524.38,3544.22,3491.13,3515.44,236720000,3515.44
-1993-07-12,3521.06,3545.97,3495.04,3524.38,202310000,3524.38
-1993-07-09,3514.42,3544.03,3490.89,3521.06,235210000,3521.06
-1993-07-08,3475.67,3532.41,3462.38,3514.42,282910000,3514.42
-1993-07-07,3449.93,3495.32,3443.28,3475.67,253170000,3475.67
-1993-07-06,3483.97,3502.52,3443.28,3449.93,233420000,3449.93
-1993-07-02,3510.54,3511.65,3468.47,3483.97,220750000,3483.97
-1993-07-01,3516.08,3542.10,3487.29,3510.54,292040000,3510.54
-1993-06-30,3518.85,3543.48,3493.11,3516.08,281120000,3516.08
-1993-06-29,3530.20,3544.87,3491.44,3518.85,276310000,3518.85
-1993-06-28,3490.89,3542.10,3486.74,3530.20,242090000,3530.20
-1993-06-25,3490.61,3512.76,3473.18,3490.89,210430000,3490.89
-1993-06-24,3466.81,3504.73,3449.10,3490.61,267450000,3490.61
-1993-06-23,3497.53,3514.14,3445.77,3466.81,278260000,3466.81
-1993-06-22,3510.82,3530.47,3474.28,3497.53,259530000,3497.53
-1993-06-21,3494.77,3531.86,3477.05,3510.82,223650000,3510.82
-1993-06-18,3521.89,3539.88,3478.44,3494.77,300500000,3494.77
-1993-06-17,3511.65,3539.61,3488.68,3521.89,239810000,3521.89
-1993-06-16,3492.00,3527.43,3460.17,3511.65,264500000,3511.65
-1993-06-15,3514.69,3531.86,3471.24,3492.00,234110000,3492.00
-1993-06-14,3505.01,3538.22,3486.74,3514.69,210440000,3514.69
-1993-06-11,3491.72,3536.01,3479.27,3505.01,255200000,3505.01
-1993-06-10,3511.93,3538.22,3461.83,3491.72,231760000,3491.72
-1993-06-09,3510.54,3541.54,3490.89,3511.93,249030000,3511.93
-1993-06-08,3532.13,3543.48,3494.21,3510.54,238170000,3510.54
-1993-06-07,3545.14,3570.33,3510.82,3532.13,236930000,3532.13
-1993-06-04,3544.87,3563.13,3516.63,3545.14,226440000,3545.14
-1993-06-03,3553.45,3569.50,3516.08,3544.87,285770000,3544.87
-1993-06-02,3552.34,3576.14,3530.47,3553.45,287120000,3553.45
-1993-06-01,3527.43,3577.25,3518.02,3552.34,229690000,3552.34
-1993-05-28,3554.83,3563.41,3503.62,3527.43,207820000,3527.43
-1993-05-27,3540.16,3582.23,3523.28,3554.83,300810000,3554.83
-1993-05-26,3516.63,3558.98,3498.64,3540.16,274230000,3540.16
-1993-05-25,3507.78,3534.35,3486.46,3516.63,222090000,3516.63
-1993-05-24,3492.83,3526.60,3472.35,3507.78,197990000,3507.78
-1993-05-21,3523.28,3532.96,3468.47,3492.83,279120000,3492.83
-1993-05-20,3500.03,3539.88,3475.39,3523.28,289160000,3523.28
-1993-05-19,3444.39,3511.10,3405.09,3500.03,342420000,3500.03
-1993-05-18,3449.93,3468.47,3409.79,3444.39,264300000,3444.39
-1993-05-17,3443.01,3465.98,3421.42,3449.93,227580000,3449.93
-1993-05-14,3447.99,3472.62,3421.14,3443.01,252910000,3443.01
-1993-05-13,3482.31,3486.74,3428.89,3447.99,289860000,3447.99
-1993-05-12,3468.75,3501.69,3441.07,3482.31,255680000,3482.31
-1993-05-11,3443.28,3481.76,3421.42,3468.75,218480000,3468.75
-1993-05-10,3437.19,3485.36,3420.31,3443.28,235580000,3443.28
-1993-05-07,3441.90,3468.47,3413.67,3437.19,223570000,3437.19
-1993-05-06,3449.10,3475.67,3418.93,3441.90,255460000,3441.90
-1993-05-05,3446.19,3478.44,3420.86,3449.10,270960000,3449.10
-1993-05-04,3446.46,3477.26,3424.04,3446.19,268310000,3446.19
-1993-05-03,3427.55,3462.94,3402.42,3446.46,220860000,3446.46
-1993-04-30,3425.12,3466.18,3405.39,3427.55,247460000,3427.55
-1993-04-29,3413.50,3444.57,3377.57,3425.12,249760000,3425.12
-1993-04-28,3415.93,3445.65,3372.16,3413.50,267980000,3413.50
-1993-04-27,3398.37,3433.76,3364.06,3415.93,284140000,3415.93
-1993-04-26,3413.77,3442.14,3369.46,3398.37,281180000,3398.37
-1993-04-23,3429.17,3448.08,3385.67,3413.77,259810000,3413.77
-1993-04-22,3439.44,3488.33,3399.99,3429.17,310390000,3429.17
-1993-04-21,3443.49,3480.77,3401.34,3439.44,287300000,3439.44
-1993-04-20,3466.99,3486.71,3400.26,3443.49,317990000,3443.49
-1993-04-19,3478.61,3499.41,3436.73,3466.99,244710000,3466.99
-1993-04-16,3455.92,3498.60,3437.54,3478.61,305160000,3478.61
-1993-04-15,3455.64,3484.28,3419.17,3455.92,259500000,3455.92
-1993-04-14,3444.03,3482.93,3424.85,3455.64,257340000,3455.64
-1993-04-13,3428.09,3469.42,3408.37,3444.03,286690000,3444.03
-1993-04-12,3396.48,3452.67,3391.08,3428.09,259610000,3428.09
-1993-04-08,3397.02,3429.44,3357.58,3396.48,282470000,3396.48
-1993-04-07,3377.57,3417.55,3355.41,3397.02,296290000,3397.02
-1993-04-06,3379.19,3417.55,3339.75,3377.57,289640000,3377.57
-1993-04-05,3370.81,3411.61,3338.39,3379.19,238630000,3379.19
-1993-04-02,3439.44,3439.44,3344.88,3370.81,323330000,3370.81
-1993-04-01,3435.11,3466.45,3419.98,3439.44,231950000,3439.44
-1993-03-31,3457.27,3484.82,3424.85,3435.11,275710000,3435.11
-1993-03-30,3455.10,3481.58,3422.14,3457.27,233330000,3457.27
-1993-03-29,3439.98,3487.52,3431.87,3455.10,199890000,3455.10
-1993-03-26,3461.32,3484.28,3428.63,3439.98,219130000,3439.98
-1993-03-25,3445.38,3485.36,3429.44,3461.32,250040000,3461.32
-1993-03-24,3461.86,3489.14,3417.55,3445.38,271980000,3445.38
-1993-03-23,3463.48,3488.60,3438.08,3461.86,231900000,3461.86
-1993-03-22,3471.58,3483.20,3429.71,3463.48,231900000,3463.48
-1993-03-19,3465.64,3493.20,3446.46,3471.58,295510000,3471.58
-1993-03-18,3427.01,3486.17,3427.01,3465.64,240490000,3465.64
-1993-03-17,3442.95,3458.35,3408.91,3426.74,237850000,3426.74
-1993-03-16,3442.41,3466.72,3423.77,3442.95,217730000,3442.95
-1993-03-15,3427.82,3460.51,3412.96,3442.41,192690000,3442.41
-1993-03-12,3447.81,3447.81,3385.40,3427.82,244740000,3427.82
-1993-03-11,3478.34,3493.74,3437.27,3457.00,250720000,3457.00
-1993-03-10,3472.12,3497.25,3432.68,3478.34,255190000,3478.34
-1993-03-09,3469.42,3495.63,3443.76,3472.12,290120000,3472.12
-1993-03-08,3404.58,3476.99,3401.34,3469.42,274560000,3469.42
-1993-03-05,3398.91,3447.81,3373.25,3404.58,247130000,3404.58
-1993-03-04,3404.04,3423.77,3372.43,3398.91,230780000,3398.91
-1993-03-03,3400.53,3437.00,3368.92,3404.04,272290000,3404.04
-1993-03-02,3355.41,3406.21,3334.07,3400.53,269640000,3400.53
-1993-03-01,3370.81,3404.58,3336.23,3355.41,232090000,3355.41
-1993-02-26,3365.14,3396.21,3336.23,3370.81,234160000,3370.81
-1993-02-25,3356.50,3387.02,3326.78,3365.14,252790000,3365.14
-1993-02-24,3323.27,3371.89,3311.92,3356.50,298940000,3356.50
-1993-02-23,3342.99,3373.52,3296.79,3323.27,321050000,3323.27
-1993-02-22,3322.18,3367.30,3297.06,3342.99,311510000,3342.99
-1993-02-19,3302.19,3347.04,3270.04,3322.18,307960000,3322.18
-1993-02-18,3312.19,3362.98,3262.48,3302.19,309570000,3302.19
-1993-02-17,3309.49,3338.12,3273.56,3312.19,287240000,3312.19
-1993-02-16,3391.62,3391.62,3285.98,3309.49,325350000,3309.49
-1993-02-12,3422.69,3436.19,3378.11,3392.43,215750000,3392.43
-1993-02-11,3412.42,3455.64,3395.94,3422.69,252780000,3422.69
-1993-02-10,3414.58,3438.08,3379.19,3412.42,248480000,3412.42
-1993-02-09,3437.54,3449.16,3394.86,3414.58,233670000,3414.58
-1993-02-08,3442.14,3472.94,3408.91,3437.54,240350000,3437.54
-1993-02-05,3416.74,3463.21,3391.62,3442.14,320960000,3442.14
-1993-02-04,3373.79,3441.33,3367.03,3416.74,346480000,3416.74
-1993-02-03,3328.67,3397.83,3322.73,3373.79,342530000,3373.79
-1993-02-02,3332.18,3355.68,3300.30,3328.67,269250000,3328.67
-1993-02-01,3310.03,3343.80,3300.30,3332.18,238260000,3332.18
-1993-01-29,3306.25,3331.10,3287.06,3310.03,247010000,3310.03
-1993-01-28,3291.39,3327.86,3270.58,3306.25,255550000,3306.25
-1993-01-27,3298.95,3318.67,3260.05,3291.39,276880000,3291.39
-1993-01-26,3292.20,3331.91,3272.47,3298.95,311450000,3298.95
-1993-01-25,3256.81,3324.89,3243.84,3292.20,288010000,3292.20
-1993-01-22,3253.02,3292.74,3225.74,3256.81,293250000,3256.81
-1993-01-21,3241.95,3269.77,3219.25,3253.02,257350000,3253.02
-1993-01-20,3255.99,3278.96,3231.41,3241.95,267740000,3241.95
-1993-01-19,3274.91,3299.49,3239.52,3255.99,283110000,3255.99
-1993-01-18,3271.12,3296.52,3244.65,3274.91,195980000,3274.91
-1993-01-15,3267.88,3300.03,3238.70,3271.12,306140000,3271.12
-1993-01-14,3263.56,3297.06,3230.87,3267.88,280020000,3267.88
-1993-01-13,3264.64,3283.01,3225.47,3263.56,245020000,3263.56
-1993-01-12,3262.75,3287.06,3229.79,3264.64,239250000,3264.64
-1993-01-11,3251.67,3284.09,3228.98,3262.75,217150000,3262.75
-1993-01-08,3268.96,3280.31,3221.68,3251.67,262620000,3251.67
-1993-01-07,3305.16,3333.51,3250.30,3268.96,303140000,3268.96
-1993-01-06,3307.87,3330.29,3276.53,3305.16,282850000,3305.16
-1993-01-05,3309.22,3338.12,3279.23,3307.87,240550000,3307.87
-1993-01-04,3301.11,3335.69,3282.74,3309.22,199680000,3309.22
-1992-12-31,3321.10,3340.29,3294.36,3301.11,165910000,3301.11
-1992-12-30,3310.84,3340.54,3298.93,3321.10,183870000,3321.10
-1992-12-29,3333.26,3364.87,3295.71,3310.84,213660000,3310.84
-1992-12-28,3326.24,3352.17,3297.33,3333.26,143800000,3333.26
-1992-12-24,3313.54,3339.48,3303.27,3326.24,95240000,3326.24
-1992-12-23,3321.10,3350.55,3293.01,3313.54,227980000,3313.54
-1992-12-22,3312.46,3347.04,3286.52,3321.10,249670000,3321.10
-1992-12-21,3313.27,3335.15,3280.85,3312.46,224680000,3312.46
-1992-12-18,3269.23,3325.97,3261.94,3313.27,371080000,3313.27
-1992-12-17,3255.18,3289.22,3229.79,3269.23,248590000,3269.23
-1992-12-16,3284.36,3303.00,3238.70,3255.18,241910000,3255.18
-1992-12-15,3292.20,3313.27,3260.32,3284.36,225880000,3284.36
-1992-12-14,3304.08,3324.89,3279.50,3292.20,183510000,3292.20
-1992-12-11,3312.19,3324.89,3280.85,3304.08,164450000,3304.08
-1992-12-10,3323.81,3335.69,3285.17,3312.19,240570000,3312.19
-1992-12-09,3322.18,3345.42,3295.98,3323.81,229980000,3323.81
-1992-12-08,3307.33,3331.64,3288.41,3322.18,234300000,3322.18
-1992-12-07,3288.68,3320.56,3274.37,3307.33,217700000,3307.33
-1992-12-04,3276.53,3312.46,3261.40,3288.68,227410000,3288.68
-1992-12-03,3286.25,3302.73,3252.48,3276.53,238200000,3276.53
-1992-12-02,3294.36,3310.84,3265.18,3286.25,241860000,3286.25
-1992-12-01,3305.16,3321.64,3268.15,3294.36,259020000,3294.36
-1992-11-30,3282.20,3326.51,3270.31,3305.16,230190000,3305.16
-1992-11-27,3266.26,3304.62,3259.24,3282.20,106010000,3282.20
-1992-11-25,3248.70,3285.71,3243.57,3266.26,206700000,3266.26
-1992-11-24,3223.04,3277.88,3209.26,3248.70,241520000,3248.70
-1992-11-23,3227.36,3251.13,3196.83,3223.04,190490000,3223.04
-1992-11-20,3209.53,3249.78,3197.64,3227.36,256340000,3227.36
-1992-11-19,3207.37,3231.14,3190.35,3209.53,218700000,3209.53
-1992-11-18,3193.32,3227.09,3176.84,3207.37,218660000,3207.37
-1992-11-17,3205.74,3223.31,3178.19,3193.32,185460000,3193.32
-1992-11-16,3233.03,3241.41,3191.16,3205.74,173500000,3205.74
-1992-11-13,3239.79,3252.48,3211.69,3233.03,192320000,3233.03
-1992-11-12,3240.33,3264.91,3214.39,3239.79,224580000,3239.79
-1992-11-11,3225.47,3258.70,3203.31,3240.33,240160000,3240.33
-1992-11-10,3240.87,3268.15,3212.50,3225.47,221990000,3225.47
-1992-11-09,3240.06,3268.69,3220.33,3240.87,197490000,3240.87
-1992-11-06,3243.84,3264.64,3216.82,3240.06,204870000,3240.06
-1992-11-05,3223.04,3259.78,3203.58,3243.84,219580000,3243.84
-1992-11-04,3252.48,3274.10,3211.15,3223.04,193980000,3223.04
-1992-11-03,3262.21,3285.44,3226.82,3252.48,209740000,3252.48
-1992-11-02,3226.28,3274.64,3211.42,3262.21,201620000,3262.21
-1992-10-30,3246.27,3260.59,3208.45,3226.28,196740000,3226.28
-1992-10-29,3251.40,3268.96,3224.39,3246.27,206300000,3246.27
-1992-10-28,3235.73,3262.48,3210.34,3251.40,203040000,3251.40
-1992-10-27,3244.11,3270.31,3210.88,3235.73,201650000,3235.73
-1992-10-26,3207.64,3256.00,3190.08,3244.11,187950000,3244.11
-1992-10-23,3200.88,3233.57,3175.76,3207.64,197400000,3207.64
-1992-10-22,3187.10,3221.14,3162.79,3200.88,216080000,3200.88
-1992-10-21,3186.02,3211.69,3163.33,3187.10,218990000,3187.10
-1992-10-20,3188.45,3223.31,3166.30,3186.02,258220000,3186.02
-1992-10-19,3174.41,3211.15,3154.14,3188.45,218670000,3188.45
-1992-10-16,3174.68,3203.85,3123.89,3174.41,234480000,3174.41
-1992-10-15,3195.48,3207.37,3147.66,3174.68,206990000,3174.68
-1992-10-14,3201.42,3225.74,3167.11,3195.48,175440000,3195.48
-1992-10-13,3174.41,3222.77,3159.28,3201.42,184120000,3201.42
-1992-10-12,3140.10,3186.29,3140.10,3174.41,126590000,3174.41
-1992-10-09,3176.03,3176.57,3120.37,3136.58,178910000,3136.58
-1992-10-08,3152.25,3195.48,3135.77,3176.03,203780000,3176.03
-1992-10-07,3178.19,3200.88,3136.85,3152.25,183100000,3152.25
-1992-10-06,3179.00,3205.20,3147.93,3178.19,196660000,3178.19
-1992-10-05,3197.10,3197.10,3087.41,3179.00,284380000,3179.00
-1992-10-02,3254.37,3259.51,3193.59,3200.61,187400000,3200.61
-1992-10-01,3271.66,3291.39,3237.35,3254.37,203670000,3254.37
-1992-09-30,3266.80,3291.66,3247.89,3271.66,184220000,3271.66
-1992-09-29,3276.26,3295.98,3247.08,3266.80,170350000,3266.80
-1992-09-28,3250.32,3283.01,3226.55,3276.26,157480000,3276.26
-1992-09-25,3287.87,3292.20,3226.82,3250.32,213650000,3250.32
-1992-09-24,3278.69,3310.84,3267.07,3287.87,187770000,3287.87
-1992-09-23,3280.85,3302.19,3252.48,3278.69,204350000,3278.69
-1992-09-22,3320.83,3327.05,3270.58,3280.85,186990000,3280.85
-1992-09-21,3327.05,3341.91,3295.71,3320.83,153900000,3320.83
-1992-09-18,3315.70,3340.56,3297.87,3327.05,236080000,3327.05
-1992-09-17,3319.21,3347.04,3292.20,3315.70,188270000,3315.70
-1992-09-16,3327.32,3353.52,3288.95,3319.21,229380000,3319.21
-1992-09-15,3372.98,3372.98,3317.86,3327.32,200220000,3327.32
-1992-09-14,3326.51,3391.35,3326.51,3376.22,250900000,3376.22
-1992-09-11,3305.16,3327.32,3285.44,3305.70,180640000,3305.70
-1992-09-10,3271.39,3318.94,3261.67,3305.16,221970000,3305.16
-1992-09-09,3260.59,3284.09,3244.92,3271.39,172890000,3271.39
-1992-09-08,3281.93,3292.20,3245.73,3260.59,160930000,3260.59
-1992-09-04,3292.20,3306.23,3265.16,3281.93,124340000,3281.93
-1992-09-03,3290.31,3325.95,3268.94,3292.20,212540000,3292.20
-1992-09-02,3266.26,3301.90,3249.76,3290.31,187010000,3290.31
-1992-09-01,3257.35,3279.21,3239.77,3266.26,172650000,3266.26
-1992-08-31,3267.61,3287.04,3244.90,3257.35,160230000,3257.35
-1992-08-28,3254.64,3280.56,3237.88,3267.61,152230000,3267.61
-1992-08-27,3246.81,3285.69,3237.06,3254.64,178490000,3254.64
-1992-08-26,3232.22,3261.38,3217.07,3246.81,171840000,3246.81
-1992-08-25,3228.17,3253.00,3200.86,3232.22,201630000,3232.22
-1992-08-24,3254.09,3258.41,3207.08,3228.17,165130000,3228.17
-1992-08-21,3304.89,3330.27,3243.55,3254.09,202640000,3254.09
-1992-08-20,3307.06,3326.22,3285.69,3304.89,183390000,3304.89
-1992-08-19,3329.48,3347.56,3302.44,3307.06,186710000,3307.06
-1992-08-18,3324.89,3343.80,3309.22,3329.48,169880000,3329.48
-1992-08-17,3328.94,3350.28,3310.03,3324.89,152750000,3324.89
-1992-08-14,3313.27,3342.16,3300.82,3328.94,166180000,3328.94
-1992-08-13,3320.83,3347.29,3294.07,3313.27,185700000,3313.27
-1992-08-12,3331.10,3349.72,3304.88,3320.83,176440000,3320.83
-1992-08-11,3337.58,3356.48,3304.34,3331.10,173810000,3331.10
-1992-08-10,3332.18,3350.26,3305.14,3337.58,142440000,3337.58
-1992-08-07,3340.56,3378.38,3318.40,3332.18,188340000,3332.18
-1992-08-06,3365.14,3374.33,3327.05,3340.56,181390000,3340.56
-1992-08-05,3384.32,3391.35,3347.58,3365.14,172410000,3365.14
-1992-08-04,3395.40,3405.12,3367.03,3384.32,166740000,3384.32
-1992-08-03,3393.78,3413.23,3365.14,3395.40,164360000,3395.40
-1992-07-31,3391.89,3414.85,3371.89,3393.78,172920000,3393.78
-1992-07-30,3379.19,3409.16,3351.07,3391.89,193280000,3391.89
-1992-07-29,3345.13,3399.70,3345.13,3379.19,275760000,3379.19
-1992-07-28,3282.20,3345.67,3277.59,3334.07,217950000,3334.07
-1992-07-27,3285.71,3311.38,3265.99,3282.20,164680000,3282.20
-1992-07-24,3290.04,3305.68,3261.94,3285.71,163870000,3285.71
-1992-07-23,3277.61,3308.39,3255.43,3290.04,175460000,3290.04
-1992-07-22,3308.41,3310.28,3262.19,3277.61,190130000,3277.61
-1992-07-21,3303.00,3335.94,3292.45,3308.41,173800000,3308.41
-1992-07-20,3318.38,3318.38,3271.11,3303.00,165730000,3303.00
-1992-07-17,3359.74,3359.74,3308.14,3331.64,187520000,3331.64
-1992-07-16,3345.42,3375.66,3318.65,3361.63,206040000,3361.63
-1992-07-15,3358.39,3381.87,3319.73,3345.42,206550000,3345.42
-1992-07-14,3337.31,3371.88,3315.95,3358.39,195310000,3358.39
-1992-07-13,3330.56,3357.55,3315.41,3337.31,148820000,3337.31
-1992-07-10,3324.08,3355.93,3304.88,3330.56,164750000,3330.56
-1992-07-09,3293.28,3345.40,3292.45,3324.08,207970000,3324.08
-1992-07-08,3295.17,3322.98,3258.70,3293.28,200020000,3293.28
-1992-07-07,3339.21,3360.80,3285.69,3295.17,218740000,3295.17
-1992-07-06,3330.29,3367.57,3295.96,3339.21,186410000,3339.21
-1992-07-02,3354.10,3385.43,3303.30,3330.29,220130000,3330.29
-1992-07-01,3318.52,3366.43,3305.45,3354.10,214240000,3354.10
-1992-06-30,3319.86,3347.71,3295.01,3318.52,195520000,3318.52
-1992-06-29,3282.41,3330.32,3278.16,3319.86,176710000,3319.86
-1992-06-26,3284.01,3303.04,3254.89,3282.41,154430000,3282.41
-1992-06-25,3290.70,3319.62,3261.31,3284.01,182310000,3284.01
-1992-06-24,3285.62,3317.75,3262.11,3290.70,193850000,3290.70
-1992-06-23,3280.80,3312.13,3263.45,3285.62,189170000,3285.62
-1992-06-22,3285.35,3298.22,3242.32,3280.80,169340000,3280.80
-1992-06-19,3274.12,3313.20,3264.79,3285.35,233440000,3285.35
-1992-06-18,3287.76,3313.74,3245.53,3274.12,215080000,3274.12
-1992-06-17,3329.49,3347.98,3271.21,3287.76,227650000,3287.76
-1992-06-16,3354.90,3379.01,3321.76,3329.49,178850000,3329.49
-1992-06-15,3354.36,3371.79,3327.11,3354.90,159100000,3354.90
-1992-06-12,3351.51,3397.68,3339.62,3354.36,181830000,3354.36
-1992-06-11,3343.22,3374.61,3301.51,3351.51,192940000,3351.51
-1992-06-10,3369.92,3385.76,3328.99,3343.22,206380000,3343.22
-1992-06-09,3404.14,3412.98,3350.25,3369.92,190780000,3369.92
-1992-06-08,3398.69,3422.83,3370.21,3404.14,161130000,3404.14
-1992-06-05,3399.73,3424.64,3356.98,3398.69,199050000,3398.69
-1992-06-04,3406.99,3428.02,3376.43,3399.73,204360000,3399.73
-1992-06-03,3396.10,3431.13,3378.76,3406.99,215730000,3406.99
-1992-06-02,3413.21,3435.27,3380.84,3396.10,200660000,3396.10
-1992-06-01,3396.88,3424.39,3365.02,3413.21,180780000,3413.21
-1992-05-29,3398.43,3433.98,3384.20,3396.88,202730000,3396.88
-1992-05-28,3370.44,3408.31,3354.91,3398.43,195230000,3398.43
-1992-05-27,3364.21,3396.65,3337.29,3370.44,179980000,3370.44
-1992-05-26,3386.77,3410.91,3338.84,3364.21,196950000,3364.21
-1992-05-22,3378.71,3408.49,3364.08,3386.77,146640000,3386.77
-1992-05-21,3393.84,3402.88,3354.80,3378.71,182190000,3378.71
-1992-05-20,3397.99,3421.42,3376.04,3393.84,198170000,3393.84
-1992-05-19,3376.03,3413.37,3350.41,3397.99,187030000,3397.99
-1992-05-18,3353.09,3398.24,3349.93,3376.03,149830000,3376.03
-1992-05-15,3368.88,3380.30,3330.43,3353.09,192040000,3353.09
-1992-05-14,3391.98,3397.46,3347.59,3368.88,187700000,3368.88
-1992-05-13,3385.12,3414.17,3362.93,3391.98,171610000,3391.98
-1992-05-12,3397.58,3414.81,3361.51,3385.12,192810000,3385.12
-1992-05-11,3369.41,3410.11,3363.82,3397.58,155730000,3397.58
-1992-05-08,3363.37,3388.41,3344.59,3369.41,168670000,3369.41
-1992-05-07,3369.41,3390.65,3343.25,3363.37,168910000,3363.37
-1992-05-06,3359.35,3398.70,3346.60,3369.41,199070000,3369.41
-1992-05-05,3378.13,3393.78,3346.15,3359.35,198860000,3359.35
-1992-05-04,3340.79,3394.68,3340.79,3378.13,174520000,3378.13
-1992-05-01,3359.12,3375.67,3316.64,3336.09,177360000,3336.09
-1992-04-30,3333.18,3377.01,3314.40,3359.12,223160000,3359.12
-1992-04-29,3307.92,3353.75,3295.39,3333.18,199740000,3333.18
-1992-04-28,3304.56,3329.83,3273.03,3307.92,186740000,3307.92
-1992-04-27,3324.46,3340.79,3284.66,3304.56,172820000,3304.56
-1992-04-24,3348.61,3381.48,3305.23,3324.46,198740000,3324.46
-1992-04-23,3338.77,3376.34,3298.52,3348.61,235740000,3348.61
-1992-04-22,3343.25,3366.72,3309.48,3338.77,218790000,3338.77
-1992-04-21,3336.31,3366.50,3305.68,3343.25,214400000,3343.25
-1992-04-20,3366.50,3375.67,3300.98,3336.31,191910000,3336.31
-1992-04-16,3353.76,3387.97,3321.33,3366.50,232480000,3366.50
-1992-04-15,3306.13,3370.08,3296.51,3353.76,228400000,3353.76
-1992-04-14,3269.90,3336.54,3259.39,3306.13,232040000,3306.13
-1992-04-13,3255.37,3293.60,3230.77,3269.90,143100000,3269.90
-1992-04-10,3227.64,3280.86,3227.64,3255.37,199450000,3255.37
-1992-04-09,3181.35,3245.08,3171.06,3224.96,231330000,3224.96
-1992-04-08,3213.55,3221.38,3141.77,3181.35,249210000,3181.35
-1992-04-07,3275.49,3291.81,3207.51,3213.55,205110000,3213.55
-1992-04-06,3249.11,3295.84,3238.37,3275.49,179330000,3275.49
-1992-04-03,3234.12,3271.91,3201.92,3249.11,188530000,3249.11
-1992-04-02,3249.33,3277.06,3209.08,3234.12,185110000,3234.12
-1992-04-01,3235.47,3262.52,3202.37,3249.33,186260000,3249.33
-1992-03-31,3235.24,3272.81,3216.46,3235.47,182200000,3235.47
-1992-03-30,3231.44,3260.06,3215.79,3235.24,133980000,3235.24
-1992-03-27,3267.67,3272.58,3218.92,3231.44,166140000,3231.44
-1992-03-26,3259.39,3288.91,3245.08,3267.67,176690000,3267.67
-1992-03-25,3260.96,3290.47,3238.15,3259.39,192080000,3259.39
-1992-03-24,3272.14,3296.96,3242.84,3260.96,191580000,3260.96
-1992-03-23,3276.39,3288.68,3249.33,3272.14,156620000,3272.14
-1992-03-20,3261.40,3292.48,3240.83,3276.39,246170000,3276.39
-1992-03-19,3254.25,3286.22,3240.38,3261.40,197240000,3261.40
-1992-03-18,3256.04,3281.98,3230.10,3254.25,190800000,3254.25
-1992-03-17,3236.36,3272.58,3222.27,3256.04,187240000,3256.04
-1992-03-16,3235.91,3249.11,3201.25,3236.36,151280000,3236.36
-1992-03-13,3208.63,3252.23,3203.71,3235.91,176000000,3235.91
-1992-03-12,3208.63,3232.33,3176.21,3208.63,180240000,3208.63
-1992-03-11,3230.99,3242.17,3189.85,3208.63,185320000,3208.63
-1992-03-10,3215.12,3259.17,3207.29,3230.99,194530000,3230.99
-1992-03-09,3221.60,3242.62,3188.95,3215.12,160620000,3215.12
-1992-03-06,3241.50,3262.97,3204.61,3221.60,185040000,3221.60
-1992-03-05,3268.56,3283.54,3226.74,3241.50,205730000,3241.50
-1992-03-04,3290.25,3318.42,3256.04,3268.56,206770000,3268.56
-1992-03-03,3275.27,3313.28,3258.50,3290.25,200860000,3290.25
-1992-03-02,3267.67,3298.97,3242.39,3275.27,180380000,3275.27
-1992-02-28,3269.45,3304.11,3247.09,3267.67,202130000,3267.67
-1992-02-27,3283.32,3300.54,3251.79,3269.45,215050000,3269.45
-1992-02-26,3257.83,3305.01,3246.20,3283.32,240690000,3283.32
-1992-02-25,3282.42,3293.60,3226.74,3257.83,208400000,3257.83
-1992-02-24,3280.19,3305.01,3253.58,3282.42,177470000,3282.42
-1992-02-21,3280.64,3307.47,3242.17,3280.19,258700000,3280.19
-1992-02-20,3230.32,3304.34,3224.28,3280.64,270550000,3280.64
-1992-02-19,3224.73,3259.17,3199.02,3230.32,232900000,3230.32
-1992-02-18,3245.97,3280.19,3195.66,3224.73,234270000,3224.73
-1992-02-14,3246.65,3271.91,3208.63,3245.97,214840000,3245.97
-1992-02-13,3276.83,3296.73,3226.07,3246.65,229360000,3246.65
-1992-02-12,3251.57,3291.37,3233.68,3276.83,230230000,3276.83
-1992-02-11,3245.08,3277.28,3222.49,3251.57,200110000,3251.57
-1992-02-10,3225.40,3269.00,3208.85,3245.08,184390000,3245.08
-1992-02-07,3255.59,3283.09,3199.91,3225.40,230950000,3225.40
-1992-02-06,3257.60,3285.55,3224.95,3255.59,238210000,3255.59
-1992-02-05,3272.81,3299.87,3233.68,3257.60,261960000,3257.60
-1992-02-04,3234.12,3283.09,3208.63,3272.81,231530000,3272.81
-1992-02-03,3223.39,3261.40,3193.42,3234.12,182150000,3234.12
-1992-01-31,3244.86,3274.37,3207.96,3223.39,197060000,3223.39
-1992-01-30,3224.96,3269.68,3200.58,3244.86,194670000,3244.86
-1992-01-29,3272.14,3313.51,3204.16,3224.96,248900000,3224.96
-1992-01-28,3240.61,3298.30,3230.99,3272.14,217070000,3272.14
-1992-01-27,3232.78,3267.44,3216.23,3240.61,190430000,3240.61
-1992-01-24,3226.74,3264.31,3203.71,3232.78,213600000,3232.78
-1992-01-23,3255.81,3279.52,3205.95,3226.74,229680000,3226.74
-1992-01-22,3223.39,3272.80,3190.96,3255.81,225030000,3255.81
-1992-01-21,3254.03,3275.49,3194.09,3223.39,218650000,3223.39
-1992-01-20,3264.98,3283.32,3230.99,3254.03,180870000,3254.03
-1992-01-17,3249.55,3297.63,3224.28,3264.98,284560000,3264.98
-1992-01-16,3258.50,3289.13,3200.80,3249.55,333750000,3249.55
-1992-01-15,3246.20,3299.19,3207.73,3258.50,312400000,3258.50
-1992-01-14,3185.60,3255.81,3167.93,3246.20,264540000,3246.20
-1992-01-13,3199.46,3215.56,3161.67,3185.60,200270000,3185.60
-1992-01-10,3209.53,3235.91,3165.92,3199.46,236060000,3199.46
-1992-01-09,3203.94,3246.64,3173.75,3209.53,291780000,3209.53
-1992-01-08,3204.83,3245.53,3164.58,3203.94,289690000,3203.94
-1992-01-07,3200.13,3224.73,3165.25,3204.83,251280000,3204.83
-1992-01-06,3201.48,3230.32,3166.37,3200.13,241980000,3200.13
-1992-01-03,3172.41,3221.38,3156.30,3201.48,219170000,3201.48
-1992-01-02,3168.83,3184.70,3119.86,3172.41,203610000,3172.41
-1991-12-31,3163.91,3204.61,3121.20,3168.83,247670000,3168.83
-1991-12-30,3101.52,3174.64,3090.79,3163.91,245450000,3163.91
-1991-12-27,3082.96,3121.65,3063.73,3101.52,157940000,3101.52
-1991-12-26,3050.98,3101.97,3036.23,3082.96,149200000,3082.96
-1991-12-24,3022.58,3087.88,3015.65,3050.98,162300000,3050.98
-1991-12-23,2934.48,3037.57,2919.05,3022.58,228730000,3022.58
-1991-12-20,2914.36,2965.79,2907.65,2934.48,313810000,2934.48
-1991-12-19,2908.09,2927.10,2881.48,2914.36,199830000,2914.36
-1991-12-18,2902.28,2921.29,2870.30,2908.09,192350000,2908.09
-1991-12-17,2919.05,2936.27,2886.40,2902.28,191280000,2902.28
-1991-12-16,2914.36,2946.33,2900.49,2919.05,173010000,2919.05
-1991-12-13,2895.13,2936.72,2893.34,2914.36,195790000,2914.36
-1991-12-12,2865.38,2911.67,2861.14,2895.13,192930000,2895.13
-1991-12-11,2863.82,2889.53,2832.29,2865.38,207410000,2865.38
-1991-12-10,2871.65,2891.10,2841.23,2863.82,191800000,2863.82
-1991-12-09,2886.40,2913.46,2856.22,2871.65,174700000,2871.65
-1991-12-06,2889.09,2924.87,2854.65,2886.40,198170000,2886.40
-1991-12-05,2911.67,2923.75,2874.77,2889.09,165660000,2889.09
-1991-12-04,2929.56,2945.66,2892.22,2911.67,186380000,2911.67
-1991-12-03,2935.38,2958.18,2904.74,2929.56,187160000,2929.56
-1991-12-02,2894.68,2941.64,2855.32,2935.38,188050000,2935.38
-1991-11-29,2900.04,2913.46,2877.46,2894.68,77420000,2894.68
-1991-11-27,2916.14,2929.11,2883.72,2900.04,159790000,2900.04
-1991-11-26,2902.06,2942.31,2861.14,2916.14,213650000,2916.14
-1991-11-25,2902.73,2921.96,2870.30,2902.06,173520000,2902.06
-1991-11-22,2932.69,2940.30,2880.81,2902.73,188110000,2902.73
-1991-11-21,2930.01,2953.94,2902.28,2932.69,195060000,2932.69
-1991-11-20,2931.57,2973.61,2912.12,2930.01,192670000,2930.01
-1991-11-19,2960.20,2960.20,2883.72,2931.57,243880000,2931.57
-1991-11-18,2943.20,2990.61,2923.30,2972.72,238170000,2972.72
-1991-11-15,3063.51,3069.54,2936.05,2943.20,236000000,2943.20
-1991-11-14,3065.30,3084.97,3037.34,3063.51,200030000,3063.51
-1991-11-13,3054.11,3075.58,3023.70,3065.30,184080000,3065.30
-1991-11-12,3042.26,3078.71,3028.62,3054.11,198600000,3054.11
-1991-11-11,3045.62,3057.69,3025.27,3042.26,128910000,3042.26
-1991-11-08,3054.11,3080.95,3034.66,3045.62,183260000,3045.62
-1991-11-07,3038.46,3066.19,3020.35,3054.11,205440000,3054.11
-1991-11-06,3031.31,3056.57,3010.51,3038.46,167370000,3038.46
-1991-11-05,3045.62,3062.84,3015.88,3031.31,171950000,3031.31
-1991-11-04,3056.35,3061.27,3019.01,3045.62,155530000,3045.62
-1991-11-01,3069.10,3091.91,3031.75,3056.35,205750000,3056.35
-1991-10-31,3071.78,3091.01,3045.62,3069.10,179490000,3069.10
-1991-10-30,3061.94,3090.12,3038.24,3071.78,195340000,3071.78
-1991-10-29,3045.62,3077.82,3020.13,3061.94,192700000,3061.94
-1991-10-28,3004.92,3055.23,3001.57,3045.62,160220000,3045.62
-1991-10-25,3016.32,3034.44,2983.01,3004.92,167260000,3004.92
-1991-10-24,3040.92,3047.63,2991.73,3016.32,178990000,3016.32
-1991-10-23,3039.80,3065.52,3015.21,3040.92,185340000,3040.92
-1991-10-22,3060.38,3084.53,3020.57,3039.80,194120000,3039.80
-1991-10-21,3077.15,3085.20,3042.49,3060.38,153770000,3060.38
-1991-10-18,3053.00,3089.45,3045.62,3077.15,204030000,3077.15
-1991-10-17,3061.72,3077.15,3027.06,3053.00,202780000,3053.00
-1991-10-16,3041.37,3082.29,3016.10,3061.72,225290000,3061.72
-1991-10-15,3019.45,3057.69,3000.22,3041.37,213440000,3041.37
-1991-10-14,2983.68,3026.39,2975.85,3019.45,130110000,3019.45
-1991-10-11,2976.52,3000.89,2957.51,2983.68,146560000,2983.68
-1991-10-10,2946.33,2985.47,2930.23,2976.52,164120000,2976.52
-1991-10-09,2963.77,2984.79,2925.54,2946.33,186590000,2946.33
-1991-10-08,2942.75,2983.68,2927.77,2963.77,170000000,2963.77
-1991-10-07,2961.76,2973.17,2926.21,2942.75,148430000,2942.75
-1991-10-04,2984.79,3007.16,2956.17,2961.76,163930000,2961.76
-1991-10-03,3012.52,3021.24,2972.50,2984.79,174230000,2984.79
-1991-10-02,3018.34,3040.25,2992.40,3012.52,166290000,3012.52
-1991-10-01,3016.77,3043.60,3002.46,3018.34,163520000,3018.34
-1991-09-30,3006.04,3032.87,2982.78,3016.77,146740000,3016.77
-1991-09-27,3017.22,3040.70,2989.49,3006.04,160430000,3006.04
-1991-09-26,3021.02,3040.70,2996.87,3017.22,160190000,3017.22
-1991-09-25,3029.07,3048.52,3004.92,3021.02,153800000,3021.02
-1991-09-24,3010.51,3043.38,2995.97,3029.07,170300000,3029.07
-1991-09-23,3019.23,3037.79,2997.76,3010.51,145530000,3010.51
-1991-09-20,3024.37,3045.39,3002.46,3019.23,241340000,3019.23
-1991-09-19,3017.89,3050.76,3002.91,3024.37,210770000,3024.37
-1991-09-18,3013.19,3025.49,2993.52,3017.89,141280000,3017.89
-1991-09-17,3015.21,3036.00,2992.62,3013.19,168310000,3013.19
-1991-09-16,2985.69,3023.03,2973.61,3015.21,171960000,3015.21
-1991-09-13,3007.83,3021.47,2963.10,2985.69,167800000,2985.69
-1991-09-12,2987.03,3023.26,2977.64,3007.83,160310000,3007.83
-1991-09-11,2982.56,3004.70,2964.67,2987.03,147910000,2987.03
-1991-09-10,3007.16,3012.97,2967.80,2982.56,146730000,2982.56
-1991-09-09,3011.63,3025.49,2987.70,3007.16,109250000,3007.16
-1991-09-06,3008.50,3033.32,2987.48,3011.63,166410000,3011.63
-1991-09-05,3008.50,3031.98,2989.71,3008.50,162250000,3008.50
-1991-09-04,3017.67,3034.66,2990.83,3008.50,156770000,3008.50
-1991-09-03,3043.60,3066.64,3013.64,3017.67,153550000,3017.67
-1991-08-30,3049.64,3059.26,3024.82,3043.60,125830000,3043.60
-1991-08-29,3055.23,3068.65,3030.86,3049.64,150180000,3049.64
-1991-08-28,3026.16,3064.85,3018.11,3055.23,169590000,3055.23
-1991-08-27,3039.36,3047.41,3007.83,3026.16,143920000,3026.16
-1991-08-26,3040.25,3057.02,3020.80,3039.36,128400000,3039.36
-1991-08-23,3007.38,3065.97,2999.11,3040.25,187010000,3040.25
-1991-08-22,3001.79,3029.96,2989.94,3007.38,172900000,3007.38
-1991-08-21,2941.64,3009.17,2941.64,3001.79,231720000,3001.79
-1991-08-20,2898.03,2937.39,2886.85,2913.69,184090000,2913.69
-1991-08-19,2924.42,2924.42,2836.31,2898.03,229590000,2898.03
-1991-08-16,2998.43,3013.64,2945.89,2968.02,188360000,2968.02
-1991-08-15,3005.37,3029.96,2985.24,2998.43,174310000,2998.43
-1991-08-14,3008.72,3036.67,2988.60,3005.37,195890000,3005.37
-1991-08-13,3001.34,3041.14,2989.27,3008.72,211890000,3008.72
-1991-08-12,2996.20,3013.42,2974.06,3001.34,145280000,3001.34
-1991-08-09,3013.86,3036.45,2986.81,2996.20,143610000,2996.20
-1991-08-08,3026.61,3045.17,2995.30,3013.86,163620000,3013.86
-1991-08-07,3027.28,3050.54,3008.50,3026.61,170820000,3026.61
-1991-08-06,2989.04,3034.88,2970.48,3027.28,174340000,3027.28
-1991-08-05,3006.26,3019.68,2978.76,2989.04,125790000,2989.04
-1991-08-02,3017.67,3042.26,2994.41,3006.26,162050000,3006.26
-1991-08-01,3024.82,3037.12,2997.76,3017.67,169920000,3017.67
-1991-07-31,3016.32,3039.58,2999.11,3024.82,166650000,3024.82
-1991-07-30,2985.24,3029.07,2983.68,3016.32,168950000,3016.32
-1991-07-29,2972.50,2996.20,2957.07,2985.24,135240000,2985.24
-1991-07-26,2980.10,2994.86,2953.26,2972.50,127690000,2972.50
-1991-07-25,2966.23,2999.11,2947.23,2980.10,145510000,2980.10
-1991-07-24,2983.23,3003.13,2950.80,2966.23,158530000,2966.23
-1991-07-23,3012.97,3038.24,2972.94,2983.23,160010000,2983.23
-1991-07-22,3016.32,3034.44,2990.83,3012.97,148880000,3012.97
-1991-07-19,3016.32,3036.23,2989.49,3016.32,187290000,3016.32
-1991-07-18,2978.76,3026.61,2970.93,3016.32,199470000,3016.32
-1991-07-17,2983.90,3011.18,2961.54,2978.76,194150000,2978.76
-1991-07-16,2990.61,3012.52,2962.88,2983.90,182740000,2983.90
-1991-07-15,2980.77,3007.38,2965.79,2990.61,159340000,2990.61
-1991-07-12,2959.75,3003.35,2942.98,2980.77,173060000,2980.77
-1991-07-11,2944.77,2975.63,2933.36,2959.75,157680000,2959.75
-1991-07-10,2947.23,2990.83,2927.77,2944.77,178170000,2944.77
-1991-07-09,2961.99,2980.10,2934.03,2947.23,151430000,2947.23
-1991-07-08,2932.47,2966.23,2897.36,2961.99,138210000,2961.99
-1991-07-05,2934.70,2953.26,2917.71,2932.47,69790000,2932.47
-1991-07-03,2957.07,2957.07,2915.03,2934.70,139290000,2934.70
-1991-07-02,2958.41,2987.03,2939.62,2972.72,157140000,2972.72
-1991-07-01,2911.67,2971.15,2911.67,2958.41,166880000,2958.41
-1991-06-28,2934.03,2934.03,2879.25,2906.75,162670000,2906.75
-1991-06-27,2913.01,2946.56,2909.21,2934.93,155820000,2934.93
-1991-06-26,2910.11,2934.03,2879.25,2913.01,186830000,2913.01
-1991-06-25,2913.01,2938.51,2887.97,2910.11,155450000,2910.11
-1991-06-24,2957.29,2957.29,2904.29,2913.01,137700000,2913.01
-1991-06-21,2953.94,2977.64,2937.84,2965.56,193110000,2965.56
-1991-06-20,2955.50,2969.81,2927.33,2953.94,163780000,2953.94
-1991-06-19,2978.31,2978.31,2933.59,2955.50,156070000,2955.50
-1991-06-18,2993.96,3022.14,2970.48,2986.81,154900000,2986.81
-1991-06-17,3000.45,3021.69,2977.86,2993.96,133910000,2993.96
-1991-06-14,2967.58,3014.98,2967.58,3000.45,167530000,3000.45
-1991-06-13,2961.99,2982.11,2942.53,2965.12,144870000,2965.12
-1991-06-12,2985.91,2987.25,2928.89,2961.99,165720000,2961.99
-1991-06-11,2975.40,3012.08,2963.10,2985.91,161240000,2985.91
-1991-06-10,2976.74,2992.84,2958.41,2975.40,127420000,2975.40
-1991-06-07,2994.86,3005.14,2954.61,2976.74,167830000,2976.74
-1991-06-06,3005.37,3027.06,2975.63,2994.86,168050000,2994.86
-1991-06-05,3027.95,3042.93,2989.49,3005.37,186300000,3005.37
-1991-06-04,3035.33,3042.04,2992.62,3027.95,180170000,3027.95
-1991-06-03,3027.50,3057.47,3000.67,3035.33,173710000,3035.33
-1991-05-31,3000.45,3044.50,2972.94,3027.50,231680000,3027.50
-1991-05-30,2969.59,3022.81,2950.58,3000.45,234090000,3000.45
-1991-05-29,2958.86,2987.92,2940.74,2969.59,188150000,2969.59
-1991-05-28,2913.91,2965.12,2903.85,2958.86,161950000,2958.86
-1991-05-24,2900.04,2931.13,2893.78,2913.91,124500000,2913.91
-1991-05-23,2910.33,2935.38,2881.04,2900.04,173080000,2900.04
-1991-05-22,2906.08,2930.01,2881.93,2910.33,159310000,2910.33
-1991-05-21,2892.22,2931.80,2875.00,2906.08,186860000,2906.08
-1991-05-20,2886.63,2910.78,2872.76,2892.22,109510000,2892.22
-1991-05-17,2894.01,2908.54,2860.02,2886.63,174210000,2886.63
-1991-05-16,2865.38,2905.64,2863.82,2894.01,154460000,2894.01
-1991-05-15,2886.85,2901.83,2834.53,2865.38,193110000,2865.38
-1991-05-14,2922.85,2922.85,2870.08,2886.85,207910000,2886.85
-1991-05-13,2920.17,2945.44,2896.24,2924.42,129620000,2924.42
-1991-05-10,2971.15,2986.14,2906.08,2920.17,172730000,2920.17
-1991-05-09,2930.90,2983.68,2926.88,2971.15,180210000,2971.15
-1991-05-08,2917.49,2945.21,2898.70,2930.90,157240000,2930.90
-1991-05-07,2941.64,2962.66,2906.53,2917.49,153290000,2917.49
-1991-05-06,2938.86,2956.84,2911.45,2941.64,128360000,2941.64
-1991-05-03,2938.61,2959.90,2906.93,2938.86,158160000,2938.86
-1991-05-02,2930.20,2966.34,2917.33,2938.61,187090000,2938.61
-1991-05-01,2887.87,2945.30,2882.43,2930.20,181900000,2930.20
-1991-04-30,2876.98,2929.21,2859.41,2887.87,204930000,2887.87
-1991-04-29,2912.38,2941.09,2869.55,2876.98,149860000,2876.98
-1991-04-26,2921.04,2934.90,2888.61,2912.38,154550000,2912.38
-1991-04-25,2949.51,2958.42,2905.20,2921.04,166940000,2921.04
-1991-04-24,2930.45,2965.10,2913.37,2949.51,166800000,2949.51
-1991-04-23,2927.72,2957.92,2905.94,2930.45,167840000,2930.45
-1991-04-22,2962.13,2962.13,2911.63,2927.72,164410000,2927.72
-1991-04-19,2999.26,3000.25,2943.56,2965.59,195510000,2965.59
-1991-04-18,3004.46,3027.72,2976.24,2999.26,217410000,2999.26
-1991-04-17,2986.88,3030.45,2963.12,3004.46,246930000,3004.46
-1991-04-16,2933.17,2995.79,2912.13,2986.88,214480000,2986.88
-1991-04-15,2920.79,2957.18,2896.29,2933.17,161800000,2933.17
-1991-04-12,2905.45,2946.53,2884.16,2920.79,198610000,2920.79
-1991-04-11,2877.72,2937.62,2877.72,2905.45,196570000,2905.45
-1991-04-10,2873.02,2902.48,2848.51,2874.50,167940000,2874.50
-1991-04-09,2918.56,2932.42,2863.36,2873.02,169940000,2873.02
-1991-04-08,2896.78,2929.21,2877.72,2918.56,138580000,2918.56
-1991-04-05,2924.50,2949.26,2876.98,2896.78,187410000,2896.78
-1991-04-04,2926.73,2959.41,2899.75,2924.50,198120000,2924.50
-1991-04-03,2945.05,2970.54,2915.84,2926.73,213720000,2926.73
-1991-04-02,2881.19,2951.98,2878.22,2945.05,189530000,2945.05
-1991-04-01,2913.86,2919.31,2868.32,2881.19,144010000,2881.19
-1991-03-28,2917.57,2942.08,2893.32,2913.86,150750000,2913.86
-1991-03-27,2914.85,2956.93,2886.14,2917.57,201830000,2917.57
-1991-03-26,2865.84,2924.01,2848.02,2914.85,198720000,2914.85
-1991-03-25,2858.91,2897.52,2837.87,2865.84,153920000,2865.84
-1991-03-22,2855.45,2879.95,2829.21,2858.91,160890000,2858.91
-1991-03-21,2872.03,2907.92,2841.58,2855.45,199830000,2855.45
-1991-03-20,2867.82,2897.03,2840.84,2872.03,196810000,2872.03
-1991-03-19,2908.17,2908.17,2840.84,2867.82,177070000,2867.82
-1991-03-18,2948.27,2960.64,2899.75,2929.95,163100000,2929.95
-1991-03-15,2952.23,2966.58,2918.81,2948.27,237660000,2948.27
-1991-03-14,2955.20,3000.00,2925.74,2952.23,231000000,2952.23
-1991-03-13,2922.52,2967.82,2910.89,2955.20,176000000,2955.20
-1991-03-12,2939.36,2962.13,2906.68,2922.52,176440000,2922.52
-1991-03-11,2955.20,2975.50,2923.27,2939.36,161600000,2939.36
-1991-03-08,2963.37,3003.47,2934.90,2955.20,206850000,2955.20
-1991-03-07,2973.27,2998.51,2948.51,2963.37,197060000,2963.37
-1991-03-06,2972.52,3017.82,2957.67,2973.27,262290000,2973.27
-1991-03-05,2914.11,2995.54,2913.86,2972.52,253700000,2972.52
-1991-03-04,2909.90,2950.74,2897.03,2914.11,199830000,2914.11
-1991-03-01,2882.18,2923.51,2846.78,2909.90,221510000,2909.90
-1991-02-28,2889.11,2923.51,2858.42,2882.18,223010000,2882.18
-1991-02-27,2864.60,2915.35,2839.85,2889.11,211410000,2889.11
-1991-02-26,2887.87,2895.30,2840.10,2864.60,164170000,2864.60
-1991-02-25,2889.36,2935.89,2865.35,2887.87,193820000,2887.87
-1991-02-22,2891.83,2945.79,2860.40,2889.36,218760000,2889.36
-1991-02-21,2899.01,2927.72,2871.29,2891.83,180770000,2891.83
-1991-02-20,2923.76,2923.76,2879.46,2899.01,185680000,2899.01
-1991-02-19,2934.65,2955.20,2895.30,2932.18,189900000,2932.18
-1991-02-15,2877.23,2947.28,2868.07,2934.65,222370000,2934.65
-1991-02-14,2909.16,2942.08,2852.48,2877.23,230750000,2877.23
-1991-02-13,2874.75,2918.32,2848.51,2909.16,209960000,2909.16
-1991-02-12,2902.23,2923.02,2848.27,2874.75,256160000,2874.75
-1991-02-11,2830.69,2910.64,2822.52,2902.23,265930000,2902.23
-1991-02-08,2810.64,2847.28,2787.13,2830.69,187830000,2830.69
-1991-02-07,2830.94,2875.50,2790.59,2810.64,292190000,2810.64
-1991-02-06,2788.37,2844.80,2760.15,2830.94,276940000,2830.94
-1991-02-05,2772.28,2805.20,2742.82,2788.37,290570000,2788.37
-1991-02-04,2730.69,2791.83,2714.85,2772.28,250750000,2772.28
-1991-02-01,2736.39,2764.60,2694.31,2730.69,246670000,2730.69
-1991-01-31,2713.12,2747.28,2691.58,2736.39,204240000,2736.39
-1991-01-30,2662.62,2725.99,2654.70,2713.12,226790000,2713.12
-1991-01-29,2654.46,2677.23,2627.23,2662.62,155740000,2662.62
-1991-01-28,2659.41,2688.61,2635.15,2654.46,141270000,2654.46
-1991-01-25,2643.07,2679.46,2623.27,2659.41,194350000,2659.41
-1991-01-24,2619.06,2667.33,2615.10,2643.07,223150000,2643.07
-1991-01-23,2603.22,2645.54,2584.65,2619.06,169440000,2619.06
-1991-01-22,2629.21,2645.05,2586.39,2603.22,175590000,2603.22
-1991-01-21,2646.29,2646.29,2602.97,2629.21,136290000,2629.21
-1991-01-18,2623.51,2663.37,2600.25,2646.78,226770000,2646.78
-1991-01-17,2571.78,2635.40,2571.78,2623.51,318890000,2623.51
-1991-01-16,2490.59,2525.25,2475.99,2508.91,134560000,2508.91
-1991-01-15,2483.91,2504.46,2470.05,2490.59,109980000,2490.59
-1991-01-14,2500.99,2500.99,2447.03,2483.91,120830000,2483.91
-1991-01-11,2498.76,2516.09,2472.77,2501.49,123050000,2501.49
-1991-01-10,2470.30,2512.13,2467.08,2498.76,124510000,2498.76
-1991-01-09,2509.41,2562.38,2456.19,2470.30,191100000,2470.30
-1991-01-08,2522.77,2544.06,2493.07,2509.41,143390000,2509.41
-1991-01-07,2563.37,2563.37,2514.11,2522.77,130610000,2522.77
-1991-01-04,2573.51,2601.98,2540.84,2566.09,140820000,2566.09
-1991-01-03,2610.64,2622.28,2567.57,2573.51,141450000,2573.51
-1991-01-02,2633.66,2651.73,2600.99,2610.64,126280000,2610.64
-1990-12-31,2629.21,2641.09,2611.14,2633.66,114130000,2633.66
-1990-12-28,2625.50,2639.11,2607.92,2629.21,111030000,2629.21
-1990-12-27,2637.13,2652.23,2616.58,2625.50,102900000,2625.50
-1990-12-26,2621.29,2653.96,2613.37,2637.13,78730000,2637.13
-1990-12-24,2633.66,2638.12,2609.65,2621.29,57200000,2621.29
-1990-12-21,2629.46,2662.62,2619.55,2633.66,233400000,2633.66
-1990-12-20,2626.73,2645.81,2591.58,2629.46,174700000,2629.46
-1990-12-19,2626.73,2648.51,2602.48,2626.73,180380000,2626.73
-1990-12-18,2593.32,2639.36,2583.17,2626.73,176460000,2626.73
-1990-12-17,2593.81,2600.74,2563.61,2593.32,118560000,2593.32
-1990-12-14,2614.36,2617.82,2572.03,2593.81,150880000,2593.81
-1990-12-13,2622.28,2640.59,2598.76,2614.36,162110000,2614.36
-1990-12-12,2586.14,2630.69,2578.22,2622.28,182270000,2622.28
-1990-12-11,2596.78,2606.93,2565.59,2586.14,145330000,2586.14
-1990-12-10,2590.10,2609.40,2566.58,2596.78,138650000,2596.78
-1990-12-07,2602.48,2618.07,2571.78,2590.10,164950000,2590.10
-1990-12-06,2610.40,2656.44,2589.36,2602.48,256380000,2602.48
-1990-12-05,2579.70,2615.84,2558.42,2610.40,205820000,2610.40
-1990-12-04,2565.59,2592.08,2534.65,2579.70,185820000,2579.70
-1990-12-03,2559.65,2589.60,2543.56,2565.59,177010000,2565.59
-1990-11-30,2518.81,2577.23,2498.51,2559.65,192350000,2559.65
-1990-11-29,2535.15,2544.31,2501.23,2518.81,140920000,2518.81
-1990-11-28,2543.81,2564.60,2521.04,2535.15,145490000,2535.15
-1990-11-27,2533.17,2562.62,2516.09,2543.81,147590000,2543.81
-1990-11-26,2527.23,2541.58,2489.85,2533.17,131540000,2533.17
-1990-11-23,2539.36,2557.92,2521.04,2527.23,63350000,2527.23
-1990-11-21,2530.20,2552.23,2502.72,2539.36,140660000,2539.36
-1990-11-20,2565.35,2574.50,2524.01,2530.20,161170000,2530.20
-1990-11-19,2550.25,2580.69,2543.07,2565.35,140950000,2565.35
-1990-11-16,2545.05,2570.79,2522.28,2550.25,165440000,2550.25
-1990-11-15,2559.65,2567.33,2528.71,2545.05,151370000,2545.05
-1990-11-14,2535.40,2581.19,2522.77,2559.65,179310000,2559.65
-1990-11-13,2540.35,2559.90,2512.38,2535.40,160240000,2535.40
-1990-11-12,2490.10,2550.99,2490.10,2540.35,161390000,2540.35
-1990-11-09,2443.81,2500.74,2438.61,2488.61,145160000,2488.61
-1990-11-08,2440.84,2468.81,2415.84,2443.81,155570000,2443.81
-1990-11-07,2485.15,2490.35,2430.94,2440.84,149130000,2440.84
-1990-11-06,2502.23,2516.83,2471.53,2485.15,141130000,2485.15
-1990-11-05,2490.84,2519.06,2472.77,2502.23,147510000,2502.23
-1990-11-02,2454.95,2501.73,2447.28,2490.84,168700000,2490.84
-1990-11-01,2442.33,2473.02,2415.59,2454.95,159270000,2454.95
-1990-10-31,2448.02,2475.99,2419.55,2442.33,156060000,2442.33
-1990-10-30,2430.20,2462.87,2400.50,2448.02,153450000,2448.02
-1990-10-29,2436.14,2470.30,2407.67,2430.20,133980000,2430.20
-1990-10-26,2482.18,2482.18,2429.21,2436.14,130190000,2436.14
-1990-10-25,2504.21,2525.99,2464.11,2484.41,141460000,2484.41
-1990-10-24,2494.06,2523.02,2470.54,2504.21,149290000,2504.21
-1990-10-23,2516.09,2527.97,2480.20,2494.06,146300000,2494.06
-1990-10-22,2520.79,2535.40,2476.73,2516.09,152650000,2516.09
-1990-10-19,2453.47,2536.88,2453.47,2520.79,221480000,2520.79
-1990-10-18,2391.83,2461.63,2391.83,2452.72,204110000,2452.72
-1990-10-17,2381.19,2418.56,2358.17,2387.87,161260000,2387.87
-1990-10-16,2416.34,2434.41,2366.83,2381.19,149570000,2381.19
-1990-10-15,2398.02,2451.24,2354.95,2416.34,164980000,2416.34
-1990-10-12,2365.10,2428.71,2349.75,2398.02,187940000,2398.02
-1990-10-11,2407.92,2427.23,2344.31,2365.10,180060000,2365.10
-1990-10-10,2445.54,2472.03,2388.36,2407.92,167890000,2407.92
-1990-10-09,2514.60,2514.60,2437.87,2445.54,145610000,2445.54
-1990-10-08,2510.64,2548.02,2507.18,2523.76,99470000,2523.76
-1990-10-05,2516.83,2544.55,2453.47,2510.64,153380000,2510.64
-1990-10-04,2489.36,2528.22,2464.85,2516.83,145410000,2516.83
-1990-10-03,2505.20,2534.65,2470.79,2489.36,135490000,2489.36
-1990-10-02,2515.84,2565.35,2487.62,2505.20,188360000,2505.20
-1990-10-01,2452.48,2534.65,2446.53,2515.84,202210000,2515.84
-1990-09-28,2427.48,2465.59,2367.82,2452.48,201010000,2452.48
-1990-09-27,2459.65,2492.33,2396.29,2427.48,182690000,2427.48
-1990-09-26,2485.64,2496.04,2435.40,2459.65,155570000,2459.65
-1990-09-25,2452.97,2501.24,2437.38,2485.64,155940000,2485.64
-1990-09-24,2498.02,2498.02,2438.12,2452.97,162210000,2452.97
-1990-09-21,2518.32,2538.37,2479.95,2512.38,201050000,2512.38
-1990-09-20,2549.01,2549.01,2495.54,2518.32,145100000,2518.32
-1990-09-19,2571.29,2594.55,2534.41,2557.43,147530000,2557.43
-1990-09-18,2567.33,2587.87,2524.26,2571.29,141130000,2571.29
-1990-09-17,2564.11,2585.89,2537.13,2567.33,110600000,2567.33
-1990-09-14,2582.67,2585.15,2545.54,2564.11,133390000,2564.11
-1990-09-13,2625.74,2629.21,2570.54,2582.67,123370000,2582.67
-1990-09-12,2612.62,2639.11,2592.33,2625.74,129890000,2625.74
-1990-09-11,2615.59,2635.64,2586.88,2612.62,113220000,2612.62
-1990-09-10,2619.55,2665.35,2600.99,2615.59,119730000,2615.59
-1990-09-07,2596.29,2635.89,2577.72,2619.55,123800000,2619.55
-1990-09-06,2628.22,2633.17,2575.99,2596.29,125620000,2596.29
-1990-09-05,2613.37,2643.07,2588.61,2628.22,120610000,2628.22
-1990-09-04,2614.36,2618.07,2573.02,2613.37,92940000,2613.37
-1990-08-31,2593.32,2624.50,2569.31,2614.36,96480000,2614.36
-1990-08-30,2632.43,2641.34,2578.47,2593.32,120890000,2593.32
-1990-08-29,2614.85,2651.24,2596.53,2632.43,134240000,2632.43
-1990-08-28,2611.63,2629.95,2582.92,2614.85,127660000,2614.85
-1990-08-27,2590.59,2645.05,2590.59,2611.63,160150000,2611.63
-1990-08-24,2483.42,2555.69,2480.45,2532.92,199040000,2532.92
-1990-08-23,2539.60,2539.60,2459.41,2483.42,250440000,2483.42
-1990-08-22,2603.96,2630.69,2553.22,2560.15,175550000,2560.15
-1990-08-21,2645.53,2645.53,2566.09,2603.96,194630000,2603.96
-1990-08-20,2644.80,2679.21,2632.43,2656.44,129630000,2656.44
-1990-08-17,2679.21,2679.21,2598.02,2644.80,212560000,2644.80
-1990-08-16,2746.53,2746.53,2676.24,2681.44,138850000,2681.44
-1990-08-15,2747.77,2778.71,2736.38,2748.27,135210000,2748.27
-1990-08-14,2746.78,2773.02,2720.54,2747.77,130320000,2747.77
-1990-08-13,2716.58,2752.23,2676.73,2746.78,122820000,2746.78
-1990-08-10,2758.91,2763.61,2692.82,2716.58,145340000,2716.58
-1990-08-09,2734.90,2774.26,2716.58,2758.91,155810000,2758.91
-1990-08-08,2710.64,2763.37,2691.34,2734.90,190400000,2734.90
-1990-08-07,2716.34,2763.86,2676.24,2710.64,231580000,2710.64
-1990-08-06,2758.42,2758.42,2683.17,2716.34,240400000,2716.34
-1990-08-03,2863.86,2863.86,2722.03,2809.65,292360000,2809.65
-1990-08-02,2899.26,2903.71,2833.17,2864.60,253090000,2864.60
-1990-08-01,2905.20,2931.19,2875.00,2899.26,176810000,2899.26
-1990-07-31,2917.33,2940.10,2878.47,2905.20,173810000,2905.20
-1990-07-30,2898.51,2922.52,2861.14,2917.33,146470000,2917.33
-1990-07-27,2920.79,2938.36,2877.72,2898.51,149070000,2898.51
-1990-07-26,2930.94,2945.79,2888.12,2920.79,155040000,2920.79
-1990-07-25,2922.52,2946.53,2896.78,2930.94,163530000,2930.94
-1990-07-24,2904.70,2939.60,2866.83,2922.52,181920000,2922.52
-1990-07-23,2961.14,2961.39,2833.17,2904.70,209030000,2904.70
-1990-07-20,2993.81,3019.31,2953.71,2961.14,177810000,2961.14
-1990-07-19,2981.68,3006.19,2948.27,2993.81,161990000,2993.81
-1990-07-18,2999.75,3009.65,2963.61,2981.68,168760000,2981.68
-1990-07-17,2999.75,3024.26,2970.05,2999.75,176790000,2999.75
-1990-07-16,2980.20,3017.08,2971.78,2999.75,149450000,2999.75
-1990-07-13,2969.80,3012.38,2956.68,2980.20,215600000,2980.20
-1990-07-12,2932.67,2980.69,2917.82,2969.80,211510000,2969.80
-1990-07-11,2890.84,2942.33,2890.10,2932.67,162220000,2932.67
-1990-07-10,2914.11,2928.22,2882.18,2890.84,147630000,2890.84
-1990-07-09,2904.95,2927.97,2890.84,2914.11,119390000,2914.11
-1990-07-06,2879.21,2919.80,2867.57,2904.95,111730000,2904.95
-1990-07-05,2906.44,2906.44,2863.61,2879.21,128320000,2879.21
-1990-07-03,2899.26,2925.74,2891.09,2911.63,130050000,2911.63
-1990-07-02,2880.69,2908.66,2869.80,2899.26,130200000,2899.26
-1990-06-29,2878.71,2901.98,2865.84,2880.69,145510000,2880.69
-1990-06-28,2862.13,2896.04,2850.50,2878.71,136120000,2878.71
-1990-06-27,2842.33,2878.96,2821.53,2862.13,146620000,2862.13
-1990-06-26,2845.05,2882.92,2832.67,2842.33,141420000,2842.33
-1990-06-25,2857.18,2882.18,2834.90,2845.05,133100000,2845.05
-1990-06-22,2901.73,2931.93,2848.02,2857.18,172570000,2857.18
-1990-06-21,2895.30,2916.58,2870.05,2901.73,138570000,2901.73
-1990-06-20,2893.56,2914.60,2868.81,2895.30,137420000,2895.30
-1990-06-19,2882.18,2907.92,2866.58,2893.56,134930000,2893.56
-1990-06-18,2930.45,2930.45,2877.48,2882.18,133470000,2882.18
-1990-06-15,2928.22,2947.77,2902.72,2935.89,205130000,2935.89
-1990-06-14,2929.95,2943.56,2902.97,2928.22,135770000,2928.22
-1990-06-13,2933.42,2956.93,2910.15,2929.95,158910000,2929.95
-1990-06-12,2892.57,2947.52,2877.97,2933.42,157100000,2933.42
-1990-06-11,2862.38,2901.98,2852.97,2892.57,119550000,2892.57
-1990-06-08,2897.33,2908.50,2850.73,2862.38,142600000,2862.38
-1990-06-07,2911.65,2930.58,2880.34,2897.33,160360000,2897.33
-1990-06-06,2925.00,2936.65,2891.99,2911.65,164030000,2911.65
-1990-06-05,2935.19,2956.55,2911.89,2925.00,199720000,2925.00
-1990-06-04,2900.97,2943.69,2883.98,2935.19,175520000,2935.19
-1990-06-01,2876.66,2919.90,2868.69,2900.97,187860000,2900.97
-1990-05-31,2878.56,2900.62,2854.64,2876.66,165690000,2876.66
-1990-05-30,2870.49,2908.21,2853.89,2878.56,199540000,2878.56
-1990-05-29,2820.92,2876.19,2812.62,2870.49,137410000,2870.49
-1990-05-25,2855.55,2856.50,2806.69,2820.92,120250000,2820.92
-1990-05-24,2856.26,2878.08,2828.04,2855.55,155140000,2855.55
-1990-05-23,2852.23,2869.07,2824.95,2856.26,172330000,2856.26
-1990-05-22,2844.68,2877.13,2828.51,2852.23,203350000,2852.23
-1990-05-21,2819.91,2859.72,2802.08,2844.68,166280000,2844.68
-1990-05-18,2831.71,2838.43,2804.63,2819.91,162520000,2819.91
-1990-05-17,2819.68,2856.25,2811.57,2831.71,164770000,2831.71
-1990-05-16,2822.45,2841.44,2800.23,2819.68,159810000,2819.68
-1990-05-15,2821.53,2840.74,2798.15,2822.45,165730000,2822.45
-1990-05-14,2801.58,2857.87,2793.75,2821.53,225410000,2821.53
-1990-05-11,2743.02,2810.36,2743.02,2801.58,234040000,2801.58
-1990-05-10,2732.88,2755.63,2716.44,2738.51,158460000,2738.51
-1990-05-09,2733.56,2745.50,2710.14,2732.88,152220000,2732.88
-1990-05-08,2721.62,2739.41,2710.36,2733.56,144230000,2733.56
-1990-05-07,2710.36,2739.19,2698.87,2721.62,132760000,2721.62
-1990-05-04,2696.17,2718.92,2682.43,2710.36,140550000,2710.36
-1990-05-03,2689.64,2716.22,2682.88,2696.17,145560000,2696.17
-1990-05-02,2668.92,2697.30,2659.01,2689.64,141610000,2689.64
-1990-05-01,2656.76,2687.39,2651.35,2668.92,149020000,2668.92
-1990-04-30,2645.05,2667.79,2627.70,2656.76,122750000,2656.76
-1990-04-27,2676.58,2687.39,2639.19,2645.05,130630000,2645.05
-1990-04-26,2666.44,2691.89,2650.22,2676.58,141330000,2676.58
-1990-04-25,2654.50,2685.36,2649.32,2666.44,133480000,2666.44
-1990-04-24,2666.67,2686.04,2643.69,2654.50,137360000,2654.50
-1990-04-23,2690.77,2690.77,2650.90,2666.67,136150000,2666.67
-1990-04-20,2711.94,2722.07,2668.47,2695.95,174260000,2695.95
-1990-04-19,2732.88,2742.12,2700.00,2711.94,152930000,2711.94
-1990-04-18,2765.77,2775.68,2722.75,2732.88,147130000,2732.88
-1990-04-17,2763.06,2774.77,2738.29,2765.77,127990000,2765.77
-1990-04-16,2751.80,2793.47,2748.87,2763.06,142810000,2763.06
-1990-04-12,2729.73,2763.96,2729.50,2751.80,142470000,2751.80
-1990-04-11,2731.08,2751.35,2713.29,2729.73,141080000,2729.73
-1990-04-10,2722.07,2741.67,2707.88,2731.08,136020000,2731.08
-1990-04-09,2717.12,2737.39,2701.35,2722.07,114970000,2722.07
-1990-04-06,2721.17,2732.43,2695.50,2717.12,137490000,2717.12
-1990-04-05,2719.37,2746.17,2709.01,2721.17,144170000,2721.17
-1990-04-04,2736.71,2755.86,2708.56,2719.37,159540000,2719.37
-1990-04-03,2700.45,2747.30,2699.55,2736.71,154310000,2736.71
-1990-04-02,2707.21,2708.78,2668.69,2700.45,124360000,2700.45
-1990-03-30,2727.70,2736.71,2692.34,2707.21,139340000,2707.21
-1990-03-29,2743.69,2753.38,2711.49,2727.70,132190000,2727.70
-1990-03-28,2736.94,2755.63,2716.21,2743.69,142300000,2743.69
-1990-03-27,2707.66,2738.96,2691.89,2736.94,131610000,2736.94
-1990-03-26,2704.28,2735.81,2697.97,2707.66,116110000,2707.66
-1990-03-23,2695.72,2722.75,2688.06,2704.28,132070000,2704.28
-1990-03-22,2727.93,2734.01,2674.32,2695.72,175930000,2695.72
-1990-03-21,2738.74,2759.68,2718.24,2727.93,130990000,2727.93
-1990-03-20,2755.63,2775.00,2724.10,2738.74,177320000,2738.74
-1990-03-19,2741.22,2761.71,2706.53,2755.63,142300000,2755.63
-1990-03-16,2699.32,2745.50,2699.32,2741.22,222520000,2741.22
-1990-03-15,2687.84,2714.86,2677.93,2695.72,144410000,2695.72
-1990-03-14,2674.55,2705.18,2662.39,2687.84,145060000,2687.84
-1990-03-13,2686.71,2699.55,2657.88,2674.55,145440000,2674.55
-1990-03-12,2683.33,2698.65,2661.94,2686.71,114790000,2686.71
-1990-03-09,2696.17,2705.63,2665.54,2683.33,150410000,2683.33
-1990-03-08,2669.59,2705.18,2661.26,2696.17,170900000,2696.17
-1990-03-07,2676.80,2696.85,2656.08,2669.59,163580000,2669.59
-1990-03-06,2649.55,2684.46,2638.06,2676.80,143640000,2676.80
-1990-03-05,2660.36,2675.22,2636.71,2649.55,140110000,2649.55
-1990-03-02,2635.59,2669.82,2630.18,2660.36,164330000,2660.36
-1990-03-01,2627.25,2655.63,2607.88,2635.59,157930000,2635.59
-1990-02-28,2617.12,2652.48,2603.60,2627.25,184410000,2627.25
-1990-02-27,2602.48,2637.84,2592.12,2617.12,152590000,2617.12
-1990-02-26,2564.19,2606.30,2560.13,2602.48,148910000,2602.48
-1990-02-23,2574.77,2591.44,2540.99,2564.19,148490000,2564.19
-1990-02-22,2583.56,2622.30,2568.02,2574.77,184320000,2574.77
-1990-02-21,2596.85,2602.48,2556.31,2583.56,159240000,2583.56
-1990-02-20,2619.14,2619.14,2579.05,2596.85,147300000,2596.85
-1990-02-16,2649.55,2669.37,2623.65,2635.59,166840000,2635.59
-1990-02-15,2624.32,2658.78,2614.86,2649.55,174630000,2649.55
-1990-02-14,2624.10,2643.69,2608.11,2624.32,138530000,2624.32
-1990-02-13,2619.14,2639.19,2592.57,2624.10,144490000,2624.10
-1990-02-12,2648.20,2652.48,2610.59,2619.14,118390000,2619.14
-1990-02-09,2644.37,2666.67,2628.15,2648.20,146910000,2648.20
-1990-02-08,2640.09,2674.32,2622.30,2644.37,176240000,2644.37
-1990-02-07,2606.31,2651.35,2579.28,2640.09,186710000,2640.09
-1990-02-06,2622.52,2629.50,2588.29,2606.31,134070000,2606.31
-1990-02-05,2602.70,2633.56,2592.12,2622.52,130950000,2622.52
-1990-02-02,2586.26,2623.65,2577.03,2602.70,164400000,2602.70
-1990-02-01,2590.54,2611.49,2571.85,2586.26,154580000,2586.26
-1990-01-31,2546.85,2600.90,2546.85,2590.54,189660000,2590.54
-1990-01-30,2553.38,2576.13,2513.06,2543.24,186030000,2543.24
-1990-01-29,2559.23,2583.56,2522.97,2553.38,150770000,2553.38
-1990-01-26,2561.04,2591.67,2516.89,2559.23,198190000,2559.23
-1990-01-25,2604.50,2628.83,2546.17,2561.04,172270000,2561.04
-1990-01-24,2615.32,2619.59,2534.23,2604.50,207830000,2604.50
-1990-01-23,2600.45,2639.64,2584.01,2615.32,179300000,2615.32
-1990-01-22,2677.90,2683.33,2595.27,2600.45,148380000,2600.45
-1990-01-19,2666.38,2696.89,2657.85,2677.90,185590000,2677.90
-1990-01-18,2659.13,2678.11,2625.85,2666.38,178590000,2666.38
-1990-01-17,2692.62,2711.39,2643.77,2659.13,170470000,2659.13
-1990-01-16,2669.37,2698.38,2634.17,2692.62,186070000,2692.62
-1990-01-15,2689.21,2698.11,2656.36,2669.37,140590000,2669.37
-1990-01-12,2735.92,2735.92,2675.98,2689.21,183880000,2689.21
-1990-01-11,2750.64,2783.27,2748.29,2760.67,154390000,2760.67
-1990-01-10,2766.00,2772.82,2725.47,2750.64,175990000,2750.64
-1990-01-09,2794.37,2810.79,2760.03,2766.00,155210000,2766.00
-1990-01-08,2773.25,2803.97,2753.41,2794.37,140110000,2794.37
-1990-01-05,2796.08,2810.15,2758.11,2773.25,158530000,2773.25
-1990-01-04,2809.73,2821.46,2766.42,2796.08,177000000,2796.08
-1990-01-03,2810.15,2834.04,2786.26,2809.73,192330000,2809.73
-1990-01-02,2753.20,2811.65,2732.51,2810.15,162070000,2810.15
-1989-12-29,2732.30,2763.01,2726.96,2753.20,145940000,2753.20
-1989-12-28,2724.40,2742.53,2709.04,2732.30,128030000,2732.30
-1989-12-27,2709.26,2739.12,2700.30,2724.40,133740000,2724.40
-1989-12-26,2711.39,2728.88,2694.75,2709.26,77610000,2709.26
-1989-12-22,2691.13,2721.20,2682.59,2711.39,120980000,2711.39
-1989-12-21,2687.93,2714.16,2671.72,2691.13,175150000,2691.13
-1989-12-20,2695.61,2719.07,2667.02,2687.93,176520000,2687.93
-1989-12-19,2697.53,2720.14,2658.70,2695.61,186060000,2695.61
-1989-12-18,2739.55,2755.55,2679.82,2697.53,184750000,2697.53
-1989-12-15,2753.63,2763.65,2703.92,2739.55,240390000,2739.55
-1989-12-14,2761.09,2771.33,2732.08,2753.63,178700000,2753.63
-1989-12-13,2752.13,2784.77,2737.20,2761.09,184660000,2761.09
-1989-12-12,2728.24,2764.51,2716.51,2752.13,176820000,2752.13
-1989-12-11,2731.44,2742.75,2705.63,2728.24,147130000,2728.24
-1989-12-08,2720.78,2750.85,2716.51,2731.44,144910000,2731.44
-1989-12-07,2736.77,2756.83,2702.00,2720.78,161980000,2720.78
-1989-12-06,2741.68,2754.91,2722.70,2736.77,145850000,2736.77
-1989-12-05,2753.63,2773.89,2731.23,2741.68,154640000,2741.68
-1989-12-04,2747.65,2772.18,2731.02,2753.63,150360000,2753.63
-1989-12-01,2706.27,2763.87,2705.42,2747.65,199200000,2747.65
-1989-11-30,2688.78,2718.22,2681.95,2706.27,153200000,2706.27
-1989-11-29,2702.01,2713.10,2677.47,2688.78,147270000,2688.78
-1989-11-28,2694.97,2715.02,2677.26,2702.01,153770000,2702.01
-1989-11-27,2675.55,2713.95,2663.40,2694.97,149390000,2694.97
-1989-11-24,2657.00,2686.01,2657.00,2675.55,86290000,2675.55
-1989-11-22,2639.29,2668.30,2629.91,2656.78,145730000,2656.78
-1989-11-21,2632.04,2654.22,2614.97,2639.29,147900000,2639.29
-1989-11-20,2652.66,2659.56,2615.40,2632.04,128170000,2632.04
-1989-11-17,2635.66,2665.37,2623.15,2652.66,151020000,2652.66
-1989-11-16,2632.58,2650.61,2613.52,2635.66,148370000,2635.66
-1989-11-15,2610.25,2641.60,2600.00,2632.58,155130000,2632.58
-1989-11-14,2626.43,2640.57,2597.13,2610.25,143170000,2610.25
-1989-11-13,2625.61,2648.36,2602.05,2626.43,140750000,2626.43
-1989-11-10,2603.69,2635.86,2603.07,2625.61,131800000,2625.61
-1989-11-09,2623.36,2634.84,2595.90,2603.69,143390000,2603.69
-1989-11-08,2597.13,2644.26,2594.67,2623.36,170150000,2623.36
-1989-11-07,2582.17,2608.81,2563.11,2597.13,163000000,2597.13
-1989-11-06,2621.72,2621.72,2574.59,2582.17,135480000,2582.17
-1989-11-03,2631.56,2650.82,2612.91,2629.51,131500000,2629.51
-1989-11-02,2645.90,2653.69,2607.58,2631.56,152440000,2631.56
-1989-11-01,2645.08,2665.78,2622.95,2645.90,154240000,2645.90
-1989-10-31,2606.97,2662.09,2606.97,2645.08,176100000,2645.08
-1989-10-30,2596.72,2627.05,2588.11,2603.48,126630000,2603.48
-1989-10-27,2613.73,2621.11,2573.56,2596.72,170330000,2596.72
-1989-10-26,2653.28,2657.99,2597.74,2613.73,175240000,2613.73
-1989-10-25,2659.22,2684.84,2627.66,2653.28,155650000,2653.28
-1989-10-24,2662.91,2680.74,2570.28,2659.22,237960000,2659.22
-1989-10-23,2689.14,2704.71,2648.77,2662.91,135860000,2662.91
-1989-10-20,2683.20,2703.07,2660.25,2689.14,164830000,2689.14
-1989-10-19,2650.61,2707.58,2650.61,2683.20,198120000,2683.20
-1989-10-18,2638.73,2664.34,2610.66,2643.65,166900000,2643.65
-1989-10-17,2657.38,2665.37,2588.73,2638.73,224070000,2638.73
-1989-10-16,2569.26,2667.42,2496.93,2657.38,416290000,2657.38
-1989-10-13,2759.84,2773.36,2545.49,2569.26,251170000,2569.26
-1989-10-12,2744.06,2785.25,2744.06,2759.84,160120000,2759.84
-1989-10-11,2785.33,2790.98,2750.82,2773.36,164070000,2773.36
-1989-10-10,2791.41,2809.08,2766.53,2785.33,147560000,2785.33
-1989-10-09,2785.52,2804.52,2766.32,2791.41,86810000,2791.41
-1989-10-06,2773.56,2808.13,2765.58,2785.52,172520000,2785.52
-1989-10-05,2771.09,2797.11,2747.15,2773.56,177890000,2773.56
-1989-10-04,2754.56,2785.52,2738.79,2771.09,194590000,2771.09
-1989-10-03,2713.72,2765.96,2708.97,2754.56,182550000,2754.56
-1989-10-02,2692.82,2724.16,2677.05,2713.72,127410000,2713.72
-1989-09-29,2694.91,2721.12,2675.72,2692.82,155300000,2692.82
-1989-09-28,2673.06,2709.16,2657.86,2694.91,164240000,2694.91
-1989-09-27,2663.94,2685.03,2636.78,2673.06,158400000,2673.06
-1989-09-26,2659.19,2688.64,2652.93,2663.94,158350000,2663.94
-1989-09-25,2681.61,2685.41,2647.61,2659.19,121130000,2659.19
-1989-09-22,2680.28,2696.62,2667.55,2681.61,133350000,2681.61
-1989-09-21,2683.89,2707.83,2665.65,2680.28,146930000,2680.28
-1989-09-20,2687.31,2703.46,2672.49,2683.89,136640000,2683.89
-1989-09-19,2687.50,2709.35,2675.91,2687.31,141610000,2687.31
-1989-09-18,2674.58,2694.91,2662.61,2687.50,136940000,2687.50
-1989-09-15,2664.89,2695.67,2643.05,2674.58,234870000,2674.58
-1989-09-14,2679.52,2690.16,2647.61,2664.89,149250000,2664.89
-1989-09-13,2707.26,2725.87,2671.35,2679.52,175330000,2679.52
-1989-09-12,2704.41,2726.06,2689.59,2707.26,142140000,2707.26
-1989-09-11,2709.54,2720.74,2677.05,2704.41,126020000,2704.41
-1989-09-08,2706.88,2728.72,2679.33,2709.54,154090000,2709.54
-1989-09-07,2719.79,2748.10,2692.06,2706.88,160160000,2706.88
-1989-09-06,2744.68,2752.09,2697.95,2719.79,161800000,2719.79
-1989-09-05,2752.09,2768.24,2731.76,2744.68,145180000,2744.68
-1989-09-01,2737.27,2766.91,2726.82,2752.09,133300000,2752.09
-1989-08-31,2728.15,2744.68,2717.90,2737.27,144820000,2737.27
-1989-08-30,2726.63,2753.61,2705.36,2728.15,174350000,2728.15
-1989-08-29,2743.36,2757.60,2704.98,2726.63,175210000,2726.63
-1989-08-28,2732.36,2748.10,2710.74,2743.36,131180000,2743.36
-1989-08-25,2734.64,2758.73,2715.48,2732.36,165930000,2732.36
-1989-08-24,2678.11,2738.43,2672.23,2734.64,225520000,2734.64
-1989-08-23,2650.99,2683.61,2641.20,2678.11,159640000,2678.11
-1989-08-22,2647.00,2659.71,2619.71,2650.99,141930000,2650.99
-1989-08-21,2687.97,2693.29,2640.74,2647.00,136800000,2647.00
-1989-08-18,2679.63,2697.29,2665.97,2687.97,145810000,2687.97
-1989-08-17,2693.29,2703.72,2663.13,2679.63,157560000,2679.63
-1989-08-16,2687.78,2712.25,2680.58,2693.29,150060000,2693.29
-1989-08-15,2677.92,2705.24,2665.02,2687.78,148770000,2687.78
-1989-08-14,2683.99,2702.96,2654.97,2677.92,142010000,2677.92
-1989-08-11,2712.63,2747.53,2668.06,2683.99,197550000,2683.99
-1989-08-10,2686.08,2732.93,2669.58,2712.63,198660000,2712.63
-1989-08-09,2699.17,2725.15,2678.11,2686.08,209900000,2686.08
-1989-08-08,2694.99,2718.51,2676.97,2699.17,200340000,2699.17
-1989-08-07,2653.45,2701.82,2643.59,2694.99,197580000,2694.99
-1989-08-04,2661.61,2679.44,2629.17,2653.45,169750000,2653.45
-1989-08-03,2657.44,2676.97,2640.74,2661.61,168690000,2661.61
-1989-08-02,2641.12,2668.44,2626.33,2657.44,181760000,2657.44
-1989-08-01,2660.66,2687.03,2628.98,2641.12,225280000,2641.12
-1989-07-31,2635.24,2668.25,2615.52,2660.66,166650000,2660.66
-1989-07-28,2635.43,2656.68,2615.71,2635.24,180610000,2635.24
-1989-07-27,2613.05,2649.28,2604.70,2635.43,213680000,2635.43
-1989-07-26,2583.08,2621.21,2563.73,2613.05,188270000,2613.05
-1989-07-25,2584.98,2610.39,2565.63,2583.08,179270000,2583.08
-1989-07-24,2607.36,2607.55,2574.36,2584.98,136260000,2584.98
-1989-07-21,2575.49,2613.81,2558.23,2607.36,174880000,2607.36
-1989-07-20,2584.41,2616.46,2566.58,2575.49,204590000,2575.49
-1989-07-19,2546.47,2590.48,2546.47,2584.41,215740000,2584.41
-1989-07-18,2553.49,2560.70,2531.68,2544.76,152350000,2544.76
-1989-07-17,2554.82,2565.82,2535.85,2553.49,131960000,2553.49
-1989-07-14,2538.32,2563.16,2512.52,2554.82,183480000,2554.82
-1989-07-13,2532.63,2553.30,2517.83,2538.32,153820000,2538.32
-1989-07-12,2514.61,2543.25,2504.93,2532.63,160550000,2532.63
-1989-07-11,2503.41,2537.37,2503.41,2514.61,171590000,2514.61
-1989-07-10,2487.86,2513.47,2482.74,2502.66,131870000,2502.66
-1989-07-07,2462.44,2503.22,2456.56,2487.86,166430000,2487.86
-1989-07-06,2456.56,2475.53,2446.51,2462.44,140450000,2462.44
-1989-07-05,2452.77,2467.18,2431.53,2456.56,127710000,2456.56
-1989-07-03,2440.06,2461.49,2434.37,2452.77,68870000,2452.77
-1989-06-30,2458.27,2466.05,2412.94,2440.06,170490000,2440.06
-1989-06-29,2500.00,2500.00,2451.25,2458.27,167100000,2458.27
-1989-06-28,2526.37,2531.87,2485.77,2504.74,158470000,2504.74
-1989-06-27,2511.38,2544.95,2507.40,2526.37,171090000,2526.37
-1989-06-26,2531.87,2536.99,2500.57,2511.38,143600000,2511.38
-1989-06-23,2490.14,2536.04,2490.14,2531.87,198720000,2531.87
-1989-06-22,2464.91,2489.75,2452.77,2481.98,176510000,2481.98
-1989-06-21,2472.88,2489.38,2450.87,2464.91,168830000,2464.91
-1989-06-20,2479.89,2496.02,2463.96,2472.88,167650000,2472.88
-1989-06-19,2486.38,2497.15,2465.10,2479.89,130720000,2479.89
-1989-06-16,2475.00,2495.52,2461.57,2486.38,244510000,2486.38
-1989-06-15,2503.36,2505.97,2460.82,2475.00,179480000,2475.00
-1989-06-14,2503.54,2520.71,2486.01,2503.36,170540000,2503.36
-1989-06-13,2518.84,2520.71,2484.70,2503.54,164870000,2503.54
-1989-06-12,2513.42,2528.17,2484.70,2518.84,151460000,2518.84
-1989-06-09,2516.91,2533.64,2494.85,2513.42,173240000,2513.42
-1989-06-08,2512.32,2534.38,2499.81,2516.91,212310000,2516.91
-1989-06-07,2496.32,2526.65,2493.38,2512.32,213710000,2512.32
-1989-06-06,2480.70,2507.54,2471.32,2496.32,187570000,2496.32
-1989-06-05,2517.83,2523.71,2476.84,2480.70,163420000,2480.70
-1989-06-02,2492.46,2530.88,2492.46,2517.83,229140000,2517.83
-1989-06-01,2480.15,2504.23,2469.67,2490.63,223160000,2490.63
-1989-05-31,2475.55,2497.06,2462.68,2480.15,162530000,2480.15
-1989-05-30,2493.77,2510.66,2459.74,2475.55,151780000,2475.55
-1989-05-26,2482.59,2501.83,2473.06,2493.77,143120000,2493.77
-1989-05-25,2483.87,2498.72,2467.56,2482.59,154470000,2482.59
-1989-05-24,2478.01,2494.68,2458.03,2483.87,178600000,2483.87
-1989-05-23,2501.83,2501.83,2467.19,2478.01,187690000,2478.01
-1989-05-22,2501.10,2521.63,2481.30,2502.02,185010000,2502.02
-1989-05-19,2470.12,2509.34,2468.29,2501.10,242410000,2501.10
-1989-05-18,2462.43,2482.77,2448.86,2470.12,177480000,2470.12
-1989-05-17,2453.45,2478.74,2439.70,2462.43,191210000,2462.43
-1989-05-16,2463.89,2469.76,2439.88,2453.45,173100000,2453.45
-1989-05-15,2439.70,2474.89,2432.37,2463.89,179350000,2463.89
-1989-05-12,2408.54,2447.95,2408.54,2439.70,221490000,2439.70
-1989-05-11,2374.45,2393.51,2365.83,2382.88,151620000,2382.88
-1989-05-10,2371.33,2387.83,2361.25,2374.45,146000000,2374.45
-1989-05-09,2376.47,2390.03,2356.85,2371.33,150090000,2371.33
-1989-05-08,2381.96,2387.28,2356.30,2376.47,135130000,2376.47
-1989-05-05,2384.90,2415.69,2371.88,2381.96,180810000,2381.96
-1989-05-04,2393.70,2399.01,2373.35,2384.90,153130000,2384.90
-1989-05-03,2402.86,2410.56,2382.51,2393.70,171690000,2393.70
-1989-05-02,2414.96,2434.38,2394.61,2402.86,172560000,2402.86
-1989-05-01,2418.80,2420.45,2390.03,2414.96,138050000,2414.96
-1989-04-28,2418.99,2430.17,2403.59,2418.80,158390000,2418.80
-1989-04-27,2389.10,2433.10,2387.83,2418.99,191170000,2418.99
-1989-04-26,2386.85,2404.14,2373.90,2389.10,146090000,2389.10
-1989-04-25,2402.68,2421.55,2378.85,2386.85,165430000,2386.85
-1989-04-24,2409.46,2416.06,2385.08,2402.68,142100000,2402.68
-1989-04-21,2377.38,2412.57,2373.35,2409.46,187310000,2409.46
-1989-04-20,2386.91,2399.19,2356.85,2377.38,175970000,2377.38
-1989-04-19,2379.40,2398.46,2369.50,2386.91,191510000,2386.91
-1989-04-18,2351.36,2386.00,2351.36,2379.40,208650000,2379.40
-1989-04-17,2337.06,2348.42,2324.23,2337.79,128540000,2337.79
-1989-04-14,2308.83,2342.93,2308.83,2337.06,169780000,2337.06
-1989-04-13,2319.65,2321.85,2289.59,2296.00,141590000,2296.00
-1989-04-12,2311.58,2332.84,2304.44,2319.65,165200000,2319.65
-1989-04-11,2301.87,2321.48,2295.27,2311.58,146830000,2311.58
-1989-04-10,2304.80,2316.35,2293.62,2301.87,123990000,2301.87
-1989-04-07,2291.97,2314.88,2282.07,2304.80,156950000,2304.80
-1989-04-06,2304.80,2305.72,2282.81,2291.97,146530000,2291.97
-1989-04-05,2298.20,2315.80,2286.84,2304.80,165880000,2304.80
-1989-04-04,2304.80,2314.88,2282.44,2298.20,160680000,2298.20
-1989-04-03,2293.62,2317.45,2284.09,2304.80,164660000,2304.80
-1989-03-31,2281.34,2303.34,2277.49,2293.62,170960000,2293.62
-1989-03-30,2281.52,2296.92,2264.30,2281.34,159950000,2281.34
-1989-03-29,2275.54,2293.62,2262.65,2281.52,144240000,2281.52
-1989-03-28,2258.93,2287.86,2258.93,2275.54,146420000,2275.54
-1989-03-27,2243.04,2264.29,2234.46,2257.86,112960000,2257.86
-1989-03-23,2263.21,2274.82,2235.89,2243.04,153750000,2243.04
-1989-03-22,2266.25,2276.61,2247.14,2263.21,146570000,2263.21
-1989-03-21,2262.50,2284.82,2259.64,2266.25,142010000,2266.25
-1989-03-20,2286.25,2286.25,2249.46,2262.50,151260000,2262.50
-1989-03-17,2307.68,2307.68,2267.86,2292.14,242900000,2292.14
-1989-03-16,2320.54,2351.07,2315.36,2340.71,196040000,2340.71
-1989-03-15,2306.25,2332.86,2300.71,2320.54,167070000,2320.54
-1989-03-14,2306.25,2322.68,2296.79,2306.25,139970000,2306.25
-1989-03-13,2282.68,2319.64,2282.68,2306.25,140460000,2306.25
-1989-03-10,2291.43,2295.54,2261.61,2282.14,146830000,2282.14
-1989-03-09,2295.54,2306.61,2282.86,2291.43,143160000,2291.43
-1989-03-08,2290.71,2316.79,2280.00,2295.54,167620000,2295.54
-1989-03-07,2294.82,2308.57,2278.93,2290.71,172500000,2290.71
-1989-03-06,2274.29,2302.50,2270.36,2294.82,168880000,2294.82
-1989-03-03,2265.71,2281.79,2255.00,2274.29,151790000,2274.29
-1989-03-02,2243.04,2274.82,2239.82,2265.71,161980000,2265.71
-1989-03-01,2258.39,2277.50,2234.82,2243.04,177210000,2243.04
-1989-02-28,2250.36,2269.82,2242.68,2258.39,147430000,2258.39
-1989-02-27,2245.54,2260.18,2232.14,2250.36,139900000,2250.36
-1989-02-24,2289.46,2291.79,2242.68,2245.54,160680000,2245.54
-1989-02-23,2283.93,2295.71,2266.96,2289.46,150370000,2289.46
-1989-02-22,2326.43,2327.50,2276.43,2283.93,163140000,2283.93
-1989-02-21,2324.82,2340.89,2311.79,2326.43,141950000,2326.43
-1989-02-17,2311.43,2339.11,2301.96,2324.82,159520000,2324.82
-1989-02-16,2303.93,2326.07,2293.04,2311.43,177450000,2311.43
-1989-02-15,2281.25,2309.64,2275.71,2303.93,154220000,2303.93
-1989-02-14,2282.50,2308.04,2274.82,2281.25,150610000,2281.25
-1989-02-13,2286.07,2295.71,2266.07,2282.50,143520000,2282.50
-1989-02-10,2322.32,2322.32,2278.93,2286.07,173560000,2286.07
-1989-02-09,2343.21,2347.68,2308.39,2323.04,224220000,2323.04
-1989-02-08,2347.14,2369.29,2332.86,2343.21,189420000,2343.21
-1989-02-07,2321.07,2363.75,2314.64,2347.14,217260000,2347.14
-1989-02-06,2331.25,2338.04,2307.67,2321.07,150980000,2321.07
-1989-02-03,2333.75,2348.75,2319.29,2331.25,172980000,2331.25
-1989-02-02,2338.21,2352.86,2319.64,2333.75,183430000,2333.75
-1989-02-01,2342.32,2355.00,2319.29,2338.21,215640000,2338.21
-1989-01-31,2324.11,2350.18,2302.68,2342.32,194050000,2342.32
-1989-01-30,2322.86,2336.61,2304.82,2324.11,167830000,2324.11
-1989-01-27,2295.18,2349.64,2295.18,2322.86,254870000,2322.86
-1989-01-26,2265.89,2303.57,2252.86,2291.07,212250000,2291.07
-1989-01-25,2256.43,2277.68,2242.32,2265.89,183610000,2265.89
-1989-01-24,2218.39,2264.82,2214.82,2256.43,189620000,2256.43
-1989-01-23,2235.36,2254.64,2214.29,2218.39,141640000,2218.39
-1989-01-20,2239.11,2249.46,2221.25,2235.36,166120000,2235.36
-1989-01-19,2238.75,2254.64,2225.71,2239.11,192030000,2239.11
-1989-01-18,2214.64,2247.32,2202.50,2238.75,187450000,2238.75
-1989-01-17,2224.64,2227.50,2203.75,2214.64,143930000,2214.64
-1989-01-16,2226.07,2236.25,2215.36,2224.64,117380000,2224.64
-1989-01-13,2222.32,2235.00,2210.54,2226.07,132320000,2226.07
-1989-01-12,2206.43,2239.11,2200.71,2222.32,183000000,2222.32
-1989-01-11,2193.21,2211.96,2185.71,2206.43,148950000,2206.43
-1989-01-10,2199.46,2213.75,2182.32,2193.21,140420000,2193.21
-1989-01-09,2194.29,2209.11,2185.00,2199.46,163180000,2199.46
-1989-01-06,2190.54,2213.75,2182.32,2194.29,161330000,2194.29
-1989-01-05,2177.68,2205.18,2173.04,2190.54,174040000,2190.54
-1989-01-04,2146.61,2183.39,2146.61,2177.68,149700000,2177.68
-1989-01-03,2168.39,2168.39,2127.14,2144.64,128500000,2144.64
-1988-12-30,2182.68,2193.75,2162.50,2168.57,127210000,2168.57
-1988-12-29,2166.43,2193.04,2165.18,2182.68,131290000,2182.68
-1988-12-28,2162.68,2179.64,2153.57,2166.43,110630000,2166.43
-1988-12-27,2168.93,2179.29,2156.43,2162.68,87490000,2162.68
-1988-12-23,2160.36,2176.79,2157.86,2168.93,81760000,2168.93
-1988-12-22,2164.64,2176.43,2151.43,2160.36,150510000,2160.36
-1988-12-21,2166.07,2178.57,2146.07,2164.64,147250000,2164.64
-1988-12-20,2172.68,2192.68,2161.25,2166.07,161090000,2166.07
-1988-12-19,2150.71,2179.64,2141.07,2172.68,162250000,2172.68
-1988-12-16,2133.00,2155.00,2131.25,2150.71,196480000,2150.71
-1988-12-15,2134.25,2146.87,2120.91,2133.00,136820000,2133.00
-1988-12-14,2143.49,2149.71,2121.44,2134.25,132350000,2134.25
-1988-12-13,2139.58,2151.14,2119.31,2143.49,132340000,2143.49
-1988-12-12,2143.49,2165.18,2133.89,2139.58,124160000,2139.58
-1988-12-09,2141.71,2157.00,2131.40,2143.49,133770000,2143.49
-1988-12-08,2153.63,2162.70,2133.18,2141.71,124150000,2141.71
-1988-12-07,2149.36,2167.50,2136.38,2153.63,148360000,2153.63
-1988-12-06,2123.76,2158.96,2117.18,2149.36,158340000,2149.36
-1988-12-05,2092.64,2135.49,2092.64,2123.76,144660000,2123.76
-1988-12-02,2101.88,2105.80,2075.39,2092.28,124610000,2092.28
-1988-12-01,2114.51,2120.02,2095.48,2101.88,129380000,2101.88
-1988-11-30,2101.53,2126.60,2095.48,2114.51,157810000,2114.51
-1988-11-29,2081.44,2112.73,2072.37,2101.53,127420000,2101.53
-1988-11-28,2074.68,2095.48,2062.23,2081.44,123480000,2081.44
-1988-11-25,2085.53,2085.53,2062.77,2074.68,72090000,2074.68
-1988-11-23,2077.70,2103.49,2071.48,2092.28,112010000,2092.28
-1988-11-22,2065.97,2086.77,2052.63,2077.70,127000000,2077.70
-1988-11-21,2062.41,2070.06,2036.81,2065.97,120430000,2065.97
-1988-11-18,2052.45,2070.41,2047.12,2062.41,119320000,2062.41
-1988-11-17,2038.58,2064.19,2033.25,2052.45,141280000,2052.45
-1988-11-16,2077.17,2081.43,2026.67,2038.58,161710000,2038.58
-1988-11-15,2065.08,2088.02,2060.28,2077.17,115170000,2077.17
-1988-11-14,2067.03,2084.81,2050.85,2065.08,142900000,2065.08
-1988-11-11,2107.04,2107.04,2063.48,2067.03,135500000,2067.03
-1988-11-10,2118.24,2132.82,2103.31,2114.69,128920000,2114.69
-1988-11-09,2127.49,2134.25,2100.82,2118.24,153140000,2118.24
-1988-11-08,2124.64,2146.87,2119.67,2127.49,141660000,2127.49
-1988-11-07,2143.14,2143.14,2113.62,2124.64,133870000,2124.64
-1988-11-04,2170.34,2173.90,2139.58,2145.80,143580000,2145.80
-1988-11-03,2156.83,2185.99,2153.45,2170.34,152980000,2170.34
-1988-11-02,2150.96,2167.67,2131.40,2156.83,161300000,2156.83
-1988-11-01,2148.65,2165.36,2132.82,2150.96,151250000,2150.96
-1988-10-31,2149.89,2161.63,2125.36,2148.65,143460000,2148.65
-1988-10-28,2140.83,2166.43,2135.67,2149.89,146300000,2149.89
-1988-10-27,2165.18,2165.54,2120.90,2140.83,196540000,2140.83
-1988-10-26,2173.36,2182.61,2148.47,2165.18,181550000,2165.18
-1988-10-25,2170.34,2188.66,2156.83,2173.36,155190000,2173.36
-1988-10-24,2183.50,2195.06,2162.16,2170.34,170590000,2170.34
-1988-10-21,2181.19,2193.28,2152.56,2183.50,195410000,2183.50
-1988-10-20,2137.27,2183.68,2129.80,2181.19,189580000,2181.19
-1988-10-19,2159.85,2173.01,2110.95,2137.27,186350000,2137.27
-1988-10-18,2140.47,2163.41,2124.29,2159.85,162500000,2159.85
-1988-10-17,2133.18,2150.60,2120.02,2140.47,119290000,2140.47
-1988-10-14,2133.36,2153.80,2118.77,2133.18,160240000,2133.18
-1988-10-13,2126.24,2149.54,2114.33,2133.36,154530000,2133.36
-1988-10-12,2146.34,2146.34,2113.44,2126.24,154840000,2126.24
-1988-10-11,2158.96,2164.83,2137.09,2156.47,140900000,2156.47
-1988-10-10,2150.25,2167.85,2139.05,2158.96,124660000,2158.96
-1988-10-07,2112.02,2157.72,2112.02,2150.25,216390000,2150.25
-1988-10-06,2106.51,2118.07,2092.64,2107.75,153570000,2107.75
-1988-10-05,2102.06,2119.84,2082.33,2106.51,175130000,2106.51
-1988-10-04,2105.26,2119.49,2090.68,2102.06,157760000,2102.06
-1988-10-03,2112.91,2116.82,2083.39,2105.26,130380000,2105.26
-1988-09-30,2119.31,2140.29,2104.02,2112.91,175750000,2112.91
-1988-09-29,2085.53,2123.76,2084.46,2119.31,155790000,2119.31
-1988-09-28,2082.33,2096.37,2070.23,2085.53,113720000,2085.53
-1988-09-27,2085.17,2095.30,2069.88,2082.33,113010000,2082.33
-1988-09-26,2090.68,2098.33,2075.75,2085.17,116420000,2085.17
-1988-09-23,2080.01,2097.79,2070.41,2090.68,145100000,2090.68
-1988-09-22,2090.50,2097.08,2066.68,2080.01,150670000,2080.01
-1988-09-21,2087.48,2103.31,2078.77,2090.50,127400000,2090.50
-1988-09-20,2081.08,2097.26,2073.26,2087.48,142220000,2087.48
-1988-09-19,2096.55,2096.55,2066.86,2081.08,135770000,2081.08
-1988-09-16,2092.28,2113.26,2077.70,2098.15,211110000,2098.15
-1988-09-15,2100.64,2112.55,2084.28,2092.28,161210000,2092.28
-1988-09-14,2083.04,2111.66,2079.13,2100.64,177220000,2100.64
-1988-09-13,2072.37,2088.19,2055.30,2083.04,162490000,2083.04
-1988-09-12,2068.81,2088.55,2057.43,2072.37,114880000,2072.37
-1988-09-09,2063.12,2088.73,2038.94,2068.81,141540000,2068.81
-1988-09-08,2065.79,2079.30,2052.10,2063.12,149380000,2063.12
-1988-09-07,2065.26,2084.10,2052.98,2065.79,139590000,2065.79
-1988-09-06,2054.59,2074.68,2046.41,2065.26,122250000,2065.26
-1988-09-02,2022.40,2064.72,2022.40,2054.59,159840000,2054.59
-1988-09-01,2027.56,2027.56,1988.44,2002.31,144090000,2002.31
-1988-08-31,2038.23,2052.45,2022.94,2031.65,130480000,2031.65
-1988-08-30,2041.43,2052.63,2028.63,2038.23,108720000,2038.23
-1988-08-29,2019.56,2047.47,2019.56,2041.43,99280000,2041.43
-1988-08-26,2010.85,2027.38,2002.13,2017.43,89240000,2017.43
-1988-08-25,2022.05,2022.05,1990.40,2010.85,127640000,2010.85
-1988-08-24,1990.04,2028.98,1990.04,2026.67,127800000,2026.67
-1988-08-23,1990.22,2008.36,1978.66,1989.33,119540000,1989.33
-1988-08-22,2016.00,2027.56,1987.02,1990.22,122250000,1990.22
-1988-08-19,2027.03,2048.89,2011.38,2016.00,122370000,2016.00
-1988-08-18,2025.96,2046.59,2014.22,2027.03,139820000,2027.03
-1988-08-17,2021.51,2042.50,2003.38,2025.96,169500000,2025.96
-1988-08-16,2004.27,2043.56,1993.78,2021.51,162790000,2021.51
-1988-08-15,2037.52,2040.72,1998.76,2004.27,128560000,2004.27
-1988-08-12,2039.30,2046.41,2019.38,2037.52,176960000,2037.52
-1988-08-11,2034.14,2050.68,2014.05,2039.30,173000000,2039.30
-1988-08-10,2078.41,2078.41,2023.65,2034.14,200950000,2034.14
-1988-08-09,2107.40,2110.95,2061.17,2079.13,200710000,2079.13
-1988-08-08,2119.13,2134.60,2103.13,2107.40,148800000,2107.40
-1988-08-05,2126.60,2128.73,2105.44,2119.13,113400000,2119.13
-1988-08-04,2134.07,2147.23,2117.71,2126.60,157240000,2126.60
-1988-08-03,2131.22,2147.94,2115.40,2134.07,203590000,2134.07
-1988-08-02,2130.51,2151.85,2112.20,2131.22,166660000,2131.22
-1988-08-01,2128.73,2146.16,2111.84,2130.51,138170000,2130.51
-1988-07-29,2084.28,2133.01,2084.28,2128.73,192340000,2128.73
-1988-07-28,2053.70,2089.26,2047.30,2082.33,154570000,2082.33
-1988-07-27,2073.97,2089.97,2047.30,2053.70,135890000,2053.70
-1988-07-26,2071.83,2089.79,2059.57,2073.97,121960000,2073.97
-1988-07-25,2060.99,2082.68,2048.54,2071.83,215140000,2071.83
-1988-07-22,2086.59,2092.46,2050.32,2060.99,148880000,2060.99
-1988-07-21,2110.60,2113.62,2077.17,2086.59,149460000,2086.59
-1988-07-20,2097.26,2119.31,2091.39,2110.60,151990000,2110.60
-1988-07-19,2117.89,2127.67,2081.08,2097.26,144110000,2097.26
-1988-07-18,2129.45,2132.47,2099.40,2117.89,156210000,2117.89
-1988-07-15,2113.62,2140.11,2099.57,2129.45,199710000,2129.45
-1988-07-14,2104.37,2125.71,2089.26,2113.62,172410000,2113.62
-1988-07-13,2092.64,2114.15,2073.44,2104.37,218930000,2104.37
-1988-07-12,2111.31,2121.44,2077.52,2092.64,161650000,2092.64
-1988-07-11,2106.15,2126.07,2098.68,2111.31,123300000,2111.31
-1988-07-08,2122.69,2133.53,2099.40,2106.15,136070000,2106.15
-1988-07-07,2130.16,2136.02,2101.35,2122.69,156100000,2122.69
-1988-07-06,2158.61,2169.45,2107.40,2130.16,189630000,2130.16
-1988-07-05,2131.58,2162.52,2117.71,2158.61,171790000,2158.61
-1988-07-01,2141.71,2151.14,2118.95,2131.58,238330000,2131.58
-1988-06-30,2121.98,2147.22,2112.38,2141.71,227410000,2141.71
-1988-06-29,2130.87,2144.91,2106.15,2121.98,159590000,2121.98
-1988-06-28,2108.46,2139.94,2100.11,2130.87,152370000,2130.87
-1988-06-27,2142.96,2147.76,2101.17,2108.46,264410000,2108.46
-1988-06-24,2148.29,2165.36,2133.53,2142.96,179880000,2142.96
-1988-06-23,2152.20,2169.10,2131.58,2148.29,185770000,2148.29
-1988-06-22,2131.05,2160.10,2131.05,2152.20,217510000,2152.20
-1988-06-21,2083.93,2115.75,2072.55,2109.17,155060000,2109.17
-1988-06-20,2100.11,2100.11,2072.72,2083.93,116750000,2083.93
-1988-06-17,2094.24,2116.47,2070.06,2104.02,343920000,2104.02
-1988-06-16,2120.73,2120.73,2081.97,2094.24,161550000,2094.24
-1988-06-15,2124.47,2137.45,2109.53,2131.40,150260000,2131.40
-1988-06-14,2111.13,2148.12,2111.13,2124.47,227150000,2124.47
-1988-06-13,2101.71,2114.15,2084.64,2099.40,125310000,2099.40
-1988-06-10,2093.35,2123.58,2084.81,2101.71,155710000,2101.71
-1988-06-09,2102.95,2119.31,2081.79,2093.35,235160000,2093.35
-1988-06-08,2055.83,2113.62,2055.83,2102.95,310030000,2102.95
-1988-06-07,2075.21,2082.86,2042.85,2054.59,168710000,2054.59
-1988-06-06,2071.31,2083.93,2049.08,2075.21,152460000,2075.21
-1988-06-03,2052.45,2080.73,2040.00,2071.31,189600000,2071.31
-1988-06-02,2064.01,2073.26,2030.94,2052.45,193540000,2052.45
-1988-06-01,2031.12,2076.28,2021.34,2064.01,234560000,2064.01
-1988-05-31,1959.38,2034.50,1959.38,2031.12,247610000,2031.12
-1988-05-27,1966.70,1970.84,1944.35,1956.44,133590000,1956.44
-1988-05-26,1961.37,1981.15,1951.28,1966.70,164260000,1966.70
-1988-05-25,1962.53,1984.58,1952.42,1961.37,138310000,1961.37
-1988-05-24,1941.48,1967.67,1938.16,1962.53,139930000,1962.53
-1988-05-23,1952.59,1962.37,1927.22,1941.48,102640000,1941.48
-1988-05-20,1958.72,1978.78,1940.48,1952.59,120600000,1952.59
-1988-05-19,1951.09,1963.86,1921.58,1958.72,165160000,1958.72
-1988-05-18,1986.41,1992.87,1941.31,1951.09,209420000,1951.09
-1988-05-17,2007.63,2026.69,1982.10,1986.41,133850000,1986.41
-1988-05-16,1990.55,2012.60,1980.27,2007.63,155010000,2007.63
-1988-05-13,1971.65,2001.49,1971.65,1990.55,147240000,1990.55
-1988-05-12,1965.85,1986.07,1960.54,1968.00,143880000,1968.00
-1988-05-11,1988.56,1988.56,1950.27,1965.85,176720000,1965.85
-1988-05-10,1997.35,2020.23,1984.42,2003.64,131200000,2003.64
-1988-05-09,2007.46,2013.59,1984.08,1997.35,166320000,1997.35
-1988-05-06,2013.59,2013.59,1997.84,2007.46,129080000,2007.46
-1988-05-05,2036.31,2038.46,2008.95,2020.23,171840000,2020.23
-1988-05-04,2058.36,2067.14,2029.51,2036.31,141320000,2036.31
-1988-05-03,2043.27,2071.95,2036.64,2058.36,176920000,2058.36
-1988-05-02,2032.33,2050.40,2019.89,2043.27,136470000,2043.27
-1988-04-29,2041.28,2047.91,2014.09,2032.33,135620000,2032.33
-1988-04-28,2047.91,2057.53,2026.03,2041.28,128680000,2041.28
-1988-04-27,2044.76,2066.64,2033.16,2047.91,133810000,2047.91
-1988-04-26,2035.97,2062.83,2023.04,2044.76,152300000,2044.76
-1988-04-25,2015.09,2048.57,2011.60,2035.97,156950000,2035.97
-1988-04-22,1987.40,2029.01,1985.58,2015.09,152520000,2015.09
-1988-04-21,1985.41,2030.50,1968.00,1987.40,168440000,1987.40
-1988-04-20,1999.50,2015.42,1975.46,1985.41,147590000,1985.41
-1988-04-19,2008.12,2047.08,1990.55,1999.50,161910000,1999.50
-1988-04-18,2013.93,2023.04,1985.74,2008.12,144650000,2008.12
-1988-04-15,2005.64,2031.33,1969.99,2013.93,234160000,2013.93
-1988-04-14,2083.22,2083.22,1998.18,2005.64,211810000,2005.64
-1988-04-13,2110.08,2121.35,2082.56,2107.10,185120000,2107.10
-1988-04-12,2095.99,2120.69,2085.38,2110.08,146400000,2110.08
-1988-04-11,2090.19,2110.08,2075.27,2095.99,146370000,2095.99
-1988-04-08,2062.17,2103.78,2051.06,2090.19,169300000,2090.19
-1988-04-07,2061.67,2084.22,2042.94,2062.17,177840000,2062.17
-1988-04-06,1997.51,2067.47,1987.67,2061.67,189760000,2061.67
-1988-04-05,1980.60,2011.27,1969.99,1997.51,135290000,1997.51
-1988-04-04,1988.06,2013.26,1969.50,1980.60,182240000,1980.60
-1988-03-31,1978.12,2000.66,1957.89,1988.06,139870000,1988.06
-1988-03-30,1998.34,2017.57,1973.81,1978.12,151810000,1978.12
-1988-03-29,1979.77,2018.57,1979.61,1998.34,152680000,1998.34
-1988-03-28,1978.95,1990.88,1951.26,1979.77,142820000,1979.77
-1988-03-25,2023.87,2031.00,1973.81,1978.95,163170000,1978.95
-1988-03-24,2052.22,2052.22,2011.44,2023.87,184910000,2023.87
-1988-03-23,2066.15,2085.05,2047.41,2067.64,167370000,2067.64
-1988-03-22,2067.14,2082.89,2052.06,2066.15,142000000,2066.15
-1988-03-21,2081.23,2081.23,2050.56,2067.14,128830000,2067.14
-1988-03-18,2086.04,2110.91,2067.64,2087.37,245750000,2087.37
-1988-03-17,2064.32,2093.17,2057.03,2086.04,211920000,2086.04
-1988-03-16,2047.41,2070.62,2027.02,2064.32,153590000,2064.32
-1988-03-15,2050.07,2062.17,2030.17,2047.41,133170000,2047.41
-1988-03-14,2034.98,2056.70,2023.04,2050.07,131890000,2050.07
-1988-03-11,2026.03,2049.07,1996.52,2034.98,200020000,2034.98
-1988-03-10,2074.27,2081.40,2020.72,2026.03,197260000,2026.03
-1988-03-09,2081.07,2094.16,2064.49,2074.27,210900000,2074.27
-1988-03-08,2056.37,2090.02,2055.04,2081.07,237680000,2081.07
-1988-03-07,2057.86,2069.30,2034.15,2056.37,152980000,2056.37
-1988-03-04,2063.49,2076.76,2033.49,2057.86,201410000,2057.86
-1988-03-03,2071.29,2085.38,2048.41,2063.49,203310000,2063.49
-1988-03-02,2070.47,2094.50,2058.19,2071.29,199630000,2071.29
-1988-03-01,2071.62,2086.87,2048.57,2070.47,199990000,2070.47
-1988-02-29,2023.21,2074.60,2017.24,2071.62,236050000,2071.62
-1988-02-26,2017.57,2034.81,2005.14,2023.21,158060000,2023.21
-1988-02-25,2039.95,2078.08,2006.96,2017.57,213490000,2017.57
-1988-02-24,2039.12,2061.34,2022.88,2039.95,212730000,2039.95
-1988-02-23,2040.29,2057.03,2017.24,2039.12,192260000,2039.12
-1988-02-22,2014.59,2051.72,1998.67,2040.29,178930000,2040.29
-1988-02-19,1986.41,2018.90,1973.31,2014.59,180300000,2014.59
-1988-02-18,2000.99,2011.94,1972.81,1986.41,151430000,1986.41
-1988-02-17,2005.97,2026.19,1982.59,2000.99,176830000,2000.99
-1988-02-16,1983.26,2010.44,1969.83,2005.97,135380000,2005.97
-1988-02-12,1961.54,1995.69,1958.06,1983.26,177190000,1983.26
-1988-02-11,1962.04,1982.43,1942.81,1961.54,200760000,1961.54
-1988-02-10,1916.78,1967.84,1916.78,1962.04,187980000,1962.04
-1988-02-09,1895.72,1921.58,1885.78,1914.46,162350000,1914.46
-1988-02-08,1910.48,1911.14,1878.15,1895.72,168850000,1895.72
-1988-02-05,1923.57,1940.32,1906.32,1910.48,161310000,1910.48
-1988-02-04,1924.57,1941.48,1902.85,1923.57,186490000,1923.57
-1988-02-03,1952.92,1971.98,1907.00,1924.57,237270000,1924.57
-1988-02-02,1944.63,1965.02,1921.09,1952.92,164920000,1952.92
-1988-02-01,1958.22,1985.41,1935.84,1944.63,210660000,1944.63
-1988-01-29,1930.04,1967.67,1921.09,1958.22,211880000,1958.22
-1988-01-28,1911.14,1944.13,1904.34,1930.04,166430000,1930.04
-1988-01-27,1920.59,1951.76,1889.42,1911.14,176360000,1911.14
-1988-01-26,1946.45,1957.73,1906.50,1920.59,138380000,1920.59
-1988-01-25,1903.51,1960.54,1897.05,1946.45,275250000,1946.45
-1988-01-22,1879.31,1911.80,1876.16,1903.51,147050000,1903.51
-1988-01-21,1879.14,1903.35,1845.99,1879.31,158080000,1879.31
-1988-01-20,1934.85,1934.85,1858.59,1879.14,181660000,1879.14
-1988-01-19,1963.86,1977.29,1923.41,1936.34,153550000,1936.34
-1988-01-18,1956.07,1977.45,1938.99,1963.86,135100000,1963.86
-1988-01-15,1942.47,1988.40,1942.47,1956.07,197940000,1956.07
-1988-01-14,1924.73,1940.15,1894.06,1916.11,140570000,1916.11
-1988-01-13,1928.55,1959.55,1884.95,1924.73,154020000,1924.73
-1988-01-12,1945.13,1950.76,1877.98,1928.55,165730000,1928.55
-1988-01-11,1911.31,1985.25,1886.94,1945.13,158980000,1945.13
-1988-01-08,2051.89,2058.69,1898.04,1911.31,197300000,1911.31
-1988-01-07,2037.80,2061.51,2004.64,2051.89,175360000,2051.89
-1988-01-06,2031.50,2058.19,2012.77,2037.80,169730000,2037.80
-1988-01-05,2021.39,2075.27,2021.39,2031.50,209520000,2031.50
-1988-01-04,1950.76,2030.01,1950.76,2015.25,181810000,2015.25
-1987-12-31,1950.10,1951.26,1912.63,1938.83,170140000,1938.83
-1987-12-30,1926.89,1966.18,1925.73,1950.10,149230000,1950.10
-1987-12-29,1942.97,1951.76,1918.10,1926.89,111580000,1926.89
-1987-12-28,1966.18,1966.18,1921.92,1942.97,131220000,1942.97
-1987-12-24,2005.64,2013.10,1985.74,1999.67,108800000,1999.67
-1987-12-23,1978.45,2019.56,1977.62,2005.64,203110000,2005.64
-1987-12-22,1990.38,1999.67,1949.27,1978.45,192650000,1978.45
-1987-12-21,1975.30,2008.45,1959.56,1990.38,161790000,1990.38
-1987-12-18,1924.73,1982.92,1924.73,1975.30,276220000,1975.30
-1987-12-17,1974.47,1987.23,1917.44,1924.40,191780000,1924.40
-1987-12-16,1941.48,1984.08,1918.44,1974.47,193820000,1974.47
-1987-12-15,1932.86,1969.00,1916.28,1941.48,214970000,1941.48
-1987-12-14,1867.04,1942.31,1860.41,1932.86,187680000,1932.86
-1987-12-11,1855.44,1887.93,1838.36,1867.04,151680000,1867.04
-1987-12-10,1902.52,1923.57,1835.71,1855.44,188960000,1855.44
-1987-12-09,1868.37,1924.90,1846.65,1902.52,231430000,1902.52
-1987-12-08,1812.17,1870.69,1794.60,1868.37,227310000,1868.37
-1987-12-07,1766.74,1818.14,1765.75,1812.17,146660000,1812.17
-1987-12-04,1776.53,1794.60,1733.92,1766.74,184800000,1766.74
-1987-12-03,1848.97,1859.08,1772.21,1776.53,204160000,1776.53
-1987-12-02,1842.34,1871.52,1825.27,1848.97,148890000,1848.97
-1987-12-01,1833.55,1877.98,1829.08,1842.34,149870000,1842.34
-1987-11-30,1867.37,1867.37,1795.26,1833.55,268910000,1833.55
-1987-11-27,1946.95,1955.24,1907.00,1910.48,86360000,1910.48
-1987-11-25,1963.53,1982.59,1935.68,1946.95,139780000,1946.95
-1987-11-24,1936.84,1985.25,1936.84,1963.53,199520000,1963.53
-1987-11-23,1913.63,1931.86,1889.26,1923.08,143160000,1923.08
-1987-11-20,1895.39,1926.39,1853.61,1913.63,189170000,1913.63
-1987-11-19,1939.16,1941.98,1881.80,1895.39,157140000,1895.39
-1987-11-18,1922.25,1951.92,1888.93,1939.16,158260000,1939.16
-1987-11-17,1939.99,1939.99,1888.76,1922.25,148240000,1922.25
-1987-11-16,1935.01,1979.28,1921.75,1949.10,164340000,1949.10
-1987-11-13,1960.21,1973.81,1923.08,1935.01,174920000,1935.01
-1987-11-12,1934.84,1983.92,1934.84,1960.21,206280000,1960.21
-1987-11-11,1881.96,1927.72,1881.96,1899.20,147850000,1899.20
-1987-11-10,1900.20,1911.97,1845.99,1878.15,184310000,1878.15
-1987-11-09,1941.81,1941.81,1881.96,1900.20,160690000,1900.20
-1987-11-06,1985.41,2023.54,1938.83,1959.05,228290000,1959.05
-1987-11-05,1945.29,2011.94,1920.42,1985.41,226000000,1985.41
-1987-11-04,1963.53,1980.60,1913.50,1945.29,202500000,1945.29
-1987-11-03,1988.40,1988.40,1891.74,1963.53,227800000,1963.53
-1987-11-02,1993.53,2027.52,1957.23,2014.09,176000000,2014.09
-1987-10-30,1965.68,2049.07,1965.68,1993.53,303400000,1993.53
-1987-10-29,1849.30,1971.98,1849.30,1938.33,258100000,1938.33
-1987-10-28,1846.49,1904.51,1767.74,1846.82,279400000,1846.82
-1987-10-27,1806.70,1904.68,1806.70,1846.49,260200000,1846.49
-1987-10-26,1881.80,1881.80,1774.04,1793.93,308800000,1793.93
-1987-10-23,1950.43,1993.87,1898.54,1950.76,245600000,1950.76
-1987-10-22,2004.97,2004.97,1837.86,1950.43,392200000,1950.43
-1987-10-21,1951.76,2081.07,1951.76,2027.85,449600000,2027.85
-1987-10-20,1738.74,2067.47,1616.21,1841.01,608100000,1841.01
-1987-10-19,2164.16,2164.16,1677.55,1738.74,604300000,1738.74
-1987-10-16,2355.09,2396.21,2207.73,2246.73,338500000,2246.73
-1987-10-15,2412.70,2439.78,2345.63,2355.09,263200000,2355.09
-1987-10-14,2485.15,2485.15,2400.46,2412.70,207400000,2412.70
-1987-10-13,2471.44,2528.39,2456.92,2508.16,172900000,2508.16
-1987-10-12,2482.21,2504.90,2433.91,2471.44,141900000,2471.44
-1987-10-09,2516.64,2531.66,2472.26,2482.21,158300000,2482.21
-1987-10-08,2551.08,2561.36,2491.51,2516.64,198700000,2516.64
-1987-10-07,2548.63,2570.99,2511.75,2551.08,186300000,2551.08
-1987-10-06,2632.83,2632.83,2542.59,2548.63,175600000,2548.63
-1987-10-05,2640.99,2658.78,2610.97,2640.18,159700000,2640.18
-1987-10-02,2639.20,2662.37,2622.06,2640.99,189100000,2640.99
-1987-10-01,2596.28,2648.99,2593.18,2639.20,193200000,2639.20
-1987-09-30,2590.57,2613.58,2563.64,2596.28,183100000,2596.28
-1987-09-29,2601.50,2627.61,2569.03,2590.57,173500000,2590.57
-1987-09-28,2574.58,2634.95,2574.58,2601.50,188100000,2601.50
-1987-09-25,2566.42,2584.04,2543.73,2570.17,138000000,2570.17
-1987-09-24,2585.67,2603.95,2552.06,2566.42,162200000,2566.42
-1987-09-23,2568.05,2602.15,2554.83,2585.67,220300000,2585.67
-1987-09-22,2492.82,2572.62,2468.99,2568.05,209500000,2568.05
-1987-09-21,2524.64,2559.73,2479.77,2492.82,170100000,2492.82
-1987-09-18,2527.90,2554.83,2514.03,2524.64,188100000,2524.64
-1987-09-17,2530.19,2557.28,2508.00,2527.90,150700000,2527.90
-1987-09-16,2566.58,2585.18,2522.52,2530.19,195700000,2530.19
-1987-09-15,2610.48,2610.48,2560.22,2566.58,136200000,2566.58
-1987-09-14,2608.74,2634.57,2587.85,2613.04,154400000,2613.04
-1987-09-11,2576.05,2625.95,2575.41,2608.74,178000000,2608.74
-1987-09-10,2549.43,2595.50,2549.43,2576.05,179800000,2576.05
-1987-09-09,2545.12,2570.63,2522.80,2549.27,164900000,2549.27
-1987-09-08,2561.38,2571.43,2493.78,2545.12,242900000,2545.12
-1987-09-04,2599.49,2617.19,2556.28,2561.38,129100000,2561.38
-1987-09-03,2602.04,2642.22,2560.11,2599.49,165200000,2599.49
-1987-09-02,2610.97,2631.06,2567.76,2602.04,199900000,2602.04
-1987-09-01,2662.95,2695.47,2594.07,2610.97,193500000,2610.97
-1987-08-31,2639.35,2679.53,2623.57,2662.95,165800000,2662.95
-1987-08-28,2675.06,2680.32,2632.02,2639.35,156300000,2639.35
-1987-08-27,2701.85,2705.52,2661.35,2675.06,163600000,2675.06
-1987-08-26,2722.42,2742.03,2686.54,2701.85,196200000,2701.85
-1987-08-25,2697.07,2746.65,2694.83,2722.42,213500000,2722.42
-1987-08-24,2709.50,2730.55,2678.89,2697.07,149400000,2697.07
-1987-08-21,2706.79,2735.49,2689.09,2709.50,189600000,2709.50
-1987-08-20,2665.97,2714.60,2665.97,2706.79,196600000,2706.79
-1987-08-19,2654.66,2676.18,2628.19,2665.82,180900000,2665.82
-1987-08-18,2691.01,2691.01,2626.59,2654.66,198400000,2654.66
-1987-08-17,2685.43,2713.97,2674.43,2700.57,166100000,2700.57
-1987-08-14,2691.49,2713.33,2660.08,2685.43,196100000,2685.43
-1987-08-13,2669.32,2714.92,2656.57,2691.49,217100000,2691.49
-1987-08-12,2680.48,2700.73,2648.60,2669.32,235800000,2669.32
-1987-08-11,2635.84,2691.96,2635.52,2680.48,278100000,2680.48
-1987-08-10,2592.00,2640.15,2587.85,2635.84,187200000,2635.84
-1987-08-07,2594.23,2611.93,2576.21,2592.00,212700000,2592.00
-1987-08-06,2566.65,2600.92,2551.82,2594.23,192000000,2594.23
-1987-08-05,2546.72,2586.58,2540.98,2566.65,192700000,2566.65
-1987-08-04,2557.08,2568.72,2525.99,2546.72,166500000,2546.72
-1987-08-03,2572.07,2585.30,2536.67,2557.08,207800000,2557.08
-1987-07-31,2567.44,2588.33,2551.02,2572.07,181900000,2572.07
-1987-07-30,2539.54,2576.85,2527.42,2567.44,208000000,2567.44
-1987-07-29,2519.77,2548.47,2501.59,2539.54,196200000,2539.54
-1987-07-28,2493.94,2537.15,2489.32,2519.77,172600000,2519.77
-1987-07-27,2485.33,2511.64,2468.75,2493.94,152000000,2493.94
-1987-07-24,2471.94,2494.90,2462.53,2485.33,158400000,2485.33
-1987-07-23,2470.18,2492.67,2447.07,2471.94,163700000,2471.94
-1987-07-22,2467.95,2488.68,2448.50,2470.18,174700000,2470.18
-1987-07-21,2487.82,2500.16,2444.67,2467.95,186600000,2467.95
-1987-07-20,2510.04,2512.28,2476.88,2487.82,168100000,2487.82
-1987-07-17,2496.97,2533.64,2485.65,2510.04,210000000,2510.04
-1987-07-16,2483.74,2511.48,2471.78,2496.97,210900000,2496.97
-1987-07-15,2481.35,2502.23,2455.20,2483.74,202300000,2483.74
-1987-07-14,2452.97,2492.98,2442.60,2481.35,185900000,2481.35
-1987-07-13,2455.99,2470.34,2427.14,2452.97,152500000,2452.97
-1987-07-10,2451.21,2470.50,2435.91,2455.99,172100000,2455.99
-1987-07-09,2463.97,2478.48,2441.17,2451.21,195400000,2451.21
-1987-07-08,2449.78,2476.24,2432.56,2463.97,207500000,2463.97
-1987-07-07,2429.53,2467.63,2425.06,2449.78,200700000,2449.78
-1987-07-06,2436.70,2460.30,2412.95,2429.53,155000000,2429.53
-1987-07-02,2415.66,2446.27,2415.66,2436.70,154900000,2436.70
-1987-07-01,2418.53,2430.80,2391.26,2409.76,157000000,2409.76
-1987-06-30,2446.91,2456.31,2401.15,2418.53,165500000,2418.53
-1987-06-29,2436.86,2460.30,2423.79,2446.91,142500000,2446.91
-1987-06-26,2451.05,2453.92,2423.63,2436.86,150500000,2436.86
-1987-06-25,2430.33,2460.14,2430.33,2451.05,173500000,2451.05
-1987-06-24,2439.73,2454.08,2415.34,2428.41,153800000,2428.41
-1987-06-23,2445.51,2466.04,2421.72,2439.73,194200000,2439.73
-1987-06-22,2420.85,2457.29,2417.40,2445.51,178200000,2445.51
-1987-06-19,2408.13,2431.85,2395.26,2420.85,220500000,2420.85
-1987-06-18,2407.35,2419.91,2386.46,2408.13,168600000,2408.13
-1987-06-17,2407.35,2427.29,2390.70,2407.35,184700000,2407.35
-1987-06-16,2391.54,2415.36,2376.10,2407.35,157800000,2407.35
-1987-06-15,2377.73,2409.44,2374.39,2391.54,156900000,2391.54
-1987-06-12,2360.74,2399.42,2360.74,2377.73,175100000,2377.73
-1987-06-11,2353.61,2380.46,2341.93,2360.13,138900000,2360.13
-1987-06-10,2352.70,2389.71,2328.58,2353.61,197400000,2353.61
-1987-06-09,2351.64,2366.05,2331.77,2352.70,164200000,2352.70
-1987-06-08,2326.15,2362.71,2306.89,2351.64,136400000,2351.64
-1987-06-05,2337.08,2346.33,2312.35,2326.15,129100000,2326.15
-1987-06-04,2320.69,2343.45,2308.71,2337.08,140300000,2337.08
-1987-06-03,2283.37,2330.10,2283.37,2320.69,164200000,2320.69
-1987-06-02,2288.23,2306.43,2260.62,2278.22,153400000,2278.22
-1987-06-01,2291.57,2319.78,2277.00,2288.23,149300000,2288.23
-1987-05-29,2310.68,2332.39,2281.10,2291.57,153500000,2291.57
-1987-05-28,2295.81,2323.57,2265.93,2310.68,153800000,2310.68
-1987-05-27,2297.94,2320.24,2274.27,2295.81,171400000,2295.81
-1987-05-26,2252.88,2305.52,2252.88,2297.94,152500000,2297.94
-1987-05-22,2225.77,2258.42,2220.15,2243.20,135800000,2243.20
-1987-05-21,2215.87,2256.06,2212.77,2225.77,164800000,2225.77
-1987-05-20,2221.28,2248.08,2188.53,2215.87,206800000,2215.87
-1987-05-19,2258.66,2280.46,2205.40,2221.28,175400000,2221.28
-1987-05-18,2272.52,2282.91,2227.05,2258.66,174200000,2258.66
-1987-05-15,2324.48,2324.48,2266.60,2272.52,180800000,2272.52
-1987-05-14,2329.68,2349.31,2307.16,2325.49,152000000,2325.49
-1987-05-13,2322.60,2346.85,2302.11,2329.68,171000000,2329.68
-1987-05-12,2307.30,2333.14,2289.84,2322.60,155300000,2322.60
-1987-05-11,2322.30,2380.77,2297.92,2307.30,203700000,2307.30
-1987-05-08,2334.66,2357.24,2303.13,2322.30,161900000,2322.30
-1987-05-07,2342.19,2368.61,2315.77,2334.66,215200000,2334.66
-1987-05-06,2338.07,2369.89,2309.94,2342.19,196600000,2342.19
-1987-05-05,2294.60,2348.01,2294.60,2338.07,192300000,2338.07
-1987-05-04,2280.40,2305.96,2255.26,2286.22,140600000,2286.22
-1987-05-01,2286.36,2312.22,2256.68,2280.40,160100000,2280.40
-1987-04-30,2254.26,2314.20,2250.00,2286.36,183100000,2286.36
-1987-04-29,2231.96,2283.24,2228.27,2254.26,173600000,2254.26
-1987-04-28,2230.54,2270.74,2214.06,2231.96,180100000,2231.96
-1987-04-27,2235.37,2264.35,2180.54,2230.54,222700000,2230.54
-1987-04-24,2279.55,2279.55,2221.59,2235.37,178000000,2235.37
-1987-04-23,2285.94,2318.61,2255.82,2280.97,173900000,2280.97
-1987-04-22,2337.07,2353.13,2282.10,2285.94,185900000,2285.94
-1987-04-21,2270.60,2341.05,2240.91,2337.07,191300000,2337.07
-1987-04-20,2275.99,2300.57,2252.56,2270.60,139100000,2270.60
-1987-04-16,2282.95,2320.88,2264.63,2275.99,189600000,2275.99
-1987-04-15,2252.98,2307.53,2243.32,2282.95,198200000,2282.95
-1987-04-14,2287.07,2293.89,2213.64,2252.98,266500000,2252.98
-1987-04-13,2338.78,2355.68,2278.41,2287.07,181000000,2287.07
-1987-04-10,2339.20,2358.66,2305.11,2338.78,169500000,2338.78
-1987-04-09,2372.16,2383.81,2320.60,2339.20,180300000,2339.20
-1987-04-08,2360.94,2396.16,2342.61,2372.16,179800000,2372.16
-1987-04-07,2405.54,2428.41,2352.84,2360.94,186400000,2360.94
-1987-04-06,2390.34,2425.00,2384.80,2405.54,173700000,2405.54
-1987-04-03,2320.45,2402.41,2307.67,2390.34,213400000,2390.34
-1987-04-02,2316.05,2347.59,2299.29,2320.45,183000000,2320.45
-1987-04-01,2304.69,2325.14,2271.16,2316.05,182600000,2316.05
-1987-03-31,2278.41,2315.48,2271.31,2304.69,171800000,2304.69
-1987-03-30,2303.41,2303.41,2230.26,2278.41,208400000,2278.41
-1987-03-27,2372.59,2386.65,2326.99,2335.80,184400000,2335.80
-1987-03-26,2363.49,2399.57,2359.38,2372.59,196000000,2372.59
-1987-03-25,2369.18,2383.52,2344.46,2363.49,171300000,2363.49
-1987-03-24,2363.78,2387.36,2348.01,2369.18,189900000,2369.18
-1987-03-23,2333.52,2373.01,2322.44,2363.78,189100000,2363.78
-1987-03-20,2299.57,2342.05,2295.03,2333.52,234000000,2333.52
-1987-03-19,2286.93,2310.65,2270.17,2299.57,166100000,2299.57
-1987-03-18,2284.80,2315.20,2262.22,2286.93,198100000,2286.93
-1987-03-17,2248.44,2287.78,2238.21,2284.80,177300000,2284.80
-1987-03-16,2258.66,2263.64,2224.86,2248.44,134900000,2248.44
-1987-03-13,2267.34,2282.39,2245.03,2258.66,150900000,2258.66
-1987-03-12,2268.98,2288.15,2250.14,2267.34,174500000,2267.34
-1987-03-11,2280.09,2302.17,2256.47,2268.98,186900000,2268.98
-1987-03-10,2260.12,2289.93,2246.48,2280.09,174800000,2280.09
-1987-03-09,2279.67,2279.67,2238.61,2260.12,165400000,2260.12
-1987-03-06,2276.43,2298.23,2256.47,2280.23,181600000,2280.23
-1987-03-05,2257.45,2295.70,2253.94,2276.43,205400000,2276.43
-1987-03-04,2226.52,2270.11,2226.24,2257.45,198400000,2257.45
-1987-03-03,2220.47,2240.44,2209.93,2226.52,149200000,2226.52
-1987-03-02,2223.99,2242.55,2209.08,2220.47,156700000,2220.47
-1987-02-27,2216.68,2237.91,2204.87,2223.99,142800000,2223.99
-1987-02-26,2226.24,2239.31,2196.71,2216.68,165800000,2216.68
-1987-02-25,2223.28,2248.59,2209.36,2226.24,184100000,2226.24
-1987-02-24,2216.54,2244.09,2202.62,2223.28,151300000,2223.28
-1987-02-23,2235.24,2249.86,2186.30,2216.54,170500000,2216.54
-1987-02-20,2244.09,2260.12,2220.89,2235.24,175800000,2235.24
-1987-02-19,2237.63,2263.22,2212.32,2244.09,181500000,2244.09
-1987-02-18,2237.49,2266.45,2213.16,2237.63,218200000,2237.63
-1987-02-17,2184.90,2242.41,2184.90,2237.49,187800000,2237.49
-1987-02-13,2165.78,2201.35,2148.76,2183.35,184400000,2183.35
-1987-02-12,2171.96,2203.18,2146.09,2165.78,200400000,2165.78
-1987-02-11,2158.04,2182.51,2145.53,2171.96,172400000,2171.96
-1987-02-10,2176.74,2183.63,2134.42,2158.04,168300000,2158.04
-1987-02-09,2186.87,2195.73,2157.90,2176.74,143300000,2176.74
-1987-02-06,2201.49,2213.30,2176.32,2186.87,184100000,2186.87
-1987-02-05,2191.23,2223.28,2174.63,2201.49,256700000,2201.49
-1987-02-04,2168.45,2198.40,2154.67,2191.23,222400000,2191.23
-1987-02-03,2179.42,2201.21,2159.73,2168.45,198100000,2168.45
-1987-02-02,2158.04,2193.62,2142.15,2179.42,177400000,2179.42
-1987-01-30,2160.01,2173.51,2127.67,2158.04,163400000,2158.04
-1987-01-29,2163.39,2193.34,2139.20,2160.01,205300000,2160.01
-1987-01-28,2150.45,2181.10,2136.39,2163.39,195800000,2163.39
-1987-01-27,2110.24,2160.85,2110.24,2150.45,192300000,2150.45
-1987-01-26,2101.52,2125.42,2079.72,2107.28,138900000,2107.28
-1987-01-23,2145.67,2214.57,2062.85,2101.52,302400000,2101.52
-1987-01-22,2094.07,2151.86,2083.66,2145.67,188700000,2145.67
-1987-01-21,2104.47,2123.88,2079.02,2094.07,184200000,2094.07
-1987-01-20,2102.50,2131.61,2082.54,2104.47,224800000,2104.47
-1987-01-19,2076.63,2112.49,2051.32,2102.50,162800000,2102.50
-1987-01-16,2070.73,2099.69,2054.56,2076.63,218400000,2076.63
-1987-01-15,2035.01,2091.25,2030.79,2070.73,253100000,2070.73
-1987-01-14,2012.94,2046.26,2003.94,2035.01,214200000,2035.01
-1987-01-13,2009.42,2027.14,1994.52,2012.94,170900000,2012.94
-1987-01-12,2005.91,2022.08,1987.63,2009.42,184200000,2009.42
-1987-01-09,2002.25,2021.65,1988.61,2005.91,193000000,2005.91
-1987-01-08,1993.95,2014.20,1975.96,2002.25,194500000,2002.25
-1987-01-07,1974.83,2003.09,1965.69,1993.95,190900000,1993.95
-1987-01-06,1971.32,1993.81,1961.90,1974.83,189300000,1974.83
-1987-01-05,1936.59,1980.74,1936.59,1971.32,181900000,1971.32
-1987-01-02,1897.36,1933.49,1897.36,1927.31,91880000,1927.31
-1986-12-31,1908.61,1920.42,1885.40,1895.95,139200000,1895.95
-1986-12-30,1912.12,1920.70,1894.69,1908.61,126200000,1908.61
-1986-12-29,1930.40,1931.38,1904.53,1912.12,99800000,1912.12
-1986-12-26,1926.88,1939.12,1919.71,1930.40,48860000,1930.40
-1986-12-24,1914.37,1937.57,1910.01,1926.88,95410000,1926.88
-1986-12-23,1926.18,1933.77,1902.28,1914.37,188700000,1914.37
-1986-12-22,1928.85,1938.84,1907.76,1926.18,157600000,1926.18
-1986-12-19,1912.82,1935.18,1899.89,1928.85,244700000,1928.85
-1986-12-18,1918.31,1927.02,1900.17,1912.82,155400000,1912.82
-1986-12-17,1936.16,1937.57,1909.45,1918.31,148800000,1918.31
-1986-12-16,1922.81,1942.91,1912.40,1936.16,157000000,1936.16
-1986-12-15,1912.26,1925.34,1887.09,1922.81,148200000,1922.81
-1986-12-12,1923.65,1932.09,1904.39,1912.26,126600000,1912.26
-1986-12-11,1932.93,1947.41,1904.81,1923.65,136000000,1923.65
-1986-12-10,1916.90,1943.05,1908.32,1932.93,139700000,1932.93
-1986-12-09,1930.26,1939.82,1909.87,1916.90,128700000,1916.90
-1986-12-08,1925.06,1946.71,1906.92,1930.26,159000000,1930.26
-1986-12-05,1939.68,1950.22,1911.70,1925.06,139800000,1925.06
-1986-12-04,1947.27,1963.30,1930.26,1939.68,156900000,1939.68
-1986-12-03,1955.57,1971.74,1933.91,1947.27,200100000,1947.27
-1986-12-02,1914.93,1958.80,1914.93,1955.57,230400000,1955.57
-1986-12-01,1914.23,1915.91,1880.48,1912.54,133800000,1912.54
-1986-11-28,1916.76,1923.51,1903.82,1914.23,93530000,1914.23
-1986-11-26,1912.12,1926.46,1895.11,1916.76,152000000,1916.76
-1986-11-25,1906.07,1922.81,1890.04,1912.12,154600000,1912.12
-1986-11-24,1893.56,1921.40,1879.08,1906.07,150800000,1906.07
-1986-11-21,1860.66,1901.86,1853.07,1893.56,200700000,1893.56
-1986-11-20,1826.63,1866.28,1823.12,1860.66,158100000,1860.66
-1986-11-19,1817.21,1838.02,1797.10,1826.63,183300000,1826.63
-1986-11-18,1860.52,1864.31,1806.52,1817.21,185300000,1817.21
-1986-11-17,1873.59,1879.92,1846.74,1860.52,133300000,1860.52
-1986-11-14,1862.20,1883.57,1848.28,1873.59,172100000,1873.59
-1986-11-13,1893.70,1901.01,1857.28,1862.20,164000000,1862.20
-1986-11-12,1895.95,1909.31,1876.97,1893.70,162200000,1893.70
-1986-11-11,1892.29,1904.95,1882.45,1895.95,118500000,1895.95
-1986-11-10,1886.53,1901.01,1871.20,1892.29,120200000,1892.29
-1986-11-07,1891.59,1899.47,1870.78,1886.53,142300000,1886.53
-1986-11-06,1899.04,1907.48,1868.95,1891.59,165300000,1891.59
-1986-11-05,1892.44,1911.14,1876.55,1899.04,183200000,1899.04
-1986-11-04,1894.26,1902.00,1873.88,1892.44,163200000,1892.44
-1986-11-03,1877.71,1902.28,1870.78,1894.26,138200000,1894.26
-1986-10-31,1878.37,1891.73,1858.13,1877.71,147200000,1877.71
-1986-10-30,1862.77,1894.69,1862.77,1878.37,194200000,1878.37
-1986-10-29,1845.47,1863.33,1834.51,1851.80,164400000,1851.80
-1986-10-28,1841.82,1863.47,1830.99,1845.47,145900000,1845.47
-1986-10-27,1832.36,1850.11,1817.49,1841.82,133200000,1841.82
-1986-10-24,1834.93,1851.66,1821.71,1832.36,137500000,1832.36
-1986-10-23,1808.35,1845.05,1806.95,1834.93,150900000,1834.93
-1986-10-22,1805.68,1821.29,1793.59,1808.35,114000000,1808.35
-1986-10-21,1811.02,1822.98,1792.04,1805.68,110000000,1805.68
-1986-10-20,1826.63,1826.63,1793.87,1811.02,109000000,1811.02
-1986-10-17,1836.19,1844.91,1817.07,1837.04,124100000,1837.04
-1986-10-16,1831.69,1852.64,1819.18,1836.19,156900000,1836.19
-1986-10-15,1800.20,1835.77,1792.18,1831.69,144300000,1831.69
-1986-10-14,1798.37,1816.51,1783.32,1800.20,116800000,1800.20
-1986-10-13,1793.17,1806.95,1781.50,1798.37,54990000,1798.37
-1986-10-10,1796.82,1806.38,1780.93,1793.17,105100000,1793.17
-1986-10-09,1803.85,1824.24,1785.85,1796.82,153400000,1796.82
-1986-10-08,1784.45,1812.43,1772.22,1803.85,141700000,1803.85
-1986-10-07,1784.45,1799.35,1765.19,1784.45,125100000,1784.45
-1986-10-06,1774.18,1794.85,1763.36,1784.45,88250000,1784.45
-1986-10-03,1781.21,1806.38,1761.25,1774.18,128100000,1774.18
-1986-10-02,1782.90,1796.54,1767.72,1781.21,128100000,1781.21
-1986-10-01,1767.58,1805.82,1762.65,1782.90,143600000,1782.90
-1986-09-30,1755.20,1790.35,1750.14,1767.58,124900000,1767.58
-1986-09-29,1768.98,1768.98,1732.99,1755.20,115600000,1755.20
-1986-09-26,1768.56,1788.10,1750.14,1769.69,115300000,1769.69
-1986-09-25,1803.15,1803.15,1753.80,1768.56,134300000,1768.56
-1986-09-24,1797.81,1820.02,1786.28,1803.29,134600000,1803.29
-1986-09-23,1793.45,1809.76,1778.54,1797.81,132600000,1797.81
-1986-09-22,1762.65,1797.81,1761.67,1793.45,126100000,1793.45
-1986-09-19,1774.18,1783.04,1747.61,1762.65,153900000,1762.65
-1986-09-18,1769.40,1789.93,1748.03,1774.18,132200000,1774.18
-1986-09-17,1778.54,1799.35,1757.87,1769.40,141000000,1769.40
-1986-09-16,1767.58,1785.01,1739.60,1778.54,131200000,1778.54
-1986-09-15,1758.72,1786.98,1746.20,1767.58,155600000,1767.58
-1986-09-12,1792.89,1805.40,1733.55,1758.72,240500000,1758.72
-1986-09-11,1868.67,1868.67,1780.79,1792.89,237600000,1792.89
-1986-09-10,1884.14,1897.50,1863.05,1879.50,140300000,1879.50
-1986-09-09,1888.64,1909.45,1874.02,1884.14,137500000,1884.14
-1986-09-08,1899.75,1907.06,1866.84,1888.64,153300000,1888.64
-1986-09-05,1919.71,1933.35,1890.19,1899.75,180600000,1899.75
-1986-09-04,1881.33,1927.87,1877.25,1919.71,189400000,1919.71
-1986-09-03,1870.36,1888.22,1852.78,1881.33,154300000,1881.33
-1986-09-02,1898.34,1913.39,1857.42,1870.36,135500000,1870.36
-1986-08-29,1900.17,1913.53,1883.44,1898.34,125300000,1898.34
-1986-08-28,1904.53,1912.26,1882.73,1900.17,125100000,1900.17
-1986-08-27,1904.25,1918.59,1887.80,1904.53,143300000,1904.53
-1986-08-26,1871.77,1911.28,1870.50,1904.25,156600000,1904.25
-1986-08-25,1887.80,1893.42,1860.52,1871.77,104400000,1871.77
-1986-08-22,1881.19,1899.04,1868.11,1887.80,118100000,1887.80
-1986-08-21,1881.33,1899.47,1864.31,1881.19,135200000,1881.19
-1986-08-20,1862.91,1889.34,1849.97,1881.33,156600000,1881.33
-1986-08-19,1869.52,1880.20,1846.88,1862.91,109300000,1862.91
-1986-08-18,1855.60,1875.14,1842.66,1869.52,112800000,1869.52
-1986-08-15,1844.91,1863.61,1829.02,1855.60,123500000,1855.60
-1986-08-14,1844.49,1859.81,1832.54,1844.91,123800000,1844.91
-1986-08-13,1835.49,1860.66,1822.98,1844.49,156400000,1844.49
-1986-08-12,1811.16,1840.55,1804.42,1835.49,131700000,1835.49
-1986-08-11,1782.62,1824.66,1779.25,1811.16,125600000,1811.16
-1986-08-08,1786.28,1799.78,1769.69,1782.62,106300000,1782.62
-1986-08-07,1779.53,1802.02,1766.17,1786.28,122400000,1786.28
-1986-08-06,1777.00,1788.67,1759.84,1779.53,127500000,1779.53
-1986-08-05,1769.97,1800.20,1766.87,1777.00,153100000,1777.00
-1986-08-04,1763.64,1785.15,1730.60,1769.97,130000000,1769.97
-1986-08-01,1775.31,1788.80,1753.09,1763.64,114900000,1763.64
-1986-07-31,1779.39,1794.29,1764.20,1775.31,112700000,1775.31
-1986-07-30,1766.87,1794.15,1741.56,1779.39,146700000,1779.39
-1986-07-29,1773.90,1788.95,1752.95,1766.87,115700000,1766.87
-1986-07-28,1810.04,1815.24,1760.26,1773.90,128000000,1773.90
-1986-07-25,1791.62,1821.57,1791.06,1810.04,132000000,1810.04
-1986-07-24,1798.37,1806.81,1778.68,1791.62,134700000,1791.62
-1986-07-23,1795.13,1813.70,1780.09,1798.37,133300000,1798.37
-1986-07-22,1779.11,1810.46,1769.12,1795.13,138500000,1795.13
-1986-07-21,1777.98,1792.60,1763.92,1779.11,106300000,1779.11
-1986-07-18,1781.78,1807.37,1754.64,1777.98,149700000,1777.98
-1986-07-17,1774.18,1802.73,1762.09,1781.78,132400000,1781.78
-1986-07-16,1768.70,1794.29,1759.70,1774.18,160800000,1774.18
-1986-07-15,1793.45,1805.54,1760.12,1768.70,184000000,1768.70
-1986-07-14,1816.65,1816.65,1785.29,1793.45,123200000,1793.45
-1986-07-11,1831.83,1840.97,1810.88,1821.43,124500000,1821.43
-1986-07-10,1826.07,1842.94,1799.07,1831.83,146200000,1831.83
-1986-07-09,1820.73,1838.58,1807.65,1826.07,142900000,1826.07
-1986-07-08,1834.36,1834.36,1794.99,1820.73,174100000,1820.73
-1986-07-07,1895.53,1895.53,1834.08,1838.86,138200000,1838.86
-1986-07-03,1909.03,1918.59,1887.23,1900.87,108300000,1900.87
-1986-07-02,1903.54,1922.67,1891.31,1909.03,150000000,1909.03
-1986-07-01,1892.72,1911.28,1878.52,1903.54,147700000,1903.54
-1986-06-30,1885.26,1908.62,1876.12,1892.72,135100000,1892.72
-1986-06-27,1880.20,1898.90,1871.34,1885.26,123800000,1885.26
-1986-06-26,1885.05,1897.22,1867.41,1880.20,134100000,1880.20
-1986-06-25,1875.55,1903.36,1870.32,1885.05,161800000,1885.05
-1986-06-24,1864.26,1891.80,1853.94,1875.55,140600000,1875.55
-1986-06-23,1879.54,1883.40,1853.39,1864.26,123800000,1864.26
-1986-06-20,1855.86,1882.85,1847.64,1879.54,149100000,1879.54
-1986-06-19,1868.94,1883.12,1851.46,1855.86,129000000,1855.86
-1986-06-18,1865.78,1881.33,1843.75,1868.94,117000000,1868.94
-1986-06-17,1871.77,1886.98,1853.94,1865.78,123100000,1865.78
-1986-06-16,1874.19,1890.61,1863.29,1871.77,112100000,1871.77
-1986-06-13,1843.92,1883.21,1843.92,1874.19,141200000,1874.19
-1986-06-12,1846.07,1851.86,1826.29,1838.13,109100000,1838.13
-1986-06-11,1837.19,1854.68,1825.75,1846.07,127400000,1846.07
-1986-06-10,1840.15,1852.80,1816.07,1837.19,125000000,1837.19
-1986-06-09,1880.25,1880.25,1833.83,1840.15,123300000,1840.15
-1986-06-06,1879.44,1894.38,1866.12,1885.90,110900000,1885.90
-1986-06-05,1863.29,1880.79,1851.18,1879.44,110900000,1879.44
-1986-06-04,1870.43,1882.00,1846.34,1863.29,117000000,1863.29
-1986-06-03,1861.95,1875.54,1845.67,1870.43,114700000,1870.43
-1986-06-02,1876.71,1886.17,1845.53,1861.95,120600000,1861.95
-1986-05-30,1882.35,1898.22,1857.95,1876.71,151200000,1876.71
-1986-05-29,1878.28,1892.97,1857.42,1882.35,135700000,1882.35
-1986-05-28,1853.03,1891.79,1851.92,1878.28,159600000,1878.28
-1986-05-27,1823.48,1856.56,1823.48,1853.03,121200000,1853.03
-1986-05-23,1806.30,1842.14,1804.69,1823.29,130200000,1823.29
-1986-05-22,1775.17,1813.74,1774.18,1806.30,144900000,1806.30
-1986-05-21,1783.98,1798.61,1766.62,1775.17,117100000,1775.17
-1986-05-20,1758.18,1788.44,1752.48,1783.98,113000000,1783.98
-1986-05-19,1759.80,1769.84,1746.53,1758.18,85840000,1758.18
-1986-05-16,1774.68,1775.67,1749.88,1759.80,113500000,1759.80
-1986-05-15,1808.28,1808.78,1766.99,1774.68,131600000,1774.68
-1986-05-14,1785.34,1815.23,1775.55,1808.28,132100000,1808.28
-1986-05-13,1787.33,1804.07,1772.32,1785.34,119200000,1785.34
-1986-05-12,1789.43,1804.32,1774.80,1787.33,125400000,1787.33
-1986-05-09,1786.21,1797.12,1767.73,1789.43,137400000,1789.43
-1986-05-08,1775.30,1797.87,1768.48,1786.21,136000000,1786.21
-1986-05-07,1787.95,1790.05,1755.21,1775.30,129900000,1775.30
-1986-05-06,1793.77,1803.32,1775.92,1787.95,121200000,1787.95
-1986-05-05,1774.68,1800.35,1770.96,1793.77,102400000,1793.77
-1986-05-02,1777.78,1795.88,1763.14,1774.68,126300000,1774.68
-1986-05-01,1783.98,1796.88,1761.04,1777.78,146500000,1777.78
-1986-04-30,1825.89,1831.23,1777.90,1783.98,147500000,1783.98
-1986-04-29,1843.75,1856.15,1813.12,1825.89,148800000,1825.89
-1986-04-28,1835.57,1852.66,1817.71,1843.75,123900000,1843.75
-1986-04-25,1831.72,1848.46,1813.74,1835.57,142300000,1835.57
-1986-04-24,1829.61,1848.46,1818.95,1831.72,146600000,1831.72
-1986-04-23,1830.98,1841.27,1803.94,1829.61,149700000,1829.61
-1986-04-22,1855.90,1866.44,1815.97,1830.98,161500000,1830.98
-1986-04-21,1840.40,1864.21,1829.86,1855.90,136100000,1855.90
-1986-04-18,1855.03,1870.16,1830.98,1840.40,153600000,1840.40
-1986-04-17,1847.97,1870.16,1831.72,1855.03,161400000,1855.03
-1986-04-16,1814.73,1859.62,1814.73,1847.97,173800000,1847.97
-1986-04-15,1805.31,1822.05,1789.68,1809.65,123700000,1809.65
-1986-04-14,1790.18,1811.38,1781.00,1805.31,106700000,1805.31
-1986-04-11,1794.30,1812.50,1779.14,1790.18,139400000,1790.18
-1986-04-10,1778.62,1807.83,1768.20,1794.30,184800000,1794.30
-1986-04-09,1769.76,1807.71,1754.19,1778.62,156300000,1778.62
-1986-04-08,1737.07,1779.57,1737.07,1769.76,146300000,1769.76
-1986-04-07,1739.22,1749.04,1712.52,1735.51,129800000,1735.51
-1986-04-04,1766.40,1772.87,1728.45,1739.22,147300000,1739.22
-1986-04-03,1795.26,1809.27,1753.71,1766.40,148200000,1766.40
-1986-04-02,1790.11,1803.64,1769.76,1795.26,145300000,1795.26
-1986-04-01,1818.61,1829.02,1777.54,1790.11,167400000,1790.11
-1986-03-31,1821.72,1841.83,1803.16,1818.61,134400000,1818.61
-1986-03-27,1810.70,1849.74,1806.51,1821.72,178100000,1821.72
-1986-03-26,1778.50,1817.41,1775.98,1810.70,161500000,1810.70
-1986-03-25,1782.93,1794.30,1762.09,1778.50,139300000,1778.50
-1986-03-24,1768.56,1796.22,1763.29,1782.93,143800000,1782.93
-1986-03-21,1804.24,1821.24,1764.85,1768.56,199100000,1768.56
-1986-03-20,1787.95,1820.76,1784.36,1804.24,148000000,1804.24
-1986-03-19,1789.87,1806.99,1773.47,1787.95,150000000,1787.95
-1986-03-18,1776.86,1806.75,1763.65,1789.87,148000000,1789.87
-1986-03-17,1790.59,1790.59,1758.38,1776.86,137500000,1776.86
-1986-03-14,1753.71,1799.93,1745.21,1792.74,181900000,1792.74
-1986-03-13,1745.45,1768.80,1729.53,1753.71,171500000,1753.71
-1986-03-12,1746.05,1773.35,1733.48,1745.45,210300000,1745.45
-1986-03-11,1704.26,1752.17,1704.26,1746.05,187300000,1746.05
-1986-03-10,1699.83,1715.16,1688.70,1702.95,129900000,1702.95
-1986-03-07,1696.60,1713.48,1682.83,1699.83,163200000,1699.83
-1986-03-06,1686.66,1711.21,1681.75,1696.60,159000000,1696.60
-1986-03-05,1686.42,1695.40,1663.07,1686.66,154600000,1686.66
-1986-03-04,1696.67,1718.63,1679.72,1686.42,174500000,1686.42
-1986-03-03,1709.06,1714.33,1684.63,1696.67,142700000,1696.67
-1986-02-28,1713.99,1732.57,1687.50,1709.06,191700000,1709.06
-1986-02-27,1696.90,1728.90,1683.37,1713.99,181700000,1713.99
-1986-02-26,1692.66,1714.79,1679.59,1696.90,158000000,1696.90
-1986-02-25,1698.28,1709.52,1674.08,1692.66,148000000,1692.66
-1986-02-24,1697.71,1709.75,1678.67,1698.28,144700000,1698.28
-1986-02-21,1672.82,1702.75,1668.69,1697.71,177600000,1697.71
-1986-02-20,1658.26,1675.46,1641.97,1672.82,139700000,1672.82
-1986-02-19,1678.78,1689.22,1651.03,1658.26,152000000,1658.26
-1986-02-18,1664.45,1685.55,1649.43,1678.78,160200000,1678.78
-1986-02-14,1645.07,1668.69,1636.12,1664.45,155600000,1664.45
-1986-02-13,1629.93,1649.31,1616.86,1645.07,136500000,1645.07
-1986-02-12,1622.82,1640.48,1611.70,1629.93,136400000,1629.93
-1986-02-11,1626.38,1637.50,1613.30,1622.82,141300000,1622.82
-1986-02-10,1613.42,1633.14,1605.16,1626.38,129900000,1626.38
-1986-02-07,1600.69,1622.82,1576.83,1613.42,144400000,1613.42
-1986-02-06,1593.12,1616.51,1587.50,1600.69,146100000,1600.69
-1986-02-05,1593.23,1601.83,1576.26,1593.12,134300000,1593.12
-1986-02-04,1594.27,1611.47,1575.46,1593.23,175700000,1593.23
-1986-02-03,1570.99,1600.11,1564.33,1594.27,145300000,1594.27
-1986-01-31,1552.18,1582.91,1548.17,1570.99,143500000,1570.99
-1986-01-30,1558.94,1572.59,1545.76,1552.18,125300000,1552.18
-1986-01-29,1556.42,1578.10,1548.05,1558.94,193800000,1558.94
-1986-01-28,1537.61,1561.35,1530.50,1556.42,145700000,1556.42
-1986-01-27,1529.93,1548.17,1524.43,1537.61,122900000,1537.61
-1986-01-24,1511.24,1537.39,1507.68,1529.93,128900000,1529.93
-1986-01-23,1502.29,1519.39,1491.74,1511.24,130300000,1511.24
-1986-01-22,1514.45,1525.57,1494.84,1502.29,131200000,1502.29
-1986-01-21,1529.13,1535.89,1502.87,1514.45,128300000,1514.45
-1986-01-20,1536.01,1536.01,1516.86,1529.13,85340000,1529.13
-1986-01-17,1541.63,1552.52,1519.72,1536.70,132100000,1536.70
-1986-01-16,1527.29,1547.71,1517.09,1541.63,130500000,1541.63
-1986-01-15,1519.04,1535.32,1512.96,1527.29,122400000,1527.29
-1986-01-14,1520.53,1530.62,1508.03,1519.04,113900000,1519.04
-1986-01-13,1513.53,1526.83,1502.29,1520.53,108700000,1520.53
-1986-01-10,1518.23,1530.96,1500.57,1513.53,122800000,1513.53
-1986-01-09,1526.61,1530.85,1495.64,1518.23,176500000,1518.23
-1986-01-08,1565.71,1578.10,1516.63,1526.61,180300000,1526.61
-1986-01-07,1547.59,1573.74,1544.50,1565.71,153000000,1565.71
-1986-01-06,1549.20,1557.00,1537.04,1547.59,99610000,1547.59
-1986-01-03,1537.73,1557.11,1534.98,1549.20,105000000,1549.20
-1986-01-02,1546.67,1551.95,1523.74,1537.73,98960000,1537.73
-1985-12-31,1550.46,1562.84,1537.50,1546.67,112700000,1546.67
-1985-12-30,1543.00,1557.34,1534.98,1550.46,91970000,1550.46
-1985-12-27,1527.29,1548.85,1527.29,1543.00,81560000,1543.00
-1985-12-26,1519.15,1532.57,1514.68,1526.49,62050000,1526.49
-1985-12-24,1528.78,1532.45,1508.83,1519.15,78300000,1519.15
-1985-12-23,1543.00,1547.82,1516.63,1528.78,107900000,1528.78
-1985-12-20,1543.92,1564.56,1535.67,1543.00,170300000,1543.00
-1985-12-19,1542.43,1552.98,1532.00,1543.92,130200000,1543.92
-1985-12-18,1544.50,1560.44,1528.44,1542.43,137900000,1542.43
-1985-12-17,1553.10,1568.81,1536.35,1544.50,155200000,1544.50
-1985-12-16,1535.21,1570.87,1528.90,1553.10,176000000,1553.10
-1985-12-13,1511.24,1546.44,1502.75,1535.21,177900000,1535.21
-1985-12-12,1511.70,1523.51,1496.79,1511.24,170500000,1511.24
-1985-12-11,1499.20,1520.30,1492.09,1511.70,178500000,1511.70
-1985-12-10,1497.02,1514.91,1483.94,1499.20,156500000,1499.20
-1985-12-09,1478.10,1504.13,1478.10,1497.02,144000000,1497.02
-1985-12-06,1482.91,1488.30,1464.79,1477.18,125500000,1477.18
-1985-12-05,1484.40,1504.01,1477.98,1482.91,181000000,1482.91
-1985-12-04,1459.06,1488.76,1457.45,1484.40,153200000,1484.40
-1985-12-03,1457.91,1466.40,1450.34,1459.06,109700000,1459.06
-1985-12-02,1472.13,1476.26,1451.26,1457.91,103500000,1457.91
-1985-11-29,1475.69,1486.93,1463.99,1472.13,84060000,1472.13
-1985-11-27,1456.77,1483.83,1454.01,1475.69,143700000,1475.69
-1985-11-26,1456.65,1470.07,1447.25,1456.77,123100000,1456.77
-1985-11-25,1464.33,1467.09,1449.43,1456.65,91710000,1456.65
-1985-11-22,1462.27,1475.57,1451.61,1464.33,133800000,1464.33
-1985-11-21,1439.79,1466.06,1439.79,1462.27,150300000,1462.27
-1985-11-20,1438.99,1451.49,1429.24,1439.22,105100000,1439.22
-1985-11-19,1440.02,1452.18,1430.05,1438.99,126100000,1438.99
-1985-11-18,1435.09,1447.25,1422.25,1440.02,108400000,1440.02
-1985-11-15,1439.22,1450.57,1425.69,1435.09,130200000,1435.09
-1985-11-14,1427.75,1443.81,1420.64,1439.22,124900000,1439.22
-1985-11-13,1433.60,1439.79,1419.38,1427.75,109700000,1427.75
-1985-11-12,1431.88,1446.10,1421.10,1433.60,170800000,1433.60
-1985-11-11,1404.36,1432.57,1402.41,1431.88,126500000,1431.88
-1985-11-08,1399.54,1410.44,1391.06,1404.36,115000000,1404.36
-1985-11-07,1403.44,1410.11,1389.91,1399.54,119000000,1399.54
-1985-11-06,1396.67,1411.01,1386.47,1403.44,129500000,1403.44
-1985-11-05,1389.68,1402.52,1380.28,1396.67,119200000,1396.67
-1985-11-04,1390.25,1398.51,1377.06,1389.68,104900000,1389.68
-1985-11-01,1374.31,1393.58,1367.78,1390.25,129400000,1390.25
-1985-10-31,1375.57,1383.60,1362.61,1374.31,121500000,1374.31
-1985-10-30,1368.73,1384.63,1361.01,1375.57,120400000,1375.57
-1985-10-29,1359.99,1377.69,1356.18,1368.73,110600000,1368.73
-1985-10-28,1356.52,1364.02,1346.55,1359.99,97880000,1359.99
-1985-10-25,1362.34,1366.71,1351.59,1356.52,101800000,1356.52
-1985-10-24,1367.16,1374.55,1355.29,1362.34,123100000,1362.34
-1985-10-23,1364.36,1373.43,1357.08,1367.16,121700000,1367.16
-1985-10-22,1364.14,1374.66,1356.18,1364.36,111300000,1364.36
-1985-10-21,1368.84,1375.67,1357.75,1364.14,95680000,1364.14
-1985-10-18,1369.29,1383.40,1358.87,1368.84,107100000,1368.84
-1985-10-17,1368.50,1378.36,1356.85,1369.29,140500000,1369.29
-1985-10-16,1350.81,1371.30,1346.21,1368.50,117400000,1368.50
-1985-10-15,1354.73,1364.14,1343.53,1350.81,110400000,1350.81
-1985-10-14,1339.94,1356.18,1336.58,1354.73,78540000,1354.73
-1985-10-11,1328.07,1343.41,1323.70,1339.94,96370000,1339.94
-1985-10-10,1326.72,1333.33,1318.44,1328.07,90910000,1328.07
-1985-10-09,1325.49,1336.81,1320.23,1326.72,99140000,1326.72
-1985-10-08,1324.37,1333.89,1316.20,1325.49,97170000,1325.49
-1985-10-07,1328.74,1335.91,1315.19,1324.37,95550000,1324.37
-1985-10-04,1333.11,1335.01,1321.12,1328.74,101200000,1328.74
-1985-10-03,1333.67,1345.43,1323.81,1333.11,127500000,1333.11
-1985-10-02,1340.95,1351.59,1327.96,1333.67,147300000,1333.67
-1985-10-01,1328.63,1343.97,1323.48,1340.95,130200000,1340.95
-1985-09-30,1320.79,1336.81,1318.55,1328.63,103600000,1328.63
-1985-09-26,1312.05,1325.27,1301.97,1320.79,106100000,1320.79
-1985-09-25,1321.12,1330.20,1306.00,1312.05,92120000,1312.05
-1985-09-24,1316.31,1334.57,1301.86,1321.12,97870000,1321.12
-1985-09-23,1305.78,1323.59,1305.78,1316.31,104800000,1316.31
-1985-09-20,1306.79,1313.40,1294.47,1297.94,101400000,1297.94
-1985-09-19,1300.40,1312.95,1291.22,1306.79,100300000,1306.79
-1985-09-18,1298.16,1307.57,1283.71,1300.40,105700000,1300.40
-1985-09-17,1309.14,1314.52,1291.22,1298.16,111900000,1298.16
-1985-09-16,1307.68,1315.75,1301.08,1309.14,66700000,1309.14
-1985-09-13,1312.39,1320.12,1296.71,1307.68,111400000,1307.68
-1985-09-12,1319.44,1327.40,1307.01,1312.39,107100000,1312.39
-1985-09-11,1333.45,1334.01,1314.85,1319.44,100400000,1319.44
-1985-09-10,1339.27,1346.55,1324.82,1333.45,104700000,1333.45
-1985-09-09,1335.69,1348.23,1326.61,1339.27,89850000,1339.27
-1985-09-06,1325.83,1341.40,1323.92,1335.69,95040000,1335.69
-1985-09-05,1326.72,1333.00,1318.66,1325.83,94480000,1325.83
-1985-09-04,1329.19,1334.12,1318.21,1326.72,85510000,1326.72
-1985-09-03,1334.01,1337.14,1322.80,1329.19,81190000,1329.19
-1985-08-30,1335.13,1342.41,1325.27,1334.01,81620000,1334.01
-1985-08-29,1331.09,1340.05,1325.16,1335.13,85660000,1335.13
-1985-08-28,1322.47,1334.79,1316.98,1331.09,88530000,1331.09
-1985-08-27,1317.65,1328.63,1315.19,1322.47,82140000,1322.47
-1985-08-26,1318.32,1324.26,1309.81,1317.65,70290000,1317.65
-1985-08-23,1318.10,1322.92,1310.48,1318.32,75270000,1318.32
-1985-08-22,1329.53,1334.68,1313.51,1318.10,90600000,1318.10
-1985-08-21,1323.70,1333.67,1319.11,1329.53,94880000,1329.53
-1985-08-20,1312.50,1328.07,1311.83,1323.70,91230000,1323.70
-1985-08-19,1312.72,1319.22,1307.57,1312.50,67930000,1312.50
-1985-08-16,1317.76,1321.57,1305.89,1312.72,87910000,1312.72
-1985-08-15,1316.98,1324.71,1308.13,1317.76,86100000,1317.76
-1985-08-14,1315.30,1326.05,1311.38,1316.98,85780000,1316.98
-1985-08-13,1314.29,1325.49,1303.65,1315.30,80300000,1315.30
-1985-08-12,1320.79,1324.37,1309.14,1314.29,77340000,1314.29
-1985-08-09,1329.86,1331.88,1317.65,1320.79,81750000,1320.79
-1985-08-08,1325.04,1334.79,1318.32,1329.86,102900000,1329.86
-1985-08-07,1325.16,1331.21,1316.31,1325.04,100000000,1325.04
-1985-08-06,1346.89,1350.02,1322.92,1325.16,104000000,1325.16
-1985-08-05,1352.71,1352.71,1336.92,1346.89,79610000,1346.89
-1985-08-02,1355.62,1360.10,1345.43,1353.05,87860000,1353.05
-1985-08-01,1347.45,1361.90,1342.97,1355.62,121500000,1355.62
-1985-07-31,1346.10,1357.41,1340.05,1347.45,124200000,1347.45
-1985-07-30,1343.86,1352.60,1334.90,1346.10,102300000,1346.10
-1985-07-29,1357.08,1358.09,1338.93,1343.86,95960000,1343.86
-1985-07-26,1353.61,1365.59,1345.21,1357.08,107000000,1357.08
-1985-07-25,1348.90,1359.88,1338.60,1353.61,123300000,1353.61
-1985-07-24,1351.81,1359.21,1335.69,1348.90,128600000,1348.90
-1985-07-23,1357.64,1372.20,1344.76,1351.81,143600000,1351.81
-1985-07-22,1359.54,1362.12,1346.89,1357.64,93540000,1357.64
-1985-07-19,1350.92,1363.35,1346.44,1359.54,114800000,1359.54
-1985-07-18,1357.97,1363.26,1345.32,1350.92,131400000,1350.92
-1985-07-17,1347.89,1365.93,1346.21,1357.97,159900000,1357.97
-1985-07-16,1335.46,1351.93,1331.54,1347.89,132500000,1347.89
-1985-07-15,1338.60,1347.67,1326.95,1335.46,103900000,1335.46
-1985-07-12,1337.70,1345.99,1326.39,1338.60,120300000,1338.60
-1985-07-11,1332.89,1343.64,1326.16,1337.70,122800000,1337.70
-1985-07-10,1321.91,1336.81,1315.30,1332.89,108200000,1332.89
-1985-07-09,1328.41,1333.67,1313.40,1321.91,99060000,1321.91
-1985-07-08,1334.45,1336.47,1318.88,1328.41,83670000,1328.41
-1985-07-05,1326.39,1340.61,1324.93,1334.45,62450000,1334.45
-1985-07-03,1334.01,1337.59,1320.23,1326.39,98410000,1326.39
-1985-07-02,1337.14,1343.75,1329.19,1334.01,111100000,1334.01
-1985-07-01,1335.46,1342.18,1322.58,1337.14,96080000,1337.14
-1985-06-28,1332.21,1341.17,1326.16,1335.46,105200000,1335.46
-1985-06-27,1323.81,1338.71,1321.80,1332.21,106700000,1332.21
-1985-06-26,1323.03,1329.19,1314.74,1323.81,94130000,1323.81
-1985-06-25,1320.56,1338.82,1314.07,1323.03,115700000,1323.03
-1985-06-24,1324.48,1326.72,1307.80,1320.56,96040000,1320.56
-1985-06-21,1299.73,1326.05,1293.79,1324.48,125400000,1324.48
-1985-06-20,1297.38,1305.44,1287.75,1299.73,87500000,1299.73
-1985-06-19,1304.77,1312.72,1293.57,1297.38,108300000,1297.38
-1985-06-18,1298.39,1312.39,1293.68,1304.77,106900000,1304.77
-1985-06-17,1300.96,1303.99,1288.75,1298.39,82170000,1298.39
-1985-06-14,1290.10,1305.44,1288.88,1300.96,93090000,1300.96
-1985-06-13,1306.34,1308.13,1285.39,1290.10,107000000,1290.10
-1985-06-12,1313.84,1318.21,1300.74,1306.34,97700000,1306.34
-1985-06-11,1318.44,1323.81,1308.02,1313.84,102100000,1313.84
-1985-06-10,1316.42,1322.58,1307.24,1318.44,87940000,1318.44
-1985-06-07,1327.28,1331.99,1312.95,1316.42,99630000,1316.42
-1985-06-06,1320.56,1330.53,1311.94,1327.28,117200000,1327.28
-1985-06-05,1315.30,1331.77,1312.61,1320.56,143900000,1320.56
-1985-06-04,1310.93,1321.24,1304.44,1315.30,115400000,1315.30
-1985-06-03,1315.41,1325.04,1304.21,1310.93,125000000,1310.93
-1985-05-31,1305.78,1320.79,1298.72,1315.41,134100000,1315.41
-1985-05-30,1302.98,1314.18,1293.91,1305.78,108300000,1305.78
-1985-05-29,1301.52,1308.36,1292.79,1302.98,96540000,1302.98
-1985-05-28,1301.97,1312.84,1293.23,1301.52,90600000,1301.52
-1985-05-24,1296.71,1305.67,1291.11,1301.97,85970000,1301.97
-1985-05-23,1303.76,1307.80,1290.99,1296.71,101000000,1296.71
-1985-05-22,1308.92,1308.92,1294.35,1303.76,101400000,1303.76
-1985-05-21,1304.88,1316.08,1297.49,1309.70,130200000,1309.70
-1985-05-20,1292.23,1310.37,1292.23,1304.88,146300000,1304.88
-1985-05-17,1278.05,1295.83,1271.42,1285.34,124600000,1285.34
-1985-05-16,1273.52,1285.11,1270.10,1278.05,99420000,1278.05
-1985-05-15,1273.30,1283.57,1265.46,1273.52,106100000,1273.52
-1985-05-14,1277.50,1288.65,1267.67,1273.30,97360000,1273.30
-1985-05-13,1274.18,1283.57,1268.77,1277.50,85830000,1277.50
-1985-05-10,1261.59,1282.46,1261.59,1274.18,140300000,1274.18
-1985-05-09,1249.78,1265.57,1246.58,1260.27,111000000,1260.27
-1985-05-08,1252.75,1258.94,1239.51,1249.78,101300000,1249.78
-1985-05-07,1247.79,1261.37,1243.15,1252.75,100200000,1252.75
-1985-05-06,1247.24,1256.40,1241.39,1247.79,85650000,1247.79
-1985-05-03,1242.27,1253.86,1238.30,1247.24,94870000,1247.24
-1985-05-02,1242.05,1251.21,1235.53,1242.27,107700000,1242.27
-1985-05-01,1258.06,1262.81,1239.07,1242.05,101600000,1242.05
-1985-04-30,1259.72,1266.23,1245.80,1258.06,111800000,1258.06
-1985-04-29,1275.18,1277.94,1257.40,1259.72,88860000,1259.72
-1985-04-26,1284.78,1290.30,1270.54,1275.18,86570000,1275.18
-1985-04-25,1278.49,1289.20,1272.53,1284.78,108600000,1284.78
-1985-04-24,1278.71,1286.44,1269.88,1278.49,99600000,1278.49
-1985-04-23,1266.56,1282.91,1261.15,1278.71,108900000,1278.71
-1985-04-22,1266.56,1273.63,1257.62,1266.56,79930000,1266.56
-1985-04-19,1265.13,1272.53,1258.50,1266.56,81110000,1266.56
-1985-04-18,1272.31,1281.91,1260.82,1265.13,100600000,1265.13
-1985-04-17,1269.55,1277.50,1263.47,1272.31,96020000,1272.31
-1985-04-16,1266.78,1276.61,1256.96,1269.55,98480000,1269.55
-1985-04-15,1265.68,1272.42,1257.84,1266.78,80660000,1266.78
-1985-04-12,1263.69,1270.43,1257.29,1265.68,86220000,1265.68
-1985-04-11,1259.94,1274.85,1257.18,1263.69,108400000,1263.69
-1985-04-10,1253.86,1269.10,1252.10,1259.94,108200000,1259.94
-1985-04-09,1252.98,1262.04,1246.58,1253.86,83980000,1253.86
-1985-04-08,1259.05,1267.01,1246.02,1252.98,79960000,1252.98
-1985-04-04,1258.06,1264.24,1248.34,1259.05,86910000,1259.05
-1985-04-03,1265.68,1268.11,1251.55,1258.06,95480000,1258.06
-1985-04-02,1272.75,1280.15,1261.48,1265.68,101700000,1265.68
-1985-04-01,1266.78,1276.28,1260.49,1272.75,89900000,1272.75
-1985-03-29,1260.71,1270.65,1255.85,1266.78,101400000,1266.78
-1985-03-28,1264.91,1275.51,1256.63,1260.71,99780000,1260.71
-1985-03-27,1259.72,1270.87,1255.96,1264.91,101000000,1264.91
-1985-03-26,1259.94,1267.56,1252.10,1259.72,89930000,1259.72
-1985-03-25,1267.45,1268.33,1252.87,1259.94,74040000,1259.94
-1985-03-22,1268.22,1277.39,1261.70,1267.45,99250000,1267.45
-1985-03-21,1265.24,1278.93,1257.62,1268.22,95930000,1268.22
-1985-03-20,1271.09,1277.39,1257.84,1265.24,107500000,1265.24
-1985-03-19,1249.67,1274.18,1245.69,1271.09,119200000,1271.09
-1985-03-18,1247.35,1260.93,1242.82,1249.67,94020000,1249.67
-1985-03-15,1260.05,1266.89,1245.14,1247.35,105200000,1247.35
-1985-03-14,1261.70,1269.21,1254.20,1260.05,103400000,1260.05
-1985-03-13,1271.75,1278.27,1257.62,1261.70,101700000,1261.70
-1985-03-12,1268.55,1279.48,1262.48,1271.75,92840000,1271.75
-1985-03-11,1269.66,1277.05,1260.93,1268.55,84110000,1268.55
-1985-03-08,1271.53,1280.81,1264.13,1269.66,96390000,1269.66
-1985-03-07,1280.37,1283.24,1265.46,1271.53,112100000,1271.53
-1985-03-06,1291.85,1296.93,1275.51,1280.37,116900000,1280.37
-1985-03-05,1289.53,1300.02,1281.03,1291.85,116400000,1291.85
-1985-03-04,1299.36,1304.55,1283.13,1289.53,102100000,1289.53
-1985-03-01,1284.01,1309.96,1282.69,1299.36,139900000,1299.36
-1985-02-28,1281.03,1288.32,1271.42,1284.01,100700000,1284.01
-1985-02-27,1286.11,1295.27,1274.40,1281.03,107700000,1281.03
-1985-02-26,1277.50,1293.18,1272.31,1286.11,114200000,1286.11
-1985-02-25,1275.84,1283.13,1263.91,1277.50,89740000,1277.50
-1985-02-22,1279.04,1286.55,1269.99,1275.84,93680000,1275.84
-1985-02-21,1283.13,1287.10,1272.64,1279.04,104000000,1279.04
-1985-02-20,1280.59,1292.51,1272.53,1283.13,118200000,1283.13
-1985-02-19,1282.02,1287.43,1273.52,1280.59,90400000,1280.59
-1985-02-15,1287.88,1296.27,1275.07,1282.02,106500000,1282.02
-1985-02-14,1297.92,1307.53,1283.68,1287.88,139700000,1287.88
-1985-02-13,1276.61,1304.66,1274.51,1297.92,142500000,1297.92
-1985-02-12,1276.06,1283.13,1266.34,1276.61,111100000,1276.61
-1985-02-11,1289.97,1291.74,1268.66,1276.06,104000000,1276.06
-1985-02-08,1290.08,1297.15,1281.36,1289.97,116500000,1289.97
-1985-02-07,1280.59,1297.04,1279.81,1290.08,151700000,1290.08
-1985-02-06,1285.23,1294.50,1275.07,1280.59,141000000,1280.59
-1985-02-05,1290.08,1301.13,1278.60,1285.23,143900000,1285.23
-1985-02-04,1277.72,1294.94,1268.99,1290.08,113700000,1290.08
-1985-02-01,1286.11,1286.11,1269.77,1277.72,105400000,1277.72
-1985-01-31,1287.88,1293.40,1272.64,1286.77,132500000,1286.77
-1985-01-30,1292.62,1305.10,1278.93,1287.88,170000000,1287.88
-1985-01-29,1277.83,1295.49,1266.89,1292.62,115700000,1292.62
-1985-01-28,1276.06,1290.97,1264.24,1277.83,128400000,1277.83
-1985-01-25,1270.43,1284.67,1262.04,1276.06,122400000,1276.06
-1985-01-24,1274.73,1287.99,1264.58,1270.43,160700000,1270.43
-1985-01-23,1259.50,1278.27,1252.54,1274.73,144400000,1274.73
-1985-01-22,1261.37,1277.27,1252.87,1259.50,174800000,1259.50
-1985-01-21,1227.36,1266.45,1226.70,1261.37,146800000,1261.37
-1985-01-18,1228.69,1237.63,1219.52,1227.36,104700000,1227.36
-1985-01-17,1230.68,1234.65,1219.74,1228.69,113600000,1228.69
-1985-01-16,1230.79,1241.17,1220.74,1230.68,135500000,1230.68
-1985-01-15,1234.54,1243.71,1223.06,1230.79,155300000,1230.79
-1985-01-14,1218.09,1238.18,1210.36,1234.54,124900000,1234.54
-1985-01-11,1223.50,1229.35,1210.91,1218.09,107600000,1218.09
-1985-01-10,1202.74,1225.93,1195.56,1223.50,124700000,1223.50
-1985-01-09,1191.70,1209.47,1190.26,1202.74,99230000,1202.74
-1985-01-08,1190.59,1199.54,1184.08,1191.70,92110000,1191.70
-1985-01-07,1184.96,1198.32,1182.86,1190.59,86190000,1190.59
-1985-01-04,1189.82,1192.69,1178.67,1184.96,77480000,1184.96
-1985-01-03,1198.87,1207.93,1185.18,1189.82,88880000,1189.82
-1985-01-02,1211.57,1212.46,1194.35,1198.87,67820000,1198.87
-1984-12-31,1204.17,1215.55,1199.20,1211.57,80260000,1211.57
-1984-12-28,1202.52,1210.47,1196.11,1204.17,77070000,1204.17
-1984-12-27,1208.92,1214.22,1199.09,1202.52,70100000,1202.52
-1984-12-26,1210.14,1213.69,1201.74,1208.92,46700000,1208.92
-1984-12-24,1199.20,1214.44,1199.20,1210.14,55550000,1210.14
-1984-12-21,1203.29,1210.14,1186.84,1198.98,101200000,1198.98
-1984-12-20,1208.04,1219.52,1198.87,1203.29,93220000,1203.29
-1984-12-19,1211.57,1223.61,1201.52,1208.04,139600000,1208.04
-1984-12-18,1182.31,1213.23,1182.31,1211.57,169000000,1211.57
-1984-12-17,1175.91,1182.31,1164.53,1176.79,89490000,1176.79
-1984-12-14,1168.84,1187.28,1165.64,1175.91,95060000,1175.91
-1984-12-13,1175.13,1183.52,1162.65,1168.84,80850000,1168.84
-1984-12-12,1178.33,1183.97,1170.38,1175.13,78710000,1175.13
-1984-12-11,1172.26,1183.86,1167.51,1178.33,80240000,1178.33
-1984-12-10,1163.21,1179.00,1154.70,1172.26,81140000,1172.26
-1984-12-07,1170.49,1177.78,1160.00,1163.21,81000000,1163.21
-1984-12-06,1171.60,1178.67,1159.23,1170.49,96560000,1170.49
-1984-12-05,1185.07,1187.17,1166.85,1171.60,88700000,1171.60
-1984-12-04,1182.42,1192.58,1178.67,1185.07,81250000,1185.07
-1984-12-03,1188.94,1192.25,1173.37,1182.42,95300000,1182.42
-1984-11-30,1193.46,1197.77,1181.10,1188.94,77580000,1188.94
-1984-11-29,1205.39,1206.60,1188.16,1193.46,75860000,1193.46
-1984-11-28,1220.19,1224.71,1203.51,1205.39,86300000,1205.39
-1984-11-27,1212.35,1226.92,1204.62,1220.19,95470000,1220.19
-1984-11-26,1220.30,1224.49,1206.16,1212.35,76520000,1212.35
-1984-11-23,1204.28,1224.49,1204.28,1220.30,73910000,1220.30
-1984-11-21,1195.12,1207.05,1185.07,1201.52,81620000,1201.52
-1984-11-20,1185.29,1202.41,1184.30,1195.12,83240000,1195.12
-1984-11-19,1187.94,1197.44,1180.76,1185.29,69730000,1185.29
-1984-11-16,1206.16,1213.01,1186.73,1187.94,83140000,1187.94
-1984-11-15,1206.93,1214.22,1198.54,1206.16,81530000,1206.16
-1984-11-14,1206.60,1215.88,1198.98,1206.93,73940000,1206.93
-1984-11-13,1219.19,1222.17,1203.07,1206.60,69790000,1206.60
-1984-11-12,1218.97,1223.72,1209.25,1219.19,55610000,1219.19
-1984-11-09,1228.69,1238.63,1216.65,1218.97,83620000,1218.97
-1984-11-08,1233.22,1237.52,1220.30,1228.69,88580000,1228.69
-1984-11-07,1244.15,1245.69,1223.72,1233.22,110800000,1233.22
-1984-11-06,1229.24,1247.46,1227.03,1244.15,101200000,1244.15
-1984-11-05,1216.65,1233.11,1212.57,1229.24,84730000,1229.24
-1984-11-02,1217.09,1225.82,1208.26,1216.65,96810000,1216.65
-1984-11-01,1207.38,1224.38,1204.51,1217.09,107300000,1217.09
-1984-10-31,1217.31,1219.63,1201.52,1207.38,91890000,1207.38
-1984-10-30,1201.41,1224.60,1200.42,1217.31,95200000,1217.31
-1984-10-29,1204.95,1207.49,1195.01,1201.41,63200000,1201.41
-1984-10-26,1211.02,1213.45,1197.77,1204.95,83900000,1204.95
-1984-10-25,1216.43,1223.61,1206.05,1211.02,92760000,1211.02
-1984-10-24,1213.01,1223.06,1205.17,1216.43,91620000,1216.43
-1984-10-23,1217.20,1226.70,1206.71,1213.01,92260000,1213.01
-1984-10-22,1225.93,1230.34,1210.80,1217.20,81020000,1217.20
-1984-10-19,1225.38,1246.02,1213.56,1225.93,186900000,1225.93
-1984-10-18,1195.89,1226.70,1185.73,1225.38,149500000,1225.38
-1984-10-17,1197.77,1208.59,1185.62,1195.89,99740000,1195.89
-1984-10-16,1202.96,1209.36,1192.25,1197.77,82930000,1197.77
-1984-10-15,1190.70,1209.58,1186.73,1202.96,87590000,1202.96
-1984-10-12,1183.08,1198.43,1181.10,1190.70,92190000,1190.70
-1984-10-11,1177.23,1189.93,1170.61,1183.08,87020000,1183.08
-1984-10-10,1175.13,1182.97,1158.24,1177.23,94270000,1177.23
-1984-10-09,1177.89,1188.16,1171.93,1175.13,76840000,1175.13
-1984-10-08,1182.53,1183.08,1170.49,1177.89,46360000,1177.89
-1984-10-05,1187.39,1196.33,1176.57,1182.53,82950000,1182.53
-1984-10-04,1182.86,1195.01,1181.10,1187.39,76700000,1187.39
-1984-10-03,1191.36,1195.78,1174.69,1182.86,92400000,1182.86
-1984-10-02,1198.98,1207.38,1188.60,1191.36,89360000,1191.36
-1984-10-01,1206.71,1208.15,1192.36,1198.98,73630000,1198.98
-1984-09-28,1216.76,1217.98,1200.09,1206.71,78950000,1206.71
-1984-09-27,1212.12,1225.27,1211.35,1216.76,88880000,1216.76
-1984-09-26,1207.16,1222.06,1199.98,1212.12,100200000,1212.12
-1984-09-25,1205.06,1216.87,1192.80,1207.16,86250000,1207.16
-1984-09-24,1201.74,1216.43,1196.00,1205.06,76380000,1205.06
-1984-09-21,1216.54,1231.01,1197.00,1201.74,120600000,1201.74
-1984-09-20,1213.01,1221.73,1202.52,1216.54,92030000,1216.54
-1984-09-19,1226.26,1234.10,1206.05,1213.01,119900000,1213.01
-1984-09-18,1237.08,1239.95,1221.18,1226.26,107700000,1226.26
-1984-09-17,1237.52,1248.01,1226.26,1237.08,88790000,1237.08
-1984-09-14,1228.25,1248.23,1227.92,1237.52,137400000,1237.52
-1984-09-13,1200.31,1232.11,1196.00,1228.25,110500000,1228.25
-1984-09-12,1197.99,1206.60,1189.82,1200.31,77980000,1200.31
-1984-09-11,1202.52,1221.07,1196.33,1197.99,101300000,1197.99
-1984-09-10,1207.38,1214.33,1191.81,1202.52,74410000,1202.52
-1984-09-07,1218.86,1226.59,1201.63,1207.38,84110000,1207.38
-1984-09-06,1209.03,1226.04,1208.70,1218.86,91920000,1218.86
-1984-09-05,1212.35,1215.88,1199.65,1209.03,69250000,1209.03
-1984-09-04,1222.39,1222.39,1206.93,1212.35,62110000,1212.35
-1984-08-31,1223.28,1226.70,1213.89,1224.38,57460000,1224.38
-1984-08-30,1226.92,1231.89,1218.64,1223.28,70840000,1223.28
-1984-08-29,1232.11,1243.04,1222.50,1226.92,90660000,1226.92
-1984-08-28,1227.92,1236.20,1220.85,1232.11,70560000,1232.11
-1984-08-27,1234.76,1234.76,1219.08,1227.92,57660000,1227.92
-1984-08-24,1232.44,1240.72,1227.14,1236.53,69640000,1236.53
-1984-08-23,1231.78,1241.94,1221.51,1232.44,83130000,1232.44
-1984-08-22,1239.73,1250.55,1225.82,1231.78,116000000,1231.78
-1984-08-21,1216.98,1247.35,1216.65,1239.73,128100000,1239.73
-1984-08-20,1211.90,1221.18,1203.62,1216.98,75450000,1216.98
-1984-08-17,1209.14,1222.06,1205.94,1211.90,71500000,1211.90
-1984-08-16,1198.98,1218.42,1196.78,1209.14,93610000,1209.14
-1984-08-15,1214.11,1219.74,1195.56,1198.98,91880000,1198.98
-1984-08-14,1220.08,1230.45,1208.70,1214.11,81470000,1214.11
-1984-08-13,1218.09,1226.15,1204.39,1220.08,77960000,1220.08
-1984-08-10,1224.05,1253.75,1214.66,1218.09,171000000,1218.09
-1984-08-09,1196.11,1231.45,1189.49,1224.05,131100000,1224.05
-1984-08-08,1204.62,1215.44,1191.70,1196.11,121200000,1196.11
-1984-08-07,1202.96,1216.98,1184.96,1204.62,127900000,1204.62
-1984-08-06,1202.08,1230.90,1191.14,1202.96,203000000,1202.96
-1984-08-03,1176.13,1213.34,1176.13,1202.08,236500000,1202.08
-1984-08-02,1138.14,1171.38,1138.14,1166.08,172800000,1166.08
-1984-08-01,1115.28,1139.58,1114.95,1134.61,127500000,1134.61
-1984-07-31,1109.98,1123.56,1104.90,1115.28,86910000,1115.28
-1984-07-30,1114.62,1121.69,1103.25,1109.98,72330000,1109.98
-1984-07-27,1107.55,1124.23,1101.59,1114.62,101350000,1114.62
-1984-07-26,1096.95,1113.18,1093.42,1107.55,90410000,1107.55
-1984-07-25,1086.57,1106.45,1078.95,1096.95,90520000,1096.95
-1984-07-24,1096.62,1103.91,1083.59,1086.57,74370000,1086.57
-1984-07-23,1101.37,1102.58,1083.37,1096.62,77990000,1096.62
-1984-07-20,1102.92,1109.10,1092.42,1101.37,79090000,1101.37
-1984-07-19,1111.64,1114.07,1098.28,1102.92,85230000,1102.92
-1984-07-18,1122.90,1125.44,1106.01,1111.64,76640000,1111.64
-1984-07-17,1116.83,1128.53,1110.87,1122.90,82890000,1122.90
-1984-07-16,1109.87,1120.25,1100.82,1116.83,73420000,1116.83
-1984-07-13,1104.57,1118.04,1101.92,1109.87,75480000,1109.87
-1984-07-12,1108.55,1116.72,1096.18,1104.57,86050000,1104.57
-1984-07-11,1126.88,1127.87,1106.23,1108.55,89540000,1108.55
-1984-07-10,1134.05,1139.47,1119.92,1126.88,74010000,1126.88
-1984-07-09,1122.57,1138.69,1112.63,1134.05,74830000,1134.05
-1984-07-06,1124.56,1127.10,1112.19,1122.57,65850000,1122.57
-1984-07-05,1134.28,1138.47,1122.24,1124.56,66100000,1124.56
-1984-07-03,1130.08,1139.13,1124.01,1134.28,69960000,1134.28
-1984-07-02,1132.40,1137.81,1120.25,1130.08,69230000,1130.08
-1984-06-29,1126.55,1143.33,1124.56,1132.40,90770000,1132.40
-1984-06-28,1116.72,1131.62,1112.74,1126.55,77660000,1126.55
-1984-06-27,1122.79,1130.08,1109.98,1116.72,78400000,1116.72
-1984-06-26,1130.52,1133.61,1116.83,1122.79,82600000,1122.79
-1984-06-25,1131.07,1140.68,1124.01,1130.52,72850000,1130.52
-1984-06-22,1127.21,1139.02,1118.93,1131.07,98400000,1131.07
-1984-06-21,1131.63,1143.44,1115.17,1127.21,123380000,1127.21
-1984-06-20,1115.83,1135.16,1097.73,1131.63,99090000,1131.63
-1984-06-19,1109.65,1123.12,1105.79,1115.83,98000000,1115.83
-1984-06-18,1086.90,1114.29,1079.39,1109.65,94900000,1109.65
-1984-06-15,1097.61,1106.34,1083.59,1086.90,85460000,1086.90
-1984-06-14,1110.53,1113.96,1089.55,1097.61,79120000,1097.61
-1984-06-13,1110.53,1120.91,1103.80,1110.53,67510000,1110.53
-1984-06-12,1115.61,1119.92,1101.92,1110.53,84660000,1110.53
-1984-06-11,1130.96,1130.96,1112.63,1115.61,69050000,1115.61
-1984-06-08,1132.44,1137.82,1123.81,1131.25,67840000,1131.25
-1984-06-07,1133.84,1139.12,1125.11,1132.44,82120000,1132.44
-1984-06-06,1124.89,1144.83,1117.89,1133.84,83440000,1133.84
-1984-06-05,1131.57,1133.62,1117.13,1124.89,84840000,1124.89
-1984-06-04,1125.32,1143.53,1125.32,1131.57,96740000,1131.57
-1984-06-01,1106.25,1127.26,1106.25,1124.35,96040000,1124.35
-1984-05-31,1102.59,1113.90,1095.15,1104.85,81890000,1104.85
-1984-05-30,1101.24,1116.59,1083.19,1102.59,105660000,1102.59
-1984-05-29,1107.10,1113.80,1093.80,1101.24,69060000,1101.24
-1984-05-25,1103.43,1114.32,1096.84,1107.10,78190000,1107.10
-1984-05-24,1113.80,1117.15,1096.31,1103.43,99040000,1103.43
-1984-05-23,1116.62,1125.63,1109.19,1113.80,82690000,1113.80
-1984-05-22,1125.31,1126.99,1105.95,1116.62,88030000,1116.62
-1984-05-21,1133.79,1139.13,1121.23,1125.31,73380000,1125.31
-1984-05-18,1142.27,1147.82,1125.73,1133.79,81270000,1133.79
-1984-05-17,1153.16,1154.10,1134.84,1142.27,90310000,1142.27
-1984-05-16,1150.86,1159.86,1146.88,1153.16,89210000,1153.16
-1984-05-15,1151.07,1160.80,1143.43,1150.86,88250000,1150.86
-1984-05-14,1157.14,1160.49,1141.96,1151.07,64900000,1151.07
-1984-05-11,1167.19,1168.24,1145.31,1157.14,82780000,1157.14
-1984-05-10,1165.52,1176.61,1158.71,1167.19,101810000,1167.19
-1984-05-09,1176.30,1182.47,1157.45,1165.52,100590000,1165.52
-1984-05-08,1166.56,1181.11,1159.97,1176.30,81610000,1176.30
-1984-05-07,1165.31,1170.96,1157.87,1166.56,72760000,1166.56
-1984-05-04,1181.53,1185.41,1158.92,1165.31,98580000,1165.31
-1984-05-03,1186.56,1192.73,1174.10,1181.53,91910000,1181.53
-1984-05-02,1183.00,1194.41,1174.10,1186.56,107080000,1186.56
-1984-05-01,1170.75,1188.86,1167.40,1183.00,110550000,1183.00
-1984-04-30,1169.07,1177.45,1160.07,1170.75,72740000,1170.75
-1984-04-27,1175.25,1180.49,1163.32,1169.07,88530000,1169.07
-1984-04-26,1163.53,1182.06,1162.79,1175.25,98000000,1175.25
-1984-04-25,1162.90,1170.33,1153.69,1163.53,83520000,1163.53
-1984-04-24,1149.50,1170.54,1144.37,1162.90,87060000,1162.90
-1984-04-23,1158.08,1164.78,1146.04,1149.50,73080000,1149.50
-1984-04-19,1156.51,1162.79,1145.41,1158.08,75860000,1158.08
-1984-04-18,1164.57,1167.71,1151.07,1156.51,85040000,1156.51
-1984-04-17,1160.28,1173.99,1156.83,1164.57,98150000,1164.57
-1984-04-16,1150.13,1162.90,1139.55,1160.28,73870000,1160.28
-1984-04-13,1157.14,1169.28,1144.58,1150.13,99620000,1150.13
-1984-04-12,1130.97,1159.55,1121.02,1157.14,96330000,1157.14
-1984-04-11,1138.30,1145.10,1127.20,1130.97,80280000,1130.97
-1984-04-10,1133.90,1147.93,1131.28,1138.30,78990000,1138.30
-1984-04-09,1132.22,1141.86,1123.64,1133.90,71570000,1133.90
-1984-04-06,1130.55,1138.18,1117.25,1132.22,86620000,1132.22
-1984-04-05,1148.56,1157.87,1128.35,1130.55,101750000,1130.55
-1984-04-04,1148.76,1156.83,1141.02,1148.56,92860000,1148.56
-1984-04-03,1153.16,1159.13,1140.39,1148.76,87980000,1148.76
-1984-04-02,1164.89,1175.36,1145.94,1153.16,85680000,1153.16
-1984-03-30,1170.75,1173.68,1157.87,1164.89,71590000,1164.89
-1984-03-29,1174.62,1184.25,1165.52,1170.75,81470000,1170.75
-1984-03-28,1154.31,1176.61,1151.80,1174.62,104870000,1174.62
-1984-03-27,1152.95,1162.27,1145.62,1154.31,73670000,1154.31
-1984-03-26,1154.84,1161.96,1146.25,1152.95,69070000,1152.95
-1984-03-23,1155.88,1161.54,1145.31,1154.84,79760000,1154.84
-1984-03-22,1170.85,1170.85,1150.75,1155.88,87340000,1155.88
-1984-03-21,1175.77,1181.95,1165.62,1170.85,87170000,1170.85
-1984-03-20,1171.38,1184.15,1166.25,1175.77,86460000,1175.77
-1984-03-19,1179.02,1179.02,1163.00,1171.38,64060000,1171.38
-1984-03-16,1176.19,1197.24,1176.19,1184.36,118000000,1184.36
-1984-03-15,1166.04,1177.24,1159.23,1167.40,79520000,1167.40
-1984-03-14,1164.78,1173.68,1155.67,1166.04,77250000,1166.04
-1984-03-13,1156.09,1176.51,1156.09,1164.78,102600000,1164.78
-1984-03-12,1139.76,1160.80,1136.52,1155.36,84470000,1155.36
-1984-03-09,1147.09,1149.29,1132.54,1139.76,73170000,1139.76
-1984-03-08,1143.63,1155.46,1136.10,1147.09,80630000,1147.09
-1984-03-07,1152.53,1153.27,1131.70,1143.63,90080000,1143.63
-1984-03-06,1165.20,1171.59,1148.24,1152.53,83590000,1152.53
-1984-03-05,1171.48,1174.31,1158.50,1165.20,69870000,1165.20
-1984-03-02,1163.21,1181.01,1163.21,1171.48,108270000,1171.48
-1984-03-01,1154.63,1166.46,1146.25,1159.44,82010000,1159.44
-1984-02-29,1157.14,1171.38,1146.46,1154.63,92810000,1154.63
-1984-02-28,1177.45,1177.45,1150.34,1157.14,91010000,1157.14
-1984-02-27,1165.10,1186.66,1156.41,1179.96,99140000,1179.96
-1984-02-24,1137.04,1167.09,1137.04,1165.10,102620000,1165.10
-1984-02-23,1134.21,1142.38,1114.95,1134.63,100220000,1134.63
-1984-02-22,1139.34,1145.83,1128.66,1134.21,90080000,1134.21
-1984-02-21,1148.87,1153.79,1134.00,1139.34,71890000,1139.34
-1984-02-17,1154.94,1164.36,1141.23,1148.87,76600000,1148.87
-1984-02-16,1158.71,1164.99,1143.74,1154.94,81750000,1154.94
-1984-02-15,1163.84,1175.67,1154.31,1158.71,94870000,1158.71
-1984-02-14,1150.13,1170.54,1147.09,1163.84,91800000,1163.84
-1984-02-13,1160.70,1164.05,1139.97,1150.13,78460000,1150.13
-1984-02-10,1152.74,1167.92,1149.92,1160.70,92220000,1160.70
-1984-02-09,1156.30,1167.29,1139.03,1152.74,128190000,1152.74
-1984-02-08,1180.49,1188.76,1151.28,1156.30,96890000,1156.30
-1984-02-07,1174.31,1187.29,1161.12,1180.49,107640000,1180.49
-1984-02-06,1193.15,1193.15,1167.92,1174.31,109090000,1174.31
-1984-02-03,1213.88,1226.55,1192.00,1197.03,109100000,1197.03
-1984-02-02,1212.31,1223.93,1198.49,1213.88,111330000,1213.88
-1984-02-01,1220.58,1226.34,1203.31,1212.31,107100000,1212.31
-1984-01-31,1221.52,1231.68,1209.59,1220.58,113510000,1220.58
-1984-01-30,1230.00,1239.64,1212.42,1221.52,103120000,1221.52
-1984-01-27,1229.69,1238.69,1218.91,1230.00,103720000,1230.00
-1984-01-26,1231.89,1242.57,1222.78,1229.69,111100000,1229.69
-1984-01-25,1242.88,1255.44,1227.39,1231.89,113470000,1231.89
-1984-01-24,1244.45,1251.57,1234.61,1242.88,103050000,1242.88
-1984-01-23,1259.11,1259.42,1240.05,1244.45,82010000,1244.45
-1984-01-20,1266.02,1270.94,1252.30,1259.11,93360000,1259.11
-1984-01-19,1269.37,1276.17,1259.32,1266.02,98340000,1266.02
-1984-01-18,1271.46,1280.36,1261.93,1269.37,109010000,1269.37
-1984-01-17,1267.59,1275.75,1260.89,1271.46,92750000,1271.46
-1984-01-16,1270.10,1275.96,1259.53,1267.59,93790000,1267.59
-1984-01-13,1279.31,1289.57,1262.98,1270.10,101790000,1270.10
-1984-01-12,1277.32,1287.90,1271.78,1279.31,99410000,1279.31
-1984-01-11,1278.48,1284.13,1267.59,1277.32,98660000,1277.32
-1984-01-10,1286.22,1295.44,1273.97,1278.48,109570000,1278.48
-1984-01-09,1286.64,1295.33,1275.86,1286.22,107100000,1286.22
-1984-01-06,1282.24,1293.66,1271.78,1286.64,137590000,1286.64
-1984-01-05,1269.05,1290.72,1268.74,1282.24,159990000,1282.24
-1984-01-04,1252.74,1271.36,1246.55,1269.05,112980000,1269.05
-1984-01-03,1258.64,1264.13,1247.46,1252.74,71340000,1252.74
-1983-12-30,1260.16,1265.24,1253.15,1258.64,71840000,1258.64
-1983-12-29,1263.21,1273.88,1256.30,1260.16,86560000,1260.16
-1983-12-28,1263.72,1268.90,1254.17,1263.21,85660000,1263.21
-1983-12-27,1250.51,1267.28,1249.80,1263.72,63800000,1263.72
-1983-12-23,1253.66,1259.25,1241.97,1250.51,62710000,1250.51
-1983-12-22,1254.98,1265.24,1246.65,1253.66,106260000,1253.66
-1983-12-21,1241.97,1260.26,1240.24,1254.98,108080000,1254.98
-1983-12-20,1244.61,1251.93,1236.79,1241.97,83740000,1241.97
-1983-12-19,1242.17,1254.88,1238.21,1244.61,75180000,1244.61
-1983-12-16,1236.79,1248.27,1231.40,1242.17,81030000,1242.17
-1983-12-15,1246.65,1250.20,1231.20,1236.79,88300000,1236.79
-1983-12-14,1255.89,1261.38,1241.77,1246.65,85430000,1246.65
-1983-12-13,1261.59,1267.17,1250.81,1255.89,93500000,1255.89
-1983-12-12,1260.06,1269.11,1248.78,1261.59,77340000,1261.59
-1983-12-09,1261.89,1268.09,1252.03,1260.06,98280000,1260.06
-1983-12-08,1273.78,1278.15,1256.91,1261.89,96530000,1261.89
-1983-12-07,1269.31,1282.42,1263.21,1273.78,105670000,1273.78
-1983-12-06,1270.53,1281.30,1262.80,1269.31,89690000,1269.31
-1983-12-05,1265.24,1275.41,1256.40,1270.53,88330000,1270.53
-1983-12-02,1275.10,1281.30,1259.76,1265.24,93960000,1265.24
-1983-12-01,1276.02,1285.47,1265.45,1275.10,106970000,1275.10
-1983-11-30,1287.19,1296.95,1271.04,1276.02,120130000,1276.02
-1983-11-29,1269.82,1290.95,1264.22,1287.19,100460000,1287.19
-1983-11-28,1277.44,1279.78,1263.11,1269.82,78210000,1269.82
-1983-11-25,1275.61,1282.22,1268.80,1277.44,57820000,1277.44
-1983-11-23,1275.81,1284.55,1265.04,1275.61,108080000,1275.61
-1983-11-22,1268.80,1287.80,1262.91,1275.81,117550000,1275.81
-1983-11-21,1251.02,1272.36,1248.17,1268.80,97740000,1268.80
-1983-11-18,1254.67,1260.77,1240.35,1251.02,88280000,1251.02
-1983-11-17,1251.32,1262.09,1243.19,1254.67,80740000,1254.67
-1983-11-16,1247.95,1260.47,1242.07,1251.32,83380000,1251.32
-1983-11-15,1254.07,1260.87,1242.28,1247.95,77840000,1247.95
-1983-11-14,1250.20,1265.04,1244.61,1254.07,86880000,1254.07
-1983-11-11,1235.87,1253.56,1230.79,1250.20,74270000,1250.20
-1983-11-10,1232.52,1245.83,1226.83,1235.87,88730000,1235.87
-1983-11-09,1214.94,1235.47,1212.20,1232.52,83100000,1232.52
-1983-11-08,1214.84,1222.05,1208.74,1214.94,64900000,1214.94
-1983-11-07,1218.29,1226.52,1209.35,1214.84,69400000,1214.84
-1983-11-04,1227.13,1227.74,1211.89,1218.29,72080000,1218.29
-1983-11-03,1237.30,1242.68,1222.76,1227.13,85350000,1227.13
-1983-11-02,1229.27,1244.11,1220.83,1237.30,95210000,1237.30
-1983-11-01,1225.20,1233.94,1210.47,1229.27,84460000,1229.27
-1983-10-31,1223.48,1236.48,1214.63,1225.20,79460000,1225.20
-1983-10-28,1242.07,1248.68,1217.07,1223.48,81180000,1223.48
-1983-10-27,1243.80,1249.09,1230.49,1242.07,79570000,1242.07
-1983-10-26,1252.44,1259.15,1238.62,1243.80,79570000,1243.80
-1983-10-25,1248.98,1263.41,1245.22,1252.44,82530000,1252.44
-1983-10-24,1248.88,1252.54,1227.74,1248.98,85420000,1248.98
-1983-10-21,1251.52,1260.77,1231.61,1248.88,91640000,1248.88
-1983-10-20,1246.75,1258.74,1241.06,1251.52,86000000,1251.52
-1983-10-19,1250.81,1255.28,1229.37,1246.75,107790000,1246.75
-1983-10-18,1268.70,1272.76,1245.53,1250.81,91080000,1250.81
-1983-10-17,1263.52,1278.66,1256.20,1268.70,77730000,1268.70
-1983-10-14,1261.38,1270.12,1251.83,1263.52,71600000,1263.52
-1983-10-13,1259.65,1270.63,1250.51,1261.38,67750000,1261.38
-1983-10-12,1265.14,1273.07,1252.95,1259.65,75630000,1259.65
-1983-10-11,1284.65,1285.26,1261.89,1265.14,79510000,1265.14
-1983-10-10,1272.15,1286.69,1261.59,1284.65,67050000,1284.65
-1983-10-07,1268.80,1280.28,1262.60,1272.15,103630000,1272.15
-1983-10-06,1250.20,1272.15,1246.95,1268.80,118270000,1268.80
-1983-10-05,1236.69,1254.88,1228.96,1250.20,101710000,1250.20
-1983-10-04,1231.30,1247.56,1225.71,1236.69,90270000,1236.69
-1983-10-03,1233.13,1237.70,1216.26,1231.30,77230000,1231.30
-1983-09-30,1240.14,1242.89,1224.59,1233.13,70860000,1233.13
-1983-09-29,1241.97,1252.03,1236.08,1240.14,73730000,1240.14
-1983-09-28,1247.97,1253.45,1234.35,1241.97,75820000,1241.97
-1983-09-27,1259.25,1259.25,1239.33,1247.97,81100000,1247.97
-1983-09-26,1255.59,1270.73,1247.56,1260.77,86400000,1260.77
-1983-09-23,1257.52,1265.55,1246.24,1255.59,93180000,1255.59
-1983-09-22,1243.29,1261.28,1236.79,1257.52,97050000,1257.52
-1983-09-21,1249.19,1255.89,1236.79,1243.29,91280000,1243.29
-1983-09-20,1233.94,1257.01,1233.64,1249.19,103050000,1249.19
-1983-09-19,1225.71,1242.68,1221.24,1233.94,85630000,1233.94
-1983-09-16,1215.04,1232.72,1210.16,1225.71,75530000,1225.71
-1983-09-15,1229.47,1232.83,1213.01,1215.04,70420000,1215.04
-1983-09-14,1224.09,1233.94,1218.80,1229.47,73370000,1229.47
-1983-09-13,1229.07,1233.43,1214.63,1224.09,73970000,1224.09
-1983-09-12,1239.74,1262.80,1225.00,1229.07,114020000,1229.07
-1983-09-09,1246.14,1252.74,1233.33,1239.74,77990000,1239.74
-1983-09-08,1244.11,1252.95,1232.83,1246.14,79250000,1246.14
-1983-09-07,1238.72,1253.96,1229.27,1244.11,94240000,1244.11
-1983-09-06,1222.05,1244.11,1222.05,1238.72,87500000,1238.72
-1983-09-02,1206.81,1221.34,1204.17,1215.45,59300000,1215.45
-1983-09-01,1216.16,1221.24,1197.36,1206.81,76120000,1206.81
-1983-08-31,1196.04,1219.82,1191.16,1216.16,80800000,1216.16
-1983-08-30,1194.11,1204.37,1187.20,1196.04,62370000,1196.04
-1983-08-29,1192.07,1198.37,1178.15,1194.11,53030000,1194.11
-1983-08-26,1185.06,1196.95,1174.59,1192.07,61650000,1192.07
-1983-08-25,1184.25,1195.22,1173.27,1185.06,70140000,1185.06
-1983-08-24,1192.89,1199.80,1179.67,1184.25,72200000,1184.25
-1983-08-23,1203.15,1205.49,1186.38,1192.89,66800000,1192.89
-1983-08-22,1194.21,1216.26,1191.36,1203.15,76420000,1203.15
-1983-08-19,1192.48,1200.51,1183.64,1194.21,58950000,1194.21
-1983-08-18,1206.54,1215.45,1188.52,1192.48,82280000,1192.48
-1983-08-17,1190.45,1212.09,1186.28,1206.54,87800000,1206.54
-1983-08-16,1193.50,1199.70,1180.49,1190.45,71780000,1190.45
-1983-08-15,1186.69,1208.74,1186.69,1193.50,83200000,1193.50
-1983-08-12,1174.39,1189.63,1169.82,1182.83,71840000,1182.83
-1983-08-11,1175.98,1185.87,1165.55,1174.39,70630000,1174.39
-1983-08-10,1168.27,1182.19,1157.25,1175.98,82900000,1175.98
-1983-08-09,1163.06,1177.28,1152.14,1168.27,81420000,1168.27
-1983-08-08,1180.19,1180.19,1157.55,1163.06,71460000,1163.06
-1983-08-05,1183.09,1191.91,1173.58,1183.29,67850000,1183.29
-1983-08-04,1197.82,1200.52,1166.57,1183.09,100870000,1183.09
-1983-08-03,1188.00,1203.73,1179.29,1197.82,80370000,1197.82
-1983-08-02,1194.21,1202.52,1183.89,1188.00,74460000,1188.00
-1983-08-01,1199.22,1204.33,1183.79,1194.21,77210000,1194.21
-1983-07-29,1216.35,1216.75,1188.10,1199.22,95240000,1199.22
-1983-07-28,1230.47,1236.58,1211.74,1216.35,78410000,1216.35
-1983-07-27,1243.69,1258.51,1225.86,1230.47,99290000,1230.47
-1983-07-26,1232.87,1250.00,1226.46,1243.69,91280000,1243.69
-1983-07-25,1231.17,1239.78,1217.45,1232.87,73680000,1232.87
-1983-07-22,1229.37,1238.18,1220.45,1231.17,68850000,1231.17
-1983-07-21,1227.86,1238.48,1217.35,1229.37,101830000,1229.37
-1983-07-20,1206.03,1230.57,1206.03,1227.86,109310000,1227.86
-1983-07-19,1189.90,1205.13,1188.40,1197.12,74030000,1197.12
-1983-07-18,1192.31,1197.62,1179.79,1189.90,69110000,1189.90
-1983-07-15,1204.33,1205.73,1187.10,1192.31,63160000,1192.31
-1983-07-14,1197.82,1215.04,1195.11,1204.33,83500000,1204.33
-1983-07-13,1198.52,1205.83,1189.40,1197.82,68900000,1197.82
-1983-07-12,1215.54,1218.35,1194.11,1198.52,70220000,1198.52
-1983-07-11,1207.23,1221.96,1205.53,1215.54,61610000,1215.54
-1983-07-08,1210.44,1218.95,1201.52,1207.23,66520000,1207.23
-1983-07-07,1220.65,1227.26,1203.33,1210.44,97130000,1210.44
-1983-07-06,1208.53,1224.46,1202.72,1220.65,85670000,1220.65
-1983-07-05,1217.25,1217.25,1200.22,1208.53,67320000,1208.53
-1983-07-01,1221.96,1231.07,1213.94,1225.26,65110000,1225.26
-1983-06-30,1213.84,1229.27,1209.54,1221.96,76310000,1221.96
-1983-06-29,1209.23,1222.16,1201.22,1213.84,81580000,1213.84
-1983-06-28,1229.47,1237.68,1205.83,1209.23,82730000,1209.23
-1983-06-27,1241.69,1246.29,1221.85,1229.47,69360000,1229.47
-1983-06-24,1241.79,1250.20,1229.87,1241.69,80810000,1241.69
-1983-06-23,1245.69,1250.60,1231.67,1241.79,89590000,1241.79
-1983-06-22,1247.40,1258.21,1234.27,1245.69,110270000,1245.69
-1983-06-21,1239.18,1253.00,1228.27,1247.40,102880000,1247.40
-1983-06-20,1242.19,1258.61,1230.77,1239.18,84270000,1239.18
-1983-06-17,1248.30,1260.72,1232.87,1242.19,93630000,1242.19
-1983-06-16,1237.28,1259.82,1236.08,1248.30,124560000,1248.30
-1983-06-15,1227.26,1240.18,1216.85,1237.28,93410000,1237.28
-1983-06-14,1220.55,1237.28,1214.64,1227.26,97710000,1227.26
-1983-06-13,1199.12,1223.46,1199.12,1220.55,90700000,1220.55
-1983-06-10,1189.00,1204.53,1187.30,1196.11,78470000,1196.11
-1983-06-09,1185.50,1196.71,1176.78,1189.00,87440000,1189.00
-1983-06-08,1194.91,1199.52,1179.59,1185.50,96600000,1185.50
-1983-06-07,1214.24,1218.15,1193.21,1194.91,88550000,1194.91
-1983-06-06,1213.04,1223.26,1203.83,1214.24,87670000,1214.24
-1983-06-03,1211.44,1222.46,1204.23,1213.04,83110000,1213.04
-1983-06-02,1202.21,1218.15,1195.01,1211.44,89750000,1211.44
-1983-06-01,1199.98,1208.30,1187.69,1202.21,84460000,1202.21
-1983-05-31,1216.14,1217.59,1191.95,1199.98,73910000,1199.98
-1983-05-27,1223.49,1229.20,1209.95,1216.14,76290000,1216.14
-1983-05-26,1229.01,1237.04,1215.17,1223.49,94980000,1223.49
-1983-05-25,1219.04,1234.04,1207.62,1229.01,121050000,1229.01
-1983-05-24,1200.56,1224.07,1199.21,1219.04,109850000,1219.04
-1983-05-23,1190.02,1205.40,1174.25,1200.56,84960000,1200.56
-1983-05-20,1191.37,1197.27,1179.08,1190.02,73150000,1190.02
-1983-05-19,1203.56,1208.49,1186.15,1191.37,83260000,1191.37
-1983-05-18,1205.79,1225.04,1196.98,1203.56,99780000,1203.56
-1983-05-17,1202.98,1211.88,1193.30,1205.79,79510000,1205.79
-1983-05-16,1209.95,1209.95,1190.21,1202.98,76250000,1202.98
-1983-05-13,1214.40,1228.04,1209.17,1218.75,83110000,1218.75
-1983-05-12,1219.72,1226.59,1204.82,1214.40,84060000,1214.40
-1983-05-11,1229.68,1234.42,1210.72,1219.72,99820000,1219.72
-1983-05-10,1228.23,1240.03,1220.49,1229.68,104010000,1229.68
-1983-05-09,1232.59,1241.29,1219.04,1228.23,93670000,1228.23
-1983-05-06,1219.72,1244.49,1217.69,1232.59,128200000,1232.59
-1983-05-05,1212.65,1225.81,1202.40,1219.72,107860000,1219.72
-1983-05-04,1208.01,1227.94,1198.63,1212.65,101690000,1212.65
-1983-05-03,1204.33,1214.11,1188.37,1208.01,89550000,1208.01
-1983-05-02,1225.43,1225.43,1197.27,1204.33,88170000,1204.33
-1983-04-29,1219.52,1235.49,1208.59,1226.20,105750000,1226.20
-1983-04-28,1208.40,1226.97,1201.04,1219.52,94410000,1219.52
-1983-04-27,1209.46,1225.04,1197.37,1208.40,118140000,1208.40
-1983-04-26,1187.21,1210.82,1177.92,1209.46,91210000,1209.46
-1983-04-25,1196.30,1206.75,1183.24,1187.21,90150000,1187.21
-1983-04-22,1188.27,1204.62,1184.21,1196.30,92270000,1196.30
-1983-04-21,1191.47,1202.11,1180.92,1188.27,106170000,1188.27
-1983-04-20,1174.54,1197.56,1170.47,1191.47,110240000,1191.47
-1983-04-19,1183.24,1187.98,1166.22,1174.54,91210000,1174.54
-1983-04-18,1171.34,1187.89,1164.57,1183.24,88560000,1183.24
-1983-04-15,1165.25,1177.05,1159.06,1171.34,89590000,1171.34
-1983-04-14,1156.64,1171.05,1146.67,1165.25,90160000,1165.25
-1983-04-13,1145.32,1165.34,1142.22,1156.64,100520000,1156.64
-1983-04-12,1141.83,1151.80,1134.09,1145.32,79900000,1145.32
-1983-04-11,1127.23,1144.54,1127.23,1141.83,81440000,1141.83
-1983-04-08,1117.65,1128.87,1109.52,1124.71,67710000,1124.71
-1983-04-07,1113.49,1123.36,1106.71,1117.65,69480000,1117.65
-1983-04-06,1120.16,1122.48,1102.17,1113.49,77140000,1113.49
-1983-04-05,1127.61,1137.58,1116.39,1120.16,76810000,1120.16
-1983-04-04,1130.03,1133.03,1115.13,1127.61,66010000,1127.61
-1983-03-31,1143.29,1158.48,1125.29,1130.03,100570000,1130.03
-1983-03-30,1131.19,1146.67,1129.64,1143.29,75800000,1143.29
-1983-03-29,1133.32,1142.80,1125.39,1131.19,65300000,1131.19
-1983-03-28,1140.09,1145.80,1126.84,1133.32,58510000,1133.32
-1983-03-25,1145.90,1153.83,1132.64,1140.09,77330000,1140.09
-1983-03-24,1140.87,1154.41,1134.48,1145.90,92340000,1145.90
-1983-03-23,1122.97,1147.83,1121.81,1140.87,94980000,1140.87
-1983-03-22,1125.29,1135.74,1118.61,1122.97,79610000,1122.97
-1983-03-21,1117.74,1130.32,1109.33,1125.29,72160000,1125.29
-1983-03-18,1116.97,1128.00,1109.71,1117.74,75110000,1117.74
-1983-03-17,1116.00,1123.55,1108.07,1116.97,70290000,1116.97
-1983-03-16,1124.52,1134.77,1111.46,1116.00,83570000,1116.00
-1983-03-15,1114.45,1126.84,1109.62,1124.52,62410000,1124.52
-1983-03-14,1117.74,1124.61,1105.07,1114.45,61890000,1114.45
-1983-03-11,1120.94,1127.61,1107.97,1117.74,67240000,1117.74
-1983-03-10,1132.64,1145.22,1116.49,1120.94,95410000,1120.94
-1983-03-09,1119.78,1136.42,1112.04,1132.64,84250000,1132.64
-1983-03-08,1141.74,1143.00,1117.55,1119.78,79410000,1119.78
-1983-03-07,1140.96,1149.67,1128.19,1141.74,84020000,1141.74
-1983-03-04,1138.06,1146.28,1125.58,1140.96,90930000,1140.96
-1983-03-03,1135.06,1151.12,1128.39,1138.06,114440000,1138.06
-1983-03-02,1130.71,1144.45,1121.90,1135.06,112600000,1135.06
-1983-03-01,1112.16,1139.22,1110.20,1130.71,103750000,1130.71
-1983-02-28,1120.94,1128.58,1105.26,1112.16,83750000,1112.16
-1983-02-25,1121.81,1135.26,1115.13,1120.94,100970000,1120.94
-1983-02-24,1100.62,1126.74,1100.62,1121.81,113220000,1121.81
-1983-02-23,1080.40,1100.14,1077.69,1096.94,84100000,1096.94
-1983-02-22,1092.82,1097.72,1074.01,1080.40,84080000,1080.40
-1983-02-18,1088.91,1099.42,1079.99,1092.82,77420000,1092.82
-1983-02-17,1087.43,1096.35,1075.52,1088.91,74930000,1088.91
-1983-02-16,1093.10,1103.70,1083.43,1087.43,82100000,1087.43
-1983-02-15,1097.10,1107.61,1086.22,1093.10,89040000,1093.10
-1983-02-14,1086.50,1103.33,1080.64,1097.10,72640000,1097.10
-1983-02-11,1087.75,1100.82,1080.17,1086.50,86700000,1086.50
-1983-02-10,1067.88,1094.83,1067.88,1087.75,93510000,1087.75
-1983-02-09,1075.33,1081.59,1058.13,1067.42,84520000,1067.42
-1983-02-08,1087.10,1091.70,1068.71,1075.33,76580000,1075.33
-1983-02-07,1077.91,1097.04,1073.77,1087.10,86030000,1087.10
-1983-02-04,1064.66,1081.13,1056.75,1077.91,87000000,1077.91
-1983-02-03,1062.64,1075.06,1057.03,1064.66,78890000,1064.66
-1983-02-02,1059.79,1070.09,1046.82,1062.64,77220000,1062.64
-1983-02-01,1075.70,1082.78,1057.58,1059.79,82750000,1059.79
-1983-01-31,1064.75,1079.75,1055.83,1075.70,67140000,1075.70
-1983-01-28,1063.65,1080.57,1056.66,1064.75,89490000,1064.75
-1983-01-27,1037.99,1068.16,1037.35,1063.65,88120000,1063.65
-1983-01-26,1042.03,1050.31,1027.78,1037.99,73720000,1037.99
-1983-01-25,1030.17,1048.93,1028.61,1042.03,79740000,1042.03
-1983-01-24,1039.28,1039.28,1013.43,1030.17,90800000,1030.17
-1983-01-21,1070.46,1070.46,1045.16,1052.98,77110000,1052.98
-1983-01-20,1068.06,1080.39,1060.15,1070.82,82790000,1070.82
-1983-01-19,1079.65,1082.97,1057.12,1068.06,80900000,1068.06
-1983-01-18,1084.81,1089.22,1068.06,1079.65,78380000,1079.65
-1983-01-17,1080.85,1098.60,1077.35,1084.81,89210000,1084.81
-1983-01-14,1073.95,1089.04,1070.36,1080.85,86480000,1080.85
-1983-01-13,1083.61,1091.06,1068.80,1073.95,77030000,1073.95
-1983-01-12,1083.79,1105.13,1075.88,1083.61,109850000,1083.61
-1983-01-11,1092.35,1097.50,1076.07,1083.79,98250000,1083.79
-1983-01-10,1076.07,1099.98,1065.12,1092.35,101890000,1092.35
-1983-01-07,1070.92,1091.34,1063.19,1076.07,127290000,1076.07
-1983-01-06,1044.89,1081.95,1042.40,1070.92,129410000,1070.92
-1983-01-05,1046.08,1056.75,1033.94,1044.89,95390000,1044.89
-1983-01-04,1027.04,1047.46,1020.24,1046.08,75530000,1046.08
-1983-01-03,1046.54,1057.21,1022.17,1027.04,59080000,1027.04
-1982-12-31,1047.37,1055.56,1041.84,1046.54,42110000,1046.54
-1982-12-30,1059.60,1066.13,1043.60,1047.37,56380000,1047.37
-1982-12-29,1058.87,1069.35,1050.68,1059.60,54810000,1059.60
-1982-12-28,1070.55,1077.91,1053.44,1058.87,58610000,1058.87
-1982-12-27,1045.07,1076.07,1043.60,1070.55,64690000,1070.55
-1982-12-23,1035.04,1051.51,1032.19,1045.07,62880000,1045.07
-1982-12-22,1030.26,1047.19,1021.62,1035.04,83470000,1035.04
-1982-12-21,1004.51,1036.33,998.53,1030.26,78010000,1030.26
-1982-12-20,1011.50,1022.63,998.44,1004.51,62210000,1004.51
-1982-12-17,990.25,1018.12,989.24,1011.50,76010000,1011.50
-1982-12-16,992.64,1004.42,983.35,990.25,73680000,990.25
-1982-12-15,1009.38,1013.52,985.74,992.64,81030000,992.64
-1982-12-14,1024.28,1047.28,1006.99,1009.38,98380000,1009.38
-1982-12-13,1018.76,1030.91,1013.34,1024.28,63140000,1024.28
-1982-12-10,1027.96,1038.36,1009.47,1018.76,86430000,1018.76
-1982-12-09,1047.09,1049.39,1020.79,1027.96,90320000,1027.96
-1982-12-08,1056.94,1069.72,1041.30,1047.09,97430000,1047.09
-1982-12-07,1055.65,1071.10,1045.07,1056.94,111620000,1056.94
-1982-12-06,1031.36,1061.26,1020.88,1055.65,83880000,1055.65
-1982-12-03,1033.11,1046.82,1027.04,1031.36,71540000,1031.36
-1982-12-02,1031.09,1047.37,1027.04,1033.11,77600000,1033.11
-1982-12-01,1039.28,1055.00,1025.57,1031.09,107850000,1031.09
-1982-11-30,1002.85,1042.40,998.34,1039.28,93470000,1039.28
-1982-11-29,1007.36,1014.72,993.84,1002.85,61080000,1002.85
-1982-11-26,1000.00,1012.60,998.53,1007.36,38810000,1007.36
-1982-11-24,990.99,1007.36,988.23,1000.00,67220000,1000.00
-1982-11-23,1000.00,1007.63,986.66,990.99,72920000,990.99
-1982-11-22,1021.25,1024.01,997.42,1000.00,74960000,1000.00
-1982-11-19,1032.10,1042.86,1017.11,1021.25,70310000,1021.25
-1982-11-18,1027.50,1040.47,1020.05,1032.10,77620000,1032.10
-1982-11-17,1012.05,1032.74,1012.05,1027.50,84440000,1027.50
-1982-11-16,1019.68,1019.68,993.10,1008.00,102910000,1008.00
-1982-11-15,1032.56,1032.56,1012.60,1021.43,78900000,1021.43
-1982-11-12,1054.73,1060.52,1035.60,1039.92,95080000,1039.92
-1982-11-11,1044.52,1057.03,1030.35,1054.73,78410000,1054.73
-1982-11-10,1060.25,1078.27,1037.71,1044.52,113240000,1044.52
-1982-11-09,1037.44,1065.86,1034.86,1060.25,111220000,1060.25
-1982-11-08,1048.57,1048.57,1029.25,1037.44,75240000,1037.44
-1982-11-05,1050.22,1061.17,1040.65,1051.78,96550000,1051.78
-1982-11-04,1065.49,1078.46,1042.59,1050.22,149350000,1050.22
-1982-11-03,1022.08,1068.16,1021.71,1065.49,137010000,1065.49
-1982-11-02,1007.45,1036.98,1007.45,1022.08,104770000,1022.08
-1982-11-01,991.72,1009.01,983.72,1005.70,73530000,1005.70
-1982-10-29,990.99,999.45,977.92,991.72,74830000,991.72
-1982-10-28,1006.35,1011.87,989.33,990.99,73590000,990.99
-1982-10-27,1006.07,1019.87,996.87,1006.35,81670000,1006.35
-1982-10-26,995.13,1011.13,975.90,1006.07,102080000,1006.07
-1982-10-25,1018.76,1018.76,991.91,995.13,83720000,995.13
-1982-10-22,1036.98,1051.88,1024.37,1031.46,101120000,1031.46
-1982-10-21,1034.12,1049.12,1018.40,1036.98,122460000,1036.98
-1982-10-20,1013.80,1035.23,1005.98,1034.12,98680000,1034.12
-1982-10-19,1019.22,1031.09,1001.66,1013.80,100850000,1013.80
-1982-10-18,993.10,1023.45,991.63,1019.22,83790000,1019.22
-1982-10-15,996.87,1003.86,981.88,993.10,80290000,993.10
-1982-10-14,1015.18,1020.97,991.17,996.87,107530000,996.87
-1982-10-13,1003.68,1033.57,991.63,1015.18,139800000,1015.18
-1982-10-12,1012.79,1026.95,992.00,1003.68,126310000,1003.68
-1982-10-11,991.54,1027.59,991.54,1012.79,138530000,1012.79
-1982-10-08,965.97,992.92,961.64,986.85,122250000,986.85
-1982-10-07,950.24,972.87,950.24,965.97,147070000,965.97
-1982-10-06,907.74,946.38,907.74,944.26,93570000,944.26
-1982-10-05,903.61,917.77,899.47,907.19,69770000,907.19
-1982-10-04,907.74,908.57,892.02,903.61,55650000,903.61
-1982-10-01,896.25,910.87,892.02,907.74,65000000,907.74
-1982-09-30,906.27,908.20,891.28,896.25,62610000,896.25
-1982-09-29,919.33,920.71,901.12,906.27,62550000,906.27
-1982-09-28,920.90,930.74,916.02,919.33,65900000,919.33
-1982-09-27,919.52,925.04,909.86,920.90,44840000,920.90
-1982-09-24,925.77,926.42,913.45,919.52,54600000,919.52
-1982-09-23,927.61,933.50,915.38,925.77,68260000,925.77
-1982-09-22,934.79,951.16,924.67,927.61,113150000,927.61
-1982-09-21,916.30,937.09,913.91,934.79,82920000,934.79
-1982-09-20,916.94,921.45,904.71,916.30,58520000,916.30
-1982-09-17,927.80,931.29,912.71,916.94,63950000,916.94
-1982-09-16,930.46,938.47,922.46,927.80,78900000,927.80
-1982-09-15,923.01,933.13,915.56,930.46,69680000,930.46
-1982-09-14,918.69,933.13,914.92,923.01,83070000,923.01
-1982-09-13,906.82,921.08,898.36,918.69,59520000,918.69
-1982-09-10,912.53,912.90,897.08,906.82,71080000,906.82
-1982-09-09,915.75,925.31,906.27,912.53,73090000,912.53
-1982-09-08,914.28,927.34,906.82,915.75,77960000,915.75
-1982-09-07,925.13,928.35,906.92,914.28,68960000,914.28
-1982-09-03,913.54,940.49,913.54,925.13,130910000,925.13
-1982-09-02,895.05,913.17,888.70,909.40,74740000,909.40
-1982-09-01,901.31,911.33,890.91,895.05,82830000,895.05
-1982-08-31,893.30,910.96,887.97,901.31,86360000,901.31
-1982-08-30,883.47,895.42,872.42,893.30,59560000,893.30
-1982-08-27,892.41,893.84,874.14,883.47,74410000,883.47
-1982-08-26,884.89,908.96,882.61,892.41,137330000,892.41
-1982-08-25,874.90,900.97,867.87,884.89,106200000,884.89
-1982-08-24,891.17,893.36,869.01,874.90,121650000,874.90
-1982-08-23,869.29,894.22,861.68,891.17,110310000,891.17
-1982-08-20,840.85,871.19,840.85,869.29,95890000,869.29
-1982-08-19,829.43,848.93,824.49,838.57,78270000,838.57
-1982-08-18,831.24,858.54,826.10,829.43,132690000,829.43
-1982-08-17,796.14,832.76,796.14,831.24,92860000,831.24
-1982-08-16,788.53,803.84,788.53,792.43,55420000,792.43
-1982-08-13,776.92,790.62,774.54,788.05,44720000,788.05
-1982-08-12,777.21,786.15,773.59,776.92,50080000,776.92
-1982-08-11,779.30,783.96,772.17,777.21,49040000,777.21
-1982-08-10,780.35,789.10,775.68,779.30,52680000,779.30
-1982-08-09,784.34,784.34,769.98,780.35,54560000,780.35
-1982-08-06,795.85,798.99,781.77,784.34,48660000,784.34
-1982-08-05,803.46,804.41,789.76,795.85,54700000,795.85
-1982-08-04,815.35,815.35,800.89,803.46,53440000,803.46
-1982-08-03,822.11,831.43,815.26,816.40,60480000,816.40
-1982-08-02,808.60,824.11,807.84,822.11,53460000,822.11
-1982-07-30,812.21,817.64,806.13,808.60,39270000,808.60
-1982-07-29,811.83,817.54,801.46,812.21,55680000,812.21
-1982-07-28,822.77,823.44,807.65,811.83,53830000,811.83
-1982-07-27,825.44,831.05,818.02,822.77,45740000,822.77
-1982-07-26,830.57,833.24,820.59,825.44,37740000,825.44
-1982-07-23,832.00,838.47,824.68,830.57,47280000,830.57
-1982-07-22,832.19,839.71,823.71,832.00,53870000,832.00
-1982-07-21,833.43,843.80,828.20,832.19,66770000,832.19
-1982-07-20,826.10,837.71,820.02,833.43,61060000,833.43
-1982-07-19,828.67,836.66,822.68,826.10,53030000,826.10
-1982-07-16,827.34,837.33,819.92,828.67,58740000,828.67
-1982-07-15,828.39,836.57,821.25,827.34,61090000,827.34
-1982-07-14,824.20,831.62,815.26,828.39,58160000,828.39
-1982-07-13,824.87,832.95,816.97,824.20,66170000,824.20
-1982-07-12,814.69,830.10,814.69,824.87,74690000,824.87
-1982-07-09,804.98,818.59,803.37,814.12,65870000,814.12
-1982-07-08,799.66,807.17,787.39,804.98,63270000,804.98
-1982-07-07,798.90,804.70,793.19,799.66,46920000,799.66
-1982-07-06,796.99,802.89,789.19,798.90,44350000,798.90
-1982-07-02,803.18,803.18,792.52,796.99,43760000,796.99
-1982-07-01,811.93,814.88,800.04,803.27,47900000,803.27
-1982-06-30,812.21,821.63,807.84,811.93,65280000,811.93
-1982-06-29,811.93,818.40,805.18,812.21,46990000,812.21
-1982-06-28,803.08,816.69,800.51,811.93,40700000,811.93
-1982-06-25,810.41,812.12,800.61,803.08,38740000,803.08
-1982-06-24,813.17,821.63,805.56,810.41,55860000,810.41
-1982-06-23,799.66,815.35,795.76,813.17,62710000,813.17
-1982-06-22,789.95,801.46,787.67,799.66,55290000,799.66
-1982-06-21,788.62,797.85,784.25,789.95,50370000,789.95
-1982-06-18,791.48,793.57,784.53,788.62,53800000,788.62
-1982-06-17,796.90,797.56,787.01,791.48,49230000,791.48
-1982-06-16,801.27,809.17,793.85,796.90,56280000,796.90
-1982-06-15,801.85,805.18,793.38,801.27,44970000,801.27
-1982-06-14,809.74,810.22,798.61,801.85,40100000,801.85
-1982-06-11,803.37,815.92,803.37,809.74,68610000,809.74
-1982-06-10,795.57,803.37,790.53,798.71,50950000,798.71
-1982-06-09,802.23,804.03,789.76,795.57,55770000,795.57
-1982-06-08,804.03,809.84,799.28,802.23,46820000,802.23
-1982-06-07,804.98,809.93,797.09,804.03,44630000,804.03
-1982-06-04,816.50,818.87,802.42,804.98,44110000,804.98
-1982-06-03,816.88,824.30,810.79,816.50,48450000,816.50
-1982-06-02,814.97,822.39,810.88,816.88,49220000,816.88
-1982-06-01,819.54,822.96,811.92,814.97,41650000,814.97
-1982-05-28,824.96,828.86,815.54,819.54,43900000,819.54
-1982-05-27,828.77,832.19,821.06,824.96,44730000,824.96
-1982-05-26,834.57,836.85,824.20,828.77,51250000,828.77
-1982-05-25,836.38,845.32,832.38,834.57,44010000,834.57
-1982-05-24,835.90,840.09,830.10,836.38,38510000,836.38
-1982-05-21,832.48,841.23,829.24,835.90,45260000,835.90
-1982-05-20,835.90,839.71,827.62,832.48,48330000,832.48
-1982-05-19,840.85,845.41,832.57,835.90,48840000,835.90
-1982-05-18,845.32,848.08,836.66,840.85,48970000,840.85
-1982-05-17,857.21,857.21,842.94,845.32,45600000,845.32
-1982-05-14,859.11,864.54,853.88,857.78,49900000,857.78
-1982-05-13,865.77,869.86,855.88,859.11,58230000,859.11
-1982-05-12,865.87,874.52,858.92,865.77,59210000,865.77
-1982-05-11,860.92,870.62,857.31,865.87,54680000,865.87
-1982-05-10,869.20,870.24,857.97,860.92,46300000,860.92
-1982-05-07,863.20,876.52,859.78,869.20,67130000,869.20
-1982-05-06,856.35,867.96,856.35,863.20,67540000,863.20
-1982-05-05,854.45,861.97,848.74,854.45,58860000,854.45
-1982-05-04,849.03,860.16,848.17,854.45,58720000,854.45
-1982-05-03,848.36,852.74,837.52,849.03,46490000,849.03
-1982-04-30,844.94,852.55,841.70,848.36,48200000,848.36
-1982-04-29,852.64,852.93,840.09,844.94,51330000,844.94
-1982-04-28,857.50,861.49,845.99,852.64,50530000,852.64
-1982-04-27,865.58,868.34,853.50,857.50,56480000,857.50
-1982-04-26,862.16,871.19,856.45,865.58,60500000,865.58
-1982-04-23,853.12,865.37,851.79,862.16,71840000,862.16
-1982-04-22,843.70,857.02,843.70,853.12,64470000,853.12
-1982-04-21,840.56,847.70,835.81,843.42,57820000,843.42
-1982-04-20,846.08,848.93,836.38,840.56,54610000,840.56
-1982-04-19,843.42,854.26,838.66,846.08,58470000,846.08
-1982-04-16,839.61,848.36,836.85,843.42,55890000,843.42
-1982-04-15,838.09,842.85,832.38,839.61,45700000,839.61
-1982-04-14,841.04,844.46,831.91,838.09,45150000,838.09
-1982-04-13,841.32,847.89,836.19,841.04,48660000,841.04
-1982-04-12,842.94,847.32,836.38,841.32,46520000,841.32
-1982-04-08,836.35,847.51,833.33,842.94,60190000,842.94
-1982-04-07,839.33,845.03,832.48,836.35,53130000,836.35
-1982-04-06,835.33,842.85,827.91,839.33,43200000,839.33
-1982-04-05,838.57,843.89,830.96,835.33,46900000,835.33
-1982-04-02,833.24,843.23,831.53,838.57,59800000,838.57
-1982-04-01,822.77,836.66,820.49,833.24,57100000,833.24
-1982-03-31,824.49,830.57,818.40,822.77,43300000,822.77
-1982-03-30,823.82,829.72,816.97,824.49,43900000,824.49
-1982-03-29,817.92,826.77,813.17,823.82,37100000,823.82
-1982-03-26,827.44,827.44,814.12,817.92,42400000,817.92
-1982-03-25,823.34,833.71,818.59,827.63,51970000,827.63
-1982-03-24,826.67,831.81,819.92,823.34,49380000,823.34
-1982-03-23,819.54,830.67,817.54,826.67,67130000,826.67
-1982-03-22,805.65,824.01,804.79,819.54,57610000,819.54
-1982-03-19,805.27,811.64,799.75,805.65,46250000,805.65
-1982-03-18,795.85,808.41,795.00,805.27,54270000,805.27
-1982-03-17,798.33,802.70,791.29,795.85,48900000,795.85
-1982-03-16,800.99,808.41,795.57,798.33,48900000,798.33
-1982-03-15,797.37,805.18,789.38,800.99,43370000,800.99
-1982-03-12,805.56,806.32,792.05,797.37,49600000,797.37
-1982-03-11,804.89,814.88,800.51,805.56,52960000,805.56
-1982-03-10,803.84,815.26,797.85,804.89,59440000,804.89
-1982-03-09,795.47,810.79,786.15,803.84,76060000,803.84
-1982-03-08,807.36,819.82,794.52,795.47,67330000,795.47
-1982-03-05,807.55,814.97,799.28,807.36,67440000,807.36
-1982-03-04,815.16,819.82,800.70,807.55,74340000,807.55
-1982-03-03,825.82,826.01,808.69,815.16,70230000,815.16
-1982-03-02,828.39,840.66,821.54,825.82,63800000,825.82
-1982-03-01,824.39,834.28,818.21,828.39,53010000,828.39
-1982-02-26,825.82,831.24,817.83,824.39,43840000,824.39
-1982-02-25,826.77,837.42,820.78,825.82,54160000,825.82
-1982-02-24,812.98,829.72,806.51,826.77,64800000,826.77
-1982-02-23,811.26,817.73,802.23,812.98,60100000,812.98
-1982-02-22,824.30,835.81,809.55,811.26,58310000,811.26
-1982-02-19,828.96,833.33,818.59,824.30,51340000,824.30
-1982-02-18,827.63,836.95,824.01,828.96,60810000,828.96
-1982-02-17,831.34,836.95,822.68,827.63,47660000,827.63
-1982-02-16,833.81,834.67,817.26,831.34,48880000,831.34
-1982-02-12,834.67,841.32,829.24,833.81,37070000,833.81
-1982-02-11,836.66,841.42,827.25,834.67,46730000,834.67
-1982-02-10,830.57,842.09,829.34,836.66,46620000,836.66
-1982-02-09,833.43,838.47,824.11,830.57,54420000,830.57
-1982-02-08,849.70,849.70,830.86,833.43,48500000,833.43
-1982-02-05,847.03,858.26,842.94,851.03,53350000,851.03
-1982-02-04,845.03,852.74,835.71,847.03,53300000,847.03
-1982-02-03,852.55,858.26,841.89,845.03,49560000,845.03
-1982-02-02,851.69,860.83,846.46,852.55,45020000,852.55
-1982-02-01,866.34,866.34,848.08,851.69,47720000,851.69
-1982-01-29,864.25,876.71,859.78,871.10,73400000,871.10
-1982-01-28,845.32,867.20,845.32,864.25,66690000,864.25
-1982-01-27,841.51,848.08,832.67,842.66,50060000,842.66
-1982-01-26,842.75,849.79,836.76,841.51,44870000,841.51
-1982-01-25,845.03,846.75,832.57,842.75,43170000,842.75
-1982-01-22,848.27,853.31,839.80,845.03,44370000,845.03
-1982-01-21,845.89,856.64,842.85,848.27,48610000,848.27
-1982-01-20,847.41,853.50,838.95,845.89,48860000,845.89
-1982-01-19,855.12,861.97,845.22,847.41,45070000,847.41
-1982-01-18,847.60,857.78,838.47,855.12,44920000,855.12
-1982-01-15,842.28,852.64,840.37,847.60,43310000,847.60
-1982-01-14,838.95,848.36,834.09,842.28,42940000,842.28
-1982-01-13,847.70,855.31,835.14,838.95,49130000,838.95
-1982-01-12,850.46,856.07,842.66,847.70,49800000,847.70
-1982-01-11,866.53,872.43,848.55,850.46,51900000,850.46
-1982-01-08,861.78,872.15,858.92,866.53,42050000,866.53
-1982-01-07,861.02,865.39,851.22,861.78,43410000,861.78
-1982-01-06,865.30,868.72,853.41,861.02,51510000,861.02
-1982-01-05,882.52,882.61,862.82,865.30,47510000,865.30
-1982-01-04,875.00,887.37,871.86,882.52,36760000,882.52
-1981-12-31,873.10,880.33,868.91,875.00,40780000,875.00
-1981-12-30,868.25,879.76,865.96,873.10,42960000,873.10
-1981-12-29,870.34,875.67,864.44,868.25,35300000,868.25
-1981-12-28,873.38,878.04,867.77,870.34,28320000,870.34
-1981-12-24,869.67,876.14,866.15,873.38,23940000,873.38
-1981-12-23,871.96,877.28,865.39,869.67,42910000,869.67
-1981-12-22,873.10,878.81,867.77,871.96,48320000,871.96
-1981-12-21,875.76,879.57,868.63,873.10,41290000,873.10
-1981-12-18,870.53,880.71,867.39,875.76,50940000,875.76
-1981-12-17,868.72,874.71,862.82,870.53,47230000,870.53
-1981-12-16,875.95,878.42,865.11,868.72,42770000,868.72
-1981-12-15,871.48,880.33,867.77,875.95,44130000,875.95
-1981-12-14,882.52,882.52,868.72,871.48,44740000,871.48
-1981-12-11,892.03,897.45,883.37,886.51,45850000,886.51
-1981-12-10,888.22,897.74,885.18,892.03,47020000,892.03
-1981-12-09,881.75,891.46,879.19,888.22,44810000,888.22
-1981-12-08,886.99,889.36,875.29,881.75,45140000,881.75
-1981-12-07,892.69,897.17,883.37,886.99,45720000,886.99
-1981-12-04,885.75,898.50,885.75,892.69,55040000,892.69
-1981-12-03,882.61,888.32,875.86,883.85,43770000,883.85
-1981-12-02,890.22,892.41,879.28,882.61,44510000,882.61
-1981-12-01,888.98,896.12,881.37,890.22,53980000,890.22
-1981-11-30,885.94,892.79,878.14,888.98,47580000,888.98
-1981-11-27,878.14,890.89,875.76,885.94,32770000,885.94
-1981-11-25,870.72,884.99,870.72,878.14,58570000,878.14
-1981-11-24,851.79,873.29,850.17,870.24,53200000,870.24
-1981-11-23,852.93,860.92,848.17,851.79,45250000,851.79
-1981-11-20,844.75,858.16,841.80,852.93,52010000,852.93
-1981-11-19,844.08,850.08,834.57,844.75,48890000,844.75
-1981-11-18,850.17,854.26,839.99,844.08,49980000,844.08
-1981-11-17,845.03,853.50,841.23,850.17,43190000,850.17
-1981-11-16,853.79,853.79,839.04,845.03,43740000,845.03
-1981-11-13,860.54,865.20,851.79,855.88,45550000,855.88
-1981-11-12,857.12,869.01,854.07,860.54,55720000,860.54
-1981-11-11,853.98,860.83,849.03,857.12,41920000,857.12
-1981-11-10,855.21,865.58,849.12,853.98,53940000,853.98
-1981-11-09,852.45,861.49,844.65,855.21,48310000,855.21
-1981-11-06,859.11,861.21,847.89,852.45,43270000,852.45
-1981-11-05,866.82,874.14,856.93,859.11,50860000,859.11
-1981-11-04,868.72,876.05,859.30,866.82,53450000,866.82
-1981-11-03,866.82,873.19,859.87,868.72,54620000,868.72
-1981-11-02,855.97,872.53,855.97,866.82,65100000,866.82
-1981-10-30,832.95,854.83,826.96,852.55,59570000,852.55
-1981-10-29,837.61,842.47,826.58,832.95,40070000,832.95
-1981-10-28,838.38,847.89,832.29,837.61,48100000,837.61
-1981-10-27,830.96,846.94,828.01,838.38,53030000,838.38
-1981-10-26,837.99,837.99,823.63,830.96,38210000,830.96
-1981-10-23,847.60,847.60,833.14,837.99,41990000,837.99
-1981-10-22,851.03,854.07,840.85,848.27,40630000,848.27
-1981-10-21,851.88,861.97,846.46,851.03,48490000,851.03
-1981-10-20,847.13,860.06,844.75,851.88,51530000,851.88
-1981-10-19,851.69,853.88,840.09,847.13,41590000,847.13
-1981-10-16,856.26,860.73,846.37,851.69,37800000,851.69
-1981-10-15,850.65,861.49,845.61,856.26,42830000,856.26
-1981-10-14,865.58,866.53,848.46,850.65,40260000,850.65
-1981-10-13,869.48,876.05,859.59,865.58,43360000,865.58
-1981-10-12,873.00,877.76,862.25,869.48,30030000,869.48
-1981-10-09,878.14,885.84,866.34,873.00,50060000,873.00
-1981-10-08,868.72,881.66,862.63,878.14,47090000,878.14
-1981-10-07,856.26,871.58,853.98,868.72,50030000,868.72
-1981-10-06,859.87,870.81,848.74,856.26,45460000,856.26
-1981-10-05,860.73,873.95,854.83,859.87,51290000,859.87
-1981-10-02,852.26,866.34,848.65,860.73,54540000,860.73
-1981-10-01,849.98,855.88,840.47,852.26,41600000,852.26
-1981-09-30,847.89,854.36,839.61,849.98,40700000,849.98
-1981-09-29,842.56,858.83,837.80,847.89,49800000,847.89
-1981-09-28,824.01,844.65,807.46,842.56,61320000,842.56
-1981-09-25,834.47,834.47,815.37,824.01,54390000,824.01
-1981-09-24,840.94,850.65,832.00,835.14,48880000,835.14
-1981-09-23,845.70,847.51,827.25,840.94,52700000,840.94
-1981-09-22,846.56,855.40,838.18,845.70,46830000,845.70
-1981-09-21,836.19,851.69,829.43,846.56,44570000,846.56
-1981-09-18,840.09,845.51,829.43,836.19,47350000,836.19
-1981-09-17,851.59,858.26,837.33,840.09,48300000,840.09
-1981-09-16,858.35,858.44,845.98,851.59,43660000,851.59
-1981-09-15,866.15,872.53,856.74,858.35,38580000,858.35
-1981-09-14,872.81,876.24,860.06,866.15,34040000,866.15
-1981-09-11,862.44,875.48,857.21,872.81,42170000,872.81
-1981-09-10,853.88,868.82,853.12,862.44,47430000,862.44
-1981-09-09,851.12,861.30,844.94,853.88,43910000,853.88
-1981-09-08,861.68,863.39,843.13,851.12,47340000,851.12
-1981-09-04,867.01,869.96,856.16,861.68,42760000,861.68
-1981-09-03,884.23,888.70,865.11,867.01,41730000,867.01
-1981-09-02,882.71,892.41,879.28,884.23,37570000,884.23
-1981-09-01,881.47,889.36,873.10,882.71,45110000,882.71
-1981-08-31,892.22,900.88,879.09,881.47,40360000,881.47
-1981-08-28,889.08,898.78,884.80,892.22,38020000,892.22
-1981-08-27,899.26,900.49,883.66,889.08,43900000,889.08
-1981-08-26,901.83,908.39,893.65,899.26,39980000,899.26
-1981-08-25,900.11,904.30,887.46,901.83,54600000,901.83
-1981-08-24,917.43,917.43,896.97,900.11,46750000,900.11
-1981-08-21,928.37,930.65,917.14,920.57,37670000,920.57
-1981-08-20,926.46,935.31,923.52,928.37,38270000,928.37
-1981-08-19,924.37,932.08,918.38,926.46,39390000,926.46
-1981-08-18,926.75,932.74,916.38,924.37,47270000,924.37
-1981-08-17,936.93,939.40,924.37,926.75,40840000,926.75
-1981-08-14,944.35,947.77,933.79,936.93,42580000,936.93
-1981-08-13,945.21,952.91,938.55,944.35,42460000,944.35
-1981-08-12,949.30,955.86,942.26,945.21,53650000,945.21
-1981-08-11,943.68,955.48,939.50,949.30,52600000,949.30
-1981-08-10,942.54,948.82,935.88,943.68,38370000,943.68
-1981-08-07,952.91,954.15,938.45,942.54,38370000,942.54
-1981-08-06,953.58,961.47,947.30,952.91,52070000,952.91
-1981-08-05,945.97,958.81,942.16,953.58,54290000,953.58
-1981-08-04,946.25,951.39,937.40,945.97,39460000,945.97
-1981-08-03,952.34,955.48,940.45,946.25,39650000,946.25
-1981-07-31,945.11,956.72,943.40,952.34,43480000,952.34
-1981-07-30,937.40,948.25,934.36,945.11,41560000,945.11
-1981-07-29,939.40,947.30,933.50,937.40,37610000,937.40
-1981-07-28,945.87,948.15,934.65,939.40,38160000,939.40
-1981-07-27,937.12,950.82,937.12,945.87,39610000,945.87
-1981-07-24,928.56,941.78,926.94,936.74,38880000,936.74
-1981-07-23,924.66,932.84,918.66,928.56,41790000,928.56
-1981-07-22,934.46,942.07,922.37,924.66,47500000,924.66
-1981-07-21,940.54,944.35,927.23,934.46,47280000,934.46
-1981-07-20,954.81,954.81,937.02,940.54,40240000,940.54
-1981-07-17,955.48,964.80,949.30,958.90,42780000,958.90
-1981-07-16,954.15,960.52,947.11,955.48,39010000,955.48
-1981-07-15,948.25,960.33,945.49,954.15,48950000,954.15
-1981-07-14,954.34,956.53,941.50,948.25,45230000,948.25
-1981-07-13,955.67,962.42,949.87,954.34,38100000,954.34
-1981-07-10,959.00,963.38,950.15,955.67,39950000,955.67
-1981-07-09,953.48,963.18,950.06,959.00,45510000,959.00
-1981-07-08,954.15,961.28,944.06,953.48,46000000,953.48
-1981-07-07,949.30,962.90,943.49,954.15,53560000,954.15
-1981-07-06,957.95,957.95,941.97,949.30,44590000,949.30
-1981-07-02,967.66,972.70,954.72,959.19,45100000,959.19
-1981-07-01,976.88,978.98,963.28,967.66,49080000,967.66
-1981-06-30,984.59,988.01,972.69,976.88,41550000,976.88
-1981-06-29,992.87,996.39,981.16,984.59,37930000,984.59
-1981-06-26,996.77,1001.81,988.49,992.87,39240000,992.87
-1981-06-25,999.33,1007.99,992.58,996.77,43920000,996.77
-1981-06-24,1006.66,1008.09,993.15,999.33,46650000,999.33
-1981-06-23,994.20,1008.94,990.01,1006.66,51840000,1006.66
-1981-06-22,996.19,1004.19,988.96,994.20,41790000,994.20
-1981-06-19,995.15,1002.85,988.77,996.19,46430000,996.19
-1981-06-18,1006.56,1011.80,990.96,995.15,48400000,995.15
-1981-06-17,1003.33,1010.84,992.01,1006.56,55470000,1006.56
-1981-06-16,1011.99,1017.50,997.90,1003.33,57780000,1003.33
-1981-06-15,1006.85,1023.02,1006.85,1011.99,63350000,1011.99
-1981-06-12,1007.42,1017.22,996.77,1006.28,60790000,1006.28
-1981-06-11,993.88,1010.57,989.89,1007.42,59530000,1007.42
-1981-06-10,994.44,1003.71,985.91,993.88,53200000,993.88
-1981-06-09,995.64,1004.45,987.76,994.44,44600000,994.44
-1981-06-08,993.79,1003.52,990.54,995.64,41580000,995.64
-1981-06-05,986.74,999.44,981.18,993.79,47180000,993.79
-1981-06-04,989.71,996.66,980.25,986.74,48940000,986.74
-1981-06-03,987.48,993.14,976.82,989.71,54700000,989.71
-1981-06-02,997.96,1003.15,984.70,987.48,53930000,987.48
-1981-06-01,991.75,1010.48,988.97,997.96,62170000,997.96
-1981-05-29,994.25,1003.15,985.44,991.75,51580000,991.75
-1981-05-28,993.14,1002.97,982.66,994.25,59500000,994.25
-1981-05-27,983.96,998.70,978.76,993.14,58730000,993.14
-1981-05-26,971.72,987.20,965.69,983.96,42760000,983.96
-1981-05-22,976.59,982.62,966.59,971.72,40710000,971.72
-1981-05-21,976.86,984.06,969.11,976.59,46820000,976.59
-1981-05-20,980.01,984.87,971.36,976.86,42370000,976.86
-1981-05-19,985.77,988.29,972.26,980.01,42220000,980.01
-1981-05-18,985.95,994.42,978.84,985.77,42510000,985.77
-1981-05-15,973.07,990.09,971.72,985.95,45460000,985.95
-1981-05-14,967.76,979.02,963.08,973.07,42750000,973.07
-1981-05-13,970.82,978.12,961.82,967.76,42600000,967.76
-1981-05-12,963.44,973.70,956.68,970.82,40440000,970.82
-1981-05-11,976.40,979.47,959.83,963.44,37640000,963.44
-1981-05-08,978.39,983.88,972.71,976.40,41860000,976.40
-1981-05-07,973.34,981.99,969.29,978.39,42590000,978.39
-1981-05-06,972.44,983.16,969.47,973.34,47100000,973.34
-1981-05-05,979.11,979.38,964.52,972.44,49000000,972.44
-1981-05-04,985.41,985.41,971.90,979.11,40430000,979.11
-1981-05-01,997.75,1005.22,987.12,995.59,48360000,995.59
-1981-04-30,1004.32,1010.90,991.89,997.75,47970000,997.75
-1981-04-29,1016.93,1018.37,996.58,1004.32,53340000,1004.32
-1981-04-28,1024.05,1029.63,1009.37,1016.93,58210000,1016.93
-1981-04-27,1020.35,1030.98,1013.87,1024.05,51080000,1024.05
-1981-04-24,1010.27,1024.68,1004.32,1020.35,60000000,1020.35
-1981-04-23,1007.02,1022.33,1001.89,1010.27,64200000,1010.27
-1981-04-22,1005.94,1013.96,996.13,1007.02,60660000,1007.02
-1981-04-21,1015.94,1020.98,1001.44,1005.94,60280000,1005.94
-1981-04-20,1005.58,1020.71,995.14,1015.94,51020000,1015.94
-1981-04-16,1001.71,1012.79,995.23,1005.58,52950000,1005.58
-1981-04-15,989.10,1004.41,987.03,1001.71,56040000,1001.71
-1981-04-14,993.16,998.56,981.81,989.10,48350000,989.10
-1981-04-13,1000.27,1003.51,987.66,993.16,49860000,993.16
-1981-04-10,998.83,1009.01,990.63,1000.27,58130000,1000.27
-1981-04-09,993.43,1004.50,984.87,998.83,59520000,998.83
-1981-04-08,992.89,1000.45,987.84,993.43,48000000,993.43
-1981-04-07,994.24,1004.41,987.03,992.89,44540000,992.89
-1981-04-06,1004.59,1004.59,986.67,994.24,43190000,994.24
-1981-04-03,1009.01,1017.02,1000.72,1007.11,48680000,1007.11
-1981-04-02,1014.14,1020.62,1002.07,1009.01,52570000,1009.01
-1981-04-01,1003.87,1020.62,1002.16,1014.14,54880000,1014.14
-1981-03-31,996.58,1011.44,996.58,1003.87,50980000,1003.87
-1981-03-30,994.78,1005.04,987.21,992.16,33500000,992.16
-1981-03-27,1005.76,1008.29,990.00,994.78,46930000,994.78
-1981-03-26,1015.22,1021.79,1000.81,1005.76,60370000,1005.76
-1981-03-25,996.13,1016.48,992.71,1015.22,56320000,1015.22
-1981-03-24,1004.23,1015.58,992.35,996.13,66400000,996.13
-1981-03-23,992.80,1008.92,988.56,1004.23,57880000,1004.23
-1981-03-20,986.58,1002.07,981.27,992.80,61980000,992.80
-1981-03-19,994.06,1001.71,981.18,986.58,62440000,986.58
-1981-03-18,992.53,1003.33,984.15,994.06,55740000,994.06
-1981-03-17,1002.79,1011.08,986.22,992.53,65920000,992.53
-1981-03-16,985.77,1005.40,979.38,1002.79,49940000,1002.79
-1981-03-13,989.82,1002.70,981.09,985.77,68290000,985.77
-1981-03-12,967.67,991.35,966.05,989.82,54640000,989.82
-1981-03-11,972.67,978.30,959.11,967.67,47390000,967.67
-1981-03-10,976.42,987.60,968.47,972.67,56610000,972.67
-1981-03-09,964.62,981.22,962.79,976.42,46180000,976.42
-1981-03-06,964.62,972.13,955.71,964.62,43940000,964.62
-1981-03-05,971.44,977.11,961.39,964.62,45380000,964.62
-1981-03-04,966.02,980.70,959.47,971.44,47260000,971.44
-1981-03-03,977.99,982.01,961.65,966.02,48730000,966.02
-1981-03-02,974.58,983.75,964.36,977.99,47710000,977.99
-1981-02-27,966.81,980.87,960.60,974.58,53210000,974.58
-1981-02-26,954.40,972.22,953.00,966.81,60300000,966.81
-1981-02-25,946.10,958.51,932.22,954.40,45710000,954.40
-1981-02-24,945.23,955.63,938.77,946.10,43960000,946.10
-1981-02-23,936.09,952.22,930.64,945.23,39590000,945.23
-1981-02-20,933.36,942.41,926.11,936.09,41900000,936.09
-1981-02-19,947.10,952.05,930.29,933.36,41630000,933.36
-1981-02-18,939.68,950.34,935.15,947.10,40410000,947.10
-1981-02-17,931.57,944.28,930.38,939.68,37940000,939.68
-1981-02-13,936.60,940.19,926.45,931.57,33360000,931.57
-1981-02-12,942.49,947.53,933.02,936.60,34700000,936.60
-1981-02-11,948.63,954.44,938.99,942.49,37770000,942.49
-1981-02-10,947.18,955.12,940.02,948.63,40820000,948.63
-1981-02-09,952.30,958.53,943.26,947.18,38330000,947.18
-1981-02-06,946.76,959.98,944.20,952.30,45820000,952.30
-1981-02-05,941.98,952.22,936.09,946.76,45320000,946.76
-1981-02-04,941.38,948.21,933.28,941.98,45520000,941.98
-1981-02-03,932.25,944.37,925.77,941.38,45950000,941.38
-1981-02-02,947.10,947.10,923.89,932.25,44070000,932.25
-1981-01-30,948.89,960.24,940.61,947.27,41160000,947.27
-1981-01-29,942.58,955.63,937.12,948.89,38170000,948.89
-1981-01-28,949.49,956.91,939.68,942.58,36690000,942.58
-1981-01-27,938.91,954.69,935.92,949.49,42260000,949.49
-1981-01-26,940.19,947.70,930.89,938.91,35380000,938.91
-1981-01-23,940.44,947.10,934.30,940.19,37220000,940.19
-1981-01-22,946.25,951.28,934.13,940.44,39880000,940.44
-1981-01-21,950.68,954.01,938.48,946.25,39190000,946.25
-1981-01-20,970.99,975.94,948.55,950.68,41750000,950.68
-1981-01-19,973.29,980.38,965.36,970.99,36470000,970.99
-1981-01-16,969.97,980.29,964.85,973.29,43260000,973.29
-1981-01-15,966.47,975.17,959.30,969.97,39640000,969.97
-1981-01-14,965.10,978.07,960.75,966.47,41390000,966.47
-1981-01-13,968.77,971.25,956.48,965.10,40890000,965.10
-1981-01-12,968.69,983.87,964.76,968.77,48760000,968.77
-1981-01-09,965.70,977.05,957.76,968.69,50190000,968.69
-1981-01-08,980.89,986.01,959.13,965.70,55350000,965.70
-1981-01-07,986.35,986.35,962.63,980.89,92890000,980.89
-1981-01-06,992.66,1013.14,986.26,1004.69,67400000,1004.69
-1981-01-05,976.28,996.93,976.28,992.66,58710000,992.66
-1981-01-02,963.99,975.68,958.70,972.78,28870000,972.78
-1980-12-31,962.03,971.50,955.55,963.99,41210000,963.99
-1980-12-30,960.58,969.54,952.99,962.03,39750000,962.03
-1980-12-29,966.38,974.57,956.40,960.58,36060000,960.58
-1980-12-26,963.05,969.37,958.45,966.38,16130000,966.38
-1980-12-24,958.28,968.17,950.85,963.05,29490000,963.05
-1980-12-23,958.79,971.25,949.49,958.28,55260000,958.28
-1980-12-22,937.20,962.17,934.64,958.79,51950000,958.79
-1980-12-19,930.20,945.31,924.57,937.20,50770000,937.20
-1980-12-18,928.50,948.38,925.00,930.20,69570000,930.20
-1980-12-17,918.09,933.96,913.05,928.50,50800000,928.50
-1980-12-16,911.60,922.35,902.47,918.09,41630000,918.09
-1980-12-15,917.15,927.65,907.85,911.60,39700000,911.60
-1980-12-12,908.45,923.12,906.48,917.15,39530000,917.15
-1980-12-11,916.21,918.52,894.45,908.45,60220000,908.45
-1980-12-10,934.04,943.52,914.16,916.21,49860000,916.21
-1980-12-09,933.70,944.28,921.59,934.04,53220000,934.04
-1980-12-08,951.19,951.19,928.33,933.70,53390000,933.70
-1980-12-05,970.48,972.61,951.45,956.23,51990000,956.23
-1980-12-04,972.27,984.22,963.31,970.48,51170000,970.48
-1980-12-03,974.40,981.57,963.57,972.27,43430000,972.27
-1980-12-02,969.45,979.69,954.95,974.40,52340000,974.40
-1980-12-01,991.13,991.13,966.38,969.45,48180000,969.45
-1980-11-28,989.68,998.72,980.38,993.34,34240000,993.34
-1980-11-26,982.68,1000.77,979.86,989.68,55340000,989.68
-1980-11-25,978.75,993.52,973.04,982.68,55840000,982.68
-1980-11-24,988.14,988.14,967.66,978.75,51120000,978.75
-1980-11-21,1000.17,1004.69,984.30,989.93,55950000,989.93
-1980-11-20,991.04,1004.61,984.90,1000.17,60180000,1000.17
-1980-11-19,997.95,1009.39,983.36,991.04,69230000,991.04
-1980-11-18,986.26,1005.20,985.92,997.95,70380000,997.95
-1980-11-17,986.35,990.78,968.94,986.26,50260000,986.26
-1980-11-14,982.42,997.35,973.21,986.35,71630000,986.35
-1980-11-13,964.93,984.64,962.20,982.42,69340000,982.42
-1980-11-12,944.03,968.86,943.77,964.93,58500000,964.93
-1980-11-11,933.79,951.19,933.02,944.03,41520000,944.03
-1980-11-10,932.42,940.44,926.71,933.79,35720000,933.79
-1980-11-07,935.41,940.53,926.11,932.42,40070000,932.42
-1980-11-06,950.43,950.43,932.08,935.41,48890000,935.41
-1980-11-05,950.34,982.59,950.34,953.16,84080000,953.16
-1980-11-03,924.49,941.30,924.49,937.20,35820000,937.20
-1980-10-31,917.75,929.35,911.60,924.49,40110000,924.49
-1980-10-30,929.18,932.51,915.02,917.75,39060000,917.75
-1980-10-29,932.59,941.64,925.68,929.18,37200000,929.18
-1980-10-28,931.74,937.54,922.78,932.59,40300000,932.59
-1980-10-27,943.60,944.62,930.12,931.74,34430000,931.74
-1980-10-24,939.51,947.35,931.06,943.60,41050000,943.60
-1980-10-23,955.12,958.28,936.69,939.51,49200000,939.51
-1980-10-22,954.44,961.77,947.87,955.12,43060000,955.12
-1980-10-21,960.84,968.69,949.91,954.44,51220000,954.44
-1980-10-20,956.14,964.42,946.59,960.84,40910000,960.84
-1980-10-17,958.70,966.04,946.42,956.14,43920000,956.14
-1980-10-16,972.44,987.29,956.57,958.70,65450000,958.70
-1980-10-15,962.20,975.94,959.73,972.44,48260000,972.44
-1980-10-14,959.90,971.67,957.08,962.20,48830000,962.20
-1980-10-13,950.68,963.65,946.50,959.90,31360000,959.90
-1980-10-10,958.96,965.70,946.25,950.68,44040000,950.68
-1980-10-09,963.99,971.08,953.07,958.96,43980000,958.96
-1980-10-08,960.67,971.42,955.29,963.99,46580000,963.99
-1980-10-07,965.70,973.04,955.55,960.67,50310000,960.67
-1980-10-06,950.85,969.62,950.85,965.70,50130000,965.70
-1980-10-03,942.24,957.85,938.40,950.68,47510000,950.68
-1980-10-02,939.42,948.21,931.31,942.24,46160000,942.24
-1980-10-01,932.42,945.14,923.04,939.42,48720000,939.42
-1980-09-30,921.93,937.20,921.59,932.42,40290000,932.42
-1980-09-29,934.81,934.81,918.00,921.93,46410000,921.93
-1980-09-26,952.65,952.65,934.98,940.10,49460000,940.10
-1980-09-25,964.76,972.61,953.07,955.97,49510000,955.97
-1980-09-24,962.03,972.78,952.73,964.76,56860000,964.76
-1980-09-23,974.57,980.72,957.94,962.03,64390000,962.03
-1980-09-22,963.74,977.05,955.29,974.57,53140000,974.57
-1980-09-19,956.48,972.70,950.77,963.74,53780000,963.74
-1980-09-18,961.26,972.01,950.26,956.48,63390000,956.48
-1980-09-17,945.90,966.98,943.69,961.26,63990000,961.26
-1980-09-16,937.63,953.07,935.32,945.90,57290000,945.90
-1980-09-15,936.52,942.58,926.96,937.63,44630000,937.63
-1980-09-12,941.30,945.48,932.51,936.52,47180000,936.52
-1980-09-11,938.48,947.78,934.39,941.30,44770000,941.30
-1980-09-10,934.73,946.16,930.63,938.48,51430000,938.48
-1980-09-09,928.58,936.09,919.03,934.73,44460000,934.73
-1980-09-08,940.96,945.48,925.34,928.58,42050000,928.58
-1980-09-05,948.81,950.68,937.03,940.96,37990000,940.96
-1980-09-04,953.16,964.85,942.92,948.81,59030000,948.81
-1980-09-03,940.78,955.20,939.85,953.16,52370000,953.16
-1980-09-02,932.59,944.80,928.16,940.78,35290000,940.78
-1980-08-29,930.38,936.43,923.04,932.59,33510000,932.59
-1980-08-28,943.09,944.03,927.22,930.38,39890000,930.38
-1980-08-27,953.24,953.24,939.68,943.09,44000000,943.09
-1980-08-26,956.23,964.59,949.91,953.41,41700000,953.41
-1980-08-25,958.19,961.35,947.70,956.23,35400000,956.23
-1980-08-22,955.03,969.45,952.73,958.19,58210000,958.19
-1980-08-21,945.31,958.53,943.94,955.03,50770000,955.03
-1980-08-20,939.85,948.98,934.47,945.31,42560000,945.31
-1980-08-19,948.63,952.13,937.37,939.85,41930000,939.85
-1980-08-18,961.95,961.95,944.97,948.63,41890000,948.63
-1980-08-15,962.63,972.35,956.31,966.72,47780000,966.72
-1980-08-14,949.23,965.36,943.69,962.63,47700000,962.63
-1980-08-13,952.39,958.79,944.45,949.23,44350000,949.23
-1980-08-12,964.08,969.97,948.72,952.39,52050000,952.39
-1980-08-11,954.69,966.89,950.43,964.08,44690000,964.08
-1980-08-08,950.94,965.87,949.74,954.69,58860000,954.69
-1980-08-07,938.23,953.75,935.84,950.94,61820000,950.94
-1980-08-06,929.78,941.04,923.63,938.23,45050000,938.23
-1980-08-05,931.06,938.82,924.23,929.78,45510000,929.78
-1980-08-04,931.48,935.24,918.52,931.06,41550000,931.06
-1980-08-01,935.32,940.02,924.83,931.48,46440000,931.48
-1980-07-31,936.18,939.51,918.77,935.32,54610000,935.32
-1980-07-30,931.91,946.93,926.54,936.18,58060000,936.18
-1980-07-29,925.43,935.15,921.33,931.91,44840000,931.91
-1980-07-28,918.09,927.73,911.69,925.43,35330000,925.43
-1980-07-25,925.34,925.34,913.23,918.09,36250000,918.09
-1980-07-24,928.58,933.79,919.97,926.11,42420000,926.11
-1980-07-23,927.30,937.71,920.99,928.58,45890000,928.58
-1980-07-22,928.67,940.78,922.18,927.30,52230000,927.30
-1980-07-21,923.98,933.28,916.38,928.67,42750000,928.67
-1980-07-18,915.10,930.80,914.42,923.98,58040000,923.98
-1980-07-17,904.44,916.64,902.05,915.10,48850000,915.10
-1980-07-16,901.54,912.97,898.21,904.44,49140000,904.44
-1980-07-15,905.55,916.04,899.23,901.54,60920000,901.54
-1980-07-14,891.13,908.28,887.20,905.55,45500000,905.55
-1980-07-11,885.92,895.22,880.80,891.13,38310000,891.13
-1980-07-10,897.27,900.34,883.28,885.92,43730000,885.92
-1980-07-09,897.35,908.87,892.58,897.27,52010000,897.27
-1980-07-08,898.21,904.86,891.38,897.35,45830000,897.35
-1980-07-07,888.91,900.77,886.86,898.21,42540000,898.21
-1980-07-03,876.02,890.78,874.83,888.91,47230000,888.91
-1980-07-02,872.27,880.46,867.06,876.02,42950000,876.02
-1980-07-01,867.92,876.02,862.63,872.27,34340000,872.27
-1980-06-30,880.89,880.89,864.33,867.92,29910000,867.92
-1980-06-27,883.45,889.08,874.49,881.83,33110000,881.83
-1980-06-26,887.54,896.33,880.03,883.45,45110000,883.45
-1980-06-25,877.30,892.49,874.91,887.54,46500000,887.54
-1980-06-24,873.81,881.31,867.15,877.30,37730000,877.30
-1980-06-23,869.71,879.61,864.85,873.81,34180000,873.81
-1980-06-20,870.90,875.09,863.31,869.71,36530000,869.71
-1980-06-19,881.91,886.01,869.62,870.90,38280000,870.90
-1980-06-18,879.27,885.32,870.14,881.91,41960000,881.91
-1980-06-17,877.73,887.63,872.35,879.27,41990000,879.27
-1980-06-16,876.37,883.19,868.77,877.73,36190000,877.73
-1980-06-13,872.61,883.96,866.81,876.37,41880000,876.37
-1980-06-12,872.70,881.40,863.05,872.61,47300000,872.61
-1980-06-11,863.99,876.88,860.24,872.70,43800000,872.70
-1980-06-10,860.67,870.73,855.20,863.99,42030000,863.99
-1980-06-09,861.52,867.66,855.72,860.67,36820000,860.67
-1980-06-06,858.70,867.06,853.07,861.52,37230000,861.52
-1980-06-05,858.02,868.60,853.50,858.70,49070000,858.70
-1980-06-04,843.77,860.49,842.75,858.02,44180000,858.02
-1980-06-03,847.35,851.96,840.70,843.77,33150000,843.77
-1980-06-02,850.85,857.94,842.92,847.35,32710000,847.35
-1980-05-30,846.25,853.24,835.07,850.85,34820000,850.85
-1980-05-29,860.32,863.65,844.71,846.25,42000000,846.25
-1980-05-28,857.76,866.13,850.09,860.32,38580000,860.32
-1980-05-27,854.10,864.42,851.28,857.76,40810000,857.76
-1980-05-23,843.34,858.62,843.34,854.10,45790000,854.10
-1980-05-22,831.06,848.63,828.84,842.92,41040000,842.92
-1980-05-21,832.51,836.43,821.50,831.06,34830000,831.06
-1980-05-20,830.89,837.12,825.60,832.51,31800000,832.51
-1980-05-19,826.88,835.75,820.65,830.89,30970000,830.89
-1980-05-16,822.53,829.52,819.11,826.88,31710000,826.88
-1980-05-15,819.62,829.35,816.04,822.53,41120000,822.53
-1980-05-14,816.89,827.73,813.74,819.62,40840000,819.62
-1980-05-13,805.20,820.39,803.07,816.89,35460000,816.89
-1980-05-12,805.80,810.32,795.82,805.20,28220000,805.20
-1980-05-09,815.10,815.10,802.47,805.80,30280000,805.80
-1980-05-08,821.25,827.47,811.01,815.19,39280000,815.19
-1980-05-07,816.04,828.67,810.49,821.25,42600000,821.25
-1980-05-06,816.30,827.65,808.28,816.04,40160000,816.04
-1980-05-05,810.92,819.20,803.58,816.30,34090000,816.30
-1980-05-02,808.79,815.70,802.99,810.92,28040000,810.92
-1980-05-01,817.06,820.22,803.24,808.79,32480000,808.79
-1980-04-30,811.09,818.52,801.02,817.06,30850000,817.06
-1980-04-29,805.46,816.21,802.65,811.09,27940000,811.09
-1980-04-28,803.58,814.68,798.72,805.46,30600000,805.46
-1980-04-25,797.10,806.74,786.35,803.58,28590000,803.58
-1980-04-24,789.25,804.95,785.24,797.10,35790000,797.10
-1980-04-23,789.85,801.11,784.13,789.25,42620000,789.25
-1980-04-22,771.33,793.43,771.33,789.85,47920000,789.85
-1980-04-21,763.40,769.62,751.37,759.13,27560000,759.13
-1980-04-18,768.86,775.94,760.32,763.40,26880000,763.40
-1980-04-17,771.25,776.37,762.12,768.86,32770000,768.86
-1980-04-16,783.36,794.88,769.80,771.25,39730000,771.25
-1980-04-15,784.90,792.41,778.84,783.36,26670000,783.36
-1980-04-14,791.55,791.81,779.52,784.90,23060000,784.90
-1980-04-11,791.47,800.85,786.52,791.55,29960000,791.55
-1980-04-10,785.92,796.42,783.02,791.47,33940000,791.47
-1980-04-09,775.00,790.02,772.44,785.92,33020000,785.92
-1980-04-08,768.34,779.61,759.81,775.00,31700000,775.00
-1980-04-07,784.13,784.39,765.44,768.34,29130000,768.34
-1980-04-03,787.80,791.98,778.24,784.13,27970000,784.13
-1980-04-02,784.47,796.40,779.95,787.80,35210000,787.80
-1980-04-01,785.75,792.15,776.28,784.47,32230000,784.47
-1980-03-31,777.65,790.87,772.18,785.75,35840000,785.75
-1980-03-28,759.98,784.39,756.57,777.65,46720000,777.65
-1980-03-27,762.12,767.41,729.95,759.98,63680000,759.98
-1980-03-26,767.83,781.66,758.79,762.12,37370000,762.12
-1980-03-25,765.44,777.47,758.36,767.83,43790000,767.83
-1980-03-24,784.98,784.98,761.69,765.44,39230000,765.44
-1980-03-21,789.08,794.71,779.52,785.15,32220000,785.15
-1980-03-20,800.94,804.61,785.92,789.08,32580000,789.08
-1980-03-19,801.62,812.12,794.97,800.94,36520000,800.94
-1980-03-18,788.65,806.66,780.97,801.62,47340000,801.62
-1980-03-17,811.26,811.26,784.98,788.65,37020000,788.65
-1980-03-14,809.56,819.11,800.68,811.69,35180000,811.69
-1980-03-13,819.54,825.26,806.57,809.56,33070000,809.56
-1980-03-12,826.45,829.86,808.70,819.54,37990000,819.54
-1980-03-11,818.94,831.91,817.58,826.45,41350000,826.45
-1980-03-10,820.56,828.84,807.25,818.94,43750000,818.94
-1980-03-07,828.07,832.51,813.23,820.56,50950000,820.56
-1980-03-06,844.88,848.12,822.44,828.07,49610000,828.07
-1980-03-05,856.48,868.69,840.78,844.88,49240000,844.88
-1980-03-04,854.35,859.90,842.75,856.48,44310000,856.48
-1980-03-03,863.14,868.26,851.37,854.35,38690000,854.35
-1980-02-29,854.44,866.55,850.85,863.14,38810000,863.14
-1980-02-28,855.12,865.10,847.27,854.44,40330000,854.44
-1980-02-27,864.25,875.26,850.09,855.12,46430000,855.12
-1980-02-26,859.81,869.45,853.24,864.25,40000000,864.25
-1980-02-25,868.77,868.94,854.61,859.81,39140000,859.81
-1980-02-22,868.52,877.47,855.80,868.77,48210000,868.77
-1980-02-21,886.86,891.13,863.99,868.52,51530000,868.52
-1980-02-20,876.02,891.30,872.44,886.86,44340000,886.86
-1980-02-19,883.96,883.96,869.37,876.02,39480000,876.02
-1980-02-15,892.92,892.92,875.09,884.98,46680000,884.98
-1980-02-14,903.84,912.03,886.86,893.77,50540000,893.77
-1980-02-13,898.98,918.17,896.59,903.84,65230000,903.84
-1980-02-12,889.59,901.37,880.97,898.98,48090000,898.98
-1980-02-11,895.73,902.39,884.04,889.59,58660000,889.59
-1980-02-08,885.49,901.11,879.86,895.73,57860000,895.73
-1980-02-07,881.83,897.27,878.24,885.49,57690000,885.49
-1980-02-06,876.62,888.05,867.92,881.83,51950000,881.83
-1980-02-05,875.09,880.89,868.17,876.62,41880000,876.62
-1980-02-04,881.48,887.37,870.48,875.09,43070000,875.09
-1980-02-01,875.85,886.64,866.30,881.48,46610000,881.48
-1980-01-31,881.91,897.87,873.04,875.85,65900000,875.85
-1980-01-30,874.40,886.09,870.14,881.91,51170000,881.91
-1980-01-29,878.50,885.67,864.59,874.40,55480000,874.40
-1980-01-28,876.11,884.56,866.64,878.50,53620000,878.50
-1980-01-25,879.95,882.25,869.03,876.11,47100000,876.11
-1980-01-24,877.56,891.38,874.15,879.95,59070000,879.95
-1980-01-23,866.21,883.02,859.39,877.56,50730000,877.56
-1980-01-22,872.78,879.95,861.95,866.21,50620000,866.21
-1980-01-21,867.15,880.03,863.65,872.78,48040000,872.78
-1980-01-18,863.57,873.21,855.29,867.15,47150000,867.15
-1980-01-17,865.19,872.95,857.00,863.57,54170000,863.57
-1980-01-16,868.60,881.14,862.12,865.19,67700000,865.19
-1980-01-15,863.57,873.81,855.89,868.60,52320000,868.60
-1980-01-14,858.53,870.65,854.95,863.57,52930000,863.57
-1980-01-11,858.96,868.17,848.89,858.53,52890000,858.53
-1980-01-10,850.09,866.72,848.89,858.96,55980000,858.96
-1980-01-09,851.71,865.70,846.76,850.09,65260000,850.09
-1980-01-08,832.00,853.67,828.84,851.71,53390000,851.71
-1980-01-07,828.84,839.85,824.74,832.00,44500000,832.00
-1980-01-04,820.31,833.53,819.03,828.84,39130000,828.84
-1980-01-03,824.57,827.73,809.04,820.31,50480000,820.31
-1980-01-02,838.74,841.21,822.35,824.57,40610000,824.57
-1979-12-31,838.91,843.17,834.39,838.74,31530000,838.74
-1979-12-28,840.10,843.43,834.64,838.91,34430000,838.91
-1979-12-27,838.14,842.83,834.47,840.10,31410000,840.10
-1979-12-26,839.16,843.09,833.74,838.14,24960000,838.14
-1979-12-24,838.91,842.32,833.19,839.16,19150000,839.16
-1979-12-21,843.34,847.35,834.56,838.91,36160000,838.91
-1979-12-20,838.91,848.55,835.32,843.34,40380000,843.34
-1979-12-19,838.65,842.75,830.46,838.91,41780000,838.91
-1979-12-18,844.62,849.15,835.32,838.65,43310000,838.65
-1979-12-17,842.75,851.54,838.05,844.62,43830000,844.62
-1979-12-14,836.09,846.93,833.28,842.75,41800000,842.75
-1979-12-13,835.67,840.53,830.03,836.09,36690000,836.09
-1979-12-12,833.70,840.87,830.20,835.67,34630000,835.67
-1979-12-11,833.87,841.47,828.41,833.70,36160000,833.70
-1979-12-10,833.19,837.29,826.62,833.87,32270000,833.87
-1979-12-07,835.07,844.71,829.35,833.19,42370000,833.19
-1979-12-06,828.41,837.46,826.19,835.07,37510000,835.07
-1979-12-05,824.91,837.37,824.15,828.41,39300000,828.41
-1979-12-04,819.62,828.33,818.09,824.91,33510000,824.91
-1979-12-03,822.35,825.51,814.76,819.62,29030000,819.62
-1979-11-30,830.80,830.80,819.88,822.35,30480000,822.35
-1979-11-29,830.46,838.57,826.45,831.74,33550000,831.74
-1979-11-28,825.85,835.92,818.09,830.46,39690000,830.46
-1979-11-27,828.75,837.29,820.73,825.85,45140000,825.85
-1979-11-26,813.82,833.11,813.82,828.75,47940000,828.75
-1979-11-23,807.42,815.96,804.86,811.77,23300000,811.77
-1979-11-21,809.22,810.49,793.60,807.42,37020000,807.42
-1979-11-20,815.27,820.14,805.12,809.22,35010000,809.22
-1979-11-19,815.70,822.95,810.07,815.27,33090000,815.27
-1979-11-16,821.33,822.61,812.54,815.70,30060000,815.70
-1979-11-15,816.55,827.56,813.57,821.33,32380000,821.33
-1979-11-14,814.08,823.04,805.03,816.55,30970000,816.55
-1979-11-13,821.93,825.85,811.52,814.08,29240000,814.08
-1979-11-12,806.48,823.72,805.63,821.93,26640000,821.93
-1979-11-09,799.91,812.29,799.91,806.48,30060000,806.48
-1979-11-08,796.67,804.27,792.24,797.61,26270000,797.61
-1979-11-07,805.20,805.20,793.43,796.67,30830000,796.67
-1979-11-06,812.63,813.40,804.61,806.48,21960000,806.48
-1979-11-05,818.94,819.37,808.45,812.63,20470000,812.63
-1979-11-02,820.14,824.74,814.42,818.94,23670000,818.94
-1979-11-01,815.70,823.63,809.73,820.14,25880000,820.14
-1979-10-31,823.81,826.88,812.88,815.70,27780000,815.70
-1979-10-30,808.62,824.66,805.80,823.81,28890000,823.81
-1979-10-29,809.30,815.53,804.86,808.62,22720000,808.62
-1979-10-26,808.46,814.68,801.62,809.30,29660000,809.30
-1979-10-25,808.36,816.38,803.07,808.46,28440000,808.46
-1979-10-24,806.83,816.64,803.24,808.36,31480000,808.36
-1979-10-23,809.13,816.38,801.96,806.83,32910000,806.83
-1979-10-22,813.91,813.91,795.99,809.13,45240000,809.13
-1979-10-19,829.18,829.18,812.46,814.68,42430000,814.68
-1979-10-18,830.72,838.74,826.71,830.12,29590000,830.12
-1979-10-17,829.52,840.53,827.39,830.72,29650000,830.72
-1979-10-16,831.06,838.51,825.68,829.52,33770000,829.52
-1979-10-15,838.99,840.36,823.89,831.06,34850000,831.06
-1979-10-12,844.62,852.90,835.67,838.99,36390000,838.99
-1979-10-11,849.32,854.69,834.98,844.62,47530000,844.62
-1979-10-10,855.03,855.03,826.54,849.32,81620000,849.32
-1979-10-09,879.35,879.35,854.10,857.59,55560000,857.59
-1979-10-08,897.61,900.26,882.59,884.04,32610000,884.04
-1979-10-05,890.10,904.86,889.59,897.61,48250000,897.61
-1979-10-04,885.15,895.82,882.25,890.10,38800000,890.10
-1979-10-03,885.32,891.98,879.35,885.15,36470000,885.15
-1979-10-02,872.95,889.16,868.77,885.32,38310000,885.32
-1979-10-01,877.73,877.73,866.55,872.95,24980000,872.95
-1979-09-28,887.46,889.93,875.00,878.58,35950000,878.58
-1979-09-27,886.35,892.32,880.55,887.46,33110000,887.46
-1979-09-26,886.18,898.63,883.02,886.35,37700000,886.35
-1979-09-25,885.84,889.68,875.00,886.18,32410000,886.18
-1979-09-24,893.94,896.59,882.85,885.84,33790000,885.84
-1979-09-21,893.69,902.13,886.52,893.94,52380000,893.94
-1979-09-20,876.45,894.62,870.99,893.69,45100000,893.69
-1979-09-19,874.15,883.36,870.39,876.45,35370000,876.45
-1979-09-18,881.31,882.00,869.45,874.15,38750000,874.15
-1979-09-17,879.10,890.02,877.39,881.31,37610000,881.31
-1979-09-14,870.73,884.56,868.60,879.10,41980000,879.10
-1979-09-13,870.90,876.37,864.93,870.73,35240000,870.73
-1979-09-12,869.71,874.91,862.97,870.90,39350000,870.90
-1979-09-11,876.88,880.80,864.93,869.71,42530000,869.71
-1979-09-10,874.15,881.06,870.14,876.88,32980000,876.88
-1979-09-07,867.32,877.39,863.32,874.15,34360000,874.15
-1979-09-06,866.13,874.74,862.63,867.32,30330000,867.32
-1979-09-05,871.08,871.08,857.85,866.13,41650000,866.13
-1979-09-04,887.63,887.63,871.16,872.61,33350000,872.61
-1979-08-31,883.70,890.10,881.14,887.63,26370000,887.63
-1979-08-30,884.90,887.63,879.52,883.70,29300000,883.70
-1979-08-29,884.64,888.23,879.52,884.90,30810000,884.90
-1979-08-28,885.41,889.68,881.40,884.64,29430000,884.64
-1979-08-27,880.20,891.81,877.47,885.41,32050000,885.41
-1979-08-24,880.38,883.87,872.18,880.20,32730000,880.20
-1979-08-23,885.84,888.40,877.22,880.38,35710000,880.38
-1979-08-22,886.01,890.02,879.44,885.84,38450000,885.84
-1979-08-21,886.52,892.32,880.63,886.01,38860000,886.01
-1979-08-20,883.36,890.27,878.07,886.52,32300000,886.52
-1979-08-17,884.04,888.31,877.05,883.36,31630000,883.36
-1979-08-16,885.84,893.60,878.75,884.04,47000000,884.04
-1979-08-15,876.71,888.23,871.50,885.84,46130000,885.84
-1979-08-14,875.26,880.72,868.69,876.71,40910000,876.71
-1979-08-13,867.15,878.58,867.15,875.26,41980000,875.26
-1979-08-10,858.28,869.54,852.30,867.06,36740000,867.06
-1979-08-09,863.14,864.51,855.12,858.28,34630000,858.28
-1979-08-08,859.81,870.14,857.42,863.14,44970000,863.14
-1979-08-07,848.55,863.99,848.04,859.81,45410000,859.81
-1979-08-06,846.16,850.77,839.08,848.55,27190000,848.55
-1979-08-03,847.95,850.51,843.32,846.16,28160000,846.16
-1979-08-02,850.34,855.03,844.28,847.95,37720000,847.95
-1979-08-01,846.42,852.30,841.38,850.34,36570000,850.34
-1979-07-31,838.74,849.06,837.80,846.42,34360000,846.42
-1979-07-30,839.76,842.49,833.45,838.74,28640000,838.74
-1979-07-27,839.76,842.66,833.28,839.76,27760000,839.76
-1979-07-26,839.51,843.17,833.96,839.76,32270000,839.76
-1979-07-25,829.78,840.78,829.18,839.51,34890000,839.51
-1979-07-24,825.51,833.28,822.61,829.78,29690000,829.78
-1979-07-23,828.07,829.69,819.97,825.51,26860000,825.51
-1979-07-20,827.30,832.08,822.70,828.07,26360000,828.07
-1979-07-19,828.58,834.04,822.78,827.30,26780000,827.30
-1979-07-18,828.50,830.97,818.00,828.58,35950000,828.58
-1979-07-17,834.90,836.35,824.66,828.50,34270000,828.50
-1979-07-16,833.53,838.57,828.92,834.90,26620000,834.90
-1979-07-13,836.86,837.88,827.47,833.53,33080000,833.53
-1979-07-12,843.86,844.62,834.22,836.86,31780000,836.86
-1979-07-11,849.40,849.40,839.16,843.86,36650000,843.86
-1979-07-10,852.99,857.00,845.73,850.34,39730000,850.34
-1979-07-09,846.16,856.57,844.28,852.99,42460000,852.99
-1979-07-06,835.75,847.27,834.22,846.16,38570000,846.16
-1979-07-05,835.58,840.02,830.97,835.75,30290000,835.75
-1979-07-03,834.04,838.99,829.27,835.58,31670000,835.58
-1979-07-02,840.61,840.61,830.46,834.04,32060000,834.04
-1979-06-29,843.04,848.12,837.20,841.98,34690000,841.98
-1979-06-28,840.52,848.84,836.97,843.04,38470000,843.04
-1979-06-27,837.66,846.15,834.20,840.52,36720000,840.52
-1979-06-26,844.25,849.19,834.46,837.66,34680000,837.66
-1979-06-25,849.10,850.83,839.66,844.25,31330000,844.25
-1979-06-22,843.64,853.06,842.34,849.10,36410000,849.10
-1979-06-21,839.83,847.80,837.40,843.64,36490000,843.64
-1979-06-20,839.40,843.56,836.11,839.83,33790000,839.83
-1979-06-19,839.40,843.99,835.85,839.40,30780000,839.40
-1979-06-18,843.30,845.20,836.28,839.40,30970000,839.40
-1979-06-15,842.34,847.11,837.40,843.30,40740000,843.30
-1979-06-14,842.17,844.07,834.29,842.34,37850000,842.34
-1979-06-13,845.29,850.31,840.00,842.17,40740000,842.17
-1979-06-12,837.58,851.61,837.14,845.29,45450000,845.29
-1979-06-11,835.15,839.66,830.73,837.58,28270000,837.58
-1979-06-08,836.97,839.48,831.25,835.15,31470000,835.15
-1979-06-07,835.50,842.78,833.16,836.97,43380000,836.97
-1979-06-06,831.34,841.04,829.26,835.50,39830000,835.50
-1979-06-05,821.90,834.46,820.25,831.34,35050000,831.34
-1979-06-04,821.21,825.36,817.83,821.90,24040000,821.90
-1979-06-01,822.33,826.14,817.74,821.21,24560000,821.21
-1979-05-31,822.16,827.01,815.14,822.33,30300000,822.33
-1979-05-30,832.47,832.47,820.17,822.16,29250000,822.16
-1979-05-29,836.28,837.75,829.26,832.55,27040000,832.55
-1979-05-25,837.66,840.26,831.86,836.28,27810000,836.28
-1979-05-24,837.40,842.69,832.38,837.66,25710000,837.66
-1979-05-23,845.37,851.26,836.19,837.40,30390000,837.40
-1979-05-22,842.43,848.41,837.23,845.37,30400000,845.37
-1979-05-21,841.91,847.80,836.28,842.43,25550000,842.43
-1979-05-18,842.95,848.32,837.40,841.91,26590000,841.91
-1979-05-17,828.48,845.03,827.44,842.95,30550000,842.95
-1979-05-16,825.88,832.47,821.03,828.48,28350000,828.48
-1979-05-15,825.02,832.12,821.55,825.88,26190000,825.88
-1979-05-14,830.56,834.03,823.02,825.02,22450000,825.02
-1979-05-11,828.92,834.11,824.76,830.56,24010000,830.56
-1979-05-10,838.62,839.92,827.53,828.92,25230000,828.92
-1979-05-09,834.89,842.26,829.09,838.62,27670000,838.62
-1979-05-08,833.42,838.10,823.63,834.89,32720000,834.89
-1979-05-07,846.07,846.07,832.03,833.42,30480000,833.42
-1979-05-04,857.59,859.23,845.89,847.54,30630000,847.54
-1979-05-03,855.51,863.22,852.74,857.59,30870000,857.59
-1979-05-02,855.51,860.27,849.97,855.51,30510000,855.51
-1979-05-01,854.90,861.40,850.83,855.51,31040000,855.51
-1979-04-30,856.64,859.49,847.28,854.90,26440000,854.90
-1979-04-27,860.79,860.79,852.39,856.64,29610000,856.64
-1979-04-26,867.46,869.02,858.71,860.97,32400000,860.97
-1979-04-25,866.86,872.31,863.22,867.46,31750000,867.46
-1979-04-24,860.10,873.35,858.54,866.86,35540000,866.86
-1979-04-23,856.98,863.31,852.39,860.10,25610000,860.10
-1979-04-20,855.25,861.57,848.93,856.98,28830000,856.98
-1979-04-19,860.27,865.73,852.91,855.25,31150000,855.25
-1979-04-18,857.93,865.90,856.38,860.27,29510000,860.27
-1979-04-17,860.45,865.64,853.95,857.93,29260000,857.93
-1979-04-16,868.42,868.42,856.81,860.45,28050000,860.45
-1979-04-12,871.71,875.78,865.21,870.50,26780000,870.50
-1979-04-11,878.72,884.62,868.68,871.71,32900000,871.71
-1979-04-10,873.70,882.54,869.80,878.72,31900000,878.72
-1979-04-09,875.69,879.07,869.46,873.70,27230000,873.70
-1979-04-06,877.60,884.01,871.88,875.69,34710000,875.69
-1979-04-05,869.80,880.02,866.68,877.60,34520000,877.60
-1979-04-04,868.33,878.38,867.12,869.80,41940000,869.80
-1979-04-03,855.25,870.67,854.21,868.33,33530000,868.33
-1979-04-02,859.93,859.93,849.27,855.25,28990000,855.25
-1979-03-30,866.77,870.58,858.11,862.18,29970000,862.18
-1979-03-29,866.25,873.53,860.19,866.77,28510000,866.77
-1979-03-28,871.36,876.99,863.83,866.25,39920000,866.25
-1979-03-27,854.82,872.49,852.91,871.36,32940000,871.36
-1979-03-26,859.75,860.01,851.52,854.82,23430000,854.82
-1979-03-23,861.31,867.20,855.08,859.75,33570000,859.75
-1979-03-22,857.76,867.46,856.03,861.31,34380000,861.31
-1979-03-21,850.31,859.23,844.68,857.76,31120000,857.76
-1979-03-20,857.59,858.89,847.45,850.31,27180000,850.31
-1979-03-19,852.82,864.95,852.65,857.59,34620000,857.59
-1979-03-16,847.02,856.72,843.21,852.82,31770000,852.82
-1979-03-15,845.37,853.17,841.39,847.02,29370000,847.02
-1979-03-14,846.93,852.56,841.74,845.37,24630000,845.37
-1979-03-13,844.68,855.60,840.78,846.93,31170000,846.93
-1979-03-12,842.86,846.33,833.85,844.68,25740000,844.68
-1979-03-09,844.85,851.44,840.00,842.86,33410000,842.86
-1979-03-08,834.29,846.41,831.69,844.85,32000000,844.85
-1979-03-07,826.58,841.04,825.28,834.29,28930000,834.29
-1979-03-06,827.36,831.34,821.55,826.58,24490000,826.58
-1979-03-05,818.00,832.55,818.00,827.36,25690000,827.36
-1979-03-02,815.84,820.69,811.50,815.75,23130000,815.75
-1979-03-01,808.82,818.17,807.26,815.84,23830000,815.84
-1979-02-28,807.00,811.76,802.23,808.82,25090000,808.82
-1979-02-27,821.12,821.12,803.53,807.00,31470000,807.00
-1979-02-26,823.28,826.40,818.35,821.12,22620000,821.12
-1979-02-23,828.57,828.83,819.99,823.28,22750000,823.28
-1979-02-22,834.55,834.98,825.10,828.57,26290000,828.57
-1979-02-21,834.55,841.56,830.91,834.55,26050000,834.55
-1979-02-20,827.01,836.19,824.15,834.55,22010000,834.55
-1979-02-16,829.09,831.69,823.54,827.01,21110000,827.01
-1979-02-15,829.78,831.25,822.68,829.09,22550000,829.09
-1979-02-14,830.21,836.88,825.71,829.78,27220000,829.78
-1979-02-13,826.14,836.19,826.14,830.21,28470000,830.21
-1979-02-12,822.23,827.62,816.61,824.84,20610000,824.84
-1979-02-09,818.87,826.49,817.05,822.23,24320000,822.23
-1979-02-08,816.01,823.02,812.89,818.87,23360000,818.87
-1979-02-07,822.85,823.46,810.81,816.01,28450000,816.01
-1979-02-06,823.98,828.48,819.21,822.85,23570000,822.85
-1979-02-05,830.65,830.65,819.13,823.98,26490000,823.98
-1979-02-02,840.87,843.38,832.47,834.63,25350000,834.63
-1979-02-01,839.22,843.99,832.55,840.87,27930000,840.87
-1979-01-31,851.78,853.52,835.67,839.22,30330000,839.22
-1979-01-30,855.77,861.83,848.75,851.78,26910000,851.78
-1979-01-29,859.75,862.96,851.61,855.77,24170000,855.77
-1979-01-26,854.64,865.04,853.26,859.75,34230000,859.75
-1979-01-25,846.41,858.11,843.90,854.64,31440000,854.64
-1979-01-24,846.85,856.81,840.61,846.41,31730000,846.41
-1979-01-23,838.53,851.35,835.67,846.85,30130000,846.85
-1979-01-22,837.49,841.74,829.95,838.53,24390000,838.53
-1979-01-19,839.14,846.67,833.94,837.49,26800000,837.49
-1979-01-18,834.20,843.73,829.35,839.14,27260000,839.14
-1979-01-17,835.59,839.05,825.80,834.20,25310000,834.20
-1979-01-16,848.06,848.06,833.25,835.59,30340000,835.59
-1979-01-15,836.28,851.00,831.69,848.67,27520000,848.67
-1979-01-12,830.04,843.38,830.04,836.28,37120000,836.28
-1979-01-11,824.93,829.44,817.31,828.05,24580000,828.05
-1979-01-10,831.43,833.68,821.47,824.93,24990000,824.93
-1979-01-09,828.14,836.80,825.80,831.43,27340000,831.43
-1979-01-08,830.73,832.12,821.38,828.14,21440000,828.14
-1979-01-05,826.14,837.23,823.89,830.73,28890000,830.73
-1979-01-04,817.39,832.55,815.92,826.14,33290000,826.14
-1979-01-03,811.42,822.68,811.42,817.39,29180000,817.39
-1979-01-02,805.01,813.06,798.51,811.42,18340000,811.42
-1978-12-29,805.96,812.20,800.50,805.01,30030000,805.01
-1978-12-28,808.56,813.06,802.75,805.96,25440000,805.96
-1978-12-27,815.32,815.32,804.57,808.56,23580000,808.56
-1978-12-26,808.47,819.13,804.66,816.01,21470000,816.01
-1978-12-22,795.05,811.16,795.05,808.47,23790000,808.47
-1978-12-21,793.66,801.63,790.11,794.79,28670000,794.79
-1978-12-20,789.85,797.90,785.69,793.66,26520000,793.66
-1978-12-19,787.51,795.30,782.92,789.85,25960000,789.85
-1978-12-18,794.87,794.87,781.01,787.51,32900000,787.51
-1978-12-15,812.54,813.76,801.80,805.35,23620000,805.35
-1978-12-14,809.86,814.97,804.40,812.54,20840000,812.54
-1978-12-13,814.97,819.21,806.48,809.86,22480000,809.86
-1978-12-12,817.65,821.90,811.50,814.97,22210000,814.97
-1978-12-11,811.85,821.29,808.73,817.65,21000000,817.65
-1978-12-08,816.09,819.56,807.95,811.85,18560000,811.85
-1978-12-07,821.90,826.49,812.98,816.09,21170000,816.09
-1978-12-06,820.51,829.87,815.23,821.90,29680000,821.90
-1978-12-05,806.83,821.81,805.01,820.51,25670000,820.51
-1978-12-04,811.50,814.80,802.23,806.83,22020000,806.83
-1978-12-01,801.98,815.06,801.98,811.50,26830000,811.50
-1978-11-30,790.11,800.94,786.64,799.03,19900000,799.03
-1978-11-29,801.89,801.89,788.63,790.11,21160000,790.11
-1978-11-28,813.84,817.91,802.67,804.14,22740000,804.14
-1978-11-27,810.12,817.22,806.31,813.84,19790000,813.84
-1978-11-24,807.00,812.98,803.36,810.12,14590000,810.12
-1978-11-22,804.05,810.98,799.46,807.00,20010000,807.00
-1978-11-21,805.61,810.55,799.98,804.05,20750000,804.05
-1978-11-20,797.73,811.24,797.47,805.61,24440000,805.61
-1978-11-17,794.18,804.49,792.19,797.73,25170000,797.73
-1978-11-16,785.60,797.38,785.26,794.18,21340000,794.18
-1978-11-15,785.26,798.08,782.66,785.60,26280000,785.60
-1978-11-14,792.01,795.22,779.11,785.26,30610000,785.26
-1978-11-13,806.83,806.83,790.71,792.01,20960000,792.01
-1978-11-10,803.97,812.02,799.55,807.09,16750000,807.09
-1978-11-09,807.61,815.75,798.86,803.97,23320000,803.97
-1978-11-08,800.07,809.60,790.97,807.61,23560000,807.61
-1978-11-07,808.13,808.13,793.92,800.07,25320000,800.07
-1978-11-06,823.11,825.88,812.63,814.88,20450000,814.88
-1978-11-03,816.96,829.00,809.51,823.11,25990000,823.11
-1978-11-02,827.79,831.34,811.07,816.96,41030000,816.96
-1978-11-01,805.53,831.69,805.53,827.79,50450000,827.79
-1978-10-31,811.85,818.26,789.67,792.45,42720000,792.45
-1978-10-30,806.05,814.36,782.05,811.85,59480000,811.85
-1978-10-27,821.12,825.54,804.49,806.05,40360000,806.05
-1978-10-26,830.21,835.41,816.61,821.12,31990000,821.12
-1978-10-25,832.55,842.86,822.85,830.21,31380000,830.21
-1978-10-24,839.66,846.93,830.35,832.55,28880000,832.55
-1978-10-23,838.01,845.89,825.80,839.66,36090000,839.66
-1978-10-20,846.41,847.37,830.47,838.01,43670000,838.01
-1978-10-19,859.67,862.87,844.42,846.41,31810000,846.41
-1978-10-18,866.34,871.19,853.60,859.67,32940000,859.67
-1978-10-17,872.49,872.49,858.11,866.34,37870000,866.34
-1978-10-16,894.84,894.84,874.39,875.17,24600000,875.17
-1978-10-13,896.74,902.20,891.55,897.09,21920000,897.09
-1978-10-12,901.42,909.39,892.84,896.74,30170000,896.74
-1978-10-11,891.63,902.29,885.14,901.42,21740000,901.42
-1978-10-10,893.19,899.26,887.56,891.63,25470000,891.63
-1978-10-09,880.02,894.92,877.86,893.19,19720000,893.19
-1978-10-06,876.47,885.14,873.79,880.02,27380000,880.02
-1978-10-05,873.96,883.32,869.63,876.47,27820000,876.47
-1978-10-04,867.90,875.52,860.10,873.96,25090000,873.96
-1978-10-03,871.36,876.30,865.56,867.90,22540000,867.90
-1978-10-02,865.82,874.48,863.13,871.36,18700000,871.36
-1978-09-29,861.31,870.84,858.89,865.82,23610000,865.82
-1978-09-28,860.19,864.43,854.90,861.31,24390000,861.31
-1978-09-27,868.16,875.43,858.45,860.19,28370000,860.19
-1978-09-26,862.35,872.66,859.67,868.16,26330000,868.16
-1978-09-25,862.44,865.47,856.20,862.35,20970000,862.35
-1978-09-22,861.14,868.16,855.42,862.44,27960000,862.44
-1978-09-21,857.16,865.38,850.92,861.14,33640000,861.14
-1978-09-20,861.57,870.50,853.95,857.16,35080000,857.16
-1978-09-19,870.15,873.87,859.06,861.57,31660000,861.57
-1978-09-18,878.55,884.88,866.86,870.15,35860000,870.15
-1978-09-15,886.17,886.17,874.05,878.55,37290000,878.55
-1978-09-14,899.60,900.21,885.48,887.04,37400000,887.04
-1978-09-13,906.44,913.29,896.83,899.60,43340000,899.60
-1978-09-12,907.74,910.26,899.43,906.44,34400000,906.44
-1978-09-11,907.74,917.24,904.80,907.74,39670000,907.74
-1978-09-08,895.62,909.91,895.62,907.74,42170000,907.74
-1978-09-07,895.79,903.15,889.55,893.71,40310000,893.71
-1978-09-06,887.91,902.03,887.91,895.79,42600000,895.79
-1978-09-05,879.33,889.73,876.91,886.61,32170000,886.61
-1978-09-01,876.82,884.88,871.36,879.33,35070000,879.33
-1978-08-31,880.72,883.66,871.36,876.82,33850000,876.82
-1978-08-30,880.20,888.17,873.61,880.72,37750000,880.72
-1978-08-29,884.88,887.13,875.95,880.20,33780000,880.20
-1978-08-28,895.53,895.70,882.62,884.88,31760000,884.88
-1978-08-25,897.35,902.55,890.59,895.53,36190000,895.53
-1978-08-24,897.00,904.80,890.94,897.35,38500000,897.35
-1978-08-23,892.41,904.28,890.94,897.00,39630000,897.00
-1978-08-22,888.95,896.05,881.15,892.41,29620000,892.41
-1978-08-21,896.83,900.38,884.88,888.95,29440000,888.95
-1978-08-18,900.12,909.22,892.93,896.83,34650000,896.83
-1978-08-17,894.66,911.21,894.66,900.12,45270000,900.12
-1978-08-16,887.13,898.30,884.88,894.58,36120000,894.58
-1978-08-15,888.17,891.37,879.16,887.13,29760000,887.13
-1978-08-14,890.85,899.17,884.27,888.17,32320000,888.17
-1978-08-11,885.48,895.70,880.20,890.85,33550000,890.85
-1978-08-10,891.63,898.39,880.20,885.48,39760000,885.48
-1978-08-09,889.21,903.67,886.61,891.63,48800000,891.63
-1978-08-08,885.05,891.55,877.51,889.21,34290000,889.21
-1978-08-07,888.43,896.22,881.41,885.05,33350000,885.05
-1978-08-04,886.87,895.79,879.33,888.43,37910000,888.43
-1978-08-03,883.49,905.15,881.84,886.87,66370000,886.87
-1978-08-02,860.71,884.88,857.50,883.49,47470000,883.49
-1978-08-01,862.27,868.16,855.34,860.71,34810000,860.71
-1978-07-31,856.29,866.34,852.56,862.27,33990000,862.27
-1978-07-28,850.57,860.27,844.77,856.29,33390000,856.29
-1978-07-27,847.19,857.16,843.04,850.57,33970000,850.57
-1978-07-26,839.57,852.47,839.05,847.19,36830000,847.19
-1978-07-25,831.60,841.65,827.18,839.57,25400000,839.57
-1978-07-24,833.42,835.07,823.46,831.60,23280000,831.60
-1978-07-21,838.62,842.00,828.83,833.42,26060000,833.42
-1978-07-20,840.70,849.45,835.24,838.62,33350000,838.62
-1978-07-19,829.00,842.52,828.05,840.70,30850000,840.70
-1978-07-18,839.05,840.00,826.75,829.00,22860000,829.00
-1978-07-17,839.83,848.58,835.59,839.05,29180000,839.05
-1978-07-14,824.76,841.22,823.02,839.83,28370000,839.83
-1978-07-13,824.93,827.88,818.09,824.76,23620000,824.76
-1978-07-12,821.29,829.18,819.39,824.93,26640000,824.93
-1978-07-11,816.79,826.32,814.62,821.29,27470000,821.29
-1978-07-10,812.46,819.56,808.13,816.79,22470000,816.79
-1978-07-07,807.17,816.18,805.79,812.46,23480000,812.46
-1978-07-06,805.79,810.72,800.94,807.17,24990000,807.17
-1978-07-05,812.62,812.62,802.15,805.79,23730000,805.79
-1978-07-03,818.95,818.95,809.71,812.89,11560000,812.89
-1978-06-30,821.64,823.20,815.06,818.95,18100000,818.95
-1978-06-29,819.91,827.88,816.79,821.64,21660000,821.64
-1978-06-28,817.31,824.24,811.59,819.91,23260000,819.91
-1978-06-27,812.28,820.95,807.95,817.31,29280000,817.31
-1978-06-26,823.02,824.15,810.03,812.28,29250000,812.28
-1978-06-23,827.70,832.55,821.12,823.02,28530000,823.02
-1978-06-22,824.93,831.77,822.16,827.70,27160000,827.70
-1978-06-21,830.04,830.82,820.34,824.93,29100000,824.93
-1978-06-20,838.62,840.44,828.40,830.04,27920000,830.04
-1978-06-19,836.97,841.04,829.87,838.62,25500000,838.62
-1978-06-16,844.25,846.85,834.98,836.97,27690000,836.97
-1978-06-15,854.21,854.21,842.17,844.25,29280000,844.25
-1978-06-14,856.98,865.82,850.57,854.56,37290000,854.56
-1978-06-13,856.72,859.75,848.15,856.98,30760000,856.98
-1978-06-12,859.23,866.94,853.34,856.72,24440000,856.72
-1978-06-09,862.09,867.20,854.30,859.23,32470000,859.23
-1978-06-08,861.92,871.88,856.46,862.09,39380000,862.09
-1978-06-07,866.51,868.94,855.51,861.92,33060000,861.92
-1978-06-06,863.83,879.33,863.22,866.51,51970000,866.51
-1978-06-05,848.41,865.47,848.41,863.83,39580000,863.83
-1978-06-02,840.70,849.79,838.62,847.54,31860000,847.54
-1978-06-01,840.61,845.81,835.24,840.70,28750000,840.70
-1978-05-31,834.20,846.85,832.99,840.61,29070000,840.61
-1978-05-30,831.69,837.32,826.40,834.20,21040000,834.20
-1978-05-26,835.41,836.37,827.79,831.69,21410000,831.69
-1978-05-25,837.92,843.04,830.99,835.41,28410000,835.41
-1978-05-24,842.86,842.86,829.87,837.92,31450000,837.92
-1978-05-23,855.42,856.12,842.17,845.29,33230000,845.29
-1978-05-22,846.85,857.76,842.34,855.42,28680000,855.42
-1978-05-19,850.92,855.16,840.87,846.85,34360000,846.85
-1978-05-18,858.37,863.57,848.67,850.92,42270000,850.92
-1978-05-17,854.30,865.64,847.89,858.37,45490000,858.37
-1978-05-16,848.15,861.05,848.15,854.30,48170000,854.30
-1978-05-15,840.70,848.84,834.72,846.76,33890000,846.76
-1978-05-12,834.20,847.54,834.11,840.70,46600000,840.70
-1978-05-11,822.16,835.33,821.12,834.20,36630000,834.20
-1978-05-10,822.07,829.61,817.22,822.16,33330000,822.16
-1978-05-09,824.58,829.44,817.65,822.07,30860000,822.07
-1978-05-08,829.09,837.14,822.77,824.58,34680000,824.58
-1978-05-05,824.41,837.32,820.86,829.09,42680000,829.09
-1978-05-04,828.83,829.09,813.84,824.41,37520000,824.41
-1978-05-03,840.18,841.82,826.58,828.83,37560000,828.83
-1978-05-02,844.33,847.54,833.42,840.18,41400000,840.18
-1978-05-01,837.32,849.45,832.81,844.33,37020000,844.33
-1978-04-28,826.92,838.79,822.16,837.32,32850000,837.32
-1978-04-27,836.37,836.37,822.77,826.92,35470000,826.92
-1978-04-26,833.59,846.15,828.48,836.97,44430000,836.97
-1978-04-25,828.83,845.81,828.83,833.59,55800000,833.59
-1978-04-24,812.80,827.36,810.38,826.06,34510000,826.06
-1978-04-21,814.54,818.95,807.17,812.80,31540000,812.80
-1978-04-20,810.38,825.10,810.38,814.54,43230000,814.54
-1978-04-19,803.27,812.72,797.56,808.04,35060000,808.04
-1978-04-18,810.12,814.97,798.15,803.27,38950000,803.27
-1978-04-17,803.45,824.24,803.45,810.12,63510000,810.12
-1978-04-14,780.41,797.73,780.41,795.13,52280000,795.13
-1978-04-13,766.29,777.29,764.47,775.21,31580000,775.21
-1978-04-12,770.18,772.96,764.30,766.29,26210000,766.29
-1978-04-11,773.65,775.38,766.20,770.18,24300000,770.18
-1978-04-10,769.58,776.16,766.11,773.65,25740000,773.65
-1978-04-07,763.95,772.00,760.83,769.58,25160000,769.58
-1978-04-06,763.08,768.10,759.62,763.95,27360000,763.95
-1978-04-05,755.37,764.47,753.21,763.08,27260000,763.08
-1978-04-04,751.04,757.19,748.79,755.37,20130000,755.37
-1978-04-03,756.67,756.67,747.05,751.04,20230000,751.04
-1978-03-31,759.62,761.78,753.12,757.36,20130000,757.36
-1978-03-30,761.78,764.03,756.15,759.62,20460000,759.62
-1978-03-29,758.84,765.42,755.80,761.78,25450000,761.78
-1978-03-28,753.21,760.22,749.91,758.84,21600000,758.84
-1978-03-27,756.50,758.14,750.52,753.21,18870000,753.21
-1978-03-23,757.54,760.91,752.69,756.50,21290000,756.50
-1978-03-22,762.82,764.38,754.50,757.54,21950000,757.54
-1978-03-21,773.82,774.69,760.91,762.82,24410000,762.82
-1978-03-20,768.88,777.81,768.88,773.82,28360000,773.82
-1978-03-17,762.82,770.79,760.31,768.71,28470000,768.71
-1978-03-16,758.58,764.03,754.42,762.82,25400000,762.82
-1978-03-15,762.56,763.60,754.24,758.58,23340000,758.58
-1978-03-14,759.96,764.99,752.86,762.56,24300000,762.56
-1978-03-13,758.58,766.63,756.41,759.96,24070000,759.96
-1978-03-10,750.09,760.91,750.09,758.58,27090000,758.58
-1978-03-09,750.87,755.46,746.45,750.00,21820000,750.00
-1978-03-08,746.79,752.86,743.76,750.87,22030000,750.87
-1978-03-07,742.72,748.70,739.78,746.79,19900000,746.79
-1978-03-06,746.97,746.97,740.12,742.72,17230000,742.72
-1978-03-03,746.45,751.30,742.72,747.31,20120000,747.31
-1978-03-02,743.33,749.13,739.78,746.45,20280000,746.45
-1978-03-01,742.12,747.92,736.75,743.33,21010000,743.33
-1978-02-28,748.35,748.61,739.17,742.12,19750000,742.12
-1978-02-27,756.24,761.26,746.62,748.35,19990000,748.35
-1978-02-24,750.95,760.40,750.78,756.24,22510000,756.24
-1978-02-23,749.05,752.51,742.98,750.95,18720000,750.95
-1978-02-22,749.31,753.55,746.71,749.05,18450000,749.05
-1978-02-21,752.69,753.90,745.24,749.31,21890000,749.31
-1978-02-17,753.29,759.96,748.18,752.69,18500000,752.69
-1978-02-16,760.14,760.14,749.65,753.29,21570000,753.29
-1978-02-15,765.16,767.07,758.32,761.69,20170000,761.69
-1978-02-14,773.91,773.91,762.65,765.16,20470000,765.16
-1978-02-13,775.99,777.37,770.44,774.43,16810000,774.43
-1978-02-10,777.81,781.01,772.61,775.99,19480000,775.99
-1978-02-09,782.66,783.00,774.43,777.81,17940000,777.81
-1978-02-08,778.85,787.42,776.68,782.66,21300000,782.66
-1978-02-07,768.62,780.23,768.62,778.85,14730000,778.85
-1978-02-06,770.96,772.96,764.21,768.62,11630000,768.62
-1978-02-03,775.38,776.59,766.98,770.96,19400000,770.96
-1978-02-02,774.34,781.88,770.88,775.38,23050000,775.38
-1978-02-01,769.92,777.89,764.81,774.34,22240000,774.34
-1978-01-31,772.44,778.59,762.91,769.92,19870000,769.92
-1978-01-30,764.12,774.95,761.09,772.44,17400000,772.44
-1978-01-27,763.34,768.54,759.44,764.12,17600000,764.12
-1978-01-26,772.44,775.81,761.00,763.34,19600000,763.34
-1978-01-25,771.57,777.72,768.02,772.44,18690000,772.44
-1978-01-24,770.70,776.42,765.68,771.57,18690000,771.57
-1978-01-23,776.94,777.98,766.55,770.70,19380000,770.70
-1978-01-20,778.67,780.15,772.52,776.94,7580000,776.94
-1978-01-19,786.30,790.02,777.03,778.67,21500000,778.67
-1978-01-18,779.02,788.20,776.25,786.30,21390000,786.30
-1978-01-17,771.74,781.26,770.62,779.02,19360000,779.02
-1978-01-16,775.73,777.81,767.41,771.74,18760000,771.74
-1978-01-13,778.15,784.04,773.65,775.73,18010000,775.73
-1978-01-12,775.90,785.00,772.78,778.15,22730000,778.15
-1978-01-11,781.53,785.95,771.74,775.90,22880000,775.90
-1978-01-10,784.56,790.89,777.55,781.53,25180000,781.53
-1978-01-09,790.89,790.89,778.41,784.56,27990000,784.56
-1978-01-06,803.36,803.36,788.29,793.49,26150000,793.49
-1978-01-05,813.58,822.77,802.58,804.92,23570000,804.92
-1978-01-04,817.48,817.48,804.92,813.58,24090000,813.58
-1978-01-03,830.47,830.47,815.06,817.74,17720000,817.74
-1977-12-30,830.39,835.15,825.80,831.17,23560000,831.17
-1977-12-29,829.70,834.37,823.63,830.39,23610000,830.39
-1977-12-28,829.70,833.33,822.77,829.70,19630000,829.70
-1977-12-27,829.87,833.77,823.46,829.70,16750000,829.70
-1977-12-23,822.16,832.64,822.16,829.87,20080000,829.87
-1977-12-22,815.32,825.62,815.32,821.81,28100000,821.81
-1977-12-21,806.22,817.83,805.35,813.93,24510000,813.93
-1977-12-20,807.95,810.46,800.42,806.22,23250000,806.22
-1977-12-19,815.32,817.31,806.13,807.95,21150000,807.95
-1977-12-16,817.91,821.55,812.37,815.32,20270000,815.32
-1977-12-15,822.68,825.10,815.23,817.91,21610000,817.91
-1977-12-14,815.23,823.63,811.42,822.68,22110000,822.68
-1977-12-13,815.75,818.61,809.94,815.23,19190000,815.23
-1977-12-12,815.23,820.51,811.76,815.75,18180000,815.75
-1977-12-09,806.91,819.04,806.65,815.23,19210000,815.23
-1977-12-08,807.43,815.49,804.14,806.91,20400000,806.91
-1977-12-07,806.91,812.54,802.06,807.43,21050000,807.43
-1977-12-06,819.91,819.91,804.23,806.91,23770000,806.91
-1977-12-05,823.98,826.84,818.78,821.03,19160000,821.03
-1977-12-02,825.71,830.56,819.30,823.98,21160000,823.98
-1977-12-01,829.70,832.81,823.02,825.71,24220000,825.71
-1977-11-30,827.27,831.77,821.29,829.70,22670000,829.70
-1977-11-29,839.48,839.48,824.24,827.27,22950000,827.27
-1977-11-28,844.42,846.67,836.71,839.57,21570000,839.57
-1977-11-25,843.30,847.63,838.70,844.42,17910000,844.42
-1977-11-23,842.52,847.11,836.28,843.30,29150000,843.30
-1977-11-22,836.11,846.15,834.63,842.52,28600000,842.52
-1977-11-21,835.76,840.18,829.18,836.11,20110000,836.11
-1977-11-18,831.86,840.26,829.18,835.76,23930000,835.76
-1977-11-17,837.06,838.88,827.53,831.86,25110000,831.86
-1977-11-16,842.78,846.24,834.03,837.06,24950000,837.06
-1977-11-15,838.36,846.85,831.86,842.78,27740000,842.78
-1977-11-14,845.89,849.01,834.46,838.36,23220000,838.36
-1977-11-11,837.66,850.05,837.66,845.89,35260000,845.89
-1977-11-10,818.43,836.11,814.10,832.55,31980000,832.55
-1977-11-09,816.27,821.29,810.20,818.43,21330000,818.43
-1977-11-08,816.44,821.29,810.81,816.27,19210000,816.27
-1977-11-07,809.94,820.17,808.56,816.44,21270000,816.44
-1977-11-04,802.67,814.02,802.41,809.94,21700000,809.94
-1977-11-03,800.85,805.87,794.53,802.67,18090000,802.67
-1977-11-02,806.91,809.51,797.73,800.85,20760000,800.85
-1977-11-01,816.01,816.01,804.40,806.91,17170000,806.91
-1977-10-31,822.68,824.93,813.93,818.35,17070000,818.35
-1977-10-28,818.61,826.49,814.54,822.68,18050000,822.68
-1977-10-27,813.41,825.71,809.42,818.61,21920000,818.61
-1977-10-26,801.54,816.01,795.56,813.41,24860000,813.41
-1977-10-25,802.32,805.35,792.79,801.54,23590000,801.54
-1977-10-24,808.30,810.90,800.85,802.32,19210000,802.32
-1977-10-21,814.80,815.75,804.57,808.30,20230000,808.30
-1977-10-20,812.20,819.65,804.66,814.80,20520000,814.80
-1977-10-19,820.51,823.20,809.08,812.20,22030000,812.20
-1977-10-18,820.34,826.84,815.84,820.51,20130000,820.51
-1977-10-17,821.64,824.93,813.76,820.34,17340000,820.34
-1977-10-14,818.17,826.66,814.02,821.64,20410000,821.64
-1977-10-13,823.98,824.67,811.42,818.17,23870000,818.17
-1977-10-12,830.65,830.65,818.60,823.98,22440000,823.98
-1977-10-11,840.26,841.39,830.47,832.29,17870000,832.29
-1977-10-10,840.35,844.33,834.46,840.26,10580000,840.26
-1977-10-07,842.08,845.98,836.11,840.35,16250000,840.35
-1977-10-06,837.32,845.20,834.98,842.08,18490000,842.08
-1977-10-05,842.00,843.73,832.38,837.32,18300000,837.32
-1977-10-04,851.96,855.57,839.57,842.00,20850000,842.00
-1977-10-03,847.11,853.60,842.08,851.96,19460000,851.96
-1977-09-30,840.09,848.84,839.14,847.11,21170000,847.11
-1977-09-29,834.72,843.56,832.55,840.09,21160000,840.09
-1977-09-28,835.85,841.56,830.30,834.72,17960000,834.72
-1977-09-27,841.65,845.55,831.95,835.85,19080000,835.85
-1977-09-26,839.14,844.16,831.51,841.65,18230000,841.65
-1977-09-23,839.41,844.77,834.81,839.14,18760000,839.14
-1977-09-22,840.96,844.25,833.16,839.41,16660000,839.41
-1977-09-21,851.78,856.29,838.79,840.96,22200000,840.96
-1977-09-20,851.52,855.16,846.67,851.78,19030000,851.78
-1977-09-19,856.81,857.42,848.23,851.52,16890000,851.52
-1977-09-16,860.79,865.38,853.52,856.81,18340000,856.81
-1977-09-15,858.71,866.16,855.51,860.79,18230000,860.79
-1977-09-14,854.56,861.49,850.49,858.71,17330000,858.71
-1977-09-13,854.38,859.58,848.49,854.56,14900000,854.56
-1977-09-12,857.04,860.71,847.71,854.38,18700000,854.38
-1977-09-09,865.47,865.47,853.17,857.04,18100000,857.04
-1977-09-08,876.39,879.76,866.25,869.16,18290000,869.16
-1977-09-07,873.27,878.98,869.80,876.39,18070000,876.39
-1977-09-06,872.31,877.43,866.77,873.27,16130000,873.27
-1977-09-02,864.86,873.79,862.44,872.31,15620000,872.31
-1977-09-01,861.49,869.80,858.71,864.86,18820000,864.86
-1977-08-31,858.89,862.87,850.92,861.49,19080000,861.49
-1977-08-30,864.09,867.55,855.51,858.89,18220000,858.89
-1977-08-29,855.77,866.77,855.77,864.09,15280000,864.09
-1977-08-26,854.12,857.76,844.42,855.42,18480000,855.42
-1977-08-25,862.87,863.13,851.18,854.12,19400000,854.12
-1977-08-24,865.56,869.63,858.80,862.87,18170000,862.87
-1977-08-23,867.29,875.61,862.70,865.56,20290000,865.56
-1977-08-22,863.48,871.45,856.55,867.29,17870000,867.29
-1977-08-19,864.26,870.06,856.64,863.48,20800000,863.48
-1977-08-18,864.69,873.96,860.36,864.26,21040000,864.26
-1977-08-17,869.28,872.75,859.58,864.69,20920000,864.69
-1977-08-16,874.13,877.17,865.99,869.28,19340000,869.28
-1977-08-15,871.10,877.60,864.09,874.13,15750000,874.13
-1977-08-12,877.43,879.24,866.86,871.10,16870000,871.10
-1977-08-11,887.04,891.46,876.04,877.43,21740000,877.43
-1977-08-10,879.42,887.65,875.69,887.04,18280000,887.04
-1977-08-09,879.42,884.53,873.70,879.42,19900000,879.42
-1977-08-08,888.17,888.17,877.43,879.42,15870000,879.42
-1977-08-05,888.17,894.84,884.36,888.69,19940000,888.69
-1977-08-04,886.00,891.89,880.11,888.17,18870000,888.17
-1977-08-03,887.39,888.95,877.25,886.00,21710000,886.00
-1977-08-02,891.81,893.97,884.27,887.39,17910000,887.39
-1977-08-01,890.07,900.03,886.17,891.81,17920000,891.81
-1977-07-29,889.99,892.24,878.81,890.07,20350000,890.07
-1977-07-28,888.43,893.71,879.76,889.99,26340000,889.99
-1977-07-27,907.31,907.31,884.27,888.43,26440000,888.43
-1977-07-26,914.24,914.33,902.98,908.18,21390000,908.18
-1977-07-25,923.42,923.94,911.73,914.24,20430000,914.24
-1977-07-22,921.78,927.84,916.75,923.42,23110000,923.42
-1977-07-21,920.48,926.20,914.67,921.78,26880000,921.78
-1977-07-20,919.27,927.75,915.45,920.48,29380000,920.48
-1977-07-19,910.60,921.86,908.26,919.27,31930000,919.27
-1977-07-18,905.95,915.02,901.25,910.60,29890000,910.60
-1977-07-15,902.99,910.62,899.68,905.95,29120000,905.95
-1977-07-13,903.41,906.80,896.29,902.99,23160000,902.99
-1977-07-12,905.53,906.26,898.58,903.41,22470000,903.41
-1977-07-11,907.99,910.96,900.27,905.53,19790000,905.53
-1977-07-08,909.51,914.94,904.17,907.99,23820000,907.99
-1977-07-07,907.73,913.42,903.49,909.51,21740000,909.51
-1977-07-06,913.59,915.37,904.94,907.73,21230000,907.73
-1977-07-05,912.65,919.01,907.90,913.59,16850000,913.59
-1977-07-01,916.30,918.25,907.48,912.65,18160000,912.65
-1977-06-30,913.33,920.88,909.09,916.30,19410000,916.30
-1977-06-29,915.62,917.73,906.63,913.33,19000000,913.33
-1977-06-28,924.10,926.98,914.01,915.62,22670000,915.62
-1977-06-27,929.70,931.73,920.12,924.10,19870000,924.10
-1977-06-24,925.37,933.77,924.02,929.70,27490000,929.70
-1977-06-23,926.31,930.46,922.45,925.37,24330000,925.37
-1977-06-22,928.60,930.89,921.13,926.31,25070000,926.31
-1977-06-21,924.27,934.36,923.51,928.60,29730000,928.60
-1977-06-20,920.45,926.98,916.89,924.27,22950000,924.27
-1977-06-17,920.45,924.78,915.79,920.45,21960000,920.45
-1977-06-16,917.57,924.53,910.53,920.45,24310000,920.45
-1977-06-15,922.57,925.03,914.43,917.57,22640000,917.57
-1977-06-14,912.40,924.27,912.14,922.57,25390000,922.57
-1977-06-13,910.79,917.15,906.21,912.40,20250000,912.40
-1977-06-10,909.85,915.20,904.77,910.79,20630000,910.79
-1977-06-09,912.99,914.69,904.34,909.85,19940000,909.85
-1977-06-08,908.67,918.25,906.21,912.99,22200000,912.99
-1977-06-07,903.04,910.79,896.79,908.67,21110000,908.67
-1977-06-06,912.23,916.13,901.03,903.04,18930000,903.04
-1977-06-03,903.15,915.88,901.03,912.23,20330000,912.23
-1977-06-02,906.55,912.91,899.42,903.15,18620000,903.15
-1977-06-01,898.66,909.35,896.46,906.55,18320000,906.55
-1977-05-31,898.83,904.77,892.55,898.66,17800000,898.66
-1977-05-27,908.07,909.60,896.29,898.83,15730000,898.83
-1977-05-26,903.24,910.45,899.17,908.07,18620000,908.07
-1977-05-25,912.40,916.72,901.46,903.24,20710000,903.24
-1977-05-24,917.06,917.83,906.55,912.40,20050000,912.40
-1977-05-23,928.17,928.17,915.03,917.06,18290000,917.06
-1977-05-20,936.48,937.16,925.71,930.46,18950000,930.46
-1977-05-19,941.91,945.13,933.34,936.48,21280000,936.48
-1977-05-18,936.48,947.34,935.46,941.91,27800000,941.91
-1977-05-17,932.50,939.45,925.20,936.48,22290000,936.48
-1977-05-16,928.34,938.43,926.73,932.50,21170000,932.50
-1977-05-13,925.54,932.58,923.17,928.34,19780000,928.34
-1977-05-12,926.90,930.04,917.74,925.54,21980000,925.54
-1977-05-11,936.14,937.84,923.85,926.90,18980000,926.90
-1977-05-10,933.09,941.40,930.55,936.14,21090000,936.14
-1977-05-09,936.74,938.52,928.77,933.09,15230000,933.09
-1977-05-06,943.27,943.27,932.24,936.74,19370000,936.74
-1977-05-05,940.72,949.46,934.53,943.44,23450000,943.44
-1977-05-04,934.19,944.96,929.44,940.72,23330000,940.72
-1977-05-03,931.22,939.70,929.27,934.19,21950000,934.19
-1977-05-02,926.90,934.02,923.00,931.22,17970000,931.22
-1977-04-29,927.32,931.99,922.32,926.90,18330000,926.90
-1977-04-28,923.76,931.14,919.78,927.32,18370000,927.32
-1977-04-27,915.62,928.34,913.08,923.76,20590000,923.76
-1977-04-26,914.60,922.74,910.36,915.62,20040000,915.62
-1977-04-25,924.02,924.02,910.45,914.60,20440000,914.60
-1977-04-22,935.13,935.13,923.59,927.07,20700000,927.07
-1977-04-21,942.59,949.37,933.43,935.80,22740000,935.80
-1977-04-20,938.77,948.69,933.43,942.59,25090000,942.59
-1977-04-19,942.76,944.28,934.79,938.77,19510000,938.77
-1977-04-18,947.76,951.32,939.28,942.76,17830000,942.76
-1977-04-15,947.00,953.10,941.74,947.76,20230000,947.76
-1977-04-14,943.69,956.07,943.69,947.00,30490000,947.00
-1977-04-13,937.16,942.76,927.49,938.18,21800000,938.18
-1977-04-12,924.69,940.98,924.69,937.16,23760000,937.16
-1977-04-11,918.88,928.85,916.47,924.10,17650000,924.10
-1977-04-07,914.73,921.21,910.57,918.88,17260000,918.88
-1977-04-06,916.14,922.12,910.07,914.73,16600000,914.73
-1977-04-05,915.56,920.88,909.74,916.14,18330000,916.14
-1977-04-04,927.36,929.36,913.48,915.56,16250000,915.56
-1977-04-01,919.55,930.27,919.55,927.36,17050000,927.36
-1977-03-31,921.21,926.86,914.15,919.13,16510000,919.13
-1977-03-30,932.01,935.84,917.64,921.21,18810000,921.21
-1977-03-29,926.11,936.67,925.78,932.01,17030000,932.01
-1977-03-28,928.86,931.27,920.71,926.11,16710000,926.11
-1977-03-25,935.67,937.50,925.12,928.86,16550000,928.86
-1977-03-24,942.32,944.48,931.93,935.67,19650000,935.67
-1977-03-23,950.96,954.37,940.16,942.32,19360000,942.32
-1977-03-22,953.54,955.95,944.65,950.96,18660000,950.96
-1977-03-21,961.02,961.44,949.47,953.54,18040000,953.54
-1977-03-18,964.84,967.50,956.95,961.02,19840000,961.02
-1977-03-17,968.00,970.08,958.78,964.84,20700000,964.84
-1977-03-16,965.01,971.58,961.44,968.00,22140000,968.00
-1977-03-15,958.36,970.33,958.19,965.01,23940000,965.01
-1977-03-14,947.72,960.19,944.73,958.36,19290000,958.36
-1977-03-11,946.73,952.96,942.90,947.72,18230000,947.72
-1977-03-10,942.90,948.89,938.00,946.73,18620000,946.73
-1977-03-09,950.96,950.96,938.66,942.90,19680000,942.90
-1977-03-08,955.12,960.36,949.47,952.04,19520000,952.04
-1977-03-07,953.46,958.61,949.22,955.12,17410000,955.12
-1977-03-04,948.64,956.28,947.39,953.46,18950000,953.46
-1977-03-03,942.07,951.88,940.16,948.64,17560000,948.64
-1977-03-02,944.73,949.97,938.50,942.07,18010000,942.07
-1977-03-01,936.42,948.47,936.25,944.73,19480000,944.73
-1977-02-28,933.43,938.50,928.61,936.42,16220000,936.42
-1977-02-25,932.60,938.75,926.20,933.43,17610000,933.43
-1977-02-24,938.25,940.24,927.69,932.60,19730000,932.60
-1977-02-23,939.91,943.82,934.59,938.25,18240000,938.25
-1977-02-22,940.24,946.06,933.84,939.91,17730000,939.91
-1977-02-18,943.73,944.73,935.09,940.24,18040000,940.24
-1977-02-17,948.30,950.71,939.58,943.73,19040000,943.73
-1977-02-16,944.32,957.28,941.24,948.30,23430000,948.30
-1977-02-15,938.33,948.39,937.08,944.32,21620000,944.32
-1977-02-14,931.52,939.91,926.11,938.33,19230000,938.33
-1977-02-11,937.92,940.91,926.03,931.52,20510000,931.52
-1977-02-10,933.84,943.57,930.60,937.92,22340000,937.92
-1977-02-09,942.24,944.98,928.27,933.84,23640000,933.84
-1977-02-08,946.31,952.79,938.66,942.24,24040000,942.24
-1977-02-07,947.89,954.70,941.82,946.31,20700000,946.31
-1977-02-04,947.14,955.70,941.90,947.89,23130000,947.89
-1977-02-03,952.79,954.95,941.99,947.14,23790000,947.14
-1977-02-02,958.36,963.76,949.97,952.79,25700000,952.79
-1977-02-01,954.37,962.02,950.05,958.36,23700000,958.36
-1977-01-31,957.53,958.03,944.90,954.37,22920000,954.37
-1977-01-28,954.54,961.85,949.38,957.53,22700000,957.53
-1977-01-27,958.53,963.93,950.47,954.54,24360000,954.54
-1977-01-26,965.92,968.33,953.13,958.53,27840000,958.53
-1977-01-25,963.60,973.57,959.36,965.92,26340000,965.92
-1977-01-24,962.43,968.83,956.87,963.60,22890000,963.60
-1977-01-21,959.03,967.42,953.87,962.43,23930000,962.43
-1977-01-20,968.67,973.82,954.70,959.03,26520000,959.03
-1977-01-19,962.43,972.16,959.69,968.67,27120000,968.67
-1977-01-18,967.25,970.08,958.53,962.43,24380000,962.43
-1977-01-17,972.16,972.99,961.10,967.25,21060000,967.25
-1977-01-14,976.15,979.22,967.00,972.16,24480000,972.16
-1977-01-13,968.25,979.55,966.51,976.15,24780000,976.15
-1977-01-12,976.23,976.23,962.52,968.25,22670000,968.25
-1977-01-11,986.87,991.11,972.16,976.65,24100000,976.65
-1977-01-10,983.13,990.69,979.31,986.87,20860000,986.87
-1977-01-07,979.89,987.03,975.40,983.13,21720000,983.13
-1977-01-06,978.06,989.03,974.07,979.89,23920000,979.89
-1977-01-05,987.87,990.69,974.07,978.06,25010000,978.06
-1977-01-04,999.75,1001.99,985.70,987.87,22740000,987.87
-1977-01-03,1004.65,1007.81,994.18,999.75,21280000,999.75
-1976-12-31,999.09,1006.32,997.34,1004.65,19170000,1004.65
-1976-12-30,994.93,1005.49,991.69,999.09,23700000,999.09
-1976-12-29,1000.08,1003.49,990.94,994.93,21910000,994.93
-1976-12-28,996.09,1006.82,992.77,1000.08,25790000,1000.08
-1976-12-27,985.62,997.92,982.71,996.09,20130000,996.09
-1976-12-23,984.54,991.61,978.47,985.62,24560000,985.62
-1976-12-22,978.39,993.35,977.73,984.54,26970000,984.54
-1976-12-21,972.41,981.05,966.17,978.39,24390000,978.39
-1976-12-20,979.06,981.96,969.00,972.41,20690000,972.41
-1976-12-17,981.30,990.53,976.23,979.06,23870000,979.06
-1976-12-16,983.79,988.20,973.90,981.30,23920000,981.30
-1976-12-15,980.63,989.11,974.82,983.79,28300000,983.79
-1976-12-14,974.24,983.13,966.92,980.63,25130000,980.63
-1976-12-13,973.15,980.14,967.50,974.24,24830000,974.24
-1976-12-10,970.74,978.31,965.59,973.15,25960000,973.15
-1976-12-09,963.26,976.31,962.35,970.74,31800000,970.74
-1976-12-08,960.69,966.01,953.54,963.26,24560000,963.26
-1976-12-07,961.77,968.67,957.03,960.69,26140000,960.69
-1976-12-06,950.55,966.59,948.72,961.77,24830000,961.77
-1976-12-03,946.64,956.28,943.07,950.55,22640000,950.55
-1976-12-02,949.38,956.62,944.07,946.64,23300000,946.64
-1976-12-01,947.22,954.12,942.24,949.38,21960000,949.38
-1976-11-30,950.05,952.13,941.41,947.22,17030000,947.22
-1976-11-29,956.62,959.86,947.14,950.05,18750000,950.05
-1976-11-26,950.96,959.28,947.97,956.62,15000000,956.62
-1976-11-24,949.30,956.20,941.74,950.96,20420000,950.96
-1976-11-23,955.87,958.94,945.98,949.30,19090000,949.30
-1976-11-22,948.80,959.94,945.81,955.87,20930000,955.87
-1976-11-19,950.13,957.86,942.49,948.80,24550000,948.80
-1976-11-18,938.08,953.46,935.51,950.13,24000000,950.13
-1976-11-17,935.34,943.90,930.44,938.08,19900000,938.08
-1976-11-16,935.42,946.73,931.77,935.34,21020000,935.34
-1976-11-15,927.69,937.25,921.63,935.42,16710000,935.42
-1976-11-12,931.43,933.93,920.21,927.69,15550000,927.69
-1976-11-11,924.04,932.85,917.97,931.43,13230000,931.43
-1976-11-10,930.77,936.92,917.89,924.04,18890000,924.04
-1976-11-09,933.68,939.33,924.45,930.77,19210000,930.77
-1976-11-08,941.41,941.41,928.94,933.68,16520000,933.68
-1976-11-05,960.44,962.93,940.24,943.07,20780000,943.07
-1976-11-04,956.53,967.75,951.30,960.44,21700000,960.44
-1976-11-03,960.44,960.44,944.73,956.53,19350000,956.53
-1976-11-01,964.93,971.99,957.61,966.09,18390000,966.09
-1976-10-29,952.63,966.26,947.47,964.93,17030000,964.93
-1976-10-28,956.12,962.35,948.72,952.63,16920000,952.63
-1976-10-27,948.14,959.77,944.56,956.12,15790000,956.12
-1976-10-26,938.00,951.63,937.17,948.14,15490000,948.14
-1976-10-25,938.75,942.65,932.51,938.00,13310000,938.00
-1976-10-22,944.90,946.56,932.26,938.75,17870000,938.75
-1976-10-21,954.87,960.77,942.74,944.90,17980000,944.90
-1976-10-20,949.97,958.86,944.40,954.87,15860000,954.87
-1976-10-19,946.56,953.87,938.66,949.97,16200000,949.97
-1976-10-18,937.00,950.13,936.59,946.56,15710000,946.56
-1976-10-15,935.92,942.74,928.27,937.00,16210000,937.00
-1976-10-14,947.56,947.56,931.02,935.92,18610000,935.92
-1976-10-13,932.35,950.38,932.01,948.30,21690000,948.30
-1976-10-12,940.82,946.31,928.27,932.35,18210000,932.35
-1976-10-11,948.88,948.88,934.26,940.82,14620000,940.82
-1976-10-08,965.09,969.25,949.72,952.38,16740000,952.38
-1976-10-07,959.69,968.50,951.71,965.09,19830000,965.09
-1976-10-06,966.76,968.33,949.88,959.69,20870000,959.69
-1976-10-05,977.98,979.97,960.69,966.76,19200000,966.76
-1976-10-04,979.89,983.21,971.83,977.98,12630000,977.98
-1976-10-01,990.19,995.60,974.40,979.89,20620000,979.89
-1976-09-30,991.19,995.84,983.79,990.19,14700000,990.19
-1976-09-29,994.93,1001.25,985.54,991.19,18090000,991.19
-1976-09-28,1013.13,1014.38,992.11,994.93,20440000,994.93
-1976-09-27,1009.31,1016.54,1004.40,1013.13,17430000,1013.13
-1976-09-24,1010.80,1014.13,1001.75,1009.31,17400000,1009.31
-1976-09-23,1014.05,1019.78,1005.32,1010.80,24210000,1010.80
-1976-09-22,1014.79,1026.26,1009.56,1014.05,32970000,1014.05
-1976-09-21,994.51,1016.54,993.60,1014.79,30300000,1014.79
-1976-09-20,995.10,1002.74,990.69,994.51,21730000,994.51
-1976-09-17,987.95,1000.50,986.62,995.10,28270000,995.10
-1976-09-16,979.31,989.44,974.82,987.95,19620000,987.95
-1976-09-15,978.64,983.96,971.24,979.31,17570000,979.31
-1976-09-14,983.29,983.96,973.57,978.64,15550000,978.64
-1976-09-13,988.36,994.02,980.30,983.29,16100000,983.29
-1976-09-10,986.87,991.86,981.05,988.36,16930000,988.36
-1976-09-09,992.94,993.43,983.05,986.87,16540000,986.87
-1976-09-08,996.59,1001.41,987.87,992.94,19750000,992.94
-1976-09-07,989.11,998.67,985.12,996.59,16310000,996.59
-1976-09-03,984.79,991.19,979.22,989.11,13280000,989.11
-1976-09-02,985.95,993.10,980.14,984.79,18920000,984.79
-1976-09-01,973.74,987.95,971.24,985.95,18640000,985.95
-1976-08-31,968.92,979.97,966.84,973.74,15480000,973.74
-1976-08-30,963.93,972.91,961.44,968.92,11140000,968.92
-1976-08-27,960.44,967.50,954.12,963.93,12120000,963.93
-1976-08-26,970.83,975.90,958.28,960.44,15270000,960.44
-1976-08-25,962.93,973.82,956.37,970.83,17400000,970.83
-1976-08-24,971.49,977.14,960.77,962.93,16740000,962.93
-1976-08-23,974.07,975.73,962.18,971.49,15450000,971.49
-1976-08-20,982.63,982.63,970.99,974.07,14920000,974.07
-1976-08-19,995.01,995.84,979.31,983.88,17230000,983.88
-1976-08-18,999.34,1004.74,992.60,995.01,17150000,995.01
-1976-08-17,992.77,1002.41,990.44,999.34,18500000,999.34
-1976-08-16,990.19,997.51,986.95,992.77,16210000,992.77
-1976-08-13,987.12,994.35,983.05,990.19,13930000,990.19
-1976-08-12,986.79,992.10,979.22,987.12,15560000,987.12
-1976-08-11,993.43,1000.00,984.46,986.79,18710000,986.79
-1976-08-10,983.46,995.68,981.13,993.43,16690000,993.43
-1976-08-09,986.00,987.53,979.06,983.46,11700000,983.46
-1976-08-06,986.68,989.90,978.70,986.00,13930000,986.00
-1976-08-05,992.28,995.76,983.28,986.68,15530000,986.68
-1976-08-04,990.33,998.73,986.42,992.28,20650000,992.28
-1976-08-03,982.26,992.96,978.70,990.33,18500000,990.33
-1976-08-02,984.64,988.97,977.43,982.26,13870000,982.26
-1976-07-30,979.29,987.95,974.71,984.64,14830000,984.64
-1976-07-29,981.33,985.74,974.20,979.29,13330000,979.29
-1976-07-28,984.13,984.89,974.71,981.33,16000000,981.33
-1976-07-27,991.51,994.99,981.92,984.13,15580000,984.13
-1976-07-26,990.91,997.20,985.91,991.51,13530000,991.51
-1976-07-23,991.08,997.71,985.43,990.91,15870000,990.91
-1976-07-22,989.44,995.99,982.97,991.08,15600000,991.08
-1976-07-21,988.29,996.77,984.20,989.44,18350000,989.44
-1976-07-20,990.83,994.43,983.06,988.29,18810000,988.29
-1976-07-19,993.21,999.10,986.08,990.83,18200000,990.83
-1976-07-16,997.30,997.30,985.43,993.21,20450000,993.21
-1976-07-15,1005.16,1006.79,993.21,997.46,20400000,997.46
-1976-07-14,1006.06,1012.20,997.95,1005.16,23840000,1005.16
-1976-07-13,1011.21,1017.93,1001.64,1006.06,27550000,1006.06
-1976-07-12,1003.11,1015.72,998.94,1011.21,23750000,1011.21
-1976-07-09,991.98,1007.53,989.60,1003.11,23500000,1003.11
-1976-07-08,991.16,998.85,987.15,991.98,21710000,991.98
-1976-07-07,991.81,994.43,982.56,991.16,18470000,991.16
-1976-07-06,999.84,1003.85,989.19,991.81,16130000,991.81
-1976-07-02,994.84,1003.85,991.00,999.84,16730000,999.84
-1976-07-01,1002.78,1009.00,990.26,994.84,21130000,994.84
-1976-06-30,1000.65,1011.79,995.99,1002.78,23830000,1002.78
-1976-06-29,997.38,1004.50,992.47,1000.65,19620000,1000.65
-1976-06-28,999.84,1006.30,993.45,997.38,17490000,997.38
-1976-06-25,1003.77,1008.35,995.58,999.84,17830000,999.84
-1976-06-24,996.56,1009.09,994.52,1003.77,19850000,1003.77
-1976-06-23,997.63,1002.05,987.23,996.56,17530000,996.56
-1976-06-22,1007.45,1011.87,995.74,997.63,21150000,997.63
-1976-06-21,1001.88,1010.97,997.54,1007.45,18930000,1007.45
-1976-06-18,1003.19,1012.93,996.97,1001.88,25720000,1001.88
-1976-06-17,988.62,1007.86,988.38,1003.19,27810000,1003.19
-1976-06-16,985.92,995.66,979.94,988.62,21620000,988.62
-1976-06-15,991.24,994.19,981.42,985.92,18440000,985.92
-1976-06-14,979.78,995.17,979.78,991.24,21250000,991.24
-1976-06-11,964.39,980.52,963.98,978.80,19470000,978.80
-1976-06-10,958.09,967.99,956.12,964.39,16100000,964.39
-1976-06-09,959.97,965.54,954.98,958.09,14560000,958.09
-1976-06-08,958.09,968.48,956.45,959.97,16660000,959.97
-1976-06-07,963.90,965.62,951.70,958.09,14510000,958.09
-1976-06-04,973.80,973.97,961.28,963.90,15960000,963.90
-1976-06-03,975.93,983.14,971.02,973.80,18900000,973.80
-1976-06-02,973.13,979.37,968.57,975.93,16120000,975.93
-1976-06-01,975.23,981.26,969.27,973.13,13880000,973.13
-1976-05-28,965.57,978.60,962.92,975.23,16860000,975.23
-1976-05-27,968.63,970.48,955.84,965.57,15310000,965.57
-1976-05-26,971.69,976.43,963.48,968.63,16750000,968.63
-1976-05-25,971.53,976.99,961.95,971.69,18770000,971.69
-1976-05-24,988.82,988.82,969.03,971.53,16560000,971.53
-1976-05-21,997.27,999.03,986.41,990.75,18730000,990.75
-1976-05-20,988.90,1001.05,985.76,997.27,22560000,997.27
-1976-05-19,989.45,996.14,983.99,988.90,18450000,988.90
-1976-05-18,987.64,994.80,984.41,989.45,17410000,989.45
-1976-05-17,992.60,993.47,982.05,987.64,14720000,987.64
-1976-05-14,1000.24,1000.24,988.74,992.60,16800000,992.60
-1976-05-13,1005.67,1008.66,997.48,1001.10,16730000,1001.10
-1976-05-12,1006.61,1012.52,999.53,1005.67,18510000,1005.67
-1976-05-11,1007.48,1015.82,1001.42,1006.61,23590000,1006.61
-1976-05-10,996.22,1010.39,994.10,1007.48,22760000,1007.48
-1976-05-07,989.53,999.53,984.97,996.22,17810000,996.22
-1976-05-06,986.46,995.43,981.50,989.53,16200000,989.53
-1976-05-05,993.70,997.09,982.53,986.46,14970000,986.46
-1976-05-04,990.32,998.03,982.21,993.70,17240000,993.70
-1976-05-03,995.83,995.83,981.74,990.32,15180000,990.32
-1976-04-30,1002.13,1007.01,993.31,996.85,14530000,996.85
-1976-04-29,1000.70,1010.39,996.62,1002.13,17740000,1002.13
-1976-04-28,995.51,1002.36,987.09,1000.70,15790000,1000.70
-1976-04-27,1002.76,1008.42,993.15,995.51,17760000,995.51
-1976-04-26,1000.71,1005.20,991.03,1002.76,15520000,1002.76
-1976-04-23,1007.71,1008.89,995.36,1000.71,17000000,1000.71
-1976-04-22,1011.02,1017.71,1003.70,1007.71,20220000,1007.71
-1976-04-21,1003.46,1016.85,1000.31,1011.02,26600000,1011.02
-1976-04-20,998.51,1008.19,998.51,1003.46,23500000,1003.46
-1976-04-19,980.48,991.18,979.16,988.11,16500000,988.11
-1976-04-15,974.65,984.81,969.30,980.48,15100000,980.48
-1976-04-14,984.26,990.24,972.76,974.65,18440000,974.65
-1976-04-13,971.27,985.99,969.54,984.26,15990000,984.26
-1976-04-12,968.28,978.90,963.00,971.27,16030000,971.27
-1976-04-09,977.09,981.58,964.34,968.28,19050000,968.28
-1976-04-08,986.22,987.80,968.99,977.09,20860000,977.09
-1976-04-07,1001.65,1004.80,983.08,986.22,20190000,986.22
-1976-04-06,1004.09,1015.35,998.90,1001.65,24170000,1001.65
-1976-04-05,992.99,1008.74,992.99,1004.09,21940000,1004.09
-1976-04-02,994.10,996.54,982.13,991.58,17420000,991.58
-1976-04-01,999.45,1003.31,987.72,994.10,17910000,994.10
-1976-03-31,992.13,1000.79,988.35,999.45,17520000,999.45
-1976-03-30,997.40,1000.31,985.04,992.13,17930000,992.13
-1976-03-29,1003.46,1007.40,993.78,997.40,16100000,997.40
-1976-03-26,1002.13,1009.68,997.64,1003.46,18510000,1003.46
-1976-03-25,1009.21,1014.72,997.72,1002.13,22510000,1002.13
-1976-03-24,1001.65,1018.03,1001.65,1009.21,32610000,1009.21
-1976-03-23,982.29,997.01,978.12,995.43,22450000,995.43
-1976-03-22,979.85,988.27,977.64,982.29,19410000,982.29
-1976-03-19,979.85,985.36,970.80,979.85,18090000,979.85
-1976-03-18,985.99,988.98,971.35,979.85,20330000,979.85
-1976-03-17,983.47,995.59,981.03,985.99,26190000,985.99
-1976-03-16,974.50,986.62,970.09,983.47,22780000,983.47
-1976-03-15,986.85,986.85,969.69,974.50,19570000,974.50
-1976-03-12,1003.31,1006.61,984.49,987.64,26020000,987.64
-1976-03-11,995.28,1008.42,992.76,1003.31,27300000,1003.31
-1976-03-10,993.70,1003.15,987.17,995.28,24900000,995.28
-1976-03-09,988.74,1005.67,987.88,993.70,31770000,993.70
-1976-03-08,973.08,991.73,973.08,988.74,25060000,988.74
-1976-03-05,970.64,981.03,965.37,972.92,23030000,972.92
-1976-03-04,978.83,984.26,967.18,970.64,24410000,970.64
-1976-03-03,985.12,988.99,973.00,978.83,25450000,978.83
-1976-03-02,975.36,991.11,974.26,985.12,25590000,985.12
-1976-03-01,972.61,981.19,964.18,975.36,22070000,975.36
-1976-02-27,978.83,980.71,962.30,972.61,26940000,972.61
-1976-02-26,994.57,1000.94,975.99,978.83,34320000,978.83
-1976-02-25,993.55,1002.83,983.39,994.57,34680000,994.57
-1976-02-24,985.28,1001.65,983.00,993.55,34380000,993.55
-1976-02-23,987.80,993.39,977.25,985.28,31460000,985.28
-1976-02-20,977.80,996.93,977.80,987.80,44510000,987.80
-1976-02-19,961.74,979.85,961.74,975.76,39210000,975.76
-1976-02-18,950.57,965.68,946.16,960.09,29900000,960.09
-1976-02-17,958.36,963.48,946.63,950.57,25460000,950.57
-1976-02-13,966.78,968.99,953.56,958.36,23870000,958.36
-1976-02-12,971.90,978.12,963.00,966.78,28610000,966.78
-1976-02-11,968.75,980.24,965.76,971.90,32300000,971.90
-1976-02-10,957.18,971.74,953.09,968.75,27660000,968.75
-1976-02-09,954.90,967.18,948.44,957.18,25340000,957.18
-1976-02-06,964.81,965.60,948.84,954.90,27360000,954.90
-1976-02-05,976.62,980.71,961.98,964.81,33780000,964.81
-1976-02-04,972.61,981.66,966.94,976.62,38270000,976.62
-1976-02-03,971.35,979.69,960.80,972.61,34080000,972.61
-1976-02-02,975.28,976.54,962.06,971.35,24000000,971.35
-1976-01-30,968.75,985.99,966.07,975.28,38510000,975.28
-1976-01-29,951.35,970.80,948.13,968.75,29800000,968.75
-1976-01-28,957.81,963.08,942.38,951.35,27370000,951.35
-1976-01-27,961.51,973.16,950.80,957.81,32070000,957.81
-1976-01-26,953.95,969.22,953.87,961.51,34470000,961.51
-1976-01-23,943.48,958.38,940.57,953.95,33640000,953.95
-1976-01-22,946.24,949.62,933.96,943.48,27420000,943.48
-1976-01-21,949.86,954.97,934.35,946.24,34470000,946.24
-1976-01-20,943.72,954.03,935.77,949.86,36690000,949.86
-1976-01-19,929.63,946.08,923.80,943.72,29450000,943.72
-1976-01-16,924.51,935.22,917.98,929.63,25940000,929.63
-1976-01-15,929.63,940.26,921.21,924.51,38450000,924.51
-1976-01-14,912.94,932.62,908.22,929.63,30340000,929.63
-1976-01-13,922.39,930.26,909.40,912.94,34530000,912.94
-1976-01-12,911.13,925.93,905.38,922.39,30440000,922.39
-1976-01-09,907.98,916.88,903.73,911.13,26510000,911.13
-1976-01-08,898.69,916.64,893.89,907.98,29030000,907.98
-1976-01-07,890.82,908.69,886.41,898.69,33170000,898.69
-1976-01-06,878.70,894.99,878.70,890.82,31270000,890.82
-1976-01-05,858.71,879.80,858.63,877.83,21960000,877.83
-1976-01-02,852.41,860.44,848.63,858.71,10300000,858.71
-1975-12-31,852.41,859.65,848.71,852.41,16970000,852.41
-1975-12-30,856.66,860.75,847.13,852.41,16040000,852.41
-1975-12-29,859.81,866.11,853.59,856.66,17070000,856.66
-1975-12-26,851.94,860.91,850.20,859.81,10020000,859.81
-1975-12-24,845.01,854.93,845.01,851.94,11150000,851.94
-1975-12-23,838.63,847.84,833.36,843.75,17750000,843.75
-1975-12-22,844.38,847.29,835.33,838.63,15340000,838.63
-1975-12-19,852.09,854.30,841.39,844.38,17720000,844.38
-1975-12-18,846.27,857.13,843.12,852.09,18040000,852.09
-1975-12-17,844.30,852.17,840.37,846.27,16560000,846.27
-1975-12-16,836.59,849.73,833.91,844.30,18350000,844.30
-1975-12-15,832.81,841.23,828.72,836.59,13960000,836.59
-1975-12-12,832.73,836.74,825.53,832.81,13100000,832.81
-1975-12-11,833.99,840.13,828.87,832.73,15300000,832.73
-1975-12-10,824.15,835.72,820.92,833.99,15680000,833.99
-1975-12-09,821.63,827.53,814.47,824.15,16040000,824.15
-1975-12-08,818.80,826.43,812.81,821.63,14150000,821.63
-1975-12-05,829.11,833.60,816.99,818.80,14050000,818.80
-1975-12-04,825.49,833.67,818.17,829.11,16380000,829.11
-1975-12-03,836.67,836.67,822.10,825.49,21320000,825.49
-1975-12-02,856.34,856.66,841.70,843.20,17930000,843.20
-1975-12-01,860.67,865.95,853.04,856.34,16050000,856.34
-1975-11-28,858.55,865.24,854.06,860.67,12870000,860.67
-1975-11-26,855.40,863.90,851.07,858.55,18780000,858.55
-1975-11-25,845.64,859.10,845.56,855.40,17490000,855.40
-1975-11-24,840.76,849.10,833.83,845.64,13930000,845.64
-1975-11-21,843.51,848.39,834.62,840.76,14110000,840.76
-1975-11-20,848.24,853.35,838.87,843.51,16460000,843.51
-1975-11-19,855.24,857.53,842.25,848.24,16820000,848.24
-1975-11-18,856.66,865.79,851.78,855.24,20760000,855.24
-1975-11-17,853.67,862.56,847.61,856.66,17660000,856.66
-1975-11-14,851.23,857.92,845.32,853.67,16460000,853.67
-1975-11-13,852.25,863.11,848.47,851.23,25070000,851.23
-1975-11-12,838.55,855.64,838.40,852.25,23960000,852.25
-1975-11-11,835.48,843.28,831.63,838.55,14640000,838.55
-1975-11-10,835.80,840.99,824.62,835.48,14910000,835.48
-1975-11-07,840.92,843.83,830.29,835.80,15930000,835.80
-1975-11-06,836.27,845.40,827.93,840.92,18600000,840.92
-1975-11-05,830.13,843.91,829.50,836.27,17390000,836.27
-1975-11-04,825.72,834.07,821.08,830.13,11570000,830.13
-1975-11-03,836.04,836.82,822.26,825.72,11400000,825.72
-1975-10-31,839.42,842.49,829.97,836.04,12910000,836.04
-1975-10-30,838.63,847.29,832.97,839.42,15080000,839.42
-1975-10-29,850.83,850.83,834.86,838.63,16110000,838.63
-1975-10-28,838.48,853.67,837.53,851.46,17060000,851.46
-1975-10-27,840.52,845.17,831.31,838.48,13100000,838.48
-1975-10-24,855.16,857.76,837.22,840.52,18120000,840.52
-1975-10-23,849.57,859.57,844.46,855.16,17900000,855.16
-1975-10-22,846.82,855.09,840.37,849.57,16060000,849.57
-1975-10-21,842.25,855.71,841.23,846.82,20800000,846.82
-1975-10-20,832.18,844.14,828.24,842.25,13250000,842.25
-1975-10-17,837.85,841.23,824.46,832.18,15650000,832.18
-1975-10-16,837.22,851.46,833.60,837.85,18910000,837.85
-1975-10-15,835.25,843.91,828.01,837.22,14440000,837.22
-1975-10-14,837.77,852.41,830.13,835.25,19960000,835.25
-1975-10-13,823.91,838.95,818.48,837.77,12020000,837.77
-1975-10-10,824.54,832.57,817.14,823.91,14880000,823.91
-1975-10-09,823.91,834.93,817.30,824.54,17770000,824.54
-1975-10-08,816.51,829.35,809.82,823.91,17800000,823.91
-1975-10-07,819.66,821.79,806.12,816.51,13530000,816.51
-1975-10-06,813.21,826.83,811.32,819.66,15470000,819.66
-1975-10-03,794.71,816.12,794.71,813.21,16360000,813.21
-1975-10-02,784.16,799.28,781.72,794.55,14290000,794.55
-1975-10-01,793.88,799.35,780.54,784.16,14070000,784.16
-1975-09-30,804.44,804.44,789.66,793.88,12520000,793.88
-1975-09-29,818.60,820.56,803.43,805.23,10580000,805.23
-1975-09-26,820.24,827.28,811.33,818.60,12570000,818.60
-1975-09-25,826.19,828.85,812.89,820.24,12890000,820.24
-1975-09-24,820.24,836.83,820.24,826.19,16060000,826.19
-1975-09-23,820.40,824.31,807.96,819.85,12800000,819.85
-1975-09-22,829.79,835.65,817.58,820.40,14750000,820.40
-1975-09-19,816.72,834.72,816.72,829.79,20830000,829.79
-1975-09-18,799.05,817.19,797.64,814.61,14560000,814.61
-1975-09-17,795.13,804.52,792.01,799.05,12190000,799.05
-1975-09-16,803.19,809.76,792.79,795.13,13090000,795.13
-1975-09-15,809.23,811.25,799.05,803.19,8670000,803.19
-1975-09-12,812.66,823.69,806.63,809.23,12230000,809.23
-1975-09-11,817.66,820.32,808.12,812.66,11100000,812.66
-1975-09-10,825.33,825.33,809.53,817.66,14780000,817.66
-1975-09-09,840.11,849.03,826.58,827.75,15790000,827.75
-1975-09-08,835.97,843.95,830.18,840.11,11500000,840.11
-1975-09-05,838.31,843.63,830.26,835.97,11680000,835.97
-1975-09-04,832.29,843.55,827.21,838.31,12810000,838.31
-1975-09-03,823.69,834.64,815.94,832.29,12260000,832.29
-1975-09-02,835.34,840.19,821.26,823.69,11460000,823.69
-1975-08-29,829.47,844.02,828.69,835.34,15480000,835.34
-1975-08-28,809.92,831.59,809.92,829.47,14530000,829.47
-1975-08-27,803.11,809.61,797.09,807.20,11100000,807.20
-1975-08-26,812.34,815.55,799.98,803.11,11350000,803.11
-1975-08-25,804.76,817.43,803.19,812.34,11250000,812.34
-1975-08-22,791.69,806.95,789.97,804.76,13050000,804.76
-1975-08-21,793.26,801.31,785.75,791.69,16610000,791.69
-1975-08-20,805.46,805.46,789.58,793.26,18630000,793.26
-1975-08-19,822.75,824.23,806.56,808.51,14990000,808.51
-1975-08-18,825.64,833.31,819.38,822.75,10810000,822.75
-1975-08-15,817.04,830.73,814.06,825.64,10610000,825.64
-1975-08-14,820.56,824.08,812.73,817.04,12460000,817.04
-1975-08-13,828.54,831.20,817.43,820.56,12000000,820.56
-1975-08-12,823.76,838.63,823.29,828.54,14510000,828.54
-1975-08-11,817.74,825.33,809.92,823.76,12350000,823.76
-1975-08-08,815.79,826.19,812.66,817.74,11660000,817.74
-1975-08-07,813.67,824.86,809.84,815.79,12390000,815.79
-1975-08-06,810.15,820.40,804.60,813.67,16280000,813.67
-1975-08-05,818.05,824.94,806.95,810.15,15470000,810.15
-1975-08-04,826.50,826.81,813.52,818.05,12620000,818.05
-1975-08-01,831.51,833.78,822.20,826.50,13320000,826.50
-1975-07-31,831.66,843.09,828.77,831.51,14540000,831.51
-1975-07-30,824.86,837.69,819.15,831.66,16150000,831.66
-1975-07-29,827.83,840.74,820.32,824.86,19000000,824.86
-1975-07-28,834.09,836.91,821.96,827.83,14850000,827.83
-1975-07-25,840.27,846.92,829.40,834.09,15110000,834.09
-1975-07-24,836.67,847.78,829.24,840.27,20550000,840.27
-1975-07-23,846.76,853.41,834.64,836.67,20150000,836.67
-1975-07-22,854.74,854.97,838.70,846.76,20660000,846.76
-1975-07-21,862.41,867.88,852.00,854.74,16690000,854.74
-1975-07-18,864.28,867.02,854.27,862.41,16870000,862.41
-1975-07-17,872.11,877.35,858.73,864.28,21420000,864.28
-1975-07-16,881.81,888.53,868.59,872.11,25250000,872.11
-1975-07-15,875.86,888.85,874.14,881.81,28340000,881.81
-1975-07-14,871.09,880.71,865.22,875.86,21900000,875.86
-1975-07-11,871.87,881.49,862.80,871.09,22210000,871.09
-1975-07-10,871.87,884.46,868.19,871.87,28880000,871.87
-1975-07-09,858.65,875.00,858.65,871.87,26350000,871.87
-1975-07-08,861.08,863.97,850.52,857.79,18990000,857.79
-1975-07-07,871.79,873.36,859.04,861.08,15850000,861.08
-1975-07-03,870.38,877.42,863.50,871.79,19000000,871.79
-1975-07-02,876.25,876.25,861.62,870.38,18530000,870.38
-1975-07-01,878.99,884.86,869.60,877.42,20390000,877.42
-1975-06-30,873.12,884.62,867.96,878.99,19430000,878.99
-1975-06-27,874.14,880.48,867.18,873.12,18820000,873.12
-1975-06-26,872.73,883.37,866.55,874.14,24560000,874.14
-1975-06-25,869.06,878.05,861.94,872.73,21610000,872.73
-1975-06-24,864.83,878.44,861.00,869.06,26620000,869.06
-1975-06-23,855.44,867.10,846.92,864.83,20720000,864.83
-1975-06-20,847.86,864.67,847.86,855.44,26260000,855.44
-1975-06-19,827.83,848.64,826.11,845.35,21450000,845.35
-1975-06-18,828.61,834.01,818.99,827.83,15590000,827.83
-1975-06-17,834.56,843.09,824.00,828.61,19440000,828.61
-1975-06-16,824.47,837.77,821.34,834.56,16660000,834.56
-1975-06-13,819.31,829.01,811.23,824.47,16300000,824.47
-1975-06-12,824.55,831.43,815.39,819.31,15970000,819.31
-1975-06-11,822.12,833.54,819.85,824.55,18230000,824.55
-1975-06-10,829.08,829.08,813.75,822.12,21130000,822.12
-1975-06-09,839.64,844.49,827.99,830.10,20670000,830.10
-1975-06-06,842.15,849.73,833.15,839.64,22230000,839.64
-1975-06-05,839.96,845.04,829.94,842.15,21610000,842.15
-1975-06-04,846.14,850.83,834.17,839.96,24900000,839.96
-1975-06-03,846.61,855.44,839.57,846.14,26560000,846.14
-1975-06-02,835.73,853.49,835.73,846.61,28240000,846.61
-1975-05-30,817.43,836.20,817.43,832.29,22670000,832.29
-1975-05-29,817.04,823.53,808.12,815.00,18570000,815.00
-1975-05-28,826.11,832.84,812.81,817.04,21850000,817.04
-1975-05-27,831.90,837.53,820.09,826.11,17050000,826.11
-1975-05-23,818.91,835.50,818.28,831.90,17870000,831.90
-1975-05-22,818.68,828.54,807.96,818.91,17610000,818.91
-1975-05-21,830.26,830.26,815.24,818.68,17640000,818.68
-1975-05-20,837.69,843.79,827.52,830.49,18310000,830.49
-1975-05-19,837.61,843.71,823.22,837.69,17870000,837.69
-1975-05-16,848.80,849.03,831.35,837.61,16630000,837.61
-1975-05-15,858.73,868.58,847.15,848.80,27690000,848.80
-1975-05-14,850.13,866.00,846.84,858.73,29050000,858.73
-1975-05-13,847.47,857.87,840.19,850.13,24950000,850.13
-1975-05-12,850.13,857.32,841.99,847.47,22410000,847.47
-1975-05-09,840.50,856.77,839.41,850.13,28440000,850.13
-1975-05-08,836.44,845.20,828.07,840.50,22980000,840.50
-1975-05-07,834.72,842.69,822.67,836.44,22250000,836.44
-1975-05-06,855.60,860.06,832.68,834.72,25410000,834.72
-1975-05-05,848.48,860.06,839.72,855.60,22370000,855.60
-1975-05-02,832.21,853.25,832.21,848.48,25210000,848.48
-1975-05-01,821.34,837.22,817.82,830.96,20660000,830.96
-1975-04-30,803.04,823.22,796.93,821.34,18060000,821.34
-1975-04-29,810.00,817.04,797.79,803.04,17740000,803.04
-1975-04-28,811.80,820.56,803.50,810.00,17850000,810.00
-1975-04-25,803.66,819.77,800.77,811.80,20260000,811.80
-1975-04-24,802.49,810.15,792.32,803.66,19050000,803.66
-1975-04-23,814.14,815.94,798.97,802.49,20040000,802.49
-1975-04-22,815.86,828.93,811.17,814.14,26120000,814.14
-1975-04-21,808.43,821.57,803.74,815.86,23960000,815.86
-1975-04-18,819.46,822.12,802.25,808.43,26610000,808.43
-1975-04-17,815.71,835.18,813.75,819.46,32650000,819.46
-1975-04-16,815.08,819.77,800.30,815.71,22970000,815.71
-1975-04-15,806.95,822.43,801.31,815.08,29620000,815.08
-1975-04-14,790.83,811.48,790.83,806.95,26800000,806.95
-1975-04-11,781.29,792.94,775.81,789.50,20160000,789.50
-1975-04-10,769.40,788.25,769.40,781.29,24990000,781.29
-1975-04-09,749.22,771.04,748.44,767.99,18120000,767.99
-1975-04-08,742.88,755.38,741.00,749.22,14320000,749.22
-1975-04-07,747.26,749.84,736.62,742.88,13860000,742.88
-1975-04-04,752.19,755.40,740.69,747.26,14170000,747.26
-1975-04-03,760.56,763.22,749.06,752.19,13920000,752.19
-1975-04-02,761.58,770.96,754.77,760.56,15600000,760.56
-1975-04-01,768.15,771.12,756.49,761.58,14480000,761.58
-1975-03-31,770.26,779.72,764.39,768.15,16270000,768.15
-1975-03-27,766.19,778.63,763.45,770.26,18300000,770.26
-1975-03-26,750.94,769.97,750.94,766.19,18580000,766.19
-1975-03-25,743.43,753.29,731.46,747.89,18500000,747.89
-1975-03-24,752.50,752.50,737.48,743.43,17810000,743.43
-1975-03-21,764.00,768.93,753.13,763.06,15940000,763.06
-1975-03-20,769.48,779.65,758.29,764.00,20960000,764.00
-1975-03-19,776.83,776.83,761.19,769.48,19030000,769.48
-1975-03-18,786.53,796.93,776.60,779.41,29180000,779.41
-1975-03-17,773.47,789.42,771.35,786.53,26780000,786.53
-1975-03-14,762.98,779.57,761.81,773.47,24840000,773.47
-1975-03-13,763.69,766.97,752.58,762.98,18620000,762.98
-1975-03-12,770.89,774.33,756.73,763.69,21560000,763.69
-1975-03-11,776.13,784.73,765.64,770.89,31280000,770.89
-1975-03-10,770.10,779.41,761.58,776.13,25890000,776.13
-1975-03-07,761.81,775.66,759.62,770.10,25930000,770.10
-1975-03-06,761.81,764.71,761.81,761.81,21780000,761.81
-1975-03-05,757.74,766.97,745.54,752.82,24120000,752.82
-1975-03-04,753.83,773.23,753.83,757.74,34140000,757.74
-1975-03-03,739.05,756.49,737.64,753.13,24100000,753.13
-1975-02-28,731.15,741.94,724.50,739.05,17560000,739.05
-1975-02-27,728.10,738.50,725.13,731.15,16430000,731.15
-1975-02-26,719.18,731.77,713.70,728.10,18790000,728.10
-1975-02-25,732.79,732.79,714.57,719.18,20910000,719.18
-1975-02-24,749.77,750.16,733.49,736.94,19150000,736.94
-1975-02-21,745.38,757.35,742.49,749.77,24440000,749.77
-1975-02-20,736.39,749.53,731.38,745.38,22260000,745.38
-1975-02-19,731.30,740.61,721.92,736.39,21930000,736.39
-1975-02-18,734.20,742.10,722.39,731.30,23990000,731.30
-1975-02-14,726.92,739.52,719.81,734.20,23290000,734.20
-1975-02-13,718.48,738.27,718.48,726.92,35160000,726.92
-1975-02-12,707.60,716.83,700.64,715.03,19790000,715.03
-1975-02-11,708.39,711.67,697.83,707.60,16470000,707.60
-1975-02-10,711.91,717.85,702.75,708.39,16120000,708.39
-1975-02-07,714.17,715.97,697.51,711.91,19060000,711.91
-1975-02-06,717.85,731.54,710.81,714.17,32020000,714.17
-1975-02-05,708.07,721.45,699.78,717.85,25830000,717.85
-1975-02-04,711.44,713.47,695.24,708.07,25040000,708.07
-1975-02-03,703.69,717.62,696.50,711.44,25400000,711.44
-1975-01-31,696.42,709.56,690.16,703.69,24640000,703.69
-1975-01-30,705.96,717.30,693.13,696.42,29740000,696.42
-1975-01-29,694.77,712.22,686.95,705.96,27410000,705.96
-1975-01-28,692.66,705.10,689.69,694.77,31760000,694.77
-1975-01-27,678.43,698.69,678.43,692.66,32130000,692.66
-1975-01-24,656.76,671.46,652.69,666.61,20670000,666.61
-1975-01-23,652.61,666.61,647.45,656.76,17960000,656.76
-1975-01-22,641.90,654.02,634.39,652.61,15330000,652.61
-1975-01-21,647.45,656.60,637.91,641.90,14780000,641.90
-1975-01-20,644.63,650.19,635.09,647.45,13450000,647.45
-1975-01-17,655.74,657.70,641.90,644.63,14260000,644.63
-1975-01-16,653.39,660.12,648.08,655.74,17110000,655.74
-1975-01-15,648.70,657.15,640.25,653.39,16580000,653.39
-1975-01-14,654.18,657.93,644.01,648.70,16610000,648.70
-1975-01-13,658.79,669.27,651.36,654.18,19780000,654.18
-1975-01-10,650.11,666.69,650.11,658.79,25890000,658.79
-1975-01-09,635.40,646.90,627.58,645.26,16340000,645.26
-1975-01-08,641.19,646.28,632.12,635.40,15600000,635.40
-1975-01-07,637.20,645.42,630.24,641.19,14890000,641.19
-1975-01-06,634.54,646.43,631.88,637.20,17550000,637.20
-1975-01-03,632.04,642.60,623.67,634.54,15270000,634.54
-1975-01-02,619.13,637.12,619.13,632.04,14800000,632.04
-1974-12-31,603.25,619.84,602.86,616.24,20970000,616.24
-1974-12-30,602.16,607.24,595.04,603.25,18520000,603.25
-1974-12-27,604.74,608.26,597.47,602.16,13060000,602.16
-1974-12-26,598.40,610.37,597.07,604.74,11810000,604.74
-1974-12-24,589.64,602.16,589.57,598.40,9540000,598.40
-1974-12-23,598.48,598.95,583.70,589.64,18040000,589.64
-1974-12-20,604.43,607.01,594.49,598.48,15840000,598.48
-1974-12-19,603.49,611.00,596.21,604.43,15900000,604.43
-1974-12-18,597.62,610.84,597.62,603.49,18050000,603.49
-1974-12-17,586.83,599.42,582.45,597.54,16880000,597.54
-1974-12-16,592.77,598.09,584.25,586.83,15370000,586.83
-1974-12-13,596.37,602.00,586.67,592.77,14000000,592.77
-1974-12-12,595.35,604.27,586.67,596.37,15390000,596.37
-1974-12-11,593.87,606.15,589.17,595.35,15700000,595.35
-1974-12-10,582.21,602.08,582.21,593.87,15690000,593.87
-1974-12-09,577.60,587.14,570.01,579.94,14660000,579.94
-1974-12-06,587.06,588.00,572.12,577.60,15500000,577.60
-1974-12-05,598.64,604.11,585.11,587.06,12890000,587.06
-1974-12-04,596.61,606.77,592.07,598.64,12580000,598.64
-1974-12-03,603.02,603.33,590.82,596.61,13620000,596.61
-1974-12-02,616.08,616.08,599.58,603.02,11140000,603.02
-1974-11-29,619.29,623.90,610.92,618.66,7400000,618.66
-1974-11-27,617.26,633.45,612.64,619.29,14810000,619.29
-1974-11-26,611.94,625.08,606.85,617.26,13600000,617.26
-1974-11-25,615.30,620.70,604.43,611.94,11300000,611.94
-1974-11-22,609.59,625.31,609.59,615.30,13020000,615.30
-1974-11-21,609.59,616.55,599.81,608.57,13820000,608.57
-1974-11-20,614.05,622.81,605.76,609.59,12430000,609.59
-1974-11-19,624.92,627.42,609.75,614.05,15720000,614.05
-1974-11-18,641.11,641.11,621.71,624.92,15230000,624.92
-1974-11-15,658.40,660.04,642.60,647.61,12480000,647.61
-1974-11-14,659.18,671.31,635.55,658.40,13540000,658.40
-1974-11-13,659.18,666.22,647.29,659.18,16040000,659.18
-1974-11-12,672.64,675.06,656.45,659.18,15040000,659.18
-1974-11-11,667.16,675.69,660.51,672.64,13220000,672.64
-1974-11-08,671.93,676.55,661.53,667.16,15890000,667.16
-1974-11-07,669.12,681.79,660.75,671.93,17150000,671.93
-1974-11-06,674.75,692.82,666.07,669.12,23930000,669.12
-1974-11-05,657.23,676.63,651.83,674.75,15960000,674.75
-1974-11-04,664.19,664.19,647.37,657.23,12740000,657.23
-1974-11-01,665.52,673.03,655.74,665.28,13470000,665.28
-1974-10-31,673.03,685.62,659.18,665.52,18840000,665.52
-1974-10-30,659.34,681.40,655.19,673.03,20130000,673.03
-1974-10-29,638.77,661.53,638.77,659.34,15610000,659.34
-1974-10-28,636.19,639.63,624.06,633.84,10540000,633.84
-1974-10-25,636.26,648.00,629.93,636.19,12650000,636.19
-1974-10-24,643.85,643.85,624.30,636.26,14910000,636.26
-1974-10-23,660.51,660.51,637.83,645.03,14200000,645.03
-1974-10-22,669.82,680.07,658.56,662.86,18930000,662.86
-1974-10-21,654.88,674.12,645.65,669.82,14500000,669.82
-1974-10-18,651.44,669.51,646.04,654.88,16460000,654.88
-1974-10-17,642.29,657.31,635.48,651.44,14470000,651.44
-1974-10-16,658.40,660.51,636.97,642.29,14790000,642.29
-1974-10-15,673.50,679.21,652.38,658.40,17390000,658.40
-1974-10-14,659.73,689.30,659.73,673.50,19770000,673.50
-1974-10-11,648.08,665.91,638.14,658.17,20090000,658.17
-1974-10-10,634.00,664.03,634.00,648.08,26360000,648.08
-1974-10-09,602.63,633.37,591.91,631.02,18820000,631.02
-1974-10-08,607.56,615.93,596.21,602.63,15460000,602.63
-1974-10-07,587.77,610.45,587.77,607.56,15000000,607.56
-1974-10-04,587.61,593.71,573.22,584.56,15910000,584.56
-1974-10-03,600.75,600.75,582.21,587.61,13150000,587.61
-1974-10-02,604.82,613.89,596.84,601.53,12230000,601.53
-1974-10-01,607.87,613.27,589.57,604.82,16890000,604.82
-1974-09-30,619.37,619.37,598.80,607.87,15000000,607.87
-1974-09-27,637.98,643.62,619.37,621.95,12320000,621.95
-1974-09-26,648.39,648.39,633.60,637.98,9060000,637.98
-1974-09-25,654.10,671.46,643.77,649.95,17620000,649.95
-1974-09-24,662.08,662.08,648.78,654.10,9840000,654.10
-1974-09-23,670.76,678.19,657.78,663.72,12130000,663.72
-1974-09-20,674.05,680.54,659.34,670.76,16250000,670.76
-1974-09-19,659.34,679.83,659.34,674.05,17000000,674.05
-1974-09-18,648.78,654.57,635.09,651.91,11760000,651.91
-1974-09-17,642.76,662.16,642.76,648.78,13730000,648.78
-1974-09-16,627.19,645.89,617.73,639.79,18370000,639.79
-1974-09-13,641.74,643.77,624.37,627.19,16070000,627.19
-1974-09-12,654.72,655.04,637.44,641.74,16920000,641.74
-1974-09-11,658.17,665.60,650.58,654.72,11820000,654.72
-1974-09-10,662.94,669.51,652.22,658.17,11980000,658.17
-1974-09-09,676.71,676.71,660.59,662.94,11160000,662.94
-1974-09-06,670.76,685.00,663.56,677.88,15130000,677.88
-1974-09-05,649.95,673.50,649.95,670.76,14210000,670.76
-1974-09-04,657.46,657.46,638.38,648.00,16930000,648.00
-1974-09-03,678.58,686.48,662.23,663.33,12750000,663.33
-1974-08-30,661.14,681.71,661.14,678.58,16230000,678.58
-1974-08-29,666.61,669.51,651.60,656.84,13690000,656.84
-1974-08-28,671.54,681.79,663.56,666.61,16670000,666.61
-1974-08-27,688.13,690.86,668.02,671.54,12970000,671.54
-1974-08-26,686.80,697.12,671.46,688.13,14630000,688.13
-1974-08-23,704.63,710.73,683.90,686.80,13590000,686.80
-1974-08-22,711.59,713.94,694.15,704.63,15690000,704.63
-1974-08-21,726.85,730.05,709.25,711.59,11650000,711.59
-1974-08-20,721.84,736.31,717.46,726.85,13820000,726.85
-1974-08-19,731.15,731.15,715.35,721.84,11670000,721.84
-1974-08-16,737.88,744.45,728.65,731.54,10510000,731.54
-1974-08-15,740.54,749.14,732.24,737.88,11130000,737.88
-1974-08-14,755.01,755.01,735.37,740.54,11750000,740.54
-1974-08-13,767.29,768.54,750.55,756.44,10140000,756.44
-1974-08-12,777.30,780.04,762.83,767.29,7780000,767.29
-1974-08-09,784.89,787.47,771.90,777.30,10160000,777.30
-1974-08-08,797.56,803.43,779.02,784.89,16060000,784.89
-1974-08-07,773.78,798.89,770.81,797.56,13380000,797.56
-1974-08-06,766.97,790.99,766.97,773.78,15770000,773.78
-1974-08-05,752.58,768.46,747.97,760.40,11230000,760.40
-1974-08-02,751.10,758.45,745.31,752.58,10110000,752.58
-1974-08-01,757.43,764.16,745.62,751.10,11470000,751.10
-1974-07-31,765.57,767.44,754.38,757.43,10960000,757.43
-1974-07-30,770.89,775.03,758.84,765.57,11360000,765.57
-1974-07-29,780.74,780.74,764.55,770.89,11560000,770.89
-1974-07-26,795.68,798.03,781.52,784.57,10420000,784.57
-1974-07-25,805.77,807.65,790.05,795.68,13310000,795.68
-1974-07-24,797.72,809.76,791.54,805.77,12870000,805.77
-1974-07-23,790.36,805.62,789.82,797.72,12910000,797.72
-1974-07-22,787.94,795.53,779.49,790.36,9290000,790.36
-1974-07-19,789.19,796.62,780.43,787.94,11080000,787.94
-1974-07-18,784.97,803.04,781.45,789.19,13980000,789.19
-1974-07-17,775.97,788.56,765.80,784.97,11320000,784.97
-1974-07-16,785.20,785.20,771.82,775.97,9920000,775.97
-1974-07-15,787.23,800.92,777.85,786.61,13560000,786.61
-1974-07-12,770.03,790.68,770.03,787.23,17770000,787.23
-1974-07-11,762.12,769.76,753.13,759.62,14640000,759.62
-1974-07-10,772.29,779.18,759.54,762.12,13490000,762.12
-1974-07-09,770.57,782.85,764.63,772.29,15580000,772.29
-1974-07-08,788.41,788.41,765.33,770.57,15510000,770.57
-1974-07-05,792.87,796.31,786.22,791.77,7400000,791.77
-1974-07-03,790.68,798.58,785.12,792.87,13430000,792.87
-1974-07-02,806.24,808.75,788.25,790.68,13460000,790.68
-1974-07-01,802.41,811.95,797.48,806.24,10270000,806.24
-1974-06-28,803.66,808.20,796.46,802.41,12010000,802.41
-1974-06-27,816.96,817.27,800.77,803.66,12650000,803.66
-1974-06-26,828.85,830.41,815.47,816.96,11410000,816.96
-1974-06-25,817.66,832.53,817.66,828.85,11920000,828.85
-1974-06-24,815.39,822.43,808.90,816.33,9960000,816.33
-1974-06-21,820.79,822.59,810.15,815.39,11830000,815.39
-1974-06-20,826.11,831.20,818.13,820.79,11990000,820.79
-1974-06-19,830.26,833.54,821.26,826.11,10550000,826.11
-1974-06-18,833.23,838.55,826.50,830.26,10110000,830.26
-1974-06-17,843.09,843.24,829.47,833.23,9680000,833.23
-1974-06-14,850.67,850.67,837.84,843.09,10030000,843.09
-1974-06-13,848.56,861.00,843.79,852.08,11540000,852.08
-1974-06-12,852.08,853.80,837.92,848.56,11150000,848.56
-1974-06-11,859.67,865.54,848.09,852.08,12380000,852.08
-1974-06-10,853.72,864.60,846.14,859.67,13540000,859.67
-1974-06-07,845.59,863.27,845.59,853.72,19020000,853.72
-1974-06-06,830.18,847.54,824.08,845.35,13360000,845.35
-1974-06-05,828.69,839.41,819.23,830.18,13680000,830.18
-1974-06-04,821.81,837.06,821.81,828.69,16040000,828.69
-1974-06-03,802.17,822.36,799.83,821.26,12490000,821.26
-1974-05-31,803.58,808.04,792.32,802.17,10810000,802.17
-1974-05-30,795.37,808.28,788.80,803.58,13580000,803.58
-1974-05-29,814.30,817.27,793.02,795.37,12300000,795.37
-1974-05-28,816.65,824.55,809.14,814.30,10580000,814.30
-1974-05-24,806.24,824.31,806.24,816.65,13740000,816.65
-1974-05-23,802.57,811.33,796.15,805.23,14770000,805.23
-1974-05-22,809.53,818.84,800.14,802.57,15450000,802.57
-1974-05-21,812.42,822.67,803.04,809.53,12190000,809.53
-1974-05-20,818.84,826.19,807.49,812.42,10550000,812.42
-1974-05-17,833.31,833.31,813.75,818.84,13870000,818.84
-1974-05-16,846.06,853.41,833.15,835.34,12090000,835.34
-1974-05-15,847.86,853.02,839.25,846.06,11240000,846.06
-1974-05-14,845.59,856.07,842.30,847.86,10880000,847.86
-1974-05-13,850.44,854.82,838.70,845.59,11290000,845.59
-1974-05-10,865.77,870.38,846.84,850.44,15270000,850.44
-1974-05-09,850.99,870.07,849.19,865.77,14710000,865.77
-1974-05-08,847.15,856.93,843.01,850.99,11850000,850.99
-1974-05-07,844.88,855.84,840.50,847.15,10710000,847.15
-1974-05-06,845.90,847.47,834.32,844.88,9450000,844.88
-1974-05-03,851.06,852.78,839.88,845.90,11080000,845.90
-1974-05-02,853.88,865.85,845.90,851.06,13620000,851.06
-1974-05-01,836.75,861.08,832.77,853.88,15120000,853.88
-1974-04-30,835.42,844.49,829.63,836.75,10980000,836.75
-1974-04-29,834.64,839.80,824.70,835.42,10170000,835.42
-1974-04-26,827.68,841.29,823.22,834.64,13250000,834.64
-1974-04-25,832.37,835.11,818.68,827.68,15870000,827.68
-1974-04-24,845.98,847.23,828.22,832.37,16010000,832.37
-1974-04-23,858.57,859.51,843.55,845.98,14110000,845.98
-1974-04-22,859.90,864.28,852.39,858.57,10520000,858.57
-1974-04-19,868.90,868.90,856.15,859.90,10710000,859.90
-1974-04-18,867.41,875.94,862.64,869.92,12470000,869.92
-1974-04-17,861.23,874.45,856.38,867.41,14020000,867.41
-1974-04-16,845.74,863.58,845.74,861.23,14530000,861.23
-1974-04-15,844.81,852.00,839.33,843.79,10130000,843.79
-1974-04-11,843.71,849.97,837.77,844.81,9970000,844.81
-1974-04-10,846.84,855.52,840.27,843.71,11160000,843.71
-1974-04-09,839.96,852.55,836.12,846.84,11330000,846.84
-1974-04-08,847.23,847.23,834.25,839.96,10740000,839.96
-1974-04-05,858.57,858.57,842.46,847.54,11670000,847.54
-1974-04-04,858.03,865.46,852.32,858.89,11650000,858.89
-1974-04-03,846.61,860.45,844.65,858.03,11500000,858.03
-1974-04-02,843.48,853.18,839.17,846.61,12010000,846.61
-1974-04-01,846.68,856.38,839.72,843.48,11470000,843.48
-1974-03-29,854.35,858.57,842.38,846.68,12150000,846.68
-1974-03-28,867.18,867.18,850.59,854.35,14940000,854.35
-1974-03-27,883.68,887.83,869.76,871.17,11690000,871.17
-1974-03-26,881.02,890.18,875.16,883.68,11840000,883.68
-1974-03-25,878.13,884.78,866.79,881.02,10540000,881.02
-1974-03-22,875.47,884.31,868.43,878.13,11930000,878.13
-1974-03-21,872.34,887.12,870.23,875.47,12950000,875.47
-1974-03-20,867.57,878.60,863.03,872.34,12960000,872.34
-1974-03-19,874.22,875.70,861.86,867.57,12800000,867.57
-1974-03-18,887.83,889.86,870.38,874.22,14010000,874.22
-1974-03-15,889.78,893.38,878.68,887.83,14500000,887.83
-1974-03-14,891.66,904.02,885.17,889.78,19770000,889.78
-1974-03-13,887.12,900.81,881.88,891.66,16820000,891.66
-1974-03-12,888.45,895.57,877.50,887.12,17250000,887.12
-1974-03-11,878.05,893.30,865.93,888.45,18470000,888.45
-1974-03-08,869.06,880.94,858.81,878.05,16210000,878.05
-1974-03-07,879.85,880.24,865.07,869.06,14500000,869.06
-1974-03-06,872.42,885.25,866.47,879.85,19140000,879.85
-1974-03-05,860.40,880.40,860.40,872.42,21980000,872.42
-1974-03-04,851.92,854.97,841.76,853.18,12270000,853.18
-1974-03-01,860.53,861.62,845.90,851.92,12880000,851.92
-1974-02-28,863.42,868.19,851.85,860.53,13680000,860.53
-1974-02-27,859.51,871.40,855.76,863.42,18730000,863.42
-1974-02-26,851.38,861.78,843.09,859.51,15860000,859.51
-1974-02-25,855.99,859.20,843.79,851.38,12900000,851.38
-1974-02-22,846.84,862.41,843.01,855.99,16360000,855.99
-1974-02-21,831.04,849.66,830.18,846.84,13930000,846.84
-1974-02-20,819.54,834.87,814.22,831.04,11670000,831.04
-1974-02-19,820.32,840.50,816.65,819.54,15940000,819.54
-1974-02-15,809.92,825.72,808.12,820.32,12640000,820.32
-1974-02-14,806.87,816.57,802.17,809.92,12230000,809.92
-1974-02-13,806.63,816.18,803.04,806.87,10990000,806.87
-1974-02-12,803.90,811.72,795.68,806.63,12920000,806.63
-1974-02-11,820.40,821.26,802.24,803.90,12930000,803.90
-1974-02-08,828.46,831.90,817.82,820.40,12990000,820.40
-1974-02-07,824.62,833.93,819.38,828.46,11750000,828.46
-1974-02-06,820.64,831.35,817.51,824.62,11610000,824.62
-1974-02-05,821.50,829.87,811.95,820.64,12820000,820.64
-1974-02-04,838.63,838.63,816.49,821.50,14380000,821.50
-1974-02-01,855.55,856.55,838.02,843.94,12480000,843.94
-1974-01-31,862.32,868.85,852.01,855.55,14020000,855.55
-1974-01-30,853.09,869.77,853.09,862.32,16790000,862.32
-1974-01-29,853.01,858.86,844.48,852.32,12850000,852.32
-1974-01-28,859.39,862.16,847.32,853.01,13410000,853.01
-1974-01-25,863.08,869.16,850.71,859.39,14860000,859.39
-1974-01-24,871.00,875.85,853.47,863.08,15980000,863.08
-1974-01-23,863.47,878.69,859.01,871.00,16890000,871.00
-1974-01-22,854.63,871.62,850.71,863.47,17330000,863.47
-1974-01-21,855.47,858.86,835.79,854.63,15630000,854.63
-1974-01-18,872.16,873.15,850.86,855.47,16470000,855.47
-1974-01-17,856.32,878.54,856.32,872.16,21040000,872.16
-1974-01-16,846.40,861.16,842.48,856.09,14930000,856.09
-1974-01-15,840.18,855.78,834.64,846.40,13250000,846.40
-1974-01-14,841.48,855.63,833.26,840.18,14610000,840.18
-1974-01-11,823.11,847.63,819.88,841.48,15140000,841.48
-1974-01-10,834.79,845.17,816.57,823.11,16120000,823.11
-1974-01-09,853.01,853.01,831.41,834.79,18070000,834.79
-1974-01-08,876.85,880.77,857.70,861.78,18080000,861.78
-1974-01-07,880.23,883.99,866.31,876.85,19070000,876.85
-1974-01-04,880.69,890.38,868.08,880.23,21700000,880.23
-1974-01-03,858.86,886.69,858.86,880.69,24850000,880.69
-1974-01-02,850.86,859.16,841.41,855.32,12060000,855.32
-1973-12-31,848.02,857.09,836.18,850.86,23470000,850.86
-1973-12-28,851.01,857.63,839.94,848.02,21310000,848.02
-1973-12-27,839.02,858.93,839.02,851.01,22720000,851.01
-1973-12-26,820.19,844.10,820.19,837.56,18620000,837.56
-1973-12-24,818.73,820.73,805.73,814.81,11540000,814.81
-1973-12-21,828.11,830.72,809.81,818.73,18680000,818.73
-1973-12-20,829.57,841.64,820.50,828.11,17340000,828.11
-1973-12-19,829.49,847.86,820.96,829.57,20670000,829.57
-1973-12-18,811.12,834.72,807.12,829.49,19490000,829.49
-1973-12-17,815.65,821.42,804.20,811.12,12930000,811.12
-1973-12-14,800.43,823.57,793.51,815.65,20000000,815.65
-1973-12-13,810.73,821.57,794.43,800.43,18130000,800.43
-1973-12-12,828.64,828.64,805.27,810.73,18190000,810.73
-1973-12-11,851.14,861.09,830.80,834.18,20100000,834.18
-1973-12-10,838.05,857.31,829.17,851.14,18590000,851.14
-1973-12-07,815.47,846.63,815.47,838.05,23230000,838.05
-1973-12-06,788.31,816.68,786.50,814.12,23260000,814.12
-1973-12-05,803.21,806.82,783.56,788.31,19180000,788.31
-1973-12-04,806.52,817.73,795.68,803.21,19030000,803.21
-1973-12-03,820.51,820.51,798.31,806.52,17900000,806.52
-1973-11-30,835.11,836.02,819.39,822.25,15380000,822.25
-1973-11-29,839.78,846.93,824.28,835.11,18870000,835.11
-1973-11-28,817.73,843.47,814.80,839.78,19990000,839.78
-1973-11-27,824.95,833.16,810.36,817.73,19750000,817.73
-1973-11-26,844.15,844.15,816.60,824.95,19830000,824.95
-1973-11-23,854.98,861.45,847.46,854.00,11470000,854.00
-1973-11-21,844.90,869.21,839.78,854.98,24260000,854.98
-1973-11-20,862.43,862.43,836.17,844.90,23960000,844.90
-1973-11-19,889.75,889.75,860.78,862.66,16700000,862.66
-1973-11-16,874.55,905.10,869.21,891.33,22510000,891.33
-1973-11-15,869.88,886.82,859.27,874.55,24530000,874.55
-1973-11-14,891.03,899.53,865.37,869.88,22710000,869.88
-1973-11-13,897.65,902.47,876.88,891.03,20310000,891.03
-1973-11-12,908.41,910.82,885.54,897.65,19250000,897.65
-1973-11-09,932.65,932.95,902.92,908.41,17320000,908.41
-1973-11-08,923.92,946.79,923.92,932.65,19650000,932.65
-1973-11-07,913.08,929.64,909.69,920.08,16570000,920.08
-1973-11-06,919.40,933.77,909.69,913.08,16430000,913.08
-1973-11-05,932.87,932.87,912.55,919.40,17150000,919.40
-1973-11-02,948.83,951.31,929.11,935.28,16340000,935.28
-1973-11-01,956.58,963.80,941.83,948.83,16920000,948.83
-1973-10-31,968.54,973.13,951.31,956.58,17890000,956.58
-1973-10-30,984.80,985.93,963.65,968.54,17580000,968.54
-1973-10-29,987.06,997.59,979.98,984.80,17960000,984.80
-1973-10-26,974.49,992.62,972.61,987.06,17800000,987.06
-1973-10-25,971.85,981.26,957.10,974.49,15580000,974.49
-1973-10-24,966.51,977.50,960.79,971.85,15840000,971.85
-1973-10-23,960.57,976.44,944.46,966.51,17230000,966.51
-1973-10-22,963.73,970.42,951.08,960.57,14290000,960.57
-1973-10-19,959.74,974.04,954.55,963.73,17880000,963.73
-1973-10-18,962.52,974.34,950.11,959.74,19210000,959.74
-1973-10-17,967.41,976.67,956.35,962.52,18600000,962.52
-1973-10-16,967.04,971.63,951.76,967.41,18780000,967.41
-1973-10-15,977.80,977.80,960.19,967.04,16160000,967.04
-1973-10-12,976.07,991.80,972.00,978.63,22730000,978.63
-1973-10-11,960.57,981.19,957.71,976.07,20740000,976.07
-1973-10-10,974.19,980.28,953.79,960.57,19010000,960.57
-1973-10-09,977.65,984.65,964.63,974.19,19440000,974.19
-1973-10-08,971.25,983.22,955.82,977.65,18990000,977.65
-1973-10-05,955.90,975.92,950.78,971.25,18820000,971.25
-1973-10-04,964.55,969.30,949.50,955.90,19730000,955.90
-1973-10-03,956.80,971.78,952.14,964.55,22040000,964.55
-1973-10-02,948.83,961.54,943.93,956.80,20770000,956.80
-1973-10-01,947.10,954.09,937.69,948.83,15830000,948.83
-1973-09-28,953.27,954.92,937.54,947.10,16300000,947.10
-1973-09-27,949.50,964.55,942.50,953.27,23660000,953.27
-1973-09-26,940.55,954.55,935.43,949.50,21130000,949.50
-1973-09-25,936.71,947.02,927.53,940.55,21530000,940.55
-1973-09-24,927.90,940.70,924.37,936.71,19490000,936.71
-1973-09-21,920.53,934.38,911.72,927.90,23760000,927.90
-1973-09-20,910.37,925.42,909.54,920.53,25960000,920.53
-1973-09-19,891.26,915.41,891.26,910.37,24570000,910.37
-1973-09-18,892.99,900.14,882.38,891.26,16400000,891.26
-1973-09-17,886.36,900.29,884.86,892.99,15100000,892.99
-1973-09-14,880.57,889.15,873.34,886.36,13760000,886.36
-1973-09-13,881.32,888.09,874.17,880.57,11670000,880.57
-1973-09-12,885.76,889.75,874.77,881.32,12040000,881.32
-1973-09-11,891.33,892.46,878.61,885.76,12690000,885.76
-1973-09-10,898.63,903.45,888.62,891.33,11620000,891.33
-1973-09-07,901.04,905.70,892.61,898.63,14930000,898.63
-1973-09-06,899.08,908.04,894.04,901.04,15670000,901.04
-1973-09-05,895.39,903.52,887.94,899.08,14580000,899.08
-1973-09-04,887.57,900.25,885.69,895.39,14210000,895.39
-1973-08-31,882.53,890.95,876.51,887.57,10530000,887.57
-1973-08-30,883.43,892.31,877.48,882.53,12100000,882.53
-1973-08-29,872.07,890.35,870.56,883.43,15690000,883.43
-1973-08-28,870.71,877.63,865.37,872.07,11810000,872.07
-1973-08-27,863.49,874.32,860.02,870.71,9740000,870.71
-1973-08-24,864.46,873.12,856.56,863.49,11200000,863.49
-1973-08-23,853.48,869.81,853.48,864.46,11390000,864.46
-1973-08-22,857.84,860.55,845.50,851.90,10770000,851.90
-1973-08-21,867.40,869.96,855.51,857.84,11480000,857.84
-1973-08-20,871.84,875.08,862.73,867.40,8970000,867.40
-1973-08-17,872.74,877.18,864.69,871.84,11110000,871.84
-1973-08-16,874.17,886.44,867.62,872.74,12990000,872.74
-1973-08-15,870.71,879.82,863.71,874.17,12040000,874.17
-1973-08-14,883.20,887.42,867.70,870.71,11740000,870.71
-1973-08-13,892.38,892.91,878.09,883.20,11330000,883.20
-1973-08-10,901.49,903.52,887.12,892.38,10870000,892.38
-1973-08-09,902.02,910.60,893.96,901.49,12880000,901.49
-1973-08-08,911.95,913.23,897.43,902.02,12440000,902.02
-1973-08-07,912.78,920.38,905.25,911.95,13510000,911.95
-1973-08-06,908.87,918.50,900.96,912.78,12320000,912.78
-1973-08-03,910.14,913.91,900.36,908.87,9940000,908.87
-1973-08-02,912.18,917.37,899.46,910.14,16080000,910.14
-1973-08-01,924.37,924.37,907.28,912.18,13530000,912.18
-1973-07-31,933.77,941.15,923.39,926.40,13530000,926.40
-1973-07-30,936.71,942.35,926.32,933.77,11170000,933.77
-1973-07-27,934.53,942.28,925.65,936.71,12910000,936.71
-1973-07-26,933.02,944.08,924.74,934.53,18410000,934.53
-1973-07-25,918.72,942.58,917.22,933.02,22220000,933.02
-1973-07-24,913.15,922.19,903.67,918.72,16280000,918.72
-1973-07-23,910.90,921.88,907.36,913.15,15580000,913.15
-1973-07-20,906.68,918.05,902.54,910.90,16300000,910.90
-1973-07-19,905.40,916.47,893.66,906.68,18650000,906.68
-1973-07-18,898.03,911.20,889.90,905.40,17020000,905.40
-1973-07-17,897.58,911.80,892.84,898.03,18750000,898.03
-1973-07-16,885.99,900.44,881.32,897.58,12920000,897.58
-1973-07-13,901.94,902.77,883.05,885.99,11390000,885.99
-1973-07-12,908.19,910.82,895.39,901.94,16400000,901.94
-1973-07-11,889.90,911.80,889.90,908.19,18730000,908.19
-1973-07-10,879.06,894.64,879.06,888.32,15090000,888.32
-1973-07-09,870.11,879.74,863.94,877.26,11560000,877.26
-1973-07-06,874.32,878.09,865.82,870.11,9980000,870.11
-1973-07-05,874.17,879.74,867.10,874.32,10500000,874.32
-1973-07-03,880.57,882.53,868.75,874.17,10560000,874.17
-1973-07-02,890.20,890.20,876.66,880.57,9830000,880.57
-1973-06-29,894.64,900.59,886.59,891.71,10770000,891.71
-1973-06-28,884.63,897.88,880.87,894.64,12760000,894.64
-1973-06-27,879.44,888.09,872.44,884.63,12660000,884.63
-1973-06-26,869.13,881.85,864.46,879.44,14040000,879.44
-1973-06-25,879.82,880.72,865.67,869.13,11670000,869.13
-1973-06-22,875.23,897.58,875.23,879.82,18470000,879.82
-1973-06-21,884.71,887.49,871.84,873.65,11630000,873.65
-1973-06-20,881.55,890.65,876.28,884.71,10600000,884.71
-1973-06-19,875.08,889.52,868.08,881.55,12970000,881.55
-1973-06-18,887.34,887.34,869.36,875.08,11460000,875.08
-1973-06-15,899.68,899.68,882.60,888.55,11970000,888.55
-1973-06-14,915.49,922.49,899.61,902.92,13210000,902.92
-1973-06-13,927.00,935.58,912.48,915.49,15700000,915.49
-1973-06-12,915.11,930.01,912.85,927.00,13840000,927.00
-1973-06-11,920.00,924.67,911.05,915.11,9940000,915.11
-1973-06-08,909.62,926.85,908.19,920.00,14050000,920.00
-1973-06-07,898.18,913.68,896.37,909.62,14160000,909.62
-1973-06-06,900.81,908.87,891.71,898.18,13080000,898.18
-1973-06-05,885.91,905.63,883.43,900.81,14080000,900.81
-1973-06-04,893.96,894.42,880.72,885.91,11230000,885.91
-1973-06-01,901.41,902.32,887.27,893.96,10410000,893.96
-1973-05-31,908.87,912.03,895.62,901.41,12190000,901.41
-1973-05-30,924.37,924.37,906.01,908.87,11730000,908.87
-1973-05-29,930.84,934.08,921.36,925.57,11300000,925.57
-1973-05-25,924.44,938.82,915.64,930.84,19270000,930.84
-1973-05-24,895.02,926.48,890.35,924.44,17310000,924.44
-1973-05-23,892.46,904.80,884.18,895.02,14950000,895.02
-1973-05-22,886.51,905.93,884.86,892.46,18020000,892.46
-1973-05-21,894.79,894.79,875.45,886.51,20690000,886.51
-1973-05-18,908.79,908.79,889.00,895.17,17080000,895.17
-1973-05-17,917.14,919.93,907.59,911.72,13060000,911.72
-1973-05-16,917.44,927.83,907.66,917.14,13800000,917.14
-1973-05-15,909.69,920.83,894.49,917.44,18530000,917.44
-1973-05-14,925.27,925.27,906.31,909.69,13520000,909.69
-1973-05-11,939.12,939.12,924.14,927.98,12980000,927.98
-1973-05-10,949.05,950.63,934.75,939.34,13520000,939.34
-1973-05-09,956.58,965.16,945.29,949.05,16050000,949.05
-1973-05-08,950.71,961.24,940.92,956.58,13730000,956.58
-1973-05-07,953.87,956.80,941.98,950.71,12500000,950.71
-1973-05-04,945.67,962.67,944.31,953.87,19510000,953.87
-1973-05-03,932.34,950.03,915.04,945.67,17760000,945.67
-1973-05-02,921.21,938.37,920.23,932.34,14380000,932.34
-1973-05-01,921.43,929.03,905.40,921.21,15380000,921.21
-1973-04-30,922.19,929.18,907.51,921.43,14820000,921.43
-1973-04-27,937.76,941.38,918.05,922.19,13730000,922.19
-1973-04-26,930.54,944.24,919.78,937.76,16210000,937.76
-1973-04-25,940.77,941.60,925.42,930.54,15960000,930.54
-1973-04-24,955.37,958.68,938.37,940.77,13830000,940.77
-1973-04-23,963.20,966.51,951.23,955.37,12580000,955.37
-1973-04-19,958.31,970.95,953.79,963.20,14560000,963.20
-1973-04-18,953.43,961.47,944.39,958.31,13890000,958.31
-1973-04-17,956.73,959.29,947.62,953.43,12830000,953.43
-1973-04-16,959.36,965.53,950.03,956.73,11350000,956.73
-1973-04-13,964.03,967.56,950.71,959.36,14390000,959.36
-1973-04-12,967.41,975.32,956.73,964.03,16360000,964.03
-1973-04-11,960.49,970.50,953.94,967.41,14890000,967.41
-1973-04-10,950.71,966.74,950.71,960.49,16770000,960.49
-1973-04-09,931.07,950.63,927.45,947.55,13740000,947.55
-1973-04-06,923.46,937.31,921.43,931.07,13890000,931.07
-1973-04-05,925.05,929.03,914.81,923.46,12750000,923.46
-1973-04-04,927.75,935.66,919.55,925.05,11890000,925.05
-1973-04-03,936.18,936.71,920.45,927.75,12910000,927.75
-1973-04-02,951.01,951.84,932.72,936.18,10640000,936.18
-1973-03-30,959.14,961.69,944.84,951.01,13740000,951.01
-1973-03-29,948.00,962.82,941.75,959.14,16050000,959.14
-1973-03-28,944.91,955.82,936.94,948.00,15850000,948.00
-1973-03-27,930.16,948.52,930.16,944.91,17500000,944.91
-1973-03-26,922.71,931.74,914.28,927.90,14980000,927.90
-1973-03-23,925.20,934.53,911.12,922.71,18470000,922.71
-1973-03-22,937.46,937.46,919.25,925.20,17130000,925.20
-1973-03-21,949.43,958.84,934.90,938.37,16080000,938.37
-1973-03-20,952.06,956.80,941.15,949.43,13250000,949.43
-1973-03-19,962.45,962.45,946.79,952.06,12460000,952.06
-1973-03-16,969.82,973.21,957.41,963.05,15130000,963.05
-1973-03-15,978.85,982.47,966.21,969.82,14450000,969.82
-1973-03-14,976.07,982.31,972.00,978.85,14460000,978.85
-1973-03-13,969.75,980.13,966.29,976.07,14210000,976.07
-1973-03-12,972.23,979.00,965.68,969.75,13810000,969.75
-1973-03-09,976.44,978.03,963.58,972.23,14070000,972.23
-1973-03-08,979.98,985.25,973.59,976.44,15100000,976.44
-1973-03-07,979.00,984.80,966.74,979.98,19310000,979.98
-1973-03-06,966.89,982.39,966.44,979.00,17710000,979.00
-1973-03-05,961.32,972.00,955.67,966.89,13720000,966.89
-1973-03-02,949.65,962.97,937.69,961.32,17710000,961.32
-1973-03-01,955.07,967.04,947.17,949.65,18210000,949.65
-1973-02-28,947.92,958.31,938.82,955.07,17950000,955.07
-1973-02-27,953.79,963.12,943.26,947.92,16130000,947.92
-1973-02-26,959.89,962.90,943.78,953.79,15860000,953.79
-1973-02-23,971.78,973.81,957.10,959.89,15450000,959.89
-1973-02-22,974.34,978.63,963.05,971.78,14570000,971.78
-1973-02-21,983.59,988.79,970.27,974.34,14880000,974.34
-1973-02-20,979.23,991.04,975.69,983.59,14020000,983.59
-1973-02-16,973.13,981.86,965.76,979.23,13320000,979.23
-1973-02-15,979.91,984.12,966.29,973.13,13940000,973.13
-1973-02-14,996.76,997.97,974.11,979.91,16520000,979.91
-1973-02-13,991.65,1019.94,991.65,996.76,25320000,996.76
-1973-02-12,980.81,996.24,980.81,991.57,16130000,991.57
-1973-02-09,967.19,983.14,964.93,979.46,19260000,979.46
-1973-02-08,968.32,973.81,954.17,967.19,18440000,967.19
-1973-02-07,979.91,989.16,965.53,968.32,17960000,968.32
-1973-02-06,978.40,986.00,972.23,979.91,15720000,979.91
-1973-02-05,980.81,987.06,974.11,978.40,14580000,978.40
-1973-02-02,985.78,992.32,975.02,980.81,17470000,980.81
-1973-02-01,999.02,1008.58,983.14,985.78,20670000,985.78
-1973-01-31,992.93,1004.06,988.11,999.02,14870000,999.02
-1973-01-30,996.47,1005.34,989.09,992.93,15270000,992.93
-1973-01-29,1003.54,1008.80,988.18,996.47,14680000,996.47
-1973-01-26,1004.59,1008.50,989.46,1003.54,21130000,1003.54
-1973-01-24,1018.66,1025.74,998.57,1004.59,20870000,1004.59
-1973-01-23,1018.81,1024.68,1007.22,1018.66,19060000,1018.66
-1973-01-22,1026.19,1034.69,1014.52,1018.81,15570000,1018.81
-1973-01-19,1029.12,1031.68,1014.00,1026.19,17020000,1026.19
-1973-01-18,1029.12,1039.96,1024.01,1029.12,17810000,1029.12
-1973-01-17,1024.31,1036.35,1020.32,1029.12,17680000,1029.12
-1973-01-16,1025.59,1033.34,1014.37,1024.31,19170000,1024.31
-1973-01-15,1039.36,1053.28,1022.88,1025.59,21520000,1025.59
-1973-01-12,1051.70,1059.90,1033.41,1039.36,22230000,1039.36
-1973-01-11,1046.06,1067.20,1039.28,1051.70,25050000,1051.70
-1973-01-10,1047.11,1053.28,1040.94,1046.06,20880000,1046.06
-1973-01-09,1047.86,1053.21,1040.49,1047.11,16830000,1047.11
-1973-01-08,1047.49,1053.58,1040.86,1047.86,16840000,1047.86
-1973-01-05,1039.81,1053.43,1037.40,1047.49,19330000,1047.49
-1973-01-04,1043.80,1047.86,1027.62,1039.81,20230000,1039.81
-1973-01-03,1032.21,1049.59,1032.21,1043.80,20620000,1043.80
-1973-01-02,1022.88,1038.98,1022.88,1031.68,17090000,1031.68
-1972-12-29,1008.58,1027.39,1008.58,1020.02,27550000,1020.02
-1972-12-27,1006.70,1014.22,1001.13,1007.68,19100000,1007.68
-1972-12-26,1004.21,1010.91,999.85,1006.70,11120000,1006.70
-1972-12-22,1000.00,1010.01,996.84,1004.21,12540000,1004.21
-1972-12-21,1004.82,1010.91,996.09,1000.00,18290000,1000.00
-1972-12-20,1009.18,1014.98,1001.88,1004.82,18490000,1004.82
-1972-12-19,1013.25,1017.99,1004.06,1009.18,17000000,1009.18
-1972-12-18,1022.05,1022.05,1004.29,1013.25,17540000,1013.25
-1972-12-15,1025.06,1034.69,1018.59,1027.24,18300000,1027.24
-1972-12-14,1030.48,1035.45,1020.09,1025.06,17930000,1025.06
-1972-12-13,1033.19,1036.65,1025.14,1030.48,16540000,1030.48
-1972-12-12,1036.27,1042.44,1029.65,1033.19,17040000,1033.19
-1972-12-11,1033.19,1041.32,1029.80,1036.27,17230000,1036.27
-1972-12-08,1033.26,1039.21,1027.17,1033.19,18030000,1033.19
-1972-12-07,1027.54,1037.85,1025.36,1033.26,19320000,1033.26
-1972-12-06,1022.95,1031.16,1018.29,1027.54,18610000,1027.54
-1972-12-05,1027.02,1030.85,1017.46,1022.95,17800000,1022.95
-1972-12-04,1023.93,1033.19,1021.45,1027.02,19730000,1027.02
-1972-12-01,1018.21,1031.53,1016.56,1023.93,22570000,1023.93
-1972-11-30,1018.81,1025.81,1010.54,1018.21,19340000,1018.21
-1972-11-29,1019.34,1023.63,1011.89,1018.81,17380000,1018.81
-1972-11-28,1017.76,1026.79,1012.57,1019.34,19210000,1019.34
-1972-11-27,1025.21,1026.87,1008.65,1017.76,18190000,1017.76
-1972-11-24,1020.54,1029.73,1014.15,1025.21,15760000,1025.21
-1972-11-22,1013.25,1026.87,1009.93,1020.54,24510000,1020.54
-1972-11-21,1005.04,1017.61,1002.86,1013.25,22110000,1013.25
-1972-11-20,1005.57,1011.14,997.14,1005.04,16680000,1005.04
-1972-11-17,1003.69,1012.34,998.57,1005.57,20220000,1005.57
-1972-11-16,998.42,1008.13,991.57,1003.69,19580000,1003.69
-1972-11-15,1003.16,1013.55,993.08,998.42,23270000,998.42
-1972-11-14,997.07,1006.92,991.12,1003.16,20200000,1003.16
-1972-11-13,995.26,1004.89,988.49,997.07,17210000,997.07
-1972-11-10,988.26,1007.15,986.08,995.26,24360000,995.26
-1972-11-09,983.74,992.32,973.89,988.26,17040000,988.26
-1972-11-08,984.80,998.42,978.63,983.74,24620000,983.74
-1972-11-06,984.12,993.38,977.05,984.80,21330000,984.80
-1972-11-03,973.06,988.94,969.22,984.12,22510000,984.12
-1972-11-02,968.54,977.80,961.77,973.06,20690000,973.06
-1972-11-01,955.52,975.24,955.30,968.54,21360000,968.54
-1972-10-31,946.42,958.53,944.39,955.52,15450000,955.52
-1972-10-30,946.42,950.71,936.56,946.42,11820000,946.42
-1972-10-27,950.56,956.20,941.07,946.42,15470000,946.42
-1972-10-26,951.38,962.45,946.27,950.56,20790000,950.56
-1972-10-25,952.51,958.46,944.99,951.38,17430000,951.38
-1972-10-24,951.31,957.10,941.30,952.51,15240000,952.51
-1972-10-23,945.21,958.31,945.21,951.31,14190000,951.31
-1972-10-20,932.12,946.72,927.98,942.81,15740000,942.81
-1972-10-19,932.34,939.27,926.70,932.12,13850000,932.12
-1972-10-18,926.48,940.85,925.80,932.34,17290000,932.34
-1972-10-17,921.66,931.29,917.07,926.48,13410000,926.48
-1972-10-16,930.46,934.53,919.25,921.66,10940000,921.66
-1972-10-13,937.46,940.17,923.77,930.46,12870000,930.46
-1972-10-12,946.42,947.10,932.42,937.46,13130000,937.46
-1972-10-11,951.84,956.05,941.60,946.42,11900000,946.42
-1972-10-10,948.75,960.49,946.34,951.84,13310000,951.84
-1972-10-09,945.36,952.21,941.00,948.75,7940000,948.75
-1972-10-06,941.30,954.39,930.39,945.36,16630000,945.36
-1972-10-05,951.31,955.67,937.54,941.30,17730000,941.30
-1972-10-04,954.47,964.10,947.85,951.31,16640000,951.31
-1972-10-03,953.27,959.96,948.22,954.47,13090000,954.47
-1972-10-02,953.27,959.59,945.44,953.27,12440000,953.27
-1972-09-29,955.15,965.08,949.05,953.27,16250000,953.27
-1972-09-28,947.25,956.88,939.87,955.15,14710000,955.15
-1972-09-27,936.56,949.05,932.95,947.25,14620000,947.25
-1972-09-26,935.73,942.13,927.15,936.56,13150000,936.56
-1972-09-25,943.03,947.47,933.10,935.73,10920000,935.73
-1972-09-22,939.49,948.98,934.38,943.03,12570000,943.03
-1972-09-21,940.25,945.44,932.72,939.49,11940000,939.49
-1972-09-20,943.18,946.12,934.75,940.25,11980000,940.25
-1972-09-19,945.36,952.44,939.12,943.18,13330000,943.18
-1972-09-18,947.32,951.16,938.67,945.36,8880000,945.36
-1972-09-15,947.55,952.29,940.62,947.32,11690000,947.32
-1972-09-14,949.88,955.30,942.05,947.55,12500000,947.55
-1972-09-13,946.04,954.09,941.30,949.88,13070000,949.88
-1972-09-12,955.00,957.86,940.62,946.04,13560000,946.04
-1972-09-11,961.24,964.55,951.08,955.00,10710000,955.00
-1972-09-08,962.45,968.24,957.33,961.24,10980000,961.24
-1972-09-07,963.43,968.02,957.41,962.45,11090000,962.45
-1972-09-06,969.37,970.35,958.91,963.43,12010000,963.43
-1972-09-05,970.05,977.35,964.63,969.37,10630000,969.37
-1972-09-01,963.73,975.62,962.30,970.05,11600000,970.05
-1972-08-31,957.86,966.89,953.57,963.73,12340000,963.73
-1972-08-30,954.70,964.03,951.16,957.86,12470000,957.86
-1972-08-29,956.95,961.62,945.29,954.70,12300000,954.70
-1972-08-28,959.36,964.33,952.59,956.95,10720000,956.95
-1972-08-25,958.38,964.86,949.80,959.36,13840000,959.36
-1972-08-24,970.35,974.56,955.98,958.38,18280000,958.38
-1972-08-23,973.51,980.36,962.60,970.35,18670000,970.35
-1972-08-22,967.19,979.76,963.88,973.51,18560000,973.51
-1972-08-21,965.83,974.19,958.16,967.19,14290000,967.19
-1972-08-18,961.39,972.23,957.48,965.83,16150000,965.83
-1972-08-17,964.25,971.25,955.60,961.39,14360000,961.39
-1972-08-16,969.97,974.94,958.46,964.25,14950000,964.25
-1972-08-15,973.51,978.33,962.30,969.97,16670000,969.97
-1972-08-14,964.18,980.21,964.18,973.51,18870000,973.51
-1972-08-11,952.89,966.59,948.75,964.18,16570000,964.18
-1972-08-10,951.16,958.84,945.29,952.89,15260000,952.89
-1972-08-09,952.44,958.99,943.86,951.16,15730000,951.16
-1972-08-08,953.12,958.01,944.31,952.44,14550000,952.44
-1972-08-07,951.76,959.36,945.67,953.12,13220000,953.12
-1972-08-04,947.70,957.10,942.28,951.76,15700000,951.76
-1972-08-03,941.15,953.19,939.12,947.70,19970000,947.70
-1972-08-02,931.07,944.61,931.07,941.15,17920000,941.15
-1972-08-01,924.74,935.36,922.03,930.46,15540000,930.46
-1972-07-31,926.70,932.72,917.37,924.74,11120000,924.74
-1972-07-28,926.85,933.93,920.15,926.70,13050000,926.70
-1972-07-27,932.57,938.37,923.62,926.85,13870000,926.85
-1972-07-26,934.45,940.92,927.60,932.57,14130000,932.57
-1972-07-25,935.36,946.79,930.24,934.45,17180000,934.45
-1972-07-24,922.19,941.98,922.19,935.36,18020000,935.36
-1972-07-21,910.45,923.24,903.90,920.45,14010000,920.45
-1972-07-20,916.69,919.40,905.55,910.45,15050000,910.45
-1972-07-19,911.72,927.00,909.69,916.69,17880000,916.69
-1972-07-18,914.96,917.97,900.06,911.72,16820000,911.72
-1972-07-17,922.26,928.43,912.70,914.96,13170000,914.96
-1972-07-14,916.99,927.83,911.88,922.26,13910000,922.26
-1972-07-13,923.69,926.02,912.93,916.99,14740000,916.99
-1972-07-12,925.87,934.15,919.33,923.69,16150000,923.69
-1972-07-11,932.27,934.90,921.81,925.87,12830000,925.87
-1972-07-10,938.06,943.03,928.73,932.27,11700000,932.27
-1972-07-07,942.13,948.15,932.34,938.06,12900000,938.06
-1972-07-06,934.90,955.45,934.90,942.13,19520000,942.13
-1972-07-05,928.66,939.64,926.25,933.47,14710000,933.47
-1972-07-03,929.03,935.05,922.71,928.66,8140000,928.66
-1972-06-30,926.25,935.81,921.21,929.03,12860000,929.03
-1972-06-29,930.84,932.95,917.75,926.25,14610000,926.25
-1972-06-28,935.28,938.14,925.80,930.84,12140000,930.84
-1972-06-27,936.41,943.33,928.96,935.28,13750000,935.28
-1972-06-26,942.50,942.50,928.13,936.41,12720000,936.41
-1972-06-23,950.71,957.25,939.27,944.69,13940000,944.69
-1972-06-22,951.61,956.58,940.02,950.71,13410000,950.71
-1972-06-21,948.22,959.96,943.63,951.61,15510000,951.61
-1972-06-20,941.83,952.14,940.10,948.22,14970000,948.22
-1972-06-19,945.06,947.62,935.43,941.83,11660000,941.83
-1972-06-16,945.97,949.88,936.94,945.06,13010000,945.06
-1972-06-15,946.79,956.05,940.25,945.97,16940000,945.97
-1972-06-14,938.29,954.24,936.11,946.79,18320000,946.79
-1972-06-13,936.71,943.33,928.88,938.29,15710000,938.29
-1972-06-12,934.45,943.63,930.39,936.71,13390000,936.71
-1972-06-09,941.30,942.88,930.01,934.45,12790000,934.45
-1972-06-08,944.08,953.19,938.82,941.30,13820000,941.30
-1972-06-07,951.46,952.51,938.52,944.08,15220000,944.08
-1972-06-06,954.39,961.02,946.87,951.46,15980000,951.46
-1972-06-05,961.39,964.48,948.52,954.39,13450000,954.39
-1972-06-02,960.72,967.72,954.24,961.39,15400000,961.39
-1972-06-01,960.72,966.36,954.85,960.72,14910000,960.72
-1972-05-31,970.88,970.88,955.52,960.72,15230000,960.72
-1972-05-30,971.25,979.46,966.51,971.18,15810000,971.18
-1972-05-26,969.07,977.42,963.80,971.25,15730000,971.25
-1972-05-25,965.46,975.54,960.57,969.07,16480000,969.07
-1972-05-24,962.30,973.06,958.76,965.46,17870000,965.46
-1972-05-23,965.31,970.05,956.20,962.30,16410000,962.30
-1972-05-22,961.54,972.00,958.76,965.31,16030000,965.31
-1972-05-19,951.23,967.56,950.11,961.54,19580000,961.54
-1972-05-18,941.15,955.67,939.95,951.23,17370000,951.23
-1972-05-17,939.27,944.61,932.95,941.15,13600000,941.15
-1972-05-16,942.20,947.17,934.83,939.27,14070000,939.27
-1972-05-15,941.83,948.45,936.63,942.20,13600000,942.20
-1972-05-12,934.83,947.40,934.23,941.83,13990000,941.83
-1972-05-11,931.07,941.15,925.87,934.83,12900000,934.83
-1972-05-10,925.12,938.06,922.03,931.07,13870000,931.07
-1972-05-09,937.54,937.54,917.37,925.12,19910000,925.12
-1972-05-08,941.23,943.18,930.01,937.84,11250000,937.84
-1972-05-05,937.31,948.30,932.57,941.23,13210000,941.23
-1972-05-04,933.47,942.43,927.60,937.31,14790000,937.31
-1972-05-03,935.20,947.32,927.90,933.47,15900000,933.47
-1972-05-02,942.28,947.32,930.61,935.20,15370000,935.20
-1972-05-01,954.17,956.95,938.59,942.28,12880000,942.28
-1972-04-28,945.97,959.74,944.46,954.17,14160000,954.17
-1972-04-27,946.94,954.92,940.70,945.97,15740000,945.97
-1972-04-26,946.49,954.39,938.29,946.94,17710000,946.94
-1972-04-25,957.48,959.14,943.63,946.49,17030000,946.49
-1972-04-24,963.80,966.59,950.93,957.48,14650000,957.48
-1972-04-21,966.29,974.64,959.21,963.80,18200000,963.80
-1972-04-20,964.78,971.33,954.17,966.29,18190000,966.29
-1972-04-19,968.92,975.92,959.36,964.78,19180000,964.78
-1972-04-18,966.59,977.72,961.62,968.92,19410000,968.92
-1972-04-17,967.72,972.16,959.36,966.59,15390000,966.59
-1972-04-14,965.53,973.06,959.59,967.72,17460000,967.72
-1972-04-13,966.96,973.28,960.42,965.53,17990000,965.53
-1972-04-12,962.60,976.44,960.64,966.96,24690000,966.96
-1972-04-11,958.08,967.79,951.23,962.60,19930000,962.60
-1972-04-10,962.60,970.57,953.42,958.08,19470000,958.08
-1972-04-07,959.44,965.91,950.26,962.60,19900000,962.60
-1972-04-06,954.55,968.24,951.76,959.44,22830000,959.44
-1972-04-05,943.41,958.99,943.33,954.55,22960000,954.55
-1972-04-04,940.92,948.52,933.62,943.41,18110000,943.41
-1972-04-03,940.70,948.75,935.66,940.92,14990000,940.92
-1972-03-30,933.02,943.78,929.79,940.70,14360000,940.70
-1972-03-29,937.01,940.17,925.87,933.02,13860000,933.02
-1972-03-28,939.72,947.02,932.65,937.01,15380000,937.01
-1972-03-27,942.28,946.57,933.77,939.72,12180000,939.72
-1972-03-24,944.69,950.03,937.91,942.28,15390000,942.28
-1972-03-23,933.93,949.20,932.34,944.69,18380000,944.69
-1972-03-22,934.00,938.59,926.78,933.93,15400000,933.93
-1972-03-21,940.32,940.32,925.95,934.00,18610000,934.00
-1972-03-20,942.88,951.84,937.31,941.15,16420000,941.15
-1972-03-17,936.71,949.88,931.52,942.88,16040000,942.88
-1972-03-16,937.31,942.88,927.68,936.71,16700000,936.71
-1972-03-15,934.00,945.44,929.18,937.31,19460000,937.31
-1972-03-14,928.66,938.82,925.35,934.00,22370000,934.00
-1972-03-13,939.87,941.23,924.22,928.66,16730000,928.66
-1972-03-10,942.81,948.60,932.95,939.87,19690000,939.87
-1972-03-09,945.59,950.78,937.61,942.81,21460000,942.81
-1972-03-08,946.87,953.57,937.09,945.59,21290000,945.59
-1972-03-07,950.18,956.20,940.40,946.87,22640000,946.87
-1972-03-06,942.43,957.03,940.47,950.18,21000000,950.18
-1972-03-03,933.77,948.00,930.69,942.43,20420000,942.43
-1972-03-02,935.43,943.78,927.90,933.77,22200000,933.77
-1972-03-01,928.13,943.03,924.14,935.43,23670000,935.43
-1972-02-29,924.29,932.34,916.24,928.13,20320000,928.13
-1972-02-28,922.79,930.31,917.14,924.29,18200000,924.29
-1972-02-25,912.70,927.75,909.39,922.79,18180000,922.79
-1972-02-24,911.88,919.25,906.61,912.70,16000000,912.70
-1972-02-23,913.46,919.85,906.98,911.88,16770000,911.88
-1972-02-22,917.52,922.86,909.17,913.46,16670000,913.46
-1972-02-18,922.03,925.35,911.12,917.52,16590000,917.52
-1972-02-17,922.94,933.25,916.84,922.03,22330000,922.03
-1972-02-16,914.51,928.58,911.65,922.94,20670000,922.94
-1972-02-15,910.90,920.98,906.46,914.51,17770000,914.51
-1972-02-14,917.59,921.96,906.01,910.90,15840000,910.90
-1972-02-11,921.28,924.82,910.52,917.59,17850000,917.59
-1972-02-10,918.72,931.89,914.89,921.28,23460000,921.28
-1972-02-09,907.13,921.81,905.18,918.72,19850000,918.72
-1972-02-08,903.97,910.97,898.18,907.13,17390000,907.13
-1972-02-07,906.68,913.61,898.93,903.97,16930000,903.97
-1972-02-04,903.15,912.10,897.50,906.68,17890000,906.68
-1972-02-03,905.85,910.97,896.30,903.15,19880000,903.15
-1972-02-02,901.79,913.76,896.15,905.85,24070000,905.85
-1972-02-01,902.17,906.23,894.34,901.79,19600000,901.79
-1972-01-31,906.38,911.20,897.05,902.17,18250000,902.17
-1972-01-28,899.83,913.23,896.60,906.38,25000000,906.38
-1972-01-27,889.15,902.92,887.87,899.83,20360000,899.83
-1972-01-26,894.72,897.65,883.43,889.15,14940000,889.15
-1972-01-25,896.82,902.17,887.49,894.72,17570000,894.72
-1972-01-24,907.44,911.20,893.81,896.82,15640000,896.82
-1972-01-21,910.30,913.91,898.93,907.44,18810000,907.44
-1972-01-20,914.96,922.19,906.76,910.30,20210000,910.30
-1972-01-19,917.22,922.34,904.58,914.96,18800000,914.96
-1972-01-18,911.12,923.99,908.94,917.22,21070000,917.22
-1972-01-17,906.68,914.51,902.77,911.12,15860000,911.12
-1972-01-14,905.18,910.82,899.16,906.68,14960000,906.68
-1972-01-13,910.82,912.93,899.98,905.18,16410000,905.18
-1972-01-12,912.10,922.03,906.01,910.82,20970000,910.82
-1972-01-11,907.96,919.02,903.67,912.10,17970000,912.10
-1972-01-10,910.37,914.43,898.48,907.96,15320000,907.96
-1972-01-07,908.49,916.47,903.37,910.37,17140000,910.37
-1972-01-06,904.43,913.83,901.87,908.49,21100000,908.49
-1972-01-05,893.06,910.07,893.06,904.43,21350000,904.43
-1972-01-04,889.30,897.73,882.75,892.23,15190000,892.23
-1972-01-03,890.20,898.71,884.63,889.30,12570000,889.30
-1971-12-31,889.07,895.77,884.48,890.20,14040000,890.20
-1971-12-30,893.66,898.78,883.05,889.07,13810000,889.07
-1971-12-29,889.98,902.47,886.59,893.66,17150000,893.66
-1971-12-28,881.47,892.84,877.18,889.98,15090000,889.98
-1971-12-27,881.17,889.83,875.68,881.47,11890000,881.47
-1971-12-23,884.86,889.98,873.34,881.17,16000000,881.17
-1971-12-22,888.32,893.81,878.54,884.86,18930000,884.86
-1971-12-21,885.01,896.22,875.30,888.32,20460000,888.32
-1971-12-20,876.28,895.17,876.28,885.01,23810000,885.01
-1971-12-17,871.39,879.29,865.29,873.80,18270000,873.80
-1971-12-16,863.76,878.69,863.26,871.39,21070000,871.39
-1971-12-15,855.14,867.84,849.81,863.76,16890000,863.76
-1971-12-14,858.79,864.92,851.12,855.14,16070000,855.14
-1971-12-13,856.75,868.28,852.22,858.79,17020000,858.79
-1971-12-10,852.15,861.86,847.69,856.75,17510000,856.75
-1971-12-09,854.85,858.43,844.55,852.15,14710000,852.15
-1971-12-08,857.40,861.71,847.91,854.85,16650000,854.85
-1971-12-07,855.72,862.44,845.28,857.40,15250000,857.40
-1971-12-06,859.59,872.59,852.58,855.72,17480000,855.72
-1971-12-03,848.79,864.05,845.58,859.59,16760000,859.59
-1971-12-02,846.01,854.70,837.47,848.79,17780000,848.79
-1971-12-01,831.34,851.85,831.12,846.01,21040000,846.01
-1971-11-30,829.73,837.03,819.22,831.34,18320000,831.34
-1971-11-29,816.59,838.57,815.79,829.73,18910000,829.73
-1971-11-26,799.87,818.12,799.87,816.59,10870000,816.59
-1971-11-24,797.97,807.90,793.88,798.63,11870000,798.63
-1971-11-23,803.15,807.10,790.67,797.97,16840000,797.97
-1971-11-22,810.67,817.03,800.89,803.15,11390000,803.15
-1971-11-19,815.35,817.98,804.83,810.67,12420000,810.67
-1971-11-18,822.14,829.66,813.81,815.35,13010000,815.35
-1971-11-17,818.71,825.79,812.13,822.14,12840000,822.14
-1971-11-16,810.53,823.89,806.59,818.71,13300000,818.71
-1971-11-15,812.94,820.68,806.66,810.53,9370000,810.53
-1971-11-12,814.91,821.12,802.21,812.94,14540000,812.94
-1971-11-11,826.15,827.91,810.82,814.91,13310000,814.91
-1971-11-10,837.91,842.22,821.85,826.15,13410000,826.15
-1971-11-09,837.54,845.72,832.21,837.91,12080000,837.91
-1971-11-08,840.39,843.60,832.51,837.54,8520000,837.54
-1971-11-05,843.17,845.94,832.94,840.39,10780000,840.39
-1971-11-04,842.58,855.21,838.49,843.17,15750000,843.17
-1971-11-03,828.34,845.87,828.34,842.58,14590000,842.58
-1971-11-02,825.86,833.53,814.69,827.98,13330000,827.98
-1971-11-01,839.00,840.25,823.21,825.86,10960000,825.86
-1971-10-29,837.62,843.03,831.85,839.00,11710000,839.00
-1971-10-28,836.38,844.63,827.83,837.62,15530000,837.62
-1971-10-27,845.36,846.31,832.29,836.38,13480000,836.38
-1971-10-26,848.50,857.26,842.95,845.36,13390000,845.36
-1971-10-25,852.37,854.63,843.38,848.50,7340000,848.50
-1971-10-22,854.85,863.90,848.57,852.37,14560000,852.37
-1971-10-21,855.65,861.05,846.45,854.85,14990000,854.85
-1971-10-20,868.43,873.39,851.20,855.65,16340000,855.65
-1971-10-19,872.44,874.34,860.11,868.43,13040000,868.43
-1971-10-18,874.58,880.40,868.87,872.44,10420000,872.44
-1971-10-15,878.36,881.64,868.50,874.58,13120000,874.58
-1971-10-14,888.80,889.16,875.22,878.36,12870000,878.36
-1971-10-13,893.55,897.12,885.22,888.80,13540000,888.80
-1971-10-12,891.94,899.61,888.29,893.55,14340000,893.55
-1971-10-11,893.91,896.39,886.32,891.94,7800000,891.94
-1971-10-08,901.80,902.82,890.55,893.91,13870000,893.91
-1971-10-07,900.55,910.56,896.10,901.80,17780000,901.80
-1971-10-06,891.14,902.38,886.90,900.55,15630000,900.55
-1971-10-05,895.66,898.66,885.81,891.14,12360000,891.14
-1971-10-04,893.98,904.42,892.01,895.66,14570000,895.66
-1971-10-01,887.19,898.44,884.49,893.98,13400000,893.98
-1971-09-30,883.83,894.13,878.14,887.19,13490000,887.19
-1971-09-29,884.42,890.41,877.70,883.83,8580000,883.83
-1971-09-28,883.47,891.50,877.77,884.42,11250000,884.42
-1971-09-27,889.31,891.72,877.48,883.47,10220000,883.47
-1971-09-24,891.28,900.26,886.24,889.31,13460000,889.31
-1971-09-23,893.55,899.39,884.64,891.28,13250000,891.28
-1971-09-22,903.40,904.94,891.72,893.55,14250000,893.55
-1971-09-21,905.15,907.78,897.78,903.40,10640000,903.40
-1971-09-20,908.22,911.29,900.19,905.15,9540000,905.15
-1971-09-17,903.11,912.16,901.07,908.22,11020000,908.22
-1971-09-16,904.86,908.81,898.66,903.11,10550000,903.11
-1971-09-15,901.65,907.71,896.25,904.86,11080000,904.86
-1971-09-14,909.39,911.73,898.58,901.65,11410000,901.65
-1971-09-13,911.00,915.67,903.91,909.39,10000000,909.39
-1971-09-10,915.89,916.84,904.42,911.00,11380000,911.00
-1971-09-09,920.93,925.23,912.38,915.89,15790000,915.89
-1971-09-08,916.47,925.67,911.87,920.93,14230000,920.93
-1971-09-07,912.75,925.67,909.75,916.47,17080000,916.47
-1971-09-03,900.63,914.06,899.53,912.75,14040000,912.75
-1971-09-02,899.02,905.37,893.84,900.63,10690000,900.63
-1971-09-01,898.07,906.25,894.20,899.02,10770000,899.02
-1971-08-31,901.43,903.84,892.01,898.07,10430000,898.07
-1971-08-30,908.15,912.53,898.51,901.43,11140000,901.43
-1971-08-27,906.10,915.45,902.02,908.15,12490000,908.15
-1971-08-26,908.37,914.06,898.88,906.10,13990000,906.10
-1971-08-25,904.13,917.79,901.80,908.37,18280000,908.37
-1971-08-24,892.38,909.02,892.09,904.13,18700000,904.13
-1971-08-23,880.99,897.20,880.99,892.38,13040000,892.38
-1971-08-20,880.77,887.27,874.93,880.91,11890000,880.91
-1971-08-19,886.17,889.68,873.90,880.77,14190000,880.77
-1971-08-18,899.90,901.36,882.08,886.17,20680000,886.17
-1971-08-17,888.95,908.66,885.29,899.90,26790000,899.90
-1971-08-16,882.59,906.32,882.59,888.95,31730000,888.95
-1971-08-13,859.01,864.41,851.64,856.02,9960000,856.02
-1971-08-12,848.57,863.46,848.57,859.01,15910000,859.01
-1971-08-11,839.59,851.12,836.96,846.38,11370000,846.38
-1971-08-10,842.65,846.82,834.92,839.59,9460000,839.59
-1971-08-09,850.61,853.46,839.52,842.65,8110000,842.65
-1971-08-06,849.45,855.94,844.70,850.61,9490000,850.61
-1971-08-05,844.92,855.72,841.19,849.45,12100000,849.45
-1971-08-04,850.03,857.70,840.10,844.92,15410000,844.92
-1971-08-03,864.92,865.87,845.94,850.03,13490000,850.03
-1971-08-02,858.43,871.86,857.70,864.92,11870000,864.92
-1971-07-30,861.42,868.50,854.41,858.43,12970000,858.43
-1971-07-29,872.01,873.03,856.97,861.42,14570000,861.42
-1971-07-28,880.70,882.16,868.36,872.01,13940000,872.01
-1971-07-27,888.87,891.28,877.04,880.70,11560000,880.70
-1971-07-26,887.78,895.15,882.96,888.87,9930000,888.87
-1971-07-23,886.68,893.03,880.33,887.78,12370000,887.78
-1971-07-22,890.84,893.55,882.74,886.68,12570000,886.68
-1971-07-21,892.30,896.54,886.61,890.84,11920000,890.84
-1971-07-20,886.39,896.90,885.15,892.30,12540000,892.30
-1971-07-19,888.51,893.47,879.23,886.39,11430000,886.39
-1971-07-16,888.87,898.73,884.71,888.51,13870000,888.51
-1971-07-15,891.21,901.43,885.00,888.87,13080000,888.87
-1971-07-14,892.38,895.88,882.52,891.21,14360000,891.21
-1971-07-13,903.40,906.47,888.80,892.38,13540000,892.38
-1971-07-12,901.80,908.81,896.47,903.40,12020000,903.40
-1971-07-09,900.99,908.73,896.69,901.80,12640000,901.80
-1971-07-08,895.88,906.10,894.20,900.99,13920000,900.99
-1971-07-07,892.30,903.18,888.87,895.88,14520000,895.88
-1971-07-06,890.19,896.83,885.29,892.30,10440000,892.30
-1971-07-02,893.03,895.52,885.73,890.19,9960000,890.19
-1971-07-01,891.14,899.39,886.24,893.03,13090000,893.03
-1971-06-30,882.30,895.66,881.28,891.14,15410000,891.14
-1971-06-29,873.10,887.63,871.20,882.30,14460000,882.30
-1971-06-28,876.68,879.53,866.82,873.10,9810000,873.10
-1971-06-25,877.26,882.45,870.04,876.68,10580000,876.68
-1971-06-24,879.45,885.44,872.01,877.26,11360000,877.26
-1971-06-23,874.42,886.61,870.04,879.45,12640000,879.45
-1971-06-22,876.53,884.56,866.31,874.42,15200000,874.42
-1971-06-21,889.16,890.48,872.74,876.53,16490000,876.53
-1971-06-18,906.25,906.47,887.63,889.16,15040000,889.16
-1971-06-17,908.59,915.08,902.16,906.25,13980000,906.25
-1971-06-16,907.20,915.52,901.29,908.59,14300000,908.59
-1971-06-15,907.71,915.23,899.39,907.20,13550000,907.20
-1971-06-14,916.47,917.79,904.13,907.71,11530000,907.71
-1971-06-11,915.96,923.70,909.68,916.47,12270000,916.47
-1971-06-10,912.46,921.00,907.78,915.96,12450000,915.96
-1971-06-09,915.01,919.54,905.74,912.46,14250000,912.46
-1971-06-08,923.06,925.89,911.95,915.01,13610000,915.01
-1971-06-07,922.15,928.54,917.44,923.06,13800000,923.06
-1971-06-04,921.30,926.78,915.40,922.15,14400000,922.15
-1971-06-03,919.62,929.60,914.63,921.30,18790000,921.30
-1971-06-02,913.65,925.31,911.96,919.62,17740000,919.62
-1971-06-01,907.81,918.49,903.74,913.65,11930000,913.65
-1971-05-28,905.78,912.24,900.58,907.81,11760000,907.81
-1971-05-27,906.41,911.96,899.94,905.78,12610000,905.78
-1971-05-26,906.69,914.91,901.07,906.41,13550000,906.41
-1971-05-25,913.15,913.86,898.61,906.69,16050000,906.69
-1971-05-24,921.87,923.69,911.05,913.15,12060000,913.15
-1971-05-21,923.41,927.84,917.30,921.87,12090000,921.87
-1971-05-20,920.04,931.42,917.93,923.41,11740000,923.41
-1971-05-19,918.56,926.64,913.93,920.04,17640000,920.04
-1971-05-18,921.30,926.64,909.99,918.56,17640000,918.56
-1971-05-17,935.15,935.15,916.60,921.30,15980000,921.30
-1971-05-14,936.34,942.03,930.37,936.06,16430000,936.06
-1971-05-13,937.46,944.63,928.12,936.34,17640000,936.34
-1971-05-12,937.25,943.86,930.65,937.46,15140000,937.46
-1971-05-11,932.55,943.79,927.63,937.25,17730000,937.25
-1971-05-10,936.97,938.87,925.24,932.55,12810000,932.55
-1971-05-07,937.39,941.96,927.35,936.97,16490000,936.97
-1971-05-06,939.92,948.85,933.53,937.39,19300000,937.39
-1971-05-05,938.45,943.02,929.45,939.92,17270000,939.92
-1971-05-04,932.41,942.38,927.42,938.45,17310000,938.45
-1971-05-03,941.75,942.17,923.83,932.41,16120000,932.41
-1971-04-30,948.15,951.31,936.20,941.75,17490000,941.75
-1971-04-29,950.82,957.35,941.75,948.15,20340000,948.15
-1971-04-28,947.09,958.12,941.82,950.82,24820000,950.82
-1971-04-27,944.00,953.63,935.22,947.09,21250000,947.09
-1971-04-26,947.79,953.20,937.46,944.00,18860000,944.00
-1971-04-23,940.63,952.92,934.87,947.79,20150000,947.79
-1971-04-22,941.33,947.65,932.97,940.63,19270000,940.63
-1971-04-21,944.42,949.20,933.39,941.33,17040000,941.33
-1971-04-20,948.85,952.43,940.49,944.42,17880000,944.42
-1971-04-19,940.21,953.49,939.01,948.85,17730000,948.85
-1971-04-16,938.17,945.55,932.55,940.21,18280000,940.21
-1971-04-15,932.55,945.69,930.44,938.17,22540000,938.17
-1971-04-14,927.28,937.96,921.51,932.55,19440000,932.55
-1971-04-13,926.64,935.99,921.51,927.28,23200000,927.28
-1971-04-12,920.39,932.83,917.02,926.64,19410000,926.64
-1971-04-08,918.49,925.94,911.68,920.39,17590000,920.39
-1971-04-07,912.73,925.59,908.94,918.49,22270000,918.49
-1971-04-06,905.07,917.79,901.77,912.73,19990000,912.73
-1971-04-05,903.04,909.99,897.48,905.07,16040000,905.07
-1971-04-02,903.88,910.06,898.96,903.04,14520000,903.04
-1971-04-01,904.37,910.06,898.75,903.88,13470000,903.88
-1971-03-31,903.39,910.98,898.33,904.37,17610000,904.37
-1971-03-30,903.48,909.99,896.78,903.39,15430000,903.39
-1971-03-29,903.48,909.78,896.29,903.48,13650000,903.48
-1971-03-26,900.81,910.32,895.95,903.48,15560000,903.48
-1971-03-25,899.37,903.96,889.03,900.81,15870000,900.81
-1971-03-24,908.89,910.05,896.77,899.37,15770000,899.37
-1971-03-23,910.60,915.32,902.31,908.89,16470000,908.89
-1971-03-22,912.92,917.78,905.53,910.60,14290000,910.60
-1971-03-19,916.83,921.69,908.61,912.92,15150000,912.92
-1971-03-18,914.02,922.30,910.46,916.83,17910000,916.83
-1971-03-17,914.64,918.06,904.16,914.02,17070000,914.02
-1971-03-16,908.20,920.93,908.06,914.64,22270000,914.64
-1971-03-15,898.34,911.21,895.33,908.20,18920000,908.20
-1971-03-12,899.44,903.14,892.25,898.34,14680000,898.34
-1971-03-11,895.88,906.76,890.81,899.44,19830000,899.44
-1971-03-10,899.10,902.59,891.50,895.88,17220000,895.88
-1971-03-09,898.62,906.15,892.25,899.10,20490000,899.10
-1971-03-08,898.00,905.19,891.43,898.62,19340000,898.62
-1971-03-05,891.36,903.61,889.24,898.00,22430000,898.00
-1971-03-04,882.39,894.92,878.01,891.36,17350000,891.36
-1971-03-03,883.01,888.55,876.85,882.39,14680000,882.39
-1971-03-02,882.53,887.94,875.27,883.01,14870000,883.01
-1971-03-01,878.83,887.46,873.22,882.53,13020000,882.53
-1971-02-26,881.98,886.36,870.55,878.83,17250000,878.83
-1971-02-25,875.62,887.53,871.92,881.98,16200000,881.98
-1971-02-24,870.00,881.37,868.29,875.62,15930000,875.62
-1971-02-23,868.98,875.62,861.99,870.00,15080000,870.00
-1971-02-22,877.05,877.05,863.29,868.98,15840000,868.98
-1971-02-19,885.06,886.50,875.00,878.56,17860000,878.56
-1971-02-18,887.87,891.16,877.67,885.06,16650000,885.06
-1971-02-17,890.06,894.78,879.38,887.87,18720000,887.87
-1971-02-16,888.83,898.14,882.26,890.06,21350000,890.06
-1971-02-12,885.34,894.03,881.30,888.83,18470000,888.83
-1971-02-11,881.09,891.02,878.77,885.34,19260000,885.34
-1971-02-10,879.79,884.99,869.04,881.09,19040000,881.09
-1971-02-09,882.12,889.17,874.79,879.79,28250000,879.79
-1971-02-08,876.57,885.47,870.41,882.12,25590000,882.12
-1971-02-05,874.79,882.67,868.22,876.57,20480000,876.57
-1971-02-04,876.23,880.07,868.29,874.79,20860000,874.79
-1971-02-03,874.59,880.61,866.51,876.23,21680000,876.23
-1971-02-02,877.81,882.39,868.09,874.59,22030000,874.59
-1971-02-01,868.50,882.19,866.03,877.81,20650000,877.81
-1971-01-29,865.14,873.49,860.15,868.50,20960000,868.50
-1971-01-28,860.83,869.11,853.92,865.14,18840000,865.14
-1971-01-27,866.79,867.47,853.85,860.83,20640000,860.83
-1971-01-26,865.62,873.84,859.19,866.79,21380000,866.79
-1971-01-25,861.31,870.48,855.28,865.62,19050000,865.62
-1971-01-22,854.74,866.58,854.46,861.31,21680000,861.31
-1971-01-21,849.95,859.60,845.08,854.74,19060000,854.74
-1971-01-20,849.47,856.24,842.96,849.95,18330000,849.95
-1971-01-19,847.82,853.78,841.87,849.47,15800000,849.47
-1971-01-18,845.70,854.39,841.25,847.82,15400000,847.82
-1971-01-15,843.31,853.37,838.72,845.70,18010000,845.70
-1971-01-14,841.11,849.26,832.97,843.31,17600000,843.31
-1971-01-13,844.19,853.44,835.57,841.11,19070000,841.11
-1971-01-12,837.21,849.19,834.68,844.19,17820000,844.19
-1971-01-11,837.01,841.46,828.31,837.21,14720000,837.21
-1971-01-08,837.83,843.31,831.94,837.01,14100000,837.01
-1971-01-07,837.97,843.78,832.42,837.83,16460000,837.83
-1971-01-06,835.77,843.92,831.67,837.97,16960000,837.97
-1971-01-05,830.57,840.09,827.35,835.77,12600000,835.77
-1971-01-04,838.92,839.06,826.53,830.57,10010000,830.57
-1970-12-31,841.32,844.95,832.56,838.92,13390000,838.92
-1970-12-30,842.00,848.23,836.05,841.32,19140000,841.32
-1970-12-29,830.91,844.19,828.04,842.00,17750000,842.00
-1970-12-28,828.38,834.75,824.07,830.91,12290000,830.91
-1970-12-24,823.11,831.67,820.65,828.38,12140000,828.38
-1970-12-23,822.77,830.16,816.54,823.11,15400000,823.11
-1970-12-22,821.54,828.93,815.65,822.77,14510000,822.77
-1970-12-21,822.77,828.45,815.31,821.54,12690000,821.54
-1970-12-18,822.15,828.79,815.51,822.77,14360000,822.77
-1970-12-17,819.07,826.94,815.85,822.15,13660000,822.15
-1970-12-16,819.62,823.52,810.17,819.07,14240000,819.07
-1970-12-15,823.18,826.12,813.25,819.62,13420000,819.62
-1970-12-14,825.92,832.28,818.66,823.18,13810000,823.18
-1970-12-11,821.06,831.67,818.18,825.92,15790000,825.92
-1970-12-10,815.24,824.75,811.68,821.06,14610000,821.06
-1970-12-09,815.10,819.96,806.27,815.24,13550000,815.24
-1970-12-08,818.66,822.49,809.69,815.10,14370000,815.10
-1970-12-07,816.06,823.59,810.24,818.66,15530000,818.66
-1970-12-04,808.53,819.07,801.34,816.06,15980000,816.06
-1970-12-03,802.64,816.88,801.48,808.53,20480000,808.53
-1970-12-02,794.29,805.72,787.86,802.64,17960000,802.64
-1970-12-01,794.09,805.65,787.45,794.29,20170000,794.29
-1970-11-30,781.35,797.51,780.26,794.09,17700000,794.09
-1970-11-27,774.71,783.61,771.15,781.35,10130000,781.35
-1970-11-25,772.73,780.94,768.48,774.71,13490000,774.71
-1970-11-24,767.52,775.60,762.60,772.73,12560000,772.73
-1970-11-23,761.57,773.41,759.79,767.52,12720000,767.52
-1970-11-20,755.82,764.10,752.19,761.57,10920000,761.57
-1970-11-19,754.24,760.47,749.52,755.82,9280000,755.82
-1970-11-18,760.47,761.77,751.78,754.24,9850000,754.24
-1970-11-17,760.13,768.48,756.37,760.47,9450000,760.47
-1970-11-16,759.79,764.99,752.46,760.13,9160000,760.13
-1970-11-13,767.94,767.94,755.61,759.79,11890000,759.79
-1970-11-12,779.50,781.76,765.88,768.00,12520000,768.00
-1970-11-11,777.38,788.75,776.29,779.50,13520000,779.50
-1970-11-10,777.66,783.00,773.34,777.38,12030000,777.38
-1970-11-09,771.97,782.38,769.85,777.66,10890000,777.66
-1970-11-06,771.56,777.38,765.81,771.97,9970000,771.97
-1970-11-05,770.81,775.94,765.68,771.56,10800000,771.56
-1970-11-04,768.07,777.25,764.92,770.81,12180000,770.81
-1970-11-03,758.01,771.50,756.02,768.07,11760000,768.07
-1970-11-02,755.61,762.25,750.68,758.01,9470000,758.01
-1970-10-30,753.56,759.38,748.36,755.61,10520000,755.61
-1970-10-29,755.96,760.34,749.45,753.56,10440000,753.56
-1970-10-28,754.45,759.31,746.71,755.96,10660000,755.96
-1970-10-27,756.43,759.38,750.21,754.45,9680000,754.45
-1970-10-26,759.38,764.24,753.42,756.43,9200000,756.43
-1970-10-23,757.87,764.03,753.90,759.38,10270000,759.38
-1970-10-22,759.65,763.28,753.22,757.87,9000000,757.87
-1970-10-21,758.83,769.24,756.64,759.65,11330000,759.65
-1970-10-20,756.50,764.03,750.82,758.83,10630000,758.83
-1970-10-19,763.35,766.09,753.29,756.50,9890000,756.50
-1970-10-16,767.87,771.70,759.10,763.35,11300000,763.35
-1970-10-15,762.73,773.27,760.88,767.87,11250000,767.87
-1970-10-14,760.06,767.25,754.72,762.73,9920000,762.73
-1970-10-13,764.24,767.11,754.38,760.06,9500000,760.06
-1970-10-12,768.69,770.47,758.42,764.24,8570000,764.24
-1970-10-09,777.04,780.46,764.72,768.69,13980000,768.69
-1970-10-08,783.68,789.29,773.48,777.04,14500000,777.04
-1970-10-07,782.45,788.47,771.22,783.68,15610000,783.68
-1970-10-06,776.70,791.07,773.62,782.45,20240000,782.45
-1970-10-05,766.16,780.53,763.76,776.70,19760000,776.70
-1970-10-02,760.68,769.72,756.43,766.16,15420000,766.16
-1970-10-01,760.68,764.79,754.38,760.68,9700000,760.68
-1970-09-30,760.88,766.91,754.79,760.68,14830000,760.68
-1970-09-29,758.97,766.09,749.66,760.88,17880000,760.88
-1970-09-28,761.77,764.65,750.68,758.97,14390000,758.97
-1970-09-25,759.31,767.39,754.65,761.77,20470000,761.77
-1970-09-24,754.38,764.99,749.04,759.31,21340000,759.31
-1970-09-23,747.47,762.32,744.25,754.38,16940000,754.38
-1970-09-22,751.92,753.15,741.51,747.47,12110000,747.47
-1970-09-21,758.49,763.96,748.22,751.92,12540000,751.92
-1970-09-18,757.67,766.29,751.92,758.49,15900000,758.49
-1970-09-17,754.31,766.29,751.57,757.67,15530000,757.67
-1970-09-16,750.55,759.45,744.18,754.31,12090000,754.31
-1970-09-15,757.05,757.05,745.14,750.55,9830000,750.55
-1970-09-14,761.84,766.84,751.37,757.12,11900000,757.12
-1970-09-11,760.75,767.32,755.48,761.84,12140000,761.84
-1970-09-10,766.43,768.69,754.65,760.75,11900000,760.75
-1970-09-09,773.14,776.97,759.31,766.43,16250000,766.43
-1970-09-08,771.15,778.27,759.99,773.14,17110000,773.14
-1970-09-04,765.27,775.12,761.91,771.15,15360000,771.15
-1970-09-03,756.64,770.33,755.89,765.27,14110000,765.27
-1970-09-02,758.15,760.13,748.43,756.64,9710000,756.64
-1970-09-01,764.58,766.16,754.93,758.15,10960000,758.15
-1970-08-31,765.81,770.67,759.86,764.58,10740000,764.58
-1970-08-28,759.79,772.04,756.37,765.81,13820000,765.81
-1970-08-27,760.47,766.84,752.53,759.79,12440000,759.79
-1970-08-26,758.97,769.78,755.34,760.47,15970000,760.47
-1970-08-25,759.58,764.17,747.47,758.97,17520000,758.97
-1970-08-24,747.19,765.68,747.19,759.58,18910000,759.58
-1970-08-21,729.60,748.84,728.78,745.41,13420000,745.41
-1970-08-20,723.99,732.82,717.76,729.60,10170000,729.60
-1970-08-19,716.66,728.92,715.09,723.99,9870000,723.99
-1970-08-18,709.47,721.11,709.47,716.66,9500000,716.66
-1970-08-17,710.84,713.92,704.41,709.06,6940000,709.06
-1970-08-14,707.35,715.84,704.75,710.84,7850000,710.84
-1970-08-13,710.64,713.51,702.83,707.35,8640000,707.35
-1970-08-12,712.55,716.87,707.83,710.64,7440000,710.64
-1970-08-11,713.92,716.73,706.39,712.55,7330000,712.55
-1970-08-10,725.01,725.01,709.95,713.92,7580000,713.92
-1970-08-07,722.82,731.93,718.03,725.70,9370000,725.70
-1970-08-06,724.81,728.92,716.86,722.82,7560000,722.82
-1970-08-05,725.90,732.06,719.67,724.81,7660000,724.81
-1970-08-04,722.96,728.85,714.88,725.90,8310000,725.90
-1970-08-03,734.12,734.67,718.65,722.96,7650000,722.96
-1970-07-31,734.73,743.36,728.23,734.12,11640000,734.12
-1970-07-30,735.56,740.07,728.78,734.73,10430000,734.73
-1970-07-29,731.45,742.40,729.39,735.56,12580000,735.56
-1970-07-28,730.08,735.49,724.40,731.45,9040000,731.45
-1970-07-27,730.22,735.01,724.53,730.08,7460000,730.08
-1970-07-24,732.68,736.58,722.96,730.22,9520000,730.22
-1970-07-23,724.67,737.88,718.44,732.68,12460000,732.68
-1970-07-22,722.07,735.01,716.25,724.67,12460000,724.67
-1970-07-21,733.91,734.12,717.96,722.07,9940000,722.07
-1970-07-20,735.08,743.36,728.64,733.91,11660000,733.91
-1970-07-17,725.49,739.46,725.49,735.08,13870000,735.08
-1970-07-16,712.14,730.76,712.14,723.44,12200000,723.44
-1970-07-15,703.04,716.32,699.48,711.66,8860000,711.66
-1970-07-14,702.22,707.69,696.40,703.04,7360000,703.04
-1970-07-13,700.10,709.34,696.19,702.22,7450000,702.22
-1970-07-10,692.77,704.41,689.69,700.10,10160000,700.10
-1970-07-09,682.09,697.63,681.48,692.77,12820000,692.77
-1970-07-08,669.36,684.08,666.00,682.09,10970000,682.09
-1970-07-07,675.66,679.90,665.32,669.36,10470000,669.36
-1970-07-06,689.14,689.90,671.69,675.66,9340000,675.66
-1970-07-02,687.64,697.02,684.76,689.14,8440000,689.14
-1970-07-01,683.53,692.02,678.26,687.64,8610000,687.64
-1970-06-30,682.91,692.36,679.08,683.53,9280000,683.53
-1970-06-29,687.84,691.13,679.15,682.91,8770000,682.91
-1970-06-26,693.59,700.51,686.06,687.84,9160000,687.84
-1970-06-25,692.29,701.60,686.40,693.59,8200000,693.59
-1970-06-24,698.11,705.37,685.31,692.29,12630000,692.29
-1970-06-23,716.11,716.66,696.40,698.11,10790000,698.11
-1970-06-22,720.43,723.17,707.15,716.11,8700000,716.11
-1970-06-19,713.65,728.23,713.65,720.43,10980000,720.43
-1970-06-18,704.68,718.92,696.95,712.69,8870000,712.69
-1970-06-17,706.26,715.36,699.55,704.68,9870000,704.68
-1970-06-16,687.36,711.80,686.88,706.26,11330000,706.26
-1970-06-15,684.21,694.82,679.83,687.36,6920000,687.36
-1970-06-12,684.42,688.66,674.90,684.21,8890000,684.21
-1970-06-11,694.35,695.44,677.85,684.42,7770000,684.42
-1970-06-10,700.16,703.24,690.03,694.35,7240000,694.35
-1970-06-09,700.23,705.64,695.17,700.16,7050000,700.16
-1970-06-08,695.03,709.75,689.83,700.23,8040000,700.23
-1970-06-05,706.53,707.56,687.91,695.03,12450000,695.03
-1970-06-04,713.86,723.92,704.41,706.53,14380000,706.53
-1970-06-03,709.61,721.73,702.22,713.86,16600000,713.86
-1970-06-02,710.36,719.13,698.32,709.61,13480000,709.61
-1970-06-01,700.44,715.64,694.14,710.36,15020000,710.36
-1970-05-29,684.15,703.86,673.06,700.44,14630000,700.44
-1970-05-28,666.96,690.92,666.96,684.15,18910000,684.15
-1970-05-27,631.98,668.81,631.98,663.20,17460000,663.20
-1970-05-26,641.36,649.64,627.46,631.16,17030000,631.16
-1970-05-25,660.80,660.80,639.10,641.36,12660000,641.36
-1970-05-22,665.25,675.11,653.27,662.17,12170000,662.17
-1970-05-21,676.55,676.62,654.37,665.25,16710000,665.25
-1970-05-20,690.72,690.72,674.56,676.55,13020000,676.55
-1970-05-19,702.81,704.20,689.62,691.40,9480000,691.40
-1970-05-18,702.22,709.74,695.35,702.81,8280000,702.81
-1970-05-15,684.79,705.58,680.37,702.22,14570000,702.22
-1970-05-14,693.57,693.57,673.51,684.79,13920000,684.79
-1970-05-13,703.80,703.80,686.64,693.84,10720000,693.84
-1970-05-12,710.07,715.15,699.31,704.59,10850000,704.59
-1970-05-11,717.73,721.03,707.04,710.07,6650000,710.07
-1970-05-08,723.07,725.51,713.04,717.73,6930000,717.73
-1970-05-07,718.39,730.33,713.37,723.07,9530000,723.07
-1970-05-06,709.74,731.19,707.76,718.39,14380000,718.39
-1970-05-05,714.56,720.63,704.46,709.74,10580000,709.74
-1970-05-04,732.38,732.38,710.40,714.56,11450000,714.56
-1970-05-01,736.07,740.76,723.60,733.63,8290000,733.63
-1970-04-30,737.39,745.58,728.48,736.07,9880000,736.07
-1970-04-29,724.33,740.03,716.74,737.39,15800000,737.39
-1970-04-28,735.15,740.76,720.70,724.33,12620000,724.33
-1970-04-27,747.29,750.46,731.72,735.15,10240000,735.15
-1970-04-24,750.59,754.42,742.21,747.29,10410000,747.29
-1970-04-23,760.63,760.63,745.45,750.59,11050000,750.59
-1970-04-22,772.51,774.35,758.51,762.61,10780000,762.61
-1970-04-21,775.87,783.00,769.87,772.51,8490000,772.51
-1970-04-20,775.94,780.56,769.67,775.87,8280000,775.87
-1970-04-17,775.87,781.22,766.96,775.94,10990000,775.94
-1970-04-16,782.60,787.22,773.03,775.87,10250000,775.87
-1970-04-15,780.56,788.87,777.06,782.60,9410000,782.60
-1970-04-14,785.90,787.35,772.90,780.56,10840000,780.56
-1970-04-13,790.46,793.82,782.07,785.90,8810000,785.90
-1970-04-10,792.50,797.25,785.04,790.46,10020000,790.46
-1970-04-09,791.64,798.84,786.96,792.50,9060000,792.50
-1970-04-08,791.64,796.00,787.42,791.64,9070000,791.64
-1970-04-07,791.18,797.12,785.70,791.64,8490000,791.64
-1970-04-06,791.84,796.07,786.30,791.18,8380000,791.18
-1970-04-03,792.37,796.40,787.02,791.84,9920000,791.84
-1970-04-02,792.04,797.91,787.02,792.37,10520000,792.37
-1970-04-01,785.57,795.67,784.05,792.04,9810000,792.04
-1970-03-31,784.65,789.20,778.38,785.57,8370000,785.57
-1970-03-30,791.05,792.37,779.17,784.65,9600000,784.65
-1970-03-26,790.13,797.45,785.24,791.05,11350000,791.05
-1970-03-25,775.67,803.26,775.67,790.13,17500000,790.13
-1970-03-24,764.52,776.99,764.52,773.76,8840000,773.76
-1970-03-23,763.66,768.41,757.99,763.60,7330000,763.60
-1970-03-20,764.98,768.55,758.91,763.66,7910000,763.66
-1970-03-19,767.95,773.76,761.55,764.98,8930000,764.98
-1970-03-18,767.42,775.67,763.93,767.95,9790000,767.95
-1970-03-17,765.05,773.36,759.17,767.42,9090000,767.42
-1970-03-16,772.11,772.84,760.16,765.05,8910000,765.05
-1970-03-13,776.47,779.30,768.02,772.11,9560000,772.11
-1970-03-12,778.12,781.55,771.77,776.47,9140000,776.47
-1970-03-11,779.70,785.84,774.29,778.12,9180000,778.12
-1970-03-10,778.31,785.37,772.18,779.70,9450000,779.70
-1970-03-09,784.12,785.57,773.56,778.31,9760000,778.31
-1970-03-06,787.55,789.93,779.37,784.12,10980000,784.12
-1970-03-05,788.15,795.54,783.13,787.55,11370000,787.55
-1970-03-04,787.42,795.54,782.27,788.15,11850000,788.15
-1970-03-03,780.23,790.52,775.08,787.42,11700000,787.42
-1970-03-02,777.59,790.52,774.49,780.23,12270000,780.23
-1970-02-27,764.45,784.19,762.61,777.59,12890000,777.59
-1970-02-26,768.28,770.53,755.48,764.45,11540000,764.45
-1970-02-25,754.42,772.70,749.47,768.28,13210000,768.28
-1970-02-24,757.46,761.68,748.88,754.42,10810000,754.42
-1970-02-20,757.92,764.45,749.34,757.46,10790000,757.46
-1970-02-19,756.80,766.90,751.58,757.92,12890000,757.92
-1970-02-18,747.43,762.61,745.45,756.80,11950000,756.80
-1970-02-17,753.70,757.13,741.09,747.43,10140000,747.43
-1970-02-16,753.30,761.09,748.02,753.70,19780000,753.70
-1970-02-13,755.61,758.65,745.97,753.30,11060000,753.30
-1970-02-12,757.33,762.28,748.88,755.61,10010000,755.61
-1970-02-11,746.63,760.69,739.90,757.33,12260000,757.33
-1970-02-10,755.68,758.51,743.20,746.63,10110000,746.63
-1970-02-09,752.77,764.92,750.40,755.68,10830000,755.68
-1970-02-06,750.26,758.71,744.98,752.77,10150000,752.77
-1970-02-05,754.49,756.73,743.33,750.26,9430000,750.26
-1970-02-04,757.46,765.97,748.09,754.49,11040000,754.49
-1970-02-03,746.44,764.45,738.78,757.46,16050000,757.46
-1970-02-02,744.06,756.47,739.37,746.44,13440000,746.44
-1970-01-30,748.35,756.20,739.11,744.06,12320000,744.06
-1970-01-29,758.84,760.69,743.73,748.35,12210000,748.35
-1970-01-28,763.99,769.87,755.74,758.84,10510000,758.84
-1970-01-27,768.88,773.03,757.92,763.99,9630000,763.99
-1970-01-26,775.54,777.52,762.54,768.88,10670000,768.88
-1970-01-23,786.10,789.40,774.35,775.54,11000000,775.54
-1970-01-22,782.27,793.16,777.39,786.10,11050000,786.10
-1970-01-21,777.85,788.61,773.96,782.27,9880000,782.27
-1970-01-20,776.07,783.13,770.72,777.85,11050000,777.85
-1970-01-19,782.60,784.52,772.18,776.07,9500000,776.07
-1970-01-16,785.04,791.97,778.25,782.60,11940000,782.60
-1970-01-15,787.16,791.25,777.98,785.04,11120000,785.04
-1970-01-14,788.01,796.73,780.36,787.16,10380000,787.16
-1970-01-13,790.52,796.79,782.47,788.01,9870000,788.01
-1970-01-12,798.11,799.23,786.30,790.52,8900000,790.52
-1970-01-09,802.07,805.70,794.35,798.11,9380000,798.11
-1970-01-08,801.81,809.33,796.92,802.07,10670000,802.07
-1970-01-07,803.66,808.47,796.20,801.81,10010000,801.81
-1970-01-06,811.31,814.08,798.71,803.66,11460000,803.66
-1970-01-05,809.20,819.23,804.84,811.31,11490000,811.31
-1970-01-02,800.36,813.56,797.32,809.20,8050000,809.20
-1969-12-31,794.68,806.69,792.24,800.36,19380000,800.36
-1969-12-30,792.37,799.63,786.30,794.68,15790000,794.68
-1969-12-29,797.65,803.19,787.62,792.37,12500000,792.37
-1969-12-26,794.15,802.47,790.85,797.65,6750000,797.65
-1969-12-24,783.79,799.63,782.67,794.15,11670000,794.15
-1969-12-23,785.97,789.66,776.27,783.79,13890000,783.79
-1969-12-22,789.86,796.13,781.48,785.97,12680000,785.97
-1969-12-19,783.79,798.18,780.76,789.86,15420000,789.86
-1969-12-18,769.93,788.87,764.45,783.79,15950000,783.79
-1969-12-17,773.83,780.16,765.71,769.93,12840000,769.93
-1969-12-16,784.05,787.42,770.46,773.83,11880000,773.83
-1969-12-15,786.69,791.97,779.63,784.05,11100000,784.05
-1969-12-12,783.53,794.61,780.23,786.69,11630000,786.69
-1969-12-11,783.99,791.25,778.38,783.53,10430000,783.53
-1969-12-10,783.79,791.51,773.76,783.99,12590000,783.99
-1969-12-09,785.04,794.42,778.18,783.79,12290000,783.79
-1969-12-08,793.03,797.32,781.48,785.04,9990000,785.04
-1969-12-05,796.53,804.05,788.94,793.03,11150000,793.03
-1969-12-04,793.36,801.15,783.86,796.53,13230000,796.53
-1969-12-03,801.35,804.78,789.93,793.36,11300000,793.36
-1969-12-02,805.04,808.34,794.94,801.35,9940000,801.35
-1969-12-01,812.30,816.39,802.20,805.04,9950000,805.04
-1969-11-28,810.52,818.57,805.37,812.30,8550000,812.30
-1969-11-26,807.29,814.15,800.36,810.52,10630000,810.52
-1969-11-25,812.90,818.37,803.92,807.29,11560000,807.29
-1969-11-24,823.13,825.96,808.01,812.90,10940000,812.90
-1969-11-21,831.18,832.43,820.35,823.13,9840000,823.13
-1969-11-20,839.96,840.28,823.98,831.18,12010000,831.18
-1969-11-19,845.17,848.60,835.93,839.96,11240000,839.96
-1969-11-18,842.53,848.67,836.99,845.17,11010000,845.17
-1969-11-17,849.26,851.04,837.45,842.53,10120000,842.53
-1969-11-14,849.85,854.74,842.00,849.26,10580000,849.26
-1969-11-13,855.99,858.90,844.64,849.85,12090000,849.85
-1969-11-12,859.75,863.98,851.70,855.99,12480000,855.99
-1969-11-11,863.05,866.62,853.62,859.75,10080000,859.75
-1969-11-10,860.48,871.77,856.65,863.05,12490000,863.05
-1969-11-07,855.20,867.28,850.38,860.48,13280000,860.48
-1969-11-06,854.08,859.82,846.49,855.20,11110000,855.20
-1969-11-05,853.48,862.59,847.54,854.08,12110000,854.08
-1969-11-04,854.54,859.82,841.67,853.48,12340000,853.48
-1969-11-03,855.99,860.68,847.41,854.54,11140000,854.54
-1969-10-31,850.51,860.61,845.04,855.99,13100000,855.99
-1969-10-30,848.34,854.28,839.82,850.51,12820000,850.51
-1969-10-29,855.86,858.83,845.37,848.34,12380000,848.34
-1969-10-28,860.28,865.23,851.90,855.86,12410000,855.86
-1969-10-27,862.26,866.95,852.56,860.28,12160000,860.28
-1969-10-24,855.73,868.00,851.31,862.26,15430000,862.26
-1969-10-23,860.35,863.38,845.23,855.73,14780000,855.73
-1969-10-22,846.88,864.37,844.90,860.35,19320000,860.35
-1969-10-21,839.23,850.78,834.94,846.88,16460000,846.88
-1969-10-20,836.06,844.18,829.59,839.23,13540000,839.23
-1969-10-17,838.77,845.23,829.73,836.06,13740000,836.06
-1969-10-16,830.06,848.14,825.50,838.77,19500000,838.77
-1969-10-15,832.43,837.12,823.13,830.06,15740000,830.06
-1969-10-14,821.21,839.49,821.21,832.43,19950000,832.43
-1969-10-13,806.96,820.88,804.51,819.30,13620000,819.30
-1969-10-10,803.79,813.23,799.89,806.96,12210000,806.96
-1969-10-09,802.20,808.94,793.95,803.79,10420000,803.79
-1969-10-08,806.23,809.79,797.65,802.20,10370000,802.20
-1969-10-07,809.40,813.23,803.13,806.23,10050000,806.23
-1969-10-06,808.41,814.94,802.73,809.40,9180000,809.40
-1969-10-03,811.84,819.76,803.59,808.41,12410000,808.41
-1969-10-02,806.89,815.87,797.78,811.84,11430000,811.84
-1969-10-01,813.09,814.48,803.37,806.89,9090000,806.89
-1969-09-30,818.04,821.67,808.54,813.09,9180000,813.09
-1969-09-29,824.18,826.03,811.05,818.04,10170000,818.04
-1969-09-26,829.92,832.83,820.09,824.18,9680000,824.18
-1969-09-25,834.68,838.50,826.49,829.92,10690000,829.92
-1969-09-24,834.81,840.48,829.53,834.68,11320000,834.68
-1969-09-23,831.77,841.80,827.28,834.81,13030000,834.81
-1969-09-22,830.39,835.80,823.79,831.77,9280000,831.77
-1969-09-19,831.57,837.32,825.30,830.39,12270000,830.39
-1969-09-18,826.56,836.66,822.80,831.57,11170000,831.57
-1969-09-17,831.64,835.47,821.61,826.56,10980000,826.56
-1969-09-16,830.45,836.85,824.84,831.64,11160000,831.64
-1969-09-15,824.25,835.73,821.28,830.45,10680000,830.45
-1969-09-12,825.77,830.65,818.37,824.25,10800000,824.25
-1969-09-11,828.01,838.50,821.94,825.77,12370000,825.77
-1969-09-10,815.67,831.71,813.69,828.01,11490000,828.01
-1969-09-09,811.84,822.20,804.45,815.67,10980000,815.67
-1969-09-08,819.50,820.55,808.67,811.84,8310000,811.84
-1969-09-05,825.30,826.82,816.46,819.50,8890000,819.50
-1969-09-04,835.67,835.67,822.20,825.30,9380000,825.30
-1969-09-03,837.78,841.61,829.86,835.67,8760000,835.67
-1969-09-02,836.72,845.96,831.31,837.78,8560000,837.78
-1969-08-29,828.41,839.96,825.37,836.72,8850000,836.72
-1969-08-28,824.78,832.23,822.14,828.41,7730000,828.41
-1969-08-27,823.52,830.39,819.43,824.78,9100000,824.78
-1969-08-26,830.39,830.39,818.84,823.52,8910000,823.52
-1969-08-25,837.25,841.54,828.01,831.44,8410000,831.44
-1969-08-22,834.87,843.72,829.33,837.25,10140000,837.25
-1969-08-21,833.22,839.69,828.60,834.87,8420000,834.87
-1969-08-20,833.69,837.91,827.55,833.22,9680000,833.22
-1969-08-19,827.68,841.28,824.97,833.69,12640000,833.69
-1969-08-18,820.88,830.39,816.46,827.68,9420000,827.68
-1969-08-15,813.23,825.17,810.52,820.88,10210000,820.88
-1969-08-14,809.13,818.11,805.37,813.23,9690000,813.23
-1969-08-13,812.96,815.07,800.62,809.13,9910000,809.13
-1969-08-12,819.83,821.54,810.39,812.96,7870000,812.96
-1969-08-11,824.46,826.76,816.33,819.83,6680000,819.83
-1969-08-08,826.27,830.27,819.87,824.46,8760000,824.46
-1969-08-07,825.88,832.02,820.26,826.27,9450000,826.27
-1969-08-06,821.23,831.63,817.67,825.88,11100000,825.88
-1969-08-05,822.58,827.30,813.40,821.23,8940000,821.23
-1969-08-04,826.59,835.06,817.61,822.58,10700000,822.58
-1969-08-01,815.60,833.63,815.60,826.59,15070000,826.59
-1969-07-31,803.58,819.87,800.67,815.47,14160000,815.47
-1969-07-30,801.96,809.40,788.07,803.58,15580000,803.58
-1969-07-29,806.23,817.86,798.41,801.96,13630000,801.96
-1969-07-28,818.06,819.48,803.26,806.23,11800000,806.23
-1969-07-25,826.53,830.08,814.83,818.06,9800000,818.06
-1969-07-24,827.95,834.22,821.10,826.53,9750000,826.53
-1969-07-23,834.02,836.48,821.35,827.95,11680000,827.95
-1969-07-22,845.92,851.54,831.76,834.02,9780000,834.02
-1969-07-18,853.09,853.54,839.06,845.92,8590000,845.92
-1969-07-17,849.34,863.04,845.79,853.09,10450000,853.09
-1969-07-16,841.13,854.64,840.29,849.34,10470000,849.34
-1969-07-15,843.14,847.60,832.79,841.13,11110000,841.13
-1969-07-14,852.25,855.93,841.07,843.14,8310000,843.14
-1969-07-11,847.79,858.91,844.49,852.25,11730000,852.25
-1969-07-10,861.04,861.04,844.30,847.79,11450000,847.79
-1969-07-09,870.35,871.06,857.94,861.62,9320000,861.62
-1969-07-08,880.82,880.82,866.47,870.35,9320000,870.35
-1969-07-07,886.12,893.87,879.27,883.21,9970000,883.21
-1969-07-03,880.69,891.55,877.71,886.12,10110000,886.12
-1969-07-02,875.90,884.69,872.87,880.69,11350000,880.69
-1969-07-01,873.19,881.27,867.83,875.90,9890000,875.90
-1969-06-30,869.76,880.69,867.18,873.19,8640000,873.19
-1969-06-27,870.28,876.49,863.56,869.76,9020000,869.76
-1969-06-26,874.10,876.16,862.78,870.28,10310000,870.28
-1969-06-25,877.20,884.69,870.41,874.10,10490000,874.10
-1969-06-24,870.86,883.73,869.25,877.20,11460000,877.20
-1969-06-23,876.16,880.75,862.46,870.86,12900000,870.86
-1969-06-20,882.37,888.77,873.32,876.16,11360000,876.16
-1969-06-19,887.09,889.54,877.46,882.37,11160000,882.37
-1969-06-18,885.73,897.10,882.30,887.09,11290000,887.09
-1969-06-17,891.16,893.29,876.55,885.73,12210000,885.73
-1969-06-16,894.84,902.79,888.83,891.16,10400000,891.16
-1969-06-13,892.58,902.28,886.89,894.84,13070000,894.84
-1969-06-12,904.60,906.22,890.71,892.58,11790000,892.58
-1969-06-11,912.49,913.39,899.24,904.60,13640000,904.60
-1969-06-10,918.05,922.83,909.32,912.49,10660000,912.49
-1969-06-09,924.77,925.48,911.91,918.05,10650000,918.05
-1969-06-06,930.71,936.14,921.41,924.77,12520000,924.77
-1969-06-05,928.84,937.24,925.35,930.71,12350000,930.71
-1969-06-04,930.78,936.47,925.87,928.84,10840000,928.84
-1969-06-03,933.17,937.56,925.74,930.78,11190000,930.78
-1969-06-02,937.56,938.73,927.68,933.17,9180000,933.17
-1969-05-29,936.92,944.29,931.62,937.56,11770000,937.56
-1969-05-28,938.66,941.96,928.58,936.92,11330000,936.92
-1969-05-27,946.94,950.23,934.33,938.66,10580000,938.66
-1969-05-26,947.45,954.05,942.22,946.94,9030000,946.94
-1969-05-23,950.04,953.92,942.48,947.45,10900000,947.45
-1969-05-22,951.78,963.09,946.10,950.04,13710000,950.04
-1969-05-21,949.26,956.18,941.31,951.78,12100000,951.78
-1969-05-20,959.02,959.86,944.35,949.26,10280000,949.26
-1969-05-19,967.30,968.98,954.56,959.02,9790000,959.02
-1969-05-16,965.16,971.56,959.80,967.30,12280000,967.30
-1969-05-15,968.85,973.18,958.51,965.16,11930000,965.16
-1969-05-14,962.97,974.92,959.86,968.85,14360000,968.85
-1969-05-13,957.86,967.62,954.37,962.97,12910000,962.97
-1969-05-12,961.61,964.97,951.14,957.86,10550000,957.86
-1969-05-09,963.68,971.11,955.86,961.61,12530000,961.61
-1969-05-08,959.60,970.14,954.76,963.68,13050000,963.68
-1969-05-07,962.06,967.36,953.08,959.60,14030000,959.60
-1969-05-06,958.95,968.23,954.05,962.06,14700000,962.06
-1969-05-05,957.17,965.43,951.07,958.95,13300000,958.95
-1969-05-02,949.22,961.68,945.41,957.17,13070000,957.17
-1969-05-01,950.18,958.69,942.74,949.22,14380000,949.22
-1969-04-30,934.10,956.28,933.97,950.18,19350000,950.18
-1969-04-29,925.08,937.60,922.28,934.10,14730000,934.10
-1969-04-28,924.00,930.73,917.13,925.08,11120000,925.08
-1969-04-25,921.20,929.65,916.24,924.00,12480000,924.00
-1969-04-24,917.64,925.65,911.60,921.20,11340000,921.20
-1969-04-23,918.59,927.43,913.13,917.64,12220000,917.64
-1969-04-22,917.51,922.09,908.81,918.59,10250000,918.59
-1969-04-21,924.82,928.19,913.76,917.51,10010000,917.51
-1969-04-18,924.12,932.26,916.94,924.82,10850000,924.82
-1969-04-17,923.49,930.80,917.90,924.12,9360000,924.12
-1969-04-16,931.94,932.89,920.69,923.49,9680000,923.49
-1969-04-15,932.64,937.28,924.63,931.94,9610000,931.94
-1969-04-14,933.46,938.36,926.73,932.64,8990000,932.64
-1969-04-11,932.89,939.12,927.17,933.46,10650000,933.46
-1969-04-10,929.97,941.28,927.87,932.89,12200000,932.89
-1969-04-09,923.17,933.59,920.63,929.97,12530000,929.97
-1969-04-08,918.78,927.81,913.89,923.17,9360000,923.17
-1969-04-07,926.09,926.09,911.03,918.78,9430000,918.78
-1969-04-03,930.92,933.66,921.39,927.30,10300000,927.30
-1969-04-02,933.08,936.90,924.57,930.92,10110000,930.92
-1969-04-01,935.48,942.23,928.38,933.08,12360000,933.08
-1969-03-28,930.88,941.38,928.02,935.48,12430000,935.48
-1969-03-27,923.30,936.16,921.74,930.88,11900000,930.88
-1969-03-26,917.08,926.84,914.72,923.30,11030000,923.30
-1969-03-25,917.08,923.05,911.30,917.08,9820000,917.08
-1969-03-24,920.00,924.04,912.48,917.08,8110000,917.08
-1969-03-21,920.13,926.16,913.35,920.00,9830000,920.00
-1969-03-20,912.11,924.79,911.24,920.13,10260000,920.13
-1969-03-19,907.38,917.52,903.53,912.11,9740000,912.11
-1969-03-18,904.03,913.97,902.16,907.38,11210000,907.38
-1969-03-17,904.28,909.00,895.76,904.03,9150000,904.03
-1969-03-14,907.14,911.36,899.55,904.28,8640000,904.28
-1969-03-13,916.77,916.77,903.97,907.14,10030000,907.14
-1969-03-12,920.93,926.22,912.67,917.52,8720000,917.52
-1969-03-11,917.14,928.77,914.53,920.93,9870000,920.93
-1969-03-10,911.18,920.87,906.51,917.14,8920000,917.14
-1969-03-07,913.54,914.59,900.67,911.18,10830000,911.18
-1969-03-06,923.11,923.79,908.94,913.54,9670000,913.54
-1969-03-05,919.51,929.89,916.65,923.11,11370000,923.11
-1969-03-04,908.63,922.55,908.50,919.51,9320000,919.51
-1969-03-03,905.21,914.04,902.04,908.63,8260000,908.63
-1969-02-28,903.03,911.74,900.17,905.21,8990000,905.21
-1969-02-27,905.77,908.88,897.07,903.03,9670000,903.03
-1969-02-26,899.80,912.11,895.39,905.77,9540000,905.77
-1969-02-25,903.97,914.41,896.32,899.80,9540000,899.80
-1969-02-24,916.65,918.95,900.17,903.97,12730000,903.97
-1969-02-20,925.10,928.46,913.04,916.65,10990000,916.65
-1969-02-19,930.82,936.91,923.23,925.10,10390000,925.10
-1969-02-18,937.53,937.53,923.11,930.82,12490000,930.82
-1969-02-17,951.95,954.87,935.11,937.72,11670000,937.72
-1969-02-14,952.70,959.16,945.67,951.95,11460000,951.95
-1969-02-13,949.09,957.73,942.57,952.70,12010000,952.70
-1969-02-12,948.97,954.00,942.81,949.09,11530000,949.09
-1969-02-11,947.85,954.00,941.94,948.97,12320000,948.97
-1969-02-07,946.67,954.00,940.39,947.85,12780000,947.85
-1969-02-06,945.98,954.07,939.46,946.67,12570000,946.67
-1969-02-05,945.11,952.32,938.53,945.98,13750000,945.98
-1969-02-04,946.85,951.27,938.59,945.11,12550000,945.11
-1969-02-03,946.05,953.01,936.41,946.85,12510000,946.85
-1969-01-31,942.13,950.71,937.28,946.05,12020000,946.05
-1969-01-30,938.09,947.23,934.36,942.13,13010000,942.13
-1969-01-29,938.40,943.62,931.94,938.09,11470000,938.09
-1969-01-28,937.47,944.49,930.88,938.40,12070000,938.40
-1969-01-27,938.59,944.37,932.00,937.47,11020000,937.47
-1969-01-24,940.20,946.85,932.93,938.59,12520000,938.59
-1969-01-23,934.17,945.98,932.56,940.20,13140000,940.20
-1969-01-22,929.82,938.46,925.16,934.17,11480000,934.17
-1969-01-21,931.25,936.29,923.92,929.82,10910000,929.82
-1969-01-20,935.54,939.40,927.09,931.25,10950000,931.25
-1969-01-17,938.59,944.06,930.20,935.54,11590000,935.54
-1969-01-16,931.75,945.55,930.07,938.59,13120000,938.59
-1969-01-15,928.33,940.51,924.23,931.75,11810000,931.75
-1969-01-14,923.11,931.56,918.32,928.33,10700000,928.33
-1969-01-13,925.53,930.63,917.14,923.11,11160000,923.11
-1969-01-10,927.46,937.22,921.31,925.53,12680000,925.53
-1969-01-09,921.25,935.67,918.64,927.46,12100000,927.46
-1969-01-08,925.72,932.19,915.53,921.25,13840000,921.25
-1969-01-07,936.66,939.33,915.84,925.72,15740000,925.72
-1969-01-06,951.89,956.05,932.93,936.66,12720000,936.66
-1969-01-03,947.73,960.16,942.94,951.89,12750000,951.89
-1969-01-02,943.75,956.36,940.39,947.73,9800000,947.73
-1968-12-31,945.11,950.46,936.66,943.75,13130000,943.75
-1968-12-30,952.51,955.87,938.90,945.11,12080000,945.11
-1968-12-27,954.25,961.96,947.54,952.51,11200000,952.51
-1968-12-26,952.32,961.52,948.47,954.25,9670000,954.25
-1968-12-24,953.75,961.28,945.11,952.32,11540000,952.32
-1968-12-23,966.99,969.05,949.47,953.75,12970000,953.75
-1968-12-20,975.14,983.90,962.83,966.99,15910000,966.99
-1968-12-19,970.91,980.11,954.62,975.14,19630000,975.14
-1968-12-17,976.32,978.80,962.46,970.91,14700000,970.91
-1968-12-16,981.29,989.12,970.60,976.32,15950000,976.32
-1968-12-13,977.13,990.99,972.03,981.29,16740000,981.29
-1968-12-12,977.69,987.20,969.05,977.13,18160000,977.13
-1968-12-10,979.36,986.01,971.06,977.69,14500000,977.69
-1968-12-09,978.24,987.01,971.41,979.36,15800000,979.36
-1968-12-06,977.69,986.39,970.10,978.24,15320000,978.24
-1968-12-05,985.21,989.31,969.67,977.69,19330000,977.69
-1968-12-03,983.34,990.99,973.83,985.21,15460000,985.21
-1968-12-02,985.08,994.65,974.76,983.34,15390000,983.34
-1968-11-29,976.32,989.56,971.59,985.08,14390000,985.08
-1968-11-27,979.49,984.96,969.17,976.32,16550000,976.32
-1968-11-26,971.35,986.20,969.11,979.49,16360000,979.49
-1968-11-25,967.06,977.13,961.46,971.35,14490000,971.35
-1968-11-22,965.13,973.89,958.23,967.06,15420000,967.06
-1968-11-21,966.75,971.35,953.69,965.13,18320000,965.13
-1968-11-19,963.70,972.40,957.48,966.75,15120000,966.75
-1968-11-18,965.88,970.85,957.11,963.70,14390000,963.70
-1968-11-15,963.89,972.59,956.24,965.88,15040000,965.88
-1968-11-14,967.43,972.90,957.86,963.89,14900000,963.89
-1968-11-13,964.20,973.83,958.98,967.43,15660000,967.43
-1968-11-12,958.98,972.15,953.75,964.20,17250000,964.20
-1968-11-08,950.65,965.07,947.41,958.98,14250000,958.98
-1968-11-07,949.47,957.55,938.59,950.65,11660000,950.65
-1968-11-06,946.23,959.97,941.01,949.47,12640000,949.47
-1968-11-04,948.41,952.01,936.54,946.23,10930000,946.23
-1968-11-01,952.39,961.15,941.88,948.41,14480000,948.41
-1968-10-31,951.08,965.00,944.06,952.39,17650000,952.39
-1968-10-29,957.73,961.96,945.67,951.08,12340000,951.08
-1968-10-28,961.28,966.50,951.45,957.73,11740000,957.73
-1968-10-25,956.68,966.81,950.96,961.28,14150000,961.28
-1968-10-24,963.14,967.37,949.34,956.68,18300000,956.68
-1968-10-22,967.49,970.41,957.92,963.14,13970000,963.14
-1968-10-21,967.49,974.27,959.54,967.49,14380000,967.49
-1968-10-18,958.91,971.72,955.06,967.49,15130000,967.49
-1968-10-17,955.31,969.29,952.51,958.91,21060000,958.91
-1968-10-15,949.96,960.47,946.05,955.31,13410000,955.31
-1968-10-14,949.59,955.37,942.50,949.96,11980000,949.96
-1968-10-11,949.78,955.18,942.96,949.59,12650000,949.59
-1968-10-10,956.24,958.66,944.24,949.78,17000000,949.78
-1968-10-08,956.68,963.33,950.58,956.24,14000000,956.24
-1968-10-07,952.95,961.03,946.98,956.68,12420000,956.68
-1968-10-04,949.47,957.30,943.93,952.95,15350000,952.95
-1968-10-03,942.32,954.81,940.39,949.47,21110000,949.47
-1968-10-01,935.79,948.66,932.93,942.32,15560000,942.32
-1968-09-30,933.80,941.45,926.59,935.79,13610000,935.79
-1968-09-27,933.24,938.40,926.09,933.80,13860000,933.80
-1968-09-26,938.28,945.86,928.08,933.24,18950000,933.24
-1968-09-24,930.45,942.69,926.22,938.28,15210000,938.28
-1968-09-23,924.42,934.05,920.93,930.45,11550000,930.45
-1968-09-20,923.98,930.01,917.14,924.42,14190000,924.42
-1968-09-19,923.05,933.43,916.27,923.98,17910000,923.98
-1968-09-17,921.37,929.08,916.77,923.05,13920000,923.05
-1968-09-16,917.21,927.46,912.98,921.37,13260000,921.37
-1968-09-13,915.65,923.36,909.12,917.21,13070000,917.21
-1968-09-12,919.38,923.26,908.07,915.65,14630000,915.65
-1968-09-10,924.98,931.32,914.41,919.38,11430000,919.38
-1968-09-09,921.25,932.31,916.89,924.98,11890000,924.98
-1968-09-06,917.52,928.27,912.54,921.25,13180000,921.25
-1968-09-05,906.95,921.87,904.03,917.52,12980000,917.52
-1968-09-04,900.36,911.18,896.26,906.95,10040000,906.95
-1968-09-03,896.01,904.96,892.59,900.36,8620000,900.36
-1968-08-30,894.33,902.35,891.29,896.01,8190000,896.01
-1968-08-29,893.65,900.73,886.69,894.33,10940000,894.33
-1968-08-27,896.13,901.48,888.18,893.65,9710000,893.65
-1968-08-26,892.34,902.23,890.04,896.13,9740000,896.13
-1968-08-23,888.30,899.37,883.83,892.34,9890000,892.34
-1968-08-22,888.67,894.95,878.85,888.30,15140000,888.30
-1968-08-20,887.68,894.64,879.97,888.67,10640000,888.67
-1968-08-19,885.89,893.15,880.66,887.68,9900000,887.68
-1968-08-16,879.51,889.44,877.17,885.89,9940000,885.89
-1968-08-15,884.68,892.32,874.76,879.51,12710000,879.51
-1968-08-13,881.02,890.82,877.71,884.68,12730000,884.68
-1968-08-12,869.65,884.20,867.66,881.02,10420000,881.02
-1968-08-09,870.37,876.26,863.33,869.65,8390000,869.65
-1968-08-08,876.92,882.82,866.58,870.37,12920000,870.37
-1968-08-06,872.53,881.38,868.86,876.92,9620000,876.92
-1968-08-05,871.27,879.33,865.86,872.53,8850000,872.53
-1968-08-02,878.07,879.27,865.19,871.27,9860000,871.27
-1968-08-01,883.00,892.02,874.94,878.07,14380000,878.07
-1968-07-30,883.36,890.64,876.99,883.00,10250000,883.00
-1968-07-29,888.47,893.59,877.23,883.36,10940000,883.36
-1968-07-26,885.47,895.21,878.55,888.47,11690000,888.47
-1968-07-25,898.10,901.29,880.41,885.47,16140000,885.47
-1968-07-23,900.32,904.48,889.68,898.10,13570000,898.10
-1968-07-22,913.92,914.52,894.31,900.32,13530000,900.32
-1968-07-19,917.95,924.21,907.60,913.92,14620000,913.92
-1968-07-18,921.20,926.55,911.93,917.95,17420000,917.95
-1968-07-16,923.72,928.84,913.56,921.20,13380000,921.20
-1968-07-15,922.46,929.32,915.24,923.72,13390000,923.72
-1968-07-12,922.82,929.92,914.88,922.46,14810000,922.46
-1968-07-11,920.42,933.83,915.78,922.82,20290000,922.82
-1968-07-09,912.60,924.87,908.63,920.42,16540000,920.42
-1968-07-08,903.51,920.00,901.89,912.60,16860000,912.60
-1968-07-03,896.84,907.18,893.29,903.51,14390000,903.51
-1968-07-02,896.35,902.97,889.62,896.84,13350000,896.84
-1968-07-01,897.80,904.05,889.68,896.35,11280000,896.35
-1968-06-28,898.76,905.14,892.26,897.80,12040000,897.80
-1968-06-27,901.41,909.23,891.78,898.76,15370000,898.76
-1968-06-25,901.83,908.08,895.09,901.41,13200000,901.41
-1968-06-24,900.93,908.14,895.09,901.83,12320000,901.83
-1968-06-21,898.28,907.96,891.48,900.93,13450000,900.93
-1968-06-20,900.20,909.29,892.63,898.28,16290000,898.28
-1968-06-18,903.45,909.17,895.09,900.20,13630000,900.20
-1968-06-17,913.62,917.35,898.40,903.45,12570000,903.45
-1968-06-14,913.86,918.91,904.48,913.62,14690000,913.62
-1968-06-13,917.95,924.93,908.93,913.86,21350000,913.86
-1968-06-11,913.38,924.81,909.41,917.95,15700000,917.95
-1968-06-10,914.88,922.94,907.54,913.38,14640000,913.38
-1968-06-07,910.13,920.84,906.28,914.88,17320000,914.88
-1968-06-06,907.42,918.01,901.71,910.13,16130000,910.13
-1968-06-05,916.63,922.10,904.05,907.42,15590000,907.42
-1968-06-04,905.38,923.00,902.43,916.63,18030000,916.63
-1968-06-03,899.00,912.12,896.23,905.38,14970000,905.38
-1968-05-31,895.21,907.96,891.72,899.00,13090000,899.00
-1968-05-29,896.78,903.69,889.44,895.21,14100000,895.21
-1968-05-28,891.60,901.95,886.97,896.78,13850000,896.78
-1968-05-27,895.28,898.76,885.53,891.60,12720000,891.60
-1968-05-24,893.15,900.49,886.67,895.28,13300000,895.28
-1968-05-23,896.79,901.47,888.23,893.15,12840000,893.15
-1968-05-22,896.32,906.73,891.82,896.79,14200000,896.79
-1968-05-21,894.19,902.39,886.33,896.32,13160000,896.32
-1968-05-20,898.98,902.10,887.54,894.19,11180000,894.19
-1968-05-17,903.72,905.92,891.18,898.98,11830000,898.98
-1968-05-16,907.82,913.08,898.17,903.72,13030000,903.72
-1968-05-15,908.06,914.64,900.08,907.82,13180000,907.82
-1968-05-14,909.96,915.28,900.89,908.06,13160000,908.06
-1968-05-13,912.91,918.34,903.90,909.96,11860000,909.96
-1968-05-10,911.35,920.48,906.38,912.91,11700000,912.91
-1968-05-09,918.86,921.81,904.82,911.35,12890000,911.35
-1968-05-08,919.90,927.42,911.52,918.86,13120000,918.86
-1968-05-07,914.53,926.78,910.54,919.90,13920000,919.90
-1968-05-06,919.21,922.79,903.61,914.53,12160000,914.53
-1968-05-03,918.05,935.68,913.49,919.21,17990000,919.21
-1968-05-02,913.20,923.43,906.90,918.05,14260000,918.05
-1968-05-01,912.22,919.85,902.51,913.20,14440000,913.20
-1968-04-30,908.34,918.11,901.70,912.22,14380000,912.22
-1968-04-29,906.03,914.01,900.72,908.34,12030000,908.34
-1968-04-26,905.57,912.27,898.00,906.03,13500000,906.03
-1968-04-25,898.46,912.56,895.98,905.57,14430000,905.57
-1968-04-24,897.48,904.65,889.68,898.46,14810000,898.46
-1968-04-23,891.99,904.47,890.43,897.48,14010000,897.48
-1968-04-22,897.65,897.88,881.24,891.99,11720000,891.99
-1968-04-19,908.40,908.40,890.72,897.65,14560000,897.65
-1968-04-18,908.17,916.78,901.24,909.21,15890000,909.21
-1968-04-17,906.78,912.74,896.84,908.17,14090000,908.17
-1968-04-16,910.19,917.36,899.33,906.78,15680000,906.78
-1968-04-15,905.69,916.03,893.61,910.19,14220000,910.19
-1968-04-11,892.63,908.29,886.56,905.69,14230000,905.69
-1968-04-10,884.42,905.74,884.07,892.63,20410000,892.63
-1968-04-08,865.81,888.35,865.18,884.42,13010000,884.42
-1968-04-05,872.52,877.31,862.11,865.81,12570000,865.81
-1968-04-04,869.11,879.68,862.46,872.52,14340000,872.52
-1968-04-03,863.96,883.38,859.45,869.11,19290000,869.11
-1968-04-02,861.25,869.63,852.12,863.96,14520000,863.96
-1968-04-01,849.23,870.90,849.23,861.25,17730000,861.25
-1968-03-29,835.12,845.87,831.48,840.67,9000000,840.67
-1968-03-28,836.57,841.08,830.67,835.12,8000000,835.12
-1968-03-27,831.54,841.42,830.33,836.57,8970000,836.57
-1968-03-26,827.27,836.17,823.62,831.54,8670000,831.54
-1968-03-25,826.05,831.25,819.87,827.27,6700000,827.27
-1968-03-22,825.13,831.48,817.61,826.05,9900000,826.05
-1968-03-21,830.85,836.40,822.58,825.13,8580000,825.13
-1968-03-20,832.99,836.63,826.34,830.85,7390000,830.85
-1968-03-19,840.09,842.35,829.63,832.99,7410000,832.99
-1968-03-18,837.55,854.25,836.28,840.09,10800000,840.09
-1968-03-15,830.91,843.39,825.01,837.55,11210000,837.55
-1968-03-14,841.54,841.54,824.26,830.91,11640000,830.91
-1968-03-13,843.22,847.72,836.22,842.23,8990000,842.23
-1968-03-12,843.04,847.55,834.72,843.22,9250000,843.22
-1968-03-11,835.24,846.63,833.56,843.04,9520000,843.04
-1968-03-08,836.22,840.38,828.59,835.24,7410000,835.24
-1968-03-07,837.21,843.62,830.33,836.22,8630000,836.22
-1968-03-06,827.03,841.37,826.46,837.21,9900000,837.21
-1968-03-05,830.56,837.44,821.72,827.03,11440000,827.03
-1968-03-04,840.44,842.75,828.02,830.56,10590000,830.56
-1968-03-01,840.50,845.24,836.05,840.44,8610000,840.44
-1968-02-29,844.72,847.03,835.76,840.50,7700000,840.50
-1968-02-28,846.68,853.33,841.71,844.72,8020000,844.72
-1968-02-27,841.77,848.59,835.93,846.68,7600000,846.68
-1968-02-26,849.80,850.79,836.40,841.77,7810000,841.77
-1968-02-23,849.23,857.78,844.43,849.80,8810000,849.80
-1968-02-21,843.10,855.05,840.50,849.23,9170000,849.23
-1968-02-20,838.65,847.67,836.05,843.10,8800000,843.10
-1968-02-19,836.34,843.97,830.50,838.65,7270000,838.65
-1968-02-16,839.23,841.66,830.85,836.34,9070000,836.34
-1968-02-15,837.38,846.16,833.62,839.23,9770000,839.23
-1968-02-14,831.77,841.94,826.46,837.38,11390000,837.38
-1968-02-13,840.04,843.68,828.36,831.77,10830000,831.77
-1968-02-09,850.32,851.65,834.84,840.04,11850000,840.04
-1968-02-08,859.92,863.27,847.84,850.32,9660000,850.32
-1968-02-07,861.25,867.78,855.93,859.92,8380000,859.92
-1968-02-06,861.13,867.31,854.83,861.25,8560000,861.25
-1968-02-05,863.56,867.66,854.77,861.13,8980000,861.13
-1968-02-02,861.36,871.30,856.22,863.56,10120000,863.56
-1968-02-01,855.47,864.89,850.55,861.36,10590000,861.36
-1968-01-31,859.57,863.90,850.50,855.47,9410000,855.47
-1968-01-30,863.67,867.95,852.92,859.57,10110000,859.57
-1968-01-29,865.06,873.04,858.53,863.67,9950000,863.67
-1968-01-26,864.25,873.79,859.51,865.06,9980000,865.06
-1968-01-25,862.23,871.24,853.44,864.25,12410000,864.25
-1968-01-24,864.77,870.20,854.83,862.23,10570000,862.23
-1968-01-23,871.71,875.06,860.15,864.77,11030000,864.77
-1968-01-22,880.32,881.24,866.68,871.71,10630000,871.71
-1968-01-19,882.80,889.27,876.21,880.32,11950000,880.32
-1968-01-18,883.78,893.49,879.33,882.80,13840000,882.80
-1968-01-17,887.14,890.89,877.48,883.78,12910000,883.78
-1968-01-16,892.74,896.56,882.34,887.14,12340000,887.14
-1968-01-15,898.98,903.03,888.93,892.74,12640000,892.74
-1968-01-12,899.79,906.58,891.07,898.98,13080000,898.98
-1968-01-11,903.95,911.35,895.28,899.79,13220000,899.79
-1968-01-10,908.29,911.87,897.94,903.95,11670000,903.95
-1968-01-09,908.92,921.87,903.26,908.29,13720000,908.29
-1968-01-08,901.24,915.63,896.27,908.92,14260000,908.92
-1968-01-05,899.39,908.06,893.55,901.24,11880000,901.24
-1968-01-04,904.13,908.23,889.51,899.39,13440000,899.39
-1968-01-03,906.84,916.15,899.56,904.13,12650000,904.13
-1968-01-02,905.11,914.30,897.54,906.84,11080000,906.84
-1967-12-29,897.83,910.37,893.44,905.11,14950000,905.11
-1967-12-28,894.94,902.97,886.73,897.83,12530000,897.83
-1967-12-27,888.12,900.14,884.59,894.94,12690000,894.94
-1967-12-26,887.37,893.96,881.93,888.12,9150000,888.12
-1967-12-22,888.35,894.94,880.95,887.37,9570000,887.37
-1967-12-21,886.90,897.71,883.78,888.35,11010000,888.35
-1967-12-20,881.36,892.86,876.33,886.90,11390000,886.90
-1967-12-19,881.65,886.96,875.69,881.36,10610000,881.36
-1967-12-18,880.61,889.91,874.94,881.65,10320000,881.65
-1967-12-15,883.44,890.43,875.87,880.61,11530000,880.61
-1967-12-14,882.34,891.47,878.53,883.44,12310000,883.44
-1967-12-13,881.30,887.77,881.14,882.34,12480000,882.34
-1967-12-12,882.05,887.54,873.32,881.30,10860000,881.30
-1967-12-11,887.25,892.16,876.96,882.05,10500000,882.05
-1967-12-08,892.22,895.92,883.55,887.25,10710000,887.25
-1967-12-07,892.28,901.76,887.94,892.22,12490000,892.22
-1967-12-06,888.12,896.50,884.19,892.28,11940000,892.28
-1967-12-05,883.50,895.80,881.24,888.12,12940000,888.12
-1967-12-04,879.16,888.35,876.33,883.50,11740000,883.50
-1967-12-01,875.81,882.69,868.76,879.16,9740000,879.16
-1967-11-30,883.15,887.48,872.63,875.81,8860000,875.81
-1967-11-29,884.88,894.88,878.24,883.15,11400000,883.15
-1967-11-28,882.11,890.43,876.62,884.88,11040000,884.88
-1967-11-27,877.60,887.77,873.21,882.11,10040000,882.11
-1967-11-24,874.02,882.80,867.26,877.60,9470000,877.60
-1967-11-22,870.95,884.54,865.87,874.02,12180000,874.02
-1967-11-21,857.78,876.68,857.49,870.95,12300000,870.95
-1967-11-20,862.11,862.58,839.40,857.78,12750000,857.78
-1967-11-17,859.74,869.28,853.96,862.11,10050000,862.11
-1967-11-16,855.18,867.49,852.12,859.74,10570000,859.74
-1967-11-15,852.40,860.44,845.01,855.18,10000000,855.18
-1967-11-14,859.74,864.60,849.23,852.40,10350000,852.40
-1967-11-13,862.81,872.98,855.06,859.74,10130000,859.74
-1967-11-10,856.97,868.93,854.83,862.81,9960000,862.81
-1967-11-09,849.57,862.86,846.28,856.97,8890000,856.97
-1967-11-08,855.29,870.67,847.61,849.57,12630000,849.57
-1967-11-06,856.62,860.61,844.89,855.29,10320000,855.29
-1967-11-03,864.83,867.95,853.10,856.62,8800000,856.62
-1967-11-02,867.08,878.87,860.55,864.83,10760000,864.83
-1967-11-01,879.74,880.95,863.44,867.08,10930000,867.08
-1967-10-31,886.62,890.72,876.21,879.74,12020000,879.74
-1967-10-30,888.18,894.07,880.37,886.62,10250000,886.62
-1967-10-27,890.89,896.15,882.98,888.18,9880000,888.18
-1967-10-26,886.73,896.04,881.99,890.89,9920000,890.89
-1967-10-25,888.18,893.44,877.31,886.73,10300000,886.73
-1967-10-24,894.65,903.84,885.52,888.18,11110000,888.18
-1967-10-23,896.73,900.43,883.03,894.65,9680000,894.65
-1967-10-20,903.72,906.96,891.35,896.73,9510000,896.73
-1967-10-19,903.49,914.41,899.68,903.72,11620000,903.72
-1967-10-18,904.36,910.48,896.15,903.49,10500000,903.49
-1967-10-17,908.52,912.97,896.73,904.36,10290000,904.36
-1967-10-16,918.17,922.97,905.46,908.52,9080000,908.52
-1967-10-13,913.20,924.41,908.58,918.17,9040000,918.17
-1967-10-12,920.25,922.56,909.79,913.20,7770000,913.20
-1967-10-11,926.61,929.73,916.61,920.25,11230000,920.25
-1967-10-10,933.31,940.07,921.35,926.61,12000000,926.61
-1967-10-09,928.74,940.36,924.47,933.31,11180000,933.31
-1967-10-06,927.13,935.74,921.58,928.74,9830000,928.74
-1967-10-05,921.29,931.46,917.88,927.13,8490000,927.13
-1967-10-04,924.47,932.33,916.32,921.29,11520000,921.29
-1967-10-03,921.00,930.77,916.49,924.47,10320000,924.47
-1967-10-02,926.66,930.42,915.92,921.00,9240000,921.00
-1967-09-29,929.38,933.77,919.85,926.66,9710000,926.66
-1967-09-28,933.14,937.30,925.05,929.38,10470000,929.38
-1967-09-27,937.18,942.61,927.88,933.14,8810000,933.14
-1967-09-26,943.08,951.57,934.12,937.18,10940000,937.18
-1967-09-25,934.35,949.66,931.75,943.08,10910000,943.08
-1967-09-22,930.48,940.48,923.95,934.35,11160000,934.35
-1967-09-21,929.79,938.22,924.12,930.48,11290000,930.48
-1967-09-20,930.07,936.89,922.50,929.79,10980000,929.79
-1967-09-19,938.74,944.64,926.95,930.07,11540000,930.07
-1967-09-18,933.48,944.58,929.73,938.74,11620000,938.74
-1967-09-15,929.44,938.51,923.25,933.48,10270000,933.48
-1967-09-14,923.77,939.38,923.72,929.44,12220000,929.44
-1967-09-13,911.75,928.40,911.64,923.77,12400000,923.77
-1967-09-12,909.62,916.84,905.05,911.75,9930000,911.75
-1967-09-11,907.54,916.20,902.68,909.62,9170000,909.62
-1967-09-08,908.17,914.41,901.24,907.54,9300000,907.54
-1967-09-07,906.96,913.49,901.64,908.17,8910000,908.17
-1967-09-06,904.13,913.55,899.27,906.96,9550000,906.96
-1967-09-05,901.18,909.91,895.69,904.13,8320000,904.13
-1967-09-01,901.29,906.84,894.19,901.18,7460000,901.18
-1967-08-31,893.72,906.38,893.09,901.29,8840000,901.29
-1967-08-30,894.76,900.72,888.64,893.72,7200000,893.72
-1967-08-29,894.71,900.20,887.94,894.76,6350000,894.76
-1967-08-28,894.07,902.16,887.83,894.71,6270000,894.71
-1967-08-25,898.46,900.49,888.81,894.07,7250000,894.07
-1967-08-24,905.11,910.54,896.09,898.46,7740000,898.46
-1967-08-23,907.48,910.14,896.44,905.11,8760000,905.11
-1967-08-22,912.27,916.15,903.61,907.48,7940000,907.48
-1967-08-21,919.04,921.64,907.48,912.27,8600000,912.27
-1967-08-18,918.23,925.51,912.79,919.04,8250000,919.04
-1967-08-17,915.68,923.89,912.85,918.23,8790000,918.23
-1967-08-16,919.15,921.64,910.83,915.68,8220000,915.68
-1967-08-15,916.32,924.93,912.85,919.15,8710000,919.15
-1967-08-14,920.65,922.16,909.96,916.32,7990000,916.32
-1967-08-11,925.22,928.11,915.57,920.65,8250000,920.65
-1967-08-10,926.72,933.14,920.77,925.22,9040000,925.22
-1967-08-09,922.45,931.75,919.09,926.72,10100000,926.72
-1967-08-08,920.37,927.88,916.67,922.45,8970000,922.45
-1967-08-07,923.77,930.65,915.34,920.37,10160000,920.37
-1967-08-04,921.98,931.06,917.65,923.77,11130000,923.77
-1967-08-03,922.27,929.67,908.11,921.98,13440000,921.98
-1967-08-02,913.55,931.29,913.55,922.27,13510000,922.27
-1967-08-01,904.24,917.19,900.25,912.97,12290000,912.97
-1967-07-31,901.53,912.85,896.67,904.24,10330000,904.24
-1967-07-28,903.14,910.31,896.15,901.53,10900000,901.53
-1967-07-27,903.14,912.79,896.96,903.14,12400000,903.14
-1967-07-26,901.29,908.17,895.75,903.14,11160000,903.14
-1967-07-25,904.53,909.56,895.52,901.29,9890000,901.29
-1967-07-24,909.56,912.68,897.48,904.53,9580000,904.53
-1967-07-21,908.69,918.69,903.03,909.56,11710000,909.56
-1967-07-20,903.32,913.83,896.79,908.69,11160000,908.69
-1967-07-19,896.09,908.75,892.63,903.32,12850000,903.32
-1967-07-18,882.74,899.79,879.39,896.09,12060000,896.09
-1967-07-17,882.05,891.30,875.35,882.74,10390000,882.74
-1967-07-14,878.53,889.62,872.52,882.05,10880000,882.05
-1967-07-13,878.70,885.81,873.04,878.53,10730000,878.53
-1967-07-12,879.45,885.40,870.55,878.70,11240000,878.70
-1967-07-11,875.52,886.15,870.90,879.45,12400000,879.45
-1967-07-10,869.05,880.37,866.04,875.52,12130000,875.52
-1967-07-07,864.02,874.42,860.32,869.05,11540000,869.05
-1967-07-06,864.94,871.24,858.70,864.02,10170000,864.02
-1967-07-05,859.69,871.01,857.43,864.94,9170000,864.94
-1967-07-03,860.26,864.60,853.21,859.69,6040000,859.69
-1967-06-30,861.94,867.83,855.58,860.26,7850000,860.26
-1967-06-29,868.87,873.67,859.45,861.94,9940000,861.94
-1967-06-28,869.39,875.17,864.14,868.87,9310000,868.87
-1967-06-27,872.11,875.87,864.14,869.39,8780000,869.39
-1967-06-26,877.37,884.30,866.91,872.11,9040000,872.11
-1967-06-23,875.69,883.32,870.95,877.37,9130000,877.37
-1967-06-22,877.66,881.13,868.82,875.69,9550000,875.69
-1967-06-21,880.61,886.90,872.52,877.66,9760000,877.66
-1967-06-20,884.54,890.72,876.44,880.61,10350000,880.61
-1967-06-19,885.00,890.03,877.43,884.54,8570000,884.54
-1967-06-16,883.26,892.80,879.68,885.00,10740000,885.00
-1967-06-15,880.61,891.24,873.32,883.26,11240000,883.26
-1967-06-14,886.15,890.78,876.39,880.61,10960000,880.61
-1967-06-13,878.93,892.68,875.75,886.15,11570000,886.15
-1967-06-12,874.89,884.77,870.49,878.93,10230000,878.93
-1967-06-09,873.20,881.94,865.08,874.89,9650000,874.89
-1967-06-08,869.19,875.17,861.64,873.20,8300000,873.20
-1967-06-07,862.71,877.14,860.57,869.19,10170000,869.19
-1967-06-06,848.33,868.46,848.33,862.71,9230000,862.71
-1967-06-05,858.41,858.41,836.92,847.77,11110000,847.77
-1967-06-02,864.98,870.82,857.46,863.31,8070000,863.31
-1967-06-01,852.56,869.60,850.56,864.98,9040000,864.98
-1967-05-31,864.64,864.64,850.39,852.56,8870000,852.56
-1967-05-29,870.32,871.60,860.24,864.98,6590000,864.98
-1967-05-26,870.71,875.22,863.31,870.32,7810000,870.32
-1967-05-25,862.42,876.50,860.36,870.71,8960000,870.71
-1967-05-24,868.71,870.49,857.18,862.42,10290000,862.42
-1967-05-23,871.05,875.72,862.03,868.71,9810000,868.71
-1967-05-22,874.55,876.61,863.75,871.05,9600000,871.05
-1967-05-19,877.34,881.24,867.59,874.55,10560000,874.55
-1967-05-18,882.24,885.13,873.27,877.34,10290000,877.34
-1967-05-17,885.80,891.37,878.40,882.24,9560000,882.24
-1967-05-16,882.41,891.76,877.90,885.80,10700000,885.80
-1967-05-15,890.03,892.26,878.67,882.41,8320000,882.41
-1967-05-12,896.21,900.67,885.86,890.03,10470000,890.03
-1967-05-11,894.10,901.56,888.25,896.21,10320000,896.21
-1967-05-10,899.89,902.23,888.47,894.10,10410000,894.10
-1967-05-09,909.63,915.87,897.05,899.89,10830000,899.89
-1967-05-08,905.96,915.31,899.44,909.63,10330000,909.63
-1967-05-05,901.95,910.91,898.05,905.96,10630000,905.96
-1967-05-04,896.77,906.57,892.65,901.95,12850000,901.95
-1967-05-03,891.65,900.95,886.41,896.77,11550000,896.77
-1967-05-02,892.93,898.39,886.19,891.65,10260000,891.65
-1967-05-01,897.05,900.50,887.81,892.93,9410000,892.93
-1967-04-28,894.82,903.73,891.20,897.05,11200000,897.05
-1967-04-27,889.03,898.33,882.74,894.82,10250000,894.82
-1967-04-26,891.20,898.50,883.96,889.03,10560000,889.03
-1967-04-25,887.53,894.93,880.73,891.20,10420000,891.20
-1967-04-24,883.18,894.82,877.84,887.53,10250000,887.53
-1967-04-21,878.62,888.30,873.61,883.18,10210000,883.18
-1967-04-20,873.94,882.18,869.04,878.62,9690000,878.62
-1967-04-19,873.00,882.07,868.76,873.94,10860000,873.94
-1967-04-18,866.59,876.73,861.92,873.00,10500000,873.00
-1967-04-17,859.74,874.83,857.91,866.59,9070000,866.59
-1967-04-14,848.83,865.03,847.05,859.74,8810000,859.74
-1967-04-13,844.65,852.84,840.81,848.83,7610000,848.83
-1967-04-12,847.66,852.67,841.48,844.65,7750000,844.65
-1967-04-11,842.43,852.39,838.98,847.66,7710000,847.66
-1967-04-10,852.84,852.84,839.76,842.43,8110000,842.43
-1967-04-07,861.25,866.59,850.22,853.34,9090000,853.34
-1967-04-06,861.19,867.59,856.51,861.25,9470000,861.25
-1967-04-05,859.19,867.26,855.23,861.19,8810000,861.19
-1967-04-04,859.97,865.65,852.17,859.19,8750000,859.19
-1967-04-03,865.98,868.43,854.45,859.97,8530000,859.97
-1967-03-31,869.99,874.28,861.19,865.98,8130000,865.98
-1967-03-30,871.10,875.39,863.92,869.99,8340000,869.99
-1967-03-29,875.28,880.40,866.31,871.10,8430000,871.10
-1967-03-28,873.72,882.13,868.37,875.28,8940000,875.28
-1967-03-27,876.67,883.41,869.15,873.72,9260000,873.72
-1967-03-23,870.55,882.29,868.82,876.67,9500000,876.67
-1967-03-22,866.59,875.11,857.68,870.55,8820000,870.55
-1967-03-21,870.43,879.18,861.25,866.59,9820000,866.59
-1967-03-20,869.77,877.28,862.36,870.43,9040000,870.43
-1967-03-17,868.49,876.50,861.80,869.77,10020000,869.77
-1967-03-16,854.51,872.33,854.51,868.49,12170000,868.49
-1967-03-15,844.27,856.90,842.65,854.06,10830000,854.06
-1967-03-14,844.82,850.33,836.86,844.27,10260000,844.27
-1967-03-13,848.50,853.56,840.59,844.82,9910000,844.82
-1967-03-10,845.43,864.25,845.43,848.50,14900000,848.50
-1967-03-09,843.32,850.72,836.53,844.15,10480000,844.15
-1967-03-08,841.76,851.00,836.36,843.32,11070000,843.32
-1967-03-07,842.20,847.10,835.30,841.76,9810000,841.76
-1967-03-06,846.60,851.45,837.86,842.20,10400000,842.20
-1967-03-03,846.71,853.51,841.04,846.60,11100000,846.60
-1967-03-02,843.49,852.62,840.87,846.71,11900000,846.71
-1967-03-01,839.37,852.12,836.47,843.49,11510000,843.49
-1967-02-28,836.64,844.27,827.95,839.37,9970000,839.37
-1967-02-27,847.33,849.44,830.46,836.64,10210000,836.64
-1967-02-24,846.77,854.79,839.64,847.33,9830000,847.33
-1967-02-23,844.10,851.67,837.31,846.77,10010000,846.77
-1967-02-21,847.88,851.39,840.03,844.10,9030000,844.10
-1967-02-20,850.84,853.90,839.81,847.88,8640000,847.88
-1967-02-17,851.56,856.35,845.88,850.84,8530000,850.84
-1967-02-16,855.79,863.42,846.60,851.56,8490000,851.56
-1967-02-15,856.90,863.47,850.22,855.79,10480000,855.79
-1967-02-14,853.34,862.64,848.39,856.90,9760000,856.90
-1967-02-13,855.73,860.52,848.72,853.34,7570000,853.34
-1967-02-10,857.52,861.36,847.72,855.73,8850000,855.73
-1967-02-09,860.97,871.71,854.06,857.52,10970000,857.52
-1967-02-08,852.51,865.37,850.11,860.97,11220000,860.97
-1967-02-07,855.12,857.68,847.27,852.51,6400000,852.51
-1967-02-06,857.46,862.53,849.72,855.12,10680000,855.12
-1967-02-03,853.12,864.09,849.78,857.46,12010000,857.46
-1967-02-02,848.39,857.68,842.20,853.12,10720000,853.12
-1967-02-01,849.89,854.51,842.54,848.39,9580000,848.39
-1967-01-31,848.11,857.02,844.82,849.89,11540000,849.89
-1967-01-30,844.04,854.57,840.48,848.11,10250000,848.11
-1967-01-27,838.70,850.17,836.14,844.04,9690000,844.04
-1967-01-26,840.59,848.27,830.18,838.70,10630000,838.70
-1967-01-25,847.72,852.67,837.69,840.59,10260000,840.59
-1967-01-24,847.72,853.12,836.30,847.72,10430000,847.72
-1967-01-23,847.16,856.68,841.43,847.72,10830000,847.72
-1967-01-20,846.44,851.39,838.59,847.16,9530000,847.16
-1967-01-19,847.49,853.73,840.81,846.44,10230000,846.44
-1967-01-18,843.65,853.34,839.14,847.49,11390000,847.49
-1967-01-17,833.24,848.72,830.57,843.65,11590000,843.65
-1967-01-16,835.13,842.48,828.12,833.24,10280000,833.24
-1967-01-13,829.95,838.47,821.15,835.13,10000000,835.13
-1967-01-12,822.49,839.25,819.76,829.95,12830000,829.95
-1967-01-11,814.14,827.11,798.71,822.49,13230000,822.49
-1967-01-10,813.47,820.93,808.18,814.14,8120000,814.14
-1967-01-09,808.74,818.87,803.34,813.47,9180000,813.47
-1967-01-06,805.51,816.53,801.67,808.74,7830000,808.74
-1967-01-05,791.64,807.90,791.64,805.51,7320000,805.51
-1967-01-04,786.41,795.54,776.16,791.14,6150000,791.14
-1967-01-03,785.69,800.55,782.34,786.41,6100000,786.41
-1966-12-30,786.35,794.59,779.34,785.69,11330000,785.69
-1966-12-29,788.58,792.70,781.51,786.35,7900000,786.35
-1966-12-28,792.20,799.38,785.96,788.58,7160000,788.58
-1966-12-27,799.10,802.61,788.25,792.20,6280000,792.20
-1966-12-23,801.67,806.51,793.09,799.10,7350000,799.10
-1966-12-22,797.43,807.18,793.87,801.67,8560000,801.67
-1966-12-21,794.59,802.00,789.69,797.43,7690000,797.43
-1966-12-20,798.99,800.66,789.42,794.59,6830000,794.59
-1966-12-19,807.18,807.46,792.70,798.99,7340000,798.99
-1966-12-16,809.18,813.02,802.22,807.18,6980000,807.18
-1966-12-15,817.98,820.82,804.45,809.18,7150000,809.18
-1966-12-14,816.70,823.66,810.63,817.98,7470000,817.98
-1966-12-13,820.54,827.22,812.08,816.70,9650000,816.70
-1966-12-12,813.02,826.67,810.52,820.54,9530000,820.54
-1966-12-09,812.80,818.20,804.95,813.02,7650000,813.02
-1966-12-08,808.01,818.81,805.95,812.80,8370000,812.80
-1966-12-07,797.43,812.41,795.43,808.01,8980000,808.01
-1966-12-06,791.59,800.94,788.25,797.43,7670000,797.43
-1966-12-05,789.47,795.54,784.35,791.59,6470000,791.59
-1966-12-02,789.75,794.82,783.51,789.47,6230000,789.47
-1966-12-01,791.59,797.93,785.63,789.75,8480000,789.75
-1966-11-30,795.26,796.21,784.79,791.59,7230000,791.59
-1966-11-29,801.16,803.28,791.59,795.26,7320000,795.26
-1966-11-28,803.34,808.24,793.59,801.16,7630000,801.16
-1966-11-25,796.82,807.68,793.87,803.34,6810000,803.34
-1966-11-23,794.98,804.78,789.36,796.82,7350000,796.82
-1966-11-22,798.16,799.55,785.46,794.98,6430000,794.98
-1966-11-21,807.73,807.73,791.09,798.16,7450000,798.16
-1966-11-18,816.03,817.81,804.95,809.40,6900000,809.40
-1966-11-17,820.87,825.61,808.90,816.03,8900000,816.03
-1966-11-16,815.31,827.33,812.69,820.87,10350000,820.87
-1966-11-15,813.75,819.48,808.12,815.31,7190000,815.31
-1966-11-14,819.09,823.10,808.29,813.75,6540000,813.75
-1966-11-11,816.87,822.32,810.46,819.09,6690000,819.09
-1966-11-10,809.91,822.38,807.18,816.87,8870000,816.87
-1966-11-09,802.22,815.64,799.72,809.91,8390000,809.91
-1966-11-07,805.06,809.85,796.38,802.22,6120000,802.22
-1966-11-04,804.34,809.57,793.54,805.06,6530000,805.06
-1966-11-03,807.29,812.24,798.32,804.34,5860000,804.34
-1966-11-02,809.63,815.92,801.61,807.29,6740000,807.29
-1966-11-01,807.07,814.30,800.33,809.63,6480000,809.63
-1966-10-31,807.96,812.91,797.04,807.07,5860000,807.07
-1966-10-28,809.57,816.64,801.44,807.96,6420000,807.96
-1966-10-27,801.11,814.97,800.77,809.57,6670000,809.57
-1966-10-26,793.09,809.29,792.31,801.11,6760000,801.11
-1966-10-25,787.75,796.60,780.34,793.09,6190000,793.09
-1966-10-24,787.30,796.10,781.73,787.75,5780000,787.75
-1966-10-21,783.68,791.36,777.17,787.30,5690000,787.30
-1966-10-20,785.35,796.04,778.11,783.68,6840000,783.68
-1966-10-19,791.87,799.22,779.84,785.35,6460000,785.35
-1966-10-18,778.89,795.65,777.44,791.87,7180000,791.87
-1966-10-17,771.71,789.14,770.82,778.89,5570000,778.89
-1966-10-14,772.93,782.90,765.14,771.71,5610000,771.71
-1966-10-13,778.17,791.09,768.81,772.93,8680000,772.93
-1966-10-12,758.63,780.12,752.89,778.17,6910000,778.17
-1966-10-11,754.51,771.43,752.44,758.63,8430000,758.63
-1966-10-10,744.32,758.07,735.74,754.51,9630000,754.51
-1966-10-07,749.61,756.84,739.64,744.32,8140000,744.32
-1966-10-06,755.45,759.52,744.09,749.61,8110000,749.61
-1966-10-05,763.19,768.04,751.72,755.45,5880000,755.45
-1966-10-04,757.96,767.53,750.33,763.19,8910000,763.19
-1966-10-03,774.22,778.11,756.79,757.96,6490000,757.96
-1966-09-30,772.66,779.34,763.91,774.22,6170000,774.22
-1966-09-29,780.95,783.18,768.26,772.66,6110000,772.66
-1966-09-28,794.09,795.60,777.33,780.95,5990000,780.95
-1966-09-27,792.70,805.45,789.53,794.09,6300000,794.09
-1966-09-26,790.97,797.32,784.46,792.70,4960000,792.70
-1966-09-23,797.77,800.11,787.36,790.97,4560000,790.97
-1966-09-22,793.59,801.83,785.69,797.77,5760000,797.77
-1966-09-21,806.01,806.73,792.53,793.59,5360000,793.59
-1966-09-20,810.85,813.08,801.22,806.01,4560000,806.01
-1966-09-19,814.30,818.54,804.00,810.85,4920000,810.85
-1966-09-16,814.30,822.93,808.35,814.30,5150000,814.30
-1966-09-15,806.23,821.26,804.62,814.30,6140000,814.30
-1966-09-14,795.48,809.02,789.58,806.23,6250000,806.23
-1966-09-13,790.59,803.11,789.25,795.48,6870000,795.48
-1966-09-12,775.61,795.32,775.61,790.59,6780000,790.59
-1966-09-09,774.88,781.01,767.92,775.55,5280000,775.55
-1966-09-08,777.39,782.46,763.36,774.88,6660000,774.88
-1966-09-07,782.34,787.30,771.77,777.39,5530000,777.39
-1966-09-06,787.69,795.15,778.84,782.34,4350000,782.34
-1966-09-02,792.09,796.26,776.72,787.69,6080000,787.69
-1966-09-01,788.41,798.94,782.12,792.09,6250000,792.09
-1966-08-31,777.44,796.49,777.44,788.41,8690000,788.41
-1966-08-30,767.03,781.62,759.52,775.72,11230000,775.72
-1966-08-29,780.56,781.06,763.97,767.03,10900000,767.03
-1966-08-26,792.37,792.53,776.22,780.56,8190000,780.56
-1966-08-25,799.55,806.23,789.08,792.37,6760000,792.37
-1966-08-24,790.20,805.45,790.20,799.55,7050000,799.55
-1966-08-23,792.03,801.78,781.90,790.14,9830000,790.14
-1966-08-22,804.62,807.79,786.85,792.03,8690000,792.03
-1966-08-19,810.74,816.75,801.50,804.62,7070000,804.62
-1966-08-18,819.59,821.15,804.73,810.74,7000000,810.74
-1966-08-17,823.83,827.28,813.69,819.59,6630000,819.59
-1966-08-16,834.79,834.79,820.04,823.83,6130000,823.83
-1966-08-15,840.53,845.65,831.79,834.85,5680000,834.85
-1966-08-12,837.91,847.66,834.68,840.53,6230000,840.53
-1966-08-11,838.53,843.65,830.56,837.91,5700000,837.91
-1966-08-10,844.82,846.71,835.02,838.53,5290000,838.53
-1966-08-09,849.05,853.11,841.09,844.82,6270000,844.82
-1966-08-08,852.39,854.78,842.42,849.05,4900000,849.05
-1966-08-05,851.50,860.57,845.71,852.39,5500000,852.39
-1966-08-04,841.70,858.57,841.20,851.50,6880000,851.50
-1966-08-03,832.90,847.99,832.90,841.70,6220000,841.70
-1966-08-02,835.18,840.97,827.28,832.57,5710000,832.57
-1966-08-01,846.60,846.60,830.84,835.18,5880000,835.18
-1966-07-29,854.06,857.46,843.76,847.38,5150000,847.38
-1966-07-28,856.23,862.75,850.50,854.06,5680000,854.06
-1966-07-27,852.17,863.30,850.55,856.23,6070000,856.23
-1966-07-26,852.83,861.19,846.88,852.17,7610000,852.17
-1966-07-25,869.15,870.43,850.50,852.83,7050000,852.83
-1966-07-22,873.99,877.50,864.97,869.15,6540000,869.15
-1966-07-21,874.49,880.34,866.98,873.99,6200000,873.99
-1966-07-20,884.07,887.08,872.60,874.49,5470000,874.49
-1966-07-19,888.41,889.81,876.55,884.07,5960000,884.07
-1966-07-18,889.36,892.98,882.18,888.41,5110000,888.41
-1966-07-15,887.80,896.65,883.74,889.36,6090000,889.36
-1966-07-14,881.40,892.48,878.17,887.80,5950000,887.80
-1966-07-13,886.19,887.58,875.33,881.40,5580000,881.40
-1966-07-12,893.09,896.65,882.46,886.19,5180000,886.19
-1966-07-11,894.04,901.16,888.64,893.09,6200000,893.09
-1966-07-08,891.64,898.44,885.57,894.04,6100000,894.04
-1966-07-07,888.86,898.21,883.90,891.64,7200000,891.64
-1966-07-06,875.27,893.20,872.43,888.86,6860000,888.86
-1966-07-05,877.06,884.13,869.09,875.27,4610000,875.27
-1966-07-01,870.10,884.02,869.93,877.06,5200000,877.06
-1966-06-30,871.60,876.33,858.90,870.10,7250000,870.10
-1966-06-29,880.90,884.29,869.15,871.60,6020000,871.60
-1966-06-28,888.97,890.81,874.83,880.90,6280000,880.90
-1966-06-27,897.16,904.06,887.47,888.97,5330000,888.97
-1966-06-24,896.43,904.17,888.41,897.16,7140000,897.16
-1966-06-23,901.00,908.51,893.48,896.43,7930000,896.43
-1966-06-22,894.98,904.62,892.59,901.00,7800000,901.00
-1966-06-21,892.76,900.44,889.36,894.98,6860000,894.98
-1966-06-20,894.26,898.21,887.24,892.76,5940000,892.76
-1966-06-17,897.16,900.55,889.75,894.26,6580000,894.26
-1966-06-16,901.11,903.61,890.92,897.16,6870000,897.16
-1966-06-15,903.17,910.35,897.82,901.11,8520000,901.11
-1966-06-14,897.60,907.18,891.53,903.17,7600000,903.17
-1966-06-13,891.75,904.67,891.64,897.60,7600000,897.60
-1966-06-10,882.62,896.77,880.84,891.75,8240000,891.75
-1966-06-09,879.34,887.30,874.05,882.62,5810000,882.62
-1966-06-08,877.33,883.68,872.16,879.34,4580000,879.34
-1966-06-07,881.68,882.62,870.32,877.33,5040000,877.33
-1966-06-06,887.86,888.95,876.22,881.68,4260000,881.68
-1966-06-03,882.73,890.86,879.73,887.86,4430000,887.86
-1966-06-02,883.63,890.64,878.34,882.73,5080000,882.73
-1966-06-01,884.07,888.53,877.33,883.63,5290000,883.63
-1966-05-31,897.04,899.61,881.73,884.07,5770000,884.07
-1966-05-27,891.75,899.77,885.85,897.04,4790000,897.04
-1966-05-26,890.42,900.33,886.80,891.75,6080000,891.75
-1966-05-25,888.41,894.98,881.29,890.42,5820000,890.42
-1966-05-24,882.46,898.38,882.12,888.41,7210000,888.41
-1966-05-23,876.89,889.86,873.49,882.46,7080000,882.46
-1966-05-20,872.99,880.06,863.53,876.89,6430000,876.89
-1966-05-19,878.50,887.86,869.65,872.99,8640000,872.99
-1966-05-18,864.42,883.96,864.42,878.50,9310000,878.50
-1966-05-17,867.53,876.83,859.13,864.14,9870000,864.14
-1966-05-16,876.11,881.73,862.86,867.53,9260000,867.53
-1966-05-13,884.85,884.85,868.65,876.11,8970000,876.11
-1966-05-12,895.43,900.00,878.84,885.57,8210000,885.57
-1966-05-11,895.48,908.40,892.70,895.43,7470000,895.43
-1966-05-10,886.80,904.39,886.35,895.48,9050000,895.48
-1966-05-09,902.83,903.39,883.18,886.80,9290000,886.80
-1966-05-06,899.77,909.18,882.90,902.83,13110000,902.83
-1966-05-05,914.86,919.65,897.55,899.77,10100000,899.77
-1966-05-04,921.77,923.38,906.23,914.86,9740000,914.86
-1966-05-03,931.95,932.12,919.20,921.77,8020000,921.77
-1966-05-02,933.68,939.64,926.61,931.95,7070000,931.95
-1966-04-29,937.41,942.09,930.23,933.68,7220000,933.68
-1966-04-28,944.54,945.54,927.22,937.41,8310000,937.41
-1966-04-27,947.21,951.28,937.58,944.54,7950000,944.54
-1966-04-26,950.55,955.56,943.20,947.21,7540000,947.21
-1966-04-25,949.83,957.51,942.09,950.55,7270000,950.55
-1966-04-22,954.73,957.23,944.09,949.83,8650000,949.83
-1966-04-21,951.28,961.91,946.82,954.73,9560000,954.73
-1966-04-20,941.75,957.01,941.75,951.28,10530000,951.28
-1966-04-19,941.98,946.99,934.02,941.64,8820000,941.64
-1966-04-18,947.77,953.22,936.91,941.98,9150000,941.98
-1966-04-15,945.48,957.40,941.70,947.77,10270000,947.77
-1966-04-14,938.36,953.67,936.52,945.48,12980000,945.48
-1966-04-13,937.24,945.32,930.01,938.36,10440000,938.36
-1966-04-12,942.42,947.10,932.51,937.24,10500000,937.24
-1966-04-11,945.76,950.77,937.69,942.42,9310000,942.42
-1966-04-07,945.26,952.39,939.53,945.76,9650000,945.76
-1966-04-06,944.71,951.22,937.58,945.26,9040000,945.26
-1966-04-05,937.86,951.44,935.91,944.71,10560000,944.71
-1966-04-04,931.29,945.48,930.51,937.86,9360000,937.86
-1966-04-01,924.77,936.30,921.77,931.29,9050000,931.29
-1966-03-31,919.76,929.12,916.31,924.77,6690000,924.77
-1966-03-30,928.00,928.00,915.31,919.76,7980000,919.76
-1966-03-29,932.62,937.19,922.88,929.39,8300000,929.39
-1966-03-28,929.95,940.36,928.61,932.62,8640000,932.62
-1966-03-25,928.61,936.52,925.38,929.95,7750000,929.95
-1966-03-24,929.00,933.35,923.37,928.61,7880000,928.61
-1966-03-23,934.52,935.91,924.88,929.00,6720000,929.00
-1966-03-22,929.28,942.92,929.28,934.52,8910000,934.52
-1966-03-21,922.88,935.52,921.65,929.17,7230000,929.17
-1966-03-18,919.32,928.95,914.58,922.88,6450000,922.88
-1966-03-17,916.03,922.99,912.58,919.32,5460000,919.32
-1966-03-16,911.08,922.27,909.13,916.03,7330000,916.03
-1966-03-15,917.09,919.15,905.40,911.08,9440000,911.08
-1966-03-14,927.95,930.01,914.36,917.09,7400000,917.09
-1966-03-11,929.23,937.30,924.72,927.95,7000000,927.95
-1966-03-10,929.84,941.42,924.10,929.23,10310000,929.23
-1966-03-09,919.98,933.51,918.98,929.84,7980000,929.84
-1966-03-08,917.78,928.95,909.57,919.98,10120000,919.98
-1966-03-07,932.34,932.46,914.81,917.78,9370000,917.78
-1966-03-04,936.35,943.31,928.89,932.34,9000000,932.34
-1966-03-03,932.01,941.25,922.27,936.35,9900000,936.35
-1966-03-02,938.19,943.09,927.78,932.01,10470000,932.01
-1966-03-01,951.89,955.17,935.52,938.19,11030000,938.19
-1966-02-28,953.00,960.41,948.21,951.89,9910000,951.89
-1966-02-25,950.66,962.30,946.10,953.00,8140000,953.00
-1966-02-24,960.13,962.19,946.60,950.66,7860000,950.66
-1966-02-23,966.48,967.87,955.12,960.13,8080000,960.13
-1966-02-21,975.22,977.11,962.80,966.48,8510000,966.48
-1966-02-18,975.27,982.07,966.31,975.22,8470000,975.22
-1966-02-17,982.40,985.85,969.93,975.27,9330000,975.27
-1966-02-16,981.57,987.80,976.22,982.40,9180000,982.40
-1966-02-15,987.69,990.81,977.61,981.57,8750000,981.57
-1966-02-14,989.03,995.60,983.24,987.69,8360000,987.69
-1966-02-11,990.81,997.99,984.96,989.03,8150000,989.03
-1966-02-10,995.15,1000.27,986.74,990.81,9790000,990.81
-1966-02-09,991.03,1001.11,987.63,995.15,9760000,995.15
-1966-02-08,989.69,998.71,979.28,991.03,10560000,991.03
-1966-02-07,986.35,996.71,981.84,989.69,8000000,989.69
-1966-02-04,981.23,991.53,976.00,986.35,7560000,986.35
-1966-02-03,982.29,991.59,976.33,981.23,8160000,981.23
-1966-02-02,975.89,985.35,967.81,982.29,8130000,982.29
-1966-02-01,983.51,987.47,969.43,975.89,9090000,975.89
-1966-01-31,985.35,992.53,979.67,983.51,7800000,983.51
-1966-01-28,990.36,994.59,979.95,985.35,9000000,985.35
-1966-01-27,990.92,997.49,985.02,990.36,8970000,990.36
-1966-01-26,991.64,999.16,984.13,990.92,9910000,990.92
-1966-01-25,991.42,998.21,986.52,991.64,9300000,991.64
-1966-01-24,988.14,999.22,984.63,991.42,8780000,991.42
-1966-01-21,987.80,993.20,980.62,988.14,9180000,988.14
-1966-01-20,991.14,997.77,983.90,987.80,8670000,987.80
-1966-01-19,994.20,1000.55,985.30,991.14,10230000,991.14
-1966-01-18,989.75,1000.50,984.68,994.20,9790000,994.20
-1966-01-17,987.30,996.60,984.02,989.75,9430000,989.75
-1966-01-14,985.69,994.09,982.07,987.30,9210000,987.30
-1966-01-13,983.96,992.65,980.23,985.69,8860000,985.69
-1966-01-12,986.85,992.59,980.45,983.96,8530000,983.96
-1966-01-11,985.41,993.04,980.34,986.85,8910000,986.85
-1966-01-10,986.13,991.92,980.56,985.41,7720000,985.41
-1966-01-07,985.46,991.59,978.61,986.13,7600000,986.13
-1966-01-06,981.62,992.26,979.00,985.46,7880000,985.46
-1966-01-05,969.26,984.85,968.76,981.62,9650000,981.62
-1966-01-04,968.54,978.50,963.02,969.26,7540000,969.26
-1966-01-03,969.26,974.55,961.91,968.54,5950000,968.54
-1965-12-31,963.69,976.61,962.58,969.26,7240000,969.26
-1965-12-30,960.30,969.76,957.62,963.69,7060000,963.69
-1965-12-29,957.96,969.15,953.67,960.30,7610000,960.30
-1965-12-28,959.79,966.09,950.05,957.96,7280000,957.96
-1965-12-27,966.36,972.49,958.29,959.79,5950000,959.79
-1965-12-23,965.86,972.93,959.35,966.36,6870000,966.36
-1965-12-22,959.46,974.16,956.34,965.86,9720000,965.86
-1965-12-21,952.22,964.86,950.05,959.46,8230000,959.46
-1965-12-20,957.85,960.69,947.16,952.22,7350000,952.22
-1965-12-17,959.13,966.09,952.61,957.85,9490000,957.85
-1965-12-16,958.74,967.14,953.78,959.13,9950000,959.13
-1965-12-15,954.06,964.81,947.99,958.74,9560000,958.74
-1965-12-14,951.55,959.85,948.05,954.06,9920000,954.06
-1965-12-13,952.72,959.52,946.54,951.55,8660000,951.55
-1965-12-10,949.55,957.51,945.71,952.72,8740000,952.72
-1965-12-09,946.60,955.67,942.59,949.55,9150000,949.55
-1965-12-08,951.33,959.63,943.42,946.60,10120000,946.60
-1965-12-07,939.53,958.63,938.80,951.33,9340000,951.33
-1965-12-06,946.10,946.15,924.44,939.53,11440000,939.53
-1965-12-03,944.59,950.94,939.36,946.10,8160000,946.10
-1965-12-02,947.60,951.11,938.80,944.59,9070000,944.59
-1965-12-01,946.71,953.00,941.81,947.60,10140000,947.60
-1965-11-30,946.93,950.89,937.24,946.71,8990000,946.71
-1965-11-29,948.16,954.84,942.48,946.93,8760000,946.93
-1965-11-26,948.94,953.56,943.76,948.16,6970000,948.16
-1965-11-24,948.94,956.06,942.98,948.94,7870000,948.94
-1965-11-23,946.38,953.28,941.87,948.94,7150000,948.94
-1965-11-22,952.72,954.95,941.48,946.38,6370000,946.38
-1965-11-19,950.50,958.51,946.88,952.72,6850000,952.72
-1965-11-18,956.57,958.24,945.26,950.50,7040000,950.50
-1965-11-17,956.51,963.14,950.66,956.57,9120000,956.57
-1965-11-16,955.90,962.08,950.27,956.51,8380000,956.51
-1965-11-15,956.29,963.91,951.39,955.90,8310000,955.90
-1965-11-12,953.28,961.80,949.44,956.29,7780000,956.29
-1965-11-11,951.22,955.84,946.15,953.28,5430000,953.28
-1965-11-10,951.72,957.34,946.60,951.22,4860000,951.22
-1965-11-09,953.95,959.13,945.76,951.72,6680000,951.72
-1965-11-08,959.46,961.74,948.60,953.95,7000000,953.95
-1965-11-05,961.85,967.42,953.89,959.46,7310000,959.46
-1965-11-04,961.13,969.98,956.23,961.85,8380000,961.85
-1965-11-03,958.96,965.97,953.06,961.13,7520000,961.13
-1965-11-01,960.82,964.36,953.61,958.96,6340000,958.96
-1965-10-29,959.11,966.47,955.38,960.82,7240000,960.82
-1965-10-28,959.50,965.21,952.75,959.11,7230000,959.11
-1965-10-27,956.32,967.46,954.83,959.50,7670000,959.50
-1965-10-26,948.14,959.44,945.95,956.32,6750000,956.32
-1965-10-25,952.42,958.95,944.30,948.14,7090000,948.14
-1965-10-22,950.28,959.39,946.71,952.42,8960000,952.42
-1965-10-21,948.47,957.36,944.90,950.28,9170000,950.28
-1965-10-20,947.76,953.57,941.72,948.47,8200000,948.47
-1965-10-19,945.84,955.49,943.15,947.76,8620000,947.76
-1965-10-18,940.68,952.31,939.31,945.84,8180000,945.84
-1965-10-15,937.50,945.07,934.15,940.68,7470000,940.68
-1965-10-14,941.01,946.22,933.87,937.50,8580000,937.50
-1965-10-13,941.12,945.84,935.74,941.01,9470000,941.01
-1965-10-12,942.65,947.92,936.73,941.12,9470000,941.12
-1965-10-11,938.32,948.30,936.40,942.65,9600000,942.65
-1965-10-08,934.42,944.08,932.50,938.32,7670000,938.32
-1965-10-07,936.84,941.83,930.75,934.42,6670000,934.42
-1965-10-06,938.70,942.49,927.29,936.84,6010000,936.84
-1965-10-05,930.86,942.49,930.14,938.70,6980000,938.70
-1965-10-04,929.65,935.57,924.05,930.86,5590000,930.86
-1965-10-01,930.58,936.07,923.23,929.65,7470000,929.65
-1965-09-30,932.39,939.20,927.40,930.58,8670000,930.58
-1965-09-29,935.85,944.96,927.89,932.39,10600000,932.39
-1965-09-28,937.88,943.42,928.66,935.85,8750000,935.85
-1965-09-27,929.54,944.74,927.89,937.88,6820000,937.88
-1965-09-24,927.45,933.65,918.89,929.54,7810000,929.54
-1965-09-23,931.62,938.37,922.95,927.45,9990000,927.45
-1965-09-22,926.52,936.62,922.35,931.62,8290000,931.62
-1965-09-21,931.18,936.73,923.45,926.52,7750000,926.52
-1965-09-20,928.99,937.00,924.27,931.18,7040000,931.18
-1965-09-17,931.18,934.59,922.57,928.99,6610000,928.99
-1965-09-16,922.95,935.46,922.73,931.18,7410000,931.18
-1965-09-15,916.59,927.89,913.41,922.95,6220000,922.95
-1965-09-14,920.92,928.22,913.57,916.59,7830000,916.59
-1965-09-13,918.95,927.62,913.41,920.92,7020000,920.92
-1965-09-10,917.47,924.00,911.65,918.95,6650000,918.95
-1965-09-09,913.68,923.12,911.81,917.47,7360000,917.47
-1965-09-08,910.11,918.45,905.67,913.68,6240000,913.68
-1965-09-07,907.97,915.22,904.30,910.11,5750000,910.11
-1965-09-03,900.46,910.28,900.46,907.97,6010000,907.97
-1965-09-02,893.60,903.03,892.17,900.40,6470000,900.40
-1965-09-01,893.10,897.93,886.96,893.60,5890000,893.60
-1965-08-31,895.63,900.84,888.22,893.10,5170000,893.10
-1965-08-30,895.96,899.69,890.52,895.63,4400000,895.63
-1965-08-27,896.18,901.88,891.95,895.96,5570000,895.96
-1965-08-26,890.85,899.25,886.74,896.18,6010000,896.18
-1965-08-25,887.12,895.79,884.38,890.85,6240000,890.85
-1965-08-24,887.07,893.05,883.50,887.12,4740000,887.12
-1965-08-23,889.92,893.65,883.94,887.07,4470000,887.07
-1965-08-20,891.79,894.97,884.71,889.92,4170000,889.92
-1965-08-19,894.37,900.13,889.43,891.79,5000000,891.79
-1965-08-18,894.26,901.39,890.30,894.37,5850000,894.37
-1965-08-17,891.13,898.37,888.11,894.26,4520000,894.26
-1965-08-16,888.82,896.89,886.41,891.13,5270000,891.13
-1965-08-13,881.96,891.95,880.48,888.82,5430000,888.82
-1965-08-12,881.47,886.90,876.86,881.96,5160000,881.96
-1965-08-11,878.89,885.42,876.48,881.47,5030000,881.47
-1965-08-10,879.77,883.39,875.43,878.89,4690000,878.89
-1965-08-09,882.51,887.40,876.31,879.77,4540000,879.77
-1965-08-06,881.63,886.57,875.38,882.51,4200000,882.51
-1965-08-05,883.88,886.96,878.34,881.63,4920000,881.63
-1965-08-04,881.20,888.11,878.40,883.88,4830000,883.88
-1965-08-03,881.85,885.04,874.78,881.20,4640000,881.20
-1965-08-02,881.74,888.11,876.48,881.85,4220000,881.85
-1965-07-30,875.49,885.31,875.49,881.74,5200000,881.74
-1965-07-29,867.92,877.85,864.62,874.23,4690000,874.23
-1965-07-28,863.53,873.18,858.42,867.92,4760000,867.92
-1965-07-27,867.26,872.09,860.78,863.53,4190000,863.53
-1965-07-26,863.97,870.66,858.75,867.26,3790000,867.26
-1965-07-23,861.77,869.40,859.58,863.97,3600000,863.97
-1965-07-22,865.01,868.08,857.71,861.77,3310000,861.77
-1965-07-21,868.79,872.58,860.95,865.01,4350000,865.01
-1965-07-20,880.26,882.02,866.82,868.79,4670000,868.79
-1965-07-19,880.43,884.54,876.09,880.26,3220000,880.26
-1965-07-16,880.98,885.91,875.98,880.43,3520000,880.43
-1965-07-15,883.23,889.98,878.62,880.98,4420000,880.98
-1965-07-14,876.97,886.24,874.23,883.23,4100000,883.23
-1965-07-13,877.96,881.03,872.47,876.97,3260000,876.97
-1965-07-12,879.49,883.99,874.39,877.96,3690000,877.96
-1965-07-09,877.85,885.04,874.72,879.49,4800000,879.49
-1965-07-08,870.77,880.59,867.20,877.85,4380000,877.85
-1965-07-07,873.18,874.61,866.71,870.77,3020000,870.77
-1965-07-06,875.16,879.60,870.00,873.18,3400000,873.18
-1965-07-02,871.59,878.40,866.76,875.16,4260000,875.16
-1965-07-01,868.03,873.84,861.88,871.59,4520000,871.59
-1965-06-30,856.94,873.35,856.94,868.03,6930000,868.03
-1965-06-29,840.59,856.45,832.74,851.40,10450000,851.40
-1965-06-28,854.36,858.86,838.78,840.59,7650000,840.59
-1965-06-25,857.76,861.99,849.75,854.36,5790000,854.36
-1965-06-24,870.22,870.93,854.64,857.76,5840000,857.76
-1965-06-23,875.43,879.38,868.25,870.22,3580000,870.22
-1965-06-22,874.12,882.18,871.48,875.43,3330000,875.43
-1965-06-21,879.17,881.47,868.79,874.12,3280000,874.12
-1965-06-18,883.06,888.22,875.10,879.17,4330000,879.17
-1965-06-17,878.07,888.44,876.20,883.06,5220000,883.06
-1965-06-16,874.57,886.13,873.40,878.07,6290000,878.07
-1965-06-15,868.71,876.75,859.13,874.57,8450000,874.57
-1965-06-14,881.70,885.43,863.87,868.71,5920000,868.71
-1965-06-11,876.49,886.55,874.52,881.70,5350000,881.70
-1965-06-10,879.84,887.56,869.35,876.49,7470000,876.49
-1965-06-09,889.05,893.79,875.90,879.84,7070000,879.84
-1965-06-08,902.15,903.16,886.71,889.05,4660000,889.05
-1965-06-07,900.87,907.47,889.90,902.15,4680000,902.15
-1965-06-04,899.22,905.02,894.69,900.87,4530000,900.87
-1965-06-03,904.06,913.11,896.40,899.22,5720000,899.22
-1965-06-02,908.53,910.08,894.75,904.06,6790000,904.06
-1965-06-01,918.04,921.85,907.04,908.53,4830000,908.53
-1965-05-28,913.22,920.69,910.89,918.04,4270000,918.04
-1965-05-27,917.16,918.20,904.82,913.22,5520000,913.22
-1965-05-26,921.00,927.48,915.09,917.16,5330000,917.16
-1965-05-25,914.21,924.58,912.55,921.00,4950000,921.00
-1965-05-24,922.01,924.27,910.89,914.21,4790000,914.21
-1965-05-21,927.27,928.02,918.66,922.01,4660000,922.01
-1965-05-20,932.12,934.17,922.41,927.27,5750000,927.27
-1965-05-19,930.62,936.87,926.97,932.12,5860000,932.12
-1965-05-18,930.67,932.82,924.36,930.62,5130000,930.62
-1965-05-17,939.62,941.52,928.07,930.67,4980000,930.67
-1965-05-14,938.87,944.82,933.82,939.62,5860000,939.62
-1965-05-13,934.17,942.37,933.52,938.87,6460000,938.87
-1965-05-12,930.92,938.12,928.72,934.17,6310000,934.17
-1965-05-11,931.47,934.87,925.62,930.92,5150000,930.92
-1965-05-10,932.52,937.22,926.62,931.47,5600000,931.47
-1965-05-07,933.52,937.07,927.07,932.52,5820000,932.52
-1965-05-06,932.22,938.12,928.02,933.52,6340000,933.52
-1965-05-05,928.22,936.37,924.91,932.22,6350000,932.22
-1965-05-04,922.11,931.07,919.71,928.22,5720000,928.22
-1965-05-03,922.31,926.97,916.66,922.11,5340000,922.11
-1965-04-30,918.71,925.42,915.36,922.31,5190000,922.31
-1965-04-29,918.86,923.01,914.91,918.71,5510000,918.71
-1965-04-28,918.16,923.56,914.01,918.86,5680000,918.86
-1965-04-27,916.86,924.96,915.76,918.16,6310000,918.16
-1965-04-26,916.41,920.11,910.21,916.86,5410000,916.86
-1965-04-23,915.06,921.51,912.26,916.41,5860000,916.41
-1965-04-22,910.71,917.51,908.31,915.06,5990000,915.06
-1965-04-21,911.96,915.31,903.81,910.71,5590000,910.71
-1965-04-20,912.76,919.01,908.01,911.96,6480000,911.96
-1965-04-19,911.91,917.41,907.91,912.76,5700000,912.76
-1965-04-15,912.86,917.01,905.71,911.91,5830000,911.91
-1965-04-14,908.01,916.51,905.96,912.86,6580000,912.86
-1965-04-13,906.36,912.41,902.21,908.01,6690000,908.01
-1965-04-12,901.29,909.51,899.90,906.36,6040000,906.36
-1965-04-09,897.90,905.77,895.93,901.29,6580000,901.29
-1965-04-08,892.94,900.41,890.72,897.90,5770000,897.90
-1965-04-07,891.90,895.84,888.27,892.94,4430000,892.94
-1965-04-06,893.23,896.13,888.51,891.90,4610000,891.90
-1965-04-05,893.38,898.69,889.00,893.23,4920000,893.23
-1965-04-02,890.33,897.31,888.71,893.38,5060000,893.38
-1965-04-01,889.05,894.95,886.84,890.33,4890000,890.33
-1965-03-31,889.05,893.72,885.51,889.05,4470000,889.05
-1965-03-30,887.82,892.99,885.27,889.05,4270000,889.05
-1965-03-29,891.66,896.43,884.68,887.82,4590000,887.82
-1965-03-26,898.34,900.60,888.51,891.66,5020000,891.66
-1965-03-25,900.56,904.88,895.74,898.34,5460000,898.34
-1965-03-24,898.69,904.39,896.13,900.56,5420000,900.56
-1965-03-23,896.12,902.32,893.82,898.69,4820000,898.69
-1965-03-22,895.79,901.14,892.87,896.12,4920000,896.12
-1965-03-19,896.55,900.43,892.20,895.79,5040000,895.79
-1965-03-18,899.37,902.67,893.35,896.55,4990000,896.55
-1965-03-17,898.90,904.01,894.45,899.37,5120000,899.37
-1965-03-16,899.85,904.58,894.83,898.90,5480000,898.90
-1965-03-15,900.33,907.88,896.89,899.85,6000000,899.85
-1965-03-12,896.51,905.16,894.50,900.33,6370000,900.33
-1965-03-11,892.39,900.71,890.24,896.51,5770000,896.51
-1965-03-10,894.07,898.13,888.81,892.39,5100000,892.39
-1965-03-09,896.84,900.71,890.72,894.07,5210000,894.07
-1965-03-08,895.98,901.81,891.30,896.84,5250000,896.84
-1965-03-05,897.75,898.61,886.28,895.98,6120000,895.98
-1965-03-04,900.76,905.25,894.45,897.75,7300000,897.75
-1965-03-03,901.91,906.95,896.27,900.76,6600000,900.76
-1965-03-02,899.76,905.73,896.17,901.91,5730000,901.91
-1965-03-01,903.48,907.40,895.55,899.76,5780000,899.76
-1965-02-26,899.90,908.26,897.08,903.48,5800000,903.48
-1965-02-25,897.84,904.82,894.64,899.90,6680000,899.90
-1965-02-24,891.96,900.76,891.30,897.84,7160000,897.84
-1965-02-23,885.61,895.84,884.60,891.96,5880000,891.96
-1965-02-19,883.69,890.24,880.25,885.61,5560000,885.61
-1965-02-18,882.93,888.52,878.53,883.69,6060000,883.69
-1965-02-17,881.35,889.10,877.86,882.93,5510000,882.93
-1965-02-16,885.32,887.90,877.48,881.35,5000000,881.35
-1965-02-15,888.47,895.26,882.60,885.32,5760000,885.32
-1965-02-12,881.88,891.15,881.45,888.47,4960000,888.47
-1965-02-11,892.92,897.70,879.97,881.88,5800000,881.88
-1965-02-10,901.24,905.54,890.77,892.92,7210000,892.92
-1965-02-09,897.89,905.40,896.12,901.24,5690000,901.24
-1965-02-08,901.57,901.86,889.96,897.89,6010000,897.89
-1965-02-05,904.06,906.93,897.70,901.57,5690000,901.57
-1965-02-04,906.30,911.80,900.33,904.06,6230000,904.06
-1965-02-03,903.77,909.75,898.99,906.30,6130000,906.30
-1965-02-02,903.68,907.21,898.61,903.77,5460000,903.77
-1965-02-01,902.86,908.26,897.99,903.68,5690000,903.68
-1965-01-29,900.95,907.79,898.32,902.86,6940000,902.86
-1965-01-28,899.52,906.26,895.79,900.95,6730000,900.95
-1965-01-27,897.84,904.44,894.26,899.52,6010000,899.52
-1965-01-26,896.46,901.86,892.30,897.84,5760000,897.84
-1965-01-25,893.59,900.71,890.82,896.46,5370000,896.46
-1965-01-22,893.26,898.70,888.43,893.59,5430000,893.59
-1965-01-21,895.31,897.46,887.81,893.26,4780000,893.26
-1965-01-20,896.27,901.43,891.92,895.31,5550000,895.31
-1965-01-19,895.21,902.10,891.10,896.27,5550000,896.27
-1965-01-18,891.15,898.90,889.86,895.21,5550000,895.21
-1965-01-15,887.18,895.12,884.65,891.15,5340000,891.15
-1965-01-14,886.85,892.30,881.59,887.18,5810000,887.18
-1965-01-13,885.89,891.77,883.22,886.85,6160000,886.85
-1965-01-12,883.22,889.34,880.97,885.89,5400000,885.89
-1965-01-11,882.60,887.42,877.43,883.22,5440000,883.22
-1965-01-08,884.36,888.62,878.87,882.60,5340000,882.60
-1965-01-07,879.68,887.52,876.95,884.36,5080000,884.36
-1965-01-06,875.86,885.08,875.04,879.68,4850000,879.68
-1965-01-05,869.78,879.87,868.69,875.86,4110000,875.86
-1965-01-04,874.13,877.19,865.10,869.78,3930000,869.78
-1964-12-31,868.78,879.78,868.78,874.13,6470000,874.13
-1964-12-30,862.18,871.51,861.56,868.69,5610000,868.69
-1964-12-29,867.01,868.78,858.26,862.18,4450000,862.18
-1964-12-28,868.16,871.98,863.09,867.01,3990000,867.01
-1964-12-24,868.02,872.89,863.57,868.16,3600000,868.16
-1964-12-23,870.36,876.05,863.19,868.02,4470000,868.02
-1964-12-22,869.74,876.38,865.86,870.36,4520000,870.36
-1964-12-21,868.73,875.62,866.10,869.74,4470000,869.74
-1964-12-18,863.57,872.22,862.95,868.73,4630000,868.73
-1964-12-17,860.08,867.30,857.50,863.57,4850000,863.57
-1964-12-16,857.45,865.34,854.87,860.08,4610000,860.08
-1964-12-15,860.65,862.71,850.19,857.45,5340000,857.45
-1964-12-14,864.34,868.78,857.40,860.65,4340000,860.65
-1964-12-11,863.14,869.31,860.22,864.34,4530000,864.34
-1964-12-10,863.81,869.16,858.46,863.14,4790000,863.14
-1964-12-09,870.69,873.13,861.61,863.81,5120000,863.81
-1964-12-08,873.99,878.44,867.35,870.69,4990000,870.69
-1964-12-07,871.17,881.35,871.17,873.99,4770000,873.99
-1964-12-04,870.79,875.09,866.44,870.93,4340000,870.93
-1964-12-03,867.25,876.86,867.25,870.79,4250000,870.79
-1964-12-02,864.43,871.84,861.08,867.16,4930000,867.16
-1964-12-01,875.43,877.96,863.04,864.43,4940000,864.43
-1964-11-30,882.12,885.22,871.46,875.43,4890000,875.43
-1964-11-27,882.40,886.80,874.47,882.12,4070000,882.12
-1964-11-25,887.61,890.00,880.16,882.40,4800000,882.40
-1964-11-24,889.29,891.49,881.11,887.61,5070000,887.61
-1964-11-23,890.72,894.83,882.88,889.29,4860000,889.29
-1964-11-20,888.71,896.41,884.51,890.72,5210000,890.72
-1964-11-19,891.71,892.97,882.07,888.71,5570000,888.71
-1964-11-18,885.39,897.00,884.69,891.71,6560000,891.71
-1964-11-17,880.19,892.18,880.19,885.39,5920000,885.39
-1964-11-16,874.11,883.52,870.22,880.10,4870000,880.10
-1964-11-13,874.62,878.46,870.73,874.11,4860000,874.11
-1964-11-12,873.59,880.00,870.41,874.62,5250000,874.62
-1964-11-11,870.64,876.17,866.80,873.59,3790000,873.59
-1964-11-10,874.57,878.32,867.60,870.64,5020000,870.64
-1964-11-09,876.87,880.00,871.34,874.57,4560000,874.57
-1964-11-06,873.54,879.35,869.33,876.87,4810000,876.87
-1964-11-05,873.82,879.26,869.10,873.54,4380000,873.54
-1964-11-04,875.51,881.27,870.41,873.82,4720000,873.82
-1964-11-02,873.08,878.13,867.64,875.51,4430000,875.51
-1964-10-30,871.86,876.91,868.91,873.08,4120000,873.08
-1964-10-29,871.16,876.87,867.83,871.86,4390000,871.86
-1964-10-28,875.98,879.58,867.79,871.16,4890000,871.16
-1964-10-27,877.01,880.33,872.75,875.98,4470000,875.98
-1964-10-26,877.62,883.33,873.45,877.01,5230000,877.01
-1964-10-23,877.01,879.91,872.14,877.62,3830000,877.62
-1964-10-22,879.72,883.33,872.51,877.01,4670000,877.01
-1964-10-21,881.50,886.28,876.49,879.72,5170000,879.72
-1964-10-20,876.21,884.87,873.97,881.50,5140000,881.50
-1964-10-19,873.54,879.82,870.41,876.21,5010000,876.21
-1964-10-16,868.44,877.71,866.80,873.54,5140000,873.54
-1964-10-15,875.18,876.40,861.42,868.44,6500000,868.44
-1964-10-14,876.21,880.00,872.00,875.18,4530000,875.18
-1964-10-13,877.57,881.88,871.95,876.21,5400000,876.21
-1964-10-12,878.08,881.50,874.76,877.57,4110000,877.57
-1964-10-09,874.90,881.78,872.65,878.08,5290000,878.08
-1964-10-08,873.78,879.40,869.56,874.90,5060000,874.90
-1964-10-07,875.14,879.02,871.34,873.78,5090000,873.78
-1964-10-06,877.15,881.17,872.05,875.14,4820000,875.14
-1964-10-05,872.65,882.39,871.48,877.15,4850000,877.15
-1964-10-02,872.00,876.21,867.36,872.65,4370000,872.65
-1964-10-01,875.37,878.23,869.80,872.00,4470000,872.00
-1964-09-30,875.74,880.24,872.19,875.37,4720000,875.37
-1964-09-29,875.46,880.14,871.30,875.74,5070000,875.74
-1964-09-28,874.71,879.40,869.24,875.46,4810000,875.46
-1964-09-25,872.98,879.26,868.72,874.71,6170000,874.71
-1964-09-24,871.95,876.96,867.04,872.98,5840000,872.98
-1964-09-23,872.47,876.77,867.88,871.95,5920000,871.95
-1964-09-22,871.58,877.43,868.67,872.47,5250000,872.47
-1964-09-21,866.47,875.00,866.47,871.58,5310000,871.58
-1964-09-18,868.67,873.92,860.20,865.12,6160000,865.12
-1964-09-17,864.18,873.17,862.87,868.67,6380000,868.67
-1964-09-16,862.54,867.64,857.35,864.18,4230000,864.18
-1964-09-15,866.24,871.30,860.95,862.54,5690000,862.54
-1964-09-14,867.13,872.84,862.35,866.24,5370000,866.24
-1964-09-11,859.50,870.64,857.06,867.13,5630000,867.13
-1964-09-10,855.57,863.06,852.66,859.50,5470000,859.50
-1964-09-09,851.91,860.01,850.56,855.57,5690000,855.57
-1964-09-08,848.31,855.61,847.61,851.91,4090000,851.91
-1964-09-04,846.02,850.84,843.58,848.31,4210000,848.31
-1964-09-03,845.08,848.97,841.24,846.02,4310000,846.02
-1964-09-02,844.00,849.62,840.96,845.08,4800000,845.08
-1964-09-01,838.48,846.06,836.56,844.00,4650000,844.00
-1964-08-31,839.09,842.83,834.59,838.48,3340000,838.48
-1964-08-28,835.25,841.94,833.98,839.09,3760000,839.09
-1964-08-27,829.21,837.40,826.91,835.25,3560000,835.25
-1964-08-26,832.20,834.87,826.59,829.21,3300000,829.21
-1964-08-25,837.31,839.09,830.29,832.20,3780000,832.20
-1964-08-24,838.62,843.21,834.83,837.31,3790000,837.31
-1964-08-21,838.71,842.60,835.39,838.62,3620000,838.62
-1964-08-20,841.76,844.19,835.44,838.71,3840000,838.71
-1964-08-19,842.83,847.19,838.24,841.76,4160000,841.76
-1964-08-18,840.21,845.64,837.17,842.83,4180000,842.83
-1964-08-17,838.81,844.77,836.18,840.21,3780000,840.21
-1964-08-14,838.52,844.00,834.92,838.81,4080000,838.81
-1964-08-13,834.08,842.41,833.14,838.52,4600000,838.52
-1964-08-12,828.08,837.54,827.29,834.08,4140000,834.08
-1964-08-11,829.35,832.95,825.56,828.08,3450000,828.08
-1964-08-10,829.16,834.08,825.18,829.35,3050000,829.35
-1964-08-07,823.40,831.60,822.75,829.16,3190000,829.16
-1964-08-06,833.05,835.90,822.56,823.40,3940000,823.40
-1964-08-05,832.77,835.44,820.78,833.05,6160000,833.05
-1964-08-04,840.35,840.91,829.96,832.77,4780000,832.77
-1964-08-03,841.10,844.28,837.45,840.35,3780000,840.35
-1964-07-31,839.37,844.80,836.89,841.10,4220000,841.10
-1964-07-30,838.67,843.86,836.14,839.37,4530000,839.37
-1964-07-29,837.35,842.93,834.31,838.67,4050000,838.67
-1964-07-28,841.05,842.27,833.47,837.35,3860000,837.35
-1964-07-27,845.64,849.53,838.95,841.05,4090000,841.05
-1964-07-24,846.48,850.32,842.88,845.64,4210000,845.64
-1964-07-23,847.65,851.54,842.93,846.48,4560000,846.48
-1964-07-22,846.95,851.45,841.71,847.65,4570000,847.65
-1964-07-21,849.39,851.49,841.85,846.95,4570000,846.95
-1964-07-20,851.35,855.19,847.00,849.39,4390000,849.39
-1964-07-17,847.47,854.11,845.45,851.35,4640000,851.35
-1964-07-16,844.80,850.04,842.04,847.47,4640000,847.47
-1964-07-15,843.63,849.06,839.27,844.80,4610000,844.80
-1964-07-14,845.55,849.53,839.60,843.63,4760000,843.63
-1964-07-13,847.51,851.54,841.90,845.55,4800000,845.55
-1964-07-10,845.13,852.52,841.99,847.51,5420000,847.51
-1964-07-09,845.45,849.85,841.01,845.13,5040000,845.13
-1964-07-08,844.94,849.34,839.98,845.45,4760000,845.45
-1964-07-07,844.24,849.15,841.66,844.94,5240000,844.94
-1964-07-06,841.47,848.64,838.01,844.24,5080000,844.24
-1964-07-02,838.06,844.75,836.04,841.47,5230000,841.47
-1964-07-01,831.50,839.88,829.30,838.06,5320000,838.06
-1964-06-30,830.94,834.64,826.31,831.50,4360000,831.50
-1964-06-29,830.99,835.90,827.01,830.94,4380000,830.94
-1964-06-26,827.48,833.05,825.09,830.99,4440000,830.99
-1964-06-25,827.01,832.39,823.40,827.48,5010000,827.48
-1964-06-24,822.70,831.17,819.80,827.01,4840000,827.01
-1964-06-23,826.38,830.05,820.55,822.70,4060000,822.70
-1964-06-22,825.25,831.97,823.30,826.38,4540000,826.38
-1964-06-19,823.98,828.11,819.94,825.25,4050000,825.25
-1964-06-18,823.35,829.42,820.62,823.98,4730000,823.98
-1964-06-17,818.16,826.45,817.63,823.35,5340000,823.35
-1964-06-16,813.56,821.22,812.63,818.16,4590000,818.16
-1964-06-15,809.39,816.79,808.11,813.56,4110000,813.56
-1964-06-12,811.25,814.22,806.52,809.39,3840000,809.39
-1964-06-11,807.53,815.15,806.65,811.25,3620000,811.25
-1964-06-10,805.54,812.10,803.99,807.53,4170000,807.53
-1964-06-09,800.31,808.15,796.90,805.54,4470000,805.54
-1964-06-08,806.03,808.95,798.50,800.31,4010000,800.31
-1964-06-05,802.48,810.37,801.78,806.03,4240000,806.03
-1964-06-04,811.79,813.38,800.75,802.48,4880000,802.48
-1964-06-03,813.78,818.16,809.84,811.79,3990000,811.79
-1964-06-02,818.56,820.34,811.87,813.78,4180000,813.78
-1964-06-01,820.56,824.94,815.82,818.56,4300000,818.56
-1964-05-28,817.94,824.14,814.80,820.56,4560000,820.56
-1964-05-27,818.92,822.20,812.63,817.94,4450000,817.94
-1964-05-26,820.25,824.01,816.88,818.92,4290000,818.92
-1964-05-25,820.87,825.47,816.39,820.25,3990000,820.25
-1964-05-22,819.80,824.81,816.57,820.87,4640000,820.87
-1964-05-21,820.11,826.45,816.08,819.80,5350000,819.80
-1964-05-20,817.28,824.10,815.15,820.11,4790000,820.11
-1964-05-19,821.31,823.26,813.96,817.28,4360000,817.28
-1964-05-18,826.23,829.33,819.18,821.31,4590000,821.31
-1964-05-15,824.45,829.15,821.22,826.23,5070000,826.23
-1964-05-14,825.78,828.62,819.63,824.45,4720000,824.45
-1964-05-13,827.38,832.78,822.24,825.78,5890000,825.78
-1964-05-12,827.07,832.25,824.41,827.38,5200000,827.38
-1964-05-11,828.57,832.21,824.10,827.07,4490000,827.07
-1964-05-08,830.17,834.55,825.12,828.57,4910000,828.57
-1964-05-07,828.18,836.06,824.19,830.17,5600000,830.17
-1964-05-06,826.63,832.34,822.55,828.18,5560000,828.18
-1964-05-05,823.83,829.28,817.23,826.63,5340000,826.63
-1964-05-04,817.10,828.09,816.39,823.83,5360000,823.83
-1964-05-01,810.77,819.40,808.55,817.10,5990000,817.10
-1964-04-30,812.81,816.88,807.18,810.77,5690000,810.77
-1964-04-29,816.70,821.97,810.32,812.81,6200000,812.81
-1964-04-28,811.87,820.11,809.04,816.70,4790000,816.70
-1964-04-27,814.89,817.68,807.71,811.87,5070000,811.87
-1964-04-24,821.66,823.79,813.51,814.89,5610000,814.89
-1964-04-23,823.57,830.04,819.32,821.66,6690000,821.66
-1964-04-22,826.45,828.09,820.25,823.57,5390000,823.57
-1964-04-21,824.54,830.70,820.47,826.45,5750000,826.45
-1964-04-20,827.33,829.81,821.49,824.54,5560000,824.54
-1964-04-17,825.65,831.63,822.51,827.33,6030000,827.33
-1964-04-16,825.43,830.12,821.22,825.65,5240000,825.65
-1964-04-15,822.95,828.62,820.38,825.43,5270000,825.43
-1964-04-14,821.31,826.63,818.12,822.95,5120000,822.95
-1964-04-13,821.75,826.71,818.21,821.31,5330000,821.31
-1964-04-10,821.35,825.34,819.14,821.75,4990000,821.75
-1964-04-09,824.19,827.51,819.54,821.35,5300000,821.35
-1964-04-08,822.77,828.09,818.87,824.19,5380000,824.19
-1964-04-07,824.76,829.42,819.18,822.77,5900000,822.77
-1964-04-06,822.99,828.88,820.51,824.76,5840000,824.76
-1964-04-03,820.87,828.49,818.43,822.99,5990000,822.99
-1964-04-02,816.08,825.12,815.20,820.87,6840000,820.87
-1964-04-01,813.29,819.23,809.79,816.08,5510000,816.08
-1964-03-31,815.29,817.94,810.37,813.29,5270000,813.29
-1964-03-30,815.91,819.98,812.18,815.29,6060000,815.29
-1964-03-26,813.16,819.45,811.39,815.91,5760000,815.91
-1964-03-25,811.43,816.35,808.60,813.16,5420000,813.16
-1964-03-24,813.60,816.92,808.95,811.43,5210000,811.43
-1964-03-23,814.93,817.72,809.93,813.60,4940000,813.60
-1964-03-20,819.36,820.47,810.81,814.93,5020000,814.93
-1964-03-19,820.25,824.72,815.91,819.36,5670000,819.36
-1964-03-18,818.16,824.23,814.67,820.25,5890000,820.25
-1964-03-17,816.48,821.80,812.58,818.16,5480000,818.16
-1964-03-16,816.22,821.35,813.25,816.48,5140000,816.48
-1964-03-13,814.22,819.85,810.94,816.22,5660000,816.22
-1964-03-12,813.87,818.08,809.22,814.22,5290000,814.22
-1964-03-11,809.39,817.01,807.84,813.87,6180000,813.87
-1964-03-10,807.18,811.96,803.37,809.39,5500000,809.39
-1964-03-09,806.03,812.14,803.41,807.18,5510000,807.18
-1964-03-06,803.77,809.13,801.16,806.03,4790000,806.03
-1964-03-05,804.70,807.93,799.78,803.77,4680000,803.77
-1964-03-04,805.72,810.19,800.80,804.70,5250000,804.70
-1964-03-03,802.75,809.75,801.33,805.72,5350000,805.72
-1964-03-02,800.14,807.22,798.05,802.75,5690000,802.75
-1964-02-28,797.04,802.35,793.80,800.14,4980000,800.14
-1964-02-27,799.38,803.46,795.44,797.04,5420000,797.04
-1964-02-26,796.59,802.00,793.80,799.38,5350000,799.38
-1964-02-25,797.12,800.54,792.96,796.59,5010000,796.59
-1964-02-24,796.99,802.93,793.32,797.12,5630000,797.12
-1964-02-20,794.91,800.93,791.41,796.99,4690000,796.99
-1964-02-19,795.40,800.27,791.32,794.91,4280000,794.91
-1964-02-18,796.19,800.67,791.32,795.40,4660000,795.40
-1964-02-17,794.56,800.40,791.45,796.19,4780000,796.19
-1964-02-14,794.42,798.85,789.95,794.56,4360000,794.56
-1964-02-13,794.82,799.07,789.99,794.42,4820000,794.42
-1964-02-12,792.16,798.14,790.39,794.82,4650000,794.82
-1964-02-11,788.71,795.04,786.58,792.16,4040000,792.16
-1964-02-10,791.59,797.17,786.76,788.71,4150000,788.71
-1964-02-07,786.41,795.40,784.37,791.59,4710000,791.59
-1964-02-06,783.04,789.42,780.69,786.41,4110000,786.41
-1964-02-05,783.30,789.82,777.99,783.04,4010000,783.04
-1964-02-04,784.72,787.78,778.96,783.30,4320000,783.30
-1964-02-03,785.34,789.90,780.25,784.72,4140000,784.72
-1964-01-31,783.44,789.77,780.34,785.34,4000000,785.34
-1964-01-30,782.60,788.35,778.88,783.44,4230000,783.44
-1964-01-29,787.78,790.04,779.72,782.60,4450000,782.60
-1964-01-28,785.34,791.63,781.75,787.78,4720000,787.78
-1964-01-27,783.04,790.39,780.43,785.34,5240000,785.34
-1964-01-24,782.86,787.65,778.12,783.04,5080000,783.04
-1964-01-23,781.31,787.60,777.95,782.86,5380000,782.86
-1964-01-22,776.44,786.89,774.45,781.31,5430000,781.31
-1964-01-21,773.03,779.54,767.80,776.44,4800000,776.44
-1964-01-20,775.69,780.47,769.82,773.03,5570000,773.03
-1964-01-17,776.13,779.41,770.59,775.69,5600000,775.69
-1964-01-16,774.71,781.71,770.95,776.13,6200000,776.13
-1964-01-15,774.49,779.63,768.55,774.71,6750000,774.71
-1964-01-14,773.12,778.88,770.46,774.49,6500000,774.49
-1964-01-13,774.33,777.86,768.38,773.12,5440000,773.12
-1964-01-10,776.55,778.81,770.38,774.33,5260000,774.33
-1964-01-09,774.46,780.59,770.29,776.55,5180000,776.55
-1964-01-08,771.73,777.25,768.94,774.46,5380000,774.46
-1964-01-07,769.51,776.12,766.12,771.73,5700000,771.73
-1964-01-06,767.68,773.77,764.77,769.51,5480000,769.51
-1964-01-03,766.08,771.73,763.77,767.68,5550000,767.68
-1964-01-02,762.95,770.73,760.34,766.08,4680000,766.08
-1963-12-31,759.90,767.55,758.64,762.95,6730000,762.95
-1963-12-30,762.95,764.12,756.64,759.90,4930000,759.90
-1963-12-27,760.21,767.77,758.51,762.95,4360000,762.95
-1963-12-26,756.86,764.47,754.91,760.21,3700000,760.21
-1963-12-24,758.30,763.16,752.82,756.86,3970000,756.86
-1963-12-23,762.08,765.03,754.43,758.30,4540000,758.30
-1963-12-20,763.86,767.29,757.91,762.08,4600000,762.08
-1963-12-19,767.21,769.81,760.73,763.86,4410000,763.86
-1963-12-18,766.38,773.07,762.43,767.21,6000000,767.21
-1963-12-17,761.64,769.51,758.99,766.38,5140000,766.38
-1963-12-16,760.17,765.03,756.12,761.64,4280000,761.64
-1963-12-13,757.43,762.82,756.25,760.17,4290000,760.17
-1963-12-12,757.21,761.60,754.30,757.43,4220000,757.43
-1963-12-11,759.25,762.03,754.04,757.21,4400000,757.21
-1963-12-10,759.08,764.25,754.95,759.25,4560000,759.25
-1963-12-09,760.25,764.29,755.43,759.08,4430000,759.08
-1963-12-06,763.86,767.21,757.12,760.25,4830000,760.25
-1963-12-05,755.51,766.21,753.69,763.86,5190000,763.86
-1963-12-04,751.82,758.51,747.17,755.51,4790000,755.51
-1963-12-03,751.91,756.82,747.26,751.82,4520000,751.82
-1963-12-02,750.52,757.95,746.78,751.91,4770000,751.91
-1963-11-29,741.00,752.39,738.56,750.52,4810000,750.52
-1963-11-27,743.52,746.91,735.87,741.00,5210000,741.00
-1963-11-26,732.96,746.60,732.96,743.52,9320000,743.52
-1963-11-22,732.65,739.00,710.83,711.49,6630000,711.49
-1963-11-21,742.06,744.69,730.57,732.65,5670000,732.65
-1963-11-20,736.65,747.51,733.44,742.06,5330000,742.06
-1963-11-19,734.85,743.13,731.64,736.65,4430000,736.65
-1963-11-18,740.00,743.09,731.08,734.85,4730000,734.85
-1963-11-15,747.04,749.22,737.90,740.00,4790000,740.00
-1963-11-14,751.11,753.30,744.42,747.04,4610000,747.04
-1963-11-13,750.21,753.77,745.88,751.11,4710000,751.11
-1963-11-12,753.77,756.82,748.36,750.21,4610000,750.21
-1963-11-11,750.81,756.56,749.95,753.77,3970000,753.77
-1963-11-08,745.66,753.47,744.63,750.81,4570000,750.81
-1963-11-07,744.03,750.21,740.99,745.66,4320000,745.66
-1963-11-06,749.22,749.82,738.41,744.03,5600000,744.03
-1963-11-04,753.73,757.12,746.09,749.22,5440000,749.22
-1963-11-01,755.23,759.56,750.30,753.73,5240000,753.73
-1963-10-31,755.19,759.00,749.78,755.23,5030000,755.23
-1963-10-30,760.50,762.78,751.80,755.19,5170000,755.19
-1963-10-29,759.39,767.24,755.49,760.50,6100000,760.50
-1963-10-28,755.61,765.70,752.95,759.39,7150000,759.39
-1963-10-25,751.80,759.90,748.62,755.61,6390000,755.61
-1963-10-24,746.48,755.91,744.12,751.80,6280000,751.80
-1963-10-23,747.21,752.10,742.40,746.48,5830000,746.48
-1963-10-22,752.31,753.60,742.70,747.21,6420000,747.21
-1963-10-21,750.60,757.12,747.25,752.31,5450000,752.31
-1963-10-18,750.77,755.36,747.94,750.60,5830000,750.60
-1963-10-17,748.45,755.83,746.99,750.77,6790000,750.77
-1963-10-16,742.19,750.42,740.04,748.45,5570000,748.45
-1963-10-15,741.84,746.43,738.97,742.19,4550000,742.19
-1963-10-14,741.76,744.98,738.03,741.84,4270000,741.84
-1963-10-11,740.56,746.05,737.60,741.76,4740000,741.76
-1963-10-10,739.83,743.52,733.69,740.56,4470000,740.56
-1963-10-09,743.90,747.16,737.90,739.83,5520000,739.83
-1963-10-08,743.86,748.97,739.23,743.90,4920000,743.90
-1963-10-07,745.06,749.91,740.90,743.86,4050000,743.86
-1963-10-04,744.25,750.98,741.72,745.06,5120000,745.06
-1963-10-03,737.94,746.86,736.61,744.25,4510000,744.25
-1963-10-02,738.33,742.06,734.64,737.94,3780000,737.94
-1963-10-01,732.79,742.57,732.49,738.33,4420000,738.33
-1963-09-30,737.98,739.83,728.63,732.79,3730000,732.79
-1963-09-27,736.95,741.33,731.55,737.98,4350000,737.98
-1963-09-26,743.69,745.28,734.68,736.95,5100000,736.95
-1963-09-25,745.96,753.04,739.31,743.69,6340000,743.69
-1963-09-24,740.43,748.54,737.13,745.96,5520000,745.96
-1963-09-23,743.60,746.99,736.65,740.43,5140000,740.43
-1963-09-20,743.22,749.27,740.64,743.60,5310000,743.60
-1963-09-19,737.86,744.63,736.48,743.22,4080000,743.22
-1963-09-18,740.13,744.08,734.98,737.86,5070000,737.86
-1963-09-17,738.46,744.50,736.83,740.13,4950000,740.13
-1963-09-16,740.13,744.68,736.61,738.46,4740000,738.46
-1963-09-13,740.26,744.42,737.25,740.13,5230000,740.13
-1963-09-12,740.34,744.46,735.45,740.26,5560000,740.26
-1963-09-11,737.43,746.18,736.87,740.34,6670000,740.34
-1963-09-10,732.92,740.34,730.56,737.43,5310000,737.43
-1963-09-09,735.37,739.27,730.09,732.92,5020000,732.92
-1963-09-06,737.98,742.66,733.22,735.37,7160000,735.37
-1963-09-05,732.92,739.87,729.49,737.98,5700000,737.98
-1963-09-04,732.02,737.60,728.89,732.92,6070000,732.92
-1963-09-03,729.32,735.50,728.76,732.02,5570000,732.02
-1963-08-30,726.40,731.68,724.00,729.32,4560000,729.32
-1963-08-29,725.07,730.09,723.27,726.40,5110000,726.40
-1963-08-28,719.88,728.72,719.67,725.07,5120000,725.07
-1963-08-27,724.17,725.16,717.95,719.88,4080000,719.88
-1963-08-26,723.14,728.38,721.00,724.17,4700000,724.17
-1963-08-23,718.47,726.02,718.21,723.14,4880000,723.14
-1963-08-22,715.72,720.57,712.59,718.47,4540000,718.47
-1963-08-21,717.27,719.80,713.49,715.72,3820000,715.72
-1963-08-20,718.81,721.34,714.39,717.27,3660000,717.27
-1963-08-19,719.32,723.57,715.72,718.81,3650000,718.81
-1963-08-16,718.55,722.93,714.91,719.32,4130000,719.32
-1963-08-15,714.95,721.51,712.63,718.55,4980000,718.55
-1963-08-14,711.13,717.39,707.61,714.95,4420000,714.95
-1963-08-13,710.27,714.31,707.83,711.13,4450000,711.13
-1963-08-12,708.39,714.09,705.51,710.27,4770000,710.27
-1963-08-09,704.18,709.84,701.48,708.39,4050000,708.39
-1963-08-08,703.92,707.36,699.85,704.18,3460000,704.18
-1963-08-07,707.06,710.62,701.78,703.92,3790000,703.92
-1963-08-06,702.55,709.42,700.92,707.06,3760000,707.06
-1963-08-05,697.83,704.83,697.10,702.55,3370000,702.55
-1963-08-02,694.87,700.54,693.11,697.83,2940000,697.83
-1963-08-01,695.43,699.21,691.23,694.87,3410000,694.87
-1963-07-31,696.42,701.99,693.03,695.43,3960000,695.43
-1963-07-30,690.71,698.30,690.07,696.42,3550000,696.42
-1963-07-29,689.38,693.20,686.68,690.71,2840000,690.71
-1963-07-26,687.71,691.44,684.58,689.38,2510000,689.38
-1963-07-25,690.88,696.20,685.95,687.71,3710000,687.71
-1963-07-24,687.84,693.41,685.99,690.88,2810000,690.88
-1963-07-23,688.74,694.83,685.74,687.84,3500000,687.84
-1963-07-22,693.89,696.16,684.41,688.74,3700000,688.74
-1963-07-19,695.90,697.53,689.21,693.89,3340000,693.89
-1963-07-18,699.72,703.20,693.93,695.90,3710000,695.90
-1963-07-17,702.12,705.73,697.10,699.72,3940000,699.72
-1963-07-16,703.28,706.28,699.76,702.12,3000000,702.12
-1963-07-15,707.70,708.86,700.58,703.28,3290000,703.28
-1963-07-12,709.76,712.55,705.21,707.70,3660000,707.70
-1963-07-11,712.12,715.98,707.87,709.76,4100000,709.76
-1963-07-10,714.09,716.28,708.90,712.12,3730000,712.12
-1963-07-09,710.66,717.22,709.07,714.09,3830000,714.09
-1963-07-08,716.45,717.22,708.64,710.66,3290000,710.66
-1963-07-05,713.36,719.02,712.20,716.45,2910000,716.45
-1963-07-03,708.94,716.19,708.51,713.36,4030000,713.36
-1963-07-02,701.35,711.35,699.93,708.94,3540000,708.94
-1963-07-01,706.88,709.11,698.86,701.35,3360000,701.35
-1963-06-28,706.03,710.79,702.89,706.88,3020000,706.88
-1963-06-27,708.99,712.93,702.42,706.03,4540000,706.03
-1963-06-26,716.32,716.49,706.46,708.99,4500000,708.99
-1963-06-25,718.42,722.07,713.83,716.32,4120000,716.32
-1963-06-24,720.78,723.87,715.64,718.42,3700000,718.42
-1963-06-21,718.85,724.81,716.06,720.78,4190000,720.78
-1963-06-20,719.84,722.76,711.95,718.85,4970000,718.85
-1963-06-19,718.90,723.27,715.98,719.84,3970000,719.84
-1963-06-18,718.21,722.50,714.99,718.90,3910000,718.90
-1963-06-17,722.03,723.61,716.11,718.21,3510000,718.21
-1963-06-14,721.43,725.72,718.34,722.03,3840000,722.03
-1963-06-13,723.36,727.09,719.92,721.43,4690000,721.43
-1963-06-12,718.38,727.60,717.05,723.36,5210000,723.36
-1963-06-11,716.49,721.94,714.00,718.38,4390000,718.38
-1963-06-10,722.41,722.88,711.65,716.49,4690000,716.49
-1963-06-07,726.87,730.31,719.41,722.41,5110000,722.41
-1963-06-06,725.93,730.78,721.81,726.87,4990000,726.87
-1963-06-05,726.49,732.97,722.46,725.93,5860000,725.93
-1963-06-04,726.27,730.01,721.30,726.49,5970000,726.49
-1963-06-03,726.96,731.59,723.57,726.27,5400000,726.27
-1963-05-31,722.50,730.43,721.85,726.96,4680000,726.96
-1963-05-29,717.95,725.59,717.22,722.50,4320000,722.50
-1963-05-28,718.25,722.16,714.26,717.95,3860000,717.95
-1963-05-27,720.53,721.98,714.52,718.25,3760000,718.25
-1963-05-24,721.38,724.56,716.66,720.53,4320000,720.53
-1963-05-23,722.84,725.67,718.12,721.38,4400000,721.38
-1963-05-22,724.04,728.76,720.18,722.84,5560000,722.84
-1963-05-21,720.18,727.26,717.48,724.04,5570000,724.04
-1963-05-20,724.81,726.19,716.45,720.18,4710000,720.18
-1963-05-17,722.84,727.13,720.01,724.81,4410000,724.81
-1963-05-16,724.34,728.63,719.75,722.84,5640000,722.84
-1963-05-15,719.84,727.69,717.22,724.34,5650000,724.34
-1963-05-14,723.01,724.94,717.95,719.84,4740000,719.84
-1963-05-13,723.30,727.13,720.53,723.01,4920000,723.01
-1963-05-10,721.97,726.02,718.62,723.30,5260000,723.30
-1963-05-09,718.54,726.48,717.20,721.97,5600000,721.97
-1963-05-08,712.55,720.96,710.96,718.54,5140000,718.54
-1963-05-07,713.77,716.78,708.16,712.55,4140000,712.55
-1963-05-06,718.08,721.84,711.68,713.77,4090000,713.77
-1963-05-03,721.09,723.77,716.53,718.08,4760000,718.08
-1963-05-02,719.67,724.69,717.32,721.09,4480000,721.09
-1963-05-01,717.70,723.89,716.40,719.67,5060000,719.67
-1963-04-30,715.11,721.46,711.93,717.70,4680000,717.70
-1963-04-29,717.16,719.54,712.05,715.11,3980000,715.11
-1963-04-26,718.33,721.59,714.77,717.16,4490000,717.16
-1963-04-25,717.74,721.92,712.68,718.33,5070000,718.33
-1963-04-24,714.98,720.96,713.89,717.74,5910000,717.74
-1963-04-23,711.01,717.53,707.83,714.98,5220000,714.98
-1963-04-22,711.68,717.07,708.70,711.01,5180000,711.01
-1963-04-19,708.16,713.72,705.32,711.68,4660000,711.68
-1963-04-18,710.25,713.31,705.44,708.16,4770000,708.16
-1963-04-17,710.92,715.23,705.19,710.25,5220000,710.25
-1963-04-16,711.38,716.74,706.32,710.92,5570000,710.92
-1963-04-15,708.45,716.61,705.94,711.38,5930000,711.38
-1963-04-11,704.35,711.34,700.09,708.45,5250000,708.45
-1963-04-10,706.03,710.50,698.25,704.35,5880000,704.35
-1963-04-09,706.03,709.83,701.05,706.03,5090000,706.03
-1963-04-08,702.43,709.46,700.84,706.03,5940000,706.03
-1963-04-05,697.12,703.77,693.18,702.43,5240000,702.43
-1963-04-04,690.76,699.12,690.76,697.12,5300000,697.12
-1963-04-03,684.27,692.81,683.23,690.51,4660000,690.51
-1963-04-02,685.86,691.18,682.14,684.27,4360000,684.27
-1963-04-01,682.52,689.34,680.55,685.86,3890000,685.86
-1963-03-29,682.47,685.74,678.92,682.52,3390000,682.52
-1963-03-28,684.73,687.37,680.80,682.47,3890000,682.47
-1963-03-27,680.38,686.95,679.17,684.73,4270000,684.73
-1963-03-26,678.17,684.23,676.79,680.38,4100000,680.38
-1963-03-25,677.83,682.31,674.94,678.17,3700000,678.17
-1963-03-22,675.57,680.68,673.19,677.83,3820000,677.83
-1963-03-21,677.12,680.01,673.15,675.57,3220000,675.57
-1963-03-20,672.06,679.34,671.10,677.12,3690000,677.12
-1963-03-19,673.56,675.95,669.17,672.06,3180000,672.06
-1963-03-18,676.33,678.92,671.14,673.56,3250000,673.56
-1963-03-15,673.73,679.30,671.72,676.33,3400000,676.33
-1963-03-14,677.66,680.09,671.97,673.73,3540000,673.73
-1963-03-13,675.20,680.93,673.56,677.66,4120000,677.66
-1963-03-12,674.02,678.17,671.31,675.20,3350000,675.20
-1963-03-11,672.43,677.83,670.01,674.02,3180000,674.02
-1963-03-08,671.43,675.57,668.38,672.43,3360000,672.43
-1963-03-07,668.08,675.03,667.12,671.43,3350000,671.43
-1963-03-06,667.16,669.80,662.02,668.08,3100000,668.08
-1963-03-05,667.04,672.85,663.02,667.16,3280000,667.16
-1963-03-04,659.72,670.30,659.22,667.04,3650000,667.04
-1963-03-01,662.94,667.63,656.66,659.72,3920000,659.72
-1963-02-28,670.80,672.64,661.27,662.94,4090000,662.94
-1963-02-27,675.28,678.12,669.05,670.80,3680000,670.80
-1963-02-26,674.61,679.21,671.31,675.28,3670000,675.28
-1963-02-25,681.64,682.06,673.15,674.61,3680000,674.61
-1963-02-21,682.06,684.94,675.87,681.64,3980000,681.64
-1963-02-20,686.07,686.07,678.79,682.06,4120000,682.06
-1963-02-19,688.96,690.51,683.73,686.83,4130000,686.83
-1963-02-18,686.07,694.27,685.15,688.96,4700000,688.96
-1963-02-15,684.86,689.67,680.89,686.07,4410000,686.07
-1963-02-14,681.72,688.71,679.59,684.86,5640000,684.86
-1963-02-13,676.62,684.82,674.48,681.72,4960000,681.72
-1963-02-12,674.74,678.08,669.84,676.62,3710000,676.62
-1963-02-11,679.92,681.85,672.98,674.74,3880000,674.74
-1963-02-08,679.09,682.31,673.90,679.92,3890000,679.92
-1963-02-07,682.52,686.32,676.49,679.09,4240000,679.09
-1963-02-06,681.30,686.74,678.25,682.52,4340000,682.52
-1963-02-05,682.01,683.65,672.60,681.30,4050000,681.30
-1963-02-04,683.19,687.20,678.92,682.01,3670000,682.01
-1963-02-01,682.85,686.57,679.21,683.19,4280000,683.19
-1963-01-31,678.58,685.24,675.28,682.85,4270000,682.85
-1963-01-30,683.73,684.48,675.82,678.58,3740000,678.58
-1963-01-29,682.89,686.91,678.29,683.73,4360000,683.73
-1963-01-28,679.71,686.53,678.50,682.89,4720000,682.89
-1963-01-25,676.99,683.81,673.31,679.71,4770000,679.71
-1963-01-24,677.58,681.09,673.94,676.99,4810000,676.99
-1963-01-23,675.53,680.38,674.02,677.58,4820000,677.58
-1963-01-22,675.24,679.13,671.81,675.53,4810000,675.53
-1963-01-21,672.52,676.74,668.42,675.24,4090000,675.24
-1963-01-18,672.98,679.09,669.55,672.52,4760000,672.52
-1963-01-17,669.00,676.07,665.07,672.98,5230000,672.98
-1963-01-16,675.36,676.03,666.70,669.00,4260000,669.00
-1963-01-15,675.74,680.80,672.14,675.36,5930000,675.36
-1963-01-14,671.60,678.46,669.38,675.74,5000000,675.74
-1963-01-11,669.51,673.61,665.91,671.60,4410000,671.60
-1963-01-10,668.00,673.73,666.54,669.51,4520000,669.51
-1963-01-09,669.88,674.23,665.95,668.00,5110000,668.00
-1963-01-08,662.14,672.18,661.10,669.88,5410000,669.88
-1963-01-07,662.23,666.70,657.83,662.14,4440000,662.14
-1963-01-04,657.42,665.66,656.25,662.23,5400000,662.23
-1963-01-03,646.79,659.17,646.62,657.42,4570000,657.42
-1963-01-02,652.10,654.53,643.57,646.79,2540000,646.79
-1962-12-31,651.43,654.53,648.05,652.10,5420000,652.10
-1962-12-28,650.56,653.90,647.21,651.43,4140000,651.43
-1962-12-27,651.64,655.07,648.42,650.56,3670000,650.56
-1962-12-26,647.71,654.40,647.33,651.64,3370000,651.64
-1962-12-24,646.41,651.48,643.65,647.71,3180000,647.71
-1962-12-21,648.55,651.81,643.40,646.41,3470000,646.41
-1962-12-20,647.00,652.69,645.20,648.55,4220000,648.55
-1962-12-19,640.14,648.63,636.88,647.00,4000000,647.00
-1962-12-18,645.49,646.75,638.09,640.14,3620000,640.14
-1962-12-17,648.09,650.97,643.03,645.49,3590000,645.49
-1962-12-14,645.20,650.35,641.02,648.09,3280000,648.09
-1962-12-13,647.33,651.94,641.73,645.20,3380000,645.20
-1962-12-12,645.16,653.02,643.49,647.33,3760000,647.33
-1962-12-11,645.08,648.46,638.88,645.16,3700000,645.16
-1962-12-10,652.10,655.07,642.73,645.08,4270000,645.08
-1962-12-07,651.73,655.83,646.87,652.10,3900000,652.10
-1962-12-06,653.99,657.00,646.92,651.73,4600000,651.73
-1962-12-05,651.48,658.78,649.68,653.99,6280000,653.99
-1962-12-04,646.41,654.61,644.07,651.48,5210000,651.48
-1962-12-03,649.30,651.22,642.06,646.41,3810000,646.41
-1962-11-30,652.61,655.03,645.70,649.30,4570000,649.30
-1962-11-29,651.85,655.95,646.54,652.61,5810000,652.61
-1962-11-28,648.05,654.86,646.50,651.85,5980000,651.85
-1962-11-27,642.06,650.39,639.72,648.05,5500000,648.05
-1962-11-26,644.87,651.27,638.34,642.06,5650000,642.06
-1962-11-23,637.25,649.26,635.50,644.87,5660000,644.87
-1962-11-21,632.94,640.36,630.18,637.25,5100000,637.25
-1962-11-20,626.21,634.91,624.20,632.94,4290000,632.94
-1962-11-19,630.98,633.36,624.03,626.21,3410000,626.21
-1962-11-16,629.14,633.82,623.87,630.98,4000000,630.98
-1962-11-15,630.48,636.25,626.67,629.14,5050000,629.14
-1962-11-14,623.11,632.99,619.77,630.48,5090000,630.48
-1962-11-13,624.41,628.47,618.85,623.11,4550000,623.11
-1962-11-12,617.38,627.25,617.38,624.41,5090000,624.41
-1962-11-09,609.14,617.51,605.33,616.13,4340000,616.13
-1962-11-08,615.75,619.68,606.84,609.14,4160000,609.14
-1962-11-07,610.48,620.06,605.58,615.75,4580000,615.75
-1962-11-05,604.58,614.45,602.66,610.48,4320000,610.48
-1962-11-02,597.13,609.43,592.87,604.58,5470000,604.58
-1962-11-01,589.77,599.60,582.66,597.13,3400000,597.13
-1962-10-31,588.98,594.79,586.13,589.77,3090000,589.77
-1962-10-30,579.35,591.49,578.94,588.98,3830000,588.98
-1962-10-29,576.13,586.59,576.13,579.35,4280000,579.35
-1962-10-26,570.86,573.54,564.88,569.02,2580000,569.02
-1962-10-25,575.84,575.84,562.79,570.86,3950000,570.86
-1962-10-24,558.06,578.52,549.65,576.68,6720000,576.68
-1962-10-23,568.60,573.96,556.18,558.06,6110000,558.06
-1962-10-22,573.29,573.41,563.16,568.60,5690000,568.60
-1962-10-19,581.15,582.78,570.44,573.29,4650000,573.29
-1962-10-18,587.68,588.01,579.44,581.15,3280000,581.15
-1962-10-17,589.35,590.52,581.91,587.68,3240000,587.68
-1962-10-16,589.69,594.12,587.01,589.35,2860000,589.35
-1962-10-15,586.47,592.28,584.08,589.69,2640000,589.69
-1962-10-12,586.47,589.02,582.83,586.47,2020000,586.47
-1962-10-11,588.14,590.69,584.08,586.47,2460000,586.47
-1962-10-10,587.18,594.00,586.26,588.14,3040000,588.14
-1962-10-09,586.09,589.35,582.70,587.18,2340000,587.18
-1962-10-08,586.59,589.90,583.24,586.09,1950000,586.09
-1962-10-05,582.41,588.47,581.11,586.59,2730000,586.59
-1962-10-04,578.52,583.37,575.38,582.41,2530000,582.41
-1962-10-03,578.73,584.37,576.09,578.52,2610000,578.52
-1962-10-02,571.95,582.66,570.78,578.73,3000000,578.73
-1962-10-01,578.98,579.90,569.23,571.95,3090000,571.95
-1962-09-28,574.12,582.70,573.20,578.98,2850000,578.98
-1962-09-27,578.48,581.99,572.16,574.12,3540000,574.12
-1962-09-26,588.22,591.28,576.30,578.48,3550000,578.48
-1962-09-25,582.91,590.52,578.73,588.22,3620000,588.22
-1962-09-24,589.06,589.06,578.73,582.91,5000000,582.91
-1962-09-21,601.32,601.32,589.52,591.78,4280000,591.78
-1962-09-20,607.09,608.93,600.31,601.65,3350000,601.65
-1962-09-19,607.09,609.89,603.66,607.09,2950000,607.09
-1962-09-18,607.63,612.44,604.83,607.09,3690000,607.09
-1962-09-17,605.84,611.57,603.45,607.63,3330000,607.63
-1962-09-14,603.99,607.93,601.28,605.84,2880000,605.84
-1962-09-13,606.34,609.77,601.94,603.99,3100000,603.99
-1962-09-12,603.99,608.97,601.28,606.34,3100000,606.34
-1962-09-11,602.03,607.88,599.23,603.99,3040000,603.99
-1962-09-10,600.86,603.66,595.38,602.03,2520000,602.03
-1962-09-07,600.81,606.34,598.26,600.86,2890000,600.86
-1962-09-06,599.14,603.32,594.08,600.81,3180000,600.81
-1962-09-05,602.45,604.96,596.42,599.14,3050000,599.14
-1962-09-04,609.18,612.44,601.28,602.45,2970000,602.45
-1962-08-31,602.32,610.19,600.27,609.18,2830000,609.18
-1962-08-30,603.24,606.80,599.85,602.32,2260000,602.32
-1962-08-29,605.25,606.42,598.81,603.24,2900000,603.24
-1962-08-28,612.57,613.11,602.95,605.25,3180000,605.25
-1962-08-27,613.74,616.84,609.27,612.57,3140000,612.57
-1962-08-24,616.00,617.67,608.81,613.74,2890000,613.74
-1962-08-23,615.54,622.02,612.32,616.00,4770000,616.00
-1962-08-22,608.64,617.63,606.42,615.54,4520000,615.54
-1962-08-21,612.86,614.66,605.79,608.64,3730000,608.64
-1962-08-20,610.02,615.67,608.09,612.86,4580000,612.86
-1962-08-17,606.71,611.98,604.62,610.02,3430000,610.02
-1962-08-16,606.76,611.15,602.74,606.71,4180000,606.71
-1962-08-15,601.94,610.90,601.94,606.76,4880000,606.76
-1962-08-14,595.29,603.91,593.03,601.90,3640000,601.90
-1962-08-13,592.32,597.51,590.65,595.29,2670000,595.29
-1962-08-10,591.19,595.67,587.55,592.32,2470000,592.32
-1962-08-09,590.94,595.17,588.43,591.19,2670000,591.19
-1962-08-08,588.35,592.11,582.12,590.94,3080000,590.94
-1962-08-07,593.24,593.66,585.71,588.35,2970000,588.35
-1962-08-06,596.38,598.56,590.27,593.24,3110000,593.24
-1962-08-03,593.83,598.35,591.11,596.38,5990000,596.38
-1962-08-02,591.36,596.55,588.26,593.83,3410000,593.83
-1962-08-01,597.64,597.64,588.68,591.36,3100000,591.36
-1962-07-31,591.78,601.15,591.78,597.93,4190000,597.93
-1962-07-30,585.00,593.03,583.87,591.44,3200000,591.44
-1962-07-27,579.61,586.80,577.14,585.00,2890000,585.00
-1962-07-26,574.67,582.87,574.08,579.61,2790000,579.61
-1962-07-25,574.12,576.55,568.10,574.67,2910000,574.67
-1962-07-24,577.47,579.31,572.03,574.12,2560000,574.12
-1962-07-23,577.18,582.24,574.50,577.47,2770000,577.47
-1962-07-20,573.16,579.86,570.78,577.18,2610000,577.18
-1962-07-19,571.24,578.68,568.98,573.16,3090000,573.16
-1962-07-18,577.39,577.39,568.02,571.24,3620000,571.24
-1962-07-17,588.10,588.77,576.59,577.85,3500000,577.85
-1962-07-16,590.19,591.23,582.41,588.10,3130000,588.10
-1962-07-13,590.27,592.99,583.87,590.19,3380000,590.19
-1962-07-12,589.06,596.59,586.68,590.27,5370000,590.27
-1962-07-11,586.01,590.94,580.36,589.06,4250000,589.06
-1962-07-10,583.50,599.02,583.50,586.01,7120000,586.01
-1962-07-09,576.17,582.28,569.65,580.82,2950000,580.82
-1962-07-06,582.58,582.58,571.28,576.17,3110000,576.17
-1962-07-05,579.48,586.30,577.39,583.87,3350000,583.87
-1962-07-03,573.75,582.99,570.53,579.48,3920000,579.48
-1962-07-02,561.28,576.63,557.31,573.75,3450000,573.75
-1962-06-29,557.35,569.06,555.22,561.28,4720000,561.28
-1962-06-28,541.49,559.32,541.49,557.35,5440000,557.35
-1962-06-27,535.76,539.28,528.73,536.98,3890000,536.98
-1962-06-26,536.77,548.61,533.46,535.76,4630000,535.76
-1962-06-25,539.19,541.24,524.55,536.77,7090000,536.77
-1962-06-22,550.49,551.99,537.56,539.19,5640000,539.19
-1962-06-21,561.87,561.87,549.15,550.49,4560000,550.49
-1962-06-20,571.61,574.59,561.28,563.08,3360000,563.08
-1962-06-19,574.21,575.21,566.59,571.61,2680000,571.61
-1962-06-18,578.18,583.08,567.05,574.21,4580000,574.21
-1962-06-15,563.00,579.90,556.09,578.18,7130000,578.18
-1962-06-14,574.04,579.14,560.28,563.00,6240000,563.00
-1962-06-13,580.94,586.42,572.20,574.04,5850000,574.04
-1962-06-12,593.83,593.83,580.11,580.94,4690000,580.94
-1962-06-11,601.61,603.20,592.66,595.17,2870000,595.17
-1962-06-08,602.20,607.30,598.64,601.61,2560000,601.61
-1962-06-07,603.91,608.14,599.27,602.20,2760000,602.20
-1962-06-06,595.50,611.82,595.50,603.91,4190000,603.91
-1962-06-05,593.68,603.37,584.12,594.96,6140000,594.96
-1962-06-04,608.82,608.82,591.37,593.68,5380000,593.68
-1962-06-01,613.36,616.54,603.58,611.05,5760000,611.05
-1962-05-31,605.73,625.00,605.73,613.36,10710000,613.36
-1962-05-29,576.93,613.11,553.75,603.96,14750000,603.96
-1962-05-28,609.77,609.77,573.55,576.93,9350000,576.93
-1962-05-25,622.56,625.94,606.18,611.88,6380000,611.88
-1962-05-24,626.52,634.24,619.84,622.56,5250000,622.56
-1962-05-23,636.34,637.83,622.56,626.52,5450000,626.52
-1962-05-22,648.59,649.33,634.57,636.34,3640000,636.34
-1962-05-21,650.70,652.14,645.09,648.59,2260000,648.59
-1962-05-18,649.79,653.63,644.55,650.70,2490000,650.70
-1962-05-17,654.04,654.33,644.01,649.79,2950000,649.79
-1962-05-16,655.36,660.23,650.12,654.04,3360000,654.04
-1962-05-15,647.56,660.64,647.56,655.36,4780000,655.36
-1962-05-14,640.63,649.13,626.85,646.20,5990000,646.20
-1962-05-11,647.23,653.79,637.45,640.63,4510000,640.63
-1962-05-10,654.70,656.06,641.50,647.23,4730000,647.23
-1962-05-09,663.90,664.15,652.31,654.70,3670000,654.70
-1962-05-08,670.99,672.68,661.38,663.90,3020000,663.90
-1962-05-07,671.20,675.74,666.41,670.99,2530000,670.99
-1962-05-04,675.49,676.77,666.79,671.20,3010000,671.20
-1962-05-03,669.96,679.20,668.93,675.49,3320000,675.49
-1962-05-02,671.24,677.35,666.08,669.96,3780000,669.96
-1962-05-01,665.33,673.59,655.44,671.24,5100000,671.24
-1962-04-30,672.20,678.64,661.48,665.33,4150000,665.33
-1962-04-27,678.68,685.84,668.40,672.20,4140000,672.20
-1962-04-26,683.69,687.82,676.29,678.68,3650000,678.68
-1962-04-25,693.00,694.13,681.55,683.69,3340000,683.69
-1962-04-24,694.61,698.42,690.29,693.00,3040000,693.00
-1962-04-23,694.25,700.04,690.37,694.61,3240000,694.61
-1962-04-19,691.01,696.80,688.63,694.25,3100000,694.25
-1962-04-18,688.43,696.03,686.77,691.01,3350000,691.01
-1962-04-17,684.06,690.93,681.31,688.43,2940000,688.43
-1962-04-16,687.90,690.65,681.18,684.06,3070000,684.06
-1962-04-13,685.67,691.86,679.08,687.90,3470000,687.90
-1962-04-12,694.37,694.37,683.49,685.67,3320000,685.67
-1962-04-11,695.46,703.68,693.40,694.90,3240000,694.90
-1962-04-10,692.96,697.85,688.75,695.46,2880000,695.46
-1962-04-09,699.63,701.17,691.30,692.96,3020000,692.96
-1962-04-06,700.88,705.42,697.73,699.63,2730000,699.63
-1962-04-05,696.88,703.35,693.32,700.88,3130000,700.88
-1962-04-04,700.60,705.05,695.26,696.88,3290000,696.88
-1962-04-03,705.42,707.52,697.61,700.60,3350000,700.60
-1962-04-02,706.95,709.74,702.91,705.42,2790000,705.42
-1962-03-30,711.28,712.17,703.27,706.95,2950000,706.95
-1962-03-29,712.25,716.94,709.58,711.28,2870000,711.28
-1962-03-28,707.28,714.64,705.70,712.25,2940000,712.25
-1962-03-27,710.67,713.34,704.12,707.28,3090000,707.28
-1962-03-26,716.46,717.88,708.69,710.67,3040000,710.67
-1962-03-23,716.70,720.18,713.02,716.46,3050000,716.46
-1962-03-22,716.62,720.18,713.38,716.70,3130000,716.70
-1962-03-21,719.66,722.49,713.59,716.62,3360000,716.62
-1962-03-20,720.38,723.17,716.78,719.66,3060000,719.66
-1962-03-19,722.27,725.28,717.39,720.38,3220000,720.38
-1962-03-16,723.54,727.14,719.29,722.27,3060000,722.27
-1962-03-15,720.95,726.65,718.08,723.54,3250000,723.54
-1962-03-14,716.58,724.67,715.89,720.95,3670000,720.95
-1962-03-13,714.68,719.66,711.56,716.58,3200000,716.58
-1962-03-12,714.44,718.44,709.62,714.68,3280000,714.68
-1962-03-09,713.75,718.28,710.96,714.44,3340000,714.44
-1962-03-08,706.63,715.25,704.57,713.75,3210000,713.75
-1962-03-07,708.17,710.63,703.88,706.63,2890000,706.63
-1962-03-06,709.99,712.94,704.81,708.17,2870000,708.17
-1962-03-05,711.00,714.15,706.02,709.99,3020000,709.99
-1962-03-02,711.81,715.61,707.64,711.00,2980000,711.00
-1962-03-01,708.05,715.89,706.67,711.81,2960000,711.81
-1962-02-28,709.22,713.75,704.93,708.05,3030000,708.05
-1962-02-27,706.22,712.98,704.16,709.22,3110000,709.22
-1962-02-26,709.54,711.77,702.91,706.22,2910000,706.22
-1962-02-23,713.02,713.71,705.09,709.54,3230000,709.54
-1962-02-21,717.55,720.14,710.43,713.02,3310000,713.02
-1962-02-20,714.36,719.61,711.24,717.55,3300000,717.55
-1962-02-19,716.46,720.14,711.28,714.36,3350000,714.36
-1962-02-16,717.27,721.39,713.22,716.46,3700000,716.46
-1962-02-15,713.67,720.79,711.77,717.27,3470000,717.27
-1962-02-14,714.32,716.90,709.14,713.67,3630000,713.67
-1962-02-13,714.92,718.72,711.32,714.32,3400000,714.32
-1962-02-12,714.27,718.52,711.81,714.92,2620000,714.92
-1962-02-09,716.82,718.40,709.34,714.27,3370000,714.27
-1962-02-08,715.73,719.86,712.45,716.82,3810000,716.82
-1962-02-07,710.39,717.35,708.94,715.73,4140000,715.73
-1962-02-06,706.14,713.22,702.06,710.39,3650000,710.39
-1962-02-05,706.55,710.84,702.34,706.14,3890000,706.14
-1962-02-02,702.54,709.34,699.11,706.55,3950000,706.55
-1962-02-01,700.00,707.36,696.07,702.54,4260000,702.54
-1962-01-31,694.09,702.75,692.27,700.00,3840000,700.00
-1962-01-30,689.92,698.38,687.82,694.09,3520000,694.09
-1962-01-29,692.19,695.71,686.89,689.92,3050000,689.92
-1962-01-26,696.52,698.13,689.11,692.19,3330000,692.19
-1962-01-25,698.17,703.80,694.17,696.52,3560000,696.52
-1962-01-24,698.54,701.69,689.52,698.17,3760000,698.17
-1962-01-23,701.98,704.40,694.57,698.54,3350000,698.54
-1962-01-22,700.72,706.27,698.05,701.98,3810000,701.98
-1962-01-19,696.03,703.35,694.29,700.72,3800000,700.72
-1962-01-18,697.41,700.12,690.21,696.03,3460000,696.03
-1962-01-17,705.29,707.03,694.86,697.41,3780000,697.41
-1962-01-16,709.50,711.20,700.97,705.29,3650000,705.29
-1962-01-15,711.73,715.00,706.18,709.50,3450000,709.50
-1962-01-12,710.67,717.71,707.92,711.73,3730000,711.73
-1962-01-11,706.02,713.10,702.26,710.67,3390000,710.67
-1962-01-10,707.64,711.81,701.69,706.02,3300000,706.02
-1962-01-09,708.98,714.96,703.88,707.64,3600000,707.64
-1962-01-08,714.84,715.69,698.42,708.98,4620000,708.98
-1962-01-05,722.53,725.60,709.74,714.84,4630000,714.84
-1962-01-04,726.01,733.77,718.00,722.53,4450000,722.53
-1962-01-03,724.71,729.61,720.22,726.01,3590000,726.01
-1962-01-02,731.14,734.38,721.39,724.71,3120000,724.71
-1961-12-29,731.51,734.99,726.41,731.14,5370000,731.14
-1961-12-28,731.43,738.79,728.88,731.51,4530000,731.51
-1961-12-27,723.34,734.54,723.34,731.43,4170000,731.43
-1961-12-26,720.87,727.42,717.92,723.09,3180000,723.09
-1961-12-22,720.10,725.08,714.60,720.87,3390000,720.87
-1961-12-21,722.57,725.64,717.27,720.10,3440000,720.10
-1961-12-20,722.41,728.19,718.32,722.57,3640000,722.57
-1961-12-19,727.66,727.66,719.25,722.41,3440000,722.41
-1961-12-18,729.40,734.91,724.43,727.71,3810000,727.71
-1961-12-15,730.94,734.58,725.72,729.40,3710000,729.40
-1961-12-14,734.91,737.82,727.34,730.94,4350000,730.94
-1961-12-13,734.02,739.88,730.58,734.91,4890000,734.91
-1961-12-12,732.56,739.36,728.23,734.02,4680000,734.02
-1961-12-11,728.23,736.40,725.84,732.56,4360000,732.56
-1961-12-08,726.45,732.92,722.24,728.23,4010000,728.23
-1961-12-07,730.09,732.96,723.42,726.45,3900000,726.45
-1961-12-06,731.31,735.80,725.04,730.09,4200000,730.09
-1961-12-05,731.22,734.91,726.82,731.31,4330000,731.31
-1961-12-04,728.80,737.62,725.16,731.22,4560000,731.22
-1961-12-01,721.60,731.99,719.74,728.80,4420000,728.80
-1961-11-30,727.18,727.50,717.88,721.60,4210000,721.60
-1961-11-29,728.07,732.11,722.57,727.18,4550000,727.18
-1961-11-28,731.99,735.19,724.23,728.07,4360000,728.07
-1961-11-27,732.60,738.38,726.94,731.99,4700000,731.99
-1961-11-24,730.42,735.92,726.61,732.60,4020000,732.60
-1961-11-22,729.32,734.18,724.95,730.42,4500000,730.42
-1961-11-21,730.09,737.58,724.06,729.32,4890000,729.32
-1961-11-20,729.53,735.59,725.32,730.09,4190000,730.09
-1961-11-17,733.33,736.00,724.83,729.53,3960000,729.53
-1961-11-16,734.34,737.54,725.84,733.33,3980000,733.33
-1961-11-15,732.56,741.30,730.86,734.34,4660000,734.34
-1961-11-14,728.43,736.65,724.35,732.56,4750000,732.56
-1961-11-13,724.83,732.48,721.27,728.43,4540000,728.43
-1961-11-10,722.28,727.46,718.28,724.83,4180000,724.83
-1961-11-09,723.74,726.82,717.75,722.28,4680000,722.28
-1961-11-08,714.68,726.73,714.68,723.74,6090000,723.74
-1961-11-06,709.26,717.47,707.11,714.60,4340000,714.60
-1961-11-03,706.83,712.62,702.62,709.26,4070000,709.26
-1961-11-02,703.84,710.35,701.29,706.83,3890000,706.83
-1961-11-01,703.92,708.09,700.12,703.84,3210000,703.84
-1961-10-31,701.09,706.67,699.35,703.92,3350000,703.92
-1961-10-30,698.74,704.57,696.35,701.09,3430000,701.09
-1961-10-27,700.68,703.60,694.94,698.74,3200000,698.74
-1961-10-26,700.72,704.81,694.82,700.68,3330000,700.68
-1961-10-25,697.24,706.47,695.55,700.72,3590000,700.72
-1961-10-24,698.98,704.00,693.77,697.24,3430000,697.24
-1961-10-23,705.62,708.73,695.55,698.98,3440000,698.98
-1961-10-20,704.85,708.77,700.52,705.62,3470000,705.62
-1961-10-19,704.20,710.43,700.48,704.85,3850000,704.85
-1961-10-18,701.98,708.37,699.63,704.20,3520000,704.20
-1961-10-17,703.15,706.18,698.62,701.98,3110000,701.98
-1961-10-16,703.31,707.84,699.23,703.15,2840000,703.15
-1961-10-13,705.50,708.77,700.12,703.31,3090000,703.31
-1961-10-12,705.62,709.54,701.13,705.50,3060000,705.50
-1961-10-11,706.67,710.59,701.69,705.62,3670000,705.62
-1961-10-10,705.42,709.62,700.56,706.67,3430000,706.67
-1961-10-09,708.25,712.05,700.93,705.42,2920000,705.42
-1961-10-06,708.49,714.07,704.40,708.25,3470000,708.25
-1961-10-05,703.31,711.89,701.13,708.49,3920000,708.49
-1961-10-04,698.66,706.75,698.13,703.31,3380000,703.31
-1961-10-03,699.83,703.03,693.12,698.66,2680000,698.66
-1961-10-02,701.21,704.97,695.63,699.83,2800000,699.83
-1961-09-29,700.28,704.93,694.25,701.21,3060000,701.21
-1961-09-28,701.13,706.18,696.80,700.28,3000000,700.28
-1961-09-27,693.20,703.47,691.58,701.13,3440000,701.13
-1961-09-26,691.86,700.44,689.07,693.20,3320000,693.20
-1961-09-25,701.57,702.99,688.87,691.86,3700000,691.86
-1961-09-22,706.31,707.48,698.70,701.57,3070000,701.57
-1961-09-21,707.32,713.22,703.43,706.31,3340000,706.31
-1961-09-20,702.54,709.22,699.87,707.32,2700000,707.32
-1961-09-19,711.24,712.98,700.52,702.54,3260000,702.54
-1961-09-18,716.30,716.94,705.62,711.24,3550000,711.24
-1961-09-15,715.00,720.06,710.23,716.30,3130000,716.30
-1961-09-14,722.20,723.22,713.14,715.00,2920000,715.00
-1961-09-13,722.61,727.66,718.81,722.20,3110000,722.20
-1961-09-12,714.36,725.88,713.99,722.61,2950000,722.61
-1961-09-11,720.91,721.39,710.47,714.36,2790000,714.36
-1961-09-08,726.53,727.30,717.71,720.91,3430000,720.91
-1961-09-07,726.01,733.53,723.05,726.53,3900000,726.53
-1961-09-06,719.61,728.76,719.61,726.01,3440000,726.01
-1961-09-05,721.19,726.01,716.26,718.72,3000000,718.72
-1961-09-01,719.94,724.95,716.30,721.19,2710000,721.19
-1961-08-31,716.90,723.13,713.75,719.94,2920000,719.94
-1961-08-30,714.15,720.06,711.08,716.90,3220000,716.90
-1961-08-29,716.01,718.52,709.78,714.15,3160000,714.15
-1961-08-28,716.70,722.24,712.33,716.01,3150000,716.01
-1961-08-25,714.03,720.10,712.01,716.70,3050000,716.70
-1961-08-24,719.41,719.41,709.54,714.03,3090000,714.03
-1961-08-23,725.76,726.86,717.27,720.46,3550000,720.46
-1961-08-22,724.75,730.17,720.34,725.76,3640000,725.76
-1961-08-21,723.54,728.35,719.49,724.75,3880000,724.75
-1961-08-18,721.84,727.54,719.25,723.54,4030000,723.54
-1961-08-17,718.20,725.80,715.53,721.84,4130000,721.84
-1961-08-16,716.18,720.67,712.62,718.20,3430000,718.20
-1961-08-15,718.93,722.85,714.15,716.18,3320000,716.18
-1961-08-14,722.61,724.02,714.48,718.93,3120000,718.93
-1961-08-11,720.49,726.57,717.31,722.61,3260000,722.61
-1961-08-10,717.57,722.98,713.46,720.49,3570000,720.49
-1961-08-09,720.22,722.31,713.86,717.57,3710000,717.57
-1961-08-08,719.58,725.78,715.91,720.22,4050000,720.22
-1961-08-07,720.69,723.14,712.95,719.58,3560000,719.58
-1961-08-04,715.71,723.57,715.08,720.69,3710000,720.69
-1961-08-03,710.46,720.41,709.04,715.71,3650000,715.71
-1961-08-02,713.94,719.86,707.93,710.46,4300000,710.46
-1961-08-01,705.37,716.03,702.21,713.94,3990000,713.94
-1961-07-31,705.13,709.75,700.51,705.37,3170000,705.37
-1961-07-28,702.80,709.75,700.00,705.13,3610000,705.13
-1961-07-27,694.19,705.96,693.40,702.80,4170000,702.80
-1961-07-26,687.63,697.98,687.63,694.19,4070000,694.19
-1961-07-25,682.14,688.89,679.66,686.37,3010000,686.37
-1961-07-24,682.81,687.16,678.27,682.14,2490000,682.14
-1961-07-21,682.97,686.84,679.10,682.81,2360000,682.81
-1961-07-20,682.74,686.21,678.31,682.97,2530000,682.97
-1961-07-19,679.30,685.22,674.80,682.74,2940000,682.74
-1961-07-18,684.59,687.95,677.44,679.30,3010000,679.30
-1961-07-17,690.95,693.48,683.49,684.59,2690000,684.59
-1961-07-14,685.90,693.68,682.58,690.95,2760000,690.95
-1961-07-13,690.79,690.83,683.17,685.90,2670000,685.90
-1961-07-12,694.47,696.28,687.28,690.79,3070000,690.79
-1961-07-11,693.16,698.18,690.95,694.47,3160000,694.47
-1961-07-10,692.73,698.49,689.33,693.16,3180000,693.16
-1961-07-07,694.27,697.90,689.61,692.73,3030000,692.73
-1961-07-06,692.77,698.97,690.36,694.27,3470000,694.27
-1961-07-05,689.81,696.76,688.34,692.77,3270000,692.77
-1961-07-03,683.96,691.50,681.91,689.81,2180000,689.81
-1961-06-30,681.95,687.16,678.23,683.96,2380000,683.96
-1961-06-29,684.59,687.28,679.62,681.95,2560000,681.95
-1961-06-28,683.88,690.04,681.20,684.59,2830000,684.59
-1961-06-27,681.16,687.16,676.30,683.88,3090000,683.88
-1961-06-26,688.66,689.96,679.22,681.16,2690000,681.16
-1961-06-23,685.62,692.81,683.64,688.66,2720000,688.66
-1961-06-22,686.09,689.96,680.13,685.62,2880000,685.62
-1961-06-21,687.87,691.42,683.13,686.09,3210000,686.09
-1961-06-20,680.68,691.03,679.50,687.87,3280000,687.87
-1961-06-19,685.50,686.53,673.49,680.68,3980000,680.68
-1961-06-16,691.27,691.98,681.16,685.50,3380000,685.50
-1961-06-15,695.81,699.72,689.69,691.27,3220000,691.27
-1961-06-14,694.15,700.47,691.42,695.81,3430000,695.81
-1961-06-13,696.76,698.93,690.24,694.15,3030000,694.15
-1961-06-12,700.90,702.29,693.20,696.76,3260000,696.76
-1961-06-09,701.69,705.88,697.39,700.90,3520000,700.90
-1961-06-08,700.86,704.46,695.26,701.69,3810000,701.69
-1961-06-07,703.79,708.05,697.70,700.86,3980000,700.86
-1961-06-06,703.43,708.88,699.21,703.79,4250000,703.79
-1961-06-05,697.70,708.57,695.33,703.43,4150000,703.43
-1961-06-02,695.37,700.82,691.54,697.70,3670000,697.70
-1961-06-01,696.72,700.86,691.39,695.37,3770000,695.37
-1961-05-31,696.28,703.04,692.65,696.72,4320000,696.72
-1961-05-26,690.16,699.48,686.13,696.28,3780000,696.28
-1961-05-25,696.52,699.13,687.55,690.16,3760000,690.16
-1961-05-24,700.59,702.56,689.77,696.52,3970000,696.52
-1961-05-23,702.44,707.34,697.31,700.59,3660000,700.59
-1961-05-22,705.96,714.69,697.74,702.44,4070000,702.44
-1961-05-19,701.14,708.88,698.38,705.96,4200000,705.96
-1961-05-18,705.52,709.00,697.70,701.14,4610000,701.14
-1961-05-17,697.74,708.49,695.18,705.52,5520000,705.52
-1961-05-16,692.37,700.35,690.52,697.74,5110000,697.74
-1961-05-15,687.91,696.44,684.47,692.37,4840000,692.37
-1961-05-12,686.49,691.54,683.41,687.91,4840000,687.91
-1961-05-11,686.61,689.81,682.06,686.49,5170000,686.49
-1961-05-10,686.92,690.67,682.93,686.61,5450000,686.61
-1961-05-09,689.06,692.73,683.49,686.92,5380000,686.92
-1961-05-08,690.67,695.41,685.15,689.06,5170000,689.06
-1961-05-05,692.25,697.31,687.59,690.67,4980000,690.67
-1961-05-04,688.90,696.16,686.49,692.25,5350000,692.25
-1961-05-03,682.34,691.54,682.10,688.90,4940000,688.90
-1961-05-02,677.05,685.34,674.68,682.34,4110000,682.34
-1961-05-01,678.71,683.17,672.98,677.05,3710000,677.05
-1961-04-28,679.54,683.96,673.34,678.71,3710000,678.71
-1961-04-27,682.18,686.76,675.78,679.54,4450000,679.54
-1961-04-26,683.09,688.98,678.94,682.18,4980000,682.18
-1961-04-25,672.66,686.72,672.59,683.09,4670000,683.09
-1961-04-24,684.16,684.16,671.64,672.66,4590000,672.66
-1961-04-21,684.24,689.41,678.79,685.26,4340000,685.26
-1961-04-20,686.21,689.02,679.77,684.24,4810000,684.24
-1961-04-19,690.60,690.67,679.58,686.21,4870000,686.21
-1961-04-18,696.72,697.43,687.63,690.60,4830000,690.60
-1961-04-17,693.72,700.75,689.29,696.72,5860000,696.72
-1961-04-14,692.02,698.45,688.07,693.72,5240000,693.72
-1961-04-13,690.16,696.12,685.54,692.02,4770000,692.02
-1961-04-12,694.11,697.39,686.96,690.16,4870000,690.16
-1961-04-11,692.06,700.31,687.87,694.11,5230000,694.11
-1961-04-10,684.16,695.77,684.16,692.06,5550000,692.06
-1961-04-07,679.34,687.76,676.52,683.68,5100000,683.68
-1961-04-06,677.32,682.58,673.39,679.34,4910000,679.34
-1961-04-05,678.73,680.98,671.79,677.32,5430000,677.32
-1961-04-04,677.59,683.11,673.81,678.73,7080000,678.73
-1961-04-03,676.63,684.29,672.98,677.59,6470000,677.59
-1961-03-30,676.41,682.01,673.13,676.63,5610000,676.63
-1961-03-29,669.58,679.19,667.64,676.41,5330000,676.41
-1961-03-28,671.03,674.96,665.73,669.58,4630000,669.58
-1961-03-27,672.48,675.30,667.22,671.03,4190000,671.03
-1961-03-24,675.45,677.28,668.59,672.48,4390000,672.48
-1961-03-23,679.38,680.48,671.79,675.45,2170000,675.45
-1961-03-22,678.73,685.32,675.19,679.38,5840000,679.38
-1961-03-21,678.84,682.92,672.44,678.73,5800000,678.73
-1961-03-20,676.48,684.07,674.12,678.84,5780000,678.84
-1961-03-17,670.80,681.63,670.80,676.48,5960000,676.48
-1961-03-16,662.88,674.19,660.36,670.38,5610000,670.38
-1961-03-15,661.08,665.96,656.36,662.88,4900000,662.88
-1961-03-14,664.44,667.11,657.85,661.08,4900000,661.08
-1961-03-13,663.56,668.52,659.48,664.44,5080000,664.44
-1961-03-10,663.33,667.91,658.57,663.56,5950000,663.56
-1961-03-09,666.15,670.08,660.40,663.33,6010000,663.33
-1961-03-08,667.14,670.54,660.70,666.15,5910000,666.15
-1961-03-07,674.46,674.84,662.76,667.14,5540000,667.14
-1961-03-06,671.57,678.23,668.78,674.46,5650000,674.46
-1961-03-03,669.39,676.14,666.61,671.57,5530000,671.57
-1961-03-02,663.03,671.53,661.01,669.39,5300000,669.39
-1961-03-01,662.08,666.27,657.12,663.03,4970000,663.03
-1961-02-28,660.44,667.03,657.16,662.08,5830000,662.08
-1961-02-27,655.60,662.11,652.59,660.44,5470000,660.44
-1961-02-24,654.42,659.56,650.99,655.60,5330000,655.60
-1961-02-23,652.40,657.46,648.55,654.42,5620000,654.42
-1961-02-21,653.65,657.54,649.00,652.40,5070000,652.40
-1961-02-20,651.67,657.27,649.04,653.65,4680000,653.65
-1961-02-17,651.86,656.21,647.90,651.67,4640000,651.67
-1961-02-16,648.89,656.36,646.64,651.86,5070000,651.86
-1961-02-15,642.91,651.94,641.46,648.89,5200000,648.89
-1961-02-14,637.04,646.37,635.44,642.91,4490000,642.91
-1961-02-13,639.67,640.89,632.81,637.04,3560000,637.04
-1961-02-10,645.12,645.99,635.55,639.67,4840000,639.67
-1961-02-09,648.85,651.56,641.57,645.12,5590000,645.12
-1961-02-08,643.94,651.41,641.04,648.85,4940000,648.85
-1961-02-07,645.65,647.48,637.99,643.94,4020000,643.94
-1961-02-06,652.97,653.65,642.07,645.65,3890000,645.65
-1961-02-03,653.62,657.20,647.37,652.97,5210000,652.97
-1961-02-02,649.39,655.56,646.41,653.62,4900000,653.62
-1961-02-01,648.20,652.82,643.67,649.39,4380000,649.39
-1961-01-31,650.64,655.18,644.24,648.20,4690000,648.20
-1961-01-30,643.59,653.96,642.33,650.64,5190000,650.64
-1961-01-27,638.87,648.17,636.47,643.59,4510000,643.59
-1961-01-26,637.72,641.84,632.66,638.87,4110000,638.87
-1961-01-25,638.79,643.10,633.76,637.72,4470000,637.72
-1961-01-24,639.82,642.22,634.87,638.79,4280000,638.79
-1961-01-23,634.37,642.68,634.07,639.82,4450000,639.82
-1961-01-20,632.39,637.76,630.41,634.37,3270000,634.37
-1961-01-19,634.10,637.15,628.77,632.39,4740000,632.39
-1961-01-18,628.96,636.39,626.48,634.10,4390000,634.10
-1961-01-17,633.19,634.26,625.49,628.96,3830000,628.96
-1961-01-16,633.65,639.17,629.91,633.19,4510000,633.19
-1961-01-13,628.50,636.20,626.48,633.65,4520000,633.65
-1961-01-12,627.21,633.23,623.28,628.50,4270000,628.50
-1961-01-11,625.72,631.85,622.37,627.21,4370000,627.21
-1961-01-10,624.42,630.90,620.96,625.72,4840000,625.72
-1961-01-09,621.64,627.93,620.12,624.42,4210000,624.42
-1961-01-06,622.67,624.58,615.66,621.64,3620000,621.64
-1961-01-05,621.49,628.35,619.24,622.67,4130000,622.67
-1961-01-04,610.25,623.36,608.46,621.49,3840000,621.49
-1961-01-03,615.89,616.65,606.09,610.25,2770000,610.25
-1960-12-30,616.19,620.80,612.76,615.89,5300000,615.89
-1960-12-29,615.75,620.37,612.42,616.19,4340000,616.19
-1960-12-28,613.38,618.60,610.76,615.75,3620000,615.75
-1960-12-27,613.23,617.78,609.65,613.38,3270000,613.38
-1960-12-23,613.31,617.52,608.28,613.23,3580000,613.23
-1960-12-22,615.42,619.67,610.65,613.31,3820000,613.31
-1960-12-21,614.82,621.33,610.42,615.42,4060000,615.42
-1960-12-20,615.56,619.82,610.94,614.82,3340000,614.82
-1960-12-19,617.78,621.07,612.50,615.56,3630000,615.56
-1960-12-16,610.76,620.37,609.06,617.78,3770000,617.78
-1960-12-15,612.68,616.42,607.21,610.76,3660000,610.76
-1960-12-14,611.72,618.34,608.24,612.68,3880000,612.68
-1960-12-13,611.94,615.49,606.80,611.72,3500000,611.72
-1960-12-12,610.90,615.31,606.87,611.94,3020000,611.94
-1960-12-09,605.17,612.86,601.88,610.90,4460000,610.90
-1960-12-08,604.62,608.61,601.14,605.17,3540000,605.17
-1960-12-07,597.11,606.84,595.93,604.62,3660000,604.62
-1960-12-06,593.49,599.44,591.34,597.11,3360000,597.11
-1960-12-05,596.00,597.52,590.79,593.49,3290000,593.49
-1960-12-02,594.56,600.14,592.12,596.00,3140000,596.00
-1960-12-01,597.22,598.18,589.82,594.56,3090000,594.56
-1960-11-30,602.40,602.99,595.15,597.22,3080000,597.22
-1960-11-29,605.43,606.98,599.03,602.40,3630000,602.40
-1960-11-28,606.47,611.31,602.25,605.43,3860000,605.43
-1960-11-25,602.47,608.57,600.18,606.47,3190000,606.47
-1960-11-23,601.10,605.10,597.00,602.47,3000000,602.47
-1960-11-22,604.54,608.02,598.55,601.10,3430000,601.10
-1960-11-21,603.62,607.87,600.44,604.54,3090000,604.54
-1960-11-18,602.18,608.02,599.96,603.62,2760000,603.62
-1960-11-17,604.77,606.58,598.89,602.18,2450000,602.18
-1960-11-16,606.87,611.61,602.29,604.77,3110000,604.77
-1960-11-15,604.80,608.83,598.66,606.87,2990000,606.87
-1960-11-14,608.61,610.09,600.66,604.80,2660000,604.80
-1960-11-11,611.79,611.79,604.43,608.61,2730000,608.61
-1960-11-10,602.25,614.09,600.48,612.01,4030000,612.01
-1960-11-09,597.63,603.62,587.35,602.25,3450000,602.25
-1960-11-07,596.07,604.32,593.52,597.63,3540000,597.63
-1960-11-04,590.82,599.40,589.71,596.07,3050000,596.07
-1960-11-03,588.23,592.60,584.65,590.82,2580000,590.82
-1960-11-02,585.24,592.97,584.35,588.23,2780000,588.23
-1960-11-01,580.36,589.42,579.43,585.24,2600000,585.24
-1960-10-31,577.92,582.28,573.11,580.36,2460000,580.36
-1960-10-28,580.95,582.10,575.18,577.92,2490000,577.92
-1960-10-27,575.18,583.80,575.07,580.95,2900000,580.95
-1960-10-26,566.60,577.66,566.60,575.18,3020000,575.18
-1960-10-25,571.93,575.73,564.23,566.05,3030000,566.05
-1960-10-24,577.55,578.18,566.64,571.93,4420000,571.93
-1960-10-21,582.69,584.61,575.40,577.55,3090000,577.55
-1960-10-20,587.01,589.71,580.62,582.69,2910000,582.69
-1960-10-19,588.75,590.64,582.32,587.01,2410000,587.01
-1960-10-18,593.34,594.71,585.61,588.75,2220000,588.75
-1960-10-17,596.48,600.03,590.45,593.34,2280000,593.34
-1960-10-14,591.49,599.51,590.45,596.48,2470000,596.48
-1960-10-13,585.83,594.30,584.87,591.49,2220000,591.49
-1960-10-12,588.75,590.90,583.72,585.83,1890000,585.83
-1960-10-11,587.31,593.01,585.02,588.75,2350000,588.75
-1960-10-10,586.42,591.49,583.17,587.31,2030000,587.31
-1960-10-07,583.69,590.82,581.28,586.42,2530000,586.42
-1960-10-06,579.54,589.20,579.54,583.69,2510000,583.69
-1960-10-05,573.15,580.36,569.04,578.88,2650000,578.88
-1960-10-04,577.81,578.73,569.74,573.15,2270000,573.15
-1960-10-03,580.14,582.98,574.26,577.81,2220000,577.81
-1960-09-30,572.22,582.47,572.22,580.14,3370000,580.14
-1960-09-29,569.08,575.77,565.49,570.59,2850000,570.59
-1960-09-28,574.81,579.40,565.53,569.08,3520000,569.08
-1960-09-27,577.14,581.80,570.85,574.81,3170000,574.81
-1960-09-26,584.76,584.76,573.29,577.14,3930000,577.14
-1960-09-23,592.15,592.64,583.61,585.20,2580000,585.20
-1960-09-22,594.26,596.70,588.57,592.15,1970000,592.15
-1960-09-21,589.31,597.85,589.31,594.26,2930000,594.26
-1960-09-20,586.76,592.08,581.91,588.20,3660000,588.20
-1960-09-19,601.18,601.18,585.72,586.76,3790000,586.76
-1960-09-16,602.69,606.61,598.22,602.18,2340000,602.18
-1960-09-15,605.69,607.24,598.26,602.69,2870000,602.69
-1960-09-14,611.79,614.01,604.43,605.69,2530000,605.69
-1960-09-13,609.35,614.34,606.47,611.79,2180000,611.79
-1960-09-12,614.12,615.05,606.73,609.35,2160000,609.35
-1960-09-09,611.42,617.41,609.87,614.12,2750000,614.12
-1960-09-08,612.27,615.79,607.39,611.42,2670000,611.42
-1960-09-07,620.85,621.85,611.35,612.27,2850000,612.27
-1960-09-06,625.22,627.58,618.97,620.85,2580000,620.85
-1960-09-02,626.10,629.17,622.07,625.22,2680000,625.22
-1960-09-01,625.99,630.95,622.78,626.10,3460000,626.10
-1960-08-31,626.40,628.73,620.93,625.99,3130000,625.99
-1960-08-30,634.46,636.35,624.44,626.40,2890000,626.40
-1960-08-29,636.13,639.31,631.76,634.46,2780000,634.46
-1960-08-26,637.16,640.34,632.13,636.13,2780000,636.13
-1960-08-25,641.56,643.71,634.24,637.16,2680000,637.16
-1960-08-24,638.29,645.30,636.68,641.56,3500000,641.56
-1960-08-23,631.25,640.40,631.25,638.29,3560000,638.29
-1960-08-22,629.27,634.55,625.53,630.71,2760000,630.71
-1960-08-19,625.82,631.42,624.64,629.27,2570000,629.27
-1960-08-18,626.54,629.31,622.70,625.82,2890000,625.82
-1960-08-17,625.43,628.98,621.62,626.54,3090000,626.54
-1960-08-16,624.17,628.98,622.19,625.43,2710000,625.43
-1960-08-15,626.18,628.41,621.15,624.17,2450000,624.17
-1960-08-12,622.88,630.53,622.34,626.18,3160000,626.18
-1960-08-11,617.52,624.85,616.27,622.88,3070000,622.88
-1960-08-10,615.69,620.54,612.67,617.52,2810000,617.52
-1960-08-09,614.79,619.10,610.95,615.69,2700000,615.69
-1960-08-08,614.29,618.57,609.15,614.79,2960000,614.79
-1960-08-05,609.23,617.88,606.60,614.29,3000000,614.29
-1960-08-04,608.69,611.24,600.28,609.23,2840000,609.23
-1960-08-03,613.68,614.94,605.67,608.69,2470000,608.69
-1960-08-02,617.85,622.34,610.09,613.68,2090000,613.68
-1960-08-01,616.73,622.37,613.36,617.85,2440000,617.85
-1960-07-29,605.67,618.35,605.24,616.73,2730000,616.73
-1960-07-28,601.76,610.88,599.53,605.67,3020000,605.67
-1960-07-27,606.75,611.96,600.35,601.76,2560000,601.76
-1960-07-26,601.68,612.78,600.50,606.75,2720000,606.75
-1960-07-25,609.87,612.17,597.30,601.68,2840000,601.68
-1960-07-22,616.63,617.60,605.45,609.87,2850000,609.87
-1960-07-21,624.13,626.76,614.22,616.63,2510000,616.63
-1960-07-20,624.78,629.23,620.72,624.13,2370000,624.13
-1960-07-19,626.00,629.52,621.22,624.78,2490000,624.78
-1960-07-18,630.24,632.93,623.85,626.00,2350000,626.00
-1960-07-15,631.32,635.16,627.47,630.24,2140000,630.24
-1960-07-14,632.11,637.14,629.34,631.32,2480000,631.32
-1960-07-13,634.12,638.18,629.16,632.11,2590000,632.11
-1960-07-12,640.44,642.24,631.64,634.12,2860000,634.12
-1960-07-11,646.91,649.17,637.60,640.44,2920000,640.44
-1960-07-08,644.89,650.10,641.52,646.91,3010000,646.91
-1960-07-07,640.37,646.83,638.21,644.89,3050000,644.89
-1960-07-06,640.91,645.22,636.45,640.37,2970000,640.37
-1960-07-05,641.30,645.11,636.27,640.91,2780000,640.91
-1960-07-01,640.62,644.71,636.60,641.30,2620000,641.30
-1960-06-30,638.39,644.39,634.91,640.62,2940000,640.62
-1960-06-29,637.46,642.78,634.37,638.39,3160000,638.39
-1960-06-28,642.49,644.75,634.66,637.46,3120000,637.46
-1960-06-27,647.01,650.75,640.33,642.49,2960000,642.49
-1960-06-24,647.41,650.32,641.91,647.01,3220000,647.01
-1960-06-23,645.36,651.97,642.52,647.41,3620000,647.41
-1960-06-22,644.93,649.06,639.22,645.36,3600000,645.36
-1960-06-21,647.52,650.89,640.55,644.93,3860000,644.93
-1960-06-20,650.89,654.09,642.02,647.52,3970000,647.52
-1960-06-17,648.27,655.24,644.79,650.89,3920000,650.89
-1960-06-16,649.42,653.95,644.00,648.27,3540000,648.27
-1960-06-15,654.88,657.32,647.37,649.42,3630000,649.42
-1960-06-14,655.85,660.05,650.71,654.88,3430000,654.88
-1960-06-13,654.88,661.45,650.61,655.85,3180000,655.85
-1960-06-10,656.42,659.55,650.68,654.88,2940000,654.88
-1960-06-09,650.35,663.64,647.41,656.42,3820000,656.42
-1960-06-08,645.58,652.83,642.49,650.35,3800000,650.35
-1960-06-07,637.85,647.98,637.85,645.58,3710000,645.58
-1960-06-06,628.98,639.43,627.19,636.92,3220000,636.92
-1960-06-03,627.87,634.33,624.92,628.98,3340000,628.98
-1960-06-02,624.89,631.28,620.76,627.87,3730000,627.87
-1960-06-01,625.50,629.88,620.61,624.89,3770000,624.89
-1960-05-31,624.78,631.28,622.66,625.50,3750000,625.50
-1960-05-27,622.79,628.81,620.86,624.78,3040000,624.78
-1960-05-26,621.28,626.78,618.20,622.79,3720000,622.79
-1960-05-25,621.39,625.66,616.87,621.28,3440000,621.28
-1960-05-24,623.66,626.89,617.71,621.39,3240000,621.39
-1960-05-23,625.24,629.34,620.34,623.66,2530000,623.66
-1960-05-20,624.68,631.44,621.60,625.24,3170000,625.24
-1960-05-19,623.00,628.08,618.62,624.68,3700000,624.68
-1960-05-18,621.63,630.21,617.71,623.00,5240000,623.00
-1960-05-17,617.39,624.92,613.30,621.63,4080000,621.63
-1960-05-16,616.03,621.84,611.76,617.39,3530000,617.39
-1960-05-13,607.87,618.20,607.31,616.03,3750000,616.03
-1960-05-12,606.54,612.70,603.81,607.87,3220000,607.87
-1960-05-11,604.82,608.88,601.70,606.54,2900000,606.54
-1960-05-10,607.48,610.14,602.86,604.82,2870000,604.82
-1960-05-09,607.62,612.74,604.19,607.48,2670000,607.48
-1960-05-06,608.32,611.41,603.56,607.62,2560000,607.62
-1960-05-05,610.99,613.79,605.80,608.32,2670000,608.32
-1960-05-04,607.73,613.47,606.05,610.99,2870000,610.99
-1960-05-03,599.61,610.14,598.73,607.73,2910000,607.73
-1960-05-02,601.70,605.52,596.61,599.61,2930000,599.61
-1960-04-29,604.33,607.85,598.35,601.70,2850000,601.70
-1960-04-28,609.96,612.22,599.27,604.33,3190000,604.33
-1960-04-27,610.92,616.76,606.89,609.96,3020000,609.96
-1960-04-26,611.13,613.76,606.65,610.92,2940000,610.92
-1960-04-25,616.32,617.00,607.71,611.13,2980000,611.13
-1960-04-22,619.15,622.64,614.47,616.32,2850000,616.32
-1960-04-21,618.71,621.92,615.19,619.15,2700000,619.15
-1960-04-20,625.68,625.68,615.94,618.71,3150000,618.71
-1960-04-19,630.77,634.97,624.86,626.40,3080000,626.40
-1960-04-18,630.12,637.16,626.33,630.77,3200000,630.77
-1960-04-14,626.50,632.54,624.62,630.12,2730000,630.12
-1960-04-13,626.50,630.15,623.39,626.50,2730000,626.50
-1960-04-12,624.89,628.62,621.41,626.50,2470000,626.50
-1960-04-11,628.10,631.28,622.40,624.89,2520000,624.89
-1960-04-08,629.03,632.07,624.14,628.10,2820000,628.10
-1960-04-07,628.31,634.08,626.91,629.03,3070000,629.03
-1960-04-06,622.64,631.35,622.64,628.31,3450000,628.31
-1960-04-05,618.54,624.69,616.56,622.19,2840000,622.19
-1960-04-04,615.98,621.68,613.35,618.54,2450000,618.54
-1960-04-01,616.59,619.94,612.94,615.98,2260000,615.98
-1960-03-31,619.94,622.74,614.75,616.59,2690000,616.59
-1960-03-30,620.35,623.56,616.28,619.94,2450000,619.94
-1960-03-29,621.78,623.97,617.68,620.35,2320000,620.35
-1960-03-28,622.47,625.68,618.81,621.78,2500000,621.78
-1960-03-25,624.00,625.95,619.29,622.47,2640000,622.47
-1960-03-24,622.06,627.86,621.51,624.00,2940000,624.00
-1960-03-23,618.09,624.35,616.25,622.06,3020000,622.06
-1960-03-22,617.00,622.09,614.20,618.09,2490000,618.09
-1960-03-21,616.42,620.52,613.99,617.00,2500000,617.00
-1960-03-18,615.09,620.69,613.52,616.42,2620000,616.42
-1960-03-17,616.73,618.61,610.85,615.09,2140000,615.09
-1960-03-16,612.18,620.90,611.74,616.73,2960000,616.73
-1960-03-15,606.79,614.68,605.52,612.18,2690000,612.18
-1960-03-14,605.83,610.17,602.96,606.79,2530000,606.79
-1960-03-11,602.31,608.70,599.61,605.83,2770000,605.83
-1960-03-10,607.16,609.72,600.40,602.31,3350000,602.31
-1960-03-09,599.10,608.29,596.20,607.16,3580000,607.16
-1960-03-08,604.02,607.88,596.64,599.10,3370000,599.10
-1960-03-07,609.79,614.61,601.59,604.02,2900000,604.02
-1960-03-04,612.05,613.55,600.36,609.79,4060000,609.79
-1960-03-03,621.37,622.64,610.03,612.05,3160000,612.05
-1960-03-02,626.87,628.34,618.95,621.37,3110000,621.37
-1960-03-01,630.12,632.65,623.77,626.87,2920000,626.87
-1960-02-29,632.00,635.31,627.56,630.12,2990000,630.12
-1960-02-26,628.51,636.30,627.76,632.00,3380000,632.00
-1960-02-25,623.73,630.22,621.65,628.51,3600000,628.51
-1960-02-24,626.19,627.90,620.79,623.73,2740000,623.73
-1960-02-23,628.45,633.50,624.04,626.19,2960000,626.19
-1960-02-19,622.19,630.26,621.31,628.45,3230000,628.45
-1960-02-18,615.29,625.95,615.29,622.19,3800000,622.19
-1960-02-17,611.33,615.33,603.34,613.55,4210000,613.55
-1960-02-16,617.58,619.29,608.94,611.33,3270000,611.33
-1960-02-15,622.23,624.31,615.94,617.58,2780000,617.58
-1960-02-12,618.57,623.70,617.38,622.23,2230000,622.23
-1960-02-11,623.36,626.09,617.34,618.57,2610000,618.57
-1960-02-10,628.45,631.79,620.25,623.36,2440000,623.36
-1960-02-09,619.43,630.53,617.72,628.45,2860000,628.45
-1960-02-08,626.50,626.50,610.17,619.43,3350000,619.43
-1960-02-05,631.14,632.10,623.63,626.77,2530000,626.77
-1960-02-04,630.97,634.53,627.11,631.14,2600000,631.14
-1960-02-03,636.92,640.30,629.03,630.97,3020000,630.97
-1960-02-02,628.04,638.86,628.04,636.92,3080000,636.92
-1960-02-01,622.62,630.75,619.68,626.20,2820000,626.20
-1960-01-29,629.84,631.51,619.51,622.62,3060000,622.62
-1960-01-28,637.67,638.27,627.77,629.84,2630000,629.84
-1960-01-27,639.84,643.05,633.89,637.67,2460000,637.67
-1960-01-26,639.07,642.81,633.49,639.84,3060000,639.84
-1960-01-25,645.85,648.83,637.20,639.07,2790000,639.07
-1960-01-22,645.43,650.92,643.33,645.85,2690000,645.85
-1960-01-21,643.69,649.51,641.40,645.43,2700000,645.43
-1960-01-20,645.07,650.13,641.57,643.69,2720000,643.69
-1960-01-19,653.86,654.97,642.58,645.07,3100000,645.07
-1960-01-18,659.68,662.06,651.70,653.86,3020000,653.86
-1960-01-15,660.53,666.38,656.25,659.68,3400000,659.68
-1960-01-14,656.44,663.14,655.13,660.53,3560000,660.53
-1960-01-13,660.43,664.68,653.11,656.44,3470000,656.44
-1960-01-12,667.16,667.39,655.49,660.43,3760000,660.43
-1960-01-11,675.73,676.74,663.67,667.16,3470000,667.16
-1960-01-08,677.66,680.86,671.38,675.73,3290000,675.73
-1960-01-07,682.62,683.05,674.98,677.66,3310000,677.66
-1960-01-06,685.47,687.36,678.34,682.62,3730000,682.62
-1960-01-05,679.06,687.14,677.43,685.47,3710000,685.47
-1960-01-04,679.36,688.21,677.39,679.06,3990000,679.06
-1959-12-31,676.97,682.72,676.32,679.36,3810000,679.36
-1959-12-30,672.23,679.49,672.00,676.97,3680000,676.97
-1959-12-29,669.77,675.01,667.13,672.23,3020000,672.23
-1959-12-28,670.69,674.41,665.96,669.77,2830000,669.77
-1959-12-24,670.18,674.69,666.93,670.69,2320000,670.69
-1959-12-23,671.82,675.73,667.75,670.18,2890000,670.18
-1959-12-22,675.92,677.34,669.90,671.82,2930000,671.82
-1959-12-21,676.65,681.54,673.05,675.92,3290000,675.92
-1959-12-18,673.90,679.52,671.35,676.65,3230000,676.65
-1959-12-17,675.20,678.54,671.54,673.90,3040000,673.90
-1959-12-16,673.78,679.20,671.41,675.20,3270000,675.20
-1959-12-15,675.07,681.00,671.63,673.78,3450000,673.78
-1959-12-14,670.50,678.26,669.02,675.07,3100000,675.07
-1959-12-11,672.74,674.72,667.28,670.50,2910000,670.50
-1959-12-10,671.26,676.96,668.80,672.74,3170000,672.74
-1959-12-09,675.39,678.03,668.76,671.26,3430000,671.26
-1959-12-08,665.67,679.36,665.07,675.39,3870000,675.39
-1959-12-07,664.00,670.44,661.83,665.67,3620000,665.67
-1959-12-04,662.96,668.04,659.87,664.00,3590000,664.00
-1959-12-03,661.29,666.05,658.48,662.96,3280000,662.96
-1959-12-02,664.38,668.48,658.64,661.29,3490000,661.29
-1959-12-01,659.97,668.70,659.97,664.38,3990000,664.38
-1959-11-30,652.52,661.23,651.55,659.18,3670000,659.18
-1959-11-27,651.10,655.58,647.92,652.52,3030000,652.52
-1959-11-25,649.69,655.55,646.69,651.10,3550000,651.10
-1959-11-24,646.75,653.66,644.86,649.69,3650000,649.69
-1959-11-23,645.46,651.51,641.77,646.75,3400000,646.75
-1959-11-20,643.32,649.97,641.42,645.46,2960000,645.46
-1959-11-19,641.99,648.36,639.63,643.32,3230000,643.32
-1959-11-18,635.62,644.96,634.77,641.99,3660000,641.99
-1959-11-17,634.46,639.60,630.99,635.62,3570000,635.62
-1959-11-16,641.71,644.48,632.72,634.46,3710000,634.46
-1959-11-13,644.26,647.38,640.01,641.71,3050000,641.71
-1959-11-12,647.32,650.88,642.78,644.26,3600000,644.26
-1959-11-11,648.14,649.94,644.96,647.32,2820000,647.32
-1959-11-10,650.92,652.08,644.86,648.14,3020000,648.14
-1959-11-09,650.92,658.86,648.27,650.92,3700000,650.92
-1959-11-06,647.57,654.38,644.92,650.92,3450000,650.92
-1959-11-05,645.74,651.61,641.99,647.57,3170000,647.57
-1959-11-04,645.46,651.96,641.01,645.74,3940000,645.74
-1959-11-02,646.60,650.85,642.24,645.46,3320000,645.46
-1959-10-30,645.11,649.40,641.68,646.60,3560000,646.60
-1959-10-29,643.60,648.65,638.78,645.11,3890000,645.11
-1959-10-28,642.18,647.04,637.55,643.60,3920000,643.60
-1959-10-27,637.61,645.87,636.19,642.18,4160000,642.18
-1959-10-26,633.07,641.14,633.07,637.61,3580000,637.61
-1959-10-23,625.59,634.42,624.84,633.07,2880000,633.07
-1959-10-22,632.69,635.75,624.55,625.59,3060000,625.59
-1959-10-21,635.37,637.99,630.64,632.69,2730000,632.69
-1959-10-20,639.66,642.18,634.01,635.37,2740000,635.37
-1959-10-19,643.22,643.88,634.93,639.66,2470000,639.66
-1959-10-16,637.67,646.53,637.67,643.22,2760000,643.22
-1959-10-15,634.27,640.51,632.91,637.48,2190000,637.48
-1959-10-14,637.83,639.50,632.28,634.27,2320000,634.27
-1959-10-13,638.55,642.34,635.46,637.83,2530000,637.83
-1959-10-12,636.98,641.27,635.56,638.55,1750000,638.55
-1959-10-09,633.04,638.74,631.62,636.98,2540000,636.98
-1959-10-08,635.37,637.42,631.24,633.04,2510000,633.04
-1959-10-07,636.06,638.46,631.90,635.37,2380000,635.37
-1959-10-06,637.01,639.06,631.87,636.06,2330000,636.06
-1959-10-05,636.57,640.76,634.58,637.01,2100000,637.01
-1959-10-02,633.60,639.22,630.77,636.57,2270000,636.57
-1959-10-01,631.68,635.72,625.40,633.60,2660000,633.60
-1959-09-30,640.10,640.16,628.94,631.68,2850000,631.68
-1959-09-29,636.47,643.60,635.72,640.10,3220000,640.10
-1959-09-28,632.59,638.93,629.35,636.47,2640000,636.47
-1959-09-25,632.85,637.73,628.18,632.59,3280000,632.59
-1959-09-24,625.06,635.28,625.06,632.85,3480000,632.85
-1959-09-23,617.21,626.73,617.21,624.02,3010000,624.02
-1959-09-22,618.15,624.24,613.30,616.45,3000000,616.45
-1959-09-21,625.59,625.59,613.71,618.15,3240000,618.15
-1959-09-18,629.00,629.60,621.97,625.78,2530000,625.78
-1959-09-17,632.41,636.19,627.64,629.00,2090000,629.00
-1959-09-16,630.80,636.16,629.47,632.41,2180000,632.41
-1959-09-15,633.79,634.83,624.49,630.80,2830000,630.80
-1959-09-14,637.36,641.08,632.31,633.79,2590000,633.79
-1959-09-11,633.38,641.33,632.34,637.36,2640000,637.36
-1959-09-10,637.67,641.30,630.45,633.38,2520000,633.38
-1959-09-09,642.69,644.74,631.43,637.67,3030000,637.67
-1959-09-08,651.74,651.74,636.98,642.69,2940000,642.69
-1959-09-04,645.90,653.91,645.37,652.18,2300000,652.18
-1959-09-03,655.80,655.93,644.51,645.90,2330000,645.90
-1959-09-02,655.90,659.87,652.15,655.80,2370000,655.80
-1959-09-01,664.41,664.95,652.74,655.90,2430000,655.90
-1959-08-31,663.06,667.72,660.25,664.41,2140000,664.41
-1959-08-28,663.34,666.71,659.75,663.06,1930000,663.06
-1959-08-27,657.60,665.61,657.60,663.34,2550000,663.34
-1959-08-26,655.96,660.34,652.84,657.57,2210000,657.57
-1959-08-25,653.22,659.56,651.07,655.96,1960000,655.96
-1959-08-24,655.39,657.82,650.57,653.22,1860000,653.22
-1959-08-21,655.02,658.86,651.89,655.39,2000000,655.39
-1959-08-20,647.01,657.29,647.01,655.02,2450000,655.02
-1959-08-19,649.31,649.31,639.34,646.53,3050000,646.53
-1959-08-18,658.42,659.15,649.50,650.79,2280000,650.79
-1959-08-17,658.74,663.02,656.18,658.42,1980000,658.42
-1959-08-14,655.43,661.42,654.61,658.74,1990000,658.74
-1959-08-13,655.14,658.48,651.99,655.43,2020000,655.43
-1959-08-12,658.07,662.46,653.41,655.14,2700000,655.14
-1959-08-11,653.79,661.76,651.14,658.07,2980000,658.07
-1959-08-10,665.14,665.14,647.93,653.79,4190000,653.79
-1959-08-07,671.98,676.11,666.71,668.57,2580000,668.57
-1959-08-06,672.33,676.11,669.36,671.98,2610000,671.98
-1959-08-05,675.76,675.76,667.82,672.33,2630000,672.33
-1959-08-04,678.10,679.71,673.40,676.30,2530000,676.30
-1959-08-03,674.88,683.90,673.90,678.10,2410000,678.10
-1959-07-31,673.37,677.28,670.50,674.88,2270000,674.88
-1959-07-30,673.18,678.67,668.29,673.37,3240000,673.37
-1959-07-29,672.04,677.12,668.48,673.18,3460000,673.18
-1959-07-28,669.08,675.76,666.62,672.04,3190000,672.04
-1959-07-27,663.72,671.92,663.34,669.08,2910000,669.08
-1959-07-24,664.63,668.10,661.29,663.72,2720000,663.72
-1959-07-23,664.38,668.23,661.26,664.63,3310000,664.63
-1959-07-22,661.48,667.69,660.06,664.38,3310000,664.38
-1959-07-21,654.54,663.78,652.62,661.48,2950000,661.48
-1959-07-20,657.13,659.87,651.83,654.54,2500000,654.54
-1959-07-17,658.29,659.81,653.69,657.13,2510000,657.13
-1959-07-16,660.57,662.93,655.46,658.29,3170000,658.29
-1959-07-15,657.70,663.91,655.90,660.57,3280000,660.57
-1959-07-14,657.35,661.13,653.53,657.70,3230000,657.70
-1959-07-13,663.56,665.45,655.05,657.35,3360000,657.35
-1959-07-10,663.09,667.34,659.24,663.56,3600000,663.56
-1959-07-09,663.81,667.12,658.89,663.09,3560000,663.09
-1959-07-08,663.21,668.26,658.23,663.81,4010000,663.81
-1959-07-07,660.09,665.89,656.31,663.21,3840000,663.21
-1959-07-06,654.76,663.31,653.79,660.09,3720000,660.09
-1959-07-02,650.88,659.18,650.22,654.76,3610000,654.76
-1959-07-01,643.60,654.01,643.60,650.88,3150000,650.88
-1959-06-30,643.06,647.29,639.69,643.60,3200000,643.60
-1959-06-29,639.25,646.41,638.33,643.06,3000000,643.06
-1959-06-26,637.23,643.51,635.02,639.25,3100000,639.25
-1959-06-25,634.27,640.23,631.87,637.23,3250000,637.23
-1959-06-24,630.73,636.91,628.53,634.27,3180000,634.27
-1959-06-23,631.71,635.62,627.61,630.73,2600000,630.73
-1959-06-22,629.76,637.42,627.86,631.71,2630000,631.71
-1959-06-19,629.41,633.73,625.12,629.76,2260000,629.76
-1959-06-18,628.05,633.87,627.20,629.41,3150000,629.41
-1959-06-17,621.40,629.82,619.00,628.05,2850000,628.05
-1959-06-16,624.59,626.60,618.28,621.40,2440000,621.40
-1959-06-15,627.42,629.73,621.02,624.59,2410000,624.59
-1959-06-12,627.49,632.03,623.54,627.42,2580000,627.42
-1959-06-11,627.17,634.14,624.62,627.49,3120000,627.49
-1959-06-10,620.45,630.67,620.45,627.17,3310000,627.17
-1959-06-09,621.62,624.81,613.11,617.62,3490000,617.62
-1959-06-08,629.98,632.03,620.33,621.62,2970000,621.62
-1959-06-05,630.54,633.95,625.97,629.98,2800000,629.98
-1959-06-04,637.39,639.78,628.94,630.54,3210000,630.54
-1959-06-03,637.45,642.46,634.36,637.39,2910000,637.39
-1959-06-02,643.10,643.10,632.85,637.45,3120000,637.45
-1959-06-01,643.79,648.65,640.32,643.51,2730000,643.51
-1959-05-29,639.58,647.24,637.25,643.79,2790000,643.79
-1959-05-28,636.68,643.09,635.59,639.58,2970000,639.58
-1959-05-27,632.38,639.22,631.99,636.68,2940000,636.68
-1959-05-26,632.35,636.28,629.41,632.38,2910000,632.38
-1959-05-25,634.74,639.64,630.59,632.35,3260000,632.35
-1959-05-22,631.65,637.37,630.38,634.74,3030000,634.74
-1959-05-21,631.87,634.38,626.84,631.65,3230000,631.65
-1959-05-20,635.44,636.77,628.99,631.87,3550000,631.87
-1959-05-19,633.53,639.19,631.20,635.44,3170000,635.44
-1959-05-18,634.53,636.62,629.90,633.53,2970000,633.53
-1959-05-15,637.04,640.92,632.44,634.53,3510000,634.53
-1959-05-14,633.05,640.10,631.02,637.04,3660000,637.04
-1959-05-13,627.66,635.38,625.51,633.05,3540000,633.05
-1959-05-12,625.03,630.90,622.97,627.66,3550000,627.66
-1959-05-11,621.36,627.66,620.58,625.03,3860000,625.03
-1959-05-08,615.73,625.81,615.73,621.36,3930000,621.36
-1959-05-07,624.39,624.45,611.68,615.64,4530000,615.64
-1959-05-06,625.90,630.84,621.73,624.39,4110000,624.39
-1959-05-05,625.06,629.05,622.88,625.90,3360000,625.90
-1959-05-04,625.06,629.87,622.18,625.06,3060000,625.06
-1959-05-01,623.75,628.11,620.49,625.06,3020000,625.06
-1959-04-30,625.87,628.69,620.91,623.75,3510000,623.75
-1959-04-29,628.87,629.75,622.60,625.87,3470000,625.87
-1959-04-28,629.87,633.95,625.24,628.87,3920000,628.87
-1959-04-27,627.39,635.29,624.60,629.87,3850000,629.87
-1959-04-24,623.27,630.26,622.60,627.39,3790000,627.39
-1959-04-23,625.15,627.39,618.94,623.27,3310000,623.27
-1959-04-22,629.23,631.62,622.69,625.15,3430000,625.15
-1959-04-21,627.08,632.17,623.42,629.23,3650000,629.23
-1959-04-20,624.06,630.69,622.54,627.08,3610000,627.08
-1959-04-17,618.34,626.66,618.34,624.06,3870000,624.06
-1959-04-16,612.50,620.58,611.41,617.58,3790000,617.58
-1959-04-15,609.53,615.07,608.65,612.50,3680000,612.50
-1959-04-14,607.76,611.98,605.44,609.53,3320000,609.53
-1959-04-13,605.97,610.81,603.47,607.76,3140000,607.76
-1959-04-10,605.50,609.52,603.56,605.97,3000000,605.97
-1959-04-09,606.44,609.11,602.12,605.50,2830000,605.50
-1959-04-08,610.34,612.28,605.15,606.44,3260000,606.44
-1959-04-07,611.16,612.66,606.08,610.34,3020000,610.34
-1959-04-06,611.93,616.42,608.26,611.16,3510000,611.16
-1959-04-03,607.52,614.39,607.52,611.93,3680000,611.93
-1959-04-02,602.97,610.25,602.97,607.52,3220000,607.52
-1959-04-01,601.71,606.97,599.65,602.94,2980000,602.94
-1959-03-31,602.65,605.73,599.21,601.71,2820000,601.71
-1959-03-30,606.58,608.64,600.98,602.65,2940000,602.65
-1959-03-26,606.47,608.61,601.50,606.58,2900000,606.58
-1959-03-25,606.73,611.16,603.82,606.47,3280000,606.47
-1959-03-24,605.56,608.67,602.36,606.73,3000000,606.73
-1959-03-23,610.37,612.78,603.38,605.56,3700000,605.56
-1959-03-20,610.02,614.16,605.85,610.37,3770000,610.37
-1959-03-19,610.87,613.92,605.64,610.02,4150000,610.02
-1959-03-18,612.69,617.15,609.14,610.87,4530000,610.87
-1959-03-17,607.93,615.83,607.93,612.69,4730000,612.69
-1959-03-16,614.69,615.80,605.82,607.88,4420000,607.88
-1959-03-13,613.75,618.80,610.78,614.69,4880000,614.69
-1959-03-12,611.49,616.10,608.55,613.75,4690000,613.75
-1959-03-11,611.14,614.34,608.08,611.49,4160000,611.49
-1959-03-10,609.96,614.39,605.44,611.14,3920000,611.14
-1959-03-09,609.52,615.01,606.14,609.96,3530000,609.96
-1959-03-06,611.87,613.16,605.20,609.52,3930000,609.52
-1959-03-05,611.84,614.57,608.32,611.87,3930000,611.87
-1959-03-04,610.78,615.77,606.20,611.84,4150000,611.84
-1959-03-03,605.03,613.04,604.29,610.78,4790000,610.78
-1959-03-02,603.50,608.82,600.89,605.03,4210000,605.03
-1959-02-27,602.00,606.53,599.77,603.50,4300000,603.50
-1959-02-26,601.18,604.44,596.84,602.00,3930000,602.00
-1959-02-25,602.91,605.35,597.86,601.18,3780000,601.18
-1959-02-24,602.21,607.61,599.57,602.91,4340000,602.91
-1959-02-20,595.04,603.91,594.93,602.21,4190000,602.21
-1959-02-19,589.58,597.48,589.58,595.04,4160000,595.04
-1959-02-18,586.71,590.76,583.62,588.82,3480000,588.82
-1959-02-17,587.91,591.58,583.83,586.71,3190000,586.71
-1959-02-16,587.97,593.14,584.39,587.91,3480000,587.91
-1959-02-13,581.89,589.91,580.01,587.97,3070000,587.97
-1959-02-12,584.03,586.73,579.98,581.89,2630000,581.89
-1959-02-11,582.65,588.17,581.63,584.03,3000000,584.03
-1959-02-10,574.72,583.89,574.72,582.65,2960000,582.65
-1959-02-09,581.36,581.36,571.73,574.46,3130000,574.46
-1959-02-06,586.12,587.56,580.54,582.33,3010000,582.33
-1959-02-05,589.38,591.14,584.06,586.12,3140000,586.12
-1959-02-04,592.34,594.16,587.50,589.38,3170000,589.38
-1959-02-03,592.23,595.60,589.35,592.34,3220000,592.34
-1959-02-02,593.96,597.66,589.14,592.23,3610000,592.23
-1959-01-30,590.40,597.60,590.35,593.96,3600000,593.96
-1959-01-29,588.53,594.19,585.88,590.40,3470000,590.40
-1959-01-28,594.66,596.37,584.71,588.53,4190000,588.53
-1959-01-27,592.37,597.31,589.47,594.66,3480000,594.66
-1959-01-26,596.07,599.77,591.11,592.37,3980000,592.37
-1959-01-23,595.69,598.36,591.40,596.07,3600000,596.07
-1959-01-22,597.66,601.74,593.96,595.69,4250000,595.69
-1959-01-21,595.69,600.51,593.28,597.66,3940000,597.66
-1959-01-20,594.40,598.45,590.99,595.69,3680000,595.69
-1959-01-19,595.75,598.57,590.32,594.40,3840000,594.40
-1959-01-16,594.81,599.89,590.38,595.75,4300000,595.75
-1959-01-15,591.64,598.10,589.88,594.81,4500000,594.81
-1959-01-14,590.70,593.28,586.85,591.64,4090000,591.64
-1959-01-13,592.64,595.04,587.47,590.70,3790000,590.70
-1959-01-12,592.72,597.31,589.61,592.64,4320000,592.64
-1959-01-09,588.14,594.84,588.00,592.72,4760000,592.72
-1959-01-08,583.15,590.11,580.54,588.14,4030000,588.14
-1959-01-07,591.37,592.58,581.07,583.15,4140000,583.15
-1959-01-06,590.17,593.52,584.88,591.37,3690000,591.37
-1959-01-05,587.59,594.31,585.24,590.17,4210000,590.17
-1959-01-02,583.65,590.38,580.80,587.59,3380000,587.59
-1958-12-31,581.80,587.44,579.25,583.65,3970000,583.65
-1958-12-30,577.31,584.59,577.13,581.80,3900000,581.80
-1958-12-29,572.73,580.63,572.73,577.31,3790000,577.31
-1958-12-24,566.39,573.64,564.27,572.73,3050000,572.73
-1958-12-23,571.23,573.26,564.15,566.39,2870000,566.39
-1958-12-22,573.17,574.84,568.12,571.23,3030000,571.23
-1958-12-19,572.38,577.90,570.38,573.17,3540000,573.17
-1958-12-18,569.38,575.52,568.24,572.38,3900000,572.38
-1958-12-17,565.18,573.29,561.51,569.38,3900000,569.38
-1958-12-16,563.98,568.29,562.25,565.18,3970000,565.18
-1958-12-15,562.27,566.24,559.96,563.98,3340000,563.98
-1958-12-12,563.07,565.01,559.43,562.27,3140000,562.27
-1958-12-11,564.98,569.50,561.57,563.07,4250000,563.07
-1958-12-10,558.13,566.50,558.05,564.98,4340000,564.98
-1958-12-09,556.08,561.51,555.58,558.13,3790000,558.13
-1958-12-08,556.75,559.54,553.70,556.08,3590000,556.08
-1958-12-05,559.10,560.37,554.85,556.75,3360000,556.75
-1958-12-04,558.81,563.19,556.40,559.10,3630000,559.10
-1958-12-03,558.57,560.95,554.55,558.81,3460000,558.81
-1958-12-02,560.07,562.98,555.37,558.57,3320000,558.57
-1958-12-01,557.46,563.30,555.52,560.07,3800000,560.07
-1958-11-28,550.41,559.04,550.41,557.46,4120000,557.46
-1958-11-26,542.40,551.50,542.40,549.15,4090000,549.15
-1958-11-25,544.89,546.95,538.43,540.52,3940000,540.52
-1958-11-24,554.88,554.88,543.07,544.89,4770000,544.89
-1958-11-21,566.24,566.50,558.16,559.57,3950000,559.57
-1958-11-20,565.97,569.70,563.21,566.24,4320000,566.24
-1958-11-19,564.89,568.68,562.10,565.97,4090000,565.97
-1958-11-18,567.44,569.06,560.48,564.89,3820000,564.89
-1958-11-17,564.68,572.05,561.54,567.44,4540000,567.44
-1958-11-14,560.75,566.91,559.07,564.68,4390000,564.68
-1958-11-13,562.39,564.42,557.43,560.75,4200000,560.75
-1958-11-12,561.13,565.53,558.19,562.39,4440000,562.39
-1958-11-11,557.72,563.60,556.93,561.13,4040000,561.13
-1958-11-10,554.26,560.10,552.64,557.72,3730000,557.72
-1958-11-07,554.85,558.22,550.85,554.26,3700000,554.26
-1958-11-06,550.76,559.43,550.76,554.85,4890000,554.85
-1958-11-05,545.16,552.35,543.34,550.68,4080000,550.68
-1958-11-03,543.22,547.15,540.28,545.16,3240000,545.16
-1958-10-31,543.31,546.27,539.31,543.22,3920000,543.22
-1958-10-30,542.72,546.83,540.69,543.31,4360000,543.31
-1958-10-29,536.88,544.92,536.85,542.72,4790000,542.72
-1958-10-28,535.00,538.26,530.94,536.88,3670000,536.88
-1958-10-27,539.52,541.22,533.09,535.00,3980000,535.00
-1958-10-24,540.72,543.16,536.43,539.52,3770000,539.52
-1958-10-23,542.31,544.07,537.76,540.72,3610000,540.72
-1958-10-22,543.72,545.04,538.96,542.31,3500000,542.31
-1958-10-21,544.19,546.54,540.28,543.72,4010000,543.72
-1958-10-20,546.36,548.36,541.57,544.19,4560000,544.19
-1958-10-17,541.07,548.97,541.07,546.36,5360000,546.36
-1958-10-16,536.14,541.37,529.42,540.11,4560000,540.11
-1958-10-15,541.72,545.68,533.65,536.14,4810000,536.14
-1958-10-14,545.95,549.71,540.22,541.72,5110000,541.72
-1958-10-13,543.36,549.30,542.95,545.95,4550000,545.95
-1958-10-10,539.61,545.74,538.17,543.36,4610000,543.36
-1958-10-09,539.31,541.46,535.85,539.61,3670000,539.61
-1958-10-08,539.40,542.28,535.97,539.31,3680000,539.31
-1958-10-07,536.29,540.96,534.12,539.40,3570000,539.40
-1958-10-06,533.73,539.37,533.21,536.29,3570000,536.29
-1958-10-03,532.09,536.82,531.53,533.73,3830000,533.73
-1958-10-02,530.94,535.14,528.83,532.09,3750000,532.09
-1958-10-01,532.09,533.91,527.68,530.94,3780000,530.94
-1958-09-30,529.04,535.00,528.68,532.09,4160000,532.09
-1958-09-29,526.83,531.74,525.54,529.04,3680000,529.04
-1958-09-26,525.83,529.59,523.31,526.83,3420000,526.83
-1958-09-25,528.15,530.68,523.34,525.83,4490000,525.83
-1958-09-24,525.89,530.18,523.57,528.15,3120000,528.15
-1958-09-23,524.01,528.62,520.87,525.89,3950000,525.89
-1958-09-22,526.48,528.39,522.19,524.01,3490000,524.01
-1958-09-19,522.34,527.74,521.05,526.48,3880000,526.48
-1958-09-18,525.89,526.77,520.52,522.34,3460000,522.34
-1958-09-17,526.57,529.45,522.43,525.89,3790000,525.89
-1958-09-16,523.40,529.09,522.72,526.57,3940000,526.57
-1958-09-15,519.43,524.57,517.47,523.40,3040000,523.40
-1958-09-12,520.43,523.57,517.06,519.43,3100000,519.43
-1958-09-11,516.20,521.72,515.32,520.43,3300000,520.43
-1958-09-10,518.64,520.43,514.59,516.20,2820000,516.20
-1958-09-09,515.23,521.31,515.23,518.64,3480000,518.64
-1958-09-08,512.77,517.47,511.77,515.23,3030000,515.23
-1958-09-05,513.44,515.35,510.45,512.77,2520000,512.77
-1958-09-04,513.71,516.59,511.07,513.44,3100000,513.44
-1958-09-03,511.77,516.03,510.15,513.71,3240000,513.71
-1958-09-02,508.63,513.09,508.39,511.77,2930000,511.77
-1958-08-29,507.72,510.18,505.60,508.63,2260000,508.63
-1958-08-28,510.24,510.24,505.49,507.72,2540000,507.72
-1958-08-27,509.63,513.33,508.19,510.39,3250000,510.39
-1958-08-26,508.28,510.95,506.72,509.63,2910000,509.63
-1958-08-25,508.28,510.62,505.37,508.28,2610000,508.28
-1958-08-22,507.10,509.66,505.54,508.28,2660000,508.28
-1958-08-21,503.96,508.89,503.05,507.10,2500000,507.10
-1958-08-20,503.64,506.51,501.73,503.96,2460000,503.96
-1958-08-19,502.67,506.13,501.26,503.64,2250000,503.64
-1958-08-18,505.75,505.75,499.82,502.67,2390000,502.67
-1958-08-15,510.30,510.36,504.66,506.13,2960000,506.13
-1958-08-14,509.22,512.00,507.48,510.30,3370000,510.30
-1958-08-13,508.19,511.24,505.31,509.22,2790000,509.22
-1958-08-12,512.42,512.47,506.78,508.19,2600000,508.19
-1958-08-11,510.13,514.44,508.69,512.42,2870000,512.42
-1958-08-08,506.60,513.47,506.60,510.13,3650000,510.13
-1958-08-07,503.11,507.84,501.46,506.10,3200000,506.10
-1958-08-06,506.95,508.51,500.32,503.11,3440000,503.11
-1958-08-05,510.33,511.01,503.49,506.95,4210000,506.95
-1958-08-04,505.43,512.27,505.22,510.33,4000000,510.33
-1958-08-01,502.99,507.39,501.64,505.43,3380000,505.43
-1958-07-31,504.37,508.39,501.49,502.99,4440000,502.99
-1958-07-30,501.38,505.10,497.38,504.37,3680000,504.37
-1958-07-29,502.81,504.52,498.73,501.38,3310000,501.38
-1958-07-28,501.76,504.43,498.67,502.81,3940000,502.81
-1958-07-25,497.12,502.64,496.71,501.76,4430000,501.76
-1958-07-24,494.06,498.50,492.42,497.12,3740000,497.12
-1958-07-23,494.89,497.21,490.86,494.06,3550000,494.06
-1958-07-22,493.36,496.74,490.01,494.89,3420000,494.89
-1958-07-21,487.10,494.36,487.10,493.36,3440000,493.36
-1958-07-18,485.70,489.89,483.43,486.55,3350000,486.55
-1958-07-17,481.00,487.60,478.00,485.70,3180000,485.70
-1958-07-16,478.88,485.87,478.88,481.00,3240000,481.00
-1958-07-15,476.89,479.82,472.07,478.82,3090000,478.82
-1958-07-14,482.55,482.55,475.74,476.89,2540000,476.89
-1958-07-11,478.97,484.23,478.94,482.85,2400000,482.85
-1958-07-10,477.59,480.35,475.01,478.97,2510000,478.97
-1958-07-09,480.00,482.79,476.92,477.59,2630000,477.59
-1958-07-08,481.85,482.99,478.12,480.00,2430000,480.00
-1958-07-07,480.17,483.76,478.88,481.85,2510000,481.85
-1958-07-03,480.15,482.26,478.03,480.17,2630000,480.17
-1958-07-02,478.82,481.61,476.86,480.15,2370000,480.15
-1958-07-01,478.18,480.64,476.83,478.82,2600000,478.82
-1958-06-30,475.42,479.59,474.33,478.18,2820000,478.18
-1958-06-27,474.01,478.09,473.22,475.42,2800000,475.42
-1958-06-26,471.54,475.68,470.07,474.01,2910000,474.01
-1958-06-25,470.43,473.39,468.05,471.54,2720000,471.54
-1958-06-24,471.66,472.42,467.37,470.43,2560000,470.43
-1958-06-23,473.60,474.60,469.46,471.66,2340000,471.66
-1958-06-20,471.57,475.36,470.81,473.60,2590000,473.60
-1958-06-19,476.65,478.03,470.93,471.57,2690000,471.57
-1958-06-18,478.97,479.70,474.21,476.65,2640000,476.65
-1958-06-17,476.56,482.11,475.36,478.97,2950000,478.97
-1958-06-16,474.77,477.97,473.16,476.56,2870000,476.56
-1958-06-13,471.57,476.56,471.57,474.77,3100000,474.77
-1958-06-12,467.93,472.98,467.23,471.42,2760000,471.42
-1958-06-11,468.19,470.04,465.58,467.93,2570000,467.93
-1958-06-10,469.46,470.37,466.32,468.19,2390000,468.19
-1958-06-09,469.60,471.60,467.17,469.46,2380000,469.46
-1958-06-06,468.55,471.75,467.49,469.60,2680000,469.60
-1958-06-05,468.58,469.84,465.38,468.55,2600000,468.55
-1958-06-04,468.14,470.69,466.37,468.58,2690000,468.58
-1958-06-03,466.11,469.66,465.35,468.14,2780000,468.14
-1958-06-02,462.70,468.61,462.70,466.11,2770000,466.11
-1958-05-29,460.44,463.85,459.91,462.70,2350000,462.70
-1958-05-28,460.68,462.85,458.97,460.44,2260000,460.44
-1958-05-27,461.06,462.53,457.92,460.68,2180000,460.68
-1958-05-26,461.03,463.47,459.39,461.06,2500000,461.06
-1958-05-23,460.24,463.32,459.21,461.03,2570000,461.03
-1958-05-22,458.50,463.20,457.10,460.24,2950000,460.24
-1958-05-21,459.83,461.62,456.83,458.50,2580000,458.50
-1958-05-20,455.98,460.74,455.30,459.83,2500000,459.83
-1958-05-19,457.10,458.06,454.16,455.98,1910000,455.98
-1958-05-16,457.86,459.47,455.57,457.10,2030000,457.10
-1958-05-15,455.45,459.00,453.84,457.86,2470000,457.86
-1958-05-14,459.86,460.79,454.57,455.45,3060000,455.45
-1958-05-13,460.74,462.03,457.62,459.86,2940000,459.86
-1958-05-12,462.56,463.70,459.41,460.74,2780000,460.74
-1958-05-09,462.50,465.14,460.44,462.56,2760000,462.56
-1958-05-08,462.88,464.35,460.38,462.50,2790000,462.50
-1958-05-07,463.67,465.17,461.12,462.88,2770000,462.88
-1958-05-06,461.12,465.32,460.09,463.67,3110000,463.67
-1958-05-05,459.56,462.38,457.39,461.12,2670000,461.12
-1958-05-02,457.01,460.56,455.66,459.56,2290000,459.56
-1958-05-01,455.86,460.21,454.95,457.01,2630000,457.01
-1958-04-30,451.78,457.39,451.19,455.86,2900000,455.86
-1958-04-29,454.42,454.42,449.78,451.78,2190000,451.78
-1958-04-28,454.92,458.33,452.66,454.51,2400000,454.51
-1958-04-25,453.42,457.10,451.13,454.92,3020000,454.92
-1958-04-24,450.11,455.51,449.34,453.42,2870000,453.42
-1958-04-23,449.55,451.87,445.88,450.11,2720000,450.11
-1958-04-22,450.72,452.34,448.37,449.55,2440000,449.55
-1958-04-21,449.31,452.49,448.34,450.72,2550000,450.72
-1958-04-18,445.09,450.75,445.03,449.31,2700000,449.31
-1958-04-17,444.35,446.14,442.35,445.09,2500000,445.09
-1958-04-16,447.58,447.85,442.53,444.35,2240000,444.35
-1958-04-15,443.76,448.96,442.62,447.58,2590000,447.58
-1958-04-14,441.24,444.88,440.06,443.76,2180000,443.76
-1958-04-11,441.06,442.65,438.83,441.24,2060000,441.24
-1958-04-10,441.88,442.94,438.77,441.06,2000000,441.06
-1958-04-09,442.59,445.20,440.97,441.88,2040000,441.88
-1958-04-08,440.09,444.79,439.59,442.59,2190000,442.59
-1958-04-07,440.50,441.97,437.25,440.09,2090000,440.09
-1958-04-03,441.21,442.97,437.98,440.50,2130000,440.50
-1958-04-02,445.47,447.29,440.06,441.21,2390000,441.21
-1958-04-01,446.76,447.82,443.29,445.47,2070000,445.47
-1958-03-31,448.61,450.05,445.56,446.76,2050000,446.76
-1958-03-28,448.64,450.17,446.64,448.61,1930000,448.61
-1958-03-27,449.70,451.81,447.02,448.64,2140000,448.64
-1958-03-26,450.96,451.46,447.61,449.70,1990000,449.70
-1958-03-25,453.75,454.31,449.52,450.96,2210000,450.96
-1958-03-24,452.49,455.36,450.25,453.75,2580000,453.75
-1958-03-21,449.46,453.57,447.79,452.49,2430000,452.49
-1958-03-20,449.96,452.57,447.76,449.46,2280000,449.46
-1958-03-19,447.38,452.37,446.91,449.96,2410000,449.96
-1958-03-18,448.23,448.84,443.41,447.38,2070000,447.38
-1958-03-17,453.04,453.25,447.08,448.23,2130000,448.23
-1958-03-14,454.10,454.75,450.52,453.04,2150000,453.04
-1958-03-13,454.60,456.80,451.87,454.10,2830000,454.10
-1958-03-12,455.92,456.83,452.72,454.60,2420000,454.60
-1958-03-11,451.90,457.27,450.58,455.92,2640000,455.92
-1958-03-10,451.49,453.45,448.96,451.90,1980000,451.90
-1958-03-07,450.96,452.81,448.58,451.49,2130000,451.49
-1958-03-06,446.58,452.43,446.05,450.96,2470000,450.96
-1958-03-05,445.06,448.14,442.56,446.58,2020000,446.58
-1958-03-04,443.38,447.11,443.03,445.06,2010000,445.06
-1958-03-03,439.92,444.56,439.24,443.38,1810000,443.38
-1958-02-28,437.80,441.15,436.66,439.92,1580000,439.92
-1958-02-27,440.42,441.18,436.13,437.80,1670000,437.80
-1958-02-26,437.42,442.24,437.42,440.42,1880000,440.42
-1958-02-25,437.19,438.13,434.04,436.89,1920000,436.89
-1958-02-24,439.62,440.80,436.16,437.19,1570000,437.19
-1958-02-21,439.74,441.42,437.33,439.62,1700000,439.62
-1958-02-20,443.06,445.53,438.89,439.74,2060000,439.74
-1958-02-19,442.71,446.47,441.44,443.06,2070000,443.06
-1958-02-18,442.27,444.32,439.89,442.71,1680000,442.71
-1958-02-17,444.44,445.47,441.03,442.27,1700000,442.27
-1958-02-14,440.24,445.76,439.54,444.44,2070000,444.44
-1958-02-13,441.21,445.29,439.27,440.24,1880000,440.24
-1958-02-12,442.35,443.29,438.13,441.21,2030000,441.21
-1958-02-11,445.94,447.61,440.97,442.35,2110000,442.35
-1958-02-10,448.52,448.52,443.68,445.94,1900000,445.94
-1958-02-07,453.07,453.07,446.73,448.76,2220000,448.76
-1958-02-06,454.89,455.30,450.14,453.13,2210000,453.13
-1958-02-05,458.39,458.39,453.34,454.89,2480000,454.89
-1958-02-04,453.98,459.77,451.63,458.65,2970000,458.65
-1958-02-03,450.02,455.10,449.52,453.98,2490000,453.98
-1958-01-31,449.72,451.46,446.70,450.02,2030000,450.02
-1958-01-30,451.16,453.63,448.46,449.72,2150000,449.72
-1958-01-29,448.67,452.51,447.02,451.16,2220000,451.16
-1958-01-28,448.46,450.22,445.41,448.67,2030000,448.67
-1958-01-27,450.66,451.40,446.61,448.46,2320000,448.46
-1958-01-24,447.93,452.28,446.32,450.66,2830000,450.66
-1958-01-23,445.70,449.02,444.18,447.93,1910000,447.93
-1958-01-22,446.64,449.58,444.67,445.70,2390000,445.70
-1958-01-21,447.29,449.17,445.11,446.64,2160000,446.64
-1958-01-20,444.12,449.43,444.00,447.29,2310000,447.29
-1958-01-17,445.23,445.67,440.62,444.12,2200000,444.12
-1958-01-16,445.20,453.25,444.18,445.23,3950000,445.23
-1958-01-15,441.80,446.26,440.36,445.20,2080000,445.20
-1958-01-14,439.71,444.88,439.36,441.80,2010000,441.80
-1958-01-13,438.68,441.27,434.37,439.71,1860000,439.71
-1958-01-10,443.09,443.09,436.83,438.68,2010000,438.68
-1958-01-09,446.61,448.40,442.27,443.24,2180000,443.24
-1958-01-08,447.79,449.61,443.97,446.61,2230000,446.61
-1958-01-07,442.56,448.23,440.18,447.79,2220000,447.79
-1958-01-06,444.56,447.87,441.62,442.56,2500000,442.56
-1958-01-03,439.27,446.08,438.60,444.56,2440000,444.56
-1958-01-02,435.69,441.39,435.45,439.27,1800000,439.27
-1957-12-31,432.43,438.54,432.43,435.69,5070000,435.69
-1957-12-30,432.90,434.04,428.35,431.78,3750000,431.78
-1957-12-27,434.16,437.39,431.52,432.90,2620000,432.90
-1957-12-26,429.58,436.13,429.58,434.16,2280000,434.16
-1957-12-24,428.08,432.22,426.67,429.11,2220000,429.11
-1957-12-23,427.20,430.40,423.86,428.08,2790000,428.08
-1957-12-20,431.26,434.13,425.94,427.20,2500000,427.20
-1957-12-19,426.18,432.90,424.62,431.26,2740000,431.26
-1957-12-18,425.65,431.93,424.15,426.18,2750000,426.18
-1957-12-17,433.22,433.22,424.85,425.65,2820000,425.65
-1957-12-16,440.30,440.30,432.05,433.40,2350000,433.40
-1957-12-13,438.48,443.00,437.27,440.48,2310000,440.48
-1957-12-12,439.36,441.94,436.31,438.48,2330000,438.48
-1957-12-11,439.24,441.53,435.87,439.36,2240000,439.36
-1957-12-10,443.03,443.03,436.34,439.24,2360000,439.24
-1957-12-09,447.20,447.49,441.21,443.76,2230000,443.76
-1957-12-06,449.55,450.69,445.29,447.20,2350000,447.20
-1957-12-05,448.87,451.81,446.52,449.55,2020000,449.55
-1957-12-04,446.55,451.55,446.03,448.87,2220000,448.87
-1957-12-03,446.91,448.99,444.00,446.55,2060000,446.55
-1957-12-02,449.87,452.16,444.18,446.91,2430000,446.91
-1957-11-29,446.03,452.49,445.76,449.87,2740000,449.87
-1957-11-27,439.51,448.02,439.51,446.03,3330000,446.03
-1957-11-26,444.38,448.49,434.43,435.34,3650000,435.34
-1957-11-25,442.68,446.11,439.01,444.38,2600000,444.38
-1957-11-22,439.80,445.64,437.74,442.68,2850000,442.68
-1957-11-21,434.51,443.21,434.51,439.80,2900000,439.80
-1957-11-20,431.73,435.22,427.32,433.37,2400000,433.37
-1957-11-19,434.96,435.84,427.23,431.73,2240000,431.73
-1957-11-18,439.35,439.48,432.49,434.96,2110000,434.96
-1957-11-15,434.50,442.82,434.50,439.35,3510000,439.35
-1957-11-14,430.07,434.94,426.89,427.94,2450000,427.94
-1957-11-13,429.75,432.61,426.51,430.07,2120000,430.07
-1957-11-12,434.94,435.96,428.70,429.75,2050000,429.75
-1957-11-11,434.12,437.16,432.37,434.94,1540000,434.94
-1957-11-08,438.65,438.65,432.11,434.12,2140000,434.12
-1957-11-07,435.82,440.49,432.14,438.91,2580000,438.91
-1957-11-06,434.04,440.60,434.01,435.82,2550000,435.82
-1957-11-04,434.71,435.20,425.46,434.04,2380000,434.04
-1957-11-01,438.76,438.76,431.50,434.71,2060000,434.71
-1957-10-31,440.28,446.06,439.03,441.04,2170000,441.04
-1957-10-30,435.76,441.74,435.38,440.28,2060000,440.28
-1957-10-29,432.14,439.61,431.59,435.76,1860000,435.76
-1957-10-28,435.00,435.00,429.37,432.14,1800000,432.14
-1957-10-25,436.40,436.95,428.90,435.15,2400000,435.15
-1957-10-24,437.13,443.38,434.15,436.40,4030000,436.40
-1957-10-23,425.46,438.59,425.46,437.13,4600000,437.13
-1957-10-22,423.06,426.48,416.15,419.79,5090000,419.79
-1957-10-21,433.83,434.36,421.20,423.06,4670000,423.06
-1957-10-18,436.87,439.70,432.69,433.83,2670000,433.83
-1957-10-17,442.24,442.24,433.86,436.87,3060000,436.87
-1957-10-16,447.90,450.09,442.97,443.93,2050000,443.93
-1957-10-15,443.78,450.93,443.61,447.90,2620000,447.90
-1957-10-14,441.16,446.06,437.74,443.78,2770000,443.78
-1957-10-11,441.71,443.58,434.15,441.16,4460000,441.16
-1957-10-10,451.31,451.31,439.44,441.71,3300000,441.71
-1957-10-09,450.56,456.51,450.12,451.40,2120000,451.40
-1957-10-08,452.42,454.87,446.82,450.56,3190000,450.56
-1957-10-07,461.70,462.14,451.81,452.42,2490000,452.42
-1957-10-04,465.82,466.02,460.71,461.70,1520000,461.70
-1957-10-03,465.03,466.84,461.67,465.82,1590000,465.82
-1957-10-02,461.79,468.15,461.79,465.03,1760000,465.03
-1957-10-01,456.30,461.91,455.55,460.80,1680000,460.80
-1957-09-30,456.89,459.28,454.70,456.30,1520000,456.30
-1957-09-27,457.01,462.40,454.20,456.89,1750000,456.89
-1957-09-26,456.95,460.60,452.98,457.01,2130000,457.01
-1957-09-25,462.87,463.57,452.19,456.95,2770000,456.95
-1957-09-24,458.96,466.02,457.30,462.87,2840000,462.87
-1957-09-23,465.97,465.97,457.15,458.96,3160000,458.96
-1957-09-20,474.55,474.55,466.75,468.42,2340000,468.42
-1957-09-19,478.60,479.59,475.01,476.12,1520000,476.12
-1957-09-18,478.28,481.08,476.88,478.60,1540000,478.60
-1957-09-17,478.08,480.44,474.17,478.28,1490000,478.28
-1957-09-16,481.02,481.05,476.30,478.08,1290000,478.08
-1957-09-13,480.56,483.68,478.72,481.02,1620000,481.02
-1957-09-12,474.40,482.31,473.99,480.56,2010000,480.56
-1957-09-11,470.23,475.30,467.10,474.40,2130000,474.40
-1957-09-10,474.28,476.53,468.77,470.23,1870000,470.23
-1957-09-09,478.49,478.49,472.77,474.28,1420000,474.28
-1957-09-06,479.51,481.87,477.06,478.63,1320000,478.63
-1957-09-05,481.64,481.64,476.76,479.51,1420000,479.51
-1957-09-04,486.13,486.19,481.35,482.60,1260000,482.60
-1957-09-03,484.35,487.59,481.32,486.13,1490000,486.13
-1957-08-30,476.71,484.82,476.71,484.35,1600000,484.35
-1957-08-29,477.79,478.19,471.98,476.06,1630000,476.06
-1957-08-28,477.55,482.75,476.38,477.79,1840000,477.79
-1957-08-27,470.84,479.36,470.84,477.55,2250000,477.55
-1957-08-26,475.74,476.44,469.03,470.14,2680000,470.14
-1957-08-23,481.46,481.73,474.81,475.74,1960000,475.74
-1957-08-22,485.14,485.29,479.77,481.46,1500000,481.46
-1957-08-21,483.86,488.23,482.10,485.14,1720000,485.14
-1957-08-20,478.95,485.49,474.52,483.86,2700000,483.86
-1957-08-19,487.68,487.68,478.16,478.95,2040000,478.95
-1957-08-16,487.30,490.42,485.37,488.20,1470000,488.20
-1957-08-15,485.93,490.28,482.10,487.30,2040000,487.30
-1957-08-14,492.14,493.55,484.32,485.93,2040000,485.93
-1957-08-13,492.32,495.68,489.96,492.14,1580000,492.14
-1957-08-12,496.23,496.23,489.90,492.32,1650000,492.32
-1957-08-09,496.87,498.59,493.46,496.78,1570000,496.78
-1957-08-08,498.48,500.90,495.03,496.87,1690000,496.87
-1957-08-07,494.13,499.59,490.25,498.48,2460000,498.48
-1957-08-06,500.72,500.72,493.55,494.13,1910000,494.13
-1957-08-05,505.10,505.57,498.62,500.78,1790000,500.78
-1957-08-02,506.21,508.66,501.98,505.10,1610000,505.10
-1957-08-01,508.52,509.98,504.69,506.21,1660000,506.21
-1957-07-31,508.93,512.69,507.26,508.52,1830000,508.52
-1957-07-30,508.25,510.44,504.90,508.93,1780000,508.93
-1957-07-29,514.59,515.64,507.00,508.25,1990000,508.25
-1957-07-26,516.69,517.97,512.89,514.59,1710000,514.59
-1957-07-25,515.78,518.26,514.15,516.69,1800000,516.69
-1957-07-24,515.61,518.24,512.46,515.78,1730000,515.78
-1957-07-23,515.32,517.65,513.33,515.61,1840000,515.61
-1957-07-22,515.73,518.24,513.62,515.32,1950000,515.32
-1957-07-19,515.64,517.94,512.08,515.73,1930000,515.73
-1957-07-18,515.11,519.34,513.33,515.64,2130000,515.64
-1957-07-17,517.42,518.64,513.13,515.11,2060000,515.11
-1957-07-16,520.16,523.11,516.28,517.42,2510000,517.42
-1957-07-15,520.77,522.91,516.60,520.16,2480000,520.16
-1957-07-12,517.97,521.94,514.88,520.77,2240000,520.77
-1957-07-11,519.81,522.20,515.00,517.97,2830000,517.97
-1957-07-10,516.37,521.68,515.11,519.81,2880000,519.81
-1957-07-09,518.41,520.22,513.51,516.37,2450000,516.37
-1957-07-08,516.89,521.71,515.32,518.41,2840000,518.41
-1957-07-05,513.42,518.70,513.42,516.89,2240000,516.89
-1957-07-03,507.99,515.23,507.99,513.25,2720000,513.25
-1957-07-02,503.29,509.36,502.86,507.55,2450000,507.55
-1957-07-01,503.29,506.18,500.75,503.29,1840000,503.29
-1957-06-28,503.03,506.53,500.81,503.29,1770000,503.29
-1957-06-27,500.78,504.29,498.36,503.03,1800000,503.03
-1957-06-26,501.98,504.75,498.24,500.78,1870000,500.78
-1957-06-25,497.69,504.69,497.69,501.98,2000000,501.98
-1957-06-24,500.00,500.99,492.87,497.08,2040000,497.08
-1957-06-21,503.56,504.52,497.81,500.00,1970000,500.00
-1957-06-20,505.92,507.87,501.31,503.56,2050000,503.56
-1957-06-19,511.32,512.69,505.28,505.92,2220000,505.92
-1957-06-18,513.19,515.20,506.68,511.32,2440000,511.32
-1957-06-17,511.79,516.81,510.38,513.19,2220000,513.19
-1957-06-14,511.58,514.38,508.93,511.79,2090000,511.79
-1957-06-13,509.66,514.27,508.23,511.58,2630000,511.58
-1957-06-12,509.48,513.36,507.76,509.66,2600000,509.66
-1957-06-11,504.93,511.70,504.93,509.48,2850000,509.48
-1957-06-10,505.63,507.87,497.78,503.76,2050000,503.76
-1957-06-07,504.55,508.14,502.88,505.63,2380000,505.63
-1957-06-06,502.07,506.39,501.13,504.55,2300000,504.55
-1957-06-05,502.97,504.37,499.38,502.07,1940000,502.07
-1957-06-04,503.76,506.68,499.53,502.97,2200000,502.97
-1957-06-03,504.93,507.96,500.46,503.76,2050000,503.76
-1957-05-31,502.18,507.76,501.57,504.93,2050000,504.93
-1957-05-29,498.10,503.56,498.10,502.18,2270000,502.18
-1957-05-28,499.21,499.62,494.42,497.72,2070000,497.72
-1957-05-27,504.02,505.07,497.89,499.21,2290000,499.21
-1957-05-24,504.02,506.94,502.15,504.02,2340000,504.02
-1957-05-23,504.43,506.04,500.90,504.02,2110000,504.02
-1957-05-22,506.04,506.82,502.36,504.43,2060000,504.43
-1957-05-21,505.98,507.90,503.32,506.04,2370000,506.04
-1957-05-20,505.60,508.75,503.82,505.98,2300000,505.98
-1957-05-17,504.84,508.87,503.58,505.60,2510000,505.60
-1957-05-16,501.98,507.06,501.16,504.84,2690000,504.84
-1957-05-15,500.46,504.87,498.27,501.98,2590000,501.98
-1957-05-14,502.21,504.43,498.16,500.46,2580000,500.46
-1957-05-13,498.51,503.93,498.51,502.21,2720000,502.21
-1957-05-10,496.76,500.46,495.15,498.30,2430000,498.30
-1957-05-09,496.73,499.21,494.80,496.76,2520000,496.76
-1957-05-08,494.68,498.13,493.34,496.73,2590000,496.73
-1957-05-07,496.32,497.78,492.29,494.68,2300000,494.68
-1957-05-06,497.54,500.29,494.86,496.32,2210000,496.32
-1957-05-03,498.56,501.34,495.00,497.54,2390000,497.54
-1957-05-02,495.76,501.13,494.98,498.56,2860000,498.56
-1957-05-01,494.36,498.04,493.05,495.76,2310000,495.76
-1957-04-30,493.95,496.49,491.62,494.36,2200000,494.36
-1957-04-29,491.50,496.67,490.77,493.95,2290000,493.95
-1957-04-26,492.29,493.92,488.41,491.50,2380000,491.50
-1957-04-25,493.66,496.03,490.19,492.29,2640000,492.29
-1957-04-24,491.88,497.22,489.87,493.66,2990000,493.66
-1957-04-23,488.79,494.10,487.12,491.88,2840000,491.88
-1957-04-22,488.03,491.59,485.90,488.79,2560000,488.79
-1957-04-18,485.02,489.43,483.51,488.03,2480000,488.03
-1957-04-17,484.32,487.47,482.22,485.02,2290000,485.02
-1957-04-16,485.84,487.15,482.69,484.32,1890000,484.32
-1957-04-15,486.72,488.53,483.62,485.84,2010000,485.84
-1957-04-12,484.70,488.76,482.78,486.72,2370000,486.72
-1957-04-11,485.17,486.86,481.75,484.70,2350000,484.70
-1957-04-10,482.66,486.98,482.02,485.17,2920000,485.17
-1957-04-09,479.04,484.32,478.40,482.66,2400000,482.66
-1957-04-08,477.61,480.44,475.86,479.04,1950000,479.04
-1957-04-05,477.43,479.45,475.68,477.61,1830000,477.61
-1957-04-04,478.31,479.62,475.45,477.43,1820000,477.43
-1957-04-03,477.55,481.08,476.73,478.31,2160000,478.31
-1957-04-02,474.98,478.40,473.70,477.55,2300000,477.55
-1957-04-01,474.81,476.82,473.09,474.98,1620000,474.98
-1957-03-29,475.01,477.32,473.14,474.81,1650000,474.81
-1957-03-28,473.12,476.88,472.27,475.01,1930000,475.01
-1957-03-27,472.24,475.10,471.01,473.12,1710000,473.12
-1957-03-26,471.51,474.02,468.91,472.24,1660000,472.24
-1957-03-25,472.94,474.05,469.70,471.51,1590000,471.51
-1957-03-22,474.02,475.57,471.04,472.94,1610000,472.94
-1957-03-21,473.93,475.98,471.36,474.02,1630000,474.02
-1957-03-20,473.93,476.38,472.85,473.93,1830000,473.93
-1957-03-19,472.30,475.22,471.01,473.93,1540000,473.93
-1957-03-18,474.28,474.66,470.17,472.30,1450000,472.30
-1957-03-15,473.93,476.12,471.19,474.28,1600000,474.28
-1957-03-14,472.53,475.45,471.39,473.93,1580000,473.93
-1957-03-13,470.31,474.37,469.88,472.53,1840000,472.53
-1957-03-12,469.50,471.45,466.69,470.31,1600000,470.31
-1957-03-11,471.63,472.06,467.37,469.50,1650000,469.50
-1957-03-08,474.17,474.40,470.40,471.63,1630000,471.63
-1957-03-07,474.87,477.58,472.62,474.17,1830000,474.17
-1957-03-06,472.88,475.77,470.43,474.87,1840000,474.87
-1957-03-05,471.48,475.13,471.04,472.88,1860000,472.88
-1957-03-04,468.91,472.97,468.15,471.48,1890000,471.48
-1957-03-01,464.62,469.76,463.66,468.91,1700000,468.91
-1957-02-28,466.26,468.50,463.51,464.62,1620000,464.62
-1957-02-27,467.72,469.00,463.95,466.26,1620000,466.26
-1957-02-26,466.90,470.34,465.76,467.72,1580000,467.72
-1957-02-25,466.93,469.00,463.40,466.90,1710000,466.90
-1957-02-21,469.00,470.08,465.15,466.93,1680000,466.93
-1957-02-20,466.84,471.10,465.99,469.00,1790000,469.00
-1957-02-19,467.40,469.23,463.63,466.84,1670000,466.84
-1957-02-18,468.07,471.22,465.21,467.40,1800000,467.40
-1957-02-15,461.56,468.83,459.37,468.07,2060000,468.07
-1957-02-14,462.14,467.04,459.69,461.56,2220000,461.56
-1957-02-13,454.87,462.70,454.87,462.14,2380000,462.14
-1957-02-12,457.44,459.87,453.07,454.82,2550000,454.82
-1957-02-11,465.50,465.50,456.01,457.44,2740000,457.44
-1957-02-08,468.71,468.88,463.19,466.29,2120000,466.29
-1957-02-07,470.81,473.93,467.42,468.71,1840000,468.71
-1957-02-06,469.96,472.02,466.40,470.81,2110000,470.81
-1957-02-05,476.18,476.18,466.65,469.96,2610000,469.96
-1957-02-04,477.22,479.54,475.49,477.19,1750000,477.19
-1957-02-01,479.16,479.76,474.43,477.22,1680000,477.22
-1957-01-31,480.53,483.02,478.04,479.16,1920000,479.16
-1957-01-30,476.92,481.95,476.42,480.53,1950000,480.53
-1957-01-29,474.59,478.31,473.19,476.92,1800000,476.92
-1957-01-28,478.34,478.48,473.14,474.59,1700000,474.59
-1957-01-25,481.30,481.76,475.19,478.34,2010000,478.34
-1957-01-24,479.93,483.57,478.34,481.30,1910000,481.30
-1957-01-23,477.49,481.24,475.25,479.93,1920000,479.93
-1957-01-22,475.90,480.45,475.71,477.49,1920000,477.49
-1957-01-21,477.46,478.29,471.06,475.90,2740000,475.90
-1957-01-18,484.01,486.42,476.23,477.46,2400000,477.46
-1957-01-17,485.05,486.91,481.08,484.01,2140000,484.01
-1957-01-16,484.75,488.28,483.19,485.05,2210000,485.05
-1957-01-15,489.29,490.41,482.94,484.75,2370000,484.75
-1957-01-14,493.81,494.49,487.65,489.29,2350000,489.29
-1957-01-11,495.51,497.78,492.11,493.81,2340000,493.81
-1957-01-10,493.21,498.00,492.74,495.51,2470000,495.51
-1957-01-09,493.86,496.90,490.77,493.21,2330000,493.21
-1957-01-08,495.20,497.20,491.29,493.86,2230000,493.86
-1957-01-07,498.22,500.90,491.78,495.20,2500000,495.20
-1957-01-04,499.20,502.57,496.24,498.22,2710000,498.22
-1957-01-03,496.03,501.56,494.16,499.20,2260000,499.20
-1957-01-02,499.47,501.01,492.06,496.03,1960000,496.03
-1956-12-31,496.41,501.56,494.96,499.47,3680000,499.47
-1956-12-28,496.38,498.68,493.89,496.41,2790000,496.41
-1956-12-27,496.74,499.39,494.79,496.38,2420000,496.38
-1956-12-26,494.38,500.32,494.00,496.74,2440000,496.74
-1956-12-21,490.44,496.22,489.10,494.38,2380000,494.38
-1956-12-20,493.81,494.57,489.29,490.44,2060000,490.44
-1956-12-19,495.09,497.15,492.19,493.81,1900000,493.81
-1956-12-18,493.75,497.70,491.97,495.09,2370000,495.09
-1956-12-17,492.08,497.26,490.82,493.75,2500000,493.75
-1956-12-14,490.47,493.75,488.69,492.08,2450000,492.08
-1956-12-13,487.51,492.77,486.03,490.47,2370000,490.47
-1956-12-12,490.36,491.75,486.06,487.51,2180000,487.51
-1956-12-11,493.18,494.44,487.68,490.36,2210000,490.36
-1956-12-10,494.79,498.95,492.14,493.18,2600000,493.18
-1956-12-07,492.74,497.09,491.21,494.79,2400000,494.79
-1956-12-06,488.55,495.18,487.32,492.74,2470000,492.74
-1956-12-05,481.38,490.71,480.61,488.55,2360000,488.55
-1956-12-04,480.61,483.82,479.08,481.38,2180000,481.38
-1956-12-03,474.26,482.80,474.26,480.61,2570000,480.61
-1956-11-30,467.09,474.59,467.09,472.78,2300000,472.78
-1956-11-29,466.10,468.10,460.41,466.62,2440000,466.62
-1956-11-28,470.18,472.81,465.20,466.10,2190000,466.10
-1956-11-27,470.29,472.18,467.25,470.18,2130000,470.18
-1956-11-26,472.56,476.89,468.73,470.29,2230000,470.29
-1956-11-23,467.91,473.69,466.73,472.56,1880000,472.56
-1956-11-21,470.07,472.37,466.16,467.91,2310000,467.91
-1956-11-20,474.56,475.66,468.16,470.07,2240000,470.07
-1956-11-19,480.67,481.05,472.54,474.56,2560000,474.56
-1956-11-16,480.20,483.51,478.15,480.67,1820000,480.67
-1956-11-15,482.36,486.28,479.11,480.20,2210000,480.20
-1956-11-14,486.69,487.27,479.96,482.36,2290000,482.36
-1956-11-13,487.05,490.71,484.99,486.69,2140000,486.69
-1956-11-12,485.35,488.91,483.60,487.05,1600000,487.05
-1956-11-09,488.72,490.50,483.57,485.35,1690000,485.35
-1956-11-08,491.15,491.32,483.21,488.72,1970000,488.72
-1956-11-07,495.37,500.52,490.22,491.15,2650000,491.15
-1956-11-05,490.47,497.70,488.72,495.37,2830000,495.37
-1956-11-02,487.62,493.40,486.42,490.47,2180000,490.47
-1956-11-01,480.23,488.72,480.23,487.62,1890000,487.62
-1956-10-31,486.47,486.47,476.83,479.85,2280000,479.85
-1956-10-30,486.94,488.58,483.40,486.47,1830000,486.47
-1956-10-29,486.06,494.11,484.83,486.94,2420000,486.94
-1956-10-26,481.08,487.07,480.91,486.06,1800000,486.06
-1956-10-25,482.67,483.30,478.29,481.08,1580000,481.08
-1956-10-24,485.05,485.90,481.05,482.67,1640000,482.67
-1956-10-23,485.27,487.05,483.19,485.05,1390000,485.05
-1956-10-22,486.12,487.98,483.95,485.27,1430000,485.27
-1956-10-19,486.31,489.46,484.45,486.12,1720000,486.12
-1956-10-18,484.66,487.35,481.57,486.31,1640000,486.31
-1956-10-17,487.57,488.83,482.47,484.66,1640000,484.66
-1956-10-16,489.40,490.58,485.10,487.57,1580000,487.57
-1956-10-15,490.19,493.01,487.76,489.40,1610000,489.40
-1956-10-12,488.06,490.93,486.36,490.19,1330000,490.19
-1956-10-11,487.32,491.18,485.90,488.06,1760000,488.06
-1956-10-10,481.32,487.54,480.37,487.32,1620000,487.32
-1956-10-09,483.38,483.68,479.22,481.32,1220000,481.32
-1956-10-08,482.39,486.47,481.54,483.38,1450000,483.38
-1956-10-05,481.24,483.62,478.86,482.39,1580000,482.39
-1956-10-04,482.04,483.98,478.37,481.24,1600000,481.24
-1956-10-03,476.97,484.06,476.97,482.04,2180000,482.04
-1956-10-02,468.73,477.11,468.73,475.41,2400000,475.41
-1956-10-01,475.25,475.38,463.83,468.70,2600000,468.70
-1956-09-28,479.76,481.13,474.23,475.25,1720000,475.25
-1956-09-27,481.60,485.21,477.85,479.76,1770000,479.76
-1956-09-26,481.08,483.46,474.86,481.60,2370000,481.60
-1956-09-25,487.70,488.31,479.57,481.08,2100000,481.08
-1956-09-24,490.33,492.08,486.53,487.70,1840000,487.70
-1956-09-21,488.00,493.86,488.00,490.33,2110000,490.33
-1956-09-20,488.72,489.40,482.86,487.13,2150000,487.13
-1956-09-19,493.45,494.66,487.68,488.72,2040000,488.72
-1956-09-18,498.76,499.12,490.50,493.45,2200000,493.45
-1956-09-17,500.32,502.40,496.49,498.76,1940000,498.76
-1956-09-14,499.69,503.39,497.94,500.32,2110000,500.32
-1956-09-13,499.97,502.92,497.56,499.69,2000000,499.69
-1956-09-12,502.16,504.43,498.43,499.97,1930000,499.97
-1956-09-11,505.56,505.63,499.26,502.16,1920000,502.16
-1956-09-10,506.76,509.79,503.92,505.56,1860000,505.56
-1956-09-07,509.49,509.55,504.39,506.76,1690000,506.76
-1956-09-06,509.82,512.25,507.74,509.49,1550000,509.49
-1956-09-05,507.66,512.68,507.34,509.82,2130000,509.82
-1956-09-04,502.04,508.32,501.17,507.66,1790000,507.66
-1956-08-31,495.96,503.51,495.96,502.04,1620000,502.04
-1956-08-30,499.91,499.91,492.19,495.96,2050000,495.96
-1956-08-29,503.05,504.25,498.85,500.90,1530000,500.90
-1956-08-28,505.70,507.74,502.26,503.05,1400000,503.05
-1956-08-27,507.91,510.28,504.58,505.70,1420000,505.70
-1956-08-24,507.06,510.77,505.83,507.91,1530000,507.91
-1956-08-23,502.34,508.95,502.23,507.06,1590000,507.06
-1956-08-22,505.43,507.72,501.60,502.34,1570000,502.34
-1956-08-21,509.25,509.25,500.84,505.43,2440000,505.43
-1956-08-20,515.79,516.26,510.12,511.24,1770000,511.24
-1956-08-17,517.19,518.52,514.13,515.79,1720000,515.79
-1956-08-16,517.70,519.42,514.73,517.19,1790000,517.19
-1956-08-15,517.27,521.11,516.01,517.70,2000000,517.70
-1956-08-14,514.40,519.23,512.77,517.27,1790000,517.27
-1956-08-13,517.38,518.25,512.08,514.40,1730000,514.40
-1956-08-10,519.04,519.67,513.15,517.38,2040000,517.38
-1956-08-09,518.74,523.24,517.13,519.04,2550000,519.04
-1956-08-08,515.88,521.41,515.33,518.74,2480000,518.74
-1956-08-07,513.88,518.30,511.67,515.88,2180000,515.88
-1956-08-06,518.85,518.85,509.65,513.88,2280000,513.88
-1956-08-03,520.95,522.72,517.51,520.27,2210000,520.27
-1956-08-02,518.69,523.33,516.83,520.95,2530000,520.95
-1956-08-01,517.81,521.50,515.55,518.69,2230000,518.69
-1956-07-31,513.42,519.97,512.85,517.81,2520000,517.81
-1956-07-30,512.30,515.22,508.59,513.42,2100000,513.42
-1956-07-27,515.85,516.50,507.85,512.30,2240000,512.30
-1956-07-26,514.13,517.62,513.20,515.85,2060000,515.85
-1956-07-25,513.17,516.80,511.67,514.13,2220000,514.13
-1956-07-24,513.61,516.78,511.26,513.17,2040000,513.17
-1956-07-23,514.57,516.01,511.65,513.61,1970000,513.61
-1956-07-20,513.86,516.37,512.36,514.57,2020000,514.57
-1956-07-19,513.39,515.96,511.65,513.86,1950000,513.86
-1956-07-18,514.43,517.59,511.73,513.39,2530000,513.39
-1956-07-17,512.98,516.78,510.91,514.43,2520000,514.43
-1956-07-16,511.10,515.19,510.17,512.98,2260000,512.98
-1956-07-13,507.44,512.36,506.46,511.10,2020000,511.10
-1956-07-12,509.65,511.05,505.26,507.44,2180000,507.44
-1956-07-11,508.34,511.92,507.20,509.65,2520000,509.65
-1956-07-10,506.52,510.72,504.85,508.34,2450000,508.34
-1956-07-09,504.14,509.08,503.24,506.52,2180000,506.52
-1956-07-06,500.54,506.24,500.08,504.14,2180000,504.14
-1956-07-05,495.74,502.51,494.67,500.54,2240000,500.54
-1956-07-03,491.92,496.97,491.02,495.74,1840000,495.74
-1956-07-02,492.78,493.65,488.36,491.92,1610000,491.92
-1956-06-29,492.50,494.82,489.85,492.78,1780000,492.78
-1956-06-28,492.04,494.34,488.91,492.50,1900000,492.50
-1956-06-27,489.37,494.16,488.85,492.04,2090000,492.04
-1956-06-26,486.43,490.77,484.83,489.37,1730000,489.37
-1956-06-25,487.95,489.74,485.34,486.43,1500000,486.43
-1956-06-22,488.26,491.46,486.12,487.95,1630000,487.95
-1956-06-21,485.06,490.45,485.06,488.26,1820000,488.26
-1956-06-20,484.52,487.05,482.70,485.00,1670000,485.00
-1956-06-19,483.91,486.38,481.18,484.52,1430000,484.52
-1956-06-18,485.91,487.30,482.90,483.91,1440000,483.91
-1956-06-15,485.52,487.58,484.15,485.91,1550000,485.91
-1956-06-14,487.08,488.02,483.99,485.52,1670000,485.52
-1956-06-13,485.49,489.69,484.45,487.08,1760000,487.08
-1956-06-12,479.41,486.10,478.70,485.49,1900000,485.49
-1956-06-11,476.15,481.22,476.15,479.41,2000000,479.41
-1956-06-08,480.83,480.83,467.99,475.29,3630000,475.29
-1956-06-07,480.54,485.20,480.14,482.99,1630000,482.99
-1956-06-06,483.19,483.36,477.95,480.54,1460000,480.54
-1956-06-05,483.22,485.82,481.73,483.19,1650000,483.19
-1956-06-04,480.63,484.60,479.48,483.22,1500000,483.22
-1956-06-01,478.05,481.52,475.54,480.63,1440000,480.63
-1956-05-31,477.68,483.53,476.43,478.05,2020000,478.05
-1956-05-29,470.43,478.99,470.43,477.68,2430000,477.68
-1956-05-28,472.49,474.16,463.85,468.81,2780000,468.81
-1956-05-25,473.51,477.79,469.31,472.49,2570000,472.49
-1956-05-24,480.16,481.81,471.71,473.51,2600000,473.51
-1956-05-23,484.13,487.60,479.38,480.16,2140000,480.16
-1956-05-22,490.08,490.08,481.86,484.13,2290000,484.13
-1956-05-21,496.13,496.13,488.93,491.62,1940000,491.62
-1956-05-18,496.63,500.65,494.75,496.39,2020000,496.39
-1956-05-17,492.69,497.93,492.22,496.63,1970000,496.63
-1956-05-16,494.83,497.67,490.97,492.69,2080000,492.69
-1956-05-15,497.28,497.86,490.73,494.83,2650000,494.83
-1956-05-14,501.25,505.79,496.00,497.28,2440000,497.28
-1956-05-11,501.56,503.18,497.57,501.25,2450000,501.25
-1956-05-10,508.16,509.44,499.86,501.56,2850000,501.56
-1956-05-09,509.13,511.74,506.05,508.16,2550000,508.16
-1956-05-08,512.89,513.62,508.03,509.13,2440000,509.13
-1956-05-07,516.44,518.50,511.74,512.89,2550000,512.89
-1956-05-04,514.03,519.80,513.49,516.44,2860000,516.44
-1956-05-03,512.78,516.57,511.43,514.03,2640000,514.03
-1956-05-02,513.96,515.08,510.93,512.78,2440000,512.78
-1956-05-01,516.12,516.88,511.24,513.96,2500000,513.96
-1956-04-30,512.03,518.42,511.19,516.12,2730000,516.12
-1956-04-27,507.95,513.98,507.95,512.03,2760000,512.03
-1956-04-26,503.86,508.92,503.86,507.12,2630000,507.12
-1956-04-25,503.36,505.48,500.99,503.02,2270000,503.02
-1956-04-24,507.28,508.95,501.77,503.36,2500000,503.36
-1956-04-23,507.20,510.77,506.00,507.28,2440000,507.28
-1956-04-20,504.33,508.66,503.91,507.20,2320000,507.20
-1956-04-19,506.55,507.95,502.45,504.33,2210000,504.33
-1956-04-18,507.95,511.03,504.61,506.55,2470000,506.55
-1956-04-17,509.15,511.11,505.81,507.95,2330000,507.95
-1956-04-16,509.99,512.83,506.99,509.15,2310000,509.15
-1956-04-13,509.15,511.61,506.73,509.99,2450000,509.99
-1956-04-12,512.70,515.03,508.27,509.15,2700000,509.15
-1956-04-11,510.04,514.61,508.89,512.70,2440000,512.70
-1956-04-10,516.72,516.72,508.24,510.04,2590000,510.04
-1956-04-09,521.05,524.37,517.40,518.52,2760000,518.52
-1956-04-06,516.57,522.12,516.28,521.05,2600000,521.05
-1956-04-05,518.65,522.86,514.90,516.57,2950000,516.57
-1956-04-04,515.91,519.88,513.54,518.65,2760000,518.65
-1956-04-03,515.10,519.85,513.33,515.91,2760000,515.91
-1956-04-02,511.79,519.10,510.67,515.10,3120000,515.10
-1956-03-29,510.25,515.86,509.36,511.79,3480000,511.79
-1956-03-28,508.68,511.61,506.21,510.25,2610000,510.25
-1956-03-27,512.39,512.39,507.77,508.68,2540000,508.68
-1956-03-26,513.03,515.05,509.81,512.42,2720000,512.42
-1956-03-23,510.94,515.15,510.25,513.03,2980000,513.03
-1956-03-22,507.92,512.21,505.85,510.94,2650000,510.94
-1956-03-21,512.62,513.70,506.33,507.92,2930000,507.92
-1956-03-20,509.76,514.69,507.13,512.62,2960000,512.62
-1956-03-19,507.60,511.57,506.36,509.76,2570000,509.76
-1956-03-16,507.50,509.61,504.67,507.60,3120000,507.60
-1956-03-15,504.01,509.19,504.01,507.50,3270000,507.50
-1956-03-14,499.36,505.60,499.36,503.88,3140000,503.88
-1956-03-13,500.24,502.32,496.45,499.33,2790000,499.33
-1956-03-12,497.84,502.03,496.59,500.24,3110000,500.24
-1956-03-09,492.63,499.09,492.63,497.84,3430000,497.84
-1956-03-08,491.26,493.95,489.82,492.36,2500000,492.36
-1956-03-07,491.41,492.75,489.21,491.26,2380000,491.26
-1956-03-06,491.68,494.42,489.77,491.41,2770000,491.41
-1956-03-05,488.84,493.29,488.57,491.68,3090000,491.68
-1956-03-02,486.69,491.07,485.88,488.84,2860000,488.84
-1956-03-01,483.65,487.98,483.63,486.69,2410000,486.69
-1956-02-29,485.71,491.09,482.77,483.65,3900000,483.65
-1956-02-28,485.00,487.03,482.48,485.71,2540000,485.71
-1956-02-27,485.66,488.06,482.50,485.00,2440000,485.00
-1956-02-24,481.55,487.30,481.55,485.66,2890000,485.66
-1956-02-23,477.03,482.75,477.03,481.50,2900000,481.50
-1956-02-21,476.46,478.20,474.19,476.93,2240000,476.93
-1956-02-20,477.05,480.21,473.28,476.46,2530000,476.46
-1956-02-17,469.61,477.91,469.12,477.05,2840000,477.05
-1956-02-16,470.64,471.79,467.80,469.61,1750000,469.61
-1956-02-15,469.25,476.02,469.25,470.64,3000000,470.64
-1956-02-14,467.17,468.24,463.89,465.72,1590000,465.72
-1956-02-13,467.66,469.56,465.60,467.17,1420000,467.17
-1956-02-10,467.22,470.25,465.14,467.66,1770000,467.66
-1956-02-09,471.23,471.45,465.50,467.22,2080000,467.22
-1956-02-08,476.56,478.52,470.08,471.23,2170000,471.23
-1956-02-07,478.57,479.18,474.16,476.56,2060000,476.56
-1956-02-06,477.44,481.80,475.88,478.57,2230000,478.57
-1956-02-03,473.43,479.10,472.26,477.44,2110000,477.44
-1956-02-02,473.28,475.51,470.54,473.43,1900000,473.43
-1956-02-01,470.74,475.41,470.69,473.28,2010000,473.28
-1956-01-31,467.56,471.99,466.78,470.74,1900000,470.74
-1956-01-30,466.56,470.10,465.23,467.56,1830000,467.56
-1956-01-27,466.82,468.73,463.33,466.56,1950000,466.56
-1956-01-26,470.71,471.62,465.38,466.82,1840000,466.82
-1956-01-25,467.93,472.57,467.93,470.71,1950000,470.71
-1956-01-24,463.91,469.78,463.91,467.88,2160000,467.88
-1956-01-23,464.40,465.85,458.21,462.35,2720000,462.35
-1956-01-20,468.49,472.11,463.16,464.40,2430000,464.40
-1956-01-19,472.89,473.43,466.60,468.49,2500000,468.49
-1956-01-18,477.73,479.69,472.40,472.89,2110000,472.89
-1956-01-17,476.24,480.55,475.12,477.73,2050000,477.73
-1956-01-16,481.50,481.50,475.19,476.24,2260000,476.24
-1956-01-13,481.80,484.41,479.96,481.80,2120000,481.80
-1956-01-12,478.71,483.70,478.71,481.80,2330000,481.80
-1956-01-11,476.12,481.33,475.85,478.42,2310000,478.42
-1956-01-10,479.69,479.69,472.65,476.12,2640000,476.12
-1956-01-09,485.68,487.91,478.62,479.74,2700000,479.74
-1956-01-06,484.02,488.18,483.78,485.68,2570000,485.68
-1956-01-05,484.00,487.25,482.31,484.02,2110000,484.02
-1956-01-04,485.78,487.79,481.01,484.00,2290000,484.00
-1956-01-03,488.40,490.92,484.27,485.78,2390000,485.78
-1955-12-30,484.71,490.33,484.71,488.40,2820000,488.40
-1955-12-29,484.22,487.18,482.77,484.56,2190000,484.56
-1955-12-28,485.81,487.13,483.41,484.22,1990000,484.22
-1955-12-27,486.59,488.91,484.00,485.81,2010000,485.81
-1955-12-23,486.08,489.31,484.83,486.59,2090000,486.59
-1955-12-22,485.49,489.45,484.56,486.08,2650000,486.08
-1955-12-21,481.87,487.37,481.87,485.49,2540000,485.49
-1955-12-20,481.80,483.87,478.59,481.84,2280000,481.84
-1955-12-19,482.08,485.22,480.69,481.80,2380000,481.80
-1955-12-16,480.72,484.17,479.87,482.08,2310000,482.08
-1955-12-15,480.84,483.38,478.32,480.72,2260000,480.72
-1955-12-14,484.29,485.48,479.70,480.84,2670000,480.84
-1955-12-13,483.72,487.04,482.41,484.29,2430000,484.29
-1955-12-12,487.42,487.42,482.41,483.72,2510000,483.72
-1955-12-09,487.80,490.37,486.14,487.64,2660000,487.64
-1955-12-08,486.35,489.68,484.83,487.80,2970000,487.80
-1955-12-07,486.73,489.11,484.81,486.35,2480000,486.35
-1955-12-06,487.16,490.56,485.55,486.73,2540000,486.73
-1955-12-05,483.15,488.71,483.15,487.16,2440000,487.16
-1955-12-02,481.39,483.88,478.87,482.72,2400000,482.72
-1955-12-01,483.26,485.48,480.01,481.39,2370000,481.39
-1955-11-30,482.60,485.95,481.53,483.26,2900000,483.26
-1955-11-29,480.96,484.03,479.13,482.60,2370000,482.60
-1955-11-28,482.88,485.81,479.87,480.96,2460000,480.96
-1955-11-25,482.62,485.40,480.98,482.88,2190000,482.88
-1955-11-23,481.91,485.97,480.72,482.62,2550000,482.62
-1955-11-22,477.30,483.38,477.25,481.91,2270000,481.91
-1955-11-21,482.91,483.48,476.42,477.30,1960000,477.30
-1955-11-18,485.26,485.74,478.89,482.91,2320000,482.91
-1955-11-17,487.38,488.99,484.17,485.26,2310000,485.26
-1955-11-16,487.07,490.75,483.60,487.38,2460000,487.38
-1955-11-15,484.88,490.35,480.84,487.07,2560000,487.07
-1955-11-14,479.20,486.69,479.20,484.88,2760000,484.88
-1955-11-11,472.52,478.01,472.21,476.54,2000000,476.54
-1955-11-10,473.90,478.70,471.48,472.52,2550000,472.52
-1955-11-09,470.58,476.68,469.29,473.90,2580000,473.90
-1955-11-07,467.35,472.45,466.73,470.58,2230000,470.58
-1955-11-04,461.97,468.70,461.03,467.35,2430000,467.35
-1955-11-03,455.99,463.09,455.99,461.97,2260000,461.97
-1955-11-02,454.89,456.18,452.12,454.92,1610000,454.92
-1955-11-01,454.87,456.84,452.86,454.89,1590000,454.89
-1955-10-31,454.85,458.31,453.84,454.87,1800000,454.87
-1955-10-28,453.77,456.59,451.21,454.85,1720000,454.85
-1955-10-27,455.72,458.97,452.31,453.77,1830000,453.77
-1955-10-26,458.40,459.34,454.51,455.72,1660000,455.72
-1955-10-25,460.82,463.02,457.48,458.40,1950000,458.40
-1955-10-24,458.47,462.38,458.35,460.82,1820000,460.82
-1955-10-21,457.66,460.39,455.49,458.47,1710000,458.47
-1955-10-20,454.39,460.66,454.39,457.66,2160000,457.66
-1955-10-19,448.76,454.44,448.76,453.09,1760000,453.09
-1955-10-18,446.13,450.43,444.82,448.58,1550000,448.58
-1955-10-17,444.68,450.75,443.68,446.13,1480000,446.13
-1955-10-14,444.91,446.90,440.59,444.68,1640000,444.68
-1955-10-13,445.58,451.30,443.68,444.91,1980000,444.91
-1955-10-12,442.46,448.16,442.46,445.58,1900000,445.58
-1955-10-11,441.14,444.04,433.19,438.59,3590000,438.59
-1955-10-10,452.97,452.97,440.17,441.14,3100000,441.14
-1955-10-07,458.19,458.74,451.05,454.41,2150000,454.41
-1955-10-06,461.14,461.79,456.61,458.19,1690000,458.19
-1955-10-05,458.85,464.60,458.79,461.14,1920000,461.14
-1955-10-04,455.70,461.79,455.35,458.85,2020000,458.85
-1955-10-03,465.40,465.40,454.85,455.70,2720000,455.70
-1955-09-30,468.68,469.68,464.14,466.62,2140000,466.62
-1955-09-29,472.61,474.08,467.37,468.68,2560000,468.68
-1955-09-28,467.49,475.13,467.49,472.61,3780000,472.61
-1955-09-27,456.22,467.42,456.22,465.93,5500000,465.93
-1955-09-26,463.59,463.59,446.74,455.56,7720000,455.56
-1955-09-23,485.96,489.94,483.44,487.45,2540000,487.45
-1955-09-22,485.98,489.51,484.12,485.96,2550000,485.96
-1955-09-21,483.67,488.02,482.97,485.98,2460000,485.98
-1955-09-20,483.80,485.05,480.84,483.67,2090000,483.67
-1955-09-19,483.67,487.79,482.42,483.80,2390000,483.80
-1955-09-16,481.56,485.32,480.02,483.67,2540000,483.67
-1955-09-15,482.90,485.73,480.04,481.56,2890000,481.56
-1955-09-14,480.93,485.71,479.61,482.90,2570000,482.90
-1955-09-13,476.51,482.76,475.54,480.93,2580000,480.93
-1955-09-12,474.59,478.44,473.02,476.51,2520000,476.51
-1955-09-09,475.06,476.87,472.48,474.59,2480000,474.59
-1955-09-08,475.20,476.97,472.96,475.06,2470000,475.06
-1955-09-07,476.24,478.50,473.00,475.20,2380000,475.20
-1955-09-06,472.84,478.80,472.84,476.24,2360000,476.24
-1955-09-02,469.63,473.52,469.47,472.53,1700000,472.53
-1955-09-01,468.18,471.51,467.36,469.63,1860000,469.63
-1955-08-31,464.80,469.51,464.80,468.18,1850000,468.18
-1955-08-30,464.37,466.41,462.70,464.67,1740000,464.67
-1955-08-29,463.70,466.62,463.08,464.37,1910000,464.37
-1955-08-26,461.27,465.30,460.68,463.70,2200000,463.70
-1955-08-25,459.39,462.93,458.40,461.27,2120000,461.27
-1955-08-24,457.38,462.68,457.38,459.39,2140000,459.39
-1955-08-23,452.55,457.88,451.17,457.35,1890000,457.35
-1955-08-22,453.57,454.41,450.76,452.55,1430000,452.55
-1955-08-19,452.53,454.66,450.67,453.57,1400000,453.57
-1955-08-18,452.85,454.86,451.13,452.53,1560000,452.53
-1955-08-17,453.26,454.66,449.88,452.85,1570000,452.85
-1955-08-16,456.09,457.17,451.92,453.26,1520000,453.26
-1955-08-15,457.01,458.87,453.84,456.09,1230000,456.09
-1955-08-12,455.18,458.99,454.93,457.01,1530000,457.01
-1955-08-11,450.29,456.22,449.75,455.18,1620000,455.18
-1955-08-10,448.84,452.44,447.39,450.29,1580000,450.29
-1955-08-09,453.30,453.30,445.67,448.84,2240000,448.84
-1955-08-08,456.40,459.28,453.05,454.05,1730000,454.05
-1955-08-05,454.18,458.44,453.62,456.40,1690000,456.40
-1955-08-04,458.92,458.92,452.37,454.18,2210000,454.18
-1955-08-03,460.82,463.60,459.17,460.98,2190000,460.98
-1955-08-02,460.25,463.02,457.11,460.82,2260000,460.82
-1955-08-01,465.85,467.48,458.71,460.25,2190000,460.25
-1955-07-29,466.46,468.75,463.45,465.85,2070000,465.85
-1955-07-28,468.45,470.74,463.26,466.46,2090000,466.46
-1955-07-27,468.41,471.35,465.71,468.45,2170000,468.45
-1955-07-26,468.02,471.73,465.14,468.41,2340000,468.41
-1955-07-25,464.69,470.53,464.35,468.02,2500000,468.02
-1955-07-22,461.07,466.28,460.73,464.69,2500000,464.69
-1955-07-21,458.10,462.86,457.65,461.07,2530000,461.07
-1955-07-20,456.72,459.89,454.34,458.10,2080000,458.10
-1955-07-19,460.07,460.86,453.39,456.72,2300000,456.72
-1955-07-18,460.23,463.45,458.08,460.07,2160000,460.07
-1955-07-15,458.49,463.15,457.94,460.23,2230000,460.23
-1955-07-14,457.40,460.71,454.82,458.49,1980000,458.49
-1955-07-13,462.97,464.96,456.06,457.40,2360000,457.40
-1955-07-12,464.24,468.99,460.62,462.97,2630000,462.97
-1955-07-11,461.18,466.10,460.32,464.24,2420000,464.24
-1955-07-08,460.23,465.08,456.68,461.18,2450000,461.18
-1955-07-07,467.41,469.06,458.28,460.23,3300000,460.23
-1955-07-06,460.89,471.15,460.89,467.41,3140000,467.41
-1955-07-05,454.80,462.22,454.80,459.42,2680000,459.42
-1955-07-01,451.38,456.11,449.50,453.82,2540000,453.82
-1955-06-30,449.70,453.48,448.70,451.38,2370000,451.38
-1955-06-29,449.02,451.13,444.74,449.70,2180000,449.70
-1955-06-28,449.86,452.28,446.12,449.02,2180000,449.02
-1955-06-27,448.93,451.53,446.64,449.86,2250000,449.86
-1955-06-24,448.82,450.99,445.15,448.93,2410000,448.93
-1955-06-23,447.37,451.49,445.67,448.82,2900000,448.82
-1955-06-22,446.80,450.45,445.24,447.37,3010000,447.37
-1955-06-21,444.38,448.52,443.27,446.80,2720000,446.80
-1955-06-20,444.08,446.53,443.13,444.38,2490000,444.38
-1955-06-17,442.48,445.04,440.96,444.08,2340000,444.08
-1955-06-16,441.93,445.42,440.51,442.48,2760000,442.48
-1955-06-15,438.45,443.47,438.45,441.93,2650000,441.93
-1955-06-14,440.17,443.45,437.45,438.20,2860000,438.20
-1955-06-13,437.72,442.23,437.65,440.17,2770000,440.17
-1955-06-10,435.07,438.94,433.60,437.72,2470000,437.72
-1955-06-09,436.95,439.80,434.32,435.07,2960000,435.07
-1955-06-08,434.55,439.26,433.26,436.95,3300000,436.95
-1955-06-07,431.49,437.99,430.93,434.55,3230000,434.55
-1955-06-06,428.53,433.19,427.37,431.49,2560000,431.49
-1955-06-03,425.88,430.25,425.88,428.53,2590000,428.53
-1955-06-02,424.88,428.13,422.86,425.80,2610000,425.80
-1955-06-01,424.86,426.75,422.48,424.88,2510000,424.88
-1955-05-31,425.66,427.06,422.84,424.86,1990000,424.86
-1955-05-27,424.95,427.71,423.68,425.66,2220000,425.66
-1955-05-26,421.77,426.08,421.48,424.95,2260000,424.95
-1955-05-25,420.39,423.44,419.63,421.77,2100000,421.77
-1955-05-24,420.32,422.39,417.16,420.39,1650000,420.39
-1955-05-23,422.89,425.22,419.75,420.32,1900000,420.32
-1955-05-20,419.72,423.84,418.64,422.89,2240000,422.89
-1955-05-19,417.83,421.57,417.16,419.72,2380000,419.72
-1955-05-18,414.12,418.83,413.95,417.83,2010000,417.83
-1955-05-17,415.01,417.05,412.60,414.12,1900000,414.12
-1955-05-16,419.57,421.02,412.73,415.01,2160000,415.01
-1955-05-13,418.20,421.98,417.03,419.57,1860000,419.57
-1955-05-12,420.29,421.24,414.43,418.20,2830000,418.20
-1955-05-11,423.80,425.02,419.03,420.29,2120000,420.29
-1955-05-10,424.32,425.69,419.85,423.80,2150000,423.80
-1955-05-09,423.84,426.32,422.43,424.32,2090000,424.32
-1955-05-06,423.39,425.71,421.57,423.84,2250000,423.84
-1955-05-05,422.54,425.56,421.22,423.39,2270000,423.39
-1955-05-04,422.78,424.65,419.18,422.54,2220000,422.54
-1955-05-03,426.30,426.84,420.81,422.78,2630000,422.78
-1955-05-02,425.65,428.27,424.00,426.30,2220000,426.30
-1955-04-29,423.19,426.99,422.82,425.65,2230000,425.65
-1955-04-28,428.10,428.92,421.96,423.19,2550000,423.19
-1955-04-27,430.64,432.07,425.41,428.10,2660000,428.10
-1955-04-26,427.62,432.76,427.62,430.64,2720000,430.64
-1955-04-25,425.52,428.34,420.52,426.86,2720000,426.86
-1955-04-22,428.45,430.27,423.24,425.52,2800000,425.52
-1955-04-21,428.62,431.18,425.54,428.45,2810000,428.45
-1955-04-20,427.88,430.85,426.04,428.62,3090000,428.62
-1955-04-19,428.42,429.25,425.30,427.88,2700000,427.88
-1955-04-18,425.45,430.03,425.02,428.42,3080000,428.42
-1955-04-15,422.46,427.23,421.71,425.45,3180000,425.45
-1955-04-14,421.57,424.52,419.05,422.46,2890000,422.46
-1955-04-13,420.94,424.19,419.87,421.57,2820000,421.57
-1955-04-12,418.77,422.85,418.12,420.94,2770000,420.94
-1955-04-11,418.20,420.89,416.27,418.77,2680000,418.77
-1955-04-07,416.42,419.79,415.84,418.20,2330000,418.20
-1955-04-06,415.90,419.33,414.75,416.42,2500000,416.42
-1955-04-05,412.97,416.84,411.84,415.90,2100000,415.90
-1955-04-04,413.84,416.71,412.10,412.97,2500000,412.97
-1955-04-01,409.78,414.80,409.78,413.84,2660000,413.84
-1955-03-31,410.13,413.21,407.96,409.70,2680000,409.70
-1955-03-30,413.73,414.82,409.07,410.13,3410000,410.13
-1955-03-29,412.91,415.10,411.39,413.73,2770000,413.73
-1955-03-28,414.77,416.16,411.87,412.91,2540000,412.91
-1955-03-25,414.49,416.64,412.06,414.77,2540000,414.77
-1955-03-24,411.39,416.42,411.39,414.49,3170000,414.49
-1955-03-23,405.68,411.32,405.68,410.87,2730000,410.87
-1955-03-22,402.40,405.68,401.28,404.47,1910000,404.47
-1955-03-21,404.75,406.16,401.64,402.40,2020000,402.40
-1955-03-18,405.23,408.09,402.88,404.75,2050000,404.75
-1955-03-17,403.14,406.14,401.41,405.23,2200000,405.23
-1955-03-16,399.60,405.94,399.60,403.14,2900000,403.14
-1955-03-15,391.36,399.67,391.18,399.28,3160000,399.28
-1955-03-14,400.06,400.06,387.50,391.36,4220000,391.36
-1955-03-11,406.66,406.66,398.56,401.08,3040000,401.08
-1955-03-10,404.90,410.06,404.90,406.83,2760000,406.83
-1955-03-09,409.13,409.22,400.84,404.90,3590000,404.90
-1955-03-08,416.27,416.27,408.52,409.13,3160000,409.13
-1955-03-07,419.68,420.85,415.69,416.84,2630000,416.84
-1955-03-04,418.33,421.83,416.53,419.68,2770000,419.68
-1955-03-03,417.18,420.61,416.25,418.33,3330000,418.33
-1955-03-02,413.95,418.33,413.95,417.18,3370000,417.18
-1955-03-01,411.87,416.10,411.24,413.71,2830000,413.71
-1955-02-28,409.50,413.62,408.18,411.87,2620000,411.87
-1955-02-25,410.30,411.17,406.35,409.50,2540000,409.50
-1955-02-24,411.48,412.65,407.63,410.30,2920000,410.30
-1955-02-23,411.28,413.04,409.72,411.48,3030000,411.48
-1955-02-21,411.63,414.21,409.57,411.28,3010000,411.28
-1955-02-18,410.41,414.62,409.07,411.63,3660000,411.63
-1955-02-17,409.98,412.78,408.55,410.41,3030000,410.41
-1955-02-16,411.95,414.27,408.91,409.98,3660000,409.98
-1955-02-15,411.39,414.69,409.54,411.95,3510000,411.95
-1955-02-14,413.99,415.42,410.26,411.39,2950000,411.39
-1955-02-11,412.89,416.55,410.74,413.99,3260000,413.99
-1955-02-10,410.41,414.90,410.41,412.89,3460000,412.89
-1955-02-09,405.70,411.34,405.20,410.32,3360000,410.32
-1955-02-08,409.59,410.78,403.73,405.70,3400000,405.70
-1955-02-07,409.76,412.93,407.20,409.59,3610000,409.59
-1955-02-04,405.85,411.17,405.09,409.76,3370000,409.76
-1955-02-03,407.11,408.20,403.51,405.85,2890000,405.85
-1955-02-02,409.70,410.17,405.42,407.11,3210000,407.11
-1955-02-01,408.83,411.63,406.72,409.70,3320000,409.70
-1955-01-31,404.68,410.61,404.27,408.83,3500000,408.83
-1955-01-28,402.60,406.38,400.67,404.68,3290000,404.68
-1955-01-27,401.97,406.98,400.21,402.60,3500000,402.60
-1955-01-26,398.19,405.31,398.19,401.97,3860000,401.97
-1955-01-25,396.00,397.85,392.14,397.00,3230000,397.00
-1955-01-24,395.90,397.89,394.09,396.00,2910000,396.00
-1955-01-21,393.03,397.64,392.50,395.90,2690000,395.90
-1955-01-20,392.31,394.35,390.66,393.03,2210000,393.03
-1955-01-19,391.19,395.81,391.19,392.31,2760000,392.31
-1955-01-18,388.20,391.76,385.65,390.98,3020000,390.98
-1955-01-17,396.54,396.75,387.54,388.20,3360000,388.20
-1955-01-14,398.34,399.70,394.88,396.54,2630000,396.54
-1955-01-13,399.78,402.12,396.28,398.34,3350000,398.34
-1955-01-12,400.25,401.86,396.60,399.78,3400000,399.78
-1955-01-11,400.89,402.88,398.02,400.25,3680000,400.25
-1955-01-10,397.72,402.24,397.72,400.89,4300000,400.89
-1955-01-07,391.91,396.88,391.91,395.60,4030000,395.60
-1955-01-06,397.19,397.19,387.09,391.89,5300000,391.89
-1955-01-05,405.39,405.39,396.41,397.24,4640000,397.24
-1955-01-04,408.89,409.21,401.84,406.17,4420000,406.17
-1955-01-03,404.39,412.47,403.58,408.89,4570000,408.89
-1954-12-31,401.97,407.17,401.48,404.39,3840000,404.39
-1954-12-30,401.97,404.41,399.42,401.97,3590000,401.97
-1954-12-29,398.51,404.21,398.17,401.97,4430000,401.97
-1954-12-28,393.88,399.61,392.06,398.51,3660000,398.51
-1954-12-27,397.15,397.77,392.33,393.88,2970000,393.88
-1954-12-23,397.07,398.85,395.28,397.15,3310000,397.15
-1954-12-22,398.11,399.97,395.73,397.07,3460000,397.07
-1954-12-21,397.32,400.04,395.35,398.11,3630000,398.11
-1954-12-20,394.94,399.59,393.31,397.32,3770000,397.32
-1954-12-17,393.14,396.34,391.85,394.94,3730000,394.94
-1954-12-16,389.28,394.54,389.28,393.14,3390000,393.14
-1954-12-15,387.03,389.96,385.03,388.92,2740000,388.92
-1954-12-14,389.79,390.98,386.56,387.03,2650000,387.03
-1954-12-13,390.08,391.87,387.73,389.79,2750000,389.79
-1954-12-10,391.53,393.54,388.41,390.08,3250000,390.08
-1954-12-09,393.08,393.56,388.75,391.53,3300000,391.53
-1954-12-08,393.88,395.43,390.85,393.08,4150000,393.08
-1954-12-07,392.48,395.67,390.32,393.88,3820000,393.88
-1954-12-06,389.77,394.01,389.77,392.48,3960000,392.48
-1954-12-03,385.63,391.74,385.58,389.60,3790000,389.60
-1954-12-02,384.04,388.05,382.80,385.63,3190000,385.63
-1954-12-01,386.77,388.68,381.81,384.04,3100000,384.04
-1954-11-30,388.51,391.21,385.67,386.77,3440000,386.77
-1954-11-29,387.79,390.72,385.90,388.51,3300000,388.51
-1954-11-26,384.63,388.96,384.06,387.79,3010000,387.79
-1954-11-24,382.74,387.05,382.47,384.63,3990000,384.63
-1954-11-23,379.47,384.29,378.65,382.74,3690000,382.74
-1954-11-22,378.01,381.21,376.82,379.47,3000000,379.47
-1954-11-19,377.44,380.34,375.29,378.01,3130000,378.01
-1954-11-18,379.69,381.32,376.29,377.44,3530000,377.44
-1954-11-17,379.39,382.06,377.46,379.69,3830000,379.69
-1954-11-16,376.74,380.77,373.85,379.39,3260000,379.39
-1954-11-15,377.10,379.20,374.04,376.74,3080000,376.74
-1954-11-12,374.91,379.73,374.19,377.10,3720000,377.10
-1954-11-11,371.88,375.89,371.47,374.91,2960000,374.91
-1954-11-10,371.07,374.00,368.88,371.88,2070000,371.88
-1954-11-09,369.46,372.83,368.52,371.07,3240000,371.07
-1954-11-08,366.00,371.60,365.28,369.46,3180000,369.46
-1954-11-05,366.95,368.31,363.90,366.00,2950000,366.00
-1954-11-04,361.99,368.50,361.99,366.95,3140000,366.95
-1954-11-03,355.45,363.30,355.45,361.50,2700000,361.50
-1954-11-01,352.14,354.90,350.16,353.96,1790000,353.96
-1954-10-29,354.56,354.71,350.72,352.14,1900000,352.14
-1954-10-28,355.73,357.55,353.60,354.56,2190000,354.56
-1954-10-27,356.32,358.00,354.01,355.73,2030000,355.73
-1954-10-26,356.34,358.29,354.73,356.32,2010000,356.32
-1954-10-25,358.61,360.82,355.15,356.34,2340000,356.34
-1954-10-22,358.08,360.31,356.81,358.61,2080000,358.61
-1954-10-21,357.42,360.46,356.60,358.08,2320000,358.08
-1954-10-20,354.75,358.72,354.69,357.42,2380000,357.42
-1954-10-19,354.35,356.34,353.11,354.75,1900000,354.75
-1954-10-18,353.20,355.64,351.84,354.35,1790000,354.35
-1954-10-15,354.69,355.64,351.54,353.20,2250000,353.20
-1954-10-14,358.91,359.74,353.94,354.69,2540000,354.69
-1954-10-13,359.57,360.71,357.51,358.91,2070000,358.91
-1954-10-12,361.12,361.12,357.95,359.57,1620000,359.57
-1954-10-11,363.77,364.98,360.37,361.43,2100000,361.43
-1954-10-08,363.79,366.04,362.35,363.77,2120000,363.77
-1954-10-07,364.43,366.40,362.30,363.79,1810000,363.79
-1954-10-06,363.37,366.02,362.43,364.43,2570000,364.43
-1954-10-05,362.73,365.11,361.75,363.37,2300000,363.37
-1954-10-04,359.88,364.21,359.35,362.73,2000000,362.73
-1954-10-01,360.46,361.62,358.59,359.88,1850000,359.88
-1954-09-30,361.73,362.98,358.95,360.46,1840000,360.46
-1954-09-29,363.32,364.21,360.39,361.73,1810000,361.73
-1954-09-28,362.26,366.02,361.12,363.32,1800000,363.32
-1954-09-27,361.67,364.00,361.03,362.26,2190000,362.26
-1954-09-24,359.63,362.90,357.97,361.67,2340000,361.67
-1954-09-23,358.36,361.71,357.08,359.63,2340000,359.63
-1954-09-22,356.40,359.46,356.13,358.36,2260000,358.36
-1954-09-21,353.48,356.91,352.24,356.40,1770000,356.40
-1954-09-20,355.32,357.32,353.11,353.48,2060000,353.48
-1954-09-17,352.37,356.40,352.22,355.32,2250000,355.32
-1954-09-16,350.63,353.43,349.06,352.37,1880000,352.37
-1954-09-15,351.78,353.45,348.59,350.63,2110000,350.63
-1954-09-14,351.10,353.92,350.06,351.78,2120000,351.78
-1954-09-13,347.83,352.29,347.83,351.10,2030000,351.10
-1954-09-10,346.73,349.38,345.50,347.83,1870000,347.83
-1954-09-09,346.07,347.47,344.22,346.73,1700000,346.73
-1954-09-08,345.37,348.25,344.92,346.07,1970000,346.07
-1954-09-07,343.10,346.34,341.82,345.37,1860000,345.37
-1954-09-03,341.15,343.80,340.23,343.10,1630000,343.10
-1954-09-02,338.41,342.76,338.41,341.15,1600000,341.15
-1954-09-01,335.80,340.42,334.97,338.13,1790000,338.13
-1954-08-31,340.44,340.44,333.21,335.80,2640000,335.80
-1954-08-30,344.48,345.07,339.53,341.25,1950000,341.25
-1954-08-27,343.35,346.37,342.29,344.48,1740000,344.48
-1954-08-26,344.60,345.35,341.10,343.35,2060000,343.35
-1954-08-25,346.32,347.49,341.97,344.60,2280000,344.60
-1954-08-24,347.64,348.19,344.26,346.32,2000000,346.32
-1954-08-23,350.38,351.08,347.00,347.64,2020000,347.64
-1954-08-20,349.89,352.20,348.59,350.38,2110000,350.38
-1954-08-19,348.51,352.27,347.05,349.89,2320000,349.89
-1954-08-18,348.38,350.00,344.77,348.51,2390000,348.51
-1954-08-17,349.61,351.86,347.05,348.38,2900000,348.38
-1954-08-16,346.64,350.91,346.11,349.61,2760000,349.61
-1954-08-13,345.84,347.98,343.52,346.64,2500000,346.64
-1954-08-12,346.41,348.53,344.31,345.84,2680000,345.84
-1954-08-11,343.56,347.92,343.12,346.41,3440000,346.41
-1954-08-10,340.87,345.60,340.61,343.56,2890000,343.56
-1954-08-09,343.06,343.71,338.70,340.87,2280000,340.87
-1954-08-06,347.02,347.02,339.64,343.06,3350000,343.06
-1954-08-05,349.74,350.42,345.90,347.79,3150000,347.79
-1954-08-04,349.61,351.50,345.75,349.74,3620000,349.74
-1954-08-03,349.57,351.44,347.05,349.61,2970000,349.61
-1954-08-02,347.92,351.29,346.22,349.57,2850000,349.57
-1954-07-30,346.15,349.21,345.22,347.92,2800000,347.92
-1954-07-29,345.11,347.77,344.01,346.15,2710000,346.15
-1954-07-28,344.69,346.83,342.72,345.11,2740000,345.11
-1954-07-27,343.39,346.41,342.06,344.69,2690000,344.69
-1954-07-26,343.48,345.05,341.42,343.39,2110000,343.39
-1954-07-23,342.97,344.92,341.51,343.48,2520000,343.48
-1954-07-22,339.98,344.54,338.94,342.97,2890000,342.97
-1954-07-21,337.62,341.06,336.46,339.98,2510000,339.98
-1954-07-20,338.64,339.09,334.80,337.62,2580000,337.62
-1954-07-19,339.96,340.87,336.96,338.64,2370000,338.64
-1954-07-16,341.06,342.12,338.03,339.96,2540000,339.96
-1954-07-15,340.44,343.01,339.17,341.06,3000000,341.06
-1954-07-14,340.04,341.25,337.37,340.44,2520000,340.44
-1954-07-13,340.91,342.82,338.53,340.04,2430000,340.04
-1954-07-12,341.25,343.59,339.43,340.91,2330000,340.91
-1954-07-09,339.81,342.91,337.62,341.25,2240000,341.25
-1954-07-08,340.34,341.63,337.64,339.81,2080000,339.81
-1954-07-07,341.12,343.20,338.15,340.34,2380000,340.34
-1954-07-06,337.71,342.10,337.71,341.12,2560000,341.12
-1954-07-02,334.12,338.64,333.00,337.66,1980000,337.66
-1954-07-01,333.53,335.44,330.68,334.12,1860000,334.12
-1954-06-30,336.90,337.96,332.20,333.53,1950000,333.53
-1954-06-29,336.12,338.78,330.95,336.90,2580000,336.90
-1954-06-28,332.53,337.30,331.29,336.12,1890000,336.12
-1954-06-25,332.20,335.09,330.19,332.53,2060000,332.53
-1954-06-24,330.72,333.84,329.58,332.20,2260000,332.20
-1954-06-23,329.51,331.54,326.81,330.72,2090000,330.72
-1954-06-22,328.56,330.99,327.40,329.51,2100000,329.51
-1954-06-21,327.91,330.19,326.33,328.56,1820000,328.56
-1954-06-18,327.21,329.07,325.73,327.91,1580000,327.91
-1954-06-17,327.28,329.49,325.88,327.21,1810000,327.21
-1954-06-16,325.21,328.67,325.00,327.28,2070000,327.28
-1954-06-15,322.65,325.80,322.04,325.21,1630000,325.21
-1954-06-14,322.09,323.54,320.67,322.65,1420000,322.65
-1954-06-11,320.12,323.29,319.19,322.09,1630000,322.09
-1954-06-10,319.27,321.85,318.20,320.12,1610000,320.12
-1954-06-09,321.00,321.26,315.66,319.27,2360000,319.27
-1954-06-08,327.92,327.92,319.94,321.00,2540000,321.00
-1954-06-07,327.63,329.54,326.50,327.96,1520000,327.96
-1954-06-04,328.63,329.84,326.54,327.63,1720000,327.63
-1954-06-03,328.36,330.35,327.35,328.63,1810000,328.63
-1954-06-02,328.67,330.45,327.06,328.36,1930000,328.36
-1954-06-01,327.49,329.48,326.21,328.67,1850000,328.67
-1954-05-28,326.37,328.57,324.83,327.49,1940000,327.49
-1954-05-27,327.11,328.93,325.50,326.37,2230000,326.37
-1954-05-26,325.02,328.26,324.26,327.11,2180000,327.11
-1954-05-25,326.09,326.80,323.27,325.02,2050000,325.02
-1954-05-24,326.09,327.94,324.59,326.09,2330000,326.09
-1954-05-21,323.88,327.43,323.82,326.09,2620000,326.09
-1954-05-20,323.21,325.42,322.40,323.88,2070000,323.88
-1954-05-19,324.14,325.64,321.79,323.21,2170000,323.21
-1954-05-18,323.33,326.29,322.90,324.14,2250000,324.14
-1954-05-17,322.50,324.69,321.10,323.33,2040000,323.33
-1954-05-14,320.39,323.39,319.39,322.50,1970000,322.50
-1954-05-13,321.61,323.80,319.21,320.39,2340000,320.39
-1954-05-12,319.74,322.70,318.68,321.61,2210000,321.61
-1954-05-11,321.32,322.03,318.22,319.74,1770000,319.74
-1954-05-10,321.30,322.66,320.02,321.32,1800000,321.32
-1954-05-07,320.41,323.13,319.54,321.30,2070000,321.30
-1954-05-06,317.93,321.53,316.80,320.41,1980000,320.41
-1954-05-05,319.82,320.94,316.45,317.93,2020000,317.93
-1954-05-04,319.35,321.65,316.84,319.82,1990000,319.82
-1954-05-03,319.33,320.94,317.37,319.35,1870000,319.35
-1954-04-30,318.22,321.71,317.24,319.33,2450000,319.33
-1954-04-29,314.02,319.76,314.02,318.22,2150000,318.22
-1954-04-28,313.49,315.01,309.37,313.75,2120000,313.75
-1954-04-27,314.54,315.74,310.91,313.49,1970000,313.49
-1954-04-26,313.37,316.23,312.35,314.54,2150000,314.54
-1954-04-23,311.48,314.34,311.16,313.37,1990000,313.37
-1954-04-22,310.91,312.54,309.05,311.48,1750000,311.48
-1954-04-21,311.89,313.94,309.92,310.91,1870000,310.91
-1954-04-20,311.78,314.38,310.02,311.89,1860000,311.89
-1954-04-19,313.77,316.15,310.65,311.78,2430000,311.78
-1954-04-15,311.76,314.44,310.71,313.77,2200000,313.77
-1954-04-14,308.98,312.96,308.38,311.76,2330000,311.76
-1954-04-13,309.19,310.93,307.58,308.98,2020000,308.98
-1954-04-12,309.39,310.77,307.44,309.19,1790000,309.19
-1954-04-09,307.79,310.32,307.20,309.39,2360000,309.39
-1954-04-08,305.82,309.57,305.82,307.79,2300000,307.79
-1954-04-07,304.26,306.45,301.70,305.41,1830000,305.41
-1954-04-06,307.04,308.50,302.78,304.26,2120000,304.26
-1954-04-05,306.67,308.46,305.27,307.04,1710000,307.04
-1954-04-02,306.27,307.95,304.52,306.67,1830000,306.67
-1954-04-01,303.51,307.30,303.18,306.27,2270000,306.27
-1954-03-31,301.01,305.15,301.01,303.51,2690000,303.51
-1954-03-30,300.06,302.57,299.47,300.89,2130000,300.89
-1954-03-29,299.08,301.46,297.66,300.06,1870000,300.06
-1954-03-26,296.67,300.10,296.67,299.08,1550000,299.08
-1954-03-25,296.89,297.68,294.76,296.40,1720000,296.40
-1954-03-24,299.02,299.73,295.59,296.89,1900000,296.89
-1954-03-23,301.60,302.49,298.39,299.02,2180000,299.02
-1954-03-22,301.44,302.80,299.49,301.60,1800000,301.60
-1954-03-19,300.12,302.65,300.12,301.44,1930000,301.44
-1954-03-18,298.31,301.44,297.99,300.10,2020000,300.10
-1954-03-17,298.09,299.22,296.14,298.31,1740000,298.31
-1954-03-16,298.88,300.50,297.34,298.09,1540000,298.09
-1954-03-15,299.71,300.12,296.81,298.88,1680000,298.88
-1954-03-12,300.83,302.17,298.76,299.71,1980000,299.71
-1954-03-11,299.59,301.68,298.76,300.83,2050000,300.83
-1954-03-10,299.45,300.95,298.01,299.59,1870000,299.59
-1954-03-09,298.64,300.50,297.09,299.45,1630000,299.45
-1954-03-08,299.45,300.66,297.44,298.64,1650000,298.64
-1954-03-05,297.48,300.68,296.50,299.45,2030000,299.45
-1954-03-04,297.03,298.80,295.37,297.48,1830000,297.48
-1954-03-03,297.48,299.65,295.79,297.03,2240000,297.03
-1954-03-02,296.55,298.66,294.78,297.48,1980000,297.48
-1954-03-01,294.54,297.80,294.23,296.55,2040000,296.55
-1954-02-26,291.41,295.19,290.78,294.54,1910000,294.54
-1954-02-25,289.54,292.04,289.06,291.41,1470000,291.41
-1954-02-24,290.03,290.42,287.84,289.54,1350000,289.54
-1954-02-23,291.07,291.98,289.00,290.03,1470000,290.03
-1954-02-19,291.51,292.59,289.87,291.07,1510000,291.07
-1954-02-18,290.11,292.67,289.08,291.51,1500000,291.51
-1954-02-17,289.61,290.92,287.37,290.11,1740000,290.11
-1954-02-16,292.55,292.95,288.61,289.61,1870000,289.61
-1954-02-15,293.99,294.92,291.93,292.55,2080000,292.55
-1954-02-12,292.45,294.78,291.90,293.99,1730000,293.99
-1954-02-11,292.95,294.84,291.27,292.45,1860000,292.45
-1954-02-10,293.79,294.50,292.00,292.95,1790000,292.95
-1954-02-09,293.58,294.84,291.94,293.79,1880000,293.79
-1954-02-08,293.97,294.92,292.20,293.58,2180000,293.58
-1954-02-05,294.03,295.43,292.53,293.97,2030000,293.97
-1954-02-04,292.32,295.10,292.06,294.03,2040000,294.03
-1954-02-03,291.17,292.99,289.20,292.32,1690000,292.32
-1954-02-02,291.84,291.88,289.75,291.17,1420000,291.17
-1954-02-01,292.39,293.50,290.46,291.84,1740000,291.84
-1954-01-29,291.51,293.81,290.86,292.39,1950000,292.39
-1954-01-28,292.22,293.12,289.81,291.51,1730000,291.51
-1954-01-27,292.85,294.56,291.53,292.22,2020000,292.22
-1954-01-26,290.40,293.44,290.11,292.85,2120000,292.85
-1954-01-25,289.65,291.29,288.27,290.40,1860000,290.40
-1954-01-22,289.48,290.86,288.18,289.65,1890000,289.65
-1954-01-21,289.14,290.66,287.68,289.48,1780000,289.48
-1954-01-20,288.27,290.15,287.58,289.14,1960000,289.14
-1954-01-19,286.03,289.14,285.24,288.27,1840000,288.27
-1954-01-18,286.72,287.78,284.69,286.03,1580000,286.03
-1954-01-15,284.49,288.10,284.49,286.72,2180000,286.72
-1954-01-14,283.03,285.67,282.83,284.49,1530000,284.49
-1954-01-13,281.51,284.37,281.12,283.03,1420000,283.03
-1954-01-12,279.87,282.54,279.46,281.51,1250000,281.51
-1954-01-11,281.51,281.67,278.91,279.87,1220000,279.87
-1954-01-08,282.60,283.01,280.39,281.51,1260000,281.51
-1954-01-07,283.96,284.86,281.83,282.60,1540000,282.60
-1954-01-06,284.19,285.67,283.05,283.96,1460000,283.96
-1954-01-05,282.89,285.34,282.65,284.19,1520000,284.19
-1954-01-04,280.90,283.48,279.72,282.89,1310000,282.89
-1953-12-31,280.43,282.18,279.52,280.90,2490000,280.90
-1953-12-30,278.30,281.08,277.92,280.43,2050000,280.43
-1953-12-29,279.74,279.74,275.91,278.30,2140000,278.30
-1953-12-28,280.92,281.25,278.81,279.91,1570000,279.91
-1953-12-24,279.84,281.69,279.15,280.92,1270000,280.92
-1953-12-23,279.99,281.11,278.14,279.84,1570000,279.84
-1953-12-22,282.85,282.85,278.95,279.99,1720000,279.99
-1953-12-21,283.54,284.69,282.38,282.99,1690000,282.99
-1953-12-18,282.67,284.35,281.71,283.54,1550000,283.54
-1953-12-17,282.87,284.55,281.57,282.67,1600000,282.67
-1953-12-16,279.52,283.88,279.36,282.87,1880000,282.87
-1953-12-15,279.26,280.27,277.49,279.52,1450000,279.52
-1953-12-14,279.91,280.98,278.18,279.26,1540000,279.26
-1953-12-11,279.89,280.76,278.38,279.91,1440000,279.91
-1953-12-10,281.12,281.53,278.93,279.89,1420000,279.89
-1953-12-09,281.45,282.54,279.78,281.12,1410000,281.12
-1953-12-08,282.00,282.48,279.34,281.45,1390000,281.45
-1953-12-07,282.71,283.50,281.20,282.00,1410000,282.00
-1953-12-04,283.25,284.11,281.55,282.71,1390000,282.71
-1953-12-03,282.81,285.20,282.10,283.25,1740000,283.25
-1953-12-02,281.10,283.74,280.33,282.81,1850000,282.81
-1953-12-01,281.37,282.08,279.46,281.10,1580000,281.10
-1953-11-30,280.23,282.46,279.80,281.37,1960000,281.37
-1953-11-27,277.78,280.78,277.19,280.23,1600000,280.23
-1953-11-25,277.13,278.87,276.40,277.78,1540000,277.78
-1953-11-24,275.42,277.61,274.26,277.13,1470000,277.13
-1953-11-23,276.05,276.58,273.80,275.42,1410000,275.42
-1953-11-20,276.09,277.47,274.79,276.05,1300000,276.05
-1953-11-19,274.51,277.02,274.16,276.09,1420000,276.09
-1953-11-18,273.88,275.52,273.05,274.51,1250000,274.51
-1953-11-17,275.58,275.58,273.01,273.88,1250000,273.88
-1953-11-16,277.53,278.57,275.48,275.93,1490000,275.93
-1953-11-13,276.23,278.08,275.16,277.53,1540000,277.53
-1953-11-12,275.89,277.65,274.63,276.23,1390000,276.23
-1953-11-10,277.86,277.86,275.06,275.89,1340000,275.89
-1953-11-09,278.83,279.93,276.80,278.26,1440000,278.26
-1953-11-06,279.09,280.25,277.57,278.83,1700000,278.83
-1953-11-05,276.82,280.33,276.80,279.09,1720000,279.09
-1953-11-04,276.72,277.72,274.83,276.82,1480000,276.82
-1953-11-02,275.81,278.18,274.83,276.72,1340000,276.72
-1953-10-30,276.31,277.04,274.87,275.81,1400000,275.81
-1953-10-29,274.14,276.94,273.92,276.31,1610000,276.31
-1953-10-28,273.35,274.69,272.13,274.14,1260000,274.14
-1953-10-27,274.33,274.33,271.85,273.35,1170000,273.35
-1953-10-26,275.34,276.56,273.88,274.43,1340000,274.43
-1953-10-23,274.89,276.52,274.12,275.34,1330000,275.34
-1953-10-22,273.74,275.77,272.97,274.89,1330000,274.89
-1953-10-21,273.90,274.61,272.30,273.74,1320000,273.74
-1953-10-20,273.31,275.16,272.36,273.90,1280000,273.90
-1953-10-19,272.80,273.78,271.14,273.31,1190000,273.31
-1953-10-16,271.22,273.94,271.02,272.80,1620000,272.80
-1953-10-15,267.51,271.81,267.41,271.22,1710000,271.22
-1953-10-14,266.09,268.22,265.64,267.51,1290000,267.51
-1953-10-13,267.04,267.69,265.36,266.09,1130000,266.09
-1953-10-09,266.72,267.69,265.52,267.04,900000,267.04
-1953-10-08,266.53,267.97,265.96,266.72,960000,266.72
-1953-10-07,264.26,266.86,263.57,266.53,1010000,266.53
-1953-10-06,265.25,265.25,262.45,264.26,1100000,264.26
-1953-10-05,266.70,267.59,264.52,265.48,930000,265.48
-1953-10-02,265.68,267.59,265.32,266.70,890000,266.70
-1953-10-01,264.04,266.47,263.79,265.68,940000,265.68
-1953-09-30,264.77,265.38,262.94,264.04,940000,264.04
-1953-09-29,264.79,266.61,263.90,264.77,1170000,264.77
-1953-09-28,263.31,265.86,263.16,264.79,1150000,264.79
-1953-09-25,262.45,264.06,261.78,263.31,910000,263.31
-1953-09-24,262.35,263.83,261.36,262.45,1020000,262.45
-1953-09-23,261.40,263.83,261.40,262.35,1240000,262.35
-1953-09-22,258.01,261.89,257.85,261.28,1300000,261.28
-1953-09-21,258.78,260.00,257.36,258.01,1070000,258.01
-1953-09-18,259.84,259.84,257.65,258.78,1190000,258.78
-1953-09-17,259.07,261.30,258.42,259.88,1290000,259.88
-1953-09-16,257.97,260.95,257.97,259.07,1570000,259.07
-1953-09-15,255.49,258.68,254.36,257.67,2850000,257.67
-1953-09-14,259.71,260.20,255.29,255.49,2550000,255.49
-1953-09-11,262.37,262.37,258.94,259.71,1930000,259.71
-1953-09-10,265.38,265.38,262.58,262.88,1010000,262.88
-1953-09-09,265.42,266.23,264.56,265.48,860000,265.48
-1953-09-08,264.34,266.23,264.04,265.42,740000,265.42
-1953-09-04,263.61,265.09,262.70,264.34,770000,264.34
-1953-09-03,263.96,264.65,262.50,263.61,900000,263.61
-1953-09-02,262.54,265.21,262.43,263.96,1110000,263.96
-1953-09-01,261.22,263.23,260.32,262.54,1580000,262.54
-1953-08-31,265.70,265.70,260.83,261.22,2190000,261.22
-1953-08-28,265.68,266.86,264.89,265.74,1060000,265.74
-1953-08-27,266.51,267.45,264.65,265.68,1290000,265.68
-1953-08-26,267.45,269.17,266.27,266.51,1060000,266.51
-1953-08-25,268.70,268.83,265.92,267.45,1470000,267.45
-1953-08-24,271.93,271.99,268.06,268.70,1320000,268.70
-1953-08-21,271.73,272.80,270.81,271.93,850000,271.93
-1953-08-20,271.50,272.66,270.41,271.73,860000,271.73
-1953-08-19,273.01,273.01,270.06,271.50,1400000,271.50
-1953-08-18,275.04,275.91,273.13,273.29,1030000,273.29
-1953-08-17,275.71,276.13,273.92,275.04,910000,275.04
-1953-08-14,276.74,277.33,274.89,275.71,1000000,275.71
-1953-08-13,276.42,278.30,275.75,276.74,1040000,276.74
-1953-08-12,275.30,276.92,273.98,276.42,990000,276.42
-1953-08-11,275.32,276.05,273.72,275.30,940000,275.30
-1953-08-10,275.54,276.48,274.39,275.32,1090000,275.32
-1953-08-07,275.77,276.46,274.20,275.54,950000,275.54
-1953-08-06,275.08,276.54,274.63,275.77,1200000,275.77
-1953-08-05,275.40,275.40,273.19,275.08,1080000,275.08
-1953-08-04,276.13,276.46,274.28,275.68,1000000,275.68
-1953-08-03,275.38,277.19,274.71,276.13,1160000,276.13
-1953-07-31,272.82,275.85,272.58,275.38,1320000,275.38
-1953-07-30,270.49,273.41,270.49,272.82,1200000,272.82
-1953-07-29,269.13,271.16,268.83,270.43,1000000,270.43
-1953-07-28,268.46,269.52,267.30,269.13,1080000,269.13
-1953-07-27,269.76,270.71,267.83,268.46,1210000,268.46
-1953-07-24,269.94,270.92,268.79,269.76,890000,269.76
-1953-07-23,269.39,271.14,268.89,269.94,1000000,269.94
-1953-07-22,268.99,270.23,267.95,269.39,900000,269.39
-1953-07-21,269.74,269.90,268.28,268.99,850000,268.99
-1953-07-20,270.94,270.94,268.85,269.74,830000,269.74
-1953-07-17,269.41,271.59,268.95,270.96,840000,270.96
-1953-07-16,268.75,270.17,268.48,269.41,790000,269.41
-1953-07-15,268.06,270.02,267.73,268.75,840000,268.75
-1953-07-14,268.52,269.19,266.96,268.06,1030000,268.06
-1953-07-13,271.06,271.16,268.08,268.52,1120000,268.52
-1953-07-10,271.32,271.93,270.31,271.06,860000,271.06
-1953-07-09,272.19,272.38,270.98,271.32,910000,271.32
-1953-07-08,272.13,272.82,271.06,272.19,950000,272.19
-1953-07-07,270.88,272.60,270.17,272.13,1030000,272.13
-1953-07-06,270.53,271.71,269.94,270.88,820000,270.88
-1953-07-03,270.23,271.44,269.41,270.53,830000,270.53
-1953-07-02,269.39,271.20,269.15,270.23,1030000,270.23
-1953-07-01,268.26,269.90,267.51,269.39,910000,269.39
-1953-06-30,268.20,269.03,267.06,268.26,820000,268.26
-1953-06-29,269.05,269.70,267.26,268.20,800000,268.20
-1953-06-26,268.93,269.70,268.01,269.05,830000,269.05
-1953-06-25,267.85,270.31,267.85,268.93,1160000,268.93
-1953-06-24,268.48,269.11,266.80,267.79,1030000,267.79
-1953-06-23,267.26,269.15,266.68,268.48,1050000,268.48
-1953-06-22,265.88,268.70,265.88,267.26,1030000,267.26
-1953-06-19,265.86,266.53,264.24,265.80,890000,265.80
-1953-06-18,265.74,267.20,264.93,265.86,1010000,265.86
-1953-06-17,262.88,266.57,262.88,265.74,1150000,265.74
-1953-06-16,263.87,264.10,260.75,262.88,1370000,262.88
-1953-06-15,265.78,266.41,263.12,263.87,1090000,263.87
-1953-06-12,264.99,266.86,264.59,265.78,920000,265.78
-1953-06-11,263.39,266.68,263.39,264.99,1220000,264.99
-1953-06-10,263.39,264.18,260.89,263.35,1960000,263.35
-1953-06-09,267.91,268.14,262.90,263.39,2200000,263.39
-1953-06-08,268.32,269.46,267.28,267.91,1000000,267.91
-1953-06-05,267.63,269.33,266.57,268.32,1160000,268.32
-1953-06-04,269.60,269.98,266.17,267.63,1400000,267.63
-1953-06-03,269.84,271.77,268.99,269.60,1050000,269.60
-1953-06-02,268.40,270.41,267.00,269.84,1450000,269.84
-1953-06-01,272.28,272.64,267.91,268.40,1490000,268.40
-1953-05-29,271.48,273.07,270.88,272.28,920000,272.28
-1953-05-28,273.76,273.76,270.65,271.48,1240000,271.48
-1953-05-27,276.37,276.58,273.53,273.96,1330000,273.96
-1953-05-26,277.43,277.43,275.12,276.37,1160000,276.37
-1953-05-25,278.16,278.73,276.82,277.47,1180000,277.47
-1953-05-22,278.51,279.28,276.72,278.16,1350000,278.16
-1953-05-21,278.04,279.84,277.63,278.51,1590000,278.51
-1953-05-20,275.91,278.53,275.12,278.04,1690000,278.04
-1953-05-19,276.92,277.04,274.81,275.91,1120000,275.91
-1953-05-18,277.90,278.14,275.75,276.92,1080000,276.92
-1953-05-15,277.96,279.18,276.70,277.90,1200000,277.90
-1953-05-14,276.80,278.71,276.25,277.96,1210000,277.96
-1953-05-13,277.09,277.59,275.10,276.80,1120000,276.80
-1953-05-12,278.79,278.91,276.29,277.09,1080000,277.09
-1953-05-11,278.22,279.78,277.59,278.79,1010000,278.79
-1953-05-08,277.43,278.55,275.85,278.22,1220000,278.22
-1953-05-07,278.14,278.65,276.54,277.43,1110000,277.43
-1953-05-06,278.22,279.32,276.94,278.14,1110000,278.14
-1953-05-05,278.34,280.01,277.31,278.22,1290000,278.22
-1953-05-04,275.66,279.46,275.52,278.34,1520000,278.34
-1953-05-01,274.75,276.33,273.59,275.66,1200000,275.66
-1953-04-30,275.38,276.07,273.31,274.75,1140000,274.75
-1953-04-29,273.96,276.37,273.31,275.38,1310000,275.38
-1953-04-28,272.70,274.59,271.32,273.96,1330000,273.96
-1953-04-27,271.30,274.14,271.30,272.70,1400000,272.70
-1953-04-24,270.73,272.30,269.25,271.26,1780000,271.26
-1953-04-23,273.51,273.51,270.15,270.73,1920000,270.73
-1953-04-22,275.48,275.93,272.86,273.55,1390000,273.55
-1953-04-21,275.99,277.88,274.67,275.48,1250000,275.48
-1953-04-20,274.41,276.62,272.80,275.99,1520000,275.99
-1953-04-17,276.74,276.86,273.70,274.41,1430000,274.41
-1953-04-16,277.35,278.51,275.97,276.74,1310000,276.74
-1953-04-15,276.01,278.79,276.01,277.35,1580000,277.35
-1953-04-14,274.73,276.76,273.86,275.85,1480000,275.85
-1953-04-13,275.50,276.46,274.10,274.73,1280000,274.73
-1953-04-10,276.23,276.52,274.28,275.50,1360000,275.50
-1953-04-09,276.84,278.08,274.83,276.23,1520000,276.23
-1953-04-08,275.38,278.85,275.38,276.84,1860000,276.84
-1953-04-07,274.10,276.33,271.99,275.16,2500000,275.16
-1953-04-06,279.42,279.42,272.40,274.10,3050000,274.10
-1953-04-02,280.09,281.81,279.26,280.03,1720000,280.03
-1953-04-01,279.87,281.47,277.53,280.09,2240000,280.09
-1953-03-31,282.73,282.73,277.57,279.87,3120000,279.87
-1953-03-30,286.16,286.16,281.59,283.07,2740000,283.07
-1953-03-27,286.60,288.63,285.97,287.33,1640000,287.33
-1953-03-26,287.98,289.08,285.63,286.60,2000000,286.60
-1953-03-25,288.83,290.78,287.47,287.98,2320000,287.98
-1953-03-24,287.39,289.18,286.72,288.83,1970000,288.83
-1953-03-23,289.69,289.69,286.74,287.39,1750000,287.39
-1953-03-20,289.97,291.01,288.63,289.69,1730000,289.69
-1953-03-19,290.32,291.09,288.49,289.97,1840000,289.97
-1953-03-18,290.64,291.96,289.26,290.32,2110000,290.32
-1953-03-17,289.52,291.78,289.10,290.64,2110000,290.64
-1953-03-16,289.04,290.52,288.08,289.52,1770000,289.52
-1953-03-13,288.00,289.59,286.76,289.04,1760000,289.04
-1953-03-12,288.02,289.14,286.70,288.00,1780000,288.00
-1953-03-11,285.22,288.75,284.94,288.02,1890000,288.02
-1953-03-10,284.90,285.97,283.17,285.22,1530000,285.22
-1953-03-09,284.82,285.99,283.88,284.90,1600000,284.90
-1953-03-06,283.86,285.28,283.01,284.82,1690000,284.82
-1953-03-05,283.70,284.84,282.46,283.86,1540000,283.86
-1953-03-04,284.71,286.09,282.52,283.70,2010000,283.70
-1953-03-03,284.71,286.40,283.84,285.99,1850000,285.99
-1953-03-02,284.27,285.67,283.09,284.71,1760000,284.71
-1953-02-27,284.35,285.40,282.32,284.27,1990000,284.27
-1953-02-26,284.45,285.95,283.27,284.35,2290000,284.35
-1953-02-25,282.99,285.22,281.93,284.45,2360000,284.45
-1953-02-24,282.04,285.04,282.04,282.99,2300000,282.99
-1953-02-20,281.55,283.29,280.74,281.89,1400000,281.89
-1953-02-19,281.14,283.01,280.51,281.55,1390000,281.55
-1953-02-18,281.51,281.96,279.72,281.14,1220000,281.14
-1953-02-17,282.18,282.73,280.23,281.51,1290000,281.51
-1953-02-16,283.11,284.25,281.71,282.18,1330000,282.18
-1953-02-13,281.57,283.86,281.10,283.11,1350000,283.11
-1953-02-11,281.67,283.05,280.53,281.57,1240000,281.57
-1953-02-10,281.96,283.50,280.84,281.67,1350000,281.67
-1953-02-09,282.85,283.31,279.93,281.96,1780000,281.96
-1953-02-06,286.20,286.42,282.14,282.85,1870000,282.85
-1953-02-05,289.04,289.04,285.16,286.20,1900000,286.20
-1953-02-04,290.19,290.84,288.33,289.08,1660000,289.08
-1953-02-03,290.03,290.88,287.90,290.19,1560000,290.19
-1953-02-02,289.77,290.94,288.00,290.03,1890000,290.03
-1953-01-30,287.96,290.46,287.54,289.77,1760000,289.77
-1953-01-29,287.39,289.12,286.44,287.96,1830000,287.96
-1953-01-28,286.81,288.21,285.87,287.39,1640000,287.39
-1953-01-27,286.54,287.96,285.75,286.81,1550000,286.81
-1953-01-26,286.89,287.68,285.12,286.54,1420000,286.54
-1953-01-23,287.84,288.59,285.77,286.89,1340000,286.89
-1953-01-22,287.60,288.87,286.70,287.84,1380000,287.84
-1953-01-21,288.00,288.63,286.56,287.60,1300000,287.60
-1953-01-20,286.97,289.16,286.28,288.00,1490000,288.00
-1953-01-19,287.17,287.98,285.30,286.97,1360000,286.97
-1953-01-16,288.18,288.90,285.12,287.17,1710000,287.17
-1953-01-15,287.37,288.85,286.40,288.18,1450000,288.18
-1953-01-14,286.85,288.47,285.63,287.37,1370000,287.37
-1953-01-13,285.24,288.63,285.10,286.85,1680000,286.85
-1953-01-12,287.52,287.88,284.29,285.24,1500000,285.24
-1953-01-09,290.36,290.46,286.09,287.52,2080000,287.52
-1953-01-08,290.76,292.02,289.48,290.36,1780000,290.36
-1953-01-07,291.96,291.96,288.69,290.76,1760000,290.76
-1953-01-06,293.79,294.25,290.25,292.18,2080000,292.18
-1953-01-05,292.14,295.06,291.51,293.79,2130000,293.79
-1953-01-02,291.90,293.56,290.30,292.14,1450000,292.14
-1952-12-31,292.00,293.50,290.86,291.90,2050000,291.90
-1952-12-30,289.65,292.83,289.46,292.00,2070000,292.00
-1952-12-29,288.23,290.74,287.66,289.65,1820000,289.65
-1952-12-26,287.37,289.10,285.67,288.23,1290000,288.23
-1952-12-24,286.99,288.59,285.69,287.37,1510000,287.37
-1952-12-23,288.02,289.18,286.22,286.99,2100000,286.99
-1952-12-22,286.52,288.85,285.55,288.02,2100000,288.02
-1952-12-19,285.36,287.15,284.55,286.52,2050000,286.52
-1952-12-18,285.67,286.68,284.41,285.36,1860000,285.36
-1952-12-17,286.16,286.95,284.55,285.67,1700000,285.67
-1952-12-16,285.99,287.58,285.00,286.16,1980000,286.16
-1952-12-15,285.20,287.13,284.45,285.99,1940000,285.99
-1952-12-12,284.57,286.18,283.76,285.20,2030000,285.20
-1952-12-11,284.55,285.69,283.48,284.57,1790000,284.57
-1952-12-10,285.12,286.03,282.77,284.55,1880000,284.55
-1952-12-09,283.62,286.32,283.25,285.12,2120000,285.12
-1952-12-08,282.06,284.37,281.45,283.62,1790000,283.62
-1952-12-05,281.63,283.03,280.68,282.06,1510000,282.06
-1952-12-04,282.89,283.82,281.10,281.63,1570000,281.63
-1952-12-03,283.78,284.69,282.00,282.89,1610000,282.89
-1952-12-02,283.70,284.65,281.89,283.78,1610000,283.78
-1952-12-01,283.66,285.20,282.58,283.70,2100000,283.70
-1952-11-28,282.44,284.65,281.59,283.66,2160000,283.66
-1952-11-26,280.90,283.13,279.93,282.44,1920000,282.44
-1952-11-25,281.08,282.32,279.99,280.90,1930000,280.90
-1952-11-24,279.32,281.59,278.67,281.08,2100000,281.08
-1952-11-21,279.50,280.31,278.16,279.32,1760000,279.32
-1952-11-20,280.05,280.80,278.02,279.50,1740000,279.50
-1952-11-19,278.04,281.16,277.78,280.05,2350000,280.05
-1952-11-18,274.45,279.03,274.20,278.04,2250000,278.04
-1952-11-17,273.27,275.16,272.44,274.45,1490000,274.45
-1952-11-14,272.54,274.10,271.22,273.27,1700000,273.27
-1952-11-13,271.97,273.68,271.16,272.54,1330000,272.54
-1952-11-12,273.47,274.28,271.30,271.97,1490000,271.97
-1952-11-10,273.47,274.39,272.11,273.47,1360000,273.47
-1952-11-07,272.58,274.77,271.89,273.47,1540000,273.47
-1952-11-06,271.30,273.82,268.89,272.58,1390000,272.58
-1952-11-05,270.65,274.77,270.65,271.30,2030000,271.30
-1952-11-03,269.23,271.53,268.79,270.23,1670000,270.23
-1952-10-31,265.78,269.96,265.78,269.23,1760000,269.23
-1952-10-30,265.46,266.57,264.54,265.72,1090000,265.72
-1952-10-29,265.72,266.72,264.65,265.46,1020000,265.46
-1952-10-28,265.90,266.80,264.87,265.72,1080000,265.72
-1952-10-27,265.46,266.65,264.73,265.90,1000000,265.90
-1952-10-24,263.87,266.31,263.39,265.46,1060000,265.46
-1952-10-23,263.06,264.93,262.01,263.87,1260000,263.87
-1952-10-22,265.64,265.64,262.60,263.06,1160000,263.06
-1952-10-21,266.63,267.18,265.09,265.84,990000,265.84
-1952-10-20,267.30,268.06,265.37,266.63,1050000,266.63
-1952-10-17,265.21,268.36,265.21,267.30,1360000,267.30
-1952-10-16,267.12,267.45,263.33,264.87,1730000,264.87
-1952-10-15,270.43,270.59,266.09,267.12,1730000,267.12
-1952-10-14,270.61,271.59,269.48,270.43,1130000,270.43
-1952-10-10,270.98,271.81,269.94,270.61,1070000,270.61
-1952-10-09,271.40,272.36,270.15,270.98,1090000,270.98
-1952-10-08,269.88,271.91,269.52,271.40,1260000,271.40
-1952-10-07,270.00,271.04,268.97,269.88,950000,269.88
-1952-10-06,270.55,271.20,269.29,270.00,1070000,270.00
-1952-10-03,270.75,271.85,269.52,270.55,980000,270.55
-1952-10-02,270.17,271.55,269.72,270.75,1040000,270.75
-1952-10-01,270.61,271.08,269.21,270.17,1060000,270.17
-1952-09-30,271.73,272.21,269.98,270.61,1120000,270.61
-1952-09-29,271.95,272.76,270.51,271.73,970000,271.73
-1952-09-26,272.42,273.33,271.14,271.95,1180000,271.95
-1952-09-25,272.26,273.74,271.44,272.42,1210000,272.42
-1952-09-24,271.65,273.19,271.06,272.26,1390000,272.26
-1952-09-23,270.77,272.24,269.48,271.65,1240000,271.65
-1952-09-22,270.55,272.09,269.56,270.77,1160000,270.77
-1952-09-19,269.72,271.26,268.62,270.55,1150000,270.55
-1952-09-18,270.43,271.12,268.81,269.72,1030000,269.72
-1952-09-17,269.03,271.18,268.89,270.43,1000000,270.43
-1952-09-16,268.38,269.74,267.08,269.03,1140000,269.03
-1952-09-15,271.02,271.14,267.91,268.38,1100000,268.38
-1952-09-12,272.11,272.46,269.66,271.02,1040000,271.02
-1952-09-11,271.65,273.25,270.90,272.11,970000,272.11
-1952-09-10,273.01,273.01,269.56,271.65,1590000,271.65
-1952-09-09,275.87,276.29,273.13,273.53,1310000,273.53
-1952-09-08,276.50,277.55,275.38,275.87,1170000,275.87
-1952-09-05,276.76,277.43,275.18,276.50,1040000,276.50
-1952-09-04,277.15,278.10,276.03,276.76,1120000,276.76
-1952-09-03,276.40,278.16,275.95,277.15,1200000,277.15
-1952-09-02,275.10,277.25,275.10,276.40,970000,276.40
-1952-08-29,274.41,275.93,274.12,275.04,890000,275.04
-1952-08-28,273.84,275.28,273.35,274.41,980000,274.41
-1952-08-27,273.17,274.33,272.72,273.84,930000,273.84
-1952-08-26,273.57,274.37,272.28,273.17,890000,273.17
-1952-08-25,274.43,274.61,272.86,273.57,840000,273.57
-1952-08-22,274.45,275.24,273.74,274.43,910000,274.43
-1952-08-21,274.35,275.24,273.43,274.45,800000,274.45
-1952-08-20,274.14,275.62,273.41,274.35,960000,274.35
-1952-08-19,274.31,275.06,272.95,274.14,980000,274.14
-1952-08-18,277.19,277.19,273.90,274.31,1090000,274.31
-1952-08-15,277.75,278.61,276.54,277.37,890000,277.37
-1952-08-14,277.88,278.75,277.04,277.75,930000,277.75
-1952-08-13,278.14,278.81,276.62,277.88,990000,277.88
-1952-08-12,280.03,280.03,277.39,278.14,1110000,278.14
-1952-08-11,279.84,281.47,279.15,280.29,1160000,280.29
-1952-08-08,279.38,280.92,278.49,279.84,1170000,279.84
-1952-08-07,279.07,280.09,278.34,279.38,1180000,279.38
-1952-08-06,279.50,280.21,277.88,279.07,1140000,279.07
-1952-08-05,279.87,280.03,277.96,279.50,1050000,279.50
-1952-08-04,279.80,280.51,278.59,279.87,950000,279.87
-1952-08-01,279.56,280.49,278.81,279.80,1050000,279.80
-1952-07-31,279.24,280.25,278.34,279.56,1230000,279.56
-1952-07-30,278.57,280.07,277.78,279.24,1240000,279.24
-1952-07-29,277.94,279.40,277.17,278.57,1010000,278.57
-1952-07-28,277.71,278.95,276.92,277.94,1030000,277.94
-1952-07-25,279.26,279.76,277.02,277.71,1130000,277.71
-1952-07-24,277.63,280.05,277.63,279.26,1270000,279.26
-1952-07-23,275.95,278.28,275.64,277.63,1020000,277.63
-1952-07-22,274.91,276.54,274.14,275.95,910000,275.95
-1952-07-21,273.90,275.54,273.17,274.91,780000,274.91
-1952-07-18,275.62,275.85,273.11,273.90,1020000,273.90
-1952-07-17,276.76,277.17,274.95,275.62,1010000,275.62
-1952-07-16,276.76,278.02,275.83,276.76,1120000,276.76
-1952-07-15,275.08,277.35,274.81,276.76,1220000,276.76
-1952-07-14,274.22,276.07,274.06,275.08,1090000,275.08
-1952-07-11,272.58,274.89,272.28,274.22,1040000,274.22
-1952-07-10,273.25,273.80,271.73,272.58,1010000,272.58
-1952-07-09,274.43,275.62,272.93,273.25,1120000,273.25
-1952-07-08,274.20,275.10,273.51,274.43,850000,274.43
-1952-07-07,274.95,275.58,273.27,274.20,1080000,274.20
-1952-07-03,274.87,275.64,273.59,274.95,1150000,274.95
-1952-07-02,275.46,276.09,273.86,274.87,1320000,274.87
-1952-07-01,274.26,276.25,273.94,275.46,1450000,275.46
-1952-06-30,272.44,274.97,272.30,274.26,1380000,274.26
-1952-06-27,271.24,272.95,270.77,272.44,1210000,272.44
-1952-06-26,270.45,271.85,269.88,271.24,1190000,271.24
-1952-06-25,269.92,270.98,268.75,270.45,1230000,270.45
-1952-06-24,269.50,270.47,268.81,269.92,1200000,269.92
-1952-06-23,270.19,271.28,268.64,269.50,1200000,269.50
-1952-06-20,269.54,270.84,268.89,270.19,1190000,270.19
-1952-06-19,269.09,270.59,268.40,269.54,1320000,269.54
-1952-06-18,268.03,269.48,267.63,269.09,1270000,269.09
-1952-06-17,267.83,268.68,266.80,268.03,920000,268.03
-1952-06-16,268.56,269.15,267.28,267.83,980000,267.83
-1952-06-13,267.91,269.17,267.28,268.56,1130000,268.56
-1952-06-12,267.93,269.03,266.90,267.91,1370000,267.91
-1952-06-11,267.67,268.52,266.33,267.93,1190000,267.93
-1952-06-10,269.15,269.15,266.76,267.67,1220000,267.67
-1952-06-09,268.03,269.92,267.67,269.15,1270000,269.15
-1952-06-06,266.29,268.95,266.21,268.03,1520000,268.03
-1952-06-05,263.77,266.80,263.77,266.29,1410000,266.29
-1952-06-04,262.09,264.20,261.91,263.67,1200000,263.67
-1952-06-03,262.31,262.82,260.83,262.09,940000,262.09
-1952-06-02,262.94,264.61,261.48,262.31,1190000,262.31
-1952-05-29,262.78,263.51,261.62,262.94,1100000,262.94
-1952-05-28,263.92,264.54,262.25,262.78,1130000,262.78
-1952-05-27,264.22,265.17,262.82,263.92,1040000,263.92
-1952-05-26,263.23,264.87,262.62,264.22,940000,264.22
-1952-05-23,263.33,264.59,262.54,263.27,1150000,263.27
-1952-05-22,261.78,264.02,261.54,263.33,1360000,263.33
-1952-05-21,261.26,262.78,260.89,261.78,1210000,261.78
-1952-05-20,260.06,262.66,259.51,261.26,1150000,261.26
-1952-05-19,259.88,261.12,259.15,260.06,780000,260.06
-1952-05-16,260.10,260.93,259.00,259.82,910000,259.82
-1952-05-15,260.99,261.07,258.66,260.10,1050000,260.10
-1952-05-14,261.99,262.62,260.26,260.99,950000,260.99
-1952-05-13,261.72,263.04,260.87,261.99,890000,261.99
-1952-05-12,262.50,262.86,260.83,261.72,800000,261.72
-1952-05-09,262.39,263.47,260.99,262.74,960000,262.74
-1952-05-08,261.99,263.77,261.58,262.39,1230000,262.39
-1952-05-07,261.01,262.70,259.96,261.99,1120000,261.99
-1952-05-06,261.54,262.29,260.02,261.01,1120000,261.01
-1952-05-05,260.55,261.95,259.35,261.54,860000,261.54
-1952-05-02,257.67,260.93,257.67,260.00,1300000,260.00
-1952-05-01,257.44,257.44,254.70,256.35,1400000,256.35
-1952-04-30,259.34,259.39,257.06,257.63,1000000,257.63
-1952-04-29,259.95,260.52,258.19,259.34,1170000,259.34
-1952-04-28,260.27,260.96,258.65,259.95,980000,259.95
-1952-04-25,258.86,260.08,257.88,259.80,1240000,259.80
-1952-04-24,259.97,260.26,257.04,258.86,1580000,258.86
-1952-04-23,261.10,261.56,259.41,259.97,1090000,259.97
-1952-04-22,261.63,263.03,260.64,261.10,1240000,261.10
-1952-04-21,260.14,262.50,259.60,261.63,1110000,261.63
-1952-04-18,259.85,261.88,258.84,260.52,1240000,260.52
-1952-04-17,261.48,261.60,258.40,259.85,1620000,259.85
-1952-04-16,261.29,263.05,260.03,261.48,1400000,261.48
-1952-04-15,264.10,264.29,260.33,261.29,1720000,261.29
-1952-04-14,266.29,267.11,263.24,264.10,1790000,264.10
-1952-04-10,265.04,266.96,264.31,265.75,1130000,265.75
-1952-04-09,265.29,266.09,263.89,265.04,980000,265.04
-1952-04-08,263.38,265.88,262.57,265.29,1090000,265.29
-1952-04-07,265.31,265.31,262.44,263.38,1230000,263.38
-1952-04-04,266.80,266.86,264.45,265.62,1190000,265.62
-1952-04-03,267.03,267.87,265.81,266.80,1280000,266.80
-1952-04-02,267.22,268.08,265.79,267.03,1260000,267.03
-1952-04-01,269.46,269.81,266.42,267.22,1720000,267.22
-1952-03-31,269.00,270.40,267.17,269.46,1680000,269.46
-1952-03-28,265.21,267.76,265.06,266.96,1560000,266.96
-1952-03-27,263.87,265.88,263.20,265.21,1370000,265.21
-1952-03-26,264.28,265.06,262.82,263.87,1030000,263.87
-1952-03-25,265.52,265.52,263.72,264.28,1060000,264.28
-1952-03-24,265.69,266.48,264.58,265.60,1040000,265.60
-1952-03-21,265.33,267.05,264.93,265.62,1290000,265.62
-1952-03-20,264.37,266.23,263.70,265.33,1240000,265.33
-1952-03-19,264.10,265.16,262.80,264.37,1090000,264.37
-1952-03-18,264.08,265.08,262.59,264.10,1170000,264.10
-1952-03-17,264.43,265.48,263.26,264.08,1150000,264.08
-1952-03-14,264.24,265.46,262.50,264.05,1350000,264.05
-1952-03-13,263.78,265.62,262.65,264.24,1270000,264.24
-1952-03-12,262.76,264.56,261.75,263.78,1310000,263.78
-1952-03-11,262.76,263.80,261.25,262.76,1210000,262.76
-1952-03-10,264.14,264.64,262.32,262.76,1170000,262.76
-1952-03-07,264.03,264.89,262.53,263.87,1410000,263.87
-1952-03-06,264.66,265.04,262.72,264.03,1210000,264.03
-1952-03-05,263.95,266.17,263.61,264.66,1380000,264.66
-1952-03-04,260.35,264.24,260.35,263.95,1570000,263.95
-1952-03-03,260.27,261.17,258.95,260.08,1020000,260.08
-1952-02-29,260.49,261.46,259.36,260.08,1000000,260.08
-1952-02-28,259.68,261.79,259.28,260.49,1150000,260.49
-1952-02-27,259.30,260.49,257.44,259.68,1260000,259.68
-1952-02-26,260.58,260.98,258.69,259.30,1080000,259.30
-1952-02-25,261.40,262.86,259.89,260.58,1200000,260.58
-1952-02-21,258.49,261.63,258.49,259.60,1360000,259.60
-1952-02-20,261.37,261.46,257.46,258.49,1970000,258.49
-1952-02-19,265.14,265.14,260.93,261.37,1630000,261.37
-1952-02-18,266.30,266.94,264.35,265.35,1140000,265.35
-1952-02-15,265.88,267.57,265.29,266.27,1200000,266.27
-1952-02-14,266.21,266.67,264.54,265.88,1340000,265.88
-1952-02-13,268.37,268.37,265.52,266.21,1300000,266.21
-1952-02-11,269.83,269.88,267.57,268.45,1140000,268.45
-1952-02-08,268.35,270.48,267.61,269.85,1350000,269.85
-1952-02-07,268.77,269.50,267.05,268.35,1170000,268.35
-1952-02-06,269.04,270.27,267.38,268.77,1310000,268.77
-1952-02-05,269.79,270.17,266.80,269.04,1590000,269.04
-1952-02-04,272.51,272.64,268.79,269.79,1640000,269.79
-1952-02-01,270.69,272.91,269.94,271.68,1350000,271.68
-1952-01-31,270.71,272.18,268.05,270.69,1810000,270.69
-1952-01-30,274.00,275.38,270.53,270.71,1880000,270.71
-1952-01-29,274.17,275.44,272.91,274.00,1730000,274.00
-1952-01-28,273.69,275.13,273.00,274.17,1590000,274.17
-1952-01-25,273.90,275.07,272.43,273.41,1650000,273.41
-1952-01-24,274.27,275.19,272.68,273.90,1570000,273.90
-1952-01-23,275.40,275.95,273.44,274.27,1680000,274.27
-1952-01-22,274.10,276.26,273.58,275.40,1920000,275.40
-1952-01-21,272.93,274.55,272.32,274.10,1730000,274.10
-1952-01-18,271.91,272.69,271.03,272.10,1740000,272.10
-1952-01-17,271.13,273.00,270.53,271.91,1590000,271.91
-1952-01-16,270.46,272.28,269.27,271.13,1430000,271.13
-1952-01-15,271.59,272.09,269.44,270.46,1340000,270.46
-1952-01-14,270.73,272.70,270.36,271.59,1510000,271.59
-1952-01-11,269.46,271.20,268.74,270.31,1760000,270.31
-1952-01-10,268.14,271.09,268.14,269.46,1520000,269.46
-1952-01-09,268.66,270.04,266.34,268.08,1370000,268.08
-1952-01-08,270.34,270.98,268.14,268.66,1390000,268.66
-1952-01-07,271.26,272.60,269.94,270.34,1540000,270.34
-1952-01-04,270.38,271.95,269.73,271.03,1480000,271.03
-1952-01-03,269.86,271.28,268.58,270.38,1220000,270.38
-1952-01-02,269.23,271.01,268.24,269.86,1070000,269.86
-1951-12-31,268.52,270.00,267.84,269.23,1440000,269.23
-1951-12-28,266.74,269.02,266.30,268.18,1470000,268.18
-1951-12-27,264.06,267.26,263.85,266.74,1460000,266.74
-1951-12-26,265.79,266.67,263.26,264.06,1520000,264.06
-1951-12-24,265.94,266.69,264.91,265.79,680000,265.79
-1951-12-21,267.45,267.78,265.37,266.34,1250000,266.34
-1951-12-20,267.61,268.91,266.42,267.45,1340000,267.45
-1951-12-19,266.61,268.93,265.92,267.61,1510000,267.61
-1951-12-18,265.79,267.45,265.14,266.61,1290000,266.61
-1951-12-17,265.48,266.71,264.50,265.79,1220000,265.79
-1951-12-14,265.81,267.07,264.60,265.71,1360000,265.71
-1951-12-13,266.09,266.92,264.56,265.81,1380000,265.81
-1951-12-12,265.77,267.24,264.33,266.09,1280000,266.09
-1951-12-11,267.38,267.68,265.14,265.77,1360000,265.77
-1951-12-10,266.90,268.45,266.07,267.38,1340000,267.38
-1951-12-07,266.23,268.95,265.96,266.99,1990000,266.99
-1951-12-06,263.85,266.90,263.85,266.23,1840000,266.23
-1951-12-05,264.29,265.21,262.71,263.72,1330000,263.72
-1951-12-04,263.24,265.19,262.48,264.29,1280000,264.29
-1951-12-03,262.29,264.77,261.73,263.24,1220000,263.24
-1951-11-30,258.96,261.92,258.68,261.27,1530000,261.27
-1951-11-29,258.64,259.93,257.29,258.96,1070000,258.96
-1951-11-28,259.46,260.43,258.12,258.64,1150000,258.64
-1951-11-27,257.47,260.36,257.47,259.46,1310000,259.46
-1951-11-26,255.95,258.38,255.20,257.44,1180000,257.44
-1951-11-23,258.72,258.89,255.93,256.95,1210000,256.95
-1951-11-21,259.30,260.15,258.16,258.72,1090000,258.72
-1951-11-20,259.70,260.04,257.57,259.30,1130000,259.30
-1951-11-19,260.82,261.36,258.77,259.70,1030000,259.70
-1951-11-16,260.91,261.06,259.00,260.39,1140000,260.39
-1951-11-15,261.27,262.29,260.32,260.91,1200000,260.91
-1951-11-14,260.41,262.01,259.85,261.27,1220000,261.27
-1951-11-13,261.29,262.18,259.39,260.41,1160000,260.41
-1951-11-09,257.81,261.21,257.81,259.91,1470000,259.91
-1951-11-08,257.14,258.35,254.91,257.14,1410000,257.14
-1951-11-07,259.76,260.37,256.58,257.14,1490000,257.14
-1951-11-05,259.57,262.10,258.59,259.76,1130000,259.76
-1951-11-02,264.06,264.37,261.01,261.94,1230000,261.94
-1951-11-01,262.35,265.82,261.86,264.06,1430000,264.06
-1951-10-31,260.52,263.15,258.44,262.35,1490000,262.35
-1951-10-30,260.43,263.46,259.69,260.52,1530000,260.52
-1951-10-29,258.53,261.12,256.39,260.43,1780000,260.43
-1951-10-26,264.17,264.26,260.08,262.27,1710000,262.27
-1951-10-25,264.95,266.20,262.66,264.17,1360000,264.17
-1951-10-24,263.50,266.79,263.22,264.95,1670000,264.95
-1951-10-23,262.29,264.80,259.76,263.50,2110000,263.50
-1951-10-22,265.90,265.90,259.46,262.29,2690000,262.29
-1951-10-19,273.51,274.10,269.23,269.68,1990000,269.68
-1951-10-18,273.53,274.75,272.22,273.51,1450000,273.51
-1951-10-17,274.40,275.24,272.86,273.53,1460000,273.53
-1951-10-16,275.74,276.02,272.50,274.40,1730000,274.40
-1951-10-15,275.13,276.93,274.25,275.74,1720000,275.74
-1951-10-11,272.76,274.68,271.80,274.10,1760000,274.10
-1951-10-10,273.38,274.47,271.46,272.76,1320000,272.76
-1951-10-09,275.14,275.26,272.65,273.38,1750000,273.38
-1951-10-08,275.53,276.59,274.23,275.14,1860000,275.14
-1951-10-05,275.35,277.02,274.21,275.63,2080000,275.63
-1951-10-04,275.87,276.93,274.49,275.35,1810000,275.35
-1951-10-03,274.34,277.30,274.29,275.87,2780000,275.87
-1951-10-02,272.56,275.42,272.13,274.34,1870000,274.34
-1951-10-01,271.16,273.25,270.23,272.56,1330000,272.56
-1951-09-28,271.31,272.24,269.66,271.16,1390000,271.16
-1951-09-27,272.24,272.93,269.77,271.31,1540000,271.31
-1951-09-26,272.24,273.67,270.88,272.24,1520000,272.24
-1951-09-25,270.77,273.51,270.05,272.24,1740000,272.24
-1951-09-24,271.83,271.83,269.08,270.77,1630000,270.77
-1951-09-21,274.10,274.10,270.21,272.11,2180000,272.11
-1951-09-20,274.27,276.02,272.58,274.10,2100000,274.10
-1951-09-19,274.38,276.09,273.08,274.27,2070000,274.27
-1951-09-18,275.09,275.63,271.91,274.38,2030000,274.38
-1951-09-17,276.06,277.12,274.12,275.09,1800000,275.09
-1951-09-14,276.37,277.51,274.01,276.06,2170000,276.06
-1951-09-13,275.31,277.15,274.34,276.37,2350000,276.37
-1951-09-12,273.88,276.56,273.32,275.31,2180000,275.31
-1951-09-11,275.25,276.24,272.63,273.88,2040000,273.88
-1951-09-10,273.89,276.63,273.62,275.25,2190000,275.25
-1951-09-07,272.28,274.54,271.53,273.89,1970000,273.89
-1951-09-06,272.48,273.98,271.23,272.28,2150000,272.28
-1951-09-05,270.63,273.11,270.25,272.48,1850000,272.48
-1951-09-04,270.25,272.28,269.49,270.63,1520000,270.63
-1951-08-31,269.94,271.64,268.58,270.25,1530000,270.25
-1951-08-30,268.18,270.68,267.98,269.94,1950000,269.94
-1951-08-29,265.56,268.62,265.39,268.18,1520000,268.18
-1951-08-28,265.59,266.81,264.42,265.56,1280000,265.56
-1951-08-27,266.30,267.06,264.54,265.59,1080000,265.59
-1951-08-24,265.65,267.53,264.94,266.30,1210000,266.30
-1951-08-23,264.07,266.26,262.89,265.65,1230000,265.65
-1951-08-22,265.30,265.56,262.80,264.07,1130000,264.07
-1951-08-21,266.19,267.66,264.47,265.30,1400000,265.30
-1951-08-20,266.17,267.42,264.98,266.19,1130000,266.19
-1951-08-17,265.48,267.44,264.54,266.17,1620000,266.17
-1951-08-16,264.27,266.63,263.78,265.48,1750000,265.48
-1951-08-15,262.88,264.72,262.04,264.27,1340000,264.27
-1951-08-14,263.06,263.98,261.57,262.88,1180000,262.88
-1951-08-13,261.92,264.76,261.26,263.06,1320000,263.06
-1951-08-10,262.69,263.26,260.67,261.92,1260000,261.92
-1951-08-09,263.73,264.43,261.77,262.69,1500000,262.69
-1951-08-08,264.94,265.52,262.24,263.73,1410000,263.73
-1951-08-07,265.21,266.52,263.85,264.94,1810000,264.94
-1951-08-06,262.98,265.72,261.88,265.21,1600000,265.21
-1951-08-03,262.89,264.78,261.25,262.98,1570000,262.98
-1951-08-02,260.05,264.05,260.05,262.89,2130000,262.89
-1951-08-01,257.86,260.72,256.81,259.89,1680000,259.89
-1951-07-31,260.30,260.30,256.64,257.86,1550000,257.86
-1951-07-30,259.23,262.21,258.89,260.70,1600000,260.70
-1951-07-27,259.09,259.87,256.92,259.23,1450000,259.23
-1951-07-26,258.11,259.94,256.46,259.09,1480000,259.09
-1951-07-25,258.94,260.79,257.33,258.11,1870000,258.11
-1951-07-24,255.68,259.40,255.36,258.94,1740000,258.94
-1951-07-23,253.73,256.35,253.44,255.68,1320000,255.68
-1951-07-20,253.75,255.48,252.78,253.73,1390000,253.73
-1951-07-19,253.67,254.56,252.24,253.75,1120000,253.75
-1951-07-18,253.89,255.18,252.84,253.67,1370000,253.67
-1951-07-17,252.31,254.18,251.05,253.89,1280000,253.89
-1951-07-16,254.32,254.98,251.72,252.31,1200000,252.31
-1951-07-13,252.59,255.36,252.39,254.32,1320000,254.32
-1951-07-12,250.97,253.11,250.70,252.59,1050000,252.59
-1951-07-11,250.00,251.75,249.31,250.97,970000,250.97
-1951-07-10,250.65,251.41,249.09,250.00,990000,250.00
-1951-07-09,250.01,252.10,249.20,250.65,1110000,250.65
-1951-07-06,250.27,251.30,248.78,250.01,1170000,250.01
-1951-07-05,247.01,250.90,247.01,250.27,1410000,250.27
-1951-07-03,244.07,246.77,244.07,245.92,1250000,245.92
-1951-07-02,242.64,244.92,241.06,243.98,1350000,243.98
-1951-06-29,244.00,244.36,240.72,242.64,1730000,242.64
-1951-06-28,246.84,247.22,242.57,244.00,1940000,244.00
-1951-06-27,246.28,247.98,244.90,246.84,1360000,246.84
-1951-06-26,245.30,247.44,244.29,246.28,1260000,246.28
-1951-06-25,245.99,245.99,241.84,245.30,2440000,245.30
-1951-06-22,250.21,250.21,246.66,247.86,1340000,247.86
-1951-06-21,251.57,251.57,249.20,250.43,1100000,250.43
-1951-06-20,253.53,254.47,251.41,251.86,1120000,251.86
-1951-06-19,253.80,254.54,251.70,253.53,1100000,253.53
-1951-06-18,254.03,255.23,252.55,253.80,1050000,253.80
-1951-06-15,252.46,255.05,252.26,254.03,1370000,254.03
-1951-06-14,250.21,253.11,250.21,252.46,1300000,252.46
-1951-06-13,250.57,251.35,248.73,250.03,1060000,250.03
-1951-06-12,251.56,252.64,249.75,250.57,1200000,250.57
-1951-06-11,250.39,252.77,249.76,251.56,1220000,251.56
-1951-06-08,250.81,251.27,249.19,250.39,1000000,250.39
-1951-06-07,249.64,251.73,249.24,250.81,1340000,250.81
-1951-06-06,247.66,250.73,247.66,249.64,1200000,249.64
-1951-06-05,246.79,248.15,244.91,247.59,1180000,247.59
-1951-06-04,249.14,249.14,246.11,246.79,1100000,246.79
-1951-06-01,249.65,250.15,247.85,249.33,9810000,249.33
-1951-05-31,248.44,251.68,248.32,249.65,1220000,249.65
-1951-05-29,247.03,249.52,246.43,248.44,1190000,248.44
-1951-05-28,245.83,248.20,245.60,247.03,1240000,247.03
-1951-05-25,245.78,247.57,244.84,245.27,1210000,245.27
-1951-05-24,246.94,246.94,241.89,245.78,2580000,245.78
-1951-05-23,249.30,249.79,246.58,247.03,1540000,247.03
-1951-05-22,249.98,251.72,248.49,249.30,1440000,249.30
-1951-05-21,250.63,251.36,248.03,249.98,1580000,249.98
-1951-05-18,254.57,255.03,250.01,250.10,1660000,250.10
-1951-05-17,252.40,255.49,252.40,254.57,1370000,254.57
-1951-05-16,252.08,254.19,250.81,252.14,1660000,252.14
-1951-05-15,256.08,256.24,251.02,252.08,2020000,252.08
-1951-05-14,257.26,258.10,255.45,256.08,1250000,256.08
-1951-05-11,260.07,260.93,257.91,258.56,1640000,258.56
-1951-05-10,261.49,261.83,259.14,260.07,1660000,260.07
-1951-05-09,261.10,262.82,260.24,261.49,1960000,261.49
-1951-05-08,261.23,262.05,259.31,261.10,1600000,261.10
-1951-05-07,261.76,262.48,259.60,261.23,1580000,261.23
-1951-05-04,263.13,264.44,261.74,262.77,2050000,262.77
-1951-05-03,261.27,263.69,260.31,263.13,2060000,263.13
-1951-05-02,260.71,262.41,259.70,261.27,1900000,261.27
-1951-05-01,259.13,261.80,258.23,260.71,1760000,260.71
-1951-04-30,259.08,260.83,257.99,259.13,1790000,259.13
-1951-04-27,257.33,259.95,257.33,258.96,2120000,258.96
-1951-04-26,254.92,257.98,254.92,257.13,1800000,257.13
-1951-04-25,254.19,255.38,252.53,254.75,1520000,254.75
-1951-04-24,255.12,255.67,253.48,254.19,1420000,254.19
-1951-04-23,255.02,255.92,253.94,255.12,1160000,255.12
-1951-04-20,254.92,255.51,253.44,254.82,940000,254.82
-1951-04-19,256.01,256.53,253.99,254.92,1520000,254.92
-1951-04-18,255.34,257.30,254.53,256.01,1780000,256.01
-1951-04-17,254.85,256.06,253.88,255.34,1470000,255.34
-1951-04-16,256.18,257.03,254.05,254.85,1730000,254.85
-1951-04-13,251.76,255.31,251.76,254.75,2120000,254.75
-1951-04-12,249.76,252.10,249.37,251.66,1530000,251.66
-1951-04-11,250.42,250.57,247.70,249.76,1420000,249.76
-1951-04-10,250.57,251.88,249.52,250.42,1280000,250.42
-1951-04-09,250.28,251.46,249.62,250.57,1110000,250.57
-1951-04-06,250.32,252.22,250.06,250.83,1450000,250.83
-1951-04-05,247.75,250.91,247.75,250.32,1790000,250.32
-1951-04-04,246.02,247.80,244.98,247.31,1300000,247.31
-1951-04-03,246.63,247.69,245.46,246.02,1220000,246.02
-1951-04-02,247.82,247.82,245.02,246.63,1280000,246.63
-1951-03-30,246.95,249.25,246.95,248.53,1150000,248.53
-1951-03-29,246.19,248.28,245.95,246.90,1300000,246.90
-1951-03-28,248.74,249.15,245.34,246.19,1770000,246.19
-1951-03-27,249.13,250.81,248.18,248.74,1250000,248.74
-1951-03-26,248.14,249.79,247.04,249.13,1230000,249.13
-1951-03-22,249.37,251.57,249.04,250.52,1290000,250.52
-1951-03-21,247.87,250.39,247.45,249.37,1310000,249.37
-1951-03-20,248.08,248.64,246.53,247.87,1020000,247.87
-1951-03-19,249.03,249.45,246.45,248.08,1120000,248.08
-1951-03-16,245.88,249.33,245.88,248.62,1660000,248.62
-1951-03-15,243.95,245.80,242.06,244.85,2070000,244.85
-1951-03-14,245.88,246.56,243.13,243.95,2110000,243.95
-1951-03-13,249.35,249.35,244.61,245.88,2330000,245.88
-1951-03-12,252.00,252.00,248.70,249.89,1640000,249.89
-1951-03-09,252.81,254.27,251.98,252.75,1610000,252.75
-1951-03-08,252.45,253.68,251.55,252.81,1440000,252.81
-1951-03-07,251.55,253.41,250.71,252.45,1770000,252.45
-1951-03-06,251.82,252.37,250.43,251.55,1490000,251.55
-1951-03-05,253.43,253.43,250.23,251.82,1690000,251.82
-1951-03-02,252.80,254.42,252.22,253.61,1570000,253.61
-1951-03-01,252.05,253.73,250.96,252.80,1610000,252.80
-1951-02-28,251.34,253.14,249.70,252.05,1640000,252.05
-1951-02-27,253.18,253.73,250.81,251.34,1680000,251.34
-1951-02-26,252.93,254.47,251.57,253.18,1650000,253.18
-1951-02-23,252.28,253.59,251.21,252.18,1540000,252.18
-1951-02-21,251.12,253.53,250.77,252.28,1670000,252.28
-1951-02-20,251.67,252.15,248.78,251.12,2010000,251.12
-1951-02-19,254.70,255.08,251.29,251.67,1910000,251.67
-1951-02-16,253.61,255.58,253.10,254.90,1860000,254.90
-1951-02-15,255.10,255.30,253.13,253.61,1700000,253.61
-1951-02-14,255.71,256.34,253.34,255.10,2050000,255.10
-1951-02-13,254.80,257.06,254.34,255.71,2400000,255.71
-1951-02-09,253.34,255.58,253.08,254.24,2550000,254.24
-1951-02-08,252.70,254.27,250.92,253.34,2120000,253.34
-1951-02-07,254.47,254.47,251.69,252.70,2020000,252.70
-1951-02-06,255.17,255.30,252.25,254.62,2370000,254.62
-1951-02-05,253.92,256.06,252.91,255.17,2680000,255.17
-1951-02-02,250.76,253.71,250.66,252.78,3030000,252.78
-1951-02-01,248.83,251.17,247.04,250.76,2380000,250.76
-1951-01-31,249.58,250.56,247.43,248.83,2340000,248.83
-1951-01-30,248.64,250.46,247.49,249.58,2480000,249.58
-1951-01-29,247.36,249.48,246.50,248.64,2630000,248.64
-1951-01-26,242.22,245.42,241.86,244.51,2230000,244.51
-1951-01-25,244.08,244.08,240.11,242.22,2520000,242.22
-1951-01-24,245.30,246.28,243.45,244.36,1990000,244.36
-1951-01-23,244.33,245.87,242.40,245.30,2080000,245.30
-1951-01-22,246.91,247.48,242.70,244.33,2570000,244.33
-1951-01-19,247.39,248.62,245.45,246.76,3170000,246.76
-1951-01-18,248.01,249.07,245.60,247.39,3490000,247.39
-1951-01-17,246.65,248.95,243.76,248.01,3880000,248.01
-1951-01-16,245.02,247.64,244.76,246.65,3740000,246.65
-1951-01-15,243.61,245.75,241.47,245.02,2830000,245.02
-1951-01-12,244.72,245.87,242.77,243.81,2950000,243.81
-1951-01-11,240.40,245.20,240.35,244.72,3490000,244.72
-1951-01-10,243.50,244.61,239.12,240.40,3270000,240.40
-1951-01-09,242.29,245.10,242.02,243.50,3800000,243.50
-1951-01-08,240.68,243.05,239.62,242.29,2780000,242.29
-1951-01-05,240.86,242.60,240.15,240.96,3390000,240.96
-1951-01-04,238.99,241.71,237.64,240.86,3390000,240.86
-1951-01-03,239.92,241.29,237.43,238.99,3370000,238.99
-1951-01-02,235.41,240.46,234.93,239.92,3030000,239.92
-1950-12-29,235.34,236.52,233.63,235.42,3440000,235.42
-1950-12-28,234.21,236.25,233.02,235.34,3560000,235.34
-1950-12-27,230.30,234.64,230.30,234.21,2940000,234.21
-1950-12-26,231.54,232.41,228.44,229.65,2660000,229.65
-1950-12-22,230.43,232.94,229.65,231.54,2720000,231.54
-1950-12-21,231.20,232.02,229.06,230.43,3990000,230.43
-1950-12-20,231.54,232.27,229.10,231.20,3510000,231.20
-1950-12-19,231.01,233.05,229.77,231.54,3650000,231.54
-1950-12-18,228.58,233.27,228.58,231.01,4500000,231.01
-1950-12-15,225.89,226.57,223.19,224.70,2420000,224.70
-1950-12-14,228.82,229.47,224.98,225.89,2660000,225.89
-1950-12-13,229.27,230.35,227.42,228.82,2030000,228.82
-1950-12-12,229.19,231.13,228.13,229.27,2140000,229.27
-1950-12-11,227.30,230.78,227.05,229.19,2600000,229.19
-1950-12-08,225.94,227.33,224.23,226.74,2310000,226.74
-1950-12-07,226.16,227.35,224.41,225.94,1810000,225.94
-1950-12-06,225.44,228.10,224.78,226.16,2010000,226.16
-1950-12-05,222.33,225.97,222.01,225.44,1940000,225.44
-1950-12-04,225.23,225.23,221.31,222.33,2510000,222.33
-1950-12-01,227.60,230.42,227.05,228.89,1870000,228.89
-1950-11-30,226.42,229.70,225.97,227.60,2080000,227.60
-1950-11-29,227.78,227.78,223.82,226.42,2770000,226.42
-1950-11-28,231.34,231.34,227.40,228.61,2970000,228.61
-1950-11-27,235.06,236.09,232.75,234.96,1740000,234.96
-1950-11-24,233.81,236.63,233.81,235.47,2620000,235.47
-1950-11-22,231.16,234.26,230.37,233.81,2730000,233.81
-1950-11-21,231.53,232.64,229.99,231.16,2010000,231.16
-1950-11-20,231.64,233.55,230.48,231.53,2250000,231.53
-1950-11-17,228.94,231.01,228.29,230.27,2130000,230.27
-1950-11-16,229.52,229.75,226.70,228.94,1760000,228.94
-1950-11-15,229.54,230.45,227.98,229.52,1620000,229.52
-1950-11-14,229.44,230.17,227.58,229.54,1780000,229.54
-1950-11-13,229.29,230.83,227.98,229.44,1630000,229.44
-1950-11-10,227.17,229.90,226.74,229.29,1640000,229.29
-1950-11-09,224.25,228.01,224.23,227.17,1760000,227.17
-1950-11-08,222.86,226.55,222.86,224.25,1850000,224.25
-1950-11-06,224.91,224.91,220.59,222.52,2580000,222.52
-1950-11-03,227.25,229.44,226.21,228.10,1560000,228.10
-1950-11-02,225.69,228.74,225.64,227.25,1580000,227.25
-1950-11-01,225.01,226.75,223.07,225.69,1780000,225.69
-1950-10-31,226.42,227.32,223.59,225.01,2010000,225.01
-1950-10-30,228.56,230.05,225.87,226.42,1790000,226.42
-1950-10-27,226.65,228.92,225.77,228.28,1800000,228.28
-1950-10-26,230.85,230.85,225.44,226.65,3000000,226.65
-1950-10-25,231.39,232.75,230.40,231.49,1930000,231.49
-1950-10-24,230.62,231.87,229.55,231.39,1790000,231.39
-1950-10-23,230.88,232.02,229.95,230.62,1850000,230.62
-1950-10-20,230.83,231.41,229.07,230.33,1840000,230.33
-1950-10-19,230.60,232.01,229.62,230.83,2250000,230.83
-1950-10-18,229.26,231.54,229.26,230.60,2410000,230.60
-1950-10-17,227.50,229.74,227.42,229.22,2010000,229.22
-1950-10-16,227.63,228.38,225.39,227.50,1630000,227.50
-1950-10-13,228.97,229.97,227.53,228.54,2030000,228.54
-1950-10-11,227.60,229.92,226.59,228.97,2200000,228.97
-1950-10-10,230.02,230.33,226.79,227.60,1870000,227.60
-1950-10-09,231.81,232.47,228.49,230.02,2330000,230.02
-1950-10-06,229.85,232.50,229.57,231.74,2360000,231.74
-1950-10-05,231.15,232.17,229.16,229.85,2490000,229.85
-1950-10-04,228.89,232.31,228.21,231.15,2920000,231.15
-1950-10-03,228.94,230.86,228.01,228.89,2480000,228.89
-1950-10-02,226.46,229.57,226.46,228.94,2200000,228.94
-1950-09-29,225.93,227.40,225.32,226.36,1800000,226.36
-1950-09-28,225.74,227.69,225.09,225.93,2200000,225.93
-1950-09-27,222.84,226.06,222.00,225.74,2360000,225.74
-1950-09-26,226.06,226.49,222.26,222.84,2280000,222.84
-1950-09-25,226.64,227.51,224.77,226.06,2020000,226.06
-1950-09-22,226.01,228.17,225.61,226.64,2510000,226.64
-1950-09-21,224.33,226.49,223.58,226.01,1650000,226.01
-1950-09-20,225.78,226.49,223.00,224.33,2100000,224.33
-1950-09-19,226.78,226.85,224.40,225.78,1590000,225.78
-1950-09-18,225.85,227.89,225.45,226.78,2040000,226.78
-1950-09-15,224.48,226.32,223.13,225.85,2410000,225.85
-1950-09-14,223.42,225.19,222.71,224.48,2350000,224.48
-1950-09-13,221.18,224.22,221.18,223.42,2600000,223.42
-1950-09-12,218.17,221.19,218.17,220.81,1680000,220.81
-1950-09-11,220.03,220.77,217.44,218.10,1860000,218.10
-1950-09-08,218.52,220.94,218.52,220.03,1960000,220.03
-1950-09-07,218.20,219.20,217.15,218.33,1340000,218.33
-1950-09-06,219.52,219.52,217.38,218.20,1300000,218.20
-1950-09-05,218.42,220.71,217.88,220.02,1250000,220.02
-1950-09-01,217.12,219.00,217.12,218.42,1290000,218.42
-1950-08-31,217.05,217.79,216.21,216.87,1140000,216.87
-1950-08-30,218.29,218.83,216.43,217.05,1490000,217.05
-1950-08-29,218.55,220.20,217.86,218.29,1890000,218.29
-1950-08-28,218.10,219.29,216.81,218.55,1300000,218.55
-1950-08-25,219.45,219.45,217.10,218.10,1610000,218.10
-1950-08-24,221.51,222.17,220.34,221.13,1620000,221.13
-1950-08-23,219.79,221.93,219.48,221.51,1580000,221.51
-1950-08-22,220.21,220.81,218.91,219.79,1550000,219.79
-1950-08-21,219.23,222.12,218.87,220.21,1840000,220.21
-1950-08-18,217.76,219.88,217.26,219.23,1780000,219.23
-1950-08-17,215.82,218.94,215.82,217.76,2170000,217.76
-1950-08-16,215.31,216.58,214.65,215.78,1770000,215.78
-1950-08-15,215.31,216.24,214.11,215.31,1330000,215.31
-1950-08-14,215.03,216.10,213.98,215.31,1280000,215.31
-1950-08-11,216.64,216.89,214.41,215.03,1680000,215.03
-1950-08-10,216.97,217.48,215.56,216.64,1870000,216.64
-1950-08-09,215.44,217.45,214.16,216.97,1760000,216.97
-1950-08-08,215.82,217.53,214.76,215.44,2180000,215.44
-1950-08-07,212.66,216.21,212.48,215.82,1850000,215.82
-1950-08-04,211.26,213.14,210.41,212.66,1600000,212.66
-1950-08-03,211.26,212.28,209.55,211.26,1660000,211.26
-1950-08-02,211.87,213.71,209.78,211.26,1980000,211.26
-1950-08-01,209.56,212.98,209.56,211.87,1970000,211.87
-1950-07-31,208.21,209.85,207.19,209.40,1590000,209.40
-1950-07-28,206.76,209.56,206.76,208.21,2050000,208.21
-1950-07-27,204.39,207.77,204.39,206.37,2300000,206.37
-1950-07-26,203.83,205.68,201.91,204.39,2460000,204.39
-1950-07-25,206.57,206.57,202.99,203.83,2770000,203.83
-1950-07-24,207.65,208.66,205.64,206.95,2300000,206.95
-1950-07-21,207.73,208.89,205.51,207.65,2810000,207.65
-1950-07-20,205.13,208.62,204.41,207.73,3160000,207.73
-1950-07-19,202.08,205.61,202.08,205.13,2430000,205.13
-1950-07-18,198.00,202.42,198.00,201.88,1820000,201.88
-1950-07-17,199.47,199.47,196.44,197.63,1520000,197.63
-1950-07-14,197.89,201.48,197.89,199.83,1900000,199.83
-1950-07-13,199.09,199.69,195.40,197.46,2660000,197.46
-1950-07-12,203.83,203.83,197.44,199.09,3200000,199.09
-1950-07-11,208.09,209.39,203.83,204.60,3250000,204.60
-1950-07-10,208.59,209.42,206.31,208.09,1960000,208.09
-1950-07-07,210.85,211.75,207.78,208.59,1870000,208.59
-1950-07-06,210.03,212.19,209.46,210.85,1570000,210.85
-1950-07-05,208.35,210.92,207.27,210.03,1400000,210.03
-1950-07-03,209.11,209.48,205.92,208.35,1550000,208.35
-1950-06-30,206.72,211.96,206.03,209.11,2660000,209.11
-1950-06-29,214.68,214.74,206.33,206.72,3040000,206.72
-1950-06-28,212.39,216.99,212.39,214.68,2600000,214.68
-1950-06-27,213.91,217.13,206.33,212.22,4860000,212.22
-1950-06-26,220.75,220.75,213.03,213.91,3950000,213.91
-1950-06-23,224.51,225.55,223.57,224.35,1700000,224.35
-1950-06-22,222.53,225.00,222.47,224.51,1830000,224.51
-1950-06-21,220.81,223.07,220.81,222.53,1750000,222.53
-1950-06-20,222.09,222.19,218.99,220.72,1470000,220.72
-1950-06-19,222.71,223.94,221.49,222.09,1290000,222.09
-1950-06-16,222.46,223.67,221.89,222.71,1180000,222.71
-1950-06-15,223.32,224.97,221.79,222.46,1530000,222.46
-1950-06-14,226.02,226.02,222.76,223.32,1650000,223.32
-1950-06-13,228.09,228.09,225.58,226.44,1790000,226.44
-1950-06-12,226.86,229.20,226.40,228.38,1790000,228.38
-1950-06-09,225.52,227.82,225.16,226.86,2130000,226.86
-1950-06-08,223.68,226.21,223.57,225.52,1780000,225.52
-1950-06-07,223.46,225.17,221.82,223.68,1750000,223.68
-1950-06-06,221.76,224.32,218.66,223.46,2250000,223.46
-1950-06-05,223.71,224.12,221.13,221.76,1630000,221.76
-1950-06-02,223.23,224.34,222.53,223.71,1450000,223.71
-1950-06-01,223.42,224.06,222.40,223.23,1580000,223.23
-1950-05-31,222.47,224.18,222.40,223.42,1530000,223.42
-1950-05-29,221.71,223.11,221.16,222.47,1110000,222.47
-1950-05-26,222.44,223.11,221.22,221.93,1330000,221.93
-1950-05-25,222.57,223.10,220.74,222.44,1480000,222.44
-1950-05-24,222.47,224.24,221.83,222.57,1850000,222.57
-1950-05-23,221.55,222.82,220.85,222.47,1460000,222.47
-1950-05-22,222.41,223.14,220.95,221.55,1620000,221.55
-1950-05-19,220.63,222.79,220.23,222.11,2110000,222.11
-1950-05-18,220.60,221.52,219.70,220.63,5240000,220.63
-1950-05-17,219.70,221.48,219.39,220.60,2020000,220.60
-1950-05-16,218.04,220.05,217.86,219.70,1730000,219.70
-1950-05-15,217.78,218.90,216.87,218.04,1220000,218.04
-1950-05-12,218.72,218.96,216.37,217.61,1790000,217.61
-1950-05-11,218.64,219.32,217.26,218.72,1750000,218.72
-1950-05-10,217.41,219.64,217.41,218.64,1880000,218.64
-1950-05-09,216.71,217.86,216.00,217.40,1720000,217.40
-1950-05-08,217.03,217.76,215.72,216.71,1680000,216.71
-1950-05-05,214.87,216.30,214.14,215.72,1800000,215.72
-1950-05-04,216.26,216.71,214.25,214.87,2150000,214.87
-1950-05-03,214.87,217.13,214.30,216.26,2120000,216.26
-1950-05-02,215.81,216.46,214.30,214.87,2250000,214.87
-1950-05-01,214.33,216.35,214.06,215.81,2390000,215.81
-1950-04-28,212.44,214.29,212.16,213.56,2190000,213.56
-1950-04-27,211.72,213.21,210.76,212.44,2070000,212.44
-1950-04-26,212.55,213.05,210.51,211.72,1880000,211.72
-1950-04-25,212.58,213.65,211.50,212.55,1830000,212.55
-1950-04-24,213.90,214.17,211.02,212.58,2310000,212.58
-1950-04-21,213.72,215.09,212.85,214.14,2710000,214.14
-1950-04-20,215.21,215.65,212.67,213.72,2590000,213.72
-1950-04-19,215.05,216.32,214.22,215.21,2950000,215.21
-1950-04-18,214.41,216.04,213.59,215.05,3320000,215.05
-1950-04-17,214.48,215.27,213.18,214.41,2520000,214.41
-1950-04-14,214.14,216.17,214.14,215.31,2750000,215.31
-1950-04-13,213.94,215.40,213.36,214.13,2410000,214.13
-1950-04-12,211.47,214.35,211.18,213.94,2010000,213.94
-1950-04-11,212.29,213.40,210.15,211.47,2010000,211.47
-1950-04-10,212.55,213.60,211.47,212.29,2070000,212.29
-1950-04-06,210.34,212.68,210.26,212.10,2000000,212.10
-1950-04-05,209.05,210.76,208.70,210.34,1430000,210.34
-1950-04-04,208.44,210.19,208.15,209.05,2010000,209.05
-1950-04-03,206.37,208.82,205.93,208.44,1570000,208.44
-1950-03-31,206.43,207.54,205.28,206.05,1880000,206.05
-1950-03-30,208.40,208.42,205.53,206.43,2370000,206.43
-1950-03-29,209.50,209.58,207.77,208.40,2090000,208.40
-1950-03-28,209.10,210.08,207.74,209.50,1780000,209.50
-1950-03-27,210.62,211.22,208.74,209.10,1930000,209.10
-1950-03-24,209.62,210.22,208.01,209.78,1570000,209.78
-1950-03-23,209.31,210.67,208.61,209.62,2020000,209.62
-1950-03-22,208.27,209.72,207.76,209.31,2010000,209.31
-1950-03-21,207.78,209.16,207.38,208.27,1400000,208.27
-1950-03-20,208.09,209.11,207.40,207.78,1430000,207.78
-1950-03-17,207.89,208.92,206.81,207.57,1600000,207.57
-1950-03-16,207.46,209.43,206.92,207.89,2060000,207.89
-1950-03-15,204.85,207.80,204.85,207.46,1830000,207.46
-1950-03-14,203.09,205.10,202.71,204.70,1140000,204.70
-1950-03-13,202.96,203.91,202.09,203.09,1060000,203.09
-1950-03-10,202.33,202.88,201.14,202.44,1260000,202.44
-1950-03-09,203.71,203.95,201.97,202.33,1330000,202.33
-1950-03-08,203.69,204.42,202.69,203.71,1360000,203.71
-1950-03-07,204.88,204.89,202.33,203.69,1590000,203.69
-1950-03-06,204.71,205.65,204.20,204.88,1470000,204.88
-1950-03-03,203.54,204.85,203.09,204.48,1520000,204.48
-1950-03-02,203.62,204.52,202.96,203.54,1340000,203.54
-1950-03-01,203.44,204.02,202.15,203.62,1410000,203.62
-1950-02-28,204.33,204.53,202.82,203.44,1310000,203.44
-1950-02-27,204.15,204.85,203.46,204.33,1410000,204.33
-1950-02-24,203.32,204.87,203.22,204.15,1710000,204.15
-1950-02-23,203.35,203.95,202.31,203.32,1310000,203.32
-1950-02-21,203.47,203.93,202.55,203.35,1260000,203.35
-1950-02-20,203.97,204.26,202.53,203.47,1420000,203.47
-1950-02-17,201.69,203.49,201.13,203.17,1940000,203.17
-1950-02-16,201.93,202.49,200.59,201.69,1920000,201.69
-1950-02-15,202.02,202.60,200.63,201.93,1730000,201.93
-1950-02-14,203.32,203.32,200.75,202.02,2210000,202.02
-1950-02-10,203.80,204.87,202.69,203.49,1790000,203.49
-1950-02-09,202.71,204.67,202.24,203.80,1810000,203.80
-1950-02-08,203.43,203.43,201.60,202.71,1470000,202.71
-1950-02-07,204.40,204.40,202.59,203.53,1360000,203.53
-1950-02-06,205.03,205.39,203.58,204.59,1490000,204.59
-1950-02-03,204.11,205.39,203.55,204.53,2210000,204.53
-1950-02-02,201.89,204.55,201.35,204.11,2040000,204.11
-1950-02-01,201.79,202.96,201.36,201.89,1810000,201.89
-1950-01-31,201.39,202.51,200.82,201.79,1690000,201.79
-1950-01-30,200.08,201.93,199.66,201.39,1640000,201.39
-1950-01-27,198.53,199.58,197.69,199.08,1250000,199.08
-1950-01-26,198.39,199.22,197.54,198.53,1150000,198.53
-1950-01-25,199.32,199.32,196.64,198.39,1700000,198.39
-1950-01-24,200.42,200.42,198.78,199.62,1250000,199.62
-1950-01-23,200.97,201.39,199.43,200.42,1340000,200.42
-1950-01-20,199.80,200.86,199.14,200.13,1440000,200.13
-1950-01-19,199.50,200.49,198.49,199.80,1170000,199.80
-1950-01-18,198.78,200.74,198.35,199.50,1570000,199.50
-1950-01-17,197.17,200.08,197.14,198.78,1790000,198.78
-1950-01-16,196.92,197.75,195.57,197.17,1460000,197.17
-1950-01-13,197.93,197.93,193.94,196.81,3330000,196.81
-1950-01-12,201.61,202.08,197.53,197.93,2970000,197.93
-1950-01-11,201.17,202.42,200.52,201.61,2630000,201.61
-1950-01-10,201.98,202.04,200.13,201.17,2160000,201.17
-1950-01-09,201.94,202.92,200.86,201.98,2520000,201.98
-1950-01-06,200.57,201.62,199.84,200.96,2010000,200.96
-1950-01-05,200.20,201.76,199.69,200.57,2550000,200.57
-1950-01-04,198.89,200.55,198.26,200.20,1890000,200.20
-1950-01-03,200.13,200.20,197.73,198.89,1260000,198.89
-1949-12-30,199.39,200.91,198.97,200.52,2090000,200.52
-1949-12-29,199.59,200.26,198.75,199.39,1820000,199.39
-1949-12-28,198.28,200.19,198.10,199.59,1560000,199.59
-1949-12-27,198.88,199.58,197.73,198.28,1560000,198.28
-1949-12-23,198.52,199.73,197.88,198.88,1470000,198.88
-1949-12-22,196.49,198.91,196.49,198.52,1630000,198.52
-1949-12-21,197.22,197.64,195.79,196.45,1270000,196.45
-1949-12-20,198.17,198.28,196.55,197.22,1330000,197.22
-1949-12-19,197.98,199.15,197.46,198.17,1420000,198.17
-1949-12-16,198.05,199.13,196.90,197.88,1960000,197.88
-1949-12-15,197.51,198.59,196.34,198.05,2070000,198.05
-1949-12-14,196.81,198.10,196.12,197.51,2210000,197.51
-1949-12-13,196.17,197.22,195.22,196.81,2080000,196.81
-1949-12-12,194.68,196.57,194.39,196.17,1780000,196.17
-1949-12-09,194.45,194.99,193.54,194.35,1500000,194.35
-1949-12-08,194.21,195.32,193.61,194.45,1720000,194.45
-1949-12-07,194.59,194.59,192.59,194.21,1630000,194.21
-1949-12-06,194.74,195.25,193.91,194.64,1430000,194.64
-1949-12-05,194.43,195.54,193.69,194.74,1830000,194.74
-1949-12-02,192.71,194.16,191.94,193.63,2020000,193.63
-1949-12-01,191.55,193.11,191.12,192.71,1470000,192.71
-1949-11-30,191.62,192.35,190.68,191.55,1320000,191.55
-1949-11-29,192.24,192.54,190.54,191.62,1310000,191.62
-1949-11-28,193.23,193.43,191.72,192.24,1080000,192.24
-1949-11-25,193.52,194.34,192.27,192.78,1270000,192.78
-1949-11-23,193.23,194.35,192.48,193.52,1460000,193.52
-1949-11-22,192.35,193.65,191.69,193.23,1400000,193.23
-1949-11-21,193.62,193.84,191.72,192.35,1180000,192.35
-1949-11-18,191.77,193.97,191.77,193.41,1690000,193.41
-1949-11-17,189.37,191.82,189.27,191.34,1410000,191.34
-1949-11-16,187.98,190.13,187.83,189.37,1210000,189.37
-1949-11-15,189.25,189.25,186.98,187.98,1250000,187.98
-1949-11-14,190.46,191.08,188.71,189.27,1270000,189.27
-1949-11-10,190.60,191.07,189.65,190.42,1170000,190.42
-1949-11-09,190.89,192.43,190.06,190.60,1510000,190.60
-1949-11-07,191.37,192.05,190.41,190.89,1170000,190.89
-1949-11-04,192.19,192.31,190.57,191.29,1390000,191.29
-1949-11-03,192.96,193.19,191.34,192.19,1370000,192.19
-1949-11-02,191.23,193.63,191.15,192.96,1570000,192.96
-1949-11-01,189.54,191.74,189.25,191.23,1300000,191.23
-1949-10-31,190.36,191.08,189.15,189.54,1140000,189.54
-1949-10-28,190.36,191.44,189.47,190.16,1480000,190.16
-1949-10-27,189.08,191.12,188.96,190.36,1760000,190.36
-1949-10-26,187.70,189.41,187.30,189.08,1620000,189.08
-1949-10-25,186.54,188.01,186.38,187.70,1190000,187.70
-1949-10-24,186.20,187.01,185.58,186.54,1240000,186.54
-1949-10-21,186.64,186.97,185.62,186.20,1290000,186.20
-1949-10-20,187.04,187.65,185.87,186.64,1270000,186.64
-1949-10-19,186.12,187.34,185.81,187.04,1370000,187.04
-1949-10-18,184.72,186.56,184.72,186.12,1220000,186.12
-1949-10-17,186.06,186.06,183.94,184.72,1130000,184.72
-1949-10-14,186.78,187.26,185.47,186.43,1190000,186.43
-1949-10-13,186.74,187.91,186.29,186.78,1790000,186.78
-1949-10-11,185.15,187.04,184.75,186.74,1660000,186.74
-1949-10-10,185.36,185.55,184.49,185.15,1120000,185.15
-1949-10-07,185.37,185.62,183.92,185.27,1280000,185.27
-1949-10-06,184.80,185.99,184.53,185.37,1520000,185.37
-1949-10-05,184.13,185.38,184.00,184.80,1470000,184.80
-1949-10-04,182.68,184.39,182.68,184.13,1310000,184.13
-1949-10-03,181.98,183.05,180.90,182.67,770000,182.67
-1949-09-30,182.43,183.16,181.71,182.51,1100000,182.51
-1949-09-29,181.31,183.42,181.00,182.43,1380000,182.43
-1949-09-28,180.06,182.09,180.06,181.31,1300000,181.31
-1949-09-27,180.54,180.54,178.61,179.63,1070000,179.63
-1949-09-26,181.30,182.25,180.36,180.86,1020000,180.86
-1949-09-23,180.83,181.74,180.17,181.30,1290000,181.30
-1949-09-22,180.02,181.37,179.87,180.83,1280000,180.83
-1949-09-21,178.04,180.42,177.71,180.02,1150000,180.02
-1949-09-20,180.91,180.91,177.63,178.04,1350000,178.04
-1949-09-19,182.13,182.13,180.18,181.42,1300000,181.42
-1949-09-16,182.16,182.76,181.34,182.32,1160000,182.32
-1949-09-15,182.71,182.71,181.00,182.16,1160000,182.16
-1949-09-14,183.29,184.09,182.61,183.14,1700000,183.14
-1949-09-13,181.27,183.51,181.27,183.29,1720000,183.29
-1949-09-12,180.24,181.60,180.17,181.15,1080000,181.15
-1949-09-09,180.53,180.86,179.89,180.24,770000,180.24
-1949-09-08,180.21,181.30,179.99,180.53,940000,180.53
-1949-09-07,179.20,180.54,178.91,180.21,850000,180.21
-1949-09-06,179.38,179.85,178.65,179.20,640000,179.20
-1949-09-02,179.52,179.91,178.97,179.38,750000,179.38
-1949-09-01,178.66,180.20,178.54,179.52,840000,179.52
-1949-08-31,178.69,179.05,177.77,178.66,720000,178.66
-1949-08-30,177.75,179.04,177.60,178.69,590000,178.69
-1949-08-29,179.08,179.08,177.45,177.75,640000,177.75
-1949-08-26,179.01,179.69,178.42,179.24,660000,179.24
-1949-08-25,178.78,179.52,178.44,179.01,730000,179.01
-1949-08-24,178.51,179.15,177.86,178.78,720000,178.78
-1949-08-23,180.18,180.18,178.28,178.51,840000,178.51
-1949-08-22,181.16,181.33,180.06,180.53,710000,180.53
-1949-08-19,182.02,182.38,180.83,181.16,850000,181.16
-1949-08-18,181.59,182.67,181.44,182.02,1180000,182.02
-1949-08-17,180.00,181.78,179.80,181.59,1440000,181.59
-1949-08-16,178.97,180.40,178.71,180.00,840000,180.00
-1949-08-15,179.29,179.71,178.55,178.97,720000,178.97
-1949-08-12,180.02,180.10,178.62,179.29,770000,179.29
-1949-08-11,180.60,180.98,179.48,180.02,1030000,180.02
-1949-08-10,179.52,180.96,179.23,180.60,1280000,180.60
-1949-08-09,180.35,180.35,178.86,179.52,1140000,179.52
-1949-08-08,179.18,181.15,179.18,180.54,1660000,180.54
-1949-08-05,177.06,179.38,176.77,179.07,1440000,179.07
-1949-08-04,177.19,177.44,176.51,177.06,910000,177.06
-1949-08-03,177.56,177.91,176.72,177.19,1270000,177.19
-1949-08-02,176.84,177.78,176.35,177.56,800000,177.56
-1949-08-01,175.92,177.17,175.68,176.84,860000,176.84
-1949-07-29,176.26,176.54,175.30,175.92,640000,175.92
-1949-07-28,176.46,176.84,175.57,176.26,790000,176.26
-1949-07-27,176.37,177.04,175.93,176.46,1030000,176.46
-1949-07-26,175.12,176.65,174.86,176.37,1310000,176.37
-1949-07-25,174.53,175.99,174.28,175.12,860000,175.12
-1949-07-22,174.59,174.95,173.85,174.53,730000,174.53
-1949-07-21,175.49,175.49,174.15,174.59,780000,174.59
-1949-07-20,175.31,176.14,174.86,175.60,1380000,175.60
-1949-07-19,174.04,175.60,173.93,175.31,1590000,175.31
-1949-07-18,173.48,174.40,173.20,174.04,810000,174.04
-1949-07-15,173.59,173.89,172.64,173.48,800000,173.48
-1949-07-14,173.24,174.02,172.47,173.59,1170000,173.59
-1949-07-13,171.78,173.34,171.59,173.24,1050000,173.24
-1949-07-12,170.81,171.96,170.52,171.78,870000,171.78
-1949-07-11,170.92,171.41,170.10,170.81,680000,170.81
-1949-07-08,171.01,171.53,170.41,170.92,640000,170.92
-1949-07-07,170.68,171.27,169.95,171.01,890000,171.01
-1949-07-06,169.02,170.83,168.77,170.68,1410000,170.68
-1949-07-05,168.08,169.48,167.90,169.02,630000,169.02
-1949-07-01,167.42,168.61,166.94,168.08,720000,168.08
-1949-06-30,166.76,167.96,166.72,167.42,580000,167.42
-1949-06-29,165.75,167.05,165.24,166.76,590000,166.76
-1949-06-28,166.52,166.52,164.65,165.75,790000,165.75
-1949-06-27,166.99,167.82,166.29,166.79,670000,166.79
-1949-06-24,166.77,167.49,166.39,166.99,570000,166.99
-1949-06-23,165.74,167.30,165.74,166.77,730000,166.77
-1949-06-22,165.71,165.97,165.09,165.64,550000,165.64
-1949-06-21,165.49,166.65,165.09,165.71,770000,165.71
-1949-06-20,163.78,165.68,163.46,165.49,780000,165.49
-1949-06-17,163.94,164.30,162.95,163.78,540000,163.78
-1949-06-16,164.58,165.03,163.50,163.94,680000,163.94
-1949-06-15,162.10,164.81,162.10,164.58,950000,164.58
-1949-06-14,161.60,162.51,160.62,161.86,1120000,161.86
-1949-06-13,163.90,163.90,160.95,161.60,1350000,161.60
-1949-06-10,165.53,165.53,164.14,164.61,800000,164.61
-1949-06-09,165.76,166.28,165.19,165.73,600000,165.73
-1949-06-08,165.29,166.39,164.96,165.76,790000,165.76
-1949-06-07,165.15,165.96,164.32,165.29,1040000,165.29
-1949-06-06,167.24,167.35,164.27,165.15,1380000,165.15
-1949-06-03,168.15,168.31,166.77,167.24,700000,167.24
-1949-06-02,167.98,168.98,167.59,168.15,670000,168.15
-1949-06-01,168.36,168.54,166.53,167.98,1140000,167.98
-1949-05-31,171.53,171.60,168.14,168.36,1240000,168.36
-1949-05-27,171.95,172.07,170.95,171.53,690000,171.53
-1949-05-26,171.84,172.79,171.51,171.95,700000,171.95
-1949-05-25,171.49,172.07,170.57,171.84,880000,171.84
-1949-05-24,172.32,172.43,171.06,171.49,840000,171.49
-1949-05-23,173.43,173.43,172.10,172.32,720000,172.32
-1949-05-20,174.14,174.18,172.86,173.49,740000,173.49
-1949-05-19,174.92,175.12,173.76,174.14,840000,174.14
-1949-05-18,175.32,175.61,174.39,174.92,750000,174.92
-1949-05-17,175.76,176.07,174.86,175.32,780000,175.32
-1949-05-16,175.20,176.26,175.17,175.76,1030000,175.76
-1949-05-13,174.70,175.40,174.26,174.82,780000,174.82
-1949-05-12,174.40,175.17,174.14,174.70,790000,174.70
-1949-05-11,174.37,175.11,173.75,174.40,790000,174.40
-1949-05-10,175.17,175.32,173.97,174.37,730000,174.37
-1949-05-09,175.39,175.75,174.70,175.17,610000,175.17
-1949-05-06,176.24,176.24,174.74,175.50,780000,175.50
-1949-05-05,176.63,177.18,175.91,176.33,920000,176.33
-1949-05-04,175.09,177.04,175.09,176.63,1180000,176.63
-1949-05-03,174.53,175.32,173.86,175.00,830000,175.00
-1949-05-02,174.16,175.06,173.93,174.53,740000,174.53
-1949-04-29,173.89,174.48,173.52,174.06,810000,174.06
-1949-04-28,174.56,174.65,173.58,173.89,770000,173.89
-1949-04-27,174.21,175.24,173.92,174.56,830000,174.56
-1949-04-26,173.64,174.60,173.02,174.21,870000,174.21
-1949-04-25,173.76,174.38,173.05,173.64,740000,173.64
-1949-04-22,173.24,173.77,172.64,173.42,890000,173.42
-1949-04-21,175.49,175.49,173.08,173.24,1310000,173.24
-1949-04-20,176.73,176.79,175.38,175.69,970000,175.69
-1949-04-19,177.16,177.50,176.39,176.73,830000,176.73
-1949-04-18,177.07,177.71,176.47,177.16,890000,177.16
-1949-04-14,176.81,177.30,176.18,176.62,800000,176.62
-1949-04-13,176.99,177.69,172.26,176.81,920000,176.81
-1949-04-12,176.54,177.46,175.61,176.99,860000,176.99
-1949-04-11,176.75,177.14,175.94,176.54,720000,176.54
-1949-04-08,176.04,176.62,175.34,176.44,850000,176.44
-1949-04-07,176.71,176.94,175.43,176.04,850000,176.04
-1949-04-06,177.04,177.53,176.19,176.71,930000,176.71
-1949-04-05,176.59,177.67,175.94,177.04,900000,177.04
-1949-04-04,176.88,177.78,176.15,176.59,920000,176.59
-1949-04-01,177.04,177.04,175.86,176.28,850000,176.28
-1949-03-31,178.43,178.43,176.87,177.10,980000,177.10
-1949-03-30,178.39,179.19,177.69,178.45,1850000,178.45
-1949-03-29,176.81,178.90,176.81,178.39,1800000,178.39
-1949-03-28,175.82,176.72,175.35,175.99,700000,175.99
-1949-03-25,176.41,176.49,175.29,175.83,630000,175.83
-1949-03-24,176.20,177.37,176.13,176.41,920000,176.41
-1949-03-23,174.83,176.54,174.32,176.20,960000,176.20
-1949-03-22,175.61,175.85,174.34,174.83,840000,174.83
-1949-03-21,176.07,176.47,175.27,175.61,620000,175.61
-1949-03-18,176.33,176.78,175.73,176.29,670000,176.29
-1949-03-17,175.53,176.67,175.17,176.33,760000,176.33
-1949-03-16,176.02,176.08,174.87,175.53,670000,175.53
-1949-03-15,176.82,176.82,175.43,176.02,740000,176.02
-1949-03-14,176.96,177.66,176.35,176.98,800000,176.98
-1949-03-11,175.64,176.87,175.41,176.52,1070000,176.52
-1949-03-10,175.76,176.20,175.03,175.64,630000,175.64
-1949-03-09,176.09,176.29,175.22,175.76,640000,175.76
-1949-03-08,175.55,176.62,175.30,176.09,940000,176.09
-1949-03-07,174.93,175.82,174.30,175.55,840000,175.55
-1949-03-04,173.76,174.06,172.59,173.66,730000,173.66
-1949-03-03,173.82,174.44,173.17,173.76,600000,173.76
-1949-03-02,174.18,174.34,173.15,173.82,690000,173.82
-1949-03-01,173.36,174.61,173.36,174.18,720000,174.18
-1949-02-28,171.63,173.38,171.63,173.06,740000,173.06
-1949-02-25,171.48,172.11,170.56,171.10,830000,171.10
-1949-02-24,172.76,172.76,171.19,171.48,880000,171.48
-1949-02-23,174.19,174.60,173.07,173.23,770000,173.23
-1949-02-21,174.53,174.67,173.63,174.19,560000,174.19
-1949-02-18,174.82,175.62,174.11,174.71,700000,174.71
-1949-02-17,173.45,175.55,173.45,174.82,960000,174.82
-1949-02-16,172.48,173.92,172.27,173.28,700000,173.28
-1949-02-15,172.16,172.86,171.27,172.48,610000,172.48
-1949-02-14,171.93,173.17,171.57,172.16,700000,172.16
-1949-02-11,172.41,172.69,171.03,171.93,880000,171.93
-1949-02-10,174.61,174.80,172.23,172.41,980000,172.41
-1949-02-09,173.71,175.20,173.57,174.61,880000,174.61
-1949-02-08,174.37,174.37,172.91,173.71,960000,173.71
-1949-02-07,175.60,176.76,173.79,174.43,1330000,174.43
-1949-02-04,180.09,180.32,177.69,177.92,1060000,177.92
-1949-02-03,180.27,180.88,179.57,180.09,770000,180.09
-1949-02-02,180.39,180.94,179.63,180.27,720000,180.27
-1949-02-01,179.12,180.55,178.92,180.39,730000,180.39
-1949-01-31,179.35,179.73,178.46,179.12,610000,179.12
-1949-01-28,179.48,179.48,177.88,178.82,840000,178.82
-1949-01-27,179.88,180.30,178.58,179.52,840000,179.52
-1949-01-26,179.65,181.31,178.96,179.88,1040000,179.88
-1949-01-25,180.83,181.05,179.06,179.65,820000,179.65
-1949-01-24,181.54,182.28,180.51,180.83,850000,180.83
-1949-01-21,181.43,181.89,180.69,181.00,770000,181.00
-1949-01-20,181.12,181.85,180.44,181.43,820000,181.43
-1949-01-19,180.55,181.47,179.75,181.12,760000,181.12
-1949-01-18,180.14,181.55,180.09,180.55,770000,180.55
-1949-01-17,179.15,180.48,177.99,180.14,720000,180.14
-1949-01-14,180.17,180.20,178.19,178.80,930000,178.80
-1949-01-13,180.69,181.06,179.79,180.17,700000,180.17
-1949-01-12,180.76,181.66,180.21,180.69,710000,180.69
-1949-01-11,180.57,181.00,179.73,180.76,710000,180.76
-1949-01-10,181.41,181.47,179.78,180.57,770000,180.57
-1949-01-07,180.47,182.50,180.47,181.31,1400000,181.31
-1949-01-06,177.16,180.59,177.16,180.22,1150000,180.22
-1949-01-05,175.50,177.76,175.50,177.08,800000,177.08
-1949-01-04,175.03,175.97,174.56,175.49,640000,175.49
-1949-01-03,176.99,176.99,174.37,175.03,980000,175.03
-1948-12-31,177.92,178.50,176.81,177.30,1550000,177.30
-1948-12-30,177.58,179.15,177.10,177.92,1390000,177.92
-1948-12-29,175.98,177.85,175.88,177.58,1380000,177.58
-1948-12-28,177.37,177.37,175.19,175.98,1650000,175.98
-1948-12-27,177.42,178.35,176.63,177.40,1060000,177.40
-1948-12-24,176.49,177.82,176.04,177.42,970000,177.42
-1948-12-23,176.39,177.29,175.70,176.49,1080000,176.49
-1948-12-22,176.35,176.93,175.62,176.39,1000000,176.39
-1948-12-21,176.84,177.49,175.92,176.35,1000000,176.35
-1948-12-20,175.69,177.60,175.14,176.84,980000,176.84
-1948-12-17,175.83,176.78,175.17,175.92,1010000,175.92
-1948-12-16,176.20,176.59,175.20,175.83,1010000,175.83
-1948-12-15,176.59,177.26,175.78,176.20,920000,176.20
-1948-12-14,177.34,177.73,175.86,176.59,1000000,176.59
-1948-12-13,177.49,178.43,176.67,177.34,1180000,177.34
-1948-12-10,175.75,176.79,175.17,176.41,1040000,176.41
-1948-12-09,176.29,176.86,175.44,175.75,1220000,175.75
-1948-12-08,176.67,176.98,175.25,176.29,1140000,176.29
-1948-12-07,176.26,177.25,175.39,176.67,1160000,176.67
-1948-12-06,176.22,177.12,175.59,176.26,1180000,176.26
-1948-12-03,173.61,175.34,173.20,175.00,1100000,175.00
-1948-12-02,173.22,174.88,173.15,173.61,1210000,173.61
-1948-12-01,171.67,174.02,171.67,173.22,1320000,173.22
-1948-11-30,171.99,172.49,170.35,171.20,1200000,171.20
-1948-11-29,172.90,173.55,171.72,171.99,1010000,171.99
-1948-11-26,173.40,174.14,172.38,173.16,1040000,173.16
-1948-11-24,175.88,175.88,172.96,173.40,1290000,173.40
-1948-11-23,176.33,176.72,175.17,176.17,1010000,176.17
-1948-11-22,177.42,177.80,175.75,176.33,890000,176.33
-1948-11-19,176.07,177.96,175.99,176.98,990000,176.98
-1948-11-18,176.07,176.89,175.52,176.07,780000,176.07
-1948-11-17,176.20,176.92,175.14,176.07,980000,176.07
-1948-11-16,176.01,177.42,175.44,176.20,1060000,176.20
-1948-11-15,174.37,176.56,174.37,176.01,1030000,176.01
-1948-11-12,173.48,175.47,173.37,173.93,1110000,173.93
-1948-11-10,173.94,174.93,172.13,173.48,2100000,173.48
-1948-11-09,178.19,178.60,173.54,173.94,2260000,173.94
-1948-11-08,178.94,179.85,177.46,178.19,1130000,178.19
-1948-11-05,184.42,184.42,178.11,178.38,2530000,178.38
-1948-11-04,182.92,185.79,182.92,184.54,1530000,184.54
-1948-11-03,183.08,183.08,179.65,182.46,3240000,182.46
-1948-11-01,188.62,190.45,188.39,189.76,1220000,189.76
-1948-10-29,187.73,188.60,186.99,188.28,860000,188.28
-1948-10-28,189.28,189.59,187.29,187.73,970000,187.73
-1948-10-27,189.76,190.06,188.11,189.28,970000,189.28
-1948-10-26,189.52,190.88,188.97,189.76,1140000,189.76
-1948-10-25,190.19,190.53,188.54,189.52,1100000,189.52
-1948-10-22,186.70,190.08,186.70,189.76,1800000,189.76
-1948-10-21,186.51,187.16,185.49,186.44,1200000,186.44
-1948-10-20,186.18,187.00,185.62,186.51,1180000,186.51
-1948-10-19,185.33,186.58,185.15,186.18,1030000,186.18
-1948-10-18,184.93,186.22,184.63,185.33,1030000,185.33
-1948-10-15,184.52,185.26,183.76,184.62,910000,184.62
-1948-10-14,183.84,185.46,183.65,184.52,980000,184.52
-1948-10-13,182.41,184.25,182.30,183.84,830000,183.84
-1948-10-11,182.09,182.76,181.71,182.41,510000,182.41
-1948-10-08,182.52,182.99,181.55,182.02,630000,182.02
-1948-10-07,181.72,183.10,181.58,182.52,800000,182.52
-1948-10-06,181.23,182.34,180.91,181.72,710000,181.72
-1948-10-05,181.70,181.89,180.52,181.23,550000,181.23
-1948-10-04,180.78,182.19,180.74,181.70,610000,181.70
-1948-10-01,178.30,180.08,178.22,179.87,680000,179.87
-1948-09-30,179.04,179.71,177.95,178.30,700000,178.30
-1948-09-29,177.59,179.53,177.59,179.04,810000,179.04
-1948-09-28,175.99,177.91,175.84,177.54,910000,177.54
-1948-09-27,178.32,178.32,175.84,175.99,1210000,175.99
-1948-09-24,178.77,179.71,178.49,179.28,650000,179.28
-1948-09-23,179.16,179.22,178.22,178.77,550000,178.77
-1948-09-22,178.61,179.70,178.11,179.16,850000,179.16
-1948-09-21,177.37,178.89,176.94,178.61,920000,178.61
-1948-09-20,179.93,179.93,176.96,177.37,1260000,177.37
-1948-09-17,180.69,180.78,179.60,180.06,680000,180.06
-1948-09-16,180.62,181.10,179.84,180.69,580000,180.69
-1948-09-15,180.63,181.47,179.85,180.62,710000,180.62
-1948-09-14,179.41,181.12,179.41,180.63,710000,180.63
-1948-09-13,180.51,180.51,178.87,179.38,680000,179.38
-1948-09-10,180.33,181.26,179.04,180.61,970000,180.61
-1948-09-09,182.83,182.83,179.74,180.33,2000000,180.33
-1948-09-08,184.88,184.88,182.63,182.90,880000,182.90
-1948-09-07,184.35,185.64,183.68,185.36,910000,185.36
-1948-09-03,184.39,184.90,183.49,184.35,660000,184.35
-1948-09-02,183.60,184.88,183.16,184.39,900000,184.39
-1948-09-01,181.71,183.99,181.44,183.60,920000,183.60
-1948-08-31,182.09,182.47,181.18,181.71,610000,181.71
-1948-08-30,183.21,183.95,181.89,182.09,690000,182.09
-1948-08-27,182.52,183.55,182.38,183.21,540000,183.21
-1948-08-26,182.41,182.99,181.93,182.52,540000,182.52
-1948-08-25,182.58,183.01,181.89,182.41,520000,182.41
-1948-08-24,181.75,182.99,181.67,182.58,620000,182.58
-1948-08-23,183.52,183.52,181.45,181.75,630000,181.75
-1948-08-20,182.57,183.92,182.50,183.60,710000,183.60
-1948-08-19,182.12,182.78,181.45,182.57,580000,182.57
-1948-08-18,182.15,183.21,181.76,182.12,640000,182.12
-1948-08-17,180.75,182.63,180.75,182.15,680000,182.15
-1948-08-16,179.63,180.62,179.46,180.30,470000,180.30
-1948-08-13,179.63,180.44,178.99,179.63,510000,179.63
-1948-08-12,179.27,180.17,178.51,179.63,630000,179.63
-1948-08-11,179.88,179.88,177.40,179.27,1310000,179.27
-1948-08-10,182.26,182.26,179.91,180.02,840000,180.02
-1948-08-09,183.01,183.75,182.02,182.26,670000,182.26
-1948-08-06,182.92,183.44,181.89,183.01,680000,183.01
-1948-08-05,183.06,184.54,182.45,182.92,880000,182.92
-1948-08-04,180.98,183.29,180.82,183.06,870000,183.06
-1948-08-03,181.13,181.72,180.24,180.98,720000,180.98
-1948-08-02,181.33,182.61,180.61,181.13,710000,181.13
-1948-07-30,182.56,182.56,180.04,181.33,1310000,181.33
-1948-07-29,185.15,185.28,183.19,183.57,750000,183.57
-1948-07-28,186.09,187.00,184.92,185.15,840000,185.15
-1948-07-27,184.17,186.37,183.81,186.09,870000,186.09
-1948-07-26,185.31,185.83,183.81,184.17,720000,184.17
-1948-07-23,185.29,186.36,184.74,185.31,820000,185.31
-1948-07-22,184.44,185.90,184.19,185.29,850000,185.29
-1948-07-21,183.57,185.96,183.39,184.44,1200000,184.44
-1948-07-20,181.27,184.41,181.27,183.57,1470000,183.57
-1948-07-19,184.76,184.76,179.58,181.20,2570000,181.20
-1948-07-16,187.70,188.34,184.98,185.90,1760000,185.90
-1948-07-15,190.66,190.69,187.62,187.70,1620000,187.70
-1948-07-14,190.36,191.13,189.41,190.66,1340000,190.66
-1948-07-13,191.47,191.65,190.08,190.36,1200000,190.36
-1948-07-12,191.62,192.38,190.95,191.47,1300000,191.47
-1948-07-09,190.58,192.09,189.98,191.62,1370000,191.62
-1948-07-08,190.06,191.16,189.73,190.58,1000000,190.58
-1948-07-07,190.55,191.04,189.31,190.06,920000,190.06
-1948-07-06,190.06,191.37,189.54,190.55,950000,190.55
-1948-07-02,189.03,190.45,188.46,190.06,920000,190.06
-1948-07-01,189.46,189.85,188.43,189.03,820000,189.03
-1948-06-30,188.49,190.03,187.73,189.46,990000,189.46
-1948-06-29,187.90,189.19,187.50,188.49,820000,188.49
-1948-06-28,189.66,189.66,186.56,187.90,1210000,187.90
-1948-06-25,190.87,191.06,188.95,190.00,1150000,190.00
-1948-06-24,190.73,191.87,190.00,190.87,1560000,190.87
-1948-06-23,189.66,191.32,189.42,190.73,1760000,190.73
-1948-06-22,189.71,190.31,188.41,189.66,1410000,189.66
-1948-06-21,191.65,192.08,189.52,189.71,1750000,189.71
-1948-06-18,192.15,192.19,190.56,191.65,1250000,191.65
-1948-06-17,192.34,192.99,191.12,192.15,1520000,192.15
-1948-06-16,193.16,193.19,191.06,192.34,1580000,192.34
-1948-06-15,192.86,193.93,191.62,193.16,1630000,193.16
-1948-06-14,192.96,194.49,192.14,192.86,1750000,192.86
-1948-06-11,192.50,193.65,191.48,192.96,1520000,192.96
-1948-06-10,192.56,193.28,191.06,192.50,1700000,192.50
-1948-06-09,192.16,193.54,191.86,192.56,1880000,192.56
-1948-06-08,190.31,192.59,190.31,192.16,1520000,192.16
-1948-06-07,190.18,190.74,188.87,190.13,930000,190.13
-1948-06-04,191.05,191.31,189.56,190.18,1100000,190.18
-1948-06-03,191.32,192.09,190.40,191.05,1300000,191.05
-1948-06-02,191.18,192.18,190.30,191.32,1300000,191.32
-1948-06-01,190.74,192.00,190.29,191.18,1310000,191.18
-1948-05-28,190.97,191.48,189.49,190.74,1240000,190.74
-1948-05-27,191.06,192.31,190.39,190.97,1830000,190.97
-1948-05-26,189.71,191.57,189.06,191.06,1840000,191.06
-1948-05-25,189.82,190.77,188.55,189.71,1810000,189.71
-1948-05-24,190.00,190.67,188.98,189.82,1560000,189.82
-1948-05-21,189.26,191.44,189.17,189.78,2680000,189.78
-1948-05-20,188.28,190.00,187.52,189.26,2480000,189.26
-1948-05-19,188.56,189.44,187.46,188.28,1850000,188.28
-1948-05-18,190.44,191.01,188.16,188.56,2480000,188.56
-1948-05-17,190.25,191.00,188.37,190.44,3050000,190.44
-1948-05-14,185.01,188.93,185.01,188.60,3840000,188.60
-1948-05-13,183.95,185.40,183.32,184.82,2030000,184.82
-1948-05-12,183.75,184.39,182.49,183.95,1530000,183.95
-1948-05-11,182.94,184.25,182.21,183.75,1750000,183.75
-1948-05-10,182.50,183.46,181.68,182.94,1440000,182.94
-1948-05-07,181.68,183.20,181.68,182.29,1670000,182.29
-1948-05-06,180.94,182.14,180.16,181.65,1310000,181.65
-1948-05-05,181.44,182.05,180.56,180.94,1240000,180.94
-1948-05-04,181.09,182.43,180.70,181.44,1460000,181.44
-1948-05-03,180.28,181.71,179.47,181.09,1150000,181.09
-1948-04-30,180.65,181.64,179.69,180.51,1450000,180.51
-1948-04-29,181.01,181.47,179.33,180.65,1480000,180.65
-1948-04-28,180.97,182.01,180.16,181.01,1400000,181.01
-1948-04-27,181.32,181.87,180.07,180.97,1420000,180.97
-1948-04-26,183.09,183.09,180.93,181.32,1410000,181.32
-1948-04-23,182.98,184.48,182.67,183.78,2470000,183.78
-1948-04-22,181.37,183.40,180.88,182.98,2330000,182.98
-1948-04-21,180.72,181.79,179.49,181.37,1670000,181.37
-1948-04-20,181.05,181.87,179.98,180.72,1700000,180.72
-1948-04-19,180.38,181.42,179.90,181.05,1530000,181.05
-1948-04-16,180.27,181.69,179.90,180.63,2140000,180.63
-1948-04-15,179.13,180.94,178.60,180.27,1650000,180.27
-1948-04-14,179.45,179.91,178.59,179.13,1030000,179.13
-1948-04-13,179.05,179.89,178.58,179.45,950000,179.45
-1948-04-12,179.48,180.19,178.26,179.05,1030000,179.05
-1948-04-09,178.80,179.91,178.40,179.16,1380000,179.16
-1948-04-08,178.33,179.38,177.91,178.80,1060000,178.80
-1948-04-07,178.77,179.14,177.70,178.33,1160000,178.33
-1948-04-06,177.92,179.31,177.62,178.77,1310000,178.77
-1948-04-05,177.45,178.27,177.06,177.92,1040000,177.92
-1948-04-02,177.61,178.10,175.96,177.32,1080000,177.32
-1948-04-01,177.20,178.14,176.08,177.61,1490000,177.61
-1948-03-31,175.63,177.61,175.63,177.20,1780000,177.20
-1948-03-30,173.65,175.38,173.30,175.23,1060000,175.23
-1948-03-29,173.95,174.33,172.55,173.65,760000,173.65
-1948-03-25,173.62,174.63,173.08,174.05,1040000,174.05
-1948-03-24,173.50,174.45,172.84,173.62,1040000,173.62
-1948-03-23,173.66,174.26,172.71,173.50,1160000,173.50
-1948-03-22,173.12,175.23,173.05,173.66,2040000,173.66
-1948-03-19,166.92,169.75,166.50,169.67,1160000,169.67
-1948-03-18,166.24,168.02,166.07,166.92,890000,166.92
-1948-03-17,165.39,166.60,165.03,166.24,930000,166.24
-1948-03-16,167.21,167.21,165.03,165.39,940000,165.39
-1948-03-15,167.62,168.16,167.09,167.62,690000,167.62
-1948-03-12,167.21,167.54,166.51,166.99,690000,166.99
-1948-03-11,167.48,168.27,166.67,167.21,820000,167.21
-1948-03-10,166.76,167.74,166.04,167.48,730000,167.48
-1948-03-09,167.54,167.54,166.04,166.76,660000,166.76
-1948-03-08,168.94,169.13,167.46,167.71,740000,167.71
-1948-03-05,168.13,168.64,167.20,168.35,630000,168.35
-1948-03-04,168.61,168.92,167.69,168.13,580000,168.13
-1948-03-03,168.75,169.28,168.04,168.61,760000,168.61
-1948-03-02,168.14,169.18,167.78,168.75,780000,168.75
-1948-03-01,167.46,168.62,167.46,168.14,770000,168.14
-1948-02-27,167.56,167.56,165.92,166.80,770000,166.80
-1948-02-26,168.39,168.71,167.17,167.56,620000,167.56
-1948-02-25,167.80,169.01,167.72,168.39,710000,168.39
-1948-02-24,167.60,168.24,166.81,167.80,640000,167.80
-1948-02-20,167.86,167.96,166.38,167.44,700000,167.44
-1948-02-19,168.04,168.98,167.34,167.86,680000,167.86
-1948-02-18,167.89,168.36,167.23,168.04,610000,168.04
-1948-02-17,168.30,169.23,167.47,167.89,720000,167.89
-1948-02-16,166.86,168.96,166.86,168.30,830000,168.30
-1948-02-13,165.69,167.23,164.99,166.33,930000,166.33
-1948-02-11,165.65,166.41,164.07,165.69,1490000,165.69
-1948-02-10,168.92,168.92,165.26,165.65,1460000,165.65
-1948-02-09,169.79,170.83,169.33,169.82,660000,169.82
-1948-02-06,169.18,169.67,167.95,168.81,920000,168.81
-1948-02-05,170.43,170.43,168.13,169.18,1200000,169.18
-1948-02-04,173.39,173.39,170.41,170.95,1200000,170.95
-1948-02-03,174.92,175.03,173.54,173.95,700000,173.95
-1948-02-02,175.05,176.05,174.57,174.92,770000,174.92
-1948-01-30,174.47,175.58,173.61,174.76,890000,174.76
-1948-01-29,173.39,175.06,173.39,174.47,1060000,174.47
-1948-01-28,171.68,173.49,171.68,172.97,860000,172.97
-1948-01-27,171.18,172.66,170.83,171.42,830000,171.42
-1948-01-26,171.67,172.41,170.70,171.18,650000,171.18
-1948-01-23,172.15,173.04,171.36,171.97,790000,171.97
-1948-01-22,173.33,173.33,171.37,172.15,1110000,172.15
-1948-01-21,175.27,176.10,173.32,173.53,1190000,173.53
-1948-01-20,175.95,176.13,174.62,175.27,710000,175.27
-1948-01-19,177.24,177.34,175.21,175.95,1050000,175.95
-1948-01-16,177.03,177.71,176.28,177.15,760000,177.15
-1948-01-15,177.49,178.06,176.54,177.03,780000,177.03
-1948-01-14,177.49,178.16,176.50,177.37,820000,177.37
-1948-01-13,179.29,179.29,177.25,177.49,950000,177.49
-1948-01-12,180.20,180.62,178.70,179.33,1000000,179.33
-1948-01-09,180.60,181.40,179.74,180.09,980000,180.09
-1948-01-08,179.83,181.04,179.35,180.60,900000,180.60
-1948-01-07,179.12,180.40,178.48,179.83,820000,179.83
-1948-01-06,179.53,179.88,177.78,179.12,1030000,179.12
-1948-01-05,181.04,181.69,179.19,179.53,1090000,179.53
-1948-01-02,181.16,181.53,180.01,181.04,710000,181.04
-1947-12-31,180.56,181.82,180.29,181.16,1540000,181.16
-1947-12-30,178.58,180.93,178.43,180.56,1380000,180.56
-1947-12-29,179.23,179.81,177.93,178.58,1190000,178.58
-1947-12-26,180.71,180.71,178.90,179.28,930000,179.28
-1947-12-24,180.71,181.49,179.72,180.84,1190000,180.84
-1947-12-23,180.21,181.25,179.61,180.71,1360000,180.71
-1947-12-22,181.06,181.78,179.98,180.21,1450000,180.21
-1947-12-19,179.44,180.64,178.62,180.09,1250000,180.09
-1947-12-18,179.81,180.53,179.03,179.44,1130000,179.44
-1947-12-17,179.44,180.23,178.69,179.81,1250000,179.81
-1947-12-16,179.69,180.25,178.91,179.44,1090000,179.44
-1947-12-15,179.34,180.56,178.74,179.69,1430000,179.69
-1947-12-12,177.37,178.92,176.82,178.37,1220000,178.37
-1947-12-11,177.58,177.98,176.44,177.37,940000,177.37
-1947-12-10,177.47,178.22,176.89,177.58,1120000,177.58
-1947-12-09,176.71,177.98,176.00,177.47,1100000,177.47
-1947-12-08,175.74,177.35,175.19,176.71,960000,176.71
-1947-12-05,178.57,178.57,175.46,176.10,1290000,176.10
-1947-12-04,179.63,179.83,178.16,178.79,970000,178.79
-1947-12-03,180.57,180.57,179.18,179.63,930000,179.63
-1947-12-02,180.61,181.77,180.20,180.76,890000,180.76
-1947-12-01,179.40,181.09,179.09,180.61,800000,180.61
-1947-11-28,180.94,181.15,179.30,179.51,930000,179.51
-1947-11-26,181.35,182.39,180.67,180.94,910000,180.94
-1947-11-25,181.98,182.43,180.92,181.35,870000,181.35
-1947-11-24,182.33,183.06,181.23,181.98,790000,181.98
-1947-11-21,183.17,183.97,182.23,182.61,980000,182.61
-1947-11-20,182.71,183.68,181.15,183.17,960000,183.17
-1947-11-19,181.71,182.98,181.69,182.71,1050000,182.71
-1947-11-18,180.40,181.99,180.12,181.71,930000,181.71
-1947-11-17,180.26,180.95,179.57,180.40,750000,180.40
-1947-11-14,180.00,181.00,179.67,180.05,780000,180.05
-1947-11-13,180.96,180.96,179.60,180.00,790000,180.00
-1947-11-12,182.21,182.56,180.56,181.04,900000,181.04
-1947-11-10,181.49,182.70,181.17,182.21,720000,182.21
-1947-11-07,182.00,182.45,181.12,181.54,760000,181.54
-1947-11-06,181.89,182.33,180.61,182.00,850000,182.00
-1947-11-05,182.65,183.57,181.61,181.89,1050000,181.89
-1947-11-03,182.48,183.51,181.85,182.65,760000,182.65
-1947-10-31,181.32,182.40,180.43,181.81,800000,181.81
-1947-10-30,183.04,183.04,179.93,181.32,1390000,181.32
-1947-10-29,183.21,184.70,182.47,183.06,1140000,183.06
-1947-10-28,183.27,184.24,182.72,183.21,930000,183.21
-1947-10-27,182.73,183.70,181.76,183.27,850000,183.27
-1947-10-24,184.47,184.47,181.55,182.53,1650000,182.53
-1947-10-23,184.36,185.30,183.71,184.50,1190000,184.50
-1947-10-22,185.09,185.89,184.00,184.36,1260000,184.36
-1947-10-21,185.29,186.01,184.05,185.09,1400000,185.09
-1947-10-20,184.27,186.24,184.27,185.29,1770000,185.29
-1947-10-17,183.54,184.39,182.40,183.52,1270000,183.52
-1947-10-16,183.28,184.56,182.71,183.54,1400000,183.54
-1947-10-15,182.73,184.27,182.25,183.28,1930000,183.28
-1947-10-14,180.49,183.14,180.47,182.73,1810000,182.73
-1947-10-10,180.11,181.34,179.63,180.44,1120000,180.44
-1947-10-09,178.78,180.37,178.56,180.11,790000,180.11
-1947-10-08,180.01,180.56,178.26,178.78,1130000,178.78
-1947-10-07,180.08,180.49,179.33,180.01,880000,180.01
-1947-10-06,179.44,180.61,179.03,180.08,930000,180.08
-1947-10-03,178.47,180.31,178.26,179.53,1270000,179.53
-1947-10-02,178.10,178.96,177.50,178.47,850000,178.47
-1947-10-01,177.49,178.87,176.89,178.10,1160000,178.10
-1947-09-30,175.85,177.70,175.36,177.49,960000,177.49
-1947-09-29,174.86,176.44,174.74,175.85,740000,175.85
-1947-09-26,175.29,175.57,174.42,174.86,640000,174.86
-1947-09-25,176.39,176.84,174.92,175.29,770000,175.29
-1947-09-24,176.04,176.79,175.27,176.39,570000,176.39
-1947-09-23,178.02,178.25,175.54,176.04,880000,176.04
-1947-09-22,178.12,178.76,177.36,178.02,670000,178.02
-1947-09-19,178.31,178.61,177.03,178.12,750000,178.12
-1947-09-18,178.73,179.27,177.68,178.31,940000,178.31
-1947-09-17,176.86,179.37,176.86,178.73,1260000,178.73
-1947-09-16,175.30,177.01,174.73,176.70,740000,176.70
-1947-09-15,175.92,175.99,174.82,175.30,500000,175.30
-1947-09-12,176.16,176.67,174.98,175.92,600000,175.92
-1947-09-11,176.24,177.11,175.31,176.16,800000,176.16
-1947-09-10,175.32,176.61,174.70,176.24,740000,176.24
-1947-09-09,175.14,176.07,174.02,175.32,750000,175.32
-1947-09-08,176.97,176.97,174.79,175.14,830000,175.14
-1947-09-05,177.27,177.51,175.69,177.13,720000,177.13
-1947-09-04,178.84,178.84,176.57,177.27,870000,177.27
-1947-09-03,179.81,180.08,178.55,179.09,650000,179.09
-1947-09-02,178.85,180.56,178.75,179.81,650000,179.81
-1947-08-29,177.70,179.15,177.63,178.85,580000,178.85
-1947-08-28,177.88,178.64,177.22,177.70,580000,177.70
-1947-08-27,177.73,178.24,177.14,177.88,480000,177.88
-1947-08-26,177.57,178.05,176.54,177.73,620000,177.73
-1947-08-25,179.74,179.78,177.33,177.57,810000,177.57
-1947-08-22,179.42,180.29,179.34,179.74,580000,179.74
-1947-08-21,179.01,179.77,178.50,179.42,580000,179.42
-1947-08-20,179.75,180.10,178.76,179.01,600000,179.01
-1947-08-19,180.44,180.64,179.23,179.75,600000,179.75
-1947-08-18,181.04,181.43,179.98,180.44,710000,180.44
-1947-08-15,179.87,181.58,179.44,181.04,880000,181.04
-1947-08-14,179.80,180.43,178.64,179.87,690000,179.87
-1947-08-13,179.94,180.71,179.17,179.80,690000,179.80
-1947-08-12,179.14,180.76,179.14,179.94,690000,179.94
-1947-08-11,180.13,180.16,178.22,178.98,720000,178.98
-1947-08-08,181.99,181.99,179.77,180.13,790000,180.13
-1947-08-07,182.35,182.57,181.03,182.11,660000,182.11
-1947-08-06,183.08,183.48,181.85,182.35,660000,182.35
-1947-08-05,182.51,184.05,182.27,183.08,750000,183.08
-1947-08-04,183.69,183.69,182.01,182.51,730000,182.51
-1947-08-01,183.18,184.38,182.35,183.81,770000,183.81
-1947-07-31,181.17,183.56,181.17,183.18,840000,183.18
-1947-07-30,182.05,182.33,179.77,180.91,1170000,180.91
-1947-07-29,184.95,185.28,181.47,182.05,1390000,182.05
-1947-07-28,186.38,187.51,184.76,184.95,1090000,184.95
-1947-07-25,186.85,187.66,185.59,186.38,1150000,186.38
-1947-07-24,185.08,187.36,185.08,186.85,1570000,186.85
-1947-07-23,183.86,185.59,183.86,184.95,1070000,184.95
-1947-07-22,183.52,184.41,182.73,183.78,780000,183.78
-1947-07-21,184.60,184.86,183.02,183.52,850000,183.52
-1947-07-18,183.83,184.87,182.51,184.60,920000,184.60
-1947-07-17,185.46,185.92,183.43,183.83,1110000,183.83
-1947-07-16,185.38,186.23,184.05,185.46,1070000,185.46
-1947-07-15,185.60,186.24,184.23,185.38,1180000,185.38
-1947-07-14,184.77,187.15,184.64,185.60,1660000,185.60
-1947-07-11,183.14,185.52,183.14,184.77,1590000,184.77
-1947-07-10,181.72,183.24,180.82,182.80,1020000,182.80
-1947-07-09,182.66,183.29,181.12,181.72,1040000,181.72
-1947-07-08,182.04,183.74,181.53,182.66,1390000,182.66
-1947-07-07,181.73,182.61,180.62,182.04,1050000,182.04
-1947-07-03,179.88,182.07,179.18,181.73,1250000,181.73
-1947-07-02,180.33,181.17,179.33,179.88,1180000,179.88
-1947-07-01,177.48,180.42,177.48,180.33,1090000,180.33
-1947-06-30,176.56,177.66,175.82,177.30,670000,177.30
-1947-06-27,176.58,177.20,175.77,176.56,650000,176.56
-1947-06-26,175.73,177.15,175.44,176.58,820000,176.58
-1947-06-25,174.54,176.19,173.93,175.73,830000,175.73
-1947-06-24,177.44,177.55,174.13,174.54,1090000,174.54
-1947-06-23,176.44,178.08,176.22,177.44,950000,177.44
-1947-06-20,176.14,177.52,175.54,176.44,1130000,176.44
-1947-06-19,174.94,176.81,174.43,176.14,1010000,176.14
-1947-06-18,174.98,176.42,174.25,174.94,910000,174.94
-1947-06-17,175.81,176.11,174.28,174.98,670000,174.98
-1947-06-16,175.49,177.23,174.26,175.81,990000,175.81
-1947-06-13,173.78,176.02,173.26,175.49,960000,175.49
-1947-06-12,174.68,175.30,173.24,173.78,1040000,173.78
-1947-06-11,171.50,174.78,171.50,174.68,1350000,174.68
-1947-06-10,169.88,171.36,169.10,171.10,650000,171.10
-1947-06-09,170.28,170.71,169.26,169.88,550000,169.88
-1947-06-06,169.41,170.62,168.54,170.28,660000,170.28
-1947-06-05,169.56,170.16,168.90,169.41,520000,169.41
-1947-06-04,170.35,171.35,169.16,169.56,820000,169.56
-1947-06-03,168.00,170.69,168.00,170.35,690000,170.35
-1947-06-02,168.66,168.66,167.43,168.00,520000,168.00
-1947-05-29,168.06,169.78,168.06,169.25,900000,169.25
-1947-05-28,166.64,168.90,166.64,168.06,890000,168.06
-1947-05-27,166.29,166.53,164.59,166.17,660000,166.17
-1947-05-26,166.97,167.22,165.86,166.29,540000,166.29
-1947-05-23,166.73,167.68,166.06,166.95,680000,166.95
-1947-05-22,165.81,167.56,165.81,166.73,950000,166.73
-1947-05-21,163.59,166.03,162.98,165.77,1030000,165.77
-1947-05-20,163.55,164.81,162.99,163.59,920000,163.59
-1947-05-19,163.21,164.43,161.38,163.55,1860000,163.55
-1947-05-16,167.88,168.02,164.46,164.96,1430000,164.96
-1947-05-15,166.96,168.42,166.96,167.88,770000,167.88
-1947-05-14,167.34,167.34,165.93,166.68,1050000,166.68
-1947-05-13,169.17,169.17,167.07,167.34,1210000,167.34
-1947-05-12,171.67,171.69,169.76,169.80,700000,169.80
-1947-05-09,171.56,172.21,170.52,171.54,720000,171.54
-1947-05-08,172.49,172.87,171.20,171.56,670000,171.56
-1947-05-07,172.77,173.14,172.08,172.49,600000,172.49
-1947-05-06,173.83,173.83,171.89,172.77,750000,172.77
-1947-05-05,174.00,175.08,173.58,174.21,740000,174.21
-1947-05-02,171.91,174.45,171.85,173.45,950000,173.45
-1947-05-01,170.64,172.65,170.62,171.91,920000,171.91
-1947-04-30,168.76,170.85,168.76,170.64,780000,170.64
-1947-04-29,168.85,169.47,167.42,168.70,840000,168.70
-1947-04-28,169.13,170.00,168.56,168.85,590000,168.85
-1947-04-25,170.19,170.38,168.60,168.93,780000,168.93
-1947-04-24,170.87,171.20,169.81,170.19,620000,170.19
-1947-04-23,170.94,171.71,169.92,170.87,700000,170.87
-1947-04-22,169.50,171.25,169.24,170.94,890000,170.94
-1947-04-21,169.32,171.47,169.32,169.50,1160000,169.50
-1947-04-18,168.01,168.68,166.49,166.77,970000,166.77
-1947-04-17,168.22,168.91,167.49,168.01,760000,168.01
-1947-04-16,166.82,168.85,166.60,168.22,900000,168.22
-1947-04-15,166.69,168.09,165.39,166.82,1450000,166.82
-1947-04-14,170.42,170.42,166.17,166.69,2200000,166.69
-1947-04-11,173.98,174.76,172.90,173.43,860000,173.43
-1947-04-10,173.44,174.78,173.44,173.98,680000,173.98
-1947-04-09,173.29,173.72,172.39,173.40,850000,173.40
-1947-04-08,175.39,175.52,172.68,173.29,1020000,173.29
-1947-04-07,176.16,176.16,174.82,175.39,630000,175.39
-1947-04-03,177.21,177.21,175.60,176.52,680000,176.52
-1947-04-02,177.45,178.28,176.87,177.32,680000,177.32
-1947-04-01,177.20,177.74,176.18,177.45,770000,177.45
-1947-03-31,178.36,178.58,177.01,177.20,720000,177.20
-1947-03-28,179.19,179.68,178.18,178.63,830000,178.63
-1947-03-27,177.67,179.51,177.67,179.19,1140000,179.19
-1947-03-26,175.29,177.31,174.61,177.10,940000,177.10
-1947-03-25,176.40,176.66,175.05,175.29,660000,175.29
-1947-03-24,177.27,177.61,176.18,176.40,580000,176.40
-1947-03-21,175.37,177.12,175.37,176.90,710000,176.90
-1947-03-20,175.78,176.06,174.76,175.37,630000,175.37
-1947-03-19,175.11,176.90,175.11,175.78,760000,175.78
-1947-03-18,173.35,175.22,173.26,174.95,660000,174.95
-1947-03-17,172.53,174.15,172.53,173.35,640000,173.35
-1947-03-14,173.95,173.95,171.94,172.58,820000,172.58
-1947-03-13,174.68,175.32,173.95,174.35,650000,174.35
-1947-03-12,173.83,175.62,173.43,174.68,950000,174.68
-1947-03-11,175.18,175.20,173.09,173.83,1190000,173.83
-1947-03-10,175.84,176.36,174.73,175.18,830000,175.18
-1947-03-07,181.19,181.19,176.87,177.05,1210000,177.05
-1947-03-06,181.16,182.48,180.60,181.88,1020000,181.88
-1947-03-05,179.77,181.56,179.32,181.16,990000,181.16
-1947-03-04,179.43,180.31,178.46,179.77,680000,179.77
-1947-03-03,179.29,179.84,178.29,179.43,690000,179.43
-1947-02-28,178.91,179.73,177.75,178.90,690000,178.90
-1947-02-27,177.67,179.35,177.67,178.91,960000,178.91
-1947-02-26,179.02,179.02,176.34,177.22,1350000,177.22
-1947-02-25,181.40,181.92,178.86,179.31,1280000,179.31
-1947-02-24,182.26,182.47,181.03,181.40,810000,181.40
-1947-02-21,181.22,182.76,181.22,182.26,860000,182.26
-1947-02-20,180.78,181.40,179.12,180.74,1000000,180.74
-1947-02-19,181.85,181.85,179.85,180.78,980000,180.78
-1947-02-18,182.20,182.91,181.26,181.93,870000,181.93
-1947-02-17,181.36,182.74,180.89,182.20,870000,182.20
-1947-02-14,182.18,182.23,180.62,181.64,940000,181.64
-1947-02-13,184.06,184.25,181.64,182.18,1340000,182.18
-1947-02-11,183.57,184.43,181.81,184.06,1300000,184.06
-1947-02-10,184.49,184.96,183.12,183.57,1300000,183.57
-1947-02-07,181.57,184.18,181.33,183.74,1980000,183.74
-1947-02-06,182.27,182.27,180.72,181.57,1120000,181.57
-1947-02-05,182.28,183.12,181.45,182.52,1180000,182.52
-1947-02-04,181.92,183.15,181.44,182.28,1350000,182.28
-1947-02-03,180.88,182.37,180.57,181.92,1360000,181.92
-1947-01-31,179.74,181.34,179.49,180.44,1310000,180.44
-1947-01-30,180.17,181.18,179.33,179.74,1340000,179.74
-1947-01-29,178.68,180.47,178.03,180.17,1530000,180.17
-1947-01-28,177.28,178.98,177.17,178.68,1080000,178.68
-1947-01-27,175.35,177.55,175.05,177.28,900000,177.28
-1947-01-24,175.13,175.94,174.49,175.49,950000,175.49
-1947-01-23,173.77,175.35,173.59,175.13,880000,175.13
-1947-01-22,173.51,174.19,172.81,173.77,670000,173.77
-1947-01-21,173.95,173.95,172.64,173.51,700000,173.51
-1947-01-20,175.46,175.46,173.69,174.06,810000,174.06
-1947-01-17,172.58,174.87,172.58,174.76,850000,174.76
-1947-01-16,172.10,172.39,170.13,171.95,1050000,171.95
-1947-01-15,172.63,173.46,171.70,172.10,770000,172.10
-1947-01-14,172.49,173.24,171.31,172.63,850000,172.63
-1947-01-13,174.50,174.50,170.99,172.49,1590000,172.49
-1947-01-10,178.43,178.84,176.59,177.43,1060000,177.43
-1947-01-09,178.06,179.06,177.94,178.43,720000,178.43
-1947-01-08,177.49,178.43,176.54,178.06,790000,178.06
-1947-01-07,178.43,179.25,177.12,177.49,980000,177.49
-1947-01-06,176.99,179.04,176.99,178.43,980000,178.43
-1947-01-03,176.39,177.16,174.71,176.76,880000,176.76
-1947-01-02,177.20,177.83,176.04,176.39,750000,176.39
-1946-12-31,176.23,177.89,175.79,177.20,1820000,177.20
-1946-12-30,175.77,177.00,175.15,176.23,1400000,176.23
-1946-12-27,175.21,176.17,173.88,175.66,1290000,175.66
-1946-12-26,176.79,176.79,174.54,175.21,1150000,175.21
-1946-12-24,177.36,177.51,176.25,176.95,950000,176.95
-1946-12-23,178.32,178.54,176.85,177.36,1170000,177.36
-1946-12-20,177.29,178.58,176.82,177.85,1470000,177.85
-1946-12-19,175.28,178.06,175.28,177.29,1740000,177.29
-1946-12-18,174.47,175.62,173.62,174.84,1110000,174.84
-1946-12-17,174.85,175.42,173.93,174.47,1020000,174.47
-1946-12-16,174.73,175.93,174.18,174.85,1010000,174.85
-1946-12-13,173.91,174.41,172.57,173.90,1000000,173.90
-1946-12-12,175.75,175.75,173.17,173.91,1060000,173.91
-1946-12-11,175.92,176.67,174.80,176.07,1230000,176.07
-1946-12-10,175.76,177.21,174.84,175.92,1730000,175.92
-1946-12-09,173.43,176.48,173.43,175.76,2840000,175.76
-1946-12-06,169.95,170.92,169.20,170.39,1060000,170.39
-1946-12-05,170.33,170.66,168.63,169.95,1000000,169.95
-1946-12-04,168.05,170.98,167.48,170.33,1440000,170.33
-1946-12-03,167.50,168.60,166.20,168.05,960000,168.05
-1946-12-02,169.07,169.07,166.74,167.50,810000,167.50
-1946-11-29,168.34,170.25,168.23,169.78,1010000,169.78
-1946-11-27,167.35,169.18,167.35,168.34,1070000,168.34
-1946-11-26,165.31,167.81,165.31,166.94,1080000,166.94
-1946-11-25,165.10,165.99,164.37,165.23,790000,165.23
-1946-11-22,164.12,164.49,162.29,163.55,1200000,163.55
-1946-11-21,165.98,165.98,163.50,164.12,1380000,164.12
-1946-11-20,167.88,167.99,166.20,166.91,970000,166.91
-1946-11-19,167.91,168.35,166.28,167.88,910000,167.88
-1946-11-18,169.03,169.11,167.23,167.91,770000,167.91
-1946-11-15,170.88,171.48,168.89,169.67,930000,169.67
-1946-11-14,169.84,171.45,169.16,170.88,960000,170.88
-1946-11-13,170.52,170.52,168.02,169.84,1050000,169.84
-1946-11-12,171.80,173.48,170.41,170.87,1370000,170.87
-1946-11-08,169.75,171.78,169.75,170.79,1000000,170.79
-1946-11-07,168.88,170.59,167.50,169.60,1140000,169.60
-1946-11-06,174.40,175.00,168.38,168.88,2000000,168.88
-1946-11-04,173.03,175.78,173.03,174.40,1830000,174.40
-1946-11-01,169.50,172.33,169.50,171.76,1670000,171.76
-1946-10-31,164.71,169.68,164.71,169.15,1700000,169.15
-1946-10-30,164.21,165.32,160.49,164.20,1940000,164.20
-1946-10-29,166.04,166.62,163.98,164.21,1240000,164.21
-1946-10-28,168.44,168.48,165.98,166.04,1000000,166.04
-1946-10-25,169.96,169.96,167.84,168.76,920000,168.76
-1946-10-24,170.67,170.90,169.14,169.98,860000,169.98
-1946-10-23,171.25,171.27,168.68,170.67,950000,170.67
-1946-10-22,171.93,172.34,170.16,171.25,870000,171.25
-1946-10-21,171.34,172.59,170.63,171.93,840000,171.93
-1946-10-18,171.76,172.51,170.32,171.65,920000,171.65
-1946-10-17,173.61,173.61,170.47,171.76,1310000,171.76
-1946-10-16,175.94,177.05,174.03,174.35,1650000,174.35
-1946-10-15,173.05,176.52,173.05,175.94,2370000,175.94
-1946-10-14,167.97,170.60,167.53,169.86,1290000,169.86
-1946-10-11,165.60,168.59,165.60,167.97,1470000,167.97
-1946-10-10,163.12,165.53,161.61,164.94,2220000,164.94
-1946-10-09,166.53,166.53,162.80,163.12,2020000,163.12
-1946-10-08,168.87,170.00,167.00,167.34,1260000,167.34
-1946-10-07,169.00,169.83,167.82,168.87,950000,168.87
-1946-10-04,171.13,171.13,169.06,169.80,920000,169.80
-1946-10-03,172.72,173.10,171.13,171.64,920000,171.64
-1946-10-02,171.47,173.39,171.40,172.72,960000,172.72
-1946-10-01,172.42,172.42,170.43,171.47,890000,171.47
-1946-09-30,173.56,173.56,170.44,172.42,1060000,172.42
-1946-09-27,174.96,175.18,173.35,174.09,980000,174.09
-1946-09-26,172.95,175.45,171.59,174.96,1300000,174.96
-1946-09-25,169.43,173.44,169.43,172.95,1800000,172.95
-1946-09-24,166.56,169.75,164.21,168.89,2230000,168.89
-1946-09-23,169.06,172.15,166.09,166.56,2120000,166.56
-1946-09-20,165.17,170.13,164.77,169.06,2820000,169.06
-1946-09-19,169.05,169.05,164.09,165.17,2890000,165.17
-1946-09-18,173.43,173.43,168.40,169.07,2100000,169.07
-1946-09-17,174.45,174.82,172.13,173.66,1390000,173.66
-1946-09-16,173.39,176.26,173.02,174.45,1490000,174.45
-1946-09-13,171.70,173.99,170.87,173.39,1720000,173.39
-1946-09-12,172.13,173.34,170.00,171.70,2010000,171.70
-1946-09-11,167.80,173.20,167.80,172.13,2870000,172.13
-1946-09-10,172.03,172.89,166.56,167.30,3300000,167.30
-1946-09-09,177.52,177.52,170.53,172.03,2840000,172.03
-1946-09-06,181.18,181.67,178.43,179.96,1670000,179.96
-1946-09-05,177.96,181.81,177.96,181.18,2360000,181.18
-1946-09-04,178.68,178.93,173.64,176.72,3620000,176.72
-1946-09-03,188.21,188.21,177.49,178.68,2910000,178.68
-1946-08-30,190.47,190.49,187.44,189.19,1170000,189.19
-1946-08-29,190.03,192.50,189.71,190.47,1060000,190.47
-1946-08-28,191.04,191.28,187.26,190.03,2100000,190.03
-1946-08-27,195.46,195.46,190.03,191.04,1790000,191.04
-1946-08-26,197.75,198.97,196.47,196.99,760000,196.99
-1946-08-23,196.91,198.69,196.91,197.75,770000,197.75
-1946-08-22,198.05,198.05,194.53,196.66,1540000,196.66
-1946-08-21,201.27,202.49,199.70,200.00,840000,200.00
-1946-08-20,200.22,201.54,200.22,201.27,700000,201.27
-1946-08-19,200.69,201.18,198.90,200.19,660000,200.19
-1946-08-16,201.38,201.38,200.14,200.69,690000,200.69
-1946-08-15,203.81,203.81,202.30,202.49,620000,202.49
-1946-08-14,204.52,205.01,203.59,203.99,800000,203.99
-1946-08-13,203.36,204.94,203.28,204.52,930000,204.52
-1946-08-12,203.57,203.90,202.81,203.36,700000,203.36
-1946-08-09,204.10,204.46,203.16,203.57,910000,203.57
-1946-08-08,203.13,204.56,203.13,204.10,890000,204.10
-1946-08-07,201.35,203.08,201.18,202.96,880000,202.96
-1946-08-06,201.93,202.05,200.47,201.35,730000,201.35
-1946-08-05,202.82,203.03,201.39,201.93,700000,201.93
-1946-08-02,202.26,203.38,201.70,202.82,750000,202.82
-1946-08-01,201.56,202.97,201.32,202.26,830000,202.26
-1946-07-31,199.40,202.15,198.78,201.56,1020000,201.56
-1946-07-30,198.22,200.13,198.15,199.40,810000,199.40
-1946-07-29,197.63,199.11,197.46,198.22,720000,198.22
-1946-07-26,196.47,198.53,196.47,197.63,980000,197.63
-1946-07-25,195.37,197.58,195.28,196.25,900000,196.25
-1946-07-24,195.22,196.30,194.33,195.37,1170000,195.37
-1946-07-23,199.83,199.83,194.79,195.22,1690000,195.22
-1946-07-22,201.13,201.60,199.89,200.54,690000,200.54
-1946-07-19,201.86,202.06,200.68,201.13,650000,201.13
-1946-07-18,202.25,203.46,201.47,201.86,730000,201.86
-1946-07-17,200.85,202.79,200.85,202.25,920000,202.25
-1946-07-16,200.86,201.44,199.48,200.71,1180000,200.71
-1946-07-15,204.20,204.42,200.31,200.86,1170000,200.86
-1946-07-12,205.49,205.49,202.85,204.20,1130000,204.20
-1946-07-11,207.52,207.52,205.96,206.30,990000,206.30
-1946-07-10,207.43,208.17,206.84,207.56,910000,207.56
-1946-07-09,206.62,207.91,206.16,207.43,790000,207.43
-1946-07-08,206.72,207.40,206.37,206.62,680000,206.62
-1946-07-05,207.06,207.40,206.47,206.72,490000,206.72
-1946-07-03,206.64,207.50,206.36,207.06,650000,207.06
-1946-07-02,206.47,207.43,205.56,206.64,760000,206.64
-1946-07-01,205.79,208.59,205.79,206.47,1570000,206.47
-1946-06-28,205.03,206.41,204.32,205.62,1010000,205.62
-1946-06-27,202.83,205.68,202.83,205.03,1200000,205.03
-1946-06-26,202.54,202.98,200.52,202.10,1020000,202.10
-1946-06-25,203.56,203.83,202.11,202.54,880000,202.54
-1946-06-24,203.09,204.65,202.68,203.56,990000,203.56
-1946-06-21,200.52,203.42,198.98,203.09,1340000,203.09
-1946-06-20,205.65,205.65,200.31,200.52,1310000,200.52
-1946-06-19,206.93,206.93,205.24,205.74,1010000,205.74
-1946-06-18,210.01,210.01,207.42,207.71,1150000,207.71
-1946-06-17,210.36,211.16,209.65,210.13,1020000,210.13
-1946-06-14,210.56,211.46,209.73,210.36,980000,210.36
-1946-06-13,209.26,211.25,209.26,210.56,1150000,210.56
-1946-06-12,209.05,209.34,207.52,208.96,970000,208.96
-1946-06-11,210.68,211.14,208.92,209.05,1090000,209.05
-1946-06-10,209.96,211.44,209.73,210.68,1010000,210.68
-1946-06-07,209.50,210.40,208.63,209.96,1020000,209.96
-1946-06-06,209.78,210.03,208.33,209.50,980000,209.50
-1946-06-05,210.03,211.42,209.30,209.78,1170000,209.78
-1946-06-04,211.37,211.37,209.03,210.03,1210000,210.03
-1946-06-03,212.28,212.48,210.90,211.47,1210000,211.47
-1946-05-31,212.50,213.29,210.97,212.28,1310000,212.28
-1946-05-29,211.70,213.36,210.34,212.50,2000000,212.50
-1946-05-28,209.42,212.18,209.29,211.70,2220000,211.70
-1946-05-27,208.41,210.34,208.41,209.42,1730000,209.42
-1946-05-24,208.05,208.26,205.96,207.69,1210000,207.69
-1946-05-23,208.00,209.15,207.21,208.05,1350000,208.05
-1946-05-22,207.25,208.38,207.00,208.00,1610000,208.00
-1946-05-21,207.13,208.53,206.58,207.25,1250000,207.25
-1946-05-20,205.80,207.42,205.05,207.13,910000,207.13
-1946-05-17,206.17,207.04,205.50,206.56,980000,206.56
-1946-05-16,205.07,206.53,204.38,206.17,1140000,206.17
-1946-05-15,206.69,206.82,204.23,205.07,1020000,205.07
-1946-05-14,207.34,207.47,205.88,206.69,1140000,206.69
-1946-05-13,208.06,208.40,206.63,207.34,1250000,207.34
-1946-05-10,204.09,207.84,204.09,207.10,1820000,207.10
-1946-05-09,204.17,204.68,202.37,204.07,1070000,204.07
-1946-05-08,203.51,205.05,202.35,204.17,1210000,204.17
-1946-05-07,200.65,203.97,199.94,203.51,1350000,203.51
-1946-05-06,202.00,202.00,199.26,200.65,1080000,200.65
-1946-05-03,204.31,204.31,202.53,203.25,1020000,203.25
-1946-05-02,205.67,206.25,204.47,204.98,1000000,204.98
-1946-05-01,206.59,206.59,205.07,205.67,980000,205.67
-1946-04-30,206.09,207.23,205.53,206.77,1000000,206.77
-1946-04-29,206.13,206.97,205.07,206.09,1000000,206.09
-1946-04-26,204.60,205.21,203.13,204.59,1210000,204.59
-1946-04-25,205.60,205.60,203.09,204.60,1390000,204.60
-1946-04-24,207.31,208.12,205.81,206.13,1500000,206.13
-1946-04-23,207.99,208.19,206.01,207.31,1380000,207.31
-1946-04-22,208.06,208.94,207.33,207.99,1210000,207.99
-1946-04-18,207.93,209.10,207.27,208.31,1500000,208.31
-1946-04-17,207.97,209.36,206.97,207.93,1530000,207.93
-1946-04-16,206.28,208.51,206.28,207.97,1460000,207.97
-1946-04-15,206.02,206.36,204.57,206.01,1170000,206.01
-1946-04-12,206.93,207.89,206.16,206.96,1240000,206.96
-1946-04-11,207.90,207.90,206.05,206.93,1210000,206.93
-1946-04-10,208.03,208.93,207.20,208.02,1580000,208.02
-1946-04-09,205.43,208.54,205.43,208.03,1710000,208.03
-1946-04-08,204.98,206.00,204.31,205.43,1250000,205.43
-1946-04-05,204.77,205.18,202.88,204.04,1660000,204.04
-1946-04-04,203.25,205.79,203.25,204.77,2130000,204.77
-1946-04-03,199.83,203.29,199.81,203.12,1560000,203.12
-1946-04-02,199.19,200.16,198.98,199.83,1040000,199.83
-1946-04-01,199.75,199.97,198.47,199.19,1050000,199.19
-1946-03-29,198.23,200.36,198.23,199.56,1230000,199.56
-1946-03-28,198.73,198.92,197.27,198.18,900000,198.18
-1946-03-27,199.81,199.81,197.83,198.73,1000000,198.73
-1946-03-26,200.55,201.85,200.04,200.56,1440000,200.56
-1946-03-25,198.27,200.80,198.27,200.55,1640000,200.55
-1946-03-22,196.70,198.20,195.92,197.19,1180000,197.19
-1946-03-21,195.53,197.00,195.10,196.70,1210000,196.70
-1946-03-20,194.09,195.90,193.63,195.53,1280000,195.53
-1946-03-19,195.33,196.23,193.77,194.09,1050000,194.09
-1946-03-18,194.05,195.86,194.05,195.33,1070000,195.33
-1946-03-15,189.98,192.14,189.71,191.66,1060000,191.66
-1946-03-14,190.36,191.76,189.32,189.98,1090000,189.98
-1946-03-13,192.87,192.87,188.86,190.36,1620000,190.36
-1946-03-12,192.89,193.86,192.39,193.52,720000,193.52
-1946-03-11,194.45,194.73,192.34,192.89,880000,192.89
-1946-03-08,192.08,194.40,192.08,193.70,970000,193.70
-1946-03-07,190.30,191.93,190.30,191.50,900000,191.50
-1946-03-06,190.49,190.77,189.39,190.28,890000,190.28
-1946-03-05,188.91,191.16,188.91,190.49,1050000,190.49
-1946-03-04,188.73,188.87,186.77,188.46,970000,188.46
-1946-03-01,190.09,190.58,188.90,189.42,820000,189.42
-1946-02-28,189.06,190.64,188.19,190.09,1180000,190.09
-1946-02-27,187.34,189.56,187.34,189.06,1400000,189.06
-1946-02-26,187.23,188.09,184.05,186.02,2650000,186.02
-1946-02-25,194.04,194.04,186.87,187.23,2400000,187.23
-1946-02-21,193.05,196.30,193.05,195.62,1590000,195.62
-1946-02-20,195.06,195.06,191.17,192.38,2150000,192.38
-1946-02-19,200.42,200.42,194.90,196.13,2300000,196.13
-1946-02-18,204.13,204.13,200.84,201.63,1560000,201.63
-1946-02-15,201.06,203.56,201.06,203.09,1780000,203.09
-1946-02-14,198.74,201.18,198.45,199.75,1290000,199.75
-1946-02-13,200.81,200.81,197.65,198.74,1690000,198.74
-1946-02-11,202.30,202.72,200.59,201.14,1440000,201.14
-1946-02-08,205.09,205.60,203.62,204.38,1260000,204.38
-1946-02-07,205.48,205.73,203.63,205.09,1490000,205.09
-1946-02-06,206.61,207.24,205.15,205.48,1750000,205.48
-1946-02-05,205.84,206.84,204.55,206.61,1670000,206.61
-1946-02-04,206.97,207.49,205.05,205.84,1660000,205.84
-1946-02-01,204.67,206.06,203.69,205.79,1560000,205.79
-1946-01-31,204.84,205.22,203.07,204.67,1690000,204.67
-1946-01-30,205.35,206.59,203.37,204.84,2280000,204.84
-1946-01-29,204.62,206.49,203.75,205.35,2910000,205.35
-1946-01-28,202.10,205.50,202.10,204.62,3490000,204.62
-1946-01-25,200.04,200.13,198.17,199.50,1760000,199.50
-1946-01-24,198.84,200.86,198.68,200.04,2210000,200.04
-1946-01-23,197.35,199.48,197.20,198.84,2050000,198.84
-1946-01-22,196.63,198.00,195.63,197.35,1530000,197.35
-1946-01-21,198.03,198.03,195.52,196.63,1680000,196.63
-1946-01-18,203.49,203.70,200.78,202.18,3230000,202.18
-1946-01-17,203.81,205.03,202.95,203.49,2200000,203.49
-1946-01-16,202.97,204.50,201.93,203.81,2100000,203.81
-1946-01-15,201.93,204.02,201.73,202.97,2720000,202.97
-1946-01-14,200.25,202.59,200.25,201.93,2740000,201.93
-1946-01-11,199.16,200.86,198.67,200.04,2250000,200.04
-1946-01-10,197.33,199.78,197.17,199.16,2470000,199.16
-1946-01-09,195.16,198.40,195.16,197.33,2930000,197.33
-1946-01-08,192.04,194.98,192.04,194.65,2160000,194.65
-1946-01-07,191.47,192.40,190.87,191.77,1230000,191.77
-1946-01-04,191.25,191.81,190.27,190.90,1080000,190.90
-1946-01-03,191.66,191.97,189.77,191.25,1390000,191.25
-1946-01-02,192.65,192.65,191.15,191.66,1050000,191.66
-1945-12-31,192.84,193.47,192.07,192.91,1010000,192.91
-1945-12-28,192.31,192.95,191.58,192.43,1090000,192.43
-1945-12-27,192.76,193.89,191.76,192.31,1330000,192.31
-1945-12-26,191.59,193.45,191.59,192.76,1420000,192.76
-1945-12-21,189.36,189.67,187.51,189.07,940000,189.07
-1945-12-20,190.22,190.22,188.84,189.36,800000,189.36
-1945-12-19,190.98,191.43,190.11,190.62,980000,190.62
-1945-12-18,190.37,191.78,189.33,190.98,1360000,190.98
-1945-12-17,192.87,192.87,189.80,190.37,1990000,190.37
-1945-12-14,193.52,193.86,192.50,193.34,1130000,193.34
-1945-12-13,193.96,194.62,192.84,193.52,1220000,193.52
-1945-12-12,195.39,195.39,193.18,193.96,1680000,193.96
-1945-12-11,195.64,196.47,194.34,195.82,1690000,195.82
-1945-12-10,195.18,196.59,194.76,195.64,2140000,195.64
-1945-12-07,193.84,194.78,193.18,194.08,2050000,194.08
-1945-12-06,193.08,194.62,192.70,193.84,2290000,193.84
-1945-12-05,193.06,193.67,191.75,193.08,1860000,193.08
-1945-12-04,193.65,194.12,192.17,193.06,2310000,193.06
-1945-12-03,192.40,194.36,192.16,193.65,2610000,193.65
-1945-11-30,189.77,191.84,189.77,191.46,1820000,191.46
-1945-11-29,189.99,190.22,188.80,189.58,1750000,189.58
-1945-11-28,190.45,191.47,189.58,189.99,1800000,189.99
-1945-11-27,188.79,190.90,188.79,190.45,1830000,190.45
-1945-11-26,186.44,188.55,186.44,188.16,1530000,188.16
-1945-11-23,189.26,189.26,187.34,187.82,1350000,187.82
-1945-11-21,191.47,191.47,188.97,189.54,1910000,189.54
-1945-11-20,191.51,192.83,190.69,192.12,2180000,192.12
-1945-11-19,192.27,192.50,190.20,191.51,2020000,191.51
-1945-11-16,191.13,192.95,191.02,192.13,2340000,192.13
-1945-11-15,189.77,191.60,189.58,191.13,2010000,191.13
-1945-11-14,190.56,190.61,188.82,189.77,1610000,189.77
-1945-11-13,191.37,192.46,190.23,190.56,2500000,190.56
-1945-11-09,191.72,192.46,190.68,191.46,1830000,191.46
-1945-11-08,192.04,192.78,190.79,191.72,1960000,191.72
-1945-11-07,190.13,192.76,190.13,192.04,2380000,192.04
-1945-11-05,188.58,189.69,188.02,189.50,1650000,189.50
-1945-11-02,188.84,189.40,187.54,188.62,1840000,188.62
-1945-11-01,187.02,189.33,187.02,188.84,2210000,188.84
-1945-10-31,184.16,186.74,183.59,186.60,2060000,186.60
-1945-10-30,184.24,184.61,182.88,184.16,1170000,184.16
-1945-10-29,185.39,186.02,183.90,184.24,1260000,184.24
-1945-10-26,184.54,186.01,184.09,185.39,1300000,185.39
-1945-10-25,183.72,185.13,183.43,184.54,1230000,184.54
-1945-10-24,185.52,185.52,183.02,183.72,1370000,183.72
-1945-10-23,187.06,187.52,184.76,186.15,1370000,186.15
-1945-10-22,185.60,187.26,185.29,187.06,1140000,187.06
-1945-10-19,186.78,187.50,185.12,185.34,1730000,185.34
-1945-10-18,186.10,187.55,185.68,186.78,1670000,186.78
-1945-10-17,185.49,186.72,184.92,186.10,1800000,186.10
-1945-10-16,185.51,185.98,184.42,185.49,1630000,185.49
-1945-10-15,185.72,186.32,185.00,185.51,1630000,185.51
-1945-10-11,186.05,186.10,184.83,185.72,1560000,185.72
-1945-10-10,185.43,186.52,185.07,186.05,1700000,186.05
-1945-10-09,185.46,185.95,184.26,185.43,1640000,185.43
-1945-10-08,184.77,186.02,184.66,185.46,1780000,185.46
-1945-10-05,183.06,184.48,182.80,183.94,1420000,183.94
-1945-10-04,183.33,183.75,182.32,183.06,1340000,183.06
-1945-10-03,183.85,184.20,182.32,183.33,1430000,183.33
-1945-10-02,183.37,185.05,183.13,183.85,1800000,183.85
-1945-10-01,181.93,183.92,181.93,183.37,1990000,183.37
-1945-09-28,178.83,180.31,178.83,180.11,1380000,180.11
-1945-09-27,178.95,179.36,177.82,178.57,1060000,178.57
-1945-09-26,179.41,179.41,178.12,178.95,1040000,178.95
-1945-09-25,179.51,180.42,178.89,179.42,1190000,179.42
-1945-09-24,179.49,179.79,178.71,179.51,890000,179.51
-1945-09-21,180.22,180.80,178.87,179.69,1340000,179.69
-1945-09-20,179.51,180.72,178.92,180.22,1500000,180.22
-1945-09-19,178.32,180.06,178.32,179.51,1690000,179.51
-1945-09-18,175.19,177.76,175.19,177.58,1160000,177.58
-1945-09-17,175.11,175.11,173.30,174.75,900000,174.75
-1945-09-14,178.59,178.59,177.20,177.74,1020000,177.74
-1945-09-13,178.99,179.33,178.21,178.59,1170000,178.59
-1945-09-12,177.77,179.33,177.55,178.99,1340000,178.99
-1945-09-11,177.03,178.04,176.33,177.77,1130000,177.77
-1945-09-10,176.99,177.78,176.62,177.03,1110000,177.03
-1945-09-07,175.96,177.57,175.76,176.61,1330000,176.61
-1945-09-06,174.24,176.14,174.17,175.96,1380000,175.96
-1945-09-05,173.90,174.49,173.23,174.24,980000,174.24
-1945-09-04,174.29,174.86,173.52,173.90,1070000,173.90
-1945-08-31,172.73,174.54,172.73,174.29,1110000,174.29
-1945-08-30,172.09,172.58,171.46,172.37,890000,172.37
-1945-08-29,172.32,172.51,171.34,172.09,920000,172.09
-1945-08-28,171.96,172.93,171.43,172.32,1260000,172.32
-1945-08-27,170.11,172.26,170.11,171.96,1570000,171.96
-1945-08-24,167.64,170.04,167.54,169.89,1320000,169.89
-1945-08-23,164.99,167.94,164.99,167.64,1190000,167.64
-1945-08-22,163.38,164.94,163.35,164.54,760000,164.54
-1945-08-21,163.11,163.88,162.28,163.38,1160000,163.38
-1945-08-20,164.38,164.82,162.68,163.11,1320000,163.11
-1945-08-17,164.79,166.08,164.01,164.38,1210000,164.38
-1945-08-14,164.11,165.22,164.04,164.79,910000,164.79
-1945-08-13,165.02,165.02,162.81,164.11,970000,164.11
-1945-08-10,164.55,166.54,164.07,165.14,1690000,165.14
-1945-08-09,161.83,164.82,161.14,164.55,1460000,164.55
-1945-08-08,161.55,162.74,161.17,161.83,700000,161.83
-1945-08-07,162.87,162.87,161.16,161.55,980000,161.55
-1945-08-06,163.06,163.69,162.66,163.19,490000,163.19
-1945-08-03,162.49,163.23,162.27,163.06,510000,163.06
-1945-08-02,162.72,163.08,161.82,162.49,600000,162.49
-1945-08-01,162.88,163.21,162.27,162.72,650000,162.72
-1945-07-31,162.21,163.36,162.21,162.88,870000,162.88
-1945-07-30,160.92,162.51,160.88,162.09,910000,162.09
-1945-07-27,160.91,161.34,159.95,160.92,920000,160.92
-1945-07-26,162.44,162.91,160.71,160.91,1440000,160.91
-1945-07-25,162.10,162.63,162.10,162.44,620000,162.44
-1945-07-24,161.65,162.00,160.98,161.73,640000,161.73
-1945-07-23,162.50,162.82,161.49,161.65,760000,161.65
-1945-07-20,162.81,163.22,162.04,162.50,650000,162.50
-1945-07-19,161.95,163.39,161.95,162.81,780000,162.81
-1945-07-18,162.43,162.87,160.62,161.69,1450000,161.69
-1945-07-17,165.22,165.22,162.29,162.43,1560000,162.43
-1945-07-16,166.67,167.08,165.46,165.82,790000,165.82
-1945-07-13,166.85,167.41,166.29,166.67,960000,166.67
-1945-07-12,166.59,167.24,165.51,166.85,970000,166.85
-1945-07-11,167.09,167.49,166.16,166.59,810000,166.59
-1945-07-10,166.60,167.79,166.60,167.09,940000,167.09
-1945-07-09,164.67,166.76,164.64,166.55,800000,166.55
-1945-07-06,164.26,165.07,163.47,164.67,960000,164.67
-1945-07-05,165.36,165.36,164.02,164.26,920000,164.26
-1945-07-03,165.91,166.39,165.35,165.73,860000,165.73
-1945-07-02,165.39,166.75,165.39,165.91,1380000,165.91
-1945-06-29,166.22,166.24,163.78,164.57,2020000,164.57
-1945-06-28,168.78,168.80,165.70,166.22,2940000,166.22
-1945-06-27,168.92,169.27,168.36,168.78,1690000,168.78
-1945-06-26,168.59,169.55,168.40,168.92,2140000,168.92
-1945-06-25,168.24,168.90,167.97,168.59,1890000,168.59
-1945-06-22,168.14,168.69,167.48,167.90,1850000,167.90
-1945-06-21,167.74,168.84,167.53,168.14,2100000,168.14
-1945-06-20,167.23,168.01,166.81,167.74,1680000,167.74
-1945-06-19,166.94,167.80,166.50,167.23,1560000,167.23
-1945-06-18,167.54,167.72,166.67,166.94,1930000,166.94
-1945-06-15,167.08,168.10,166.92,167.64,1900000,167.64
-1945-06-14,166.75,167.47,166.51,167.08,1850000,167.08
-1945-06-13,166.39,167.10,166.07,166.75,1590000,166.75
-1945-06-12,166.25,166.78,165.89,166.39,1320000,166.39
-1945-06-11,166.85,167.20,166.09,166.25,1490000,166.25
-1945-06-08,167.16,167.67,166.54,166.83,1710000,166.83
-1945-06-07,167.29,167.63,166.58,167.16,1300000,167.16
-1945-06-06,168.13,168.16,166.58,167.29,1520000,167.29
-1945-06-05,168.08,168.80,167.54,168.13,1510000,168.13
-1945-06-04,167.96,168.49,167.36,168.08,1540000,168.08
-1945-06-01,168.30,168.51,167.47,168.08,1430000,168.08
-1945-05-31,169.08,169.41,167.90,168.30,1220000,168.30
-1945-05-29,168.21,169.53,168.06,169.08,1600000,169.08
-1945-05-28,166.45,168.75,166.45,168.21,1570000,168.21
-1945-05-25,164.41,165.55,164.38,165.12,1300000,165.12
-1945-05-24,164.50,164.81,163.73,164.41,960000,164.41
-1945-05-23,165.72,165.72,163.80,164.50,1310000,164.50
-1945-05-22,165.99,166.61,165.47,165.91,1050000,165.91
-1945-05-21,166.44,166.93,165.61,165.99,1080000,165.99
-1945-05-18,165.20,166.47,165.19,166.17,1430000,166.17
-1945-05-17,164.50,165.85,164.23,165.20,1370000,165.20
-1945-05-16,164.00,165.07,163.76,164.50,1210000,164.50
-1945-05-15,163.45,164.31,163.07,164.00,1010000,164.00
-1945-05-14,163.96,164.41,163.16,163.45,980000,163.45
-1945-05-11,163.09,163.82,162.60,163.21,1070000,163.21
-1945-05-10,164.56,164.56,162.68,163.09,1510000,163.09
-1945-05-09,166.42,166.72,165.06,165.24,1490000,165.24
-1945-05-08,166.53,167.25,165.62,166.42,1580000,166.42
-1945-05-07,166.71,167.25,165.76,166.53,1950000,166.53
-1945-05-04,165.84,166.61,165.40,166.27,1410000,166.27
-1945-05-03,165.03,166.02,164.77,165.84,1340000,165.84
-1945-05-02,165.09,165.38,164.45,165.03,1140000,165.03
-1945-05-01,165.44,166.18,164.49,165.09,1530000,165.09
-1945-04-30,164.71,165.71,164.10,165.44,1500000,165.44
-1945-04-27,163.22,164.27,163.12,163.94,1360000,163.94
-1945-04-26,163.78,163.78,162.06,163.22,1370000,163.22
-1945-04-25,164.31,164.46,163.17,163.91,1420000,163.91
-1945-04-24,163.58,164.62,163.33,164.31,1830000,164.31
-1945-04-23,163.20,164.08,162.88,163.58,1380000,163.58
-1945-04-20,163.18,163.67,162.46,162.83,1130000,162.83
-1945-04-19,163.83,164.45,162.72,163.18,1680000,163.18
-1945-04-18,162.60,164.17,162.35,163.83,1710000,163.83
-1945-04-17,162.43,163.72,162.15,162.60,2070000,162.60
-1945-04-16,160.57,162.76,160.57,162.43,2500000,162.43
-1945-04-13,158.48,159.95,157.73,159.75,1800000,159.75
-1945-04-12,158.06,159.14,157.89,158.48,1060000,158.48
-1945-04-11,156.59,158.17,156.59,158.06,1060000,158.06
-1945-04-10,156.10,156.82,155.54,156.51,760000,156.51
-1945-04-09,156.33,156.71,155.91,156.10,570000,156.10
-1945-04-06,154.99,155.95,154.70,155.85,610000,155.85
-1945-04-05,155.96,156.26,154.77,154.99,680000,154.99
-1945-04-04,156.20,156.41,155.69,155.96,520000,155.96
-1945-04-03,155.94,156.97,155.94,156.20,730000,156.20
-1945-04-02,154.51,156.05,154.51,155.86,650000,155.86
-1945-03-29,153.79,154.46,153.48,154.06,660000,154.06
-1945-03-28,152.89,154.08,152.89,153.79,720000,153.79
-1945-03-27,152.27,153.51,151.77,152.78,1110000,152.78
-1945-03-26,153.62,153.62,151.74,152.27,1390000,152.27
-1945-03-23,155.07,156.00,154.68,155.45,680000,155.45
-1945-03-22,155.30,155.73,154.82,155.07,830000,155.07
-1945-03-21,156.10,156.10,154.08,155.30,1340000,155.30
-1945-03-20,157.71,157.71,156.14,156.37,920000,156.37
-1945-03-19,158.75,158.88,157.36,157.89,1070000,157.89
-1945-03-16,158.53,159.42,158.41,158.92,880000,158.92
-1945-03-15,157.84,158.95,157.84,158.53,800000,158.53
-1945-03-14,157.59,158.16,157.29,157.83,750000,157.83
-1945-03-13,157.88,158.24,156.94,157.59,760000,157.59
-1945-03-12,157.33,158.38,157.33,157.88,920000,157.88
-1945-03-09,158.29,158.29,155.96,156.34,2060000,156.34
-1945-03-08,161.34,161.34,158.31,158.86,1860000,158.86
-1945-03-07,161.50,162.21,160.96,161.52,1400000,161.52
-1945-03-06,160.68,162.22,160.56,161.50,1690000,161.50
-1945-03-05,159.71,160.85,159.56,160.68,1190000,160.68
-1945-03-02,160.72,160.76,159.63,159.95,1770000,159.95
-1945-03-01,160.40,161.15,160.11,160.72,2090000,160.72
-1945-02-28,159.51,160.85,159.51,160.40,1960000,160.40
-1945-02-27,158.41,159.47,158.23,159.30,1190000,159.30
-1945-02-26,158.69,158.91,157.45,158.41,1260000,158.41
-1945-02-23,159.66,159.80,158.55,158.99,1320000,158.99
-1945-02-21,159.57,160.17,158.04,159.66,1720000,159.66
-1945-02-20,159.01,159.86,158.69,159.57,1770000,159.57
-1945-02-19,158.23,159.54,157.92,159.01,1880000,159.01
-1945-02-16,158.24,158.82,157.57,158.23,1900000,158.23
-1945-02-15,157.08,158.37,157.06,158.24,1870000,158.24
-1945-02-14,156.37,157.81,156.37,157.08,2060000,157.08
-1945-02-13,154.90,156.49,154.90,156.34,1800000,156.34
-1945-02-09,155.48,155.48,154.25,154.75,1180000,154.75
-1945-02-08,155.71,156.17,155.19,155.54,1530000,155.54
-1945-02-07,155.50,156.07,155.13,155.71,1500000,155.71
-1945-02-06,155.35,156.00,155.18,155.50,1600000,155.50
-1945-02-05,154.76,155.76,154.56,155.35,1800000,155.35
-1945-02-02,153.79,154.71,153.30,154.45,1870000,154.45
-1945-02-01,153.67,154.15,153.22,153.79,1560000,153.79
-1945-01-31,153.45,153.93,152.62,153.67,1180000,153.67
-1945-01-30,154.06,154.58,153.31,153.45,1530000,153.45
-1945-01-29,154.13,154.25,153.30,154.06,1370000,154.06
-1945-01-26,152.53,153.57,152.53,153.30,1260000,153.30
-1945-01-25,151.39,152.62,151.39,152.26,970000,152.26
-1945-01-24,151.36,152.15,150.53,151.35,1010000,151.35
-1945-01-23,152.03,152.97,151.23,151.36,1370000,151.36
-1945-01-22,152.41,152.41,151.10,152.03,1470000,152.03
-1945-01-19,154.58,154.58,153.37,153.84,1610000,153.84
-1945-01-18,155.33,155.50,153.95,154.61,1630000,154.61
-1945-01-17,154.60,155.99,154.53,155.33,1830000,155.33
-1945-01-16,154.76,155.04,153.96,154.60,1210000,154.60
-1945-01-15,155.58,155.72,154.30,154.76,2010000,154.76
-1945-01-12,155.85,156.22,154.99,155.42,1750000,155.42
-1945-01-11,155.67,156.68,155.32,155.85,2210000,155.85
-1945-01-10,155.01,155.95,154.38,155.67,2110000,155.67
-1945-01-09,154.85,155.72,154.52,155.01,2260000,155.01
-1945-01-08,153.69,155.04,153.69,154.85,2000000,154.85
-1945-01-05,154.42,155.02,153.79,154.00,1800000,154.00
-1945-01-04,154.31,155.00,153.72,154.42,1830000,154.42
-1945-01-03,153.02,154.61,153.02,154.31,2160000,154.31
-1945-01-02,152.32,152.83,151.63,152.58,1340000,152.58
-1944-12-29,150.48,152.53,150.48,151.93,1890000,151.93
-1944-12-28,148.71,150.73,148.62,150.47,1230000,150.47
-1944-12-27,149.46,149.46,147.93,148.71,1580000,148.71
-1944-12-26,150.36,150.36,149.41,149.66,1000000,149.66
-1944-12-22,150.28,151.04,150.04,150.43,1280000,150.43
-1944-12-21,150.59,150.73,149.88,150.28,950000,150.28
-1944-12-20,151.39,151.39,150.15,150.59,1480000,150.59
-1944-12-19,151.53,151.90,150.84,151.62,1280000,151.62
-1944-12-18,152.28,152.28,151.15,151.53,980000,151.53
-1944-12-15,150.93,152.75,150.93,152.28,2140000,152.28
-1944-12-14,150.64,151.02,150.11,150.80,1390000,150.80
-1944-12-13,151.20,151.34,150.43,150.64,1130000,150.64
-1944-12-12,151.62,151.75,150.69,151.20,1160000,151.20
-1944-12-11,151.31,152.14,150.65,151.62,1500000,151.62
-1944-12-08,149.23,150.68,149.07,150.48,1680000,150.48
-1944-12-07,148.77,149.64,148.55,149.23,1350000,149.23
-1944-12-06,148.58,149.14,148.03,148.77,1090000,148.77
-1944-12-05,148.22,149.23,148.05,148.58,1480000,148.58
-1944-12-04,147.50,148.41,147.21,148.22,1430000,148.22
-1944-12-01,147.33,147.65,146.76,147.30,930000,147.30
-1944-11-30,147.81,148.06,147.06,147.33,990000,147.33
-1944-11-29,147.14,148.07,146.89,147.81,1160000,147.81
-1944-11-28,146.92,147.40,146.62,147.14,870000,147.14
-1944-11-27,146.63,147.21,146.30,146.92,740000,146.92
-1944-11-24,146.92,147.04,145.99,146.40,680000,146.40
-1944-11-22,147.03,147.59,146.74,146.92,770000,146.92
-1944-11-21,146.34,147.27,146.34,147.03,860000,147.03
-1944-11-20,146.02,146.56,145.71,146.33,690000,146.33
-1944-11-17,145.67,146.15,145.33,145.77,710000,145.77
-1944-11-16,145.64,146.15,145.17,145.67,850000,145.67
-1944-11-15,145.60,146.04,145.22,145.64,820000,145.64
-1944-11-14,146.90,146.90,145.36,145.60,1100000,145.60
-1944-11-13,148.08,148.22,146.78,146.97,920000,146.97
-1944-11-10,147.75,148.39,147.64,148.08,1120000,148.08
-1944-11-09,147.52,148.02,146.98,147.75,850000,147.75
-1944-11-08,147.92,147.92,146.82,147.52,730000,147.52
-1944-11-06,147.37,148.19,147.06,147.92,870000,147.92
-1944-11-03,147.53,147.59,146.87,147.16,730000,147.16
-1944-11-02,146.73,147.69,146.71,147.53,790000,147.53
-1944-11-01,146.53,147.05,146.38,146.73,710000,146.73
-1944-10-31,146.28,147.01,146.12,146.53,680000,146.53
-1944-10-30,146.50,146.68,145.80,146.28,610000,146.28
-1944-10-27,145.83,146.46,145.33,146.29,830000,146.29
-1944-10-26,146.37,146.65,145.47,145.83,930000,145.83
-1944-10-25,146.58,146.82,146.03,146.37,640000,146.37
-1944-10-24,146.58,146.86,145.98,146.58,850000,146.58
-1944-10-23,148.35,148.46,146.37,146.58,1030000,146.58
-1944-10-20,148.55,148.70,147.96,148.21,750000,148.21
-1944-10-19,148.87,149.18,148.21,148.55,830000,148.55
-1944-10-18,148.47,149.18,148.47,148.87,910000,148.87
-1944-10-17,148.09,148.58,147.85,148.39,670000,148.39
-1944-10-16,148.59,148.67,147.97,148.09,580000,148.09
-1944-10-13,148.79,149.03,148.48,148.70,680000,148.70
-1944-10-11,148.25,149.00,148.19,148.79,720000,148.79
-1944-10-10,148.06,148.56,147.68,148.25,600000,148.25
-1944-10-09,148.86,148.86,147.98,148.06,610000,148.06
-1944-10-06,148.62,149.20,148.51,148.84,800000,148.84
-1944-10-05,147.89,148.95,147.78,148.62,1000000,148.62
-1944-10-04,146.93,148.06,146.93,147.89,820000,147.89
-1944-10-03,146.92,147.29,146.49,146.91,750000,146.91
-1944-10-02,146.73,147.30,146.41,146.92,820000,146.92
-1944-09-29,146.11,146.47,145.70,146.31,750000,146.31
-1944-09-28,146.28,146.49,145.67,146.11,640000,146.11
-1944-09-27,146.52,146.76,146.03,146.28,480000,146.28
-1944-09-26,146.77,147.08,146.32,146.52,600000,146.52
-1944-09-25,146.07,147.06,146.07,146.77,790000,146.77
-1944-09-22,145.43,145.95,145.33,145.60,550000,145.60
-1944-09-21,145.85,146.09,145.31,145.43,560000,145.43
-1944-09-20,145.62,146.29,145.42,145.85,700000,145.85
-1944-09-19,144.75,145.97,144.75,145.62,720000,145.62
-1944-09-18,144.36,144.85,144.24,144.75,350000,144.75
-1944-09-15,143.36,144.24,143.36,144.08,640000,144.08
-1944-09-14,143.44,143.44,142.65,142.96,730000,142.96
-1944-09-13,144.88,145.05,143.87,143.94,880000,143.94
-1944-09-12,144.40,145.09,144.40,144.88,550000,144.88
-1944-09-11,143.64,144.56,143.64,144.30,570000,144.30
-1944-09-08,143.58,144.28,143.10,143.51,630000,143.51
-1944-09-07,144.08,144.08,142.53,143.58,1480000,143.58
-1944-09-06,146.44,146.44,144.26,144.42,1470000,144.42
-1944-09-05,147.16,147.45,146.44,146.56,870000,146.56
-1944-09-01,146.99,147.47,146.73,147.16,640000,147.16
-1944-08-31,147.28,147.42,146.77,146.99,610000,146.99
-1944-08-30,147.12,147.69,146.93,147.28,900000,147.28
-1944-08-29,146.87,147.40,146.70,147.12,620000,147.12
-1944-08-28,147.02,147.17,146.53,146.87,550000,146.87
-1944-08-25,147.11,147.38,146.42,147.02,600000,147.02
-1944-08-24,147.87,147.88,146.81,147.11,770000,147.11
-1944-08-23,147.81,148.18,147.49,147.87,790000,147.87
-1944-08-22,148.44,148.44,147.59,147.81,800000,147.81
-1944-08-21,148.96,149.27,148.31,148.52,830000,148.52
-1944-08-18,148.46,149.28,148.42,148.96,1150000,148.96
-1944-08-17,147.62,148.58,147.62,148.46,1240000,148.46
-1944-08-16,146.45,147.42,146.40,147.30,860000,147.30
-1944-08-15,146.77,146.83,146.06,146.45,780000,146.45
-1944-08-14,146.56,146.99,146.45,146.77,690000,146.77
-1944-08-11,145.82,146.63,145.82,146.27,940000,146.27
-1944-08-10,144.95,145.81,144.95,145.65,1020000,145.65
-1944-08-09,144.97,145.25,144.48,144.90,960000,144.90
-1944-08-08,145.32,145.69,144.70,144.97,1270000,144.97
-1944-08-07,145.07,145.75,144.75,145.32,1070000,145.32
-1944-08-04,146.29,146.49,145.20,145.30,1120000,145.30
-1944-08-03,146.77,146.99,146.08,146.29,800000,146.29
-1944-08-02,146.50,147.07,146.50,146.77,800000,146.77
-1944-08-01,146.11,146.92,145.92,146.39,750000,146.39
-1944-07-31,146.14,146.59,145.86,146.11,580000,146.11
-1944-07-28,146.68,146.68,145.88,146.14,560000,146.14
-1944-07-27,146.64,147.08,146.07,146.74,690000,146.74
-1944-07-26,146.74,147.59,146.40,146.64,830000,146.64
-1944-07-25,145.91,146.87,145.91,146.74,830000,146.74
-1944-07-24,145.58,146.37,145.26,145.77,1010000,145.77
-1944-07-21,148.01,148.01,146.42,146.77,1430000,146.77
-1944-07-20,149.01,149.57,148.11,148.27,1340000,148.27
-1944-07-19,148.10,149.46,147.98,149.01,1140000,149.01
-1944-07-18,149.01,149.01,147.74,148.10,1280000,148.10
-1944-07-17,150.49,150.49,148.71,149.28,1480000,149.28
-1944-07-14,150.08,150.86,149.86,150.34,1090000,150.34
-1944-07-13,150.42,150.80,149.66,150.08,1380000,150.08
-1944-07-12,150.18,150.84,149.69,150.42,1420000,150.42
-1944-07-11,150.50,150.80,149.53,150.18,1350000,150.18
-1944-07-10,150.03,150.88,149.97,150.50,1840000,150.50
-1944-07-07,149.07,149.61,148.61,149.36,1280000,149.36
-1944-07-06,149.66,150.12,148.69,149.07,1710000,149.07
-1944-07-05,149.32,150.42,149.17,149.66,2440000,149.66
-1944-07-03,148.46,149.50,148.42,149.32,1560000,149.32
-1944-06-30,148.07,148.82,147.93,148.38,1750000,148.38
-1944-06-29,147.93,148.54,147.25,148.07,1890000,148.07
-1944-06-28,148.48,148.52,147.40,147.93,1750000,147.93
-1944-06-27,148.12,149.00,147.76,148.48,2180000,148.48
-1944-06-26,147.48,148.46,147.40,148.12,1720000,148.12
-1944-06-23,147.65,147.94,147.15,147.50,1300000,147.50
-1944-06-22,147.90,148.32,147.18,147.65,1280000,147.65
-1944-06-21,148.63,148.95,147.30,147.90,1520000,147.90
-1944-06-20,148.42,149.15,147.79,148.63,1620000,148.63
-1944-06-19,147.46,149.07,147.46,148.42,2370000,148.42
-1944-06-16,145.94,147.57,145.94,146.96,2520000,146.96
-1944-06-15,145.03,146.38,144.73,145.86,1850000,145.86
-1944-06-14,145.05,145.60,144.26,145.03,1440000,145.03
-1944-06-13,144.13,145.55,144.13,145.05,2330000,145.05
-1944-06-12,142.90,144.31,142.90,144.08,2240000,144.08
-1944-06-09,141.93,142.37,141.58,142.06,850000,142.06
-1944-06-08,142.12,142.60,141.61,141.93,860000,141.93
-1944-06-07,142.21,142.77,141.76,142.12,860000,142.12
-1944-06-06,141.62,143.01,140.90,142.21,1790000,142.21
-1944-06-05,142.34,142.53,141.49,141.62,860000,141.62
-1944-06-02,142.14,142.52,141.80,142.07,820000,142.07
-1944-06-01,142.24,142.92,141.95,142.14,1190000,142.14
-1944-05-31,141.53,142.44,141.28,142.24,1180000,142.24
-1944-05-29,141.24,141.68,140.97,141.53,810000,141.53
-1944-05-26,140.38,141.20,140.31,141.03,840000,141.03
-1944-05-25,140.48,140.69,139.89,140.38,800000,140.38
-1944-05-24,139.91,140.98,139.91,140.48,1090000,140.48
-1944-05-23,139.43,140.24,139.19,139.87,770000,139.87
-1944-05-22,139.37,139.74,139.13,139.43,700000,139.43
-1944-05-19,139.20,139.69,139.00,139.34,790000,139.34
-1944-05-18,138.99,139.54,138.63,139.20,940000,139.20
-1944-05-17,138.41,139.09,138.38,138.99,820000,138.99
-1944-05-16,138.60,138.89,138.23,138.41,540000,138.41
-1944-05-15,138.60,138.84,138.41,138.60,340000,138.60
-1944-05-12,138.93,139.38,138.22,138.51,750000,138.51
-1944-05-11,138.76,139.14,138.50,138.93,620000,138.93
-1944-05-10,138.65,139.03,138.41,138.76,650000,138.76
-1944-05-09,138.65,139.07,138.29,138.65,620000,138.65
-1944-05-08,138.87,139.08,138.38,138.65,590000,138.65
-1944-05-05,137.85,139.00,137.83,138.75,790000,138.75
-1944-05-04,137.83,138.14,137.52,137.85,510000,137.85
-1944-05-03,137.15,138.12,137.14,137.83,630000,137.83
-1944-05-02,137.06,137.53,136.77,137.15,570000,137.15
-1944-05-01,136.23,137.12,136.18,137.06,570000,137.06
-1944-04-28,136.07,136.50,135.77,136.21,560000,136.21
-1944-04-27,135.69,136.53,135.69,136.07,520000,136.07
-1944-04-26,135.18,135.93,135.18,135.67,490000,135.67
-1944-04-25,135.00,135.41,134.75,135.11,550000,135.11
-1944-04-24,136.19,136.22,134.91,135.00,690000,135.00
-1944-04-21,136.20,136.61,135.96,136.17,480000,136.17
-1944-04-20,135.74,136.59,135.74,136.20,530000,136.20
-1944-04-19,136.07,136.15,135.09,135.48,900000,135.48
-1944-04-18,137.76,137.76,135.99,136.07,1190000,136.07
-1944-04-17,138.06,138.25,137.64,137.77,540000,137.77
-1944-04-14,137.65,137.95,137.52,137.69,480000,137.69
-1944-04-13,137.93,137.93,137.33,137.65,660000,137.65
-1944-04-12,138.74,138.86,137.88,137.98,720000,137.98
-1944-04-11,139.11,139.16,138.50,138.74,730000,138.74
-1944-04-10,139.10,139.45,138.80,139.11,570000,139.11
-1944-04-06,138.31,139.24,138.31,138.91,760000,138.91
-1944-04-05,138.06,138.63,137.95,138.17,770000,138.17
-1944-04-04,138.01,138.39,137.67,138.06,570000,138.06
-1944-04-03,138.66,138.66,137.70,138.01,690000,138.01
-1944-03-31,138.60,139.29,138.50,138.84,800000,138.84
-1944-03-30,137.74,138.89,137.74,138.60,680000,138.60
-1944-03-29,137.88,138.17,136.98,137.45,1110000,137.45
-1944-03-28,139.12,139.36,137.64,137.88,1340000,137.88
-1944-03-27,139.19,139.67,138.99,139.12,690000,139.12
-1944-03-24,138.95,139.60,138.81,139.28,840000,139.28
-1944-03-23,139.98,140.33,138.81,138.95,1170000,138.95
-1944-03-22,140.20,140.77,139.83,139.98,1570000,139.98
-1944-03-21,139.89,140.47,139.63,140.20,1460000,140.20
-1944-03-20,140.28,140.28,139.53,139.89,1200000,139.89
-1944-03-17,140.91,141.10,140.24,140.80,1350000,140.80
-1944-03-16,140.71,141.43,140.44,140.91,1590000,140.91
-1944-03-15,140.37,141.00,140.08,140.71,1190000,140.71
-1944-03-14,140.75,140.75,139.90,140.37,1010000,140.37
-1944-03-13,140.44,141.37,140.33,141.00,1620000,141.00
-1944-03-10,139.33,140.34,139.14,140.01,1150000,140.01
-1944-03-09,139.50,139.70,138.89,139.33,930000,139.33
-1944-03-08,138.34,139.89,138.34,139.50,1690000,139.50
-1944-03-07,137.48,138.67,137.48,138.33,1210000,138.33
-1944-03-06,136.79,137.46,136.75,137.21,750000,137.21
-1944-03-03,136.69,136.97,136.38,136.59,760000,136.59
-1944-03-02,136.44,136.91,136.33,136.69,710000,136.69
-1944-03-01,136.30,136.75,135.86,136.44,630000,136.44
-1944-02-29,136.79,136.91,136.02,136.30,870000,136.30
-1944-02-28,136.58,137.01,136.36,136.79,750000,136.79
-1944-02-25,136.58,136.74,136.11,136.56,900000,136.56
-1944-02-24,136.51,137.00,136.25,136.58,1160000,136.58
-1944-02-23,135.71,136.63,135.52,136.51,940000,136.51
-1944-02-21,135.91,136.11,135.52,135.71,590000,135.71
-1944-02-18,136.58,136.74,135.81,136.08,670000,136.08
-1944-02-17,136.04,136.77,135.74,136.58,900000,136.58
-1944-02-16,136.19,136.73,135.64,136.04,870000,136.04
-1944-02-15,135.39,136.36,135.28,136.19,1030000,136.19
-1944-02-14,135.41,135.71,135.00,135.39,550000,135.39
-1944-02-11,135.55,136.08,135.19,135.41,850000,135.41
-1944-02-10,135.03,135.74,134.80,135.55,860000,135.55
-1944-02-09,135.06,135.44,134.55,135.03,630000,135.03
-1944-02-08,134.36,135.24,134.36,135.06,610000,135.06
-1944-02-07,135.11,135.11,134.10,134.22,570000,134.22
-1944-02-04,135.89,135.89,134.75,135.04,600000,135.04
-1944-02-03,137.08,137.16,135.76,136.24,960000,136.24
-1944-02-02,137.45,137.45,136.79,137.08,900000,137.08
-1944-02-01,137.40,137.69,137.09,137.45,860000,137.45
-1944-01-31,137.15,137.85,136.83,137.40,630000,137.40
-1944-01-28,136.65,137.37,136.65,137.19,620000,137.19
-1944-01-27,136.71,137.10,136.38,136.59,600000,136.59
-1944-01-26,137.77,137.77,136.59,136.71,780000,136.71
-1944-01-25,137.97,138.21,137.59,137.97,690000,137.97
-1944-01-24,138.24,138.50,137.70,137.97,690000,137.97
-1944-01-21,138.16,138.32,137.69,138.07,810000,138.07
-1944-01-20,137.83,138.49,137.79,138.16,730000,138.16
-1944-01-19,137.87,138.28,137.20,137.83,640000,137.83
-1944-01-18,138.10,138.22,137.51,137.87,820000,137.87
-1944-01-17,138.40,138.60,137.78,138.10,820000,138.10
-1944-01-14,137.36,138.31,137.21,138.15,940000,138.15
-1944-01-13,137.86,137.86,136.99,137.36,680000,137.36
-1944-01-12,138.47,138.71,137.74,137.94,710000,137.94
-1944-01-11,137.97,138.89,137.97,138.47,1000000,138.47
-1944-01-10,138.09,138.21,137.40,137.80,720000,137.80
-1944-01-07,138.34,138.65,137.67,138.08,830000,138.08
-1944-01-06,138.65,138.80,137.98,138.34,840000,138.34
-1944-01-05,137.78,138.88,137.78,138.65,1160000,138.65
-1944-01-04,135.92,137.23,135.91,137.15,730000,137.15
-1944-01-03,135.89,136.47,135.51,135.92,520000,135.92
-1943-12-31,136.20,136.73,135.54,135.89,990000,135.89
-1943-12-30,135.00,136.37,135.00,136.20,1140000,136.20
-1943-12-29,135.04,135.51,134.08,134.61,1000000,134.61
-1943-12-28,136.08,136.08,134.81,135.04,920000,135.04
-1943-12-27,136.24,136.60,135.67,136.14,650000,136.14
-1943-12-24,136.07,136.47,135.75,136.24,510000,136.24
-1943-12-23,136.15,136.57,135.77,136.07,580000,136.07
-1943-12-22,135.86,136.53,135.65,136.15,560000,136.15
-1943-12-21,136.10,136.49,135.51,135.86,660000,135.86
-1943-12-20,135.89,136.56,135.47,136.10,860000,136.10
-1943-12-17,135.19,135.90,134.92,135.44,880000,135.44
-1943-12-16,134.18,135.47,133.96,135.19,760000,135.19
-1943-12-15,134.19,134.53,133.69,134.18,660000,134.18
-1943-12-14,134.74,134.74,133.72,134.19,680000,134.19
-1943-12-13,135.28,135.81,134.37,134.80,730000,134.80
-1943-12-10,134.05,135.47,133.96,135.04,870000,135.04
-1943-12-09,134.42,134.89,133.57,134.05,860000,134.05
-1943-12-08,133.64,134.85,133.64,134.42,1320000,134.42
-1943-12-07,132.45,133.46,132.21,133.37,880000,133.37
-1943-12-06,131.87,133.07,131.71,132.45,820000,132.45
-1943-12-03,131.67,132.32,131.42,131.91,560000,131.91
-1943-12-02,130.75,132.06,130.75,131.67,720000,131.67
-1943-12-01,129.76,131.16,129.76,130.68,710000,130.68
-1943-11-30,129.95,130.34,128.94,129.57,710000,129.57
-1943-11-29,131.25,131.34,129.86,129.95,700000,129.95
-1943-11-26,132.10,132.25,131.06,131.33,600000,131.33
-1943-11-24,132.45,132.86,131.76,132.10,710000,132.10
-1943-11-23,132.65,132.93,132.26,132.45,540000,132.45
-1943-11-22,132.94,133.10,132.30,132.65,610000,132.65
-1943-11-19,130.96,132.51,130.96,132.30,910000,132.30
-1943-11-18,130.24,131.29,130.08,130.79,620000,130.79
-1943-11-17,131.18,131.19,129.86,130.24,830000,130.24
-1943-11-16,131.56,131.91,130.86,131.18,620000,131.18
-1943-11-15,131.76,132.13,131.08,131.56,680000,131.56
-1943-11-12,132.68,133.07,131.63,132.15,800000,132.15
-1943-11-10,132.11,133.37,132.11,132.68,930000,132.68
-1943-11-09,131.68,132.48,130.84,131.85,1510000,131.85
-1943-11-08,135.03,135.03,131.42,131.68,2340000,131.68
-1943-11-05,136.30,136.49,135.23,135.47,800000,135.47
-1943-11-04,137.35,137.94,136.10,136.30,1150000,136.30
-1943-11-03,138.50,138.96,137.19,137.35,1070000,137.35
-1943-11-01,138.27,138.79,137.85,138.50,650000,138.50
-1943-10-29,138.97,139.06,138.02,138.29,670000,138.29
-1943-10-28,139.35,139.74,138.84,138.97,720000,138.97
-1943-10-27,138.69,139.65,138.55,139.35,880000,139.35
-1943-10-26,138.22,139.08,138.19,138.69,900000,138.69
-1943-10-25,138.29,138.66,137.88,138.22,650000,138.22
-1943-10-22,138.00,138.53,137.84,138.25,560000,138.25
-1943-10-21,138.72,138.72,137.74,138.00,590000,138.00
-1943-10-20,138.71,139.21,138.43,138.88,610000,138.88
-1943-10-19,138.40,138.93,138.11,138.71,610000,138.71
-1943-10-18,138.40,138.87,138.06,138.40,540000,138.40
-1943-10-15,137.30,138.30,137.30,137.90,560000,137.90
-1943-10-14,136.48,137.30,136.34,137.01,470000,137.01
-1943-10-13,136.61,136.91,135.92,136.48,590000,136.48
-1943-10-11,137.10,137.21,136.38,136.61,480000,136.61
-1943-10-08,136.39,137.17,136.21,136.74,560000,136.74
-1943-10-07,137.43,137.43,136.01,136.39,850000,136.39
-1943-10-06,139.15,139.15,137.71,137.84,720000,137.84
-1943-10-05,139.63,139.76,138.87,139.27,490000,139.27
-1943-10-04,140.17,140.17,139.36,139.63,500000,139.63
-1943-10-01,140.12,140.63,139.87,140.33,560000,140.33
-1943-09-30,139.75,140.48,139.55,140.12,570000,140.12
-1943-09-29,139.27,139.95,139.06,139.75,470000,139.75
-1943-09-28,139.41,139.98,139.04,139.27,610000,139.27
-1943-09-27,140.14,140.14,139.11,139.41,620000,139.41
-1943-09-24,140.30,140.61,139.79,140.21,640000,140.21
-1943-09-23,141.09,141.18,139.75,140.30,670000,140.30
-1943-09-22,141.49,141.68,140.61,141.09,660000,141.09
-1943-09-21,141.75,141.87,141.03,141.49,740000,141.49
-1943-09-20,141.42,142.50,141.42,141.75,1100000,141.75
-1943-09-17,138.42,139.71,138.42,139.60,890000,139.60
-1943-09-16,137.62,138.43,137.50,138.36,530000,138.36
-1943-09-15,137.53,138.21,137.31,137.62,600000,137.62
-1943-09-14,137.82,137.98,137.24,137.53,440000,137.53
-1943-09-13,138.04,138.17,137.52,137.82,510000,137.82
-1943-09-10,137.75,138.26,137.50,137.96,760000,137.96
-1943-09-09,136.92,138.12,136.92,137.75,1090000,137.75
-1943-09-08,137.59,137.72,136.37,136.91,800000,136.91
-1943-09-07,137.33,137.75,137.17,137.59,350000,137.59
-1943-09-03,137.11,137.43,136.53,137.18,400000,137.18
-1943-09-02,137.12,137.48,136.67,137.11,490000,137.11
-1943-09-01,136.65,137.48,136.65,137.12,570000,137.12
-1943-08-31,135.95,137.01,135.95,136.62,610000,136.62
-1943-08-30,135.79,136.10,135.30,135.73,340000,135.73
-1943-08-27,136.25,136.26,135.64,135.83,420000,135.83
-1943-08-26,135.90,136.40,135.81,136.25,440000,136.25
-1943-08-25,135.60,136.25,135.54,135.90,460000,135.90
-1943-08-24,135.05,136.04,135.00,135.60,480000,135.60
-1943-08-23,135.81,135.81,134.40,135.05,720000,135.05
-1943-08-20,138.31,138.31,136.80,136.93,540000,136.93
-1943-08-19,138.45,138.83,137.93,138.34,470000,138.34
-1943-08-18,137.59,138.83,137.59,138.45,560000,138.45
-1943-08-17,137.08,137.93,136.96,137.54,550000,137.54
-1943-08-16,137.23,137.74,136.78,137.08,490000,137.08
-1943-08-13,136.44,137.49,136.40,137.39,440000,137.39
-1943-08-12,136.79,137.05,136.15,136.44,450000,136.44
-1943-08-11,136.23,137.15,136.21,136.79,620000,136.79
-1943-08-10,135.33,136.44,135.33,136.23,650000,136.23
-1943-08-09,135.38,136.08,134.75,135.18,560000,135.18
-1943-08-06,136.76,136.80,135.36,135.58,620000,135.58
-1943-08-05,136.87,137.17,136.33,136.76,540000,136.76
-1943-08-04,136.20,137.54,136.20,136.87,730000,136.87
-1943-08-03,134.04,136.00,134.04,135.64,1200000,135.64
-1943-08-02,135.95,136.50,133.87,134.00,1350000,134.00
-1943-07-30,139.41,139.66,136.87,137.25,1230000,137.25
-1943-07-29,138.28,139.90,138.28,139.41,1020000,139.41
-1943-07-28,138.75,139.08,136.72,137.64,1850000,137.64
-1943-07-27,142.07,142.07,138.65,138.75,1790000,138.75
-1943-07-26,143.65,143.65,141.73,142.07,1460000,142.07
-1943-07-23,143.77,144.18,143.31,143.80,910000,143.80
-1943-07-22,143.94,144.13,143.38,143.77,820000,143.77
-1943-07-21,143.93,144.22,143.33,143.94,770000,143.94
-1943-07-20,144.74,144.79,143.50,143.93,990000,143.93
-1943-07-19,144.72,145.31,144.39,144.74,830000,144.74
-1943-07-16,144.87,145.67,144.41,144.75,1040000,144.75
-1943-07-15,145.82,146.41,144.76,144.87,1220000,144.87
-1943-07-14,145.30,146.26,145.08,145.82,1680000,145.82
-1943-07-13,144.62,145.54,144.37,145.30,1390000,145.30
-1943-07-12,144.23,144.79,143.94,144.62,1050000,144.62
-1943-07-09,143.64,144.32,143.34,144.18,1050000,144.18
-1943-07-08,143.41,144.09,143.15,143.64,960000,143.64
-1943-07-07,143.76,143.82,142.83,143.41,710000,143.41
-1943-07-06,143.70,144.41,143.46,143.76,960000,143.76
-1943-07-02,143.58,144.05,143.17,143.68,890000,143.68
-1943-07-01,143.38,144.02,142.98,143.58,1150000,143.58
-1943-06-30,142.62,143.57,142.50,143.38,940000,143.38
-1943-06-29,143.00,143.30,142.06,142.62,810000,142.62
-1943-06-28,142.88,143.70,142.44,143.00,1030000,143.00
-1943-06-25,140.96,142.49,140.96,142.27,1150000,142.27
-1943-06-24,140.04,141.06,139.70,140.86,730000,140.86
-1943-06-23,139.30,140.43,139.30,140.04,830000,140.04
-1943-06-22,138.79,139.30,138.07,139.03,700000,139.03
-1943-06-21,139.52,139.52,138.34,138.79,720000,138.79
-1943-06-18,139.85,140.22,139.27,139.68,680000,139.68
-1943-06-17,139.78,140.41,139.49,139.85,740000,139.85
-1943-06-16,139.39,140.55,139.26,139.78,880000,139.78
-1943-06-15,139.09,139.58,138.21,139.39,1010000,139.39
-1943-06-14,140.91,140.91,138.86,139.09,1350000,139.09
-1943-06-11,141.68,142.01,141.11,141.44,840000,141.44
-1943-06-10,141.49,142.42,141.21,141.68,910000,141.68
-1943-06-09,141.44,141.71,140.45,141.49,810000,141.49
-1943-06-08,141.82,141.91,140.56,141.44,1080000,141.44
-1943-06-07,142.99,142.99,141.50,141.82,1210000,141.82
-1943-06-04,142.75,143.04,141.82,142.28,1260000,142.28
-1943-06-03,142.39,143.05,141.51,142.75,1180000,142.75
-1943-06-02,142.43,143.17,141.85,142.39,1310000,142.39
-1943-06-01,142.06,142.90,141.72,142.43,1260000,142.43
-1943-05-28,140.82,141.58,140.30,141.18,1050000,141.18
-1943-05-27,140.38,141.54,140.13,140.82,1470000,140.82
-1943-05-26,139.24,140.82,139.24,140.38,1320000,140.38
-1943-05-25,138.84,139.37,138.06,139.17,890000,139.17
-1943-05-24,138.78,139.14,138.41,138.84,790000,138.84
-1943-05-21,138.84,139.25,138.10,138.90,920000,138.90
-1943-05-20,139.15,140.09,138.60,138.84,1300000,138.84
-1943-05-19,138.05,139.39,138.04,139.15,1490000,139.15
-1943-05-18,136.98,138.39,136.92,138.05,930000,138.05
-1943-05-17,137.31,137.43,136.30,136.98,850000,136.98
-1943-05-14,137.85,137.85,136.13,136.82,1630000,136.82
-1943-05-13,138.24,138.55,137.56,137.88,1030000,137.88
-1943-05-12,138.36,138.96,137.83,138.24,1430000,138.24
-1943-05-11,138.64,138.75,137.54,138.36,1790000,138.36
-1943-05-10,138.36,139.30,138.12,138.64,2520000,138.64
-1943-05-07,138.85,139.04,136.99,137.27,2150000,137.27
-1943-05-06,138.34,139.13,137.97,138.85,2080000,138.85
-1943-05-05,138.18,138.79,137.54,138.34,2470000,138.34
-1943-05-04,137.43,138.71,137.27,138.18,2810000,138.18
-1943-05-03,136.20,137.69,136.08,137.43,2350000,137.43
-1943-04-30,135.24,136.17,135.01,135.48,1360000,135.48
-1943-04-29,134.14,135.49,134.11,135.24,1340000,135.24
-1943-04-28,134.39,134.61,133.46,134.14,880000,134.14
-1943-04-27,134.34,134.75,133.75,134.39,830000,134.39
-1943-04-26,134.34,134.89,133.91,134.34,1130000,134.34
-1943-04-22,134.00,134.75,133.70,134.20,1250000,134.20
-1943-04-21,133.17,134.31,133.17,134.00,1140000,134.00
-1943-04-20,133.46,133.64,132.68,133.09,730000,133.09
-1943-04-19,133.59,134.23,133.20,133.46,910000,133.46
-1943-04-16,133.49,133.71,132.40,133.07,900000,133.07
-1943-04-15,132.85,134.19,132.85,133.49,1390000,133.49
-1943-04-14,131.38,132.90,131.38,132.49,1090000,132.49
-1943-04-13,131.27,131.49,129.79,131.18,1410000,131.18
-1943-04-12,131.63,132.86,131.11,131.27,1270000,131.27
-1943-04-09,134.02,134.02,131.01,131.22,2520000,131.22
-1943-04-08,136.00,136.68,135.18,135.52,1810000,135.52
-1943-04-07,136.73,136.73,135.14,136.00,2100000,136.00
-1943-04-06,136.44,137.45,136.09,136.93,2460000,136.93
-1943-04-05,135.62,137.10,135.62,136.44,2650000,136.44
-1943-04-02,136.44,136.44,135.08,135.67,1660000,135.67
-1943-04-01,136.57,137.04,135.94,136.56,1740000,136.56
-1943-03-31,136.82,137.07,135.86,136.57,1540000,136.57
-1943-03-30,136.10,137.20,135.52,136.82,1940000,136.82
-1943-03-29,134.75,136.41,134.75,136.10,2000000,136.10
-1943-03-26,133.22,134.51,133.21,133.96,2140000,133.96
-1943-03-25,130.91,133.30,130.91,133.22,2120000,133.22
-1943-03-24,129.98,131.00,129.74,130.62,1160000,130.62
-1943-03-23,129.46,130.47,129.46,129.98,1190000,129.98
-1943-03-22,129.13,129.65,128.67,129.44,850000,129.44
-1943-03-19,129.66,129.95,129.09,129.25,1070000,129.25
-1943-03-18,129.49,130.00,129.07,129.66,870000,129.66
-1943-03-17,130.22,130.22,128.86,129.49,1270000,129.49
-1943-03-16,130.64,130.83,129.91,130.33,1030000,130.33
-1943-03-15,130.73,130.95,130.03,130.64,1370000,130.64
-1943-03-12,130.48,131.39,130.07,130.73,1970000,130.73
-1943-03-11,129.16,130.74,128.95,130.48,1430000,130.48
-1943-03-10,129.76,129.76,128.49,129.16,930000,129.16
-1943-03-09,130.52,130.52,128.68,129.80,1420000,129.80
-1943-03-08,130.74,131.23,130.14,130.56,1250000,130.56
-1943-03-05,130.38,130.93,129.75,130.61,1210000,130.61
-1943-03-04,130.03,131.20,129.97,130.38,2010000,130.38
-1943-03-03,128.60,130.20,128.51,130.03,2020000,130.03
-1943-03-02,129.18,129.18,127.91,128.60,1330000,128.60
-1943-03-01,130.11,130.61,129.13,129.44,2000000,129.44
-1943-02-26,130.04,130.25,129.20,129.71,1440000,129.71
-1943-02-25,129.58,130.43,129.28,130.04,1780000,130.04
-1943-02-24,128.78,130.00,128.39,129.58,1690000,129.58
-1943-02-23,127.80,129.06,127.34,128.78,1430000,128.78
-1943-02-19,127.06,127.25,125.82,126.67,900000,126.67
-1943-02-18,128.29,128.29,126.82,127.06,1040000,127.06
-1943-02-17,128.31,128.88,127.86,128.41,1100000,128.41
-1943-02-16,128.60,128.88,127.70,128.31,1180000,128.31
-1943-02-15,128.00,129.15,128.00,128.60,1840000,128.60
-1943-02-11,127.01,127.54,126.53,127.09,1410000,127.09
-1943-02-10,126.30,127.55,126.21,127.01,1500000,127.01
-1943-02-09,125.57,126.59,125.38,126.30,920000,126.30
-1943-02-08,125.81,126.10,125.19,125.57,730000,125.57
-1943-02-05,125.07,126.00,124.71,125.75,880000,125.75
-1943-02-04,125.56,125.57,124.69,125.07,800000,125.07
-1943-02-03,125.88,126.10,124.84,125.56,830000,125.56
-1943-02-02,125.86,126.38,125.51,125.88,1050000,125.88
-1943-02-01,125.58,126.15,124.87,125.86,1090000,125.86
-1943-01-29,124.38,125.71,124.23,125.41,1230000,125.41
-1943-01-28,124.08,124.57,123.41,124.38,990000,124.38
-1943-01-27,124.31,124.47,122.92,124.08,1030000,124.08
-1943-01-26,123.74,124.59,123.63,124.31,1040000,124.31
-1943-01-25,122.38,123.94,122.30,123.74,800000,123.74
-1943-01-22,121.79,122.92,121.50,121.99,880000,121.99
-1943-01-21,120.63,122.00,120.63,121.79,810000,121.79
-1943-01-20,120.48,120.86,119.71,120.55,520000,120.55
-1943-01-19,121.56,121.59,120.25,120.48,770000,120.48
-1943-01-18,121.60,121.93,121.24,121.56,710000,121.56
-1943-01-15,120.86,121.84,120.86,121.58,1000000,121.58
-1943-01-14,120.25,121.03,120.09,120.79,680000,120.79
-1943-01-13,119.98,120.59,119.80,120.25,630000,120.25
-1943-01-12,119.95,120.52,119.54,119.98,630000,119.98
-1943-01-11,119.51,120.41,119.51,119.95,810000,119.95
-1943-01-08,119.37,119.71,118.92,119.26,800000,119.26
-1943-01-07,119.66,119.95,118.84,119.37,710000,119.37
-1943-01-06,119.70,120.31,119.40,119.66,550000,119.66
-1943-01-05,120.25,120.62,119.50,119.70,670000,119.70
-1943-01-04,119.93,120.82,119.75,120.25,620000,120.25
-1942-12-31,119.56,120.19,119.08,119.40,1050000,119.40
-1942-12-30,118.40,119.83,118.28,119.56,1120000,119.56
-1942-12-29,118.50,118.95,117.30,118.40,1440000,118.40
-1942-12-28,119.71,119.96,118.22,118.50,1200000,118.50
-1942-12-24,119.07,119.67,118.56,119.27,800000,119.27
-1942-12-23,118.49,119.58,118.24,119.07,920000,119.07
-1942-12-22,118.66,119.23,118.09,118.49,780000,118.49
-1942-12-21,118.75,119.35,118.12,118.66,770000,118.66
-1942-12-18,118.68,119.76,118.41,118.97,1090000,118.97
-1942-12-17,117.06,119.07,116.60,118.68,1310000,118.68
-1942-12-16,116.31,117.38,116.08,117.06,910000,117.06
-1942-12-15,115.83,116.64,115.65,116.31,700000,116.31
-1942-12-14,115.82,116.13,115.21,115.83,690000,115.83
-1942-12-11,116.00,116.55,115.16,115.70,640000,115.70
-1942-12-10,115.93,116.38,115.41,116.00,570000,116.00
-1942-12-09,115.76,116.38,115.35,115.93,620000,115.93
-1942-12-08,115.03,116.05,115.03,115.76,620000,115.76
-1942-12-07,115.24,115.57,114.71,115.00,500000,115.00
-1942-12-04,115.19,115.42,114.41,115.02,530000,115.02
-1942-12-03,115.16,115.87,114.76,115.19,630000,115.19
-1942-12-02,114.61,115.61,114.43,115.16,540000,115.16
-1942-12-01,114.50,115.12,114.08,114.61,560000,114.61
-1942-11-30,114.95,115.03,114.01,114.50,470000,114.50
-1942-11-27,114.13,115.12,114.08,114.86,530000,114.86
-1942-11-25,114.10,114.66,113.55,114.13,570000,114.13
-1942-11-24,114.46,114.61,113.46,114.10,640000,114.10
-1942-11-23,115.27,115.27,114.03,114.46,630000,114.46
-1942-11-20,114.55,115.67,114.37,115.27,660000,115.27
-1942-11-19,114.64,114.95,114.24,114.55,500000,114.55
-1942-11-18,114.53,115.08,114.12,114.64,510000,114.64
-1942-11-17,115.70,116.24,114.42,114.53,670000,114.53
-1942-11-16,116.24,116.32,115.41,115.70,520000,115.70
-1942-11-13,116.46,116.76,115.80,116.26,670000,116.26
-1942-11-12,116.30,117.14,115.63,116.46,710000,116.46
-1942-11-10,117.14,117.14,115.96,116.30,770000,116.30
-1942-11-09,116.92,118.18,116.61,117.30,1210000,117.30
-1942-11-06,114.87,116.25,114.80,116.12,860000,116.12
-1942-11-05,114.56,115.29,114.23,114.87,600000,114.87
-1942-11-04,114.68,115.55,114.29,114.56,770000,114.56
-1942-11-02,114.07,115.09,114.02,114.68,760000,114.68
-1942-10-30,113.13,113.64,112.80,113.50,520000,113.50
-1942-10-29,113.11,113.47,112.59,113.13,460000,113.13
-1942-10-28,113.86,113.87,112.57,113.11,500000,113.11
-1942-10-27,115.06,115.06,113.50,113.86,630000,113.86
-1942-10-26,115.01,115.61,114.74,115.29,630000,115.29
-1942-10-23,114.94,115.52,114.45,114.88,730000,114.88
-1942-10-22,115.09,115.22,114.15,114.94,550000,114.94
-1942-10-21,115.22,116.01,114.61,115.09,700000,115.09
-1942-10-20,114.17,115.47,114.17,115.22,670000,115.22
-1942-10-19,113.40,113.89,113.13,113.64,400000,113.64
-1942-10-16,113.27,113.79,112.71,113.55,510000,113.55
-1942-10-15,114.56,114.56,113.11,113.27,600000,113.27
-1942-10-14,115.01,115.24,113.99,114.69,660000,114.69
-1942-10-13,114.93,115.80,114.68,115.01,860000,115.01
-1942-10-09,113.60,114.67,113.45,113.93,1050000,113.93
-1942-10-08,112.01,113.86,112.01,113.60,1090000,113.60
-1942-10-07,111.53,112.11,111.25,111.86,660000,111.86
-1942-10-06,111.93,112.09,111.16,111.53,700000,111.53
-1942-10-05,111.34,112.29,111.03,111.93,790000,111.93
-1942-10-02,109.68,111.02,109.68,110.83,900000,110.83
-1942-10-01,109.16,109.90,109.16,109.65,560000,109.65
-1942-09-30,109.24,109.37,108.70,109.11,340000,109.11
-1942-09-29,109.56,109.75,109.01,109.24,430000,109.24
-1942-09-28,109.32,109.98,109.29,109.56,400000,109.56
-1942-09-25,109.11,109.72,108.89,109.37,680000,109.37
-1942-09-24,108.27,109.42,108.18,109.11,850000,109.11
-1942-09-23,107.59,108.40,107.45,108.27,700000,108.27
-1942-09-22,107.27,107.83,107.16,107.59,520000,107.59
-1942-09-21,107.22,107.45,107.01,107.27,320000,107.27
-1942-09-18,106.72,107.59,106.72,107.47,420000,107.47
-1942-09-17,106.66,106.96,106.44,106.66,410000,106.66
-1942-09-16,106.49,106.93,106.19,106.66,380000,106.66
-1942-09-15,106.17,106.82,106.17,106.49,390000,106.49
-1942-09-14,106.20,106.32,105.92,106.15,310000,106.15
-1942-09-11,106.36,106.36,105.58,106.03,380000,106.03
-1942-09-10,107.17,107.17,106.30,106.38,350000,106.38
-1942-09-09,107.62,107.80,106.97,107.26,360000,107.26
-1942-09-08,106.76,107.88,106.76,107.62,400000,107.62
-1942-09-04,106.34,106.70,106.09,106.39,310000,106.39
-1942-09-03,106.49,106.50,106.07,106.34,280000,106.34
-1942-09-02,106.28,106.68,106.05,106.49,270000,106.49
-1942-09-01,106.33,106.52,105.76,106.28,290000,106.28
-1942-08-31,106.41,106.81,106.08,106.33,250000,106.33
-1942-08-28,106.03,106.64,105.92,106.23,300000,106.23
-1942-08-27,105.55,106.20,105.49,106.03,270000,106.03
-1942-08-26,106.28,106.28,105.37,105.55,360000,105.55
-1942-08-25,107.11,107.11,106.23,106.51,350000,106.51
-1942-08-24,107.30,107.73,106.94,107.25,380000,107.25
-1942-08-21,106.83,107.25,106.53,107.07,370000,107.07
-1942-08-20,107.21,107.21,106.46,106.83,310000,106.83
-1942-08-19,107.55,107.88,106.67,107.28,500000,107.28
-1942-08-18,106.96,107.72,106.96,107.55,560000,107.55
-1942-08-17,106.38,107.04,106.21,106.68,290000,106.68
-1942-08-14,105.75,106.65,105.75,106.15,380000,106.15
-1942-08-13,105.47,105.86,105.08,105.70,320000,105.70
-1942-08-12,105.42,105.81,105.00,105.47,280000,105.47
-1942-08-11,105.01,105.67,105.01,105.42,260000,105.42
-1942-08-10,104.90,105.18,104.55,104.91,210000,104.91
-1942-08-07,104.80,105.33,104.50,105.05,210000,105.05
-1942-08-06,104.85,105.07,104.55,104.80,250000,104.80
-1942-08-05,105.30,105.30,104.50,104.85,290000,104.85
-1942-08-04,106.08,106.21,105.43,105.55,320000,105.55
-1942-08-03,105.90,106.44,105.67,106.08,280000,106.08
-1942-07-31,105.37,106.27,105.37,105.72,310000,105.72
-1942-07-30,105.44,105.73,104.79,105.24,250000,105.24
-1942-07-29,106.34,106.34,105.30,105.44,290000,105.44
-1942-07-28,106.66,106.82,106.22,106.48,270000,106.48
-1942-07-27,106.53,106.97,106.32,106.66,260000,106.66
-1942-07-24,106.65,106.65,105.84,106.37,260000,106.37
-1942-07-23,107.88,107.88,106.45,106.65,330000,106.65
-1942-07-22,108.36,108.94,107.69,108.03,440000,108.03
-1942-07-21,107.98,108.68,107.94,108.36,280000,108.36
-1942-07-20,107.69,108.26,107.50,107.98,210000,107.98
-1942-07-17,108.91,108.92,107.68,107.82,280000,107.82
-1942-07-16,108.89,109.21,108.17,108.91,270000,108.91
-1942-07-15,108.72,109.49,108.50,108.89,390000,108.89
-1942-07-14,108.22,108.89,107.40,108.72,370000,108.72
-1942-07-13,108.69,108.69,107.79,108.22,280000,108.22
-1942-07-10,108.75,108.99,107.68,108.66,440000,108.66
-1942-07-09,107.94,109.26,107.60,108.75,840000,108.75
-1942-07-08,105.76,108.01,105.48,107.94,580000,107.94
-1942-07-07,106.10,106.34,105.32,105.76,330000,105.76
-1942-07-06,104.92,106.30,104.92,106.10,420000,106.10
-1942-07-03,103.84,104.77,103.84,104.49,360000,104.49
-1942-07-02,102.69,103.89,102.27,103.73,340000,103.73
-1942-07-01,103.29,103.29,102.28,102.69,210000,102.69
-1942-06-30,103.17,103.61,102.93,103.34,250000,103.34
-1942-06-29,102.68,103.57,102.68,103.17,260000,103.17
-1942-06-26,102.71,103.09,102.27,102.54,290000,102.54
-1942-06-25,102.67,103.06,101.94,102.71,250000,102.71
-1942-06-24,103.03,103.24,102.43,102.67,240000,102.67
-1942-06-23,102.77,103.44,102.73,103.03,210000,103.03
-1942-06-22,103.52,103.52,102.11,102.77,310000,102.77
-1942-06-19,105.52,105.52,104.55,104.77,290000,104.77
-1942-06-18,106.29,106.63,105.49,105.70,350000,105.70
-1942-06-17,104.68,106.38,104.68,106.29,390000,106.29
-1942-06-16,104.41,104.94,104.18,104.51,280000,104.51
-1942-06-15,104.08,104.54,103.99,104.41,260000,104.41
-1942-06-12,104.32,104.32,103.27,103.77,220000,103.77
-1942-06-11,104.19,104.69,103.94,104.49,280000,104.49
-1942-06-10,104.90,104.90,103.70,104.19,310000,104.19
-1942-06-09,105.55,106.34,104.83,105.09,400000,105.09
-1942-06-08,104.71,105.86,104.71,105.55,360000,105.55
-1942-06-05,103.61,105.26,103.60,104.41,490000,104.41
-1942-06-04,102.25,103.87,102.25,103.61,520000,103.61
-1942-06-03,101.30,102.33,101.01,102.15,330000,102.15
-1942-06-02,101.37,101.67,100.93,101.30,320000,101.30
-1942-06-01,100.96,101.84,100.96,101.37,310000,101.37
-1942-05-29,100.99,101.29,100.43,100.88,250000,100.88
-1942-05-28,101.09,101.50,100.52,100.99,350000,100.99
-1942-05-27,99.41,101.21,99.31,101.09,430000,101.09
-1942-05-26,99.18,100.00,99.02,99.41,290000,99.41
-1942-05-25,99.25,99.47,98.68,99.18,230000,99.18
-1942-05-22,99.72,99.95,98.83,99.18,330000,99.18
-1942-05-21,98.13,100.21,98.11,99.72,560000,99.72
-1942-05-20,97.96,98.50,97.22,98.13,410000,98.13
-1942-05-19,98.65,98.84,97.70,97.96,380000,97.96
-1942-05-18,98.63,99.16,98.24,98.65,220000,98.65
-1942-05-15,97.38,98.27,97.38,97.98,260000,97.98
-1942-05-14,97.21,97.37,96.39,97.13,280000,97.13
-1942-05-13,98.19,98.19,96.92,97.21,340000,97.21
-1942-05-12,99.20,99.35,98.31,98.56,250000,98.56
-1942-05-11,98.70,99.49,98.45,99.20,290000,99.20
-1942-05-08,97.77,98.57,97.65,97.91,310000,97.91
-1942-05-07,96.93,98.11,96.93,97.77,340000,97.77
-1942-05-06,97.29,97.35,96.19,96.71,270000,96.71
-1942-05-05,96.70,97.74,96.54,97.29,270000,97.29
-1942-05-04,96.44,97.15,96.34,96.70,260000,96.70
-1942-05-01,95.35,96.29,95.08,95.83,300000,95.83
-1942-04-30,94.71,95.76,94.71,95.35,280000,95.35
-1942-04-29,92.92,95.18,92.74,94.65,410000,94.65
-1942-04-28,93.69,93.69,92.69,92.92,310000,92.92
-1942-04-27,94.31,94.89,93.66,93.89,280000,93.89
-1942-04-24,94.80,94.80,93.59,94.13,390000,94.13
-1942-04-23,96.91,96.91,94.84,94.98,430000,94.98
-1942-04-22,97.51,97.64,96.79,97.20,260000,97.20
-1942-04-21,97.25,98.02,97.16,97.51,270000,97.51
-1942-04-20,96.92,97.47,96.63,97.25,240000,97.25
-1942-04-17,97.61,97.61,95.80,96.05,420000,96.05
-1942-04-16,98.06,98.46,97.61,97.87,260000,97.87
-1942-04-15,97.89,98.75,97.50,98.06,350000,98.06
-1942-04-14,99.21,99.21,97.77,97.89,560000,97.89
-1942-04-13,99.45,99.78,99.25,99.44,240000,99.44
-1942-04-10,99.69,100.15,99.31,99.74,300000,99.74
-1942-04-09,100.56,100.56,99.51,99.69,350000,99.69
-1942-04-08,101.89,101.97,100.89,101.23,300000,101.23
-1942-04-07,102.50,102.75,101.73,101.89,310000,101.89
-1942-04-06,101.11,102.69,101.05,102.50,340000,102.50
-1942-04-02,100.19,101.31,100.19,100.89,370000,100.89
-1942-04-01,99.53,100.19,99.32,99.95,280000,99.95
-1942-03-31,100.04,100.21,99.25,99.53,280000,99.53
-1942-03-30,100.00,100.54,99.76,100.04,230000,100.04
-1942-03-27,101.00,101.00,99.78,100.00,310000,100.00
-1942-03-26,101.48,101.54,100.73,101.05,300000,101.05
-1942-03-25,102.09,102.16,101.39,101.48,320000,101.48
-1942-03-24,101.20,102.43,101.02,102.09,360000,102.09
-1942-03-23,100.82,101.58,100.81,101.20,280000,101.20
-1942-03-20,101.25,101.31,100.43,100.75,280000,100.75
-1942-03-19,101.64,101.82,100.91,101.25,280000,101.25
-1942-03-18,102.54,102.73,101.26,101.64,340000,101.64
-1942-03-17,100.82,102.70,100.82,102.54,470000,102.54
-1942-03-16,99.64,100.81,99.50,100.68,320000,100.68
-1942-03-13,99.23,100.39,98.93,99.73,340000,99.73
-1942-03-12,99.21,100.25,98.32,99.23,460000,99.23
-1942-03-11,101.14,101.14,99.11,99.21,410000,99.21
-1942-03-10,102.09,102.32,101.17,101.49,340000,101.49
-1942-03-09,102.31,102.88,101.56,102.09,310000,102.09
-1942-03-06,104.08,104.08,102.03,102.10,640000,102.10
-1942-03-05,105.59,105.59,104.37,104.55,450000,104.55
-1942-03-04,106.97,107.04,105.69,105.99,380000,105.99
-1942-03-03,105.75,107.16,105.48,106.97,410000,106.97
-1942-03-02,106.49,106.49,105.33,105.75,330000,105.75
-1942-02-27,106.16,106.93,106.16,106.58,360000,106.58
-1942-02-26,105.64,106.24,105.40,105.88,350000,105.88
-1942-02-25,106.00,106.30,105.41,105.64,340000,105.64
-1942-02-24,105.54,106.73,105.54,106.00,390000,106.00
-1942-02-20,105.57,105.57,104.78,105.10,330000,105.10
-1942-02-19,105.35,106.03,104.93,105.57,350000,105.57
-1942-02-18,105.40,105.70,104.67,105.35,340000,105.35
-1942-02-17,107.05,107.05,105.20,105.40,390000,105.40
-1942-02-16,107.30,107.96,106.70,107.31,380000,107.31
-1942-02-13,106.51,107.01,106.12,106.73,320000,106.73
-1942-02-11,106.75,107.19,106.00,106.51,420000,106.51
-1942-02-10,107.81,107.81,106.21,106.75,640000,106.75
-1942-02-09,108.92,108.92,107.92,108.12,400000,108.12
-1942-02-06,110.44,110.53,109.30,109.47,430000,109.47
-1942-02-05,110.80,110.97,110.09,110.44,440000,110.44
-1942-02-04,109.99,111.04,109.91,110.80,500000,110.80
-1942-02-03,109.47,110.29,109.38,109.99,370000,109.99
-1942-02-02,109.11,109.68,109.08,109.47,330000,109.47
-1942-01-30,109.90,110.20,109.23,109.41,380000,109.41
-1942-01-29,110.15,110.39,109.50,109.90,420000,109.90
-1942-01-28,110.68,110.99,109.69,110.15,460000,110.15
-1942-01-27,110.67,111.20,110.31,110.68,550000,110.68
-1942-01-26,109.52,111.00,109.52,110.67,600000,110.67
-1942-01-23,108.94,109.44,108.39,109.12,430000,109.12
-1942-01-22,109.06,109.16,108.30,108.94,430000,108.94
-1942-01-21,110.12,110.12,108.71,109.06,580000,109.06
-1942-01-20,110.81,111.21,110.24,110.45,490000,110.45
-1942-01-19,110.68,111.34,109.98,110.81,430000,110.81
-1942-01-16,112.59,112.64,111.01,111.25,480000,111.25
-1942-01-15,112.59,113.02,112.17,112.59,450000,112.59
-1942-01-14,112.44,113.29,112.05,112.59,610000,112.59
-1942-01-13,110.90,112.61,110.90,112.44,730000,112.44
-1942-01-12,110.54,111.48,110.10,110.65,490000,110.65
-1942-01-09,111.55,111.97,110.45,111.02,660000,111.02
-1942-01-08,112.91,112.91,111.20,111.55,530000,111.55
-1942-01-07,113.93,113.93,112.62,113.10,630000,113.10
-1942-01-06,114.22,114.96,113.22,113.99,800000,113.99
-1942-01-05,113.75,114.76,113.20,114.22,720000,114.22
-1942-01-02,110.96,113.00,110.07,112.77,580000,112.77
-1941-12-31,111.32,111.99,109.75,110.96,1750000,110.96
-1941-12-30,107.56,112.04,107.45,111.32,2560000,111.32
-1941-12-29,107.54,108.94,106.36,107.56,2930000,107.56
-1941-12-26,106.67,107.86,105.92,106.95,1410000,106.95
-1941-12-24,106.34,107.56,105.52,106.67,1380000,106.67
-1941-12-23,106.59,107.21,105.57,106.34,1420000,106.34
-1941-12-22,107.81,108.83,106.23,106.59,1460000,106.59
-1941-12-19,108.21,109.52,107.61,108.28,1270000,108.28
-1941-12-18,109.36,109.67,107.18,108.21,1310000,108.21
-1941-12-17,110.86,111.05,108.68,109.36,1220000,109.36
-1941-12-16,111.15,112.30,110.29,110.86,1230000,110.86
-1941-12-15,110.73,112.01,109.97,111.15,1110000,111.15
-1941-12-12,110.91,111.76,109.53,110.58,1120000,110.58
-1941-12-11,109.01,111.73,108.38,110.91,1400000,110.91
-1941-12-10,109.27,109.76,106.87,109.01,2090000,109.01
-1941-12-09,112.52,112.73,107.56,109.27,2560000,109.27
-1941-12-08,115.46,115.46,111.53,112.52,2030000,112.52
-1941-12-05,116.44,116.44,115.09,115.90,980000,115.90
-1941-12-04,116.65,117.54,115.96,116.60,1130000,116.60
-1941-12-03,115.57,117.00,115.24,116.65,1090000,116.65
-1941-12-02,113.60,115.79,113.60,115.57,1180000,115.57
-1941-12-01,114.23,114.89,113.06,113.59,840000,113.59
-1941-11-28,115.64,115.68,114.10,114.66,870000,114.66
-1941-11-27,115.93,116.49,115.00,115.64,810000,115.64
-1941-11-26,116.96,116.98,115.61,115.93,850000,115.93
-1941-11-25,117.30,117.60,116.38,116.96,840000,116.96
-1941-11-24,117.04,118.19,116.89,117.30,820000,117.30
-1941-11-21,116.68,117.50,116.07,117.05,850000,117.05
-1941-11-19,115.87,116.90,115.47,116.68,800000,116.68
-1941-11-18,116.20,116.62,115.20,115.87,680000,115.87
-1941-11-17,116.72,117.03,115.69,116.20,630000,116.20
-1941-11-14,115.75,117.30,115.75,116.81,840000,116.81
-1941-11-13,115.44,116.34,114.91,115.67,830000,115.67
-1941-11-12,117.16,117.16,115.03,115.44,1020000,115.44
-1941-11-10,118.26,118.41,117.24,117.45,630000,117.45
-1941-11-07,118.84,118.84,117.64,118.33,700000,118.33
-1941-11-06,119.80,119.80,118.41,118.84,670000,118.84
-1941-11-05,118.87,120.34,118.84,119.85,920000,119.85
-1941-11-03,118.11,119.32,118.11,118.87,600000,118.87
-1941-10-31,119.17,119.17,117.40,117.82,640000,117.82
-1941-10-30,119.37,119.65,118.57,119.18,550000,119.18
-1941-10-29,119.60,119.96,118.99,119.37,550000,119.37
-1941-10-28,119.43,120.07,119.03,119.60,560000,119.60
-1941-10-27,120.04,120.04,119.11,119.43,480000,119.43
-1941-10-24,120.62,121.69,120.62,121.18,710000,121.18
-1941-10-23,120.56,120.84,119.77,120.47,540000,120.47
-1941-10-22,121.07,121.19,120.25,120.56,490000,120.56
-1941-10-21,120.13,121.27,119.83,121.07,580000,121.07
-1941-10-20,120.10,120.75,119.64,120.13,620000,120.13
-1941-10-17,118.52,119.56,117.88,119.15,670000,119.15
-1941-10-16,120.04,120.04,118.43,118.52,840000,118.52
-1941-10-15,121.36,121.36,120.19,120.52,480000,120.52
-1941-10-14,122.63,122.80,121.62,121.82,440000,121.82
-1941-10-10,122.53,123.06,122.01,122.46,490000,122.46
-1941-10-09,124.08,124.08,122.18,122.53,720000,122.53
-1941-10-08,124.42,124.52,123.61,124.13,440000,124.13
-1941-10-07,125.83,125.86,124.08,124.42,600000,124.42
-1941-10-06,126.10,126.20,125.50,125.83,490000,125.83
-1941-10-03,126.15,126.44,125.57,126.06,420000,126.06
-1941-10-02,126.85,127.06,126.08,126.15,470000,126.15
-1941-10-01,126.82,127.20,126.39,126.85,370000,126.85
-1941-09-30,126.49,127.31,126.49,126.82,460000,126.82
-1941-09-29,126.03,126.54,125.76,126.05,400000,126.05
-1941-09-26,126.38,126.68,125.55,125.81,490000,125.81
-1941-09-25,127.54,127.71,125.33,126.38,1170000,126.38
-1941-09-24,128.03,128.79,127.35,127.54,550000,127.54
-1941-09-23,127.64,128.50,127.59,128.03,490000,128.03
-1941-09-22,127.54,128.08,127.25,127.64,420000,127.64
-1941-09-19,128.77,128.81,127.74,127.95,580000,127.95
-1941-09-18,129.32,130.00,128.54,128.77,790000,128.77
-1941-09-17,127.43,129.48,127.27,129.32,890000,129.32
-1941-09-16,127.20,127.71,126.85,127.43,610000,127.43
-1941-09-15,127.28,127.54,126.95,127.20,460000,127.20
-1941-09-12,127.15,127.72,126.87,127.18,520000,127.18
-1941-09-11,126.53,127.45,126.31,127.15,690000,127.15
-1941-09-10,127.43,127.48,126.37,126.53,520000,126.53
-1941-09-09,127.51,128.38,127.16,127.43,870000,127.43
-1941-09-08,127.26,127.94,126.99,127.51,620000,127.51
-1941-09-05,127.51,127.54,126.88,127.17,580000,127.17
-1941-09-04,127.88,127.88,127.21,127.51,540000,127.51
-1941-09-03,128.31,128.56,127.54,127.91,460000,127.91
-1941-09-02,127.77,128.62,127.77,128.31,520000,128.31
-1941-08-29,127.77,127.88,127.05,127.43,350000,127.43
-1941-08-28,127.25,127.95,127.25,127.77,400000,127.77
-1941-08-27,126.60,127.37,126.60,127.08,430000,127.08
-1941-08-26,126.08,126.82,126.08,126.56,460000,126.56
-1941-08-25,125.91,126.25,125.50,125.86,330000,125.86
-1941-08-22,125.99,126.12,125.39,125.84,360000,125.84
-1941-08-21,126.01,126.42,125.72,125.99,390000,125.99
-1941-08-20,125.57,126.42,125.48,126.01,490000,126.01
-1941-08-19,125.62,125.91,125.20,125.57,390000,125.57
-1941-08-18,125.20,125.96,125.20,125.62,400000,125.62
-1941-08-15,125.96,125.97,124.66,124.90,390000,124.90
-1941-08-14,125.65,126.43,125.57,125.96,420000,125.96
-1941-08-13,125.81,126.10,125.42,125.65,420000,125.65
-1941-08-12,126.01,126.24,125.30,125.81,430000,125.81
-1941-08-11,126.40,126.61,125.63,126.01,450000,126.01
-1941-08-08,128.09,128.27,127.31,127.48,550000,127.48
-1941-08-07,128.10,128.57,127.68,128.09,500000,128.09
-1941-08-06,128.14,128.55,127.62,128.10,580000,128.10
-1941-08-05,128.17,128.54,127.61,128.14,640000,128.14
-1941-08-04,128.21,128.56,127.61,128.17,630000,128.17
-1941-08-01,128.68,128.68,127.64,128.22,680000,128.22
-1941-07-31,128.95,129.45,128.43,128.79,850000,128.79
-1941-07-30,129.19,129.34,128.07,128.95,750000,128.95
-1941-07-29,130.06,130.33,128.93,129.19,960000,129.19
-1941-07-28,128.70,130.37,128.65,130.06,940000,130.06
-1941-07-25,128.59,128.92,127.74,128.06,810000,128.06
-1941-07-24,129.16,129.40,128.39,128.59,620000,128.59
-1941-07-23,129.58,129.71,128.79,129.16,630000,129.16
-1941-07-22,129.51,131.10,129.22,129.58,1350000,129.58
-1941-07-21,127.98,129.57,127.78,129.51,910000,129.51
-1941-07-18,127.14,127.89,126.92,127.69,420000,127.69
-1941-07-17,127.83,127.88,126.75,127.14,460000,127.14
-1941-07-16,128.19,128.70,127.62,127.83,640000,127.83
-1941-07-15,127.89,128.68,127.53,128.19,700000,128.19
-1941-07-14,127.80,128.17,127.44,127.89,560000,127.89
-1941-07-11,127.78,128.70,127.35,127.90,810000,127.90
-1941-07-10,127.63,128.36,127.05,127.78,840000,127.78
-1941-07-09,127.64,128.77,127.12,127.63,1100000,127.63
-1941-07-08,126.16,128.00,126.07,127.64,1380000,127.64
-1941-07-07,124.54,126.24,124.54,126.16,900000,126.16
-1941-07-03,123.58,124.43,123.43,124.04,470000,124.04
-1941-07-02,122.85,123.90,122.78,123.58,390000,123.58
-1941-07-01,123.14,123.37,122.54,122.85,350000,122.85
-1941-06-30,123.40,123.58,122.87,123.14,270000,123.14
-1941-06-27,123.96,124.03,123.22,123.46,410000,123.46
-1941-06-26,123.52,124.13,123.42,123.96,530000,123.96
-1941-06-25,123.24,123.83,122.85,123.52,430000,123.52
-1941-06-24,123.97,124.03,122.88,123.24,440000,123.24
-1941-06-23,123.41,125.14,123.41,123.97,760000,123.97
-1941-06-20,123.30,123.30,121.85,122.19,360000,122.19
-1941-06-19,123.50,123.73,122.61,123.48,460000,123.48
-1941-06-18,123.17,124.31,123.17,123.50,580000,123.50
-1941-06-17,122.14,123.21,122.14,123.12,400000,123.12
-1941-06-16,122.04,122.58,121.72,121.95,340000,121.95
-1941-06-13,122.88,122.88,121.75,122.31,440000,122.31
-1941-06-12,122.18,123.48,122.17,122.98,560000,122.98
-1941-06-11,121.89,122.64,121.46,122.18,540000,122.18
-1941-06-10,120.61,122.48,120.61,121.89,830000,121.89
-1941-06-09,118.99,120.27,118.99,120.16,440000,120.16
-1941-06-06,118.13,118.26,117.78,118.00,330000,118.00
-1941-06-05,117.68,118.60,117.59,118.13,610000,118.13
-1941-06-04,117.38,117.98,116.89,117.68,430000,117.68
-1941-06-03,116.32,117.85,116.32,117.38,420000,117.38
-1941-06-02,115.76,116.45,115.52,116.18,260000,116.18
-1941-05-29,116.16,116.80,115.84,116.23,350000,116.23
-1941-05-28,115.95,116.50,115.56,116.16,340000,116.16
-1941-05-27,115.73,116.31,115.33,115.95,390000,115.95
-1941-05-26,116.28,116.28,115.51,115.73,300000,115.73
-1941-05-23,116.81,117.16,116.22,116.73,260000,116.73
-1941-05-22,117.82,117.98,116.56,116.81,400000,116.81
-1941-05-21,117.65,118.45,117.34,117.82,540000,117.82
-1941-05-20,116.31,117.78,116.31,117.65,470000,117.65
-1941-05-19,116.11,116.36,115.92,116.15,220000,116.15
-1941-05-16,115.73,116.38,115.36,115.86,290000,115.86
-1941-05-15,117.01,117.37,115.54,115.73,500000,115.73
-1941-05-14,117.21,117.36,116.67,117.01,320000,117.01
-1941-05-13,117.14,117.93,116.88,117.21,430000,117.21
-1941-05-12,117.54,117.83,116.85,117.14,440000,117.14
-1941-05-09,116.34,116.90,116.18,116.46,400000,116.46
-1941-05-08,116.76,116.76,115.97,116.34,440000,116.34
-1941-05-07,117.10,117.49,116.53,116.87,560000,116.87
-1941-05-06,116.02,117.63,116.02,117.10,910000,117.10
-1941-05-05,115.55,116.20,114.97,115.84,420000,115.84
-1941-05-02,115.41,116.34,115.41,115.72,400000,115.72
-1941-05-01,115.54,115.64,114.78,115.30,310000,115.30
-1941-04-30,116.73,116.78,115.36,115.54,410000,115.54
-1941-04-29,116.63,117.48,116.45,116.73,510000,116.73
-1941-04-28,116.43,116.86,115.96,116.63,310000,116.63
-1941-04-25,117.35,117.56,116.45,116.58,430000,116.58
-1941-04-24,116.61,117.85,116.61,117.35,490000,117.35
-1941-04-23,115.78,116.82,115.33,116.59,480000,116.59
-1941-04-22,116.06,117.03,115.36,115.78,440000,115.78
-1941-04-21,116.15,116.39,115.49,116.06,430000,116.06
-1941-04-18,117.74,117.74,116.11,116.28,490000,116.28
-1941-04-17,118.60,118.75,117.78,118.16,400000,118.16
-1941-04-16,118.59,119.01,117.65,118.60,440000,118.60
-1941-04-15,118.89,119.61,118.24,118.59,450000,118.59
-1941-04-14,118.60,119.05,118.01,118.89,460000,118.89
-1941-04-10,119.85,120.45,119.40,119.66,360000,119.66
-1941-04-09,120.72,120.72,119.56,119.85,590000,119.85
-1941-04-08,122.94,122.94,121.00,121.21,740000,121.21
-1941-04-07,124.11,124.11,123.36,123.64,360000,123.64
-1941-04-04,124.65,125.28,124.23,124.64,700000,124.64
-1941-04-03,123.74,124.93,123.74,124.65,940000,124.65
-1941-04-02,123.26,123.55,122.66,123.43,450000,123.43
-1941-04-01,122.87,123.57,122.87,123.26,430000,123.26
-1941-03-31,122.37,123.02,122.32,122.72,440000,122.72
-1941-03-28,123.33,123.70,122.47,122.68,440000,122.68
-1941-03-27,122.84,123.75,122.84,123.33,550000,123.33
-1941-03-26,122.78,123.21,122.55,122.70,530000,122.70
-1941-03-25,122.39,123.00,121.98,122.78,450000,122.78
-1941-03-24,121.92,122.62,121.82,122.39,370000,122.39
-1941-03-21,123.39,123.39,122.26,122.47,470000,122.47
-1941-03-20,123.55,123.92,123.26,123.60,490000,123.60
-1941-03-19,123.92,124.35,123.24,123.55,540000,123.55
-1941-03-18,123.46,124.10,123.02,123.92,410000,123.92
-1941-03-17,123.40,124.12,123.18,123.46,380000,123.46
-1941-03-14,122.56,123.12,122.42,122.75,320000,122.75
-1941-03-13,123.19,123.27,122.35,122.56,340000,122.56
-1941-03-12,123.27,124.04,122.73,123.19,460000,123.19
-1941-03-11,123.64,124.20,123.03,123.27,510000,123.27
-1941-03-10,121.48,123.71,121.48,123.64,620000,123.64
-1941-03-07,121.63,122.25,121.34,121.59,350000,121.59
-1941-03-06,120.30,121.68,120.10,121.63,480000,121.63
-1941-03-05,121.15,121.15,119.98,120.30,290000,120.30
-1941-03-04,120.88,121.44,120.62,121.16,310000,121.16
-1941-03-03,121.65,121.65,120.58,120.88,330000,120.88
-1941-02-28,121.87,122.69,121.60,121.97,410000,121.97
-1941-02-27,122.22,122.22,121.22,121.87,310000,121.87
-1941-02-26,122.40,122.90,121.99,122.39,380000,122.39
-1941-02-25,121.60,122.77,121.60,122.40,360000,122.40
-1941-02-24,120.44,121.74,120.44,121.49,350000,121.49
-1941-02-21,119.99,120.64,119.60,120.24,300000,120.24
-1941-02-20,118.84,120.52,118.84,119.99,450000,119.99
-1941-02-19,118.71,118.71,117.43,117.94,470000,117.94
-1941-02-18,119.18,119.65,118.53,118.98,320000,118.98
-1941-02-17,118.70,119.73,118.70,119.18,360000,119.18
-1941-02-14,120.74,120.74,117.57,117.66,930000,117.66
-1941-02-13,122.06,122.06,120.57,121.10,640000,121.10
-1941-02-11,123.80,123.80,122.51,122.61,420000,122.61
-1941-02-10,124.71,125.13,123.93,124.19,300000,124.19
-1941-02-07,124.58,124.58,123.57,124.30,340000,124.30
-1941-02-06,124.25,125.27,124.25,124.76,420000,124.76
-1941-02-05,122.77,124.55,122.77,124.14,490000,124.14
-1941-02-04,122.67,123.29,122.29,122.63,350000,122.63
-1941-02-03,123.28,123.75,122.40,122.67,490000,122.67
-1941-01-31,124.05,124.85,123.86,124.13,470000,124.13
-1941-01-30,125.96,125.96,123.94,124.05,780000,124.05
-1941-01-29,127.93,127.93,125.76,126.00,600000,126.00
-1941-01-28,129.03,129.27,128.42,128.60,470000,128.60
-1941-01-27,128.96,129.47,128.54,129.03,360000,129.03
-1941-01-24,128.34,128.92,127.68,128.52,410000,128.52
-1941-01-23,128.65,129.15,127.74,128.34,470000,128.34
-1941-01-22,128.20,129.03,127.98,128.65,520000,128.65
-1941-01-21,129.24,129.51,127.83,128.20,580000,128.20
-1941-01-20,129.75,129.99,128.78,129.24,380000,129.24
-1941-01-17,129.93,130.20,128.73,129.54,580000,129.54
-1941-01-16,131.36,131.36,129.82,129.93,610000,129.93
-1941-01-15,132.43,132.43,131.20,131.51,400000,131.51
-1941-01-14,133.11,133.11,132.17,132.44,470000,132.44
-1941-01-13,133.49,133.85,132.92,133.25,480000,133.25
-1941-01-10,133.39,134.27,133.14,133.59,750000,133.59
-1941-01-09,133.02,133.94,132.79,133.39,860000,133.39
-1941-01-08,133.02,133.74,132.35,133.02,640000,133.02
-1941-01-07,132.83,133.50,132.19,133.02,530000,133.02
-1941-01-06,132.42,133.68,132.42,132.83,720000,132.83
-1941-01-03,130.57,132.19,130.24,132.01,510000,132.01
-1941-01-02,131.13,131.88,130.39,130.57,530000,130.57
-1940-12-31,131.04,131.86,130.40,131.13,1070000,131.13
-1940-12-30,130.18,131.85,130.18,131.04,1180000,131.04
-1940-12-27,129.02,130.11,128.55,129.51,1270000,129.51
-1940-12-26,128.89,129.70,128.42,129.02,840000,129.02
-1940-12-24,128.41,129.47,128.08,128.89,830000,128.89
-1940-12-23,128.89,129.29,127.83,128.41,820000,128.41
-1940-12-20,128.84,129.66,128.19,128.87,830000,128.87
-1940-12-19,129.42,129.43,128.19,128.84,790000,128.84
-1940-12-18,130.53,130.92,129.31,129.42,780000,129.42
-1940-12-17,131.07,131.34,130.09,130.53,700000,130.53
-1940-12-16,132.28,132.28,130.74,131.07,660000,131.07
-1940-12-13,132.14,133.00,131.56,132.35,960000,132.35
-1940-12-12,131.76,132.53,131.24,132.14,780000,132.14
-1940-12-11,131.37,132.50,131.24,131.76,810000,131.76
-1940-12-10,131.46,131.97,130.69,131.37,610000,131.37
-1940-12-09,131.29,132.22,130.91,131.46,630000,131.46
-1940-12-06,129.96,130.86,129.62,130.33,540000,130.33
-1940-12-05,130.75,130.81,129.54,129.96,600000,129.96
-1940-12-04,130.78,131.21,129.99,130.75,650000,130.75
-1940-12-03,130.93,131.23,130.25,130.78,450000,130.78
-1940-12-02,131.00,131.96,130.54,130.93,480000,130.93
-1940-11-29,130.14,130.78,129.49,130.03,530000,130.03
-1940-11-28,129.78,130.57,129.13,130.14,470000,130.14
-1940-11-27,131.45,131.45,129.29,129.78,850000,129.78
-1940-11-26,131.96,132.72,131.28,131.94,590000,131.94
-1940-11-25,131.47,132.76,131.35,131.96,520000,131.96
-1940-11-22,132.22,133.36,131.29,131.74,710000,131.74
-1940-11-20,134.08,134.08,131.72,132.22,810000,132.22
-1940-11-19,134.74,134.99,133.51,134.48,700000,134.48
-1940-11-18,134.73,135.47,134.36,134.74,570000,134.74
-1940-11-15,136.97,137.44,135.24,135.59,1050000,135.59
-1940-11-14,136.61,137.78,136.20,136.97,1380000,136.97
-1940-11-13,137.41,137.61,135.77,136.61,1070000,136.61
-1940-11-12,138.12,138.50,136.56,137.41,1450000,137.41
-1940-11-08,137.75,138.77,135.76,136.64,1750000,136.64
-1940-11-07,131.98,138.13,131.93,137.75,2080000,137.75
-1940-11-06,135.00,135.00,131.47,131.98,1210000,131.98
-1940-11-04,134.85,135.83,133.81,135.21,1240000,135.21
-1940-11-01,134.61,135.84,134.13,134.41,1260000,134.41
-1940-10-31,133.06,135.10,133.06,134.61,1340000,134.61
-1940-10-30,132.19,133.43,131.90,132.98,670000,132.98
-1940-10-29,131.77,132.80,131.66,132.19,590000,132.19
-1940-10-28,132.26,132.27,130.96,131.77,470000,131.77
-1940-10-25,131.36,131.71,130.38,131.16,520000,131.16
-1940-10-24,132.29,132.29,131.06,131.36,540000,131.36
-1940-10-23,131.98,132.79,131.26,132.40,810000,132.40
-1940-10-22,131.37,132.44,131.04,131.98,540000,131.98
-1940-10-21,132.18,132.28,131.13,131.37,370000,131.37
-1940-10-18,132.49,132.90,131.92,132.45,590000,132.45
-1940-10-17,131.97,132.84,131.20,132.49,650000,132.49
-1940-10-16,131.48,132.69,131.05,131.97,660000,131.97
-1940-10-15,130.73,131.63,129.47,131.48,550000,131.48
-1940-10-14,131.04,131.49,130.32,130.73,400000,130.73
-1940-10-11,130.39,131.62,130.20,131.04,400000,131.04
-1940-10-10,130.54,131.22,130.09,130.39,380000,130.39
-1940-10-09,131.31,131.31,130.11,130.54,450000,130.54
-1940-10-08,133.31,133.31,131.20,131.31,500000,131.31
-1940-10-07,133.90,134.54,133.31,133.51,390000,133.51
-1940-10-04,134.48,134.48,133.37,133.79,470000,133.79
-1940-10-03,134.97,135.86,134.59,135.09,780000,135.09
-1940-10-02,134.33,135.41,133.70,134.97,770000,134.97
-1940-10-01,133.04,135.04,133.04,134.33,810000,134.33
-1940-09-30,132.32,133.07,132.10,132.64,400000,132.64
-1940-09-27,132.98,132.98,131.38,131.76,560000,131.76
-1940-09-26,134.00,134.00,133.00,133.50,440000,133.50
-1940-09-25,134.44,134.58,133.40,134.15,600000,134.15
-1940-09-24,135.10,135.48,133.89,134.44,710000,134.44
-1940-09-23,132.98,135.31,132.98,135.10,980000,135.10
-1940-09-20,131.34,131.95,130.77,131.61,380000,131.61
-1940-09-19,131.28,132.03,130.83,131.34,470000,131.34
-1940-09-18,130.43,131.67,129.91,131.28,480000,131.28
-1940-09-17,129.44,130.89,129.44,130.43,400000,130.43
-1940-09-16,128.89,130.04,128.89,129.44,290000,129.44
-1940-09-13,127.87,128.37,127.22,127.74,270000,127.74
-1940-09-12,129.32,129.32,127.46,127.87,400000,127.87
-1940-09-11,129.61,131.21,129.07,129.36,450000,129.36
-1940-09-10,129.73,130.53,129.18,129.61,360000,129.61
-1940-09-09,130.98,130.98,129.36,129.73,590000,129.73
-1940-09-06,134.10,134.19,132.71,133.12,710000,133.12
-1940-09-05,132.31,134.54,132.31,134.10,1250000,134.10
-1940-09-04,129.74,132.25,128.89,132.16,780000,132.16
-1940-09-03,129.42,130.59,129.12,129.74,550000,129.74
-1940-08-30,126.98,129.18,126.98,128.88,560000,128.88
-1940-08-29,126.87,127.37,126.49,126.87,270000,126.87
-1940-08-28,125.81,127.37,125.81,126.87,380000,126.87
-1940-08-27,125.71,125.76,124.95,125.33,220000,125.33
-1940-08-26,125.48,126.04,125.34,125.71,160000,125.71
-1940-08-23,126.34,126.34,124.81,125.34,290000,125.34
-1940-08-22,125.62,126.97,125.62,126.46,440000,126.46
-1940-08-21,123.95,125.38,123.95,125.07,360000,125.07
-1940-08-20,122.52,123.41,122.52,123.17,240000,123.17
-1940-08-19,121.98,122.37,121.70,122.06,130000,122.06
-1940-08-16,122.50,122.50,120.90,121.28,310000,121.28
-1940-08-15,122.73,123.46,122.73,123.04,220000,123.04
-1940-08-14,122.98,123.17,122.00,122.25,270000,122.25
-1940-08-13,126.42,126.42,122.64,122.98,640000,122.98
-1940-08-12,126.99,127.55,126.50,127.26,290000,127.26
-1940-08-09,125.44,126.81,125.44,126.40,310000,126.40
-1940-08-08,125.12,125.48,124.87,125.13,210000,125.13
-1940-08-07,125.27,125.47,124.61,125.12,240000,125.12
-1940-08-06,126.28,126.28,125.11,125.27,290000,125.27
-1940-08-05,126.36,126.73,125.57,126.44,280000,126.44
-1940-08-02,126.13,126.97,125.77,126.37,300000,126.37
-1940-08-01,126.14,126.86,125.57,126.13,330000,126.13
-1940-07-31,125.97,127.18,125.47,126.14,560000,126.14
-1940-07-30,123.58,126.18,123.58,125.97,670000,125.97
-1940-07-29,122.45,123.38,122.16,123.15,260000,123.15
-1940-07-26,121.93,122.75,121.70,122.05,270000,122.05
-1940-07-25,121.64,122.09,121.19,121.93,250000,121.93
-1940-07-24,122.23,122.30,121.49,121.64,200000,121.64
-1940-07-23,122.06,122.53,121.49,122.23,250000,122.23
-1940-07-22,121.87,122.47,121.62,122.06,230000,122.06
-1940-07-19,122.93,122.93,122.01,122.18,260000,122.18
-1940-07-18,122.82,123.22,122.52,123.00,220000,123.00
-1940-07-17,123.12,123.91,122.34,122.82,380000,122.82
-1940-07-16,121.82,123.73,121.82,123.12,440000,123.12
-1940-07-15,121.48,122.13,121.29,121.72,230000,121.72
-1940-07-12,121.58,121.95,121.32,121.63,260000,121.63
-1940-07-11,121.49,122.30,121.28,121.58,330000,121.58
-1940-07-10,121.60,121.82,120.83,121.49,280000,121.49
-1940-07-09,121.63,122.33,121.36,121.60,300000,121.60
-1940-07-08,121.59,122.04,121.39,121.63,230000,121.63
-1940-07-05,121.02,121.96,121.02,121.51,280000,121.51
-1940-07-03,120.96,121.68,120.14,120.96,380000,120.96
-1940-07-02,121.12,122.01,120.71,120.96,320000,120.96
-1940-07-01,121.77,121.77,120.79,121.12,270000,121.12
-1940-06-28,121.82,124.42,121.82,122.06,1170000,122.06
-1940-06-27,120.01,121.23,120.01,120.69,440000,120.69
-1940-06-26,120.74,120.74,118.67,119.73,640000,119.73
-1940-06-25,123.76,123.99,120.78,121.05,700000,121.05
-1940-06-24,122.83,124.05,122.60,123.76,470000,123.76
-1940-06-21,122.35,123.07,121.89,122.61,330000,122.61
-1940-06-20,123.79,123.79,121.96,122.35,590000,122.35
-1940-06-19,123.21,124.51,122.50,123.86,560000,123.86
-1940-06-18,122.80,125.31,122.35,123.21,720000,123.21
-1940-06-17,123.36,123.73,119.18,122.80,1210000,122.80
-1940-06-14,119.91,122.95,118.96,122.27,950000,122.27
-1940-06-13,121.46,122.10,119.37,119.91,880000,119.91
-1940-06-12,117.41,122.38,117.41,121.46,1360000,121.46
-1940-06-11,113.24,116.38,113.24,115.97,760000,115.97
-1940-06-10,114.42,114.42,110.41,111.84,970000,111.84
-1940-06-07,114.60,116.58,114.60,115.67,470000,115.67
-1940-06-06,113.25,114.80,113.05,114.48,430000,114.48
-1940-06-05,115.12,115.12,112.30,113.25,670000,113.25
-1940-06-04,114.75,116.25,114.75,115.79,410000,115.79
-1940-06-03,115.67,116.44,114.35,114.73,450000,114.73
-1940-05-31,115.24,117.15,115.13,116.22,530000,116.22
-1940-05-29,114.26,116.66,114.08,115.24,660000,115.24
-1940-05-28,114.76,114.76,110.51,114.26,1260000,114.26
-1940-05-27,115.07,117.71,115.07,116.35,790000,116.35
-1940-05-24,114.71,116.15,113.37,113.94,870000,113.94
-1940-05-23,114.75,117.84,112.78,114.71,1640000,114.71
-1940-05-22,114.13,116.50,112.43,114.75,2130000,114.75
-1940-05-21,120.52,120.52,110.61,114.13,3940000,114.13
-1940-05-20,122.43,124.98,121.68,122.43,1240000,122.43
-1940-05-17,130.43,131.21,122.93,124.20,3080000,124.20
-1940-05-16,129.08,131.35,127.54,130.43,2350000,130.43
-1940-05-15,128.27,131.17,125.76,129.08,3770000,129.08
-1940-05-14,136.85,136.85,128.11,128.27,3680000,128.27
-1940-05-13,144.42,144.42,137.25,137.63,2560000,137.63
-1940-05-10,148.17,148.48,144.51,144.77,2090000,144.77
-1940-05-09,147.96,148.60,147.65,148.17,850000,148.17
-1940-05-08,147.74,148.70,147.49,147.96,690000,147.96
-1940-05-07,147.33,148.22,146.89,147.74,580000,147.74
-1940-05-06,147.55,148.12,147.05,147.33,530000,147.33
-1940-05-03,147.76,148.70,146.42,147.65,1070000,147.65
-1940-05-02,147.15,148.18,147.15,147.76,650000,147.76
-1940-05-01,148.14,148.14,146.84,147.13,810000,147.13
-1940-04-30,148.41,149.06,147.98,148.43,590000,148.43
-1940-04-29,148.12,148.88,148.02,148.41,570000,148.41
-1940-04-26,148.56,148.72,147.37,147.73,850000,147.73
-1940-04-25,148.45,149.22,148.07,148.56,820000,148.56
-1940-04-24,148.93,149.45,148.20,148.45,850000,148.45
-1940-04-23,148.01,149.18,147.77,148.93,880000,148.93
-1940-04-22,147.67,148.68,147.45,148.01,870000,148.01
-1940-04-19,147.15,147.31,145.86,146.80,1160000,146.80
-1940-04-18,148.35,148.64,146.76,147.15,1210000,147.15
-1940-04-17,148.18,149.12,147.77,148.35,900000,148.35
-1940-04-16,149.72,150.24,147.43,148.18,1510000,148.18
-1940-04-15,149.66,150.67,149.20,149.72,1260000,149.72
-1940-04-12,149.98,150.09,148.68,149.20,830000,149.20
-1940-04-11,149.59,150.96,149.49,149.98,890000,149.98
-1940-04-10,150.31,150.55,149.12,149.59,1290000,149.59
-1940-04-09,151.29,152.01,149.16,150.31,2140000,150.31
-1940-04-08,151.10,152.09,150.63,151.29,1260000,151.29
-1940-04-05,150.41,151.32,149.94,150.36,1260000,150.36
-1940-04-04,149.65,151.15,149.56,150.41,2000000,150.41
-1940-04-03,147.92,149.74,147.56,149.65,1730000,149.65
-1940-04-02,147.72,148.37,147.48,147.92,840000,147.92
-1940-04-01,147.95,148.44,147.49,147.72,750000,147.72
-1940-03-29,147.25,148.04,146.82,147.54,840000,147.54
-1940-03-28,147.47,148.16,146.92,147.25,1020000,147.25
-1940-03-27,146.24,147.83,146.24,147.47,1190000,147.47
-1940-03-26,146.25,146.56,145.49,145.86,620000,145.86
-1940-03-25,146.73,146.96,146.15,146.25,600000,146.25
-1940-03-21,146.91,147.20,146.38,146.73,580000,146.73
-1940-03-20,146.43,147.30,146.34,146.91,650000,146.91
-1940-03-19,145.61,146.85,145.61,146.43,650000,146.43
-1940-03-18,145.76,146.18,145.08,145.59,510000,145.59
-1940-03-15,148.11,148.21,146.34,146.53,880000,146.53
-1940-03-14,148.32,148.57,147.63,148.11,660000,148.11
-1940-03-13,148.37,148.92,147.69,148.32,630000,148.32
-1940-03-12,148.15,149.45,147.93,148.37,880000,148.37
-1940-03-11,148.14,148.65,147.57,148.15,590000,148.15
-1940-03-08,148.32,148.80,147.76,148.07,750000,148.07
-1940-03-07,147.97,148.67,147.83,148.32,690000,148.32
-1940-03-06,147.08,148.37,147.08,147.97,860000,147.97
-1940-03-05,146.43,147.15,146.41,146.89,570000,146.89
-1940-03-04,146.33,146.77,146.00,146.43,460000,146.43
-1940-03-01,146.54,146.79,145.85,146.23,600000,146.23
-1940-02-29,146.56,147.21,146.10,146.54,620000,146.54
-1940-02-28,146.17,147.16,146.07,146.56,570000,146.56
-1940-02-27,146.44,147.10,145.90,146.17,510000,146.17
-1940-02-26,146.72,146.82,145.81,146.44,440000,146.44
-1940-02-23,148.17,148.17,146.93,147.35,650000,147.35
-1940-02-21,148.65,149.04,148.02,148.34,780000,148.34
-1940-02-20,148.46,148.95,147.51,148.65,810000,148.65
-1940-02-19,148.72,148.95,147.93,148.46,630000,148.46
-1940-02-16,148.46,148.60,147.38,148.20,680000,148.20
-1940-02-15,148.33,149.19,148.20,148.46,750000,148.46
-1940-02-14,148.78,148.83,147.65,148.33,650000,148.33
-1940-02-13,148.84,149.64,148.38,148.78,580000,148.78
-1940-02-09,148.54,150.04,148.54,148.94,1100000,148.94
-1940-02-08,146.63,148.50,146.32,148.40,870000,148.40
-1940-02-07,145.93,146.97,145.84,146.63,490000,146.63
-1940-02-06,145.00,146.00,144.79,145.93,540000,145.93
-1940-02-05,145.58,145.58,144.69,145.00,410000,145.00
-1940-02-02,145.23,145.97,144.83,145.33,520000,145.33
-1940-02-01,145.33,145.57,144.73,145.23,460000,145.23
-1940-01-31,145.63,145.91,145.12,145.33,610000,145.33
-1940-01-30,146.26,146.37,145.19,145.63,550000,145.63
-1940-01-29,146.51,147.05,145.86,146.26,490000,146.26
-1940-01-26,146.29,147.16,146.00,146.61,600000,146.61
-1940-01-25,147.00,147.29,146.04,146.29,540000,146.29
-1940-01-24,145.71,147.11,145.71,147.00,710000,147.00
-1940-01-23,145.13,145.97,144.85,145.49,510000,145.49
-1940-01-22,145.64,145.66,144.57,145.13,440000,145.13
-1940-01-19,145.61,146.75,145.52,145.86,640000,145.86
-1940-01-18,145.81,146.44,144.77,145.61,610000,145.61
-1940-01-17,145.67,146.71,145.30,145.81,470000,145.81
-1940-01-16,144.65,146.11,144.37,145.67,530000,145.67
-1940-01-15,145.19,145.95,143.06,144.65,860000,144.65
-1940-01-12,148.23,148.35,145.76,145.96,1110000,145.96
-1940-01-11,150.15,150.64,148.22,148.23,850000,148.23
-1940-01-10,149.84,150.47,149.35,150.15,600000,150.15
-1940-01-09,151.21,151.21,149.45,149.84,670000,149.84
-1940-01-08,151.19,152.11,151.08,151.34,630000,151.34
-1940-01-05,152.43,152.89,151.27,151.54,760000,151.54
-1940-01-04,152.80,153.26,152.06,152.43,860000,152.43
-1940-01-03,151.86,153.29,151.86,152.80,1020000,152.80
-1940-01-02,150.45,151.79,150.45,151.43,580000,151.43
-1939-12-29,149.48,150.70,149.06,149.99,1140000,149.99
-1939-12-28,148.52,150.10,148.24,149.48,1080000,149.48
-1939-12-27,149.27,149.51,147.66,148.52,1150000,148.52
-1939-12-26,149.85,150.11,148.83,149.27,720000,149.27
-1939-12-22,149.10,149.97,148.87,149.59,720000,149.59
-1939-12-21,149.13,149.90,148.59,149.10,740000,149.10
-1939-12-20,148.93,149.86,148.41,149.13,910000,149.13
-1939-12-19,149.22,149.59,148.35,148.93,750000,148.93
-1939-12-18,149.36,149.80,148.69,149.22,730000,149.22
-1939-12-15,148.93,150.11,148.74,149.64,700000,149.64
-1939-12-14,148.94,150.09,148.25,148.93,890000,148.93
-1939-12-13,147.12,149.29,147.12,148.94,1060000,148.94
-1939-12-12,147.05,147.59,146.43,146.93,610000,146.93
-1939-12-11,147.93,148.27,146.67,147.05,570000,147.05
-1939-12-08,148.57,148.57,147.50,147.86,580000,147.86
-1939-12-07,148.78,149.59,147.98,148.70,1010000,148.70
-1939-12-06,146.83,148.99,146.83,148.78,990000,148.78
-1939-12-05,146.34,147.29,146.05,146.49,590000,146.49
-1939-12-04,146.62,146.79,145.74,146.34,430000,146.34
-1939-12-01,145.69,146.94,145.51,146.54,610000,146.54
-1939-11-30,146.73,146.73,144.85,145.69,880000,145.69
-1939-11-29,148.31,149.18,146.82,146.89,780000,146.89
-1939-11-28,148.59,149.65,148.02,148.31,620000,148.31
-1939-11-27,148.64,149.05,147.98,148.59,520000,148.59
-1939-11-24,150.34,150.46,148.12,148.47,820000,148.47
-1939-11-22,150.67,150.67,149.62,150.34,570000,150.34
-1939-11-21,151.69,152.11,150.72,150.98,560000,150.98
-1939-11-20,151.53,152.58,151.02,151.69,750000,151.69
-1939-11-17,151.15,152.21,150.55,151.00,770000,151.00
-1939-11-16,149.53,151.42,149.27,151.15,830000,151.15
-1939-11-15,149.77,150.48,149.23,149.53,640000,149.53
-1939-11-14,149.07,150.53,148.98,149.77,780000,149.77
-1939-11-13,149.09,149.70,148.55,149.07,650000,149.07
-1939-11-10,148.75,149.33,147.74,149.09,1090000,149.09
-1939-11-09,150.35,150.87,148.53,148.75,1200000,148.75
-1939-11-08,151.43,151.43,149.81,150.35,1070000,150.35
-1939-11-06,152.35,152.35,150.76,151.46,1270000,151.46
-1939-11-03,151.56,153.18,150.04,152.64,1820000,152.64
-1939-11-02,151.60,152.20,150.47,151.56,850000,151.56
-1939-11-01,151.88,152.26,150.64,151.60,790000,151.60
-1939-10-31,153.21,153.24,151.32,151.88,1010000,151.88
-1939-10-30,153.12,153.60,152.39,153.21,640000,153.21
-1939-10-27,154.05,154.34,152.30,153.46,1060000,153.46
-1939-10-26,155.48,155.95,153.84,154.05,1680000,154.05
-1939-10-25,154.07,155.95,153.98,155.48,1690000,155.48
-1939-10-24,153.71,154.76,153.04,154.07,1160000,154.07
-1939-10-23,153.86,154.56,153.19,153.71,970000,153.71
-1939-10-20,153.36,153.87,152.55,153.00,790000,153.00
-1939-10-19,153.54,154.42,152.78,153.36,1160000,153.36
-1939-10-18,154.56,155.28,153.23,153.54,1400000,153.54
-1939-10-17,151.29,154.81,151.29,154.56,1840000,154.56
-1939-10-16,150.38,151.34,149.95,150.84,490000,150.84
-1939-10-13,151.34,152.40,150.43,150.85,740000,150.85
-1939-10-11,150.66,151.89,150.49,151.34,630000,151.34
-1939-10-10,149.92,152.02,149.92,150.66,950000,150.66
-1939-10-09,149.60,150.51,148.91,149.89,620000,149.89
-1939-10-06,150.48,153.06,149.61,150.61,1330000,150.61
-1939-10-05,150.25,151.68,149.72,150.48,910000,150.48
-1939-10-04,150.23,151.20,148.73,150.25,980000,150.25
-1939-10-03,151.41,152.20,149.29,150.23,1000000,150.23
-1939-10-02,152.36,152.36,150.68,151.41,840000,151.41
-1939-09-29,150.89,150.89,148.92,150.16,1130000,150.16
-1939-09-28,153.08,153.13,150.41,151.12,1570000,151.12
-1939-09-27,153.54,154.92,152.01,153.08,2340000,153.08
-1939-09-26,152.64,154.27,151.77,153.54,1710000,153.54
-1939-09-25,152.99,153.91,152.05,152.64,1230000,152.64
-1939-09-22,153.48,154.76,151.97,152.57,1660000,152.57
-1939-09-21,152.25,154.56,151.49,153.48,1730000,153.48
-1939-09-20,152.14,154.96,151.57,152.25,2140000,152.25
-1939-09-19,148.46,152.83,148.46,152.14,1830000,152.14
-1939-09-18,150.57,150.57,147.35,147.78,1730000,147.78
-1939-09-15,153.71,155.57,152.56,154.03,1590000,154.03
-1939-09-14,154.10,155.54,151.96,153.71,2010000,153.71
-1939-09-13,155.92,157.77,152.74,154.10,3760000,154.10
-1939-09-12,155.12,157.30,151.78,155.92,4170000,155.92
-1939-09-11,150.91,156.34,150.85,155.12,4680000,155.12
-1939-09-08,148.32,152.58,148.08,150.04,3510000,150.04
-1939-09-07,148.04,150.52,146.74,148.32,2600000,148.32
-1939-09-06,148.12,150.76,146.08,148.04,3940000,148.04
-1939-09-05,142.38,150.07,142.38,148.12,5930000,148.12
-1939-09-01,134.41,136.03,127.51,135.25,1970000,135.25
-1939-08-31,135.76,135.76,133.38,134.41,460000,134.41
-1939-08-30,137.39,138.07,135.76,136.16,500000,136.16
-1939-08-29,135.91,137.84,135.91,137.39,480000,137.39
-1939-08-28,136.39,136.40,132.68,134.66,670000,134.66
-1939-08-25,131.33,134.53,130.58,133.73,690000,133.73
-1939-08-24,131.82,132.42,128.60,131.33,1290000,131.33
-1939-08-23,134.80,134.80,131.49,131.82,790000,131.82
-1939-08-22,133.07,135.84,133.07,135.07,860000,135.07
-1939-08-21,133.93,133.93,132.11,132.81,850000,132.81
-1939-08-18,138.15,138.15,134.83,135.54,840000,135.54
-1939-08-17,138.47,138.89,137.38,138.33,440000,138.33
-1939-08-16,139.86,139.86,137.61,138.47,640000,138.47
-1939-08-15,140.76,142.35,140.76,141.29,660000,141.29
-1939-08-14,138.75,140.54,138.75,140.18,550000,140.18
-1939-08-11,137.25,138.93,136.38,137.29,700000,137.29
-1939-08-10,138.83,138.83,136.62,137.25,700000,137.25
-1939-08-09,140.58,140.58,139.14,139.75,470000,139.75
-1939-08-08,140.76,141.93,140.55,141.10,450000,141.10
-1939-08-07,142.11,142.38,140.31,140.76,520000,140.76
-1939-08-04,144.06,144.06,141.26,141.73,900000,141.73
-1939-08-03,144.26,145.75,143.79,144.24,1010000,144.24
-1939-08-02,143.36,144.90,142.69,144.26,1030000,144.26
-1939-08-01,143.26,143.89,142.45,143.36,580000,143.36
-1939-07-31,144.00,144.04,142.77,143.26,520000,143.26
-1939-07-28,144.51,145.04,143.48,144.11,810000,144.11
-1939-07-27,143.82,144.92,143.08,144.51,820000,144.51
-1939-07-26,143.10,144.39,142.41,143.82,890000,143.82
-1939-07-25,144.18,145.72,142.83,143.10,1230000,143.10
-1939-07-24,144.71,144.89,143.38,144.18,1070000,144.18
-1939-07-21,141.88,144.28,141.88,143.46,1270000,143.46
-1939-07-20,142.64,143.24,141.05,141.24,810000,141.24
-1939-07-19,143.60,143.60,141.70,142.64,1020000,142.64
-1939-07-18,142.96,144.74,142.96,143.76,1890000,143.76
-1939-07-17,138.48,143.20,138.48,142.58,1750000,142.58
-1939-07-14,138.02,138.41,137.24,137.57,540000,137.57
-1939-07-13,137.34,139.05,137.34,138.02,950000,138.02
-1939-07-12,134.67,137.24,134.67,136.98,910000,136.98
-1939-07-11,133.84,135.06,133.84,134.56,430000,134.56
-1939-07-10,133.24,134.21,133.22,133.79,280000,133.79
-1939-07-07,133.58,133.84,132.93,133.22,330000,133.22
-1939-07-06,133.68,134.31,132.98,133.58,410000,133.58
-1939-07-05,132.74,133.94,132.74,133.68,350000,133.68
-1939-07-03,131.73,132.22,131.18,131.93,240000,131.93
-1939-06-30,130.05,131.16,128.97,130.63,600000,130.63
-1939-06-29,131.81,131.81,129.71,130.05,820000,130.05
-1939-06-28,135.06,135.06,132.76,132.83,540000,132.83
-1939-06-27,135.09,135.77,134.01,135.42,480000,135.42
-1939-06-26,136.77,136.77,134.83,135.09,500000,135.09
-1939-06-23,136.88,137.95,136.48,137.42,480000,137.42
-1939-06-22,137.61,137.63,136.34,136.88,450000,136.88
-1939-06-21,137.57,138.04,136.87,137.61,470000,137.61
-1939-06-20,136.72,137.97,136.72,137.57,490000,137.57
-1939-06-19,135.72,137.02,135.72,136.40,350000,136.40
-1939-06-16,134.41,135.36,133.79,134.67,400000,134.67
-1939-06-15,137.03,137.03,134.26,134.41,580000,134.41
-1939-06-14,138.02,138.02,136.44,137.50,400000,137.50
-1939-06-13,139.09,139.09,137.38,138.20,530000,138.20
-1939-06-12,139.95,139.95,138.34,139.13,420000,139.13
-1939-06-09,138.61,140.75,138.61,140.09,790000,140.09
-1939-06-08,138.71,138.84,137.53,138.49,410000,138.49
-1939-06-07,138.36,139.79,138.17,138.71,530000,138.71
-1939-06-06,137.06,138.84,136.98,138.36,600000,138.36
-1939-06-05,137.12,137.36,136.34,137.06,350000,137.06
-1939-06-02,136.29,137.42,136.29,136.74,400000,136.74
-1939-06-01,137.36,137.36,135.52,136.20,600000,136.20
-1939-05-31,137.80,139.23,137.52,138.18,670000,138.18
-1939-05-29,136.80,137.91,136.42,137.80,600000,137.80
-1939-05-26,135.53,136.76,135.22,136.09,620000,136.09
-1939-05-25,135.11,137.16,135.11,135.53,1010000,135.53
-1939-05-24,132.09,135.14,132.09,135.04,1010000,135.04
-1939-05-23,132.45,132.88,131.49,131.77,420000,131.77
-1939-05-22,131.22,132.54,130.50,132.45,420000,132.45
-1939-05-19,129.43,130.90,129.22,130.38,400000,130.38
-1939-05-18,129.09,130.28,128.79,129.43,420000,129.43
-1939-05-17,129.77,129.77,128.35,129.09,530000,129.09
-1939-05-16,132.56,132.56,129.79,129.86,620000,129.86
-1939-05-15,132.40,133.68,132.35,132.65,340000,132.65
-1939-05-12,132.79,132.79,131.74,132.16,340000,132.16
-1939-05-11,132.82,133.26,131.85,132.92,400000,132.92
-1939-05-10,133.67,134.66,132.63,132.82,690000,132.82
-1939-05-09,132.11,134.02,132.11,133.67,710000,133.67
-1939-05-08,131.74,132.22,130.70,131.67,350000,131.67
-1939-05-05,131.86,132.12,130.76,131.47,330000,131.47
-1939-05-04,132.30,133.24,131.30,131.86,660000,131.86
-1939-05-03,129.60,132.64,129.60,132.30,740000,132.30
-1939-05-02,128.31,130.13,128.31,129.32,450000,129.32
-1939-05-01,128.45,128.55,127.53,127.83,280000,127.83
-1939-04-28,129.78,131.42,127.58,128.38,730000,128.38
-1939-04-27,128.56,130.21,128.49,129.78,540000,129.78
-1939-04-26,127.36,129.06,126.44,128.56,580000,128.56
-1939-04-25,127.34,128.53,127.02,127.36,420000,127.36
-1939-04-24,128.55,129.03,127.20,127.34,410000,127.34
-1939-04-21,128.41,129.62,127.97,128.71,390000,128.71
-1939-04-20,127.87,129.59,127.87,128.41,520000,128.41
-1939-04-19,125.63,127.61,125.63,127.01,440000,127.01
-1939-04-18,127.02,127.02,124.81,125.38,440000,125.38
-1939-04-17,128.01,128.01,126.15,127.34,520000,127.34
-1939-04-14,126.58,126.58,124.52,126.20,620000,126.20
-1939-04-13,126.29,129.32,126.29,127.51,860000,127.51
-1939-04-12,125.15,127.51,125.15,126.15,1070000,126.15
-1939-04-11,124.03,124.42,120.04,123.75,1660000,123.75
-1939-04-10,121.44,124.27,120.82,124.03,1650000,124.03
-1939-04-06,129.23,129.23,125.49,126.32,1310000,126.32
-1939-04-05,129.80,131.38,128.64,130.34,880000,130.34
-1939-04-04,131.09,131.09,127.16,129.80,1530000,129.80
-1939-04-03,132.83,135.57,130.49,132.25,1470000,132.25
-1939-03-31,136.69,138.01,131.35,131.84,2890000,131.84
-1939-03-30,139.75,140.55,136.41,136.69,990000,136.69
-1939-03-29,139.33,140.55,138.84,139.75,470000,139.75
-1939-03-28,139.98,139.98,138.46,139.33,680000,139.33
-1939-03-27,141.55,143.14,140.91,141.14,570000,141.14
-1939-03-24,141.13,142.80,141.13,141.82,650000,141.82
-1939-03-23,139.51,142.17,139.42,140.33,830000,140.33
-1939-03-22,141.97,141.97,138.42,139.51,1440000,139.51
-1939-03-21,142.67,144.31,142.67,143.41,690000,143.41
-1939-03-20,141.68,143.14,140.57,141.28,950000,141.28
-1939-03-17,146.13,146.13,142.99,143.89,1470000,143.89
-1939-03-16,147.66,148.17,146.45,147.54,670000,147.54
-1939-03-15,150.28,150.28,147.16,147.66,1110000,147.66
-1939-03-14,150.79,151.39,149.91,151.10,690000,151.10
-1939-03-13,151.58,151.58,150.20,150.79,650000,150.79
-1939-03-10,151.33,152.71,151.22,152.28,1210000,152.28
-1939-03-09,151.42,152.42,150.52,151.33,1360000,151.33
-1939-03-08,149.37,151.56,149.17,151.42,1050000,151.42
-1939-03-07,148.86,149.88,148.86,149.37,570000,149.37
-1939-03-06,149.49,150.23,148.37,148.84,840000,148.84
-1939-03-03,147.31,148.89,147.31,148.76,1020000,148.76
-1939-03-02,147.15,147.19,146.34,146.96,600000,146.96
-1939-03-01,147.30,147.88,146.62,147.15,640000,147.15
-1939-02-28,146.76,148.16,146.76,147.30,1060000,147.30
-1939-02-27,146.82,147.32,146.10,146.62,750000,146.62
-1939-02-24,143.46,145.69,143.46,145.44,970000,145.44
-1939-02-23,142.64,143.63,142.45,142.93,460000,142.93
-1939-02-21,142.74,143.13,142.05,142.64,470000,142.64
-1939-02-20,144.54,144.54,142.48,142.74,690000,142.74
-1939-02-17,145.39,146.03,144.69,144.95,680000,144.95
-1939-02-16,144.60,146.12,144.50,145.39,850000,145.39
-1939-02-15,144.13,144.95,143.83,144.60,500000,144.60
-1939-02-14,144.48,144.48,143.49,144.13,420000,144.13
-1939-02-10,143.99,144.01,142.70,143.68,450000,143.68
-1939-02-09,145.43,145.56,143.83,143.99,550000,143.99
-1939-02-08,144.45,145.55,144.45,145.43,610000,145.43
-1939-02-07,145.03,145.11,143.50,144.10,570000,144.10
-1939-02-06,145.07,146.43,144.78,145.03,1040000,145.03
-1939-02-03,144.34,144.50,143.02,143.55,540000,143.55
-1939-02-02,142.59,144.49,142.59,144.34,700000,144.34
-1939-02-01,143.47,143.47,141.92,142.43,580000,142.43
-1939-01-31,142.52,144.74,142.52,143.76,1120000,143.76
-1939-01-30,139.32,141.80,139.32,141.56,790000,141.56
-1939-01-27,136.84,139.27,136.84,138.90,1060000,138.90
-1939-01-26,139.58,139.58,136.10,136.42,1540000,136.42
-1939-01-25,141.35,141.68,139.37,140.72,900000,140.72
-1939-01-24,141.32,142.83,139.62,141.35,1700000,141.35
-1939-01-23,144.13,144.13,141.00,141.32,1870000,141.32
-1939-01-20,149.47,149.75,148.77,149.11,740000,149.11
-1939-01-19,148.99,149.88,148.35,149.47,890000,149.47
-1939-01-18,148.93,149.56,148.55,148.99,630000,148.99
-1939-01-17,148.26,149.23,147.49,148.93,820000,148.93
-1939-01-16,148.26,148.71,147.70,148.26,670000,148.26
-1939-01-13,147.33,147.84,146.03,146.52,850000,146.52
-1939-01-12,148.65,149.43,146.17,147.33,1360000,147.33
-1939-01-11,150.18,150.18,148.45,148.65,920000,148.65
-1939-01-10,150.19,151.32,150.04,150.48,710000,150.48
-1939-01-09,151.07,151.07,149.23,150.19,1100000,150.19
-1939-01-06,153.18,153.55,152.42,152.87,950000,152.87
-1939-01-05,154.85,155.47,153.02,153.18,1570000,153.18
-1939-01-04,153.64,155.19,153.14,154.85,1500000,154.85
-1939-01-03,154.76,154.99,153.16,153.64,1150000,153.64
-1938-12-30,153.62,154.94,153.52,154.36,1400000,154.36
-1938-12-29,152.06,153.85,152.06,153.62,1880000,153.62
-1938-12-28,150.43,151.95,149.56,151.45,2160000,151.45
-1938-12-27,151.38,151.74,150.04,150.43,1340000,150.43
-1938-12-23,150.53,152.02,150.52,151.39,1220000,151.39
-1938-12-22,149.58,150.79,149.28,150.53,1040000,150.53
-1938-12-21,150.46,150.72,149.06,149.58,1060000,149.58
-1938-12-20,150.38,151.29,149.69,150.46,940000,150.46
-1938-12-19,150.36,151.77,149.72,150.38,1100000,150.38
-1938-12-16,151.82,152.21,150.52,150.89,1150000,150.89
-1938-12-15,151.83,153.16,151.44,151.82,1800000,151.82
-1938-12-14,149.59,152.08,149.38,151.83,1970000,151.83
-1938-12-13,148.65,150.16,148.60,149.59,1090000,149.59
-1938-12-12,148.31,149.71,148.23,148.65,900000,148.65
-1938-12-09,147.63,148.31,146.92,147.39,700000,147.39
-1938-12-08,148.73,148.79,147.35,147.63,740000,147.63
-1938-12-07,148.33,149.98,148.30,148.73,1110000,148.73
-1938-12-06,147.47,149.27,147.01,148.33,990000,148.33
-1938-12-05,147.50,147.88,146.44,147.47,680000,147.47
-1938-12-02,148.50,148.50,146.68,147.57,820000,147.57
-1938-12-01,149.82,150.20,148.17,148.63,860000,148.63
-1938-11-30,147.68,149.97,147.68,149.82,980000,149.82
-1938-11-29,146.38,147.85,146.38,147.07,820000,147.07
-1938-11-28,147.93,147.93,145.21,146.14,1240000,146.14
-1938-11-25,149.88,151.13,149.79,150.10,810000,150.10
-1938-11-23,149.56,151.00,149.27,149.88,1000000,149.88
-1938-11-22,150.14,150.14,148.90,149.56,880000,149.56
-1938-11-21,150.38,151.03,149.15,150.26,940000,150.26
-1938-11-18,152.78,153.19,149.16,149.93,1420000,149.93
-1938-11-17,151.54,153.18,151.34,152.78,1000000,152.78
-1938-11-16,154.66,155.60,151.41,151.54,1800000,151.54
-1938-11-15,155.33,155.33,153.17,154.66,1470000,154.66
-1938-11-14,157.57,157.57,155.16,155.61,1650000,155.61
-1938-11-10,158.08,158.90,156.79,157.47,2180000,157.47
-1938-11-09,155.62,158.39,155.62,158.08,3100000,158.08
-1938-11-07,152.12,155.56,152.02,154.91,1760000,154.91
-1938-11-04,152.31,153.08,151.44,152.10,1200000,152.10
-1938-11-03,152.21,153.13,151.72,152.31,1070000,152.31
-1938-11-02,151.39,152.64,150.68,152.21,780000,152.21
-1938-11-01,151.73,152.83,150.93,151.39,1280000,151.39
-1938-10-31,151.07,152.17,150.28,151.73,1090000,151.73
-1938-10-28,152.69,152.82,150.75,151.07,1560000,151.07
-1938-10-27,152.40,153.93,151.46,152.69,2000000,152.69
-1938-10-26,153.52,153.52,151.28,152.40,1700000,152.40
-1938-10-25,154.12,155.22,153.46,154.17,1500000,154.17
-1938-10-24,154.11,155.38,153.52,154.12,1680000,154.12
-1938-10-21,151.52,153.01,151.36,152.15,1720000,152.15
-1938-10-20,150.02,151.90,149.46,151.52,1620000,151.52
-1938-10-19,152.10,153.02,149.41,150.02,2430000,150.02
-1938-10-18,150.81,152.37,148.68,152.10,2410000,152.10
-1938-10-17,151.96,153.15,150.46,150.81,2520000,150.81
-1938-10-14,152.46,153.19,150.96,151.45,1950000,151.45
-1938-10-13,150.05,152.93,150.05,152.46,2360000,152.46
-1938-10-11,149.55,150.40,148.21,149.41,1530000,149.41
-1938-10-10,149.75,150.57,148.70,149.55,1660000,149.55
-1938-10-07,148.10,149.43,147.29,148.41,1470000,148.41
-1938-10-06,148.32,150.48,147.70,148.10,2450000,148.10
-1938-10-05,144.59,148.51,144.59,148.32,2240000,148.32
-1938-10-04,144.29,144.83,143.26,144.23,950000,144.23
-1938-10-03,143.13,145.21,142.64,144.29,1460000,144.29
-1938-09-30,139.61,142.05,139.61,141.45,1900000,141.45
-1938-09-29,134.58,137.45,134.58,137.16,1230000,137.16
-1938-09-28,130.19,134.54,127.85,133.68,1570000,133.68
-1938-09-27,129.91,132.49,129.62,130.19,770000,130.19
-1938-09-26,131.82,131.82,127.88,129.91,1230000,129.91
-1938-09-23,136.07,136.07,133.71,134.08,720000,134.08
-1938-09-22,138.17,138.17,136.81,137.35,470000,137.35
-1938-09-21,138.41,140.20,137.57,139.29,1030000,139.29
-1938-09-20,137.11,139.49,137.11,138.41,1200000,138.41
-1938-09-19,133.49,135.24,133.49,134.10,830000,134.10
-1938-09-16,135.53,135.53,134.06,134.85,670000,134.85
-1938-09-15,134.47,136.97,134.47,136.22,1140000,136.22
-1938-09-14,134.19,136.91,130.38,132.93,2820000,132.93
-1938-09-13,140.19,141.95,133.90,134.19,1700000,134.19
-1938-09-12,138.29,140.67,138.16,140.19,600000,140.19
-1938-09-09,141.39,141.39,139.20,139.90,700000,139.90
-1938-09-08,142.90,142.90,141.63,142.19,570000,142.19
-1938-09-07,141.47,143.42,141.05,143.08,890000,143.08
-1938-09-06,142.48,142.80,141.10,141.47,420000,141.47
-1938-09-02,138.52,141.48,138.52,141.38,550000,141.38
-1938-09-01,139.27,139.45,137.65,138.36,510000,138.36
-1938-08-31,138.30,139.80,138.30,139.27,460000,139.27
-1938-08-30,137.08,138.89,137.08,138.26,630000,138.26
-1938-08-29,139.56,139.56,136.64,137.06,1250000,137.06
-1938-08-26,144.07,144.61,142.69,142.94,820000,142.94
-1938-08-25,143.53,144.36,142.57,144.07,830000,144.07
-1938-08-24,143.70,145.30,143.28,143.53,1240000,143.53
-1938-08-23,141.03,144.00,141.03,143.70,1100000,143.70
-1938-08-22,141.20,141.61,140.12,140.92,400000,140.92
-1938-08-19,139.33,142.05,139.18,141.13,830000,141.13
-1938-08-18,139.03,139.76,138.38,139.33,450000,139.33
-1938-08-17,138.58,140.89,138.58,139.03,600000,139.03
-1938-08-16,137.09,139.38,137.09,138.44,610000,138.44
-1938-08-15,136.45,138.20,136.45,136.98,590000,136.98
-1938-08-12,138.31,138.31,135.38,136.51,1480000,136.51
-1938-08-11,142.40,142.75,139.13,139.32,1100000,139.32
-1938-08-10,143.21,143.67,141.80,142.40,810000,142.40
-1938-08-09,143.87,143.87,141.59,143.21,830000,143.21
-1938-08-08,145.67,145.89,143.75,144.33,910000,144.33
-1938-08-05,142.34,144.76,142.34,144.47,1170000,144.47
-1938-08-04,141.73,142.76,141.04,142.13,610000,142.13
-1938-08-03,141.97,143.40,141.10,141.73,820000,141.73
-1938-08-02,140.37,142.50,139.90,141.97,820000,141.97
-1938-08-01,140.96,140.96,139.83,140.37,590000,140.37
-1938-07-29,142.20,143.57,140.93,141.20,1200000,141.20
-1938-07-28,140.24,142.50,139.51,142.20,1070000,142.20
-1938-07-27,143.33,144.03,139.39,140.24,1970000,140.24
-1938-07-26,144.18,144.18,142.48,143.33,1250000,143.33
-1938-07-25,144.24,146.31,144.23,144.91,2110000,144.91
-1938-07-22,141.92,143.13,141.20,142.25,1220000,142.25
-1938-07-21,141.84,143.51,140.52,141.92,1810000,141.92
-1938-07-20,143.67,143.97,141.09,141.84,2510000,141.84
-1938-07-19,141.27,144.12,141.27,143.67,2940000,143.67
-1938-07-18,138.53,140.78,137.70,140.39,1560000,140.39
-1938-07-15,135.81,138.17,135.52,137.30,930000,137.30
-1938-07-14,136.90,137.85,135.22,135.81,1160000,135.81
-1938-07-13,137.49,140.52,136.46,136.90,2620000,136.90
-1938-07-12,134.56,138.22,133.84,137.49,1620000,137.49
-1938-07-11,136.20,136.72,133.97,134.56,1090000,134.56
-1938-07-08,136.76,136.76,134.51,135.66,1570000,135.66
-1938-07-07,137.78,140.05,136.44,137.45,2770000,137.45
-1938-07-06,136.52,138.20,134.57,137.78,1820000,137.78
-1938-07-05,138.50,138.50,135.19,136.52,1700000,136.52
-1938-07-01,133.88,137.13,133.53,136.53,2030000,136.53
-1938-06-30,135.87,138.19,133.24,133.88,2580000,133.88
-1938-06-29,130.38,136.13,130.36,135.87,2660000,135.87
-1938-06-28,130.48,132.28,129.44,130.38,1290000,130.38
-1938-06-27,131.94,132.98,129.79,130.48,2110000,130.48
-1938-06-24,127.54,130.71,127.54,129.06,2290000,129.06
-1938-06-23,123.99,128.49,123.71,127.40,2400000,127.40
-1938-06-22,121.34,124.74,120.65,123.99,1710000,123.99
-1938-06-21,119.01,122.36,119.01,121.34,1460000,121.34
-1938-06-20,115.31,118.92,115.31,118.61,1090000,118.61
-1938-06-17,113.97,114.51,112.82,113.06,330000,113.06
-1938-06-16,113.24,114.30,112.93,113.97,340000,113.97
-1938-06-15,112.88,114.18,112.88,113.24,340000,113.24
-1938-06-14,111.87,113.06,111.54,112.78,350000,112.78
-1938-06-13,113.37,113.37,111.75,111.87,330000,111.87
-1938-06-10,115.74,116.08,114.29,114.47,410000,114.47
-1938-06-09,113.79,116.03,113.79,115.74,590000,115.74
-1938-06-08,113.12,114.04,112.78,113.75,280000,113.75
-1938-06-07,113.19,114.51,112.84,113.12,370000,113.12
-1938-06-06,112.01,114.27,112.01,113.19,470000,113.19
-1938-06-03,110.52,110.52,109.35,109.71,290000,109.71
-1938-06-02,110.61,111.94,110.35,110.68,480000,110.68
-1938-06-01,107.74,110.87,107.58,110.61,540000,110.61
-1938-05-31,108.50,108.50,106.94,107.74,400000,107.74
-1938-05-27,108.28,108.55,106.44,107.98,760000,107.98
-1938-05-26,110.60,111.30,108.14,108.28,780000,108.28
-1938-05-25,112.24,112.24,110.43,110.60,560000,110.60
-1938-05-24,113.97,114.66,112.26,112.35,420000,112.35
-1938-05-23,113.25,114.27,112.88,113.97,330000,113.97
-1938-05-20,115.28,115.48,114.08,114.99,440000,114.99
-1938-05-19,117.02,117.08,114.92,115.28,490000,115.28
-1938-05-18,116.36,117.49,116.31,117.02,400000,117.02
-1938-05-17,115.38,116.65,114.75,116.36,410000,116.36
-1938-05-16,117.11,117.11,115.19,115.38,400000,115.38
-1938-05-13,118.41,118.41,116.30,116.87,610000,116.87
-1938-05-12,118.52,119.67,117.88,118.55,600000,118.55
-1938-05-11,117.93,119.70,117.78,118.52,980000,118.52
-1938-05-10,119.43,120.28,117.75,117.93,1040000,117.93
-1938-05-09,117.21,119.81,116.36,119.43,1020000,119.43
-1938-05-06,113.46,117.44,113.27,117.16,1020000,117.16
-1938-05-05,113.88,115.42,112.86,113.46,690000,113.46
-1938-05-04,112.71,114.32,111.69,113.88,550000,113.88
-1938-05-03,110.75,113.12,110.75,112.71,470000,112.71
-1938-05-02,110.55,110.55,109.40,110.09,350000,110.09
-1938-04-29,111.88,111.88,109.83,111.66,540000,111.66
-1938-04-28,114.83,114.83,111.73,111.98,540000,111.98
-1938-04-27,114.75,116.22,114.75,115.25,430000,115.25
-1938-04-26,115.70,115.70,113.51,113.94,450000,113.94
-1938-04-25,116.86,116.86,115.40,116.23,400000,116.23
-1938-04-22,115.74,119.67,115.74,118.52,1120000,118.52
-1938-04-21,114.90,115.98,114.05,115.40,600000,115.40
-1938-04-20,115.50,115.50,112.47,114.90,780000,114.90
-1938-04-19,118.46,118.46,116.00,116.34,570000,116.34
-1938-04-18,121.00,121.54,118.45,118.99,860000,118.99
-1938-04-14,114.85,117.57,113.56,116.82,1010000,116.82
-1938-04-13,113.88,116.29,113.79,114.85,640000,114.85
-1938-04-12,112.93,114.15,111.60,113.88,600000,113.88
-1938-04-11,115.32,115.71,112.43,112.93,1100000,112.93
-1938-04-08,106.89,110.23,106.89,109.57,830000,109.57
-1938-04-07,106.29,106.93,104.78,105.43,330000,105.43
-1938-04-06,107.90,107.90,105.72,106.29,480000,106.29
-1938-04-05,105.58,108.67,104.85,108.36,690000,108.36
-1938-04-04,106.11,106.79,104.47,105.58,690000,105.58
-1938-04-01,100.95,103.37,100.95,103.02,860000,103.02
-1938-03-31,100.97,102.86,97.46,98.95,1270000,98.95
-1938-03-30,101.92,103.89,100.17,100.97,1670000,100.97
-1938-03-29,105.87,105.87,101.56,101.92,1720000,101.92
-1938-03-28,106.63,108.55,105.68,107.25,1250000,107.25
-1938-03-25,114.37,114.37,108.12,108.57,1680000,108.57
-1938-03-24,114.38,115.97,112.73,114.64,890000,114.64
-1938-03-23,115.95,115.95,112.78,114.38,1470000,114.38
-1938-03-22,120.29,120.35,116.47,117.11,690000,117.11
-1938-03-21,120.43,122.48,120.09,120.29,540000,120.29
-1938-03-18,121.92,121.92,117.20,118.41,1580000,118.41
-1938-03-17,122.87,124.60,121.90,122.03,640000,122.03
-1938-03-16,126.10,126.10,121.84,122.87,1020000,122.87
-1938-03-15,124.52,127.44,124.52,127.24,760000,127.24
-1938-03-14,122.85,124.53,122.85,123.68,430000,123.68
-1938-03-11,123.89,123.89,121.93,122.44,770000,122.44
-1938-03-10,125.67,126.35,124.52,124.71,460000,124.71
-1938-03-09,125.33,126.83,124.57,125.67,560000,125.67
-1938-03-08,125.38,125.85,122.81,125.33,740000,125.33
-1938-03-07,127.63,127.63,125.19,125.38,620000,125.38
-1938-03-04,128.22,129.57,127.37,127.78,490000,127.78
-1938-03-03,128.75,128.75,127.39,128.22,470000,128.22
-1938-03-02,130.47,130.68,129.19,129.38,410000,129.38
-1938-03-01,129.64,131.03,128.84,130.47,530000,130.47
-1938-02-28,130.89,130.89,128.63,129.64,560000,129.64
-1938-02-25,130.85,132.66,129.85,131.58,900000,131.58
-1938-02-24,132.05,132.05,130.47,130.85,720000,130.85
-1938-02-23,130.69,132.86,130.69,132.41,1300000,132.41
-1938-02-21,127.60,130.19,127.60,129.49,760000,129.49
-1938-02-18,127.59,128.74,125.61,126.29,770000,126.29
-1938-02-17,125.03,128.35,125.03,127.59,860000,127.59
-1938-02-16,124.93,125.35,123.39,124.90,470000,124.90
-1938-02-15,125.97,127.00,124.60,124.93,520000,124.93
-1938-02-14,125.04,126.44,125.04,125.97,400000,125.97
-1938-02-11,125.54,126.53,124.45,124.94,390000,124.94
-1938-02-10,125.00,127.23,124.56,125.54,630000,125.54
-1938-02-09,125.52,126.98,124.65,125.00,750000,125.00
-1938-02-08,122.39,125.76,122.39,125.52,770000,125.52
-1938-02-07,122.88,123.15,120.88,121.39,510000,121.39
-1938-02-04,118.49,120.91,117.13,120.52,810000,120.52
-1938-02-03,121.49,121.49,117.78,118.49,1090000,118.49
-1938-02-02,123.97,125.00,122.74,123.06,580000,123.06
-1938-02-01,122.69,124.71,122.69,123.97,690000,123.97
-1938-01-31,120.14,122.28,120.09,121.87,760000,121.87
-1938-01-28,121.57,122.32,118.94,120.66,1190000,120.66
-1938-01-27,123.23,124.54,120.44,121.57,1210000,121.57
-1938-01-26,126.10,126.10,121.86,123.23,1620000,123.23
-1938-01-25,129.47,129.47,127.97,128.33,540000,128.33
-1938-01-24,130.00,130.52,129.13,129.89,540000,129.89
-1938-01-21,132.33,133.23,130.56,130.69,790000,130.69
-1938-01-20,130.39,132.54,130.39,132.33,820000,132.33
-1938-01-19,131.53,131.68,128.68,130.09,1000000,130.09
-1938-01-18,132.49,132.98,130.88,131.53,780000,131.53
-1938-01-17,134.31,134.70,132.19,132.49,930000,132.49
-1938-01-14,131.60,132.37,130.29,131.84,850000,131.84
-1938-01-13,133.22,133.40,131.27,131.60,970000,131.60
-1938-01-12,134.35,134.95,132.94,133.22,1210000,133.22
-1938-01-11,133.55,134.63,132.36,134.35,1510000,134.35
-1938-01-10,130.84,134.27,130.81,133.55,1830000,133.55
-1938-01-07,128.97,129.51,127.30,128.21,1050000,128.21
-1938-01-06,125.38,129.23,125.38,128.97,1210000,128.97
-1938-01-05,124.61,127.27,124.17,124.66,1150000,124.66
-1938-01-04,121.69,124.96,121.69,124.61,940000,124.61
-1938-01-03,120.85,123.07,119.60,120.57,920000,120.57
-1937-12-31,121.49,121.49,119.65,120.85,780000,120.85
-1937-12-30,120.71,122.63,120.71,121.56,910000,121.56
-1937-12-29,118.93,121.00,117.71,120.15,2460000,120.15
-1937-12-28,122.51,122.51,118.31,118.93,2380000,118.93
-1937-12-27,126.59,126.59,122.96,123.45,1360000,123.45
-1937-12-24,127.63,128.60,126.85,127.36,840000,127.36
-1937-12-23,128.53,128.53,126.50,127.63,1060000,127.63
-1937-12-22,129.98,130.52,127.99,128.55,1160000,128.55
-1937-12-21,129.08,130.76,128.60,129.98,1280000,129.98
-1937-12-20,127.29,130.38,127.29,129.08,1400000,129.08
-1937-12-17,125.75,126.29,124.44,124.98,790000,124.98
-1937-12-16,124.52,126.92,124.52,125.75,1030000,125.75
-1937-12-15,123.50,125.63,123.33,124.19,930000,124.19
-1937-12-14,122.83,124.25,121.85,123.50,900000,123.50
-1937-12-13,125.86,125.86,122.18,122.83,1020000,122.83
-1937-12-10,128.15,128.27,125.49,126.72,1080000,126.72
-1937-12-09,129.80,130.37,127.62,128.15,1080000,128.15
-1937-12-08,128.31,131.15,128.22,129.80,1520000,129.80
-1937-12-07,126.21,128.56,124.85,128.31,970000,128.31
-1937-12-06,127.79,128.36,125.76,126.21,840000,126.21
-1937-12-03,125.52,129.40,125.52,127.55,1560000,127.55
-1937-12-02,122.11,125.38,120.21,125.14,940000,125.14
-1937-12-01,123.48,124.09,121.41,122.11,700000,122.11
-1937-11-30,121.58,125.43,121.49,123.48,1150000,123.48
-1937-11-29,123.39,123.39,120.37,121.58,1150000,121.58
-1937-11-26,114.37,118.78,114.37,118.26,1180000,118.26
-1937-11-24,115.78,116.17,112.72,113.64,990000,113.64
-1937-11-23,114.19,117.08,112.54,115.78,1640000,115.78
-1937-11-22,119.28,119.28,113.77,114.19,1520000,114.19
-1937-11-19,124.32,124.32,117.98,118.13,1890000,118.13
-1937-11-18,127.54,127.73,124.35,125.48,900000,125.48
-1937-11-17,127.98,129.94,127.02,127.54,760000,127.54
-1937-11-16,129.22,129.63,125.34,127.98,1270000,127.98
-1937-11-15,133.05,134.36,129.08,129.22,1450000,129.22
-1937-11-12,132.16,135.70,131.64,133.09,1880000,133.09
-1937-11-10,128.63,132.59,128.63,132.16,1920000,132.16
-1937-11-09,124.07,127.11,124.07,126.16,1050000,126.16
-1937-11-08,124.93,124.93,121.61,123.98,1380000,123.98
-1937-11-05,128.84,132.31,128.35,128.92,1250000,128.92
-1937-11-04,130.14,130.17,126.67,128.84,1470000,128.84
-1937-11-03,135.49,135.49,129.56,130.14,1740000,130.14
-1937-11-01,137.01,137.01,135.00,135.94,1030000,135.94
-1937-10-29,136.46,141.22,136.46,138.48,2800000,138.48
-1937-10-28,132.58,138.31,132.58,135.22,2460000,135.22
-1937-10-27,132.78,134.01,130.48,132.26,1060000,132.26
-1937-10-26,134.43,136.79,131.77,132.78,1820000,132.78
-1937-10-25,127.15,135.12,124.56,134.43,2340000,134.43
-1937-10-22,135.48,135.66,131.74,132.26,2110000,132.26
-1937-10-21,134.56,137.82,132.09,135.48,3640000,135.48
-1937-10-20,126.87,135.48,126.87,134.56,4340000,134.56
-1937-10-19,125.73,127.61,115.84,126.85,7290000,126.85
-1937-10-18,136.30,137.00,125.14,125.73,3230000,125.73
-1937-10-15,136.54,138.14,133.95,135.48,2540000,135.48
-1937-10-14,138.20,140.88,136.09,136.54,1680000,136.54
-1937-10-13,138.79,140.94,134.79,138.20,2570000,138.20
-1937-10-11,143.66,143.66,137.71,138.79,1750000,138.79
-1937-10-08,146.59,148.26,143.00,144.03,1150000,144.03
-1937-10-07,147.18,150.47,145.76,146.59,1190000,146.59
-1937-10-06,144.08,147.62,141.63,147.18,1790000,147.18
-1937-10-05,149.97,149.97,143.01,144.08,1680000,144.08
-1937-10-04,154.08,154.63,151.84,152.19,630000,152.19
-1937-10-01,154.57,155.11,152.50,153.89,680000,153.89
-1937-09-30,154.70,157.12,153.97,154.57,1050000,154.57
-1937-09-29,153.16,155.24,150.09,154.70,1350000,154.70
-1937-09-28,152.03,155.22,151.41,153.16,1310000,153.16
-1937-09-27,147.47,152.49,146.25,152.03,2210000,152.03
-1937-09-24,151.58,151.58,146.22,147.38,2480000,147.38
-1937-09-23,157.45,157.51,153.79,153.98,890000,153.98
-1937-09-22,156.56,158.89,156.55,157.45,740000,157.45
-1937-09-21,155.96,159.26,155.96,156.56,980000,156.56
-1937-09-20,156.92,156.92,152.36,155.56,1550000,155.56
-1937-09-17,164.19,164.19,161.59,162.15,810000,162.15
-1937-09-16,162.85,165.37,162.29,164.75,890000,164.75
-1937-09-15,162.90,165.16,161.26,162.85,1140000,162.85
-1937-09-14,160.00,164.37,160.00,162.90,1510000,162.90
-1937-09-13,159.96,163.12,154.94,158.00,2560000,158.00
-1937-09-10,166.36,166.87,157.35,157.98,2320000,157.98
-1937-09-09,164.88,168.06,164.88,166.36,1410000,166.36
-1937-09-08,164.39,166.06,162.17,163.37,2260000,163.37
-1937-09-07,170.29,170.29,163.18,164.39,1870000,164.39
-1937-09-03,171.82,174.03,171.82,172.17,690000,172.17
-1937-09-02,172.71,172.71,169.75,170.84,1200000,170.84
-1937-09-01,176.11,176.11,172.89,173.08,820000,173.08
-1937-08-31,177.88,179.10,177.29,177.41,500000,177.41
-1937-08-30,176.10,178.26,176.10,177.88,460000,177.88
-1937-08-27,178.52,179.23,175.09,175.91,890000,175.91
-1937-08-26,180.71,180.71,177.57,178.52,970000,178.52
-1937-08-25,182.39,183.00,181.39,181.70,500000,181.70
-1937-08-24,181.88,182.87,180.80,182.39,560000,182.39
-1937-08-23,183.74,184.20,181.31,181.88,580000,181.88
-1937-08-20,185.28,185.28,182.30,182.95,800000,182.95
-1937-08-19,186.97,186.97,184.75,185.28,760000,185.28
-1937-08-18,188.68,189.10,187.30,187.39,700000,187.39
-1937-08-17,189.18,189.18,188.12,188.68,660000,188.68
-1937-08-16,189.94,189.94,188.60,189.34,620000,189.34
-1937-08-13,187.62,189.76,187.35,189.29,1040000,189.29
-1937-08-12,186.72,188.30,186.39,187.62,790000,187.62
-1937-08-11,186.98,187.31,185.93,186.72,570000,186.72
-1937-08-10,186.75,187.67,186.23,186.98,690000,186.98
-1937-08-09,186.41,187.33,186.06,186.75,750000,186.75
-1937-08-06,186.09,186.56,185.16,185.43,680000,185.43
-1937-08-05,186.80,187.22,185.76,186.09,800000,186.09
-1937-08-04,185.91,187.31,185.38,186.80,900000,186.80
-1937-08-03,186.91,187.14,185.43,185.91,900000,185.91
-1937-08-02,185.61,187.28,185.35,186.91,790000,186.91
-1937-07-30,183.01,184.66,182.92,184.01,620000,184.01
-1937-07-29,182.57,183.61,182.07,183.01,610000,183.01
-1937-07-28,184.24,184.54,182.17,182.57,870000,182.57
-1937-07-27,184.42,184.73,183.43,184.24,740000,184.24
-1937-07-26,184.85,185.15,183.72,184.42,900000,184.42
-1937-07-23,182.96,184.75,182.70,183.78,910000,183.78
-1937-07-22,182.35,184.13,182.14,182.96,960000,182.96
-1937-07-21,183.32,183.94,181.87,182.35,980000,182.35
-1937-07-20,182.06,183.90,182.01,183.32,1200000,183.32
-1937-07-19,180.11,182.39,180.11,182.06,950000,182.06
-1937-07-16,179.71,180.45,178.65,179.53,700000,179.53
-1937-07-15,178.57,180.09,177.78,179.71,740000,179.71
-1937-07-14,178.24,180.17,177.83,178.57,1040000,178.57
-1937-07-13,178.70,179.53,177.50,178.24,850000,178.24
-1937-07-12,176.72,179.16,176.69,178.70,1020000,178.70
-1937-07-09,177.70,178.36,176.65,177.40,850000,177.40
-1937-07-08,177.74,178.38,176.49,177.70,1030000,177.70
-1937-07-07,176.80,178.88,176.25,177.74,1410000,177.74
-1937-07-06,173.18,177.08,173.18,176.80,1410000,176.80
-1937-07-02,170.13,172.49,169.58,172.22,840000,172.22
-1937-07-01,169.32,171.28,169.13,170.13,670000,170.13
-1937-06-30,167.11,170.02,167.00,169.32,690000,169.32
-1937-06-29,166.71,168.10,166.11,167.11,550000,167.11
-1937-06-28,168.45,168.99,166.26,166.71,730000,166.71
-1937-06-25,170.08,170.98,169.10,169.59,580000,169.59
-1937-06-24,169.01,170.46,168.79,170.08,550000,170.08
-1937-06-23,168.22,169.72,168.22,169.01,550000,169.01
-1937-06-22,167.98,169.42,167.59,168.20,530000,168.20
-1937-06-21,168.60,168.79,167.28,167.98,420000,167.98
-1937-06-18,167.74,169.37,167.05,168.79,690000,168.79
-1937-06-17,165.86,167.95,163.31,167.74,1260000,167.74
-1937-06-16,167.40,167.59,165.49,165.86,700000,165.86
-1937-06-15,165.51,168.10,164.69,167.40,930000,167.40
-1937-06-14,168.45,168.45,163.73,165.51,1310000,165.51
-1937-06-11,172.59,172.59,170.33,170.77,720000,170.77
-1937-06-10,173.47,174.06,172.53,172.82,570000,172.82
-1937-06-09,174.33,175.00,173.12,173.47,620000,173.47
-1937-06-08,173.88,174.91,173.25,174.33,600000,174.33
-1937-06-07,175.00,175.40,173.56,173.88,590000,173.88
-1937-06-04,172.82,175.39,172.19,175.14,780000,175.14
-1937-06-03,172.63,173.09,171.56,172.82,550000,172.82
-1937-06-02,172.25,173.73,172.25,172.63,540000,172.63
-1937-06-01,172.69,172.69,170.72,171.59,750000,171.59
-1937-05-28,174.19,175.22,174.04,174.71,560000,174.71
-1937-05-27,173.70,175.03,173.22,174.19,600000,174.19
-1937-05-26,173.79,174.47,172.62,173.70,580000,173.70
-1937-05-25,175.59,176.11,173.30,173.79,840000,173.79
-1937-05-24,175.00,176.25,174.51,175.59,680000,175.59
-1937-05-21,173.59,174.59,173.12,173.83,770000,173.83
-1937-05-20,170.00,173.99,170.00,173.59,1230000,173.59
-1937-05-19,169.97,170.85,169.11,169.75,790000,169.75
-1937-05-18,167.84,170.55,166.20,169.97,1200000,169.97
-1937-05-17,169.60,169.98,167.64,167.84,600000,167.84
-1937-05-14,167.46,169.89,166.58,169.15,1230000,169.15
-1937-05-13,171.43,171.43,166.88,167.46,1770000,167.46
-1937-05-12,172.55,173.72,171.81,172.24,670000,172.24
-1937-05-11,173.04,173.28,171.59,172.55,750000,172.55
-1937-05-10,175.19,175.19,172.78,173.04,780000,173.04
-1937-05-07,175.81,176.91,175.50,175.89,820000,175.89
-1937-05-06,174.67,176.05,174.06,175.81,760000,175.81
-1937-05-05,176.30,176.81,174.41,174.67,770000,174.67
-1937-05-04,175.20,176.69,175.20,176.30,870000,176.30
-1937-05-03,174.42,175.58,174.16,174.59,640000,174.59
-1937-04-30,171.51,174.66,171.51,174.27,1450000,174.27
-1937-04-29,170.13,172.88,169.37,170.52,2030000,170.52
-1937-04-28,173.78,173.78,168.77,170.13,2530000,170.13
-1937-04-27,172.36,175.18,172.36,174.52,1410000,174.52
-1937-04-26,175.33,175.33,171.20,171.97,2020000,171.97
-1937-04-23,181.70,182.60,178.00,178.54,1200000,178.54
-1937-04-22,183.60,184.33,181.28,181.70,1180000,181.70
-1937-04-21,181.44,184.05,181.39,183.60,1250000,183.60
-1937-04-20,180.82,182.63,180.28,181.44,1130000,181.44
-1937-04-19,180.51,181.38,179.76,180.82,820000,180.82
-1937-04-16,181.19,182.27,179.70,180.75,1070000,180.75
-1937-04-15,181.93,182.25,180.69,181.19,940000,181.19
-1937-04-14,182.10,183.34,181.27,181.93,1480000,181.93
-1937-04-13,180.59,183.43,180.59,182.10,1590000,182.10
-1937-04-12,178.26,180.12,176.39,179.74,1130000,179.74
-1937-04-09,178.18,180.38,175.86,178.94,1730000,178.94
-1937-04-08,178.07,179.94,176.72,178.18,1920000,178.18
-1937-04-07,182.13,182.13,177.68,178.07,2290000,178.07
-1937-04-06,184.19,184.66,182.06,182.98,1250000,182.98
-1937-04-05,183.54,185.09,183.39,184.19,980000,184.19
-1937-04-02,184.43,184.43,180.89,182.75,1640000,182.75
-1937-04-01,186.41,186.63,184.37,185.19,1210000,185.19
-1937-03-31,186.77,187.99,185.77,186.41,1660000,186.41
-1937-03-30,184.09,186.93,183.64,186.77,1230000,186.77
-1937-03-29,184.95,185.75,183.79,184.09,870000,184.09
-1937-03-25,184.32,186.11,183.73,184.08,1250000,184.08
-1937-03-24,181.87,184.97,181.63,184.32,1430000,184.32
-1937-03-23,179.93,182.96,179.93,181.87,1600000,181.87
-1937-03-22,182.83,182.83,179.28,179.82,2030000,179.82
-1937-03-19,184.73,185.94,183.72,184.56,1740000,184.56
-1937-03-18,187.52,187.52,183.72,184.73,2280000,184.73
-1937-03-17,189.95,190.52,188.15,188.50,2120000,188.50
-1937-03-16,189.41,191.29,188.88,189.95,1750000,189.95
-1937-03-15,190.58,190.81,188.59,189.41,1770000,189.41
-1937-03-12,192.22,192.27,189.39,191.24,2290000,191.24
-1937-03-11,194.40,195.33,191.77,192.22,2740000,192.22
-1937-03-10,193.29,195.59,192.77,194.40,2820000,194.40
-1937-03-09,192.69,194.89,191.65,193.29,2390000,193.29
-1937-03-08,194.15,195.20,191.53,192.69,3180000,192.69
-1937-03-05,192.17,195.17,192.17,194.14,2830000,194.14
-1937-03-04,192.91,193.95,190.98,191.63,2730000,191.63
-1937-03-03,190.29,193.86,190.29,192.91,3570000,192.91
-1937-03-02,187.68,190.41,187.64,189.91,2300000,189.91
-1937-03-01,187.30,188.48,186.00,187.68,1660000,187.68
-1937-02-26,186.68,187.93,185.82,187.17,1780000,187.17
-1937-02-25,187.35,188.31,186.19,186.68,2230000,186.68
-1937-02-24,186.50,187.88,185.15,187.35,2080000,187.35
-1937-02-23,189.36,189.36,185.96,186.50,2870000,186.50
-1937-02-19,188.07,190.42,187.71,189.37,2730000,189.37
-1937-02-18,187.98,188.90,186.82,188.07,2130000,188.07
-1937-02-17,188.18,189.39,187.30,187.98,2580000,187.98
-1937-02-16,188.39,189.20,187.05,188.18,2220000,188.18
-1937-02-15,189.58,189.58,187.45,188.39,1960000,188.39
-1937-02-11,189.35,191.39,188.69,190.29,2920000,190.29
-1937-02-10,187.68,189.83,187.58,189.35,2920000,189.35
-1937-02-09,187.82,188.79,186.74,187.68,2590000,187.68
-1937-02-08,187.11,188.66,186.68,187.82,2990000,187.82
-1937-02-05,188.39,189.07,184.85,186.01,3320000,186.01
-1937-02-04,188.69,189.64,187.65,188.39,2390000,188.39
-1937-02-03,188.20,189.94,187.48,188.69,2450000,188.69
-1937-02-02,186.61,189.13,186.13,188.20,2430000,188.20
-1937-02-01,185.74,187.77,185.10,186.61,2360000,186.61
-1937-01-29,183.41,185.41,182.34,184.74,1970000,184.74
-1937-01-28,183.97,185.59,182.77,183.41,2340000,183.41
-1937-01-27,183.19,184.32,182.15,183.97,1940000,183.97
-1937-01-26,185.62,185.68,182.64,183.19,2180000,183.19
-1937-01-25,186.69,186.97,185.02,185.62,2220000,185.62
-1937-01-22,186.90,187.80,185.01,186.53,2680000,186.53
-1937-01-21,185.96,187.49,184.98,186.90,2990000,186.90
-1937-01-20,184.10,186.88,184.10,185.96,3270000,185.96
-1937-01-19,184.95,185.16,183.22,184.02,2620000,184.02
-1937-01-18,185.73,185.93,183.74,184.95,2860000,184.95
-1937-01-15,183.71,185.40,183.55,184.53,2900000,184.53
-1937-01-14,183.01,184.66,182.53,183.71,3260000,183.71
-1937-01-13,183.30,184.01,182.25,183.01,3680000,183.01
-1937-01-12,183.26,184.49,182.08,183.30,3570000,183.30
-1937-01-11,182.75,183.82,181.77,183.26,3080000,183.26
-1937-01-08,181.77,183.58,181.36,182.95,3220000,182.95
-1937-01-07,179.32,182.11,179.32,181.77,3060000,181.77
-1937-01-06,179.07,179.90,178.17,178.92,1920000,178.92
-1937-01-05,177.72,179.66,177.64,179.07,1870000,179.07
-1937-01-04,178.39,178.39,176.96,177.72,1510000,177.72
-1936-12-31,180.57,181.77,179.34,179.90,1760000,179.90
-1936-12-30,178.02,181.13,178.02,180.57,2310000,180.57
-1936-12-29,177.12,178.48,176.26,177.60,2280000,177.60
-1936-12-28,178.60,179.52,176.71,177.12,1790000,177.12
-1936-12-24,178.36,179.54,177.75,178.60,1610000,178.60
-1936-12-23,177.30,179.00,176.70,178.36,1870000,178.36
-1936-12-22,176.14,178.20,176.14,177.30,1670000,177.30
-1936-12-21,177.61,178.28,175.31,175.85,1760000,175.85
-1936-12-18,180.78,181.10,179.03,179.42,1910000,179.42
-1936-12-17,181.58,182.18,180.35,180.78,1950000,180.78
-1936-12-16,181.97,182.57,180.87,181.58,1950000,181.58
-1936-12-15,181.87,183.30,181.30,181.97,2480000,181.97
-1936-12-14,180.92,182.67,180.74,181.87,2880000,181.87
-1936-12-11,182.18,182.33,180.76,181.10,2610000,181.10
-1936-12-10,181.16,182.77,180.67,182.18,2440000,182.18
-1936-12-09,180.57,181.77,179.93,181.16,1860000,181.16
-1936-12-08,180.13,181.29,179.95,180.57,1620000,180.57
-1936-12-07,181.05,181.49,179.74,180.13,1680000,180.13
-1936-12-04,181.29,182.34,180.36,180.97,2160000,180.97
-1936-12-03,180.25,181.92,179.90,181.29,2040000,181.29
-1936-12-02,181.89,181.89,179.66,180.25,2320000,180.25
-1936-12-01,183.22,183.59,181.56,182.05,2230000,182.05
-1936-11-30,183.32,184.03,181.87,183.22,2140000,183.22
-1936-11-27,180.91,183.27,180.91,182.81,2280000,182.81
-1936-11-25,181.11,181.49,179.68,180.78,1860000,180.78
-1936-11-24,178.84,181.51,178.84,181.11,1920000,181.11
-1936-11-23,181.78,181.78,177.91,178.62,2160000,178.62
-1936-11-20,182.21,182.35,180.24,180.74,1820000,180.74
-1936-11-19,184.26,184.26,181.63,182.21,2440000,182.21
-1936-11-18,184.90,186.39,183.73,184.44,2920000,184.44
-1936-11-17,182.94,185.55,182.94,184.90,3270000,184.90
-1936-11-16,181.45,183.39,181.00,182.65,2380000,182.65
-1936-11-13,183.15,184.28,181.39,182.24,2480000,182.24
-1936-11-12,184.01,185.52,182.26,183.15,2580000,183.15
-1936-11-10,183.65,185.24,182.82,184.01,2700000,184.01
-1936-11-09,183.38,184.77,182.39,183.65,3140000,183.65
-1936-11-06,182.25,183.53,180.68,181.60,2720000,181.60
-1936-11-05,180.66,183.31,180.57,182.25,3620000,182.25
-1936-11-04,177.00,181.15,177.00,180.66,3290000,180.66
-1936-11-02,177.19,177.74,175.35,176.67,1600000,176.67
-1936-10-30,176.31,178.09,176.20,177.15,1680000,177.15
-1936-10-29,174.84,176.60,174.61,176.31,1710000,176.31
-1936-10-28,174.47,176.61,174.47,174.84,1630000,174.84
-1936-10-27,172.89,174.90,172.89,174.36,1310000,174.36
-1936-10-26,174.74,174.74,172.16,172.30,1480000,172.30
-1936-10-23,174.90,176.23,174.64,175.60,1510000,175.60
-1936-10-22,176.70,177.01,174.50,174.90,1980000,174.90
-1936-10-21,176.78,177.63,175.81,176.70,1630000,176.70
-1936-10-20,177.42,177.82,175.98,176.78,1670000,176.78
-1936-10-19,177.63,178.44,176.66,177.42,1890000,177.42
-1936-10-16,175.33,177.31,175.33,176.66,2050000,176.66
-1936-10-15,175.57,176.32,174.13,175.22,1790000,175.22
-1936-10-14,176.29,176.79,175.03,175.57,1640000,175.57
-1936-10-13,176.05,177.68,175.87,176.29,2070000,176.29
-1936-10-09,174.93,176.45,174.23,175.19,2240000,175.19
-1936-10-08,174.59,175.49,173.41,174.93,2230000,174.93
-1936-10-07,174.42,175.92,173.94,174.59,3030000,174.59
-1936-10-06,172.93,174.82,172.93,174.42,2260000,174.42
-1936-10-05,172.44,174.04,172.04,172.81,2080000,172.81
-1936-10-02,168.63,170.94,168.63,170.76,1930000,170.76
-1936-10-01,167.82,168.83,167.54,168.26,1100000,168.26
-1936-09-30,168.48,169.55,167.47,167.82,1350000,167.82
-1936-09-29,168.79,169.85,168.01,168.48,1380000,168.48
-1936-09-28,168.07,169.62,167.72,168.79,1450000,168.79
-1936-09-25,169.03,169.03,165.91,166.36,1160000,166.36
-1936-09-24,169.01,169.79,168.10,169.14,1190000,169.14
-1936-09-23,169.47,170.72,168.68,169.01,1480000,169.01
-1936-09-22,168.90,170.47,168.37,169.47,1550000,169.47
-1936-09-21,168.93,170.25,168.34,168.90,1770000,168.90
-1936-09-18,166.25,168.36,166.10,167.76,1270000,167.76
-1936-09-17,165.16,166.51,164.82,166.25,770000,166.25
-1936-09-16,166.44,166.75,164.97,165.16,1040000,165.16
-1936-09-15,166.86,167.14,165.41,166.44,1130000,166.44
-1936-09-14,167.98,167.98,166.11,166.86,1010000,166.86
-1936-09-11,169.00,169.38,167.59,168.59,1400000,168.59
-1936-09-10,168.50,169.59,168.05,169.00,1550000,169.00
-1936-09-09,169.55,169.73,168.07,168.50,1570000,168.50
-1936-09-08,168.32,170.02,168.32,169.55,1720000,169.55
-1936-09-04,166.24,167.62,166.01,167.04,1180000,167.04
-1936-09-03,166.65,167.25,165.64,166.24,1050000,166.24
-1936-09-02,166.35,167.89,166.15,166.65,1350000,166.65
-1936-09-01,166.29,167.21,165.24,166.35,1140000,166.35
-1936-08-31,166.91,167.25,165.84,166.29,1150000,166.29
-1936-08-28,166.77,168.02,166.31,166.78,1380000,166.78
-1936-08-27,163.32,166.94,163.21,166.77,1340000,166.77
-1936-08-26,164.34,165.00,162.98,163.32,910000,163.32
-1936-08-25,163.78,165.23,163.60,164.34,800000,164.34
-1936-08-24,162.90,164.64,162.90,163.78,800000,163.78
-1936-08-21,164.69,164.69,160.52,160.80,1480000,160.80
-1936-08-20,166.04,166.70,165.23,165.59,960000,165.59
-1936-08-19,165.42,166.87,165.26,166.04,1010000,166.04
-1936-08-18,165.38,166.37,164.89,165.42,790000,165.42
-1936-08-17,165.86,167.01,164.66,165.38,830000,165.38
-1936-08-14,167.64,167.80,165.40,165.75,1070000,165.75
-1936-08-13,169.05,169.59,167.30,167.64,1400000,167.64
-1936-08-12,167.86,169.63,167.50,169.05,1260000,169.05
-1936-08-11,168.80,169.08,167.20,167.86,1100000,167.86
-1936-08-10,169.10,170.15,168.15,168.80,1340000,168.80
-1936-08-07,165.71,168.63,165.34,168.01,1670000,168.01
-1936-08-06,165.07,166.24,164.17,165.71,1170000,165.71
-1936-08-05,165.41,166.57,163.91,165.07,1280000,165.07
-1936-08-04,165.32,165.91,164.41,165.41,1050000,165.41
-1936-08-03,165.42,166.53,164.63,165.32,1010000,165.32
-1936-07-31,165.98,167.27,164.32,164.86,1160000,164.86
-1936-07-30,165.67,167.05,165.13,165.98,1510000,165.98
-1936-07-29,167.01,167.83,165.13,165.67,1950000,165.67
-1936-07-28,166.92,168.23,165.98,167.01,1900000,167.01
-1936-07-27,165.56,167.63,165.51,166.92,1830000,166.92
-1936-07-24,164.61,165.31,164.00,164.37,1320000,164.37
-1936-07-23,164.49,165.06,163.46,164.61,1340000,164.61
-1936-07-22,165.23,166.06,163.99,164.49,1450000,164.49
-1936-07-21,164.43,165.81,163.75,165.23,1590000,165.23
-1936-07-20,164.42,165.48,163.84,164.43,1420000,164.43
-1936-07-17,163.64,165.07,163.02,163.55,1560000,163.55
-1936-07-16,163.24,164.38,162.27,163.64,1480000,163.64
-1936-07-15,162.80,164.42,162.28,163.24,1980000,163.24
-1936-07-14,161.35,163.22,160.99,162.80,1660000,162.80
-1936-07-13,160.72,162.14,160.33,161.35,1440000,161.35
-1936-07-10,158.07,160.67,158.07,160.07,1690000,160.07
-1936-07-09,156.20,158.17,156.05,157.71,1290000,157.71
-1936-07-08,155.60,156.76,154.85,156.20,870000,156.20
-1936-07-07,156.87,156.87,154.86,155.60,970000,155.60
-1936-07-06,158.11,158.86,156.73,157.11,850000,157.11
-1936-07-03,157.51,159.13,156.93,158.11,1020000,158.11
-1936-07-02,158.38,159.55,156.87,157.51,1070000,157.51
-1936-07-01,157.69,159.16,156.82,158.38,970000,158.38
-1936-06-30,158.01,158.76,157.11,157.69,820000,157.69
-1936-06-29,158.46,159.66,157.58,158.01,770000,158.01
-1936-06-26,158.64,159.54,157.86,158.21,890000,158.21
-1936-06-25,160.66,161.00,158.27,158.64,1340000,158.64
-1936-06-24,158.94,161.15,158.56,160.66,1240000,160.66
-1936-06-23,159.13,160.25,158.24,158.94,970000,158.94
-1936-06-22,157.40,159.66,157.40,159.13,990000,159.13
-1936-06-19,157.38,157.46,156.11,156.53,830000,156.53
-1936-06-18,156.97,158.05,156.54,157.38,940000,157.38
-1936-06-17,156.70,157.96,156.47,156.97,1220000,156.97
-1936-06-16,155.09,156.94,154.88,156.70,1120000,156.70
-1936-06-15,154.64,155.81,154.57,155.09,720000,155.09
-1936-06-12,155.16,155.91,153.55,153.71,1000000,153.71
-1936-06-11,153.02,155.38,152.65,155.16,1090000,155.16
-1936-06-10,152.90,153.87,152.44,153.02,1040000,153.02
-1936-06-09,151.44,153.12,151.44,152.90,880000,152.90
-1936-06-08,150.40,152.01,150.40,151.39,690000,151.39
-1936-06-05,149.39,149.95,148.52,149.26,640000,149.26
-1936-06-04,151.10,151.10,149.22,149.39,770000,149.39
-1936-06-03,151.97,152.38,151.20,151.53,640000,151.53
-1936-06-02,152.84,153.22,151.30,151.97,760000,151.97
-1936-06-01,152.64,154.02,152.62,152.84,790000,152.84
-1936-05-29,151.77,152.92,151.53,152.64,740000,152.64
-1936-05-28,152.57,152.91,151.49,151.77,760000,151.77
-1936-05-27,152.26,153.57,151.44,152.57,1220000,152.57
-1936-05-26,150.83,152.48,150.48,152.26,1140000,152.26
-1936-05-25,150.65,151.62,150.31,150.83,690000,150.83
-1936-05-22,148.80,150.26,148.61,149.58,680000,149.58
-1936-05-21,148.94,150.21,148.46,148.80,670000,148.80
-1936-05-20,147.49,149.28,147.30,148.94,690000,148.94
-1936-05-19,149.56,149.56,147.21,147.49,910000,147.49
-1936-05-18,151.42,152.44,150.09,150.35,990000,150.35
-1936-05-15,151.49,152.43,150.56,151.60,990000,151.60
-1936-05-14,149.00,151.97,149.00,151.49,1390000,151.49
-1936-05-13,146.92,148.38,146.92,147.90,590000,147.90
-1936-05-12,146.85,148.16,146.10,146.70,600000,146.70
-1936-05-11,147.85,148.85,146.44,146.85,680000,146.85
-1936-05-08,147.14,147.33,145.68,146.87,780000,146.87
-1936-05-07,149.73,149.96,146.29,147.14,1010000,147.14
-1936-05-06,148.56,150.52,148.52,149.73,1130000,149.73
-1936-05-05,147.69,149.97,147.69,148.56,1180000,148.56
-1936-05-04,146.41,147.63,144.18,146.96,1070000,146.96
-1936-05-01,145.67,147.86,145.67,147.07,1160000,147.07
-1936-04-30,143.65,146.20,141.53,145.67,2310000,145.67
-1936-04-29,146.75,147.23,143.20,143.65,1790000,143.65
-1936-04-28,147.05,147.79,144.80,146.75,2230000,146.75
-1936-04-27,151.81,151.81,145.96,147.05,2300000,147.05
-1936-04-24,151.08,152.51,149.63,151.54,1660000,151.54
-1936-04-23,154.92,155.16,149.63,151.08,2060000,151.08
-1936-04-22,153.60,155.59,153.60,154.92,1200000,154.92
-1936-04-21,152.40,154.09,151.29,153.36,1880000,153.36
-1936-04-20,156.07,156.73,152.10,152.40,1660000,152.40
-1936-04-17,158.49,159.22,157.32,157.78,1160000,157.78
-1936-04-16,159.61,160.33,157.93,158.49,1150000,158.49
-1936-04-15,158.41,160.27,157.92,159.61,1320000,159.61
-1936-04-14,160.76,161.10,157.51,158.41,1940000,158.41
-1936-04-13,160.48,161.26,159.71,160.76,1450000,160.76
-1936-04-09,160.97,161.44,159.46,160.26,1650000,160.26
-1936-04-08,160.94,162.54,160.34,160.97,1650000,160.97
-1936-04-07,161.99,162.33,160.42,160.94,1580000,160.94
-1936-04-06,161.50,163.07,161.18,161.99,2030000,161.99
-1936-04-03,160.43,161.84,159.80,160.09,1560000,160.09
-1936-04-02,159.12,161.55,159.12,160.43,2190000,160.43
-1936-04-01,157.04,159.42,157.04,158.96,1690000,158.96
-1936-03-31,155.37,157.01,155.06,156.34,1040000,156.34
-1936-03-30,155.54,156.73,155.16,155.37,950000,155.37
-1936-03-27,157.73,157.82,155.01,155.52,1550000,155.52
-1936-03-26,157.88,159.53,157.08,157.73,1870000,157.73
-1936-03-25,156.56,158.74,155.81,157.88,1910000,157.88
-1936-03-24,157.62,158.76,156.23,156.56,1900000,156.56
-1936-03-23,156.42,158.22,156.20,157.62,1680000,157.62
-1936-03-20,157.40,158.81,156.69,157.42,1890000,157.42
-1936-03-19,155.85,158.22,155.85,157.40,2020000,157.40
-1936-03-18,156.34,157.30,155.04,155.82,1750000,155.82
-1936-03-17,153.85,156.73,153.85,156.34,2240000,156.34
-1936-03-16,154.07,154.73,152.14,153.25,1840000,153.25
-1936-03-13,153.13,153.46,149.65,150.42,2660000,150.42
-1936-03-12,156.63,156.63,152.35,153.13,2920000,153.13
-1936-03-11,155.37,157.95,155.37,156.85,2190000,156.85
-1936-03-10,153.50,155.87,153.35,155.37,2320000,155.37
-1936-03-09,156.86,156.86,153.33,153.50,2750000,153.50
-1936-03-06,157.52,159.87,157.27,158.75,2890000,158.75
-1936-03-05,156.70,158.56,156.03,157.52,2590000,157.52
-1936-03-04,156.19,158.24,155.45,156.70,2980000,156.70
-1936-03-03,154.08,156.61,154.08,156.19,2700000,156.19
-1936-03-02,152.15,154.54,151.65,154.08,1980000,154.08
-1936-02-28,152.64,153.94,151.61,152.53,2460000,152.53
-1936-02-27,150.59,153.02,150.59,152.64,2320000,152.64
-1936-02-26,150.78,151.10,149.08,149.81,2040000,149.81
-1936-02-25,152.74,153.25,149.99,150.78,2390000,150.78
-1936-02-24,153.74,153.75,152.00,152.74,2200000,152.74
-1936-02-21,154.43,155.14,153.05,153.74,3010000,153.74
-1936-02-20,153.09,155.14,152.30,154.43,3460000,154.43
-1936-02-19,153.36,155.69,152.54,153.09,4580000,153.09
-1936-02-18,151.40,153.76,151.23,153.36,3530000,153.36
-1936-02-17,152.40,153.57,150.43,151.40,4720000,151.40
-1936-02-14,152.53,153.01,150.86,151.97,2600000,151.97
-1936-02-13,152.25,153.67,151.48,152.53,2920000,152.53
-1936-02-11,151.15,153.16,150.80,152.25,3350000,152.25
-1936-02-10,150.40,151.88,149.72,151.15,2460000,151.15
-1936-02-07,150.86,151.67,149.50,150.17,2570000,150.17
-1936-02-06,150.60,151.97,150.14,150.86,2750000,150.86
-1936-02-05,150.94,151.94,150.07,150.60,2920000,150.60
-1936-02-04,150.62,151.77,149.92,150.94,3010000,150.94
-1936-02-03,149.58,151.05,148.32,150.62,2320000,150.62
-1936-01-31,146.98,150.00,146.79,149.49,3230000,149.49
-1936-01-30,147.71,148.50,146.25,146.98,3010000,146.98
-1936-01-29,146.94,148.50,146.33,147.71,2680000,147.71
-1936-01-28,147.30,147.84,146.38,146.94,2290000,146.94
-1936-01-27,147.01,148.30,146.73,147.30,3100000,147.30
-1936-01-24,146.97,147.91,146.15,146.59,2540000,146.59
-1936-01-23,145.99,147.70,145.80,146.97,2940000,146.97
-1936-01-22,143.79,146.36,143.79,145.99,2150000,145.99
-1936-01-21,144.06,144.29,142.77,143.50,1330000,143.50
-1936-01-20,144.93,145.23,143.60,144.06,1810000,144.06
-1936-01-17,145.92,146.58,144.64,145.81,2350000,145.81
-1936-01-16,145.66,146.73,145.03,145.92,3110000,145.92
-1936-01-15,146.32,147.13,145.02,145.66,4630000,145.66
-1936-01-14,146.52,146.89,145.41,146.32,2790000,146.32
-1936-01-13,146.73,147.45,145.67,146.52,2600000,146.52
-1936-01-10,145.68,148.02,145.68,147.08,3270000,147.08
-1936-01-09,146.16,146.83,144.63,145.66,3000000,145.66
-1936-01-08,144.92,147.29,144.62,146.16,2530000,146.16
-1936-01-07,143.11,145.22,142.05,144.92,3080000,144.92
-1936-01-06,144.08,145.35,141.55,143.11,3730000,143.11
-1936-01-03,144.13,145.28,143.49,144.69,2830000,144.69
-1936-01-02,144.13,145.22,143.34,144.13,2240000,144.13
-1935-12-31,143.00,145.02,142.93,144.13,2440000,144.13
-1935-12-30,141.35,143.37,141.35,143.00,1630000,143.00
-1935-12-27,141.54,142.83,140.67,141.58,2130000,141.58
-1935-12-26,141.53,142.64,140.87,141.54,2340000,141.54
-1935-12-24,140.58,141.88,140.04,141.53,1710000,141.53
-1935-12-23,140.19,141.42,139.75,140.58,1920000,140.58
-1935-12-20,138.94,140.00,138.46,139.50,1410000,139.50
-1935-12-19,139.95,139.95,138.33,138.94,1260000,138.94
-1935-12-18,140.60,141.73,139.71,140.10,1690000,140.10
-1935-12-17,139.11,140.89,138.90,140.60,1390000,140.60
-1935-12-16,140.38,141.28,138.91,139.11,1400000,139.11
-1935-12-13,141.34,142.12,139.56,140.16,1890000,140.16
-1935-12-12,142.84,143.46,140.86,141.34,2140000,141.34
-1935-12-11,142.31,143.90,141.63,142.84,2130000,142.84
-1935-12-10,144.10,144.32,141.61,142.31,2340000,142.31
-1935-12-09,144.47,145.07,143.06,144.10,2510000,144.10
-1935-12-06,143.72,144.78,143.09,143.48,2370000,143.48
-1935-12-05,144.04,145.09,143.12,143.72,2260000,143.72
-1935-12-04,143.58,145.13,143.29,144.04,2960000,144.04
-1935-12-03,140.72,143.71,140.60,143.58,1930000,143.58
-1935-12-02,142.35,142.95,140.38,140.72,1520000,140.72
-1935-11-29,143.38,144.27,141.15,142.34,2170000,142.34
-1935-11-27,142.59,144.30,141.94,143.38,1860000,143.38
-1935-11-26,144.72,145.25,141.80,142.59,2330000,142.59
-1935-11-25,146.12,147.50,143.89,144.72,3370000,144.72
-1935-11-22,147.37,148.10,143.48,144.61,3920000,144.61
-1935-11-21,146.65,147.83,145.96,147.37,3280000,147.37
-1935-11-20,148.44,149.42,145.98,146.65,3820000,146.65
-1935-11-19,147.06,148.81,146.93,148.44,2880000,148.44
-1935-11-18,147.31,148.94,146.35,147.06,3200000,147.06
-1935-11-15,145.59,147.40,145.10,146.32,2940000,146.32
-1935-11-14,143.85,146.39,143.85,145.59,3950000,145.59
-1935-11-13,142.56,143.97,141.60,143.59,2050000,143.59
-1935-11-12,144.36,144.60,142.20,142.56,2140000,142.56
-1935-11-08,143.40,145.40,142.80,144.25,3350000,144.25
-1935-11-07,142.90,145.28,142.15,143.40,2790000,143.40
-1935-11-06,141.19,143.48,141.19,142.90,3080000,142.90
-1935-11-04,141.20,141.78,139.99,141.07,1750000,141.07
-1935-11-01,140.07,141.77,140.07,141.31,2040000,141.31
-1935-10-31,139.35,140.52,138.85,139.74,1810000,139.74
-1935-10-30,140.49,140.56,138.40,139.35,2150000,139.35
-1935-10-29,140.78,141.23,139.49,140.49,1710000,140.49
-1935-10-28,141.47,142.08,139.86,140.78,2110000,140.78
-1935-10-25,139.58,141.89,139.58,140.68,2470000,140.68
-1935-10-24,139.58,140.84,138.41,139.42,2160000,139.42
-1935-10-23,138.77,140.46,138.32,139.58,2760000,139.58
-1935-10-22,138.96,140.08,137.84,138.77,2840000,138.77
-1935-10-21,137.11,139.50,137.11,138.96,2870000,138.96
-1935-10-18,135.57,136.11,134.54,135.13,1450000,135.13
-1935-10-17,135.68,136.76,135.10,135.57,1610000,135.57
-1935-10-16,136.26,137.15,134.83,135.68,2240000,135.68
-1935-10-15,135.03,137.11,134.85,136.26,2570000,136.26
-1935-10-14,133.56,135.25,133.17,135.03,1590000,135.03
-1935-10-11,133.03,134.56,133.03,133.56,2060000,133.56
-1935-10-10,131.14,133.09,131.14,132.99,1860000,132.99
-1935-10-09,130.06,130.81,129.51,130.59,880000,130.59
-1935-10-08,130.77,131.30,129.85,130.06,1180000,130.06
-1935-10-07,130.35,131.35,130.24,130.77,950000,130.77
-1935-10-04,129.05,130.59,128.82,129.76,1420000,129.76
-1935-10-03,128.06,129.41,126.95,129.05,1490000,129.05
-1935-10-02,130.43,130.43,127.56,128.06,2190000,128.06
-1935-10-01,131.92,133.19,131.18,131.51,1420000,131.51
-1935-09-30,131.75,132.60,131.17,131.92,1260000,131.92
-1935-09-27,131.06,132.12,130.74,131.48,1120000,131.48
-1935-09-26,131.52,131.67,129.95,131.06,1090000,131.06
-1935-09-25,131.02,132.45,130.99,131.52,1080000,131.52
-1935-09-24,130.26,131.68,130.26,131.02,1010000,131.02
-1935-09-23,128.97,130.66,128.97,129.55,1010000,129.55
-1935-09-20,130.38,130.38,127.98,128.42,2220000,128.42
-1935-09-19,134.11,134.49,131.10,131.44,1920000,131.44
-1935-09-18,133.11,135.34,133.07,134.11,1940000,134.11
-1935-09-17,132.91,133.78,131.86,133.11,1330000,133.11
-1935-09-16,133.40,133.86,131.91,132.91,1490000,132.91
-1935-09-13,133.33,134.67,132.88,133.52,1730000,133.52
-1935-09-12,134.01,134.72,132.63,133.33,1880000,133.33
-1935-09-11,133.22,135.05,132.90,134.01,2590000,134.01
-1935-09-10,132.48,134.06,131.50,133.22,1980000,133.22
-1935-09-09,131.86,133.36,131.13,132.48,2000000,132.48
-1935-09-06,129.34,131.34,128.94,130.75,2150000,130.75
-1935-09-05,128.46,130.34,128.29,129.34,1890000,129.34
-1935-09-04,127.27,128.70,126.43,128.46,1000000,128.46
-1935-09-03,127.89,128.47,126.81,127.27,900000,127.27
-1935-08-30,126.95,127.70,126.76,127.35,830000,127.35
-1935-08-29,126.61,127.62,126.57,126.95,900000,126.95
-1935-08-28,126.81,127.32,125.65,126.61,1390000,126.61
-1935-08-27,128.99,129.97,126.27,126.81,2160000,126.81
-1935-08-26,127.93,129.53,127.61,128.99,1430000,128.99
-1935-08-23,128.52,129.59,127.82,128.93,1890000,128.93
-1935-08-22,127.66,129.49,127.33,128.52,1670000,128.52
-1935-08-21,126.59,128.25,126.59,127.66,1750000,127.66
-1935-08-20,126.33,126.68,124.97,126.31,1980000,126.31
-1935-08-19,127.96,128.39,126.07,126.33,2070000,126.33
-1935-08-16,127.47,128.03,126.51,127.63,1710000,127.63
-1935-08-15,128.27,128.72,127.07,127.47,1580000,127.47
-1935-08-14,128.09,128.94,127.35,128.27,1950000,128.27
-1935-08-13,128.00,128.85,127.15,128.09,2630000,128.09
-1935-08-12,127.94,128.84,127.44,128.00,2430000,128.00
-1935-08-09,125.98,127.80,125.72,127.27,2190000,127.27
-1935-08-08,125.61,126.59,125.16,125.98,1430000,125.98
-1935-08-07,125.64,126.54,125.18,125.61,1390000,125.61
-1935-08-06,126.07,126.96,125.00,125.64,1770000,125.64
-1935-08-05,125.90,126.62,125.31,126.07,1740000,126.07
-1935-08-02,125.85,126.13,124.28,124.93,1520000,124.93
-1935-08-01,126.23,126.88,125.19,125.85,1890000,125.85
-1935-07-31,125.57,127.04,125.00,126.23,1910000,126.23
-1935-07-30,126.56,126.78,125.03,125.57,1680000,125.57
-1935-07-29,125.27,126.89,125.10,126.56,1750000,126.56
-1935-07-26,123.80,124.45,123.37,124.02,990000,124.02
-1935-07-25,124.60,125.27,123.19,123.80,1330000,123.80
-1935-07-24,124.14,124.93,123.83,124.60,1310000,124.60
-1935-07-23,124.10,125.36,123.58,124.14,1730000,124.14
-1935-07-22,122.69,124.34,122.67,124.10,1370000,124.10
-1935-07-19,123.41,123.88,121.94,122.33,1150000,122.33
-1935-07-18,122.91,124.24,122.60,123.41,1500000,123.41
-1935-07-17,122.34,123.49,122.25,122.91,1360000,122.91
-1935-07-16,121.72,122.56,121.00,122.34,900000,122.34
-1935-07-15,121.88,122.74,121.40,121.72,950000,121.72
-1935-07-12,121.93,122.63,121.29,122.20,1100000,122.20
-1935-07-11,122.69,122.90,121.14,121.93,1000000,121.93
-1935-07-10,122.15,123.14,121.97,122.69,1150000,122.69
-1935-07-09,122.55,123.34,121.74,122.15,1350000,122.15
-1935-07-08,121.02,122.68,120.69,122.55,1310000,122.55
-1935-07-05,119.02,120.75,119.02,120.61,880000,120.61
-1935-07-03,118.69,118.98,117.80,118.81,720000,118.81
-1935-07-02,118.82,119.70,118.32,118.69,1200000,118.69
-1935-07-01,118.21,119.30,117.97,118.82,680000,118.82
-1935-06-28,117.69,118.83,117.69,118.36,760000,118.36
-1935-06-27,117.64,118.50,116.91,117.56,740000,117.56
-1935-06-26,118.73,119.49,117.51,117.64,960000,117.64
-1935-06-25,119.64,119.64,117.85,118.73,1140000,118.73
-1935-06-24,120.75,121.30,119.67,120.04,1120000,120.04
-1935-06-21,117.80,120.04,117.80,119.48,1520000,119.48
-1935-06-20,117.47,117.47,115.85,117.24,1000000,117.24
-1935-06-19,119.32,119.76,117.47,118.12,1630000,118.12
-1935-06-18,118.67,119.71,118.67,119.32,890000,119.32
-1935-06-17,119.17,119.33,118.21,118.67,910000,118.67
-1935-06-14,117.89,119.67,117.64,119.00,1280000,119.00
-1935-06-13,117.14,118.40,116.49,117.89,860000,117.89
-1935-06-12,117.08,118.53,116.27,117.14,1290000,117.14
-1935-06-11,115.89,117.53,115.77,117.08,1150000,117.08
-1935-06-10,114.72,116.12,114.04,115.89,630000,115.89
-1935-06-07,113.54,114.27,113.15,114.01,590000,114.01
-1935-06-06,113.92,114.89,113.27,113.54,680000,113.54
-1935-06-05,113.58,115.08,112.96,113.92,1100000,113.92
-1935-06-04,111.95,113.73,111.95,113.58,870000,113.58
-1935-06-03,110.15,111.84,110.15,111.45,600000,111.45
-1935-05-31,111.85,112.62,110.40,110.64,1120000,110.64
-1935-05-29,113.67,113.67,111.37,111.85,1500000,111.85
-1935-05-28,116.74,117.62,112.99,113.76,2310000,113.76
-1935-05-27,115.90,117.12,115.32,116.74,820000,116.74
-1935-05-24,116.81,117.43,115.91,116.17,1180000,116.17
-1935-05-23,116.24,117.51,116.20,116.81,1290000,116.81
-1935-05-22,115.56,116.69,115.07,116.24,1150000,116.24
-1935-05-21,114.67,116.31,114.57,115.56,1140000,115.56
-1935-05-20,114.58,115.27,114.18,114.67,970000,114.67
-1935-05-17,116.58,117.09,115.28,115.81,1820000,115.81
-1935-05-16,114.67,117.30,114.67,116.58,2420000,116.58
-1935-05-15,114.18,115.11,113.87,114.61,1050000,114.61
-1935-05-14,114.23,115.03,113.71,114.18,1210000,114.18
-1935-05-13,114.08,114.93,113.36,114.23,1130000,114.23
-1935-05-10,113.10,114.50,112.84,113.67,1580000,113.67
-1935-05-09,112.63,113.92,112.11,113.10,1660000,113.10
-1935-05-08,110.18,112.74,110.18,112.63,1400000,112.63
-1935-05-07,110.53,110.68,109.23,109.79,810000,109.79
-1935-05-06,110.83,111.60,110.22,110.53,1030000,110.53
-1935-05-03,109.04,110.93,109.04,110.49,950000,110.49
-1935-05-02,108.71,109.47,107.82,108.84,880000,108.84
-1935-05-01,109.45,110.26,108.52,108.71,820000,108.71
-1935-04-30,109.91,110.61,108.75,109.45,860000,109.45
-1935-04-29,109.68,110.40,108.65,109.91,890000,109.91
-1935-04-26,110.47,111.33,109.23,110.37,1520000,110.37
-1935-04-25,109.45,111.52,108.94,110.47,1640000,110.47
-1935-04-24,110.06,110.75,109.08,109.45,1280000,109.45
-1935-04-23,110.27,110.70,109.56,110.06,1230000,110.06
-1935-04-22,109.76,110.91,109.42,110.27,1380000,110.27
-1935-04-18,105.68,108.33,105.68,107.97,820000,107.97
-1935-04-17,106.33,106.67,105.24,105.43,850000,105.43
-1935-04-16,105.93,106.67,105.44,106.33,740000,106.33
-1935-04-15,105.42,106.44,105.05,105.93,1110000,105.93
-1935-04-12,104.03,104.69,103.59,104.45,840000,104.45
-1935-04-11,104.06,104.59,103.57,104.03,730000,104.03
-1935-04-10,104.32,105.06,103.74,104.06,990000,104.06
-1935-04-09,102.65,104.46,102.58,104.32,860000,104.32
-1935-04-08,103.04,103.40,102.31,102.65,710000,102.65
-1935-04-05,101.35,102.87,101.35,102.53,1210000,102.53
-1935-04-04,100.39,101.38,100.34,101.13,560000,101.13
-1935-04-03,101.00,101.11,99.75,100.39,530000,100.39
-1935-04-02,101.23,101.86,100.84,101.00,530000,101.00
-1935-04-01,100.81,101.59,100.67,101.23,440000,101.23
-1935-03-29,100.59,101.33,100.26,100.78,460000,100.78
-1935-03-28,100.35,101.54,99.69,100.59,610000,100.59
-1935-03-27,98.97,100.72,98.87,100.35,460000,100.35
-1935-03-26,99.50,99.80,98.61,98.97,440000,98.97
-1935-03-25,99.84,99.99,98.63,99.50,460000,99.50
-1935-03-22,99.72,100.88,99.10,100.68,780000,100.68
-1935-03-21,98.29,100.55,98.03,99.72,890000,99.72
-1935-03-20,98.31,99.11,97.75,98.29,490000,98.29
-1935-03-19,97.05,98.61,97.05,98.31,510000,98.31
-1935-03-18,97.62,97.62,95.95,97.01,590000,97.01
-1935-03-15,96.71,98.51,96.47,98.21,770000,98.21
-1935-03-14,98.02,98.50,96.49,96.71,810000,96.71
-1935-03-13,97.66,98.52,96.81,98.02,1080000,98.02
-1935-03-12,99.39,99.62,97.60,97.66,1050000,97.66
-1935-03-11,101.18,101.60,99.24,99.39,800000,99.39
-1935-03-08,101.27,102.37,101.27,101.58,440000,101.58
-1935-03-07,100.22,101.37,100.13,101.17,540000,101.17
-1935-03-06,100.09,101.94,98.77,100.22,1290000,100.22
-1935-03-05,102.29,102.29,100.00,100.09,900000,100.09
-1935-03-04,103.16,103.16,102.24,102.58,420000,102.58
-1935-03-01,102.38,103.59,102.03,103.27,640000,103.27
-1935-02-28,102.55,103.27,102.14,102.38,570000,102.38
-1935-02-27,102.24,102.86,101.27,102.55,930000,102.55
-1935-02-26,103.14,103.60,102.08,102.24,950000,102.24
-1935-02-25,103.25,103.57,102.33,103.14,740000,103.14
-1935-02-21,104.97,105.47,104.28,104.86,700000,104.86
-1935-02-20,105.89,106.25,104.60,104.97,970000,104.97
-1935-02-19,107.17,107.36,105.59,105.89,1100000,105.89
-1935-02-18,104.54,108.29,103.64,107.17,1910000,107.17
-1935-02-15,103.43,105.07,103.43,104.67,730000,104.67
-1935-02-14,102.69,103.31,102.56,103.05,410000,103.05
-1935-02-13,102.42,103.06,102.18,102.69,390000,102.69
-1935-02-11,102.66,102.67,101.65,102.42,360000,102.42
-1935-02-08,101.16,102.58,101.16,102.35,590000,102.35
-1935-02-07,100.23,101.34,100.02,101.00,520000,101.00
-1935-02-06,100.74,100.90,99.95,100.23,560000,100.23
-1935-02-05,101.40,101.40,100.46,100.74,560000,100.74
-1935-02-04,102.17,102.17,101.35,101.56,350000,101.56
-1935-02-01,101.69,102.05,101.10,101.53,490000,101.53
-1935-01-31,101.05,102.12,101.05,101.69,530000,101.69
-1935-01-30,100.69,101.39,100.38,101.00,430000,101.00
-1935-01-29,101.51,101.58,100.24,100.69,580000,100.69
-1935-01-28,102.31,102.31,101.03,101.51,690000,101.51
-1935-01-25,102.44,103.12,102.32,102.86,520000,102.86
-1935-01-24,102.85,102.85,102.01,102.44,440000,102.44
-1935-01-23,102.77,103.43,102.43,102.88,620000,102.88
-1935-01-22,103.35,103.64,102.60,102.77,590000,102.77
-1935-01-21,102.96,103.93,102.57,103.35,690000,103.35
-1935-01-18,101.92,102.63,101.58,102.36,690000,102.36
-1935-01-17,101.54,102.30,101.04,101.92,740000,101.92
-1935-01-16,100.49,101.95,100.40,101.54,670000,101.54
-1935-01-15,102.76,103.20,99.54,100.49,1370000,100.49
-1935-01-14,102.39,103.37,102.39,102.76,550000,102.76
-1935-01-11,104.87,105.49,102.50,103.35,1380000,103.35
-1935-01-10,105.05,105.65,104.41,104.87,780000,104.87
-1935-01-09,105.03,105.68,104.28,105.05,900000,105.05
-1935-01-08,105.88,106.22,104.56,105.03,1190000,105.03
-1935-01-07,105.56,106.71,105.24,105.88,1290000,105.88
-1935-01-04,105.14,105.43,104.18,104.69,970000,104.69
-1935-01-03,104.51,105.63,104.12,105.14,1070000,105.14
-1935-01-02,104.04,104.93,103.05,104.51,880000,104.51
-1934-12-31,103.90,104.46,103.36,104.04,1020000,104.04
-1934-12-28,100.57,103.29,100.57,103.15,1280000,103.15
-1934-12-27,100.35,101.41,99.58,100.26,1630000,100.26
-1934-12-26,100.69,101.32,100.05,100.35,1050000,100.35
-1934-12-24,99.73,101.00,99.52,100.69,810000,100.69
-1934-12-21,99.59,100.38,98.99,99.90,920000,99.90
-1934-12-20,99.78,100.01,98.93,99.59,880000,99.59
-1934-12-19,100.88,100.88,99.40,99.78,980000,99.78
-1934-12-18,100.92,101.37,100.41,101.00,820000,101.00
-1934-12-17,100.84,101.66,100.45,100.92,900000,100.92
-1934-12-14,100.68,101.30,100.34,100.69,940000,100.69
-1934-12-13,100.97,102.02,100.39,100.68,1000000,100.68
-1934-12-12,100.81,101.62,100.52,100.97,790000,100.97
-1934-12-11,102.76,103.58,100.50,100.81,1280000,100.81
-1934-12-10,102.83,103.52,102.18,102.76,850000,102.76
-1934-12-07,103.47,103.90,102.75,103.16,1020000,103.16
-1934-12-06,103.42,104.23,102.91,103.47,1420000,103.47
-1934-12-05,102.69,104.08,102.69,103.42,1640000,103.42
-1934-12-04,101.92,102.93,101.59,102.57,950000,102.57
-1934-12-03,102.77,102.77,101.74,101.92,750000,101.92
-1934-11-30,102.75,103.36,101.94,102.94,800000,102.94
-1934-11-28,102.38,103.47,101.90,102.75,1160000,102.75
-1934-11-27,103.08,103.12,101.80,102.38,1010000,102.38
-1934-11-26,102.40,103.51,102.16,103.08,1410000,103.08
-1934-11-23,100.17,101.99,100.17,101.62,1130000,101.62
-1934-11-22,99.47,100.48,98.93,99.93,770000,99.93
-1934-11-21,99.90,100.43,98.95,99.47,810000,99.47
-1934-11-20,99.89,100.14,98.96,99.90,870000,99.90
-1934-11-19,99.45,100.68,99.24,99.89,980000,99.89
-1934-11-16,99.72,100.08,98.70,99.39,1030000,99.39
-1934-11-15,99.42,100.80,99.34,99.72,1540000,99.72
-1934-11-14,99.19,99.81,98.49,99.42,960000,99.42
-1934-11-13,99.21,99.98,98.49,99.19,1130000,99.19
-1934-11-09,97.26,99.34,96.97,99.02,1230000,99.02
-1934-11-08,97.55,98.31,96.83,97.26,840000,97.26
-1934-11-07,96.06,97.81,95.31,97.55,1110000,97.55
-1934-11-05,94.95,96.17,94.83,96.06,760000,96.06
-1934-11-02,93.83,94.94,93.83,94.42,650000,94.42
-1934-11-01,93.36,93.98,92.79,93.46,540000,93.46
-1934-10-31,93.05,94.04,92.90,93.36,420000,93.36
-1934-10-30,92.59,93.46,92.59,93.05,430000,93.05
-1934-10-29,92.86,93.60,92.37,92.53,430000,92.53
-1934-10-26,93.86,93.86,92.20,93.01,870000,93.01
-1934-10-25,95.60,96.15,94.05,94.19,1030000,94.19
-1934-10-24,94.65,95.71,93.96,95.60,770000,95.60
-1934-10-23,94.78,95.17,94.19,94.65,540000,94.65
-1934-10-22,95.02,95.79,94.65,94.78,570000,94.78
-1934-10-19,95.33,95.33,94.39,94.90,530000,94.90
-1934-10-18,95.29,96.03,94.63,95.34,660000,95.34
-1934-10-17,95.25,96.36,94.83,95.29,660000,95.29
-1934-10-16,94.16,95.81,94.15,95.25,680000,95.25
-1934-10-15,94.90,95.37,94.01,94.16,510000,94.16
-1934-10-11,93.94,96.04,93.94,95.50,1400000,95.50
-1934-10-10,91.78,94.01,91.78,93.75,990000,93.75
-1934-10-09,92.50,93.03,91.31,91.71,770000,91.71
-1934-10-08,92.85,93.21,92.16,92.50,450000,92.50
-1934-10-05,91.74,93.58,91.74,92.96,870000,92.96
-1934-10-04,91.04,91.44,89.84,91.01,610000,91.01
-1934-10-03,90.88,91.82,90.66,91.04,410000,91.04
-1934-10-02,90.41,91.44,90.30,90.88,370000,90.88
-1934-10-01,92.17,92.17,90.14,90.41,620000,90.41
-1934-09-28,93.40,93.52,92.24,92.49,510000,92.49
-1934-09-27,92.44,94.02,92.23,93.40,800000,93.40
-1934-09-26,92.72,93.12,92.05,92.44,800000,92.44
-1934-09-25,90.45,92.79,89.91,92.72,840000,92.72
-1934-09-24,91.08,91.50,89.97,90.45,510000,90.45
-1934-09-21,89.65,91.34,89.65,91.10,710000,91.10
-1934-09-20,89.34,89.93,88.76,89.35,490000,89.35
-1934-09-19,87.91,89.58,87.91,89.34,560000,89.34
-1934-09-18,86.69,87.84,86.57,87.37,530000,87.37
-1934-09-17,87.34,87.41,85.72,86.69,650000,86.69
-1934-09-14,89.25,89.25,86.64,86.83,840000,86.83
-1934-09-13,89.62,90.45,89.12,89.44,420000,89.44
-1934-09-12,89.25,90.14,89.14,89.62,400000,89.62
-1934-09-11,89.27,89.75,88.42,89.25,630000,89.25
-1934-09-10,90.83,91.32,89.04,89.27,700000,89.27
-1934-09-07,91.82,92.52,90.50,90.99,690000,90.99
-1934-09-06,93.65,94.05,91.67,91.82,600000,91.82
-1934-09-05,92.64,93.96,92.64,93.65,480000,93.65
-1934-09-04,92.59,92.59,91.74,92.30,310000,92.30
-1934-08-31,92.76,93.05,92.05,92.86,400000,92.86
-1934-08-30,93.59,93.59,92.01,92.76,650000,92.76
-1934-08-29,94.19,95.59,93.64,93.69,760000,93.69
-1934-08-28,94.46,94.48,93.55,94.19,400000,94.19
-1934-08-27,95.31,95.31,94.25,94.46,530000,94.46
-1934-08-24,94.05,95.55,93.85,95.48,750000,95.48
-1934-08-23,94.32,94.97,93.64,94.05,750000,94.05
-1934-08-22,92.68,94.95,92.68,94.32,1300000,94.32
-1934-08-21,90.87,92.70,90.87,92.57,580000,92.57
-1934-08-20,90.86,91.02,90.08,90.44,280000,90.44
-1934-08-17,91.69,92.25,91.00,91.12,480000,91.12
-1934-08-16,91.08,92.51,91.08,91.69,610000,91.69
-1934-08-15,91.12,91.70,90.66,91.00,580000,91.00
-1934-08-14,91.80,91.98,90.82,91.12,530000,91.12
-1934-08-13,89.79,92.56,89.69,91.80,810000,91.80
-1934-08-10,91.34,91.47,89.39,89.66,770000,89.66
-1934-08-09,88.97,91.80,87.19,91.34,1420000,91.34
-1934-08-08,87.47,89.28,87.16,88.97,690000,88.97
-1934-08-07,88.11,89.10,86.70,87.47,610000,87.47
-1934-08-06,88.43,88.51,86.32,88.11,780000,88.11
-1934-08-03,90.87,91.08,89.82,90.14,470000,90.14
-1934-08-02,90.57,91.12,89.75,90.87,560000,90.87
-1934-08-01,88.55,90.96,88.55,90.57,780000,90.57
-1934-07-31,88.17,88.51,87.17,88.05,360000,88.05
-1934-07-30,88.72,88.96,86.90,88.17,810000,88.17
-1934-07-27,86.64,88.86,86.64,87.84,2210000,87.84
-1934-07-26,91.32,91.32,84.58,85.51,3340000,85.51
-1934-07-25,91.01,92.08,90.09,91.57,1350000,91.57
-1934-07-24,91.98,92.91,90.63,91.01,1600000,91.01
-1934-07-23,94.62,95.17,91.96,91.98,1880000,91.98
-1934-07-20,97.20,97.20,94.43,94.74,1240000,94.74
-1934-07-19,98.26,98.70,96.92,97.24,610000,97.24
-1934-07-18,97.18,98.45,97.18,98.26,490000,98.26
-1934-07-17,97.04,97.75,96.50,96.79,620000,96.79
-1934-07-16,98.51,98.51,96.91,97.04,590000,97.04
-1934-07-13,98.32,99.08,97.66,98.82,530000,98.82
-1934-07-12,98.67,99.01,97.93,98.32,470000,98.32
-1934-07-11,98.12,99.35,98.12,98.67,650000,98.67
-1934-07-10,97.04,98.63,97.02,98.07,650000,98.07
-1934-07-09,97.15,97.54,96.54,97.04,320000,97.04
-1934-07-06,96.56,97.80,96.56,97.32,460000,97.32
-1934-07-05,95.19,96.92,95.19,96.44,440000,96.44
-1934-07-03,94.80,95.13,94.25,94.77,400000,94.77
-1934-07-02,95.71,95.71,94.59,94.80,410000,94.80
-1934-06-29,96.84,96.84,95.59,95.75,440000,95.75
-1934-06-28,96.94,97.88,96.18,97.14,640000,97.14
-1934-06-27,97.33,98.31,96.74,96.94,630000,96.94
-1934-06-26,95.79,97.53,95.46,97.33,620000,97.33
-1934-06-25,96.59,97.03,95.49,95.79,490000,95.79
-1934-06-22,97.50,97.87,95.48,95.93,930000,95.93
-1934-06-21,98.25,98.62,97.39,97.50,530000,97.50
-1934-06-20,99.02,99.10,97.94,98.25,550000,98.25
-1934-06-19,100.42,101.11,98.75,99.02,850000,99.02
-1934-06-18,99.85,100.70,99.32,100.42,610000,100.42
-1934-06-15,97.23,99.29,97.23,98.70,730000,98.70
-1934-06-14,98.49,98.49,96.92,97.15,630000,97.15
-1934-06-13,98.78,99.92,98.32,98.75,880000,98.75
-1934-06-12,97.82,99.60,97.77,98.78,950000,98.78
-1934-06-11,98.70,98.70,97.40,97.82,750000,97.82
-1934-06-08,94.82,98.55,94.82,98.44,1610000,98.44
-1934-06-07,94.77,95.24,94.04,94.72,470000,94.72
-1934-06-06,94.66,95.68,94.27,94.77,670000,94.77
-1934-06-05,92.74,94.94,92.74,94.66,740000,94.66
-1934-06-04,91.84,93.04,91.84,92.73,360000,92.73
-1934-06-01,93.71,93.71,91.70,91.79,630000,91.79
-1934-05-31,94.78,94.78,93.71,94.00,440000,94.00
-1934-05-29,95.56,95.85,94.85,95.32,380000,95.32
-1934-05-28,95.32,96.33,95.32,95.56,620000,95.56
-1934-05-25,93.37,94.96,93.25,94.50,540000,94.50
-1934-05-24,92.86,94.08,92.57,93.37,500000,93.37
-1934-05-23,93.61,93.74,92.23,92.86,660000,92.86
-1934-05-22,95.76,96.29,93.26,93.61,830000,93.61
-1934-05-21,95.13,95.96,94.81,95.76,380000,95.76
-1934-05-18,95.98,96.57,94.62,95.17,910000,95.17
-1934-05-17,92.73,96.17,92.63,95.98,1290000,95.98
-1934-05-16,92.84,93.83,91.95,92.73,720000,92.73
-1934-05-15,91.81,93.65,91.47,92.84,890000,92.84
-1934-05-14,92.22,92.95,89.10,91.81,1680000,91.81
-1934-05-11,93.91,95.19,92.99,93.18,1000000,93.18
-1934-05-10,95.59,95.59,92.16,93.91,2130000,93.91
-1934-05-09,97.16,97.81,95.38,95.71,1030000,95.71
-1934-05-08,95.51,97.73,94.47,97.16,1860000,97.16
-1934-05-07,98.20,98.71,94.30,95.51,2360000,95.51
-1934-05-04,99.02,100.66,99.02,99.29,840000,99.29
-1934-05-03,98.82,100.06,98.36,98.94,1110000,98.94
-1934-05-02,100.62,101.36,98.47,98.82,1340000,98.82
-1934-05-01,100.49,101.20,99.55,100.62,1340000,100.62
-1934-04-30,102.72,102.72,100.31,100.49,1490000,100.49
-1934-04-27,103.56,104.30,103.12,103.65,840000,103.65
-1934-04-26,105.05,105.51,102.95,103.56,1640000,103.56
-1934-04-25,105.31,105.55,104.53,105.05,960000,105.05
-1934-04-24,105.92,106.19,104.70,105.31,1270000,105.31
-1934-04-23,106.34,106.73,105.31,105.92,1110000,105.92
-1934-04-20,105.52,107.00,105.08,106.55,1890000,106.55
-1934-04-19,105.45,106.18,104.34,105.52,1330000,105.52
-1934-04-18,104.58,106.26,104.58,105.45,1540000,105.45
-1934-04-17,103.57,104.82,103.34,104.46,940000,104.46
-1934-04-16,105.04,105.31,102.88,103.57,1290000,103.57
-1934-04-13,104.80,105.72,104.42,104.98,1180000,104.98
-1934-04-12,105.16,105.82,104.30,104.80,1330000,104.80
-1934-04-11,105.05,106.23,104.64,105.16,1550000,105.16
-1934-04-10,103.95,105.51,103.95,105.05,1410000,105.05
-1934-04-09,103.60,104.07,102.92,103.54,850000,103.54
-1934-04-06,103.37,104.30,102.86,103.97,1010000,103.97
-1934-04-05,103.19,104.09,102.47,103.37,1420000,103.37
-1934-04-04,102.74,103.91,102.21,103.19,1560000,103.19
-1934-04-03,101.96,103.00,101.18,102.74,1340000,102.74
-1934-04-02,101.85,102.82,101.41,101.96,1370000,101.96
-1934-03-29,99.18,100.83,99.18,100.31,1020000,100.31
-1934-03-28,98.76,99.84,98.60,99.02,840000,99.02
-1934-03-27,99.32,99.32,97.41,98.76,1590000,98.76
-1934-03-26,100.92,102.67,100.70,100.95,1280000,100.95
-1934-03-23,100.53,100.53,99.47,99.80,760000,99.80
-1934-03-22,99.33,100.94,98.87,100.54,1030000,100.54
-1934-03-21,100.73,100.73,98.45,99.33,1070000,99.33
-1934-03-20,99.68,101.82,98.75,101.01,1540000,101.01
-1934-03-19,101.04,101.04,98.99,99.68,1510000,99.68
-1934-03-16,102.21,103.26,101.46,102.72,1170000,102.72
-1934-03-15,103.54,103.73,101.43,102.21,1340000,102.21
-1934-03-14,104.00,104.69,103.31,103.54,1360000,103.54
-1934-03-13,104.23,104.89,103.54,104.00,1280000,104.00
-1934-03-12,102.77,104.61,102.66,104.23,1260000,104.23
-1934-03-09,103.21,103.91,102.13,102.44,1370000,102.44
-1934-03-08,101.59,103.44,100.78,103.21,1700000,103.21
-1934-03-07,103.84,104.59,101.12,101.59,1730000,101.59
-1934-03-06,104.94,104.94,103.40,103.84,810000,103.84
-1934-03-05,105.56,105.89,103.79,105.02,950000,105.02
-1934-03-02,103.74,105.99,103.74,105.79,1480000,105.79
-1934-03-01,103.46,103.81,101.93,103.18,1240000,103.18
-1934-02-28,103.67,105.37,103.09,103.46,1320000,103.46
-1934-02-27,103.12,104.55,102.63,103.67,1270000,103.67
-1934-02-26,104.49,104.49,102.21,103.12,2190000,103.12
-1934-02-23,108.50,109.36,105.72,106.14,2290000,106.14
-1934-02-21,108.14,109.39,107.55,108.50,1900000,108.50
-1934-02-20,107.53,108.68,107.24,108.14,1220000,108.14
-1934-02-19,109.07,109.57,107.04,107.53,2350000,107.53
-1934-02-16,108.30,109.96,107.60,108.61,2770000,108.61
-1934-02-15,106.92,109.04,106.92,108.30,2980000,108.30
-1934-02-14,106.10,107.21,104.64,106.78,1940000,106.78
-1934-02-13,105.47,107.35,104.78,106.10,2060000,106.10
-1934-02-09,108.45,108.76,104.29,106.09,3340000,106.09
-1934-02-08,107.95,109.09,106.05,108.45,3200000,108.45
-1934-02-07,110.20,110.20,106.53,107.95,4500000,107.95
-1934-02-06,110.74,111.25,108.88,110.24,4330000,110.24
-1934-02-05,109.50,111.93,109.50,110.74,4940000,110.74
-1934-02-02,108.95,109.69,107.67,108.31,2870000,108.31
-1934-02-01,107.94,110.35,107.94,108.95,4710000,108.95
-1934-01-31,108.99,109.17,106.81,107.22,3110000,107.22
-1934-01-30,107.91,110.06,107.91,108.99,4240000,108.99
-1934-01-29,106.11,108.42,106.11,107.90,2780000,107.90
-1934-01-26,106.85,107.93,105.85,106.38,2510000,106.38
-1934-01-25,107.02,107.52,105.44,106.85,2270000,106.85
-1934-01-24,106.62,108.20,106.26,107.02,3370000,107.02
-1934-01-23,105.09,107.00,104.47,106.62,2380000,106.62
-1934-01-22,105.52,106.92,104.34,105.09,2660000,105.09
-1934-01-19,103.46,106.19,103.46,105.60,3540000,105.60
-1934-01-18,103.50,104.48,102.50,103.30,2130000,103.30
-1934-01-17,103.40,104.87,102.38,103.50,2850000,103.50
-1934-01-16,103.19,104.60,102.66,103.40,3440000,103.40
-1934-01-15,99.50,103.48,99.50,103.19,3740000,103.19
-1934-01-12,99.38,99.98,98.24,98.73,1600000,98.73
-1934-01-11,99.77,100.49,98.77,99.38,1700000,99.38
-1934-01-10,97.78,99.99,97.78,99.77,1420000,99.77
-1934-01-09,97.09,98.53,97.09,97.57,870000,97.57
-1934-01-08,96.94,97.93,96.26,96.73,720000,96.73
-1934-01-05,98.78,99.39,96.97,97.23,1060000,97.23
-1934-01-04,99.09,99.13,96.48,98.78,1190000,98.78
-1934-01-03,100.36,100.83,97.75,99.09,1380000,99.09
-1934-01-02,99.90,101.94,99.61,100.36,1270000,100.36
-1933-12-29,99.29,99.73,97.85,98.67,1130000,98.67
-1933-12-28,97.16,100.04,97.16,99.29,1480000,99.29
-1933-12-27,96.30,98.21,95.16,96.80,3080000,96.80
-1933-12-26,97.76,97.76,95.56,96.30,1300000,96.30
-1933-12-22,95.93,99.90,95.93,98.87,2420000,98.87
-1933-12-21,95.28,96.16,94.78,95.50,1020000,95.50
-1933-12-20,97.25,97.96,93.70,95.28,2160000,95.28
-1933-12-19,97.20,97.99,96.30,97.25,1030000,97.25
-1933-12-18,98.06,98.42,95.77,97.20,1340000,97.20
-1933-12-15,101.44,101.67,99.44,99.95,1170000,99.95
-1933-12-14,100.69,102.92,100.58,101.44,1560000,101.44
-1933-12-13,101.64,101.98,99.94,100.69,1330000,100.69
-1933-12-12,101.94,103.03,101.06,101.64,1650000,101.64
-1933-12-11,102.92,103.97,101.63,101.94,2450000,101.94
-1933-12-08,102.04,102.47,100.30,101.04,1330000,101.04
-1933-12-07,101.28,103.01,101.07,102.04,1680000,102.04
-1933-12-06,101.99,102.72,100.70,101.28,1440000,101.28
-1933-12-05,99.20,102.44,99.20,101.99,2020000,101.99
-1933-12-04,99.07,99.41,98.19,98.89,670000,98.89
-1933-12-01,98.41,100.08,98.41,98.89,810000,98.89
-1933-11-29,96.57,98.51,96.57,98.14,750000,98.14
-1933-11-28,95.77,97.79,95.59,96.23,1010000,96.23
-1933-11-27,99.28,99.45,95.32,95.77,1560000,95.77
-1933-11-24,98.59,100.81,98.09,99.52,1420000,99.52
-1933-11-23,100.07,100.29,97.20,98.59,1370000,98.59
-1933-11-22,100.29,101.61,98.80,100.07,1570000,100.07
-1933-11-21,101.28,101.94,99.67,100.29,1800000,100.29
-1933-11-20,98.67,101.83,98.52,101.28,1900000,101.28
-1933-11-17,99.01,100.59,97.54,98.09,2320000,98.09
-1933-11-16,94.36,99.34,94.12,99.01,2580000,99.01
-1933-11-15,95.50,96.35,93.27,94.36,1350000,94.36
-1933-11-14,95.98,98.26,94.73,95.50,2170000,95.50
-1933-11-13,96.10,97.15,95.25,95.98,1090000,95.98
-1933-11-10,96.40,97.21,94.60,95.06,1370000,95.06
-1933-11-09,95.54,98.34,95.46,96.40,2900000,96.40
-1933-11-08,92.50,96.05,91.82,95.54,1800000,95.54
-1933-11-06,93.09,93.14,91.67,92.50,690000,92.50
-1933-11-03,90.54,93.92,89.96,93.60,1500000,93.60
-1933-11-02,89.62,91.38,89.17,90.54,1120000,90.54
-1933-11-01,88.16,89.92,86.83,89.62,1140000,89.62
-1933-10-31,88.43,89.44,86.50,88.16,1130000,88.16
-1933-10-30,92.01,93.99,88.05,88.43,1470000,88.43
-1933-10-27,92.02,94.11,90.83,93.22,1110000,93.22
-1933-10-26,93.54,93.95,91.29,92.02,1220000,92.02
-1933-10-25,91.35,95.23,91.23,93.54,2880000,93.54
-1933-10-24,88.13,91.67,87.10,91.35,2110000,91.35
-1933-10-23,86.25,90.54,86.25,88.13,2130000,88.13
-1933-10-20,84.38,88.41,83.57,86.63,2700000,86.63
-1933-10-19,88.62,88.62,84.26,84.38,2900000,84.38
-1933-10-18,92.67,92.72,88.47,88.95,1730000,88.95
-1933-10-17,90.49,93.47,88.69,92.67,2480000,92.67
-1933-10-16,94.93,94.93,89.35,90.49,2670000,90.49
-1933-10-13,98.77,98.77,95.14,95.36,1270000,95.36
-1933-10-11,98.77,99.94,97.54,98.85,1030000,98.85
-1933-10-10,99.72,100.20,98.05,98.77,1140000,98.77
-1933-10-09,98.20,100.58,98.14,99.72,1250000,99.72
-1933-10-06,98.05,99.18,95.92,97.54,1460000,97.54
-1933-10-05,98.60,99.34,96.95,98.05,1660000,98.05
-1933-10-04,94.89,99.21,94.89,98.60,2140000,98.60
-1933-10-03,92.99,94.43,91.93,93.55,930000,93.55
-1933-10-02,94.82,95.32,92.69,92.99,960000,92.99
-1933-09-29,94.66,97.21,93.94,94.24,1640000,94.24
-1933-09-28,93.18,95.30,92.89,94.66,1440000,94.66
-1933-09-27,96.91,96.91,92.44,93.18,2320000,93.18
-1933-09-26,98.03,100.23,96.84,97.41,1430000,97.41
-1933-09-25,99.34,99.34,96.46,98.03,1310000,98.03
-1933-09-22,97.56,99.93,95.73,99.06,3320000,99.06
-1933-09-21,102.29,102.29,97.15,97.56,3650000,97.56
-1933-09-20,105.71,105.71,102.26,103.99,2420000,103.99
-1933-09-19,105.30,106.25,102.44,105.74,2820000,105.74
-1933-09-18,105.32,107.68,104.36,105.30,2720000,105.30
-1933-09-15,104.66,106.14,102.14,102.63,2450000,102.63
-1933-09-14,103.81,106.53,103.81,104.66,2900000,104.66
-1933-09-13,102.90,104.13,102.90,103.65,740000,103.65
-1933-09-12,103.59,104.90,102.33,102.84,2240000,102.84
-1933-09-11,99.42,103.74,99.26,103.59,1920000,103.59
-1933-09-08,99.20,100.41,98.16,99.58,1300000,99.58
-1933-09-07,100.33,101.12,98.82,99.20,1070000,99.20
-1933-09-06,100.22,100.90,97.74,100.33,1890000,100.33
-1933-09-05,103.34,103.34,99.80,100.22,1250000,100.22
-1933-09-01,102.41,103.89,101.86,103.66,1220000,103.66
-1933-08-31,102.35,103.31,101.48,102.41,1140000,102.41
-1933-08-30,103.59,104.13,100.38,102.35,2170000,102.35
-1933-08-29,104.72,105.39,100.23,103.59,3120000,103.59
-1933-08-28,105.07,105.53,103.02,104.72,2120000,104.72
-1933-08-25,102.84,105.60,102.84,105.07,3330000,105.07
-1933-08-24,100.38,102.77,99.52,101.41,1730000,101.41
-1933-08-23,101.34,102.75,99.58,100.38,2580000,100.38
-1933-08-22,100.17,101.71,99.02,101.34,1960000,101.34
-1933-08-21,98.57,100.86,98.57,100.17,1560000,100.17
-1933-08-18,99.30,100.77,96.81,98.32,2090000,98.32
-1933-08-17,94.44,99.49,93.59,99.30,2470000,99.30
-1933-08-16,96.28,96.28,92.95,94.44,1800000,94.44
-1933-08-15,96.53,97.53,95.72,96.63,910000,96.63
-1933-08-14,97.40,97.40,94.63,96.53,1220000,96.53
-1933-08-11,97.58,98.68,96.28,97.47,1340000,97.47
-1933-08-10,99.06,100.14,96.48,97.58,2820000,97.58
-1933-08-09,96.17,99.39,96.17,99.06,2560000,99.06
-1933-08-08,93.16,96.10,93.16,95.84,1230000,95.84
-1933-08-07,92.62,93.32,91.63,92.55,770000,92.55
-1933-08-04,93.45,93.45,92.03,92.62,500000,92.62
-1933-08-03,94.84,95.86,93.21,94.10,1510000,94.10
-1933-08-02,92.70,95.27,91.97,94.84,1730000,94.84
-1933-08-01,90.77,93.23,89.61,92.70,1780000,92.70
-1933-07-31,94.18,94.18,87.75,90.77,3090000,90.77
-1933-07-28,95.90,95.90,93.75,94.54,1390000,94.54
-1933-07-27,95.05,97.28,94.12,96.03,2460000,96.03
-1933-07-26,92.83,95.50,92.23,95.05,2040000,95.05
-1933-07-25,94.28,96.27,91.77,92.83,3540000,92.83
-1933-07-24,90.63,94.75,90.63,94.28,3420000,94.28
-1933-07-21,96.26,98.69,84.45,88.71,9570000,88.71
-1933-07-20,103.58,105.65,94.76,96.26,8120000,96.26
-1933-07-19,108.67,109.23,102.32,103.58,7450000,103.58
-1933-07-18,108.27,110.53,106.98,108.67,6590000,108.67
-1933-07-17,106.22,110.30,106.22,108.27,6380000,108.27
-1933-07-14,105.51,107.63,103.94,105.04,5230000,105.04
-1933-07-13,104.55,107.77,104.54,105.51,7450000,105.51
-1933-07-12,103.08,105.46,101.87,104.55,5190000,104.55
-1933-07-11,104.08,105.10,101.97,103.08,5240000,103.08
-1933-07-10,105.15,105.87,103.12,104.08,4840000,104.08
-1933-07-07,104.98,107.51,103.23,105.35,6970000,105.35
-1933-07-06,102.73,105.56,101.21,104.98,6540000,104.98
-1933-07-05,103.77,104.70,101.02,102.73,5800000,102.73
-1933-07-03,101.64,104.99,101.64,103.77,6720000,103.77
-1933-06-30,96.99,98.69,95.50,98.14,3630000,98.14
-1933-06-29,97.74,99.23,95.90,96.99,4590000,96.99
-1933-06-28,98.74,100.48,96.69,97.74,5510000,97.74
-1933-06-27,98.49,100.27,98.01,98.74,5640000,98.74
-1933-06-26,95.93,99.10,95.93,98.49,4530000,98.49
-1933-06-23,92.93,95.59,91.93,95.53,3310000,95.53
-1933-06-22,95.91,97.79,91.69,92.93,4370000,92.93
-1933-06-21,95.23,97.34,94.41,95.91,3890000,95.91
-1933-06-20,95.99,98.34,94.57,95.23,5540000,95.23
-1933-06-19,92.86,96.36,92.86,95.99,5480000,95.99
-1933-06-16,88.87,91.11,86.48,89.22,5710000,89.22
-1933-06-15,93.94,93.94,88.17,88.87,4890000,88.87
-1933-06-14,94.79,96.29,91.41,94.06,5550000,94.06
-1933-06-13,96.75,97.92,94.21,94.79,6300000,94.79
-1933-06-12,94.42,97.10,94.16,96.75,5810000,96.75
-1933-06-09,93.52,95.03,91.64,94.29,5310000,94.29
-1933-06-08,92.98,95.15,91.59,93.52,6360000,93.52
-1933-06-07,91.90,94.38,91.04,92.98,6640000,92.98
-1933-06-06,91.89,93.83,90.66,91.90,6220000,91.90
-1933-06-05,90.02,92.37,89.14,91.89,5010000,91.89
-1933-06-02,89.10,92.66,88.97,92.21,6880000,92.21
-1933-06-01,88.11,90.57,87.37,89.10,4750000,89.10
-1933-05-31,90.02,91.05,87.72,88.11,6080000,88.11
-1933-05-29,89.61,91.33,87.87,90.02,6950000,90.02
-1933-05-26,83.73,86.98,83.47,86.42,4350000,86.42
-1933-05-25,84.29,85.48,82.70,83.73,4010000,83.73
-1933-05-24,83.53,85.47,83.53,84.29,4710000,84.29
-1933-05-23,80.56,83.49,80.56,83.06,3140000,83.06
-1933-05-22,80.21,81.08,78.61,79.94,2220000,79.94
-1933-05-19,82.57,83.20,80.65,81.75,3280000,81.75
-1933-05-18,82.64,84.13,80.70,82.57,4110000,82.57
-1933-05-17,81.33,84.18,81.33,82.64,4790000,82.64
-1933-05-16,79.70,82.25,79.54,81.29,3290000,81.29
-1933-05-15,80.85,81.23,79.06,79.70,3150000,79.70
-1933-05-12,82.48,82.75,80.13,82.14,4560000,82.14
-1933-05-11,81.18,83.61,81.18,82.48,6160000,82.48
-1933-05-10,77.95,81.01,77.95,80.78,3820000,80.78
-1933-05-09,76.63,78.03,75.61,77.23,2230000,77.23
-1933-05-08,77.61,79.67,76.01,76.63,3200000,76.63
-1933-05-05,79.16,81.27,78.81,79.78,5000000,79.78
-1933-05-04,77.37,79.80,76.19,79.16,4590000,79.16
-1933-05-03,77.29,78.92,75.69,77.37,4640000,77.37
-1933-05-02,77.79,78.37,75.66,77.29,3900000,77.29
-1933-05-01,77.66,79.98,76.91,77.79,6050000,77.79
-1933-04-28,71.71,73.34,69.78,73.10,2160000,73.10
-1933-04-27,72.64,73.06,70.72,71.71,1880000,71.71
-1933-04-26,72.45,73.58,70.86,72.64,2920000,72.64
-1933-04-25,73.69,73.70,70.77,72.45,3500000,72.45
-1933-04-24,72.32,74.84,72.32,73.69,4810000,73.69
-1933-04-21,72.27,72.80,68.64,69.78,5220000,69.78
-1933-04-20,69.78,75.20,69.78,72.27,7130000,72.27
-1933-04-19,63.56,68.70,63.56,68.31,5090000,68.31
-1933-04-18,61.59,63.31,60.74,62.65,1440000,62.65
-1933-04-17,62.75,62.75,60.93,61.59,1010000,61.59
-1933-04-13,60.35,63.31,60.35,62.69,1660000,62.69
-1933-04-12,61.08,61.08,59.68,60.26,750000,60.26
-1933-04-11,62.11,62.65,60.71,61.15,1440000,61.15
-1933-04-10,59.98,62.23,59.98,62.11,1760000,62.11
-1933-04-07,58.80,60.06,58.18,58.78,950000,58.78
-1933-04-06,57.73,59.56,57.73,58.80,1230000,58.80
-1933-04-05,56.53,58.69,56.53,57.50,1150000,57.50
-1933-04-04,55.69,56.61,55.00,56.09,720000,56.09
-1933-04-03,55.66,56.62,55.26,55.69,600000,55.69
-1933-03-31,56.49,57.05,54.94,55.40,880000,55.40
-1933-03-30,56.81,57.17,56.10,56.49,620000,56.49
-1933-03-29,57.90,57.90,56.57,56.81,640000,56.81
-1933-03-28,56.53,58.02,56.12,57.92,600000,57.92
-1933-03-27,57.62,57.62,56.31,56.53,500000,56.53
-1933-03-24,58.06,58.41,56.90,57.93,640000,57.93
-1933-03-23,57.69,59.91,57.69,58.06,980000,58.06
-1933-03-22,57.58,58.48,56.35,56.86,990000,56.86
-1933-03-21,59.85,59.85,57.23,57.58,1210000,57.58
-1933-03-20,60.56,61.33,59.72,59.90,780000,59.90
-1933-03-17,62.54,62.54,60.32,60.73,1730000,60.73
-1933-03-16,62.10,64.56,62.05,62.95,3300000,62.95
-1933-03-15,57.11,62.55,57.11,62.10,3070000,62.10
-1933-03-03,52.54,55.44,51.54,53.84,1410000,53.84
-1933-03-02,52.54,53.01,50.25,52.54,1000000,52.54
-1933-03-01,51.39,52.97,50.81,52.54,790000,52.54
-1933-02-28,50.16,52.12,49.83,51.39,910000,51.39
-1933-02-27,50.93,52.13,49.68,50.16,1250000,50.16
-1933-02-24,51.94,54.13,51.13,53.84,1070000,53.84
-1933-02-23,53.60,53.60,51.65,51.94,1330000,51.94
-1933-02-21,54.26,54.84,53.52,53.99,690000,53.99
-1933-02-20,55.61,55.61,53.82,54.26,860000,54.26
-1933-02-17,55.49,56.78,55.15,56.37,650000,56.37
-1933-02-16,56.63,56.63,54.69,55.49,1080000,55.49
-1933-02-15,56.57,57.59,56.08,56.71,750000,56.71
-1933-02-14,58.19,58.19,56.04,56.57,1540000,56.57
-1933-02-10,60.06,60.06,58.81,59.11,720000,59.11
-1933-02-09,59.17,60.85,59.17,60.09,1080000,60.09
-1933-02-08,58.38,59.21,57.85,58.87,720000,58.87
-1933-02-07,58.07,58.67,57.50,58.38,590000,58.38
-1933-02-06,57.55,58.27,56.65,58.07,670000,58.07
-1933-02-03,58.03,58.46,57.11,58.11,910000,58.11
-1933-02-02,58.90,58.90,57.45,58.03,1250000,58.03
-1933-02-01,60.89,60.89,58.63,59.08,1190000,59.08
-1933-01-31,60.77,61.34,60.48,60.90,660000,60.90
-1933-01-30,60.71,61.05,60.09,60.77,480000,60.77
-1933-01-27,61.73,61.98,60.03,61.43,970000,61.43
-1933-01-26,62.33,62.79,61.61,61.73,810000,61.73
-1933-01-25,61.30,62.66,60.84,62.33,750000,62.33
-1933-01-24,61.46,61.99,60.67,61.30,490000,61.30
-1933-01-23,61.79,62.10,60.55,61.46,660000,61.46
-1933-01-20,61.02,62.68,60.90,61.63,710000,61.63
-1933-01-19,60.37,61.99,60.37,61.02,620000,61.02
-1933-01-18,61.75,62.03,60.07,60.36,690000,60.36
-1933-01-17,61.62,62.09,60.93,61.75,660000,61.75
-1933-01-16,63.09,63.87,61.38,61.62,870000,61.62
-1933-01-13,63.09,63.94,62.12,63.18,830000,63.18
-1933-01-12,63.81,64.80,62.84,63.09,920000,63.09
-1933-01-11,64.35,65.28,63.62,63.81,1620000,63.81
-1933-01-10,62.31,64.57,61.83,64.35,1150000,64.35
-1933-01-09,62.96,63.64,61.90,62.31,930000,62.31
-1933-01-06,62.25,63.85,62.07,62.96,1140000,62.96
-1933-01-05,62.35,63.39,61.58,62.25,1140000,62.25
-1933-01-04,59.54,62.62,59.54,62.35,1090000,62.35
-1933-01-03,59.93,60.17,58.87,59.29,490000,59.29
-1932-12-30,59.12,60.84,58.82,60.26,1050000,60.26
-1932-12-29,57.85,59.38,57.39,59.12,1610000,59.12
-1932-12-28,57.60,59.49,57.10,57.85,1600000,57.85
-1932-12-27,57.98,58.57,56.95,57.60,800000,57.60
-1932-12-23,56.55,57.30,56.07,56.80,930000,56.80
-1932-12-22,58.97,59.29,56.24,56.55,1300000,56.55
-1932-12-21,58.78,59.65,58.27,58.97,730000,58.97
-1932-12-20,60.08,60.19,58.28,58.78,1000000,58.78
-1932-12-19,60.11,61.51,59.82,60.08,920000,60.08
-1932-12-16,61.16,61.40,59.75,60.52,920000,60.52
-1932-12-15,61.93,62.89,60.98,61.16,1180000,61.16
-1932-12-14,60.35,62.11,59.19,61.93,1020000,61.93
-1932-12-13,61.38,61.38,59.98,60.35,730000,60.35
-1932-12-12,61.25,62.50,60.68,61.48,920000,61.48
-1932-12-09,60.05,61.90,59.28,61.58,1180000,61.58
-1932-12-08,59.77,60.51,58.97,60.05,710000,60.05
-1932-12-07,59.58,60.97,59.12,59.77,1190000,59.77
-1932-12-06,56.95,59.96,56.95,59.58,1110000,59.58
-1932-12-05,55.83,58.06,55.58,56.53,730000,56.53
-1932-12-02,57.50,57.50,55.70,55.91,690000,55.91
-1932-12-01,56.35,58.40,56.02,58.02,760000,58.02
-1932-11-30,58.77,59.33,55.94,56.35,1090000,56.35
-1932-11-29,59.17,59.74,58.31,58.77,530000,58.77
-1932-11-28,58.89,59.71,58.10,59.17,540000,59.17
-1932-11-25,59.47,59.54,57.47,58.78,1000000,58.78
-1932-11-23,62.60,62.60,59.10,59.47,1200000,59.47
-1932-11-22,63.65,64.40,62.86,63.16,540000,63.16
-1932-11-21,64.14,64.68,63.23,63.65,610000,63.65
-1932-11-18,62.99,64.73,62.66,62.96,730000,62.96
-1932-11-17,63.24,63.83,62.18,62.99,710000,62.99
-1932-11-16,65.26,65.26,62.56,63.24,950000,63.24
-1932-11-15,65.57,66.17,63.54,65.26,1050000,65.26
-1932-11-14,67.88,67.88,64.87,65.57,1310000,65.57
-1932-11-11,65.54,68.27,65.41,68.03,2630000,68.03
-1932-11-10,61.67,65.61,61.44,65.54,1570000,65.54
-1932-11-09,64.58,65.42,61.02,61.67,1270000,61.67
-1932-11-07,63.22,65.43,63.22,64.58,1610000,64.58
-1932-11-04,58.99,62.07,58.99,61.53,970000,61.53
-1932-11-03,58.53,59.06,57.21,58.28,1020000,58.28
-1932-11-02,60.22,61.13,57.96,58.53,1100000,58.53
-1932-11-01,61.57,61.57,59.86,60.22,520000,60.22
-1932-10-31,62.09,62.19,61.06,61.90,390000,61.90
-1932-10-28,61.86,63.51,61.81,63.09,690000,63.09
-1932-10-27,61.36,62.83,60.77,61.86,720000,61.86
-1932-10-26,60.32,61.73,59.03,61.36,860000,61.36
-1932-10-25,61.03,61.69,59.70,60.32,600000,60.32
-1932-10-24,60.85,61.58,60.07,61.03,550000,61.03
-1932-10-21,63.64,63.64,60.71,61.01,1240000,61.01
-1932-10-20,65.74,66.13,63.92,64.40,1060000,64.40
-1932-10-19,63.49,66.06,63.35,65.74,1300000,65.74
-1932-10-18,62.69,64.82,62.06,63.49,1020000,63.49
-1932-10-17,64.07,64.07,62.21,62.69,770000,62.69
-1932-10-14,60.27,65.45,60.27,63.84,2030000,63.84
-1932-10-13,61.66,62.54,58.84,59.76,1230000,59.76
-1932-10-11,59.07,62.52,59.07,61.66,1750000,61.66
-1932-10-10,61.17,62.57,57.67,58.47,2280000,58.47
-1932-10-07,66.28,66.89,62.16,62.67,2300000,62.67
-1932-10-06,66.07,67.08,64.67,66.28,1940000,66.28
-1932-10-05,70.92,70.92,65.90,66.07,2950000,66.07
-1932-10-04,71.21,72.63,70.45,71.16,1240000,71.16
-1932-10-03,72.09,72.32,69.88,71.21,1000000,71.21
-1932-09-30,71.53,72.00,69.75,71.56,1160000,71.56
-1932-09-29,73.52,74.36,71.24,71.53,1340000,71.53
-1932-09-28,71.49,74.07,71.40,73.52,1380000,73.52
-1932-09-27,71.06,73.42,69.98,71.49,1400000,71.49
-1932-09-26,74.83,75.67,70.41,71.06,2080000,71.06
-1932-09-23,72.71,75.16,72.42,73.92,2200000,73.92
-1932-09-22,75.16,76.01,72.14,72.71,3690000,72.71
-1932-09-21,69.46,75.53,69.46,75.16,4350000,75.16
-1932-09-20,65.06,67.65,64.68,67.49,1250000,67.49
-1932-09-19,66.44,67.40,64.82,65.06,1260000,65.06
-1932-09-16,67.94,69.84,66.11,67.10,1910000,67.10
-1932-09-15,65.88,68.58,64.27,67.94,3140000,67.94
-1932-09-14,69.85,72.41,65.54,65.88,3250000,65.88
-1932-09-13,71.54,71.54,66.38,69.85,5100000,69.85
-1932-09-12,76.54,76.68,70.81,72.33,4050000,72.33
-1932-09-09,77.49,79.91,75.69,76.19,4040000,76.19
-1932-09-08,79.93,81.39,76.92,77.49,5370000,77.49
-1932-09-07,77.28,80.28,76.78,79.93,4150000,79.93
-1932-09-06,78.33,80.36,76.66,77.28,4360000,77.28
-1932-09-02,74.00,77.12,74.00,76.77,3490000,76.77
-1932-09-01,73.16,74.55,71.92,73.67,2420000,73.67
-1932-08-31,74.30,74.44,71.11,73.16,3000000,73.16
-1932-08-30,75.22,76.73,73.59,74.30,3300000,74.30
-1932-08-29,75.61,77.01,74.25,75.22,3930000,75.22
-1932-08-26,73.31,75.41,71.28,74.43,3120000,74.43
-1932-08-25,73.55,75.88,72.54,73.31,4170000,73.31
-1932-08-24,72.13,74.01,70.82,73.55,3690000,73.55
-1932-08-23,70.87,73.80,70.69,72.13,4570000,72.13
-1932-08-22,67.50,71.11,67.50,70.87,3180000,70.87
-1932-08-19,67.93,69.47,66.10,66.84,2170000,66.84
-1932-08-18,67.50,68.52,65.65,67.93,1790000,67.93
-1932-08-17,68.91,70.56,65.62,67.50,2870000,67.50
-1932-08-16,67.16,70.54,67.16,68.91,3610000,68.91
-1932-08-15,63.19,66.72,62.93,66.51,1910000,66.51
-1932-08-12,68.90,69.06,62.45,63.11,3710000,63.11
-1932-08-11,69.39,71.62,66.95,68.90,4400000,68.90
-1932-08-10,67.08,71.34,65.65,69.39,4430000,69.39
-1932-08-09,67.71,69.53,65.36,67.08,3840000,67.08
-1932-08-08,66.56,71.49,64.86,67.71,5460000,67.71
-1932-08-05,59.73,63.42,59.73,62.60,2680000,62.60
-1932-08-04,58.22,62.13,57.90,59.63,3520000,59.63
-1932-08-03,53.16,58.69,52.99,58.22,2400000,58.22
-1932-08-02,54.94,55.57,52.40,53.16,1440000,53.16
-1932-08-01,54.26,56.92,53.59,54.94,2110000,54.94
-1932-07-29,52.61,54.68,51.52,53.89,2100000,53.89
-1932-07-28,51.34,53.84,50.67,52.61,2730000,52.61
-1932-07-27,49.04,51.71,48.18,51.34,1700000,51.34
-1932-07-26,49.78,50.41,48.49,49.04,1500000,49.04
-1932-07-25,48.01,50.23,48.01,49.78,1550000,49.78
-1932-07-22,46.50,48.31,46.35,47.69,1450000,47.69
-1932-07-21,45.43,46.86,45.12,46.50,930000,46.50
-1932-07-20,44.22,45.56,44.22,45.43,630000,45.43
-1932-07-19,44.07,44.51,43.53,43.79,470000,43.79
-1932-07-18,45.29,45.61,43.83,44.07,610000,44.07
-1932-07-15,44.34,45.82,43.74,45.47,810000,45.47
-1932-07-14,44.88,45.85,43.91,44.34,1000000,44.34
-1932-07-13,42.68,45.05,42.35,44.88,980000,44.88
-1932-07-12,42.99,43.65,42.36,42.68,700000,42.68
-1932-07-11,41.63,43.03,40.92,42.99,600000,42.99
-1932-07-08,41.81,42.61,40.56,41.22,720000,41.22
-1932-07-07,44.08,44.26,41.63,41.81,780000,41.81
-1932-07-06,43.47,44.50,42.31,44.08,730000,44.08
-1932-07-05,44.39,44.43,42.53,43.47,610000,43.47
-1932-07-01,42.84,44.63,42.64,44.39,610000,44.39
-1932-06-30,43.66,44.44,42.41,42.84,630000,42.84
-1932-06-29,43.18,44.21,42.54,43.66,630000,43.66
-1932-06-28,42.93,44.30,42.31,43.18,830000,43.18
-1932-06-27,44.76,44.82,42.52,42.93,770000,42.93
-1932-06-24,46.83,47.57,44.55,44.84,770000,44.84
-1932-06-23,46.27,47.47,46.15,46.83,470000,46.83
-1932-06-22,46.58,46.66,45.43,46.27,610000,46.27
-1932-06-21,47.80,48.42,46.47,46.58,500000,46.58
-1932-06-20,47.55,48.66,47.41,47.80,390000,47.80
-1932-06-17,50.34,50.36,47.44,47.56,790000,47.56
-1932-06-16,50.62,51.43,49.73,50.34,850000,50.34
-1932-06-15,49.37,51.43,49.37,50.62,1160000,50.62
-1932-06-14,48.11,49.70,47.59,49.00,760000,49.00
-1932-06-13,48.26,48.97,47.12,48.11,570000,48.11
-1932-06-10,45.32,49.52,45.22,48.94,1270000,48.94
-1932-06-09,45.20,47.55,44.45,45.32,1190000,45.32
-1932-06-08,47.21,47.21,45.01,45.20,990000,45.20
-1932-06-07,49.32,49.74,47.18,47.47,830000,47.47
-1932-06-06,50.63,50.63,48.54,49.32,960000,49.32
-1932-06-03,47.35,50.29,47.35,48.40,1890000,48.40
-1932-06-02,44.93,47.74,43.49,47.25,1870000,47.25
-1932-06-01,44.74,48.60,44.13,44.93,1840000,44.93
-1932-05-31,46.93,46.93,44.27,44.74,1480000,44.74
-1932-05-27,49.94,49.94,47.17,47.47,900000,47.47
-1932-05-26,49.10,50.72,47.02,49.99,1850000,49.99
-1932-05-25,50.79,50.79,48.65,49.10,1300000,49.10
-1932-05-24,52.98,53.20,50.59,50.85,980000,50.85
-1932-05-23,53.04,54.34,52.61,52.98,560000,52.98
-1932-05-20,53.14,55.50,52.97,53.31,770000,53.31
-1932-05-19,52.81,53.88,51.79,53.14,680000,53.14
-1932-05-18,54.04,54.68,52.28,52.81,680000,52.81
-1932-05-17,53.96,55.65,52.16,54.04,930000,54.04
-1932-05-16,52.48,54.63,50.21,53.96,1310000,53.96
-1932-05-13,55.33,55.33,53.23,53.46,870000,53.46
-1932-05-12,57.71,57.71,54.91,55.62,920000,55.62
-1932-05-11,57.68,59.52,57.47,57.83,690000,57.83
-1932-05-10,57.04,58.94,56.68,57.68,740000,57.68
-1932-05-09,58.04,58.74,56.29,57.04,640000,57.04
-1932-05-06,54.58,59.76,54.58,59.01,1630000,59.01
-1932-05-05,54.88,55.74,52.73,54.10,1000000,54.10
-1932-05-04,54.15,55.21,52.33,54.88,1320000,54.88
-1932-05-03,55.37,56.12,53.80,54.15,900000,54.15
-1932-05-02,56.11,56.28,54.20,55.37,780000,55.37
-1932-04-29,57.81,57.81,55.37,55.93,1160000,55.93
-1932-04-28,61.28,61.36,57.98,58.24,930000,58.24
-1932-04-27,59.71,62.15,59.40,61.28,1120000,61.28
-1932-04-26,58.92,61.01,58.51,59.71,790000,59.71
-1932-04-25,59.22,60.51,58.06,58.92,640000,58.92
-1932-04-22,61.39,61.39,58.26,58.88,920000,58.88
-1932-04-21,59.46,62.71,59.04,62.01,1110000,62.01
-1932-04-20,59.75,60.81,58.70,59.46,990000,59.46
-1932-04-19,60.85,61.45,58.91,59.75,1030000,59.75
-1932-04-18,63.21,63.21,60.57,60.85,850000,60.85
-1932-04-15,63.27,66.51,62.21,64.49,1540000,64.49
-1932-04-14,61.18,63.84,59.10,63.27,1720000,63.27
-1932-04-13,62.33,63.74,60.66,61.18,1100000,61.18
-1932-04-12,62.04,64.13,60.62,62.33,1550000,62.33
-1932-04-11,64.48,64.54,60.76,62.04,1700000,62.04
-1932-04-08,65.73,65.73,61.98,62.90,2130000,62.90
-1932-04-07,66.46,68.29,65.23,66.20,1800000,66.20
-1932-04-06,68.07,68.93,65.85,66.46,3000000,66.46
-1932-04-05,70.67,70.67,67.29,68.07,1480000,68.07
-1932-04-04,71.30,71.84,68.32,71.19,1610000,71.19
-1932-04-01,73.28,74.38,71.21,72.18,1530000,72.18
-1932-03-31,77.15,77.80,72.49,73.28,1480000,73.28
-1932-03-30,75.50,77.64,75.08,77.15,1010000,77.15
-1932-03-29,75.09,76.98,74.68,75.50,1110000,75.50
-1932-03-28,75.69,75.79,73.55,75.09,1350000,75.09
-1932-03-24,78.64,79.58,77.49,77.99,840000,77.99
-1932-03-23,79.55,80.08,78.23,78.64,840000,78.64
-1932-03-22,79.90,80.59,77.79,79.55,1080000,79.55
-1932-03-21,78.09,80.19,77.32,79.90,890000,79.90
-1932-03-18,80.59,80.59,77.63,78.82,1410000,78.82
-1932-03-17,79.11,81.55,77.57,80.87,1770000,80.87
-1932-03-16,81.02,81.84,78.76,79.11,1460000,79.11
-1932-03-15,81.12,82.44,79.66,81.02,1470000,81.02
-1932-03-14,84.30,84.30,80.44,81.12,2030000,81.12
-1932-03-11,85.70,85.70,83.26,83.61,1260000,83.61
-1932-03-10,86.94,87.47,85.44,86.25,1050000,86.25
-1932-03-09,88.78,89.87,86.57,86.94,1330000,86.94
-1932-03-08,87.16,89.87,86.90,88.78,1640000,88.78
-1932-03-07,88.49,89.78,86.80,87.16,1580000,87.16
-1932-03-04,86.13,87.87,84.54,86.11,1510000,86.11
-1932-03-03,86.28,88.35,85.47,86.13,1720000,86.13
-1932-03-02,82.10,86.50,82.10,86.28,1760000,86.28
-1932-03-01,81.44,82.20,80.50,81.87,730000,81.87
-1932-02-29,82.02,83.89,80.84,81.44,880000,81.44
-1932-02-26,82.05,83.53,81.37,82.09,890000,82.09
-1932-02-25,82.73,82.92,80.13,82.05,1040000,82.05
-1932-02-24,80.26,83.32,79.57,82.73,1080000,82.73
-1932-02-23,83.59,84.03,79.85,80.26,1280000,80.26
-1932-02-19,85.26,89.84,85.26,85.98,2430000,85.98
-1932-02-18,82.24,85.74,81.45,85.13,1680000,85.13
-1932-02-17,85.75,87.18,81.67,82.24,2190000,82.24
-1932-02-16,82.18,86.51,80.49,85.75,2500000,85.75
-1932-02-15,85.36,85.36,80.88,82.18,1980000,82.18
-1932-02-11,74.27,79.62,74.27,78.60,2560000,78.60
-1932-02-10,72.38,73.98,70.64,71.80,1300000,71.80
-1932-02-09,73.45,74.50,71.85,72.38,1160000,72.38
-1932-02-08,74.45,75.15,72.31,73.45,1150000,73.45
-1932-02-05,77.50,77.50,74.71,75.00,1080000,75.00
-1932-02-04,78.26,78.88,77.15,77.66,680000,77.66
-1932-02-03,77.82,78.96,76.77,78.26,810000,78.26
-1932-02-02,79.63,80.74,77.61,77.82,1120000,77.82
-1932-02-01,76.32,80.62,76.32,79.63,1520000,79.63
-1932-01-29,76.73,77.14,74.19,76.55,1530000,76.55
-1932-01-28,77.82,78.03,75.85,76.73,1120000,76.73
-1932-01-27,79.20,79.20,76.66,77.82,1280000,77.82
-1932-01-26,78.92,80.79,78.92,79.76,760000,79.76
-1932-01-25,77.98,79.94,77.42,78.66,830000,78.66
-1932-01-22,83.42,83.51,78.56,78.81,1560000,78.81
-1932-01-21,83.57,85.03,82.70,83.42,1240000,83.42
-1932-01-20,81.10,83.79,80.45,83.57,1210000,83.57
-1932-01-19,81.45,82.79,80.35,81.10,1090000,81.10
-1932-01-18,84.44,85.32,81.29,81.45,1380000,81.45
-1932-01-15,85.35,86.59,83.24,85.88,1640000,85.88
-1932-01-14,84.70,87.78,84.70,85.35,2650000,85.35
-1932-01-13,79.96,84.67,79.96,84.36,2070000,84.36
-1932-01-12,80.44,82.08,78.84,79.39,1360000,79.39
-1932-01-11,79.98,82.20,77.23,80.44,1800000,80.44
-1932-01-08,78.03,82.11,76.74,81.80,1970000,81.80
-1932-01-07,76.31,80.17,76.11,78.03,2180000,78.03
-1932-01-06,73.02,77.16,73.02,76.31,1840000,76.31
-1932-01-05,71.59,72.78,69.85,71.24,1420000,71.24
-1932-01-04,74.06,74.06,70.91,71.59,1510000,71.59
-1931-12-31,77.14,79.92,76.92,77.90,1510000,77.90
-1931-12-30,75.84,77.86,75.12,77.14,2110000,77.14
-1931-12-29,73.84,77.81,73.54,75.84,2440000,75.84
-1931-12-28,75.84,76.27,72.41,73.84,2000000,73.84
-1931-12-24,76.02,77.45,75.14,75.84,1110000,75.84
-1931-12-23,79.55,80.17,75.42,76.02,1560000,76.02
-1931-12-22,78.08,80.32,77.26,79.55,1400000,79.55
-1931-12-21,80.75,81.76,77.55,78.08,1930000,78.08
-1931-12-18,73.79,81.10,72.62,80.69,3620000,80.69
-1931-12-17,76.33,76.33,71.79,73.79,2940000,73.79
-1931-12-16,78.60,80.00,75.93,76.49,1960000,76.49
-1931-12-15,77.22,79.44,75.50,78.60,2630000,78.60
-1931-12-14,78.93,82.57,76.15,77.22,2890000,77.22
-1931-12-11,82.46,83.11,79.26,79.63,2350000,79.63
-1931-12-10,84.14,84.15,80.75,82.46,2660000,82.46
-1931-12-09,86.50,86.52,82.49,84.14,2260000,84.14
-1931-12-08,90.11,90.98,85.81,86.50,1600000,86.50
-1931-12-07,90.14,92.60,89.16,90.11,1460000,90.11
-1931-12-04,89.70,91.97,85.75,86.76,1920000,86.76
-1931-12-03,87.90,90.59,86.28,89.70,1800000,89.70
-1931-12-02,91.17,93.06,87.39,87.90,1890000,87.90
-1931-12-01,93.38,93.38,87.78,91.17,2030000,91.17
-1931-11-30,90.02,95.77,89.35,93.87,2000000,93.87
-1931-11-27,93.79,93.79,90.65,91.55,1820000,91.55
-1931-11-25,98.54,98.54,93.67,94.15,1500000,94.15
-1931-11-24,96.60,100.10,96.53,98.61,1250000,98.61
-1931-11-23,97.42,98.83,95.00,96.60,1350000,96.60
-1931-11-20,100.99,100.99,96.45,97.96,2040000,97.96
-1931-11-19,101.69,103.81,99.83,101.25,1510000,101.25
-1931-11-18,105.86,105.86,101.21,101.69,1670000,101.69
-1931-11-17,104.76,108.02,103.76,106.16,1460000,106.16
-1931-11-16,106.35,107.86,103.43,104.76,1510000,104.76
-1931-11-13,111.95,112.39,106.71,107.33,1790000,107.33
-1931-11-12,112.01,114.61,110.86,111.95,1440000,111.95
-1931-11-11,113.98,114.63,110.38,112.01,1490000,112.01
-1931-11-10,116.58,116.58,112.24,113.98,1750000,113.98
-1931-11-09,115.60,119.15,114.47,116.79,3050000,116.79
-1931-11-06,108.58,113.28,106.43,112.72,2280000,112.72
-1931-11-05,108.33,110.68,107.45,108.58,1520000,108.58
-1931-11-04,104.50,108.85,103.19,108.33,1480000,108.33
-1931-11-02,105.43,107.76,103.94,104.50,1460000,104.50
-1931-10-30,100.75,104.51,100.75,103.97,1560000,103.97
-1931-10-29,100.52,101.66,98.19,100.66,1340000,100.66
-1931-10-28,104.25,104.50,99.20,100.52,1770000,100.52
-1931-10-27,106.31,106.31,102.43,104.25,1390000,104.25
-1931-10-26,109.36,109.36,105.69,106.37,1190000,106.37
-1931-10-23,105.02,109.17,104.58,108.88,1330000,108.88
-1931-10-22,108.39,108.58,104.09,105.02,1390000,105.02
-1931-10-21,108.65,109.69,103.86,108.39,2240000,108.39
-1931-10-20,104.69,109.59,104.69,108.65,2510000,108.65
-1931-10-19,102.28,104.19,100.87,103.45,860000,103.45
-1931-10-16,98.71,103.19,98.24,102.49,1420000,102.49
-1931-10-15,97.45,102.67,97.45,98.71,1380000,98.71
-1931-10-14,100.24,102.50,96.01,97.27,1640000,97.27
-1931-10-13,105.37,105.37,99.74,100.24,1250000,100.24
-1931-10-09,105.79,108.98,102.79,104.46,3220000,104.46
-1931-10-08,98.19,106.43,98.19,105.79,2870000,105.79
-1931-10-07,99.34,103.84,96.79,97.32,2820000,97.32
-1931-10-06,87.51,100.49,87.51,99.34,4310000,99.34
-1931-10-05,92.14,92.14,85.51,86.48,3190000,86.48
-1931-10-02,95.66,100.03,93.64,96.88,2530000,96.88
-1931-10-01,96.61,98.51,92.88,95.66,3640000,95.66
-1931-09-30,99.80,102.39,95.76,96.61,3210000,96.61
-1931-09-29,104.39,104.64,99.02,99.80,2900000,99.80
-1931-09-28,107.36,108.80,103.58,104.39,1490000,104.39
-1931-09-25,107.79,112.64,104.73,109.86,2850000,109.86
-1931-09-24,115.99,116.95,106.64,107.79,3050000,107.79
-1931-09-23,110.77,117.75,110.77,115.99,2930000,115.99
-1931-09-22,110.83,112.65,108.12,109.40,2050000,109.40
-1931-09-21,111.74,114.59,104.79,110.83,4400000,110.83
-1931-09-18,121.27,121.27,114.47,115.08,2900000,115.08
-1931-09-17,119.26,123.28,117.29,121.76,2420000,121.76
-1931-09-16,120.59,123.10,118.41,119.26,1980000,119.26
-1931-09-15,121.30,123.03,118.70,120.59,2170000,120.59
-1931-09-14,123.00,123.00,119.12,121.30,2450000,121.30
-1931-09-11,127.30,129.47,124.50,128.23,1970000,128.23
-1931-09-10,128.43,130.45,126.04,127.30,1510000,127.30
-1931-09-09,129.19,130.67,126.36,128.43,2020000,128.43
-1931-09-08,131.57,131.57,127.91,129.19,2040000,129.19
-1931-09-04,133.14,133.82,131.44,132.62,1200000,132.62
-1931-09-03,136.54,136.54,132.21,133.14,2130000,133.14
-1931-09-02,140.08,140.08,136.62,137.31,960000,137.31
-1931-09-01,139.41,140.54,138.51,140.13,540000,140.13
-1931-08-31,142.07,142.07,138.96,139.41,740000,139.41
-1931-08-28,138.82,142.11,138.82,140.78,930000,140.78
-1931-08-27,139.93,140.75,137.88,138.66,830000,138.66
-1931-08-26,136.65,140.32,135.98,139.93,840000,139.93
-1931-08-25,137.62,139.22,135.69,136.65,860000,136.65
-1931-08-24,137.76,137.99,135.62,137.62,820000,137.62
-1931-08-21,141.93,142.49,137.35,138.60,1310000,138.60
-1931-08-20,141.72,143.93,140.96,141.93,1070000,141.93
-1931-08-19,141.26,142.61,140.04,141.72,1080000,141.72
-1931-08-18,140.98,144.43,139.36,141.26,1710000,141.26
-1931-08-17,144.27,144.27,140.34,140.98,1320000,140.98
-1931-08-14,140.82,145.05,140.82,144.15,1830000,144.15
-1931-08-13,137.63,141.30,137.03,140.22,1380000,140.22
-1931-08-12,140.16,140.99,137.03,137.63,1260000,137.63
-1931-08-11,134.26,141.42,133.80,140.16,1600000,140.16
-1931-08-10,134.85,134.85,132.79,134.26,710000,134.26
-1931-08-07,133.77,135.72,132.96,135.13,740000,135.13
-1931-08-06,134.10,134.93,132.55,133.77,910000,133.77
-1931-08-05,135.83,135.83,133.59,134.10,820000,134.10
-1931-08-04,137.50,137.77,134.85,136.50,720000,136.50
-1931-08-03,136.65,139.35,136.36,137.50,880000,137.50
-1931-07-31,136.93,138.12,133.70,135.39,1220000,135.39
-1931-07-30,136.19,138.05,134.33,136.93,1350000,136.93
-1931-07-29,139.26,139.26,134.99,136.19,1580000,136.19
-1931-07-28,139.65,142.12,139.65,141.53,650000,141.53
-1931-07-27,138.24,140.16,137.72,139.64,570000,139.64
-1931-07-24,142.41,142.41,138.20,139.01,1070000,139.01
-1931-07-23,142.52,143.77,140.81,142.63,790000,142.63
-1931-07-22,145.88,145.88,142.11,142.52,990000,142.52
-1931-07-21,144.48,147.69,144.21,146.70,1150000,146.70
-1931-07-20,142.75,145.00,142.75,144.48,710000,144.48
-1931-07-17,141.99,144.84,141.44,142.61,1270000,142.61
-1931-07-16,137.86,142.30,137.30,141.99,1520000,141.99
-1931-07-15,140.13,140.13,134.39,137.86,2610000,137.86
-1931-07-14,142.43,143.19,139.67,140.85,1110000,140.85
-1931-07-13,143.44,143.44,139.59,142.43,1280000,142.43
-1931-07-10,144.91,148.50,143.46,146.97,1290000,146.97
-1931-07-09,143.83,145.97,142.24,144.91,1510000,144.91
-1931-07-08,145.92,147.24,141.36,143.83,2360000,143.83
-1931-07-07,152.80,155.39,144.65,145.92,3010000,145.92
-1931-07-06,154.08,154.08,151.20,152.80,1050000,152.80
-1931-07-03,152.21,156.74,152.21,155.26,2050000,155.26
-1931-07-02,152.66,154.84,150.72,151.48,1330000,151.48
-1931-07-01,150.18,153.86,147.44,152.66,1710000,152.66
-1931-06-30,152.67,153.67,148.63,150.18,1950000,150.18
-1931-06-29,156.59,156.59,151.30,152.67,2140000,152.67
-1931-06-26,150.75,155.50,150.75,154.04,3120000,154.04
-1931-06-25,151.60,156.33,148.79,150.36,4320000,150.36
-1931-06-24,144.56,153.42,144.56,151.60,5070000,151.60
-1931-06-23,145.82,146.71,141.41,143.89,2600000,143.89
-1931-06-22,140.08,147.97,140.08,145.82,4590000,145.82
-1931-06-19,130.56,131.86,128.64,130.31,1150000,130.31
-1931-06-18,133.58,133.58,130.09,130.56,1150000,130.56
-1931-06-17,135.47,135.93,132.91,133.68,920000,133.68
-1931-06-16,135.26,136.39,132.93,135.47,1120000,135.47
-1931-06-15,137.03,138.58,134.82,135.26,1270000,135.26
-1931-06-12,136.57,138.16,133.98,136.98,1590000,136.98
-1931-06-11,136.82,138.47,134.24,136.57,1750000,136.57
-1931-06-10,132.97,137.30,132.04,136.82,1800000,136.82
-1931-06-09,135.92,138.88,132.08,132.97,1890000,132.97
-1931-06-08,129.91,136.40,127.96,135.92,1710000,135.92
-1931-06-05,134.73,138.89,131.69,133.33,2850000,133.33
-1931-06-04,130.37,136.10,128.35,134.73,3170000,134.73
-1931-06-03,121.70,130.64,120.79,130.37,3310000,130.37
-1931-06-02,122.77,126.20,119.89,121.70,3320000,121.70
-1931-06-01,128.40,128.40,121.76,122.77,3100000,122.77
-1931-05-29,131.81,134.60,127.30,128.46,2050000,128.46
-1931-05-28,130.76,134.16,128.72,131.81,2090000,131.81
-1931-05-27,133.11,134.59,127.95,130.76,2510000,130.76
-1931-05-26,132.87,136.38,130.75,133.11,2410000,133.11
-1931-05-25,137.43,137.43,132.15,132.87,1880000,132.87
-1931-05-22,139.54,141.37,136.93,139.49,1560000,139.49
-1931-05-21,137.74,141.07,135.19,139.54,2350000,139.54
-1931-05-20,138.86,142.49,136.18,137.74,2320000,137.74
-1931-05-19,139.52,141.93,136.05,138.86,2780000,138.86
-1931-05-18,142.95,143.09,138.54,139.52,2540000,139.52
-1931-05-15,146.64,147.23,141.84,144.49,2380000,144.49
-1931-05-14,149.63,150.61,146.02,146.64,1770000,146.64
-1931-05-13,150.24,152.63,147.55,149.63,1670000,149.63
-1931-05-12,151.56,152.11,148.28,150.24,1310000,150.24
-1931-05-11,151.31,153.37,148.19,151.56,1650000,151.56
-1931-05-08,148.88,155.65,147.43,154.41,2660000,154.41
-1931-05-07,149.73,152.57,146.77,148.88,1690000,148.88
-1931-05-06,148.99,150.54,145.65,149.73,1500000,149.73
-1931-05-05,150.50,153.19,147.88,148.99,1580000,148.99
-1931-05-04,147.49,151.26,146.80,150.50,1360000,150.50
-1931-05-01,151.19,153.82,144.91,145.58,2870000,145.58
-1931-04-30,143.61,152.50,142.12,151.19,3340000,151.19
-1931-04-29,147.59,147.59,141.78,143.61,3180000,143.61
-1931-04-28,149.78,151.09,144.52,147.95,2860000,147.95
-1931-04-27,151.98,152.98,146.31,149.78,3650000,149.78
-1931-04-24,157.43,159.45,153.55,155.76,2600000,155.76
-1931-04-23,156.37,159.53,153.13,157.43,3820000,157.43
-1931-04-22,158.83,160.06,155.61,156.37,2670000,156.37
-1931-04-21,163.41,164.06,157.82,158.83,1990000,158.83
-1931-04-20,162.37,164.42,159.45,163.41,1560000,163.41
-1931-04-17,162.59,164.34,158.50,160.23,2550000,160.23
-1931-04-16,164.66,165.64,161.63,162.59,2330000,162.59
-1931-04-15,167.64,167.64,163.89,164.66,2050000,164.66
-1931-04-14,171.07,173.24,167.11,168.43,1940000,168.43
-1931-04-13,168.03,171.61,167.11,171.07,1630000,171.07
-1931-04-10,168.77,171.06,166.96,168.72,1570000,168.72
-1931-04-09,169.54,171.43,167.66,168.77,1940000,168.77
-1931-04-08,167.03,171.49,166.34,169.54,2050000,169.54
-1931-04-07,169.72,170.44,166.10,167.03,2190000,167.03
-1931-04-06,172.43,174.69,169.44,169.72,1460000,169.72
-1931-04-02,170.82,173.15,168.30,169.89,2510000,169.89
-1931-04-01,172.36,173.72,169.18,170.82,2270000,170.82
-1931-03-31,172.56,176.50,171.09,172.36,2410000,172.36
-1931-03-30,174.06,175.42,170.64,172.56,3190000,172.56
-1931-03-27,181.70,182.02,176.63,177.30,2950000,177.30
-1931-03-26,184.20,185.56,180.85,181.70,2550000,181.70
-1931-03-25,186.00,187.18,183.20,184.20,2100000,184.20
-1931-03-24,184.32,186.86,181.65,186.00,1880000,186.00
-1931-03-23,185.24,186.38,182.05,184.32,1990000,184.32
-1931-03-20,186.56,189.31,185.15,187.72,2740000,187.72
-1931-03-19,184.06,188.42,184.06,186.56,3530000,186.56
-1931-03-18,180.61,184.53,179.62,183.95,2100000,183.95
-1931-03-17,183.61,185.82,179.94,180.61,2800000,180.61
-1931-03-16,180.76,184.11,180.32,183.61,2130000,183.61
-1931-03-13,180.14,180.47,175.89,178.91,2380000,178.91
-1931-03-12,181.91,182.96,178.57,180.14,2490000,180.14
-1931-03-11,183.63,185.01,180.51,181.91,2290000,181.91
-1931-03-10,185.38,188.10,182.49,183.63,3240000,183.63
-1931-03-09,183.85,186.51,181.80,185.38,2850000,185.38
-1931-03-06,184.69,186.62,178.49,179.73,3860000,179.73
-1931-03-05,180.96,185.18,179.41,184.69,2730000,184.69
-1931-03-04,183.76,184.65,179.39,180.96,3090000,180.96
-1931-03-03,184.38,186.56,182.00,183.76,2940000,183.76
-1931-03-02,189.66,191.93,183.53,184.38,3320000,184.38
-1931-02-27,192.23,194.53,188.92,190.34,3730000,190.34
-1931-02-26,190.72,195.95,189.81,192.23,4620000,192.23
-1931-02-25,194.36,195.17,188.75,190.72,4390000,190.72
-1931-02-24,191.32,196.96,190.19,194.36,5350000,194.36
-1931-02-20,184.86,189.55,184.86,188.22,3830000,188.22
-1931-02-19,181.51,185.35,181.51,184.46,2480000,184.46
-1931-02-18,179.55,184.69,179.22,181.10,2840000,181.10
-1931-02-17,182.88,186.29,178.70,179.55,3990000,179.55
-1931-02-16,180.68,184.77,180.68,182.88,3170000,182.88
-1931-02-13,181.88,184.50,179.14,180.99,2750000,180.99
-1931-02-11,181.20,185.89,179.14,181.88,4700000,181.88
-1931-02-10,177.72,184.12,176.83,181.20,4760000,181.20
-1931-02-09,173.24,178.58,173.24,177.72,4130000,177.72
-1931-02-06,169.38,171.84,168.55,169.88,1660000,169.88
-1931-02-05,171.13,171.31,167.16,169.38,1490000,169.38
-1931-02-04,169.71,172.13,168.89,171.13,1520000,171.13
-1931-02-03,168.71,170.77,167.59,169.71,1190000,169.71
-1931-02-02,167.55,169.32,165.60,168.71,1160000,168.71
-1931-01-30,168.87,172.42,168.15,169.34,2210000,169.34
-1931-01-29,166.84,169.82,164.81,168.87,1650000,168.87
-1931-01-28,170.44,170.44,165.69,166.84,1620000,166.84
-1931-01-27,171.19,172.33,168.91,170.82,1600000,170.82
-1931-01-26,169.80,172.12,168.03,171.19,1540000,171.19
-1931-01-23,168.87,172.97,168.87,171.84,2870000,171.84
-1931-01-22,164.76,168.78,164.25,168.46,1860000,168.46
-1931-01-21,165.82,167.18,163.29,164.76,1410000,164.76
-1931-01-20,162.06,166.42,162.06,165.82,1330000,165.82
-1931-01-19,162.89,163.18,160.09,161.45,1120000,161.45
-1931-01-16,162.82,165.55,161.52,164.94,1320000,164.94
-1931-01-15,167.46,167.72,161.95,162.82,1930000,162.82
-1931-01-14,165.95,168.20,164.90,167.46,1280000,167.46
-1931-01-13,167.99,168.42,164.76,165.95,1710000,165.95
-1931-01-12,171.71,172.12,167.23,167.99,1500000,167.99
-1931-01-09,173.04,175.66,169.68,170.18,2800000,170.18
-1931-01-08,171.86,173.62,170.02,173.04,1710000,173.04
-1931-01-07,172.66,175.32,171.07,171.86,2140000,171.86
-1931-01-06,170.71,173.48,168.43,172.66,1910000,172.66
-1931-01-05,172.12,173.30,167.77,170.71,2090000,170.71
-1931-01-02,164.58,170.09,161.46,169.84,2030000,169.84
-1930-12-31,163.09,167.99,162.48,164.58,1940000,164.58
-1930-12-30,160.16,165.34,159.68,163.09,3430000,163.09
-1930-12-29,160.30,162.60,158.41,160.16,2790000,160.16
-1930-12-26,165.20,166.96,160.63,161.18,1800000,161.18
-1930-12-24,163.57,168.00,163.57,165.20,1580000,165.20
-1930-12-23,162.42,165.93,160.22,162.93,2450000,162.93
-1930-12-22,169.42,170.02,162.15,162.42,2100000,162.42
-1930-12-19,166.71,170.43,164.96,168.99,2270000,168.99
-1930-12-18,165.60,171.64,164.99,166.71,3290000,166.71
-1930-12-17,157.51,166.83,154.45,165.60,5010000,165.60
-1930-12-16,163.34,166.04,156.44,157.51,4160000,157.51
-1930-12-15,163.34,166.13,160.66,163.34,3440000,163.34
-1930-12-12,170.31,173.08,167.99,168.68,2030000,168.68
-1930-12-11,173.02,173.02,166.97,170.31,2890000,170.31
-1930-12-10,176.50,178.10,170.21,173.98,3150000,173.98
-1930-12-09,176.09,178.21,173.88,176.50,2120000,176.50
-1930-12-08,177.98,177.98,174.27,176.09,1980000,176.09
-1930-12-05,180.99,181.70,177.26,181.11,1590000,181.11
-1930-12-04,184.06,184.06,179.75,180.99,1590000,180.99
-1930-12-03,186.82,187.07,183.30,184.11,1220000,184.11
-1930-12-02,185.48,187.96,183.36,186.82,1580000,186.82
-1930-12-01,183.39,186.33,182.32,185.48,1100000,185.48
-1930-11-28,183.06,183.06,178.88,180.91,1740000,180.91
-1930-11-26,185.47,186.98,181.93,183.11,1950000,183.11
-1930-11-25,188.27,191.28,185.17,185.47,2150000,185.47
-1930-11-24,188.04,189.08,184.32,188.27,1630000,188.27
-1930-11-21,187.09,191.28,185.32,190.30,2250000,190.30
-1930-11-20,187.57,191.04,185.76,187.09,2630000,187.09
-1930-11-19,183.42,188.61,182.21,187.57,2480000,187.57
-1930-11-18,180.50,184.16,177.63,183.42,2020000,183.42
-1930-11-17,185.13,185.13,178.86,180.50,2140000,180.50
-1930-11-14,180.38,184.64,177.69,184.03,2640000,184.03
-1930-11-13,177.33,183.08,174.96,180.38,3450000,180.38
-1930-11-12,173.30,177.50,168.58,177.33,3420000,177.33
-1930-11-11,171.60,176.93,169.38,173.30,3330000,173.30
-1930-11-10,173.14,177.07,168.32,171.60,4420000,171.60
-1930-11-07,180.72,181.00,172.85,174.38,2370000,174.38
-1930-11-06,179.81,182.40,177.80,180.72,2450000,180.72
-1930-11-05,185.39,185.47,178.78,179.81,2150000,179.81
-1930-11-03,184.89,187.23,183.12,185.39,1260000,185.39
-1930-10-31,188.00,188.00,181.64,183.35,2250000,183.35
-1930-10-30,190.55,190.55,185.99,188.07,1910000,188.07
-1930-10-29,194.35,194.35,189.33,190.73,1670000,190.73
-1930-10-28,195.09,198.59,193.28,194.95,2020000,194.95
-1930-10-27,193.34,195.73,189.17,195.09,1810000,195.09
-1930-10-24,189.07,195.79,189.07,195.09,2760000,195.09
-1930-10-23,184.98,190.95,184.75,188.10,2670000,188.10
-1930-10-22,186.40,188.34,181.53,184.98,2740000,184.98
-1930-10-21,193.32,193.95,184.22,186.40,2430000,186.40
-1930-10-20,187.07,194.44,187.07,193.32,2140000,193.32
-1930-10-17,195.30,195.30,186.74,187.37,2660000,187.37
-1930-10-16,200.13,200.13,194.78,196.62,1860000,196.62
-1930-10-15,196.70,201.64,193.40,200.26,2380000,200.26
-1930-10-14,193.05,198.01,186.99,196.70,3390000,196.70
-1930-10-10,192.00,198.86,186.70,198.50,6300000,198.50
-1930-10-09,199.96,199.96,190.17,192.00,5050000,192.00
-1930-10-08,203.62,205.21,198.61,200.56,2070000,200.56
-1930-10-07,202.76,207.04,198.51,203.62,3570000,203.62
-1930-10-06,209.01,209.01,201.90,202.76,2370000,202.76
-1930-10-03,211.13,216.89,211.13,214.18,2050000,214.18
-1930-10-02,214.14,214.76,206.25,211.04,2320000,211.04
-1930-10-01,205.92,215.32,205.92,214.14,3160000,214.14
-1930-09-30,208.14,209.95,201.95,204.90,4500000,204.90
-1930-09-29,212.52,216.96,207.30,208.14,3760000,208.14
-1930-09-26,217.75,220.21,211.31,213.27,3710000,213.27
-1930-09-25,222.10,223.89,215.31,217.75,3070000,217.75
-1930-09-24,226.75,228.87,218.08,222.10,3440000,222.10
-1930-09-23,222.78,227.30,221.82,226.75,1920000,226.75
-1930-09-22,229.29,229.29,222.00,222.78,2330000,222.78
-1930-09-19,233.52,233.52,226.39,229.02,2950000,229.02
-1930-09-18,237.45,237.45,233.47,234.18,1380000,234.18
-1930-09-17,237.22,239.31,236.51,237.74,1190000,237.74
-1930-09-16,236.62,237.75,232.85,237.22,1770000,237.22
-1930-09-15,239.96,239.96,234.95,236.62,1560000,236.62
-1930-09-12,242.88,244.42,239.49,241.17,1910000,241.17
-1930-09-11,245.09,245.23,241.67,242.88,1740000,242.88
-1930-09-10,244.29,247.21,243.30,245.09,2480000,245.09
-1930-09-09,242.84,245.48,241.55,244.29,1940000,244.29
-1930-09-08,243.64,246.08,241.78,242.84,2240000,242.84
-1930-09-05,236.09,240.93,236.09,240.37,1650000,240.37
-1930-09-04,237.45,239.65,234.35,236.04,1520000,236.04
-1930-09-03,240.42,242.40,236.71,237.45,1750000,237.45
-1930-09-02,240.42,242.77,238.51,240.42,1770000,240.42
-1930-08-29,237.79,241.35,236.75,240.42,1860000,240.42
-1930-08-28,237.93,239.33,235.19,237.79,1440000,237.79
-1930-08-27,235.47,239.54,235.38,237.93,2200000,237.93
-1930-08-26,231.52,236.30,230.73,235.47,1750000,235.47
-1930-08-25,234.42,236.46,230.68,231.52,1600000,231.52
-1930-08-22,231.27,234.04,229.64,232.63,1340000,232.63
-1930-08-21,232.98,234.91,229.21,231.27,1710000,231.27
-1930-08-20,230.68,235.26,229.84,232.98,1820000,232.98
-1930-08-19,227.79,233.46,227.43,230.68,1860000,230.68
-1930-08-18,228.02,229.08,224.42,227.79,1410000,227.79
-1930-08-15,221.08,229.44,219.82,228.55,2110000,228.55
-1930-08-14,220.35,224.38,219.24,221.08,1530000,221.08
-1930-08-13,217.24,221.35,214.49,220.35,2290000,220.35
-1930-08-12,223.74,223.74,216.48,217.24,2090000,217.24
-1930-08-11,222.59,226.05,220.09,224.13,1750000,224.13
-1930-08-08,231.73,231.73,222.24,222.82,3310000,222.82
-1930-08-07,234.38,234.39,230.50,232.69,1450000,232.69
-1930-08-06,237.99,237.99,233.67,234.38,1320000,234.38
-1930-08-05,238.16,240.95,237.22,238.47,1220000,238.47
-1930-08-04,234.50,238.57,233.26,238.16,1200000,238.16
-1930-08-01,233.99,235.78,231.86,233.57,1090000,233.57
-1930-07-31,231.08,235.19,229.09,233.99,2160000,233.99
-1930-07-30,238.40,239.93,230.53,231.08,2510000,231.08
-1930-07-29,240.81,241.53,237.00,238.40,1860000,238.40
-1930-07-28,240.31,243.65,239.04,240.81,2430000,240.81
-1930-07-25,235.51,238.58,233.77,237.48,1360000,237.48
-1930-07-24,239.33,239.51,234.65,235.51,1480000,235.51
-1930-07-23,234.94,241.76,234.94,239.33,2530000,239.33
-1930-07-22,229.29,235.29,228.81,234.30,2080000,234.30
-1930-07-21,236.58,236.58,228.72,229.29,1950000,229.29
-1930-07-18,239.07,242.01,236.47,240.57,2750000,240.57
-1930-07-17,235.63,240.27,234.03,239.07,2500000,239.07
-1930-07-16,233.79,236.47,230.59,235.63,2590000,235.63
-1930-07-15,234.21,237.19,231.73,233.79,3090000,233.79
-1930-07-14,229.23,234.54,229.02,234.21,2740000,234.21
-1930-07-11,227.39,228.65,223.97,224.86,1530000,224.86
-1930-07-10,222.04,228.35,219.18,227.39,2170000,227.39
-1930-07-09,219.11,223.52,219.11,222.04,1360000,222.04
-1930-07-08,218.33,220.22,214.64,219.08,1560000,219.08
-1930-07-07,221.31,221.31,216.33,218.33,1480000,218.33
-1930-07-03,225.25,226.26,219.94,222.46,1380000,222.46
-1930-07-02,223.03,227.24,222.14,225.25,1230000,225.25
-1930-07-01,226.34,229.53,221.92,223.03,2280000,223.03
-1930-06-30,219.12,226.85,219.06,226.34,1840000,226.34
-1930-06-27,220.58,222.84,213.97,218.78,2080000,218.78
-1930-06-26,215.58,222.11,214.25,220.58,2270000,220.58
-1930-06-25,211.84,216.80,207.74,215.58,3400000,215.58
-1930-06-24,219.58,222.89,211.07,211.84,2870000,211.84
-1930-06-23,215.30,221.26,209.16,219.58,3840000,219.58
-1930-06-20,228.97,232.69,219.70,221.92,5660000,221.92
-1930-06-19,219.83,229.83,219.83,228.97,3760000,228.97
-1930-06-18,226.29,226.29,212.27,218.84,6430000,218.84
-1930-06-17,230.05,234.94,224.37,228.57,5020000,228.57
-1930-06-16,242.18,242.18,228.94,230.05,5660000,230.05
-1930-06-13,247.18,251.63,243.27,249.69,2230000,249.69
-1930-06-12,249.08,250.90,241.00,247.18,3900000,247.18
-1930-06-11,257.24,257.24,243.90,249.08,4480000,249.08
-1930-06-10,250.78,257.72,247.62,257.29,4770000,257.29
-1930-06-09,257.82,259.60,249.51,250.78,4650000,250.78
-1930-06-06,268.59,268.69,263.29,263.93,2160000,263.93
-1930-06-05,272.44,272.65,266.90,268.59,2390000,268.59
-1930-06-04,271.18,274.03,269.54,272.44,1690000,272.44
-1930-06-03,274.45,274.69,270.01,271.18,1750000,271.18
-1930-06-02,275.07,276.86,273.03,274.45,1710000,274.45
-1930-05-29,273.84,276.66,273.05,275.07,2200000,275.07
-1930-05-28,272.43,275.17,270.64,273.84,2410000,273.84
-1930-05-27,272.14,274.72,270.54,272.43,2260000,272.43
-1930-05-26,271.33,276.18,270.64,272.14,2250000,272.14
-1930-05-23,267.01,272.14,267.01,270.01,2160000,270.01
-1930-05-22,265.52,268.65,262.53,266.89,1860000,266.89
-1930-05-21,267.10,268.94,262.67,265.52,2080000,265.52
-1930-05-20,265.87,268.40,260.76,267.10,3530000,267.10
-1930-05-19,272.36,272.36,264.63,265.87,2410000,265.87
-1930-05-16,269.91,272.96,268.54,271.52,2090000,271.52
-1930-05-15,274.35,274.35,268.45,269.91,2680000,269.91
-1930-05-14,274.17,277.22,272.22,274.40,3180000,274.40
-1930-05-13,270.16,276.09,269.51,274.17,2700000,274.17
-1930-05-12,272.01,275.11,268.56,270.16,3030000,270.16
-1930-05-09,263.93,269.08,261.64,267.29,3010000,267.29
-1930-05-08,263.69,266.11,257.74,263.93,3760000,263.93
-1930-05-07,268.81,272.15,262.20,263.69,4300000,263.69
-1930-05-06,259.68,270.34,259.04,268.81,4760000,268.81
-1930-05-05,258.31,262.84,249.82,259.68,8280000,259.68
-1930-05-02,274.59,276.81,264.93,266.56,5990000,266.56
-1930-05-01,279.23,281.95,273.00,274.59,4640000,274.59
-1930-04-30,278.43,283.51,275.97,279.23,4550000,279.23
-1930-04-29,276.94,280.71,272.24,278.43,5410000,278.43
-1930-04-28,285.46,286.12,275.71,276.94,4850000,276.94
-1930-04-25,286.18,289.28,283.68,285.76,4730000,285.76
-1930-04-24,288.78,290.58,283.74,286.18,5230000,286.18
-1930-04-23,290.01,293.27,286.25,288.78,5570000,288.78
-1930-04-22,288.23,291.39,284.28,290.01,4590000,290.01
-1930-04-21,294.07,295.88,287.24,288.23,4490000,288.23
-1930-04-17,292.20,296.05,290.38,294.07,3940000,294.07
-1930-04-16,293.26,297.25,290.27,292.20,4400000,292.20
-1930-04-15,293.18,295.69,289.34,293.26,4220000,293.26
-1930-04-14,293.43,295.81,289.72,293.18,4150000,293.18
-1930-04-11,292.19,296.35,288.42,292.65,5630000,292.65
-1930-04-10,291.15,295.98,289.18,292.19,5680000,292.19
-1930-04-09,288.36,293.36,287.37,291.15,5190000,291.15
-1930-04-08,290.19,291.89,285.96,288.36,4690000,288.36
-1930-04-07,289.96,293.43,287.03,290.19,5490000,290.19
-1930-04-04,285.77,291.44,284.92,288.35,5930000,288.35
-1930-04-03,285.27,288.17,282.29,285.77,4630000,285.77
-1930-04-02,287.11,290.15,283.59,285.27,5300000,285.27
-1930-04-01,286.10,290.15,283.64,287.11,5400000,287.11
-1930-03-31,283.85,289.13,282.85,286.10,5160000,286.10
-1930-03-28,281.63,287.06,280.83,283.85,5070000,283.85
-1930-03-27,283.22,286.10,279.98,281.63,4710000,281.63
-1930-03-26,280.50,285.38,279.31,283.22,5030000,283.22
-1930-03-25,279.11,284.01,278.21,280.50,4530000,280.50
-1930-03-24,276.43,280.92,275.03,279.11,4130000,279.11
-1930-03-21,279.41,284.08,276.78,280.55,4630000,280.55
-1930-03-20,277.88,282.23,275.25,279.41,3260000,279.41
-1930-03-19,277.27,281.05,274.91,277.88,4340000,277.88
-1930-03-18,274.26,279.79,273.90,277.27,4250000,277.27
-1930-03-17,270.25,274.84,268.94,274.26,3640000,274.26
-1930-03-14,273.47,275.82,270.38,271.34,3950000,271.34
-1930-03-13,272.13,274.77,269.60,273.47,3850000,273.47
-1930-03-12,276.25,277.06,270.01,272.13,4470000,272.13
-1930-03-11,276.85,278.76,274.25,276.25,2640000,276.25
-1930-03-10,275.46,279.40,273.71,276.85,3990000,276.85
-1930-03-07,274.51,278.48,272.84,275.57,3640000,275.57
-1930-03-06,270.59,276.05,269.01,274.51,3360000,274.51
-1930-03-05,273.51,276.10,269.03,270.59,3720000,270.59
-1930-03-04,271.11,275.19,269.16,273.51,3460000,273.51
-1930-03-03,273.24,274.47,269.59,271.11,3630000,271.11
-1930-02-28,269.39,272.55,267.41,271.11,3210000,271.11
-1930-02-27,269.06,272.13,267.43,269.39,3310000,269.39
-1930-02-26,262.94,269.92,262.94,269.06,3020000,269.06
-1930-02-25,262.47,264.64,259.78,262.80,2630000,262.80
-1930-02-24,265.81,266.33,261.40,262.47,2320000,262.47
-1930-02-21,263.41,266.68,262.01,265.81,2570000,265.81
-1930-02-20,268.46,269.72,262.43,263.41,3660000,263.41
-1930-02-19,270.73,273.35,267.09,268.46,3490000,268.46
-1930-02-18,270.54,274.41,268.98,270.73,3800000,270.73
-1930-02-17,269.25,271.62,265.29,270.54,3290000,270.54
-1930-02-14,272.27,274.20,268.60,271.52,3510000,271.52
-1930-02-13,271.05,275.00,268.97,272.27,3670000,272.27
-1930-02-11,268.56,272.67,267.00,271.05,3320000,271.05
-1930-02-10,269.78,271.78,266.37,268.56,3170000,268.56
-1930-02-07,268.56,271.62,265.36,267.82,3390000,267.82
-1930-02-06,272.06,273.59,266.96,268.56,3710000,268.56
-1930-02-05,268.85,274.01,268.85,272.06,4360000,272.06
-1930-02-04,266.54,270.00,264.41,268.48,3230000,268.48
-1930-02-03,268.41,271.54,264.84,266.54,3800000,266.54
-1930-01-31,263.28,268.71,262.81,267.14,3740000,267.14
-1930-01-30,262.18,266.30,260.48,263.28,3640000,263.28
-1930-01-29,257.90,263.73,257.38,262.18,3250000,262.18
-1930-01-28,260.93,261.89,256.70,257.90,2910000,257.90
-1930-01-27,259.06,262.57,257.24,260.93,3460000,260.93
-1930-01-24,253.52,258.98,252.98,256.31,3480000,256.31
-1930-01-23,250.19,254.39,249.62,253.52,3230000,253.52
-1930-01-22,249.58,251.85,248.60,250.19,2310000,250.19
-1930-01-21,247.31,250.62,246.25,249.58,2230000,249.58
-1930-01-20,246.84,248.92,244.86,247.31,1700000,247.31
-1930-01-17,248.99,249.88,244.50,246.33,2680000,246.33
-1930-01-16,251.54,253.49,248.16,248.99,3040000,248.99
-1930-01-15,250.44,252.57,247.76,251.54,2630000,251.54
-1930-01-14,249.62,252.39,248.98,250.44,1880000,250.44
-1930-01-13,248.71,250.83,246.82,249.62,1460000,249.62
-1930-01-10,249.68,252.91,248.80,250.03,2400000,250.03
-1930-01-09,245.70,250.52,245.67,249.68,2400000,249.68
-1930-01-08,246.50,248.04,243.80,245.70,1640000,245.70
-1930-01-07,248.10,249.40,243.80,246.50,2030000,246.50
-1930-01-06,248.85,250.37,245.49,248.10,2170000,248.10
-1930-01-03,244.20,248.71,243.00,247.19,2070000,247.19
-1930-01-02,248.48,252.29,241.78,244.20,2930000,244.20
-1929-12-31,241.90,249.24,241.90,248.48,2680000,248.48
-1929-12-30,238.43,242.95,235.95,241.06,4160000,241.06
-1929-12-27,240.96,246.35,239.13,240.66,3350000,240.66
-1929-12-26,234.07,242.62,233.89,240.96,2580000,240.96
-1929-12-24,232.65,237.94,231.96,234.07,1000000,234.07
-1929-12-23,235.42,236.37,226.39,232.65,3490000,232.65
-1929-12-20,240.42,241.92,227.20,230.89,5550000,230.89
-1929-12-19,246.84,247.14,238.80,240.42,3410000,240.42
-1929-12-18,249.58,250.51,245.03,246.84,2290000,246.84
-1929-12-17,245.88,250.23,243.63,249.58,2440000,249.58
-1929-12-16,253.02,253.17,244.34,245.88,2590000,245.88
-1929-12-13,243.14,251.79,239.58,249.60,4390000,249.60
-1929-12-12,258.44,258.56,241.40,243.14,4510000,243.14
-1929-12-11,262.20,264.23,256.45,258.44,3900000,258.44
-1929-12-10,259.18,263.98,255.52,262.20,3650000,262.20
-1929-12-09,263.46,267.56,257.41,259.18,5020000,259.18
-1929-12-06,251.51,261.52,250.27,260.12,4720000,260.12
-1929-12-05,254.64,256.45,249.55,251.51,4380000,251.51
-1929-12-04,249.61,256.63,248.05,254.64,4440000,254.64
-1929-12-03,241.70,251.13,241.38,249.61,3810000,249.61
-1929-12-02,238.95,243.39,236.13,241.70,2510000,241.70
-1929-11-27,235.35,240.66,233.59,238.95,2430000,238.95
-1929-11-26,243.44,243.97,234.51,235.35,3630000,235.35
-1929-11-25,245.74,246.06,237.41,243.44,3020000,243.44
-1929-11-22,248.49,250.75,243.36,245.74,2930000,245.74
-1929-11-21,241.23,249.57,238.61,248.49,3140000,248.49
-1929-11-20,235.18,243.48,235.18,241.23,2830000,241.23
-1929-11-19,227.56,234.56,222.93,234.02,2720000,234.02
-1929-11-18,228.73,233.36,224.71,227.56,2750000,227.56
-1929-11-15,222.50,232.77,222.50,228.73,4340000,228.73
-1929-11-14,205.61,219.49,205.61,217.28,5570000,217.28
-1929-11-13,209.74,211.92,195.35,198.69,7760000,198.69
-1929-11-12,220.39,222.56,208.09,209.74,6450000,209.74
-1929-11-11,235.13,235.13,219.34,220.39,3640000,220.39
-1929-11-08,238.19,245.28,234.63,236.53,3220000,236.53
-1929-11-07,232.13,242.10,217.84,238.19,7180000,238.19
-1929-11-06,252.20,252.20,228.35,232.13,5920000,232.13
-1929-11-04,269.75,269.75,255.43,257.68,6200000,257.68
-1929-10-31,264.97,281.54,264.97,273.51,7150000,273.51
-1929-10-30,230.98,260.93,230.98,258.47,10730000,258.47
-1929-10-29,252.38,252.38,212.33,230.07,16410000,230.07
-1929-10-28,295.18,295.18,256.75,260.64,9210000,260.64
-1929-10-25,299.47,306.02,295.59,301.22,5920000,301.22
-1929-10-24,305.85,312.76,272.32,299.47,12900000,299.47
-1929-10-23,326.51,329.94,303.84,305.85,6370000,305.85
-1929-10-22,322.03,333.01,322.03,326.51,4130000,326.51
-1929-10-21,323.87,328.28,314.55,320.91,6090000,320.91
-1929-10-18,341.86,343.12,332.16,333.29,3510000,333.29
-1929-10-17,336.13,343.24,332.11,341.86,3860000,341.86
-1929-10-16,346.99,346.99,335.12,336.13,4090000,336.13
-1929-10-15,350.97,354.09,345.58,347.24,3110000,347.24
-1929-10-14,352.69,358.20,348.94,350.97,2760000,350.97
-1929-10-11,352.86,358.77,349.64,352.69,3960000,352.69
-1929-10-10,346.66,355.63,345.63,352.86,4000000,352.86
-1929-10-09,345.00,349.03,338.86,346.66,3160000,346.66
-1929-10-08,345.72,349.67,340.86,345.00,3760000,345.00
-1929-10-07,341.36,348.54,338.86,345.72,4260000,345.72
-1929-10-04,329.95,333.28,320.45,325.17,5620000,325.17
-1929-10-03,344.50,345.30,327.71,329.95,4750000,329.95
-1929-10-02,342.57,350.19,339.45,344.50,3370000,344.50
-1929-10-01,343.45,345.67,335.99,342.57,4530000,342.57
-1929-09-30,347.17,349.37,341.06,343.45,3210000,343.45
-1929-09-27,354.63,354.63,343.26,344.87,4590000,344.87
-1929-09-26,352.57,358.16,349.73,355.95,4000000,355.95
-1929-09-25,352.61,355.42,344.85,352.57,4960000,352.57
-1929-09-24,359.00,363.67,350.84,352.61,4410000,352.61
-1929-09-23,361.16,365.03,355.63,359.00,4390000,359.00
-1929-09-20,369.97,371.10,360.44,362.05,4880000,362.05
-1929-09-19,370.90,375.20,367.70,369.97,4130000,369.97
-1929-09-18,368.52,374.03,365.65,370.90,4040000,370.90
-1929-09-17,372.39,374.96,366.89,368.52,4290000,368.52
-1929-09-16,367.01,373.63,364.80,372.39,4180000,372.39
-1929-09-13,366.35,369.67,359.70,366.85,5070000,366.85
-1929-09-12,370.91,375.52,363.11,366.35,5020000,366.35
-1929-09-11,367.29,375.05,366.22,370.91,4790000,370.91
-1929-09-10,374.93,379.16,364.46,367.29,4520000,367.29
-1929-09-09,377.56,380.57,373.49,374.93,4860000,374.93
-1929-09-06,369.77,378.71,369.46,376.29,5120000,376.29
-1929-09-05,379.61,382.01,367.35,369.77,5560000,369.77
-1929-09-04,380.12,380.12,376.33,379.61,4690000,379.61
-1929-09-03,380.33,386.10,378.23,381.17,4440000,381.17
-1929-08-30,376.18,383.96,376.16,380.33,4570000,380.33
-1929-08-29,372.06,378.76,370.79,376.18,3480000,376.18
-1929-08-28,373.79,377.56,370.34,372.06,3960000,372.06
-1929-08-27,374.46,378.16,371.76,373.79,3900000,373.79
-1929-08-26,375.44,380.18,372.09,374.46,4430000,374.46
-1929-08-23,369.96,378.66,369.96,374.61,4800000,374.61
-1929-08-22,365.55,373.45,365.39,369.95,3440000,369.95
-1929-08-21,367.67,374.67,363.41,365.55,4720000,365.55
-1929-08-20,366.31,372.59,366.31,367.67,4640000,367.67
-1929-08-19,360.70,367.78,355.68,365.20,3980000,365.20
-1929-08-16,356.84,364.39,356.84,361.49,4800000,361.49
-1929-08-15,354.86,358.65,351.68,354.42,3410000,354.42
-1929-08-14,354.03,361.55,352.05,354.86,4200000,354.86
-1929-08-13,351.13,357.88,348.24,354.03,4100000,354.03
-1929-08-12,345.71,354.36,345.71,351.13,3610000,351.13
-1929-08-09,344.89,344.89,336.13,337.99,5020000,337.99
-1929-08-08,348.44,354.17,347.79,352.10,2830000,352.10
-1929-08-07,351.39,353.27,344.67,348.44,3160000,348.44
-1929-08-06,352.50,354.52,346.98,351.39,3800000,351.39
-1929-08-05,355.62,358.66,350.68,352.50,3860000,352.50
-1929-08-02,350.56,358.31,349.77,353.08,4030000,353.08
-1929-08-01,347.70,353.30,346.39,350.56,3320000,350.56
-1929-07-31,343.12,349.79,342.65,347.70,3410000,347.70
-1929-07-30,339.21,346.04,339.10,343.12,2690000,343.12
-1929-07-29,343.73,344.93,336.36,339.21,2760000,339.21
-1929-07-26,344.67,349.45,341.95,345.47,3550000,345.47
-1929-07-25,343.04,348.15,340.09,344.67,3480000,344.67
-1929-07-24,345.48,349.30,341.95,343.04,3780000,343.04
-1929-07-23,341.37,347.85,339.65,345.48,3780000,345.48
-1929-07-22,345.87,347.85,339.32,341.37,3680000,341.37
-1929-07-19,344.59,349.19,343.15,345.20,4200000,345.20
-1929-07-18,345.63,347.69,343.40,344.59,3730000,344.59
-1929-07-17,344.24,349.79,341.41,345.63,4360000,345.63
-1929-07-16,341.93,347.98,339.98,344.24,4500000,344.24
-1929-07-15,345.94,347.04,340.05,341.93,4290000,341.93
-1929-07-12,343.34,350.26,343.34,346.37,4760000,346.37
-1929-07-11,343.30,347.12,340.12,343.04,4210000,343.04
-1929-07-10,345.57,347.64,340.19,343.30,4210000,343.30
-1929-07-09,346.55,349.29,342.00,345.57,4250000,345.57
-1929-07-08,344.66,350.09,342.45,346.55,3520000,346.55
-1929-07-05,341.99,348.67,340.84,344.27,3750000,344.27
-1929-07-03,340.28,345.84,337.50,341.99,4690000,341.99
-1929-07-02,335.22,343.07,333.48,340.28,4590000,340.28
-1929-07-01,333.79,339.09,332.23,335.22,4090000,335.22
-1929-06-28,328.91,335.25,328.15,331.65,3950000,331.65
-1929-06-27,328.60,333.66,325.68,328.91,3910000,328.91
-1929-06-26,326.16,332.75,325.13,328.60,4030000,328.60
-1929-06-25,321.15,327.95,319.27,326.16,2930000,326.16
-1929-06-24,322.23,325.73,319.91,321.15,3030000,321.15
-1929-06-21,317.73,323.46,316.32,320.68,3190000,320.68
-1929-06-20,316.41,320.43,314.32,317.73,2760000,317.73
-1929-06-19,319.67,321.26,314.62,316.41,3060000,316.41
-1929-06-18,319.33,323.30,317.64,319.67,3340000,319.67
-1929-06-17,314.26,322.43,313.58,319.33,3210000,319.33
-1929-06-14,313.05,317.39,311.76,313.68,3240000,313.68
-1929-06-13,306.80,314.21,306.80,313.05,3160000,313.05
-1929-06-12,306.64,309.29,304.25,306.68,2130000,306.68
-1929-06-11,303.27,307.60,301.22,306.64,2140000,306.64
-1929-06-10,305.12,307.60,301.86,303.27,2200000,303.27
-1929-06-07,307.72,312.00,304.75,307.46,3080000,307.46
-1929-06-06,307.68,310.50,305.33,307.72,2930000,307.72
-1929-06-05,310.57,311.97,305.42,307.68,3340000,307.68
-1929-06-04,304.33,311.44,304.33,310.57,3410000,310.57
-1929-06-03,299.12,307.07,298.53,304.20,3020000,304.20
-1929-05-31,296.76,300.27,290.02,297.41,3300000,297.41
-1929-05-29,298.87,302.32,295.18,296.76,2980000,296.76
-1929-05-28,293.42,300.08,291.80,298.87,3940000,298.87
-1929-05-27,304.19,304.19,291.82,293.42,4350000,293.42
-1929-05-24,308.09,313.30,304.32,305.64,3270000,305.64
-1929-05-23,300.83,309.51,300.42,308.09,3810000,308.09
-1929-05-22,311.89,311.89,300.54,300.83,4840000,300.83
-1929-05-21,312.70,316.41,308.32,314.09,4410000,314.09
-1929-05-20,321.48,322.65,312.18,312.70,3810000,312.70
-1929-05-17,320.09,325.64,318.81,321.38,3330000,321.38
-1929-05-16,319.35,321.89,314.51,320.09,3440000,320.09
-1929-05-15,320.79,324.38,317.93,319.35,3350000,319.35
-1929-05-14,316.49,322.33,315.17,320.79,3630000,320.79
-1929-05-13,324.49,324.49,313.56,316.49,4630000,316.49
-1929-05-10,321.49,328.00,321.49,325.70,3920000,325.70
-1929-05-09,323.51,324.87,317.09,321.17,3660000,321.17
-1929-05-08,321.91,325.90,318.87,323.51,3470000,323.51
-1929-05-07,326.16,327.55,320.60,321.91,3490000,321.91
-1929-05-06,327.08,331.01,323.01,326.16,3810000,326.16
-1929-05-03,322.33,329.11,322.33,325.56,4530000,325.56
-1929-05-02,320.13,324.60,317.73,321.52,4180000,321.52
-1929-05-01,319.29,323.99,317.90,320.13,4690000,320.13
-1929-04-30,314.02,321.09,314.02,319.29,4320000,319.29
-1929-04-29,315.55,315.55,309.62,313.84,3270000,313.84
-1929-04-26,314.28,319.31,311.00,314.15,4010000,314.15
-1929-04-25,315.66,317.23,312.37,314.28,3340000,314.28
-1929-04-24,316.62,320.00,313.56,315.66,4070000,315.66
-1929-04-23,315.33,320.10,314.20,316.62,4130000,316.62
-1929-04-22,311.98,318.26,311.98,315.33,3570000,315.33
-1929-04-19,311.87,313.81,308.67,310.58,3060000,310.58
-1929-04-18,309.91,315.22,309.63,311.87,3770000,311.87
-1929-04-17,304.19,311.19,304.16,309.91,3500000,309.91
-1929-04-16,302.43,305.51,299.30,304.19,2370000,304.19
-1929-04-15,304.41,305.55,301.54,302.43,2640000,302.43
-1929-04-12,304.09,309.79,303.61,305.43,3410000,305.43
-1929-04-11,300.67,307.90,299.40,304.09,3100000,304.09
-1929-04-10,299.13,304.60,295.71,300.67,3280000,300.67
-1929-04-09,301.49,306.29,297.17,299.13,3630000,299.13
-1929-04-08,302.81,305.70,299.52,301.49,2720000,301.49
-1929-04-05,305.37,307.97,301.39,303.04,3410000,303.04
-1929-04-04,300.35,306.99,295.79,305.37,3330000,305.37
-1929-04-03,303.49,307.70,298.58,300.35,3700000,300.35
-1929-04-02,300.40,305.20,298.07,303.49,3780000,303.49
-1929-04-01,304.21,304.21,294.11,300.40,4160000,300.40
-1929-03-28,303.22,311.13,302.93,308.85,5100000,308.85
-1929-03-27,296.51,305.87,293.70,303.22,5620000,303.22
-1929-03-26,297.50,300.60,281.51,296.51,8250000,296.51
-1929-03-25,306.21,311.55,294.34,297.50,5860000,297.50
-1929-03-22,314.63,316.94,307.50,310.26,4830000,310.26
-1929-03-21,316.44,319.31,313.12,314.63,4460000,314.63
-1929-03-20,317.53,320.06,313.27,316.44,5190000,316.44
-1929-03-19,317.59,321.28,315.23,317.53,4450000,317.53
-1929-03-18,320.00,321.70,315.49,317.59,5020000,317.59
-1929-03-15,316.26,322.75,315.92,319.70,5890000,319.70
-1929-03-14,311.02,317.98,311.02,316.26,4630000,316.26
-1929-03-13,306.79,312.30,306.79,310.29,3330000,310.29
-1929-03-12,305.75,312.76,305.20,306.14,3060000,306.14
-1929-03-11,311.61,312.96,305.20,305.75,3630000,305.75
-1929-03-08,308.99,313.25,304.78,311.59,3950000,311.59
-1929-03-07,305.20,310.39,303.05,308.99,3630000,308.99
-1929-03-06,310.20,313.45,302.93,305.20,4490000,305.20
-1929-03-05,313.86,316.17,308.22,310.20,4430000,310.20
-1929-03-04,319.12,320.22,312.85,313.86,4560000,313.86
-1929-03-01,317.79,324.40,317.79,321.18,6020000,321.18
-1929-02-28,314.53,319.69,312.91,317.41,4970000,317.41
-1929-02-27,311.25,317.03,309.71,314.53,4370000,314.53
-1929-02-26,311.24,313.49,307.04,311.25,3740000,311.25
-1929-02-25,310.06,315.08,308.10,311.24,3510000,311.24
-1929-02-21,305.99,311.31,303.45,310.06,3400000,310.06
-1929-02-20,301.10,307.55,301.05,305.99,2910000,305.99
-1929-02-19,300.74,305.58,299.00,301.10,3210000,301.10
-1929-02-18,295.85,301.68,293.40,300.74,3480000,300.74
-1929-02-15,306.49,309.79,299.38,300.41,3900000,300.41
-1929-02-14,308.07,308.29,300.60,306.49,3730000,306.49
-1929-02-13,310.35,316.06,307.15,308.07,4530000,308.07
-1929-02-11,301.53,311.24,299.58,310.35,3890000,310.35
-1929-02-08,305.75,309.26,298.03,301.53,4550000,301.53
-1929-02-07,312.56,312.56,302.40,305.75,5210000,305.75
-1929-02-06,322.06,323.31,313.32,317.18,4680000,317.18
-1929-02-05,319.05,324.51,317.28,322.06,4070000,322.06
-1929-02-04,319.76,323.74,316.91,319.05,4050000,319.05
-1929-02-01,317.51,324.16,315.64,319.68,4970000,319.68
-1929-01-31,312.60,319.96,311.34,317.51,4680000,317.51
-1929-01-30,312.60,316.15,308.47,312.60,4130000,312.60
-1929-01-29,314.04,316.33,309.23,312.60,4290000,312.60
-1929-01-28,314.56,319.58,310.44,314.04,4980000,314.04
-1929-01-25,311.28,319.36,311.28,315.13,5510000,315.13
-1929-01-24,310.33,314.01,305.94,309.39,4500000,309.39
-1929-01-23,307.06,315.49,306.46,310.33,4920000,310.33
-1929-01-22,304.64,310.08,303.05,307.06,5120000,307.06
-1929-01-21,305.96,308.22,302.36,304.64,4900000,304.64
-1929-01-18,303.95,308.05,301.05,304.14,4940000,304.14
-1929-01-17,302.66,306.96,301.09,303.95,4260000,303.95
-1929-01-16,297.66,304.36,297.00,302.66,3670000,302.66
-1929-01-15,304.06,306.09,295.78,297.66,4180000,297.66
-1929-01-14,301.25,306.26,299.06,304.06,3920000,304.06
-1929-01-11,301.58,305.85,298.68,301.66,4240000,301.66
-1929-01-10,300.83,305.20,299.60,301.58,4020000,301.58
-1929-01-09,296.98,303.04,296.37,300.83,4050000,300.83
-1929-01-08,297.70,300.87,292.89,296.98,3850000,296.98
-1929-01-07,301.85,301.85,293.35,297.70,4800000,297.70
-1929-01-04,305.72,307.51,299.92,304.75,5530000,304.75
-1929-01-03,307.01,311.46,302.90,305.72,5100000,305.72
-1929-01-02,300.31,308.66,300.31,307.01,5410000,307.01
-1928-12-31,297.28,301.61,291.99,300.00,4890000,300.00
-1928-12-28,290.95,297.79,283.68,296.52,4800000,296.52
-1928-12-27,286.13,291.39,281.55,290.95,3570000,290.95
-1928-12-26,287.89,292.53,283.94,286.13,3620000,286.13
-1928-12-24,285.94,291.17,284.30,287.89,3700000,287.89
-1928-12-21,282.01,288.39,281.31,286.53,3460000,286.53
-1928-12-20,280.50,285.60,277.91,282.01,3810000,282.01
-1928-12-19,275.41,282.84,275.09,280.50,3400000,280.50
-1928-12-18,270.23,276.41,269.61,275.41,2270000,275.41
-1928-12-17,270.72,272.27,266.21,270.23,2230000,270.23
-1928-12-14,266.99,275.45,266.99,272.26,3010000,272.26
-1928-12-13,266.82,269.53,260.51,266.88,3270000,266.88
-1928-12-12,269.34,272.74,264.95,266.82,3990000,266.82
-1928-12-11,263.95,270.41,263.71,269.34,3920000,269.34
-1928-12-10,257.33,266.22,254.36,263.95,5220000,263.95
-1928-12-07,279.79,284.44,269.58,271.05,6190000,271.05
-1928-12-06,290.68,292.56,278.66,279.79,5410000,279.79
-1928-12-05,291.30,294.20,289.91,290.68,4380000,290.68
-1928-12-04,289.23,295.61,287.61,291.30,4920000,291.30
-1928-12-03,290.80,291.05,283.89,289.23,4490000,289.23
-1928-11-30,295.62,299.07,288.82,293.38,6410000,293.38
-1928-11-28,292.39,299.35,290.68,295.62,6370000,295.62
-1928-11-27,291.16,294.75,289.28,292.39,5280000,292.39
-1928-11-26,288.22,296.10,288.14,291.16,5320000,291.16
-1928-11-23,290.34,295.17,284.40,288.22,6940000,288.22
-1928-11-22,281.28,292.12,281.28,290.34,5840000,290.34
-1928-11-21,283.90,288.71,276.91,280.53,6170000,280.53
-1928-11-20,278.78,288.13,278.05,283.90,6440000,283.90
-1928-11-19,277.48,280.68,272.98,278.78,5100000,278.78
-1928-11-16,271.48,278.65,271.48,276.66,6730000,276.66
-1928-11-15,268.60,271.63,266.48,269.42,4730000,269.42
-1928-11-14,269.89,272.94,266.80,268.60,5410000,268.60
-1928-11-13,269.67,272.03,264.88,269.89,5240000,269.89
-1928-11-12,265.08,272.47,264.42,269.67,5680000,269.67
-1928-11-09,261.11,266.24,259.37,263.05,4950000,263.05
-1928-11-08,260.68,265.26,258.96,261.11,4850000,261.11
-1928-11-07,258.48,263.97,258.48,260.68,4830000,260.68
-1928-11-05,254.16,259.68,253.89,257.58,3740000,257.58
-1928-11-02,255.23,256.99,252.46,254.38,3490000,254.38
-1928-11-01,252.16,256.59,251.56,255.23,3450000,255.23
-1928-10-31,253.70,256.16,248.76,252.16,3490000,252.16
-1928-10-30,257.13,259.00,252.39,253.70,3450000,253.70
-1928-10-29,255.51,259.76,255.03,257.13,3690000,257.13
-1928-10-26,256.48,259.16,250.00,251.44,4520000,251.44
-1928-10-25,257.03,260.03,254.93,256.48,4210000,256.48
-1928-10-24,256.04,260.39,249.09,257.03,4550000,257.03
-1928-10-23,253.60,258.60,252.73,256.04,4160000,256.04
-1928-10-22,253.75,257.32,250.08,253.60,3860000,253.60
-1928-10-19,251.88,259.19,250.35,256.59,4560000,256.59
-1928-10-18,250.87,255.24,249.65,251.88,4400000,251.88
-1928-10-17,249.43,253.60,247.74,250.87,3960000,250.87
-1928-10-16,249.85,255.27,247.92,249.43,4530000,249.43
-1928-10-15,249.13,252.70,247.33,249.85,4040000,249.85
-1928-10-11,246.53,250.14,245.57,247.69,3970000,247.69
-1928-10-10,241.73,249.06,241.57,246.53,4170000,246.53
-1928-10-09,239.55,242.86,236.79,241.73,3820000,241.73
-1928-10-08,240.17,243.33,237.72,239.55,3940000,239.55
-1928-10-05,240.00,243.08,238.22,240.44,4360000,240.44
-1928-10-04,237.75,242.53,237.72,240.00,4330000,240.00
-1928-10-03,238.14,239.14,233.60,237.75,4060000,237.75
-1928-10-02,240.01,241.54,235.42,238.14,3850000,238.14
-1928-10-01,239.43,242.46,238.24,240.01,3500000,240.01
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/ex_cusum.py b/statsmodels/scikits/statsmodels/sandbox/examples/ex_cusum.py
deleted file mode 100644
index 156833c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/ex_cusum.py
+++ /dev/null
@@ -1,110 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Fri Apr 02 11:41:25 2010
-
-Author: josef-pktd
-"""
-
-
-import numpy as np
-from scipy import stats
-from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox.regression.onewaygls import OneWayLS
-from scikits.statsmodels.sandbox.stats.diagnostic import (recursive_olsresiduals,
- recursive_olsresiduals2)
-
-#examples from ex_onewaygls.py
-#choose example
-#--------------
-example = ['null', 'smalldiff', 'mediumdiff', 'largediff'][1]
-example_size = [20, 100][1]
-example_groups = ['2', '2-2'][1]
-#'2-2': 4 groups,
-# groups 0 and 1 and groups 2 and 3 have identical parameters in DGP
-
-#generate example
-#----------------
-#np.random.seed(87654589)
-nobs = example_size
-x1 = 0.1+np.random.randn(nobs)
-y1 = 10 + 15*x1 + 2*np.random.randn(nobs)
-
-x1 = sm.add_constant(x1) #, prepend=True)
-#assert_almost_equal(x1, np.vander(x1[:,0],2), 16)
-#res1 = sm.OLS(y1, x1).fit()
-#print res1.params
-#print np.polyfit(x1[:,0], y1, 1)
-#assert_almost_equal(res1.params, np.polyfit(x1[:,0], y1, 1), 14)
-#print res1.summary(xname=['x1','const1'])
-
-#regression 2
-x2 = 0.1+np.random.randn(nobs)
-if example == 'null':
- y2 = 10 + 15*x2 + 2*np.random.randn(nobs) # if H0 is true
-elif example == 'smalldiff':
- y2 = 11 + 16*x2 + 2*np.random.randn(nobs)
-elif example == 'mediumdiff':
- y2 = 12 + 16*x2 + 2*np.random.randn(nobs)
-else:
- y2 = 19 + 17*x2 + 2*np.random.randn(nobs)
-
-x2 = sm.add_constant(x2)
-
-# stack
-x = np.concatenate((x1,x2),0)
-y = np.concatenate((y1,y2))
-if example_groups == '2':
- groupind = (np.arange(2*nobs)>nobs-1).astype(int)
-else:
- groupind = np.mod(np.arange(2*nobs),4)
- groupind.sort()
-#x = np.column_stack((x,x*groupind[:,None]))
-
-res1 = sm.OLS(y, x).fit()
-skip = 8
-
-rresid, rparams, rypred, rresid_standardized, rresid_scaled, rcusum, rcusumci = \
- recursive_olsresiduals(res1, skip)
-print rcusum
-print rresid_scaled[skip-1:]
-
-assert_almost_equal(rparams[-1], res1.params)
-
-import matplotlib.pyplot as plt
-plt.plot(rcusum)
-plt.plot(rcusumci[0])
-plt.plot(rcusumci[1])
-plt.figure()
-plt.plot(rresid)
-plt.plot(np.abs(rresid))
-
-print 'cusum test reject:'
-print ((rcusum[1:]>rcusumci[1])|(rcusum[1:]>> dir(form)
-['_Formula__namespace', '__add__', '__call__', '__class__',
-'__delattr__', '__dict__', '__doc__', '__getattribute__',
-'__getitem__', '__hash__', '__init__', '__module__', '__mul__',
-'__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__',
-'__str__', '__sub__', '__weakref__', '_del_namespace',
-'_get_namespace', '_names', '_set_namespace', '_termnames',
-'_terms_changed', 'design', 'hasterm', 'names', 'namespace',
-'termcolumns', 'termnames', 'terms']
-
->>> form.design().shape
-(40, 10)
->>> form.termnames()
-['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']
->>> form.namespace.keys()
-['A', 'C', 'B', 'E', 'D', 'G', 'F', 'I', 'H', 'J']
->>> form.names()
-['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']
-
->>> form.termcolumns(formula.Term('C'))
-[2]
->>> form.termcolumns('C')
-Traceback (most recent call last):
- File "", line 1, in
- form.termcolumns('C')
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental\scikits\statsmodels\sandbox\formula.py", line 494, in termcolumns
- raise ValueError, 'term not in formula'
-ValueError: term not in formula
-
-
-'''
-print form.hasterm('C')
-print form.termcolumns(formula.Term('C')) #doesn't work with string argument
-
-#Example: use two columns and get contrast
-
-f2 = (form['A']+form['B'])
-print f2
-print repr(f2)
-f2.namespace.keys() #namespace is still empty
-f2.namespace = namespace #associate data
-f2.namespace.keys()
-f2.design().shape
-contrast.Contrast(formula.Term('A'), f2).matrix
-
-'''
->>> f2 = (form['A']+form['B'])
->>> print f2
-
->>> print repr(f2)
-
->>> f2.namespace.keys() #namespace is still empty
-[]
->>> f2.namespace = namespace #associate data
->>> f2.namespace.keys()
-['A', 'C', 'B', 'E', 'D', 'G', 'F', 'I', 'H', 'J']
->>> f2.design().shape
-(40, 2)
->>> contrast.Contrast(formula.Term('A'), f2).matrix
-array([ 1., 0.])
-'''
-
-#Example: product of terms
-#-------------------------
-
-f3 = (form['A']*form['B'])
-f3.namespace
-f3.namespace = namespace
-f3.design().shape
-np.min(np.abs(f3.design() - f2.design().prod(1)))
-
-'''
->>> f3 = (form['A']*form['B'])
->>> f3.namespace
-{}
->>> f3.namespace = namespace
->>> f3.design().shape
-(40,)
->>> np.min(np.abs(f3.design() - f2.design().prod(1)))
-0.0
-'''
-
-#Example: Interactions of two terms
-#----------------------------------
-
-#I don't get contrast of product term
-
-f4 = formula.interactions([form['A'],form['B']])
-f4.namespace
-f4.namespace = namespace
-print f4
-f4.names()
-f4.design().shape
-
-contrast.Contrast(formula.Term('A'), f4).matrix
-#contrast.Contrast(formula.Term('A*B'), f4).matrix
-
-'''
->>> formula.interactions([form['A'],form['B']])
-
->>> f4 = formula.interactions([form['A'],form['B']])
->>> f4.namespace
-{}
->>> f4.namespace = namespace
->>> print f4
-
->>> f4.names()
-['A*B', 'A', 'B']
->>> f4.design().shape
-(40, 3)
-
->>> contrast.Contrast(formula.Term('A'), f4).matrix
-array([ 0.00000000e+00, 1.00000000e+00, 7.63278329e-17])
->>> contrast.Contrast(formula.Term('A*B'), f4).matrix
-Traceback (most recent call last):
- File "c:\...\scikits\statsmodels\sandbox\contrast_old.py", line 112, in _get_matrix
- self.compute_matrix()
- File "c:\...\scikits\statsmodels\sandbox\contrast_old.py", line 91, in compute_matrix
- T = np.transpose(np.array(t(*args, **kw)))
- File "c:\...\scikits\statsmodels\sandbox\formula.py", line 150, in __call__
- If the term has no 'func' attribute, it returns
-KeyError: 'A*B'
-'''
-
-
-
-#Other
-#-----
-
-'''Exception if there is no data or key:
->>> contrast.Contrast(formula.Term('a'), f2).matrix
-Traceback (most recent call last):
- File "c:\..\scikits\statsmodels\sandbox\contrast_old.py", line 112, in _get_matrix
- self.compute_matrix()
- File "c:\...\scikits\statsmodels\sandbox\contrast_old.py", line 91, in compute_matrix
- T = np.transpose(np.array(t(*args, **kw)))
- File "c:\...\scikits\statsmodels\sandbox\formula.py", line 150, in __call__
- If the term has no 'func' attribute, it returns
-KeyError: 'a'
-'''
-
-
-f = ['a']*3 + ['b']*3 + ['c']*2
-fac = formula.Factor('ff', f)
-fac.namespace = {'ff':f}
-
-
-#Example: formula with factor
-
-# I don't manage to combine factors with formulas, e.g. a joint
-# designmatrix
-# also I don't manage to get contrast matrices with factors
-# it looks like I might have to add namespace for dummies myself ?
-# even then combining still doesn't work
-
-f5 = formula.Term('A') + fac
-namespace['A'] = form.namespace['A']
-
-formula.Formula(fac).design()
-'''
->>> formula.Formula(fac).design()
-array([[ 1., 0., 0.],
- [ 1., 0., 0.],
- [ 1., 0., 0.],
- [ 0., 1., 0.],
- [ 0., 1., 0.],
- [ 0., 1., 0.],
- [ 0., 0., 1.],
- [ 0., 0., 1.]])
-
-
->>> contrast.Contrast(formula.Term('(ff==a)'), fac).matrix
-Traceback (most recent call last):
- File "c:\...\scikits\statsmodels\sandbox\contrast_old.py", line 112, in _get_matrix
- self.compute_matrix()
- File "c:\...\scikits\statsmodels\sandbox\contrast_old.py", line 91, in compute_matrix
- T = np.transpose(np.array(t(*args, **kw)))
- File "c:\...\scikits\statsmodels\sandbox\formula.py", line 150, in __call__
- If the term has no 'func' attribute, it returns
-KeyError: '(ff==a)'
-'''
-
-#convert factor to formula
-
-f7 = formula.Formula(fac)
-# explicit updating of namespace with
-f7.namespace.update(dict(zip(fac.names(),fac())))
-
-# contrast matrix with 2 of 3 terms
-contrast.Contrast(formula.Term('(ff==b)')+formula.Term('(ff==a)'), f7).matrix
-#array([[ 1., 0., 0.],
-# [ 0., 1., 0.]])
-
-# contrast matrix for all terms
-contrast.Contrast(f7, f7).matrix
-#array([[ 1., 0., 0.],
-# [ 0., 1., 0.],
-# [ 0., 0., 1.]])
-
-# contrast matrix for difference groups 1,2 versus group 0
-contrast.Contrast(formula.Term('(ff==b)')+formula.Term('(ff==c)'), f7).matrix - contrast.Contrast(formula.Term('(ff==a)'), f7).matrix
-#array([[-1., 1., 0.],
-# [-1., 0., 1.]])
-
-
-# all pairwise contrasts
-cont = []
-for i,j in zip(*np.triu_indices(len(f7.names()),1)):
- ci = contrast.Contrast(formula.Term(f7.names()[i]), f7).matrix
- ci -= contrast.Contrast(formula.Term(f7.names()[j]), f7).matrix
- cont.append(ci)
-
-cont = np.array(cont)
-cont
-#array([[ 1., -1., 0.],
-# [ 1., 0., -1.],
-# [ 0., 1., -1.]])
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/ex_formula_factor.py b/statsmodels/scikits/statsmodels/sandbox/examples/ex_formula_factor.py
deleted file mode 100644
index 20c3802..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/ex_formula_factor.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sat May 15 19:59:42 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-
-from scikits.statsmodels.sandbox import formula
-import scikits.statsmodels.sandbox.contrast_old as contrast
-
-
-
-#define a categorical variable - factor
-
-
-f0 = ['a','b','c']*4
-f = ['a']*4 + ['b']*3 + ['c']*4
-fac = formula.Factor('ff', f)
-fac.namespace = {'ff':f}
-fac.values()
-[f for f in dir(fac) if f[0] != '_']
-
-#create dummy variable
-
-fac.get_columns().shape
-fac.get_columns().T
-
-#this is a way of encoding effects from a categorical variable
-#different from using dummy variables
-#I never seen a reference for this.
-
-fac.main_effect(reference=1)
-#dir(fac.main_effect(reference=1))
-fac.main_effect(reference=1)()
-#fac.main_effect(reference=1).func
-fac.main_effect(reference=1).names()
-fac.main_effect(reference=2).names()
-fac.main_effect(reference=2)().shape
-
-#columns for the design matrix
-
-fac.main_effect(reference=2)().T
-fac.names()
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/ex_kaplan_meier.py b/statsmodels/scikits/statsmodels/sandbox/examples/ex_kaplan_meier.py
deleted file mode 100644
index 1216b8c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/ex_kaplan_meier.py
+++ /dev/null
@@ -1,122 +0,0 @@
-#An example for the Kaplan-Meier estimator
-import scikits.statsmodels.api as sm
-import matplotlib.pyplot as plt
-import numpy as np
-from scikits.statsmodels.sandbox.survival2 import KaplanMeier
-
-#Getting the strike data as an array
-dta = sm.datasets.strikes.load()
-print 'basic data'
-print '\n'
-dta = dta.values()[-1]
-print dta[range(5),:]
-print '\n'
-
-#Create the KaplanMeier object and fit the model
-
-km = KaplanMeier(dta,0)
-km.fit()
-
-#show the results
-
-km.plot()
-print 'basic model'
-print '\n'
-km.summary()
-print '\n'
-
-#Mutiple survival curves
-
-km2 = KaplanMeier(dta,0,exog=1)
-km2.fit()
-print 'more than one curve'
-print '\n'
-km2.summary()
-print '\n'
-km2.plot()
-
-#with censoring
-
-censoring = np.ones_like(dta[:,0])
-censoring[dta[:,0] > 80] = 0
-dta = np.c_[dta,censoring]
-print 'with censoring'
-print '\n'
-print dta[range(5),:]
-print '\n'
-km3 = KaplanMeier(dta,0,exog=1,censoring=2)
-km3.fit()
-km3.summary()
-print '\n'
-km3.plot()
-
-#Test for difference of survival curves
-
-log_rank = km3.test_diff([0.0645,-0.03957])
-print 'log rank test'
-print '\n'
-print log_rank
-print '\n'
-
-#The zeroth element of log_rank is the chi-square test statistic
-#for the difference between the survival curves for exog = 0.0645
-#and exog = -0.03957, the index one element is the degrees of freedom for
-#the test, and the index two element is the p-value for the test
-
-wilcoxon = km3.test_diff([0.0645,-0.03957], rho=1)
-print 'Wilcoxon'
-print '\n'
-print wilcoxon
-print '\n'
-
-#Same info as log_rank, but for Peto and Peto modification to the
-#Gehan-Wilcoxon test
-
-#User specified functions for tests
-
-#A wider range of rates can be accessed by using the 'weight' parameter
-#for the test_diff method
-
-#For example, if the desire weights are S(t)*(1-S(t)), where S(t) is a pooled
-#estimate for the survival function, this could be computed by doing
-
-def weights(t):
- #must accept one arguement, even though it is not used here
- s = KaplanMeier(dta,0,censoring=2)
- s.fit()
- s = s.results[0][0]
- s = s * (1 - s)
- return s
-
-#KaplanMeier provides an array of times to the weighting function
-#internally, so the weighting function must accept one arguement
-
-test = km3.test_diff([0.0645,-0.03957], weight=weights)
-print 'user specified weights'
-print '\n'
-print test
-print '\n'
-
-#Groups with nan names
-
-#These can be handled by passing the data to KaplanMeier as an array of strings
-
-groups = np.ones_like(dta[:,1])
-groups = groups.astype('S4')
-groups[dta[:,1] > 0] = 'high'
-groups[dta[:,1] <= 0] = 'low'
-dta = dta.astype('S4')
-dta[:,1] = groups
-print 'with nan group names'
-print '\n'
-print dta[range(5),:]
-print '\n'
-km4 = KaplanMeier(dta,0,exog=1,censoring=2)
-km4.fit()
-km4.summary()
-print '\n'
-km4.plot()
-
-#show all the plots
-
-plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/ex_onewaygls.py b/statsmodels/scikits/statsmodels/sandbox/examples/ex_onewaygls.py
deleted file mode 100644
index 8deb7a2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/ex_onewaygls.py
+++ /dev/null
@@ -1,196 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Example: Test for equality of coefficients across groups/regressions
-
-
-Created on Sat Mar 27 22:36:51 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-from scipy import stats
-#from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox.regression.onewaygls import OneWayLS
-
-#choose example
-#--------------
-example = ['null', 'diff'][1] #null: identical coefficients across groups
-example_size = [10, 100][0]
-example_size = [(10,2), (100,2)][0]
-example_groups = ['2', '2-2'][1]
-#'2-2': 4 groups,
-# groups 0 and 1 and groups 2 and 3 have identical parameters in DGP
-
-#generate example
-#----------------
-np.random.seed(87654589)
-nobs, nvars = example_size
-x1 = np.random.normal(size=(nobs, nvars))
-y1 = 10 + np.dot(x1,[15.]*nvars) + 2*np.random.normal(size=nobs)
-
-x1 = sm.add_constant(x1) #, prepend=True)
-#assert_almost_equal(x1, np.vander(x1[:,0],2), 16)
-#res1 = sm.OLS(y1, x1).fit()
-#print res1.params
-#print np.polyfit(x1[:,0], y1, 1)
-#assert_almost_equal(res1.params, np.polyfit(x1[:,0], y1, 1), 14)
-#print res1.summary(xname=['x1','const1'])
-
-#regression 2
-x2 = np.random.normal(size=(nobs,nvars))
-if example == 'null':
- y2 = 10 + np.dot(x2,[15.]*nvars) + 2*np.random.normal(size=nobs) # if H0 is true
-else:
- y2 = 19 + np.dot(x2,[17.]*nvars) + 2*np.random.normal(size=nobs)
-
-x2 = sm.add_constant(x2)
-
-# stack
-x = np.concatenate((x1,x2),0)
-y = np.concatenate((y1,y2))
-if example_groups == '2':
- groupind = (np.arange(2*nobs)>nobs-1).astype(int)
-else:
- groupind = np.mod(np.arange(2*nobs),4)
- groupind.sort()
-#x = np.column_stack((x,x*groupind[:,None]))
-
-
-def print_results(res):
- groupind = res.groups
- #res.fitjoint() #not really necessary, because called by ftest_summary
- ft = res.ftest_summary()
- #print ft[0] #skip because table is nicer
- print '\nTable of F-tests for overall or pairwise equality of coefficients'
-## print 'hypothesis F-statistic p-value df_denom df_num reject'
-## for row in ft[1]:
-## print row,
-## if row[1][1]<0.05:
-## print '*'
-## else:
-## print ''
- from scikits.statsmodels.iolib import SimpleTable
- print SimpleTable([(['%r'%(row[0],)]
- + list(row[1])
- + ['*']*(row[1][1]>0.5).item() ) for row in ft[1]],
- headers=['pair', 'F-statistic','p-value','df_denom',
- 'df_num'])
-
- print 'Notes: p-values are not corrected for many tests'
- print ' (no Bonferroni correction)'
- print ' * : reject at 5% uncorrected confidence level'
- print 'Null hypothesis: all or pairwise coefficient are the same'
- print 'Alternative hypothesis: all coefficients are different'
-
- print '\nComparison with stats.f_oneway'
- print stats.f_oneway(*[y[groupind==gr] for gr in res.unique])
- print '\nLikelihood Ratio Test'
- print 'likelihood ratio p-value df'
- print res.lr_test()
- print 'Null model: pooled all coefficients are the same across groups,'
- print 'Alternative model: all coefficients are allowed to be different'
- print 'not verified but looks close to f-test result'
-
- print '\nOls parameters by group from individual, separate ols regressions'
- for group in sorted(res.olsbygroup):
- r = res.olsbygroup[group]
- print group, r.params
-
- print '\nCheck for heteroscedasticity, '
- print 'variance and standard deviation for individual regressions'
- print ' '*12, ' '.join('group %-10s' %(gr) for gr in res.unique)
- print 'variance ', res.sigmabygroup
- print 'standard dev', np.sqrt(res.sigmabygroup)
-
-#now added to class
-def print_results2(res):
- groupind = res.groups
- #res.fitjoint() #not really necessary, because called by ftest_summary
- ft = res.ftest_summary()
- txt = ''
- #print ft[0] #skip because table is nicer
- templ = \
-'''Table of F-tests for overall or pairwise equality of coefficients'
-%(tab)s
-
-
-Notes: p-values are not corrected for many tests
- (no Bonferroni correction)
- * : reject at 5%% uncorrected confidence level
-Null hypothesis: all or pairwise coefficient are the same'
-Alternative hypothesis: all coefficients are different'
-
-
-Comparison with stats.f_oneway
-%(statsfow)s
-
-
-Likelihood Ratio Test
-%(lrtest)s
-Null model: pooled all coefficients are the same across groups,'
-Alternative model: all coefficients are allowed to be different'
-not verified but looks close to f-test result'
-
-
-Ols parameters by group from individual, separate ols regressions'
-%(olsbg)s
-for group in sorted(res.olsbygroup):
- r = res.olsbygroup[group]
- print group, r.params
-
-
-Check for heteroscedasticity, '
-variance and standard deviation for individual regressions'
-%(grh)s
-variance ', res.sigmabygroup
-standard dev', np.sqrt(res.sigmabygroup)
-'''
-
- from scikits.statsmodels.iolib import SimpleTable
- resvals = {}
- resvals['tab'] = str(SimpleTable([(['%r'%(row[0],)]
- + list(row[1])
- + ['*']*(row[1][1]>0.5).item() ) for row in ft[1]],
- headers=['pair', 'F-statistic','p-value','df_denom',
- 'df_num']))
- resvals['statsfow'] = str(stats.f_oneway(*[y[groupind==gr] for gr in
- res.unique]))
- #resvals['lrtest'] = str(res.lr_test())
- resvals['lrtest'] = str(SimpleTable([res.lr_test()],
- headers=['likelihood ratio', 'p-value', 'df'] ))
-
- resvals['olsbg'] = str(SimpleTable([[group]
- + res.olsbygroup[group].params.tolist()
- for group in sorted(res.olsbygroup)]))
- resvals['grh'] = str(SimpleTable(np.vstack([res.sigmabygroup,
- np.sqrt(res.sigmabygroup)]),
- headers=res.unique.tolist()))
-
- return templ % resvals
-
-
-
-#get results for example
-#-----------------------
-
-print '\nTest for equality of coefficients for all exogenous variables'
-print '-------------------------------------------------------------'
-res = OneWayLS(y,x, groups=groupind.astype(int))
-print_results(res)
-
-print '\n\nOne way ANOVA, constant is the only regressor'
-print '---------------------------------------------'
-
-print 'this is the same as scipy.stats.f_oneway'
-res = OneWayLS(y,np.ones(len(y)), groups=groupind)
-print_results(res)
-
-
-print '\n\nOne way ANOVA, constant is the only regressor with het is true'
-print '--------------------------------------------------------------'
-
-print 'this is the similar to scipy.stats.f_oneway,'
-print 'but variance is not assumed to be the same across groups'
-res = OneWayLS(y,np.ones(len(y)), groups=groupind.astype(str), het=True)
-print_results(res)
-print res.print_summary() #(res)
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_gam.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_gam.py
deleted file mode 100644
index 4ff8de7..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_gam.py
+++ /dev/null
@@ -1,87 +0,0 @@
-'''example for checking how far GAM work, GAM is incompletely fixed
-
-Note: uncomment plt.show() to display graphs
-'''
-#FIXME problems calling GLM, 3rd parameter missing
-
-
-# convert to script for testing, so we get interactive variable access
-example = 3 # 1,2 or 3
-
-import numpy as np
-import numpy.random as R
-from scikits.statsmodels.sandbox.gam import AdditiveModel
-from scikits.statsmodels.sandbox.gam import Model as GAM #?
-from scikits.statsmodels.genmod.families import family
-from scikits.statsmodels.genmod.glm import GLM
-
-standardize = lambda x: (x - x.mean()) / x.std()
-demean = lambda x: (x - x.mean())
-x1 = R.standard_normal(500)
-x1.sort()
-x2 = R.standard_normal(500)
-x2.sort()
-y = R.standard_normal((500,))
-
-f1 = lambda x1: (x1 + x1**2 - 3 - 1.5 * x1**3 + np.exp(-x1))
-f2 = lambda x2: (x2 + x2**2 - np.exp(x2))
-z = standardize(f1(x1)) + standardize(f2(x2))
-z = standardize(z) * 0.1
-
-y += z
-d = np.array([x1,x2]).T
-
-
-if example == 1:
- print "normal"
- m = AdditiveModel(d)
- m.fit(y)
- x = np.linspace(-2,2,50)
-
- print m
-
-import scipy.stats, time
-
-if example == 2:
- print "binomial"
- f = family.Binomial()
- b = np.asarray([scipy.stats.bernoulli.rvs(p) for p in f.link.inverse(y)])
- b.shape = y.shape
- m = GAM(b, d, family=f)
- toc = time.time()
- m.fit(b)
- tic = time.time()
- print tic-toc
-
-
-if example == 3:
- print "Poisson"
- f = family.Poisson()
- p = np.asarray([scipy.stats.poisson.rvs(p) for p in f.link.inverse(y)])
- p.shape = y.shape
- m = GAM(p, d, family=f)
- toc = time.time()
- m.fit(p)
- tic = time.time()
- print tic-toc
-
-import matplotlib.pyplot as plt
-plt.figure(num=1)
-plt.plot(x1, standardize(m.smoothers[0](x1)), 'r')
-plt.plot(x1, standardize(f1(x1)), linewidth=2)
-plt.figure(num=2)
-plt.plot(x2, standardize(m.smoothers[1](x2)), 'r')
-plt.plot(x2, standardize(f2(x2)), linewidth=2)
-
-#plt.show()
-
-
-
-## pylab.figure(num=1)
-## pylab.plot(x1, standardize(m.smoothers[0](x1)), 'b')
-## pylab.plot(x1, standardize(f1(x1)), linewidth=2)
-## pylab.figure(num=2)
-## pylab.plot(x2, standardize(m.smoothers[1](x2)), 'b')
-## pylab.plot(x2, standardize(f2(x2)), linewidth=2)
-## pylab.show()
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_garch.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_garch.py
deleted file mode 100644
index b2b83a2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_garch.py
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-import numpy as np
-
-import matplotlib.pyplot as plt
-#import scikits.timeseries as ts
-#import scikits.timeseries.lib.plotlib as tpl
-
-import scikits.statsmodels.api as sm
-#from scikits.statsmodels.sandbox import tsa
-from scikits.statsmodels.sandbox.tsa.garch import * # local import
-
-#dta2 = ts.tsfromtxt(r'gspc_table.csv',
-# datecols=0, skiprows=0, delimiter=',',names=True, freq='D')
-
-#print dta2
-
-aa=np.genfromtxt(r'gspc_table.csv',skiprows=0, delimiter=',',names=True)
-
-cl = aa['Close']
-ret = np.diff(np.log(cl))[-2000:]*1000.
-
-ggmod = Garch(ret - ret.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod.nar = 1
-ggmod.nma = 1
-ggmod._start_params = np.array([-0.1, 0.1, 0.1, 0.1])
-ggres = ggmod.fit(start_params=np.array([-0.1, 0.1, 0.1, 0.0]), maxiter=1000,method='bfgs')
-print 'ggres.params', ggres.params
-garchplot(ggmod.errorsest, ggmod.h, title='Garch estimated')
-
-
-from rpy import r
-r.library('fGarch')
-f = r.formula('~garch(1, 1)')
-fit = r.garchFit(f, data = ret - ret.mean(), include_mean=False)
-f = r.formula('~arma(1,1) + ~garch(1, 1)')
-fit = r.garchFit(f, data = ret)
-
-
-ggmod0 = Garch0(ret - ret.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod0.nar = 1
-ggmod.nma = 1
-start_params = np.array([-0.1, 0.1, ret.var()])
-ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
-ggres0 = ggmod0.fit(start_params=start_params, maxiter=2000)
-print 'ggres0.params', ggres0.params
-
-g11res = optimize.fmin(lambda params: -loglike_GARCH11(params, ret - ret.mean())[0], [0.01, 0.1, 0.1])
-print g11res
-llf = loglike_GARCH11(g11res, ret - ret.mean())
-print llf[0]
-
-
-ggmod0 = Garch0(ret - ret.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod0.nar = 2
-ggmod.nma = 2
-start_params = np.array([-0.1,-0.1, 0.1, 0.1, ret.var()])
-ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
-ggres0 = ggmod0.fit(start_params=start_params, maxiter=2000)#, method='ncg')
-print 'ggres0.params', ggres0.params
-
-ggmod = Garch(ret - ret.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod.nar = 2
-ggmod.nma = 2
-start_params = np.array([-0.1,-0.1, 0.1, 0.1, 0.1, 0.1, 0.1])
-ggmod._start_params = start_params
-ggres = ggmod.fit(start_params=start_params, maxiter=1000)#,method='bfgs')
-print 'ggres.params', ggres.params
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_maxent.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_maxent.py
deleted file mode 100644
index c7fada4..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_maxent.py
+++ /dev/null
@@ -1,50 +0,0 @@
-"""
-This is an example of using scipy.maxentropy to solve Jaynes' dice problem
-
-See Golan, Judge, and Miller Section 2.3
-"""
-
-from scipy import maxentropy
-import numpy as np
-
-samplespace = [1., 2., 3., 4., 5., 6.]
-def sump(x):
- return x in samplespace
-
-def meanp(x):
- return np.mean(x)
-# Set the constraints
-# 1) We have a proper probability
-# 2) The mean is equal to...
-F = [sump, meanp]
-model = maxentropy.model(F, samplespace)
-
-# set the desired feature expectations
-K = np.ones((5,2))
-K[:,1] = [2.,3.,3.5,4.,5.]
-
-model.verbose = False
-
-for i in range(K.shape[0]):
- model.fit(K[i])
-
- # Output the distribution
- print "\nFitted model parameters are:\n" + str(model.params)
- print "\nFitted distribution is:"
- p = model.probdist()
- for j in range(len(model.samplespace)):
- x = model.samplespace[j]
- print "y = %-15s\tx = %-15s" %(str(K[i,1])+":",str(x) + ":") + \
- " p(x) = "+str(p[j])
-
- # Now show how well the constraints are satisfied:
- print
- print "Desired constraints:"
- print "\tsum_{i}p_{i}= 1"
- print "\tE[X] = %-15s" % str(K[i,1])
- print
- print "Actual expectations under the fitted model:"
- print "\tsum_{i}p_{i} =", np.sum(p)
- print "\tE[X] = " + str(np.sum(p*np.arange(1,7)))
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_mle.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_mle.py
deleted file mode 100644
index 7467e5b..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_mle.py
+++ /dev/null
@@ -1,68 +0,0 @@
-'''Examples to compare MLE with OLS
-
-TODO: compare standard error of parameter estimates
-'''
-
-from scipy import optimize
-import numpy as np
-import scikits.statsmodels.base.model as models
-
-print '\nExample 1: Artificial Data'
-print '--------------------------\n'
-import scikits.statsmodels.api as sm
-
-np.random.seed(54321)
-X = np.random.rand(40,2)
-X = sm.add_constant(X)
-beta = np.array((3.5, 5.7, 150))
-Y = np.dot(X,beta) + np.random.standard_normal(40)
-mod2 = sm.OLS(Y,X)
-res2 = mod2.fit()
-f2 = lambda params: -1*mod2.loglike(params)
-resfmin = optimize.fmin(f2, np.ones(3), ftol=1e-10)
-print 'OLS'
-print res2.params
-print 'MLE'
-print resfmin
-
-
-
-print '\nExample 2: Longley Data, high multicollinearity'
-print '-----------------------------------------------\n'
-
-from scikits.statsmodels.datasets.longley import load
-data = load()
-data.exog = sm.add_constant(data.exog)
-mod = sm.OLS(data.endog, data.exog)
-f = lambda params: -1*mod.loglike(params)
-score = lambda params: -1*mod.score(params)
-
-#now you're set up to try and minimize or root find, but I couldn't get this one to work
-#note that if you want to get the results, it's also a property of mod, so you can do
-
-res = mod.fit()
-#print mod.results.params
-print 'OLS'
-print mod._results.params
-print 'MLE'
-#resfmin2 = optimize.fmin(f, mod.results.params*0.9, maxfun=5000, maxiter=5000, xtol=1e-10, ftol= 1e-10)
-resfmin2 = optimize.fmin(f, np.ones(7), maxfun=5000, maxiter=5000, xtol=1e-10, ftol= 1e-10)
-print resfmin2
-# there isn't a unique solution? Is this due to the multicollinearity? Improved with use of analytically
-# defined score function?
-
-#check X'X matrix
-xtxi = np.linalg.inv(np.dot(data.exog.T,data.exog))
-eval, evec = np.linalg.eig(xtxi)
-print 'Eigenvalues'
-print eval
-# look at correlation
-print 'correlation matrix'
-print np.corrcoef(data.exog[:,:-1], rowvar=0) #exclude constant
-# --> conclusion high multicollinearity
-
-# compare
-print 'with matrix formula'
-print np.dot(xtxi,np.dot(data.exog.T, data.endog[:,np.newaxis])).ravel()
-print 'with pinv'
-print np.dot(np.linalg.pinv(data.exog), data.endog[:,np.newaxis]).ravel()
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_pca.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_pca.py
deleted file mode 100644
index 3afea0e..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_pca.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env python
-
-import numpy as np
-from scikits.statsmodels.sandbox.pca import Pca
-
-x=np.random.randn(1000)
-y=x*2.3+5+np.random.randn(1000)
-z=x*3.1+2.1*y+np.random.randn(1000)/2
-
-#create the Pca object - requires a p x N array as the input
-p=Pca((x,y,z))
-print 'energies:',p.getEnergies()
-print 'vecs:',p.getEigenvectors()
-print 'projected data',p.project(vals=np.ones((3,10)))
-
-
-#p.plot2d() #requires matplotlib
-#from matplotlib import pyplot as plt
-#plt.show() #necessary for script
-
-#p.plot3d() #requires mayavi
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_pca_regression.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_pca_regression.py
deleted file mode 100644
index 53859a9..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_pca_regression.py
+++ /dev/null
@@ -1,111 +0,0 @@
-'''Example: Principal Component Regression
-
-* simulate model with 2 factors and 4 explanatory variables
-* use pca to extract factors from data,
-* run OLS on factors,
-* use information criteria to choose "best" model
-
-Warning: pca sorts factors by explaining variance in explanatory variables,
-which are not necessarily the most important factors for explaining the
-endogenous variable.
-
-# try out partial correlation for dropping (or adding) factors
-# get algorithm for partial least squares as an alternative to PCR
-
-'''
-
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox.tools import pca
-from scikits.statsmodels.sandbox.tools.cross_val import LeaveOneOut
-
-
-# Example: principal component regression
-nobs = 1000
-f0 = np.c_[np.random.normal(size=(nobs,2)), np.ones((nobs,1))]
-f2xcoef = np.c_[np.repeat(np.eye(2),2,0),np.arange(4)[::-1]].T
-f2xcoef = np.array([[ 1., 1., 0., 0.],
- [ 0., 0., 1., 1.],
- [ 3., 2., 1., 0.]])
-f2xcoef = np.array([[ 0.1, 3., 1., 0.],
- [ 0., 0., 1.5, 0.1],
- [ 3., 2., 1., 0.]])
-x0 = np.dot(f0, f2xcoef)
-x0 += 0.1*np.random.normal(size=x0.shape)
-ytrue = np.dot(f0,[1., 1., 1.])
-y0 = ytrue + 0.1*np.random.normal(size=ytrue.shape)
-
-xred, fact, eva, eve = pca(x0, keepdim=0)
-print eve
-print fact[:5]
-print f0[:5]
-
-import scikits.statsmodels.api as sm
-
-res = sm.OLS(y0, sm.add_constant(x0)).fit()
-print 'OLS on original data'
-print res.params
-print res.aic
-print res.rsquared
-
-#print 'OLS on Factors'
-#for k in range(x0.shape[1]):
-# xred, fact, eva, eve = pca(x0, keepdim=k, normalize=1)
-# fact_wconst = sm.add_constant(fact)
-# res = sm.OLS(y0, fact_wconst).fit()
-# print 'k =', k
-# print res.params
-# print 'aic: ', res.aic
-# print 'bic: ', res.bic
-# print 'llf: ', res.llf
-# print 'R2 ', res.rsquared
-# print 'R2 adj', res.rsquared_adj
-
-print 'OLS on Factors'
-results = []
-xred, fact, eva, eve = pca(x0, keepdim=0, normalize=1)
-for k in range(0, x0.shape[1]+1):
- #xred, fact, eva, eve = pca(x0, keepdim=k, normalize=1)
- # this is faster and same result
- fact_wconst = sm.add_constant(fact[:,:k])
- res = sm.OLS(y0, fact_wconst).fit()
-## print 'k =', k
-## print res.params
-## print 'aic: ', res.aic
-## print 'bic: ', res.bic
-## print 'llf: ', res.llf
-## print 'R2 ', res.rsquared
-## print 'R2 adj', res.rsquared_adj
- prederr2 = 0.
- for inidx, outidx in LeaveOneOut(len(y0)):
- resl1o = sm.OLS(y0[inidx], fact_wconst[inidx,:]).fit()
- #print data.endog[outidx], res.model.predict(data.exog[outidx,:]),
- prederr2 += (y0[outidx] - resl1o.model.predict(fact_wconst[outidx,:]))**2.
- results.append([k, res.aic, res.bic, res.rsquared_adj, prederr2])
-
-results = np.array(results)
-print results
-print 'best result for k, by AIC, BIC, R2_adj, L1O'
-print np.r_[(np.argmin(results[:,1:3],0), np.argmax(results[:,3],0),
- np.argmin(results[:,-1],0))]
-
-from scikits.statsmodels.iolib.table import (SimpleTable, default_txt_fmt,
- default_latex_fmt, default_html_fmt)
-
-headers = 'k, AIC, BIC, R2_adj, L1O'.split(', ')
-numformat = ['%6d'] + ['%10.3f']*4 #'%10.4f'
-txt_fmt1 = dict(data_fmts = numformat)
-tabl = SimpleTable(results, headers, None, txt_fmt=txt_fmt1)
-
-print "PCA regression on simulated data,"
-print "DGP: 2 factors and 4 explanatory variables"
-print tabl
-print "Notes: k is number of components of PCA,"
-print " constant is added additionally"
-print " k=0 means regression on constant only"
-print " L1O: sum of squared prediction errors for leave-one-out"
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/example_sysreg.py b/statsmodels/scikits/statsmodels/sandbox/examples/example_sysreg.py
deleted file mode 100644
index 5ce2fdf..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/example_sysreg.py
+++ /dev/null
@@ -1,199 +0,0 @@
-"""Example: scikits.statsmodels.sandbox.sysreg
-"""
-#TODO: this is going to change significantly once we have a panel data structure
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox.sysreg import *
-
-#for Python 3 compatibility
-from scikits.statsmodels.compatnp.py3k import asbytes
-
-# Seemingly Unrelated Regressions (SUR) Model
-
-# This example uses the subset of the Grunfeld data in Greene's Econometric
-# Analysis Chapter 14 (5th Edition)
-
-grun_data = sm.datasets.grunfeld.load()
-
-firms = ['General Motors', 'Chrysler', 'General Electric', 'Westinghouse',
- 'US Steel']
-#for Python 3 compatibility
-firms = map(asbytes, firms)
-
-grun_exog = grun_data.exog
-grun_endog = grun_data.endog
-
-# Right now takes SUR takes a list of arrays
-# The array alternates between the LHS of an equation and RHS side of an
-# equation
-# This is very likely to change
-grun_sys = []
-for i in firms:
- index = grun_exog['firm'] == i
- grun_sys.append(grun_endog[index])
- exog = grun_exog[index][['value','capital']].view(float).reshape(-1,2)
- exog = sm.add_constant(exog, prepend=True)
- grun_sys.append(exog)
-
-# Note that the results in Greene (5th edition) uses a slightly different
-# version of the Grunfeld data. To reproduce Table 14.1 the following changes
-# are necessary.
-grun_sys[-2][5] = 261.6
-grun_sys[-2][-3] = 645.2
-grun_sys[-1][11,2] = 232.6
-
-grun_mod = SUR(grun_sys)
-grun_res = grun_mod.fit()
-print "Results for the 2-step GLS"
-print "Compare to Greene Table 14.1, 5th edition"
-print grun_res.params
-# or you can do an iterative fit
-# you have to define a new model though this will be fixed
-# TODO: note the above
-print "Results for iterative GLS (equivalent to MLE)"
-print "Compare to Greene Table 14.3"
-#TODO: these are slightly off, could be a convergence issue
-# or might use a different default DOF correction?
-grun_imod = SUR(grun_sys)
-grun_ires = grun_imod.fit(igls=True)
-print grun_ires.params
-
-# Two-Stage Least Squares for Simultaneous Equations
-#TODO: we are going to need *some kind* of formula framework
-
-# This follows the simple macroeconomic model given in
-# Greene Example 15.1 (5th Edition)
-# The data however is from statsmodels and is not the same as
-# Greene's
-
-# The model is
-# consumption: c_{t} = \alpha_{0} + \alpha_{1}y_{t} + \alpha_{2}c_{t-1} + \epsilon_{t1}
-# investment: i_{t} = \beta_{0} + \beta_{1}r_{t} + \beta_{2}\left(y_{t}-y_{t-1}\right) + \epsilon_{t2}
-# demand: y_{t} = c_{t} + I_{t} + g_{t}
-
-# See Greene's Econometric Analysis for more information
-
-# Load the data
-macrodata = sm.datasets.macrodata.load().data
-
-# Not needed, but make sure the data is sorted
-macrodata = np.sort(macrodata, order=['year','quarter'])
-
-# Impose the demand restriction
-y = macrodata['realcons'] + macrodata['realinv'] + macrodata['realgovt']
-
-# Build the system
-macro_sys = []
-# First equation LHS
-macro_sys.append(macrodata['realcons'][1:]) # leave off first date
-# First equation RHS
-exog1 = np.column_stack((y[1:],macrodata['realcons'][:-1]))
-#TODO: it might be nice to have "lag" and "lead" functions
-exog1 = sm.add_constant(exog1, prepend=True)
-macro_sys.append(exog1)
-# Second equation LHS
-macro_sys.append(macrodata['realinv'][1:])
-# Second equation RHS
-exog2 = np.column_stack((macrodata['tbilrate'][1:], np.diff(y)))
-exog2 = sm.add_constant(exog2, prepend=True)
-macro_sys.append(exog2)
-
-# We need to say that y_{t} in the RHS of equation 1 is an endogenous regressor
-# We will call these independent endogenous variables
-# Right now, we use a dictionary to declare these
-indep_endog = {0 : [1]}
-
-# We also need to create a design of our instruments
-# This will be done automatically in the future
-instruments = np.column_stack((macrodata[['realgovt',
- 'tbilrate']][1:].view(float).reshape(-1,2),macrodata['realcons'][:-1],
- y[:-1]))
-instruments = sm.add_constant(instruments, prepend=True)
-macro_mod = Sem2SLS(macro_sys, indep_endog=indep_endog, instruments=instruments)
-# Right now this only returns parameters
-macro_params = macro_mod.fit()
-print "The parameters for the first equation are correct."
-print "The parameters for the second equation are not."
-print macro_params
-
-#TODO: Note that the above is incorrect, because we have no way of telling the
-# model that *part* of the y_{t} - y_{t-1} is an independent endogenous variable
-# To correct for this we would have to do the following
-y_instrumented = macro_mod.wexog[0][:,1]
-whitened_ydiff = y_instrumented - y[:-1]
-wexog = np.column_stack((macrodata['tbilrate'][1:],whitened_ydiff))
-wexog = sm.add_constant(wexog, prepend=True)
-correct_params = sm.GLS(macrodata['realinv'][1:], wexog).fit().params
-
-print "If we correctly instrument everything, then these are the parameters"
-print "for the second equation"
-print correct_params
-print "Compare to output of R script statsmodels/sandbox/tests/macrodata.s"
-
-
-### Below is the same example using Greene's data ###
-
-run_greene = 0
-if run_greene:
- try:
- data3 = np.genfromtxt('/home/skipper/school/MetricsII/Greene \
-TableF5-1.txt', names=True)
- except:
- raise ValueError, "Based on Greene TableF5-1. You should download it \
-from his web site and edit this script accordingly."
-
- # Example 15.1 in Greene 5th Edition
-# c_t = constant + y_t + c_t-1
-# i_t = constant + r_t + (y_t - y_t-1)
-# y_t = c_t + i_t + g_t
- sys3 = []
- sys3.append(data3['realcons'][1:]) # have to leave off a beg. date
-# impose 3rd equation on y
- y = data3['realcons'] + data3['realinvs'] + data3['realgovt']
-
- exog1 = np.column_stack((y[1:],data3['realcons'][:-1]))
- exog1 = sm.add_constant(exog1)
- sys3.append(exog1)
- sys3.append(data3['realinvs'][1:])
- exog2 = np.column_stack((data3['tbilrate'][1:],
- np.diff(y)))
- # realint is missing 1st observation
- exog2 = sm.add_constant(exog2)
- sys3.append(exog2)
- indep_endog = {0 : [0]} # need to be able to say that y_1 is an instrument..
- instruments = np.column_stack((data3[['realgovt',
- 'tbilrate']][1:].view(float).reshape(-1,2),data3['realcons'][:-1],
- y[:-1]))
- instruments = sm.add_constant(instruments)
- sem_mod = Sem2SLS(sys3, indep_endog = indep_endog, instruments=instruments)
- sem_params = sem_mod.fit() # first equation is right, but not second?
- # should y_t in the diff be instrumented?
- # how would R know this in the script?
- # well, let's check...
- y_instr = sem_mod.wexog[0][:,0]
- wyd = y_instr - y[:-1]
- wexog = np.column_stack((data3['tbilrate'][1:],wyd))
- wexog = sm.add_constant(wexog)
- params = sm.GLS(data3['realinvs'][1:], wexog).fit().params
-
- print "These are the simultaneous equation estimates for Greene's \
-example 13-1 (Also application 13-1 in 6th edition."
- print sem_params
- print "The first set of parameters is correct. The second set is not."
- print "Compare to the solution manual at \
-http://pages.stern.nyu.edu/~wgreene/Text/econometricanalysis.htm"
- print "The reason is the restriction on (y_t - y_1)"
- print "Compare to R script GreeneEx15_1.s"
- print "Somehow R carries y.1 in yd to know that it needs to be \
-instrumented"
- print "If we replace our estimate with the instrumented one"
- print params
- print "We get the right estimate"
- print "Without a formula framework we have to be able to do restrictions."
-# yep!, but how in the world does R know this when we just fed it yd??
-# must be implicit in the formula framework...
-# we are going to need to keep the two equations separate and use
-# a restrictions matrix. Ugh, is a formula framework really, necessary to get
-# around this?
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/gspc_table.csv b/statsmodels/scikits/statsmodels/sandbox/examples/gspc_table.csv
deleted file mode 100644
index 64a4376..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/gspc_table.csv
+++ /dev/null
@@ -1,15127 +0,0 @@
-Date,Open,High,Low,Close,Volume,Adj Close
-2010-02-12,1075.95,1077.81,1062.97,1075.51,4160680000,1075.51
-2010-02-11,1067.10,1080.04,1060.59,1078.47,4400870000,1078.47
-2010-02-10,1069.68,1073.67,1059.34,1068.13,4251450000,1068.13
-2010-02-09,1060.06,1079.28,1060.06,1070.52,5114260000,1070.52
-2010-02-08,1065.51,1071.20,1056.51,1056.74,4089820000,1056.74
-2010-02-05,1064.12,1067.13,1044.50,1066.19,6438900000,1066.19
-2010-02-04,1097.25,1097.25,1062.78,1063.11,5859690000,1063.11
-2010-02-03,1100.67,1102.72,1093.97,1097.28,4285450000,1097.28
-2010-02-02,1090.05,1104.73,1087.96,1103.32,4749540000,1103.32
-2010-02-01,1073.89,1089.38,1073.89,1089.19,4077610000,1089.19
-2010-01-29,1087.61,1096.45,1071.59,1073.87,5412850000,1073.87
-2010-01-28,1096.93,1100.22,1078.46,1084.53,5452400000,1084.53
-2010-01-27,1091.94,1099.51,1083.11,1097.50,5319120000,1097.50
-2010-01-26,1095.80,1103.69,1089.86,1092.17,4731910000,1092.17
-2010-01-25,1092.40,1102.97,1092.40,1096.78,4481390000,1096.78
-2010-01-22,1115.49,1115.49,1090.18,1091.76,6208650000,1091.76
-2010-01-21,1138.68,1141.58,1114.84,1116.48,6874289600,1116.48
-2010-01-20,1147.95,1147.95,1129.25,1138.04,4810560000,1138.04
-2010-01-19,1136.03,1150.45,1135.77,1150.23,4724830000,1150.23
-2010-01-15,1147.72,1147.77,1131.39,1136.03,4758730000,1136.03
-2010-01-14,1145.68,1150.41,1143.80,1148.46,3915200000,1148.46
-2010-01-13,1137.31,1148.40,1133.18,1145.68,4170360000,1145.68
-2010-01-12,1143.81,1143.81,1131.77,1136.22,4716160000,1136.22
-2010-01-11,1145.96,1149.74,1142.02,1146.98,4255780000,1146.98
-2010-01-08,1140.52,1145.39,1136.22,1144.98,4389590000,1144.98
-2010-01-07,1136.27,1142.46,1131.32,1141.69,5270680000,1141.69
-2010-01-06,1135.71,1139.19,1133.95,1137.14,4972660000,1137.14
-2010-01-05,1132.66,1136.63,1129.66,1136.52,2491020000,1136.52
-2010-01-04,1116.56,1133.87,1116.56,1132.99,3991400000,1132.99
-2009-12-31,1126.60,1127.64,1114.81,1115.10,2076990000,1115.10
-2009-12-30,1125.53,1126.42,1121.94,1126.42,2277300000,1126.42
-2009-12-29,1128.55,1130.38,1126.08,1126.20,2491020000,1126.20
-2009-12-28,1127.53,1130.38,1123.51,1127.78,2716400000,1127.78
-2009-12-24,1121.08,1126.48,1121.08,1126.48,1267710000,1126.48
-2009-12-23,1118.84,1121.58,1116.00,1120.59,3166870000,1120.59
-2009-12-22,1114.51,1120.27,1114.51,1118.02,3641130000,1118.02
-2009-12-21,1105.31,1117.68,1105.31,1114.05,3977340000,1114.05
-2009-12-18,1097.86,1103.74,1093.88,1102.47,6325890000,1102.47
-2009-12-17,1106.36,1106.36,1095.88,1096.08,7615070400,1096.08
-2009-12-16,1108.61,1116.21,1107.96,1109.18,4829820000,1109.18
-2009-12-15,1114.11,1114.11,1105.35,1107.93,5045100000,1107.93
-2009-12-14,1107.84,1114.76,1107.84,1114.11,4548490000,1114.11
-2009-12-11,1103.96,1108.50,1101.34,1106.41,3791090000,1106.41
-2009-12-10,1098.69,1106.25,1098.69,1102.35,3996490000,1102.35
-2009-12-09,1091.07,1097.04,1085.89,1095.95,4115410000,1095.95
-2009-12-08,1103.04,1103.04,1088.61,1091.94,4748030000,1091.94
-2009-12-07,1105.52,1110.72,1100.83,1103.25,4103360000,1103.25
-2009-12-04,1100.43,1119.13,1096.52,1105.98,5781140000,1105.98
-2009-12-03,1110.59,1117.28,1098.74,1099.92,4810030000,1099.92
-2009-12-02,1109.03,1115.58,1105.29,1109.24,3941340000,1109.24
-2009-12-01,1098.89,1112.28,1098.89,1108.86,4249310000,1108.86
-2009-11-30,1091.07,1097.24,1086.25,1095.63,3895520000,1095.63
-2009-11-27,1105.47,1105.47,1083.74,1091.49,2362910000,1091.49
-2009-11-25,1106.49,1111.18,1104.75,1110.63,3036350000,1110.63
-2009-11-24,1105.83,1107.56,1097.63,1105.65,3700820000,1105.65
-2009-11-23,1094.86,1112.38,1094.86,1106.24,3827920000,1106.24
-2009-11-20,1094.66,1094.66,1086.81,1091.38,3751230000,1091.38
-2009-11-19,1106.44,1106.44,1088.40,1094.90,4178030000,1094.90
-2009-11-18,1109.44,1111.10,1102.70,1109.80,4293340000,1109.80
-2009-11-17,1109.22,1110.52,1102.19,1110.32,3824070000,1110.32
-2009-11-16,1094.13,1113.69,1094.13,1109.30,4565850000,1109.30
-2009-11-13,1087.59,1097.79,1085.33,1093.48,3792610000,1093.48
-2009-11-12,1098.31,1101.97,1084.90,1087.24,4160250000,1087.24
-2009-11-11,1096.04,1105.37,1093.81,1098.51,4286700000,1098.51
-2009-11-10,1091.86,1096.42,1087.40,1093.01,4394770000,1093.01
-2009-11-09,1072.31,1093.19,1072.31,1093.08,4460030000,1093.08
-2009-11-06,1064.95,1071.48,1059.32,1069.30,4277130000,1069.30
-2009-11-05,1047.30,1066.65,1047.30,1066.63,4848350000,1066.63
-2009-11-04,1047.14,1061.00,1045.15,1046.50,5635510000,1046.50
-2009-11-03,1040.92,1046.36,1033.94,1045.41,5487500000,1045.41
-2009-11-02,1036.18,1052.18,1029.38,1042.88,6202640000,1042.88
-2009-10-30,1065.41,1065.41,1033.38,1036.19,6512420000,1036.19
-2009-10-29,1043.69,1066.83,1043.69,1066.11,5595040000,1066.11
-2009-10-28,1061.51,1063.26,1042.19,1042.63,6600350000,1042.63
-2009-10-27,1067.54,1072.48,1060.62,1063.41,5337380000,1063.41
-2009-10-26,1080.36,1091.75,1065.23,1066.95,6363380000,1066.95
-2009-10-23,1095.62,1095.83,1075.49,1079.60,4767460000,1079.60
-2009-10-22,1080.96,1095.21,1074.31,1092.91,5192410000,1092.91
-2009-10-21,1090.36,1101.36,1080.77,1081.40,5616290000,1081.40
-2009-10-20,1098.64,1098.64,1086.16,1091.06,5396930000,1091.06
-2009-10-19,1088.22,1100.17,1086.48,1097.91,4619240000,1097.91
-2009-10-16,1094.67,1094.67,1081.53,1087.68,4894740000,1087.68
-2009-10-15,1090.36,1096.56,1086.41,1096.56,5369780000,1096.56
-2009-10-14,1078.68,1093.17,1078.68,1092.02,5406420000,1092.02
-2009-10-13,1074.96,1075.30,1066.71,1073.19,4320480000,1073.19
-2009-10-12,1071.63,1079.46,1071.63,1076.19,3710430000,1076.19
-2009-10-09,1065.28,1071.51,1063.00,1071.49,3763780000,1071.49
-2009-10-08,1060.03,1070.67,1060.03,1065.48,4988400000,1065.48
-2009-10-07,1053.65,1058.02,1050.10,1057.58,4238220000,1057.58
-2009-10-06,1042.02,1060.55,1042.02,1054.72,5029840000,1054.72
-2009-10-05,1026.87,1042.58,1025.92,1040.46,4313310000,1040.46
-2009-10-02,1029.71,1030.60,1019.95,1025.21,5583240000,1025.21
-2009-10-01,1054.91,1054.91,1029.45,1029.85,5791450000,1029.85
-2009-09-30,1061.02,1063.40,1046.47,1057.08,5998860000,1057.08
-2009-09-29,1063.69,1069.62,1057.83,1060.61,4949900000,1060.61
-2009-09-28,1045.38,1065.13,1045.38,1062.98,3726950000,1062.98
-2009-09-25,1049.48,1053.47,1041.17,1044.38,4507090000,1044.38
-2009-09-24,1062.56,1066.29,1045.85,1050.78,5505610000,1050.78
-2009-09-23,1072.69,1080.15,1060.39,1060.87,5531930000,1060.87
-2009-09-22,1066.35,1073.81,1066.35,1071.66,5246600000,1071.66
-2009-09-21,1067.14,1067.28,1057.46,1064.66,4615280000,1064.66
-2009-09-18,1066.60,1071.52,1064.27,1068.30,5607970000,1068.30
-2009-09-17,1067.87,1074.77,1061.20,1065.49,6668110000,1065.49
-2009-09-16,1053.99,1068.76,1052.87,1068.76,6793529600,1068.76
-2009-09-15,1049.03,1056.04,1043.42,1052.63,6185620000,1052.63
-2009-09-14,1040.15,1049.74,1035.00,1049.34,4979610000,1049.34
-2009-09-11,1043.92,1048.18,1038.40,1042.73,4922600000,1042.73
-2009-09-10,1032.99,1044.14,1028.04,1044.14,5191380000,1044.14
-2009-09-09,1025.36,1036.34,1023.97,1033.37,5202550000,1033.37
-2009-09-08,1018.67,1026.07,1018.67,1025.39,5235160000,1025.39
-2009-09-04,1003.84,1016.48,1001.65,1016.40,4097370000,1016.40
-2009-09-03,996.12,1003.43,992.25,1003.24,4624280000,1003.24
-2009-09-02,996.07,1000.34,991.97,994.75,5842730000,994.75
-2009-09-01,1019.52,1028.45,996.28,998.04,6862360000,998.04
-2009-08-31,1025.21,1025.21,1014.62,1020.62,5004560000,1020.62
-2009-08-28,1031.62,1039.47,1023.13,1028.93,5785780000,1028.93
-2009-08-27,1027.81,1033.33,1016.20,1030.98,5785880000,1030.98
-2009-08-26,1027.35,1032.47,1021.57,1028.12,5080060000,1028.12
-2009-08-25,1026.63,1037.75,1026.21,1028.00,5768740000,1028.00
-2009-08-24,1026.59,1035.82,1022.48,1025.57,6302450000,1025.57
-2009-08-21,1009.06,1027.59,1009.06,1026.13,5885550000,1026.13
-2009-08-20,996.41,1008.92,996.39,1007.37,4893160000,1007.37
-2009-08-19,986.88,999.61,980.62,996.46,4257000000,996.46
-2009-08-18,980.62,991.20,980.62,989.67,4198970000,989.67
-2009-08-17,998.18,998.18,978.51,979.73,4088570000,979.73
-2009-08-14,1012.23,1012.60,994.60,1004.09,4940750000,1004.09
-2009-08-13,1005.86,1013.14,1000.82,1012.73,5250660000,1012.73
-2009-08-12,994.00,1012.78,993.36,1005.81,5498170000,1005.81
-2009-08-11,1005.77,1005.77,992.40,994.35,5773160000,994.35
-2009-08-10,1008.89,1010.12,1000.99,1007.10,5406080000,1007.10
-2009-08-07,999.83,1018.00,999.83,1010.48,6827089600,1010.48
-2009-08-06,1004.06,1008.00,992.49,997.08,6753380000,997.08
-2009-08-05,1005.41,1006.64,994.31,1002.72,7242120000,1002.72
-2009-08-04,1001.41,1007.12,996.68,1005.65,5713700000,1005.65
-2009-08-03,990.22,1003.61,990.22,1002.63,5603440000,1002.63
-2009-07-31,986.80,993.18,982.85,987.48,5139070000,987.48
-2009-07-30,976.01,996.68,976.01,986.75,6035180000,986.75
-2009-07-29,977.66,977.76,968.65,975.15,5178770000,975.15
-2009-07-28,981.48,982.35,969.35,979.62,5490350000,979.62
-2009-07-27,978.63,982.49,972.29,982.18,4631290000,982.18
-2009-07-24,972.16,979.79,965.95,979.26,4458300000,979.26
-2009-07-23,954.07,979.42,953.27,976.29,5761650000,976.29
-2009-07-22,953.40,959.83,947.75,954.07,4634100000,954.07
-2009-07-21,951.97,956.53,943.22,954.58,5309300000,954.58
-2009-07-20,942.07,951.62,940.99,951.13,4853150000,951.13
-2009-07-17,940.56,941.89,934.65,940.38,5141380000,940.38
-2009-07-16,930.17,943.96,927.45,940.74,4898640000,940.74
-2009-07-15,910.15,933.95,910.15,932.68,5238830000,932.68
-2009-07-14,900.77,905.84,896.50,905.84,4149030000,905.84
-2009-07-13,879.57,901.05,875.32,901.05,4499440000,901.05
-2009-07-10,880.03,883.57,872.81,879.13,3912080000,879.13
-2009-07-09,881.28,887.86,878.45,882.68,4347170000,882.68
-2009-07-08,881.90,886.80,869.32,879.56,5721780000,879.56
-2009-07-07,898.60,898.60,879.93,881.03,4673300000,881.03
-2009-07-06,894.27,898.72,886.36,898.72,4712580000,898.72
-2009-07-02,921.24,921.24,896.42,896.42,3931000000,896.42
-2009-07-01,920.82,931.92,920.82,923.33,3919400000,923.33
-2009-06-30,927.15,930.01,912.86,919.32,4627570000,919.32
-2009-06-29,919.86,927.99,916.18,927.23,4211760000,927.23
-2009-06-26,918.84,922.00,913.03,918.90,6076660000,918.90
-2009-06-25,899.45,921.42,896.27,920.26,4911240000,920.26
-2009-06-24,896.31,910.85,896.31,900.94,4636720000,900.94
-2009-06-23,893.46,898.69,888.86,895.10,5071020000,895.10
-2009-06-22,918.13,918.13,893.04,893.04,4903940000,893.04
-2009-06-19,919.96,927.09,915.80,921.23,5713390000,921.23
-2009-06-18,910.86,921.93,907.94,918.37,4684010000,918.37
-2009-06-17,911.89,918.44,903.78,910.71,5523650000,910.71
-2009-06-16,925.60,928.00,911.60,911.97,4951200000,911.97
-2009-06-15,942.45,942.45,919.65,923.72,4697880000,923.72
-2009-06-12,943.44,946.30,935.66,946.21,4528120000,946.21
-2009-06-11,939.04,956.23,939.04,944.89,5500840000,944.89
-2009-06-10,942.73,949.77,927.97,939.15,5379420000,939.15
-2009-06-09,940.35,946.92,936.15,942.43,4439950000,942.43
-2009-06-08,938.12,946.33,926.44,939.14,4483430000,939.14
-2009-06-05,945.67,951.69,934.13,940.09,5277910000,940.09
-2009-06-04,932.49,942.47,929.32,942.46,5352890000,942.46
-2009-06-03,942.51,942.51,923.85,931.76,5323770000,931.76
-2009-06-02,942.87,949.38,938.46,944.74,5987340000,944.74
-2009-06-01,923.26,947.77,923.26,942.87,6370440000,942.87
-2009-05-29,907.02,920.02,903.56,919.14,6050420000,919.14
-2009-05-28,892.96,909.45,887.60,906.83,5738980000,906.83
-2009-05-27,909.95,913.84,891.87,893.06,5698800000,893.06
-2009-05-26,887.00,911.76,881.46,910.33,5667050000,910.33
-2009-05-22,888.68,896.65,883.75,887.00,5155320000,887.00
-2009-05-21,900.42,900.42,879.61,888.33,6019840000,888.33
-2009-05-20,908.62,924.60,901.37,903.47,8205060000,903.47
-2009-05-19,909.67,916.39,905.22,908.13,6616270000,908.13
-2009-05-18,886.07,910.00,886.07,909.71,5702150000,909.71
-2009-05-15,892.76,896.97,878.94,882.88,5439720000,882.88
-2009-05-14,884.24,898.36,882.52,893.07,6134870000,893.07
-2009-05-13,905.40,905.40,882.80,883.92,7091820000,883.92
-2009-05-12,910.52,915.57,896.46,908.35,6871750400,908.35
-2009-05-11,922.99,922.99,908.68,909.24,6150600000,909.24
-2009-05-08,909.03,930.17,909.03,929.23,8163280000,929.23
-2009-05-07,919.58,929.58,901.36,907.39,9120100000,907.39
-2009-05-06,903.95,920.28,903.95,919.53,8555040000,919.53
-2009-05-05,906.10,907.70,897.34,903.80,6882860000,903.80
-2009-05-04,879.21,907.85,879.21,907.24,7038840000,907.24
-2009-05-01,872.74,880.48,866.10,877.52,5312170000,877.52
-2009-04-30,876.59,888.70,868.51,872.81,6862540000,872.81
-2009-04-29,856.85,882.06,856.85,873.64,6101620000,873.64
-2009-04-28,854.48,864.48,847.12,855.16,6328000000,855.16
-2009-04-27,862.82,868.83,854.65,857.51,5613460000,857.51
-2009-04-24,853.91,871.80,853.91,866.23,7114440000,866.23
-2009-04-23,844.62,852.87,835.45,851.92,6563100000,851.92
-2009-04-22,847.26,861.78,840.57,843.55,7327860000,843.55
-2009-04-21,831.25,850.09,826.83,850.08,7436489600,850.08
-2009-04-20,868.27,868.27,832.39,832.39,6973960000,832.39
-2009-04-17,865.18,875.63,860.87,869.60,7352009600,869.60
-2009-04-16,854.54,870.35,847.04,865.30,6598670000,865.30
-2009-04-15,839.44,852.93,835.58,852.06,6241100000,852.06
-2009-04-14,856.88,856.88,840.25,841.50,7569840000,841.50
-2009-04-13,855.33,864.31,845.35,858.73,6434890000,858.73
-2009-04-09,829.29,856.91,829.29,856.56,7600710400,856.56
-2009-04-08,816.76,828.42,814.84,825.16,5938460000,825.16
-2009-04-07,834.12,834.12,814.53,815.55,5155580000,815.55
-2009-04-06,839.75,839.75,822.79,835.48,6210000000,835.48
-2009-04-03,835.13,842.50,826.70,842.50,5855640000,842.50
-2009-04-02,814.53,845.61,814.53,834.38,7542809600,834.38
-2009-04-01,793.59,813.62,783.32,811.08,6034140000,811.08
-2009-03-31,790.88,810.48,790.88,797.87,6089100000,797.87
-2009-03-30,809.07,809.07,779.81,787.53,5912660000,787.53
-2009-03-27,828.68,828.68,813.43,815.94,5600210000,815.94
-2009-03-26,814.06,832.98,814.06,832.86,6992960000,832.86
-2009-03-25,806.81,826.78,791.37,813.88,7687180000,813.88
-2009-03-24,820.60,823.65,805.48,806.12,6767980000,806.12
-2009-03-23,772.31,823.37,772.31,822.92,7715769600,822.92
-2009-03-20,784.58,788.91,766.20,768.54,7643720000,768.54
-2009-03-19,797.92,803.24,781.82,784.04,9033870400,784.04
-2009-03-18,776.01,803.04,765.64,794.35,9098449600,794.35
-2009-03-17,753.88,778.12,749.93,778.12,6156800000,778.12
-2009-03-16,758.84,774.53,753.37,753.89,7883540000,753.89
-2009-03-13,751.97,758.29,742.46,756.55,6787089600,756.55
-2009-03-12,720.89,752.63,714.76,750.74,7326630400,750.74
-2009-03-11,719.59,731.92,713.85,721.36,7287809600,721.36
-2009-03-10,679.28,719.60,679.28,719.60,8618329600,719.60
-2009-03-09,680.76,695.27,672.88,676.53,7277320000,676.53
-2009-03-06,684.04,699.09,666.79,683.38,7331830400,683.38
-2009-03-05,708.27,708.27,677.93,682.55,7507249600,682.55
-2009-03-04,698.60,724.12,698.60,712.87,7673620000,712.87
-2009-03-03,704.44,711.67,692.30,696.33,7583230400,696.33
-2009-03-02,729.57,729.57,699.70,700.82,7868289600,700.82
-2009-02-27,749.93,751.27,734.52,735.09,8926480000,735.09
-2009-02-26,765.76,779.42,751.75,752.83,7599969600,752.83
-2009-02-25,770.64,780.12,752.89,764.90,7483640000,764.90
-2009-02-24,744.69,775.49,744.69,773.14,7234489600,773.14
-2009-02-23,773.25,777.85,742.37,743.33,6509300000,743.33
-2009-02-20,775.87,778.69,754.25,770.05,8210590400,770.05
-2009-02-19,787.91,797.58,777.03,778.94,5746940000,778.94
-2009-02-18,791.06,796.17,780.43,788.42,5740710000,788.42
-2009-02-17,818.61,818.61,789.17,789.17,5907820000,789.17
-2009-02-13,833.95,839.43,825.21,826.84,5296650000,826.84
-2009-02-12,829.91,835.48,808.06,835.19,6476460000,835.19
-2009-02-11,827.41,838.22,822.30,833.74,5926460000,833.74
-2009-02-10,866.87,868.05,822.99,827.16,6770169600,827.16
-2009-02-09,868.24,875.01,861.65,869.89,5574370000,869.89
-2009-02-06,846.09,870.75,845.42,868.60,6484100000,868.60
-2009-02-05,831.75,850.55,819.91,845.85,6624030000,845.85
-2009-02-04,837.77,851.85,829.18,832.23,6420450000,832.23
-2009-02-03,825.69,842.60,821.98,838.51,5886310000,838.51
-2009-02-02,823.09,830.78,812.87,825.44,5673270000,825.44
-2009-01-30,845.69,851.66,821.67,825.88,5350580000,825.88
-2009-01-29,868.89,868.89,844.15,845.14,5067060000,845.14
-2009-01-28,845.73,877.86,845.73,874.09,6199180000,874.09
-2009-01-27,837.30,850.45,835.40,845.71,5353260000,845.71
-2009-01-26,832.50,852.53,827.69,836.57,6039940000,836.57
-2009-01-23,822.16,838.61,806.07,831.95,5832160000,831.95
-2009-01-22,839.74,839.74,811.29,827.50,5843830000,827.50
-2009-01-21,806.77,841.72,804.30,840.24,6467830000,840.24
-2009-01-20,849.64,849.64,804.47,805.22,6375230000,805.22
-2009-01-16,844.45,858.13,830.66,850.12,6786040000,850.12
-2009-01-15,841.99,851.59,817.04,843.74,7807350400,843.74
-2009-01-14,867.28,867.28,836.93,842.62,5407880000,842.62
-2009-01-13,869.79,877.02,862.02,871.79,5017470000,871.79
-2009-01-12,890.40,890.40,864.32,870.26,4725050000,870.26
-2009-01-09,909.91,911.93,888.31,890.35,4716500000,890.35
-2009-01-08,905.73,910.00,896.81,909.73,4991550000,909.73
-2009-01-07,927.45,927.45,902.37,906.65,4704940000,906.65
-2009-01-06,931.17,943.85,927.28,934.70,5392620000,934.70
-2009-01-05,929.17,936.63,919.53,927.45,5413910000,927.45
-2009-01-02,902.99,934.73,899.35,931.80,4048270000,931.80
-2008-12-31,890.59,910.32,889.67,903.25,4172940000,903.25
-2008-12-30,870.58,891.12,870.58,890.64,3627800000,890.64
-2008-12-29,872.37,873.70,857.07,869.42,3323430000,869.42
-2008-12-26,869.51,873.74,866.52,872.80,1880050000,872.80
-2008-12-24,863.87,869.79,861.44,868.15,1546550000,868.15
-2008-12-23,874.31,880.44,860.10,863.16,4051970000,863.16
-2008-12-22,887.20,887.37,857.09,871.63,4869850000,871.63
-2008-12-19,886.96,905.47,883.02,887.88,6705310000,887.88
-2008-12-18,905.98,911.02,877.44,885.28,5675000000,885.28
-2008-12-17,908.16,918.85,895.94,904.42,5907380000,904.42
-2008-12-16,871.53,914.66,871.53,913.18,6009780000,913.18
-2008-12-15,881.07,884.63,857.72,868.57,4982390000,868.57
-2008-12-12,871.79,883.24,851.35,879.73,5959590000,879.73
-2008-12-11,898.35,904.63,868.73,873.59,5513840000,873.59
-2008-12-10,892.17,908.27,885.45,899.24,5942130000,899.24
-2008-12-09,906.48,916.26,885.38,888.67,5693110000,888.67
-2008-12-08,882.71,918.57,882.71,909.70,6553600000,909.70
-2008-12-05,844.43,879.42,818.41,876.07,6165370000,876.07
-2008-12-04,869.75,875.60,833.60,845.22,5860390000,845.22
-2008-12-03,843.60,873.12,827.60,870.74,6221880000,870.74
-2008-12-02,817.94,850.54,817.94,848.81,6170100000,848.81
-2008-12-01,888.61,888.61,815.69,816.21,6052010000,816.21
-2008-11-28,886.89,896.25,881.21,896.24,2740860000,896.24
-2008-11-26,852.90,887.68,841.37,887.68,5793260000,887.68
-2008-11-25,853.40,868.94,834.99,857.39,6952700000,857.39
-2008-11-24,801.20,865.60,801.20,851.81,7879440000,851.81
-2008-11-21,755.84,801.20,741.02,800.03,9495900000,800.03
-2008-11-20,805.87,820.52,747.78,752.44,9093740000,752.44
-2008-11-19,859.03,864.57,806.18,806.58,6548600000,806.58
-2008-11-18,852.34,865.90,826.84,859.12,6679470000,859.12
-2008-11-17,873.23,882.29,848.98,850.75,4927490000,850.75
-2008-11-14,904.36,916.88,869.88,873.29,5881030000,873.29
-2008-11-13,853.13,913.01,818.69,911.29,7849120000,911.29
-2008-11-12,893.39,893.39,850.48,852.30,5764180000,852.30
-2008-11-11,917.15,917.15,884.90,898.95,4998340000,898.95
-2008-11-10,936.75,951.95,907.47,919.21,4572000000,919.21
-2008-11-07,907.44,931.46,906.90,930.99,4931640000,930.99
-2008-11-06,952.40,952.40,899.73,904.88,6102230000,904.88
-2008-11-05,1001.84,1001.84,949.86,952.77,5426640000,952.77
-2008-11-04,971.31,1007.51,971.31,1005.75,5531290000,1005.75
-2008-11-03,968.67,975.57,958.82,966.30,4492280000,966.30
-2008-10-31,953.11,984.38,944.59,968.75,6394350000,968.75
-2008-10-30,939.38,963.23,928.50,954.09,6175830000,954.09
-2008-10-29,939.51,969.97,922.26,930.09,7077800000,930.09
-2008-10-28,848.92,940.51,845.27,940.51,7096950400,940.51
-2008-10-27,874.28,893.78,846.75,848.92,5558050000,848.92
-2008-10-24,895.22,896.30,852.85,876.77,6550050000,876.77
-2008-10-23,899.08,922.83,858.44,908.11,7184180000,908.11
-2008-10-22,951.67,951.67,875.81,896.78,6147980000,896.78
-2008-10-21,980.40,985.44,952.47,955.05,5121830000,955.05
-2008-10-20,943.51,985.40,943.51,985.40,5175640000,985.40
-2008-10-17,942.29,984.64,918.74,940.55,6581780000,940.55
-2008-10-16,909.53,947.71,865.83,946.43,7984500000,946.43
-2008-10-15,994.60,994.60,903.99,907.84,6542330000,907.84
-2008-10-14,1009.97,1044.31,972.07,998.01,8161990400,998.01
-2008-10-13,912.75,1006.93,912.75,1003.35,7263369600,1003.35
-2008-10-10,902.31,936.36,839.80,899.22,11456230400,899.22
-2008-10-09,988.42,1005.25,909.19,909.92,6819000000,909.92
-2008-10-08,988.91,1021.06,970.97,984.94,8716329600,984.94
-2008-10-07,1057.60,1072.91,996.23,996.23,7069209600,996.23
-2008-10-06,1097.56,1097.56,1007.97,1056.89,7956020000,1056.89
-2008-10-03,1115.16,1153.82,1098.14,1099.23,6716120000,1099.23
-2008-10-02,1160.64,1160.64,1111.43,1114.28,6285640000,1114.28
-2008-10-01,1164.17,1167.03,1140.77,1161.06,5782130000,1161.06
-2008-09-30,1113.78,1168.03,1113.78,1166.36,4937680000,1166.36
-2008-09-29,1209.07,1209.07,1106.42,1106.42,7305060000,1106.42
-2008-09-26,1204.47,1215.77,1187.54,1213.27,5383610000,1213.27
-2008-09-25,1187.87,1220.03,1187.87,1209.18,5877640000,1209.18
-2008-09-24,1188.79,1197.41,1179.79,1185.87,4820360000,1185.87
-2008-09-23,1207.61,1221.15,1187.06,1188.22,5185730000,1188.22
-2008-09-22,1255.37,1255.37,1205.61,1207.09,5332130000,1207.09
-2008-09-19,1213.11,1265.12,1213.11,1255.08,9387169600,1255.08
-2008-09-18,1157.08,1211.14,1133.50,1206.51,10082689600,1206.51
-2008-09-17,1210.34,1210.34,1155.88,1156.39,9431870400,1156.39
-2008-09-16,1188.31,1214.84,1169.28,1213.60,9459830400,1213.60
-2008-09-15,1250.92,1250.92,1192.70,1192.70,8279510400,1192.70
-2008-09-12,1245.88,1255.09,1233.81,1251.70,6273260000,1251.70
-2008-09-11,1229.04,1249.98,1211.54,1249.05,6869249600,1249.05
-2008-09-10,1227.50,1243.90,1221.60,1232.04,6543440000,1232.04
-2008-09-09,1267.98,1268.66,1224.51,1224.51,7380630400,1224.51
-2008-09-08,1249.50,1274.42,1247.12,1267.79,7351340000,1267.79
-2008-09-05,1233.21,1244.94,1217.23,1242.31,5017080000,1242.31
-2008-09-04,1271.80,1271.80,1232.83,1236.83,5212500000,1236.83
-2008-09-03,1276.61,1280.60,1265.59,1274.98,5056980000,1274.98
-2008-09-02,1287.83,1303.04,1272.20,1277.58,4783560000,1277.58
-2008-08-29,1296.49,1297.59,1282.74,1282.83,3288120000,1282.83
-2008-08-28,1283.79,1300.68,1283.79,1300.68,3854280000,1300.68
-2008-08-27,1271.29,1285.05,1270.03,1281.66,3499610000,1281.66
-2008-08-26,1267.03,1275.65,1263.21,1271.51,3587570000,1271.51
-2008-08-25,1290.47,1290.47,1264.87,1266.84,3420600000,1266.84
-2008-08-22,1277.59,1293.09,1277.59,1292.20,3741070000,1292.20
-2008-08-21,1271.07,1281.40,1265.22,1277.72,4032590000,1277.72
-2008-08-20,1267.34,1276.01,1261.16,1274.54,4555030000,1274.54
-2008-08-19,1276.65,1276.65,1263.11,1266.69,4159760000,1266.69
-2008-08-18,1298.14,1300.22,1274.51,1278.60,3829290000,1278.60
-2008-08-15,1293.85,1302.05,1290.74,1298.20,4041820000,1298.20
-2008-08-14,1282.11,1300.11,1276.84,1292.93,4064000000,1292.93
-2008-08-13,1288.64,1294.03,1274.86,1285.83,4787600000,1285.83
-2008-08-12,1304.79,1304.79,1285.64,1289.59,4711290000,1289.59
-2008-08-11,1294.42,1313.15,1291.41,1305.32,5067310000,1305.32
-2008-08-08,1266.29,1297.85,1262.11,1296.32,4966810000,1296.32
-2008-08-07,1286.51,1286.51,1264.29,1266.07,5319380000,1266.07
-2008-08-06,1283.99,1291.67,1276.00,1289.19,4873420000,1289.19
-2008-08-05,1254.87,1284.88,1254.67,1284.88,1219310000,1284.88
-2008-08-04,1253.27,1260.49,1247.45,1249.01,4562280000,1249.01
-2008-08-01,1269.42,1270.52,1254.54,1260.31,4684870000,1260.31
-2008-07-31,1281.37,1284.93,1265.97,1267.38,5346050000,1267.38
-2008-07-30,1264.52,1284.33,1264.52,1284.26,5631330000,1284.26
-2008-07-29,1236.38,1263.20,1236.38,1263.20,5414240000,1263.20
-2008-07-28,1257.76,1260.09,1234.37,1234.37,4282960000,1234.37
-2008-07-25,1253.51,1263.23,1251.75,1257.76,4672560000,1257.76
-2008-07-24,1283.22,1283.22,1251.48,1252.54,6127980000,1252.54
-2008-07-23,1278.87,1291.17,1276.06,1282.19,6705830000,1282.19
-2008-07-22,1257.08,1277.42,1248.83,1277.00,6180230000,1277.00
-2008-07-21,1261.82,1267.74,1255.70,1260.00,4630640000,1260.00
-2008-07-18,1258.22,1262.23,1251.81,1260.68,5653280000,1260.68
-2008-07-17,1246.31,1262.31,1241.49,1260.32,7365209600,1260.32
-2008-07-16,1214.65,1245.52,1211.39,1245.36,6738630400,1245.36
-2008-07-15,1226.83,1234.35,1200.44,1214.91,7363640000,1214.91
-2008-07-14,1241.61,1253.50,1225.01,1228.30,5434860000,1228.30
-2008-07-11,1248.66,1257.27,1225.35,1239.49,6742200000,1239.49
-2008-07-10,1245.25,1257.65,1236.76,1253.39,5840430000,1253.39
-2008-07-09,1273.38,1277.36,1244.57,1244.69,5181000000,1244.69
-2008-07-08,1251.84,1274.17,1242.84,1273.70,6034110000,1273.70
-2008-07-07,1262.90,1273.95,1240.68,1252.31,5265420000,1252.31
-2008-07-03,1262.96,1271.48,1252.01,1262.90,3247590000,1262.90
-2008-07-02,1285.82,1292.17,1261.51,1261.52,5276090000,1261.52
-2008-07-01,1276.69,1285.31,1260.68,1284.91,5846290000,1284.91
-2008-06-30,1278.06,1290.31,1274.86,1280.00,5032330000,1280.00
-2008-06-27,1283.60,1289.45,1272.00,1278.38,6208260000,1278.38
-2008-06-26,1316.29,1316.29,1283.15,1283.15,5231280000,1283.15
-2008-06-25,1314.54,1335.63,1314.54,1321.97,4825640000,1321.97
-2008-06-24,1317.23,1326.02,1304.42,1314.29,4705050000,1314.29
-2008-06-23,1319.77,1323.78,1315.31,1318.00,4186370000,1318.00
-2008-06-20,1341.02,1341.02,1314.46,1317.93,5324900000,1317.93
-2008-06-19,1336.89,1347.66,1330.50,1342.83,4811670000,1342.83
-2008-06-18,1349.59,1349.59,1333.40,1337.81,4573570000,1337.81
-2008-06-17,1360.71,1366.59,1350.54,1350.93,3801960000,1350.93
-2008-06-16,1358.85,1364.70,1352.07,1360.14,3706940000,1360.14
-2008-06-13,1341.81,1360.03,1341.71,1360.03,4080420000,1360.03
-2008-06-12,1335.78,1353.03,1331.29,1339.87,4734240000,1339.87
-2008-06-11,1357.09,1357.09,1335.47,1335.49,4779980000,1335.49
-2008-06-10,1358.98,1366.84,1351.56,1358.44,4635070000,1358.44
-2008-06-09,1360.83,1370.63,1350.62,1361.76,4404570000,1361.76
-2008-06-06,1400.06,1400.06,1359.90,1360.68,4771660000,1360.68
-2008-06-05,1377.48,1404.05,1377.48,1404.05,4350790000,1404.05
-2008-06-04,1376.26,1388.18,1371.74,1377.20,4338640000,1377.20
-2008-06-03,1386.42,1393.12,1370.12,1377.65,4396380000,1377.65
-2008-06-02,1399.62,1399.62,1377.79,1385.67,3714320000,1385.67
-2008-05-30,1398.36,1404.46,1398.08,1400.38,3845630000,1400.38
-2008-05-29,1390.50,1406.32,1388.59,1398.26,3894440000,1398.26
-2008-05-28,1386.54,1391.25,1378.16,1390.84,3927240000,1390.84
-2008-05-27,1375.97,1387.40,1373.07,1385.35,3588860000,1385.35
-2008-05-23,1392.20,1392.20,1373.72,1375.93,3516380000,1375.93
-2008-05-22,1390.83,1399.07,1390.23,1394.35,3955960000,1394.35
-2008-05-21,1414.06,1419.12,1388.81,1390.71,4517990000,1390.71
-2008-05-20,1424.49,1424.49,1409.09,1413.40,3854320000,1413.40
-2008-05-19,1425.28,1440.24,1421.63,1426.63,3683970000,1426.63
-2008-05-16,1423.89,1425.82,1414.35,1425.35,3842590000,1425.35
-2008-05-15,1408.36,1424.40,1406.87,1423.57,3836480000,1423.57
-2008-05-14,1405.65,1420.19,1405.65,1408.66,3979370000,1408.66
-2008-05-13,1404.40,1406.30,1396.26,1403.04,4018590000,1403.04
-2008-05-12,1389.40,1404.06,1386.20,1403.58,3370630000,1403.58
-2008-05-09,1394.90,1394.90,1384.11,1388.28,3518620000,1388.28
-2008-05-08,1394.29,1402.35,1389.39,1397.68,3827550000,1397.68
-2008-05-07,1417.49,1419.54,1391.16,1392.57,4075860000,1392.57
-2008-05-06,1405.60,1421.57,1397.10,1418.26,3924100000,1418.26
-2008-05-05,1415.34,1415.34,1404.37,1407.49,3410090000,1407.49
-2008-05-02,1409.16,1422.72,1406.25,1413.90,3953030000,1413.90
-2008-05-01,1385.97,1410.07,1383.07,1409.34,4448780000,1409.34
-2008-04-30,1391.22,1404.57,1384.25,1385.59,4508890000,1385.59
-2008-04-29,1395.61,1397.00,1386.70,1390.94,3815320000,1390.94
-2008-04-28,1397.96,1402.90,1394.40,1396.37,3607000000,1396.37
-2008-04-25,1387.88,1399.11,1379.98,1397.84,3891150000,1397.84
-2008-04-24,1380.52,1397.72,1371.09,1388.82,4461660000,1388.82
-2008-04-23,1378.40,1387.87,1372.24,1379.93,4103610000,1379.93
-2008-04-22,1386.43,1386.43,1369.84,1375.94,3821900000,1375.94
-2008-04-21,1387.72,1390.23,1379.25,1388.17,3420570000,1388.17
-2008-04-18,1369.00,1395.90,1369.00,1390.33,4222380000,1390.33
-2008-04-17,1363.37,1368.60,1357.25,1365.56,3713880000,1365.56
-2008-04-16,1337.02,1365.49,1337.02,1364.71,4260370000,1364.71
-2008-04-15,1331.72,1337.72,1324.35,1334.43,3581230000,1334.43
-2008-04-14,1332.20,1335.64,1326.16,1328.32,3565020000,1328.32
-2008-04-11,1357.98,1357.98,1331.21,1332.83,3723790000,1332.83
-2008-04-10,1355.37,1367.24,1350.11,1360.55,3686150000,1360.55
-2008-04-09,1365.50,1368.39,1349.97,1354.49,3556670000,1354.49
-2008-04-08,1370.16,1370.16,1360.62,1365.54,3602500000,1365.54
-2008-04-07,1373.69,1386.74,1369.02,1372.54,3747780000,1372.54
-2008-04-04,1369.85,1380.91,1362.83,1370.40,3703100000,1370.40
-2008-04-03,1365.69,1375.66,1358.68,1369.31,3920100000,1369.31
-2008-04-02,1369.96,1377.95,1361.55,1367.53,4320440000,1367.53
-2008-04-01,1326.41,1370.18,1326.41,1370.18,4745120000,1370.18
-2008-03-31,1315.92,1328.52,1312.81,1322.70,4188990000,1322.70
-2008-03-28,1327.02,1334.87,1312.95,1315.22,3686980000,1315.22
-2008-03-27,1340.34,1345.62,1325.66,1325.76,4037930000,1325.76
-2008-03-26,1352.45,1352.45,1336.41,1341.13,4055670000,1341.13
-2008-03-25,1349.07,1357.47,1341.21,1352.99,4145120000,1352.99
-2008-03-24,1330.29,1359.68,1330.29,1349.88,4499000000,1349.88
-2008-03-20,1299.67,1330.67,1295.22,1329.51,6145220000,1329.51
-2008-03-19,1330.97,1341.51,1298.42,1298.42,1203830000,1298.42
-2008-03-18,1277.16,1330.74,1277.16,1330.74,5335630000,1330.74
-2008-03-17,1283.21,1287.50,1256.98,1276.60,5683010000,1276.60
-2008-03-14,1316.05,1321.47,1274.86,1288.14,5153780000,1288.14
-2008-03-13,1305.26,1321.68,1282.11,1315.48,5073360000,1315.48
-2008-03-12,1321.13,1333.26,1307.86,1308.77,4414280000,1308.77
-2008-03-11,1274.40,1320.65,1274.40,1320.65,5109080000,1320.65
-2008-03-10,1293.16,1295.01,1272.66,1273.37,4261240000,1273.37
-2008-03-07,1301.53,1313.24,1282.43,1293.37,4565410000,1293.37
-2008-03-06,1332.20,1332.20,1303.42,1304.34,4323460000,1304.34
-2008-03-05,1327.69,1344.19,1320.22,1333.70,4277710000,1333.70
-2008-03-04,1329.58,1331.03,1307.39,1326.75,4757180000,1326.75
-2008-03-03,1330.45,1335.13,1320.04,1331.34,4117570000,1331.34
-2008-02-29,1364.07,1364.07,1325.42,1330.63,4426730000,1330.63
-2008-02-28,1378.16,1378.16,1363.16,1367.68,3938580000,1367.68
-2008-02-27,1378.95,1388.34,1372.00,1380.02,3904700000,1380.02
-2008-02-26,1371.76,1387.34,1363.29,1381.29,4096060000,1381.29
-2008-02-25,1352.75,1374.36,1346.03,1371.80,3866350000,1371.80
-2008-02-22,1344.22,1354.30,1327.04,1353.11,3572660000,1353.11
-2008-02-21,1362.21,1367.94,1339.34,1342.53,3696660000,1342.53
-2008-02-20,1348.39,1363.71,1336.55,1360.03,3870520000,1360.03
-2008-02-19,1355.86,1367.28,1345.05,1348.78,3613550000,1348.78
-2008-02-15,1347.52,1350.00,1338.13,1349.99,3583300000,1349.99
-2008-02-14,1367.33,1368.16,1347.31,1348.86,3644760000,1348.86
-2008-02-13,1353.12,1369.23,1350.78,1367.21,3856420000,1367.21
-2008-02-12,1340.55,1362.10,1339.36,1348.86,4044640000,1348.86
-2008-02-11,1331.92,1341.40,1320.32,1339.13,3593140000,1339.13
-2008-02-08,1336.88,1341.22,1321.06,1331.29,3768490000,1331.29
-2008-02-07,1324.01,1347.16,1316.75,1336.91,4589160000,1336.91
-2008-02-06,1339.48,1351.96,1324.34,1326.45,4008120000,1326.45
-2008-02-05,1380.28,1380.28,1336.64,1336.64,4315740000,1336.64
-2008-02-04,1395.38,1395.38,1379.69,1380.82,3495780000,1380.82
-2008-02-01,1378.60,1396.02,1375.93,1395.42,4650770000,1395.42
-2008-01-31,1351.98,1385.62,1334.08,1378.55,4970290000,1378.55
-2008-01-30,1362.22,1385.86,1352.95,1355.81,4742760000,1355.81
-2008-01-29,1355.94,1364.93,1350.19,1362.30,4232960000,1362.30
-2008-01-28,1330.70,1353.97,1322.26,1353.96,4100930000,1353.96
-2008-01-25,1357.32,1368.56,1327.50,1330.61,4882250000,1330.61
-2008-01-24,1340.13,1355.15,1334.31,1352.07,5735300000,1352.07
-2008-01-23,1310.41,1339.09,1270.05,1338.60,3241680000,1338.60
-2008-01-22,1312.94,1322.09,1274.29,1310.50,6544690000,1310.50
-2008-01-18,1333.90,1350.28,1312.51,1325.19,6004840000,1325.19
-2008-01-17,1374.79,1377.72,1330.67,1333.25,5303130000,1333.25
-2008-01-16,1377.41,1391.99,1364.27,1373.20,5440620000,1373.20
-2008-01-15,1411.88,1411.88,1380.60,1380.95,4601640000,1380.95
-2008-01-14,1402.91,1417.89,1402.91,1416.25,3682090000,1416.25
-2008-01-11,1419.91,1419.91,1394.83,1401.02,4495840000,1401.02
-2008-01-10,1406.78,1429.09,1395.31,1420.33,5170490000,1420.33
-2008-01-09,1390.25,1409.19,1378.70,1409.13,5351030000,1409.13
-2008-01-08,1415.71,1430.28,1388.30,1390.19,4705390000,1390.19
-2008-01-07,1414.07,1423.87,1403.45,1416.18,4221260000,1416.18
-2008-01-04,1444.01,1444.01,1411.19,1411.63,4166000000,1411.63
-2008-01-03,1447.55,1456.80,1443.73,1447.16,3429500000,1447.16
-2008-01-02,1467.97,1471.77,1442.07,1447.16,3452650000,1447.16
-2007-12-31,1475.25,1475.83,1465.13,1468.36,2440880000,1468.36
-2007-12-28,1479.83,1488.01,1471.70,1478.49,2420510000,1478.49
-2007-12-27,1495.05,1495.05,1475.86,1476.27,2365770000,1476.27
-2007-12-26,1495.12,1498.85,1488.20,1497.66,2010500000,1497.66
-2007-12-24,1484.55,1497.63,1484.55,1496.45,1267420000,1496.45
-2007-12-21,1463.19,1485.40,1463.19,1484.46,4508590000,1484.46
-2007-12-20,1456.42,1461.53,1447.22,1460.12,3526890000,1460.12
-2007-12-19,1454.70,1464.42,1445.31,1453.00,3401300000,1453.00
-2007-12-18,1445.92,1460.16,1435.65,1454.98,3723690000,1454.98
-2007-12-17,1465.05,1465.05,1445.43,1445.90,3569030000,1445.90
-2007-12-14,1486.19,1486.67,1467.78,1467.95,3401050000,1467.95
-2007-12-13,1483.27,1489.40,1469.21,1488.41,3635170000,1488.41
-2007-12-12,1487.58,1511.96,1468.23,1486.59,4482120000,1486.59
-2007-12-11,1516.68,1523.57,1475.99,1477.65,4080180000,1477.65
-2007-12-10,1505.11,1518.27,1504.96,1515.96,2911760000,1515.96
-2007-12-07,1508.60,1510.63,1502.66,1504.66,3177710000,1504.66
-2007-12-06,1484.59,1508.02,1482.19,1507.34,3568570000,1507.34
-2007-12-05,1465.22,1486.09,1465.22,1485.01,3663660000,1485.01
-2007-12-04,1471.34,1471.34,1460.66,1462.79,3343620000,1462.79
-2007-12-03,1479.63,1481.16,1470.08,1472.42,3323250000,1472.42
-2007-11-30,1471.83,1488.94,1470.89,1481.14,4422200000,1481.14
-2007-11-29,1467.41,1473.81,1458.36,1469.72,3524730000,1469.72
-2007-11-28,1432.95,1471.62,1432.95,1469.02,4508020000,1469.02
-2007-11-27,1409.59,1429.49,1407.43,1428.23,4320720000,1428.23
-2007-11-26,1440.74,1446.09,1406.10,1407.22,3706470000,1407.22
-2007-11-23,1417.62,1440.86,1417.62,1440.70,1612720000,1440.70
-2007-11-21,1434.71,1436.40,1415.64,1416.77,4076230000,1416.77
-2007-11-20,1434.51,1452.64,1419.28,1439.70,4875150000,1439.70
-2007-11-19,1456.70,1456.70,1430.42,1433.27,4119650000,1433.27
-2007-11-16,1453.09,1462.18,1443.99,1458.74,4168870000,1458.74
-2007-11-15,1468.04,1472.67,1443.49,1451.15,3941010000,1451.15
-2007-11-14,1483.40,1492.14,1466.47,1470.58,4031470000,1470.58
-2007-11-13,1441.35,1481.37,1441.35,1481.05,4141310000,1481.05
-2007-11-12,1453.66,1464.94,1438.53,1439.18,4192520000,1439.18
-2007-11-09,1467.59,1474.09,1448.51,1453.70,4587050000,1453.70
-2007-11-08,1475.27,1482.50,1450.31,1474.77,5439720000,1474.77
-2007-11-07,1515.46,1515.46,1475.04,1475.62,4353160000,1475.62
-2007-11-06,1505.33,1520.77,1499.07,1520.27,3879160000,1520.27
-2007-11-05,1505.61,1510.84,1489.95,1502.17,3819330000,1502.17
-2007-11-02,1511.07,1513.15,1492.53,1509.65,4285990000,1509.65
-2007-11-01,1545.79,1545.79,1506.66,1508.44,4241470000,1508.44
-2007-10-31,1532.15,1552.76,1529.40,1549.38,3953070000,1549.38
-2007-10-30,1539.42,1539.42,1529.55,1531.02,3212520000,1531.02
-2007-10-29,1536.92,1544.67,1536.43,1540.98,3124480000,1540.98
-2007-10-26,1522.17,1535.53,1520.18,1535.28,3612120000,1535.28
-2007-10-25,1516.15,1523.24,1500.46,1514.40,4183960000,1514.40
-2007-10-24,1516.61,1517.23,1489.56,1515.88,4003300000,1515.88
-2007-10-23,1509.30,1520.01,1503.61,1519.59,3309120000,1519.59
-2007-10-22,1497.79,1508.06,1490.40,1506.33,3471830000,1506.33
-2007-10-19,1540.00,1540.00,1500.26,1500.63,4160970000,1500.63
-2007-10-18,1539.29,1542.79,1531.76,1540.08,3203210000,1540.08
-2007-10-17,1544.44,1550.66,1526.01,1541.24,3638070000,1541.24
-2007-10-16,1547.81,1547.81,1536.29,1538.53,3234560000,1538.53
-2007-10-15,1562.25,1564.74,1540.81,1548.71,3139290000,1548.71
-2007-10-12,1555.41,1563.03,1554.09,1561.80,2788690000,1561.80
-2007-10-11,1564.72,1576.09,1546.72,1554.41,3911260000,1554.41
-2007-10-10,1564.98,1565.42,1555.46,1562.47,3044760000,1562.47
-2007-10-09,1553.18,1565.26,1551.82,1565.15,2932040000,1565.15
-2007-10-08,1556.51,1556.51,1549.00,1552.58,2040650000,1552.58
-2007-10-05,1543.84,1561.91,1543.84,1557.59,2919030000,1557.59
-2007-10-04,1539.91,1544.02,1537.63,1542.84,2690430000,1542.84
-2007-10-03,1545.80,1545.84,1536.34,1539.59,3065320000,1539.59
-2007-10-02,1546.96,1548.01,1540.37,1546.63,3101910000,1546.63
-2007-10-01,1527.29,1549.02,1527.25,1547.04,3281990000,1547.04
-2007-09-28,1531.24,1533.74,1521.99,1526.75,2925350000,1526.75
-2007-09-27,1527.32,1532.46,1525.81,1531.38,2872180000,1531.38
-2007-09-26,1518.62,1529.39,1518.62,1525.42,3237390000,1525.42
-2007-09-25,1516.34,1518.27,1507.13,1517.21,3187770000,1517.21
-2007-09-24,1525.75,1530.18,1516.15,1517.73,3131310000,1517.73
-2007-09-21,1518.75,1530.89,1518.75,1525.75,3679460000,1525.75
-2007-09-20,1528.69,1529.14,1516.42,1518.75,2957700000,1518.75
-2007-09-19,1519.75,1538.74,1519.75,1529.03,3846750000,1529.03
-2007-09-18,1476.63,1519.89,1476.63,1519.78,3708940000,1519.78
-2007-09-17,1484.24,1484.24,1471.82,1476.65,2598390000,1476.65
-2007-09-14,1483.95,1485.99,1473.18,1484.25,2641740000,1484.25
-2007-09-13,1471.47,1489.58,1471.47,1483.95,2877080000,1483.95
-2007-09-12,1471.10,1479.50,1465.75,1471.56,2885720000,1471.56
-2007-09-11,1451.69,1472.48,1451.69,1471.49,3015330000,1471.49
-2007-09-10,1453.50,1462.25,1439.29,1451.70,2835720000,1451.70
-2007-09-07,1478.55,1478.55,1449.07,1453.55,3191080000,1453.55
-2007-09-06,1472.03,1481.49,1467.41,1478.55,2459590000,1478.55
-2007-09-05,1488.76,1488.76,1466.34,1472.29,2991600000,1472.29
-2007-09-04,1473.96,1496.40,1472.15,1489.42,2766600000,1489.42
-2007-08-31,1457.61,1481.47,1457.61,1473.99,2731610000,1473.99
-2007-08-30,1463.67,1468.43,1451.25,1457.64,2582960000,1457.64
-2007-08-29,1432.01,1463.76,1432.01,1463.76,2824070000,1463.76
-2007-08-28,1466.72,1466.72,1432.01,1432.36,3078090000,1432.36
-2007-08-27,1479.36,1479.36,1465.98,1466.79,2406180000,1466.79
-2007-08-24,1462.34,1479.40,1460.54,1479.37,2541400000,1479.37
-2007-08-23,1464.05,1472.06,1453.88,1462.50,3084390000,1462.50
-2007-08-22,1447.03,1464.86,1447.03,1464.07,3309120000,1464.07
-2007-08-21,1445.55,1455.32,1439.76,1447.12,3012150000,1447.12
-2007-08-20,1445.94,1451.75,1430.54,1445.55,3321340000,1445.55
-2007-08-17,1411.26,1450.33,1411.26,1445.94,3570040000,1445.94
-2007-08-16,1406.64,1415.97,1370.60,1411.27,6509300000,1411.27
-2007-08-15,1426.15,1440.78,1404.36,1406.70,4290930000,1406.70
-2007-08-14,1452.87,1456.74,1426.20,1426.54,3814630000,1426.54
-2007-08-13,1453.42,1466.29,1451.54,1452.92,3696280000,1452.92
-2007-08-10,1453.09,1462.02,1429.74,1453.64,5345780000,1453.64
-2007-08-09,1497.21,1497.21,1453.09,1453.09,5889600000,1453.09
-2007-08-08,1476.22,1503.89,1476.22,1497.49,5499560000,1497.49
-2007-08-07,1467.62,1488.30,1455.80,1476.71,4909390000,1476.71
-2007-08-06,1433.04,1467.67,1427.39,1467.67,5067200000,1467.67
-2007-08-03,1472.18,1473.23,1432.80,1433.06,4272110000,1433.06
-2007-08-02,1465.46,1476.43,1460.58,1472.20,4368850000,1472.20
-2007-08-01,1455.18,1468.38,1439.59,1465.81,5256780000,1465.81
-2007-07-31,1473.90,1488.30,1454.25,1455.27,4524520000,1455.27
-2007-07-30,1458.93,1477.88,1454.32,1473.91,4128780000,1473.91
-2007-07-27,1482.44,1488.53,1458.95,1458.95,4784650000,1458.95
-2007-07-26,1518.09,1518.09,1465.30,1482.66,4472550000,1482.66
-2007-07-25,1511.03,1524.31,1503.73,1518.09,4283200000,1518.09
-2007-07-24,1541.57,1541.57,1508.62,1511.04,4115830000,1511.04
-2007-07-23,1534.06,1547.23,1534.06,1541.57,3102700000,1541.57
-2007-07-20,1553.19,1553.19,1529.20,1534.10,3745780000,1534.10
-2007-07-19,1546.13,1555.20,1546.13,1553.08,3251450000,1553.08
-2007-07-18,1549.20,1549.20,1533.67,1546.17,3609220000,1546.17
-2007-07-17,1549.52,1555.32,1547.74,1549.37,3007140000,1549.37
-2007-07-16,1552.50,1555.90,1546.69,1549.52,2704110000,1549.52
-2007-07-13,1547.68,1555.10,1544.85,1552.50,2801120000,1552.50
-2007-07-12,1518.74,1547.92,1518.74,1547.70,3489600000,1547.70
-2007-07-11,1509.93,1519.34,1506.10,1518.76,3082920000,1518.76
-2007-07-10,1531.85,1531.85,1510.01,1510.12,3244280000,1510.12
-2007-07-09,1530.43,1534.26,1527.45,1531.85,2715330000,1531.85
-2007-07-06,1524.96,1532.40,1520.47,1530.44,2441520000,1530.44
-2007-07-05,1524.86,1526.57,1517.72,1525.40,2622950000,1525.40
-2007-07-03,1519.12,1526.01,1519.12,1524.87,1560790000,1524.87
-2007-07-02,1504.66,1519.45,1504.66,1519.43,2644990000,1519.43
-2007-06-29,1505.70,1517.53,1493.61,1503.35,3165410000,1503.35
-2007-06-28,1506.32,1514.84,1503.41,1505.71,3006710000,1505.71
-2007-06-27,1492.62,1506.80,1484.18,1506.34,3398150000,1506.34
-2007-06-26,1497.68,1506.12,1490.54,1492.89,3398530000,1492.89
-2007-06-25,1502.56,1514.29,1492.68,1497.74,3287250000,1497.74
-2007-06-22,1522.19,1522.19,1500.74,1502.56,4284320000,1502.56
-2007-06-21,1512.50,1522.90,1504.75,1522.19,3161110000,1522.19
-2007-06-20,1533.68,1537.32,1512.36,1512.84,3286900000,1512.84
-2007-06-19,1531.02,1535.85,1525.67,1533.70,2873590000,1533.70
-2007-06-18,1532.90,1535.44,1529.31,1531.05,2480240000,1531.05
-2007-06-15,1522.97,1538.71,1522.97,1532.91,3406030000,1532.91
-2007-06-14,1515.58,1526.45,1515.58,1522.97,2813630000,1522.97
-2007-06-13,1492.65,1515.70,1492.65,1515.67,3077930000,1515.67
-2007-06-12,1509.12,1511.33,1492.97,1493.00,3056200000,1493.00
-2007-06-11,1507.64,1515.53,1503.35,1509.12,2525280000,1509.12
-2007-06-08,1490.71,1507.76,1487.41,1507.67,2993460000,1507.67
-2007-06-07,1517.36,1517.36,1490.37,1490.72,3538470000,1490.72
-2007-06-06,1530.57,1530.57,1514.13,1517.38,2964190000,1517.38
-2007-06-05,1539.12,1539.12,1525.62,1530.95,2939450000,1530.95
-2007-06-04,1536.28,1540.53,1532.31,1539.18,2738930000,1539.18
-2007-06-01,1530.62,1540.56,1530.62,1536.34,2927020000,1536.34
-2007-05-31,1530.19,1535.56,1528.26,1530.62,3335530000,1530.62
-2007-05-30,1517.60,1530.23,1510.06,1530.23,2980210000,1530.23
-2007-05-29,1515.55,1521.80,1512.02,1518.11,2571790000,1518.11
-2007-05-25,1507.50,1517.41,1507.50,1515.73,2316250000,1515.73
-2007-05-24,1522.10,1529.31,1505.18,1507.51,3365530000,1507.51
-2007-05-23,1524.09,1532.43,1521.90,1522.28,3084260000,1522.28
-2007-05-22,1525.10,1529.24,1522.05,1524.12,2860500000,1524.12
-2007-05-21,1522.75,1529.87,1522.71,1525.10,3465360000,1525.10
-2007-05-18,1512.74,1522.75,1512.74,1522.75,2959050000,1522.75
-2007-05-17,1514.01,1517.14,1509.29,1512.75,2868640000,1512.75
-2007-05-16,1500.75,1514.15,1500.75,1514.14,2915350000,1514.14
-2007-05-15,1503.11,1514.83,1500.43,1501.19,3071020000,1501.19
-2007-05-14,1505.76,1510.90,1498.34,1503.15,2776130000,1503.15
-2007-05-11,1491.47,1506.24,1491.47,1505.85,2720780000,1505.85
-2007-05-10,1512.33,1512.33,1491.42,1491.47,3031240000,1491.47
-2007-05-09,1507.32,1513.80,1503.77,1512.58,2935550000,1512.58
-2007-05-08,1509.36,1509.36,1500.66,1507.72,2795720000,1507.72
-2007-05-07,1505.57,1511.00,1505.54,1509.48,2545090000,1509.48
-2007-05-04,1502.35,1510.34,1501.80,1505.62,2761930000,1505.62
-2007-05-03,1495.56,1503.34,1495.56,1502.39,3007970000,1502.39
-2007-05-02,1486.13,1499.10,1486.13,1495.92,3189800000,1495.92
-2007-05-01,1482.37,1487.27,1476.70,1486.30,3400350000,1486.30
-2007-04-30,1494.07,1497.16,1482.29,1482.37,3093420000,1482.37
-2007-04-27,1494.21,1497.32,1488.67,1494.07,2732810000,1494.07
-2007-04-26,1495.27,1498.02,1491.17,1494.25,3211800000,1494.25
-2007-04-25,1480.28,1496.59,1480.28,1495.42,3252590000,1495.42
-2007-04-24,1480.93,1483.82,1473.74,1480.41,3119750000,1480.41
-2007-04-23,1484.33,1487.32,1480.19,1480.93,2575020000,1480.93
-2007-04-20,1470.69,1484.74,1470.69,1484.35,3329940000,1484.35
-2007-04-19,1472.48,1474.23,1464.47,1470.73,2913610000,1470.73
-2007-04-18,1471.47,1476.57,1466.41,1472.50,2971330000,1472.50
-2007-04-17,1468.47,1474.35,1467.15,1471.48,2920570000,1471.48
-2007-04-16,1452.84,1468.62,1452.84,1468.33,2870140000,1468.33
-2007-04-13,1447.80,1453.11,1444.15,1452.85,2690020000,1452.85
-2007-04-12,1438.87,1448.02,1433.91,1447.80,2770570000,1447.80
-2007-04-11,1448.23,1448.39,1436.15,1438.87,2950190000,1438.87
-2007-04-10,1444.58,1448.73,1443.99,1448.39,2510110000,1448.39
-2007-04-09,1443.77,1448.10,1443.28,1444.61,2349410000,1444.61
-2007-04-05,1438.94,1444.88,1436.67,1443.76,2357230000,1443.76
-2007-04-04,1437.75,1440.16,1435.08,1439.37,2616320000,1439.37
-2007-04-03,1424.27,1440.57,1424.27,1437.77,2921760000,1437.77
-2007-04-02,1420.83,1425.49,1416.37,1424.55,2875880000,1424.55
-2007-03-30,1422.52,1429.22,1408.90,1420.86,2903960000,1420.86
-2007-03-29,1417.17,1426.24,1413.27,1422.53,2854710000,1422.53
-2007-03-28,1428.35,1428.35,1414.07,1417.23,3000440000,1417.23
-2007-03-27,1437.49,1437.49,1425.54,1428.61,2673040000,1428.61
-2007-03-26,1436.11,1437.65,1423.28,1437.50,2754660000,1437.50
-2007-03-23,1434.54,1438.89,1433.21,1436.11,2619020000,1436.11
-2007-03-22,1435.04,1437.66,1429.88,1434.54,3129970000,1434.54
-2007-03-21,1410.92,1437.77,1409.75,1435.04,3184770000,1435.04
-2007-03-20,1402.04,1411.53,1400.70,1410.94,2795940000,1410.94
-2007-03-19,1386.95,1403.20,1386.95,1402.06,2777180000,1402.06
-2007-03-16,1392.28,1397.51,1383.63,1386.95,3393640000,1386.95
-2007-03-15,1387.11,1395.73,1385.16,1392.28,2821900000,1392.28
-2007-03-14,1377.86,1388.09,1363.98,1387.17,3758350000,1387.17
-2007-03-13,1406.23,1406.23,1377.71,1377.95,3485570000,1377.95
-2007-03-12,1402.80,1409.34,1398.40,1406.60,2664000000,1406.60
-2007-03-09,1401.89,1410.15,1397.30,1402.84,2623050000,1402.84
-2007-03-08,1391.88,1407.93,1391.88,1401.89,3014850000,1401.89
-2007-03-07,1395.02,1401.16,1390.64,1391.97,3141350000,1391.97
-2007-03-06,1374.06,1397.90,1374.06,1395.41,3358160000,1395.41
-2007-03-05,1387.11,1391.86,1373.97,1374.12,3480520000,1374.12
-2007-03-02,1403.16,1403.40,1386.87,1387.17,3312260000,1387.17
-2007-03-01,1406.80,1409.46,1380.87,1403.17,3874910000,1403.17
-2007-02-28,1398.64,1415.89,1396.65,1406.82,3925250000,1406.82
-2007-02-27,1449.25,1449.25,1389.42,1399.04,4065230000,1399.04
-2007-02-26,1451.04,1456.95,1445.48,1449.37,2822170000,1449.37
-2007-02-23,1456.22,1456.22,1448.36,1451.19,2579950000,1451.19
-2007-02-22,1457.29,1461.57,1450.51,1456.38,1950770000,1456.38
-2007-02-21,1459.60,1459.60,1452.02,1457.63,2606980000,1457.63
-2007-02-20,1455.53,1460.53,1449.20,1459.68,2337860000,1459.68
-2007-02-16,1456.77,1456.77,1451.57,1455.54,2399450000,1455.54
-2007-02-15,1455.15,1457.97,1453.19,1456.81,2490920000,1456.81
-2007-02-14,1443.91,1457.65,1443.91,1455.30,2699290000,1455.30
-2007-02-13,1433.22,1444.41,1433.22,1444.26,2652150000,1444.26
-2007-02-12,1438.00,1439.11,1431.44,1433.37,2395680000,1433.37
-2007-02-09,1448.25,1452.45,1433.44,1438.06,2951810000,1438.06
-2007-02-08,1449.99,1450.45,1442.81,1448.31,2816180000,1448.31
-2007-02-07,1447.41,1452.99,1446.44,1450.02,2618820000,1450.02
-2007-02-06,1446.98,1450.19,1443.40,1448.00,2608710000,1448.00
-2007-02-05,1448.33,1449.38,1443.85,1446.99,2439430000,1446.99
-2007-02-02,1445.94,1449.33,1444.49,1448.39,2569450000,1448.39
-2007-02-01,1437.90,1446.64,1437.90,1445.94,2914890000,1445.94
-2007-01-31,1428.65,1441.61,1424.78,1438.24,2976690000,1438.24
-2007-01-30,1420.61,1428.82,1420.61,1428.82,2706250000,1428.82
-2007-01-29,1422.03,1426.94,1418.46,1420.62,2730480000,1420.62
-2007-01-26,1423.90,1427.27,1416.96,1422.18,2626620000,1422.18
-2007-01-25,1440.12,1440.69,1422.34,1423.90,2994330000,1423.90
-2007-01-24,1427.96,1440.14,1427.96,1440.13,2783180000,1440.13
-2007-01-23,1422.95,1431.33,1421.66,1427.99,2975070000,1427.99
-2007-01-22,1430.47,1431.39,1420.40,1422.95,2540120000,1422.95
-2007-01-19,1426.35,1431.57,1425.19,1430.50,2777480000,1430.50
-2007-01-18,1430.59,1432.96,1424.21,1426.37,2822430000,1426.37
-2007-01-17,1431.77,1435.27,1428.57,1430.62,2690270000,1430.62
-2007-01-16,1430.73,1433.93,1428.62,1431.90,2599530000,1431.90
-2007-01-12,1423.82,1431.23,1422.58,1430.73,2686480000,1430.73
-2007-01-11,1414.84,1427.12,1414.84,1423.82,2857870000,1423.82
-2007-01-10,1408.70,1415.99,1405.32,1414.85,2764660000,1414.85
-2007-01-09,1412.84,1415.61,1405.42,1412.11,3038380000,1412.11
-2007-01-08,1409.26,1414.98,1403.97,1412.84,2763340000,1412.84
-2007-01-05,1418.34,1418.34,1405.75,1409.71,2919400000,1409.71
-2007-01-04,1416.60,1421.84,1408.43,1418.34,3004460000,1418.34
-2007-01-03,1418.03,1429.42,1407.86,1416.60,3429160000,1416.60
-2006-12-29,1424.71,1427.00,1416.84,1418.30,1678200000,1418.30
-2006-12-28,1426.77,1427.26,1422.05,1424.73,1508570000,1424.73
-2006-12-27,1416.63,1427.72,1416.63,1426.84,1667370000,1426.84
-2006-12-26,1410.75,1417.91,1410.45,1416.90,1310310000,1416.90
-2006-12-22,1418.10,1418.82,1410.28,1410.76,1647590000,1410.76
-2006-12-21,1423.20,1426.40,1415.90,1418.30,2322410000,1418.30
-2006-12-20,1425.51,1429.05,1423.51,1423.53,2387630000,1423.53
-2006-12-19,1422.42,1428.30,1414.88,1425.55,2717060000,1425.55
-2006-12-18,1427.08,1431.81,1420.65,1422.48,2568140000,1422.48
-2006-12-15,1425.48,1431.63,1425.48,1427.09,3229580000,1427.09
-2006-12-14,1413.16,1427.23,1413.16,1425.49,2729700000,1425.49
-2006-12-13,1411.32,1416.64,1411.05,1413.21,2552260000,1413.21
-2006-12-12,1413.00,1413.78,1404.75,1411.56,2738170000,1411.56
-2006-12-11,1409.81,1415.60,1408.56,1413.04,2289900000,1413.04
-2006-12-08,1407.27,1414.09,1403.67,1409.84,2440460000,1409.84
-2006-12-07,1412.86,1418.27,1406.80,1407.29,2743150000,1407.29
-2006-12-06,1414.40,1415.93,1411.05,1412.90,2725280000,1412.90
-2006-12-05,1409.10,1415.27,1408.78,1414.76,2755700000,1414.76
-2006-12-04,1396.67,1411.23,1396.67,1409.12,2766320000,1409.12
-2006-12-01,1400.63,1402.46,1385.93,1396.71,2800980000,1396.71
-2006-11-30,1399.47,1406.30,1393.83,1400.63,4006230000,1400.63
-2006-11-29,1386.11,1401.14,1386.11,1399.48,2790970000,1399.48
-2006-11-28,1381.61,1387.91,1377.83,1386.72,2639750000,1386.72
-2006-11-27,1400.95,1400.95,1381.44,1381.96,2711210000,1381.96
-2006-11-24,1405.94,1405.94,1399.25,1400.95,832550000,1400.95
-2006-11-22,1402.69,1407.89,1402.26,1406.09,2237710000,1406.09
-2006-11-21,1400.43,1403.49,1399.99,1402.81,2597940000,1402.81
-2006-11-20,1401.17,1404.37,1397.85,1400.50,2546710000,1400.50
-2006-11-17,1399.76,1401.21,1394.55,1401.20,2726100000,1401.20
-2006-11-16,1396.53,1403.76,1396.53,1399.76,2835730000,1399.76
-2006-11-15,1392.91,1401.35,1392.13,1396.57,2831130000,1396.57
-2006-11-14,1384.36,1394.49,1379.07,1393.22,3027480000,1393.22
-2006-11-13,1380.58,1387.61,1378.80,1384.42,2386340000,1384.42
-2006-11-10,1378.33,1381.04,1375.60,1380.90,2290200000,1380.90
-2006-11-09,1385.43,1388.92,1377.31,1378.33,3012050000,1378.33
-2006-11-08,1382.50,1388.61,1379.33,1385.72,2814820000,1385.72
-2006-11-07,1379.75,1388.19,1379.19,1382.84,2636390000,1382.84
-2006-11-06,1364.27,1381.40,1364.27,1379.78,2533550000,1379.78
-2006-11-03,1367.31,1371.68,1360.98,1364.30,2419730000,1364.30
-2006-11-02,1367.44,1368.39,1362.21,1367.34,2646180000,1367.34
-2006-11-01,1377.76,1381.95,1366.26,1367.81,2821160000,1367.81
-2006-10-31,1377.93,1381.21,1372.19,1377.94,2803030000,1377.94
-2006-10-30,1377.30,1381.22,1373.46,1377.93,2770440000,1377.93
-2006-10-27,1388.89,1388.89,1375.85,1377.34,2458450000,1377.34
-2006-10-26,1382.21,1389.45,1379.47,1389.08,2793350000,1389.08
-2006-10-25,1377.36,1383.61,1376.00,1382.22,2953540000,1382.22
-2006-10-24,1377.02,1377.78,1372.42,1377.38,2876890000,1377.38
-2006-10-23,1368.58,1377.40,1363.94,1377.02,2480430000,1377.02
-2006-10-20,1366.94,1368.66,1362.10,1368.60,2526410000,1368.60
-2006-10-19,1365.95,1368.09,1362.06,1366.96,2619830000,1366.96
-2006-10-18,1363.93,1372.87,1360.95,1365.80,2658840000,1365.80
-2006-10-17,1369.05,1369.05,1356.87,1364.05,2519620000,1364.05
-2006-10-16,1365.61,1370.20,1364.48,1369.06,2305920000,1369.06
-2006-10-13,1362.82,1366.63,1360.50,1365.62,2482920000,1365.62
-2006-10-12,1349.94,1363.76,1349.94,1362.83,2514350000,1362.83
-2006-10-11,1353.28,1353.97,1343.57,1349.95,2521000000,1349.95
-2006-10-10,1350.62,1354.23,1348.60,1353.42,2376140000,1353.42
-2006-10-09,1349.58,1352.69,1346.55,1350.66,1935170000,1350.66
-2006-10-06,1353.22,1353.22,1344.21,1349.59,2523000000,1349.59
-2006-10-05,1349.84,1353.79,1347.75,1353.22,2817240000,1353.22
-2006-10-04,1333.81,1350.20,1331.48,1350.20,3019880000,1350.20
-2006-10-03,1331.32,1338.31,1327.10,1334.11,2682690000,1334.11
-2006-10-02,1335.82,1338.54,1330.28,1331.32,2154480000,1331.32
-2006-09-29,1339.15,1339.88,1335.64,1335.85,2273430000,1335.85
-2006-09-28,1336.56,1340.28,1333.75,1338.88,2397820000,1338.88
-2006-09-27,1336.12,1340.08,1333.54,1336.59,2749190000,1336.59
-2006-09-26,1326.35,1336.60,1325.30,1336.35,2673350000,1336.35
-2006-09-25,1314.78,1329.35,1311.58,1326.37,2710240000,1326.37
-2006-09-22,1318.03,1318.03,1310.94,1314.78,2162880000,1314.78
-2006-09-21,1324.89,1328.19,1315.45,1318.03,2627440000,1318.03
-2006-09-20,1318.28,1328.53,1318.28,1325.18,2543070000,1325.18
-2006-09-19,1321.17,1322.04,1312.17,1317.64,2390850000,1317.64
-2006-09-18,1319.85,1324.87,1318.16,1321.18,2325080000,1321.18
-2006-09-15,1316.28,1324.65,1316.28,1319.66,3198030000,1319.66
-2006-09-14,1318.00,1318.00,1313.25,1316.28,2351220000,1316.28
-2006-09-13,1312.74,1319.92,1311.12,1318.07,2597220000,1318.07
-2006-09-12,1299.53,1314.28,1299.53,1313.00,2791580000,1313.00
-2006-09-11,1298.86,1302.36,1290.93,1299.54,2506430000,1299.54
-2006-09-08,1294.02,1300.14,1294.02,1298.92,2132890000,1298.92
-2006-09-07,1300.21,1301.25,1292.13,1294.02,2325850000,1294.02
-2006-09-06,1313.04,1313.04,1299.28,1300.26,2329870000,1300.26
-2006-09-05,1310.94,1314.67,1308.82,1313.25,2114480000,1313.25
-2006-09-01,1303.80,1312.03,1303.80,1311.01,1800520000,1311.01
-2006-08-31,1304.25,1306.11,1302.45,1303.82,1974540000,1303.82
-2006-08-30,1303.70,1306.74,1302.15,1305.37,2060690000,1305.37
-2006-08-29,1301.57,1305.02,1295.29,1304.28,2093720000,1304.28
-2006-08-28,1295.09,1305.02,1293.97,1301.78,1834920000,1301.78
-2006-08-25,1295.92,1298.88,1292.39,1295.09,1667580000,1295.09
-2006-08-24,1292.97,1297.23,1291.40,1296.06,1930320000,1296.06
-2006-08-23,1298.73,1301.50,1289.82,1292.99,1893670000,1292.99
-2006-08-22,1297.52,1302.49,1294.44,1298.82,1908740000,1298.82
-2006-08-21,1302.30,1302.30,1295.51,1297.52,1759240000,1297.52
-2006-08-18,1297.48,1302.30,1293.57,1302.30,2033910000,1302.30
-2006-08-17,1295.37,1300.78,1292.71,1297.48,2458340000,1297.48
-2006-08-16,1285.27,1296.21,1285.27,1295.43,2554570000,1295.43
-2006-08-15,1268.19,1286.23,1268.19,1285.58,2334100000,1285.58
-2006-08-14,1266.67,1278.90,1266.67,1268.21,2118020000,1268.21
-2006-08-11,1271.64,1271.64,1262.08,1266.74,2004540000,1266.74
-2006-08-10,1265.72,1272.55,1261.30,1271.81,2402190000,1271.81
-2006-08-09,1271.13,1283.74,1264.73,1265.95,2555180000,1265.95
-2006-08-08,1275.67,1282.75,1268.37,1271.48,2457840000,1271.48
-2006-08-07,1279.31,1279.31,1273.00,1275.77,2045660000,1275.77
-2006-08-04,1280.26,1292.92,1273.82,1279.36,2530970000,1279.36
-2006-08-03,1278.22,1283.96,1271.25,1280.27,2728440000,1280.27
-2006-08-02,1270.73,1283.42,1270.73,1277.41,2610750000,1277.41
-2006-08-01,1278.53,1278.66,1265.71,1270.92,2527690000,1270.92
-2006-07-31,1278.53,1278.66,1274.31,1276.66,2461300000,1276.66
-2006-07-28,1263.15,1280.42,1263.15,1278.55,2480420000,1278.55
-2006-07-27,1268.20,1275.85,1261.92,1263.20,2776710000,1263.20
-2006-07-26,1268.87,1273.89,1261.94,1268.40,2667710000,1268.40
-2006-07-25,1260.91,1272.39,1257.19,1268.88,2563930000,1268.88
-2006-07-24,1240.25,1262.50,1240.25,1260.91,2312720000,1260.91
-2006-07-21,1249.12,1250.96,1238.72,1240.29,2704090000,1240.29
-2006-07-20,1259.81,1262.56,1249.13,1249.13,2345580000,1249.13
-2006-07-19,1236.74,1261.81,1236.74,1259.81,2701980000,1259.81
-2006-07-18,1234.48,1239.86,1224.54,1236.86,2481750000,1236.86
-2006-07-17,1236.20,1240.07,1231.49,1234.49,2146410000,1234.49
-2006-07-14,1242.29,1242.70,1228.45,1236.20,2467120000,1236.20
-2006-07-13,1258.58,1258.58,1241.43,1242.28,2545760000,1242.28
-2006-07-12,1272.39,1273.31,1257.29,1258.60,2250450000,1258.60
-2006-07-11,1267.26,1273.64,1259.65,1272.43,2310850000,1272.43
-2006-07-10,1265.46,1274.06,1264.46,1267.34,1854590000,1267.34
-2006-07-07,1274.08,1275.38,1263.13,1265.48,1988150000,1265.48
-2006-07-06,1270.58,1278.32,1270.58,1274.08,2009160000,1274.08
-2006-07-05,1280.05,1280.05,1265.91,1270.91,2165070000,1270.91
-2006-07-03,1270.06,1280.38,1270.06,1280.19,1114470000,1280.19
-2006-06-30,1272.86,1276.30,1270.20,1270.20,3049560000,1270.20
-2006-06-29,1245.94,1272.88,1245.94,1272.87,2621250000,1272.87
-2006-06-28,1238.99,1247.06,1237.59,1246.00,2085490000,1246.00
-2006-06-27,1250.55,1253.37,1238.94,1239.20,2203130000,1239.20
-2006-06-26,1244.50,1250.92,1243.68,1250.56,1878580000,1250.56
-2006-06-23,1245.59,1253.13,1241.43,1244.50,2017270000,1244.50
-2006-06-22,1251.92,1251.92,1241.53,1245.60,2148180000,1245.60
-2006-06-21,1240.09,1257.96,1240.09,1252.20,2361230000,1252.20
-2006-06-20,1240.12,1249.01,1238.87,1240.12,2232950000,1240.12
-2006-06-19,1251.54,1255.93,1237.17,1240.13,2517200000,1240.13
-2006-06-16,1256.16,1256.27,1246.33,1251.54,2783390000,1251.54
-2006-06-15,1230.01,1258.64,1230.01,1256.16,2775480000,1256.16
-2006-06-14,1223.66,1231.46,1219.29,1230.04,2667990000,1230.04
-2006-06-13,1236.08,1243.37,1222.52,1223.69,3215770000,1223.69
-2006-06-12,1252.27,1255.22,1236.43,1237.44,2247010000,1237.44
-2006-06-09,1257.93,1262.58,1250.03,1252.30,2214000000,1252.30
-2006-06-08,1256.08,1259.85,1235.18,1257.93,3543790000,1257.93
-2006-06-07,1263.61,1272.47,1255.77,1256.15,2644170000,1256.15
-2006-06-06,1265.23,1269.88,1254.46,1263.85,2697650000,1263.85
-2006-06-05,1288.16,1288.16,1264.66,1265.29,2313470000,1265.29
-2006-06-02,1285.71,1290.68,1280.22,1288.22,2295540000,1288.22
-2006-06-01,1270.05,1285.71,1269.19,1285.71,2360160000,1285.71
-2006-05-31,1259.38,1270.09,1259.38,1270.09,2692160000,1270.09
-2006-05-30,1280.04,1280.04,1259.87,1259.87,2176190000,1259.87
-2006-05-26,1272.71,1280.54,1272.50,1280.16,1814020000,1280.16
-2006-05-25,1258.41,1273.26,1258.41,1272.88,2372730000,1272.88
-2006-05-24,1256.56,1264.53,1245.34,1258.57,2999030000,1258.57
-2006-05-23,1262.06,1273.67,1256.15,1256.58,2605250000,1256.58
-2006-05-22,1267.03,1268.77,1252.98,1262.07,2773010000,1262.07
-2006-05-19,1261.81,1272.15,1256.28,1267.03,2982300000,1267.03
-2006-05-18,1270.25,1274.89,1261.75,1261.81,2537490000,1261.81
-2006-05-17,1291.73,1291.73,1267.31,1270.32,2830200000,1270.32
-2006-05-16,1294.50,1297.88,1288.51,1292.08,2386210000,1292.08
-2006-05-15,1291.19,1294.81,1284.51,1294.50,2505660000,1294.50
-2006-05-12,1305.88,1305.88,1290.38,1291.24,2567970000,1291.24
-2006-05-11,1322.63,1322.63,1303.45,1305.92,2531520000,1305.92
-2006-05-10,1324.57,1325.51,1317.44,1322.85,2268550000,1322.85
-2006-05-09,1324.66,1326.60,1322.48,1325.14,2157290000,1325.14
-2006-05-08,1325.76,1326.70,1322.87,1324.66,2151300000,1324.66
-2006-05-05,1312.25,1326.53,1312.25,1325.76,2294760000,1325.76
-2006-05-04,1307.85,1315.14,1307.85,1312.25,2431450000,1312.25
-2006-05-03,1313.21,1313.47,1303.92,1308.12,2395230000,1308.12
-2006-05-02,1305.19,1313.66,1305.19,1313.21,2403470000,1313.21
-2006-05-01,1310.61,1317.21,1303.46,1305.19,2437040000,1305.19
-2006-04-28,1309.72,1316.04,1306.16,1310.61,2419920000,1310.61
-2006-04-27,1305.41,1315.00,1295.57,1309.72,2772010000,1309.72
-2006-04-26,1301.74,1310.97,1301.74,1305.41,2502690000,1305.41
-2006-04-25,1308.11,1310.79,1299.17,1301.74,2366380000,1301.74
-2006-04-24,1311.28,1311.28,1303.79,1308.11,2117330000,1308.11
-2006-04-21,1311.46,1317.67,1306.59,1311.28,2392630000,1311.28
-2006-04-20,1309.93,1318.16,1306.38,1311.46,2512920000,1311.46
-2006-04-19,1307.65,1310.39,1302.79,1309.93,2447310000,1309.93
-2006-04-18,1285.33,1309.02,1285.33,1307.28,2595440000,1307.28
-2006-04-17,1289.12,1292.45,1280.74,1285.33,1794650000,1285.33
-2006-04-13,1288.12,1292.09,1283.37,1289.12,1891940000,1289.12
-2006-04-12,1286.57,1290.93,1286.45,1288.12,1938100000,1288.12
-2006-04-11,1296.60,1300.71,1282.96,1286.57,2232880000,1286.57
-2006-04-10,1295.51,1300.74,1293.17,1296.62,1898320000,1296.62
-2006-04-07,1309.04,1314.07,1294.18,1295.50,2082470000,1295.50
-2006-04-06,1311.56,1311.99,1302.44,1309.04,2281680000,1309.04
-2006-04-05,1305.93,1312.81,1304.82,1311.56,2420020000,1311.56
-2006-04-04,1297.81,1307.55,1294.71,1305.93,2147660000,1305.93
-2006-04-03,1302.88,1309.19,1296.65,1297.81,2494080000,1297.81
-2006-03-31,1300.25,1303.00,1294.87,1294.87,2236710000,1294.87
-2006-03-30,1302.89,1310.15,1296.72,1300.25,2294560000,1300.25
-2006-03-29,1293.23,1305.60,1293.23,1302.89,2143540000,1302.89
-2006-03-28,1301.61,1306.24,1291.84,1293.23,2148580000,1293.23
-2006-03-27,1302.95,1303.74,1299.09,1301.61,2029700000,1301.61
-2006-03-24,1301.67,1306.53,1298.89,1302.95,2326070000,1302.95
-2006-03-23,1305.04,1305.04,1298.11,1301.67,1980940000,1301.67
-2006-03-22,1297.23,1305.97,1295.81,1305.04,2039810000,1305.04
-2006-03-21,1305.08,1310.88,1295.82,1297.23,2147370000,1297.23
-2006-03-20,1307.25,1310.00,1303.59,1305.08,1976830000,1305.08
-2006-03-17,1305.33,1309.79,1305.32,1307.25,2549620000,1307.25
-2006-03-16,1303.02,1310.45,1303.02,1305.33,2292180000,1305.33
-2006-03-15,1297.48,1304.40,1294.97,1303.02,2293000000,1303.02
-2006-03-14,1284.13,1298.14,1282.67,1297.48,2165270000,1297.48
-2006-03-13,1281.58,1287.37,1281.58,1284.13,2070330000,1284.13
-2006-03-10,1272.23,1284.37,1271.11,1281.42,2123450000,1281.42
-2006-03-09,1278.47,1282.74,1272.23,1272.23,2140110000,1272.23
-2006-03-08,1275.88,1280.33,1268.42,1278.47,2442870000,1278.47
-2006-03-07,1278.26,1278.26,1271.11,1275.88,2268050000,1275.88
-2006-03-06,1287.23,1288.23,1275.67,1278.26,2280190000,1278.26
-2006-03-03,1289.14,1297.33,1284.20,1287.23,2152950000,1287.23
-2006-03-02,1291.24,1291.24,1283.21,1289.14,2494590000,1289.14
-2006-03-01,1280.66,1291.80,1280.66,1291.24,2308320000,1291.24
-2006-02-28,1294.12,1294.12,1278.66,1280.66,2370860000,1280.66
-2006-02-27,1289.43,1297.57,1289.43,1294.12,1975320000,1294.12
-2006-02-24,1287.79,1292.11,1285.62,1289.43,1933010000,1289.43
-2006-02-23,1292.67,1293.84,1285.14,1287.79,2144210000,1287.79
-2006-02-22,1283.03,1294.17,1283.03,1292.67,2222380000,1292.67
-2006-02-21,1287.24,1291.92,1281.33,1283.03,2104320000,1283.03
-2006-02-17,1289.38,1289.47,1284.07,1287.24,2128260000,1287.24
-2006-02-16,1280.00,1289.39,1280.00,1289.38,2251490000,1289.38
-2006-02-15,1275.53,1281.00,1271.06,1280.00,2317590000,1280.00
-2006-02-14,1262.86,1278.21,1260.80,1275.53,2437940000,1275.53
-2006-02-13,1266.99,1266.99,1258.34,1262.86,1850080000,1262.86
-2006-02-10,1263.82,1269.89,1254.98,1266.99,2290050000,1266.99
-2006-02-09,1265.65,1274.56,1262.80,1263.78,2441920000,1263.78
-2006-02-08,1254.78,1266.47,1254.78,1265.65,2456860000,1265.65
-2006-02-07,1265.02,1265.78,1253.61,1254.78,2366370000,1254.78
-2006-02-06,1264.03,1267.04,1261.62,1265.02,2132360000,1265.02
-2006-02-03,1270.84,1270.87,1261.02,1264.03,2282210000,1264.03
-2006-02-02,1282.46,1282.46,1267.72,1270.84,2565300000,1270.84
-2006-02-01,1280.08,1283.33,1277.57,1282.46,2589410000,1282.46
-2006-01-31,1285.20,1285.20,1276.85,1280.08,2708310000,1280.08
-2006-01-30,1283.72,1287.94,1283.51,1285.19,2282730000,1285.19
-2006-01-27,1273.83,1286.38,1273.83,1283.72,2623620000,1283.72
-2006-01-26,1264.68,1276.44,1264.68,1273.83,2856780000,1273.83
-2006-01-25,1266.86,1271.87,1259.42,1264.68,2617060000,1264.68
-2006-01-24,1263.82,1271.47,1263.82,1266.86,2608720000,1266.86
-2006-01-23,1261.49,1268.19,1261.49,1263.82,2256070000,1263.82
-2006-01-20,1285.04,1285.04,1260.92,1261.49,2845810000,1261.49
-2006-01-19,1277.93,1287.79,1277.93,1285.04,2444020000,1285.04
-2006-01-18,1282.93,1282.93,1272.08,1277.93,2233200000,1277.93
-2006-01-17,1287.61,1287.61,1278.61,1283.03,2179970000,1283.03
-2006-01-13,1286.06,1288.96,1282.78,1287.61,2206510000,1287.61
-2006-01-12,1294.18,1294.18,1285.04,1286.06,2318350000,1286.06
-2006-01-11,1289.72,1294.90,1288.12,1294.18,2406130000,1294.18
-2006-01-10,1290.15,1290.15,1283.76,1289.69,2373080000,1289.69
-2006-01-09,1285.45,1290.78,1284.82,1290.15,2301490000,1290.15
-2006-01-06,1273.48,1286.09,1273.48,1285.45,2446560000,1285.45
-2006-01-05,1273.46,1276.91,1270.30,1273.48,2433340000,1273.48
-2006-01-04,1268.80,1275.37,1267.74,1273.46,2515330000,1273.46
-2006-01-03,1248.29,1270.22,1245.74,1268.80,2554570000,1268.80
-2005-12-30,1254.42,1254.42,1246.59,1248.29,1443500000,1248.29
-2005-12-29,1258.17,1260.61,1254.18,1254.42,1382540000,1254.42
-2005-12-28,1256.54,1261.10,1256.54,1258.17,1422360000,1258.17
-2005-12-27,1268.66,1271.83,1256.54,1256.54,1540470000,1256.54
-2005-12-23,1268.12,1269.76,1265.92,1268.66,1285810000,1268.66
-2005-12-22,1262.79,1268.19,1262.50,1268.12,1888500000,1268.12
-2005-12-21,1259.62,1269.37,1259.62,1262.79,2065170000,1262.79
-2005-12-20,1259.92,1263.86,1257.21,1259.62,1996690000,1259.62
-2005-12-19,1267.32,1270.51,1259.28,1259.92,2208810000,1259.92
-2005-12-16,1270.94,1275.24,1267.32,1267.32,2584190000,1267.32
-2005-12-15,1272.74,1275.17,1267.74,1270.94,2180590000,1270.94
-2005-12-14,1267.43,1275.80,1267.07,1272.74,2145520000,1272.74
-2005-12-13,1260.43,1272.11,1258.56,1267.43,2390020000,1267.43
-2005-12-12,1259.37,1263.86,1255.52,1260.43,1876550000,1260.43
-2005-12-09,1255.84,1263.08,1254.24,1259.37,1896290000,1259.37
-2005-12-08,1257.37,1263.36,1250.91,1255.84,2178300000,1255.84
-2005-12-07,1263.70,1264.85,1253.02,1257.37,2093830000,1257.37
-2005-12-06,1262.09,1272.89,1262.09,1263.70,2110740000,1263.70
-2005-12-05,1265.08,1265.08,1258.12,1262.09,2325840000,1262.09
-2005-12-02,1264.67,1266.85,1261.42,1265.08,2125580000,1265.08
-2005-12-01,1249.48,1266.17,1249.48,1264.67,2614830000,1264.67
-2005-11-30,1257.48,1260.93,1249.39,1249.48,2374690000,1249.48
-2005-11-29,1257.46,1266.18,1257.46,1257.48,2268340000,1257.48
-2005-11-28,1268.25,1268.44,1257.17,1257.46,2016900000,1257.46
-2005-11-25,1265.61,1268.78,1265.54,1268.25,724940000,1268.25
-2005-11-23,1261.23,1270.64,1259.51,1265.61,1985400000,1265.61
-2005-11-22,1254.85,1261.90,1251.40,1261.23,2291420000,1261.23
-2005-11-21,1248.27,1255.89,1246.90,1254.85,2117350000,1254.85
-2005-11-18,1242.80,1249.58,1240.71,1248.27,2453290000,1248.27
-2005-11-17,1231.21,1242.96,1231.21,1242.80,2298040000,1242.80
-2005-11-16,1229.01,1232.24,1227.18,1231.21,2121580000,1231.21
-2005-11-15,1233.76,1237.94,1226.41,1229.01,2359370000,1229.01
-2005-11-14,1234.72,1237.20,1231.78,1233.76,1899780000,1233.76
-2005-11-11,1230.96,1235.70,1230.72,1234.72,1773140000,1234.72
-2005-11-10,1220.65,1232.41,1215.05,1230.96,2378460000,1230.96
-2005-11-09,1218.59,1226.59,1216.53,1220.65,2214460000,1220.65
-2005-11-08,1222.81,1222.81,1216.08,1218.59,1965050000,1218.59
-2005-11-07,1220.14,1224.18,1217.29,1222.81,1987580000,1222.81
-2005-11-04,1219.94,1222.52,1214.45,1220.14,2050510000,1220.14
-2005-11-03,1214.76,1224.70,1214.76,1219.94,2716630000,1219.94
-2005-11-02,1202.76,1215.17,1201.07,1214.76,2648090000,1214.76
-2005-11-01,1207.01,1207.34,1201.66,1202.76,2457850000,1202.76
-2005-10-31,1198.41,1211.43,1198.41,1207.01,2567470000,1207.01
-2005-10-28,1178.90,1198.41,1178.90,1198.41,2379400000,1198.41
-2005-10-27,1191.38,1192.65,1178.89,1178.90,2395370000,1178.90
-2005-10-26,1196.54,1204.01,1191.38,1191.38,2467750000,1191.38
-2005-10-25,1199.38,1201.30,1189.29,1196.54,2312470000,1196.54
-2005-10-24,1179.59,1199.39,1179.59,1199.38,2197790000,1199.38
-2005-10-21,1177.80,1186.46,1174.92,1179.59,2470920000,1179.59
-2005-10-20,1195.76,1197.30,1173.30,1177.80,2617250000,1177.80
-2005-10-19,1178.14,1195.76,1170.55,1195.76,2703590000,1195.76
-2005-10-18,1190.10,1190.10,1178.13,1178.14,2197010000,1178.14
-2005-10-17,1186.57,1191.21,1184.48,1190.10,2054570000,1190.10
-2005-10-14,1176.84,1187.13,1175.44,1186.57,2188940000,1186.57
-2005-10-13,1177.68,1179.56,1168.20,1176.84,2351150000,1176.84
-2005-10-12,1184.87,1190.02,1173.65,1177.68,2491280000,1177.68
-2005-10-11,1187.33,1193.10,1183.16,1184.87,2299040000,1184.87
-2005-10-10,1195.90,1196.52,1186.12,1187.33,2195990000,1187.33
-2005-10-07,1191.49,1199.71,1191.46,1195.90,2126080000,1195.90
-2005-10-06,1196.39,1202.14,1181.92,1191.49,2792030000,1191.49
-2005-10-05,1214.47,1214.47,1196.25,1196.39,2546780000,1196.39
-2005-10-04,1226.70,1229.88,1214.02,1214.47,2341420000,1214.47
-2005-10-03,1228.81,1233.34,1225.15,1226.70,2097490000,1226.70
-2005-09-30,1227.68,1229.57,1225.22,1228.81,2097520000,1228.81
-2005-09-29,1216.89,1228.70,1211.54,1227.68,2176120000,1227.68
-2005-09-28,1215.66,1220.98,1212.72,1216.89,2106980000,1216.89
-2005-09-27,1215.63,1220.17,1211.11,1215.66,1976270000,1215.66
-2005-09-26,1215.29,1222.56,1211.84,1215.63,2022220000,1215.63
-2005-09-23,1214.62,1218.83,1209.80,1215.29,1973020000,1215.29
-2005-09-22,1210.20,1216.64,1205.35,1214.62,2424720000,1214.62
-2005-09-21,1221.34,1221.52,1209.89,1210.20,2548150000,1210.20
-2005-09-20,1231.02,1236.49,1220.07,1221.34,2319250000,1221.34
-2005-09-19,1237.91,1237.91,1227.65,1231.02,2076540000,1231.02
-2005-09-16,1228.42,1237.95,1228.42,1237.91,3152470000,1237.91
-2005-09-15,1227.16,1231.88,1224.85,1227.73,2079340000,1227.73
-2005-09-14,1231.20,1234.74,1226.16,1227.16,1986750000,1227.16
-2005-09-13,1240.57,1240.57,1231.20,1231.20,2082360000,1231.20
-2005-09-12,1241.48,1242.60,1239.15,1240.56,1938050000,1240.56
-2005-09-09,1231.67,1243.13,1231.67,1241.48,1992560000,1241.48
-2005-09-08,1236.36,1236.36,1229.51,1231.67,1955380000,1231.67
-2005-09-07,1233.39,1237.06,1230.93,1236.36,2067700000,1236.36
-2005-09-06,1218.02,1233.61,1218.02,1233.39,1932090000,1233.39
-2005-09-02,1221.59,1224.45,1217.75,1218.02,1640160000,1218.02
-2005-09-01,1220.33,1227.29,1216.18,1221.59,2229860000,1221.59
-2005-08-31,1208.41,1220.36,1204.40,1220.33,2365510000,1220.33
-2005-08-30,1212.28,1212.28,1201.07,1208.41,1916470000,1208.41
-2005-08-29,1205.10,1214.28,1201.53,1212.28,1599450000,1212.28
-2005-08-26,1212.40,1212.40,1204.23,1205.10,1541090000,1205.10
-2005-08-25,1209.59,1213.73,1209.57,1212.37,1571110000,1212.37
-2005-08-24,1217.57,1224.15,1209.37,1209.59,1930800000,1209.59
-2005-08-23,1221.73,1223.04,1214.44,1217.59,1678620000,1217.59
-2005-08-22,1219.71,1228.96,1216.47,1221.73,1621330000,1221.73
-2005-08-19,1219.02,1225.08,1219.02,1219.71,1558790000,1219.71
-2005-08-18,1220.24,1222.64,1215.93,1219.02,1808170000,1219.02
-2005-08-17,1219.34,1225.63,1218.07,1220.24,1859150000,1220.24
-2005-08-16,1233.87,1233.87,1219.05,1219.34,1820410000,1219.34
-2005-08-15,1230.40,1236.24,1226.20,1233.87,1562880000,1233.87
-2005-08-12,1237.81,1237.81,1225.87,1230.39,1709300000,1230.39
-2005-08-11,1229.13,1237.81,1228.33,1237.81,1941560000,1237.81
-2005-08-10,1231.38,1242.69,1226.58,1229.13,2172320000,1229.13
-2005-08-09,1223.13,1234.11,1223.13,1231.38,1897520000,1231.38
-2005-08-08,1226.42,1232.28,1222.67,1223.13,1804140000,1223.13
-2005-08-05,1235.86,1235.86,1225.62,1226.42,1930280000,1226.42
-2005-08-04,1245.04,1245.04,1235.15,1235.86,1981220000,1235.86
-2005-08-03,1244.12,1245.86,1240.57,1245.04,1999980000,1245.04
-2005-08-02,1235.35,1244.69,1235.35,1244.12,2043120000,1244.12
-2005-08-01,1234.18,1239.10,1233.80,1235.35,1716870000,1235.35
-2005-07-29,1243.72,1245.04,1234.18,1234.18,1789600000,1234.18
-2005-07-28,1236.79,1245.15,1235.81,1243.72,2001680000,1243.72
-2005-07-27,1231.16,1237.64,1230.15,1236.79,1945800000,1236.79
-2005-07-26,1229.03,1234.42,1229.03,1231.16,1934180000,1231.16
-2005-07-25,1233.68,1238.36,1228.15,1229.03,1717580000,1229.03
-2005-07-22,1227.04,1234.19,1226.15,1233.68,1766990000,1233.68
-2005-07-21,1235.20,1235.83,1224.70,1227.04,2129840000,1227.04
-2005-07-20,1229.35,1236.56,1222.91,1235.20,2063340000,1235.20
-2005-07-19,1221.13,1230.34,1221.13,1229.35,2041280000,1229.35
-2005-07-18,1227.92,1227.92,1221.13,1221.13,1582100000,1221.13
-2005-07-15,1226.50,1229.53,1223.50,1227.92,1716400000,1227.92
-2005-07-14,1223.29,1233.16,1223.29,1226.50,2048710000,1226.50
-2005-07-13,1222.21,1224.46,1219.64,1223.29,1812500000,1223.29
-2005-07-12,1219.44,1225.54,1216.60,1222.21,1932010000,1222.21
-2005-07-11,1211.86,1220.03,1211.86,1219.44,1846300000,1219.44
-2005-07-08,1197.87,1212.73,1197.20,1211.86,1900810000,1211.86
-2005-07-07,1194.94,1198.46,1183.55,1197.87,1952440000,1197.87
-2005-07-06,1204.99,1206.11,1194.78,1194.94,1883470000,1194.94
-2005-07-05,1194.44,1206.34,1192.49,1204.99,1805820000,1204.99
-2005-07-01,1191.33,1197.89,1191.33,1194.44,1593820000,1194.44
-2005-06-30,1199.85,1203.27,1190.51,1191.33,2109490000,1191.33
-2005-06-29,1201.57,1204.07,1198.70,1199.85,1769280000,1199.85
-2005-06-28,1190.69,1202.54,1190.69,1201.57,1772410000,1201.57
-2005-06-27,1191.57,1194.33,1188.30,1190.69,1738620000,1190.69
-2005-06-24,1200.73,1200.90,1191.45,1191.57,2418800000,1191.57
-2005-06-23,1213.88,1216.45,1200.72,1200.73,2029920000,1200.73
-2005-06-22,1213.61,1219.59,1211.69,1213.88,1823250000,1213.88
-2005-06-21,1216.10,1217.13,1211.86,1213.61,1720700000,1213.61
-2005-06-20,1216.96,1219.10,1210.65,1216.10,1714530000,1216.10
-2005-06-17,1210.93,1219.55,1210.93,1216.96,2407370000,1216.96
-2005-06-16,1206.55,1212.10,1205.47,1210.96,1776040000,1210.96
-2005-06-15,1203.91,1208.08,1198.66,1206.58,1840440000,1206.58
-2005-06-14,1200.82,1207.53,1200.18,1203.91,1698150000,1203.91
-2005-06-13,1198.11,1206.03,1194.51,1200.82,1661350000,1200.82
-2005-06-10,1200.93,1202.79,1192.64,1198.11,1664180000,1198.11
-2005-06-09,1194.67,1201.86,1191.09,1200.93,1824120000,1200.93
-2005-06-08,1197.26,1201.97,1193.33,1194.67,1715490000,1194.67
-2005-06-07,1197.51,1208.85,1197.26,1197.26,1851370000,1197.26
-2005-06-06,1196.02,1198.78,1192.75,1197.51,1547120000,1197.51
-2005-06-03,1204.29,1205.09,1194.55,1196.02,1627520000,1196.02
-2005-06-02,1202.27,1204.67,1198.42,1204.29,1813790000,1204.29
-2005-06-01,1191.50,1205.64,1191.03,1202.22,1810100000,1202.22
-2005-05-31,1198.78,1198.78,1191.50,1191.50,1840680000,1191.50
-2005-05-27,1197.62,1199.56,1195.28,1198.78,1381430000,1198.78
-2005-05-26,1190.01,1198.95,1190.01,1197.62,1654110000,1197.62
-2005-05-25,1194.07,1194.07,1185.96,1190.01,1742180000,1190.01
-2005-05-24,1193.86,1195.29,1189.87,1194.07,1681000000,1194.07
-2005-05-23,1189.28,1197.44,1188.76,1193.86,1681170000,1193.86
-2005-05-20,1191.08,1191.22,1185.19,1189.28,1631750000,1189.28
-2005-05-19,1185.56,1191.09,1184.49,1191.08,1775860000,1191.08
-2005-05-18,1173.80,1187.90,1173.80,1185.56,2266320000,1185.56
-2005-05-17,1165.69,1174.35,1159.86,1173.80,1887260000,1173.80
-2005-05-16,1154.05,1165.75,1153.64,1165.69,1856860000,1165.69
-2005-05-13,1159.36,1163.75,1146.18,1154.05,2188590000,1154.05
-2005-05-12,1171.11,1173.37,1157.76,1159.36,1995290000,1159.36
-2005-05-11,1166.22,1171.77,1157.71,1171.11,1834970000,1171.11
-2005-05-10,1178.84,1178.84,1162.98,1166.22,1889660000,1166.22
-2005-05-09,1171.35,1178.87,1169.38,1178.84,1857020000,1178.84
-2005-05-06,1172.63,1177.75,1170.50,1171.35,1707200000,1171.35
-2005-05-05,1175.65,1178.62,1166.77,1172.63,1997100000,1172.63
-2005-05-04,1161.17,1176.01,1161.17,1175.65,2306480000,1175.65
-2005-05-03,1162.16,1166.89,1156.71,1161.17,2167020000,1161.17
-2005-05-02,1156.85,1162.87,1154.71,1162.16,1980040000,1162.16
-2005-04-29,1143.22,1156.97,1139.19,1156.85,2362360000,1156.85
-2005-04-28,1156.38,1156.38,1143.22,1143.22,2182270000,1143.22
-2005-04-27,1151.74,1159.87,1144.42,1156.38,2151520000,1156.38
-2005-04-26,1162.10,1164.80,1151.83,1151.83,1959740000,1151.83
-2005-04-25,1152.12,1164.05,1152.12,1162.10,1795030000,1162.10
-2005-04-22,1159.95,1159.95,1142.95,1152.12,2045880000,1152.12
-2005-04-21,1137.50,1159.95,1137.50,1159.95,2308560000,1159.95
-2005-04-20,1152.78,1155.50,1136.15,1137.50,2217050000,1137.50
-2005-04-19,1145.98,1154.67,1145.98,1152.78,2142700000,1152.78
-2005-04-18,1142.62,1148.92,1139.80,1145.98,2180670000,1145.98
-2005-04-15,1162.05,1162.05,1141.92,1142.62,2689960000,1142.62
-2005-04-14,1173.79,1174.67,1161.70,1162.05,2355040000,1162.05
-2005-04-13,1187.76,1187.76,1171.40,1173.79,2049740000,1173.79
-2005-04-12,1181.21,1190.17,1170.85,1187.76,1979830000,1187.76
-2005-04-11,1181.20,1184.07,1178.69,1181.21,1525310000,1181.21
-2005-04-08,1191.14,1191.75,1181.13,1181.20,1661330000,1181.20
-2005-04-07,1184.07,1191.88,1183.81,1191.14,1900620000,1191.14
-2005-04-06,1181.39,1189.34,1181.39,1184.07,1797400000,1184.07
-2005-04-05,1176.12,1183.56,1176.12,1181.39,1870800000,1181.39
-2005-04-04,1172.79,1178.61,1167.72,1176.12,2079770000,1176.12
-2005-04-01,1180.59,1189.80,1169.91,1172.92,2168690000,1172.92
-2005-03-31,1181.41,1184.53,1179.49,1180.59,2214230000,1180.59
-2005-03-30,1165.36,1181.54,1165.36,1181.41,2097110000,1181.41
-2005-03-29,1174.28,1179.39,1163.69,1165.36,2223250000,1165.36
-2005-03-28,1171.42,1179.91,1171.42,1174.28,1746220000,1174.28
-2005-03-24,1172.53,1180.11,1171.42,1171.42,1721720000,1171.42
-2005-03-23,1171.71,1176.26,1168.70,1172.53,2246870000,1172.53
-2005-03-22,1183.78,1189.59,1171.63,1171.71,2114470000,1171.71
-2005-03-21,1189.65,1189.65,1178.82,1183.78,1819440000,1183.78
-2005-03-18,1190.21,1191.98,1182.78,1189.65,2344370000,1189.65
-2005-03-17,1188.07,1193.28,1186.34,1190.21,1581930000,1190.21
-2005-03-16,1197.75,1197.75,1185.61,1188.07,1653190000,1188.07
-2005-03-15,1206.83,1210.54,1197.75,1197.75,1513530000,1197.75
-2005-03-14,1200.08,1206.83,1199.51,1206.83,1437430000,1206.83
-2005-03-11,1209.25,1213.04,1198.15,1200.08,1449820000,1200.08
-2005-03-10,1207.01,1211.23,1201.41,1209.25,1604020000,1209.25
-2005-03-09,1219.43,1219.43,1206.66,1207.01,1704970000,1207.01
-2005-03-08,1225.31,1225.69,1218.57,1219.43,1523090000,1219.43
-2005-03-07,1222.12,1229.11,1222.12,1225.31,1488830000,1225.31
-2005-03-04,1210.47,1224.76,1210.47,1222.12,1636820000,1222.12
-2005-03-03,1210.08,1215.72,1204.45,1210.47,1616240000,1210.47
-2005-03-02,1210.41,1215.79,1204.22,1210.08,1568540000,1210.08
-2005-03-01,1203.60,1212.25,1203.60,1210.41,1708060000,1210.41
-2005-02-28,1211.37,1211.37,1198.13,1203.60,1795480000,1203.60
-2005-02-25,1200.20,1212.15,1199.61,1211.37,1523680000,1211.37
-2005-02-24,1190.80,1200.42,1187.80,1200.20,1518750000,1200.20
-2005-02-23,1184.16,1193.52,1184.16,1190.80,1501090000,1190.80
-2005-02-22,1201.59,1202.48,1184.16,1184.16,1744940000,1184.16
-2005-02-18,1200.75,1202.92,1197.35,1201.59,1551200000,1201.59
-2005-02-17,1210.34,1211.33,1200.74,1200.75,1580120000,1200.75
-2005-02-16,1210.12,1212.44,1205.06,1210.34,1490100000,1210.34
-2005-02-15,1206.14,1212.44,1205.52,1210.12,1527080000,1210.12
-2005-02-14,1205.30,1206.93,1203.59,1206.14,1290180000,1206.14
-2005-02-11,1197.01,1208.38,1193.28,1205.30,1562300000,1205.30
-2005-02-10,1191.99,1198.75,1191.54,1197.01,1491670000,1197.01
-2005-02-09,1202.30,1203.83,1191.54,1191.99,1511040000,1191.99
-2005-02-08,1201.72,1205.11,1200.16,1202.30,1416170000,1202.30
-2005-02-07,1203.03,1204.15,1199.27,1201.72,1347270000,1201.72
-2005-02-04,1189.89,1203.47,1189.67,1203.03,1648160000,1203.03
-2005-02-03,1193.19,1193.19,1185.64,1189.89,1554460000,1189.89
-2005-02-02,1189.41,1195.25,1188.92,1193.19,1561740000,1193.19
-2005-02-01,1181.27,1190.39,1180.95,1189.41,1681980000,1189.41
-2005-01-31,1171.36,1182.07,1171.36,1181.27,1679800000,1181.27
-2005-01-28,1174.55,1175.61,1166.25,1171.36,1641800000,1171.36
-2005-01-27,1174.07,1177.50,1170.15,1174.55,1600600000,1174.55
-2005-01-26,1168.41,1175.96,1168.41,1174.07,1635900000,1174.07
-2005-01-25,1163.75,1174.30,1163.75,1168.41,1610400000,1168.41
-2005-01-24,1167.87,1173.03,1163.75,1163.75,1494600000,1163.75
-2005-01-21,1175.41,1179.45,1167.82,1167.87,1643500000,1167.87
-2005-01-20,1184.63,1184.63,1173.42,1175.41,1692000000,1175.41
-2005-01-19,1195.98,1195.98,1184.41,1184.63,1498700000,1184.63
-2005-01-18,1184.52,1195.98,1180.10,1195.98,1596800000,1195.98
-2005-01-14,1177.45,1185.21,1177.45,1184.52,1335400000,1184.52
-2005-01-13,1187.70,1187.70,1175.81,1177.45,1510300000,1177.45
-2005-01-12,1182.99,1187.92,1175.64,1187.70,1562100000,1187.70
-2005-01-11,1190.25,1190.25,1180.43,1182.99,1488800000,1182.99
-2005-01-10,1186.19,1194.78,1184.80,1190.25,1490400000,1190.25
-2005-01-07,1187.89,1192.20,1182.16,1186.19,1477900000,1186.19
-2005-01-06,1183.74,1191.63,1183.27,1187.89,1569100000,1187.89
-2005-01-05,1188.05,1192.73,1183.72,1183.74,1738900000,1183.74
-2005-01-04,1202.08,1205.84,1185.39,1188.05,1721000000,1188.05
-2005-01-03,1211.92,1217.80,1200.32,1202.08,1510800000,1202.08
-2004-12-31,1213.55,1217.33,1211.65,1211.92,786900000,1211.92
-2004-12-30,1213.45,1216.47,1213.41,1213.55,829800000,1213.55
-2004-12-29,1213.54,1213.85,1210.95,1213.45,925900000,1213.45
-2004-12-28,1204.92,1213.54,1204.92,1213.54,983000000,1213.54
-2004-12-27,1210.13,1214.13,1204.92,1204.92,922000000,1204.92
-2004-12-23,1209.57,1213.66,1208.71,1210.13,956100000,1210.13
-2004-12-22,1205.45,1211.42,1203.85,1209.57,1390800000,1209.57
-2004-12-21,1194.65,1205.93,1194.65,1205.45,1483700000,1205.45
-2004-12-20,1194.20,1203.43,1193.36,1194.65,1422800000,1194.65
-2004-12-17,1203.21,1203.21,1193.49,1194.20,2335000000,1194.20
-2004-12-16,1205.72,1207.97,1198.41,1203.21,1793900000,1203.21
-2004-12-15,1203.38,1206.61,1199.44,1205.72,1695800000,1205.72
-2004-12-14,1198.68,1205.29,1197.84,1203.38,1544400000,1203.38
-2004-12-13,1188.00,1198.74,1188.00,1198.68,1436100000,1198.68
-2004-12-10,1189.24,1191.45,1185.24,1188.00,1443700000,1188.00
-2004-12-09,1182.81,1190.51,1173.79,1189.24,1624700000,1189.24
-2004-12-08,1177.07,1184.05,1177.07,1182.81,1525200000,1182.81
-2004-12-07,1190.25,1192.17,1177.07,1177.07,1533900000,1177.07
-2004-12-06,1191.17,1192.41,1185.18,1190.25,1354400000,1190.25
-2004-12-03,1190.33,1197.46,1187.71,1191.17,1566700000,1191.17
-2004-12-02,1191.37,1194.80,1186.72,1190.33,1774900000,1190.33
-2004-12-01,1173.78,1191.37,1173.78,1191.37,1772800000,1191.37
-2004-11-30,1178.57,1178.66,1173.81,1173.82,1553500000,1173.82
-2004-11-29,1182.65,1186.94,1172.37,1178.57,1378500000,1178.57
-2004-11-26,1181.76,1186.62,1181.08,1182.65,504580000,1182.65
-2004-11-24,1176.94,1182.46,1176.94,1181.76,1149600000,1181.76
-2004-11-23,1177.24,1179.52,1171.41,1176.94,1428300000,1176.94
-2004-11-22,1170.34,1178.18,1167.89,1177.24,1392700000,1177.24
-2004-11-19,1183.55,1184.00,1169.19,1170.34,1526600000,1170.34
-2004-11-18,1181.94,1184.90,1180.15,1183.55,1456700000,1183.55
-2004-11-17,1175.43,1188.46,1175.43,1181.94,1684200000,1181.94
-2004-11-16,1183.81,1183.81,1175.32,1175.43,1364400000,1175.43
-2004-11-15,1184.17,1184.48,1179.85,1183.81,1453300000,1183.81
-2004-11-12,1173.48,1184.17,1171.43,1184.17,1531600000,1184.17
-2004-11-11,1162.91,1174.80,1162.91,1173.48,1393000000,1173.48
-2004-11-10,1164.08,1169.25,1162.51,1162.91,1504300000,1162.91
-2004-11-09,1164.89,1168.96,1162.48,1164.08,1450800000,1164.08
-2004-11-08,1166.17,1166.77,1162.32,1164.89,1358700000,1164.89
-2004-11-05,1161.67,1170.87,1160.66,1166.17,1724400000,1166.17
-2004-11-04,1143.20,1161.67,1142.34,1161.67,1782700000,1161.67
-2004-11-03,1130.54,1147.57,1130.54,1143.20,1767500000,1143.20
-2004-11-02,1130.51,1140.48,1128.12,1130.56,1659000000,1130.56
-2004-11-01,1130.20,1133.41,1127.60,1130.51,1395900000,1130.51
-2004-10-29,1127.44,1131.40,1124.62,1130.20,1500800000,1130.20
-2004-10-28,1125.34,1130.67,1120.60,1127.44,1628200000,1127.44
-2004-10-27,1111.09,1126.29,1107.43,1125.40,1741900000,1125.40
-2004-10-26,1094.81,1111.10,1094.81,1111.09,1685400000,1111.09
-2004-10-25,1095.74,1096.81,1090.29,1094.80,1380500000,1094.80
-2004-10-22,1106.49,1108.14,1095.47,1095.74,1469600000,1095.74
-2004-10-21,1103.66,1108.87,1098.47,1106.49,1673000000,1106.49
-2004-10-20,1103.23,1104.09,1094.25,1103.66,1685700000,1103.66
-2004-10-19,1114.02,1117.96,1103.15,1103.23,1737500000,1103.23
-2004-10-18,1108.20,1114.46,1103.33,1114.02,1373300000,1114.02
-2004-10-15,1103.29,1113.17,1102.14,1108.20,1645100000,1108.20
-2004-10-14,1113.65,1114.96,1102.06,1103.29,1489500000,1103.29
-2004-10-13,1121.84,1127.01,1109.63,1113.65,1546200000,1113.65
-2004-10-12,1124.39,1124.39,1115.77,1121.84,1320100000,1121.84
-2004-10-11,1122.14,1126.20,1122.14,1124.39,943800000,1124.39
-2004-10-08,1130.65,1132.92,1120.19,1122.14,1291600000,1122.14
-2004-10-07,1142.05,1142.05,1130.50,1130.65,1447500000,1130.65
-2004-10-06,1134.48,1142.05,1132.94,1142.05,1416700000,1142.05
-2004-10-05,1135.17,1137.87,1132.03,1134.48,1418400000,1134.48
-2004-10-04,1131.50,1140.13,1131.50,1135.17,1534000000,1135.17
-2004-10-01,1114.58,1131.64,1114.58,1131.50,1582200000,1131.50
-2004-09-30,1114.80,1116.31,1109.68,1114.58,1748000000,1114.58
-2004-09-29,1110.06,1114.80,1107.42,1114.80,1402900000,1114.80
-2004-09-28,1103.52,1111.77,1101.29,1110.06,1396600000,1110.06
-2004-09-27,1110.11,1110.11,1103.24,1103.52,1263500000,1103.52
-2004-09-24,1108.36,1113.81,1108.36,1110.11,1255400000,1110.11
-2004-09-23,1113.56,1113.61,1108.05,1108.36,1286300000,1108.36
-2004-09-22,1129.30,1129.30,1112.67,1113.56,1379900000,1113.56
-2004-09-21,1122.20,1131.54,1122.20,1129.30,1325000000,1129.30
-2004-09-20,1128.55,1128.55,1120.34,1122.20,1197600000,1122.20
-2004-09-17,1123.50,1130.14,1123.50,1128.55,1422600000,1128.55
-2004-09-16,1120.37,1126.06,1120.37,1123.50,1113900000,1123.50
-2004-09-15,1128.33,1128.33,1119.82,1120.37,1256000000,1120.37
-2004-09-14,1125.82,1129.46,1124.72,1128.33,1204500000,1128.33
-2004-09-13,1123.92,1129.78,1123.35,1125.82,1299800000,1125.82
-2004-09-10,1118.38,1125.26,1114.39,1123.92,1261200000,1123.92
-2004-09-09,1116.27,1121.30,1113.62,1118.38,1371300000,1118.38
-2004-09-08,1121.30,1123.05,1116.27,1116.27,1246300000,1116.27
-2004-09-07,1113.63,1124.08,1113.63,1121.30,1214400000,1121.30
-2004-09-03,1118.31,1120.80,1113.57,1113.63,924170000,1113.63
-2004-09-02,1105.91,1119.11,1105.60,1118.31,1118400000,1118.31
-2004-09-01,1104.24,1109.24,1099.18,1105.91,1142100000,1105.91
-2004-08-31,1099.15,1104.24,1094.72,1104.24,1138200000,1104.24
-2004-08-30,1107.77,1107.77,1099.15,1099.15,843100000,1099.15
-2004-08-27,1105.09,1109.68,1104.62,1107.77,845400000,1107.77
-2004-08-26,1104.96,1106.78,1102.46,1105.09,1023600000,1105.09
-2004-08-25,1096.19,1106.29,1093.24,1104.96,1192200000,1104.96
-2004-08-24,1095.68,1100.94,1092.82,1096.19,1092500000,1096.19
-2004-08-23,1098.35,1101.40,1094.73,1095.68,1021900000,1095.68
-2004-08-20,1091.23,1100.26,1089.57,1098.35,1199900000,1098.35
-2004-08-19,1095.17,1095.17,1086.28,1091.23,1249400000,1091.23
-2004-08-18,1081.71,1095.17,1078.93,1095.17,1282500000,1095.17
-2004-08-17,1079.34,1086.78,1079.34,1081.71,1267800000,1081.71
-2004-08-16,1064.80,1080.66,1064.80,1079.34,1206200000,1079.34
-2004-08-13,1063.23,1067.58,1060.72,1064.80,1175100000,1064.80
-2004-08-12,1075.79,1075.79,1062.82,1063.23,1405100000,1063.23
-2004-08-11,1079.04,1079.04,1065.92,1075.79,1410400000,1075.79
-2004-08-10,1065.22,1079.04,1065.22,1079.04,1245600000,1079.04
-2004-08-09,1063.97,1069.46,1063.97,1065.22,1086000000,1065.22
-2004-08-06,1080.70,1080.70,1062.23,1063.97,1521000000,1063.97
-2004-08-05,1098.63,1098.79,1079.98,1080.70,1397400000,1080.70
-2004-08-04,1099.69,1102.45,1092.40,1098.63,1369200000,1098.63
-2004-08-03,1106.62,1106.62,1099.26,1099.69,1338300000,1099.69
-2004-08-02,1101.72,1108.60,1097.34,1106.62,1276000000,1106.62
-2004-07-30,1100.43,1103.73,1096.96,1101.72,1298200000,1101.72
-2004-07-29,1095.42,1103.51,1095.42,1100.43,1530100000,1100.43
-2004-07-28,1094.83,1098.84,1082.17,1095.42,1554300000,1095.42
-2004-07-27,1084.07,1096.65,1084.07,1094.83,1610800000,1094.83
-2004-07-26,1086.20,1089.82,1078.78,1084.07,1413400000,1084.07
-2004-07-23,1096.84,1096.84,1083.56,1086.20,1337500000,1086.20
-2004-07-22,1093.88,1099.66,1084.16,1096.84,1680800000,1096.84
-2004-07-21,1108.67,1116.27,1093.88,1093.88,1679500000,1093.88
-2004-07-20,1100.90,1108.88,1099.10,1108.67,1445800000,1108.67
-2004-07-19,1101.39,1105.52,1096.55,1100.90,1319900000,1100.90
-2004-07-16,1106.69,1112.17,1101.07,1101.39,1450300000,1101.39
-2004-07-15,1111.47,1114.63,1106.67,1106.69,1408700000,1106.69
-2004-07-14,1115.14,1119.60,1107.83,1111.47,1462000000,1111.47
-2004-07-13,1114.35,1116.30,1112.99,1115.14,1199700000,1115.14
-2004-07-12,1112.81,1116.11,1106.71,1114.35,1114600000,1114.35
-2004-07-09,1109.11,1115.57,1109.11,1112.81,1186300000,1112.81
-2004-07-08,1118.33,1119.12,1108.72,1109.11,1401100000,1109.11
-2004-07-07,1116.21,1122.37,1114.92,1118.33,1328600000,1118.33
-2004-07-06,1125.38,1125.38,1113.21,1116.21,1283300000,1116.21
-2004-07-02,1128.94,1129.15,1123.26,1125.38,1085000000,1125.38
-2004-07-01,1140.84,1140.84,1123.06,1128.94,1495700000,1128.94
-2004-06-30,1136.20,1144.20,1133.62,1140.84,1473800000,1140.84
-2004-06-29,1133.35,1138.26,1131.81,1136.20,1375000000,1136.20
-2004-06-28,1134.43,1142.60,1131.72,1133.35,1354600000,1133.35
-2004-06-25,1140.65,1145.97,1134.24,1134.43,1812900000,1134.43
-2004-06-24,1144.06,1146.34,1139.94,1140.65,1394900000,1140.65
-2004-06-23,1134.41,1145.15,1131.73,1144.06,1444200000,1144.06
-2004-06-22,1130.30,1135.05,1124.37,1134.41,1382300000,1134.41
-2004-06-21,1135.02,1138.05,1129.64,1130.30,1123900000,1130.30
-2004-06-18,1132.05,1138.96,1129.83,1135.02,1500600000,1135.02
-2004-06-17,1133.56,1133.56,1126.89,1132.05,1296700000,1132.05
-2004-06-16,1132.01,1135.28,1130.55,1133.56,1168400000,1133.56
-2004-06-15,1125.29,1137.36,1125.29,1132.01,1345900000,1132.01
-2004-06-14,1136.47,1136.47,1122.16,1125.29,1179400000,1125.29
-2004-06-10,1131.33,1136.47,1131.33,1136.47,1160600000,1136.47
-2004-06-09,1142.18,1142.18,1131.17,1131.33,1276800000,1131.33
-2004-06-08,1140.42,1142.18,1135.45,1142.18,1190300000,1142.18
-2004-06-07,1122.50,1140.54,1122.50,1140.42,1211800000,1140.42
-2004-06-04,1116.64,1129.17,1116.64,1122.50,1115300000,1122.50
-2004-06-03,1124.99,1125.31,1116.57,1116.64,1232400000,1116.64
-2004-06-02,1121.20,1128.10,1118.64,1124.99,1251700000,1124.99
-2004-06-01,1120.68,1122.70,1113.32,1121.20,1238000000,1121.20
-2004-05-28,1121.28,1122.69,1118.10,1120.68,1172600000,1120.68
-2004-05-27,1114.94,1123.95,1114.86,1121.28,1447500000,1121.28
-2004-05-26,1113.05,1116.71,1109.91,1114.94,1369400000,1114.94
-2004-05-25,1095.41,1113.80,1090.74,1113.05,1545700000,1113.05
-2004-05-24,1093.56,1101.28,1091.77,1095.41,1227500000,1095.41
-2004-05-21,1089.19,1099.64,1089.19,1093.56,1258600000,1093.56
-2004-05-20,1088.68,1092.62,1085.43,1089.19,1211000000,1089.19
-2004-05-19,1091.49,1105.93,1088.49,1088.68,1548600000,1088.68
-2004-05-18,1084.10,1094.10,1084.10,1091.49,1353000000,1091.49
-2004-05-17,1095.70,1095.70,1079.36,1084.10,1430100000,1084.10
-2004-05-14,1096.44,1102.10,1088.24,1095.70,1335900000,1095.70
-2004-05-13,1097.28,1102.77,1091.76,1096.44,1411100000,1096.44
-2004-05-12,1095.45,1097.55,1076.32,1097.28,1697600000,1097.28
-2004-05-11,1087.12,1095.69,1087.12,1095.45,1533800000,1095.45
-2004-05-10,1098.70,1098.70,1079.63,1087.12,1918400000,1087.12
-2004-05-07,1113.99,1117.30,1098.63,1098.70,1653600000,1098.70
-2004-05-06,1121.53,1121.53,1106.30,1113.99,1509300000,1113.99
-2004-05-05,1119.55,1125.07,1117.90,1121.53,1469000000,1121.53
-2004-05-04,1117.49,1127.74,1112.89,1119.55,1662100000,1119.55
-2004-05-03,1107.30,1118.72,1107.30,1117.49,1571600000,1117.49
-2004-04-30,1113.89,1119.26,1107.23,1107.30,1634700000,1107.30
-2004-04-29,1122.41,1128.80,1108.04,1113.89,1859000000,1113.89
-2004-04-28,1138.11,1138.11,1121.70,1122.41,1855600000,1122.41
-2004-04-27,1135.53,1146.56,1135.53,1138.11,1518000000,1138.11
-2004-04-26,1140.60,1145.08,1132.91,1135.53,1290600000,1135.53
-2004-04-23,1139.93,1141.92,1134.81,1140.60,1396100000,1140.60
-2004-04-22,1124.09,1142.77,1121.95,1139.93,1826700000,1139.93
-2004-04-21,1118.15,1125.72,1116.03,1124.09,1738100000,1124.09
-2004-04-20,1135.82,1139.26,1118.09,1118.15,1508500000,1118.15
-2004-04-19,1134.56,1136.18,1129.84,1135.82,1194900000,1135.82
-2004-04-16,1128.84,1136.80,1126.90,1134.61,1487800000,1134.61
-2004-04-15,1128.17,1134.08,1120.75,1128.84,1568700000,1128.84
-2004-04-14,1129.44,1132.52,1122.15,1128.17,1547700000,1128.17
-2004-04-13,1145.20,1147.78,1127.70,1129.44,1423200000,1129.44
-2004-04-12,1139.32,1147.29,1139.32,1145.20,1102400000,1145.20
-2004-04-08,1140.53,1148.97,1134.52,1139.32,1199800000,1139.32
-2004-04-07,1148.16,1148.16,1138.41,1140.53,1458800000,1140.53
-2004-04-06,1150.57,1150.57,1143.30,1148.16,1397700000,1148.16
-2004-04-05,1141.81,1150.57,1141.64,1150.57,1413700000,1150.57
-2004-04-02,1132.17,1144.81,1132.17,1141.81,1629200000,1141.81
-2004-04-01,1126.21,1135.67,1126.20,1132.17,1560700000,1132.17
-2004-03-31,1127.00,1130.83,1121.46,1126.21,1560700000,1126.21
-2004-03-30,1122.47,1127.60,1119.66,1127.00,1332400000,1127.00
-2004-03-29,1108.06,1124.37,1108.06,1122.47,1405500000,1122.47
-2004-03-26,1109.19,1115.27,1106.13,1108.06,1319100000,1108.06
-2004-03-25,1091.33,1110.38,1091.33,1109.19,1471700000,1109.19
-2004-03-24,1093.95,1098.32,1087.16,1091.33,1527800000,1091.33
-2004-03-23,1095.40,1101.52,1091.57,1093.95,1458200000,1093.95
-2004-03-22,1109.78,1109.78,1089.54,1095.40,1452300000,1095.40
-2004-03-19,1122.32,1122.72,1109.69,1109.78,1457400000,1109.78
-2004-03-18,1123.75,1125.50,1113.25,1122.32,1369200000,1122.32
-2004-03-17,1110.70,1125.76,1110.70,1123.75,1490100000,1123.75
-2004-03-16,1104.49,1113.76,1102.61,1110.70,1500700000,1110.70
-2004-03-15,1120.57,1120.57,1103.36,1104.49,1600600000,1104.49
-2004-03-12,1106.78,1120.63,1106.78,1120.57,1388500000,1120.57
-2004-03-11,1123.89,1125.96,1105.87,1106.78,1889900000,1106.78
-2004-03-10,1140.58,1141.45,1122.53,1123.89,1648400000,1123.89
-2004-03-09,1147.20,1147.32,1136.84,1140.58,1499400000,1140.58
-2004-03-08,1156.86,1159.94,1146.97,1147.20,1254400000,1147.20
-2004-03-05,1154.87,1163.23,1148.77,1156.86,1398200000,1156.86
-2004-03-04,1151.03,1154.97,1149.81,1154.87,1265800000,1154.87
-2004-03-03,1149.10,1152.44,1143.78,1151.03,1334500000,1151.03
-2004-03-02,1155.97,1156.54,1147.31,1149.10,1476000000,1149.10
-2004-03-01,1144.94,1157.45,1144.94,1155.97,1497100000,1155.97
-2004-02-27,1145.80,1151.68,1141.80,1144.94,1540400000,1144.94
-2004-02-26,1143.67,1147.23,1138.62,1144.91,1383900000,1144.91
-2004-02-25,1139.09,1145.24,1138.96,1143.67,1360700000,1143.67
-2004-02-24,1140.99,1144.54,1134.43,1139.09,1543600000,1139.09
-2004-02-23,1144.11,1146.69,1136.98,1140.99,1380400000,1140.99
-2004-02-20,1147.06,1149.81,1139.00,1144.11,1479600000,1144.11
-2004-02-19,1151.82,1158.57,1146.85,1147.06,1562800000,1147.06
-2004-02-18,1156.99,1157.40,1149.54,1151.82,1382400000,1151.82
-2004-02-17,1145.81,1158.98,1145.81,1156.99,1396500000,1156.99
-2004-02-13,1152.11,1156.88,1143.24,1145.81,1329200000,1145.81
-2004-02-12,1157.76,1157.76,1151.44,1152.11,1464300000,1152.11
-2004-02-11,1145.54,1158.89,1142.33,1157.76,1699300000,1157.76
-2004-02-10,1139.81,1147.02,1138.70,1145.54,1403900000,1145.54
-2004-02-09,1142.76,1144.46,1139.21,1139.81,1303500000,1139.81
-2004-02-06,1128.59,1142.79,1128.39,1142.76,1477600000,1142.76
-2004-02-05,1126.52,1131.17,1124.44,1128.59,1566600000,1128.59
-2004-02-04,1136.03,1136.03,1124.74,1126.52,1634800000,1126.52
-2004-02-03,1135.26,1137.44,1131.33,1136.03,1476900000,1136.03
-2004-02-02,1131.13,1142.45,1127.87,1135.26,1599200000,1135.26
-2004-01-30,1134.11,1134.17,1127.73,1131.13,1635000000,1131.13
-2004-01-29,1128.48,1134.39,1122.38,1134.11,1921900000,1134.11
-2004-01-28,1144.05,1149.14,1126.50,1128.48,1842000000,1128.48
-2004-01-27,1155.37,1155.37,1144.05,1144.05,1673100000,1144.05
-2004-01-26,1141.55,1155.38,1141.00,1155.37,1480600000,1155.37
-2004-01-23,1143.94,1150.31,1136.85,1141.55,1561200000,1141.55
-2004-01-22,1147.62,1150.51,1143.01,1143.94,1693700000,1143.94
-2004-01-21,1138.77,1149.21,1134.62,1147.62,1757600000,1147.62
-2004-01-20,1139.83,1142.93,1135.40,1138.77,1698200000,1138.77
-2004-01-16,1132.05,1139.83,1132.05,1139.83,1721100000,1139.83
-2004-01-15,1130.52,1137.11,1124.54,1132.05,1695000000,1132.05
-2004-01-14,1121.22,1130.75,1121.22,1130.52,1514600000,1130.52
-2004-01-13,1127.23,1129.07,1115.19,1121.22,1595900000,1121.22
-2004-01-12,1121.86,1127.85,1120.90,1127.23,1510200000,1127.23
-2004-01-09,1131.92,1131.92,1120.90,1121.86,1720700000,1121.86
-2004-01-08,1126.33,1131.92,1124.91,1131.92,1868400000,1131.92
-2004-01-07,1123.67,1126.33,1116.45,1126.33,1704900000,1126.33
-2004-01-06,1122.22,1124.46,1118.44,1123.67,1494500000,1123.67
-2004-01-05,1108.48,1122.22,1108.48,1122.22,1578200000,1122.22
-2004-01-02,1111.92,1118.85,1105.08,1108.48,1153200000,1108.48
-2003-12-31,1109.64,1112.56,1106.21,1111.92,1027500000,1111.92
-2003-12-30,1109.48,1109.75,1106.41,1109.64,1012600000,1109.64
-2003-12-29,1095.89,1109.48,1095.89,1109.48,1058800000,1109.48
-2003-12-26,1094.04,1098.47,1094.04,1095.89,356070000,1095.89
-2003-12-24,1096.02,1096.40,1092.73,1094.04,518060000,1094.04
-2003-12-23,1092.94,1096.95,1091.73,1096.02,1145300000,1096.02
-2003-12-22,1088.66,1092.94,1086.14,1092.94,1251700000,1092.94
-2003-12-19,1089.18,1091.06,1084.19,1088.66,1657300000,1088.66
-2003-12-18,1076.48,1089.50,1076.48,1089.18,1579900000,1089.18
-2003-12-17,1075.13,1076.54,1071.14,1076.48,1441700000,1076.48
-2003-12-16,1068.04,1075.94,1068.04,1075.13,1547900000,1075.13
-2003-12-15,1074.14,1082.79,1068.00,1068.04,1520800000,1068.04
-2003-12-12,1071.21,1074.76,1067.64,1074.14,1223100000,1074.14
-2003-12-11,1059.05,1073.63,1059.05,1071.21,1441100000,1071.21
-2003-12-10,1060.18,1063.02,1053.41,1059.05,1444000000,1059.05
-2003-12-09,1069.30,1071.94,1059.16,1060.18,1465500000,1060.18
-2003-12-08,1061.50,1069.59,1060.93,1069.30,1218900000,1069.30
-2003-12-05,1069.72,1069.72,1060.09,1061.50,1265900000,1061.50
-2003-12-04,1064.73,1070.37,1063.15,1069.72,1463100000,1069.72
-2003-12-03,1066.62,1074.30,1064.63,1064.73,1441700000,1064.73
-2003-12-02,1070.12,1071.22,1065.22,1066.62,1383200000,1066.62
-2003-12-01,1058.20,1070.47,1058.20,1070.12,1375000000,1070.12
-2003-11-28,1058.45,1060.63,1056.77,1058.20,487220000,1058.20
-2003-11-26,1053.89,1058.45,1048.28,1058.45,1097700000,1058.45
-2003-11-25,1052.08,1058.05,1049.31,1053.89,1333700000,1053.89
-2003-11-24,1035.28,1052.08,1035.28,1052.08,1302800000,1052.08
-2003-11-21,1033.65,1037.57,1031.20,1035.28,1273800000,1035.28
-2003-11-20,1042.44,1046.48,1033.42,1033.65,1326700000,1033.65
-2003-11-19,1034.15,1043.95,1034.15,1042.44,1326200000,1042.44
-2003-11-18,1043.63,1048.77,1034.00,1034.15,1354300000,1034.15
-2003-11-17,1050.35,1050.35,1035.28,1043.63,1374300000,1043.63
-2003-11-14,1058.41,1063.65,1048.11,1050.35,1356100000,1050.35
-2003-11-13,1058.56,1059.62,1052.96,1058.41,1383000000,1058.41
-2003-11-12,1046.57,1059.10,1046.57,1058.53,1349300000,1058.53
-2003-11-11,1047.11,1048.23,1043.46,1046.57,1162500000,1046.57
-2003-11-10,1053.21,1053.65,1045.58,1047.11,1243600000,1047.11
-2003-11-07,1058.05,1062.39,1052.17,1053.21,1440500000,1053.21
-2003-11-06,1051.81,1058.94,1046.93,1058.05,1453900000,1058.05
-2003-11-05,1053.25,1054.54,1044.88,1051.81,1401800000,1051.81
-2003-11-04,1059.02,1059.02,1051.70,1053.25,1417600000,1053.25
-2003-11-03,1050.71,1061.44,1050.71,1059.02,1378200000,1059.02
-2003-10-31,1046.94,1053.09,1046.94,1050.71,1498900000,1050.71
-2003-10-30,1048.11,1052.81,1043.82,1046.94,1629700000,1046.94
-2003-10-29,1046.79,1049.83,1043.35,1048.11,1562600000,1048.11
-2003-10-28,1031.13,1046.79,1031.13,1046.79,1629200000,1046.79
-2003-10-27,1028.91,1037.75,1028.91,1031.13,1371800000,1031.13
-2003-10-24,1033.77,1033.77,1018.32,1028.91,1420300000,1028.91
-2003-10-23,1030.36,1035.44,1025.89,1033.77,1604300000,1033.77
-2003-10-22,1046.03,1046.03,1028.39,1030.36,1647200000,1030.36
-2003-10-21,1044.68,1048.57,1042.59,1046.03,1498000000,1046.03
-2003-10-20,1039.32,1044.69,1036.13,1044.68,1172600000,1044.68
-2003-10-17,1050.07,1051.89,1036.57,1039.32,1352000000,1039.32
-2003-10-16,1046.76,1052.94,1044.04,1050.07,1417700000,1050.07
-2003-10-15,1049.48,1053.79,1043.15,1046.76,1521100000,1046.76
-2003-10-14,1045.35,1049.49,1040.84,1049.48,1271900000,1049.48
-2003-10-13,1038.06,1048.90,1038.06,1045.35,1040500000,1045.35
-2003-10-10,1038.73,1040.84,1035.74,1038.06,1108100000,1038.06
-2003-10-09,1033.78,1048.28,1033.78,1038.73,1578700000,1038.73
-2003-10-08,1039.25,1040.06,1030.96,1033.78,1262500000,1033.78
-2003-10-07,1034.35,1039.25,1026.27,1039.25,1279500000,1039.25
-2003-10-06,1029.85,1036.48,1029.15,1034.35,1025800000,1034.35
-2003-10-03,1020.24,1039.31,1020.24,1029.85,1570500000,1029.85
-2003-10-02,1018.22,1021.87,1013.38,1020.24,1269300000,1020.24
-2003-10-01,995.97,1018.22,995.97,1018.22,1566300000,1018.22
-2003-09-30,1006.58,1006.58,990.36,995.97,1590500000,995.97
-2003-09-29,996.85,1006.89,995.31,1006.58,1366500000,1006.58
-2003-09-26,1003.27,1003.45,996.08,996.85,1472500000,996.85
-2003-09-25,1009.38,1015.97,1003.26,1003.27,1530000000,1003.27
-2003-09-24,1029.03,1029.83,1008.93,1009.38,1556000000,1009.38
-2003-09-23,1022.82,1030.12,1021.54,1029.03,1301700000,1029.03
-2003-09-22,1036.30,1036.30,1018.30,1022.82,1278800000,1022.82
-2003-09-19,1039.58,1040.29,1031.89,1036.30,1518600000,1036.30
-2003-09-18,1025.97,1040.16,1025.75,1039.58,1498800000,1039.58
-2003-09-17,1029.32,1031.34,1024.53,1025.97,1338210000,1025.97
-2003-09-16,1014.81,1029.66,1014.81,1029.32,1403200000,1029.32
-2003-09-15,1018.63,1019.79,1013.59,1014.81,1151300000,1014.81
-2003-09-12,1016.42,1019.65,1007.71,1018.63,1236700000,1018.63
-2003-09-11,1010.92,1020.88,1010.92,1016.42,1335900000,1016.42
-2003-09-10,1023.17,1023.17,1009.74,1010.92,1582100000,1010.92
-2003-09-09,1031.64,1031.64,1021.14,1023.17,1414800000,1023.17
-2003-09-08,1021.39,1032.41,1021.39,1031.64,1299300000,1031.64
-2003-09-05,1027.97,1029.21,1018.19,1021.39,1465200000,1021.39
-2003-09-04,1026.27,1029.17,1022.19,1027.97,1453900000,1027.97
-2003-09-03,1021.99,1029.34,1021.99,1026.27,1675600000,1026.27
-2003-09-02,1008.01,1022.59,1005.73,1021.99,1470500000,1021.99
-2003-08-29,1002.84,1008.85,999.52,1008.01,945100000,1008.01
-2003-08-28,996.79,1004.12,991.42,1002.84,1165200000,1002.84
-2003-08-27,996.73,998.05,993.33,996.79,1051400000,996.79
-2003-08-26,993.71,997.93,983.57,996.73,1178700000,996.73
-2003-08-25,993.06,993.71,987.91,993.71,971700000,993.71
-2003-08-22,1003.27,1011.01,992.62,993.06,1308900000,993.06
-2003-08-21,1000.30,1009.53,999.33,1003.27,1407100000,1003.27
-2003-08-20,1002.35,1003.54,996.62,1000.30,1210800000,1000.30
-2003-08-19,999.74,1003.30,995.30,1002.35,1300600000,1002.35
-2003-08-18,990.67,1000.35,990.67,999.74,1127600000,999.74
-2003-08-15,990.51,992.39,987.10,990.67,636370000,990.67
-2003-08-14,984.03,991.91,980.36,990.51,1186800000,990.51
-2003-08-13,990.35,992.50,980.85,984.03,1208800000,984.03
-2003-08-12,980.59,990.41,979.90,990.35,1132300000,990.35
-2003-08-11,977.59,985.46,974.21,980.59,1022200000,980.59
-2003-08-08,974.12,980.57,973.83,977.59,1086600000,977.59
-2003-08-07,967.08,974.89,963.82,974.12,1389300000,974.12
-2003-08-06,965.46,975.74,960.84,967.08,1491000000,967.08
-2003-08-05,982.82,982.82,964.97,965.46,1351700000,965.46
-2003-08-04,980.15,985.75,966.79,982.82,1318700000,982.82
-2003-08-01,990.31,990.31,978.86,980.15,1390600000,980.15
-2003-07-31,987.49,1004.59,987.49,990.31,1608000000,990.31
-2003-07-30,989.28,992.62,985.96,987.49,1391900000,987.49
-2003-07-29,996.52,998.64,984.15,989.28,1508900000,989.28
-2003-07-28,998.68,1000.68,993.59,996.52,1328600000,996.52
-2003-07-25,981.60,998.71,977.49,998.68,1397500000,998.68
-2003-07-24,988.61,998.89,981.07,981.60,1559000000,981.60
-2003-07-23,988.11,989.86,979.79,988.61,1362700000,988.61
-2003-07-22,978.80,990.29,976.08,988.11,1439700000,988.11
-2003-07-21,993.32,993.32,975.63,978.80,1254200000,978.80
-2003-07-18,981.73,994.25,981.71,993.32,1365200000,993.32
-2003-07-17,994.00,994.00,978.60,981.73,1661400000,981.73
-2003-07-16,1000.42,1003.47,989.30,994.09,1662000000,994.09
-2003-07-15,1003.86,1009.61,996.67,1000.42,1518600000,1000.42
-2003-07-14,998.14,1015.41,998.14,1003.86,1448900000,1003.86
-2003-07-11,988.70,1000.86,988.70,998.14,1212700000,998.14
-2003-07-10,1002.21,1002.21,983.63,988.70,1465700000,988.70
-2003-07-09,1007.84,1010.43,998.17,1002.21,1618000000,1002.21
-2003-07-08,1004.42,1008.92,998.73,1007.84,1565700000,1007.84
-2003-07-07,985.70,1005.56,985.70,1004.42,1429100000,1004.42
-2003-07-03,993.75,995.00,983.34,985.70,775900000,985.70
-2003-07-02,982.32,993.78,982.32,993.75,1519300000,993.75
-2003-07-01,974.50,983.26,962.10,982.32,1460200000,982.32
-2003-06-30,976.22,983.61,973.60,974.50,1587200000,974.50
-2003-06-27,985.82,988.88,974.29,976.22,1267800000,976.22
-2003-06-26,975.32,986.53,973.80,985.82,1387400000,985.82
-2003-06-25,983.45,991.64,974.86,975.32,1459200000,975.32
-2003-06-24,981.64,987.84,979.08,983.45,1388300000,983.45
-2003-06-23,995.69,995.69,977.40,981.64,1398100000,981.64
-2003-06-20,994.70,1002.09,993.36,995.69,1698000000,995.69
-2003-06-19,1010.09,1011.22,993.08,994.70,1530100000,994.70
-2003-06-18,1011.66,1015.12,1004.61,1010.09,1488900000,1010.09
-2003-06-17,1010.74,1015.33,1007.04,1011.66,1479700000,1011.66
-2003-06-16,988.61,1010.86,988.61,1010.74,1345900000,1010.74
-2003-06-13,998.51,1000.92,984.27,988.61,1271600000,988.61
-2003-06-12,997.48,1002.74,991.27,998.51,1553100000,998.51
-2003-06-11,984.84,997.48,981.61,997.48,1520000000,997.48
-2003-06-10,975.93,984.84,975.93,984.84,1275400000,984.84
-2003-06-09,987.76,987.76,972.59,975.93,1307000000,975.93
-2003-06-06,990.14,1007.69,986.01,987.76,1837200000,987.76
-2003-06-05,986.24,990.14,978.13,990.14,1693100000,990.14
-2003-06-04,971.56,987.85,970.72,986.24,1618700000,986.24
-2003-06-03,967.00,973.02,964.47,971.56,1450200000,971.56
-2003-06-02,963.59,979.11,963.59,967.00,1662500000,967.00
-2003-05-30,949.64,965.38,949.64,963.59,1688800000,963.59
-2003-05-29,953.22,962.08,946.23,949.64,1685800000,949.64
-2003-05-28,951.48,959.39,950.12,953.22,1559000000,953.22
-2003-05-27,933.22,952.76,927.33,951.48,1532000000,951.48
-2003-05-23,931.87,935.20,927.42,933.22,1201000000,933.22
-2003-05-22,923.42,935.30,922.54,931.87,1448500000,931.87
-2003-05-21,919.73,923.85,914.91,923.42,1457800000,923.42
-2003-05-20,920.77,925.34,912.05,919.73,1505300000,919.73
-2003-05-19,944.30,944.30,920.23,920.77,1375700000,920.77
-2003-05-16,946.67,948.65,938.60,944.30,1505500000,944.30
-2003-05-15,939.28,948.23,938.79,946.67,1508700000,946.67
-2003-05-14,942.30,947.29,935.24,939.28,1401800000,939.28
-2003-05-13,945.11,947.51,938.91,942.30,1418100000,942.30
-2003-05-12,933.41,946.84,929.30,945.11,1378800000,945.11
-2003-05-09,920.27,933.77,920.27,933.41,1326100000,933.41
-2003-05-08,929.62,929.62,919.72,920.27,1379600000,920.27
-2003-05-07,934.39,937.22,926.41,929.62,1531900000,929.62
-2003-05-06,926.55,939.61,926.38,934.39,1649600000,934.39
-2003-05-05,930.08,933.88,924.55,926.55,1446300000,926.55
-2003-05-02,916.30,930.56,912.35,930.08,1554300000,930.08
-2003-05-01,916.92,919.68,902.83,916.30,1397500000,916.30
-2003-04-30,917.84,922.01,911.70,916.92,1788510000,916.92
-2003-04-29,914.84,924.24,911.10,917.84,1525600000,917.84
-2003-04-28,898.81,918.15,898.81,914.84,1273000000,914.84
-2003-04-25,911.43,911.43,897.52,898.81,1335800000,898.81
-2003-04-24,919.02,919.02,906.69,911.43,1648100000,911.43
-2003-04-23,911.37,919.74,909.89,919.02,1667200000,919.02
-2003-04-22,892.01,911.74,886.70,911.37,1631200000,911.37
-2003-04-21,893.58,898.01,888.17,892.01,1118700000,892.01
-2003-04-17,879.91,893.83,879.20,893.58,1430600000,893.58
-2003-04-16,890.81,896.77,877.93,879.91,1587600000,879.91
-2003-04-15,885.23,891.27,881.85,890.81,1460200000,890.81
-2003-04-14,868.30,885.26,868.30,885.23,1131000000,885.23
-2003-04-11,871.58,883.34,865.92,868.30,1141600000,868.30
-2003-04-10,865.99,871.78,862.76,871.58,1275300000,871.58
-2003-04-09,878.29,887.35,865.72,865.99,1293700000,865.99
-2003-04-08,879.93,883.11,874.68,878.29,1235400000,878.29
-2003-04-07,878.85,904.89,878.85,879.93,1494000000,879.93
-2003-04-04,876.45,882.73,874.23,878.85,1241200000,878.85
-2003-04-03,880.90,885.89,876.12,876.45,1339500000,876.45
-2003-04-02,858.48,884.57,858.48,880.90,1589800000,880.90
-2003-04-01,848.18,861.28,847.85,858.48,1461600000,858.48
-2003-03-31,863.50,863.50,843.68,848.18,1495500000,848.18
-2003-03-28,868.52,869.88,860.83,863.50,1227000000,863.50
-2003-03-27,869.95,874.15,858.09,868.52,1232900000,868.52
-2003-03-26,874.74,875.80,866.47,869.95,1319700000,869.95
-2003-03-25,864.23,879.87,862.59,874.74,1333400000,874.74
-2003-03-24,895.79,895.79,862.02,864.23,1293000000,864.23
-2003-03-21,875.84,895.90,875.84,895.79,1883710000,895.79
-2003-03-20,874.02,879.60,859.01,875.67,1439100000,875.67
-2003-03-19,866.45,874.99,861.21,874.02,1473400000,874.02
-2003-03-18,862.79,866.94,857.36,866.45,1555100000,866.45
-2003-03-17,833.27,862.79,827.17,862.79,1700420000,862.79
-2003-03-14,831.89,841.39,828.26,833.27,1541900000,833.27
-2003-03-13,804.19,832.02,804.19,831.90,1816300000,831.90
-2003-03-12,800.73,804.19,788.90,804.19,1620000000,804.19
-2003-03-11,807.48,814.25,800.30,800.73,1427700000,800.73
-2003-03-10,828.89,828.89,806.57,807.48,1255000000,807.48
-2003-03-07,822.10,829.55,811.23,828.89,1368500000,828.89
-2003-03-06,829.85,829.85,819.85,822.10,1299200000,822.10
-2003-03-05,821.99,829.87,819.00,829.85,1332700000,829.85
-2003-03-04,834.81,835.43,821.96,821.99,1256600000,821.99
-2003-03-03,841.15,852.34,832.74,834.81,1208900000,834.81
-2003-02-28,837.28,847.00,837.28,841.15,1373300000,841.15
-2003-02-27,827.55,842.19,827.55,837.28,1287800000,837.28
-2003-02-26,838.57,840.10,826.68,827.55,1374400000,827.55
-2003-02-25,832.58,839.55,818.54,838.57,1483700000,838.57
-2003-02-24,848.17,848.17,832.16,832.58,1229200000,832.58
-2003-02-21,837.10,852.28,831.48,848.17,1398200000,848.17
-2003-02-20,845.13,849.37,836.56,837.10,1194100000,837.10
-2003-02-19,851.17,851.17,838.79,845.13,1075600000,845.13
-2003-02-18,834.89,852.87,834.89,851.17,1250800000,851.17
-2003-02-14,817.37,834.89,815.03,834.89,1404600000,834.89
-2003-02-13,818.68,821.25,806.29,817.37,1489300000,817.37
-2003-02-12,829.20,832.12,818.49,818.68,1260500000,818.68
-2003-02-11,835.97,843.02,825.09,829.20,1307000000,829.20
-2003-02-10,829.69,837.16,823.53,835.97,1238200000,835.97
-2003-02-07,838.15,845.73,826.70,829.69,1276800000,829.69
-2003-02-06,843.59,844.23,833.25,838.15,1430900000,838.15
-2003-02-05,848.20,861.63,842.11,843.59,1450800000,843.59
-2003-02-04,860.32,860.32,840.19,848.20,1451600000,848.20
-2003-02-03,855.70,864.64,855.70,860.32,1258500000,860.32
-2003-01-31,844.61,858.33,840.34,855.70,1578530000,855.70
-2003-01-30,864.36,865.48,843.74,844.61,1510300000,844.61
-2003-01-29,858.54,868.72,845.86,864.36,1595400000,864.36
-2003-01-28,847.48,860.76,847.48,858.54,1459100000,858.54
-2003-01-27,861.40,863.95,844.25,847.48,1435900000,847.48
-2003-01-24,887.34,887.34,859.71,861.40,1574800000,861.40
-2003-01-23,878.36,890.25,876.89,887.34,1744550000,887.34
-2003-01-22,887.62,889.74,877.64,878.36,1560800000,878.36
-2003-01-21,901.78,906.00,887.62,887.62,1335200000,887.62
-2003-01-17,914.60,914.60,899.02,901.78,1358200000,901.78
-2003-01-16,918.22,926.03,911.98,914.60,1534600000,914.60
-2003-01-15,931.66,932.59,916.70,918.22,1432100000,918.22
-2003-01-14,926.26,931.66,921.72,931.66,1379400000,931.66
-2003-01-13,927.57,935.05,922.05,926.26,1396300000,926.26
-2003-01-10,927.58,932.89,917.66,927.57,1485400000,927.57
-2003-01-09,909.93,928.31,909.93,927.57,1560300000,927.57
-2003-01-08,922.93,922.93,908.32,909.93,1467600000,909.93
-2003-01-07,929.01,930.81,919.93,922.93,1545200000,922.93
-2003-01-06,908.59,931.77,908.59,929.01,1435900000,929.01
-2003-01-03,909.03,911.25,903.07,908.59,1130800000,908.59
-2003-01-02,879.82,909.03,879.82,909.03,1229200000,909.03
-2002-12-31,879.39,881.93,869.45,879.82,1088500000,879.82
-2002-12-30,875.40,882.10,870.23,879.39,1057800000,879.39
-2002-12-27,889.66,890.46,873.62,875.40,758400000,875.40
-2002-12-26,892.47,903.89,887.48,889.66,721100000,889.66
-2002-12-24,897.38,897.38,892.29,892.47,458310000,892.47
-2002-12-23,895.74,902.43,892.26,897.38,1112100000,897.38
-2002-12-20,884.25,897.79,884.25,895.76,1782730000,895.76
-2002-12-19,890.02,899.19,880.32,884.25,1385900000,884.25
-2002-12-18,902.99,902.99,887.82,891.12,1446200000,891.12
-2002-12-17,910.40,911.22,901.74,902.99,1251800000,902.99
-2002-12-16,889.48,910.42,889.48,910.40,1271600000,910.40
-2002-12-13,901.58,901.58,888.48,889.48,1330800000,889.48
-2002-12-12,904.96,908.37,897.00,901.58,1255300000,901.58
-2002-12-11,904.45,909.94,896.48,904.96,1285100000,904.96
-2002-12-10,892.00,904.95,892.00,904.45,1286600000,904.45
-2002-12-09,912.23,912.23,891.97,892.00,1320800000,892.00
-2002-12-06,906.55,915.48,895.96,912.23,1241100000,912.23
-2002-12-05,917.58,921.49,905.90,906.55,1250200000,906.55
-2002-12-04,920.75,925.25,909.51,917.58,1588900000,917.58
-2002-12-03,934.53,934.53,918.73,920.75,1488400000,920.75
-2002-12-02,936.31,954.28,927.72,934.53,1612000000,934.53
-2002-11-29,938.87,941.82,935.58,936.31,643460000,936.31
-2002-11-27,913.31,940.41,913.31,938.87,1350300000,938.87
-2002-11-26,932.87,932.87,912.10,913.31,1543600000,913.31
-2002-11-25,930.55,937.15,923.31,932.87,1574000000,932.87
-2002-11-22,933.76,937.28,928.41,930.55,1626800000,930.55
-2002-11-21,914.15,935.13,914.15,933.76,2415100000,933.76
-2002-11-20,896.74,915.01,894.93,914.15,1517300000,914.15
-2002-11-19,900.36,905.45,893.09,896.74,1337400000,896.74
-2002-11-18,909.83,915.91,899.48,900.36,1282600000,900.36
-2002-11-15,904.27,910.21,895.35,909.83,1400100000,909.83
-2002-11-14,882.53,904.27,882.53,904.27,1519000000,904.27
-2002-11-13,882.95,892.51,872.05,882.53,1463400000,882.53
-2002-11-12,876.19,894.30,876.19,882.95,1377100000,882.95
-2002-11-11,894.74,894.74,874.63,876.19,1113000000,876.19
-2002-11-08,902.65,910.11,891.62,894.74,1446500000,894.74
-2002-11-07,923.76,923.76,898.68,902.65,1466900000,902.65
-2002-11-06,915.39,925.66,905.00,923.76,1674000000,923.76
-2002-11-05,908.35,915.83,904.91,915.39,1354100000,915.39
-2002-11-04,900.96,924.58,900.96,908.35,1645900000,908.35
-2002-11-01,885.76,903.42,877.71,900.96,1450400000,900.96
-2002-10-31,890.71,898.83,879.75,885.76,1641300000,885.76
-2002-10-30,882.15,895.28,879.19,890.71,1422300000,890.71
-2002-10-29,890.23,890.64,867.91,882.15,1529700000,882.15
-2002-10-28,897.65,907.44,886.15,890.23,1382600000,890.23
-2002-10-25,882.50,897.71,877.03,897.65,1340400000,897.65
-2002-10-24,896.14,902.94,879.00,882.50,1700570000,882.50
-2002-10-23,890.16,896.14,873.82,896.14,1593900000,896.14
-2002-10-22,899.72,899.72,882.40,890.16,1549200000,890.16
-2002-10-21,884.39,900.69,873.06,899.72,1447000000,899.72
-2002-10-18,879.20,886.68,866.58,884.39,1423100000,884.39
-2002-10-17,860.02,885.35,860.02,879.20,1780390000,879.20
-2002-10-16,881.27,881.27,856.28,860.02,1585000000,860.02
-2002-10-15,841.44,881.27,841.44,881.27,1956000000,881.27
-2002-10-14,835.32,844.39,828.37,841.44,1200300000,841.44
-2002-10-11,803.92,843.27,803.92,835.32,1854130000,835.32
-2002-10-10,776.76,806.51,768.63,803.92,2090230000,803.92
-2002-10-09,798.55,798.55,775.80,776.76,1885030000,776.76
-2002-10-08,785.28,808.86,779.50,798.55,1938430000,798.55
-2002-10-07,800.58,808.21,782.96,785.28,1576500000,785.28
-2002-10-04,818.95,825.90,794.10,800.58,1835930000,800.58
-2002-10-03,827.91,840.02,817.25,818.95,1674500000,818.95
-2002-10-02,843.77,851.93,826.50,827.91,1668900000,827.91
-2002-10-01,815.28,847.93,812.82,847.91,1780900000,847.91
-2002-09-30,827.37,827.37,800.20,815.28,1721870000,815.28
-2002-09-27,854.95,854.95,826.84,827.37,1507300000,827.37
-2002-09-26,839.66,856.60,839.66,854.95,1650000000,854.95
-2002-09-25,819.27,844.22,818.46,839.66,1651500000,839.66
-2002-09-24,833.70,833.70,817.38,819.29,1670240000,819.29
-2002-09-23,845.39,845.39,825.76,833.70,1381100000,833.70
-2002-09-20,843.32,849.32,839.09,845.39,1792800000,845.39
-2002-09-19,869.46,869.46,843.09,843.32,1524000000,843.32
-2002-09-18,873.52,878.45,857.39,869.46,1501000000,869.46
-2002-09-17,891.10,902.68,872.38,873.52,1448600000,873.52
-2002-09-16,889.81,891.84,878.91,891.10,1001400000,891.10
-2002-09-13,886.91,892.75,877.05,889.81,1271000000,889.81
-2002-09-12,909.45,909.45,884.84,886.91,1191600000,886.91
-2002-09-11,910.63,924.02,908.47,909.45,846600000,909.45
-2002-09-10,902.96,909.89,900.50,909.58,1186400000,909.58
-2002-09-09,893.92,907.34,882.92,902.96,1130600000,902.96
-2002-09-06,879.15,899.07,879.15,893.92,1184500000,893.92
-2002-09-05,893.40,893.40,870.50,879.15,1401300000,879.15
-2002-09-04,878.02,896.10,875.73,893.40,1372100000,893.40
-2002-09-03,916.07,916.07,877.51,878.02,1289800000,878.02
-2002-08-30,917.80,928.15,910.17,916.07,929900000,916.07
-2002-08-29,917.87,924.59,903.33,917.80,1271100000,917.80
-2002-08-28,934.82,934.82,913.21,917.87,1146600000,917.87
-2002-08-27,947.95,955.82,930.36,934.82,1307700000,934.82
-2002-08-26,940.86,950.80,930.42,947.95,1016900000,947.95
-2002-08-23,962.70,962.70,937.17,940.86,1071500000,940.86
-2002-08-22,949.36,965.00,946.43,962.70,1373000000,962.70
-2002-08-21,937.43,951.59,931.32,949.36,1353100000,949.36
-2002-08-20,950.70,950.70,931.86,937.43,1308500000,937.43
-2002-08-19,928.77,951.17,927.21,950.70,1299800000,950.70
-2002-08-16,930.25,935.38,916.21,928.77,1265300000,928.77
-2002-08-15,919.62,933.29,918.17,930.25,1505100000,930.25
-2002-08-14,884.21,920.21,876.20,919.62,1533800000,919.62
-2002-08-13,903.80,911.71,883.62,884.21,1297700000,884.21
-2002-08-12,908.64,908.64,892.38,903.80,1036500000,903.80
-2002-08-09,898.73,913.95,890.77,908.64,1294900000,908.64
-2002-08-08,876.77,905.84,875.17,905.46,1646700000,905.46
-2002-08-07,859.57,878.74,854.15,876.77,1490400000,876.77
-2002-08-06,834.60,874.44,834.60,859.57,1514100000,859.57
-2002-08-05,864.24,864.24,833.44,834.60,1425500000,834.60
-2002-08-02,884.40,884.72,853.95,864.24,1538100000,864.24
-2002-08-01,911.62,911.62,882.48,884.66,1672200000,884.66
-2002-07-31,902.78,911.64,889.88,911.62,2049360000,911.62
-2002-07-30,898.96,909.81,884.70,902.78,1826090000,902.78
-2002-07-29,852.84,898.96,852.84,898.96,1778650000,898.96
-2002-07-26,838.68,852.85,835.92,852.84,1796100000,852.84
-2002-07-25,843.42,853.83,816.11,838.68,2424700000,838.68
-2002-07-24,797.71,844.32,775.68,843.43,2775560000,843.43
-2002-07-23,819.85,827.69,796.13,797.70,2441020000,797.70
-2002-07-22,847.76,854.13,813.26,819.85,2248060000,819.85
-2002-07-19,881.56,881.56,842.07,847.75,2654100000,847.75
-2002-07-18,905.45,907.80,880.60,881.56,1736300000,881.56
-2002-07-17,901.05,926.52,895.03,906.04,2566500000,906.04
-2002-07-16,917.93,918.65,897.13,900.94,1843700000,900.94
-2002-07-15,921.39,921.39,876.46,917.93,2574800000,917.93
-2002-07-12,927.37,934.31,913.71,921.39,1607400000,921.39
-2002-07-11,920.47,929.16,900.94,927.37,2080480000,927.37
-2002-07-10,952.83,956.34,920.29,920.47,1816900000,920.47
-2002-07-09,976.98,979.63,951.71,952.83,1348900000,952.83
-2002-07-08,989.03,993.56,972.91,976.98,1184400000,976.98
-2002-07-05,953.99,989.07,953.99,989.03,699400000,989.03
-2002-07-03,948.09,954.30,934.87,953.99,1527800000,953.99
-2002-07-02,968.65,968.65,945.54,948.09,1823000000,948.09
-2002-07-01,989.82,994.46,967.43,968.65,1425500000,968.65
-2002-06-28,990.64,1001.79,988.31,989.82,2117000000,989.82
-2002-06-27,973.53,990.67,963.74,990.64,1908600000,990.64
-2002-06-26,976.14,977.43,952.92,973.53,2014290000,973.53
-2002-06-25,992.72,1005.88,974.21,976.14,1513700000,976.14
-2002-06-24,989.14,1002.11,970.85,992.72,1552600000,992.72
-2002-06-21,1006.29,1006.29,985.65,989.14,1497200000,989.14
-2002-06-20,1019.99,1023.33,1004.59,1006.29,1389700000,1006.29
-2002-06-19,1037.14,1037.61,1017.88,1019.99,1336100000,1019.99
-2002-06-18,1036.17,1040.83,1030.92,1037.14,1193100000,1037.14
-2002-06-17,1007.27,1036.17,1007.27,1036.17,1236600000,1036.17
-2002-06-14,1009.56,1009.56,981.63,1007.27,1549000000,1007.27
-2002-06-13,1020.26,1023.47,1008.12,1009.56,1405500000,1009.56
-2002-06-12,1013.26,1021.85,1002.58,1020.26,1795720000,1020.26
-2002-06-11,1030.74,1039.04,1012.94,1013.60,1212400000,1013.60
-2002-06-10,1027.53,1038.18,1025.45,1030.74,1226200000,1030.74
-2002-06-07,1029.15,1033.02,1012.49,1027.53,1341300000,1027.53
-2002-06-06,1049.90,1049.90,1026.91,1029.15,1601500000,1029.15
-2002-06-05,1040.69,1050.11,1038.84,1049.90,1300100000,1049.90
-2002-06-04,1040.68,1046.06,1030.52,1040.69,1466600000,1040.69
-2002-06-03,1067.14,1070.74,1039.90,1040.68,1324300000,1040.68
-2002-05-31,1064.66,1079.93,1064.66,1067.14,1277300000,1067.14
-2002-05-30,1067.66,1069.50,1054.26,1064.66,1286600000,1064.66
-2002-05-29,1074.55,1074.83,1067.66,1067.66,1081800000,1067.66
-2002-05-28,1083.82,1085.98,1070.31,1074.55,996500000,1074.55
-2002-05-24,1097.08,1097.08,1082.19,1083.82,885400000,1083.82
-2002-05-23,1086.02,1097.10,1080.55,1097.08,1192900000,1097.08
-2002-05-22,1079.88,1086.02,1075.64,1086.02,1136300000,1086.02
-2002-05-21,1091.88,1099.55,1079.08,1079.88,1200500000,1079.88
-2002-05-20,1106.59,1106.59,1090.61,1091.88,989800000,1091.88
-2002-05-17,1098.23,1106.59,1096.77,1106.59,1274400000,1106.59
-2002-05-16,1091.07,1099.29,1089.17,1098.23,1256600000,1098.23
-2002-05-15,1097.28,1104.23,1088.94,1091.07,1420200000,1091.07
-2002-05-14,1074.56,1097.71,1074.56,1097.28,1414500000,1097.28
-2002-05-13,1054.99,1074.84,1053.90,1074.56,1088600000,1074.56
-2002-05-10,1073.01,1075.43,1053.93,1054.99,1171900000,1054.99
-2002-05-09,1088.85,1088.85,1072.23,1073.01,1153000000,1073.01
-2002-05-08,1049.49,1088.92,1049.49,1088.85,1502000000,1088.85
-2002-05-07,1052.67,1058.67,1048.96,1049.49,1354700000,1049.49
-2002-05-06,1073.43,1075.96,1052.65,1052.67,1122600000,1052.67
-2002-05-03,1084.56,1084.56,1068.89,1073.43,1284500000,1073.43
-2002-05-02,1086.46,1091.42,1079.46,1084.56,1364000000,1084.56
-2002-05-01,1076.92,1088.32,1065.29,1086.46,1451400000,1086.46
-2002-04-30,1065.45,1082.62,1063.46,1076.92,1628600000,1076.92
-2002-04-29,1076.32,1078.95,1063.62,1065.45,1314700000,1065.45
-2002-04-26,1091.48,1096.77,1076.31,1076.32,1374200000,1076.32
-2002-04-25,1093.14,1094.36,1084.81,1091.48,1517400000,1091.48
-2002-04-24,1100.96,1108.46,1092.51,1093.14,1373200000,1093.14
-2002-04-23,1107.83,1111.17,1098.94,1100.96,1388500000,1100.96
-2002-04-22,1125.17,1125.17,1105.62,1107.83,1181800000,1107.83
-2002-04-19,1124.47,1128.82,1122.59,1125.17,1185000000,1125.17
-2002-04-18,1126.07,1130.49,1109.29,1124.47,1359300000,1124.47
-2002-04-17,1128.37,1133.00,1123.37,1126.07,1376900000,1126.07
-2002-04-16,1102.55,1129.40,1102.55,1128.37,1341300000,1128.37
-2002-04-15,1111.01,1114.86,1099.41,1102.55,1120400000,1102.55
-2002-04-12,1103.69,1112.77,1102.74,1111.01,1282100000,1111.01
-2002-04-11,1130.47,1130.47,1102.42,1103.69,1505600000,1103.69
-2002-04-10,1117.80,1131.76,1117.80,1130.47,1447900000,1130.47
-2002-04-09,1125.29,1128.29,1116.73,1117.80,1235400000,1117.80
-2002-04-08,1122.73,1125.41,1111.79,1125.29,1095300000,1125.29
-2002-04-05,1126.34,1133.31,1119.49,1122.73,1110200000,1122.73
-2002-04-04,1125.40,1130.45,1120.06,1126.34,1283800000,1126.34
-2002-04-03,1136.76,1138.85,1119.68,1125.40,1219700000,1125.40
-2002-04-02,1146.54,1146.54,1135.71,1136.76,1176700000,1136.76
-2002-04-01,1147.39,1147.84,1132.87,1146.54,1050900000,1146.54
-2002-03-28,1144.58,1154.45,1144.58,1147.39,1147600000,1147.39
-2002-03-27,1138.49,1146.95,1135.33,1144.58,1180100000,1144.58
-2002-03-26,1131.87,1147.00,1131.61,1138.49,1223600000,1138.49
-2002-03-25,1148.70,1151.04,1131.87,1131.87,1057900000,1131.87
-2002-03-22,1153.59,1156.49,1144.60,1148.70,1243300000,1148.70
-2002-03-21,1151.85,1155.10,1139.48,1153.59,1339200000,1153.59
-2002-03-20,1170.29,1170.29,1151.61,1151.85,1304900000,1151.85
-2002-03-19,1165.55,1173.94,1165.55,1170.29,1255000000,1170.29
-2002-03-18,1166.16,1172.73,1159.14,1165.55,1169500000,1165.55
-2002-03-15,1153.04,1166.48,1153.04,1166.16,1493900000,1166.16
-2002-03-14,1154.09,1157.83,1151.08,1153.04,1208800000,1153.04
-2002-03-13,1165.58,1165.58,1151.01,1154.09,1354000000,1154.09
-2002-03-12,1168.26,1168.26,1154.34,1165.58,1304400000,1165.58
-2002-03-11,1164.31,1173.03,1159.58,1168.26,1210200000,1168.26
-2002-03-08,1157.54,1172.76,1157.54,1164.31,1412000000,1164.31
-2002-03-07,1162.77,1167.94,1150.69,1157.54,1517400000,1157.54
-2002-03-06,1146.14,1165.29,1145.11,1162.77,1541300000,1162.77
-2002-03-05,1153.84,1157.74,1144.78,1146.14,1549300000,1146.14
-2002-03-04,1131.78,1153.84,1130.93,1153.84,1594300000,1153.84
-2002-03-01,1106.73,1131.79,1106.73,1131.78,1456500000,1131.78
-2002-02-28,1109.89,1121.57,1106.73,1106.73,1392200000,1106.73
-2002-02-27,1109.38,1123.06,1102.26,1109.89,1393800000,1109.89
-2002-02-26,1109.43,1115.05,1101.72,1109.38,1309200000,1109.38
-2002-02-25,1089.84,1112.71,1089.84,1109.43,1367400000,1109.43
-2002-02-22,1080.95,1093.93,1074.39,1089.84,1411000000,1089.84
-2002-02-21,1097.98,1101.50,1080.24,1080.95,1381600000,1080.95
-2002-02-20,1083.34,1098.32,1074.36,1097.98,1438900000,1097.98
-2002-02-19,1104.18,1104.18,1082.24,1083.34,1189900000,1083.34
-2002-02-15,1116.48,1117.09,1103.23,1104.18,1359200000,1104.18
-2002-02-14,1118.51,1124.72,1112.30,1116.48,1272500000,1116.48
-2002-02-13,1107.50,1120.56,1107.50,1118.51,1215900000,1118.51
-2002-02-12,1111.94,1112.68,1102.98,1107.50,1094200000,1107.50
-2002-02-11,1096.22,1112.01,1094.68,1111.94,1159400000,1111.94
-2002-02-08,1080.17,1096.30,1079.91,1096.22,1371900000,1096.22
-2002-02-07,1083.51,1094.03,1078.44,1080.17,1441600000,1080.17
-2002-02-06,1090.02,1093.58,1077.78,1083.51,1665800000,1083.51
-2002-02-05,1094.44,1100.96,1082.58,1090.02,1778300000,1090.02
-2002-02-04,1122.20,1122.20,1092.25,1094.44,1437600000,1094.44
-2002-02-01,1130.20,1130.20,1118.51,1122.20,1367200000,1122.20
-2002-01-31,1113.57,1130.21,1113.30,1130.20,1557000000,1130.20
-2002-01-30,1100.64,1113.79,1081.66,1113.57,2019600000,1113.57
-2002-01-29,1133.06,1137.47,1098.74,1100.64,1812000000,1100.64
-2002-01-28,1133.28,1138.63,1126.66,1133.06,1186800000,1133.06
-2002-01-25,1132.15,1138.31,1127.82,1133.28,1345100000,1133.28
-2002-01-24,1128.18,1139.50,1128.18,1132.15,1552800000,1132.15
-2002-01-23,1119.31,1131.94,1117.43,1128.18,1479200000,1128.18
-2002-01-22,1127.58,1135.26,1117.91,1119.31,1311600000,1119.31
-2002-01-18,1138.88,1138.88,1124.45,1127.58,1333300000,1127.58
-2002-01-17,1127.57,1139.27,1127.57,1138.88,1380100000,1138.88
-2002-01-16,1146.19,1146.19,1127.49,1127.57,1482500000,1127.57
-2002-01-15,1138.41,1148.81,1136.88,1146.19,1386900000,1146.19
-2002-01-14,1145.60,1145.60,1138.15,1138.41,1286400000,1138.41
-2002-01-11,1156.55,1159.41,1145.45,1145.60,1211900000,1145.60
-2002-01-10,1155.14,1159.93,1150.85,1156.55,1299000000,1156.55
-2002-01-09,1160.71,1174.26,1151.89,1155.14,1452000000,1155.14
-2002-01-08,1164.89,1167.60,1157.46,1160.71,1258800000,1160.71
-2002-01-07,1172.51,1176.97,1163.55,1164.89,1308300000,1164.89
-2002-01-04,1165.27,1176.55,1163.42,1172.51,1513000000,1172.51
-2002-01-03,1154.67,1165.27,1154.01,1165.27,1398900000,1165.27
-2002-01-02,1148.08,1154.67,1136.23,1154.67,1171000000,1154.67
-2001-12-31,1161.02,1161.16,1148.04,1148.08,943600000,1148.08
-2001-12-28,1157.13,1164.64,1157.13,1161.02,917400000,1161.02
-2001-12-27,1149.37,1157.13,1149.37,1157.13,876300000,1157.13
-2001-12-26,1144.65,1159.18,1144.65,1149.37,791100000,1149.37
-2001-12-24,1144.89,1147.83,1144.62,1144.65,439670000,1144.65
-2001-12-21,1139.93,1147.46,1139.93,1144.89,1694000000,1144.89
-2001-12-20,1149.56,1151.42,1139.93,1139.93,1490500000,1139.93
-2001-12-19,1142.92,1152.44,1134.75,1149.56,1484900000,1149.56
-2001-12-18,1134.36,1145.10,1134.36,1142.92,1354000000,1142.92
-2001-12-17,1123.09,1137.30,1122.66,1134.36,1260400000,1134.36
-2001-12-14,1119.38,1128.28,1114.53,1123.09,1306800000,1123.09
-2001-12-13,1137.07,1137.07,1117.85,1119.38,1511500000,1119.38
-2001-12-12,1136.76,1141.58,1126.01,1137.07,1449700000,1137.07
-2001-12-11,1139.93,1150.89,1134.32,1136.76,1367200000,1136.76
-2001-12-10,1158.31,1158.31,1139.66,1139.93,1218700000,1139.93
-2001-12-07,1167.10,1167.10,1152.66,1158.31,1248200000,1158.31
-2001-12-06,1170.35,1173.35,1164.43,1167.10,1487900000,1167.10
-2001-12-05,1143.77,1173.62,1143.77,1170.35,1765300000,1170.35
-2001-12-04,1129.90,1144.80,1128.86,1144.80,1318500000,1144.80
-2001-12-03,1139.45,1139.45,1125.78,1129.90,1202900000,1129.90
-2001-11-30,1140.20,1143.57,1135.89,1139.45,1343600000,1139.45
-2001-11-29,1128.52,1140.40,1125.51,1140.20,1375700000,1140.20
-2001-11-28,1149.50,1149.50,1128.29,1128.52,1423700000,1128.52
-2001-11-27,1157.42,1163.38,1140.81,1149.50,1288000000,1149.50
-2001-11-26,1150.34,1157.88,1146.17,1157.42,1129800000,1157.42
-2001-11-23,1137.03,1151.05,1135.90,1150.34,410300000,1150.34
-2001-11-21,1142.66,1142.66,1129.78,1137.03,1029300000,1137.03
-2001-11-20,1151.06,1152.45,1142.17,1142.66,1330200000,1142.66
-2001-11-19,1138.65,1151.06,1138.65,1151.06,1316800000,1151.06
-2001-11-16,1142.24,1143.52,1129.92,1138.65,1337400000,1138.65
-2001-11-15,1141.21,1146.46,1135.06,1142.24,1454500000,1142.24
-2001-11-14,1139.09,1148.28,1132.87,1141.21,1443400000,1141.21
-2001-11-13,1118.33,1139.14,1118.33,1139.09,1370100000,1139.09
-2001-11-12,1120.31,1121.71,1098.32,1118.33,991600000,1118.33
-2001-11-09,1118.54,1123.02,1111.13,1120.31,1093800000,1120.31
-2001-11-08,1115.80,1135.75,1115.42,1118.54,1517500000,1118.54
-2001-11-07,1118.86,1126.62,1112.98,1115.80,1411300000,1115.80
-2001-11-06,1102.84,1119.73,1095.36,1118.86,1356000000,1118.86
-2001-11-05,1087.20,1106.72,1087.20,1102.84,1267700000,1102.84
-2001-11-02,1084.10,1089.63,1075.58,1087.20,1121900000,1087.20
-2001-11-01,1059.78,1085.61,1054.31,1084.10,1317400000,1084.10
-2001-10-31,1059.79,1074.79,1057.55,1059.78,1352500000,1059.78
-2001-10-30,1078.30,1078.30,1053.61,1059.79,1297400000,1059.79
-2001-10-29,1104.61,1104.61,1078.30,1078.30,1106100000,1078.30
-2001-10-26,1100.09,1110.61,1094.24,1104.61,1244500000,1104.61
-2001-10-25,1085.20,1100.09,1065.64,1100.09,1364400000,1100.09
-2001-10-24,1084.78,1090.26,1079.98,1085.20,1336200000,1085.20
-2001-10-23,1089.90,1098.99,1081.53,1084.78,1317300000,1084.78
-2001-10-22,1073.48,1090.57,1070.79,1089.90,1105700000,1089.90
-2001-10-19,1068.61,1075.52,1057.24,1073.48,1294900000,1073.48
-2001-10-18,1077.09,1077.94,1064.54,1068.61,1262900000,1068.61
-2001-10-17,1097.54,1107.12,1076.57,1077.09,1452200000,1077.09
-2001-10-16,1089.98,1101.66,1087.13,1097.54,1210500000,1097.54
-2001-10-15,1091.65,1091.65,1078.19,1089.98,1024700000,1089.98
-2001-10-12,1097.43,1097.43,1072.15,1091.65,1331400000,1091.65
-2001-10-11,1080.99,1099.16,1080.99,1097.43,1704580000,1097.43
-2001-10-10,1056.75,1081.62,1052.76,1080.99,1312400000,1080.99
-2001-10-09,1062.44,1063.37,1053.83,1056.75,1227800000,1056.75
-2001-10-08,1071.37,1071.37,1056.88,1062.44,979000000,1062.44
-2001-10-05,1069.62,1072.35,1053.50,1071.38,1301700000,1071.38
-2001-10-04,1072.28,1084.12,1067.82,1069.63,1609100000,1069.63
-2001-10-03,1051.33,1075.38,1041.48,1072.28,1650600000,1072.28
-2001-10-02,1038.55,1051.33,1034.47,1051.33,1289800000,1051.33
-2001-10-01,1040.94,1040.94,1026.76,1038.55,1175600000,1038.55
-2001-09-28,1018.61,1040.94,1018.61,1040.94,1631500000,1040.94
-2001-09-27,1007.04,1018.92,998.24,1018.61,1467000000,1018.61
-2001-09-26,1012.27,1020.29,1002.62,1007.04,1519100000,1007.04
-2001-09-25,1003.45,1017.14,998.33,1012.27,1613800000,1012.27
-2001-09-24,965.80,1008.44,965.80,1003.45,1746600000,1003.45
-2001-09-21,984.54,984.54,944.75,965.80,2317300000,965.80
-2001-09-20,1016.10,1016.10,984.49,984.54,2004800000,984.54
-2001-09-19,1032.74,1038.91,984.62,1016.10,2120550000,1016.10
-2001-09-18,1038.77,1046.42,1029.25,1032.74,1650410000,1032.74
-2001-09-17,1092.54,1092.54,1037.46,1038.77,2330830000,1038.77
-2001-09-10,1085.78,1096.94,1073.15,1092.54,1276600000,1092.54
-2001-09-07,1106.40,1106.40,1082.12,1085.78,1424300000,1085.78
-2001-09-06,1131.74,1131.74,1105.83,1106.40,1359700000,1106.40
-2001-09-05,1132.94,1135.52,1114.86,1131.74,1384500000,1131.74
-2001-09-04,1133.58,1155.40,1129.06,1132.94,1178300000,1132.94
-2001-08-31,1129.03,1141.83,1126.38,1133.58,920100000,1133.58
-2001-08-30,1148.60,1151.75,1124.87,1129.03,1157000000,1129.03
-2001-08-29,1161.51,1166.97,1147.38,1148.56,963700000,1148.56
-2001-08-28,1179.21,1179.66,1161.17,1161.51,987100000,1161.51
-2001-08-27,1184.93,1186.85,1178.07,1179.21,842600000,1179.21
-2001-08-24,1162.09,1185.15,1162.09,1184.93,1043600000,1184.93
-2001-08-23,1165.31,1169.86,1160.96,1162.09,986200000,1162.09
-2001-08-22,1157.26,1168.56,1153.34,1165.31,1110800000,1165.31
-2001-08-21,1171.41,1179.85,1156.56,1157.26,1041600000,1157.26
-2001-08-20,1161.97,1171.41,1160.94,1171.41,897100000,1171.41
-2001-08-17,1181.66,1181.66,1156.07,1161.97,974300000,1161.97
-2001-08-16,1178.02,1181.80,1166.08,1181.66,1055400000,1181.66
-2001-08-15,1186.73,1191.21,1177.61,1178.02,1065600000,1178.02
-2001-08-14,1191.29,1198.79,1184.26,1186.73,964600000,1186.73
-2001-08-13,1190.16,1193.82,1185.12,1191.29,837600000,1191.29
-2001-08-10,1183.43,1193.33,1169.55,1190.16,960900000,1190.16
-2001-08-09,1183.53,1184.71,1174.68,1183.43,1104200000,1183.43
-2001-08-08,1204.40,1206.79,1181.27,1183.53,1124600000,1183.53
-2001-08-07,1200.47,1207.56,1195.64,1204.40,1012000000,1204.40
-2001-08-06,1214.35,1214.35,1197.35,1200.48,811700000,1200.48
-2001-08-03,1220.75,1220.75,1205.31,1214.35,939900000,1214.35
-2001-08-02,1215.93,1226.27,1215.31,1220.75,1218300000,1220.75
-2001-08-01,1211.23,1223.04,1211.23,1215.93,1340300000,1215.93
-2001-07-31,1204.52,1222.74,1204.52,1211.23,1129200000,1211.23
-2001-07-30,1205.82,1209.05,1200.41,1204.52,909100000,1204.52
-2001-07-27,1202.93,1209.26,1195.99,1205.82,1015300000,1205.82
-2001-07-26,1190.49,1204.18,1182.65,1202.93,1213900000,1202.93
-2001-07-25,1171.65,1190.52,1171.28,1190.49,1280700000,1190.49
-2001-07-24,1191.03,1191.03,1165.54,1171.65,1198700000,1171.65
-2001-07-23,1210.85,1215.22,1190.50,1191.03,986900000,1191.03
-2001-07-20,1215.02,1215.69,1207.04,1210.85,1170900000,1210.85
-2001-07-19,1207.71,1225.04,1205.80,1215.02,1343500000,1215.02
-2001-07-18,1214.44,1214.44,1198.33,1207.71,1316300000,1207.71
-2001-07-17,1202.45,1215.36,1196.14,1214.44,1238100000,1214.44
-2001-07-16,1215.68,1219.63,1200.05,1202.45,1039800000,1202.45
-2001-07-13,1208.14,1218.54,1203.61,1215.68,1121700000,1215.68
-2001-07-12,1180.18,1210.25,1180.18,1208.14,1394000000,1208.14
-2001-07-11,1181.52,1184.93,1168.46,1180.18,1384100000,1180.18
-2001-07-10,1198.78,1203.43,1179.93,1181.52,1263800000,1181.52
-2001-07-09,1190.59,1201.76,1189.75,1198.78,1045700000,1198.78
-2001-07-06,1219.24,1219.24,1188.74,1190.59,1056700000,1190.59
-2001-07-05,1234.45,1234.45,1219.15,1219.24,934900000,1219.24
-2001-07-03,1236.71,1236.71,1229.43,1234.45,622110000,1234.45
-2001-07-02,1224.42,1239.78,1224.03,1236.72,1128300000,1236.72
-2001-06-29,1226.20,1237.29,1221.14,1224.38,1832360000,1224.38
-2001-06-28,1211.07,1234.44,1211.07,1226.20,1327300000,1226.20
-2001-06-27,1216.76,1219.92,1207.29,1211.07,1162100000,1211.07
-2001-06-26,1218.60,1220.70,1204.64,1216.76,1198900000,1216.76
-2001-06-25,1225.35,1231.50,1213.60,1218.60,1050100000,1218.60
-2001-06-22,1237.04,1237.73,1221.41,1225.35,1189200000,1225.35
-2001-06-21,1223.14,1240.24,1220.25,1237.04,1546820000,1237.04
-2001-06-20,1212.58,1225.61,1210.07,1223.14,1350100000,1223.14
-2001-06-19,1208.43,1226.11,1207.71,1212.58,1184900000,1212.58
-2001-06-18,1214.36,1221.23,1208.33,1208.43,1111600000,1208.43
-2001-06-15,1219.87,1221.50,1203.03,1214.36,1635550000,1214.36
-2001-06-14,1241.60,1241.60,1218.90,1219.87,1242900000,1219.87
-2001-06-13,1255.85,1259.75,1241.59,1241.60,1063600000,1241.60
-2001-06-12,1254.39,1261.00,1235.75,1255.85,1136500000,1255.85
-2001-06-11,1264.96,1264.96,1249.23,1254.39,870100000,1254.39
-2001-06-08,1276.96,1277.11,1259.99,1264.96,726200000,1264.96
-2001-06-07,1270.03,1277.08,1265.08,1276.96,1089600000,1276.96
-2001-06-06,1283.57,1283.85,1269.01,1270.03,1061900000,1270.03
-2001-06-05,1267.11,1286.62,1267.11,1283.57,1116800000,1283.57
-2001-06-04,1260.67,1267.17,1256.36,1267.11,836500000,1267.11
-2001-06-01,1255.82,1265.34,1246.88,1260.67,1015000000,1260.67
-2001-05-31,1248.08,1261.91,1248.07,1255.82,1226600000,1255.82
-2001-05-30,1267.93,1267.93,1245.96,1248.08,1158600000,1248.08
-2001-05-29,1277.89,1278.42,1265.41,1267.93,1026000000,1267.93
-2001-05-25,1293.17,1293.17,1276.42,1277.89,828100000,1277.89
-2001-05-24,1289.05,1295.04,1281.22,1293.17,1100700000,1293.17
-2001-05-23,1309.38,1309.38,1288.70,1289.05,1134800000,1289.05
-2001-05-22,1312.83,1315.93,1306.89,1309.38,1260400000,1309.38
-2001-05-21,1291.96,1312.95,1287.87,1312.83,1174900000,1312.83
-2001-05-18,1288.49,1292.06,1281.15,1291.96,1130800000,1291.96
-2001-05-17,1284.99,1296.48,1282.65,1288.49,1355600000,1288.49
-2001-05-16,1249.44,1286.39,1243.02,1284.99,1405300000,1284.99
-2001-05-15,1248.92,1257.45,1245.36,1249.44,1071800000,1249.44
-2001-05-14,1245.67,1249.68,1241.02,1248.92,858200000,1248.92
-2001-05-11,1255.18,1259.84,1240.79,1245.67,906200000,1245.67
-2001-05-10,1255.54,1268.14,1254.56,1255.18,1056700000,1255.18
-2001-05-09,1261.20,1261.65,1247.83,1255.54,1132400000,1255.54
-2001-05-08,1266.71,1267.01,1253.00,1261.20,1006300000,1261.20
-2001-05-07,1266.61,1270.00,1259.19,1263.51,949000000,1263.51
-2001-05-04,1248.58,1267.51,1232.00,1266.61,1082100000,1266.61
-2001-05-03,1267.43,1267.43,1239.88,1248.58,1137900000,1248.58
-2001-05-02,1266.44,1272.93,1257.70,1267.43,1342200000,1267.43
-2001-05-01,1249.46,1266.47,1243.55,1266.44,1181300000,1266.44
-2001-04-30,1253.05,1269.30,1243.99,1249.46,1266800000,1249.46
-2001-04-27,1234.52,1253.07,1234.52,1253.05,1091300000,1253.05
-2001-04-26,1228.75,1248.30,1228.75,1234.52,1345200000,1234.52
-2001-04-25,1209.47,1232.36,1207.38,1228.75,1203600000,1228.75
-2001-04-24,1224.36,1233.54,1208.89,1209.47,1216500000,1209.47
-2001-04-23,1242.98,1242.98,1217.47,1224.36,1012600000,1224.36
-2001-04-20,1253.70,1253.70,1234.41,1242.98,1338700000,1242.98
-2001-04-19,1238.16,1253.71,1233.39,1253.69,1486800000,1253.69
-2001-04-18,1191.81,1248.42,1191.81,1238.16,1918900000,1238.16
-2001-04-17,1179.68,1192.25,1168.90,1191.81,1109600000,1191.81
-2001-04-16,1183.50,1184.64,1167.38,1179.68,913900000,1179.68
-2001-04-12,1165.89,1183.51,1157.73,1183.50,1102000000,1183.50
-2001-04-11,1168.38,1182.24,1160.26,1165.89,1290300000,1165.89
-2001-04-10,1137.59,1173.92,1137.59,1168.38,1349600000,1168.38
-2001-04-09,1128.43,1146.13,1126.38,1137.59,1062800000,1137.59
-2001-04-06,1151.44,1151.44,1119.29,1128.43,1266800000,1128.43
-2001-04-05,1103.25,1151.47,1103.25,1151.44,1368000000,1151.44
-2001-04-04,1106.46,1117.50,1091.99,1103.25,1425590000,1103.25
-2001-04-03,1145.87,1145.87,1100.19,1106.46,1386100000,1106.46
-2001-04-02,1160.33,1169.51,1137.51,1145.87,1254900000,1145.87
-2001-03-30,1147.95,1162.80,1143.83,1160.33,1280800000,1160.33
-2001-03-29,1153.29,1161.69,1136.26,1147.95,1234500000,1147.95
-2001-03-28,1182.17,1182.17,1147.83,1153.29,1333400000,1153.29
-2001-03-27,1152.69,1183.35,1150.96,1182.17,1314200000,1182.17
-2001-03-26,1139.83,1160.02,1139.83,1152.69,1114000000,1152.69
-2001-03-23,1117.58,1141.83,1117.58,1139.83,1364900000,1139.83
-2001-03-22,1122.14,1124.27,1081.19,1117.58,1723950000,1117.58
-2001-03-21,1142.62,1149.39,1118.74,1122.14,1346300000,1122.14
-2001-03-20,1170.81,1180.56,1142.19,1142.62,1235900000,1142.62
-2001-03-19,1150.53,1173.50,1147.18,1170.81,1126200000,1170.81
-2001-03-16,1173.56,1173.56,1148.64,1150.53,1543560000,1150.53
-2001-03-15,1166.71,1182.04,1166.71,1173.56,1259500000,1173.56
-2001-03-14,1197.66,1197.66,1155.35,1166.71,1397400000,1166.71
-2001-03-13,1180.16,1197.83,1171.50,1197.66,1360900000,1197.66
-2001-03-12,1233.42,1233.42,1176.78,1180.16,1229000000,1180.16
-2001-03-09,1264.74,1264.74,1228.42,1233.42,1085900000,1233.42
-2001-03-08,1261.89,1266.50,1257.60,1264.74,1114100000,1264.74
-2001-03-07,1253.80,1263.86,1253.80,1261.89,1132200000,1261.89
-2001-03-06,1241.41,1267.42,1241.41,1253.80,1091800000,1253.80
-2001-03-05,1234.18,1242.55,1234.04,1241.41,929200000,1241.41
-2001-03-02,1241.23,1251.01,1219.74,1234.18,1294000000,1234.18
-2001-03-01,1239.94,1241.36,1214.50,1241.23,1294900000,1241.23
-2001-02-28,1257.94,1263.47,1229.65,1239.94,1225300000,1239.94
-2001-02-27,1267.65,1272.76,1252.26,1257.94,1114100000,1257.94
-2001-02-26,1245.86,1267.69,1241.71,1267.65,1130800000,1267.65
-2001-02-23,1252.82,1252.82,1215.44,1245.86,1231300000,1245.86
-2001-02-22,1255.27,1259.94,1228.33,1252.82,1365900000,1252.82
-2001-02-21,1278.94,1282.97,1253.16,1255.27,1208500000,1255.27
-2001-02-20,1301.53,1307.16,1278.44,1278.94,1112200000,1278.94
-2001-02-16,1326.61,1326.61,1293.18,1301.53,1257200000,1301.53
-2001-02-15,1315.92,1331.29,1315.92,1326.61,1153700000,1326.61
-2001-02-14,1318.80,1320.73,1304.72,1315.92,1150300000,1315.92
-2001-02-13,1330.31,1336.62,1317.51,1318.80,1075200000,1318.80
-2001-02-12,1314.76,1330.96,1313.64,1330.31,1039100000,1330.31
-2001-02-09,1332.53,1332.53,1309.98,1314.76,1075500000,1314.76
-2001-02-08,1341.10,1350.32,1332.42,1332.53,1107200000,1332.53
-2001-02-07,1352.26,1352.26,1334.26,1340.89,1158300000,1340.89
-2001-02-06,1354.31,1363.55,1350.04,1352.26,1059600000,1352.26
-2001-02-05,1349.47,1354.56,1344.48,1354.31,1013000000,1354.31
-2001-02-02,1373.47,1376.38,1348.72,1349.47,1048400000,1349.47
-2001-02-01,1366.01,1373.50,1359.34,1373.47,1118800000,1373.47
-2001-01-31,1373.73,1383.37,1364.66,1366.01,1295300000,1366.01
-2001-01-30,1364.17,1375.68,1356.20,1373.73,1149800000,1373.73
-2001-01-29,1354.92,1365.54,1350.36,1364.17,1053100000,1364.17
-2001-01-26,1357.51,1357.51,1342.75,1354.95,1098000000,1354.95
-2001-01-25,1364.30,1367.35,1354.63,1357.51,1258000000,1357.51
-2001-01-24,1360.40,1369.75,1357.28,1364.30,1309000000,1364.30
-2001-01-23,1342.90,1362.90,1339.63,1360.40,1232600000,1360.40
-2001-01-22,1342.54,1353.62,1333.84,1342.90,1164000000,1342.90
-2001-01-19,1347.97,1354.55,1336.74,1342.54,1407800000,1342.54
-2001-01-18,1329.89,1352.71,1327.41,1347.97,1445000000,1347.97
-2001-01-17,1326.65,1346.92,1325.41,1329.47,1349100000,1329.47
-2001-01-16,1318.32,1327.81,1313.33,1326.65,1205700000,1326.65
-2001-01-12,1326.82,1333.21,1311.59,1318.55,1276000000,1318.55
-2001-01-11,1313.27,1332.19,1309.72,1326.82,1411200000,1326.82
-2001-01-10,1300.80,1313.76,1287.28,1313.27,1296500000,1313.27
-2001-01-09,1295.86,1311.72,1295.14,1300.80,1191300000,1300.80
-2001-01-08,1298.35,1298.35,1276.29,1295.86,1115500000,1295.86
-2001-01-05,1333.34,1334.77,1294.95,1298.35,1430800000,1298.35
-2001-01-04,1347.56,1350.24,1329.14,1333.34,2131000000,1333.34
-2001-01-03,1283.27,1347.76,1274.62,1347.56,1880700000,1347.56
-2001-01-02,1320.28,1320.28,1276.05,1283.27,1129400000,1283.27
-2000-12-29,1334.22,1340.10,1317.51,1320.28,1035500000,1320.28
-2000-12-28,1328.92,1335.93,1325.78,1334.22,1015300000,1334.22
-2000-12-27,1315.19,1332.03,1310.96,1328.92,1092700000,1328.92
-2000-12-26,1305.97,1315.94,1301.64,1315.19,806500000,1315.19
-2000-12-22,1274.86,1305.97,1274.86,1305.95,1087100000,1305.95
-2000-12-21,1264.74,1285.31,1254.07,1274.86,1449900000,1274.86
-2000-12-20,1305.60,1305.60,1261.16,1264.74,1421600000,1264.74
-2000-12-19,1322.96,1346.44,1305.20,1305.60,1324900000,1305.60
-2000-12-18,1312.15,1332.32,1312.15,1322.74,1189900000,1322.74
-2000-12-15,1340.93,1340.93,1305.38,1312.15,1561100000,1312.15
-2000-12-14,1359.99,1359.99,1340.48,1340.93,1061300000,1340.93
-2000-12-13,1371.18,1385.82,1358.48,1359.99,1195100000,1359.99
-2000-12-12,1380.20,1380.27,1370.27,1371.18,1083400000,1371.18
-2000-12-11,1369.89,1389.05,1364.14,1380.20,1202400000,1380.20
-2000-12-08,1343.55,1380.33,1343.55,1369.89,1358300000,1369.89
-2000-12-07,1351.46,1353.50,1339.26,1343.55,1128000000,1343.55
-2000-12-06,1376.54,1376.54,1346.15,1351.46,1399300000,1351.46
-2000-12-05,1324.97,1376.56,1324.97,1376.54,900300000,1376.54
-2000-12-04,1315.18,1332.06,1310.23,1324.97,1103000000,1324.97
-2000-12-01,1314.95,1334.67,1307.02,1315.23,1195200000,1315.23
-2000-11-30,1341.91,1341.91,1294.90,1314.95,1186530000,1314.95
-2000-11-29,1336.09,1352.38,1329.28,1341.93,402100000,1341.93
-2000-11-28,1348.97,1358.81,1334.97,1336.09,1028200000,1336.09
-2000-11-27,1341.77,1362.50,1341.77,1348.97,946100000,1348.97
-2000-11-24,1322.36,1343.83,1322.36,1341.77,404870000,1341.77
-2000-11-22,1347.35,1347.35,1321.89,1322.36,963200000,1322.36
-2000-11-21,1342.62,1355.87,1333.62,1347.35,1137100000,1347.35
-2000-11-20,1367.72,1367.72,1341.67,1342.62,955800000,1342.62
-2000-11-17,1372.32,1384.85,1355.55,1367.72,1070400000,1367.72
-2000-11-16,1389.81,1394.76,1370.39,1372.32,956300000,1372.32
-2000-11-15,1382.95,1395.96,1374.75,1389.81,1066800000,1389.81
-2000-11-14,1351.26,1390.06,1351.26,1382.95,1118800000,1382.95
-2000-11-13,1365.98,1365.98,1328.62,1351.26,1129300000,1351.26
-2000-11-10,1400.14,1400.14,1365.97,1365.98,962500000,1365.98
-2000-11-09,1409.28,1409.28,1369.68,1400.14,1111000000,1400.14
-2000-11-08,1431.87,1437.28,1408.78,1409.28,909300000,1409.28
-2000-11-07,1432.19,1436.22,1423.26,1431.87,880900000,1431.87
-2000-11-06,1428.76,1438.46,1427.72,1432.19,930900000,1432.19
-2000-11-03,1428.32,1433.21,1420.92,1426.69,997700000,1426.69
-2000-11-02,1421.22,1433.40,1421.22,1428.32,1167700000,1428.32
-2000-11-01,1429.40,1429.60,1410.45,1421.22,1206800000,1421.22
-2000-10-31,1398.66,1432.22,1398.66,1429.40,1366400000,1429.40
-2000-10-30,1379.58,1406.36,1376.86,1398.66,1186500000,1398.66
-2000-10-27,1364.44,1384.57,1364.13,1379.58,1086300000,1379.58
-2000-10-26,1364.90,1372.72,1337.81,1364.44,1303800000,1364.44
-2000-10-25,1398.13,1398.13,1362.21,1364.90,1315600000,1364.90
-2000-10-24,1395.78,1415.64,1388.13,1398.13,1158600000,1398.13
-2000-10-23,1396.93,1406.96,1387.75,1395.78,1046800000,1395.78
-2000-10-20,1388.76,1408.47,1382.19,1396.93,1177400000,1396.93
-2000-10-19,1342.13,1389.93,1342.13,1388.76,1297900000,1388.76
-2000-10-18,1349.97,1356.65,1305.79,1342.13,1441700000,1342.13
-2000-10-17,1374.62,1380.99,1342.34,1349.97,1161500000,1349.97
-2000-10-16,1374.17,1379.48,1365.06,1374.62,1005400000,1374.62
-2000-10-13,1329.78,1374.17,1327.08,1374.17,1223900000,1374.17
-2000-10-12,1364.59,1374.93,1328.06,1329.78,1388600000,1329.78
-2000-10-11,1387.02,1387.02,1349.67,1364.59,1387500000,1364.59
-2000-10-10,1402.03,1408.83,1383.85,1387.02,1044000000,1387.02
-2000-10-09,1408.99,1409.69,1392.48,1402.03,716600000,1402.03
-2000-10-06,1436.28,1443.30,1397.06,1408.99,1150100000,1408.99
-2000-10-05,1434.32,1444.17,1431.80,1436.28,1176100000,1436.28
-2000-10-04,1426.46,1439.99,1416.31,1434.32,1167400000,1434.32
-2000-10-03,1436.23,1454.82,1425.28,1426.46,1098100000,1426.46
-2000-10-02,1436.52,1445.60,1429.83,1436.23,1051200000,1436.23
-2000-09-29,1458.29,1458.29,1436.29,1436.51,1197100000,1436.51
-2000-09-28,1426.57,1461.69,1425.78,1458.29,1206200000,1458.29
-2000-09-27,1427.21,1437.22,1419.44,1426.57,1174700000,1426.57
-2000-09-26,1439.03,1448.04,1425.25,1427.21,1106600000,1427.21
-2000-09-25,1448.72,1457.42,1435.93,1439.03,982400000,1439.03
-2000-09-22,1449.05,1449.05,1421.88,1448.72,1185500000,1448.72
-2000-09-21,1451.34,1452.77,1436.30,1449.05,1105400000,1449.05
-2000-09-20,1459.90,1460.49,1430.95,1451.34,1104000000,1451.34
-2000-09-19,1444.51,1461.16,1444.51,1459.90,1024900000,1459.90
-2000-09-18,1465.81,1467.77,1441.92,1444.51,962500000,1444.51
-2000-09-15,1480.87,1480.96,1460.22,1465.81,1268400000,1465.81
-2000-09-14,1484.91,1494.16,1476.73,1480.87,1014000000,1480.87
-2000-09-13,1481.99,1487.45,1473.61,1484.91,1068300000,1484.91
-2000-09-12,1489.26,1496.93,1479.67,1481.99,991200000,1481.99
-2000-09-11,1494.50,1506.76,1483.01,1489.26,899300000,1489.26
-2000-09-08,1502.51,1502.51,1489.88,1494.50,961000000,1494.50
-2000-09-07,1492.25,1505.34,1492.25,1502.51,985500000,1502.51
-2000-09-06,1507.08,1512.61,1492.12,1492.25,995100000,1492.25
-2000-09-05,1520.77,1520.77,1504.21,1507.08,838500000,1507.08
-2000-09-01,1517.68,1530.09,1515.53,1520.77,767700000,1520.77
-2000-08-31,1502.59,1525.21,1502.59,1517.68,1056600000,1517.68
-2000-08-30,1509.84,1510.49,1500.09,1502.59,818400000,1502.59
-2000-08-29,1514.09,1514.81,1505.46,1509.84,795600000,1509.84
-2000-08-28,1506.45,1523.95,1506.45,1514.09,733600000,1514.09
-2000-08-25,1508.31,1513.47,1505.09,1506.45,685600000,1506.45
-2000-08-24,1505.97,1511.16,1501.25,1508.31,837100000,1508.31
-2000-08-23,1498.13,1507.20,1489.52,1505.97,871000000,1505.97
-2000-08-22,1499.48,1508.45,1497.42,1498.13,818800000,1498.13
-2000-08-21,1491.72,1502.84,1491.13,1499.48,731600000,1499.48
-2000-08-18,1496.07,1499.47,1488.99,1491.72,821400000,1491.72
-2000-08-17,1479.85,1499.32,1479.85,1496.07,922400000,1496.07
-2000-08-16,1484.43,1496.09,1475.74,1479.85,929800000,1479.85
-2000-08-15,1491.56,1493.12,1482.74,1484.43,895900000,1484.43
-2000-08-14,1471.84,1491.64,1468.56,1491.56,783800000,1491.56
-2000-08-11,1460.25,1475.72,1453.06,1471.84,835500000,1471.84
-2000-08-10,1472.87,1475.15,1459.89,1460.25,940800000,1460.25
-2000-08-09,1482.80,1490.33,1471.16,1472.87,1054000000,1472.87
-2000-08-08,1479.32,1484.52,1472.61,1482.80,992200000,1482.80
-2000-08-07,1462.93,1480.80,1460.72,1479.32,854800000,1479.32
-2000-08-04,1452.56,1462.93,1451.31,1462.93,956000000,1462.93
-2000-08-03,1438.70,1454.19,1425.43,1452.56,1095600000,1452.56
-2000-08-02,1438.10,1451.59,1433.49,1438.70,994500000,1438.70
-2000-08-01,1430.83,1443.54,1428.96,1438.10,938700000,1438.10
-2000-07-31,1419.89,1437.65,1418.71,1430.83,952600000,1430.83
-2000-07-28,1449.62,1456.68,1413.89,1419.89,980000000,1419.89
-2000-07-27,1452.42,1464.91,1445.33,1449.62,1156400000,1449.62
-2000-07-26,1474.47,1474.47,1452.42,1452.42,1235800000,1452.42
-2000-07-25,1464.29,1476.23,1464.29,1474.47,969400000,1474.47
-2000-07-24,1480.19,1485.88,1463.80,1464.29,880300000,1464.29
-2000-07-21,1495.57,1495.57,1477.91,1480.19,968300000,1480.19
-2000-07-20,1481.96,1501.92,1481.96,1495.57,1064600000,1495.57
-2000-07-19,1493.74,1495.63,1479.92,1481.96,909400000,1481.96
-2000-07-18,1510.49,1510.49,1491.35,1493.74,908300000,1493.74
-2000-07-17,1509.98,1517.32,1505.26,1510.49,906000000,1510.49
-2000-07-14,1495.84,1509.99,1494.56,1509.98,960600000,1509.98
-2000-07-13,1492.92,1501.39,1489.65,1495.84,1026800000,1495.84
-2000-07-12,1480.88,1497.69,1480.88,1492.92,1001200000,1492.92
-2000-07-11,1475.62,1488.77,1470.48,1480.88,980500000,1480.88
-2000-07-10,1478.90,1486.56,1474.76,1475.62,838700000,1475.62
-2000-07-07,1456.67,1484.12,1456.67,1478.90,931700000,1478.90
-2000-07-06,1446.23,1461.65,1439.56,1456.67,947300000,1456.67
-2000-07-05,1469.54,1469.54,1442.45,1446.23,1019300000,1446.23
-2000-07-03,1454.60,1469.58,1450.85,1469.54,451900000,1469.54
-2000-06-30,1442.39,1454.68,1438.71,1454.60,1459700000,1454.60
-2000-06-29,1454.82,1455.14,1434.63,1442.39,1110900000,1442.39
-2000-06-28,1450.55,1467.63,1450.55,1454.82,1095100000,1454.82
-2000-06-27,1455.31,1463.35,1450.55,1450.55,1042500000,1450.55
-2000-06-26,1441.48,1459.66,1441.48,1455.31,889000000,1455.31
-2000-06-23,1452.18,1459.94,1438.31,1441.48,847600000,1441.48
-2000-06-22,1479.13,1479.13,1448.03,1452.18,1022700000,1452.18
-2000-06-21,1475.95,1482.19,1468.00,1479.13,1009600000,1479.13
-2000-06-20,1486.00,1487.32,1470.18,1475.95,1031500000,1475.95
-2000-06-19,1464.46,1488.93,1459.05,1486.00,921700000,1486.00
-2000-06-16,1478.73,1480.77,1460.42,1464.46,1250800000,1464.46
-2000-06-15,1470.54,1482.04,1464.62,1478.73,1011400000,1478.73
-2000-06-14,1469.44,1483.62,1467.71,1470.54,929700000,1470.54
-2000-06-13,1446.00,1470.42,1442.38,1469.44,935900000,1469.44
-2000-06-12,1456.95,1462.93,1445.99,1446.00,774100000,1446.00
-2000-06-09,1461.67,1472.67,1454.96,1456.95,786000000,1456.95
-2000-06-08,1471.36,1475.65,1456.49,1461.67,854300000,1461.67
-2000-06-07,1457.84,1474.64,1455.06,1471.36,854600000,1471.36
-2000-06-06,1467.63,1471.36,1454.74,1457.84,950100000,1457.84
-2000-06-05,1477.26,1477.28,1464.68,1467.63,838600000,1467.63
-2000-06-02,1448.81,1483.23,1448.81,1477.26,1162400000,1477.26
-2000-06-01,1420.60,1448.81,1420.60,1448.81,960100000,1448.81
-2000-05-31,1422.44,1434.49,1415.50,1420.60,960500000,1420.60
-2000-05-30,1378.02,1422.45,1378.02,1422.45,844200000,1422.45
-2000-05-26,1381.52,1391.42,1369.75,1378.02,722600000,1378.02
-2000-05-25,1399.05,1411.65,1373.93,1381.52,984500000,1381.52
-2000-05-24,1373.86,1401.75,1361.09,1399.05,1152300000,1399.05
-2000-05-23,1400.72,1403.77,1373.43,1373.86,869900000,1373.86
-2000-05-22,1406.95,1410.55,1368.73,1400.72,869000000,1400.72
-2000-05-19,1437.21,1437.21,1401.74,1406.95,853700000,1406.95
-2000-05-18,1447.80,1458.04,1436.59,1437.21,807900000,1437.21
-2000-05-17,1466.04,1466.04,1441.67,1447.80,820500000,1447.80
-2000-05-16,1452.36,1470.40,1450.76,1466.04,955500000,1466.04
-2000-05-15,1420.96,1452.39,1416.54,1452.36,854600000,1452.36
-2000-05-12,1407.81,1430.13,1407.81,1420.96,858200000,1420.96
-2000-05-11,1383.05,1410.26,1383.05,1407.81,953600000,1407.81
-2000-05-10,1412.14,1412.14,1375.14,1383.05,1006400000,1383.05
-2000-05-09,1424.17,1430.28,1401.85,1412.14,896600000,1412.14
-2000-05-08,1432.63,1432.63,1417.05,1424.17,787600000,1424.17
-2000-05-05,1409.57,1436.03,1405.08,1432.63,805500000,1432.63
-2000-05-04,1415.10,1420.99,1404.94,1409.57,925800000,1409.57
-2000-05-03,1446.29,1446.29,1398.36,1415.10,991600000,1415.10
-2000-05-02,1468.25,1468.25,1445.22,1446.29,1011500000,1446.29
-2000-05-01,1452.43,1481.51,1452.43,1468.25,966300000,1468.25
-2000-04-28,1464.92,1473.62,1448.15,1452.43,984600000,1452.43
-2000-04-27,1460.99,1469.21,1434.81,1464.92,1111000000,1464.92
-2000-04-26,1477.44,1482.94,1456.98,1460.99,999600000,1460.99
-2000-04-25,1429.86,1477.67,1429.86,1477.44,1071100000,1477.44
-2000-04-24,1434.54,1434.54,1407.13,1429.86,868700000,1429.86
-2000-04-20,1427.47,1435.49,1422.08,1434.54,896200000,1434.54
-2000-04-19,1441.61,1447.69,1424.26,1427.47,1001400000,1427.47
-2000-04-18,1401.44,1441.61,1397.81,1441.61,1109400000,1441.61
-2000-04-17,1356.56,1401.53,1346.50,1401.44,1204700000,1401.44
-2000-04-14,1440.51,1440.51,1339.40,1356.56,1279700000,1356.56
-2000-04-13,1467.17,1477.52,1439.34,1440.51,1032000000,1440.51
-2000-04-12,1500.59,1509.08,1466.15,1467.17,1175900000,1467.17
-2000-04-11,1504.46,1512.80,1486.78,1500.59,971400000,1500.59
-2000-04-10,1516.35,1527.19,1503.35,1504.46,853700000,1504.46
-2000-04-07,1501.34,1518.68,1501.34,1516.35,891600000,1516.35
-2000-04-06,1487.37,1511.76,1487.37,1501.34,1008000000,1501.34
-2000-04-05,1494.73,1506.55,1478.05,1487.37,1110300000,1487.37
-2000-04-04,1505.98,1526.45,1416.41,1494.73,1515460000,1494.73
-2000-04-03,1498.58,1507.19,1486.96,1505.97,1021700000,1505.97
-2000-03-31,1487.92,1519.81,1484.38,1498.58,1227400000,1498.58
-2000-03-30,1508.52,1517.38,1474.63,1487.92,1193400000,1487.92
-2000-03-29,1507.73,1521.45,1497.45,1508.52,1061900000,1508.52
-2000-03-28,1523.86,1527.36,1507.09,1507.73,959100000,1507.73
-2000-03-27,1527.46,1534.63,1518.46,1523.86,901000000,1523.86
-2000-03-24,1527.35,1552.87,1516.83,1527.46,1052200000,1527.46
-2000-03-23,1500.64,1532.50,1492.39,1527.35,1078300000,1527.35
-2000-03-22,1493.87,1505.08,1487.33,1500.64,1075000000,1500.64
-2000-03-21,1456.63,1493.92,1446.06,1493.87,1065900000,1493.87
-2000-03-20,1464.47,1470.30,1448.49,1456.63,920800000,1456.63
-2000-03-17,1458.47,1477.33,1453.32,1464.47,1295100000,1464.47
-2000-03-16,1392.15,1458.47,1392.15,1458.47,1482300000,1458.47
-2000-03-15,1359.15,1397.99,1356.99,1392.14,1302800000,1392.14
-2000-03-14,1383.62,1395.15,1359.15,1359.15,1094000000,1359.15
-2000-03-13,1395.07,1398.39,1364.84,1383.62,1016100000,1383.62
-2000-03-10,1401.69,1413.46,1392.07,1395.07,1138800000,1395.07
-2000-03-09,1366.70,1401.82,1357.88,1401.69,1123000000,1401.69
-2000-03-08,1355.62,1373.79,1346.62,1366.70,1203000000,1366.70
-2000-03-07,1391.28,1399.21,1349.99,1355.62,1314100000,1355.62
-2000-03-06,1409.17,1409.74,1384.75,1391.28,1029000000,1391.28
-2000-03-03,1381.76,1410.88,1381.76,1409.17,1150300000,1409.17
-2000-03-02,1379.19,1386.56,1370.35,1381.76,1198600000,1381.76
-2000-03-01,1366.42,1383.46,1366.42,1379.19,1274100000,1379.19
-2000-02-29,1348.05,1369.63,1348.05,1366.42,1204300000,1366.42
-2000-02-28,1333.36,1360.82,1325.07,1348.05,1026500000,1348.05
-2000-02-25,1353.43,1362.14,1329.15,1333.36,1065200000,1333.36
-2000-02-24,1360.69,1364.80,1329.88,1353.43,1215000000,1353.43
-2000-02-23,1352.17,1370.11,1342.44,1360.69,993700000,1360.69
-2000-02-22,1346.09,1358.11,1331.88,1352.17,980000000,1352.17
-2000-02-18,1388.26,1388.59,1345.32,1346.09,1042300000,1346.09
-2000-02-17,1387.67,1399.88,1380.07,1388.26,1034800000,1388.26
-2000-02-16,1402.05,1404.55,1385.58,1387.67,1018800000,1387.67
-2000-02-15,1389.94,1407.72,1376.25,1402.05,1092100000,1402.05
-2000-02-14,1387.12,1394.93,1380.53,1389.94,927300000,1389.94
-2000-02-11,1416.83,1416.83,1378.89,1387.12,1025700000,1387.12
-2000-02-10,1411.70,1422.10,1406.43,1416.83,1058800000,1416.83
-2000-02-09,1441.72,1444.55,1411.65,1411.71,1050500000,1411.71
-2000-02-08,1424.24,1441.83,1424.24,1441.72,1047700000,1441.72
-2000-02-07,1424.37,1427.15,1413.33,1424.24,918100000,1424.24
-2000-02-04,1424.97,1435.91,1420.63,1424.37,1045100000,1424.37
-2000-02-03,1409.12,1425.78,1398.52,1424.97,1146500000,1424.97
-2000-02-02,1409.28,1420.61,1403.49,1409.12,1038600000,1409.12
-2000-02-01,1394.46,1412.49,1384.79,1409.28,981000000,1409.28
-2000-01-31,1360.16,1394.48,1350.14,1394.46,993800000,1394.46
-2000-01-28,1398.56,1398.56,1356.20,1360.16,1095800000,1360.16
-2000-01-27,1404.09,1418.86,1370.99,1398.56,1129500000,1398.56
-2000-01-26,1410.03,1412.73,1400.16,1404.09,1117300000,1404.09
-2000-01-25,1401.53,1414.26,1388.49,1410.03,1073700000,1410.03
-2000-01-24,1441.36,1454.09,1395.42,1401.53,1115800000,1401.53
-2000-01-21,1445.57,1453.18,1439.60,1441.36,1209800000,1441.36
-2000-01-20,1455.90,1465.71,1438.54,1445.57,1100700000,1445.57
-2000-01-19,1455.14,1461.39,1448.68,1455.90,1087800000,1455.90
-2000-01-18,1465.15,1465.15,1451.30,1455.14,1056700000,1455.14
-2000-01-14,1449.68,1473.00,1449.68,1465.15,1085900000,1465.15
-2000-01-13,1432.25,1454.20,1432.25,1449.68,1030400000,1449.68
-2000-01-12,1438.56,1442.60,1427.08,1432.25,974600000,1432.25
-2000-01-11,1457.60,1458.66,1434.42,1438.56,1014000000,1438.56
-2000-01-10,1441.47,1464.36,1441.47,1457.60,1064800000,1457.60
-2000-01-07,1403.45,1441.47,1400.73,1441.47,1225200000,1441.47
-2000-01-06,1402.11,1411.90,1392.10,1403.45,1092300000,1403.45
-2000-01-05,1399.42,1413.27,1377.68,1402.11,1085500000,1402.11
-2000-01-04,1455.22,1455.22,1397.43,1399.42,1009000000,1399.42
-2000-01-03,1469.25,1478.00,1438.36,1455.22,931800000,1455.22
-1999-12-31,1464.47,1472.42,1458.19,1469.25,374050000,1469.25
-1999-12-30,1463.46,1473.10,1462.60,1464.47,554680000,1464.47
-1999-12-29,1457.66,1467.47,1457.66,1463.46,567860000,1463.46
-1999-12-28,1457.09,1462.68,1452.78,1457.66,655400000,1457.66
-1999-12-27,1458.34,1463.19,1450.83,1457.10,722600000,1457.10
-1999-12-23,1436.13,1461.44,1436.13,1458.34,728600000,1458.34
-1999-12-22,1433.43,1440.02,1429.13,1436.13,850000000,1436.13
-1999-12-21,1418.09,1436.47,1414.80,1433.43,963500000,1433.43
-1999-12-20,1421.03,1429.16,1411.10,1418.09,904600000,1418.09
-1999-12-17,1418.78,1431.77,1418.78,1421.03,1349800000,1421.03
-1999-12-16,1413.32,1423.11,1408.35,1418.78,1070300000,1418.78
-1999-12-15,1403.17,1417.40,1396.20,1413.33,1033900000,1413.33
-1999-12-14,1415.22,1418.30,1401.59,1403.17,1027800000,1403.17
-1999-12-13,1417.04,1421.58,1410.10,1415.22,977600000,1415.22
-1999-12-10,1408.11,1421.58,1405.65,1417.04,987200000,1417.04
-1999-12-09,1403.88,1418.43,1391.47,1408.11,1122100000,1408.11
-1999-12-08,1409.17,1415.66,1403.88,1403.88,957000000,1403.88
-1999-12-07,1423.33,1426.81,1409.17,1409.17,1085800000,1409.17
-1999-12-06,1433.30,1434.15,1418.25,1423.33,916800000,1423.33
-1999-12-03,1409.04,1447.42,1409.04,1433.30,1006400000,1433.30
-1999-12-02,1397.72,1409.04,1397.72,1409.04,900700000,1409.04
-1999-12-01,1388.91,1400.12,1387.38,1397.72,884000000,1397.72
-1999-11-30,1407.83,1410.59,1386.95,1388.91,951500000,1388.91
-1999-11-29,1416.62,1416.62,1404.15,1407.83,866100000,1407.83
-1999-11-26,1417.08,1425.24,1416.14,1416.62,312120000,1416.62
-1999-11-24,1404.64,1419.71,1399.17,1417.08,734800000,1417.08
-1999-11-23,1420.94,1423.91,1402.20,1404.64,926100000,1404.64
-1999-11-22,1422.00,1425.00,1412.40,1420.94,873500000,1420.94
-1999-11-19,1424.94,1424.94,1417.54,1422.00,893800000,1422.00
-1999-11-18,1410.71,1425.31,1410.71,1424.94,1022800000,1424.94
-1999-11-17,1420.07,1423.44,1410.69,1410.71,960000000,1410.71
-1999-11-16,1394.39,1420.36,1394.39,1420.07,942200000,1420.07
-1999-11-15,1396.06,1398.58,1392.28,1394.39,795700000,1394.39
-1999-11-12,1381.46,1396.12,1368.54,1396.06,900200000,1396.06
-1999-11-11,1373.46,1382.12,1372.19,1381.46,891300000,1381.46
-1999-11-10,1365.28,1379.18,1359.98,1373.46,984700000,1373.46
-1999-11-09,1377.01,1383.81,1361.45,1365.28,854300000,1365.28
-1999-11-08,1370.23,1380.78,1365.87,1377.01,806800000,1377.01
-1999-11-05,1362.64,1387.48,1362.64,1370.23,1007300000,1370.23
-1999-11-04,1354.93,1369.41,1354.93,1362.64,981700000,1362.64
-1999-11-03,1347.74,1360.33,1347.74,1354.93,914400000,1354.93
-1999-11-02,1354.12,1369.32,1346.41,1347.74,904500000,1347.74
-1999-11-01,1362.93,1367.30,1354.05,1354.12,861000000,1354.12
-1999-10-29,1342.44,1373.17,1342.44,1362.93,1120500000,1362.93
-1999-10-28,1296.71,1342.47,1296.71,1342.44,1135100000,1342.44
-1999-10-27,1281.91,1299.39,1280.48,1296.71,950100000,1296.71
-1999-10-26,1293.63,1303.46,1281.86,1281.91,878300000,1281.91
-1999-10-25,1301.65,1301.68,1286.07,1293.63,777000000,1293.63
-1999-10-22,1283.61,1308.81,1283.61,1301.65,959200000,1301.65
-1999-10-21,1289.43,1289.43,1265.61,1283.61,1012500000,1283.61
-1999-10-20,1261.32,1289.44,1261.32,1289.43,928800000,1289.43
-1999-10-19,1254.13,1279.32,1254.13,1261.32,905700000,1261.32
-1999-10-18,1247.41,1254.13,1233.70,1254.13,818700000,1254.13
-1999-10-15,1283.42,1283.42,1245.39,1247.41,912600000,1247.41
-1999-10-14,1285.55,1289.63,1267.62,1283.42,892300000,1283.42
-1999-10-13,1313.04,1313.04,1282.80,1285.55,821500000,1285.55
-1999-10-12,1335.21,1335.21,1311.80,1313.04,778300000,1313.04
-1999-10-11,1336.02,1339.23,1332.96,1335.21,655900000,1335.21
-1999-10-08,1317.64,1336.61,1311.88,1336.02,897300000,1336.02
-1999-10-07,1325.40,1328.05,1314.13,1317.64,827800000,1317.64
-1999-10-06,1301.35,1325.46,1301.35,1325.40,895200000,1325.40
-1999-10-05,1304.60,1316.41,1286.44,1301.35,965700000,1301.35
-1999-10-04,1282.81,1304.60,1282.81,1304.60,803300000,1304.60
-1999-10-01,1282.71,1283.17,1265.78,1282.81,896200000,1282.81
-1999-09-30,1268.37,1291.31,1268.37,1282.71,1017600000,1282.71
-1999-09-29,1282.20,1288.83,1268.16,1268.37,856000000,1268.37
-1999-09-28,1283.31,1285.55,1256.26,1282.20,885400000,1282.20
-1999-09-27,1277.36,1295.03,1277.36,1283.31,780600000,1283.31
-1999-09-24,1280.41,1281.17,1263.84,1277.36,872800000,1277.36
-1999-09-23,1310.51,1315.25,1277.30,1280.41,890800000,1280.41
-1999-09-22,1307.58,1316.18,1297.81,1310.51,822200000,1310.51
-1999-09-21,1335.52,1335.53,1301.97,1307.58,817300000,1307.58
-1999-09-20,1335.42,1338.38,1330.61,1335.53,568000000,1335.53
-1999-09-17,1318.48,1337.59,1318.48,1335.42,861900000,1335.42
-1999-09-16,1317.97,1322.51,1299.97,1318.48,739000000,1318.48
-1999-09-15,1336.29,1347.21,1317.97,1317.97,787300000,1317.97
-1999-09-14,1344.13,1344.18,1330.61,1336.29,734500000,1336.29
-1999-09-13,1351.66,1351.66,1341.70,1344.13,657900000,1344.13
-1999-09-10,1347.66,1357.62,1346.20,1351.66,808500000,1351.66
-1999-09-09,1344.15,1347.66,1333.91,1347.66,773900000,1347.66
-1999-09-08,1350.45,1355.18,1337.36,1344.15,791200000,1344.15
-1999-09-07,1357.24,1361.39,1349.59,1350.45,715300000,1350.45
-1999-09-03,1319.11,1357.74,1319.11,1357.24,663200000,1357.24
-1999-09-02,1331.07,1331.07,1304.88,1319.11,687100000,1319.11
-1999-09-01,1320.41,1331.18,1320.39,1331.07,708200000,1331.07
-1999-08-31,1324.02,1333.27,1306.96,1320.41,861700000,1320.41
-1999-08-30,1348.27,1350.70,1322.80,1324.02,597900000,1324.02
-1999-08-27,1362.01,1365.63,1347.35,1348.27,570050000,1348.27
-1999-08-26,1381.79,1381.79,1361.53,1362.01,719000000,1362.01
-1999-08-25,1363.50,1382.84,1359.20,1381.79,864600000,1381.79
-1999-08-24,1360.22,1373.32,1353.63,1363.50,732700000,1363.50
-1999-08-23,1336.61,1360.24,1336.61,1360.22,682600000,1360.22
-1999-08-20,1323.59,1336.61,1323.59,1336.61,661200000,1336.61
-1999-08-19,1332.84,1332.84,1315.35,1323.59,684200000,1323.59
-1999-08-18,1344.16,1344.16,1332.13,1332.84,682800000,1332.84
-1999-08-17,1330.77,1344.16,1328.76,1344.16,691500000,1344.16
-1999-08-16,1327.68,1331.05,1320.51,1330.77,583550000,1330.77
-1999-08-13,1298.16,1327.72,1298.16,1327.68,691700000,1327.68
-1999-08-12,1301.93,1313.61,1298.06,1298.16,745600000,1298.16
-1999-08-11,1281.43,1301.93,1281.43,1301.93,792300000,1301.93
-1999-08-10,1297.80,1298.62,1267.73,1281.43,836200000,1281.43
-1999-08-09,1300.29,1306.68,1295.99,1297.80,684300000,1297.80
-1999-08-06,1313.71,1316.74,1293.19,1300.29,698900000,1300.29
-1999-08-05,1305.33,1313.71,1287.23,1313.71,859300000,1313.71
-1999-08-04,1322.18,1330.16,1304.50,1305.33,789300000,1305.33
-1999-08-03,1328.05,1336.13,1314.91,1322.18,739600000,1322.18
-1999-08-02,1328.72,1344.69,1325.21,1328.05,649550000,1328.05
-1999-07-30,1341.03,1350.92,1328.49,1328.72,736800000,1328.72
-1999-07-29,1365.40,1365.40,1332.82,1341.03,770100000,1341.03
-1999-07-28,1362.84,1370.53,1355.54,1365.40,690900000,1365.40
-1999-07-27,1347.75,1368.70,1347.75,1362.84,723800000,1362.84
-1999-07-26,1356.94,1358.61,1346.20,1347.76,613450000,1347.76
-1999-07-23,1360.97,1367.41,1349.91,1356.94,630580000,1356.94
-1999-07-22,1379.29,1379.29,1353.98,1360.97,771700000,1360.97
-1999-07-21,1377.10,1386.66,1372.63,1379.29,785500000,1379.29
-1999-07-20,1407.65,1407.65,1375.15,1377.10,754800000,1377.10
-1999-07-19,1418.78,1420.33,1404.56,1407.65,642330000,1407.65
-1999-07-16,1409.62,1418.78,1407.07,1418.78,714100000,1418.78
-1999-07-15,1398.17,1409.84,1398.17,1409.62,818800000,1409.62
-1999-07-14,1393.56,1400.05,1386.51,1398.17,756100000,1398.17
-1999-07-13,1399.10,1399.10,1386.84,1393.56,736000000,1393.56
-1999-07-12,1403.28,1406.82,1394.70,1399.10,685300000,1399.10
-1999-07-09,1394.42,1403.28,1394.42,1403.28,701000000,1403.28
-1999-07-08,1395.86,1403.25,1386.69,1394.42,830600000,1394.42
-1999-07-07,1388.12,1395.88,1384.95,1395.86,791200000,1395.86
-1999-07-06,1391.22,1405.29,1387.08,1388.12,722900000,1388.12
-1999-07-02,1380.96,1391.22,1379.57,1391.22,613570000,1391.22
-1999-07-01,1372.71,1382.80,1360.80,1380.96,843400000,1380.96
-1999-06-30,1351.45,1372.93,1338.78,1372.71,1117000000,1372.71
-1999-06-29,1331.35,1351.51,1328.40,1351.45,820100000,1351.45
-1999-06-28,1315.31,1333.68,1315.31,1331.35,652910000,1331.35
-1999-06-25,1315.78,1329.13,1312.64,1315.31,623460000,1315.31
-1999-06-24,1333.06,1333.06,1308.47,1315.78,690400000,1315.78
-1999-06-23,1335.87,1335.88,1322.55,1333.06,731800000,1333.06
-1999-06-22,1349.00,1351.12,1335.52,1335.88,716500000,1335.88
-1999-06-21,1342.84,1349.06,1337.63,1349.00,686600000,1349.00
-1999-06-18,1339.90,1344.48,1333.52,1342.84,914500000,1342.84
-1999-06-17,1330.41,1343.54,1322.75,1339.90,700300000,1339.90
-1999-06-16,1301.16,1332.83,1301.16,1330.41,806800000,1330.41
-1999-06-15,1294.00,1310.76,1294.00,1301.16,696600000,1301.16
-1999-06-14,1293.64,1301.99,1292.20,1294.00,669400000,1294.00
-1999-06-11,1302.82,1311.97,1287.88,1293.64,698200000,1293.64
-1999-06-10,1318.64,1318.64,1293.28,1302.82,716500000,1302.82
-1999-06-09,1317.33,1326.01,1314.73,1318.64,662000000,1318.64
-1999-06-08,1334.52,1334.52,1312.83,1317.33,685900000,1317.33
-1999-06-07,1327.75,1336.42,1325.89,1334.52,664300000,1334.52
-1999-06-04,1299.54,1327.75,1299.54,1327.75,694500000,1327.75
-1999-06-03,1294.81,1304.15,1294.20,1299.54,719600000,1299.54
-1999-06-02,1294.26,1297.10,1277.47,1294.81,728000000,1294.81
-1999-06-01,1301.84,1301.84,1281.44,1294.26,683800000,1294.26
-1999-05-28,1281.41,1304.00,1281.41,1301.84,649960000,1301.84
-1999-05-27,1304.76,1304.76,1277.31,1281.41,811400000,1281.41
-1999-05-26,1284.40,1304.85,1278.43,1304.76,870800000,1304.76
-1999-05-25,1306.65,1317.52,1284.38,1284.40,826700000,1284.40
-1999-05-24,1330.29,1333.02,1303.53,1306.65,754700000,1306.65
-1999-05-21,1338.83,1340.88,1326.19,1330.29,686600000,1330.29
-1999-05-20,1344.23,1350.49,1338.83,1338.83,752200000,1338.83
-1999-05-19,1333.32,1344.23,1327.05,1344.23,801100000,1344.23
-1999-05-18,1339.49,1345.44,1323.46,1333.32,753400000,1333.32
-1999-05-17,1337.80,1339.95,1321.19,1339.49,665500000,1339.49
-1999-05-14,1367.56,1367.56,1332.63,1337.80,727800000,1337.80
-1999-05-13,1364.00,1375.98,1364.00,1367.56,796900000,1367.56
-1999-05-12,1355.61,1367.36,1333.10,1364.00,825500000,1364.00
-1999-05-11,1340.30,1360.00,1340.30,1355.61,836100000,1355.61
-1999-05-10,1345.00,1352.01,1334.00,1340.30,773300000,1340.30
-1999-05-07,1332.05,1345.99,1332.05,1345.00,814900000,1345.00
-1999-05-06,1347.31,1348.36,1322.56,1332.05,875400000,1332.05
-1999-05-05,1332.00,1347.32,1317.44,1347.31,913500000,1347.31
-1999-05-04,1354.63,1354.64,1330.64,1332.00,933100000,1332.00
-1999-05-03,1335.18,1354.63,1329.01,1354.63,811400000,1354.63
-1999-04-30,1342.83,1351.83,1314.58,1335.18,936500000,1335.18
-1999-04-29,1350.91,1356.75,1336.81,1342.83,1003600000,1342.83
-1999-04-28,1362.80,1368.62,1348.29,1350.91,951700000,1350.91
-1999-04-27,1360.04,1371.56,1356.55,1362.80,891700000,1362.80
-1999-04-26,1356.85,1363.56,1353.72,1360.04,712000000,1360.04
-1999-04-23,1358.83,1363.65,1348.45,1356.85,744900000,1356.85
-1999-04-22,1336.12,1358.84,1336.12,1358.82,927900000,1358.82
-1999-04-21,1306.17,1336.12,1301.84,1336.12,920000000,1336.12
-1999-04-20,1289.48,1306.30,1284.21,1306.17,985400000,1306.17
-1999-04-19,1319.00,1340.10,1284.48,1289.48,1214400000,1289.48
-1999-04-16,1322.86,1325.03,1311.40,1319.00,1002300000,1319.00
-1999-04-15,1328.44,1332.41,1308.38,1322.85,1089800000,1322.85
-1999-04-14,1349.82,1357.24,1326.41,1328.44,952000000,1328.44
-1999-04-13,1358.64,1362.38,1344.03,1349.82,810900000,1349.82
-1999-04-12,1348.35,1358.69,1333.48,1358.63,810800000,1358.63
-1999-04-09,1343.98,1351.22,1335.24,1348.35,716100000,1348.35
-1999-04-08,1326.89,1344.08,1321.60,1343.98,850500000,1343.98
-1999-04-07,1317.89,1329.58,1312.59,1326.89,816400000,1326.89
-1999-04-06,1321.12,1326.76,1311.07,1317.89,787500000,1317.89
-1999-04-05,1293.72,1321.12,1293.72,1321.12,695800000,1321.12
-1999-04-01,1286.37,1294.54,1282.56,1293.72,703000000,1293.72
-1999-03-31,1300.75,1313.60,1285.87,1286.37,924300000,1286.37
-1999-03-30,1310.17,1310.17,1295.47,1300.75,729000000,1300.75
-1999-03-29,1282.80,1311.76,1282.80,1310.17,747900000,1310.17
-1999-03-26,1289.99,1289.99,1277.25,1282.80,707200000,1282.80
-1999-03-25,1268.59,1289.99,1268.59,1289.99,784200000,1289.99
-1999-03-24,1262.14,1269.02,1256.43,1268.59,761900000,1268.59
-1999-03-23,1297.01,1297.01,1257.46,1262.14,811300000,1262.14
-1999-03-22,1299.29,1303.84,1294.26,1297.01,658200000,1297.01
-1999-03-19,1316.55,1323.82,1298.92,1299.29,914700000,1299.29
-1999-03-18,1297.82,1317.62,1294.75,1316.55,831000000,1316.55
-1999-03-17,1306.38,1306.55,1292.63,1297.82,752300000,1297.82
-1999-03-16,1307.26,1311.11,1302.29,1306.38,751900000,1306.38
-1999-03-15,1294.59,1307.47,1291.03,1307.26,727200000,1307.26
-1999-03-12,1297.68,1304.42,1289.17,1294.59,825800000,1294.59
-1999-03-11,1286.84,1306.43,1286.84,1297.68,904800000,1297.68
-1999-03-10,1279.84,1287.02,1275.16,1286.84,841900000,1286.84
-1999-03-09,1282.73,1293.74,1275.11,1279.84,803700000,1279.84
-1999-03-08,1275.47,1282.74,1271.58,1282.73,714600000,1282.73
-1999-03-05,1246.64,1275.73,1246.64,1275.47,834900000,1275.47
-1999-03-04,1227.70,1247.74,1227.70,1246.64,770900000,1246.64
-1999-03-03,1225.50,1231.63,1216.03,1227.70,751700000,1227.70
-1999-03-02,1236.16,1248.31,1221.87,1225.50,753600000,1225.50
-1999-03-01,1238.33,1238.70,1221.88,1236.16,699500000,1236.16
-1999-02-26,1245.02,1246.73,1226.24,1238.33,784600000,1238.33
-1999-02-25,1253.41,1253.41,1225.01,1245.02,740500000,1245.02
-1999-02-24,1271.18,1283.84,1251.94,1253.41,782000000,1253.41
-1999-02-23,1272.14,1280.38,1263.36,1271.18,781100000,1271.18
-1999-02-22,1239.22,1272.22,1239.22,1272.14,718500000,1272.14
-1999-02-19,1237.28,1247.91,1232.03,1239.22,700000000,1239.22
-1999-02-18,1224.03,1239.13,1220.70,1237.28,742400000,1237.28
-1999-02-17,1241.87,1249.31,1220.92,1224.03,735100000,1224.03
-1999-02-16,1230.13,1252.17,1230.13,1241.87,653760000,1241.87
-1999-02-12,1254.04,1254.04,1225.53,1230.13,691500000,1230.13
-1999-02-11,1223.55,1254.05,1223.19,1254.04,815800000,1254.04
-1999-02-10,1216.14,1226.78,1211.89,1223.55,721400000,1223.55
-1999-02-09,1243.77,1243.97,1215.63,1216.14,736000000,1216.14
-1999-02-08,1239.40,1246.93,1231.98,1243.77,705400000,1243.77
-1999-02-05,1248.49,1251.86,1232.28,1239.40,872000000,1239.40
-1999-02-04,1272.07,1272.23,1248.36,1248.49,854400000,1248.49
-1999-02-03,1261.99,1276.04,1255.27,1272.07,876500000,1272.07
-1999-02-02,1273.00,1273.49,1247.56,1261.99,845500000,1261.99
-1999-02-01,1279.64,1283.75,1271.31,1273.00,799400000,1273.00
-1999-01-29,1265.37,1280.37,1255.18,1279.64,917000000,1279.64
-1999-01-28,1243.17,1266.40,1243.17,1265.37,848800000,1265.37
-1999-01-27,1252.31,1262.61,1242.82,1243.17,893800000,1243.17
-1999-01-26,1233.98,1253.25,1233.98,1252.31,896400000,1252.31
-1999-01-25,1225.19,1233.98,1219.46,1233.98,723900000,1233.98
-1999-01-22,1235.16,1236.41,1217.97,1225.19,785900000,1225.19
-1999-01-21,1256.62,1256.94,1232.19,1235.16,871800000,1235.16
-1999-01-20,1252.00,1274.07,1251.54,1256.62,905700000,1256.62
-1999-01-19,1243.26,1253.27,1234.91,1252.00,785500000,1252.00
-1999-01-15,1212.19,1243.26,1212.19,1243.26,798100000,1243.26
-1999-01-14,1234.40,1236.81,1209.54,1212.19,797200000,1212.19
-1999-01-13,1239.51,1247.75,1205.46,1234.40,931500000,1234.40
-1999-01-12,1263.88,1264.45,1238.29,1239.51,800200000,1239.51
-1999-01-11,1275.09,1276.22,1253.34,1263.88,818000000,1263.88
-1999-01-08,1269.73,1278.24,1261.82,1275.09,937800000,1275.09
-1999-01-07,1272.34,1272.34,1257.68,1269.73,863000000,1269.73
-1999-01-06,1244.78,1272.50,1244.78,1272.34,986900000,1272.34
-1999-01-05,1228.10,1246.11,1228.10,1244.78,775000000,1244.78
-1999-01-04,1229.23,1248.81,1219.10,1228.10,877000000,1228.10
-1998-12-31,1231.93,1237.18,1224.96,1229.23,719200000,1229.23
-1998-12-30,1241.81,1244.93,1231.20,1231.93,594220000,1231.93
-1998-12-29,1225.49,1241.86,1220.78,1241.81,586490000,1241.81
-1998-12-28,1226.27,1231.52,1221.17,1225.49,531560000,1225.49
-1998-12-24,1228.54,1229.72,1224.85,1226.27,246980000,1226.27
-1998-12-23,1203.57,1229.89,1203.57,1228.54,697500000,1228.54
-1998-12-22,1202.84,1209.22,1192.72,1203.57,680500000,1203.57
-1998-12-21,1188.03,1210.88,1188.03,1202.84,744800000,1202.84
-1998-12-18,1179.98,1188.89,1178.27,1188.03,839600000,1188.03
-1998-12-17,1161.94,1180.03,1161.94,1179.98,739400000,1179.98
-1998-12-16,1162.83,1166.29,1154.69,1161.94,725500000,1161.94
-1998-12-15,1141.20,1162.83,1141.20,1162.83,777900000,1162.83
-1998-12-14,1166.46,1166.46,1136.89,1141.20,741800000,1141.20
-1998-12-11,1165.02,1167.89,1153.19,1166.46,688900000,1166.46
-1998-12-10,1183.49,1183.77,1163.75,1165.02,748600000,1165.02
-1998-12-09,1181.38,1185.22,1175.89,1183.49,694200000,1183.49
-1998-12-08,1187.70,1193.53,1172.78,1181.38,727700000,1181.38
-1998-12-07,1176.74,1188.96,1176.71,1187.70,671200000,1187.70
-1998-12-04,1150.14,1176.74,1150.14,1176.74,709700000,1176.74
-1998-12-03,1171.25,1176.99,1149.61,1150.14,799100000,1150.14
-1998-12-02,1175.28,1175.28,1157.76,1171.25,727400000,1171.25
-1998-12-01,1163.63,1175.89,1150.31,1175.28,789200000,1175.28
-1998-11-30,1192.33,1192.72,1163.63,1163.63,687900000,1163.63
-1998-11-27,1186.87,1192.97,1186.83,1192.33,256950000,1192.33
-1998-11-25,1182.99,1187.16,1179.37,1186.87,583580000,1186.87
-1998-11-24,1188.21,1191.30,1181.81,1182.99,766200000,1182.99
-1998-11-23,1163.55,1188.21,1163.55,1188.21,774100000,1188.21
-1998-11-20,1152.61,1163.55,1152.61,1163.55,721200000,1163.55
-1998-11-19,1144.48,1155.10,1144.42,1152.61,671000000,1152.61
-1998-11-18,1139.32,1144.52,1133.07,1144.48,652510000,1144.48
-1998-11-17,1135.87,1151.71,1129.67,1139.32,705200000,1139.32
-1998-11-16,1125.72,1138.72,1125.72,1135.87,615580000,1135.87
-1998-11-13,1117.69,1126.34,1116.76,1125.72,602270000,1125.72
-1998-11-12,1120.97,1126.57,1115.55,1117.69,662300000,1117.69
-1998-11-11,1128.26,1136.25,1117.40,1120.97,715700000,1120.97
-1998-11-10,1130.20,1135.37,1122.80,1128.26,671300000,1128.26
-1998-11-09,1141.01,1141.01,1123.17,1130.20,592990000,1130.20
-1998-11-06,1133.85,1141.30,1131.18,1141.01,683100000,1141.01
-1998-11-05,1118.67,1133.88,1109.55,1133.85,770200000,1133.85
-1998-11-04,1110.84,1127.18,1110.59,1118.67,861100000,1118.67
-1998-11-03,1111.60,1115.02,1106.42,1110.84,704300000,1110.84
-1998-11-02,1098.67,1114.44,1098.67,1111.60,753800000,1111.60
-1998-10-30,1085.93,1103.78,1085.93,1098.67,785000000,1098.67
-1998-10-29,1068.09,1086.11,1065.95,1085.93,699400000,1085.93
-1998-10-28,1065.34,1072.79,1059.65,1068.09,677500000,1068.09
-1998-10-27,1072.32,1087.08,1063.06,1065.34,764500000,1065.34
-1998-10-26,1070.67,1081.23,1068.17,1072.32,609910000,1072.32
-1998-10-23,1078.48,1078.48,1067.43,1070.67,637640000,1070.67
-1998-10-22,1069.92,1080.43,1061.47,1078.48,754900000,1078.48
-1998-10-21,1063.93,1073.61,1058.08,1069.92,745100000,1069.92
-1998-10-20,1062.39,1084.06,1060.61,1063.93,958200000,1063.93
-1998-10-19,1056.42,1065.21,1054.23,1062.39,738600000,1062.39
-1998-10-16,1047.49,1062.65,1047.49,1056.42,1042200000,1056.42
-1998-10-15,1005.53,1053.09,1000.12,1047.49,937600000,1047.49
-1998-10-14,994.80,1014.42,987.80,1005.53,791200000,1005.53
-1998-10-13,997.71,1000.78,987.55,994.80,733300000,994.80
-1998-10-12,984.39,1010.71,984.39,997.71,691100000,997.71
-1998-10-09,959.44,984.42,953.04,984.39,878100000,984.39
-1998-10-08,970.68,970.68,923.32,959.44,1114600000,959.44
-1998-10-07,984.59,995.66,957.15,970.68,977000000,970.68
-1998-10-06,988.56,1008.77,974.81,984.59,845700000,984.59
-1998-10-05,1002.60,1002.60,964.72,988.56,817500000,988.56
-1998-10-02,986.39,1005.45,971.69,1002.60,902900000,1002.60
-1998-10-01,1017.01,1017.01,981.29,986.39,899700000,986.39
-1998-09-30,1049.02,1049.02,1015.73,1017.01,800100000,1017.01
-1998-09-29,1048.69,1056.31,1039.88,1049.02,760100000,1049.02
-1998-09-28,1044.75,1061.46,1042.23,1048.69,690500000,1048.69
-1998-09-25,1042.72,1051.89,1028.49,1044.75,736800000,1044.75
-1998-09-24,1066.09,1066.11,1033.04,1042.72,805900000,1042.72
-1998-09-23,1029.63,1066.09,1029.63,1066.09,899700000,1066.09
-1998-09-22,1023.89,1033.89,1021.96,1029.63,694900000,1029.63
-1998-09-21,1020.09,1026.02,993.82,1023.89,609880000,1023.89
-1998-09-18,1018.87,1022.01,1011.86,1020.09,794700000,1020.09
-1998-09-17,1045.48,1045.48,1016.05,1018.87,694500000,1018.87
-1998-09-16,1037.68,1046.07,1029.31,1045.48,797500000,1045.48
-1998-09-15,1029.72,1037.90,1021.42,1037.68,724600000,1037.68
-1998-09-14,1009.06,1038.38,1009.06,1029.72,714400000,1029.72
-1998-09-11,980.19,1009.06,969.71,1009.06,819100000,1009.06
-1998-09-10,1006.20,1006.20,968.64,980.19,880300000,980.19
-1998-09-09,1023.46,1027.72,1004.56,1006.20,704300000,1006.20
-1998-09-08,973.89,1023.46,973.89,1023.46,814800000,1023.46
-1998-09-04,982.26,991.41,956.51,973.89,780300000,973.89
-1998-09-03,990.47,990.47,969.32,982.26,880500000,982.26
-1998-09-02,994.26,1013.19,988.40,990.48,894600000,990.48
-1998-09-01,957.28,1000.71,939.98,994.26,1216600000,994.26
-1998-08-31,1027.14,1033.47,957.28,957.28,917500000,957.28
-1998-08-28,1042.59,1051.80,1021.04,1027.14,840300000,1027.14
-1998-08-27,1084.19,1084.19,1037.61,1042.59,938600000,1042.59
-1998-08-26,1092.85,1092.85,1075.91,1084.19,674100000,1084.19
-1998-08-25,1088.14,1106.64,1085.53,1092.85,664900000,1092.85
-1998-08-24,1081.24,1093.82,1081.24,1088.14,558100000,1088.14
-1998-08-21,1091.60,1091.60,1054.92,1081.24,725700000,1081.24
-1998-08-20,1098.06,1098.79,1089.55,1091.60,621630000,1091.60
-1998-08-19,1101.20,1106.32,1094.93,1098.06,633630000,1098.06
-1998-08-18,1083.67,1101.72,1083.67,1101.20,690600000,1101.20
-1998-08-17,1062.75,1083.67,1055.08,1083.67,584380000,1083.67
-1998-08-14,1074.91,1083.92,1057.22,1062.75,644030000,1062.75
-1998-08-13,1084.22,1091.50,1074.91,1074.91,660700000,1074.91
-1998-08-12,1068.98,1084.70,1068.98,1084.22,711700000,1084.22
-1998-08-11,1083.14,1083.14,1054.00,1068.98,774400000,1068.98
-1998-08-10,1089.45,1092.82,1081.76,1083.14,579180000,1083.14
-1998-08-07,1089.63,1102.54,1084.72,1089.45,759100000,1089.45
-1998-08-06,1081.43,1090.95,1074.94,1089.63,768400000,1089.63
-1998-08-05,1072.12,1084.80,1057.35,1081.43,851600000,1081.43
-1998-08-04,1112.44,1119.73,1071.82,1072.12,852600000,1072.12
-1998-08-03,1120.67,1121.79,1110.39,1112.44,620400000,1112.44
-1998-07-31,1142.95,1142.97,1114.30,1120.67,645910000,1120.67
-1998-07-30,1125.21,1143.07,1125.21,1142.95,687400000,1142.95
-1998-07-29,1130.24,1138.56,1121.98,1125.21,644350000,1125.21
-1998-07-28,1147.27,1147.27,1119.44,1130.24,703600000,1130.24
-1998-07-27,1140.80,1147.27,1128.19,1147.27,619990000,1147.27
-1998-07-24,1139.75,1150.14,1129.11,1140.80,698600000,1140.80
-1998-07-23,1164.08,1164.35,1139.75,1139.75,741600000,1139.75
-1998-07-22,1165.07,1167.67,1155.20,1164.08,739800000,1164.08
-1998-07-21,1184.10,1187.37,1163.05,1165.07,659700000,1165.07
-1998-07-20,1186.75,1190.58,1179.19,1184.10,560580000,1184.10
-1998-07-17,1183.99,1188.10,1182.42,1186.75,618030000,1186.75
-1998-07-16,1174.81,1184.02,1170.40,1183.99,677800000,1183.99
-1998-07-15,1177.58,1181.48,1174.73,1174.81,723900000,1174.81
-1998-07-14,1165.19,1179.76,1165.19,1177.58,700300000,1177.58
-1998-07-13,1164.33,1166.98,1160.21,1165.19,574880000,1165.19
-1998-07-10,1158.57,1166.93,1150.88,1164.33,576080000,1164.33
-1998-07-09,1166.38,1166.38,1156.03,1158.56,663600000,1158.56
-1998-07-08,1154.66,1166.89,1154.66,1166.38,607230000,1166.38
-1998-07-07,1157.33,1159.81,1152.85,1154.66,624890000,1154.66
-1998-07-06,1146.42,1157.33,1145.03,1157.33,514750000,1157.33
-1998-07-02,1148.56,1148.56,1142.99,1146.42,510210000,1146.42
-1998-07-01,1133.84,1148.56,1133.84,1148.56,701600000,1148.56
-1998-06-30,1138.49,1140.80,1131.98,1133.84,757200000,1133.84
-1998-06-29,1133.20,1145.15,1133.20,1138.49,564350000,1138.49
-1998-06-26,1129.28,1136.83,1129.28,1133.20,520050000,1133.20
-1998-06-25,1132.88,1142.04,1127.60,1129.28,669900000,1129.28
-1998-06-24,1119.49,1134.40,1115.10,1132.88,714900000,1132.88
-1998-06-23,1103.21,1119.49,1103.21,1119.49,657100000,1119.49
-1998-06-22,1100.65,1109.01,1099.42,1103.21,531550000,1103.21
-1998-06-19,1106.37,1111.25,1097.10,1100.65,715500000,1100.65
-1998-06-18,1107.11,1109.36,1103.71,1106.37,590440000,1106.37
-1998-06-17,1087.59,1112.87,1087.58,1107.11,744400000,1107.11
-1998-06-16,1077.01,1087.59,1074.67,1087.59,664600000,1087.59
-1998-06-15,1098.84,1098.84,1077.01,1077.01,595820000,1077.01
-1998-06-12,1094.58,1098.84,1080.83,1098.84,633300000,1098.84
-1998-06-11,1112.28,1114.20,1094.28,1094.58,627470000,1094.58
-1998-06-10,1118.41,1126.00,1110.27,1112.28,609410000,1112.28
-1998-06-09,1115.72,1119.92,1111.31,1118.41,563610000,1118.41
-1998-06-08,1113.86,1119.70,1113.31,1115.72,543390000,1115.72
-1998-06-05,1095.10,1113.88,1094.83,1113.86,558440000,1113.86
-1998-06-04,1082.73,1095.93,1078.10,1094.83,577470000,1094.83
-1998-06-03,1093.22,1097.43,1081.09,1082.73,584480000,1082.73
-1998-06-02,1090.98,1098.71,1089.67,1093.22,590930000,1093.22
-1998-06-01,1090.82,1097.85,1084.22,1090.98,537660000,1090.98
-1998-05-29,1097.60,1104.16,1090.82,1090.82,556780000,1090.82
-1998-05-28,1092.23,1099.73,1089.06,1097.60,588900000,1097.60
-1998-05-27,1094.02,1094.44,1074.39,1092.23,682040000,1092.23
-1998-05-26,1110.47,1116.79,1094.01,1094.02,541410000,1094.02
-1998-05-22,1114.64,1116.89,1107.99,1110.47,444070000,1110.47
-1998-05-21,1119.06,1124.45,1111.94,1114.64,551970000,1114.64
-1998-05-20,1109.52,1119.08,1107.51,1119.06,587240000,1119.06
-1998-05-19,1105.82,1113.50,1105.82,1109.52,566020000,1109.52
-1998-05-18,1108.73,1112.44,1097.99,1105.82,519100000,1105.82
-1998-05-15,1117.37,1118.66,1107.11,1108.73,621990000,1108.73
-1998-05-14,1118.86,1124.03,1112.43,1117.37,578380000,1117.37
-1998-05-13,1115.79,1122.22,1114.93,1118.86,600010000,1118.86
-1998-05-12,1106.64,1115.96,1102.78,1115.79,604420000,1115.79
-1998-05-11,1108.14,1119.13,1103.72,1106.64,560840000,1106.64
-1998-05-08,1095.14,1111.42,1094.53,1108.14,567890000,1108.14
-1998-05-07,1104.92,1105.58,1094.59,1095.14,582240000,1095.14
-1998-05-06,1115.50,1118.39,1104.64,1104.92,606540000,1104.92
-1998-05-05,1122.07,1122.07,1111.16,1115.50,583630000,1115.50
-1998-05-04,1121.00,1130.52,1121.00,1122.07,551700000,1122.07
-1998-05-01,1111.75,1121.02,1111.75,1121.00,581970000,1121.00
-1998-04-30,1094.63,1116.97,1094.63,1111.75,695600000,1111.75
-1998-04-29,1085.11,1098.24,1084.65,1094.62,638790000,1094.62
-1998-04-28,1086.54,1095.94,1081.49,1085.11,678600000,1085.11
-1998-04-27,1107.90,1107.90,1076.70,1086.54,685960000,1086.54
-1998-04-24,1119.58,1122.81,1104.77,1107.90,633890000,1107.90
-1998-04-23,1130.54,1130.54,1117.49,1119.58,653190000,1119.58
-1998-04-22,1126.67,1132.98,1126.29,1130.54,696740000,1130.54
-1998-04-21,1123.65,1129.65,1119.54,1126.67,675640000,1126.67
-1998-04-20,1122.72,1124.88,1118.43,1123.65,595190000,1123.65
-1998-04-17,1108.17,1122.72,1104.95,1122.72,672290000,1122.72
-1998-04-16,1119.32,1119.32,1105.27,1108.17,699570000,1108.17
-1998-04-15,1115.75,1119.90,1112.24,1119.32,685020000,1119.32
-1998-04-14,1109.69,1115.95,1109.48,1115.75,613730000,1115.75
-1998-04-13,1110.67,1110.75,1100.60,1109.69,564480000,1109.69
-1998-04-09,1101.65,1111.45,1101.65,1110.67,548940000,1110.67
-1998-04-08,1109.55,1111.60,1098.21,1101.65,616330000,1101.65
-1998-04-07,1121.38,1121.38,1102.44,1109.55,670760000,1109.55
-1998-04-06,1122.70,1131.99,1121.37,1121.38,625810000,1121.38
-1998-04-03,1120.01,1126.36,1118.12,1122.70,653880000,1122.70
-1998-04-02,1108.15,1121.01,1107.89,1120.01,674340000,1120.01
-1998-04-01,1101.75,1109.19,1095.29,1108.15,677310000,1108.15
-1998-03-31,1093.55,1110.13,1093.55,1101.75,674930000,1101.75
-1998-03-30,1095.44,1099.10,1090.02,1093.60,497400000,1093.60
-1998-03-27,1100.80,1107.18,1091.14,1095.44,582190000,1095.44
-1998-03-26,1101.93,1106.28,1097.00,1100.80,606770000,1100.80
-1998-03-25,1105.65,1113.07,1092.84,1101.93,676550000,1101.93
-1998-03-24,1095.55,1106.75,1095.55,1105.65,605720000,1105.65
-1998-03-23,1099.16,1101.16,1094.25,1095.55,631350000,1095.55
-1998-03-20,1089.74,1101.04,1089.39,1099.16,717310000,1099.16
-1998-03-19,1085.52,1089.74,1084.30,1089.74,598240000,1089.74
-1998-03-18,1080.45,1085.52,1077.77,1085.52,632690000,1085.52
-1998-03-17,1079.27,1080.52,1073.29,1080.45,680960000,1080.45
-1998-03-16,1068.61,1079.46,1068.61,1079.27,548980000,1079.27
-1998-03-13,1069.92,1075.86,1066.57,1068.61,597800000,1068.61
-1998-03-12,1068.47,1071.87,1063.54,1069.92,594940000,1069.92
-1998-03-11,1064.25,1069.18,1064.22,1068.47,655260000,1068.47
-1998-03-10,1052.31,1064.59,1052.31,1064.25,631920000,1064.25
-1998-03-09,1055.69,1058.55,1050.02,1052.31,624700000,1052.31
-1998-03-06,1035.05,1055.69,1035.05,1055.69,665500000,1055.69
-1998-03-05,1047.33,1047.33,1030.87,1035.05,648270000,1035.05
-1998-03-04,1052.02,1052.02,1042.74,1047.33,644280000,1047.33
-1998-03-03,1047.70,1052.02,1043.41,1052.02,612360000,1052.02
-1998-03-02,1049.34,1053.98,1044.70,1047.70,591470000,1047.70
-1998-02-27,1048.67,1051.66,1044.40,1049.34,574480000,1049.34
-1998-02-26,1042.90,1048.68,1039.85,1048.67,646280000,1048.67
-1998-02-25,1030.56,1045.79,1030.56,1042.90,611350000,1042.90
-1998-02-24,1038.14,1038.73,1028.89,1030.56,589880000,1030.56
-1998-02-23,1034.21,1038.68,1031.76,1038.14,550730000,1038.14
-1998-02-20,1028.28,1034.21,1022.69,1034.21,594300000,1034.21
-1998-02-19,1032.08,1032.93,1026.62,1028.28,581820000,1028.28
-1998-02-18,1022.76,1032.08,1021.70,1032.08,606000000,1032.08
-1998-02-17,1020.09,1028.02,1020.09,1022.76,605890000,1022.76
-1998-02-13,1024.14,1024.14,1017.71,1020.09,531940000,1020.09
-1998-02-12,1020.01,1026.30,1008.55,1024.14,611480000,1024.14
-1998-02-11,1019.01,1020.71,1016.38,1020.01,599300000,1020.01
-1998-02-10,1010.74,1022.15,1010.71,1019.01,642800000,1019.01
-1998-02-09,1012.46,1015.33,1006.28,1010.74,524810000,1010.74
-1998-02-06,1003.54,1013.07,1003.36,1012.46,569650000,1012.46
-1998-02-05,1006.90,1013.51,1000.27,1003.54,703980000,1003.54
-1998-02-04,1006.00,1009.52,999.43,1006.90,695420000,1006.90
-1998-02-03,1001.27,1006.13,996.90,1006.00,692120000,1006.00
-1998-02-02,980.28,1002.48,980.28,1001.27,724320000,1001.27
-1998-01-30,985.49,987.41,979.63,980.28,613380000,980.28
-1998-01-29,977.46,992.65,975.21,985.49,750760000,985.49
-1998-01-28,969.02,978.63,969.02,977.46,708470000,977.46
-1998-01-27,956.95,973.23,956.26,969.02,679140000,969.02
-1998-01-26,957.59,963.04,954.24,956.95,555080000,956.95
-1998-01-23,963.04,966.44,950.86,957.59,635770000,957.59
-1998-01-22,970.81,970.81,959.49,963.04,646570000,963.04
-1998-01-21,978.60,978.60,963.29,970.81,626160000,970.81
-1998-01-20,961.51,978.60,961.48,978.60,644790000,978.60
-1998-01-16,950.73,965.12,950.73,961.51,670080000,961.51
-1998-01-15,957.94,957.94,950.27,950.73,569050000,950.73
-1998-01-14,952.12,958.12,948.00,957.94,603280000,957.94
-1998-01-13,939.21,952.14,939.21,952.12,646740000,952.12
-1998-01-12,927.69,939.25,912.83,939.21,705450000,939.21
-1998-01-09,956.05,956.05,921.72,927.69,746420000,927.69
-1998-01-08,964.00,964.00,955.04,956.05,652140000,956.05
-1998-01-07,966.58,966.58,952.67,964.00,667390000,964.00
-1998-01-06,977.07,977.07,962.68,966.58,618360000,966.58
-1998-01-05,975.04,982.63,969.00,977.07,628070000,977.07
-1998-01-02,970.43,975.04,965.73,975.04,366730000,975.04
-1997-12-31,970.84,975.02,967.41,970.43,467280000,970.43
-1997-12-30,953.35,970.84,953.35,970.84,499500000,970.84
-1997-12-29,936.46,953.95,936.46,953.35,443160000,953.35
-1997-12-26,932.70,939.99,932.70,936.46,154900000,936.46
-1997-12-24,939.13,942.88,932.70,932.70,265980000,932.70
-1997-12-23,953.70,954.51,938.91,939.13,515070000,939.13
-1997-12-22,946.78,956.73,946.25,953.70,530670000,953.70
-1997-12-19,955.30,955.30,924.92,946.78,793200000,946.78
-1997-12-18,965.54,965.54,950.55,955.30,618870000,955.30
-1997-12-17,968.04,974.30,964.25,965.54,618900000,965.54
-1997-12-16,963.39,973.00,963.39,968.04,623320000,968.04
-1997-12-15,953.39,965.96,953.39,963.39,597150000,963.39
-1997-12-12,954.94,961.32,947.00,953.39,579280000,953.39
-1997-12-11,969.79,969.79,951.89,954.94,631770000,954.94
-1997-12-10,975.78,975.78,962.68,969.79,602290000,969.79
-1997-12-09,982.37,982.37,973.81,975.78,539130000,975.78
-1997-12-08,983.79,985.67,979.57,982.37,490320000,982.37
-1997-12-05,973.10,986.25,969.10,983.79,563590000,983.79
-1997-12-04,976.77,983.36,971.37,973.10,633470000,973.10
-1997-12-03,971.68,980.81,966.16,976.77,624610000,976.77
-1997-12-02,974.78,976.20,969.83,971.68,576120000,971.68
-1997-12-01,955.40,974.77,955.40,974.77,590300000,974.77
-1997-11-28,951.64,959.13,951.64,955.40,189070000,955.40
-1997-11-26,950.82,956.47,950.82,951.64,487750000,951.64
-1997-11-25,946.67,954.47,944.71,950.82,587890000,950.82
-1997-11-24,963.09,963.09,945.22,946.67,514920000,946.67
-1997-11-21,958.98,964.55,954.60,963.09,611000000,963.09
-1997-11-20,944.59,961.83,944.59,958.98,602610000,958.98
-1997-11-19,938.23,947.28,934.83,944.59,542720000,944.59
-1997-11-18,946.20,947.65,937.43,938.23,521380000,938.23
-1997-11-17,928.35,949.66,928.35,946.20,576540000,946.20
-1997-11-14,916.66,930.44,915.34,928.35,635760000,928.35
-1997-11-13,905.96,917.79,900.61,916.66,653960000,916.66
-1997-11-12,923.78,923.88,905.34,905.96,585340000,905.96
-1997-11-11,921.13,928.29,919.63,923.78,435660000,923.78
-1997-11-10,927.51,935.90,920.26,921.13,464140000,921.13
-1997-11-07,938.03,938.03,915.39,927.51,569980000,927.51
-1997-11-06,942.76,942.85,934.16,938.03,522890000,938.03
-1997-11-05,940.76,949.62,938.16,942.76,565680000,942.76
-1997-11-04,938.99,941.40,932.66,940.76,541590000,940.76
-1997-11-03,914.62,939.02,914.62,938.99,564740000,938.99
-1997-10-31,903.68,919.93,903.68,914.62,638070000,914.62
-1997-10-30,919.16,923.28,903.68,903.68,712230000,903.68
-1997-10-29,921.85,935.24,913.88,919.16,777660000,919.16
-1997-10-28,876.99,923.09,855.27,921.85,1202550000,921.85
-1997-10-27,941.64,941.64,876.73,876.99,693730000,876.99
-1997-10-24,950.69,960.04,937.55,941.64,677630000,941.64
-1997-10-23,968.49,968.49,944.16,950.69,673270000,950.69
-1997-10-22,972.28,972.61,965.66,968.49,613490000,968.49
-1997-10-21,955.61,972.56,955.61,972.28,582310000,972.28
-1997-10-20,944.16,955.72,941.43,955.61,483880000,955.61
-1997-10-17,955.23,955.23,931.58,944.16,624980000,944.16
-1997-10-16,965.72,973.38,950.77,955.25,597010000,955.25
-1997-10-15,970.28,970.28,962.75,965.72,505310000,965.72
-1997-10-14,968.10,972.86,961.87,970.28,510330000,970.28
-1997-10-13,966.98,973.46,966.95,968.10,354800000,968.10
-1997-10-10,970.62,970.62,963.42,966.98,500680000,966.98
-1997-10-09,973.84,974.72,963.34,970.62,551840000,970.62
-1997-10-08,983.12,983.12,968.65,973.84,573110000,973.84
-1997-10-07,972.69,983.12,971.95,983.12,551970000,983.12
-1997-10-06,965.03,974.16,965.03,972.69,495620000,972.69
-1997-10-03,960.46,975.47,955.13,965.03,623370000,965.03
-1997-10-02,955.41,960.46,952.94,960.46,474760000,960.46
-1997-10-01,947.28,956.71,947.28,955.41,598660000,955.41
-1997-09-30,953.34,955.17,947.28,947.28,587500000,947.28
-1997-09-29,945.22,953.96,941.94,953.34,477100000,953.34
-1997-09-26,937.91,946.44,937.91,945.22,505340000,945.22
-1997-09-25,944.48,947.00,937.38,937.91,524880000,937.91
-1997-09-24,951.93,959.78,944.07,944.48,639460000,944.48
-1997-09-23,955.43,955.78,948.07,951.93,522930000,951.93
-1997-09-22,950.51,960.59,950.51,955.43,490900000,955.43
-1997-09-19,947.29,952.35,943.90,950.51,631040000,950.51
-1997-09-18,943.00,958.19,943.00,947.29,566830000,947.29
-1997-09-17,945.64,950.29,941.99,943.00,590550000,943.00
-1997-09-16,919.77,947.66,919.77,945.64,636380000,945.64
-1997-09-15,923.91,928.90,919.41,919.77,468030000,919.77
-1997-09-12,912.59,925.05,906.70,923.91,544150000,923.91
-1997-09-11,919.03,919.03,902.56,912.59,575020000,912.59
-1997-09-10,933.62,933.62,918.76,919.03,517620000,919.03
-1997-09-09,931.20,938.90,927.28,933.62,502200000,933.62
-1997-09-08,929.05,936.50,929.05,931.20,466430000,931.20
-1997-09-05,930.87,940.37,924.05,929.05,536400000,929.05
-1997-09-04,927.86,933.36,925.59,930.87,559310000,930.87
-1997-09-03,927.58,935.90,926.87,927.86,549060000,927.86
-1997-09-02,899.47,927.58,899.47,927.58,491870000,927.58
-1997-08-29,903.67,907.28,896.82,899.47,413910000,899.47
-1997-08-28,913.70,915.90,898.65,903.67,486300000,903.67
-1997-08-27,913.02,916.23,903.83,913.70,492150000,913.70
-1997-08-26,920.16,922.47,911.72,913.02,449110000,913.02
-1997-08-25,923.55,930.93,917.29,920.16,388990000,920.16
-1997-08-22,925.05,925.05,905.42,923.54,460160000,923.54
-1997-08-21,939.35,939.47,921.35,925.05,499000000,925.05
-1997-08-20,926.01,939.35,924.58,939.35,521270000,939.35
-1997-08-19,912.49,926.01,912.49,926.01,545630000,926.01
-1997-08-18,900.81,912.57,893.34,912.49,514330000,912.49
-1997-08-15,924.77,924.77,900.81,900.81,537820000,900.81
-1997-08-14,922.02,930.07,916.92,924.77,530460000,924.77
-1997-08-13,926.53,935.77,916.54,922.02,587210000,922.02
-1997-08-12,937.00,942.99,925.66,926.53,499310000,926.53
-1997-08-11,933.54,938.50,925.39,937.00,480340000,937.00
-1997-08-08,951.19,951.19,925.74,933.54,563420000,933.54
-1997-08-07,960.32,964.17,950.87,951.19,576030000,951.19
-1997-08-06,952.37,962.43,949.45,960.32,565200000,960.32
-1997-08-05,950.30,954.21,948.92,952.37,525710000,952.37
-1997-08-04,947.14,953.18,943.60,950.30,456000000,950.30
-1997-08-01,954.29,955.35,939.04,947.14,513750000,947.14
-1997-07-31,952.29,957.73,948.89,954.31,547830000,954.31
-1997-07-30,942.29,953.98,941.98,952.29,568470000,952.29
-1997-07-29,936.45,942.96,932.56,942.29,544540000,942.29
-1997-07-28,938.79,942.97,935.19,936.45,466920000,936.45
-1997-07-25,940.30,945.65,936.09,938.79,521510000,938.79
-1997-07-24,936.56,941.51,926.91,940.30,571020000,940.30
-1997-07-23,933.98,941.80,933.98,936.56,616930000,936.56
-1997-07-22,912.94,934.38,912.94,933.98,579590000,933.98
-1997-07-21,915.30,915.38,907.12,912.94,459500000,912.94
-1997-07-18,931.61,931.61,912.90,915.30,589710000,915.30
-1997-07-17,936.59,936.96,927.90,931.61,629250000,931.61
-1997-07-16,925.76,939.32,925.76,936.59,647390000,936.59
-1997-07-15,918.38,926.15,914.52,925.76,598370000,925.76
-1997-07-14,916.68,921.78,912.02,918.38,485960000,918.38
-1997-07-11,913.78,919.74,913.11,916.68,500050000,916.68
-1997-07-10,907.54,916.54,904.31,913.78,551340000,913.78
-1997-07-09,918.75,922.03,902.48,907.54,589110000,907.54
-1997-07-08,912.20,918.76,911.56,918.75,526010000,918.75
-1997-07-07,916.92,923.26,909.69,912.20,518780000,912.20
-1997-07-03,904.03,917.82,904.03,916.92,374680000,916.92
-1997-07-02,891.03,904.05,891.03,904.03,526970000,904.03
-1997-07-01,885.14,893.88,884.54,891.03,544190000,891.03
-1997-06-30,887.30,892.62,879.82,885.14,561540000,885.14
-1997-06-27,883.68,894.70,883.68,887.30,472540000,887.30
-1997-06-26,888.99,893.21,879.32,883.68,499780000,883.68
-1997-06-25,896.34,902.09,882.24,888.99,603040000,888.99
-1997-06-24,878.62,896.75,878.62,896.34,542650000,896.34
-1997-06-23,898.70,898.70,878.43,878.62,492940000,878.62
-1997-06-20,897.99,901.77,897.77,898.70,653110000,898.70
-1997-06-19,889.06,900.09,888.99,897.99,536940000,897.99
-1997-06-18,894.42,894.42,887.03,889.06,491740000,889.06
-1997-06-17,893.90,897.60,886.19,894.42,543010000,894.42
-1997-06-16,893.27,895.17,891.21,893.90,414280000,893.90
-1997-06-13,883.48,894.69,883.48,893.27,575810000,893.27
-1997-06-12,869.57,884.34,869.01,883.46,592730000,883.46
-1997-06-11,865.27,870.66,865.15,869.57,513740000,869.57
-1997-06-10,862.91,870.05,862.18,865.27,526980000,865.27
-1997-06-09,858.01,865.14,858.01,862.91,465810000,862.91
-1997-06-06,843.43,859.24,843.36,858.01,488940000,858.01
-1997-06-05,840.11,848.89,840.11,843.43,452610000,843.43
-1997-06-04,845.48,845.55,838.82,840.11,466690000,840.11
-1997-06-03,846.36,850.56,841.51,845.48,527120000,845.48
-1997-06-02,848.28,851.34,844.61,846.36,435950000,846.36
-1997-05-30,844.08,851.87,831.87,848.28,537200000,848.28
-1997-05-29,847.21,848.96,842.61,844.08,462600000,844.08
-1997-05-28,849.71,850.95,843.21,847.21,487340000,847.21
-1997-05-27,847.03,851.53,840.96,849.71,436150000,849.71
-1997-05-23,835.66,848.49,835.66,847.03,417030000,847.03
-1997-05-22,839.35,841.91,833.86,835.66,426940000,835.66
-1997-05-21,841.66,846.87,835.22,839.35,540730000,839.35
-1997-05-20,833.27,841.96,826.41,841.66,450850000,841.66
-1997-05-19,829.75,835.92,828.87,833.27,345140000,833.27
-1997-05-16,841.88,841.88,829.15,829.75,486780000,829.75
-1997-05-15,836.04,842.45,833.34,841.88,458170000,841.88
-1997-05-14,833.13,841.29,833.13,836.04,504960000,836.04
-1997-05-13,837.66,838.49,829.12,833.13,489760000,833.13
-1997-05-12,824.78,838.56,824.78,837.66,459370000,837.66
-1997-05-09,820.26,827.69,815.78,824.78,455690000,824.78
-1997-05-08,815.62,829.09,811.84,820.26,534120000,820.26
-1997-05-07,827.76,827.76,814.70,815.62,500580000,815.62
-1997-05-06,830.24,832.29,824.70,827.76,603680000,827.76
-1997-05-05,812.97,830.29,811.80,830.29,549410000,830.29
-1997-05-02,798.53,812.99,798.53,812.97,499770000,812.97
-1997-05-01,801.34,802.95,793.21,798.53,460380000,798.53
-1997-04-30,794.05,804.13,791.21,801.34,556070000,801.34
-1997-04-29,772.96,794.44,772.96,794.05,547690000,794.05
-1997-04-28,765.37,773.89,763.30,772.96,404470000,772.96
-1997-04-25,771.18,771.18,764.63,765.37,414350000,765.37
-1997-04-24,773.64,779.89,769.72,771.18,493640000,771.18
-1997-04-23,774.61,778.19,771.90,773.64,489350000,773.64
-1997-04-22,760.37,774.64,759.90,774.61,507500000,774.61
-1997-04-21,766.34,767.39,756.38,760.37,397300000,760.37
-1997-04-18,761.77,767.93,761.77,766.34,468940000,766.34
-1997-04-17,763.53,768.55,760.49,761.77,503760000,761.77
-1997-04-16,754.72,763.53,751.99,763.53,498820000,763.53
-1997-04-15,743.73,754.72,743.73,754.72,507370000,754.72
-1997-04-14,737.65,743.73,733.54,743.73,406800000,743.73
-1997-04-11,758.34,758.34,737.64,737.65,444380000,737.65
-1997-04-10,760.60,763.73,757.65,758.34,421790000,758.34
-1997-04-09,766.12,769.53,759.15,760.60,451500000,760.60
-1997-04-08,762.13,766.25,758.36,766.12,450790000,766.12
-1997-04-07,757.90,764.82,757.90,762.13,453790000,762.13
-1997-04-04,750.32,757.90,744.04,757.90,544580000,757.90
-1997-04-03,750.11,751.04,744.40,750.32,498010000,750.32
-1997-04-02,759.64,759.65,747.59,750.11,478210000,750.11
-1997-04-01,757.12,761.49,751.26,759.64,515770000,759.64
-1997-03-31,773.88,773.88,756.13,757.12,555880000,757.12
-1997-03-27,790.50,792.58,767.32,773.88,476790000,773.88
-1997-03-26,789.07,794.89,786.77,790.50,506670000,790.50
-1997-03-25,790.89,798.11,788.39,789.07,487520000,789.07
-1997-03-24,784.10,791.01,780.79,790.89,451970000,790.89
-1997-03-21,782.65,786.44,782.65,784.10,638760000,784.10
-1997-03-20,785.77,786.29,778.04,782.65,497480000,782.65
-1997-03-19,789.66,791.59,780.03,785.77,535580000,785.77
-1997-03-18,795.71,797.18,785.47,789.66,467330000,789.66
-1997-03-17,793.17,796.28,782.98,795.71,495260000,795.71
-1997-03-14,789.56,796.88,789.56,793.17,491540000,793.17
-1997-03-13,804.26,804.26,789.44,789.56,507560000,789.56
-1997-03-12,811.34,811.34,801.07,804.26,490200000,804.26
-1997-03-11,813.65,814.90,810.77,811.34,493250000,811.34
-1997-03-10,804.97,813.66,803.66,813.65,468780000,813.65
-1997-03-07,798.56,808.19,798.56,804.97,508270000,804.97
-1997-03-06,801.99,804.11,797.50,798.56,540310000,798.56
-1997-03-05,790.95,801.99,790.95,801.99,532500000,801.99
-1997-03-04,795.31,798.93,789.98,790.95,537890000,790.95
-1997-03-03,790.82,795.31,785.66,795.31,437220000,795.31
-1997-02-28,795.07,795.70,788.50,790.82,508280000,790.82
-1997-02-27,805.68,805.68,795.06,795.07,464660000,795.07
-1997-02-26,812.10,812.70,798.13,805.68,573920000,805.68
-1997-02-25,810.28,812.85,807.65,812.03,527450000,812.03
-1997-02-24,801.77,810.64,798.42,810.28,462450000,810.28
-1997-02-21,802.80,804.94,799.99,801.77,478450000,801.77
-1997-02-20,812.49,812.49,800.35,802.80,492220000,802.80
-1997-02-19,816.29,817.68,811.20,812.49,519350000,812.49
-1997-02-18,808.48,816.29,806.34,816.29,474110000,816.29
-1997-02-14,811.82,812.20,808.15,808.48,491540000,808.48
-1997-02-13,802.77,812.93,802.77,811.82,593710000,811.82
-1997-02-12,789.59,802.77,789.59,802.77,563890000,802.77
-1997-02-11,785.43,789.60,780.95,789.59,483090000,789.59
-1997-02-10,789.56,793.46,784.69,785.43,471590000,785.43
-1997-02-07,780.15,789.72,778.19,789.56,540910000,789.56
-1997-02-06,778.28,780.35,774.45,780.15,519660000,780.15
-1997-02-05,789.26,792.71,773.43,778.28,580520000,778.28
-1997-02-04,786.73,789.28,783.68,789.26,506530000,789.26
-1997-02-03,786.16,787.14,783.12,786.73,463600000,786.73
-1997-01-31,784.17,791.86,784.17,786.16,578550000,786.16
-1997-01-30,772.50,784.17,772.50,784.17,524160000,784.17
-1997-01-29,765.02,772.70,765.02,772.50,498390000,772.50
-1997-01-28,765.02,776.32,761.75,765.02,541580000,765.02
-1997-01-27,770.52,771.43,764.18,765.02,445760000,765.02
-1997-01-24,777.56,778.21,768.17,770.52,542920000,770.52
-1997-01-23,786.23,794.67,776.64,777.56,685070000,777.56
-1997-01-22,782.72,786.23,779.56,786.23,589230000,786.23
-1997-01-21,776.70,783.72,772.00,782.72,571280000,782.72
-1997-01-20,776.17,780.08,774.19,776.70,440470000,776.70
-1997-01-17,769.75,776.37,769.72,776.17,534640000,776.17
-1997-01-16,767.20,772.05,765.25,769.75,537290000,769.75
-1997-01-15,768.86,770.95,763.72,767.20,524990000,767.20
-1997-01-14,759.51,772.04,759.51,768.86,531600000,768.86
-1997-01-13,759.50,762.85,756.69,759.51,445400000,759.51
-1997-01-10,754.85,759.65,746.92,759.50,545850000,759.50
-1997-01-09,748.41,757.68,748.41,754.85,555370000,754.85
-1997-01-08,753.23,755.72,747.71,748.41,557510000,748.41
-1997-01-07,747.65,753.26,742.18,753.23,538220000,753.23
-1997-01-06,748.03,753.31,743.82,747.65,531350000,747.65
-1997-01-03,737.01,748.24,737.01,748.03,452970000,748.03
-1997-01-02,740.74,742.81,729.55,737.01,463230000,737.01
-1996-12-31,753.85,753.95,740.74,740.74,399760000,740.74
-1996-12-30,756.79,759.20,752.73,753.85,339060000,753.85
-1996-12-27,755.82,758.75,754.82,756.79,253810000,756.79
-1996-12-26,751.03,757.07,751.02,755.82,254630000,755.82
-1996-12-24,746.92,751.03,746.92,751.03,165140000,751.03
-1996-12-23,748.87,750.40,743.28,746.92,343280000,746.92
-1996-12-20,745.76,755.41,745.76,748.87,654340000,748.87
-1996-12-19,731.54,746.06,731.54,745.76,526410000,745.76
-1996-12-18,726.04,732.76,726.04,731.54,500490000,731.54
-1996-12-17,720.98,727.67,716.69,726.04,519840000,726.04
-1996-12-16,728.64,732.68,719.40,720.98,447560000,720.98
-1996-12-13,729.33,731.40,721.97,728.64,458540000,728.64
-1996-12-12,740.73,744.86,729.30,729.30,492920000,729.30
-1996-12-11,747.54,747.54,732.75,740.73,494210000,740.73
-1996-12-10,749.76,753.43,747.02,747.54,446120000,747.54
-1996-12-09,739.60,749.76,739.60,749.76,381570000,749.76
-1996-12-06,744.38,744.38,726.89,739.60,500860000,739.60
-1996-12-05,745.10,747.65,742.61,744.38,483710000,744.38
-1996-12-04,748.28,748.40,738.46,745.10,498240000,745.10
-1996-12-03,756.56,761.75,747.58,748.28,516160000,748.28
-1996-12-02,757.02,757.03,751.49,756.56,412520000,756.56
-1996-11-29,755.00,758.27,755.00,757.02,14990000,757.02
-1996-11-27,755.96,757.30,753.18,755.00,377780000,755.00
-1996-11-26,757.03,762.12,752.83,755.96,527380000,755.96
-1996-11-25,748.73,757.05,747.99,757.03,475260000,757.03
-1996-11-22,742.75,748.73,742.75,748.73,525210000,748.73
-1996-11-21,743.95,745.20,741.08,742.75,464430000,742.75
-1996-11-20,742.16,746.99,740.40,743.95,497900000,743.95
-1996-11-19,737.02,742.18,736.87,742.16,461980000,742.16
-1996-11-18,737.62,739.24,734.39,737.02,388520000,737.02
-1996-11-15,735.88,741.92,735.15,737.62,529100000,737.62
-1996-11-14,731.13,735.99,729.20,735.88,480350000,735.88
-1996-11-13,729.56,732.11,728.03,731.13,429840000,731.13
-1996-11-12,731.87,733.04,728.20,729.56,471740000,729.56
-1996-11-11,730.82,732.60,729.94,731.87,353960000,731.87
-1996-11-08,727.65,730.82,725.22,730.82,402320000,730.82
-1996-11-07,724.59,729.49,722.23,727.65,502530000,727.65
-1996-11-06,714.14,724.60,712.83,724.59,509600000,724.59
-1996-11-05,706.73,714.56,706.73,714.14,486660000,714.14
-1996-11-04,703.77,707.02,702.84,706.73,398790000,706.73
-1996-11-01,705.27,708.60,701.30,703.77,465510000,703.77
-1996-10-31,700.90,706.61,700.35,705.27,482840000,705.27
-1996-10-30,701.50,703.44,700.05,700.90,437770000,700.90
-1996-10-29,697.26,703.25,696.22,701.50,443890000,701.50
-1996-10-28,700.92,705.40,697.25,697.26,383620000,697.26
-1996-10-25,702.29,704.11,700.53,700.92,367640000,700.92
-1996-10-24,707.27,708.25,702.11,702.29,418970000,702.29
-1996-10-23,706.57,707.31,700.98,707.27,442170000,707.27
-1996-10-22,709.85,709.85,704.55,706.57,410790000,706.57
-1996-10-21,710.82,714.10,707.71,709.85,414630000,709.85
-1996-10-18,706.99,711.04,706.11,710.82,473020000,710.82
-1996-10-17,705.00,708.52,704.76,706.99,478550000,706.99
-1996-10-16,702.57,704.42,699.15,704.41,441410000,704.41
-1996-10-15,703.54,708.07,699.07,702.57,458980000,702.57
-1996-10-14,700.66,705.16,700.66,703.54,322000000,703.54
-1996-10-11,694.61,700.67,694.61,700.66,396050000,700.66
-1996-10-10,696.74,696.82,693.34,694.61,394950000,694.61
-1996-10-09,700.64,702.36,694.42,696.74,408450000,696.74
-1996-10-08,703.34,705.76,699.88,700.64,435070000,700.64
-1996-10-07,701.46,704.17,701.39,703.34,380750000,703.34
-1996-10-04,692.78,701.74,692.78,701.46,463940000,701.46
-1996-10-03,694.01,694.81,691.78,692.78,386500000,692.78
-1996-10-02,689.08,694.82,689.08,694.01,440130000,694.01
-1996-10-01,687.31,689.54,684.44,689.08,421550000,689.08
-1996-09-30,686.19,690.11,686.03,687.33,388570000,687.33
-1996-09-27,685.86,687.11,683.73,686.19,414760000,686.19
-1996-09-26,685.83,690.15,683.77,685.86,500870000,685.86
-1996-09-25,685.61,688.26,684.92,685.83,451710000,685.83
-1996-09-24,686.48,690.88,683.54,685.61,460150000,685.61
-1996-09-23,687.03,687.03,681.01,686.48,297760000,686.48
-1996-09-20,683.00,687.07,683.00,687.03,519420000,687.03
-1996-09-19,681.47,684.07,679.06,683.00,398580000,683.00
-1996-09-18,682.94,683.77,679.75,681.47,396600000,681.47
-1996-09-17,683.98,685.80,679.96,682.94,449850000,682.94
-1996-09-16,680.54,686.48,680.53,683.98,430080000,683.98
-1996-09-13,671.15,681.39,671.15,680.54,488360000,680.54
-1996-09-12,667.28,673.07,667.28,671.15,398820000,671.15
-1996-09-11,663.81,667.73,661.79,667.28,376880000,667.28
-1996-09-10,663.76,665.57,661.55,663.81,372960000,663.81
-1996-09-09,655.68,663.77,655.68,663.76,311530000,663.76
-1996-09-06,649.44,658.21,649.44,655.68,348710000,655.68
-1996-09-05,655.61,655.61,648.89,649.44,361430000,649.44
-1996-09-04,654.72,655.82,652.93,655.61,351290000,655.61
-1996-09-03,651.99,655.13,643.97,654.72,345740000,654.72
-1996-08-30,657.40,657.71,650.52,651.99,258380000,651.99
-1996-08-29,664.81,664.81,655.35,657.40,321120000,657.40
-1996-08-28,666.40,667.41,664.39,664.81,296440000,664.81
-1996-08-27,663.88,666.40,663.50,666.40,310520000,666.40
-1996-08-26,667.03,667.03,662.36,663.88,281430000,663.88
-1996-08-23,670.68,670.68,664.93,667.03,308010000,667.03
-1996-08-22,665.07,670.68,664.88,670.68,354950000,670.68
-1996-08-21,665.69,665.69,662.16,665.07,348820000,665.07
-1996-08-20,666.58,666.99,665.15,665.69,334960000,665.69
-1996-08-19,665.21,667.12,665.00,666.58,294080000,666.58
-1996-08-16,662.28,666.34,662.26,665.21,337650000,665.21
-1996-08-15,662.05,664.18,660.64,662.28,323950000,662.28
-1996-08-14,660.20,662.42,658.47,662.05,343460000,662.05
-1996-08-13,665.77,665.77,659.13,660.20,362470000,660.20
-1996-08-12,662.10,665.77,658.95,665.77,312170000,665.77
-1996-08-09,662.59,665.37,660.31,662.10,327280000,662.10
-1996-08-08,664.16,664.17,661.28,662.59,334570000,662.59
-1996-08-07,662.38,664.61,660.00,664.16,394340000,664.16
-1996-08-06,660.23,662.75,656.83,662.38,347290000,662.38
-1996-08-05,662.49,663.64,659.03,660.23,307240000,660.23
-1996-08-02,650.02,662.49,650.02,662.49,442080000,662.49
-1996-08-01,639.95,650.66,639.49,650.02,439110000,650.02
-1996-07-31,635.26,640.54,633.74,639.95,403560000,639.95
-1996-07-30,630.91,635.26,629.22,635.26,341090000,635.26
-1996-07-29,635.90,635.90,630.90,630.91,281560000,630.91
-1996-07-26,631.17,636.23,631.17,635.90,349900000,635.90
-1996-07-25,626.65,633.57,626.65,631.17,405390000,631.17
-1996-07-24,626.19,629.10,616.43,626.65,463030000,626.65
-1996-07-23,633.79,637.70,625.65,626.87,421900000,626.87
-1996-07-22,638.73,638.73,630.38,633.77,327300000,633.77
-1996-07-19,643.51,643.51,635.50,638.73,408070000,638.73
-1996-07-18,634.07,644.44,633.29,643.56,474460000,643.56
-1996-07-17,628.37,636.61,628.37,634.07,513830000,634.07
-1996-07-16,629.80,631.99,605.88,628.37,682980000,628.37
-1996-07-15,646.19,646.19,629.69,629.80,419020000,629.80
-1996-07-12,645.67,647.64,640.21,646.19,396740000,646.19
-1996-07-11,656.06,656.06,639.52,645.67,520470000,645.67
-1996-07-10,654.75,656.27,648.39,656.06,421350000,656.06
-1996-07-09,652.54,656.60,652.54,654.75,400170000,654.75
-1996-07-08,657.44,657.65,651.13,652.54,367560000,652.54
-1996-07-05,672.40,672.40,657.41,657.44,181470000,657.44
-1996-07-03,673.61,673.64,670.21,672.40,336260000,672.40
-1996-07-02,675.88,675.88,672.55,673.61,388000000,673.61
-1996-07-01,670.63,675.88,670.63,675.88,345750000,675.88
-1996-06-28,668.55,672.68,668.55,670.63,470460000,670.63
-1996-06-27,664.39,668.90,661.56,668.55,405580000,668.55
-1996-06-26,668.48,668.49,663.67,664.39,386520000,664.39
-1996-06-25,668.85,670.65,667.29,668.48,391900000,668.48
-1996-06-24,666.84,671.07,666.84,668.85,333840000,668.85
-1996-06-21,662.10,666.84,662.10,666.84,520340000,666.84
-1996-06-20,661.96,664.96,658.75,662.10,441060000,662.10
-1996-06-19,662.06,665.62,661.21,661.96,383610000,661.96
-1996-06-18,665.16,666.36,661.34,662.06,373290000,662.06
-1996-06-17,665.85,668.27,664.09,665.16,298410000,665.16
-1996-06-14,667.92,668.40,664.35,665.85,390630000,665.85
-1996-06-13,669.04,670.54,665.49,667.92,397620000,667.92
-1996-06-12,670.97,673.67,668.77,669.04,397190000,669.04
-1996-06-11,672.16,676.72,669.94,670.97,405390000,670.97
-1996-06-10,673.31,673.61,670.15,672.16,337480000,672.16
-1996-06-07,673.03,673.31,662.48,673.31,445710000,673.31
-1996-06-06,678.44,680.32,673.02,673.03,466940000,673.03
-1996-06-05,672.56,678.45,672.09,678.44,380360000,678.44
-1996-06-04,667.68,672.60,667.68,672.56,386040000,672.56
-1996-06-03,669.12,669.12,665.19,667.68,318470000,667.68
-1996-05-31,671.70,673.46,667.00,669.12,351750000,669.12
-1996-05-30,667.93,673.51,664.56,671.70,381960000,671.70
-1996-05-29,672.23,673.73,666.09,667.93,346730000,667.93
-1996-05-28,678.51,679.98,671.52,672.23,341480000,672.23
-1996-05-24,676.00,679.72,676.00,678.51,329150000,678.51
-1996-05-23,678.42,681.10,673.45,676.00,431850000,676.00
-1996-05-22,672.76,678.42,671.23,678.42,423670000,678.42
-1996-05-21,673.15,675.56,672.26,672.76,409610000,672.76
-1996-05-20,668.91,673.66,667.64,673.15,385000000,673.15
-1996-05-17,664.85,669.84,664.85,668.91,429140000,668.91
-1996-05-16,665.42,667.11,662.79,664.85,392070000,664.85
-1996-05-15,665.60,669.82,664.46,665.42,447790000,665.42
-1996-05-14,661.51,666.96,661.51,665.60,460440000,665.60
-1996-05-13,652.09,662.16,652.09,661.51,394180000,661.51
-1996-05-10,645.44,653.00,645.44,652.09,428370000,652.09
-1996-05-09,644.77,647.95,643.18,645.44,404310000,645.44
-1996-05-08,638.26,644.79,630.07,644.77,495460000,644.77
-1996-05-07,640.81,641.40,636.96,638.26,410770000,638.26
-1996-05-06,641.63,644.64,636.19,640.81,375820000,640.81
-1996-05-03,643.38,648.45,640.23,641.63,434010000,641.63
-1996-05-02,654.58,654.58,642.13,643.38,442960000,643.38
-1996-05-01,654.17,656.44,652.26,654.58,404620000,654.58
-1996-04-30,654.16,654.59,651.05,654.17,393390000,654.17
-1996-04-29,653.46,654.71,651.60,654.16,344030000,654.16
-1996-04-26,652.87,656.43,651.96,653.46,402530000,653.46
-1996-04-25,650.17,654.18,647.06,652.87,462120000,652.87
-1996-04-24,651.58,653.37,648.25,650.17,494220000,650.17
-1996-04-23,647.89,651.59,647.70,651.58,452690000,651.58
-1996-04-22,645.07,650.91,645.07,647.89,395370000,647.89
-1996-04-19,643.61,647.32,643.61,645.07,435690000,645.07
-1996-04-18,641.61,644.66,640.76,643.61,415150000,643.61
-1996-04-17,645.00,645.00,638.71,641.61,465200000,641.61
-1996-04-16,642.49,645.57,642.15,645.00,453310000,645.00
-1996-04-15,636.71,642.49,636.71,642.49,346370000,642.49
-1996-04-12,631.18,637.14,631.18,636.71,413270000,636.71
-1996-04-11,633.50,635.26,624.14,631.18,519710000,631.18
-1996-04-10,642.19,642.78,631.76,633.50,475150000,633.50
-1996-04-09,644.24,646.33,640.84,642.19,426790000,642.19
-1996-04-08,655.86,655.86,638.04,644.24,411810000,644.24
-1996-04-04,655.88,656.68,654.89,655.86,383400000,655.86
-1996-04-03,655.26,655.89,651.81,655.88,386620000,655.88
-1996-04-02,653.73,655.27,652.81,655.26,406640000,655.26
-1996-04-01,645.50,653.87,645.50,653.73,392120000,653.73
-1996-03-29,648.94,650.96,644.89,645.50,413510000,645.50
-1996-03-28,648.91,649.58,646.36,648.94,370750000,648.94
-1996-03-27,652.97,653.94,647.60,648.91,406280000,648.91
-1996-03-26,650.04,654.31,648.15,652.97,400090000,652.97
-1996-03-25,650.62,655.50,648.82,650.04,336700000,650.04
-1996-03-22,649.19,652.08,649.19,650.62,329390000,650.62
-1996-03-21,649.98,651.54,648.10,649.19,367180000,649.19
-1996-03-20,651.69,653.13,645.57,649.98,409780000,649.98
-1996-03-19,652.65,656.18,649.80,651.69,438300000,651.69
-1996-03-18,641.43,652.65,641.43,652.65,437100000,652.65
-1996-03-15,640.87,642.87,638.35,641.43,529970000,641.43
-1996-03-14,638.55,644.17,638.55,640.87,492630000,640.87
-1996-03-13,637.09,640.52,635.19,638.55,413030000,638.55
-1996-03-12,640.02,640.02,628.82,637.09,454980000,637.09
-1996-03-11,633.50,640.41,629.95,640.02,449500000,640.02
-1996-03-08,653.65,653.65,627.63,633.50,546550000,633.50
-1996-03-07,652.00,653.65,649.54,653.65,425790000,653.65
-1996-03-06,655.79,656.97,651.61,652.00,428220000,652.00
-1996-03-05,650.81,655.80,648.77,655.79,445700000,655.79
-1996-03-04,644.37,653.54,644.37,650.81,417270000,650.81
-1996-03-01,640.43,644.38,635.00,644.37,471480000,644.37
-1996-02-29,644.75,646.95,639.01,640.43,453170000,640.43
-1996-02-28,647.24,654.39,643.99,644.75,447790000,644.75
-1996-02-27,650.46,650.62,643.87,647.24,431340000,647.24
-1996-02-26,659.08,659.08,650.16,650.46,399330000,650.46
-1996-02-23,658.86,663.00,652.25,659.08,443130000,659.08
-1996-02-22,648.10,659.75,648.10,658.86,485470000,658.86
-1996-02-21,640.65,648.11,640.65,648.10,431220000,648.10
-1996-02-20,647.98,647.98,638.79,640.65,395910000,640.65
-1996-02-16,651.32,651.42,646.99,647.98,445570000,647.98
-1996-02-15,655.58,656.84,651.15,651.32,415320000,651.32
-1996-02-14,660.51,661.53,654.36,655.58,421790000,655.58
-1996-02-13,661.45,664.23,657.92,660.51,441540000,660.51
-1996-02-12,656.37,662.95,656.34,661.45,397890000,661.45
-1996-02-09,656.07,661.08,653.64,656.37,477640000,656.37
-1996-02-08,649.93,656.54,647.93,656.07,474970000,656.07
-1996-02-07,646.33,649.93,645.59,649.93,462730000,649.93
-1996-02-06,641.43,646.67,639.68,646.33,465940000,646.33
-1996-02-05,635.84,641.43,633.71,641.43,377760000,641.43
-1996-02-02,638.46,639.26,634.29,635.84,420020000,635.84
-1996-02-01,636.02,638.46,634.54,638.46,461430000,638.46
-1996-01-31,630.15,636.18,629.48,636.02,472210000,636.02
-1996-01-30,624.22,630.29,624.22,630.15,464350000,630.15
-1996-01-29,621.62,624.22,621.42,624.22,363330000,624.22
-1996-01-26,617.03,621.70,615.26,621.62,385700000,621.62
-1996-01-25,619.96,620.15,616.62,617.03,453270000,617.03
-1996-01-24,612.79,619.96,612.79,619.96,476380000,619.96
-1996-01-23,613.40,613.40,610.65,612.79,416910000,612.79
-1996-01-22,611.83,613.45,610.95,613.40,398040000,613.40
-1996-01-19,608.24,612.92,606.76,611.83,497720000,611.83
-1996-01-18,606.37,608.27,604.12,608.24,450410000,608.24
-1996-01-17,608.44,609.93,604.70,606.37,458720000,606.37
-1996-01-16,599.82,608.44,599.05,608.44,425220000,608.44
-1996-01-15,601.81,603.43,598.47,599.82,306180000,599.82
-1996-01-12,602.69,604.80,597.46,601.81,383400000,601.81
-1996-01-11,598.48,602.71,597.54,602.69,408800000,602.69
-1996-01-10,609.45,609.45,597.29,598.48,496830000,598.48
-1996-01-09,618.46,619.15,608.21,609.45,417400000,609.45
-1996-01-08,616.71,618.46,616.49,618.46,130360000,618.46
-1996-01-05,617.70,617.70,612.02,616.71,437110000,616.71
-1996-01-04,621.32,624.49,613.96,617.70,512580000,617.70
-1996-01-03,620.73,623.25,619.56,621.32,468950000,621.32
-1996-01-02,615.93,620.74,613.17,620.73,364180000,620.73
-1995-12-29,614.12,615.93,612.36,615.93,321250000,615.93
-1995-12-28,614.53,615.50,612.40,614.12,288660000,614.12
-1995-12-27,614.30,615.73,613.75,614.53,252300000,614.53
-1995-12-26,611.96,614.50,611.96,614.30,217280000,614.30
-1995-12-22,610.49,613.50,610.45,611.95,289600000,611.95
-1995-12-21,605.94,610.52,605.94,610.49,415810000,610.49
-1995-12-20,611.93,614.27,605.93,605.94,437680000,605.94
-1995-12-19,606.81,611.94,605.05,611.93,478280000,611.93
-1995-12-18,616.34,616.34,606.13,606.81,426270000,606.81
-1995-12-15,616.92,617.72,614.46,616.34,636800000,616.34
-1995-12-14,621.69,622.88,616.13,616.92,465300000,616.92
-1995-12-13,618.78,622.02,618.27,621.69,415290000,621.69
-1995-12-12,619.52,619.55,617.68,618.78,349860000,618.78
-1995-12-11,617.48,620.90,617.14,619.52,342070000,619.52
-1995-12-08,616.17,617.82,614.32,617.48,327900000,617.48
-1995-12-07,620.18,620.19,615.21,616.17,379260000,616.17
-1995-12-06,617.68,621.11,616.69,620.18,417780000,620.18
-1995-12-05,613.68,618.48,613.14,617.68,437360000,617.68
-1995-12-04,606.98,613.83,606.84,613.68,405480000,613.68
-1995-12-01,605.37,608.11,605.37,606.98,393310000,606.98
-1995-11-30,607.64,608.69,605.37,605.37,440050000,605.37
-1995-11-29,606.45,607.66,605.47,607.64,398280000,607.64
-1995-11-28,601.32,606.45,599.02,606.45,408860000,606.45
-1995-11-27,599.97,603.35,599.97,601.32,359130000,601.32
-1995-11-24,598.40,600.24,598.40,599.97,125870000,599.97
-1995-11-22,600.24,600.71,598.40,598.40,404980000,598.40
-1995-11-21,596.85,600.28,595.42,600.24,408320000,600.24
-1995-11-20,600.07,600.40,596.17,596.85,333150000,596.85
-1995-11-17,597.34,600.14,597.30,600.07,437200000,600.07
-1995-11-16,593.96,597.91,593.52,597.34,423280000,597.34
-1995-11-15,589.29,593.97,588.36,593.96,376100000,593.96
-1995-11-14,592.30,592.30,588.98,589.29,354420000,589.29
-1995-11-13,592.72,593.72,590.58,592.30,295840000,592.30
-1995-11-10,593.26,593.26,590.39,592.72,298690000,592.72
-1995-11-09,591.71,593.90,590.89,593.26,380760000,593.26
-1995-11-08,586.32,591.71,586.32,591.71,359780000,591.71
-1995-11-07,588.46,588.46,584.24,586.32,364680000,586.32
-1995-11-06,590.57,590.64,588.31,588.46,309100000,588.46
-1995-11-03,589.72,590.57,588.65,590.57,348500000,590.57
-1995-11-02,584.22,589.72,584.22,589.72,397070000,589.72
-1995-11-01,581.50,584.24,581.04,584.22,378090000,584.22
-1995-10-31,583.25,586.71,581.50,581.50,377390000,581.50
-1995-10-30,579.70,583.79,579.70,583.25,319160000,583.25
-1995-10-27,576.72,579.71,573.21,579.70,379230000,579.70
-1995-10-26,582.47,582.63,572.53,576.72,464270000,576.72
-1995-10-25,586.54,587.19,581.41,582.47,433620000,582.47
-1995-10-24,585.06,587.31,584.75,586.54,415540000,586.54
-1995-10-23,587.46,587.46,583.73,585.06,330750000,585.06
-1995-10-20,590.65,590.66,586.78,587.46,389360000,587.46
-1995-10-19,587.44,590.66,586.34,590.65,406620000,590.65
-1995-10-18,586.78,589.77,586.27,587.44,411270000,587.44
-1995-10-17,583.03,586.78,581.90,586.78,356380000,586.78
-1995-10-16,584.50,584.86,582.63,583.03,300750000,583.03
-1995-10-13,583.10,587.39,583.10,584.50,374680000,584.50
-1995-10-12,579.46,583.12,579.46,583.10,344060000,583.10
-1995-10-11,577.52,579.52,577.08,579.46,340740000,579.46
-1995-10-10,578.37,578.37,571.55,577.52,412710000,577.52
-1995-10-09,582.49,582.49,576.35,578.37,275320000,578.37
-1995-10-06,582.63,584.54,582.10,582.49,313680000,582.49
-1995-10-05,581.47,582.63,579.58,582.63,367480000,582.63
-1995-10-04,582.34,582.34,579.91,581.47,339380000,581.47
-1995-10-03,581.72,582.34,578.48,582.34,385940000,582.34
-1995-10-02,584.41,585.05,580.54,581.72,304990000,581.72
-1995-09-29,585.87,587.61,584.00,584.41,335250000,584.41
-1995-09-28,581.04,585.88,580.69,585.87,367720000,585.87
-1995-09-27,581.41,581.42,574.68,581.04,411300000,581.04
-1995-09-26,581.81,584.66,580.65,581.41,363630000,581.41
-1995-09-25,581.73,582.14,579.50,581.81,273120000,581.81
-1995-09-22,583.00,583.00,578.25,581.73,370790000,581.73
-1995-09-21,586.77,586.79,580.91,583.00,367100000,583.00
-1995-09-20,584.20,586.77,584.18,586.77,400050000,586.77
-1995-09-19,582.78,584.24,580.75,584.20,371170000,584.20
-1995-09-18,583.35,583.37,579.36,582.77,326090000,582.77
-1995-09-15,583.61,585.07,581.79,583.35,459370000,583.35
-1995-09-14,578.77,583.99,578.77,583.61,382880000,583.61
-1995-09-13,576.51,579.72,575.47,578.77,384380000,578.77
-1995-09-12,573.91,576.51,573.11,576.51,344540000,576.51
-1995-09-11,572.68,575.15,572.68,573.91,296840000,573.91
-1995-09-08,570.29,572.68,569.27,572.68,317940000,572.68
-1995-09-07,570.17,571.11,569.23,570.29,321720000,570.29
-1995-09-06,569.17,570.53,569.00,570.17,369540000,570.17
-1995-09-05,563.86,569.20,563.84,569.17,332670000,569.17
-1995-09-01,561.88,564.62,561.01,563.84,256730000,563.84
-1995-08-31,561.09,562.36,560.49,561.88,300920000,561.88
-1995-08-30,560.00,561.52,559.49,560.92,329840000,560.92
-1995-08-29,559.05,560.01,555.71,560.00,311290000,560.00
-1995-08-28,560.10,562.22,557.99,559.05,267860000,559.05
-1995-08-25,557.46,561.31,557.46,560.10,255990000,560.10
-1995-08-24,557.14,558.63,555.20,557.46,299200000,557.46
-1995-08-23,559.52,560.00,557.08,557.14,291890000,557.14
-1995-08-22,558.11,559.52,555.87,559.52,290890000,559.52
-1995-08-21,559.21,563.34,557.89,558.11,303200000,558.11
-1995-08-18,559.04,561.24,558.34,559.21,320490000,559.21
-1995-08-17,559.97,559.97,557.42,559.04,354460000,559.04
-1995-08-16,558.57,559.98,557.37,559.97,390170000,559.97
-1995-08-15,559.74,559.98,555.22,558.57,330070000,558.57
-1995-08-14,555.11,559.74,554.76,559.74,264920000,559.74
-1995-08-11,557.45,558.50,553.04,555.11,267850000,555.11
-1995-08-10,559.71,560.63,556.05,557.45,306660000,557.45
-1995-08-09,560.39,561.59,559.29,559.71,303390000,559.71
-1995-08-08,560.03,561.53,558.32,560.39,306090000,560.39
-1995-08-07,558.94,561.24,558.94,560.03,277050000,560.03
-1995-08-04,558.75,559.57,557.91,558.94,314740000,558.94
-1995-08-03,558.80,558.80,554.10,558.75,353110000,558.75
-1995-08-02,559.64,565.62,557.87,558.80,374330000,558.80
-1995-08-01,562.06,562.11,556.67,559.64,332210000,559.64
-1995-07-31,562.93,563.49,560.06,562.06,291950000,562.06
-1995-07-28,565.22,565.40,562.04,562.93,311590000,562.93
-1995-07-27,561.61,565.33,561.61,565.22,356570000,565.22
-1995-07-26,561.10,563.78,560.85,561.61,393470000,561.61
-1995-07-25,556.63,561.75,556.34,561.10,373200000,561.10
-1995-07-24,553.62,557.21,553.62,556.63,315300000,556.63
-1995-07-21,553.34,554.73,550.91,553.62,431830000,553.62
-1995-07-20,550.98,554.43,549.10,553.54,383380000,553.54
-1995-07-19,556.58,558.46,542.51,550.98,489850000,550.98
-1995-07-18,562.55,562.72,556.86,558.46,372230000,558.46
-1995-07-17,560.34,562.94,559.45,562.72,322540000,562.72
-1995-07-14,561.00,561.00,556.41,559.89,312930000,559.89
-1995-07-13,560.89,562.00,559.07,561.00,387500000,561.00
-1995-07-12,555.27,561.56,554.27,560.89,416360000,560.89
-1995-07-11,556.78,557.19,553.80,554.78,376770000,554.78
-1995-07-10,556.37,558.48,555.77,557.19,409700000,557.19
-1995-07-07,553.90,556.57,553.05,556.37,466540000,556.37
-1995-07-06,547.26,553.99,546.59,553.99,420500000,553.99
-1995-07-05,547.09,549.98,546.28,547.26,357850000,547.26
-1995-07-03,544.75,547.10,544.43,547.09,117900000,547.09
-1995-06-30,543.87,546.82,543.51,544.75,311650000,544.75
-1995-06-29,544.73,546.25,540.79,543.87,313080000,543.87
-1995-06-28,542.43,546.33,540.72,544.73,368060000,544.73
-1995-06-27,544.11,547.07,542.19,542.43,346950000,542.43
-1995-06-26,549.71,549.79,544.06,544.13,296720000,544.13
-1995-06-23,551.07,551.07,548.23,549.71,321660000,549.71
-1995-06-22,543.98,551.07,543.98,551.07,421000000,551.07
-1995-06-21,544.98,545.93,543.90,543.98,398210000,543.98
-1995-06-20,545.22,545.44,543.43,544.98,382370000,544.98
-1995-06-19,539.83,545.22,539.83,545.22,322990000,545.22
-1995-06-16,537.51,539.98,537.12,539.83,442740000,539.83
-1995-06-15,536.48,539.07,535.56,537.12,334700000,537.12
-1995-06-14,536.05,536.48,533.83,536.47,330770000,536.47
-1995-06-13,530.88,536.23,530.88,536.05,339660000,536.05
-1995-06-12,527.94,532.54,527.94,530.88,289920000,530.88
-1995-06-09,532.35,532.35,526.00,527.94,327570000,527.94
-1995-06-08,533.13,533.56,531.65,532.35,289880000,532.35
-1995-06-07,535.55,535.55,531.66,533.13,327790000,533.13
-1995-06-06,535.60,537.09,535.14,535.55,340490000,535.55
-1995-06-05,532.51,537.73,532.47,535.60,337520000,535.60
-1995-06-02,533.49,536.91,529.55,532.51,366000000,532.51
-1995-06-01,533.40,534.21,530.05,533.49,345920000,533.49
-1995-05-31,523.70,533.41,522.17,533.40,358180000,533.40
-1995-05-30,523.65,525.58,521.38,523.58,283020000,523.58
-1995-05-26,528.59,528.59,522.51,523.65,291220000,523.65
-1995-05-25,528.37,529.04,524.89,528.59,341820000,528.59
-1995-05-24,528.59,531.91,525.57,528.61,391770000,528.61
-1995-05-23,523.65,528.59,523.65,528.59,362690000,528.59
-1995-05-22,519.19,524.34,519.19,523.65,285600000,523.65
-1995-05-19,519.58,519.58,517.07,519.19,354010000,519.19
-1995-05-18,526.88,526.88,519.58,519.58,351900000,519.58
-1995-05-17,528.19,528.42,525.38,527.07,347930000,527.07
-1995-05-16,527.74,529.08,526.45,528.19,366180000,528.19
-1995-05-15,525.55,527.74,525.00,527.74,316240000,527.74
-1995-05-12,524.37,527.05,523.30,525.55,361000000,525.55
-1995-05-11,524.33,524.89,522.70,524.37,339900000,524.37
-1995-05-10,523.74,524.40,521.53,524.36,381990000,524.36
-1995-05-09,523.96,525.99,521.79,523.56,361300000,523.56
-1995-05-08,520.09,525.15,519.14,523.96,291810000,523.96
-1995-05-05,520.75,522.35,518.28,520.12,342380000,520.12
-1995-05-04,520.48,525.40,519.44,520.54,434990000,520.54
-1995-05-03,514.93,520.54,514.86,520.48,392370000,520.48
-1995-05-02,514.23,515.18,513.03,514.86,302560000,514.86
-1995-05-01,514.76,515.60,513.42,514.26,296830000,514.26
-1995-04-28,513.64,515.29,510.90,514.71,320440000,514.71
-1995-04-27,512.70,513.62,511.63,513.55,350850000,513.55
-1995-04-26,511.99,513.04,510.47,512.66,350810000,512.66
-1995-04-25,512.80,513.54,511.32,512.10,351790000,512.10
-1995-04-24,508.49,513.02,507.44,512.89,326280000,512.89
-1995-04-21,505.63,508.49,505.63,508.49,403250000,508.49
-1995-04-20,504.92,506.50,503.44,505.29,368450000,505.29
-1995-04-19,505.37,505.89,501.19,504.92,378050000,504.92
-1995-04-18,506.43,507.65,504.12,505.37,344680000,505.37
-1995-04-17,509.23,512.03,505.43,506.13,333930000,506.13
-1995-04-13,507.19,509.83,507.17,509.23,301580000,509.23
-1995-04-12,505.59,507.17,505.07,507.17,327880000,507.17
-1995-04-11,507.24,508.85,505.29,505.53,310660000,505.53
-1995-04-10,506.30,507.01,504.61,507.01,260980000,507.01
-1995-04-07,506.13,507.19,503.59,506.42,314760000,506.42
-1995-04-06,505.63,507.10,505.00,506.08,320460000,506.08
-1995-04-05,505.27,505.57,503.17,505.57,315170000,505.57
-1995-04-04,501.85,505.26,501.85,505.24,330580000,505.24
-1995-04-03,500.70,501.91,500.20,501.85,296430000,501.85
-1995-03-31,501.94,502.22,495.70,500.71,353060000,500.71
-1995-03-30,503.17,504.66,501.00,502.22,362940000,502.22
-1995-03-29,503.92,508.15,500.96,503.12,385940000,503.12
-1995-03-28,503.19,503.91,501.83,503.90,320360000,503.90
-1995-03-27,500.97,503.20,500.93,503.20,296270000,503.20
-1995-03-24,496.07,500.97,496.07,500.97,358370000,500.97
-1995-03-23,495.67,496.77,494.19,495.95,318530000,495.95
-1995-03-22,495.07,495.67,493.67,495.67,313120000,495.67
-1995-03-21,496.15,499.19,494.04,495.07,367110000,495.07
-1995-03-20,495.52,496.61,495.27,496.14,301740000,496.14
-1995-03-17,495.43,496.67,494.95,495.52,417380000,495.52
-1995-03-16,491.87,495.74,491.78,495.41,336670000,495.41
-1995-03-15,492.89,492.89,490.83,491.88,309540000,491.88
-1995-03-14,490.05,493.69,490.05,492.89,346160000,492.89
-1995-03-13,489.57,491.28,489.35,490.05,275280000,490.05
-1995-03-10,483.16,490.37,483.16,489.57,382940000,489.57
-1995-03-09,483.14,483.74,482.05,483.16,319320000,483.16
-1995-03-08,482.12,484.08,481.57,483.14,349780000,483.14
-1995-03-07,485.63,485.63,479.70,482.12,355550000,482.12
-1995-03-06,485.42,485.70,481.52,485.63,298870000,485.63
-1995-03-03,485.13,485.42,483.07,485.42,330840000,485.42
-1995-03-02,485.65,485.71,483.19,485.13,330030000,485.13
-1995-03-01,487.39,487.83,484.92,485.65,362600000,485.65
-1995-02-28,483.81,487.44,483.77,487.39,317220000,487.39
-1995-02-27,488.26,488.26,483.18,483.81,285790000,483.81
-1995-02-24,486.82,488.28,485.70,488.11,302930000,488.11
-1995-02-23,485.07,489.19,485.07,486.91,394280000,486.91
-1995-02-22,482.74,486.15,482.45,485.07,339460000,485.07
-1995-02-21,481.95,483.26,481.94,482.72,308090000,482.72
-1995-02-17,485.15,485.22,481.97,481.97,347970000,481.97
-1995-02-16,484.56,485.22,483.05,485.22,360990000,485.22
-1995-02-15,482.55,485.54,481.77,484.54,378040000,484.54
-1995-02-14,481.65,482.94,480.89,482.55,300720000,482.55
-1995-02-13,481.46,482.86,481.07,481.65,256270000,481.65
-1995-02-10,480.19,481.96,479.53,481.46,295600000,481.46
-1995-02-09,481.19,482.00,479.91,480.19,325570000,480.19
-1995-02-08,480.81,482.60,480.40,481.19,318430000,481.19
-1995-02-07,481.14,481.32,479.69,480.81,314660000,480.81
-1995-02-06,478.64,481.95,478.36,481.14,325660000,481.14
-1995-02-03,472.78,479.91,472.78,478.65,441000000,478.65
-1995-02-02,470.40,472.79,469.95,472.79,322110000,472.79
-1995-02-01,470.42,472.75,469.29,470.40,395310000,470.40
-1995-01-31,468.51,471.03,468.18,470.42,411590000,470.42
-1995-01-30,470.39,470.52,467.49,468.51,318550000,468.51
-1995-01-27,468.32,471.36,468.32,470.39,339510000,470.39
-1995-01-26,467.44,468.62,466.90,468.32,304730000,468.32
-1995-01-25,465.86,469.51,464.40,467.44,342610000,467.44
-1995-01-24,465.81,466.88,465.47,465.86,315430000,465.86
-1995-01-23,464.78,466.23,461.14,465.82,325830000,465.82
-1995-01-20,466.95,466.99,463.99,464.78,378190000,464.78
-1995-01-19,469.72,469.72,466.40,466.95,297220000,466.95
-1995-01-18,470.05,470.43,468.03,469.71,344660000,469.71
-1995-01-17,469.38,470.15,468.19,470.05,331520000,470.05
-1995-01-16,465.97,470.39,465.97,469.38,315810000,469.38
-1995-01-13,461.64,466.43,461.64,465.97,336740000,465.97
-1995-01-12,461.64,461.93,460.63,461.64,313040000,461.64
-1995-01-11,461.68,463.61,458.65,461.66,346310000,461.66
-1995-01-10,460.90,464.59,460.90,461.68,352450000,461.68
-1995-01-09,460.67,461.77,459.74,460.83,278790000,460.83
-1995-01-06,460.38,462.49,459.47,460.68,308070000,460.68
-1995-01-05,460.73,461.30,459.75,460.34,309050000,460.34
-1995-01-04,459.13,460.72,457.56,460.71,319510000,460.71
-1995-01-03,459.21,459.27,457.20,459.11,262450000,459.11
-1994-12-30,461.17,462.12,459.24,459.27,256260000,459.27
-1994-12-29,460.92,461.81,460.36,461.17,250650000,461.17
-1994-12-28,462.47,462.49,459.00,460.86,246260000,460.86
-1994-12-27,459.85,462.73,459.85,462.47,211180000,462.47
-1994-12-23,459.70,461.32,459.39,459.83,196540000,459.83
-1994-12-22,459.62,461.21,459.33,459.68,340330000,459.68
-1994-12-21,457.24,461.70,457.17,459.61,379130000,459.61
-1994-12-20,458.08,458.45,456.37,457.10,326530000,457.10
-1994-12-19,458.78,458.78,456.64,457.91,271850000,457.91
-1994-12-16,455.35,458.80,455.35,458.80,481860000,458.80
-1994-12-15,454.97,456.84,454.50,455.34,332790000,455.34
-1994-12-14,450.05,456.16,450.05,454.97,355000000,454.97
-1994-12-13,449.52,451.69,449.43,450.15,307110000,450.15
-1994-12-12,446.95,449.48,445.62,449.47,285730000,449.47
-1994-12-09,445.45,446.98,442.88,446.96,336440000,446.96
-1994-12-08,451.23,452.06,444.59,445.45,362290000,445.45
-1994-12-07,453.11,453.11,450.01,451.23,283490000,451.23
-1994-12-06,453.29,453.93,450.35,453.11,298930000,453.11
-1994-12-05,453.30,455.04,452.06,453.32,258490000,453.32
-1994-12-02,448.92,453.31,448.00,453.30,284750000,453.30
-1994-12-01,453.55,453.91,447.97,448.92,285920000,448.92
-1994-11-30,455.17,457.13,453.27,453.69,298650000,453.69
-1994-11-29,454.23,455.17,452.14,455.17,286620000,455.17
-1994-11-28,452.26,454.19,451.04,454.16,265480000,454.16
-1994-11-25,449.94,452.87,449.94,452.29,118290000,452.29
-1994-11-23,450.01,450.61,444.18,449.93,430760000,449.93
-1994-11-22,457.95,458.03,450.08,450.09,387270000,450.09
-1994-11-21,461.69,463.41,457.55,458.30,293030000,458.30
-1994-11-18,463.60,463.84,460.25,461.47,356730000,461.47
-1994-11-17,465.71,465.83,461.47,463.57,323190000,463.57
-1994-11-16,465.06,466.25,464.28,465.62,296980000,465.62
-1994-11-15,466.04,468.51,462.95,465.03,336450000,465.03
-1994-11-14,462.44,466.29,462.35,466.04,260380000,466.04
-1994-11-11,464.17,464.17,461.45,462.35,220800000,462.35
-1994-11-10,465.40,467.79,463.73,464.37,280910000,464.37
-1994-11-09,465.65,469.95,463.46,465.40,337780000,465.40
-1994-11-08,463.08,467.54,463.07,465.65,290860000,465.65
-1994-11-07,462.31,463.56,461.25,463.07,255030000,463.07
-1994-11-04,467.96,469.28,462.28,462.28,280560000,462.28
-1994-11-03,466.50,468.64,466.40,467.91,285170000,467.91
-1994-11-02,468.41,470.92,466.36,466.51,331360000,466.51
-1994-11-01,472.26,472.26,467.64,468.42,314940000,468.42
-1994-10-31,473.76,474.74,472.33,472.35,302820000,472.35
-1994-10-28,465.84,473.78,465.80,473.77,381450000,473.77
-1994-10-27,462.68,465.85,462.62,465.85,327790000,465.85
-1994-10-26,461.55,463.77,461.22,462.62,322570000,462.62
-1994-10-25,460.83,461.95,458.26,461.53,326110000,461.53
-1994-10-24,464.89,466.37,460.80,460.83,282800000,460.83
-1994-10-21,466.69,466.69,463.83,464.89,315310000,464.89
-1994-10-20,470.37,470.37,465.39,466.85,331460000,466.85
-1994-10-19,467.69,471.43,465.96,470.28,317030000,470.28
-1994-10-18,469.02,469.19,466.54,467.66,259730000,467.66
-1994-10-17,469.11,469.88,468.16,468.96,238490000,468.96
-1994-10-14,467.78,469.53,466.11,469.10,251770000,469.10
-1994-10-13,465.56,471.30,465.56,467.79,337900000,467.79
-1994-10-12,465.78,466.70,464.79,465.47,269550000,465.47
-1994-10-11,459.04,466.34,459.04,465.79,355540000,465.79
-1994-10-10,455.12,459.29,455.12,459.04,213110000,459.04
-1994-10-07,452.37,455.67,452.13,455.10,284230000,455.10
-1994-10-06,453.52,454.49,452.13,452.36,272620000,452.36
-1994-10-05,454.59,454.59,449.27,453.52,359670000,453.52
-1994-10-04,461.77,462.46,454.03,454.59,325620000,454.59
-1994-10-03,462.69,463.31,460.33,461.74,269130000,461.74
-1994-09-30,462.27,465.30,461.91,462.71,291900000,462.71
-1994-09-29,464.84,464.84,461.51,462.24,302280000,462.24
-1994-09-28,462.10,465.55,462.10,464.84,330020000,464.84
-1994-09-27,460.82,462.75,459.83,462.05,290330000,462.05
-1994-09-26,459.65,460.87,459.31,460.82,272530000,460.82
-1994-09-23,461.27,462.14,459.01,459.67,300060000,459.67
-1994-09-22,461.45,463.22,460.96,461.27,305210000,461.27
-1994-09-21,463.42,464.01,458.47,461.46,351830000,461.46
-1994-09-20,470.83,470.83,463.36,463.36,326050000,463.36
-1994-09-19,471.21,473.15,470.68,470.85,277110000,470.85
-1994-09-16,474.81,474.81,470.06,471.19,410750000,471.19
-1994-09-15,468.80,474.81,468.79,474.81,281920000,474.81
-1994-09-14,467.55,468.86,466.82,468.80,297480000,468.80
-1994-09-13,466.27,468.76,466.27,467.51,293370000,467.51
-1994-09-12,468.18,468.42,466.15,466.21,244680000,466.21
-1994-09-09,473.13,473.13,466.55,468.18,293360000,468.18
-1994-09-08,470.96,473.40,470.86,473.14,295010000,473.14
-1994-09-07,471.86,472.41,470.20,470.99,290330000,470.99
-1994-09-06,471.00,471.92,469.64,471.86,199670000,471.86
-1994-09-02,473.20,474.89,470.67,470.99,216150000,470.99
-1994-09-01,475.49,475.49,471.74,473.17,282830000,473.17
-1994-08-31,476.07,477.59,474.43,475.49,354650000,475.49
-1994-08-30,474.59,476.61,473.56,476.07,294520000,476.07
-1994-08-29,473.89,477.14,473.89,474.59,266080000,474.59
-1994-08-26,468.08,474.65,468.08,473.80,305120000,473.80
-1994-08-25,469.07,470.12,467.64,468.08,284230000,468.08
-1994-08-24,464.51,469.05,464.51,469.03,310510000,469.03
-1994-08-23,462.39,466.58,462.39,464.51,307240000,464.51
-1994-08-22,463.61,463.61,461.46,462.32,235870000,462.32
-1994-08-19,463.25,464.37,461.81,463.68,276630000,463.68
-1994-08-18,465.10,465.10,462.30,463.17,287330000,463.17
-1994-08-17,465.11,465.91,464.57,465.17,309250000,465.17
-1994-08-16,461.22,465.20,459.89,465.01,306640000,465.01
-1994-08-15,461.97,463.34,461.21,461.23,223210000,461.23
-1994-08-12,458.88,462.27,458.88,461.94,249280000,461.94
-1994-08-11,460.31,461.41,456.88,458.88,275690000,458.88
-1994-08-10,457.98,460.48,457.98,460.30,279500000,460.30
-1994-08-09,457.89,458.16,456.66,457.92,259140000,457.92
-1994-08-08,457.08,458.30,457.01,457.89,217680000,457.89
-1994-08-05,458.34,458.34,456.08,457.09,230270000,457.09
-1994-08-04,461.45,461.49,458.40,458.40,289150000,458.40
-1994-08-03,460.65,461.46,459.51,461.45,283840000,461.45
-1994-08-02,461.01,462.77,459.70,460.56,294740000,460.56
-1994-08-01,458.28,461.01,458.08,461.01,258180000,461.01
-1994-07-29,454.25,459.33,454.25,458.26,269560000,458.26
-1994-07-28,452.57,454.93,452.30,454.24,245990000,454.24
-1994-07-27,453.36,453.38,451.36,452.57,251680000,452.57
-1994-07-26,454.25,454.25,452.78,453.36,232670000,453.36
-1994-07-25,453.10,454.32,452.76,454.25,213470000,454.25
-1994-07-22,452.61,454.03,452.33,453.11,261600000,453.11
-1994-07-21,451.60,453.22,451.00,452.61,292120000,452.61
-1994-07-20,453.89,454.16,450.69,451.60,267840000,451.60
-1994-07-19,455.22,455.30,453.86,453.86,251530000,453.86
-1994-07-18,454.41,455.71,453.26,455.22,227460000,455.22
-1994-07-15,453.28,454.33,452.80,454.16,275860000,454.16
-1994-07-14,448.73,454.33,448.73,453.41,322330000,453.41
-1994-07-13,448.03,450.06,447.97,448.73,265840000,448.73
-1994-07-12,448.02,448.16,444.65,447.95,252250000,447.95
-1994-07-11,449.56,450.24,445.27,448.06,222970000,448.06
-1994-07-08,448.38,449.75,446.53,449.55,236520000,449.55
-1994-07-07,446.15,448.64,446.15,448.38,259740000,448.38
-1994-07-06,446.29,447.28,444.18,446.13,236230000,446.13
-1994-07-05,446.20,447.62,445.14,446.37,195410000,446.37
-1994-07-01,444.27,446.45,443.58,446.20,199030000,446.20
-1994-06-30,447.63,448.61,443.66,444.27,293410000,444.27
-1994-06-29,446.05,449.83,446.04,447.63,264430000,447.63
-1994-06-28,447.36,448.47,443.08,446.07,267740000,446.07
-1994-06-27,442.78,447.76,439.83,447.31,250080000,447.31
-1994-06-24,449.63,449.63,442.51,442.80,261260000,442.80
-1994-06-23,453.09,454.16,449.43,449.63,256480000,449.63
-1994-06-22,451.40,453.91,451.40,453.09,251110000,453.09
-1994-06-21,455.48,455.48,449.45,451.34,298730000,451.34
-1994-06-20,458.45,458.45,454.46,455.48,229520000,455.48
-1994-06-17,461.93,462.16,458.44,458.45,373450000,458.45
-1994-06-16,460.61,461.93,459.80,461.93,256390000,461.93
-1994-06-15,462.38,463.23,459.95,460.61,269740000,460.61
-1994-06-14,459.10,462.52,459.10,462.37,288550000,462.37
-1994-06-13,458.67,459.36,457.18,459.10,243640000,459.10
-1994-06-10,457.86,459.48,457.36,458.67,222480000,458.67
-1994-06-09,457.06,457.87,455.86,457.86,252870000,457.86
-1994-06-08,458.21,459.74,455.43,457.06,256000000,457.06
-1994-06-07,458.88,459.46,457.65,458.21,234680000,458.21
-1994-06-06,460.13,461.87,458.85,458.88,259080000,458.88
-1994-06-03,457.65,460.86,456.27,460.13,271490000,460.13
-1994-06-02,457.62,458.50,457.26,457.65,271630000,457.65
-1994-06-01,456.50,458.29,453.99,457.63,279910000,457.63
-1994-05-31,457.32,457.61,455.16,456.50,216700000,456.50
-1994-05-27,457.03,457.33,454.67,457.33,186430000,457.33
-1994-05-26,456.33,457.77,455.79,457.06,255740000,457.06
-1994-05-25,454.84,456.34,452.20,456.34,254420000,456.34
-1994-05-24,453.21,456.77,453.21,454.81,280040000,454.81
-1994-05-23,454.92,454.92,451.79,453.20,249420000,453.20
-1994-05-20,456.48,456.48,454.22,454.92,295180000,454.92
-1994-05-19,453.69,456.88,453.00,456.48,303680000,456.48
-1994-05-18,449.39,454.45,448.87,453.69,337670000,453.69
-1994-05-17,444.49,449.37,443.70,449.37,311280000,449.37
-1994-05-16,444.15,445.82,443.62,444.49,234700000,444.49
-1994-05-13,443.62,444.72,441.21,444.14,252070000,444.14
-1994-05-12,441.50,444.80,441.50,443.75,272770000,443.75
-1994-05-11,446.03,446.03,440.78,441.49,277400000,441.49
-1994-05-10,442.37,446.84,442.37,446.01,297660000,446.01
-1994-05-09,447.82,447.82,441.84,442.32,250870000,442.32
-1994-05-06,451.37,451.37,445.64,447.82,291910000,447.82
-1994-05-05,451.72,452.82,450.72,451.38,255690000,451.38
-1994-05-04,453.04,453.11,449.87,451.72,267940000,451.72
-1994-05-03,453.06,453.98,450.51,453.03,288270000,453.03
-1994-05-02,450.91,453.57,449.05,453.02,296130000,453.02
-1994-04-29,449.07,451.35,447.91,450.91,293970000,450.91
-1994-04-28,451.84,452.23,447.97,449.10,325200000,449.10
-1994-04-26,452.71,452.79,450.66,451.87,288120000,451.87
-1994-04-25,447.64,452.71,447.58,452.71,262320000,452.71
-1994-04-22,448.73,449.96,447.16,447.63,295710000,447.63
-1994-04-21,441.96,449.14,441.96,448.73,378770000,448.73
-1994-04-20,442.54,445.01,439.40,441.96,366540000,441.96
-1994-04-19,442.54,444.82,438.83,442.54,323280000,442.54
-1994-04-18,446.27,447.87,441.48,442.46,271470000,442.46
-1994-04-15,446.38,447.85,445.81,446.18,309550000,446.18
-1994-04-14,446.26,447.55,443.57,446.38,275130000,446.38
-1994-04-13,447.63,448.57,442.62,446.26,278030000,446.26
-1994-04-12,449.83,450.80,447.33,447.57,257990000,447.57
-1994-04-11,447.12,450.34,447.10,449.87,243180000,449.87
-1994-04-08,450.89,450.89,445.51,447.10,264090000,447.10
-1994-04-07,448.11,451.10,446.38,450.88,289280000,450.88
-1994-04-06,448.29,449.63,444.98,448.05,302000000,448.05
-1994-04-05,439.14,448.29,439.14,448.29,365990000,448.29
-1994-04-04,445.66,445.66,435.86,438.92,344390000,438.92
-1994-03-31,445.55,447.16,436.16,445.77,403580000,445.77
-1994-03-30,452.48,452.49,445.55,445.55,390520000,445.55
-1994-03-29,460.00,460.32,452.43,452.48,305360000,452.48
-1994-03-28,460.58,461.12,456.10,460.00,287350000,460.00
-1994-03-25,464.35,465.29,460.58,460.58,249640000,460.58
-1994-03-24,468.57,468.57,462.41,464.35,303740000,464.35
-1994-03-23,468.89,470.38,468.52,468.54,281500000,468.54
-1994-03-22,468.40,470.47,467.88,468.80,282240000,468.80
-1994-03-21,471.06,471.06,467.23,468.54,247380000,468.54
-1994-03-18,470.89,471.09,467.83,471.06,462240000,471.06
-1994-03-17,469.42,471.05,468.62,470.90,303930000,470.90
-1994-03-16,467.04,469.85,465.48,469.42,307640000,469.42
-1994-03-15,467.39,468.99,466.04,467.01,303750000,467.01
-1994-03-14,466.44,467.60,466.08,467.39,260150000,467.39
-1994-03-11,463.86,466.61,462.54,466.44,303890000,466.44
-1994-03-10,467.08,467.29,462.46,463.90,369370000,463.90
-1994-03-09,465.94,467.42,463.40,467.06,309810000,467.06
-1994-03-08,466.92,467.79,465.02,465.88,298110000,465.88
-1994-03-07,464.74,468.07,464.74,466.91,285590000,466.91
-1994-03-04,463.03,466.16,462.41,464.74,311850000,464.74
-1994-03-03,464.81,464.83,462.50,463.01,291790000,463.01
-1994-03-02,464.40,464.87,457.49,464.81,361130000,464.81
-1994-03-01,467.19,467.43,462.02,464.44,304450000,464.44
-1994-02-28,466.07,469.16,466.07,467.14,268690000,467.14
-1994-02-25,464.33,466.48,464.33,466.07,273680000,466.07
-1994-02-24,470.65,470.65,464.26,464.26,342940000,464.26
-1994-02-23,471.48,472.41,469.47,470.69,309910000,470.69
-1994-02-22,467.69,471.65,467.58,471.46,270900000,471.46
-1994-02-18,470.29,471.09,466.07,467.69,293210000,467.69
-1994-02-17,472.79,475.12,468.44,470.34,340030000,470.34
-1994-02-16,472.53,474.16,471.94,472.79,295450000,472.79
-1994-02-15,470.23,473.41,470.23,472.52,306790000,472.52
-1994-02-14,470.18,471.99,469.05,470.23,263190000,470.23
-1994-02-11,468.93,471.13,466.89,470.18,213740000,470.18
-1994-02-10,472.81,473.13,468.91,468.93,327250000,468.93
-1994-02-09,471.05,473.41,471.05,472.77,332670000,472.77
-1994-02-08,471.76,472.33,469.50,471.05,318180000,471.05
-1994-02-07,469.81,472.09,467.57,471.76,348270000,471.76
-1994-02-04,480.68,481.02,469.28,469.81,378380000,469.81
-1994-02-03,481.96,481.96,478.71,480.71,318350000,480.71
-1994-02-02,479.62,482.23,479.57,482.00,328960000,482.00
-1994-02-01,481.60,481.64,479.18,479.62,322510000,479.62
-1994-01-31,478.70,482.85,478.70,481.61,322870000,481.61
-1994-01-28,477.05,479.75,477.05,478.70,313140000,478.70
-1994-01-27,473.20,477.52,473.20,477.05,346500000,477.05
-1994-01-26,470.92,473.44,470.72,473.20,304660000,473.20
-1994-01-25,471.97,472.56,470.27,470.92,326120000,470.92
-1994-01-24,474.72,475.20,471.49,471.97,296900000,471.97
-1994-01-21,474.98,475.56,473.72,474.72,346350000,474.72
-1994-01-20,474.30,475.00,473.42,474.98,310450000,474.98
-1994-01-19,474.25,474.70,472.21,474.30,311370000,474.30
-1994-01-18,473.30,475.19,473.29,474.25,308840000,474.25
-1994-01-17,474.91,474.91,472.84,473.30,233980000,473.30
-1994-01-14,472.50,475.32,472.50,474.91,304920000,474.91
-1994-01-13,474.17,474.17,471.80,472.47,277970000,472.47
-1994-01-12,474.13,475.06,472.14,474.17,310690000,474.17
-1994-01-11,475.27,475.28,473.27,474.13,305490000,474.13
-1994-01-10,469.90,475.27,469.55,475.27,319490000,475.27
-1994-01-07,467.09,470.26,467.03,469.90,324920000,469.90
-1994-01-06,467.55,469.00,467.02,467.12,365960000,467.12
-1994-01-05,466.89,467.82,465.92,467.55,400030000,467.55
-1994-01-04,465.44,466.89,464.44,466.89,326600000,466.89
-1994-01-03,466.51,466.94,464.36,465.44,270140000,465.44
-1993-12-31,468.66,470.75,466.45,466.45,168590000,466.45
-1993-12-30,470.58,470.58,468.09,468.64,195860000,468.64
-1993-12-29,470.88,471.29,469.87,470.58,269570000,470.58
-1993-12-28,470.61,471.05,469.43,470.94,200960000,470.94
-1993-12-27,467.40,470.55,467.35,470.54,171200000,470.54
-1993-12-23,467.30,468.97,467.30,467.38,227240000,467.38
-1993-12-22,465.08,467.38,465.08,467.32,272440000,467.32
-1993-12-21,465.84,465.92,464.03,465.30,273370000,465.30
-1993-12-20,466.38,466.90,465.53,465.85,255900000,465.85
-1993-12-17,463.34,466.38,463.34,466.38,363750000,466.38
-1993-12-16,461.86,463.98,461.86,463.34,284620000,463.34
-1993-12-15,463.06,463.69,461.84,461.84,331770000,461.84
-1993-12-14,465.73,466.12,462.46,463.06,275050000,463.06
-1993-12-13,463.93,465.71,462.71,465.70,256580000,465.70
-1993-12-10,464.18,464.87,462.66,463.93,245620000,463.93
-1993-12-09,466.29,466.54,463.87,464.18,287570000,464.18
-1993-12-08,465.88,466.73,465.42,466.29,314460000,466.29
-1993-12-07,466.43,466.77,465.44,466.76,285690000,466.76
-1993-12-06,464.89,466.89,464.40,466.43,292370000,466.43
-1993-12-03,463.13,464.89,462.67,464.89,268360000,464.89
-1993-12-02,461.89,463.22,461.45,463.11,256370000,463.11
-1993-12-01,461.93,464.47,461.63,461.89,293870000,461.89
-1993-11-30,461.90,463.62,460.45,461.79,286660000,461.79
-1993-11-29,463.06,464.83,461.83,461.90,272710000,461.90
-1993-11-26,462.36,463.63,462.36,463.06,90220000,463.06
-1993-11-24,461.03,462.90,461.03,462.36,230630000,462.36
-1993-11-23,459.13,461.77,458.47,461.03,260400000,461.03
-1993-11-22,462.60,462.60,457.08,459.13,280130000,459.13
-1993-11-19,463.59,463.60,460.03,462.60,302970000,462.60
-1993-11-18,464.83,464.88,461.73,463.62,313490000,463.62
-1993-11-17,466.74,467.24,462.73,464.81,316940000,464.81
-1993-11-16,463.75,466.74,462.97,466.74,303980000,466.74
-1993-11-15,465.39,466.13,463.01,463.75,251030000,463.75
-1993-11-12,462.64,465.84,462.64,465.39,326240000,465.39
-1993-11-11,463.72,464.96,462.49,462.64,283820000,462.64
-1993-11-10,460.40,463.72,459.57,463.72,283450000,463.72
-1993-11-09,460.21,463.42,460.21,460.33,276360000,460.33
-1993-11-08,459.57,461.54,458.78,460.21,234340000,460.21
-1993-11-05,457.49,459.63,454.36,459.57,336890000,459.57
-1993-11-04,463.02,463.16,457.26,457.49,323430000,457.49
-1993-11-03,468.44,468.61,460.95,463.02,342110000,463.02
-1993-11-02,469.10,469.10,466.20,468.44,304780000,468.44
-1993-11-01,467.83,469.11,467.33,469.10,256030000,469.10
-1993-10-29,467.72,468.20,467.37,467.83,270570000,467.83
-1993-10-28,464.52,468.76,464.52,467.73,301220000,467.73
-1993-10-27,464.30,464.61,463.36,464.61,279830000,464.61
-1993-10-26,464.20,464.32,462.65,464.30,284530000,464.30
-1993-10-25,463.27,464.49,462.05,464.20,260310000,464.20
-1993-10-22,465.36,467.82,463.27,463.27,301440000,463.27
-1993-10-21,466.06,466.64,464.38,465.36,289600000,465.36
-1993-10-20,466.21,466.87,464.54,466.07,305670000,466.07
-1993-10-19,468.41,468.64,464.80,466.21,304400000,466.21
-1993-10-18,469.50,470.04,468.02,468.45,329580000,468.45
-1993-10-15,466.83,471.10,466.83,469.50,366110000,469.50
-1993-10-14,461.55,466.83,461.55,466.83,352530000,466.83
-1993-10-13,461.12,461.98,460.76,461.49,290930000,461.49
-1993-10-12,461.04,462.47,460.73,461.12,263970000,461.12
-1993-10-11,460.31,461.87,460.31,460.88,183060000,460.88
-1993-10-08,459.18,460.99,456.40,460.31,243600000,460.31
-1993-10-07,460.71,461.13,459.08,459.18,255210000,459.18
-1993-10-06,461.24,462.60,460.26,460.74,277070000,460.74
-1993-10-05,461.34,463.15,459.45,461.20,294570000,461.20
-1993-10-04,461.28,461.80,460.02,461.34,229380000,461.34
-1993-10-01,458.93,461.48,458.35,461.28,256880000,461.28
-1993-09-30,460.11,460.56,458.28,458.93,280980000,458.93
-1993-09-29,461.60,462.17,459.51,460.11,277690000,460.11
-1993-09-28,461.84,462.08,460.91,461.53,243320000,461.53
-1993-09-27,457.63,461.81,457.63,461.80,244920000,461.80
-1993-09-24,457.74,458.56,456.92,457.63,248270000,457.63
-1993-09-23,456.25,458.69,456.25,457.74,275350000,457.74
-1993-09-22,452.94,456.92,452.94,456.20,298960000,456.20
-1993-09-21,455.05,455.80,449.64,452.95,300310000,452.95
-1993-09-20,458.84,459.91,455.00,455.05,231130000,455.05
-1993-09-17,459.43,459.43,457.09,458.83,381370000,458.83
-1993-09-16,461.54,461.54,459.00,459.43,229700000,459.43
-1993-09-15,459.90,461.96,456.31,461.60,294410000,461.60
-1993-09-14,461.93,461.93,458.15,459.90,258650000,459.90
-1993-09-13,461.70,463.38,461.41,462.06,244970000,462.06
-1993-09-10,457.49,461.86,457.49,461.72,269950000,461.72
-1993-09-09,456.65,458.11,455.17,457.50,258070000,457.50
-1993-09-08,458.52,458.53,453.75,456.65,283100000,456.65
-1993-09-07,461.34,462.07,457.95,458.52,229500000,458.52
-1993-09-03,461.30,462.05,459.91,461.34,197160000,461.34
-1993-09-02,463.13,463.54,461.07,461.30,259870000,461.30
-1993-09-01,463.55,463.80,461.77,463.15,245040000,463.15
-1993-08-31,461.90,463.56,461.29,463.56,252830000,463.56
-1993-08-30,460.54,462.58,460.28,461.90,194180000,461.90
-1993-08-27,461.05,461.05,459.19,460.54,196140000,460.54
-1993-08-26,460.04,462.87,458.82,461.04,254070000,461.04
-1993-08-25,459.75,462.04,459.30,460.13,301650000,460.13
-1993-08-24,455.23,459.77,455.04,459.77,270700000,459.77
-1993-08-23,456.12,456.12,454.29,455.23,212500000,455.23
-1993-08-20,456.51,456.68,454.60,456.16,276800000,456.16
-1993-08-19,456.01,456.76,455.20,456.43,293330000,456.43
-1993-08-18,453.21,456.99,453.21,456.04,312940000,456.04
-1993-08-17,452.38,453.70,451.96,453.13,261320000,453.13
-1993-08-16,450.25,453.41,450.25,452.38,233640000,452.38
-1993-08-13,448.97,450.25,448.97,450.14,214370000,450.14
-1993-08-12,450.47,451.63,447.53,448.96,278530000,448.96
-1993-08-11,449.60,451.00,449.60,450.46,268330000,450.46
-1993-08-10,450.71,450.71,449.10,449.45,255520000,449.45
-1993-08-09,448.68,451.51,448.31,450.72,232750000,450.72
-1993-08-06,448.13,449.26,447.87,448.68,221170000,448.68
-1993-08-05,448.55,449.61,446.94,448.13,261900000,448.13
-1993-08-04,449.27,449.72,447.93,448.54,230040000,448.54
-1993-08-03,450.15,450.43,447.59,449.27,253110000,449.27
-1993-08-02,448.13,450.15,448.03,450.15,230380000,450.15
-1993-07-30,450.19,450.22,446.98,448.13,254420000,448.13
-1993-07-29,447.19,450.77,447.19,450.24,261240000,450.24
-1993-07-28,448.25,448.61,446.59,447.19,273100000,447.19
-1993-07-27,449.00,449.44,446.76,448.24,256750000,448.24
-1993-07-26,447.06,449.50,447.04,449.09,222580000,449.09
-1993-07-23,444.54,447.10,444.54,447.10,222170000,447.10
-1993-07-22,447.18,447.23,443.72,444.51,249630000,444.51
-1993-07-21,447.28,447.50,445.84,447.18,278590000,447.18
-1993-07-20,446.03,447.63,443.71,447.31,277420000,447.31
-1993-07-19,445.75,446.78,444.83,446.03,216370000,446.03
-1993-07-16,449.07,449.08,445.66,445.75,263100000,445.75
-1993-07-15,450.09,450.12,447.26,449.22,277810000,449.22
-1993-07-14,448.08,451.12,448.08,450.08,297430000,450.08
-1993-07-13,449.00,450.70,448.07,448.09,236720000,448.09
-1993-07-12,448.13,449.11,447.71,448.98,202310000,448.98
-1993-07-09,448.64,448.94,446.74,448.11,235210000,448.11
-1993-07-08,442.84,448.64,442.84,448.64,282910000,448.64
-1993-07-07,441.40,443.63,441.40,442.83,253170000,442.83
-1993-07-06,445.86,446.87,441.42,441.43,234810000,441.43
-1993-07-02,449.02,449.02,445.20,445.84,220750000,445.84
-1993-07-01,450.54,451.15,448.71,449.02,292040000,449.02
-1993-06-30,450.69,451.47,450.15,450.53,281120000,450.53
-1993-06-29,451.89,451.90,449.67,450.69,276310000,450.69
-1993-06-28,447.60,451.90,447.60,451.85,242090000,451.85
-1993-06-25,446.62,448.64,446.62,447.60,210430000,447.60
-1993-06-24,443.04,447.21,442.50,446.62,267450000,446.62
-1993-06-23,445.96,445.96,443.19,443.19,278260000,443.19
-1993-06-22,446.25,446.29,444.94,445.93,259530000,445.93
-1993-06-21,443.68,446.22,443.68,446.22,223650000,446.22
-1993-06-18,448.54,448.59,443.68,443.68,300500000,443.68
-1993-06-17,447.43,448.98,446.91,448.54,239810000,448.54
-1993-06-16,446.27,447.43,443.61,447.43,267500000,447.43
-1993-06-15,447.73,448.28,446.18,446.27,234110000,446.27
-1993-06-14,447.26,448.64,447.23,447.71,210440000,447.71
-1993-06-11,445.38,448.19,445.38,447.26,256750000,447.26
-1993-06-10,445.78,446.22,444.09,445.38,232600000,445.38
-1993-06-09,444.71,447.39,444.66,445.78,249030000,445.78
-1993-06-08,447.65,447.65,444.31,444.71,240640000,444.71
-1993-06-07,450.07,450.75,447.32,447.69,236920000,447.69
-1993-06-04,452.43,452.43,448.92,450.06,226440000,450.06
-1993-06-03,453.84,453.85,451.12,452.49,285570000,452.49
-1993-06-02,453.83,454.53,452.68,453.85,295560000,453.85
-1993-06-01,450.23,455.63,450.23,453.83,229690000,453.83
-1993-05-28,452.41,452.41,447.67,450.19,207820000,450.19
-1993-05-27,453.44,454.55,451.14,452.41,300810000,452.41
-1993-05-26,448.85,453.51,448.82,453.44,274230000,453.44
-1993-05-25,448.00,449.04,447.70,448.85,222090000,448.85
-1993-05-24,445.84,448.44,445.26,448.00,197990000,448.00
-1993-05-21,450.59,450.59,444.89,445.84,279120000,445.84
-1993-05-20,447.57,450.59,447.36,450.59,289160000,450.59
-1993-05-19,440.32,447.86,436.86,447.57,342420000,447.57
-1993-05-18,440.39,441.26,437.95,440.32,264300000,440.32
-1993-05-17,439.56,440.38,437.83,440.37,227580000,440.37
-1993-05-14,439.22,439.82,438.10,439.56,252910000,439.56
-1993-05-13,444.75,444.75,439.23,439.23,293920000,439.23
-1993-05-12,444.32,445.16,442.87,444.80,255680000,444.80
-1993-05-11,442.80,444.57,441.52,444.36,218480000,444.36
-1993-05-10,442.34,445.42,442.05,442.80,235580000,442.80
-1993-05-07,443.28,443.70,441.69,442.31,223570000,442.31
-1993-05-06,444.60,444.81,442.90,443.26,255460000,443.26
-1993-05-05,443.98,446.09,443.76,444.52,274240000,444.52
-1993-05-04,442.58,445.19,442.45,444.05,268310000,444.05
-1993-05-03,440.19,442.59,438.25,442.46,224970000,442.46
-1993-04-30,438.89,442.29,438.89,440.19,247460000,440.19
-1993-04-29,438.02,438.96,435.59,438.89,249760000,438.89
-1993-04-28,438.01,438.80,436.68,438.02,267980000,438.02
-1993-04-27,433.52,438.02,433.14,438.01,284140000,438.01
-1993-04-26,437.03,438.35,432.30,433.54,283260000,433.54
-1993-04-23,439.49,439.49,436.82,437.03,259810000,437.03
-1993-04-22,443.55,445.73,439.46,439.46,310390000,439.46
-1993-04-21,445.09,445.77,443.08,443.63,287300000,443.63
-1993-04-20,447.46,447.46,441.81,445.10,317990000,445.10
-1993-04-19,448.94,449.14,445.85,447.46,244710000,447.46
-1993-04-16,448.41,449.39,447.67,448.94,305160000,448.94
-1993-04-15,448.60,449.11,446.39,448.40,259500000,448.40
-1993-04-14,449.22,450.00,448.02,448.66,257340000,448.66
-1993-04-13,448.41,450.40,447.66,449.22,286690000,449.22
-1993-04-12,441.84,448.37,441.84,448.37,259690000,448.37
-1993-04-08,442.71,443.77,440.02,441.84,284370000,441.84
-1993-04-07,441.16,442.73,440.50,442.73,300000000,442.73
-1993-04-06,442.29,443.38,439.48,441.16,293680000,441.16
-1993-04-05,441.42,442.43,440.53,442.29,296080000,442.29
-1993-04-02,450.28,450.28,440.71,441.39,323330000,441.39
-1993-04-01,451.67,452.63,449.60,450.30,234530000,450.30
-1993-03-31,451.97,454.88,451.67,451.67,279190000,451.67
-1993-03-30,450.79,452.06,449.63,451.97,231190000,451.97
-1993-03-29,447.76,452.81,447.75,450.77,199970000,450.77
-1993-03-26,450.91,452.09,447.69,447.78,226650000,447.78
-1993-03-25,448.09,451.75,447.93,450.88,251530000,450.88
-1993-03-24,448.71,450.90,446.10,448.07,274300000,448.07
-1993-03-23,448.88,449.80,448.30,448.76,232730000,448.76
-1993-03-22,450.17,450.17,446.08,448.88,233190000,448.88
-1993-03-19,451.90,453.32,449.91,450.18,339660000,450.18
-1993-03-18,448.36,452.39,448.36,451.89,241180000,451.89
-1993-03-17,451.36,451.36,447.99,448.31,241270000,448.31
-1993-03-16,451.43,452.36,451.01,451.37,218820000,451.37
-1993-03-15,449.83,451.43,449.40,451.43,195930000,451.43
-1993-03-12,453.70,453.70,447.04,449.83,255420000,449.83
-1993-03-11,456.35,456.76,453.48,453.72,257060000,453.72
-1993-03-10,454.40,456.34,452.70,456.33,255610000,456.33
-1993-03-09,454.67,455.52,453.68,454.40,290670000,454.40
-1993-03-08,446.12,454.71,446.12,454.71,275290000,454.71
-1993-03-05,447.34,449.59,445.56,446.11,253480000,446.11
-1993-03-04,449.26,449.52,446.72,447.34,234220000,447.34
-1993-03-03,447.90,450.00,447.73,449.26,277380000,449.26
-1993-03-02,442.00,447.91,441.07,447.90,269750000,447.90
-1993-03-01,443.38,444.18,441.34,442.01,232460000,442.01
-1993-02-26,442.34,443.77,440.98,443.38,234160000,443.38
-1993-02-25,440.70,442.34,439.67,442.34,252860000,442.34
-1993-02-24,434.76,440.87,434.68,440.87,316750000,440.87
-1993-02-23,435.34,436.84,432.41,434.80,329060000,434.80
-1993-02-22,434.21,436.49,433.53,435.24,311570000,435.24
-1993-02-19,431.93,434.26,431.68,434.22,310700000,434.22
-1993-02-18,433.30,437.79,428.25,431.90,311180000,431.90
-1993-02-17,433.93,433.97,430.92,433.30,302210000,433.30
-1993-02-16,444.53,444.53,433.47,433.91,332850000,433.91
-1993-02-12,447.66,447.70,444.58,444.58,216810000,444.58
-1993-02-11,446.21,449.36,446.21,447.66,257190000,447.66
-1993-02-10,445.33,446.37,444.24,446.23,251910000,446.23
-1993-02-09,448.04,448.04,444.52,445.33,240410000,445.33
-1993-02-08,448.94,450.04,447.70,447.85,243400000,447.85
-1993-02-05,449.56,449.56,446.95,448.93,324710000,448.93
-1993-02-04,447.20,449.86,447.20,449.56,351140000,449.56
-1993-02-03,442.56,447.35,442.56,447.20,345410000,447.20
-1993-02-02,442.52,442.87,440.76,442.55,271560000,442.55
-1993-02-01,438.78,442.52,438.78,442.52,238570000,442.52
-1993-01-29,438.67,438.93,436.91,438.78,247200000,438.78
-1993-01-28,438.13,439.14,437.30,438.66,256980000,438.66
-1993-01-27,439.95,440.04,436.82,438.11,277020000,438.11
-1993-01-26,440.05,442.66,439.54,439.95,314110000,439.95
-1993-01-25,436.11,440.53,436.11,440.01,288740000,440.01
-1993-01-22,435.49,437.81,435.49,436.11,293320000,436.11
-1993-01-21,433.37,435.75,432.48,435.49,257620000,435.49
-1993-01-20,435.14,436.23,433.37,433.37,268790000,433.37
-1993-01-19,436.84,437.70,434.59,435.13,283240000,435.13
-1993-01-18,437.13,437.13,435.92,436.84,196030000,436.84
-1993-01-15,435.87,439.49,435.84,437.15,309720000,437.15
-1993-01-14,433.08,435.96,433.08,435.94,281040000,435.94
-1993-01-13,431.03,433.44,429.99,433.03,245360000,433.03
-1993-01-12,430.95,431.39,428.19,431.04,239410000,431.04
-1993-01-11,429.04,431.04,429.01,430.95,217150000,430.95
-1993-01-08,430.73,430.73,426.88,429.05,263470000,429.05
-1993-01-07,434.52,435.46,429.76,430.73,304850000,430.73
-1993-01-06,434.34,435.17,432.52,434.52,295240000,434.52
-1993-01-05,435.38,435.40,433.55,434.34,240350000,434.34
-1993-01-04,435.70,437.32,434.48,435.38,201210000,435.38
-1992-12-31,438.82,439.59,435.71,435.71,165910000,435.71
-1992-12-30,437.98,439.37,437.12,438.82,183930000,438.82
-1992-12-29,439.15,442.65,437.60,437.98,213660000,437.98
-1992-12-28,439.77,439.77,437.26,439.15,143970000,439.15
-1992-12-24,439.03,439.81,439.03,439.77,95240000,439.77
-1992-12-23,440.29,441.11,439.03,439.03,234140000,439.03
-1992-12-22,440.70,441.64,438.25,440.31,250430000,440.31
-1992-12-21,441.26,441.26,439.65,440.70,224680000,440.70
-1992-12-18,435.46,441.29,435.46,441.28,389300000,441.28
-1992-12-17,431.52,435.44,431.46,435.43,251640000,435.43
-1992-12-16,432.58,434.22,430.88,431.52,242130000,431.52
-1992-12-15,432.82,433.66,431.92,432.57,227770000,432.57
-1992-12-14,433.73,435.26,432.83,432.84,187040000,432.84
-1992-12-11,434.64,434.64,433.34,433.73,164510000,433.73
-1992-12-10,435.66,435.66,432.65,434.64,240640000,434.64
-1992-12-09,436.99,436.99,433.98,435.65,230060000,435.65
-1992-12-08,435.31,436.99,434.68,436.99,234330000,436.99
-1992-12-07,432.06,435.31,432.06,435.31,217700000,435.31
-1992-12-04,429.93,432.89,429.74,432.06,234960000,432.06
-1992-12-03,429.98,430.99,428.80,429.91,238050000,429.91
-1992-12-02,430.78,430.87,428.61,429.89,247010000,429.89
-1992-12-01,431.35,431.47,429.20,430.78,259050000,430.78
-1992-11-30,430.19,431.53,429.36,431.35,230150000,431.35
-1992-11-27,429.19,431.93,429.17,430.16,106020000,430.16
-1992-11-25,427.59,429.41,427.58,429.19,207700000,429.19
-1992-11-24,425.14,429.31,424.83,427.59,241540000,427.59
-1992-11-23,426.65,426.65,424.95,425.12,192530000,425.12
-1992-11-20,423.61,426.98,423.61,426.65,257460000,426.65
-1992-11-19,422.86,423.61,422.50,423.61,218720000,423.61
-1992-11-18,419.27,423.49,419.24,422.85,219080000,422.85
-1992-11-17,420.63,420.97,418.31,419.27,187660000,419.27
-1992-11-16,422.44,422.44,420.35,420.68,173600000,420.68
-1992-11-13,422.89,422.91,421.04,422.43,192950000,422.43
-1992-11-12,422.20,423.10,421.70,422.87,226010000,422.87
-1992-11-11,418.62,422.33,418.40,422.20,243750000,422.20
-1992-11-10,418.59,419.71,417.98,418.62,223180000,418.62
-1992-11-09,417.58,420.13,416.79,418.59,197560000,418.59
-1992-11-06,418.35,418.35,417.01,417.58,205310000,417.58
-1992-11-05,417.08,418.40,415.58,418.34,219730000,418.34
-1992-11-04,419.91,421.07,416.61,417.11,194400000,417.11
-1992-11-03,422.75,422.81,418.59,419.92,208140000,419.92
-1992-11-02,418.66,422.75,418.12,422.75,203280000,422.75
-1992-10-30,420.86,421.13,418.54,418.68,201930000,418.68
-1992-10-29,420.15,421.16,419.83,420.86,206550000,420.86
-1992-10-28,418.49,420.13,417.56,420.13,203910000,420.13
-1992-10-27,418.18,419.20,416.97,418.49,201730000,418.49
-1992-10-26,414.09,418.17,413.71,418.16,188060000,418.16
-1992-10-23,414.90,416.23,413.68,414.10,199060000,414.10
-1992-10-22,415.67,416.81,413.10,414.90,216400000,414.90
-1992-10-21,415.53,416.15,414.54,415.67,219100000,415.67
-1992-10-20,414.98,417.98,414.49,415.48,258210000,415.48
-1992-10-19,411.73,414.98,410.66,414.98,222150000,414.98
-1992-10-16,409.60,411.73,407.43,411.73,235920000,411.73
-1992-10-15,409.34,411.03,407.92,409.60,213590000,409.60
-1992-10-14,409.30,411.52,407.86,409.37,175900000,409.37
-1992-10-13,407.44,410.64,406.83,409.30,186650000,409.30
-1992-10-12,402.66,407.44,402.66,407.44,126670000,407.44
-1992-10-09,407.75,407.75,402.42,402.66,178940000,402.66
-1992-10-08,404.29,408.04,404.29,407.75,205000000,407.75
-1992-10-07,407.17,408.60,403.91,404.25,184380000,404.25
-1992-10-06,407.57,408.56,404.84,407.18,203500000,407.18
-1992-10-05,410.47,410.47,396.80,407.57,286550000,407.57
-1992-10-02,416.29,416.35,410.45,410.47,188030000,410.47
-1992-10-01,417.80,418.67,415.46,416.29,204780000,416.29
-1992-09-30,416.79,418.58,416.67,417.80,184470000,417.80
-1992-09-29,416.62,417.38,415.34,416.80,170750000,416.80
-1992-09-28,414.35,416.62,413.00,416.62,158760000,416.62
-1992-09-25,418.47,418.63,412.71,414.35,213670000,414.35
-1992-09-24,417.46,419.01,417.46,418.47,187960000,418.47
-1992-09-23,417.14,417.88,416.00,417.44,205700000,417.44
-1992-09-22,422.14,422.14,417.13,417.14,188810000,417.14
-1992-09-21,422.90,422.90,421.18,422.14,153940000,422.14
-1992-09-18,419.92,422.93,419.92,422.93,237440000,422.93
-1992-09-17,419.92,421.43,419.62,419.93,188270000,419.93
-1992-09-16,419.71,422.44,417.77,419.92,231450000,419.92
-1992-09-15,425.22,425.22,419.54,419.77,211860000,419.77
-1992-09-14,419.65,425.27,419.65,425.27,250940000,425.27
-1992-09-11,419.95,420.58,419.13,419.58,180560000,419.58
-1992-09-10,416.34,420.52,416.34,419.95,221990000,419.95
-1992-09-09,414.44,416.44,414.44,416.36,178800000,416.36
-1992-09-08,417.08,417.18,414.30,414.44,161440000,414.44
-1992-09-04,417.98,418.62,416.76,417.08,124380000,417.08
-1992-09-03,417.98,420.31,417.49,417.98,212500000,417.98
-1992-09-02,416.07,418.28,415.31,417.98,187480000,417.98
-1992-09-01,414.03,416.07,413.35,416.07,172680000,416.07
-1992-08-31,414.87,415.29,413.76,414.03,161480000,414.03
-1992-08-28,413.54,414.95,413.38,414.84,152260000,414.84
-1992-08-27,413.51,415.83,413.51,413.53,178600000,413.53
-1992-08-26,411.65,413.61,410.53,413.51,171860000,413.51
-1992-08-25,410.73,411.64,408.30,411.61,202760000,411.61
-1992-08-24,414.80,414.80,410.07,410.72,165690000,410.72
-1992-08-21,418.27,420.35,413.58,414.85,204800000,414.85
-1992-08-20,418.19,418.85,416.93,418.26,183420000,418.26
-1992-08-19,421.34,421.62,418.19,418.19,187070000,418.19
-1992-08-18,420.74,421.40,419.78,421.34,171750000,421.34
-1992-08-17,419.89,421.89,419.44,420.74,152830000,420.74
-1992-08-14,417.74,420.40,417.74,419.91,166820000,419.91
-1992-08-13,417.78,419.88,416.40,417.73,185750000,417.73
-1992-08-12,418.89,419.75,416.43,417.78,176560000,417.78
-1992-08-11,419.45,419.72,416.53,418.90,173940000,418.90
-1992-08-10,418.87,419.42,417.04,419.42,142480000,419.42
-1992-08-07,420.59,423.45,418.51,418.88,190640000,418.88
-1992-08-06,422.19,422.36,420.26,420.59,181440000,420.59
-1992-08-05,424.35,424.35,421.92,422.19,172450000,422.19
-1992-08-04,425.09,425.14,423.10,424.36,166760000,424.36
-1992-08-03,424.19,425.09,422.84,425.09,164460000,425.09
-1992-07-31,423.92,424.80,422.46,424.21,172920000,424.21
-1992-07-30,422.20,423.94,421.57,423.92,193410000,423.92
-1992-07-29,417.52,423.02,417.52,422.23,275850000,422.23
-1992-07-28,411.55,417.55,411.55,417.52,218060000,417.52
-1992-07-27,411.60,412.67,411.27,411.54,164700000,411.54
-1992-07-24,412.07,412.07,409.93,411.60,163890000,411.60
-1992-07-23,410.93,412.08,409.81,412.08,175490000,412.08
-1992-07-22,413.74,413.74,409.95,410.93,190160000,410.93
-1992-07-21,413.75,414.92,413.10,413.76,173760000,413.76
-1992-07-20,415.62,415.62,410.72,413.75,165760000,413.75
-1992-07-17,417.54,417.54,412.96,415.62,192120000,415.62
-1992-07-16,417.04,417.93,414.79,417.54,206900000,417.54
-1992-07-15,417.68,417.81,416.29,417.10,206560000,417.10
-1992-07-14,414.86,417.69,414.33,417.68,195570000,417.68
-1992-07-13,414.62,415.86,413.93,414.87,148870000,414.87
-1992-07-10,414.23,415.88,413.34,414.62,164770000,414.62
-1992-07-09,410.28,414.69,410.26,414.23,207980000,414.23
-1992-07-08,409.15,410.28,407.20,410.28,201030000,410.28
-1992-07-07,413.83,415.33,408.58,409.16,226050000,409.16
-1992-07-06,411.77,413.84,410.46,413.84,186920000,413.84
-1992-07-02,412.88,415.71,410.07,411.77,220200000,411.77
-1992-07-01,408.20,412.88,408.20,412.88,214250000,412.88
-1992-06-30,408.94,409.63,407.85,408.14,195530000,408.14
-1992-06-29,403.47,408.96,403.47,408.94,176750000,408.94
-1992-06-26,403.12,403.51,401.94,403.45,154430000,403.45
-1992-06-25,403.83,405.53,402.01,403.12,182960000,403.12
-1992-06-24,404.05,404.76,403.26,403.84,193870000,403.84
-1992-06-23,403.40,405.41,403.40,404.04,189190000,404.04
-1992-06-22,403.64,403.64,399.92,403.40,169370000,403.40
-1992-06-19,400.96,404.23,400.96,403.67,233460000,403.67
-1992-06-18,402.26,402.68,400.51,400.96,225600000,400.96
-1992-06-17,408.33,408.33,401.98,402.26,227760000,402.26
-1992-06-16,410.29,411.40,408.32,408.32,194400000,408.32
-1992-06-15,409.76,411.68,408.13,410.29,164080000,410.29
-1992-06-12,409.08,411.86,409.08,409.76,181860000,409.76
-1992-06-11,407.25,409.05,406.11,409.05,204780000,409.05
-1992-06-10,410.06,410.10,406.81,407.25,210750000,407.25
-1992-06-09,413.40,413.56,409.30,410.06,191170000,410.06
-1992-06-08,413.48,413.95,412.03,413.36,161240000,413.36
-1992-06-05,413.26,413.85,410.97,413.48,199050000,413.48
-1992-06-04,414.60,414.98,412.97,413.26,204450000,413.26
-1992-06-03,413.50,416.54,413.04,414.59,215770000,414.59
-1992-06-02,417.30,417.30,413.50,413.50,202560000,413.50
-1992-06-01,415.35,417.30,412.44,417.30,180800000,417.30
-1992-05-29,416.74,418.36,415.35,415.35,204010000,415.35
-1992-05-28,412.17,416.77,411.81,416.74,195300000,416.74
-1992-05-27,411.41,412.68,411.06,412.17,182240000,412.17
-1992-05-26,414.02,414.02,410.23,411.41,197700000,411.41
-1992-05-22,412.61,414.82,412.60,414.02,146710000,414.02
-1992-05-21,415.40,415.41,411.57,412.60,184860000,412.60
-1992-05-20,416.37,416.83,415.37,415.39,198180000,415.39
-1992-05-19,412.82,416.51,412.26,416.37,187130000,416.37
-1992-05-18,410.13,413.34,410.13,412.81,151380000,412.81
-1992-05-15,413.14,413.14,409.85,410.09,192740000,410.09
-1992-05-14,416.45,416.52,411.82,413.14,189150000,413.14
-1992-05-13,416.29,417.04,415.86,416.45,175850000,416.45
-1992-05-12,418.49,418.68,414.69,416.29,192870000,416.29
-1992-05-11,416.05,418.75,416.05,418.49,155730000,418.49
-1992-05-08,415.87,416.85,414.41,416.05,168720000,416.05
-1992-05-07,416.79,416.84,415.38,415.85,168980000,415.85
-1992-05-06,416.84,418.48,416.40,416.79,199950000,416.79
-1992-05-05,416.91,418.53,415.77,416.84,200550000,416.84
-1992-05-04,412.54,417.84,412.54,416.91,174540000,416.91
-1992-05-01,414.95,415.21,409.87,412.53,177390000,412.53
-1992-04-30,412.02,414.95,412.02,414.95,223590000,414.95
-1992-04-29,409.11,412.31,409.11,412.02,206780000,412.02
-1992-04-28,408.45,409.69,406.33,409.11,189220000,409.11
-1992-04-27,409.03,409.60,407.64,408.45,172900000,408.45
-1992-04-24,411.60,412.48,408.74,409.02,199310000,409.02
-1992-04-23,409.81,411.60,406.86,411.60,235860000,411.60
-1992-04-22,410.26,411.30,409.23,409.81,218850000,409.81
-1992-04-21,410.16,411.09,408.20,410.26,214460000,410.26
-1992-04-20,416.05,416.05,407.93,410.18,191980000,410.18
-1992-04-16,416.28,416.28,413.40,416.04,233230000,416.04
-1992-04-15,412.39,416.28,412.39,416.28,229710000,416.28
-1992-04-14,406.08,413.86,406.08,412.39,231130000,412.39
-1992-04-13,404.28,406.08,403.90,406.08,143140000,406.08
-1992-04-10,400.59,405.12,400.59,404.29,199530000,404.29
-1992-04-09,394.50,401.04,394.50,400.64,231430000,400.64
-1992-04-08,398.05,398.05,392.41,394.50,249280000,394.50
-1992-04-07,405.59,405.75,397.97,398.06,205210000,398.06
-1992-04-06,401.54,405.93,401.52,405.59,179910000,405.59
-1992-04-03,400.50,401.59,398.21,401.55,188580000,401.55
-1992-04-02,404.17,404.63,399.28,400.50,185210000,400.50
-1992-04-01,403.67,404.50,400.75,404.23,186530000,404.23
-1992-03-31,403.00,405.21,402.22,403.69,182360000,403.69
-1992-03-30,403.50,404.30,402.97,403.00,133990000,403.00
-1992-03-27,407.86,407.86,402.87,403.50,166140000,403.50
-1992-03-26,407.52,409.44,406.75,407.86,176720000,407.86
-1992-03-25,408.88,409.87,407.52,407.52,192650000,407.52
-1992-03-24,409.91,411.43,407.99,408.88,191610000,408.88
-1992-03-23,411.29,411.29,408.87,409.91,157050000,409.91
-1992-03-20,409.80,411.30,408.53,411.30,246210000,411.30
-1992-03-19,409.15,410.57,409.12,409.80,197310000,409.80
-1992-03-18,409.58,410.84,408.23,409.15,191720000,409.15
-1992-03-17,406.39,409.72,406.39,409.58,187250000,409.58
-1992-03-16,405.85,406.40,403.55,406.39,155950000,406.39
-1992-03-13,403.92,406.69,403.92,405.84,177900000,405.84
-1992-03-12,404.03,404.72,401.94,403.89,180310000,403.89
-1992-03-11,406.88,407.02,402.64,404.03,186330000,404.03
-1992-03-10,405.21,409.16,405.21,406.89,203000000,406.89
-1992-03-09,404.45,405.64,404.25,405.21,160650000,405.21
-1992-03-06,406.51,407.51,403.65,404.44,185190000,404.44
-1992-03-05,409.33,409.33,405.42,406.51,205770000,406.51
-1992-03-04,412.86,413.27,409.33,409.33,206860000,409.33
-1992-03-03,412.45,413.78,411.88,412.85,200890000,412.85
-1992-03-02,412.68,413.74,411.52,412.45,180380000,412.45
-1992-02-28,413.86,416.07,411.80,412.70,202320000,412.70
-1992-02-27,415.35,415.99,413.47,413.86,215110000,413.86
-1992-02-26,410.48,415.35,410.48,415.35,241500000,415.35
-1992-02-25,412.27,412.27,408.02,410.45,210350000,410.45
-1992-02-24,411.46,412.94,410.34,412.27,177540000,412.27
-1992-02-21,413.90,414.26,409.72,411.43,261650000,411.43
-1992-02-20,408.26,413.90,408.26,413.90,270650000,413.90
-1992-02-19,407.38,408.70,406.54,408.26,232970000,408.26
-1992-02-18,412.48,413.27,406.34,407.38,234300000,407.38
-1992-02-14,413.69,413.84,411.20,412.48,215110000,412.48
-1992-02-13,417.13,417.77,412.07,413.69,229360000,413.69
-1992-02-12,413.77,418.08,413.36,417.13,237630000,417.13
-1992-02-11,413.77,414.38,412.24,413.76,200130000,413.76
-1992-02-10,411.07,413.77,411.07,413.77,184410000,413.77
-1992-02-07,413.82,415.29,408.04,411.09,231120000,411.09
-1992-02-06,413.87,414.55,411.93,413.82,242050000,413.82
-1992-02-05,413.88,416.17,413.18,413.84,262440000,413.84
-1992-02-04,409.60,413.85,409.28,413.85,233680000,413.85
-1992-02-03,408.79,409.95,407.45,409.53,185290000,409.53
-1992-01-31,411.65,412.63,408.64,408.78,197620000,408.78
-1992-01-30,410.34,412.17,409.26,411.62,194680000,411.62
-1992-01-29,414.96,417.83,409.17,410.34,248940000,410.34
-1992-01-28,414.98,416.41,414.54,414.96,218400000,414.96
-1992-01-27,415.44,416.84,414.48,414.99,190970000,414.99
-1992-01-24,414.96,417.27,414.29,415.48,213630000,415.48
-1992-01-23,418.13,419.78,414.36,414.96,234580000,414.96
-1992-01-22,412.65,418.13,412.49,418.13,228140000,418.13
-1992-01-21,416.36,416.39,411.32,412.64,218750000,412.64
-1992-01-20,418.86,418.86,415.80,416.36,180900000,416.36
-1992-01-17,418.20,419.45,416.00,418.86,287370000,418.86
-1992-01-16,420.77,420.85,415.37,418.21,336240000,418.21
-1992-01-15,420.45,421.18,418.79,420.77,314830000,420.77
-1992-01-14,414.34,420.44,414.32,420.44,265900000,420.44
-1992-01-13,415.05,415.36,413.54,414.34,200270000,414.34
-1992-01-10,417.62,417.62,413.31,415.10,236130000,415.10
-1992-01-09,418.09,420.50,415.85,417.61,292350000,417.61
-1992-01-08,417.36,420.23,415.02,418.10,290750000,418.10
-1992-01-07,417.96,417.96,415.20,417.40,252780000,417.40
-1992-01-06,419.31,419.44,416.92,417.96,251210000,417.96
-1992-01-03,417.27,419.79,416.16,419.34,224270000,419.34
-1992-01-02,417.03,417.27,411.04,417.26,207570000,417.26
-1991-12-31,415.14,418.32,412.73,417.09,247080000,417.09
-1991-12-30,406.49,415.14,406.49,415.14,245600000,415.14
-1991-12-27,404.84,406.58,404.59,406.46,157950000,406.46
-1991-12-26,399.33,404.92,399.31,404.84,149230000,404.84
-1991-12-24,396.82,401.79,396.82,399.33,162640000,399.33
-1991-12-23,387.05,397.44,386.96,396.82,228900000,396.82
-1991-12-20,382.52,388.24,382.52,387.04,316140000,387.04
-1991-12-19,383.46,383.46,380.64,382.52,199330000,382.52
-1991-12-18,382.74,383.51,380.88,383.48,192410000,383.48
-1991-12-17,384.46,385.05,382.60,382.74,191310000,382.74
-1991-12-16,384.48,385.84,384.37,384.46,173080000,384.46
-1991-12-13,381.55,385.04,381.55,384.47,194470000,384.47
-1991-12-12,377.70,381.62,377.70,381.55,192950000,381.55
-1991-12-11,377.90,379.42,374.78,377.70,207430000,377.70
-1991-12-10,378.26,379.57,376.64,377.90,192920000,377.90
-1991-12-09,379.09,381.42,377.67,378.26,174760000,378.26
-1991-12-06,377.39,382.39,375.41,379.10,199160000,379.10
-1991-12-05,380.07,380.07,376.58,377.39,166350000,377.39
-1991-12-04,380.96,381.51,378.07,380.07,187960000,380.07
-1991-12-03,381.40,381.48,379.92,380.96,187230000,380.96
-1991-12-02,375.11,381.40,371.36,381.40,188410000,381.40
-1991-11-29,376.55,376.55,374.65,375.22,76830000,375.22
-1991-11-27,377.96,378.11,375.98,376.55,167720000,376.55
-1991-11-26,375.34,378.29,371.63,377.96,213810000,377.96
-1991-11-25,376.14,377.07,374.00,375.34,175870000,375.34
-1991-11-22,380.05,380.05,374.52,376.14,188240000,376.14
-1991-11-21,378.53,381.12,377.41,380.06,195130000,380.06
-1991-11-20,379.42,381.51,377.84,378.53,192760000,378.53
-1991-11-19,385.24,385.24,374.90,379.42,243880000,379.42
-1991-11-18,382.62,385.40,379.70,385.24,241940000,385.24
-1991-11-15,397.15,397.16,382.62,382.62,239690000,382.62
-1991-11-14,397.41,398.22,395.85,397.15,200030000,397.15
-1991-11-13,396.74,397.42,394.01,397.41,184480000,397.41
-1991-11-12,393.12,397.13,393.12,396.74,198610000,396.74
-1991-11-11,392.90,393.57,392.32,393.12,128920000,393.12
-1991-11-08,393.72,396.43,392.42,392.89,183260000,392.89
-1991-11-07,389.97,393.72,389.97,393.72,205480000,393.72
-1991-11-06,388.71,389.97,387.58,389.97,167440000,389.97
-1991-11-05,390.28,392.17,388.19,388.71,172090000,388.71
-1991-11-04,391.29,391.29,388.09,390.28,155660000,390.28
-1991-11-01,392.46,395.10,389.67,391.32,205780000,391.32
-1991-10-31,392.96,392.96,391.58,392.45,179680000,392.45
-1991-10-30,391.48,393.11,390.78,392.96,195400000,392.96
-1991-10-29,389.52,391.70,386.88,391.48,192810000,391.48
-1991-10-28,384.20,389.52,384.20,389.52,161630000,389.52
-1991-10-25,385.07,386.13,382.97,384.20,167310000,384.20
-1991-10-24,387.94,388.32,383.45,385.07,179040000,385.07
-1991-10-23,387.83,389.08,386.52,387.94,185390000,387.94
-1991-10-22,390.02,391.20,387.40,387.83,194160000,387.83
-1991-10-21,392.49,392.49,388.96,390.02,154140000,390.02
-1991-10-18,391.92,392.80,391.77,392.50,204090000,392.50
-1991-10-17,392.79,393.81,390.32,391.92,206030000,391.92
-1991-10-16,391.01,393.29,390.14,392.80,225380000,392.80
-1991-10-15,386.47,391.50,385.95,391.01,213540000,391.01
-1991-10-14,381.45,386.47,381.45,386.47,130120000,386.47
-1991-10-11,380.55,381.46,379.90,381.45,148850000,381.45
-1991-10-10,376.80,380.55,376.11,380.55,164240000,380.55
-1991-10-09,380.57,380.57,376.35,376.80,186710000,376.80
-1991-10-08,379.50,381.23,379.18,380.67,177120000,380.67
-1991-10-07,381.22,381.27,379.07,379.50,148430000,379.50
-1991-10-04,384.47,385.19,381.24,381.25,164000000,381.25
-1991-10-03,388.23,388.23,384.47,384.47,174360000,384.47
-1991-10-02,389.20,390.03,387.62,388.26,166380000,388.26
-1991-10-01,387.86,389.56,387.86,389.20,163570000,389.20
-1991-09-30,385.91,388.29,384.32,387.86,146780000,387.86
-1991-09-27,386.49,389.09,384.87,385.90,160660000,385.90
-1991-09-26,386.87,388.39,385.30,386.49,158980000,386.49
-1991-09-25,387.72,388.25,385.99,386.88,153910000,386.88
-1991-09-24,385.92,388.13,384.46,387.71,170350000,387.71
-1991-09-23,387.90,388.55,385.76,385.92,145940000,385.92
-1991-09-20,387.56,388.82,386.49,387.92,254520000,387.92
-1991-09-19,386.94,389.42,386.27,387.56,211010000,387.56
-1991-09-18,385.49,386.94,384.28,386.94,141340000,386.94
-1991-09-17,385.78,387.13,384.97,385.50,168340000,385.50
-1991-09-16,383.59,385.79,382.77,385.78,172560000,385.78
-1991-09-13,387.16,387.95,382.85,383.59,169630000,383.59
-1991-09-12,385.09,387.34,385.09,387.34,160420000,387.34
-1991-09-11,384.56,385.60,383.59,385.09,148000000,385.09
-1991-09-10,388.57,388.63,383.78,384.56,143390000,384.56
-1991-09-09,389.11,389.34,387.88,388.57,115100000,388.57
-1991-09-06,389.14,390.71,387.36,389.10,166560000,389.10
-1991-09-05,389.97,390.97,388.49,389.14,162380000,389.14
-1991-09-04,392.15,392.62,388.68,389.97,157520000,389.97
-1991-09-03,395.43,397.62,392.10,392.15,153600000,392.15
-1991-08-30,396.47,396.47,393.60,395.43,143440000,395.43
-1991-08-29,396.65,396.82,395.14,396.47,154150000,396.47
-1991-08-28,393.06,396.64,393.05,396.64,169890000,396.64
-1991-08-27,393.85,393.87,391.77,393.06,144670000,393.06
-1991-08-26,394.17,394.39,392.75,393.85,130570000,393.85
-1991-08-23,391.33,395.34,390.69,394.17,188870000,394.17
-1991-08-22,390.59,391.98,390.21,391.33,173090000,391.33
-1991-08-21,379.55,390.59,379.55,390.59,232690000,390.59
-1991-08-20,376.47,380.35,376.47,379.43,184260000,379.43
-1991-08-19,385.58,385.58,374.09,376.47,230350000,376.47
-1991-08-16,389.33,390.41,383.16,385.58,189480000,385.58
-1991-08-15,389.91,391.92,389.29,389.33,174690000,389.33
-1991-08-14,389.62,391.85,389.13,389.90,124230000,389.90
-1991-08-13,388.02,392.12,388.02,389.62,212760000,389.62
-1991-08-12,387.11,388.17,385.90,388.02,145440000,388.02
-1991-08-09,389.32,389.89,387.04,387.12,143740000,387.12
-1991-08-08,390.56,391.80,388.15,389.32,163890000,389.32
-1991-08-07,390.62,391.59,389.86,390.56,172220000,390.56
-1991-08-06,385.06,390.80,384.29,390.62,174460000,390.62
-1991-08-05,387.17,387.17,384.48,385.06,128050000,385.06
-1991-08-02,387.12,389.56,386.05,387.18,162270000,387.18
-1991-08-01,387.81,387.95,386.48,387.12,170610000,387.12
-1991-07-31,386.69,387.81,386.19,387.81,166830000,387.81
-1991-07-30,383.15,386.92,383.15,386.69,169010000,386.69
-1991-07-29,380.93,383.15,380.45,383.15,136000000,383.15
-1991-07-26,380.96,381.76,379.81,380.93,127760000,380.93
-1991-07-25,378.64,381.13,378.15,380.96,145800000,380.96
-1991-07-24,379.42,380.46,378.29,378.64,158700000,378.64
-1991-07-23,382.88,384.86,379.39,379.42,160190000,379.42
-1991-07-22,384.21,384.55,381.84,382.88,149050000,382.88
-1991-07-19,385.38,385.83,383.65,384.22,190700000,384.22
-1991-07-18,381.18,385.37,381.18,385.37,200930000,385.37
-1991-07-17,381.50,382.86,381.13,381.18,195460000,381.18
-1991-07-16,382.39,382.94,380.80,381.54,182990000,381.54
-1991-07-15,380.28,383.00,380.24,382.39,161750000,382.39
-1991-07-12,376.97,381.41,375.79,380.25,174770000,380.25
-1991-07-11,375.73,377.68,375.51,376.97,157930000,376.97
-1991-07-10,376.11,380.35,375.20,375.74,178290000,375.74
-1991-07-09,377.94,378.58,375.37,376.11,151820000,376.11
-1991-07-08,374.09,377.94,370.92,377.94,138330000,377.94
-1991-07-05,373.34,375.51,372.17,374.08,69910000,374.08
-1991-07-03,377.47,377.47,372.08,373.33,140580000,373.33
-1991-07-02,377.92,377.93,376.62,377.47,157290000,377.47
-1991-07-01,371.18,377.92,371.18,377.92,167480000,377.92
-1991-06-28,374.40,374.40,367.98,371.16,163770000,371.16
-1991-06-27,371.59,374.40,371.59,374.40,163080000,374.40
-1991-06-26,370.65,372.73,368.34,371.59,187170000,371.59
-1991-06-25,370.94,372.62,369.56,370.65,155710000,370.65
-1991-06-24,377.74,377.74,370.73,370.94,137940000,370.94
-1991-06-21,375.42,377.75,375.33,377.75,193310000,377.75
-1991-06-20,375.09,376.29,373.87,375.42,163980000,375.42
-1991-06-19,378.57,378.57,374.36,375.09,156440000,375.09
-1991-06-18,380.13,381.83,377.99,378.59,155200000,378.59
-1991-06-17,382.30,382.31,380.13,380.13,134230000,380.13
-1991-06-14,377.63,382.30,377.63,382.29,167950000,382.29
-1991-06-13,376.65,377.90,376.08,377.63,145650000,377.63
-1991-06-12,381.05,381.05,374.46,376.65,166140000,376.65
-1991-06-11,378.57,381.63,378.57,381.05,161610000,381.05
-1991-06-10,379.43,379.75,377.95,378.57,127720000,378.57
-1991-06-07,383.63,383.63,378.76,379.43,169570000,379.43
-1991-06-06,385.10,385.85,383.13,383.63,168260000,383.63
-1991-06-05,387.74,388.23,384.45,385.09,186560000,385.09
-1991-06-04,388.06,388.06,385.14,387.74,180450000,387.74
-1991-06-03,389.81,389.81,386.97,388.06,173990000,388.06
-1991-05-31,386.96,389.85,385.01,389.83,232040000,389.83
-1991-05-30,382.79,388.17,382.50,386.96,234440000,386.96
-1991-05-29,381.94,383.66,381.37,382.79,188450000,382.79
-1991-05-28,377.49,382.10,377.12,381.94,162350000,381.94
-1991-05-24,374.97,378.08,374.97,377.49,124640000,377.49
-1991-05-23,376.19,378.07,373.55,374.96,173080000,374.96
-1991-05-22,375.35,376.50,374.40,376.19,159310000,376.19
-1991-05-21,372.28,376.66,372.28,375.35,176620000,375.35
-1991-05-20,372.39,373.65,371.26,372.28,109510000,372.28
-1991-05-17,372.19,373.01,369.44,372.39,174210000,372.39
-1991-05-16,368.57,372.51,368.57,372.19,154460000,372.19
-1991-05-15,371.55,372.47,365.83,368.57,193110000,368.57
-1991-05-14,375.51,375.53,370.82,371.62,207890000,371.62
-1991-05-13,375.74,377.02,374.62,376.76,129620000,376.76
-1991-05-10,383.26,383.91,375.61,375.74,172730000,375.74
-1991-05-09,378.51,383.56,378.51,383.25,180460000,383.25
-1991-05-08,377.33,379.26,376.21,378.51,157240000,378.51
-1991-05-07,380.08,380.91,377.31,377.32,153290000,377.32
-1991-05-06,380.78,380.78,377.86,380.08,129110000,380.08
-1991-05-03,380.52,381.00,378.82,380.80,158150000,380.80
-1991-05-02,380.29,382.14,379.82,380.52,187090000,380.52
-1991-05-01,375.35,380.46,375.27,380.29,181900000,380.29
-1991-04-30,373.66,377.86,373.01,375.34,206230000,375.34
-1991-04-29,379.01,380.96,373.66,373.66,149860000,373.66
-1991-04-26,379.25,380.11,376.77,379.02,154550000,379.02
-1991-04-25,382.89,382.89,378.43,379.25,166940000,379.25
-1991-04-24,381.76,383.02,379.99,382.76,166800000,382.76
-1991-04-23,380.95,383.55,379.67,381.76,167840000,381.76
-1991-04-22,384.19,384.19,380.16,380.95,164410000,380.95
-1991-04-19,388.46,388.46,383.90,384.20,195520000,384.20
-1991-04-18,390.45,390.97,388.13,388.46,217410000,388.46
-1991-04-17,387.62,391.26,387.30,390.45,246930000,390.45
-1991-04-16,381.19,387.62,379.64,387.62,214480000,387.62
-1991-04-15,380.40,382.32,378.78,381.19,161800000,381.19
-1991-04-12,377.65,381.07,376.89,380.40,198610000,380.40
-1991-04-11,373.15,379.53,373.15,377.63,196570000,377.63
-1991-04-10,373.57,374.83,371.21,373.15,167940000,373.15
-1991-04-09,378.65,379.02,373.11,373.56,169940000,373.56
-1991-04-08,375.35,378.76,374.69,378.66,138580000,378.66
-1991-04-05,379.78,381.12,374.15,375.36,187410000,375.36
-1991-04-04,378.94,381.88,377.05,379.77,198120000,379.77
-1991-04-03,379.50,381.56,378.49,378.94,213720000,378.94
-1991-04-02,371.30,379.50,371.30,379.50,189530000,379.50
-1991-04-01,375.22,375.22,370.27,371.30,144010000,371.30
-1991-03-28,375.35,376.60,374.40,375.22,150750000,375.22
-1991-03-27,376.28,378.48,374.73,375.35,201830000,375.35
-1991-03-26,369.83,376.30,369.37,376.30,198720000,376.30
-1991-03-25,367.48,371.31,367.46,369.83,153920000,369.83
-1991-03-22,366.58,368.22,365.58,367.48,160890000,367.48
-1991-03-21,367.94,371.01,366.51,366.58,199830000,366.58
-1991-03-20,366.59,368.85,365.80,367.92,196810000,367.92
-1991-03-19,372.11,372.11,366.54,366.59,177070000,366.59
-1991-03-18,373.59,374.09,369.46,372.11,163100000,372.11
-1991-03-15,373.50,374.58,370.21,373.59,237650000,373.59
-1991-03-14,374.59,378.28,371.76,373.50,232070000,373.50
-1991-03-13,370.03,374.65,370.03,374.57,176000000,374.57
-1991-03-12,372.96,374.35,369.55,370.03,176440000,370.03
-1991-03-11,374.94,375.10,372.52,372.96,161600000,372.96
-1991-03-08,375.91,378.69,374.43,374.95,206850000,374.95
-1991-03-07,376.16,377.49,375.58,375.91,197060000,375.91
-1991-03-06,376.72,379.66,375.02,376.17,262290000,376.17
-1991-03-05,369.33,377.89,369.33,376.72,253700000,376.72
-1991-03-04,370.47,371.99,369.07,369.33,199830000,369.33
-1991-03-01,367.07,370.47,363.73,370.47,221510000,370.47
-1991-02-28,367.73,369.91,365.95,367.07,223010000,367.07
-1991-02-27,362.81,368.38,362.81,367.74,211410000,367.74
-1991-02-26,367.26,367.26,362.19,362.81,164170000,362.81
-1991-02-25,365.65,370.19,365.16,367.26,193820000,367.26
-1991-02-22,364.97,370.96,364.23,365.65,218760000,365.65
-1991-02-21,365.14,366.79,364.50,364.97,180770000,364.97
-1991-02-20,369.37,369.37,364.38,365.14,185680000,365.14
-1991-02-19,369.06,370.11,367.05,369.39,189900000,369.39
-1991-02-15,364.23,369.49,364.23,369.06,228480000,369.06
-1991-02-14,369.02,370.26,362.77,364.22,230750000,364.22
-1991-02-13,365.50,369.49,364.64,369.02,209960000,369.02
-1991-02-12,368.58,370.54,365.50,365.50,256160000,365.50
-1991-02-11,359.36,368.58,359.32,368.58,265350000,368.58
-1991-02-08,356.52,359.35,356.02,359.35,187830000,359.35
-1991-02-07,358.07,363.43,355.53,356.52,292190000,356.52
-1991-02-06,351.26,358.07,349.58,358.07,276940000,358.07
-1991-02-05,348.34,351.84,347.21,351.26,290570000,351.26
-1991-02-04,343.05,348.71,342.96,348.34,250750000,348.34
-1991-02-01,343.91,344.90,340.37,343.05,246670000,343.05
-1991-01-31,340.92,343.93,340.47,343.93,204520000,343.93
-1991-01-30,335.80,340.91,335.71,340.91,226790000,340.91
-1991-01-29,336.03,336.03,334.26,335.84,155740000,335.84
-1991-01-28,336.06,337.41,335.81,336.03,141270000,336.03
-1991-01-25,334.78,336.92,334.20,336.07,194350000,336.07
-1991-01-24,330.21,335.83,330.19,334.78,223150000,334.78
-1991-01-23,328.30,331.04,327.93,330.21,168620000,330.21
-1991-01-22,331.06,331.26,327.83,328.31,177060000,328.31
-1991-01-21,332.23,332.23,328.87,331.06,136290000,331.06
-1991-01-18,327.93,332.23,327.08,332.23,226770000,332.23
-1991-01-17,316.25,327.97,316.25,327.97,319080000,327.97
-1991-01-16,313.73,316.94,312.94,316.17,134560000,316.17
-1991-01-15,312.49,313.73,311.84,313.73,110000000,313.73
-1991-01-14,315.23,315.23,309.35,312.49,120830000,312.49
-1991-01-11,314.53,315.24,313.59,315.23,123050000,315.23
-1991-01-10,311.51,314.77,311.51,314.53,124510000,314.53
-1991-01-09,314.90,320.73,310.93,311.49,191100000,311.49
-1991-01-08,315.44,316.97,313.79,314.90,143390000,314.90
-1991-01-07,320.97,320.97,315.44,315.44,130610000,315.44
-1991-01-04,321.91,322.35,318.87,321.00,140820000,321.00
-1991-01-03,326.46,326.53,321.90,321.91,141450000,321.91
-1991-01-02,330.20,330.75,326.45,326.45,126280000,326.45
-1990-12-31,328.71,330.23,327.50,330.22,114130000,330.22
-1990-12-28,328.29,328.72,327.24,328.72,111030000,328.72
-1990-12-27,330.85,331.04,328.23,328.29,102900000,328.29
-1990-12-26,329.89,331.69,329.89,330.85,78730000,330.85
-1990-12-24,331.74,331.74,329.16,329.90,57200000,329.90
-1990-12-21,330.12,332.47,330.12,331.75,233400000,331.75
-1990-12-20,330.20,330.74,326.94,330.12,174700000,330.12
-1990-12-19,330.04,330.80,329.39,330.20,180380000,330.20
-1990-12-18,326.02,330.43,325.75,330.05,176460000,330.05
-1990-12-17,326.82,326.82,324.46,326.02,118560000,326.02
-1990-12-14,329.34,329.34,325.16,326.82,151010000,326.82
-1990-12-13,330.14,330.58,328.77,329.34,162110000,329.34
-1990-12-12,326.44,330.36,326.44,330.19,182270000,330.19
-1990-12-11,328.88,328.88,325.65,326.44,145330000,326.44
-1990-12-10,327.75,328.97,326.15,328.89,138650000,328.89
-1990-12-07,329.09,329.39,326.39,327.75,164950000,327.75
-1990-12-06,329.94,333.98,328.37,329.07,256380000,329.07
-1990-12-05,326.36,329.92,325.66,329.92,205820000,329.92
-1990-12-04,324.11,326.77,321.97,326.35,185820000,326.35
-1990-12-03,322.23,324.90,322.23,324.10,177000000,324.10
-1990-11-30,316.42,323.02,315.42,322.22,192350000,322.22
-1990-11-29,317.95,317.95,315.03,316.42,140920000,316.42
-1990-11-28,318.11,319.96,317.62,317.95,145490000,317.95
-1990-11-27,316.51,318.69,315.80,318.10,147590000,318.10
-1990-11-26,315.08,316.51,311.48,316.51,131540000,316.51
-1990-11-23,316.03,317.30,315.06,315.10,63350000,315.10
-1990-11-21,315.31,316.15,312.42,316.03,140660000,316.03
-1990-11-20,319.34,319.34,315.31,315.31,161170000,315.31
-1990-11-19,317.15,319.39,317.15,319.34,140950000,319.34
-1990-11-16,317.02,318.80,314.99,317.12,165440000,317.12
-1990-11-15,320.40,320.40,316.13,317.02,151370000,317.02
-1990-11-14,317.66,321.70,317.23,320.40,179310000,320.40
-1990-11-13,319.48,319.48,317.26,317.67,160240000,317.67
-1990-11-12,313.74,319.77,313.73,319.48,161390000,319.48
-1990-11-09,307.61,313.78,307.61,313.74,145160000,313.74
-1990-11-08,306.01,309.77,305.03,307.61,155570000,307.61
-1990-11-07,311.62,311.62,305.79,306.01,149130000,306.01
-1990-11-06,314.59,314.76,311.43,311.62,142660000,311.62
-1990-11-05,311.85,314.61,311.41,314.59,147510000,314.59
-1990-11-02,307.02,311.94,306.88,311.85,168700000,311.85
-1990-11-01,303.99,307.27,301.61,307.02,159270000,307.02
-1990-10-31,304.06,305.70,302.33,304.00,156060000,304.00
-1990-10-30,301.88,304.36,299.44,304.06,153450000,304.06
-1990-10-29,304.74,307.41,300.69,301.88,133980000,301.88
-1990-10-26,310.17,310.17,304.71,304.71,130190000,304.71
-1990-10-25,312.60,313.71,309.70,310.17,141460000,310.17
-1990-10-24,312.36,313.51,310.74,312.60,149290000,312.60
-1990-10-23,314.76,315.06,312.06,312.36,146300000,312.36
-1990-10-22,312.48,315.83,310.47,314.76,152650000,314.76
-1990-10-19,305.74,312.48,305.74,312.48,221480000,312.48
-1990-10-18,298.75,305.74,298.75,305.74,204110000,305.74
-1990-10-17,298.92,301.50,297.79,298.76,161260000,298.76
-1990-10-16,303.23,304.34,298.12,298.92,149570000,298.92
-1990-10-15,300.03,304.79,296.41,303.23,164980000,303.23
-1990-10-12,295.45,301.68,295.22,300.03,187940000,300.03
-1990-10-11,300.39,301.45,294.51,295.46,180060000,295.46
-1990-10-10,305.09,306.43,299.21,300.39,169190000,300.39
-1990-10-09,313.46,313.46,305.09,305.10,145610000,305.10
-1990-10-08,311.50,315.03,311.50,313.48,99470000,313.48
-1990-10-05,312.69,314.79,305.76,311.50,153380000,311.50
-1990-10-04,311.40,313.40,308.59,312.69,145410000,312.69
-1990-10-03,315.21,316.26,310.70,311.40,135490000,311.40
-1990-10-02,314.94,319.69,314.94,315.21,188360000,315.21
-1990-10-01,306.10,314.94,306.10,314.94,202210000,314.94
-1990-09-28,300.97,306.05,295.98,306.05,201010000,306.05
-1990-09-27,305.06,307.47,299.10,300.97,182690000,300.97
-1990-09-26,308.26,308.28,303.05,305.06,155570000,305.06
-1990-09-25,305.46,308.27,304.23,308.26,155940000,308.26
-1990-09-24,311.30,311.30,303.58,304.59,164070000,304.59
-1990-09-21,311.53,312.17,307.98,311.32,201050000,311.32
-1990-09-20,316.60,316.60,310.55,311.48,145100000,311.48
-1990-09-19,318.60,319.35,316.25,316.60,147530000,316.60
-1990-09-18,317.77,318.85,314.27,318.60,141130000,318.60
-1990-09-17,316.83,318.05,315.21,317.77,110600000,317.77
-1990-09-14,318.65,318.65,314.76,316.83,133390000,316.83
-1990-09-13,322.51,322.51,318.02,318.65,123390000,318.65
-1990-09-12,321.04,322.55,319.60,322.54,129890000,322.54
-1990-09-11,321.63,322.18,319.60,321.04,113220000,321.04
-1990-09-10,323.42,326.53,320.31,321.63,119730000,321.63
-1990-09-07,320.46,324.18,319.71,323.40,123800000,323.40
-1990-09-06,324.39,324.39,319.37,320.46,125620000,320.46
-1990-09-05,323.09,324.52,320.99,324.39,120610000,324.39
-1990-09-04,322.56,323.09,319.11,323.09,92940000,323.09
-1990-08-31,318.71,322.57,316.59,322.56,96480000,322.56
-1990-08-30,324.19,324.57,317.82,318.71,120890000,318.71
-1990-08-29,321.34,325.83,320.87,324.19,134240000,324.19
-1990-08-28,321.44,322.20,320.25,321.34,127660000,321.34
-1990-08-27,311.55,323.11,311.55,321.44,160150000,321.44
-1990-08-24,307.06,311.65,306.18,311.51,199040000,311.51
-1990-08-23,316.55,316.55,306.56,307.06,250440000,307.06
-1990-08-22,321.86,324.15,316.55,316.55,175550000,316.55
-1990-08-21,328.51,328.51,318.78,321.86,194630000,321.86
-1990-08-20,327.83,329.90,327.07,328.51,129630000,328.51
-1990-08-17,332.36,332.36,324.63,327.83,212560000,327.83
-1990-08-16,340.06,340.06,332.39,332.39,138850000,332.39
-1990-08-15,339.39,341.92,339.38,340.06,136710000,340.06
-1990-08-14,338.84,340.96,337.19,339.39,130320000,339.39
-1990-08-13,335.39,338.88,332.02,338.84,122820000,338.84
-1990-08-10,339.90,339.90,334.22,335.52,145340000,335.52
-1990-08-09,338.35,340.56,337.56,339.94,155810000,339.94
-1990-08-08,334.83,339.21,334.83,338.35,190400000,338.35
-1990-08-07,334.43,338.63,332.22,334.83,231580000,334.83
-1990-08-06,344.86,344.86,333.27,334.43,240400000,334.43
-1990-08-03,351.48,351.48,338.20,344.86,295880000,344.86
-1990-08-02,355.52,355.52,349.73,351.48,253090000,351.48
-1990-08-01,356.15,357.35,353.82,355.52,178260000,355.52
-1990-07-31,355.55,357.54,353.91,356.15,175380000,356.15
-1990-07-30,353.44,355.55,351.15,355.55,146470000,355.55
-1990-07-27,355.90,355.94,352.14,353.44,149070000,353.44
-1990-07-26,357.09,357.47,353.95,355.91,155040000,355.91
-1990-07-25,355.79,357.52,354.80,357.09,163530000,357.09
-1990-07-24,355.31,356.09,351.46,355.79,181920000,355.79
-1990-07-23,361.61,361.61,350.09,355.31,209030000,355.31
-1990-07-20,365.32,366.64,361.58,361.61,177810000,361.61
-1990-07-19,364.22,365.32,361.29,365.32,161990000,365.32
-1990-07-18,367.52,367.52,362.95,364.22,168760000,364.22
-1990-07-17,368.95,369.40,364.99,367.52,176790000,367.52
-1990-07-16,367.31,369.78,367.31,368.95,149430000,368.95
-1990-07-13,365.45,369.68,365.45,367.31,215600000,367.31
-1990-07-12,361.23,365.46,360.57,365.44,213180000,365.44
-1990-07-11,356.49,361.23,356.49,361.23,162220000,361.23
-1990-07-10,359.52,359.74,356.41,356.49,147630000,356.49
-1990-07-09,358.42,360.05,358.11,359.52,119390000,359.52
-1990-07-06,355.69,359.02,354.64,358.42,111730000,358.42
-1990-07-05,360.16,360.16,354.86,355.68,128320000,355.68
-1990-07-03,359.54,360.73,359.44,360.16,130050000,360.16
-1990-07-02,358.02,359.58,357.54,359.54,130200000,359.54
-1990-06-29,357.64,359.09,357.30,358.02,145510000,358.02
-1990-06-28,355.16,357.63,355.16,357.63,136120000,357.63
-1990-06-27,352.06,355.89,351.23,355.14,146620000,355.14
-1990-06-26,352.32,356.09,351.85,352.06,141420000,352.06
-1990-06-25,355.42,356.41,351.91,352.31,133100000,352.31
-1990-06-22,360.52,363.20,355.31,355.43,172570000,355.43
-1990-06-21,359.10,360.88,357.63,360.47,138570000,360.47
-1990-06-20,358.47,359.91,357.00,359.10,137420000,359.10
-1990-06-19,356.88,358.90,356.18,358.47,134930000,358.47
-1990-06-18,362.91,362.91,356.88,356.88,133470000,356.88
-1990-06-15,362.89,363.14,360.71,362.91,205130000,362.91
-1990-06-14,364.90,364.90,361.64,362.90,135770000,362.90
-1990-06-13,366.25,367.09,364.51,364.90,158910000,364.90
-1990-06-12,361.63,367.27,361.15,366.25,157100000,366.25
-1990-06-11,358.71,361.63,357.70,361.63,119550000,361.63
-1990-06-08,363.15,363.49,357.68,358.71,142600000,358.71
-1990-06-07,365.92,365.92,361.60,363.15,160360000,363.15
-1990-06-06,366.64,366.64,364.42,364.96,164030000,364.96
-1990-06-05,367.40,368.78,365.49,366.64,199720000,366.64
-1990-06-04,363.16,367.85,362.43,367.40,175520000,367.40
-1990-06-01,361.26,363.52,361.21,363.16,187860000,363.16
-1990-05-31,360.86,361.84,360.23,361.23,165690000,361.23
-1990-05-30,360.65,362.26,360.00,360.86,199540000,360.86
-1990-05-29,354.58,360.65,354.55,360.65,137410000,360.65
-1990-05-25,358.41,358.41,354.32,354.58,120250000,354.58
-1990-05-24,359.29,359.56,357.87,358.41,155140000,358.41
-1990-05-23,358.43,359.29,356.99,359.29,172330000,359.29
-1990-05-22,358.00,360.50,356.09,358.43,203350000,358.43
-1990-05-21,354.64,359.07,353.78,358.00,166280000,358.00
-1990-05-18,354.47,354.64,352.52,354.64,162520000,354.64
-1990-05-17,354.00,356.92,354.00,354.47,164770000,354.47
-1990-05-16,354.27,354.68,351.95,354.00,159810000,354.00
-1990-05-15,354.75,355.09,352.84,354.28,165730000,354.28
-1990-05-14,352.00,358.41,351.95,354.75,225410000,354.75
-1990-05-11,343.82,352.31,343.82,352.00,234040000,352.00
-1990-05-10,342.87,344.98,342.77,343.82,158460000,343.82
-1990-05-09,342.01,343.08,340.90,342.86,152220000,342.86
-1990-05-08,340.53,342.03,340.17,342.01,144230000,342.01
-1990-05-07,338.39,341.07,338.11,340.53,132760000,340.53
-1990-05-04,335.58,338.46,335.17,338.39,140550000,338.39
-1990-05-03,334.48,337.02,334.47,335.57,145560000,335.57
-1990-05-02,332.25,334.48,332.15,334.48,141610000,334.48
-1990-05-01,330.80,332.83,330.80,332.25,149020000,332.25
-1990-04-30,329.11,331.31,327.76,330.80,122750000,330.80
-1990-04-27,332.92,333.57,328.71,329.11,130630000,329.11
-1990-04-26,332.03,333.76,330.67,332.92,141330000,332.92
-1990-04-25,330.36,332.74,330.36,332.03,133480000,332.03
-1990-04-24,331.05,332.97,329.71,330.36,137360000,330.36
-1990-04-23,335.12,335.12,330.09,331.05,136150000,331.05
-1990-04-20,338.09,338.52,333.41,335.12,174260000,335.12
-1990-04-19,340.72,340.72,337.59,338.09,152930000,338.09
-1990-04-18,344.68,345.33,340.11,340.72,147130000,340.72
-1990-04-17,344.74,345.19,342.06,344.68,127990000,344.68
-1990-04-16,344.34,347.30,344.10,344.74,142810000,344.74
-1990-04-12,341.92,344.79,341.91,344.34,142470000,344.34
-1990-04-11,342.07,343.00,341.26,341.92,141080000,341.92
-1990-04-10,341.37,342.41,340.62,342.07,136020000,342.07
-1990-04-09,340.08,341.83,339.88,341.37,114970000,341.37
-1990-04-06,340.73,341.73,338.94,340.08,137490000,340.08
-1990-04-05,341.09,342.85,340.63,340.73,144170000,340.73
-1990-04-04,343.64,344.12,340.40,341.09,159530000,341.09
-1990-04-03,338.70,343.76,338.70,343.64,154310000,343.64
-1990-04-02,339.94,339.94,336.33,338.70,124360000,338.70
-1990-03-30,340.79,341.41,338.21,339.94,139340000,339.94
-1990-03-29,342.00,342.07,339.77,340.79,132190000,340.79
-1990-03-28,341.50,342.58,340.60,342.00,142300000,342.00
-1990-03-27,337.63,341.50,337.03,341.50,131610000,341.50
-1990-03-26,337.22,339.74,337.22,337.63,116110000,337.63
-1990-03-23,335.69,337.58,335.69,337.22,132070000,337.22
-1990-03-22,339.74,339.77,333.62,335.69,175930000,335.69
-1990-03-21,341.57,342.34,339.56,339.74,130990000,339.74
-1990-03-20,343.53,344.49,340.87,341.57,177320000,341.57
-1990-03-19,341.91,343.76,339.12,343.53,142300000,343.53
-1990-03-16,338.07,341.91,338.07,341.91,222520000,341.91
-1990-03-15,336.87,338.91,336.87,338.07,144410000,338.07
-1990-03-14,336.00,337.63,334.93,336.87,145060000,336.87
-1990-03-13,338.67,338.67,335.36,336.00,145440000,336.00
-1990-03-12,337.93,339.08,336.14,338.67,114790000,338.67
-1990-03-09,340.12,340.27,336.84,337.93,150410000,337.93
-1990-03-08,336.95,340.66,336.95,340.27,170900000,340.27
-1990-03-07,337.93,338.84,336.33,336.95,163580000,336.95
-1990-03-06,333.74,337.93,333.57,337.93,143640000,337.93
-1990-03-05,335.54,336.38,333.49,333.74,140110000,333.74
-1990-03-02,332.74,335.54,332.72,335.54,164330000,335.54
-1990-03-01,331.89,334.40,331.08,332.74,157930000,332.74
-1990-02-28,330.26,333.48,330.16,331.89,184400000,331.89
-1990-02-27,328.68,331.94,328.47,330.26,152590000,330.26
-1990-02-26,324.16,328.67,323.98,328.67,148900000,328.67
-1990-02-23,325.70,326.15,322.10,324.15,148490000,324.15
-1990-02-22,327.67,330.98,325.70,325.70,184320000,325.70
-1990-02-21,327.91,328.17,324.47,327.67,159240000,327.67
-1990-02-20,332.72,332.72,326.26,327.99,147300000,327.99
-1990-02-16,334.89,335.64,332.42,332.72,166840000,332.72
-1990-02-15,332.01,335.21,331.61,334.89,174620000,334.89
-1990-02-14,331.02,333.20,330.64,332.01,138530000,332.01
-1990-02-13,330.08,331.61,327.92,331.02,144490000,331.02
-1990-02-12,333.62,333.62,329.97,330.08,118390000,330.08
-1990-02-09,333.02,334.60,332.41,333.62,146910000,333.62
-1990-02-08,333.75,336.09,332.00,332.96,176240000,332.96
-1990-02-07,329.66,333.76,326.55,333.75,186710000,333.75
-1990-02-06,331.85,331.86,328.20,329.66,134070000,329.66
-1990-02-05,330.92,332.16,330.45,331.85,130950000,331.85
-1990-02-02,328.79,332.10,328.09,330.92,164400000,330.92
-1990-02-01,329.08,329.86,327.76,328.79,154580000,328.79
-1990-01-31,322.98,329.08,322.98,329.08,189660000,329.08
-1990-01-30,325.20,325.73,319.83,322.98,186030000,322.98
-1990-01-29,325.80,327.31,321.79,325.20,150770000,325.20
-1990-01-26,326.09,328.58,321.44,325.80,198190000,325.80
-1990-01-25,330.26,332.33,325.33,326.08,172270000,326.08
-1990-01-24,331.61,331.71,324.17,330.26,207830000,330.26
-1990-01-23,330.38,332.76,328.67,331.61,179300000,331.61
-1990-01-22,339.14,339.96,330.28,330.38,148380000,330.38
-1990-01-19,338.19,340.48,338.19,339.15,185590000,339.15
-1990-01-18,337.40,338.38,333.98,338.19,178590000,338.19
-1990-01-17,340.77,342.01,336.26,337.40,170470000,337.40
-1990-01-16,337.00,340.75,333.37,340.75,186070000,340.75
-1990-01-15,339.93,339.94,336.57,337.00,140590000,337.00
-1990-01-12,348.53,348.53,339.49,339.93,183880000,339.93
-1990-01-11,347.31,350.14,347.31,348.53,154390000,348.53
-1990-01-10,349.62,349.62,344.32,347.31,175990000,347.31
-1990-01-09,353.83,354.17,349.61,349.62,155210000,349.62
-1990-01-08,352.20,354.24,350.54,353.79,140110000,353.79
-1990-01-05,355.67,355.67,351.35,352.20,158530000,352.20
-1990-01-04,358.76,358.76,352.89,355.67,177000000,355.67
-1990-01-03,359.69,360.59,357.89,358.76,192330000,358.76
-1990-01-02,353.40,359.69,351.98,359.69,162070000,359.69
-1989-12-29,350.68,353.41,350.67,353.40,145940000,353.40
-1989-12-28,348.80,350.68,348.76,350.67,128030000,350.67
-1989-12-27,346.84,349.12,346.81,348.81,133740000,348.81
-1989-12-26,347.42,347.87,346.53,346.81,77610000,346.81
-1989-12-22,344.78,347.53,344.76,347.42,120980000,347.42
-1989-12-21,342.84,345.03,342.84,344.78,175150000,344.78
-1989-12-20,342.50,343.70,341.79,342.84,176520000,342.84
-1989-12-19,343.69,343.74,339.63,342.46,186060000,342.46
-1989-12-18,350.14,350.88,342.19,343.69,184750000,343.69
-1989-12-15,350.97,351.86,346.08,350.14,240390000,350.14
-1989-12-14,352.74,352.75,350.08,350.93,178700000,350.93
-1989-12-13,351.70,354.10,351.65,352.75,184660000,352.75
-1989-12-12,348.56,352.21,348.41,351.73,176820000,351.73
-1989-12-11,348.68,348.74,346.39,348.56,147130000,348.56
-1989-12-08,347.60,349.60,347.59,348.69,144910000,348.69
-1989-12-07,348.55,349.84,346.00,347.59,161980000,347.59
-1989-12-06,349.58,349.94,347.91,348.55,145850000,348.55
-1989-12-05,351.41,352.24,349.58,349.58,154640000,349.58
-1989-12-04,350.63,351.51,350.32,351.41,150360000,351.41
-1989-12-01,346.01,351.88,345.99,350.63,199200000,350.63
-1989-11-30,343.60,346.50,343.57,345.99,153200000,345.99
-1989-11-29,345.77,345.77,343.36,343.60,147270000,343.60
-1989-11-28,345.61,346.33,344.41,345.77,153770000,345.77
-1989-11-27,343.98,346.24,343.97,345.61,149390000,345.61
-1989-11-24,341.92,344.24,341.91,343.97,86290000,343.97
-1989-11-22,339.59,341.92,339.59,341.91,145730000,341.91
-1989-11-21,339.35,340.21,337.53,339.59,147900000,339.59
-1989-11-20,341.61,341.90,338.29,339.35,128170000,339.35
-1989-11-17,340.58,342.24,339.85,341.61,151020000,341.61
-1989-11-16,340.54,341.02,338.93,340.58,148370000,340.58
-1989-11-15,338.00,340.54,337.14,340.54,155130000,340.54
-1989-11-14,339.55,340.41,337.06,337.99,143170000,337.99
-1989-11-13,339.08,340.51,337.93,339.55,140750000,339.55
-1989-11-10,336.57,339.10,336.57,339.10,131800000,339.10
-1989-11-09,338.15,338.73,336.21,336.57,143390000,336.57
-1989-11-08,334.81,339.41,334.81,338.15,170150000,338.15
-1989-11-07,332.61,334.82,330.91,334.81,163000000,334.81
-1989-11-06,337.61,337.62,332.33,332.61,135480000,332.61
-1989-11-03,338.48,339.67,337.37,337.62,131500000,337.62
-1989-11-02,341.20,341.20,336.61,338.48,152440000,338.48
-1989-11-01,340.36,341.74,339.79,341.20,154240000,341.20
-1989-10-31,335.08,340.86,335.07,340.36,176100000,340.36
-1989-10-30,335.06,337.04,334.48,335.07,126630000,335.07
-1989-10-27,337.93,337.97,333.26,335.06,170330000,335.06
-1989-10-26,342.50,342.50,337.20,337.93,175240000,337.93
-1989-10-25,343.70,344.51,341.96,342.50,155650000,342.50
-1989-10-24,344.83,344.83,335.13,343.70,237960000,343.70
-1989-10-23,347.11,348.19,344.22,344.83,135860000,344.83
-1989-10-20,347.04,347.57,344.47,347.16,164830000,347.16
-1989-10-19,341.76,348.82,341.76,347.13,198120000,347.13
-1989-10-18,341.16,343.39,339.03,341.76,166900000,341.76
-1989-10-17,342.84,342.85,335.69,341.16,224070000,341.16
-1989-10-16,333.65,342.87,327.12,342.85,416290000,342.85
-1989-10-13,355.39,355.53,332.81,333.65,251170000,333.65
-1989-10-12,356.99,356.99,354.91,355.39,160120000,355.39
-1989-10-11,359.13,359.13,356.08,356.99,164070000,356.99
-1989-10-10,359.80,360.44,358.11,359.13,147560000,359.13
-1989-10-09,358.76,359.86,358.06,359.80,86810000,359.80
-1989-10-06,356.97,359.05,356.97,358.78,172520000,358.78
-1989-10-05,356.94,357.63,356.28,356.97,177890000,356.97
-1989-10-04,354.71,357.49,354.71,356.94,194590000,356.94
-1989-10-03,350.87,354.73,350.85,354.71,182550000,354.71
-1989-10-02,349.15,350.99,348.35,350.87,127410000,350.87
-1989-09-29,348.60,350.31,348.12,349.15,155300000,349.15
-1989-09-28,345.10,348.61,345.10,348.60,164240000,348.60
-1989-09-27,344.33,345.47,342.85,345.10,158400000,345.10
-1989-09-26,344.23,347.02,344.13,344.33,158350000,344.33
-1989-09-25,347.05,347.05,343.70,344.23,121130000,344.23
-1989-09-22,345.70,347.57,345.69,347.05,133350000,347.05
-1989-09-21,346.47,348.46,344.96,345.70,146930000,345.70
-1989-09-20,346.55,347.27,346.18,346.47,136640000,346.47
-1989-09-19,346.73,348.17,346.44,346.55,141610000,346.55
-1989-09-18,345.06,346.84,344.60,346.73,136940000,346.73
-1989-09-15,343.16,345.06,341.37,345.06,234860000,345.06
-1989-09-14,345.46,345.61,342.55,343.16,149250000,343.16
-1989-09-13,348.70,350.10,345.46,345.46,175330000,345.46
-1989-09-12,347.66,349.46,347.50,348.70,142140000,348.70
-1989-09-11,348.76,348.76,345.91,347.66,126020000,347.66
-1989-09-08,348.35,349.18,345.74,348.76,154090000,348.76
-1989-09-07,349.24,350.31,348.15,348.35,160160000,348.35
-1989-09-06,352.56,352.56,347.98,349.24,161800000,349.24
-1989-09-05,353.73,354.13,351.82,352.56,145180000,352.56
-1989-09-01,351.45,353.90,350.88,353.73,133300000,353.73
-1989-08-31,350.65,351.45,350.21,351.45,144820000,351.45
-1989-08-30,349.84,352.27,348.66,350.65,174350000,350.65
-1989-08-29,352.09,352.12,348.86,349.84,175210000,349.84
-1989-08-28,350.52,352.09,349.08,352.09,131180000,352.09
-1989-08-25,351.52,352.73,350.09,350.52,165930000,350.52
-1989-08-24,344.70,351.52,344.70,351.52,225520000,351.52
-1989-08-23,341.19,344.80,341.19,344.70,159640000,344.70
-1989-08-22,340.67,341.25,339.00,341.19,141930000,341.19
-1989-08-21,346.03,346.25,340.55,340.67,136800000,340.67
-1989-08-18,344.45,346.03,343.89,346.03,145810000,346.03
-1989-08-17,345.66,346.39,342.97,344.45,157560000,344.45
-1989-08-16,344.71,346.37,344.71,345.66,150060000,345.66
-1989-08-15,343.06,345.03,343.05,344.71,148770000,344.71
-1989-08-14,344.71,345.44,341.96,343.06,142010000,343.06
-1989-08-11,348.28,351.18,344.01,344.74,197550000,344.74
-1989-08-10,346.94,349.78,345.31,348.25,198660000,348.25
-1989-08-09,349.30,351.00,346.86,346.94,209900000,346.94
-1989-08-08,349.41,349.84,348.28,349.35,200340000,349.35
-1989-08-07,343.92,349.42,343.91,349.41,197580000,349.41
-1989-08-04,344.74,345.42,342.60,343.92,169750000,343.92
-1989-08-03,344.34,345.22,343.81,344.74,168690000,344.74
-1989-08-02,343.75,344.34,342.47,344.34,181760000,344.34
-1989-08-01,346.08,347.99,342.93,343.75,225280000,343.75
-1989-07-31,342.13,346.08,342.02,346.08,166650000,346.08
-1989-07-28,341.94,342.96,341.30,342.15,180610000,342.15
-1989-07-27,338.05,342.00,338.05,341.99,213680000,341.99
-1989-07-26,333.88,338.05,333.19,338.05,188270000,338.05
-1989-07-25,333.67,336.29,332.60,333.88,179270000,333.88
-1989-07-24,335.90,335.90,333.44,333.67,136260000,333.67
-1989-07-21,333.50,335.91,332.46,335.90,174880000,335.90
-1989-07-20,335.74,337.40,333.22,333.51,204590000,333.51
-1989-07-19,331.37,335.73,331.35,335.73,215740000,335.73
-1989-07-18,332.42,332.44,330.75,331.35,152350000,331.35
-1989-07-17,331.78,333.02,331.02,332.44,131960000,332.44
-1989-07-14,329.96,331.89,327.13,331.84,183480000,331.84
-1989-07-13,329.81,330.37,329.08,329.95,153820000,329.95
-1989-07-12,328.78,330.39,327.92,329.81,160550000,329.81
-1989-07-11,327.07,330.42,327.07,328.78,171590000,328.78
-1989-07-10,324.93,327.07,324.91,327.07,131870000,327.07
-1989-07-07,321.55,325.87,321.08,324.91,166430000,324.91
-1989-07-06,320.64,321.55,320.45,321.55,140450000,321.55
-1989-07-05,319.23,321.22,317.26,320.64,127710000,320.64
-1989-07-03,317.98,319.27,317.27,319.23,68870000,319.23
-1989-06-30,319.67,319.97,314.38,317.98,170490000,317.98
-1989-06-29,325.81,325.81,319.54,319.68,167100000,319.68
-1989-06-28,328.44,328.44,324.30,325.81,158470000,325.81
-1989-06-27,326.60,329.19,326.59,328.44,171090000,328.44
-1989-06-26,328.00,328.15,326.31,326.60,143600000,326.60
-1989-06-23,322.32,328.00,322.32,328.00,198720000,328.00
-1989-06-22,320.48,322.34,320.20,322.32,176510000,322.32
-1989-06-21,321.25,321.87,319.25,320.48,168830000,320.48
-1989-06-20,321.89,322.78,321.03,321.25,167650000,321.25
-1989-06-19,321.35,321.89,320.40,321.89,130720000,321.89
-1989-06-16,319.96,321.36,318.69,321.35,244510000,321.35
-1989-06-15,323.83,323.83,319.21,320.08,179480000,320.08
-1989-06-14,323.91,324.89,322.80,323.83,170540000,323.83
-1989-06-13,326.24,326.24,322.96,323.91,164870000,323.91
-1989-06-12,326.69,326.69,323.73,326.24,151460000,326.24
-1989-06-09,326.75,327.32,325.16,326.69,173240000,326.69
-1989-06-08,326.95,327.37,325.92,326.75,212310000,326.75
-1989-06-07,324.24,327.39,324.24,326.95,213710000,326.95
-1989-06-06,322.03,324.48,321.27,324.24,187570000,324.24
-1989-06-05,325.52,325.93,322.02,322.03,163420000,322.03
-1989-06-02,321.97,325.63,321.97,325.52,229140000,325.52
-1989-06-01,320.51,322.57,320.01,321.97,223160000,321.97
-1989-05-31,319.05,321.30,318.68,320.52,162530000,320.52
-1989-05-30,321.59,322.53,317.83,319.05,151780000,319.05
-1989-05-26,319.17,321.59,319.14,321.59,143120000,321.59
-1989-05-25,319.14,319.60,318.42,319.17,154470000,319.17
-1989-05-24,318.32,319.14,317.58,319.14,178600000,319.14
-1989-05-23,321.98,321.98,318.20,318.32,187690000,318.32
-1989-05-22,321.24,323.06,320.45,321.98,185010000,321.98
-1989-05-19,317.97,321.38,317.97,321.24,242410000,321.24
-1989-05-18,317.48,318.52,316.54,317.97,177480000,317.97
-1989-05-17,315.28,317.94,315.11,317.48,191210000,317.48
-1989-05-16,316.16,316.16,314.99,315.28,173100000,315.28
-1989-05-15,313.84,316.16,313.84,316.16,179350000,316.16
-1989-05-12,306.95,313.84,306.95,313.84,221490000,313.84
-1989-05-11,305.80,307.34,305.80,306.95,151620000,306.95
-1989-05-10,305.19,306.25,304.85,305.80,146000000,305.80
-1989-05-09,306.00,306.99,304.06,305.19,150090000,305.19
-1989-05-08,307.61,307.61,304.74,306.00,135130000,306.00
-1989-05-05,307.77,310.69,306.98,307.61,180810000,307.61
-1989-05-04,308.16,308.40,307.32,307.77,153130000,307.77
-1989-05-03,308.12,308.52,307.11,308.16,171690000,308.16
-1989-05-02,309.13,310.45,308.12,308.12,172560000,308.12
-1989-05-01,309.64,309.64,307.40,309.12,138050000,309.12
-1989-04-28,309.58,309.65,308.48,309.64,158390000,309.64
-1989-04-27,306.93,310.45,306.93,309.58,191170000,309.58
-1989-04-26,306.78,307.30,306.07,306.93,146090000,306.93
-1989-04-25,308.69,309.65,306.74,306.75,165430000,306.75
-1989-04-24,309.61,309.61,307.83,308.69,142100000,308.69
-1989-04-21,306.19,309.61,306.19,309.61,187310000,309.61
-1989-04-20,307.15,307.96,304.53,306.19,175970000,306.19
-1989-04-19,306.02,307.68,305.36,307.15,191510000,307.15
-1989-04-18,301.72,306.25,301.72,306.02,208650000,306.02
-1989-04-17,301.36,302.01,300.71,301.72,128540000,301.72
-1989-04-14,296.40,301.38,296.40,301.36,169780000,301.36
-1989-04-13,298.99,299.00,296.27,296.40,141590000,296.40
-1989-04-12,298.49,299.81,298.49,298.99,165200000,298.99
-1989-04-11,297.11,298.87,297.11,298.49,146830000,298.49
-1989-04-10,297.16,297.94,296.85,297.11,123990000,297.11
-1989-04-07,295.29,297.62,294.35,297.16,156950000,297.16
-1989-04-06,296.22,296.24,294.52,295.29,146530000,295.29
-1989-04-05,295.31,296.43,295.28,296.24,165880000,296.24
-1989-04-04,296.40,296.40,294.72,295.31,160680000,295.31
-1989-04-03,294.87,297.04,294.62,296.39,164660000,296.39
-1989-03-31,292.52,294.96,292.52,294.87,170960000,294.87
-1989-03-30,292.35,293.80,291.50,292.52,159950000,292.52
-1989-03-29,291.59,292.75,291.42,292.35,144240000,292.35
-1989-03-28,290.57,292.32,290.57,291.59,146420000,291.59
-1989-03-27,288.98,290.57,288.07,290.57,112960000,290.57
-1989-03-23,290.49,291.51,288.56,288.98,153750000,288.98
-1989-03-22,291.33,291.46,289.90,290.49,146570000,290.49
-1989-03-21,289.92,292.38,289.92,291.33,142010000,291.33
-1989-03-20,292.69,292.69,288.56,289.92,151260000,289.92
-1989-03-17,299.44,299.44,291.08,292.69,242900000,292.69
-1989-03-16,296.67,299.99,296.66,299.44,196040000,299.44
-1989-03-15,295.14,296.78,295.14,296.67,167070000,296.67
-1989-03-14,295.32,296.29,294.63,295.14,139970000,295.14
-1989-03-13,292.88,296.18,292.88,295.32,140460000,295.32
-1989-03-10,293.93,293.93,291.60,292.88,146830000,292.88
-1989-03-09,294.08,294.69,293.85,293.93,143160000,293.93
-1989-03-08,293.87,295.62,293.51,294.08,167620000,294.08
-1989-03-07,294.81,295.16,293.50,293.87,172500000,293.87
-1989-03-06,291.20,294.81,291.18,294.81,168880000,294.81
-1989-03-03,289.94,291.18,289.44,291.18,151790000,291.18
-1989-03-02,287.11,290.32,287.11,289.95,161980000,289.95
-1989-03-01,288.86,290.28,286.46,287.11,177210000,287.11
-1989-02-28,287.82,289.42,287.63,288.86,147430000,288.86
-1989-02-27,287.13,288.12,286.26,287.82,139900000,287.82
-1989-02-24,292.05,292.05,287.13,287.13,160680000,287.13
-1989-02-23,290.91,292.05,289.83,292.05,150370000,292.05
-1989-02-22,295.98,295.98,290.76,290.91,163140000,290.91
-1989-02-21,296.76,297.04,295.16,295.98,141950000,295.98
-1989-02-17,294.81,297.12,294.69,296.76,159520000,296.76
-1989-02-16,294.24,295.15,294.22,294.81,177450000,294.81
-1989-02-15,291.81,294.42,291.49,294.24,154220000,294.24
-1989-02-14,292.54,294.37,291.41,291.81,150610000,291.81
-1989-02-13,292.02,293.07,290.88,292.54,143520000,292.54
-1989-02-10,296.06,296.06,291.96,292.02,173560000,292.02
-1989-02-09,298.65,298.79,295.16,296.06,224220000,296.06
-1989-02-08,299.62,300.57,298.41,298.65,189420000,298.65
-1989-02-07,296.04,300.34,295.78,299.63,217260000,299.63
-1989-02-06,296.97,296.99,294.96,296.04,150980000,296.04
-1989-02-03,296.84,297.66,296.15,296.97,172980000,296.97
-1989-02-02,297.09,297.92,295.81,296.84,183430000,296.84
-1989-02-01,297.47,298.33,296.22,297.09,215640000,297.09
-1989-01-31,294.99,297.51,293.57,297.47,194050000,297.47
-1989-01-30,293.82,295.13,293.54,294.99,167830000,294.99
-1989-01-27,291.69,296.08,291.69,293.82,254870000,293.82
-1989-01-26,289.14,292.62,288.13,291.69,212250000,291.69
-1989-01-25,288.49,289.15,287.97,289.14,183610000,289.14
-1989-01-24,284.50,288.49,284.50,288.49,189620000,288.49
-1989-01-23,287.85,287.98,284.50,284.50,141640000,284.50
-1989-01-20,286.90,287.04,285.75,286.63,166120000,286.63
-1989-01-19,286.53,287.90,286.14,286.91,192030000,286.91
-1989-01-18,283.55,286.87,282.65,286.53,187450000,286.53
-1989-01-17,284.14,284.14,283.06,283.55,143930000,283.55
-1989-01-16,283.87,284.88,283.63,284.14,117380000,284.14
-1989-01-13,283.17,284.12,282.71,283.87,132320000,283.87
-1989-01-12,282.01,284.63,282.01,283.17,183000000,283.17
-1989-01-11,280.38,282.01,280.21,282.01,148950000,282.01
-1989-01-10,280.98,281.58,279.44,280.38,140420000,280.38
-1989-01-09,280.67,281.89,280.32,280.98,163180000,280.98
-1989-01-06,280.01,282.06,280.01,280.67,161330000,280.67
-1989-01-05,279.43,281.51,279.43,280.01,174040000,280.01
-1989-01-04,275.31,279.75,275.31,279.43,149700000,279.43
-1989-01-03,277.72,277.72,273.81,275.31,128500000,275.31
-1988-12-30,279.39,279.78,277.72,277.72,127210000,277.72
-1988-12-29,277.08,279.42,277.08,279.40,131290000,279.40
-1988-12-28,276.83,277.55,276.17,277.08,110630000,277.08
-1988-12-27,277.87,278.09,276.74,276.83,87490000,276.83
-1988-12-23,276.87,277.99,276.87,277.87,81760000,277.87
-1988-12-22,277.38,277.89,276.86,276.87,150510000,276.87
-1988-12-21,277.47,277.83,276.30,277.38,147250000,277.38
-1988-12-20,278.91,280.45,277.47,277.47,161090000,277.47
-1988-12-19,276.29,279.31,275.61,278.91,162250000,278.91
-1988-12-16,274.28,276.29,274.28,276.29,196480000,276.29
-1988-12-15,275.32,275.62,274.01,274.28,136820000,274.28
-1988-12-14,276.31,276.31,274.58,275.31,132350000,275.31
-1988-12-13,276.52,276.52,274.58,276.31,132340000,276.31
-1988-12-12,277.03,278.82,276.52,276.52,124160000,276.52
-1988-12-09,276.57,277.82,276.34,277.03,133770000,277.03
-1988-12-08,278.13,278.13,276.55,276.59,124150000,276.59
-1988-12-07,277.59,279.01,277.34,278.13,148360000,278.13
-1988-12-06,274.93,277.89,274.62,277.59,158340000,277.59
-1988-12-05,274.93,275.62,271.81,274.93,144660000,274.93
-1988-12-02,272.49,272.49,270.47,271.81,124610000,271.81
-1988-12-01,273.68,273.70,272.27,272.49,129380000,272.49
-1988-11-30,270.91,274.36,270.90,273.70,157810000,273.70
-1988-11-29,268.60,271.31,268.13,270.91,127420000,270.91
-1988-11-28,267.22,268.98,266.97,268.64,123480000,268.64
-1988-11-25,268.99,269.00,266.47,267.23,72090000,267.23
-1988-11-23,267.22,269.56,267.21,269.00,112010000,269.00
-1988-11-22,266.19,267.85,265.42,267.21,127000000,267.21
-1988-11-21,266.35,266.47,263.41,266.22,120430000,266.22
-1988-11-18,264.60,266.62,264.60,266.47,119320000,266.47
-1988-11-17,264.61,265.63,263.45,264.60,141280000,264.60
-1988-11-16,268.41,268.41,262.85,263.82,161710000,263.82
-1988-11-15,267.73,268.75,267.72,268.34,115170000,268.34
-1988-11-14,267.93,269.25,266.79,267.72,142900000,267.72
-1988-11-11,273.65,273.69,267.92,267.92,135500000,267.92
-1988-11-10,273.32,274.37,272.98,273.69,128920000,273.69
-1988-11-09,275.14,275.15,272.15,273.33,153140000,273.33
-1988-11-08,273.95,275.80,273.93,275.15,141660000,275.15
-1988-11-07,276.30,276.31,273.62,273.93,133870000,273.93
-1988-11-04,279.11,279.20,276.31,276.31,143580000,276.31
-1988-11-03,279.04,280.37,279.04,279.20,152980000,279.20
-1988-11-02,279.07,279.45,277.08,279.06,161300000,279.06
-1988-11-01,278.97,279.57,278.01,279.06,151250000,279.06
-1988-10-31,278.54,279.39,277.14,278.97,143460000,278.97
-1988-10-28,277.29,279.48,277.28,278.53,146300000,278.53
-1988-10-27,281.35,281.38,276.00,277.28,196540000,277.28
-1988-10-26,282.37,282.52,280.54,281.38,181550000,281.38
-1988-10-25,282.28,282.84,281.87,282.38,155190000,282.38
-1988-10-24,283.63,283.95,282.28,282.28,170590000,282.28
-1988-10-21,282.88,283.66,281.16,283.66,195410000,283.66
-1988-10-20,276.97,282.88,276.93,282.88,189580000,282.88
-1988-10-19,279.40,280.53,274.41,276.97,186350000,276.97
-1988-10-18,276.43,279.39,276.41,279.38,162500000,279.38
-1988-10-17,275.48,276.65,275.01,276.41,119290000,276.41
-1988-10-14,275.27,277.01,274.08,275.50,160240000,275.50
-1988-10-13,273.95,275.83,273.39,275.22,154530000,275.22
-1988-10-12,277.91,277.93,273.05,273.98,154840000,273.98
-1988-10-11,278.15,278.24,276.33,277.93,140900000,277.93
-1988-10-10,278.06,278.69,277.10,278.24,124660000,278.24
-1988-10-07,272.38,278.07,272.37,278.07,216390000,278.07
-1988-10-06,271.87,272.39,271.30,272.39,153570000,272.39
-1988-10-05,270.63,272.45,270.08,271.86,175130000,271.86
-1988-10-04,271.37,271.79,270.34,270.62,157760000,270.62
-1988-10-03,271.89,271.91,268.84,271.38,130380000,271.38
-1988-09-30,272.55,274.87,271.66,271.91,175750000,271.91
-1988-09-29,269.09,273.02,269.08,272.59,155790000,272.59
-1988-09-28,268.22,269.08,267.77,269.08,113720000,269.08
-1988-09-27,268.89,269.36,268.01,268.26,113010000,268.26
-1988-09-26,269.77,269.80,268.61,268.88,116420000,268.88
-1988-09-23,269.16,270.31,268.28,269.76,145100000,269.76
-1988-09-22,270.19,270.58,268.26,269.18,150670000,269.18
-1988-09-21,269.76,270.64,269.48,270.16,127400000,270.16
-1988-09-20,268.83,270.07,268.50,269.73,142220000,269.73
-1988-09-19,270.64,270.65,267.41,268.82,135770000,268.82
-1988-09-16,268.13,270.81,267.33,270.65,211110000,270.65
-1988-09-15,269.30,269.78,268.03,268.13,161210000,268.13
-1988-09-14,267.50,269.47,267.41,269.31,177220000,269.31
-1988-09-13,266.45,267.43,265.22,267.43,162490000,267.43
-1988-09-12,266.85,267.64,266.22,266.47,114880000,266.47
-1988-09-09,265.88,268.26,263.66,266.84,141540000,266.84
-1988-09-08,265.87,266.54,264.88,265.88,149380000,265.88
-1988-09-07,265.62,266.98,264.93,265.87,139590000,265.87
-1988-09-06,264.42,265.94,264.40,265.59,122250000,265.59
-1988-09-02,258.35,264.90,258.35,264.48,159840000,264.48
-1988-09-01,261.52,261.52,256.98,258.35,144090000,258.35
-1988-08-31,262.51,263.80,261.21,261.52,130480000,261.52
-1988-08-30,262.33,263.18,261.53,262.51,108720000,262.51
-1988-08-29,259.68,262.56,259.68,262.33,99280000,262.33
-1988-08-26,259.18,260.15,258.87,259.68,89240000,259.68
-1988-08-25,261.10,261.13,257.56,259.18,127640000,259.18
-1988-08-24,257.16,261.13,257.09,261.13,127800000,261.13
-1988-08-23,256.99,257.86,256.53,257.09,119540000,257.09
-1988-08-22,260.24,260.71,256.94,256.98,122250000,256.98
-1988-08-19,261.05,262.27,260.23,260.24,122370000,260.24
-1988-08-18,260.76,262.76,260.75,261.03,139820000,261.03
-1988-08-17,260.57,261.84,259.33,260.77,169500000,260.77
-1988-08-16,258.68,262.61,257.50,260.56,162790000,260.56
-1988-08-15,262.49,262.55,258.68,258.69,128560000,258.69
-1988-08-12,262.70,262.94,261.37,262.55,176960000,262.55
-1988-08-11,261.92,262.77,260.34,262.75,173000000,262.75
-1988-08-10,266.43,266.49,261.03,261.90,200950000,261.90
-1988-08-09,270.00,270.20,265.06,266.49,200710000,266.49
-1988-08-08,271.13,272.47,269.93,269.98,148800000,269.98
-1988-08-05,271.70,271.93,270.08,271.15,113400000,271.15
-1988-08-04,273.00,274.20,271.77,271.93,157240000,271.93
-1988-08-03,272.03,273.42,271.15,272.98,203590000,272.98
-1988-08-02,272.19,273.68,270.37,272.06,166660000,272.06
-1988-08-01,272.03,272.80,271.21,272.21,138170000,272.21
-1988-07-29,266.04,272.02,266.02,272.02,192340000,272.02
-1988-07-28,262.52,266.55,262.50,266.02,154570000,266.02
-1988-07-27,265.18,265.83,262.48,262.50,135890000,262.50
-1988-07-26,264.70,266.09,264.32,265.19,121960000,265.19
-1988-07-25,263.49,265.17,263.03,264.68,215140000,264.68
-1988-07-22,266.65,266.66,263.29,263.50,148880000,263.50
-1988-07-21,269.99,270.00,266.66,266.66,149460000,266.66
-1988-07-20,268.52,270.24,268.47,270.00,151990000,270.00
-1988-07-19,270.49,271.21,267.01,268.47,144110000,268.47
-1988-07-18,271.99,272.05,268.66,270.51,156210000,270.51
-1988-07-15,270.23,272.06,269.53,272.05,199710000,272.05
-1988-07-14,269.33,270.69,268.58,270.26,172410000,270.26
-1988-07-13,267.87,269.46,266.12,269.32,218930000,269.32
-1988-07-12,270.54,270.70,266.96,267.85,161650000,267.85
-1988-07-11,270.03,271.64,270.02,270.55,123300000,270.55
-1988-07-08,271.76,272.31,269.86,270.02,136070000,270.02
-1988-07-07,272.00,272.05,269.31,271.78,156100000,271.78
-1988-07-06,275.80,276.36,269.92,272.02,189630000,272.02
-1988-07-05,271.78,275.81,270.51,275.81,171790000,275.81
-1988-07-01,273.50,273.80,270.78,271.78,238330000,271.78
-1988-06-30,271.00,273.51,270.97,273.50,227410000,273.50
-1988-06-29,272.32,273.01,269.49,270.98,159590000,270.98
-1988-06-28,269.07,272.80,269.06,272.31,152370000,272.31
-1988-06-27,273.78,273.79,268.85,269.06,264410000,269.06
-1988-06-24,274.81,275.19,273.53,273.78,179880000,273.78
-1988-06-23,275.62,275.89,274.26,274.82,185770000,274.82
-1988-06-22,271.69,276.88,271.67,275.66,217510000,275.66
-1988-06-21,268.95,271.67,267.52,271.67,155060000,271.67
-1988-06-20,270.67,270.68,268.59,268.94,116750000,268.94
-1988-06-17,269.79,270.77,268.09,270.68,343920000,270.68
-1988-06-16,274.44,274.45,268.76,269.77,161550000,269.77
-1988-06-15,274.29,274.45,272.75,274.45,150260000,274.45
-1988-06-14,271.58,276.14,271.44,274.30,227150000,274.30
-1988-06-13,271.28,271.94,270.53,271.43,125310000,271.43
-1988-06-10,270.22,273.21,270.20,271.26,155710000,271.26
-1988-06-09,271.50,272.29,270.19,270.20,235160000,270.20
-1988-06-08,265.32,272.01,265.17,271.52,310030000,271.52
-1988-06-07,267.02,267.28,264.50,265.17,168710000,265.17
-1988-06-06,266.46,267.05,264.97,267.05,152460000,267.05
-1988-06-03,265.34,267.11,264.42,266.45,189600000,266.45
-1988-06-02,266.65,266.71,264.12,265.33,193540000,265.33
-1988-06-01,262.16,267.43,262.10,266.69,234560000,266.69
-1988-05-31,253.44,262.16,253.42,262.16,247610000,262.16
-1988-05-27,254.62,254.63,252.74,253.42,133590000,253.42
-1988-05-26,253.75,254.98,253.52,254.63,164260000,254.63
-1988-05-25,253.52,255.34,253.51,253.76,138310000,253.76
-1988-05-24,250.84,253.51,250.83,253.51,139930000,253.51
-1988-05-23,253.00,253.02,249.82,250.83,102640000,250.83
-1988-05-20,252.61,253.70,251.79,253.02,120600000,253.02
-1988-05-19,251.36,252.57,248.85,252.57,165160000,252.57
-1988-05-18,255.40,255.67,250.73,251.35,209420000,251.35
-1988-05-17,258.72,260.20,255.35,255.39,133850000,255.39
-1988-05-16,256.75,258.71,256.28,258.71,155010000,258.71
-1988-05-13,253.88,256.83,253.85,256.78,147240000,256.78
-1988-05-12,253.32,254.87,253.31,253.85,143880000,253.85
-1988-05-11,257.60,257.62,252.32,253.31,176720000,253.31
-1988-05-10,256.53,258.30,255.93,257.62,131200000,257.62
-1988-05-09,257.47,258.22,255.45,256.54,166320000,256.54
-1988-05-06,258.80,260.31,257.03,257.48,129080000,257.48
-1988-05-05,260.30,260.32,258.13,258.79,171840000,258.79
-1988-05-04,263.05,263.23,260.31,260.32,141320000,260.32
-1988-05-03,261.55,263.70,261.55,263.00,176920000,263.00
-1988-05-02,261.36,261.56,259.99,261.56,136470000,261.56
-1988-04-29,262.59,262.61,259.97,261.33,135620000,261.33
-1988-04-28,263.79,263.80,262.22,262.61,128680000,262.61
-1988-04-27,263.94,265.09,263.45,263.80,133810000,263.80
-1988-04-26,262.45,265.06,262.18,263.93,152300000,263.93
-1988-04-25,260.15,263.29,260.14,262.51,156950000,262.51
-1988-04-22,256.45,261.16,256.42,260.14,152520000,260.14
-1988-04-21,256.15,260.44,254.71,256.42,168440000,256.42
-1988-04-20,257.91,258.54,256.12,256.13,147590000,256.13
-1988-04-19,259.24,262.38,257.91,257.92,161910000,257.92
-1988-04-18,259.75,259.81,258.03,259.21,144650000,259.21
-1988-04-15,259.74,260.39,255.97,259.77,234160000,259.77
-1988-04-14,271.55,271.57,259.37,259.75,211810000,259.75
-1988-04-13,271.33,271.70,269.23,271.58,185120000,271.58
-1988-04-12,269.88,272.05,269.66,271.37,146400000,271.37
-1988-04-11,269.43,270.41,268.61,270.16,146370000,270.16
-1988-04-08,266.15,270.22,266.11,269.43,169300000,269.43
-1988-04-07,265.51,267.32,265.22,266.16,177840000,266.16
-1988-04-06,258.52,265.50,258.22,265.49,189760000,265.49
-1988-04-05,256.10,258.52,256.03,258.51,135290000,258.51
-1988-04-04,258.89,259.06,255.68,256.09,182240000,256.09
-1988-03-31,258.03,259.03,256.16,258.89,139870000,258.89
-1988-03-30,260.06,261.59,257.92,258.07,151810000,258.07
-1988-03-29,258.11,260.86,258.06,260.07,152690000,260.07
-1988-03-28,258.50,258.51,256.07,258.06,142820000,258.06
-1988-03-25,263.34,263.44,258.12,258.51,163170000,258.51
-1988-03-24,268.91,268.91,262.48,263.35,184910000,263.35
-1988-03-23,268.81,269.79,268.01,268.91,167370000,268.91
-1988-03-22,268.73,269.61,267.90,268.84,142000000,268.84
-1988-03-21,271.10,271.12,267.42,268.74,128830000,268.74
-1988-03-18,271.22,272.64,269.76,271.12,245750000,271.12
-1988-03-17,268.66,271.22,268.65,271.22,211920000,271.22
-1988-03-16,266.11,268.68,264.81,268.65,153590000,268.65
-1988-03-15,266.34,266.41,264.92,266.13,133170000,266.13
-1988-03-14,264.93,266.55,264.52,266.37,131890000,266.37
-1988-03-11,263.85,264.94,261.27,264.94,200020000,264.94
-1988-03-10,269.07,269.35,263.80,263.84,197260000,263.84
-1988-03-09,269.46,270.76,268.65,269.06,210900000,269.06
-1988-03-08,267.38,270.06,267.38,269.43,237680000,269.43
-1988-03-07,267.28,267.69,265.94,267.38,152980000,267.38
-1988-03-04,267.87,268.40,264.72,267.30,201410000,267.30
-1988-03-03,267.98,268.40,266.82,267.88,203310000,267.88
-1988-03-02,267.23,268.75,267.00,267.98,199630000,267.98
-1988-03-01,267.82,267.95,265.39,267.22,199990000,267.22
-1988-02-29,262.46,267.82,262.46,267.82,236050000,267.82
-1988-02-26,261.56,263.00,261.38,262.46,158060000,262.46
-1988-02-25,264.39,267.75,261.05,261.58,213490000,261.58
-1988-02-24,265.01,266.25,263.87,264.43,212730000,264.43
-1988-02-23,265.62,266.12,263.11,265.02,192260000,265.02
-1988-02-22,261.60,266.06,260.88,265.64,178930000,265.64
-1988-02-19,257.90,261.61,257.62,261.61,180300000,261.61
-1988-02-18,258.82,259.60,256.90,257.91,151430000,257.91
-1988-02-17,259.94,261.47,257.83,259.21,176830000,259.21
-1988-02-16,257.61,259.84,256.57,259.83,135380000,259.83
-1988-02-12,255.95,258.86,255.85,257.63,177190000,257.63
-1988-02-11,256.63,257.77,255.12,255.95,200760000,255.95
-1988-02-10,251.74,256.92,251.72,256.66,187980000,256.66
-1988-02-09,249.11,251.72,248.66,251.72,162350000,251.72
-1988-02-08,250.95,250.96,247.82,249.10,168850000,249.10
-1988-02-05,252.22,253.85,250.90,250.96,161310000,250.96
-1988-02-04,252.20,253.03,250.34,252.21,186490000,252.21
-1988-02-03,255.56,256.98,250.56,252.21,237270000,252.21
-1988-02-02,255.05,256.08,252.80,255.57,164920000,255.57
-1988-02-01,257.05,258.27,254.93,255.04,210660000,255.04
-1988-01-29,253.31,257.07,252.70,257.07,211880000,257.07
-1988-01-28,249.39,253.66,249.38,253.29,166430000,253.29
-1988-01-27,249.58,253.02,248.50,249.38,176360000,249.38
-1988-01-26,252.13,252.17,249.10,249.57,138380000,249.57
-1988-01-25,246.53,252.87,246.50,252.17,275250000,252.17
-1988-01-22,243.14,246.50,243.14,246.50,147050000,246.50
-1988-01-21,242.65,244.25,240.17,243.14,158080000,243.14
-1988-01-20,249.31,249.32,241.14,242.63,181660000,242.63
-1988-01-19,251.84,253.33,248.75,249.32,153550000,249.32
-1988-01-18,252.05,252.86,249.98,251.88,135100000,251.88
-1988-01-15,246.02,253.65,245.88,252.05,197940000,252.05
-1988-01-14,245.83,247.00,243.97,245.88,140570000,245.88
-1988-01-13,245.41,249.25,241.41,245.81,154020000,245.81
-1988-01-12,247.44,247.49,240.46,245.42,165730000,245.42
-1988-01-11,243.38,247.51,241.07,247.49,158980000,247.49
-1988-01-08,261.05,261.07,242.95,243.40,197300000,243.40
-1988-01-07,258.87,261.32,256.18,261.07,175360000,261.07
-1988-01-06,258.64,259.79,257.18,258.89,169730000,258.89
-1988-01-05,255.95,261.78,255.95,258.63,209520000,258.63
-1988-01-04,247.10,256.44,247.08,255.94,181810000,255.94
-1987-12-31,247.84,247.86,245.22,247.08,170140000,247.08
-1987-12-30,244.63,248.06,244.59,247.86,149230000,247.86
-1987-12-29,245.58,245.88,244.28,244.59,111580000,244.59
-1987-12-28,252.01,252.02,244.19,245.57,131220000,245.57
-1987-12-24,253.13,253.16,251.68,252.03,108800000,252.03
-1987-12-23,249.96,253.35,249.95,253.16,203110000,253.16
-1987-12-22,249.56,249.97,247.01,249.95,192650000,249.95
-1987-12-21,249.14,250.25,248.30,249.54,161790000,249.54
-1987-12-18,243.01,249.18,243.01,249.16,276220000,249.16
-1987-12-17,248.08,248.60,242.96,242.98,191780000,242.98
-1987-12-16,242.81,248.11,242.80,248.08,193820000,248.08
-1987-12-15,242.19,245.59,241.31,242.81,214970000,242.81
-1987-12-14,235.30,242.34,235.04,242.19,187680000,242.19
-1987-12-11,233.60,235.48,233.35,235.32,151680000,235.32
-1987-12-10,238.89,240.05,233.40,233.57,188960000,233.57
-1987-12-09,234.91,240.09,233.83,238.89,231430000,238.89
-1987-12-08,228.77,234.92,228.69,234.91,227310000,234.91
-1987-12-07,223.98,228.77,223.92,228.76,146660000,228.76
-1987-12-04,225.20,225.77,221.24,223.92,184800000,223.92
-1987-12-03,233.46,233.90,225.21,225.21,204160000,225.21
-1987-12-02,232.01,234.56,230.31,233.45,148890000,233.45
-1987-12-01,230.32,234.02,230.30,232.00,149870000,232.00
-1987-11-30,240.27,240.34,225.75,230.30,268910000,230.30
-1987-11-27,244.11,244.12,240.34,240.34,86360000,240.34
-1987-11-25,246.42,246.54,244.08,244.10,139780000,244.10
-1987-11-24,242.98,247.90,242.98,246.39,199520000,246.39
-1987-11-23,242.00,242.99,240.50,242.99,143160000,242.99
-1987-11-20,240.04,242.01,235.89,242.00,189170000,242.00
-1987-11-19,245.54,245.55,239.70,240.05,157140000,240.05
-1987-11-18,243.09,245.55,240.67,245.55,158270000,245.55
-1987-11-17,246.73,246.76,240.81,243.04,148240000,243.04
-1987-11-16,245.69,249.54,244.98,246.76,164340000,246.76
-1987-11-13,248.54,249.42,245.64,245.64,174920000,245.64
-1987-11-12,241.93,249.90,241.90,248.52,206280000,248.52
-1987-11-11,239.01,243.86,239.00,241.90,147850000,241.90
-1987-11-10,243.14,243.17,237.64,239.00,184310000,239.00
-1987-11-09,250.41,250.41,243.01,243.17,160690000,243.17
-1987-11-06,254.49,257.21,249.68,250.41,228290000,250.41
-1987-11-05,248.93,256.09,247.72,254.48,226000000,254.48
-1987-11-04,250.81,251.00,246.34,248.96,202500000,248.96
-1987-11-03,255.75,255.75,242.78,250.82,227800000,250.82
-1987-11-02,251.73,255.75,249.15,255.75,176000000,255.75
-1987-10-30,244.77,254.04,244.77,251.79,303400000,251.79
-1987-10-29,233.31,246.69,233.28,244.77,258100000,244.77
-1987-10-28,233.19,238.58,226.26,233.28,279400000,233.28
-1987-10-27,227.67,237.81,227.67,233.19,260200000,233.19
-1987-10-26,248.20,248.22,227.26,227.67,308800000,227.67
-1987-10-23,248.29,250.70,242.76,248.22,245600000,248.22
-1987-10-22,258.24,258.38,242.99,248.25,392200000,248.25
-1987-10-21,236.83,259.27,236.83,258.38,449600000,258.38
-1987-10-20,225.06,245.62,216.46,236.83,608100000,236.83
-1987-10-19,282.70,282.70,224.83,224.84,604300000,224.84
-1987-10-16,298.08,298.92,281.52,282.70,338500000,282.70
-1987-10-15,305.21,305.23,298.07,298.08,263200000,298.08
-1987-10-14,314.52,314.52,304.78,305.23,207400000,305.23
-1987-10-13,309.39,314.53,309.39,314.52,172900000,314.52
-1987-10-12,311.07,311.07,306.76,309.39,141900000,309.39
-1987-10-09,314.16,315.04,310.97,311.07,158300000,311.07
-1987-10-08,318.54,319.34,312.02,314.16,198700000,314.16
-1987-10-07,319.22,319.39,315.78,318.54,186300000,318.54
-1987-10-06,328.08,328.08,319.17,319.22,175600000,319.22
-1987-10-05,328.07,328.57,326.09,328.08,159700000,328.08
-1987-10-02,327.33,328.94,327.22,328.07,189100000,328.07
-1987-10-01,321.83,327.34,321.83,327.33,193200000,327.33
-1987-09-30,321.69,322.53,320.16,321.83,183100000,321.83
-1987-09-29,323.20,324.63,320.27,321.69,173500000,321.69
-1987-09-28,320.16,325.33,320.16,323.20,188100000,323.20
-1987-09-25,319.72,320.55,318.10,320.16,138000000,320.16
-1987-09-24,321.09,322.01,319.12,319.72,162200000,319.72
-1987-09-23,319.49,321.83,319.12,321.19,220300000,321.19
-1987-09-22,310.54,319.51,308.69,319.50,209500000,319.50
-1987-09-21,314.92,317.66,310.12,310.54,170100000,310.54
-1987-09-18,314.98,316.99,314.86,314.86,188100000,314.86
-1987-09-17,314.94,316.08,313.45,314.93,150700000,314.93
-1987-09-16,317.75,319.50,314.61,314.86,195700000,314.86
-1987-09-15,323.07,323.08,317.63,317.74,136200000,317.74
-1987-09-14,322.02,323.81,320.40,323.08,154400000,323.08
-1987-09-11,317.14,322.45,317.13,321.98,178000000,321.98
-1987-09-10,313.92,317.59,313.92,317.13,179800000,317.13
-1987-09-09,313.60,315.41,312.29,313.92,164900000,313.92
-1987-09-08,316.68,316.70,308.56,313.56,242900000,313.56
-1987-09-04,320.21,322.03,316.53,316.70,129100000,316.70
-1987-09-03,321.47,324.29,317.39,320.21,165200000,320.21
-1987-09-02,323.40,324.53,318.76,321.68,199900000,321.68
-1987-09-01,329.81,332.18,322.83,323.40,193500000,323.40
-1987-08-31,327.03,330.09,326.99,329.80,165800000,329.80
-1987-08-28,331.37,331.38,327.03,327.04,156300000,327.04
-1987-08-27,334.56,334.57,331.10,331.38,163600000,331.38
-1987-08-26,336.77,337.39,334.46,334.57,196200000,334.57
-1987-08-25,333.37,337.89,333.33,336.77,213500000,336.77
-1987-08-24,335.89,335.90,331.92,333.33,149400000,333.33
-1987-08-21,334.85,336.37,334.30,335.90,189600000,335.90
-1987-08-20,331.49,335.19,329.83,334.84,196600000,334.84
-1987-08-19,329.26,329.89,326.54,329.83,180900000,329.83
-1987-08-18,334.10,334.11,326.43,329.25,198400000,329.25
-1987-08-17,333.98,335.43,332.88,334.11,166100000,334.11
-1987-08-14,334.63,336.08,332.63,333.99,196100000,333.99
-1987-08-13,332.38,335.52,332.38,334.65,217100000,334.65
-1987-08-12,333.32,334.57,331.06,332.39,235800000,332.39
-1987-08-11,328.02,333.40,328.00,333.33,278100000,333.33
-1987-08-10,322.98,328.00,322.95,328.00,187200000,328.00
-1987-08-07,322.10,324.15,321.82,323.00,212700000,323.00
-1987-08-06,318.49,322.09,317.50,322.09,192000000,322.09
-1987-08-05,316.25,319.74,316.23,318.45,192700000,318.45
-1987-08-04,317.59,318.25,314.51,316.23,166500000,316.23
-1987-08-03,318.62,320.26,316.52,317.57,207800000,317.57
-1987-07-31,318.05,318.85,317.56,318.66,181900000,318.66
-1987-07-30,315.69,318.53,315.65,318.05,208000000,318.05
-1987-07-29,312.34,315.65,311.73,315.65,196200000,315.65
-1987-07-28,310.65,312.33,310.28,312.33,172600000,312.33
-1987-07-27,309.30,310.70,308.61,310.65,152000000,310.65
-1987-07-24,307.82,309.28,307.78,309.27,158400000,309.27
-1987-07-23,308.50,309.63,306.10,307.81,163700000,307.81
-1987-07-22,308.56,309.12,307.22,308.47,174700000,308.47
-1987-07-21,311.36,312.41,307.51,308.55,186600000,308.55
-1987-07-20,314.56,314.59,311.24,311.39,168100000,311.39
-1987-07-17,312.71,314.59,312.38,314.59,210000000,314.59
-1987-07-16,311.00,312.83,310.42,312.70,210900000,312.70
-1987-07-15,310.67,312.08,309.07,310.42,202300000,310.42
-1987-07-14,307.67,310.69,307.46,310.68,185900000,310.68
-1987-07-13,308.41,308.41,305.49,307.63,152500000,307.63
-1987-07-10,307.55,308.40,306.96,308.37,172100000,308.37
-1987-07-09,308.30,309.56,307.42,307.52,195400000,307.52
-1987-07-08,307.41,308.48,306.01,308.29,207500000,308.29
-1987-07-07,304.91,308.63,304.73,307.40,200700000,307.40
-1987-07-06,305.64,306.75,304.23,304.92,155000000,304.92
-1987-07-02,302.96,306.34,302.94,305.63,154900000,305.63
-1987-07-01,303.99,304.00,302.53,302.94,157000000,302.94
-1987-06-30,307.89,308.00,303.01,304.00,165500000,304.00
-1987-06-29,307.15,308.15,306.75,307.90,142500000,307.90
-1987-06-26,308.94,308.96,306.36,307.16,150500000,307.16
-1987-06-25,306.87,309.44,306.86,308.96,173500000,308.96
-1987-06-24,308.44,308.91,306.32,306.86,153800000,306.86
-1987-06-23,309.66,310.27,307.48,308.43,194200000,308.43
-1987-06-22,306.98,310.20,306.97,309.65,178200000,309.65
-1987-06-19,305.71,306.97,305.55,306.97,220500000,306.97
-1987-06-18,304.78,306.13,303.38,305.69,168600000,305.69
-1987-06-17,304.77,305.74,304.03,304.81,184700000,304.81
-1987-06-16,303.12,304.86,302.60,304.76,157800000,304.76
-1987-06-15,301.62,304.11,301.62,303.14,156900000,303.14
-1987-06-12,298.77,302.26,298.73,301.62,175100000,301.62
-1987-06-11,297.50,298.94,297.47,298.73,138900000,298.73
-1987-06-10,297.28,300.81,295.66,297.47,197400000,297.47
-1987-06-09,296.72,297.59,295.90,297.28,164200000,297.28
-1987-06-08,293.46,297.03,291.55,296.72,136400000,296.72
-1987-06-05,295.11,295.11,292.80,293.45,129100000,293.45
-1987-06-04,293.46,295.09,292.76,295.09,140300000,295.09
-1987-06-03,288.56,293.47,288.56,293.47,164200000,293.47
-1987-06-02,289.82,290.94,286.93,288.46,153400000,288.46
-1987-06-01,290.12,291.96,289.23,289.83,149300000,289.83
-1987-05-29,290.77,292.87,289.70,290.10,153500000,290.10
-1987-05-28,288.73,291.50,286.33,290.76,153800000,290.76
-1987-05-27,289.07,290.78,288.19,288.73,171400000,288.73
-1987-05-26,282.16,289.11,282.16,289.11,152500000,289.11
-1987-05-22,280.17,283.33,280.17,282.16,135800000,282.16
-1987-05-21,278.23,282.31,278.21,280.17,164800000,280.17
-1987-05-20,279.62,280.89,277.01,278.21,206800000,278.21
-1987-05-19,286.66,287.39,278.83,279.62,175400000,279.62
-1987-05-18,287.43,287.43,282.57,286.65,174200000,286.65
-1987-05-15,294.23,294.24,287.11,287.43,180800000,287.43
-1987-05-14,293.98,295.10,292.95,294.24,152000000,294.24
-1987-05-13,293.31,294.54,290.74,293.98,171000000,293.98
-1987-05-12,291.57,293.30,290.18,293.30,155300000,293.30
-1987-05-11,293.37,298.69,291.55,291.57,203700000,291.57
-1987-05-08,294.73,296.18,291.73,293.37,161900000,293.37
-1987-05-07,295.45,296.80,294.07,294.71,215200000,294.71
-1987-05-06,295.35,296.19,293.60,295.47,196600000,295.47
-1987-05-05,289.36,295.40,289.34,295.34,192300000,295.34
-1987-05-04,288.02,289.99,286.39,289.36,140600000,289.36
-1987-05-01,286.99,289.71,286.52,288.03,160100000,288.03
-1987-04-30,284.58,290.08,284.57,288.36,183100000,288.36
-1987-04-29,282.58,286.42,282.58,284.57,173600000,284.57
-1987-04-28,281.83,285.95,281.83,282.51,180100000,282.51
-1987-04-27,281.52,284.45,276.22,281.83,222700000,281.83
-1987-04-24,286.81,286.82,281.18,281.52,178000000,281.52
-1987-04-23,287.19,289.12,284.28,286.82,173900000,286.82
-1987-04-22,293.05,293.46,286.98,287.19,185900000,287.19
-1987-04-21,285.88,293.07,282.89,293.07,191300000,293.07
-1987-04-20,286.91,288.36,284.55,286.09,139100000,286.09
-1987-04-16,284.45,289.57,284.44,286.91,189600000,286.91
-1987-04-15,279.17,285.14,279.16,284.44,198200000,284.44
-1987-04-14,285.61,285.62,275.67,279.16,266500000,279.16
-1987-04-13,292.48,293.36,285.62,285.62,181000000,285.62
-1987-04-10,292.82,293.74,290.94,292.49,169500000,292.49
-1987-04-09,297.25,297.71,291.50,292.86,180300000,292.86
-1987-04-08,296.72,299.20,295.18,297.26,179800000,297.26
-1987-04-07,301.94,303.65,296.67,296.69,186400000,296.69
-1987-04-06,300.46,302.21,300.41,301.95,173700000,301.95
-1987-04-03,293.64,301.30,292.30,300.41,213400000,300.41
-1987-04-02,292.41,294.47,292.02,293.63,183000000,293.63
-1987-04-01,291.59,292.38,288.34,292.38,182600000,292.38
-1987-03-31,289.21,291.87,289.07,291.70,171800000,291.70
-1987-03-30,296.10,296.13,286.69,289.20,208400000,289.20
-1987-03-27,300.96,301.41,296.06,296.13,184400000,296.13
-1987-03-26,300.39,302.72,300.38,300.93,196000000,300.93
-1987-03-25,301.52,301.85,299.36,300.38,171300000,300.38
-1987-03-24,301.17,301.92,300.14,301.64,189900000,301.64
-1987-03-23,298.16,301.17,297.50,301.16,189100000,301.16
-1987-03-20,294.08,298.17,294.08,298.17,234000000,298.17
-1987-03-19,292.73,294.46,292.26,294.08,166100000,294.08
-1987-03-18,292.49,294.58,290.87,292.78,198100000,292.78
-1987-03-17,288.09,292.47,287.96,292.47,177300000,292.47
-1987-03-16,289.88,289.89,286.64,288.23,134900000,288.23
-1987-03-13,291.22,291.79,289.88,289.89,150900000,289.89
-1987-03-12,290.33,291.91,289.66,291.22,174500000,291.22
-1987-03-11,290.87,292.51,289.33,290.31,186900000,290.31
-1987-03-10,288.30,290.87,287.89,290.86,174800000,290.86
-1987-03-09,290.66,290.66,287.12,288.30,165400000,288.30
-1987-03-06,290.52,290.67,288.77,290.66,181600000,290.66
-1987-03-05,288.62,291.24,288.60,290.52,205400000,290.52
-1987-03-04,284.12,288.62,284.12,288.62,198400000,288.62
-1987-03-03,283.00,284.19,282.92,284.12,149200000,284.12
-1987-03-02,284.17,284.83,282.30,283.00,156700000,283.00
-1987-02-27,282.96,284.55,282.77,284.20,142800000,284.20
-1987-02-26,284.00,284.40,280.73,282.96,165800000,282.96
-1987-02-25,282.88,285.35,282.14,284.00,184100000,284.00
-1987-02-24,282.38,283.33,281.45,282.88,151300000,282.88
-1987-02-23,285.48,285.50,279.37,282.38,170500000,282.38
-1987-02-20,285.57,285.98,284.31,285.48,175800000,285.48
-1987-02-19,285.42,286.24,283.84,285.57,181500000,285.57
-1987-02-18,285.49,287.55,282.97,285.42,218200000,285.42
-1987-02-17,279.70,285.49,279.70,285.49,187800000,285.49
-1987-02-13,275.62,280.91,275.01,279.70,184400000,279.70
-1987-02-12,277.54,278.04,273.89,275.62,200400000,275.62
-1987-02-11,275.07,277.71,274.71,277.54,172400000,277.54
-1987-02-10,278.16,278.16,273.49,275.07,168300000,275.07
-1987-02-09,280.04,280.04,277.24,278.16,143300000,278.16
-1987-02-06,281.16,281.79,279.87,280.04,184100000,280.04
-1987-02-05,279.64,282.26,278.66,281.16,256700000,281.16
-1987-02-04,275.99,279.65,275.35,279.64,222400000,279.64
-1987-02-03,276.45,277.83,275.84,275.99,198100000,275.99
-1987-02-02,274.08,277.35,273.16,276.45,177400000,276.45
-1987-01-30,274.24,274.24,271.38,274.08,163400000,274.08
-1987-01-29,275.40,276.85,272.54,274.24,205300000,274.24
-1987-01-28,273.75,275.71,273.03,275.40,195800000,275.40
-1987-01-27,269.61,274.31,269.61,273.75,192300000,273.75
-1987-01-26,270.10,270.40,267.73,269.61,138900000,269.61
-1987-01-23,273.91,280.96,268.41,270.10,302400000,270.10
-1987-01-22,267.84,274.05,267.32,273.91,188700000,273.91
-1987-01-21,269.04,270.87,267.35,267.84,184200000,267.84
-1987-01-20,269.34,271.03,267.65,269.04,224800000,269.04
-1987-01-19,266.26,269.34,264.00,269.34,162800000,269.34
-1987-01-16,265.46,267.24,264.31,266.28,218400000,266.28
-1987-01-15,262.65,266.68,262.64,265.49,253100000,265.49
-1987-01-14,259.95,262.72,259.62,262.64,214200000,262.64
-1987-01-13,260.30,260.45,259.21,259.95,170900000,259.95
-1987-01-12,258.72,261.36,257.92,260.30,184200000,260.30
-1987-01-09,257.26,259.20,256.11,258.73,193000000,258.73
-1987-01-08,255.36,257.28,254.97,257.28,194500000,257.28
-1987-01-07,252.78,255.72,252.65,255.33,190900000,255.33
-1987-01-06,252.20,253.99,252.14,252.78,189300000,252.78
-1987-01-05,246.45,252.57,246.45,252.19,181900000,252.19
-1987-01-02,242.17,246.45,242.17,246.45,91880000,246.45
-1986-12-31,243.37,244.03,241.28,242.17,139200000,242.17
-1986-12-30,244.66,244.67,243.04,243.37,126200000,243.37
-1986-12-29,246.90,246.92,244.31,244.67,99800000,244.67
-1986-12-26,246.75,247.09,246.73,246.92,48860000,246.92
-1986-12-24,246.34,247.22,246.02,246.75,95410000,246.75
-1986-12-23,248.75,248.75,245.85,246.34,188700000,246.34
-1986-12-22,249.73,249.73,247.45,248.75,157600000,248.75
-1986-12-19,246.79,249.96,245.89,249.73,244700000,249.73
-1986-12-18,247.56,247.81,246.45,246.78,155400000,246.78
-1986-12-17,250.01,250.04,247.19,247.56,148800000,247.56
-1986-12-16,248.21,250.04,247.40,250.04,157000000,250.04
-1986-12-15,247.31,248.23,244.92,248.21,148200000,248.21
-1986-12-12,248.17,248.31,247.02,247.35,126600000,247.35
-1986-12-11,250.97,250.98,247.15,248.17,136000000,248.17
-1986-12-10,249.28,251.53,248.94,250.96,139700000,250.96
-1986-12-09,251.16,251.27,249.25,249.28,128700000,249.28
-1986-12-08,251.16,252.36,248.82,251.16,159000000,251.16
-1986-12-05,253.05,253.89,250.71,251.17,139800000,251.17
-1986-12-04,253.85,254.42,252.88,253.04,156900000,253.04
-1986-12-03,254.00,254.87,253.24,253.85,200100000,253.85
-1986-12-02,249.06,254.00,249.05,254.00,230400000,254.00
-1986-12-01,249.22,249.22,245.72,249.05,133800000,249.05
-1986-11-28,248.82,249.22,248.07,249.22,93530000,249.22
-1986-11-26,248.14,248.90,247.73,248.77,152000000,248.77
-1986-11-25,247.44,248.18,246.30,248.17,154600000,248.17
-1986-11-24,245.86,248.00,245.21,247.45,150800000,247.45
-1986-11-21,242.03,246.38,241.97,245.86,200700000,245.86
-1986-11-20,237.66,242.05,237.66,242.05,158100000,242.05
-1986-11-19,236.77,237.94,235.51,237.66,183300000,237.66
-1986-11-18,243.20,243.23,236.65,236.78,185300000,236.78
-1986-11-17,244.50,244.80,242.29,243.21,133300000,243.21
-1986-11-14,243.01,244.51,241.96,244.50,172100000,244.50
-1986-11-13,246.63,246.66,242.98,243.02,164000000,243.02
-1986-11-12,247.06,247.67,245.68,246.64,162200000,246.64
-1986-11-11,246.15,247.10,246.12,247.08,118500000,247.08
-1986-11-10,245.75,246.22,244.68,246.13,120200000,246.13
-1986-11-07,245.85,246.13,244.92,245.77,142300000,245.77
-1986-11-06,246.54,246.90,244.30,245.87,165300000,245.87
-1986-11-05,246.09,247.05,245.21,246.58,183200000,246.58
-1986-11-04,245.80,246.43,244.42,246.20,163200000,246.20
-1986-11-03,243.97,245.80,243.93,245.80,138200000,245.80
-1986-10-31,243.70,244.51,242.95,243.98,147200000,243.98
-1986-10-30,240.97,244.08,240.94,243.71,194200000,243.71
-1986-10-29,239.23,241.00,238.98,240.94,164400000,240.94
-1986-10-28,238.81,240.58,238.77,239.26,145900000,239.26
-1986-10-27,238.22,238.77,236.72,238.77,133200000,238.77
-1986-10-24,239.30,239.65,238.25,238.26,137500000,238.26
-1986-10-23,236.28,239.76,236.26,239.28,150900000,239.28
-1986-10-22,235.89,236.64,235.82,236.26,114000000,236.26
-1986-10-21,236.03,236.49,234.95,235.88,110000000,235.88
-1986-10-20,238.84,238.84,234.78,235.97,109000000,235.97
-1986-10-17,239.50,239.53,237.71,238.84,124100000,238.84
-1986-10-16,238.83,240.18,238.80,239.53,156900000,239.53
-1986-10-15,235.36,239.03,235.27,238.80,144300000,238.80
-1986-10-14,235.90,236.37,234.37,235.37,116800000,235.37
-1986-10-13,235.52,235.91,235.02,235.91,54990000,235.91
-1986-10-10,235.84,236.27,235.31,235.48,105100000,235.48
-1986-10-09,236.67,238.20,235.72,235.85,153400000,235.85
-1986-10-08,234.41,236.84,233.68,236.68,141700000,236.68
-1986-10-07,234.74,235.18,233.46,234.41,125100000,234.41
-1986-10-06,233.71,235.34,233.17,234.78,88250000,234.78
-1986-10-03,233.92,236.16,232.79,233.71,128100000,233.71
-1986-10-02,233.60,234.33,232.77,233.92,128100000,233.92
-1986-10-01,231.32,234.62,231.32,233.60,143600000,233.60
-1986-09-30,229.91,233.01,229.91,231.32,124900000,231.32
-1986-09-29,232.23,232.23,228.08,229.91,115600000,229.91
-1986-09-26,231.83,233.68,230.64,232.23,115300000,232.23
-1986-09-25,231.83,236.28,230.67,231.83,134300000,231.83
-1986-09-24,235.66,237.06,235.53,236.28,134600000,236.28
-1986-09-23,234.96,235.88,234.50,235.67,132600000,235.67
-1986-09-22,232.20,234.93,232.20,234.93,126100000,234.93
-1986-09-19,232.30,232.31,230.69,232.21,153900000,232.21
-1986-09-18,231.67,232.87,230.57,232.31,132200000,232.31
-1986-09-17,231.73,233.81,231.38,231.68,141000000,231.68
-1986-09-16,231.93,231.94,228.32,231.72,131200000,231.72
-1986-09-15,230.67,232.82,229.44,231.94,155600000,231.94
-1986-09-12,235.18,235.45,228.74,230.67,240500000,230.67
-1986-09-11,247.06,247.06,234.67,235.18,237600000,235.18
-1986-09-10,247.67,247.76,246.11,247.06,140300000,247.06
-1986-09-09,248.14,250.21,246.94,247.67,137500000,247.67
-1986-09-08,250.47,250.47,247.02,248.14,153300000,248.14
-1986-09-05,253.83,254.13,250.33,250.47,180600000,250.47
-1986-09-04,250.08,254.01,250.03,253.83,189400000,253.83
-1986-09-03,248.52,250.08,247.59,250.08,154300000,250.08
-1986-09-02,252.93,253.30,248.14,248.52,135500000,248.52
-1986-08-29,252.84,254.07,251.73,252.93,125300000,252.93
-1986-08-28,253.30,253.67,251.91,252.84,125100000,252.84
-1986-08-27,252.84,254.24,252.66,253.30,143300000,253.30
-1986-08-26,247.81,252.91,247.81,252.84,156600000,252.84
-1986-08-25,250.19,250.26,247.76,247.81,104400000,247.81
-1986-08-22,249.67,250.61,249.27,250.19,118100000,250.19
-1986-08-21,249.77,250.45,249.11,249.67,135200000,249.67
-1986-08-20,246.53,249.77,246.51,249.77,156600000,249.77
-1986-08-19,247.38,247.42,245.82,246.51,109300000,246.51
-1986-08-18,247.15,247.83,245.48,247.38,112800000,247.38
-1986-08-15,246.25,247.15,245.70,247.15,123500000,247.15
-1986-08-14,245.67,246.79,245.53,246.25,123800000,246.25
-1986-08-13,243.34,246.51,243.06,245.67,156400000,245.67
-1986-08-12,240.68,243.37,240.35,243.34,131700000,243.34
-1986-08-11,236.88,241.20,236.87,240.68,125600000,240.68
-1986-08-08,237.04,238.06,236.37,236.88,106300000,236.88
-1986-08-07,236.84,238.02,236.31,237.04,122400000,237.04
-1986-08-06,237.03,237.35,235.48,236.84,127500000,236.84
-1986-08-05,235.99,238.31,235.97,237.03,153100000,237.03
-1986-08-04,234.91,236.86,231.92,235.99,130000000,235.99
-1986-08-01,236.12,236.89,234.59,234.91,114900000,234.91
-1986-07-31,236.59,236.92,235.89,236.12,112700000,236.12
-1986-07-30,234.57,237.38,233.07,236.59,146700000,236.59
-1986-07-29,235.72,236.01,234.40,234.55,115700000,234.55
-1986-07-28,240.20,240.25,235.23,236.01,128000000,236.01
-1986-07-25,237.99,240.36,237.95,240.22,132000000,240.22
-1986-07-24,238.69,239.05,237.32,237.95,134700000,237.95
-1986-07-23,238.19,239.25,238.17,238.67,133300000,238.67
-1986-07-22,236.24,238.42,235.92,238.18,138500000,238.18
-1986-07-21,236.36,236.45,235.53,236.24,106300000,236.24
-1986-07-18,236.07,238.22,233.94,236.36,149700000,236.36
-1986-07-17,235.01,236.65,235.01,236.07,132400000,236.07
-1986-07-16,233.66,236.19,233.66,235.01,160800000,235.01
-1986-07-15,238.09,238.12,233.60,233.66,184000000,233.66
-1986-07-14,242.22,242.22,238.04,238.11,123200000,238.11
-1986-07-11,243.01,243.48,241.68,242.22,124500000,242.22
-1986-07-10,242.82,243.44,239.66,243.01,146200000,243.01
-1986-07-09,241.59,243.07,241.46,242.82,142900000,242.82
-1986-07-08,244.05,244.06,239.07,241.59,174100000,241.59
-1986-07-07,251.79,251.81,243.63,244.05,138200000,244.05
-1986-07-03,252.70,252.94,251.23,251.79,108300000,251.79
-1986-07-02,252.04,253.20,251.79,252.70,150000000,252.70
-1986-07-01,250.67,252.04,250.53,252.04,147700000,252.04
-1986-06-30,249.60,251.81,249.60,250.84,135100000,250.84
-1986-06-27,248.74,249.74,248.74,249.60,123800000,249.60
-1986-06-26,248.93,249.43,247.72,248.74,134100000,248.74
-1986-06-25,247.03,250.13,247.03,248.93,161800000,248.93
-1986-06-24,245.26,248.26,244.53,247.03,140600000,247.03
-1986-06-23,247.58,247.58,244.45,245.26,123800000,245.26
-1986-06-20,244.06,247.60,243.98,247.58,149100000,247.58
-1986-06-19,244.99,245.80,244.05,244.06,129000000,244.06
-1986-06-18,244.35,245.25,242.57,244.99,117000000,244.99
-1986-06-17,246.13,246.26,243.60,244.35,123100000,244.35
-1986-06-16,245.73,246.50,245.17,246.13,112100000,246.13
-1986-06-13,241.71,245.91,241.71,245.73,141200000,245.73
-1986-06-12,241.24,241.64,240.70,241.49,109100000,241.49
-1986-06-11,239.58,241.13,239.21,241.13,127400000,241.13
-1986-06-10,239.96,240.08,238.23,239.58,125000000,239.58
-1986-06-09,245.67,245.67,239.68,239.96,123300000,239.96
-1986-06-06,245.65,246.07,244.43,245.67,110900000,245.67
-1986-06-05,243.94,245.66,243.41,245.65,110900000,245.65
-1986-06-04,245.51,246.30,242.59,243.94,117000000,243.94
-1986-06-03,245.04,245.51,243.67,245.51,114700000,245.51
-1986-06-02,246.04,247.74,243.83,245.04,120600000,245.04
-1986-05-30,247.98,249.19,246.43,247.35,151200000,247.35
-1986-05-29,246.63,248.32,245.29,247.98,135700000,247.98
-1986-05-28,244.75,247.40,244.75,246.63,159600000,246.63
-1986-05-27,241.35,244.76,241.35,244.75,121200000,244.75
-1986-05-23,240.12,242.16,240.12,241.35,130200000,241.35
-1986-05-22,235.45,240.25,235.45,240.12,144900000,240.12
-1986-05-21,236.11,236.83,235.45,235.45,117100000,235.45
-1986-05-20,233.20,236.12,232.58,236.11,113000000,236.11
-1986-05-19,232.76,233.54,232.41,233.20,85840000,233.20
-1986-05-16,234.43,234.43,232.26,232.76,113500000,232.76
-1986-05-15,237.54,237.54,233.93,234.43,131600000,234.43
-1986-05-14,236.41,237.54,235.85,237.54,132100000,237.54
-1986-05-13,237.58,237.87,236.02,236.41,119200000,236.41
-1986-05-12,237.85,238.53,237.02,237.58,125400000,237.58
-1986-05-09,237.13,238.01,235.85,237.85,137400000,237.85
-1986-05-08,236.08,237.96,236.08,237.13,136000000,237.13
-1986-05-07,236.56,237.24,233.98,236.08,129900000,236.08
-1986-05-06,237.73,238.28,236.26,237.24,121200000,237.24
-1986-05-05,234.79,237.73,234.79,237.73,102400000,237.73
-1986-05-02,235.16,236.52,234.15,234.79,126300000,234.79
-1986-05-01,235.52,236.01,234.21,235.16,146500000,235.16
-1986-04-30,240.52,240.52,235.26,235.52,147500000,235.52
-1986-04-29,243.08,243.57,239.23,240.51,148800000,240.51
-1986-04-28,242.29,243.08,241.23,243.08,123900000,243.08
-1986-04-25,242.02,242.80,240.91,242.29,142300000,242.29
-1986-04-24,241.75,243.13,241.65,242.02,146600000,242.02
-1986-04-23,242.42,242.42,240.08,241.75,149700000,241.75
-1986-04-22,244.74,245.47,241.30,242.42,161500000,242.42
-1986-04-21,242.38,244.78,241.88,244.74,136100000,244.74
-1986-04-18,243.03,243.47,241.74,242.38,153600000,242.38
-1986-04-17,242.22,243.36,241.89,243.03,161400000,243.03
-1986-04-16,237.73,242.57,237.73,242.22,173800000,242.22
-1986-04-15,237.28,238.09,236.64,237.73,123700000,237.73
-1986-04-14,235.97,237.48,235.43,237.28,106700000,237.28
-1986-04-11,236.44,237.85,235.13,235.97,139400000,235.97
-1986-04-10,233.75,236.54,233.75,236.44,184800000,236.44
-1986-04-09,233.52,235.57,232.13,233.75,156300000,233.75
-1986-04-08,228.63,233.70,228.63,233.52,146300000,233.52
-1986-04-07,228.69,228.83,226.30,228.63,129800000,228.63
-1986-04-04,232.47,232.56,228.32,228.69,147300000,228.69
-1986-04-03,235.71,236.42,232.07,232.47,148200000,232.47
-1986-04-02,235.14,235.71,233.40,235.71,145300000,235.71
-1986-04-01,238.90,239.10,234.57,235.14,167400000,235.14
-1986-03-31,238.97,239.86,238.08,238.90,134400000,238.90
-1986-03-27,237.30,240.11,237.30,238.97,178100000,238.97
-1986-03-26,234.72,237.79,234.71,237.30,161500000,237.30
-1986-03-25,235.33,235.33,233.62,234.72,139300000,234.72
-1986-03-24,233.34,235.33,232.92,235.33,143800000,235.33
-1986-03-21,236.54,237.35,233.29,233.34,199100000,233.34
-1986-03-20,235.60,237.09,235.60,236.54,148000000,236.54
-1986-03-19,235.78,236.52,235.13,235.60,150000000,235.60
-1986-03-18,234.67,236.52,234.14,235.78,148000000,235.78
-1986-03-17,236.55,236.55,233.69,234.67,137500000,234.67
-1986-03-14,233.19,236.55,232.58,236.55,181900000,236.55
-1986-03-13,232.54,233.89,231.27,233.19,171500000,233.19
-1986-03-12,231.69,234.70,231.68,232.54,210300000,232.54
-1986-03-11,226.58,231.81,226.58,231.69,187300000,231.69
-1986-03-10,225.57,226.98,225.36,226.58,129900000,226.58
-1986-03-07,225.13,226.33,224.44,225.57,163200000,225.57
-1986-03-06,224.39,225.50,224.13,225.13,159000000,225.13
-1986-03-05,224.14,224.37,222.18,224.34,154600000,224.34
-1986-03-04,225.42,227.33,223.94,224.38,174500000,224.38
-1986-03-03,226.92,226.92,224.41,225.42,142700000,225.42
-1986-02-28,226.77,227.92,225.42,226.92,191700000,226.92
-1986-02-27,224.04,226.88,223.41,226.77,181700000,226.77
-1986-02-26,223.72,224.59,223.15,224.04,158000000,224.04
-1986-02-25,224.34,224.40,222.63,223.79,148000000,223.79
-1986-02-24,224.58,225.29,223.31,224.34,144700000,224.34
-1986-02-21,222.22,224.62,222.22,224.62,177600000,224.62
-1986-02-20,219.76,222.22,219.22,222.22,139700000,222.22
-1986-02-19,222.45,222.96,219.73,219.76,152000000,219.76
-1986-02-18,219.76,222.45,219.26,222.45,160200000,222.45
-1986-02-14,217.40,219.76,217.22,219.76,155600000,219.76
-1986-02-13,215.97,217.41,215.38,217.40,136500000,217.40
-1986-02-12,215.92,216.28,215.13,215.97,136400000,215.97
-1986-02-11,216.24,216.67,215.54,215.92,141300000,215.92
-1986-02-10,214.56,216.24,214.47,216.24,129900000,216.24
-1986-02-07,213.47,215.27,211.13,214.56,144400000,214.56
-1986-02-06,212.96,214.51,212.60,213.47,146100000,213.47
-1986-02-05,212.84,213.03,211.21,212.96,134300000,212.96
-1986-02-04,213.96,214.57,210.82,212.79,175700000,212.79
-1986-02-03,211.78,214.18,211.60,213.96,145300000,213.96
-1986-01-31,209.33,212.42,209.19,211.78,143500000,211.78
-1986-01-30,210.29,211.54,209.15,209.33,125300000,209.33
-1986-01-29,209.81,212.36,209.81,210.29,193800000,210.29
-1986-01-28,207.42,209.82,207.40,209.81,145700000,209.81
-1986-01-27,206.43,207.69,206.43,207.39,122900000,207.39
-1986-01-24,204.25,206.43,204.25,206.43,128900000,206.43
-1986-01-23,203.49,204.43,202.60,204.25,130300000,204.25
-1986-01-22,205.79,206.03,203.41,203.49,131200000,203.49
-1986-01-21,207.53,207.78,205.05,205.79,128300000,205.79
-1986-01-20,208.43,208.43,206.62,207.53,85340000,207.53
-1986-01-17,209.17,209.40,207.59,208.43,132100000,208.43
-1986-01-16,208.26,209.18,207.61,209.17,130500000,209.17
-1986-01-15,206.64,208.27,206.64,208.26,122400000,208.26
-1986-01-14,206.72,207.37,206.06,206.64,113900000,206.64
-1986-01-13,205.96,206.83,205.52,206.72,108700000,206.72
-1986-01-10,206.11,207.33,205.52,205.96,122800000,205.96
-1986-01-09,207.97,207.97,204.51,206.11,176500000,206.11
-1986-01-08,213.80,214.57,207.49,207.97,180300000,207.97
-1986-01-07,210.65,213.80,210.65,213.80,153000000,213.80
-1986-01-06,210.88,210.98,209.93,210.65,99610000,210.65
-1986-01-03,209.59,210.88,209.51,210.88,105000000,210.88
-1986-01-02,211.28,211.28,208.93,209.59,98960000,209.59
-1985-12-31,210.68,211.61,210.68,211.28,112700000,211.28
-1985-12-30,209.61,210.70,209.17,210.68,91970000,210.68
-1985-12-27,207.65,209.62,207.65,209.61,81560000,209.61
-1985-12-26,207.14,207.76,207.05,207.65,62050000,207.65
-1985-12-24,208.57,208.57,206.44,207.14,78300000,207.14
-1985-12-23,210.57,210.94,208.44,208.57,107900000,208.57
-1985-12-20,210.02,211.77,210.02,210.94,170300000,210.94
-1985-12-19,209.81,210.13,209.25,210.02,130200000,210.02
-1985-12-18,210.65,211.23,209.24,209.81,137900000,209.81
-1985-12-17,212.02,212.45,210.58,210.65,155200000,210.65
-1985-12-16,209.94,213.08,209.91,212.02,176000000,212.02
-1985-12-13,206.73,210.31,206.73,209.94,177900000,209.94
-1985-12-12,206.31,207.65,205.83,206.73,170500000,206.73
-1985-12-11,204.39,206.68,204.17,206.31,178500000,206.31
-1985-12-10,204.25,205.16,203.68,204.39,156500000,204.39
-1985-12-09,202.99,204.65,202.98,204.25,144000000,204.25
-1985-12-06,203.88,203.88,202.45,202.99,125500000,202.99
-1985-12-05,204.23,205.86,203.79,203.88,181000000,203.88
-1985-12-04,200.86,204.23,200.86,204.23,153200000,204.23
-1985-12-03,200.46,200.98,200.10,200.86,109700000,200.86
-1985-12-02,202.17,202.19,200.20,200.46,103500000,200.46
-1985-11-29,202.54,203.40,201.92,202.17,84060000,202.17
-1985-11-27,200.67,202.65,200.67,202.54,143700000,202.54
-1985-11-26,200.35,201.16,200.11,200.67,123100000,200.67
-1985-11-25,201.52,201.52,200.08,200.35,91710000,200.35
-1985-11-22,201.41,202.01,201.05,201.52,133800000,201.52
-1985-11-21,198.99,201.43,198.99,201.41,150300000,201.41
-1985-11-20,198.67,199.20,198.52,198.99,105100000,198.99
-1985-11-19,198.71,199.52,198.01,198.67,126100000,198.67
-1985-11-18,198.11,198.71,197.51,198.71,108400000,198.71
-1985-11-15,199.06,199.58,197.90,198.11,130200000,198.11
-1985-11-14,197.10,199.19,196.88,199.06,124900000,199.06
-1985-11-13,198.08,198.11,196.91,197.10,109700000,197.10
-1985-11-12,197.28,198.66,196.97,198.08,170800000,198.08
-1985-11-11,193.72,197.29,193.70,197.28,126500000,197.28
-1985-11-08,192.62,193.97,192.53,193.72,115000000,193.72
-1985-11-07,192.78,192.96,192.16,192.62,119000000,192.62
-1985-11-06,192.37,193.01,191.83,192.76,129500000,192.76
-1985-11-05,191.25,192.43,190.99,192.37,119200000,192.37
-1985-11-04,191.45,191.96,190.66,191.25,104900000,191.25
-1985-11-01,189.82,191.53,189.37,191.53,129400000,191.53
-1985-10-31,190.07,190.15,189.35,189.82,121500000,189.82
-1985-10-30,189.23,190.09,189.14,190.07,120400000,190.07
-1985-10-29,187.76,189.78,187.76,189.23,110600000,189.23
-1985-10-28,187.52,187.76,186.93,187.76,97880000,187.76
-1985-10-25,188.50,188.51,187.32,187.52,101800000,187.52
-1985-10-24,189.09,189.45,188.41,188.50,123100000,188.50
-1985-10-23,188.04,189.09,188.04,189.09,121700000,189.09
-1985-10-22,186.96,188.56,186.96,188.04,111300000,188.04
-1985-10-21,187.04,187.30,186.79,186.96,95680000,186.96
-1985-10-18,187.66,188.11,186.89,187.04,107100000,187.04
-1985-10-17,187.98,188.52,187.42,187.66,140500000,187.66
-1985-10-16,186.08,187.98,186.08,187.98,117400000,187.98
-1985-10-15,186.37,187.16,185.66,186.08,110400000,186.08
-1985-10-14,184.31,186.37,184.28,186.37,78540000,186.37
-1985-10-11,182.78,184.28,182.61,184.28,96370000,184.28
-1985-10-10,182.52,182.79,182.05,182.78,90910000,182.78
-1985-10-09,181.87,183.27,181.87,182.52,99140000,182.52
-1985-10-08,181.87,182.30,181.16,181.87,97170000,181.87
-1985-10-07,183.22,183.22,181.30,181.87,95550000,181.87
-1985-10-04,184.36,184.36,182.65,183.22,101200000,183.22
-1985-10-03,184.06,185.17,183.59,184.36,127500000,184.36
-1985-10-02,185.07,185.94,184.06,184.06,147300000,184.06
-1985-10-01,182.06,185.08,182.02,185.07,130200000,185.07
-1985-09-30,181.30,182.08,181.22,182.08,103600000,182.08
-1985-09-26,180.66,181.29,179.45,181.29,106100000,181.29
-1985-09-25,182.62,182.62,180.62,180.66,92120000,180.66
-1985-09-24,184.30,184.30,182.42,182.62,97870000,182.62
-1985-09-23,182.05,184.65,182.05,184.30,104800000,184.30
-1985-09-20,183.39,183.99,182.04,182.05,101400000,182.05
-1985-09-19,181.71,183.40,181.71,183.39,100300000,183.39
-1985-09-18,181.36,181.83,180.81,181.71,105700000,181.71
-1985-09-17,182.88,182.88,180.78,181.36,111900000,181.36
-1985-09-16,182.91,182.91,182.45,182.88,66700000,182.88
-1985-09-13,183.69,184.19,182.05,182.91,111400000,182.91
-1985-09-12,185.03,185.21,183.49,183.69,107100000,183.69
-1985-09-11,186.90,186.90,184.79,185.03,100400000,185.03
-1985-09-10,188.25,188.26,186.50,186.90,104700000,186.90
-1985-09-09,188.24,188.80,187.90,188.25,89850000,188.25
-1985-09-06,187.27,188.43,187.27,188.24,95040000,188.24
-1985-09-05,187.37,187.52,186.89,187.27,94480000,187.27
-1985-09-04,187.91,187.92,186.97,187.37,85510000,187.37
-1985-09-03,188.63,188.63,187.38,187.91,81190000,187.91
-1985-08-30,188.93,189.13,188.00,188.63,81620000,188.63
-1985-08-29,188.73,188.94,188.38,188.93,85660000,188.93
-1985-08-28,188.10,188.83,187.90,188.83,88530000,188.83
-1985-08-27,187.31,188.10,187.31,188.10,82140000,188.10
-1985-08-26,187.17,187.44,186.46,187.31,70290000,187.31
-1985-08-23,187.22,187.35,186.59,187.17,75270000,187.17
-1985-08-22,189.11,189.23,187.20,187.36,90600000,187.36
-1985-08-21,188.08,189.16,188.08,189.16,94880000,189.16
-1985-08-20,186.38,188.27,186.38,188.08,91230000,188.08
-1985-08-19,186.10,186.82,186.10,186.38,67930000,186.38
-1985-08-16,187.26,187.26,186.10,186.10,87910000,186.10
-1985-08-15,187.41,187.74,186.62,187.26,86100000,187.26
-1985-08-14,187.30,187.87,187.30,187.41,85780000,187.41
-1985-08-13,187.63,188.15,186.51,187.30,80300000,187.30
-1985-08-12,188.32,188.32,187.43,187.63,77340000,187.63
-1985-08-09,188.95,189.05,188.11,188.32,81750000,188.32
-1985-08-08,187.68,188.96,187.68,188.95,102900000,188.95
-1985-08-07,187.93,187.93,187.39,187.68,100000000,187.68
-1985-08-06,190.62,190.72,187.87,187.93,104000000,187.93
-1985-08-05,191.48,191.48,189.95,190.62,79610000,190.62
-1985-08-02,192.11,192.11,191.27,191.48,87860000,191.48
-1985-08-01,190.92,192.17,190.91,192.11,121500000,192.11
-1985-07-31,189.93,191.33,189.93,190.92,124200000,190.92
-1985-07-30,189.62,190.05,189.30,189.93,102300000,189.93
-1985-07-29,192.40,192.42,189.53,189.60,95960000,189.60
-1985-07-26,192.06,192.78,191.58,192.40,107000000,192.40
-1985-07-25,191.58,192.23,191.17,192.06,123300000,192.06
-1985-07-24,192.55,192.55,190.66,191.58,128600000,191.58
-1985-07-23,194.35,194.98,192.28,192.55,143600000,192.55
-1985-07-22,195.13,195.13,193.58,194.35,93540000,194.35
-1985-07-19,194.38,195.13,194.28,195.13,114800000,195.13
-1985-07-18,195.65,195.65,194.34,194.38,131400000,194.38
-1985-07-17,194.86,196.07,194.72,195.65,159900000,195.65
-1985-07-16,192.72,194.72,192.72,194.72,132500000,194.72
-1985-07-15,193.29,193.84,192.55,192.72,103900000,192.72
-1985-07-12,192.94,193.32,192.64,193.29,120300000,193.29
-1985-07-11,192.37,192.95,192.28,192.94,122800000,192.94
-1985-07-10,191.05,192.37,190.99,192.37,108200000,192.37
-1985-07-09,191.93,191.93,190.81,191.05,99060000,191.05
-1985-07-08,192.47,192.52,191.26,191.93,83670000,191.93
-1985-07-05,191.45,192.67,191.45,192.52,62450000,192.52
-1985-07-03,192.01,192.08,191.37,191.45,98410000,191.45
-1985-07-02,192.43,192.63,191.84,192.01,111100000,192.01
-1985-07-01,191.85,192.43,191.17,192.43,96080000,192.43
-1985-06-28,191.23,191.85,191.04,191.85,105200000,191.85
-1985-06-27,190.06,191.36,190.06,191.23,106700000,191.23
-1985-06-26,189.74,190.26,189.44,190.06,94130000,190.06
-1985-06-25,189.15,190.96,189.15,189.74,115700000,189.74
-1985-06-24,188.77,189.61,187.84,189.15,96040000,189.15
-1985-06-21,186.73,189.66,186.43,189.61,125400000,189.61
-1985-06-20,186.63,186.74,185.97,186.73,87500000,186.73
-1985-06-19,187.34,187.98,186.63,186.63,108300000,186.63
-1985-06-18,186.53,187.65,186.51,187.34,106900000,187.34
-1985-06-17,187.10,187.10,185.98,186.53,82170000,186.53
-1985-06-14,185.33,187.10,185.33,187.10,93090000,187.10
-1985-06-13,187.61,187.61,185.03,185.33,107000000,185.33
-1985-06-12,189.04,189.04,187.59,187.61,97700000,187.61
-1985-06-11,189.51,189.61,188.78,189.04,102100000,189.04
-1985-06-10,189.68,189.68,188.82,189.51,87940000,189.51
-1985-06-07,191.06,191.29,189.55,189.68,99630000,189.68
-1985-06-06,189.75,191.06,189.13,191.06,117200000,191.06
-1985-06-05,190.04,191.02,190.04,190.16,143900000,190.16
-1985-06-04,189.32,190.27,188.88,190.04,115400000,190.04
-1985-06-03,189.55,190.36,188.93,189.32,125000000,189.32
-1985-05-31,187.75,189.59,187.45,189.55,134100000,189.55
-1985-05-30,187.68,188.04,187.09,187.75,108300000,187.75
-1985-05-29,187.86,187.86,187.11,187.68,96540000,187.68
-1985-05-28,188.29,188.94,187.38,187.86,90600000,187.86
-1985-05-24,187.60,188.29,187.29,188.29,85970000,188.29
-1985-05-23,188.56,188.56,187.45,187.60,101000000,187.60
-1985-05-22,189.64,189.64,187.71,188.56,101400000,188.56
-1985-05-21,189.72,189.81,188.78,189.64,130200000,189.64
-1985-05-20,187.42,189.98,187.42,189.72,146300000,189.72
-1985-05-17,185.66,187.94,185.47,187.42,124600000,187.42
-1985-05-16,184.54,185.74,184.54,185.66,99420000,185.66
-1985-05-15,183.87,185.43,183.86,184.54,106100000,184.54
-1985-05-14,184.61,185.17,183.65,183.87,97360000,183.87
-1985-05-13,184.28,184.61,184.19,184.61,85830000,184.61
-1985-05-10,181.92,184.74,181.92,184.28,140300000,184.28
-1985-05-09,180.62,181.97,180.62,181.92,111000000,181.92
-1985-05-08,180.76,180.76,179.96,180.62,101300000,180.62
-1985-05-07,179.99,181.09,179.87,180.76,100200000,180.76
-1985-05-06,180.08,180.56,179.82,179.99,85650000,179.99
-1985-05-03,179.01,180.30,179.01,180.08,94870000,180.08
-1985-05-02,178.37,179.01,178.37,179.01,107700000,179.01
-1985-05-01,179.83,180.04,178.35,178.37,101600000,178.37
-1985-04-30,180.63,180.63,178.86,179.83,111800000,179.83
-1985-04-29,182.18,182.34,180.62,180.63,88860000,180.63
-1985-04-26,183.43,183.61,182.11,182.18,86570000,182.18
-1985-04-25,182.26,183.43,182.12,183.43,108600000,183.43
-1985-04-24,181.88,182.27,181.74,182.26,99600000,182.26
-1985-04-23,180.70,181.97,180.34,181.88,108900000,181.88
-1985-04-22,181.11,181.23,180.25,180.70,79930000,180.70
-1985-04-19,180.84,181.25,180.42,181.11,81110000,181.11
-1985-04-18,181.68,182.56,180.75,180.84,100600000,180.84
-1985-04-17,181.20,181.91,181.14,181.68,96020000,181.68
-1985-04-16,180.92,181.78,180.19,181.20,98480000,181.20
-1985-04-15,180.54,181.15,180.45,180.92,80660000,180.92
-1985-04-12,180.19,180.55,180.06,180.54,86220000,180.54
-1985-04-11,179.42,180.91,179.42,180.19,108400000,180.19
-1985-04-10,178.21,179.90,178.21,179.42,108200000,179.42
-1985-04-09,178.03,178.67,177.97,178.21,83980000,178.21
-1985-04-08,179.03,179.46,177.86,178.03,79960000,178.03
-1985-04-04,179.11,179.13,178.29,179.03,86910000,179.03
-1985-04-03,180.53,180.53,178.64,179.11,95480000,179.11
-1985-04-02,181.27,181.86,180.28,180.53,101700000,180.53
-1985-04-01,180.66,181.27,180.43,181.27,89900000,181.27
-1985-03-29,179.54,180.66,179.54,180.66,101400000,180.66
-1985-03-28,179.54,180.60,179.43,179.54,99780000,179.54
-1985-03-27,178.43,179.80,178.43,179.54,101000000,179.54
-1985-03-26,177.97,178.86,177.88,178.43,89930000,178.43
-1985-03-25,179.04,179.04,177.85,177.97,74040000,177.97
-1985-03-22,179.35,179.92,178.86,179.04,99250000,179.04
-1985-03-21,179.08,180.22,178.89,179.35,95930000,179.35
-1985-03-20,179.54,179.78,178.79,179.08,107500000,179.08
-1985-03-19,176.88,179.56,176.87,179.54,119200000,179.54
-1985-03-18,176.53,177.66,176.53,176.88,94020000,176.88
-1985-03-15,177.84,178.41,176.53,176.53,105200000,176.53
-1985-03-14,178.19,178.53,177.61,177.84,103400000,177.84
-1985-03-13,179.66,179.96,178.02,178.19,101700000,178.19
-1985-03-12,178.79,180.14,178.70,179.66,92840000,179.66
-1985-03-11,179.10,179.46,178.15,178.79,84110000,178.79
-1985-03-08,179.51,179.97,179.07,179.10,96390000,179.10
-1985-03-07,180.65,180.65,179.44,179.51,112100000,179.51
-1985-03-06,182.23,182.25,180.59,180.65,116900000,180.65
-1985-03-05,182.06,182.65,181.42,182.23,116400000,182.23
-1985-03-04,183.23,183.41,181.40,182.06,102100000,182.06
-1985-03-01,181.18,183.89,181.16,183.23,139900000,183.23
-1985-02-28,180.71,181.21,180.33,181.18,100700000,181.18
-1985-02-27,181.17,181.87,180.50,180.71,107700000,180.71
-1985-02-26,179.23,181.58,179.16,181.17,114200000,181.17
-1985-02-25,179.36,179.36,178.13,179.23,89740000,179.23
-1985-02-22,180.19,180.41,179.23,179.36,93680000,179.36
-1985-02-21,181.18,181.18,180.02,180.19,104000000,180.19
-1985-02-20,181.33,182.10,180.64,181.18,118200000,181.18
-1985-02-19,181.60,181.61,180.95,181.33,90400000,181.33
-1985-02-15,182.41,182.65,181.23,181.60,106500000,181.60
-1985-02-14,183.35,183.95,182.39,182.41,139700000,182.41
-1985-02-13,180.56,183.86,180.50,183.35,142500000,183.35
-1985-02-12,180.51,180.75,179.45,180.56,111100000,180.56
-1985-02-11,182.19,182.19,180.11,180.51,104000000,180.51
-1985-02-08,181.82,182.39,181.67,182.19,116500000,182.19
-1985-02-07,180.43,181.96,180.43,181.82,151700000,181.82
-1985-02-06,180.61,181.50,180.32,180.43,141000000,180.43
-1985-02-05,180.35,181.53,180.07,180.61,143900000,180.61
-1985-02-04,178.63,180.35,177.75,180.35,113700000,180.35
-1985-02-01,179.63,179.63,178.44,178.63,105400000,178.63
-1985-01-31,179.39,179.83,178.56,179.63,132500000,179.63
-1985-01-30,179.18,180.27,179.05,179.39,170000000,179.39
-1985-01-29,177.40,179.19,176.58,179.18,115700000,179.18
-1985-01-28,177.35,178.19,176.56,177.40,128400000,177.40
-1985-01-25,176.71,177.75,176.54,177.35,122400000,177.35
-1985-01-24,177.30,178.16,176.56,176.71,160700000,176.71
-1985-01-23,175.48,177.30,175.15,177.30,144400000,177.30
-1985-01-22,175.23,176.63,175.14,175.48,174800000,175.48
-1985-01-21,171.32,175.45,171.31,175.23,146800000,175.23
-1985-01-18,170.73,171.42,170.66,171.32,104700000,171.32
-1985-01-17,171.19,171.34,170.22,170.73,113600000,170.73
-1985-01-16,170.81,171.94,170.41,171.19,135500000,171.19
-1985-01-15,170.51,171.82,170.40,170.81,155300000,170.81
-1985-01-14,167.91,170.55,167.58,170.51,124900000,170.51
-1985-01-11,168.31,168.72,167.58,167.91,107600000,167.91
-1985-01-10,165.18,168.31,164.99,168.31,124700000,168.31
-1985-01-09,163.99,165.57,163.99,165.18,99230000,165.18
-1985-01-08,164.24,164.59,163.91,163.99,92110000,163.99
-1985-01-07,163.68,164.71,163.68,164.24,86190000,164.24
-1985-01-04,164.55,164.55,163.36,163.68,77480000,163.68
-1985-01-03,165.37,166.11,164.38,164.57,88880000,164.57
-1985-01-02,167.20,167.20,165.19,165.37,67820000,165.37
-1984-12-31,166.26,167.34,166.06,167.24,80260000,167.24
-1984-12-28,165.75,166.32,165.67,166.26,77070000,166.26
-1984-12-27,166.47,166.50,165.62,165.75,70100000,165.75
-1984-12-26,166.76,166.76,166.29,166.47,46700000,166.47
-1984-12-24,165.51,166.93,165.50,166.76,55550000,166.76
-1984-12-21,166.34,166.38,164.62,165.51,101200000,165.51
-1984-12-20,167.16,167.58,166.29,166.38,93220000,166.38
-1984-12-19,168.11,169.03,166.84,167.16,139600000,167.16
-1984-12-18,163.61,168.11,163.61,168.11,169000000,168.11
-1984-12-17,162.69,163.63,162.44,163.61,89490000,163.61
-1984-12-14,161.81,163.53,161.63,162.69,95060000,162.69
-1984-12-13,162.63,162.92,161.54,161.81,80850000,161.81
-1984-12-12,163.07,163.18,162.55,162.63,78710000,162.63
-1984-12-11,162.83,163.18,162.56,163.07,80240000,163.07
-1984-12-10,162.26,163.32,161.54,162.83,81140000,162.83
-1984-12-07,162.76,163.31,162.26,162.26,81000000,162.26
-1984-12-06,162.10,163.11,161.76,162.76,96560000,162.76
-1984-12-05,163.38,163.40,161.93,162.10,88700000,162.10
-1984-12-04,162.82,163.91,162.82,163.38,81250000,163.38
-1984-12-03,163.58,163.58,162.29,162.82,95300000,162.82
-1984-11-30,163.91,163.91,162.99,163.58,77580000,163.58
-1984-11-29,165.02,165.02,163.78,163.91,75860000,163.91
-1984-11-28,166.29,166.90,164.97,165.02,86300000,165.02
-1984-11-27,165.55,166.85,165.07,166.29,95470000,166.29
-1984-11-26,166.92,166.92,165.37,165.55,76520000,165.55
-1984-11-23,164.52,166.92,164.52,166.92,73910000,166.92
-1984-11-21,164.18,164.68,163.29,164.51,81620000,164.51
-1984-11-20,163.10,164.47,163.10,164.18,83240000,164.18
-1984-11-19,164.10,164.34,163.03,163.09,69730000,163.09
-1984-11-16,165.89,166.24,164.09,164.10,83140000,164.10
-1984-11-15,165.99,166.49,165.61,165.89,81530000,165.89
-1984-11-14,165.97,166.43,165.39,165.99,73940000,165.99
-1984-11-13,167.36,167.38,165.79,165.97,69790000,165.97
-1984-11-12,167.65,167.65,166.67,167.36,55610000,167.36
-1984-11-09,168.68,169.46,167.44,167.60,83620000,167.60
-1984-11-08,169.19,169.27,168.27,168.68,88580000,168.68
-1984-11-07,170.41,170.41,168.44,169.17,110800000,169.17
-1984-11-06,168.58,170.41,168.58,170.41,101200000,170.41
-1984-11-05,167.42,168.65,167.33,168.58,84730000,168.58
-1984-11-02,167.49,167.95,167.24,167.42,96810000,167.42
-1984-11-01,166.09,167.83,166.09,167.49,107300000,167.49
-1984-10-31,166.74,166.95,165.99,166.09,91890000,166.09
-1984-10-30,164.78,167.33,164.78,166.84,95200000,166.84
-1984-10-29,165.29,165.29,164.67,164.78,63200000,164.78
-1984-10-26,166.31,166.31,164.93,165.29,83900000,165.29
-1984-10-25,167.20,167.62,166.17,166.31,92760000,166.31
-1984-10-24,167.09,167.54,166.82,167.20,91620000,167.20
-1984-10-23,167.36,168.27,166.83,167.09,92260000,167.09
-1984-10-22,167.96,168.36,167.26,167.36,81020000,167.36
-1984-10-19,168.08,169.62,167.31,167.96,186900000,167.96
-1984-10-18,164.14,168.10,163.80,168.10,149500000,168.10
-1984-10-17,164.78,165.04,163.71,164.14,99740000,164.14
-1984-10-16,165.78,165.78,164.66,164.78,82930000,164.78
-1984-10-15,164.18,166.15,164.09,165.77,87590000,165.77
-1984-10-12,162.78,164.47,162.78,164.18,92190000,164.18
-1984-10-11,162.11,162.87,162.00,162.78,87020000,162.78
-1984-10-10,161.67,162.12,160.02,162.11,94270000,162.11
-1984-10-09,162.13,162.84,161.62,161.67,76840000,161.67
-1984-10-08,162.68,162.68,161.80,162.13,46360000,162.13
-1984-10-05,162.92,163.32,162.51,162.68,82950000,162.68
-1984-10-04,162.44,163.22,162.44,162.92,76700000,162.92
-1984-10-03,163.59,163.59,162.20,162.44,92400000,162.44
-1984-10-02,164.62,165.24,163.55,163.59,89360000,163.59
-1984-10-01,166.10,166.10,164.48,164.62,73630000,164.62
-1984-09-28,166.96,166.96,165.77,166.10,78950000,166.10
-1984-09-27,166.75,167.18,166.33,166.96,88880000,166.96
-1984-09-26,165.62,167.20,165.61,166.28,100200000,166.28
-1984-09-25,165.28,165.97,164.45,165.62,86250000,165.62
-1984-09-24,165.67,166.12,164.98,165.28,76380000,165.28
-1984-09-21,167.47,168.67,165.66,165.67,120600000,165.67
-1984-09-20,166.94,167.47,166.70,167.47,92030000,167.47
-1984-09-19,167.65,168.76,166.89,166.94,119900000,166.94
-1984-09-18,168.87,168.87,167.64,167.65,107700000,167.65
-1984-09-17,168.78,169.37,167.99,168.87,88790000,168.87
-1984-09-14,167.94,169.65,167.94,168.78,137400000,168.78
-1984-09-13,164.68,167.94,164.68,167.94,110500000,167.94
-1984-09-12,164.45,164.81,164.14,164.68,77980000,164.68
-1984-09-11,165.22,166.17,164.28,164.45,101300000,164.45
-1984-09-10,164.37,165.05,163.06,164.26,74410000,164.26
-1984-09-07,165.65,166.31,164.22,164.37,84110000,164.37
-1984-09-06,164.29,165.95,164.29,165.65,91920000,165.65
-1984-09-05,164.88,164.88,163.84,164.29,69250000,164.29
-1984-09-04,166.68,166.68,164.73,164.88,62110000,164.88
-1984-08-31,166.60,166.68,165.78,166.68,57460000,166.68
-1984-08-30,167.10,167.19,166.55,166.60,70840000,166.60
-1984-08-29,167.40,168.21,167.03,167.09,90660000,167.09
-1984-08-28,166.44,167.43,166.21,167.40,70560000,167.40
-1984-08-27,167.51,167.51,165.81,166.44,57660000,166.44
-1984-08-24,167.12,167.52,167.12,167.51,69640000,167.51
-1984-08-23,167.06,167.78,166.61,167.12,83130000,167.12
-1984-08-22,167.83,168.80,166.92,167.06,116000000,167.06
-1984-08-21,164.94,168.22,164.93,167.83,128100000,167.83
-1984-08-20,164.14,164.94,163.76,164.94,75450000,164.94
-1984-08-17,164.30,164.61,163.78,164.14,71500000,164.14
-1984-08-16,162.80,164.42,162.75,163.77,93610000,163.77
-1984-08-15,164.42,164.42,162.75,162.80,91880000,162.80
-1984-08-14,165.43,166.09,164.28,164.42,81470000,164.42
-1984-08-13,164.84,165.49,163.98,165.43,77960000,165.43
-1984-08-10,165.54,168.59,165.24,165.42,171000000,165.42
-1984-08-09,161.75,165.88,161.47,165.54,131100000,165.54
-1984-08-08,162.71,163.87,161.75,161.75,121200000,161.75
-1984-08-07,162.60,163.58,160.81,162.72,127900000,162.72
-1984-08-06,162.35,165.27,162.09,162.60,203000000,162.60
-1984-08-03,160.28,162.56,158.00,162.35,236500000,162.35
-1984-08-02,154.08,157.99,154.08,157.99,172800000,157.99
-1984-08-01,150.66,154.08,150.66,154.08,127500000,154.08
-1984-07-31,150.19,150.77,149.65,150.66,86910000,150.66
-1984-07-30,151.19,151.19,150.14,150.19,72330000,150.19
-1984-07-27,150.08,151.38,149.99,151.19,101350000,151.19
-1984-07-26,148.83,150.16,148.83,150.08,90410000,150.08
-1984-07-25,147.82,149.30,147.26,148.83,90520000,148.83
-1984-07-24,148.95,149.28,147.78,147.82,74370000,147.82
-1984-07-23,149.55,149.55,147.85,148.95,77990000,148.95
-1984-07-20,150.37,150.58,149.07,149.55,79090000,149.55
-1984-07-19,151.40,151.40,150.27,150.37,85230000,150.37
-1984-07-18,152.38,152.38,151.11,151.40,76640000,151.40
-1984-07-17,151.60,152.60,151.26,152.38,82890000,152.38
-1984-07-16,150.88,151.60,150.01,151.60,73420000,151.60
-1984-07-13,150.03,151.16,150.03,150.88,75480000,150.88
-1984-07-12,150.56,151.06,149.63,150.03,86050000,150.03
-1984-07-11,152.89,152.89,150.55,150.56,89540000,150.56
-1984-07-10,153.36,153.53,152.57,152.89,74010000,152.89
-1984-07-09,152.24,153.53,151.44,153.36,74830000,153.36
-1984-07-06,152.76,152.76,151.63,152.24,65850000,152.24
-1984-07-05,153.70,153.87,152.71,152.76,66100000,152.76
-1984-07-03,153.20,153.86,153.10,153.70,69960000,153.70
-1984-07-02,153.16,153.22,152.44,153.20,69230000,153.20
-1984-06-29,152.84,154.08,152.82,153.18,90770000,153.18
-1984-06-28,151.64,153.07,151.62,152.84,77660000,152.84
-1984-06-27,152.71,152.88,151.30,151.64,78400000,151.64
-1984-06-26,153.97,153.97,152.47,152.71,82600000,152.71
-1984-06-25,154.46,154.67,153.86,153.97,72850000,153.97
-1984-06-22,154.51,154.92,153.89,154.46,98400000,154.46
-1984-06-21,154.84,155.64,154.05,154.51,123380000,154.51
-1984-06-20,151.89,154.84,150.96,154.84,99090000,154.84
-1984-06-19,151.73,153.00,151.73,152.61,98000000,152.61
-1984-06-18,149.03,151.92,148.53,151.73,94900000,151.73
-1984-06-15,150.49,150.71,149.02,149.03,85460000,149.03
-1984-06-14,152.12,152.14,150.31,150.39,79120000,150.39
-1984-06-13,152.19,152.85,151.86,152.13,67510000,152.13
-1984-06-12,153.06,153.07,151.61,152.19,84660000,152.19
-1984-06-11,155.17,155.17,153.00,153.06,69050000,153.06
-1984-06-08,154.92,155.40,154.57,155.17,67840000,155.17
-1984-06-07,155.01,155.11,154.36,154.92,82120000,154.92
-1984-06-06,153.65,155.03,153.38,155.01,83440000,155.01
-1984-06-05,154.34,154.34,153.28,153.65,84840000,153.65
-1984-06-04,153.24,155.10,153.24,154.34,96740000,154.34
-1984-06-01,150.55,153.24,150.55,153.24,96040000,153.24
-1984-05-31,150.35,150.69,149.76,150.55,81890000,150.55
-1984-05-30,150.29,151.43,148.68,150.35,105660000,150.35
-1984-05-29,151.62,151.86,149.95,150.29,69060000,150.29
-1984-05-25,151.23,152.02,150.85,151.62,78190000,151.62
-1984-05-24,153.15,153.15,150.80,151.23,99040000,151.23
-1984-05-23,153.88,154.02,153.10,153.15,82690000,153.15
-1984-05-22,154.73,154.73,152.99,153.88,88030000,153.88
-1984-05-21,155.78,156.11,154.63,154.73,73380000,154.73
-1984-05-18,156.57,156.77,155.24,155.78,81270000,155.78
-1984-05-17,157.99,157.99,156.15,156.57,90310000,156.57
-1984-05-16,158.00,158.41,157.83,157.99,89210000,157.99
-1984-05-15,157.50,158.27,157.29,158.00,88250000,158.00
-1984-05-14,158.49,158.49,157.20,157.50,64900000,157.50
-1984-05-11,160.00,160.00,157.42,158.49,82780000,158.49
-1984-05-10,160.11,160.45,159.61,160.00,101810000,160.00
-1984-05-09,160.52,161.31,159.39,160.11,100590000,160.11
-1984-05-08,159.47,160.52,159.14,160.52,81610000,160.52
-1984-05-07,159.11,159.48,158.63,159.47,72760000,159.47
-1984-05-04,161.20,161.20,158.93,159.11,98580000,159.11
-1984-05-03,161.90,161.90,160.95,161.20,91910000,161.20
-1984-05-02,161.68,162.11,161.41,161.90,107080000,161.90
-1984-05-01,160.05,161.69,160.05,161.68,110550000,161.68
-1984-04-30,159.89,160.43,159.30,160.05,72740000,160.05
-1984-04-27,160.30,160.69,159.77,159.89,88530000,159.89
-1984-04-26,158.65,160.50,158.65,160.30,98000000,160.30
-1984-04-25,158.07,158.77,157.80,158.65,83520000,158.65
-1984-04-24,156.80,158.38,156.61,158.07,87060000,158.07
-1984-04-23,158.02,158.05,156.79,156.80,73080000,156.80
-1984-04-19,157.90,158.02,157.10,158.02,75860000,158.02
-1984-04-18,158.97,158.97,157.64,157.90,85040000,157.90
-1984-04-17,158.32,159.59,158.32,158.97,98150000,158.97
-1984-04-16,157.31,158.35,156.49,158.32,73870000,158.32
-1984-04-13,157.73,158.87,157.13,157.31,99620000,157.31
-1984-04-12,155.00,157.74,154.17,157.73,96330000,157.73
-1984-04-11,155.93,156.31,154.90,155.00,80280000,155.00
-1984-04-10,155.45,156.57,155.45,155.87,78990000,155.87
-1984-04-09,155.48,155.86,154.71,155.45,71570000,155.45
-1984-04-06,155.04,155.48,154.12,155.48,86620000,155.48
-1984-04-05,157.54,158.10,154.96,155.04,101750000,155.04
-1984-04-04,157.66,158.11,157.29,157.54,92860000,157.54
-1984-04-03,157.99,158.27,157.17,157.66,87980000,157.66
-1984-04-02,159.18,159.87,157.63,157.98,85680000,157.98
-1984-03-30,159.52,159.52,158.92,159.18,71590000,159.18
-1984-03-29,159.88,160.46,159.52,159.52,81470000,159.52
-1984-03-28,157.30,159.90,157.30,159.88,104870000,159.88
-1984-03-27,156.67,157.30,156.61,157.30,73670000,157.30
-1984-03-26,156.86,157.18,156.31,156.67,69070000,156.67
-1984-03-23,156.69,156.92,156.02,156.86,79760000,156.86
-1984-03-22,158.66,158.67,156.61,156.69,87340000,156.69
-1984-03-21,158.86,159.26,158.59,158.66,87170000,158.66
-1984-03-20,157.78,159.17,157.78,158.86,86460000,158.86
-1984-03-19,159.27,159.27,157.28,157.78,64060000,157.78
-1984-03-16,157.41,160.45,157.41,159.27,118000000,159.27
-1984-03-15,156.78,158.05,156.73,157.41,79520000,157.41
-1984-03-14,156.78,157.17,156.22,156.77,77250000,156.77
-1984-03-13,156.34,157.93,156.34,156.78,102600000,156.78
-1984-03-12,154.35,156.35,154.35,156.34,84470000,156.34
-1984-03-09,155.12,155.19,153.77,154.35,73170000,154.35
-1984-03-08,154.57,155.80,154.35,155.19,80630000,155.19
-1984-03-07,156.25,156.25,153.81,154.57,90080000,154.57
-1984-03-06,157.89,158.37,156.21,156.25,83590000,156.25
-1984-03-05,159.24,159.24,157.59,157.89,69870000,157.89
-1984-03-02,158.19,159.90,158.19,159.24,108270000,159.24
-1984-03-01,157.06,158.19,156.77,158.19,82010000,158.19
-1984-02-29,156.82,158.27,156.41,157.06,92810000,157.06
-1984-02-28,159.30,159.30,156.59,156.82,91010000,156.82
-1984-02-27,157.51,159.58,157.08,159.30,99140000,159.30
-1984-02-24,154.31,157.51,154.29,157.51,102620000,157.51
-1984-02-23,154.02,154.45,152.13,154.29,100220000,154.29
-1984-02-22,154.52,155.10,153.94,154.31,90080000,154.31
-1984-02-21,155.71,155.74,154.47,154.64,71890000,154.64
-1984-02-17,156.13,156.80,155.51,155.74,76600000,155.74
-1984-02-16,155.94,156.44,155.44,156.13,81750000,156.13
-1984-02-15,156.61,157.48,156.10,156.25,94870000,156.25
-1984-02-14,154.95,156.61,154.95,156.61,91800000,156.61
-1984-02-13,156.30,156.32,154.13,154.95,78460000,154.95
-1984-02-10,155.42,156.52,155.42,156.30,92220000,156.30
-1984-02-09,155.85,156.17,154.30,155.42,128190000,155.42
-1984-02-08,158.74,159.07,155.67,155.85,96890000,155.85
-1984-02-07,157.91,158.81,157.01,158.74,107640000,158.74
-1984-02-06,160.91,160.91,158.02,158.08,109090000,158.08
-1984-02-03,163.44,163.98,160.82,160.91,109100000,160.91
-1984-02-02,162.74,163.36,162.24,163.36,111330000,163.36
-1984-02-01,163.41,164.00,162.27,162.74,107100000,162.74
-1984-01-31,162.87,163.60,162.03,163.41,113510000,163.41
-1984-01-30,164.40,164.67,162.40,162.87,103120000,162.87
-1984-01-27,164.24,164.33,163.07,163.94,103720000,163.94
-1984-01-26,164.84,165.55,164.12,164.24,111100000,164.24
-1984-01-25,165.94,167.12,164.74,164.84,113470000,164.84
-1984-01-24,164.87,166.35,164.84,165.94,103050000,165.94
-1984-01-23,166.21,166.21,164.83,164.87,82010000,164.87
-1984-01-20,167.04,167.06,165.87,166.21,93360000,166.21
-1984-01-19,167.55,167.65,166.67,167.04,98340000,167.04
-1984-01-18,167.83,168.34,167.02,167.55,109010000,167.55
-1984-01-17,167.18,167.84,167.01,167.83,92750000,167.83
-1984-01-16,167.02,167.55,166.77,167.18,93790000,167.18
-1984-01-13,167.75,168.59,166.64,167.02,101790000,167.02
-1984-01-12,167.79,168.40,167.68,167.75,99410000,167.75
-1984-01-11,167.95,168.07,167.27,167.80,98660000,167.80
-1984-01-10,168.90,169.54,167.87,167.95,109570000,167.95
-1984-01-09,169.18,169.46,168.48,168.90,107100000,168.90
-1984-01-06,168.81,169.31,168.49,169.28,137590000,169.28
-1984-01-05,166.78,169.10,166.78,168.81,159990000,168.81
-1984-01-04,164.09,166.78,164.04,166.78,112980000,166.78
-1984-01-03,164.93,164.93,163.98,164.04,71340000,164.04
-1983-12-30,164.86,165.05,164.58,164.93,71840000,164.93
-1983-12-29,165.33,165.84,164.83,164.86,86560000,164.86
-1983-12-28,164.69,165.34,164.30,165.34,85660000,165.34
-1983-12-27,163.22,164.76,163.22,164.76,63800000,164.76
-1983-12-23,163.27,163.31,162.90,163.22,62710000,163.22
-1983-12-22,163.56,164.18,163.17,163.53,106260000,163.53
-1983-12-21,162.00,163.57,161.99,163.56,108080000,163.56
-1983-12-20,162.33,162.80,161.64,162.00,83740000,162.00
-1983-12-19,162.34,162.88,162.27,162.32,75180000,162.32
-1983-12-16,161.69,162.39,161.58,162.39,81030000,162.39
-1983-12-15,163.33,163.33,161.66,161.66,88300000,161.66
-1983-12-14,164.93,164.93,163.25,163.33,85430000,163.33
-1983-12-13,165.62,165.63,164.85,164.93,93500000,164.93
-1983-12-12,165.13,165.62,164.99,165.62,77340000,165.62
-1983-12-09,165.20,165.29,164.50,165.08,98280000,165.08
-1983-12-08,165.91,166.01,164.86,165.20,96530000,165.20
-1983-12-07,165.47,166.34,165.35,165.91,105670000,165.91
-1983-12-06,165.77,165.93,165.34,165.47,89690000,165.47
-1983-12-05,165.44,165.79,164.71,165.76,88330000,165.76
-1983-12-02,166.49,166.70,165.25,165.44,93960000,165.44
-1983-12-01,166.37,166.77,166.08,166.49,106970000,166.49
-1983-11-30,167.91,168.07,166.33,166.40,120130000,166.40
-1983-11-29,166.54,167.92,166.17,167.91,100460000,167.91
-1983-11-28,167.20,167.22,166.21,166.54,78210000,166.54
-1983-11-25,167.02,167.20,166.73,167.18,57820000,167.18
-1983-11-23,166.88,167.21,166.26,166.96,108080000,166.96
-1983-11-22,166.05,167.26,166.05,166.84,117550000,166.84
-1983-11-21,165.04,166.05,165.00,166.05,97740000,166.05
-1983-11-18,166.08,166.13,164.50,165.09,88280000,165.09
-1983-11-17,166.08,166.49,165.51,166.13,80740000,166.13
-1983-11-16,165.36,166.41,165.34,166.08,83380000,166.08
-1983-11-15,166.58,166.59,165.28,165.36,77840000,165.36
-1983-11-14,166.29,167.58,166.27,166.58,86880000,166.58
-1983-11-11,164.41,166.30,164.34,166.29,74270000,166.29
-1983-11-10,163.99,164.71,163.97,164.41,88730000,164.41
-1983-11-09,161.74,163.97,161.74,163.97,83100000,163.97
-1983-11-08,161.91,162.15,161.63,161.76,64900000,161.76
-1983-11-07,162.42,162.56,161.84,161.91,69400000,161.91
-1983-11-04,162.68,163.45,162.22,162.44,72080000,162.44
-1983-11-03,164.84,164.85,163.42,163.45,85350000,163.45
-1983-11-02,165.21,165.21,163.55,164.84,95210000,164.84
-1983-11-01,163.55,163.66,162.37,163.66,84460000,163.66
-1983-10-31,163.37,164.58,162.86,163.55,79460000,163.55
-1983-10-28,164.89,165.19,163.23,163.37,81180000,163.37
-1983-10-27,165.31,165.38,164.41,164.84,79570000,164.84
-1983-10-26,166.49,166.65,165.36,165.38,79570000,165.38
-1983-10-25,166.00,167.15,166.00,166.47,82530000,166.47
-1983-10-24,165.85,165.99,163.85,165.99,85420000,165.99
-1983-10-21,166.97,167.23,164.98,165.95,91640000,165.95
-1983-10-20,166.77,167.35,166.44,166.98,86000000,166.98
-1983-10-19,167.81,167.81,165.67,166.73,107790000,166.73
-1983-10-18,170.41,170.41,167.67,167.81,91080000,167.81
-1983-10-17,169.85,171.18,169.63,170.43,77730000,170.43
-1983-10-14,169.88,169.99,169.18,169.86,71600000,169.86
-1983-10-13,169.63,170.12,169.13,169.87,67750000,169.87
-1983-10-12,170.34,170.84,169.34,169.62,75630000,169.62
-1983-10-11,172.59,172.59,170.34,170.34,79510000,170.34
-1983-10-10,170.77,172.65,170.05,172.65,67050000,172.65
-1983-10-07,170.32,171.10,170.31,170.80,103630000,170.80
-1983-10-06,167.76,170.28,167.76,170.28,118270000,170.28
-1983-10-05,166.29,167.74,165.92,167.74,101710000,167.74
-1983-10-04,165.81,166.80,165.81,166.27,90270000,166.27
-1983-10-03,165.99,166.07,164.93,165.81,77230000,165.81
-1983-09-30,167.23,167.23,165.63,166.07,70860000,166.07
-1983-09-29,168.02,168.35,167.23,167.23,73730000,167.23
-1983-09-28,168.42,168.53,167.52,168.00,75820000,168.00
-1983-09-27,170.02,170.02,167.95,168.43,81100000,168.43
-1983-09-26,169.53,170.41,169.16,170.07,86400000,170.07
-1983-09-23,169.76,170.17,168.88,169.51,93180000,169.51
-1983-09-22,168.40,169.78,168.22,169.76,97050000,169.76
-1983-09-21,169.27,169.30,168.21,168.41,91280000,168.41
-1983-09-20,167.64,169.38,167.64,169.24,103050000,169.24
-1983-09-19,166.27,168.09,166.26,167.62,85630000,167.62
-1983-09-16,164.42,166.57,164.39,166.25,75530000,166.25
-1983-09-15,165.39,165.58,164.38,164.38,70420000,164.38
-1983-09-14,164.80,165.42,164.63,165.35,73370000,165.35
-1983-09-13,165.48,165.48,164.17,164.80,73970000,164.80
-1983-09-12,166.95,169.20,165.27,165.48,114020000,165.48
-1983-09-09,167.77,167.77,166.91,166.92,77990000,166.92
-1983-09-08,167.96,168.14,167.12,167.77,79250000,167.77
-1983-09-07,167.90,168.48,167.46,167.96,94240000,167.96
-1983-09-06,165.20,167.90,165.03,167.89,87500000,167.89
-1983-09-02,164.25,165.07,164.21,165.00,59300000,165.00
-1983-09-01,164.40,164.66,163.95,164.23,76120000,164.23
-1983-08-31,162.55,164.40,162.32,164.40,80800000,164.40
-1983-08-30,162.25,163.13,162.11,162.58,62370000,162.58
-1983-08-29,162.14,162.32,160.97,162.25,53030000,162.25
-1983-08-26,160.85,162.16,160.25,162.14,61650000,162.14
-1983-08-25,161.27,161.28,159.96,160.84,70140000,160.84
-1983-08-24,162.77,162.77,161.20,161.25,72200000,161.25
-1983-08-23,164.33,164.33,162.54,162.77,66800000,162.77
-1983-08-22,164.18,165.64,163.77,164.34,76420000,164.34
-1983-08-19,163.58,164.27,163.22,163.98,58950000,163.98
-1983-08-18,165.29,165.91,163.55,163.55,82280000,163.55
-1983-08-17,163.58,165.40,163.43,165.29,87800000,165.29
-1983-08-16,163.74,163.84,162.72,163.41,71780000,163.41
-1983-08-15,162.22,164.76,162.22,163.70,83200000,163.70
-1983-08-12,161.55,162.60,161.55,162.16,71840000,162.16
-1983-08-11,161.55,162.14,161.41,161.54,70630000,161.54
-1983-08-10,160.11,161.77,159.47,161.54,82900000,161.54
-1983-08-09,159.20,160.14,158.50,160.13,81420000,160.13
-1983-08-08,161.73,161.73,159.18,159.18,71460000,159.18
-1983-08-05,161.33,161.88,160.89,161.74,67850000,161.74
-1983-08-04,163.28,163.42,159.63,161.33,100870000,161.33
-1983-08-03,162.01,163.44,161.52,163.44,80370000,163.44
-1983-08-02,162.06,163.04,161.97,162.01,74460000,162.01
-1983-08-01,162.34,162.78,161.55,162.04,77210000,162.04
-1983-07-29,165.03,165.03,161.50,162.56,95240000,162.56
-1983-07-28,167.32,167.79,164.99,165.04,78410000,165.04
-1983-07-27,170.68,170.72,167.49,167.59,99290000,167.59
-1983-07-26,169.62,170.63,169.26,170.53,91280000,170.53
-1983-07-25,167.67,169.74,167.63,169.53,73680000,169.53
-1983-07-22,168.51,169.08,168.40,168.89,68850000,168.89
-1983-07-21,169.29,169.80,168.33,169.06,101830000,169.06
-1983-07-20,164.89,169.29,164.89,169.29,109310000,169.29
-1983-07-19,163.95,165.18,163.95,164.82,74030000,164.82
-1983-07-18,164.28,164.29,163.30,163.95,69110000,163.95
-1983-07-15,166.01,166.04,164.03,164.29,63160000,164.29
-1983-07-14,165.61,166.96,165.61,166.01,83500000,166.01
-1983-07-13,165.00,165.68,164.77,165.46,68900000,165.46
-1983-07-12,168.05,168.05,165.51,165.53,70220000,165.53
-1983-07-11,167.09,168.11,167.09,168.11,61610000,168.11
-1983-07-08,167.56,167.98,166.95,167.08,66520000,167.08
-1983-07-07,168.48,169.15,167.08,167.56,97130000,167.56
-1983-07-06,166.71,168.88,166.49,168.48,85670000,168.48
-1983-07-05,166.55,168.80,165.80,166.60,67320000,166.60
-1983-07-01,168.11,168.64,167.77,168.64,65110000,168.64
-1983-06-30,167.64,167.64,167.64,167.64,76310000,167.64
-1983-06-29,165.78,166.64,165.43,166.64,81580000,166.64
-1983-06-28,168.45,168.81,165.67,165.68,82730000,165.68
-1983-06-27,170.40,170.46,168.32,168.46,69360000,168.46
-1983-06-24,170.57,170.69,170.03,170.41,80810000,170.41
-1983-06-23,170.99,171.00,170.13,170.57,89590000,170.57
-1983-06-22,170.53,171.60,170.42,170.99,110270000,170.99
-1983-06-21,169.03,170.60,168.25,170.53,102880000,170.53
-1983-06-20,169.13,170.10,168.59,169.02,84270000,169.02
-1983-06-17,169.11,169.64,168.60,169.13,93630000,169.13
-1983-06-16,167.11,169.38,167.11,169.14,124560000,169.14
-1983-06-15,165.52,167.12,165.07,167.12,93410000,167.12
-1983-06-14,164.87,165.93,164.87,165.53,97710000,165.53
-1983-06-13,162.70,164.84,162.70,164.84,90700000,164.84
-1983-06-10,161.86,162.76,161.86,162.68,78470000,162.68
-1983-06-09,161.37,161.92,160.80,161.83,87440000,161.83
-1983-06-08,162.78,162.78,161.35,161.36,96600000,161.36
-1983-06-07,164.84,164.93,162.77,162.77,88550000,162.77
-1983-06-06,164.43,165.09,163.75,164.83,87670000,164.83
-1983-06-03,163.96,164.79,163.96,164.42,83110000,164.42
-1983-06-02,162.56,164.00,162.56,163.98,89750000,163.98
-1983-06-01,162.38,162.64,161.33,162.55,84460000,162.55
-1983-05-31,164.44,164.44,162.12,162.39,73910000,162.39
-1983-05-27,165.49,165.49,164.33,164.46,76290000,164.46
-1983-05-26,166.22,166.39,165.27,165.48,94980000,165.48
-1983-05-25,165.54,166.21,164.79,166.21,121050000,166.21
-1983-05-24,163.45,165.59,163.45,165.54,109850000,165.54
-1983-05-23,162.06,163.50,160.29,163.43,84960000,163.43
-1983-05-20,161.97,162.14,161.25,162.14,73150000,162.14
-1983-05-19,163.27,163.61,161.98,161.99,83260000,161.99
-1983-05-18,163.73,165.18,163.16,163.27,99780000,163.27
-1983-05-17,163.40,163.71,162.55,163.71,79510000,163.71
-1983-05-16,164.90,164.90,162.33,163.40,76250000,163.40
-1983-05-13,164.26,165.23,164.26,164.91,83110000,164.91
-1983-05-12,164.98,165.35,163.82,164.25,84060000,164.25
-1983-05-11,165.95,166.30,164.53,164.96,99820000,164.96
-1983-05-10,165.82,166.40,165.74,165.95,104010000,165.95
-1983-05-09,166.10,166.46,164.90,165.81,93670000,165.81
-1983-05-06,164.30,166.99,164.30,166.10,128200000,166.10
-1983-05-05,163.35,164.30,163.35,164.28,107860000,164.28
-1983-05-04,162.38,163.64,162.38,163.31,101690000,163.31
-1983-05-03,162.10,162.35,160.80,162.34,89550000,162.34
-1983-05-02,164.41,164.42,161.99,162.11,88170000,162.11
-1983-04-29,162.97,164.43,162.72,164.43,105750000,164.43
-1983-04-28,161.44,162.96,161.44,162.95,94410000,162.95
-1983-04-27,161.85,162.77,160.76,161.44,118140000,161.44
-1983-04-26,158.81,161.81,158.07,161.81,91210000,161.81
-1983-04-25,160.43,160.83,158.72,158.81,90150000,158.81
-1983-04-22,160.04,160.76,160.02,160.42,92270000,160.42
-1983-04-21,160.73,161.08,159.96,160.05,106170000,160.05
-1983-04-20,158.71,160.83,158.71,160.71,110240000,160.71
-1983-04-19,159.74,159.74,158.54,158.71,91210000,158.71
-1983-04-18,158.75,159.75,158.41,159.74,88560000,159.74
-1983-04-15,158.11,158.75,158.11,158.75,89590000,158.75
-1983-04-14,156.80,158.12,156.55,158.12,90160000,158.12
-1983-04-13,155.82,157.22,155.82,156.77,100520000,156.77
-1983-04-12,155.15,155.82,154.78,155.82,79900000,155.82
-1983-04-11,152.87,155.14,152.87,155.14,81440000,155.14
-1983-04-08,151.77,152.85,151.39,152.85,67710000,152.85
-1983-04-07,151.04,151.76,150.81,151.76,69480000,151.76
-1983-04-06,151.90,151.90,150.17,151.04,77140000,151.04
-1983-04-05,153.04,153.92,151.81,151.90,76810000,151.90
-1983-04-04,152.92,153.02,152.23,153.02,66010000,153.02
-1983-03-31,153.41,155.02,152.86,152.96,100570000,152.96
-1983-03-30,151.60,153.39,151.60,153.39,75800000,153.39
-1983-03-29,151.85,152.46,151.42,151.59,65300000,151.59
-1983-03-28,152.67,152.67,151.56,151.85,58510000,151.85
-1983-03-25,153.37,153.71,152.30,152.67,77330000,152.67
-1983-03-24,152.82,153.78,152.82,153.37,92340000,153.37
-1983-03-23,150.65,152.98,150.65,152.81,94980000,152.81
-1983-03-22,151.21,151.59,150.60,150.66,79610000,150.66
-1983-03-21,149.82,151.20,149.32,151.19,72160000,151.19
-1983-03-18,149.59,150.29,149.56,149.90,75110000,149.90
-1983-03-17,149.80,149.80,149.12,149.59,70290000,149.59
-1983-03-16,151.36,151.62,149.78,149.81,83570000,149.81
-1983-03-15,150.83,151.37,150.40,151.37,62410000,151.37
-1983-03-14,151.28,151.30,150.24,150.83,61890000,150.83
-1983-03-11,151.75,151.75,150.65,151.24,67240000,151.24
-1983-03-10,152.87,154.01,151.75,151.80,95410000,151.80
-1983-03-09,151.25,152.87,150.84,152.87,84250000,152.87
-1983-03-08,153.63,153.63,151.26,151.26,79410000,151.26
-1983-03-07,153.67,154.00,152.65,153.67,84020000,153.67
-1983-03-04,153.47,153.67,152.53,153.67,90930000,153.67
-1983-03-03,152.31,154.16,152.31,153.48,114440000,153.48
-1983-03-02,150.91,152.63,150.91,152.30,112600000,152.30
-1983-03-01,148.07,150.88,148.07,150.88,103750000,150.88
-1983-02-28,149.74,149.74,147.81,148.06,83750000,148.06
-1983-02-25,149.60,150.88,149.60,149.74,100970000,149.74
-1983-02-24,146.80,149.67,146.80,149.60,113220000,149.60
-1983-02-23,145.47,146.79,145.40,146.79,84100000,146.79
-1983-02-22,148.01,148.11,145.42,145.48,84080000,145.48
-1983-02-18,147.44,148.29,147.21,148.00,77420000,148.00
-1983-02-17,147.43,147.57,143.84,147.44,74930000,147.44
-1983-02-16,148.31,148.66,147.41,147.43,82100000,147.43
-1983-02-15,148.94,149.41,148.13,148.30,89040000,148.30
-1983-02-14,147.71,149.14,147.40,148.93,72640000,148.93
-1983-02-11,147.51,148.81,147.18,147.65,86700000,147.65
-1983-02-10,145.04,147.75,145.04,147.50,93510000,147.50
-1983-02-09,145.70,145.83,144.09,145.00,84520000,145.00
-1983-02-08,146.93,147.21,145.52,145.70,76580000,145.70
-1983-02-07,146.14,147.42,146.14,146.93,86030000,146.93
-1983-02-04,144.26,146.14,144.14,146.14,87000000,146.14
-1983-02-03,143.25,144.43,143.25,144.26,78890000,144.26
-1983-02-02,142.95,143.52,141.90,143.23,77220000,143.23
-1983-02-01,145.29,145.29,142.96,142.96,82750000,142.96
-1983-01-31,144.51,145.30,143.93,145.30,67140000,145.30
-1983-01-28,144.31,145.47,144.25,144.51,89490000,144.51
-1983-01-27,141.54,144.30,141.54,144.27,88120000,144.27
-1983-01-26,141.77,142.16,141.16,141.54,73720000,141.54
-1983-01-25,139.98,141.75,139.98,141.75,79740000,141.75
-1983-01-24,143.84,143.84,139.10,139.97,90800000,139.97
-1983-01-21,146.30,146.30,143.25,143.85,77110000,143.85
-1983-01-20,145.29,146.62,145.29,146.29,82790000,146.29
-1983-01-19,146.40,146.45,144.51,145.27,80900000,145.27
-1983-01-18,146.71,146.74,145.52,146.40,78380000,146.40
-1983-01-17,146.65,147.90,146.64,146.72,89210000,146.72
-1983-01-14,145.72,147.12,145.72,146.65,86480000,146.65
-1983-01-13,146.67,146.94,145.67,145.73,77030000,145.73
-1983-01-12,145.76,148.36,145.76,146.69,109850000,146.69
-1983-01-11,146.79,146.83,145.38,145.78,98250000,145.78
-1983-01-10,145.19,147.25,144.58,146.78,101890000,146.78
-1983-01-07,145.27,146.46,145.15,145.18,127290000,145.18
-1983-01-06,142.01,145.77,142.01,145.27,129410000,145.27
-1983-01-05,141.35,142.60,141.15,141.96,95390000,141.96
-1983-01-04,138.33,141.36,138.08,141.36,75530000,141.36
-1983-01-03,140.65,141.33,138.20,138.34,59080000,138.34
-1982-12-31,140.34,140.78,140.27,140.64,42110000,140.64
-1982-12-30,141.24,141.68,140.22,140.33,56380000,140.33
-1982-12-29,140.77,141.73,140.68,141.24,54810000,141.24
-1982-12-28,142.18,142.34,140.75,140.77,58610000,140.77
-1982-12-27,139.73,142.32,139.72,142.17,64690000,142.17
-1982-12-23,138.84,139.94,138.84,139.72,62880000,139.72
-1982-12-22,138.63,139.69,138.60,138.83,83470000,138.83
-1982-12-21,136.24,139.27,136.07,138.61,78010000,138.61
-1982-12-20,137.49,137.84,136.19,136.25,62210000,136.25
-1982-12-17,135.35,137.71,135.35,137.49,76010000,137.49
-1982-12-16,135.22,135.78,134.79,135.30,73680000,135.30
-1982-12-15,137.40,137.40,135.12,135.24,81030000,135.24
-1982-12-14,139.99,142.50,137.34,137.40,98380000,137.40
-1982-12-13,139.57,140.12,139.50,139.95,63140000,139.95
-1982-12-10,139.99,141.15,139.35,139.57,86430000,139.57
-1982-12-09,141.80,141.80,139.92,140.00,90320000,140.00
-1982-12-08,142.71,143.58,141.82,141.82,97430000,141.82
-1982-12-07,141.79,143.68,141.79,142.72,111620000,142.72
-1982-12-06,138.70,141.77,138.01,141.77,83880000,141.77
-1982-12-03,138.87,139.59,138.59,138.69,71540000,138.69
-1982-12-02,138.72,139.63,138.66,138.82,77600000,138.82
-1982-12-01,138.56,140.37,138.35,138.72,107850000,138.72
-1982-11-30,134.20,138.53,134.19,138.53,93470000,138.53
-1982-11-29,134.89,135.29,133.69,134.20,61080000,134.20
-1982-11-26,133.89,134.88,133.89,134.88,38810000,134.88
-1982-11-24,132.92,133.88,132.92,133.88,67220000,133.88
-1982-11-23,134.21,134.28,132.89,132.93,72920000,132.93
-1982-11-22,137.03,137.10,134.21,134.22,74960000,134.22
-1982-11-19,138.35,138.93,137.00,137.02,70310000,137.02
-1982-11-18,137.93,138.78,137.47,138.34,77620000,138.34
-1982-11-17,135.47,137.93,135.47,137.93,84440000,137.93
-1982-11-16,136.97,136.97,134.05,135.42,102910000,135.42
-1982-11-15,139.54,139.54,137.00,137.03,78900000,137.03
-1982-11-12,141.75,141.85,139.53,139.53,95080000,139.53
-1982-11-11,141.15,141.75,139.88,141.75,78410000,141.75
-1982-11-10,143.04,144.36,140.80,141.16,113240000,141.16
-1982-11-09,140.48,143.16,140.46,143.02,111220000,143.02
-1982-11-08,142.12,142.12,139.98,140.44,75240000,140.44
-1982-11-05,141.85,142.43,141.32,142.16,96550000,142.16
-1982-11-04,142.85,143.99,141.65,141.85,149350000,141.85
-1982-11-03,137.53,142.88,137.53,142.87,137010000,142.87
-1982-11-02,135.48,138.51,135.48,137.49,104770000,137.49
-1982-11-01,133.72,136.03,133.22,135.47,73530000,135.47
-1982-10-29,133.54,134.02,132.64,133.72,74830000,133.72
-1982-10-28,135.28,135.42,133.59,133.59,73590000,133.59
-1982-10-27,134.48,135.92,134.48,135.29,81670000,135.29
-1982-10-26,133.29,134.48,131.50,134.48,102080000,134.48
-1982-10-25,138.81,138.81,133.32,133.32,83720000,133.32
-1982-10-22,139.06,140.40,138.75,138.83,101120000,138.83
-1982-10-21,139.23,140.27,137.63,139.06,122460000,139.06
-1982-10-20,136.58,139.23,136.37,139.23,98680000,139.23
-1982-10-19,136.73,137.96,135.72,136.58,100850000,136.58
-1982-10-18,133.59,136.73,133.59,136.73,83790000,136.73
-1982-10-15,134.55,134.61,133.28,133.57,80290000,133.57
-1982-10-14,136.71,136.89,134.55,134.57,107530000,134.57
-1982-10-13,134.42,137.97,134.14,136.71,139800000,136.71
-1982-10-12,134.48,135.85,133.59,134.44,126310000,134.44
-1982-10-11,131.06,135.53,131.06,134.47,138530000,134.47
-1982-10-08,128.79,131.11,128.79,131.05,122250000,131.05
-1982-10-07,125.99,128.96,125.99,128.80,147070000,128.80
-1982-10-06,122.00,125.97,122.00,125.97,93570000,125.97
-1982-10-05,121.60,122.73,121.60,121.98,69770000,121.98
-1982-10-04,121.97,121.97,120.56,121.51,55650000,121.51
-1982-10-01,120.40,121.97,120.15,121.97,65000000,121.97
-1982-09-30,121.62,121.62,120.14,120.42,62610000,120.42
-1982-09-29,123.24,123.24,121.28,121.63,62550000,121.63
-1982-09-28,123.62,124.16,123.21,123.24,65900000,123.24
-1982-09-27,123.32,123.62,122.75,123.62,44840000,123.62
-1982-09-24,123.79,123.80,123.11,123.32,54600000,123.32
-1982-09-23,123.99,124.19,122.96,123.81,68260000,123.81
-1982-09-22,124.90,126.43,123.99,123.99,113150000,123.99
-1982-09-21,122.51,124.91,122.51,124.88,82920000,124.88
-1982-09-20,122.54,122.54,121.48,122.51,58520000,122.51
-1982-09-17,123.76,123.76,122.34,122.55,63950000,122.55
-1982-09-16,124.28,124.88,123.65,123.77,78900000,123.77
-1982-09-15,123.09,124.81,122.72,124.29,69680000,124.29
-1982-09-14,122.27,123.69,122.27,123.10,83070000,123.10
-1982-09-13,120.94,122.24,120.25,122.24,59520000,122.24
-1982-09-10,121.97,121.98,120.27,120.97,71080000,120.97
-1982-09-09,122.19,123.22,121.90,121.97,73090000,121.97
-1982-09-08,121.33,123.11,121.19,122.20,77960000,122.20
-1982-09-07,122.68,122.68,121.19,121.37,68960000,121.37
-1982-09-03,120.31,123.64,120.31,122.68,130910000,122.68
-1982-09-02,118.24,120.32,117.84,120.29,74740000,120.29
-1982-09-01,119.52,120.05,117.98,118.25,82830000,118.25
-1982-08-31,117.65,119.60,117.65,119.51,86360000,119.51
-1982-08-30,117.05,117.66,115.79,117.66,59560000,117.66
-1982-08-27,117.38,118.56,116.63,117.11,74410000,117.11
-1982-08-26,117.57,120.26,117.57,118.55,137330000,118.55
-1982-08-25,115.35,118.12,115.11,117.58,106200000,117.58
-1982-08-24,116.11,116.39,115.08,115.35,121650000,115.35
-1982-08-23,113.02,116.11,112.65,116.11,110310000,116.11
-1982-08-20,109.19,113.02,109.19,113.02,95890000,113.02
-1982-08-19,108.53,109.86,108.34,109.16,78270000,109.16
-1982-08-18,109.04,111.58,108.46,108.54,132690000,108.54
-1982-08-17,105.40,109.04,104.09,109.04,92860000,109.04
-1982-08-16,103.86,105.52,103.86,104.09,55420000,104.09
-1982-08-13,102.42,103.85,102.40,103.85,44720000,103.85
-1982-08-12,102.60,103.22,102.39,102.42,50080000,102.42
-1982-08-11,102.83,103.01,102.48,102.60,49040000,102.60
-1982-08-10,103.11,103.84,102.82,102.84,52680000,102.84
-1982-08-09,103.69,103.69,102.20,103.08,54560000,103.08
-1982-08-06,105.16,105.16,103.67,103.71,48660000,103.71
-1982-08-05,106.10,106.10,104.76,105.16,54700000,105.16
-1982-08-04,107.83,107.83,106.11,106.14,53440000,106.14
-1982-08-03,108.98,109.43,107.81,107.83,60480000,107.83
-1982-08-02,107.71,109.09,107.11,108.98,53460000,108.98
-1982-07-30,107.35,107.95,107.01,107.09,39270000,107.09
-1982-07-29,107.42,107.92,106.62,107.72,55680000,107.72
-1982-07-28,109.42,109.42,107.53,107.74,53830000,107.74
-1982-07-27,110.26,110.35,109.36,109.43,45740000,109.43
-1982-07-26,110.66,111.16,110.29,110.36,37740000,110.36
-1982-07-23,111.46,111.58,111.05,111.17,47280000,111.17
-1982-07-22,110.95,112.02,110.94,111.48,53870000,111.48
-1982-07-21,112.15,112.39,111.38,111.42,66770000,111.42
-1982-07-20,111.11,111.56,110.35,111.54,61060000,111.54
-1982-07-19,111.75,111.78,110.66,110.73,53030000,110.73
-1982-07-16,110.16,111.48,110.16,111.07,58740000,111.07
-1982-07-15,110.83,110.95,110.27,110.47,61090000,110.47
-1982-07-14,109.68,110.44,109.08,110.44,58160000,110.44
-1982-07-13,109.19,110.07,109.19,109.45,66170000,109.45
-1982-07-12,109.48,109.62,108.89,109.57,74690000,109.57
-1982-07-09,108.23,108.97,107.56,108.83,65870000,108.83
-1982-07-08,106.85,107.53,105.57,107.53,63270000,107.53
-1982-07-07,107.08,107.61,106.99,107.22,46920000,107.22
-1982-07-06,107.27,107.67,106.74,107.29,44350000,107.29
-1982-07-02,108.10,108.71,107.60,107.65,43760000,107.65
-1982-07-01,109.52,109.63,108.62,108.71,47900000,108.71
-1982-06-30,110.95,111.00,109.50,109.61,65280000,109.61
-1982-06-29,110.26,110.57,109.68,110.21,46990000,110.21
-1982-06-28,109.30,110.45,109.17,110.26,40700000,110.26
-1982-06-25,109.56,109.83,109.09,109.14,38740000,109.14
-1982-06-24,110.25,110.92,109.79,109.83,55860000,109.83
-1982-06-23,108.59,110.14,108.09,110.14,62710000,110.14
-1982-06-22,107.25,108.30,107.17,108.30,55290000,108.30
-1982-06-21,107.28,107.88,107.01,107.20,50370000,107.20
-1982-06-18,107.60,107.60,107.07,107.28,53800000,107.28
-1982-06-17,108.01,108.85,107.48,107.60,49230000,107.60
-1982-06-16,110.10,110.13,108.82,108.87,56280000,108.87
-1982-06-15,109.63,109.96,108.98,109.69,44970000,109.69
-1982-06-14,110.50,111.22,109.90,109.96,40100000,109.96
-1982-06-11,111.11,111.48,109.65,111.24,68610000,111.24
-1982-06-10,109.35,109.70,108.96,109.61,50950000,109.61
-1982-06-09,109.46,109.63,108.53,108.99,55770000,108.99
-1982-06-08,110.33,110.33,109.60,109.63,46820000,109.63
-1982-06-07,109.59,110.59,109.42,110.12,44630000,110.12
-1982-06-04,111.66,111.85,110.02,110.09,44110000,110.09
-1982-06-03,112.04,112.48,111.45,111.86,48450000,111.86
-1982-06-02,111.74,112.19,111.55,112.04,49220000,112.04
-1982-06-01,111.97,112.07,111.66,111.68,41650000,111.68
-1982-05-28,112.79,112.80,111.66,111.88,43900000,111.88
-1982-05-27,113.11,113.12,112.58,112.66,44730000,112.66
-1982-05-26,113.68,114.40,112.88,113.11,51250000,113.11
-1982-05-25,115.50,115.51,114.40,114.40,44010000,114.40
-1982-05-24,114.46,114.86,114.24,114.79,38510000,114.79
-1982-05-21,115.03,115.13,114.60,114.89,45260000,114.89
-1982-05-20,114.85,115.07,114.37,114.59,48330000,114.59
-1982-05-19,115.61,115.96,114.82,114.89,48840000,114.89
-1982-05-18,116.35,116.70,115.71,115.84,48970000,115.84
-1982-05-17,117.62,118.02,116.66,116.71,45600000,116.71
-1982-05-14,118.20,118.40,118.01,118.01,49900000,118.01
-1982-05-13,119.08,119.20,118.13,118.22,58230000,118.22
-1982-05-12,119.89,119.92,118.76,119.17,59210000,119.17
-1982-05-11,118.54,119.59,118.32,119.42,54680000,119.42
-1982-05-10,119.08,119.49,118.37,118.38,46300000,118.38
-1982-05-07,119.08,119.89,118.71,119.47,67130000,119.47
-1982-05-06,118.82,118.83,117.68,118.68,67540000,118.68
-1982-05-05,117.85,118.05,117.31,117.67,58860000,117.67
-1982-05-04,117.41,117.64,116.85,117.46,58720000,117.46
-1982-05-03,115.96,116.82,115.91,116.82,46490000,116.82
-1982-04-30,116.21,116.78,116.07,116.44,48200000,116.44
-1982-04-29,116.40,117.24,116.11,116.14,51330000,116.14
-1982-04-28,117.83,118.05,116.94,117.26,50530000,117.26
-1982-04-27,119.07,119.26,117.73,118.00,56480000,118.00
-1982-04-26,118.94,119.33,118.25,119.26,60500000,119.26
-1982-04-23,118.02,118.64,117.19,118.64,71840000,118.64
-1982-04-22,115.72,117.25,115.72,117.19,64470000,117.19
-1982-04-21,115.48,115.87,115.30,115.72,57820000,115.72
-1982-04-20,115.80,117.14,114.83,115.44,54610000,115.44
-1982-04-19,116.81,118.16,115.83,116.70,58470000,116.70
-1982-04-16,116.35,117.70,115.68,116.81,55890000,116.81
-1982-04-15,115.83,116.86,115.02,116.35,45700000,116.35
-1982-04-14,115.99,116.69,114.80,115.83,45150000,115.83
-1982-04-13,116.00,117.12,115.16,115.99,48660000,115.99
-1982-04-12,116.22,117.02,115.16,116.00,46520000,116.00
-1982-04-08,115.46,116.94,114.94,116.22,60190000,116.22
-1982-04-07,115.36,116.45,114.58,115.46,53130000,115.46
-1982-04-06,114.73,115.92,113.70,115.36,43200000,115.36
-1982-04-05,115.12,115.90,113.94,114.73,46900000,114.73
-1982-04-02,113.79,115.79,113.65,115.12,59800000,115.12
-1982-04-01,111.96,114.22,111.48,113.79,57100000,113.79
-1982-03-31,112.27,113.17,111.32,111.96,43300000,111.96
-1982-03-30,112.30,113.09,111.30,112.27,43900000,112.27
-1982-03-29,111.94,112.82,110.90,112.30,37100000,112.30
-1982-03-26,113.21,113.43,111.26,111.94,42400000,111.94
-1982-03-25,112.97,114.26,112.02,113.21,51970000,113.21
-1982-03-24,113.55,114.31,112.23,112.97,49380000,112.97
-1982-03-23,112.77,114.51,112.29,113.55,67130000,113.55
-1982-03-22,110.71,113.35,110.71,112.77,57610000,112.77
-1982-03-19,110.30,111.59,109.64,110.61,46250000,110.61
-1982-03-18,109.08,111.02,108.85,110.30,54270000,110.30
-1982-03-17,109.28,110.10,108.11,109.08,48900000,109.08
-1982-03-16,109.45,110.92,108.57,109.28,48900000,109.28
-1982-03-15,108.61,109.99,107.47,109.45,43370000,109.45
-1982-03-12,109.36,109.72,104.46,108.61,49600000,108.61
-1982-03-11,109.41,110.87,108.38,109.36,52960000,109.36
-1982-03-10,108.83,110.98,108.09,109.41,59440000,109.41
-1982-03-09,107.34,109.88,106.17,108.83,76060000,108.83
-1982-03-08,109.34,111.06,107.03,107.34,67330000,107.34
-1982-03-05,109.88,110.90,108.31,109.34,67440000,109.34
-1982-03-04,110.92,111.78,108.77,109.88,74340000,109.88
-1982-03-03,112.51,112.51,109.98,110.92,70230000,110.92
-1982-03-02,113.31,114.80,112.03,112.68,63800000,112.68
-1982-03-01,113.11,114.32,111.86,113.31,53010000,113.31
-1982-02-26,113.21,114.01,112.04,113.11,43840000,113.11
-1982-02-25,113.47,114.86,112.44,113.21,54160000,113.21
-1982-02-24,111.51,113.88,110.71,113.47,64800000,113.47
-1982-02-23,111.59,112.46,110.03,111.51,60100000,111.51
-1982-02-22,113.22,114.90,111.20,111.59,58310000,111.59
-1982-02-19,113.82,114.58,112.33,113.22,51340000,113.22
-1982-02-18,113.69,115.04,112.97,113.82,60810000,113.82
-1982-02-17,114.06,115.09,112.97,113.69,47660000,113.69
-1982-02-16,114.38,114.63,112.06,114.06,48880000,114.06
-1982-02-12,114.43,115.39,113.70,114.38,37070000,114.38
-1982-02-11,114.66,115.59,113.41,114.43,46730000,114.43
-1982-02-10,113.68,115.62,113.45,114.66,46620000,114.66
-1982-02-09,114.63,115.15,112.82,113.68,54420000,113.68
-1982-02-08,117.04,117.04,114.20,114.63,48500000,114.63
-1982-02-05,116.42,118.26,115.74,117.26,53350000,117.26
-1982-02-04,116.48,117.49,114.88,116.42,53300000,116.42
-1982-02-03,118.01,118.67,116.04,116.48,49560000,116.48
-1982-02-02,117.78,119.15,116.91,118.01,45020000,118.01
-1982-02-01,119.81,119.81,117.14,117.78,47720000,117.78
-1982-01-29,118.92,121.38,118.64,120.40,73400000,120.40
-1982-01-28,116.10,119.35,116.10,118.92,66690000,118.92
-1982-01-27,115.19,116.60,114.38,115.74,50060000,115.74
-1982-01-26,115.41,116.60,114.49,115.19,44870000,115.19
-1982-01-25,115.38,115.93,113.63,115.41,43170000,115.41
-1982-01-22,115.75,116.53,114.58,115.38,44370000,115.38
-1982-01-21,115.27,116.92,114.60,115.75,48610000,115.75
-1982-01-20,115.97,116.64,114.29,115.27,48860000,115.27
-1982-01-19,117.22,118.15,115.52,115.97,45070000,115.97
-1982-01-18,116.33,117.69,114.85,117.22,44920000,117.22
-1982-01-15,115.54,117.14,115.10,116.33,43310000,116.33
-1982-01-14,114.88,116.30,114.07,115.54,42940000,115.54
-1982-01-13,116.30,117.46,114.24,114.88,49130000,114.88
-1982-01-12,116.78,117.49,115.18,116.30,49800000,116.30
-1982-01-11,119.55,120.34,116.47,116.78,51900000,116.78
-1982-01-08,118.93,120.59,118.55,119.55,42050000,119.55
-1982-01-07,119.18,119.88,117.70,118.93,43410000,118.93
-1982-01-06,120.05,120.45,117.99,119.18,51510000,119.18
-1982-01-05,122.61,122.61,119.57,120.05,47510000,120.05
-1982-01-04,122.55,123.72,121.48,122.74,36760000,122.74
-1981-12-31,122.30,123.42,121.57,122.55,40780000,122.55
-1981-12-30,121.67,123.11,121.04,122.30,42960000,122.30
-1981-12-29,122.27,122.90,121.12,121.67,35300000,121.67
-1981-12-28,122.54,123.36,121.73,122.27,28320000,122.27
-1981-12-24,122.31,123.06,121.57,122.54,23940000,122.54
-1981-12-23,122.88,123.59,121.58,122.31,42910000,122.31
-1981-12-22,123.34,124.17,122.19,122.88,48320000,122.88
-1981-12-21,124.00,124.71,122.67,123.34,41290000,123.34
-1981-12-18,123.12,124.87,122.56,124.00,50940000,124.00
-1981-12-17,122.42,123.79,121.82,123.12,47230000,123.12
-1981-12-16,122.99,123.66,121.73,122.42,42770000,122.42
-1981-12-15,122.78,123.78,121.83,122.99,44130000,122.99
-1981-12-14,124.37,124.37,122.17,122.78,44740000,122.78
-1981-12-11,125.71,126.26,124.32,124.93,45850000,124.93
-1981-12-10,125.48,126.54,124.60,125.71,47020000,125.71
-1981-12-09,124.82,126.08,124.09,125.48,44810000,125.48
-1981-12-08,125.19,125.75,123.52,124.82,45140000,124.82
-1981-12-07,126.26,126.91,124.67,125.19,45720000,125.19
-1981-12-04,125.12,127.32,125.12,126.26,55040000,126.26
-1981-12-03,124.69,125.84,123.63,125.12,43770000,125.12
-1981-12-02,126.10,126.45,124.18,124.69,44510000,124.69
-1981-12-01,126.35,127.30,124.84,126.10,53980000,126.10
-1981-11-30,125.09,126.97,124.18,126.35,47580000,126.35
-1981-11-27,124.05,125.71,123.63,125.09,32770000,125.09
-1981-11-25,123.51,125.29,123.07,124.05,58570000,124.05
-1981-11-24,121.60,124.04,121.22,123.51,53200000,123.51
-1981-11-23,121.71,123.09,120.76,121.60,45250000,121.60
-1981-11-20,120.71,122.59,120.13,121.71,52010000,121.71
-1981-11-19,120.26,121.67,119.42,120.71,48890000,120.71
-1981-11-18,121.15,121.66,119.61,120.26,49980000,120.26
-1981-11-17,120.24,121.78,119.50,121.15,43190000,121.15
-1981-11-16,121.64,121.64,119.13,120.24,43740000,120.24
-1981-11-13,123.19,123.61,121.06,121.67,45550000,121.67
-1981-11-12,122.92,124.71,122.19,123.19,55720000,123.19
-1981-11-11,122.70,123.82,121.51,122.92,41920000,122.92
-1981-11-10,123.29,124.69,122.01,122.70,53940000,122.70
-1981-11-09,122.67,124.13,121.59,123.29,48310000,123.29
-1981-11-06,123.54,124.03,121.85,122.67,43270000,122.67
-1981-11-05,124.74,125.80,122.98,123.54,50860000,123.54
-1981-11-04,124.80,126.00,123.64,124.74,53450000,124.74
-1981-11-03,124.20,125.52,123.14,124.80,54620000,124.80
-1981-11-02,122.35,125.14,122.35,124.20,65100000,124.20
-1981-10-30,119.06,122.53,118.43,121.89,59570000,121.89
-1981-10-29,119.45,120.37,118.14,119.06,40070000,119.06
-1981-10-28,119.29,120.96,118.39,119.45,48100000,119.45
-1981-10-27,118.16,120.43,117.80,119.29,53030000,119.29
-1981-10-26,118.60,119.00,116.81,118.16,38210000,118.16
-1981-10-23,119.64,119.92,117.78,118.60,41990000,118.60
-1981-10-22,120.10,120.78,118.48,119.64,40630000,119.64
-1981-10-21,120.28,121.94,119.35,120.10,48490000,120.10
-1981-10-20,118.98,121.29,118.78,120.28,51530000,120.28
-1981-10-19,119.19,119.85,117.58,118.98,41590000,118.98
-1981-10-16,119.71,120.46,118.38,119.19,37800000,119.19
-1981-10-15,118.80,120.58,118.01,119.71,42830000,119.71
-1981-10-14,120.78,120.97,118.38,118.80,40260000,118.80
-1981-10-13,121.21,122.37,119.96,120.78,43360000,120.78
-1981-10-12,121.45,122.37,120.17,121.21,30030000,121.21
-1981-10-09,122.31,123.28,120.63,121.45,50060000,121.45
-1981-10-08,121.31,123.08,120.23,122.31,47090000,122.31
-1981-10-07,119.39,121.87,119.09,121.31,50030000,121.31
-1981-10-06,119.51,121.39,118.08,119.39,45460000,119.39
-1981-10-05,119.36,121.54,118.61,119.51,51290000,119.51
-1981-10-02,117.08,120.16,117.07,119.36,54540000,119.36
-1981-10-01,116.18,117.66,115.00,117.08,41600000,117.08
-1981-09-30,115.94,117.05,114.60,116.18,40700000,116.18
-1981-09-29,115.53,117.75,114.75,115.94,49800000,115.94
-1981-09-28,112.77,115.83,110.19,115.53,61320000,115.53
-1981-09-25,114.69,114.69,111.64,112.77,54390000,112.77
-1981-09-24,115.65,117.47,114.32,115.01,48880000,115.01
-1981-09-23,116.68,116.68,113.60,115.65,52700000,115.65
-1981-09-22,117.24,118.19,115.93,116.68,46830000,116.68
-1981-09-21,116.26,118.07,115.04,117.24,44570000,117.24
-1981-09-18,117.15,117.69,115.18,116.26,47350000,116.26
-1981-09-17,118.87,119.87,116.63,117.15,48300000,117.15
-1981-09-16,119.77,120.00,117.89,118.87,43660000,118.87
-1981-09-15,120.66,121.77,119.27,119.77,38580000,119.77
-1981-09-14,121.61,122.00,119.67,120.66,34040000,120.66
-1981-09-11,120.14,122.13,119.29,121.61,42170000,121.61
-1981-09-10,118.40,122.18,118.33,120.14,47430000,120.14
-1981-09-09,117.98,119.49,116.87,118.40,43910000,118.40
-1981-09-08,120.07,120.12,116.85,117.98,47340000,117.98
-1981-09-04,121.24,121.54,119.24,120.07,42760000,120.07
-1981-09-03,123.49,124.16,120.82,121.24,41730000,121.24
-1981-09-02,123.02,124.58,122.54,123.49,37570000,123.49
-1981-09-01,122.79,123.92,121.59,123.02,45110000,123.02
-1981-08-31,124.08,125.58,122.29,122.79,40360000,122.79
-1981-08-28,123.51,125.09,122.85,124.08,38020000,124.08
-1981-08-27,124.96,125.31,122.90,123.51,43900000,123.51
-1981-08-26,125.13,126.17,123.99,124.96,39980000,124.96
-1981-08-25,125.50,125.77,123.00,125.13,54600000,125.13
-1981-08-24,128.59,128.59,125.02,125.50,46750000,125.50
-1981-08-21,130.69,131.06,128.70,129.23,37670000,129.23
-1981-08-20,130.49,131.74,129.84,130.69,38270000,130.69
-1981-08-19,130.11,131.20,128.99,130.49,39390000,130.49
-1981-08-18,131.22,131.73,129.10,130.11,47270000,130.11
-1981-08-17,132.49,133.02,130.75,131.22,40840000,131.22
-1981-08-14,133.51,134.33,131.91,132.49,42580000,132.49
-1981-08-13,133.40,134.58,132.53,133.51,42460000,133.51
-1981-08-12,133.85,135.18,132.73,133.40,53650000,133.40
-1981-08-11,132.54,134.63,132.09,133.85,52600000,133.85
-1981-08-10,131.75,133.32,130.83,132.54,38370000,132.54
-1981-08-07,132.64,133.04,130.96,131.75,38370000,131.75
-1981-08-06,132.67,134.04,131.74,132.64,52070000,132.64
-1981-08-05,131.18,133.39,130.76,132.67,54290000,132.67
-1981-08-04,130.48,131.66,129.43,131.18,39460000,131.18
-1981-08-03,130.92,131.74,129.42,130.48,39650000,130.48
-1981-07-31,130.01,131.78,129.60,130.92,43480000,130.92
-1981-07-30,129.16,130.68,128.56,130.01,41560000,130.01
-1981-07-29,129.14,130.09,128.37,129.16,37610000,129.16
-1981-07-28,129.90,130.44,128.28,129.14,38160000,129.14
-1981-07-27,128.46,130.61,128.43,129.90,39610000,129.90
-1981-07-24,127.40,129.31,127.11,128.46,38880000,128.46
-1981-07-23,127.13,128.26,125.96,127.40,41790000,127.40
-1981-07-22,128.34,129.72,126.70,127.13,47500000,127.13
-1981-07-21,128.72,129.60,127.08,128.34,47280000,128.34
-1981-07-20,130.60,130.60,127.98,128.72,40240000,128.72
-1981-07-17,130.34,131.60,129.49,130.76,42780000,130.76
-1981-07-16,130.23,131.41,129.30,130.34,39010000,130.34
-1981-07-15,129.65,131.59,128.89,130.23,48950000,130.23
-1981-07-14,129.64,130.78,128.14,129.65,45230000,129.65
-1981-07-13,129.37,130.82,128.79,129.64,38100000,129.64
-1981-07-10,129.30,130.43,128.38,129.37,39950000,129.37
-1981-07-09,128.32,130.08,127.57,129.30,45510000,129.30
-1981-07-08,128.24,129.57,126.95,128.32,46000000,128.32
-1981-07-07,127.37,129.60,126.39,128.24,53560000,128.24
-1981-07-06,128.64,128.99,126.44,127.37,44590000,127.37
-1981-07-02,129.77,130.48,127.84,128.64,45100000,128.64
-1981-07-01,131.21,131.69,129.04,129.77,49080000,129.77
-1981-06-30,131.89,132.67,130.31,131.21,41550000,131.21
-1981-06-29,132.56,133.50,131.20,131.89,37930000,131.89
-1981-06-26,132.81,133.75,131.71,132.56,39240000,132.56
-1981-06-25,132.66,134.30,131.78,132.81,43920000,132.81
-1981-06-24,133.35,133.90,131.65,132.66,46650000,132.66
-1981-06-23,131.95,133.98,131.16,133.35,51840000,133.35
-1981-06-22,132.27,133.54,131.10,131.95,41790000,131.95
-1981-06-19,131.64,133.27,130.49,132.27,46430000,132.27
-1981-06-18,133.32,133.98,130.94,131.64,48400000,131.64
-1981-06-17,132.15,133.98,130.81,133.32,55470000,133.32
-1981-06-16,133.61,134.00,131.29,132.15,57780000,132.15
-1981-06-15,133.49,135.67,132.78,133.61,63350000,133.61
-1981-06-12,133.75,135.09,132.40,133.49,60790000,133.49
-1981-06-11,132.32,134.31,131.58,133.75,59530000,133.75
-1981-06-10,131.97,133.49,131.04,132.32,53200000,132.32
-1981-06-09,132.24,133.30,130.94,131.97,44600000,131.97
-1981-06-08,132.22,133.68,131.29,132.24,41580000,132.24
-1981-06-05,130.96,132.98,130.17,132.22,47180000,132.22
-1981-06-04,130.71,132.21,129.72,130.96,48940000,130.96
-1981-06-03,130.62,131.37,128.77,130.71,54700000,130.71
-1981-06-02,132.41,132.96,129.84,130.62,53930000,130.62
-1981-06-01,132.59,134.62,131.49,132.41,62170000,132.41
-1981-05-29,133.45,134.36,131.52,132.59,51580000,132.59
-1981-05-28,133.77,134.92,132.00,133.45,59500000,133.45
-1981-05-27,132.77,134.65,131.85,133.77,58730000,133.77
-1981-05-26,131.33,133.30,130.64,132.77,42760000,132.77
-1981-05-22,131.75,132.65,130.42,131.33,40710000,131.33
-1981-05-21,132.00,133.03,130.70,131.75,46820000,131.75
-1981-05-20,132.09,133.03,130.59,132.00,42370000,132.00
-1981-05-19,132.54,133.22,130.78,132.09,42220000,132.09
-1981-05-18,132.17,133.65,131.49,132.54,42510000,132.54
-1981-05-15,131.28,133.21,130.75,132.17,45460000,132.17
-1981-05-14,130.55,132.15,129.91,131.28,42750000,131.28
-1981-05-13,130.72,131.96,129.53,130.55,42600000,130.55
-1981-05-12,129.71,131.17,128.78,130.72,40440000,130.72
-1981-05-11,131.66,132.23,129.11,129.71,37640000,129.71
-1981-05-08,131.67,132.69,130.84,131.66,41860000,131.66
-1981-05-07,130.78,132.41,130.21,131.67,42590000,131.67
-1981-05-06,130.32,132.38,130.09,130.78,47100000,130.78
-1981-05-05,130.67,131.33,128.93,130.32,49000000,130.32
-1981-05-04,131.78,131.78,129.61,130.67,40430000,130.67
-1981-05-01,132.81,134.17,131.43,132.72,48360000,132.72
-1981-04-30,133.05,134.44,131.85,132.81,47970000,132.81
-1981-04-29,134.33,134.69,131.82,133.05,53340000,133.05
-1981-04-28,135.48,136.09,133.10,134.33,58210000,134.33
-1981-04-27,135.14,136.56,134.13,135.48,51080000,135.48
-1981-04-24,133.94,136.00,132.88,135.14,60000000,135.14
-1981-04-23,134.14,135.90,132.90,133.94,64200000,133.94
-1981-04-22,134.23,135.54,132.72,134.14,60660000,134.14
-1981-04-21,135.45,136.38,133.49,134.23,60280000,134.23
-1981-04-20,134.70,136.25,133.19,135.45,51020000,135.45
-1981-04-16,134.17,135.82,133.43,134.70,52950000,134.70
-1981-04-15,132.68,134.79,132.20,134.17,56040000,134.17
-1981-04-14,133.15,134.03,131.58,132.68,48350000,132.68
-1981-04-13,134.51,134.91,132.24,133.15,49860000,133.15
-1981-04-10,134.67,136.23,133.18,134.51,58130000,134.51
-1981-04-09,134.31,135.80,132.59,134.67,59520000,134.67
-1981-04-08,133.91,135.34,133.26,134.31,48000000,134.31
-1981-04-07,133.93,135.27,132.96,133.91,44540000,133.91
-1981-04-06,135.49,135.61,132.91,133.93,43190000,133.93
-1981-04-03,136.32,137.04,134.67,135.49,48680000,135.49
-1981-04-02,136.57,137.72,135.16,136.32,52570000,136.32
-1981-04-01,136.00,137.56,135.04,136.57,54880000,136.57
-1981-03-31,134.68,137.15,134.68,136.00,50980000,136.00
-1981-03-30,134.65,135.87,133.51,134.28,33500000,134.28
-1981-03-27,136.27,136.89,133.91,134.65,46930000,134.65
-1981-03-26,137.11,138.38,135.29,136.27,60370000,136.27
-1981-03-25,134.67,137.32,133.92,137.11,56320000,137.11
-1981-03-24,135.69,137.40,134.10,134.67,66400000,134.67
-1981-03-23,134.08,136.50,133.41,135.69,57880000,135.69
-1981-03-20,133.46,135.29,132.50,134.08,61980000,134.08
-1981-03-19,134.22,135.37,132.37,133.46,62440000,133.46
-1981-03-18,133.92,135.66,132.80,134.22,55740000,134.22
-1981-03-17,134.68,136.09,132.80,133.92,65920000,133.92
-1981-03-16,133.11,135.35,132.10,134.68,49940000,134.68
-1981-03-13,133.19,135.53,132.39,133.11,68290000,133.11
-1981-03-12,129.95,133.56,129.76,133.19,54640000,133.19
-1981-03-11,130.46,131.20,128.72,129.95,47390000,129.95
-1981-03-10,131.12,132.64,129.72,130.46,56610000,130.46
-1981-03-09,129.85,131.94,129.39,131.12,46180000,131.12
-1981-03-06,129.93,131.18,128.56,129.85,43940000,129.85
-1981-03-05,130.86,131.82,129.25,129.93,45380000,129.93
-1981-03-04,130.56,132.07,129.57,130.86,47260000,130.86
-1981-03-03,132.01,132.72,129.66,130.56,48730000,130.56
-1981-03-02,131.27,132.96,130.15,132.01,47710000,132.01
-1981-02-27,130.10,132.02,129.35,131.27,53210000,131.27
-1981-02-26,128.52,130.93,128.02,130.10,60300000,130.10
-1981-02-25,127.39,129.21,125.77,128.52,45710000,128.52
-1981-02-24,127.35,128.76,126.49,127.39,43960000,127.39
-1981-02-23,126.58,128.28,125.69,127.35,39590000,127.35
-1981-02-20,126.61,127.65,124.66,126.58,41900000,126.58
-1981-02-19,128.48,129.07,125.98,126.61,41630000,126.61
-1981-02-18,127.81,129.25,127.09,128.48,40410000,128.48
-1981-02-17,126.98,128.75,126.43,127.81,37940000,127.81
-1981-02-13,127.48,128.34,126.04,126.98,33360000,126.98
-1981-02-12,128.24,128.95,126.78,127.48,34700000,127.48
-1981-02-11,129.24,129.92,127.60,128.24,37770000,128.24
-1981-02-10,129.27,130.19,128.05,129.24,40820000,129.24
-1981-02-09,130.60,131.39,128.61,129.27,38330000,129.27
-1981-02-06,129.63,131.81,129.03,130.60,45820000,130.60
-1981-02-05,128.59,130.49,127.99,129.63,45320000,129.63
-1981-02-04,128.46,129.71,127.29,128.59,45520000,128.59
-1981-02-03,126.91,128.92,125.89,128.46,45950000,128.46
-1981-02-02,129.48,129.48,125.82,126.91,44070000,126.91
-1981-01-30,130.24,131.65,128.61,129.55,41160000,129.55
-1981-01-29,130.34,131.78,128.97,130.24,38170000,130.24
-1981-01-28,131.12,132.41,129.82,130.34,36690000,130.34
-1981-01-27,129.84,131.95,129.32,131.12,42260000,131.12
-1981-01-26,130.23,131.18,128.57,129.84,35380000,129.84
-1981-01-23,130.26,131.34,129.00,130.23,37220000,130.23
-1981-01-22,131.36,132.08,129.23,130.26,39880000,130.26
-1981-01-21,131.65,132.48,129.93,131.36,39190000,131.36
-1981-01-20,134.37,135.30,131.26,131.65,41750000,131.65
-1981-01-19,134.77,135.86,133.51,134.37,36470000,134.37
-1981-01-16,134.22,135.91,133.35,134.77,43260000,134.77
-1981-01-15,133.47,135.15,132.44,134.22,39640000,134.22
-1981-01-14,133.29,135.25,132.65,133.47,41390000,133.47
-1981-01-13,133.52,134.27,131.69,133.29,40890000,133.29
-1981-01-12,133.48,135.88,132.79,133.52,48760000,133.52
-1981-01-09,133.06,134.76,131.71,133.48,50190000,133.48
-1981-01-08,135.08,136.10,131.96,133.06,55350000,133.06
-1981-01-07,136.02,136.02,132.30,135.08,92890000,135.08
-1981-01-06,137.97,140.32,135.78,138.12,67400000,138.12
-1981-01-05,136.34,139.24,135.86,137.97,58710000,137.97
-1981-01-02,135.76,137.10,134.61,136.34,28870000,136.34
-1980-12-31,135.33,136.76,134.29,135.76,41210000,135.76
-1980-12-30,135.03,136.51,134.04,135.33,39750000,135.33
-1980-12-29,136.57,137.51,134.36,135.03,36060000,135.03
-1980-12-26,135.88,137.02,135.20,136.57,16130000,136.57
-1980-12-24,135.30,136.55,134.15,135.88,29490000,135.88
-1980-12-23,135.78,137.48,134.01,135.30,55260000,135.30
-1980-12-22,133.70,136.68,132.88,135.78,51950000,135.78
-1980-12-19,133.00,134.00,131.80,133.70,50770000,133.70
-1980-12-18,132.89,135.90,131.89,133.00,69570000,133.00
-1980-12-17,130.60,133.59,130.22,132.89,50800000,132.89
-1980-12-16,129.45,131.22,128.33,130.60,41630000,130.60
-1980-12-15,129.23,131.33,128.64,129.45,39700000,129.45
-1980-12-12,127.36,129.98,127.15,129.23,39530000,129.23
-1980-12-11,128.26,128.73,125.32,127.36,60220000,127.36
-1980-12-10,130.48,131.99,127.94,128.26,49860000,128.26
-1980-12-09,130.61,131.92,128.77,130.48,53220000,130.48
-1980-12-08,133.19,133.19,129.71,130.61,53390000,130.61
-1980-12-05,136.37,136.37,132.91,134.03,51990000,134.03
-1980-12-04,136.71,138.40,135.09,136.48,51170000,136.48
-1980-12-03,136.97,138.09,135.43,136.71,43430000,136.71
-1980-12-02,137.21,138.11,134.37,136.97,52340000,136.97
-1980-12-01,140.52,140.66,136.75,137.21,48180000,137.21
-1980-11-28,140.17,141.54,139.00,140.52,34240000,140.52
-1980-11-26,139.33,141.96,138.60,140.17,55340000,140.17
-1980-11-25,138.31,140.83,137.42,139.33,55840000,139.33
-1980-11-24,139.11,139.36,136.36,138.31,51120000,138.31
-1980-11-21,140.40,141.24,138.10,139.11,55950000,139.11
-1980-11-20,139.06,141.24,137.79,140.40,60180000,140.40
-1980-11-19,139.70,141.76,138.06,139.06,69230000,139.06
-1980-11-18,137.91,140.92,137.91,139.70,70380000,139.70
-1980-11-17,137.15,138.46,134.90,137.75,50260000,137.75
-1980-11-14,136.49,138.96,135.12,137.15,71630000,137.15
-1980-11-13,134.59,137.21,134.12,136.49,69340000,136.49
-1980-11-12,131.33,135.12,131.33,134.59,58500000,134.59
-1980-11-11,129.48,132.30,129.48,131.26,41520000,131.26
-1980-11-10,129.18,130.51,128.19,129.48,35720000,129.48
-1980-11-07,128.91,130.08,127.74,129.18,40070000,129.18
-1980-11-06,131.30,131.30,128.23,128.91,48890000,128.91
-1980-11-05,130.77,135.65,130.77,131.33,84080000,131.33
-1980-11-03,127.47,129.85,127.23,129.04,35820000,129.04
-1980-10-31,126.29,128.24,125.29,127.47,40110000,127.47
-1980-10-30,127.91,128.71,125.78,126.29,39060000,126.29
-1980-10-29,128.05,129.91,127.07,127.91,37200000,127.91
-1980-10-28,127.88,128.86,126.36,128.05,40300000,128.05
-1980-10-27,129.85,129.94,127.34,127.88,34430000,127.88
-1980-10-24,129.53,130.55,128.04,129.85,41050000,129.85
-1980-10-23,131.92,132.54,128.87,129.53,49200000,129.53
-1980-10-22,131.84,132.97,130.62,131.92,43060000,131.92
-1980-10-21,132.61,134.01,130.78,131.84,51220000,131.84
-1980-10-20,131.52,133.21,130.04,132.61,40910000,132.61
-1980-10-17,132.22,133.07,130.22,131.52,43920000,131.52
-1980-10-16,133.70,135.88,131.64,132.22,65450000,132.22
-1980-10-15,132.02,134.35,131.59,133.70,48260000,133.70
-1980-10-14,132.03,133.57,131.16,132.02,48830000,132.02
-1980-10-13,130.29,132.46,129.37,132.03,31360000,132.03
-1980-10-10,131.04,132.15,129.58,130.29,44040000,130.29
-1980-10-09,131.65,132.65,130.25,131.04,43980000,131.04
-1980-10-08,131.00,132.78,130.28,131.65,46580000,131.65
-1980-10-07,131.73,132.88,130.10,131.00,50310000,131.00
-1980-10-06,129.35,132.38,129.35,131.73,50130000,131.73
-1980-10-03,128.09,130.44,127.65,129.33,47510000,129.33
-1980-10-02,127.13,128.82,126.04,128.09,46160000,128.09
-1980-10-01,125.46,127.88,124.66,127.13,48720000,127.13
-1980-09-30,123.54,126.09,123.54,125.46,40290000,125.46
-1980-09-29,125.41,125.41,122.87,123.54,46410000,123.54
-1980-09-26,128.17,128.17,125.29,126.35,49460000,126.35
-1980-09-25,130.37,131.53,128.13,128.72,49510000,128.72
-1980-09-24,129.43,131.34,128.45,130.37,56860000,130.37
-1980-09-23,130.40,132.17,128.55,129.43,64390000,129.43
-1980-09-22,129.25,130.99,127.89,130.40,53140000,130.40
-1980-09-19,128.40,130.33,127.57,129.25,53780000,129.25
-1980-09-18,128.87,130.38,127.63,128.40,63390000,128.40
-1980-09-17,126.74,129.68,126.37,128.87,63990000,128.87
-1980-09-16,125.67,127.78,125.15,126.74,57290000,126.74
-1980-09-15,125.54,126.35,124.09,125.67,44630000,125.67
-1980-09-12,125.66,126.75,124.72,125.54,47180000,125.54
-1980-09-11,124.81,126.48,124.19,125.66,44770000,125.66
-1980-09-10,124.07,125.95,123.60,124.81,51430000,124.81
-1980-09-09,123.31,124.52,121.94,124.07,44460000,124.07
-1980-09-08,124.88,125.67,122.78,123.31,42050000,123.31
-1980-09-05,125.42,126.12,124.08,124.88,37990000,124.88
-1980-09-04,126.12,127.70,124.42,125.42,59030000,125.42
-1980-09-03,123.87,126.43,123.87,126.12,52370000,126.12
-1980-09-02,122.38,124.36,121.79,123.74,35290000,123.74
-1980-08-29,122.08,123.01,121.06,122.38,33510000,122.38
-1980-08-28,123.52,123.91,121.61,122.08,39890000,122.08
-1980-08-27,124.84,124.98,122.93,123.52,44000000,123.52
-1980-08-26,125.16,126.29,124.01,124.84,41700000,124.84
-1980-08-25,126.02,126.28,124.65,125.16,35400000,125.16
-1980-08-22,125.46,127.78,125.18,126.02,58210000,126.02
-1980-08-21,123.77,125.99,123.61,125.46,50770000,125.46
-1980-08-20,122.60,124.27,121.91,123.77,42560000,123.77
-1980-08-19,123.39,124.00,121.97,122.60,41930000,122.60
-1980-08-18,125.28,125.28,122.82,123.39,41890000,123.39
-1980-08-15,125.25,126.61,124.57,125.72,47780000,125.72
-1980-08-14,123.28,125.62,122.68,125.25,47700000,125.25
-1980-08-13,123.79,124.67,122.49,123.28,44350000,123.28
-1980-08-12,124.78,125.78,123.29,123.79,52050000,123.79
-1980-08-11,123.61,125.31,122.85,124.78,44690000,124.78
-1980-08-08,123.30,125.23,122.82,123.61,58860000,123.61
-1980-08-07,121.66,123.84,121.66,123.30,61820000,123.30
-1980-08-06,120.74,122.01,119.94,121.55,45050000,121.55
-1980-08-05,120.98,122.09,119.96,120.74,45510000,120.74
-1980-08-04,121.21,121.63,119.42,120.98,41550000,120.98
-1980-08-01,121.67,122.38,120.08,121.21,46440000,121.21
-1980-07-31,122.23,122.34,119.40,121.67,54610000,121.67
-1980-07-30,122.40,123.93,121.16,122.23,58060000,122.23
-1980-07-29,121.43,122.99,120.76,122.40,44840000,122.40
-1980-07-28,120.78,122.02,119.78,121.43,35330000,121.43
-1980-07-25,121.79,121.96,119.94,120.78,36250000,120.78
-1980-07-24,121.93,122.98,120.83,121.79,42420000,121.79
-1980-07-23,122.19,123.26,120.93,121.93,45890000,121.93
-1980-07-22,122.51,123.90,121.38,122.19,52230000,122.19
-1980-07-21,122.04,123.15,120.85,122.51,42750000,122.51
-1980-07-18,121.44,123.19,120.88,122.04,58040000,122.04
-1980-07-17,119.63,121.84,119.43,121.44,48850000,121.44
-1980-07-16,119.30,120.87,118.54,119.63,49140000,119.63
-1980-07-15,120.01,121.56,118.85,119.30,60920000,119.30
-1980-07-14,117.84,120.37,117.45,120.01,45500000,120.01
-1980-07-11,116.95,118.38,116.29,117.84,38310000,117.84
-1980-07-10,117.98,118.57,116.38,116.95,43730000,116.95
-1980-07-09,117.84,119.52,117.10,117.98,52010000,117.98
-1980-07-08,118.29,119.11,117.07,117.84,45830000,117.84
-1980-07-07,117.46,118.85,116.96,118.29,42540000,118.29
-1980-07-03,115.68,117.80,115.49,117.46,47230000,117.46
-1980-07-02,114.93,116.44,114.36,115.68,42950000,115.68
-1980-07-01,114.24,115.45,113.54,114.93,34340000,114.93
-1980-06-30,116.00,116.04,113.55,114.24,29910000,114.24
-1980-06-27,116.19,116.93,115.06,116.00,33110000,116.00
-1980-06-26,116.72,117.98,115.58,116.19,45110000,116.19
-1980-06-25,115.14,117.37,115.07,116.72,46500000,116.72
-1980-06-24,114.51,115.75,113.76,115.14,37730000,115.14
-1980-06-23,114.06,115.28,113.35,114.51,34180000,114.51
-1980-06-20,114.66,114.90,113.12,114.06,36530000,114.06
-1980-06-19,116.26,116.81,114.36,114.66,38280000,114.66
-1980-06-18,116.03,116.84,114.77,116.26,41960000,116.26
-1980-06-17,116.09,117.16,115.13,116.03,41990000,116.03
-1980-06-16,115.81,116.80,114.78,116.09,36190000,116.09
-1980-06-13,115.52,116.94,114.67,115.81,41880000,115.81
-1980-06-12,116.02,117.01,114.28,115.52,47300000,115.52
-1980-06-11,114.66,116.64,114.22,116.02,43800000,116.02
-1980-06-10,113.71,115.50,113.17,114.66,42030000,114.66
-1980-06-09,113.20,114.51,112.68,113.71,36820000,113.71
-1980-06-06,112.78,114.01,112.11,113.20,37230000,113.20
-1980-06-05,112.61,114.38,111.89,112.78,49070000,112.78
-1980-06-04,110.51,113.45,110.22,112.61,44180000,112.61
-1980-06-03,110.76,111.63,109.77,110.51,33150000,110.51
-1980-06-02,111.24,112.15,110.06,110.76,32710000,110.76
-1980-05-30,110.27,111.55,108.87,111.24,34820000,111.24
-1980-05-29,112.06,112.64,109.86,110.27,42000000,110.27
-1980-05-28,111.40,112.72,110.42,112.06,38580000,112.06
-1980-05-27,110.62,112.30,110.35,111.40,40810000,111.40
-1980-05-23,109.01,111.37,109.01,110.62,45790000,110.62
-1980-05-22,107.72,109.73,107.34,109.01,41040000,109.01
-1980-05-21,107.62,108.31,106.54,107.72,34830000,107.72
-1980-05-20,107.67,108.39,106.75,107.62,31800000,107.62
-1980-05-19,107.35,108.43,106.51,107.67,30970000,107.67
-1980-05-16,106.99,107.89,106.25,107.35,31710000,107.35
-1980-05-15,106.85,107.99,106.07,106.99,41120000,106.99
-1980-05-14,106.30,107.89,106.00,106.85,40840000,106.85
-1980-05-13,104.78,106.76,104.44,106.30,35460000,106.30
-1980-05-12,104.72,105.48,103.50,104.78,28220000,104.78
-1980-05-09,106.13,106.20,104.18,104.72,30280000,104.72
-1980-05-08,107.18,108.02,105.50,106.13,39280000,106.13
-1980-05-07,106.25,108.12,105.83,107.18,42600000,107.18
-1980-05-06,106.38,107.83,105.36,106.25,40160000,106.25
-1980-05-05,105.58,106.83,104.64,106.38,34090000,106.38
-1980-05-02,105.46,106.25,104.61,105.58,28040000,105.58
-1980-05-01,106.29,106.86,104.72,105.46,32480000,105.46
-1980-04-30,105.86,106.72,104.50,106.29,30850000,106.29
-1980-04-29,105.64,106.70,104.86,105.86,27940000,105.86
-1980-04-28,105.16,106.79,104.64,105.64,30600000,105.64
-1980-04-25,104.40,105.57,103.02,105.16,28590000,105.16
-1980-04-24,103.73,105.43,102.93,104.40,35790000,104.40
-1980-04-23,103.43,105.11,102.81,103.73,42620000,103.73
-1980-04-22,100.81,104.02,100.81,103.43,47920000,103.43
-1980-04-21,100.55,101.26,98.95,99.80,27560000,99.80
-1980-04-18,101.05,102.07,99.97,100.55,26880000,100.55
-1980-04-17,101.54,102.21,100.12,101.05,32770000,101.05
-1980-04-16,102.63,104.42,101.13,101.54,39730000,101.54
-1980-04-15,102.84,103.94,101.85,102.63,26670000,102.63
-1980-04-14,103.79,103.92,102.08,102.84,23060000,102.84
-1980-04-11,104.08,105.15,103.20,103.79,29960000,103.79
-1980-04-10,103.11,105.00,102.81,104.08,33940000,104.08
-1980-04-09,101.20,103.60,101.01,103.11,33020000,103.11
-1980-04-08,100.19,101.88,99.23,101.20,31700000,101.20
-1980-04-07,102.15,102.27,99.73,100.19,29130000,100.19
-1980-04-03,102.68,103.34,101.31,102.15,27970000,102.15
-1980-04-02,102.18,103.87,101.45,102.68,35210000,102.68
-1980-04-01,102.09,103.28,100.85,102.18,32230000,102.18
-1980-03-31,100.68,102.65,100.02,102.09,35840000,102.09
-1980-03-28,98.22,101.43,97.72,100.68,46720000,100.68
-1980-03-27,98.68,99.58,94.23,98.22,63680000,98.22
-1980-03-26,99.19,101.22,98.10,98.68,37370000,98.68
-1980-03-25,99.28,100.58,97.89,99.19,43790000,99.19
-1980-03-24,102.18,102.18,98.88,99.28,39230000,99.28
-1980-03-21,103.12,103.73,101.55,102.31,32220000,102.31
-1980-03-20,104.31,105.17,102.52,103.12,32580000,103.12
-1980-03-19,104.10,105.72,103.35,104.31,36520000,104.31
-1980-03-18,102.26,104.71,101.14,104.10,47340000,104.10
-1980-03-17,105.23,105.23,101.82,102.26,37020000,102.26
-1980-03-14,105.62,106.49,104.01,105.43,35180000,105.43
-1980-03-13,106.87,107.55,105.10,105.62,33070000,105.62
-1980-03-12,107.78,108.40,105.42,106.87,37990000,106.87
-1980-03-11,106.51,108.54,106.18,107.78,41350000,107.78
-1980-03-10,106.90,107.86,104.92,106.51,43750000,106.51
-1980-03-07,108.65,108.96,105.99,106.90,50950000,106.90
-1980-03-06,111.13,111.29,107.85,108.65,49610000,108.65
-1980-03-05,112.78,113.94,110.58,111.13,49240000,111.13
-1980-03-04,112.50,113.41,110.83,112.78,44310000,112.78
-1980-03-03,113.66,114.34,112.01,112.50,38690000,112.50
-1980-02-29,112.35,114.12,111.77,113.66,38810000,113.66
-1980-02-28,112.38,113.70,111.33,112.35,40330000,112.35
-1980-02-27,113.98,115.12,111.91,112.38,46430000,112.38
-1980-02-26,113.33,114.76,112.30,113.98,40000000,113.98
-1980-02-25,114.93,114.93,112.62,113.33,39140000,113.33
-1980-02-22,115.28,116.46,113.43,115.04,48210000,115.04
-1980-02-21,116.47,117.90,114.44,115.28,51530000,115.28
-1980-02-20,114.60,117.18,114.06,116.47,44340000,116.47
-1980-02-19,115.41,115.67,113.35,114.60,39480000,114.60
-1980-02-15,116.70,116.70,114.12,115.41,46680000,115.41
-1980-02-14,118.44,119.30,116.04,116.72,50540000,116.72
-1980-02-13,117.90,120.22,117.57,118.44,65230000,118.44
-1980-02-12,117.12,118.41,115.75,117.90,48090000,117.90
-1980-02-11,117.95,119.05,116.31,117.12,58660000,117.12
-1980-02-08,116.28,118.66,115.72,117.95,57860000,117.95
-1980-02-07,115.72,117.87,115.22,116.28,57690000,116.28
-1980-02-06,114.66,116.57,113.65,115.72,51950000,115.72
-1980-02-05,114.37,115.25,112.15,114.66,41880000,114.66
-1980-02-04,115.12,116.01,113.83,114.37,43070000,114.37
-1980-02-01,114.16,115.54,113.13,115.12,46610000,115.12
-1980-01-31,115.20,117.17,113.78,114.16,65900000,114.16
-1980-01-30,114.07,115.85,113.37,115.20,51170000,115.20
-1980-01-29,114.85,115.77,113.03,114.07,55480000,114.07
-1980-01-28,113.61,115.65,112.93,114.85,53620000,114.85
-1980-01-25,113.70,114.45,112.36,113.61,47100000,113.61
-1980-01-24,113.44,115.27,112.95,113.70,59070000,113.70
-1980-01-23,111.51,113.93,110.93,113.44,50730000,113.44
-1980-01-22,112.10,113.10,110.92,111.51,50620000,111.51
-1980-01-21,111.07,112.90,110.66,112.10,48040000,112.10
-1980-01-18,110.70,111.74,109.88,111.07,47150000,111.07
-1980-01-17,111.05,112.01,109.81,110.70,54170000,110.70
-1980-01-16,111.14,112.90,110.38,111.05,67700000,111.05
-1980-01-15,110.38,111.93,109.45,111.14,52320000,111.14
-1980-01-14,109.92,111.44,109.34,110.38,52930000,110.38
-1980-01-11,109.89,111.16,108.89,109.92,52890000,109.92
-1980-01-10,109.05,110.86,108.47,109.89,55980000,109.89
-1980-01-09,108.95,111.09,108.41,109.05,65260000,109.05
-1980-01-08,106.81,109.29,106.29,108.95,53390000,108.95
-1980-01-07,106.52,107.80,105.80,106.81,44500000,106.81
-1980-01-04,105.22,107.08,105.09,106.52,39130000,106.52
-1980-01-03,105.76,106.08,103.26,105.22,50480000,105.22
-1980-01-02,107.94,108.43,105.29,105.76,40610000,105.76
-1979-12-31,107.84,108.53,107.26,107.94,31530000,107.94
-1979-12-28,107.96,108.61,107.16,107.84,34430000,107.84
-1979-12-27,107.78,108.50,107.14,107.96,31410000,107.96
-1979-12-26,107.66,108.37,107.06,107.78,24960000,107.78
-1979-12-24,107.59,108.08,106.80,107.66,19150000,107.66
-1979-12-21,108.26,108.76,106.99,107.59,36160000,107.59
-1979-12-20,108.20,109.24,107.40,108.26,40380000,108.26
-1979-12-19,108.30,108.79,107.02,108.20,41780000,108.20
-1979-12-18,109.33,109.83,107.83,108.30,43310000,108.30
-1979-12-17,108.92,110.33,108.36,109.33,43830000,109.33
-1979-12-14,107.67,109.49,107.37,108.92,41800000,108.92
-1979-12-13,107.52,108.29,106.68,107.67,36690000,107.67
-1979-12-12,107.49,108.32,106.78,107.52,34630000,107.52
-1979-12-11,107.67,108.58,106.79,107.49,36160000,107.49
-1979-12-10,107.52,108.27,106.65,107.67,32270000,107.67
-1979-12-07,108.00,109.24,106.55,107.52,42370000,107.52
-1979-12-06,107.25,108.47,106.71,108.00,37510000,108.00
-1979-12-05,106.79,108.36,106.60,107.25,39300000,107.25
-1979-12-04,105.83,107.25,105.66,106.79,33510000,106.79
-1979-12-03,106.16,106.65,105.07,105.83,29030000,105.83
-1979-11-30,106.81,107.16,105.56,106.16,30480000,106.16
-1979-11-29,106.77,107.84,106.17,106.81,33550000,106.81
-1979-11-28,106.38,107.55,105.29,106.77,39690000,106.77
-1979-11-27,106.80,107.89,105.64,106.38,45140000,106.38
-1979-11-26,104.83,107.44,104.83,106.80,47940000,106.80
-1979-11-23,103.89,105.13,103.56,104.67,23300000,104.67
-1979-11-21,103.69,104.23,102.04,103.89,37020000,103.89
-1979-11-20,104.23,105.11,103.14,103.69,35010000,103.69
-1979-11-19,103.79,105.08,103.17,104.23,33090000,104.23
-1979-11-16,104.13,104.72,103.07,103.79,30060000,103.79
-1979-11-15,103.39,104.94,103.10,104.13,32380000,104.13
-1979-11-14,102.94,104.13,101.91,103.39,30970000,103.39
-1979-11-13,103.51,104.21,102.42,102.94,29240000,102.94
-1979-11-12,101.51,103.72,101.27,103.51,26640000,103.51
-1979-11-09,100.58,102.18,100.58,101.51,30060000,101.51
-1979-11-08,99.87,101.00,99.49,100.30,26270000,100.30
-1979-11-07,100.97,100.97,99.42,99.87,30830000,99.87
-1979-11-06,101.82,102.01,100.77,101.20,21960000,101.20
-1979-11-05,102.51,102.66,101.24,101.82,20470000,101.82
-1979-11-02,102.57,103.21,101.92,102.51,23670000,102.51
-1979-11-01,101.82,103.07,101.10,102.57,25880000,102.57
-1979-10-31,102.67,103.16,101.38,101.82,27780000,101.82
-1979-10-30,100.71,102.83,100.41,102.67,28890000,102.67
-1979-10-29,100.57,101.56,100.13,100.71,22720000,100.71
-1979-10-26,100.00,101.31,99.59,100.57,29660000,100.57
-1979-10-25,100.44,101.39,99.56,100.00,28440000,100.00
-1979-10-24,100.28,101.45,99.66,100.44,31480000,100.44
-1979-10-23,100.71,101.44,99.61,100.28,32910000,100.28
-1979-10-22,101.38,101.38,99.06,100.71,45240000,100.71
-1979-10-19,103.58,103.58,101.24,101.60,42430000,101.60
-1979-10-18,103.39,104.62,102.92,103.61,29590000,103.61
-1979-10-17,103.19,104.54,102.74,103.39,29650000,103.39
-1979-10-16,103.36,104.37,102.52,103.19,33770000,103.19
-1979-10-15,104.49,104.74,102.69,103.36,34850000,103.36
-1979-10-12,105.05,106.20,104.01,104.49,36390000,104.49
-1979-10-11,105.30,106.33,103.70,105.05,47530000,105.05
-1979-10-10,106.23,106.23,102.31,105.30,81620000,105.30
-1979-10-09,109.43,109.43,106.04,106.63,55560000,106.63
-1979-10-08,111.27,111.83,109.65,109.88,32610000,109.88
-1979-10-05,110.17,112.16,110.16,111.27,48250000,111.27
-1979-10-04,109.59,110.81,109.14,110.17,38800000,110.17
-1979-10-03,109.59,110.43,108.88,109.59,36470000,109.59
-1979-10-02,108.56,110.08,108.03,109.59,38310000,109.59
-1979-10-01,109.19,109.19,107.70,108.56,24980000,108.56
-1979-09-28,110.21,110.67,108.70,109.32,35950000,109.32
-1979-09-27,109.96,110.75,109.19,110.21,33110000,110.21
-1979-09-26,109.68,111.25,109.37,109.96,37700000,109.96
-1979-09-25,109.61,110.19,108.27,109.68,32410000,109.68
-1979-09-24,110.47,110.90,109.16,109.61,33790000,109.61
-1979-09-21,110.51,111.58,109.46,110.47,52380000,110.47
-1979-09-20,108.28,110.69,107.59,110.51,45100000,110.51
-1979-09-19,108.00,109.02,107.52,108.28,35370000,108.28
-1979-09-18,108.84,109.00,107.32,108.00,38750000,108.00
-1979-09-17,108.76,110.06,108.40,108.84,37610000,108.84
-1979-09-14,107.85,109.48,107.42,108.76,41980000,108.76
-1979-09-13,107.82,108.53,107.06,107.85,35240000,107.85
-1979-09-12,107.51,108.41,106.72,107.82,39350000,107.82
-1979-09-11,108.17,108.83,106.80,107.51,42530000,107.51
-1979-09-10,107.66,108.71,107.21,108.17,32980000,108.17
-1979-09-07,106.85,108.09,106.30,107.66,34360000,107.66
-1979-09-06,106.40,107.61,105.97,106.85,30330000,106.85
-1979-09-05,107.19,107.19,105.38,106.40,41650000,106.40
-1979-09-04,109.32,109.41,107.22,107.44,33350000,107.44
-1979-08-31,109.02,109.80,108.58,109.32,26370000,109.32
-1979-08-30,109.02,109.59,108.40,109.02,29300000,109.02
-1979-08-29,109.02,109.59,108.36,109.02,30810000,109.02
-1979-08-28,109.14,109.65,108.47,109.02,29430000,109.02
-1979-08-27,108.60,109.84,108.12,109.14,32050000,109.14
-1979-08-24,108.63,109.11,107.65,108.60,32730000,108.60
-1979-08-23,108.99,109.59,108.12,108.63,35710000,108.63
-1979-08-22,108.91,109.56,108.09,108.99,38450000,108.99
-1979-08-21,108.83,109.68,108.17,108.91,38860000,108.91
-1979-08-20,108.30,109.32,107.69,108.83,32300000,108.83
-1979-08-17,108.09,108.94,107.25,108.30,31630000,108.30
-1979-08-16,108.25,109.18,107.38,108.09,47000000,108.09
-1979-08-15,107.52,108.64,106.75,108.25,46130000,108.25
-1979-08-14,107.42,108.03,106.60,107.52,40910000,107.52
-1979-08-13,106.40,107.90,106.28,107.42,41980000,107.42
-1979-08-10,105.49,106.79,104.81,106.40,36740000,106.40
-1979-08-09,105.98,106.25,104.89,105.49,34630000,105.49
-1979-08-08,105.65,106.84,105.20,105.98,44970000,105.98
-1979-08-07,104.30,106.23,104.12,105.65,45410000,105.65
-1979-08-06,104.04,104.66,103.27,104.30,27190000,104.30
-1979-08-03,104.10,104.56,103.36,104.04,28160000,104.04
-1979-08-02,104.17,105.02,103.59,104.10,37720000,104.10
-1979-08-01,103.81,104.57,103.14,104.17,36570000,104.17
-1979-07-31,103.15,104.26,102.89,103.81,34360000,103.81
-1979-07-30,103.10,103.63,102.42,103.15,28640000,103.15
-1979-07-27,103.10,103.50,102.29,103.10,27760000,103.10
-1979-07-26,103.08,103.63,102.34,103.10,32270000,103.10
-1979-07-25,101.97,103.44,101.85,103.08,34890000,103.08
-1979-07-24,101.59,102.50,101.14,101.97,29690000,101.97
-1979-07-23,101.82,102.13,100.84,101.59,26860000,101.59
-1979-07-20,101.61,102.32,101.06,101.82,26360000,101.82
-1979-07-19,101.69,102.42,101.04,101.61,26780000,101.61
-1979-07-18,101.83,102.06,100.35,101.69,35950000,101.69
-1979-07-17,102.74,103.06,101.27,101.83,34270000,101.83
-1979-07-16,102.32,103.20,101.81,102.74,26620000,102.74
-1979-07-13,102.69,102.99,101.49,102.32,33080000,102.32
-1979-07-12,103.64,103.72,102.22,102.69,31780000,102.69
-1979-07-11,104.20,104.34,102.87,103.64,36650000,103.64
-1979-07-10,104.47,105.17,103.52,104.20,39730000,104.20
-1979-07-09,103.62,105.07,103.36,104.47,42460000,104.47
-1979-07-06,102.43,103.91,102.12,103.62,38570000,103.62
-1979-07-05,102.09,102.88,101.59,102.43,30290000,102.43
-1979-07-03,101.99,102.57,101.31,102.09,31670000,102.09
-1979-07-02,102.91,103.00,101.45,101.99,32060000,101.99
-1979-06-29,102.80,103.67,102.04,102.91,34690000,102.91
-1979-06-28,102.27,103.46,101.91,102.80,38470000,102.80
-1979-06-27,101.66,102.95,101.29,102.27,36720000,102.27
-1979-06-26,102.09,102.09,101.22,101.66,34680000,101.66
-1979-06-25,102.64,102.91,101.45,102.09,31330000,102.09
-1979-06-22,102.09,103.16,101.91,102.64,36410000,102.64
-1979-06-21,101.63,102.74,101.20,102.09,36490000,102.09
-1979-06-20,101.58,102.19,100.93,101.63,33790000,101.63
-1979-06-19,101.56,102.28,100.91,101.58,30780000,101.58
-1979-06-18,102.09,102.48,101.05,101.56,30970000,101.56
-1979-06-15,102.20,102.78,101.38,102.09,40740000,102.09
-1979-06-14,102.31,102.63,101.04,102.20,37850000,102.20
-1979-06-13,102.85,103.58,101.83,102.31,40740000,102.31
-1979-06-12,101.91,103.64,101.81,102.85,45450000,102.85
-1979-06-11,101.49,102.24,100.91,101.91,28270000,101.91
-1979-06-08,101.79,102.23,100.91,101.49,31470000,101.49
-1979-06-07,101.30,102.54,101.15,101.79,43380000,101.79
-1979-06-06,100.62,101.96,100.38,101.30,39830000,101.30
-1979-06-05,99.32,101.07,99.17,100.62,35050000,100.62
-1979-06-04,99.17,99.76,98.61,99.32,24040000,99.32
-1979-06-01,99.08,99.70,98.57,99.17,24560000,99.17
-1979-05-31,99.11,99.61,98.29,99.08,30300000,99.08
-1979-05-30,100.05,100.25,98.79,99.11,29250000,99.11
-1979-05-29,100.22,100.76,99.56,100.05,27040000,100.05
-1979-05-25,99.93,100.68,99.52,100.22,27810000,100.22
-1979-05-24,99.89,100.44,99.14,99.93,25710000,99.93
-1979-05-23,100.51,101.31,99.63,99.89,30390000,99.89
-1979-05-22,100.14,100.93,99.45,100.51,30400000,100.51
-1979-05-21,99.93,100.75,99.37,100.14,25550000,100.14
-1979-05-18,99.94,100.73,99.33,99.93,26590000,99.93
-1979-05-17,98.42,100.22,98.29,99.94,30550000,99.94
-1979-05-16,98.14,98.80,97.49,98.42,28350000,98.42
-1979-05-15,98.06,98.90,97.60,98.14,26190000,98.14
-1979-05-14,98.52,98.95,97.71,98.06,22450000,98.06
-1979-05-11,98.52,99.03,97.92,98.52,24010000,98.52
-1979-05-10,99.46,99.63,98.22,98.52,25230000,98.52
-1979-05-09,99.17,100.01,98.50,99.46,27670000,99.46
-1979-05-08,99.02,99.56,97.98,99.17,32720000,99.17
-1979-05-07,100.37,100.37,98.78,99.02,30480000,99.02
-1979-05-04,101.81,102.08,100.42,100.69,30630000,100.69
-1979-05-03,101.72,102.57,101.25,101.81,30870000,101.81
-1979-05-02,101.68,102.28,101.00,101.72,30510000,101.72
-1979-05-01,101.76,102.50,101.22,101.68,31040000,101.68
-1979-04-30,101.80,102.24,100.91,101.76,26440000,101.76
-1979-04-27,102.01,102.32,101.04,101.80,29610000,101.80
-1979-04-26,102.50,102.91,101.58,102.01,32400000,102.01
-1979-04-25,102.20,103.07,101.79,102.50,31750000,102.50
-1979-04-24,101.57,103.02,101.39,102.20,35540000,102.20
-1979-04-23,101.23,102.00,100.68,101.57,25610000,101.57
-1979-04-20,101.28,101.81,100.46,101.23,28830000,101.23
-1979-04-19,101.70,102.40,100.88,101.28,31150000,101.28
-1979-04-18,101.24,102.23,100.96,101.70,29510000,101.70
-1979-04-17,101.12,101.94,100.65,101.24,29260000,101.24
-1979-04-16,102.00,102.02,100.67,101.12,28050000,101.12
-1979-04-12,102.31,102.77,101.51,102.00,26780000,102.00
-1979-04-11,103.34,103.77,101.92,102.31,32900000,102.31
-1979-04-10,102.87,103.83,102.42,103.34,31900000,103.34
-1979-04-09,103.18,103.56,102.28,102.87,27230000,102.87
-1979-04-06,103.26,103.95,102.58,103.18,34710000,103.18
-1979-04-05,102.65,103.60,102.16,103.26,34520000,103.26
-1979-04-04,102.40,103.73,102.16,102.65,41940000,102.65
-1979-04-03,100.90,102.67,100.81,102.40,33530000,102.40
-1979-04-02,101.56,101.56,100.14,100.90,28990000,100.90
-1979-03-30,102.03,102.51,101.03,101.59,29970000,101.59
-1979-03-29,102.12,102.78,101.43,102.03,28510000,102.03
-1979-03-28,102.48,103.31,101.74,102.12,39920000,102.12
-1979-03-27,101.04,102.71,100.81,102.48,32940000,102.48
-1979-03-26,101.60,101.77,100.60,101.04,23430000,101.04
-1979-03-23,101.67,102.37,101.02,101.60,33570000,101.60
-1979-03-22,101.25,102.41,101.04,101.67,34380000,101.67
-1979-03-21,100.50,101.48,99.87,101.25,31120000,101.25
-1979-03-20,101.06,101.34,100.01,100.50,27180000,100.50
-1979-03-19,100.69,101.94,100.35,101.06,34620000,101.06
-1979-03-16,99.86,101.16,99.53,100.69,31770000,100.69
-1979-03-15,99.71,100.57,99.11,99.86,29370000,99.86
-1979-03-14,99.84,100.43,99.23,99.71,24630000,99.71
-1979-03-13,99.67,100.66,99.13,99.84,31170000,99.84
-1979-03-12,99.54,100.04,98.56,99.67,25740000,99.67
-1979-03-09,99.58,100.58,99.12,99.54,33410000,99.54
-1979-03-08,98.44,99.82,98.10,99.58,32000000,99.58
-1979-03-07,97.87,99.23,97.67,98.44,28930000,98.44
-1979-03-06,98.06,98.53,97.36,97.87,24490000,97.87
-1979-03-05,97.03,98.64,97.03,98.06,25690000,98.06
-1979-03-02,96.90,97.55,96.44,96.97,23130000,96.97
-1979-03-01,96.28,97.28,95.98,96.90,23830000,96.90
-1979-02-28,96.13,96.69,95.38,96.28,25090000,96.28
-1979-02-27,97.65,97.65,95.69,96.13,31470000,96.13
-1979-02-26,97.78,98.28,97.20,97.67,22620000,97.67
-1979-02-23,98.33,98.50,97.29,97.78,22750000,97.78
-1979-02-22,99.07,99.21,97.88,98.33,26290000,98.33
-1979-02-21,99.42,100.07,98.69,99.07,26050000,99.07
-1979-02-20,98.67,99.67,98.26,99.42,22010000,99.42
-1979-02-16,98.73,99.23,98.11,98.67,21110000,98.67
-1979-02-15,98.87,99.13,97.96,98.73,22550000,98.73
-1979-02-14,98.93,99.64,98.21,98.87,27220000,98.87
-1979-02-13,98.25,99.58,98.25,98.93,28470000,98.93
-1979-02-12,97.87,98.55,97.05,98.20,20610000,98.20
-1979-02-09,97.65,98.50,97.28,97.87,24320000,97.87
-1979-02-08,97.16,98.11,96.82,97.65,23360000,97.65
-1979-02-07,98.05,98.07,96.51,97.16,28450000,97.16
-1979-02-06,98.09,98.74,97.48,98.05,23570000,98.05
-1979-02-05,99.07,99.07,97.57,98.09,26490000,98.09
-1979-02-02,99.96,100.52,99.10,99.50,25350000,99.50
-1979-02-01,99.93,100.38,99.01,99.96,27930000,99.96
-1979-01-31,101.05,101.41,99.47,99.93,30330000,99.93
-1979-01-30,101.55,102.07,100.68,101.05,26910000,101.05
-1979-01-29,101.86,102.33,100.99,101.55,24170000,101.55
-1979-01-26,101.19,102.59,101.03,101.86,34230000,101.86
-1979-01-25,100.16,101.66,99.99,101.19,31440000,101.19
-1979-01-24,100.60,101.31,99.67,100.16,31730000,100.16
-1979-01-23,99.90,101.05,99.35,100.60,30130000,100.60
-1979-01-22,99.75,100.35,98.90,99.90,24390000,99.90
-1979-01-19,99.72,100.57,99.22,99.75,26800000,99.75
-1979-01-18,99.48,100.35,98.91,99.72,27260000,99.72
-1979-01-17,99.46,100.00,98.33,99.48,25310000,99.48
-1979-01-16,100.69,100.88,99.11,99.46,30340000,99.46
-1979-01-15,99.93,101.13,99.58,100.69,27520000,100.69
-1979-01-12,99.32,100.91,99.32,99.93,37120000,99.93
-1979-01-11,98.77,99.41,97.95,99.10,24580000,99.10
-1979-01-10,99.33,99.75,98.28,98.77,24990000,98.77
-1979-01-09,98.80,99.96,98.62,99.33,27340000,99.33
-1979-01-08,99.13,99.30,97.83,98.80,21440000,98.80
-1979-01-05,98.58,99.79,98.25,99.13,28890000,99.13
-1979-01-04,97.80,99.42,97.52,98.58,33290000,98.58
-1979-01-03,96.81,98.54,96.81,97.80,29180000,97.80
-1979-01-02,96.11,96.96,95.22,96.73,18340000,96.73
-1978-12-29,96.28,97.03,95.48,96.11,30030000,96.11
-1978-12-28,96.66,97.19,95.82,96.28,25440000,96.28
-1978-12-27,97.51,97.51,96.15,96.66,23580000,96.66
-1978-12-26,96.31,97.89,95.99,97.52,21470000,97.52
-1978-12-22,94.77,96.62,94.77,96.31,23790000,96.31
-1978-12-21,94.68,95.66,94.11,94.71,28670000,94.71
-1978-12-20,94.24,95.20,93.70,94.68,26520000,94.68
-1978-12-19,93.44,94.85,93.05,94.24,25960000,94.24
-1978-12-18,94.33,94.33,92.64,93.44,32900000,93.44
-1978-12-15,96.04,96.28,94.88,95.33,23620000,95.33
-1978-12-14,96.06,96.44,95.20,96.04,20840000,96.04
-1978-12-13,96.59,97.07,95.59,96.06,22480000,96.06
-1978-12-12,97.11,97.58,96.27,96.59,22210000,96.59
-1978-12-11,96.63,97.56,96.07,97.11,21000000,97.11
-1978-12-08,97.08,97.48,96.14,96.63,18560000,96.63
-1978-12-07,97.49,98.10,96.58,97.08,21170000,97.08
-1978-12-06,97.44,98.58,96.83,97.49,29680000,97.49
-1978-12-05,96.15,97.70,95.88,97.44,25670000,97.44
-1978-12-04,96.28,96.96,95.37,96.15,22020000,96.15
-1978-12-01,95.01,96.69,95.01,96.28,26830000,96.28
-1978-11-30,93.75,94.94,93.29,94.70,19900000,94.70
-1978-11-29,94.92,94.92,93.48,93.75,21160000,93.75
-1978-11-28,95.99,96.51,94.88,95.15,22740000,95.15
-1978-11-27,95.79,96.52,95.17,95.99,19790000,95.99
-1978-11-24,95.48,96.17,94.98,95.79,14590000,95.79
-1978-11-22,95.01,95.91,94.54,95.48,20010000,95.48
-1978-11-21,95.25,95.83,94.49,95.01,20750000,95.01
-1978-11-20,94.42,95.86,94.29,95.25,24440000,95.25
-1978-11-17,93.71,95.03,93.59,94.42,25170000,94.42
-1978-11-16,92.71,94.08,92.59,93.71,21340000,93.71
-1978-11-15,92.49,94.00,92.29,92.71,26280000,92.71
-1978-11-14,93.13,93.53,91.77,92.49,30610000,92.49
-1978-11-13,94.77,94.90,92.96,93.13,20960000,93.13
-1978-11-10,94.42,95.39,93.94,94.77,16750000,94.77
-1978-11-09,94.45,95.50,93.81,94.42,23320000,94.42
-1978-11-08,93.85,94.74,92.89,94.45,23560000,94.45
-1978-11-07,94.75,94.75,93.14,93.85,25320000,93.85
-1978-11-06,96.18,96.49,94.84,95.19,20450000,95.19
-1978-11-03,95.61,96.98,94.78,96.18,25990000,96.18
-1978-11-02,96.85,97.31,94.84,95.61,41030000,95.61
-1978-11-01,94.13,97.41,94.13,96.85,50450000,96.85
-1978-10-31,95.06,95.80,92.72,93.15,42720000,93.15
-1978-10-30,94.59,95.49,91.65,95.06,59480000,95.06
-1978-10-27,96.03,96.62,94.30,94.59,40360000,94.59
-1978-10-26,97.31,97.71,95.59,96.03,31990000,96.03
-1978-10-25,97.49,98.56,96.33,97.31,31380000,97.31
-1978-10-24,98.18,98.95,97.13,97.49,28880000,97.49
-1978-10-23,97.95,98.84,96.63,98.18,36090000,98.18
-1978-10-20,99.26,99.26,97.12,97.95,43670000,97.95
-1978-10-19,100.49,101.03,99.04,99.33,31810000,99.33
-1978-10-18,101.26,101.76,99.89,100.49,32940000,100.49
-1978-10-17,102.35,102.35,100.47,101.26,37870000,101.26
-1978-10-16,104.63,104.63,102.43,102.61,24600000,102.61
-1978-10-13,104.88,105.34,104.07,104.66,21920000,104.66
-1978-10-12,105.39,106.23,104.42,104.88,30170000,104.88
-1978-10-11,104.46,105.64,103.80,105.39,21740000,105.39
-1978-10-10,104.59,105.36,103.90,104.46,25470000,104.46
-1978-10-09,103.52,104.89,103.31,104.59,19720000,104.59
-1978-10-06,103.27,104.23,102.82,103.52,27380000,103.52
-1978-10-05,103.06,104.10,102.54,103.27,27820000,103.27
-1978-10-04,102.60,103.36,101.76,103.06,25090000,103.06
-1978-10-03,102.96,103.56,102.18,102.60,22540000,102.60
-1978-10-02,102.54,103.42,102.13,102.96,18700000,102.96
-1978-09-29,101.96,103.08,101.65,102.54,23610000,102.54
-1978-09-28,101.66,102.38,100.94,101.96,24390000,101.96
-1978-09-27,102.62,103.44,101.33,101.66,28370000,101.66
-1978-09-26,101.86,103.15,101.58,102.62,26330000,102.62
-1978-09-25,101.84,102.36,101.05,101.86,20970000,101.86
-1978-09-22,101.90,102.69,101.13,101.84,27960000,101.84
-1978-09-21,101.73,102.54,100.66,101.90,33640000,101.90
-1978-09-20,102.53,103.29,101.28,101.73,35080000,101.73
-1978-09-19,103.21,103.82,102.12,102.53,31660000,102.53
-1978-09-18,104.12,105.03,102.75,103.21,35860000,103.21
-1978-09-15,105.10,105.12,103.56,104.12,37290000,104.12
-1978-09-14,106.34,106.62,104.77,105.10,37400000,105.10
-1978-09-13,106.99,107.85,105.87,106.34,43340000,106.34
-1978-09-12,106.98,107.48,106.02,106.99,34400000,106.99
-1978-09-11,106.79,108.05,106.42,106.98,39670000,106.98
-1978-09-08,105.50,107.19,105.50,106.79,42170000,106.79
-1978-09-07,105.38,106.49,104.76,105.42,40310000,105.42
-1978-09-06,104.51,106.19,104.51,105.38,42600000,105.38
-1978-09-05,103.68,104.83,103.31,104.49,32170000,104.49
-1978-09-01,103.29,104.27,102.73,103.68,35070000,103.68
-1978-08-31,103.50,104.05,102.63,103.29,33850000,103.29
-1978-08-30,103.39,104.26,102.70,103.50,37750000,103.50
-1978-08-29,103.96,104.34,102.92,103.39,33780000,103.39
-1978-08-28,104.90,105.14,103.61,103.96,31760000,103.96
-1978-08-25,105.08,105.68,104.24,104.90,36190000,104.90
-1978-08-24,104.91,105.86,104.29,105.08,38500000,105.08
-1978-08-23,104.31,105.68,104.12,104.91,39630000,104.91
-1978-08-22,103.89,104.79,103.14,104.31,29620000,104.31
-1978-08-21,104.73,105.20,103.44,103.89,29440000,103.89
-1978-08-18,105.08,105.98,104.23,104.73,34650000,104.73
-1978-08-17,104.65,106.27,104.34,105.08,45270000,105.08
-1978-08-16,103.85,105.15,103.41,104.65,36120000,104.65
-1978-08-15,103.97,104.38,102.86,103.85,29760000,103.85
-1978-08-14,103.96,104.98,103.40,103.97,32320000,103.97
-1978-08-11,103.66,104.67,102.85,103.96,33550000,103.96
-1978-08-10,104.50,105.11,103.10,103.66,39760000,103.66
-1978-08-09,104.01,105.72,103.70,104.50,48800000,104.50
-1978-08-08,103.55,104.35,102.60,104.01,34290000,104.01
-1978-08-07,103.92,104.84,103.03,103.55,33350000,103.55
-1978-08-04,103.51,104.67,102.75,103.92,37910000,103.92
-1978-08-03,102.92,105.41,102.82,103.51,66370000,103.51
-1978-08-02,100.66,103.21,100.18,102.92,47470000,102.92
-1978-08-01,100.68,101.46,99.95,100.66,34810000,100.66
-1978-07-31,100.00,101.18,99.37,100.68,33990000,100.68
-1978-07-28,99.54,100.51,98.90,100.00,33390000,100.00
-1978-07-27,99.08,100.17,98.60,99.54,33970000,99.54
-1978-07-26,99.08,99.08,99.08,99.08,36830000,99.08
-1978-07-25,97.72,98.73,97.20,98.44,25400000,98.44
-1978-07-24,97.75,98.13,96.72,97.72,23280000,97.72
-1978-07-21,98.03,98.57,97.02,97.75,26060000,97.75
-1978-07-20,98.12,99.18,97.49,98.03,33350000,98.03
-1978-07-19,96.87,98.41,96.71,98.12,30850000,98.12
-1978-07-18,97.78,97.98,96.52,96.87,22860000,96.87
-1978-07-17,97.58,98.84,97.24,97.78,29180000,97.78
-1978-07-14,96.25,97.88,95.89,97.58,28370000,97.58
-1978-07-13,96.24,96.66,95.42,96.25,23620000,96.25
-1978-07-12,95.93,96.83,95.50,96.24,26640000,96.24
-1978-07-11,95.27,96.49,94.92,95.93,27470000,95.93
-1978-07-10,94.89,95.67,94.28,95.27,22470000,95.27
-1978-07-07,94.32,95.32,94.02,94.89,23480000,94.89
-1978-07-06,94.27,94.83,93.59,94.32,24990000,94.32
-1978-07-05,95.09,95.20,93.78,94.27,23730000,94.27
-1978-07-03,95.53,95.65,94.62,95.09,11560000,95.09
-1978-06-30,95.57,95.96,94.87,95.53,18100000,95.53
-1978-06-29,95.40,96.26,95.00,95.57,21660000,95.57
-1978-06-28,94.98,95.79,94.44,95.40,23260000,95.40
-1978-06-27,94.60,95.48,93.99,94.98,29280000,94.98
-1978-06-26,95.85,96.06,94.31,94.60,29250000,94.60
-1978-06-23,96.24,96.98,95.49,95.85,28530000,95.85
-1978-06-22,96.01,96.76,95.52,96.24,27160000,96.24
-1978-06-21,96.51,96.74,95.42,96.01,29100000,96.01
-1978-06-20,97.49,97.78,96.15,96.51,27920000,96.51
-1978-06-19,97.42,97.94,96.53,97.49,25500000,97.49
-1978-06-16,98.34,98.59,97.10,97.42,27690000,97.42
-1978-06-15,99.48,99.54,97.97,98.34,29280000,98.34
-1978-06-14,99.57,100.68,98.89,99.48,37290000,99.48
-1978-06-13,99.55,99.98,98.43,99.57,30760000,99.57
-1978-06-12,99.93,100.60,99.16,99.55,24440000,99.55
-1978-06-09,100.21,100.71,99.30,99.93,32470000,99.93
-1978-06-08,100.12,101.21,99.55,100.21,39380000,100.21
-1978-06-07,100.32,100.81,99.36,100.12,33060000,100.12
-1978-06-06,99.95,101.84,99.90,100.32,51970000,100.32
-1978-06-05,98.14,100.27,97.97,99.95,39580000,99.95
-1978-06-02,97.35,98.52,97.01,98.14,31860000,98.14
-1978-06-01,97.24,97.95,96.63,97.35,28750000,97.35
-1978-05-31,96.86,97.97,96.50,97.24,29070000,97.24
-1978-05-30,96.58,97.23,95.95,96.86,21040000,96.86
-1978-05-26,96.80,97.14,96.01,96.58,21410000,96.58
-1978-05-25,97.08,97.80,96.30,96.80,28410000,96.80
-1978-05-24,97.74,97.74,96.27,97.08,31450000,97.08
-1978-05-23,99.09,99.17,97.53,98.05,33230000,98.05
-1978-05-22,98.12,99.43,97.65,99.09,28680000,99.09
-1978-05-19,98.62,99.06,97.42,98.12,34360000,98.12
-1978-05-18,99.60,100.04,98.19,98.62,42270000,98.62
-1978-05-17,99.35,100.32,98.63,99.60,45490000,99.60
-1978-05-16,98.76,100.16,98.61,99.35,48170000,99.35
-1978-05-15,98.07,99.11,97.40,98.76,33890000,98.76
-1978-05-12,97.20,98.89,97.14,98.07,46600000,98.07
-1978-05-11,95.92,97.47,95.60,97.20,36630000,97.20
-1978-05-10,95.90,96.69,95.35,95.92,33330000,95.92
-1978-05-09,96.19,96.68,95.33,95.90,30860000,95.90
-1978-05-08,96.53,97.50,95.82,96.19,34680000,96.19
-1978-05-05,95.93,97.44,95.56,96.53,42680000,96.53
-1978-05-04,96.26,96.43,94.57,95.93,37520000,95.93
-1978-05-03,97.25,97.61,95.84,96.26,37560000,96.26
-1978-05-02,97.67,98.11,96.44,97.25,41400000,97.25
-1978-05-01,96.83,98.30,96.41,97.67,37020000,97.67
-1978-04-28,95.86,97.10,95.24,96.83,32850000,96.83
-1978-04-27,96.82,96.93,95.30,95.86,35470000,95.86
-1978-04-26,96.64,97.75,95.96,96.82,44430000,96.82
-1978-04-25,96.05,97.91,96.05,96.64,55800000,96.64
-1978-04-24,94.34,96.00,94.08,95.77,34510000,95.77
-1978-04-21,94.54,95.09,93.71,94.34,31540000,94.34
-1978-04-20,93.97,95.71,93.97,94.54,43230000,94.54
-1978-04-19,93.43,94.48,92.75,93.86,35060000,93.86
-1978-04-18,94.45,94.72,92.87,93.43,38950000,93.43
-1978-04-17,93.60,95.89,93.60,94.45,63510000,94.45
-1978-04-14,91.40,93.31,91.40,92.92,52280000,92.92
-1978-04-13,90.11,91.27,89.82,90.98,31580000,90.98
-1978-04-12,90.25,90.78,89.65,90.11,26210000,90.11
-1978-04-11,90.49,90.79,89.77,90.25,24300000,90.25
-1978-04-10,90.17,90.88,89.73,90.49,25740000,90.49
-1978-04-07,89.79,90.59,89.39,90.17,25160000,90.17
-1978-04-06,89.64,90.46,89.31,89.79,27360000,89.79
-1978-04-05,88.86,89.91,88.62,89.64,27260000,89.64
-1978-04-04,88.46,89.18,88.16,88.86,20130000,88.86
-1978-04-03,89.20,89.20,88.07,88.46,20230000,88.46
-1978-03-31,89.41,89.64,88.68,89.21,20130000,89.21
-1978-03-30,89.64,89.89,88.97,89.41,20460000,89.41
-1978-03-29,89.50,90.17,89.14,89.64,25450000,89.64
-1978-03-28,88.87,89.76,88.47,89.50,21600000,89.50
-1978-03-27,89.36,89.50,88.51,88.87,18870000,88.87
-1978-03-23,89.47,89.90,88.83,89.36,21290000,89.36
-1978-03-22,89.79,90.07,88.99,89.47,21950000,89.47
-1978-03-21,90.82,91.06,89.50,89.79,24410000,89.79
-1978-03-20,90.20,91.35,90.10,90.82,28360000,90.82
-1978-03-17,89.51,90.52,89.17,90.20,28470000,90.20
-1978-03-16,89.12,89.77,88.58,89.51,25400000,89.51
-1978-03-15,89.35,89.73,88.52,89.12,23340000,89.12
-1978-03-14,88.95,89.62,88.21,89.35,24300000,89.35
-1978-03-13,88.88,89.77,88.48,88.95,24070000,88.95
-1978-03-10,87.89,89.25,87.82,88.88,27090000,88.88
-1978-03-09,87.84,88.49,87.34,87.89,21820000,87.89
-1978-03-08,87.36,88.08,86.97,87.84,22030000,87.84
-1978-03-07,86.90,87.63,86.55,87.36,19900000,87.36
-1978-03-06,87.45,87.52,86.48,86.90,17230000,86.90
-1978-03-03,87.32,87.98,86.83,87.45,20120000,87.45
-1978-03-02,87.19,87.81,86.69,87.32,20280000,87.32
-1978-03-01,87.04,87.63,86.45,87.19,21010000,87.19
-1978-02-28,87.72,87.76,86.58,87.04,19750000,87.04
-1978-02-27,88.49,88.97,87.49,87.72,19990000,87.72
-1978-02-24,87.66,88.87,87.66,88.49,22510000,88.49
-1978-02-23,87.56,87.92,86.83,87.64,18720000,87.64
-1978-02-22,87.59,88.15,87.19,87.56,18450000,87.56
-1978-02-21,87.96,88.19,87.09,87.59,21890000,87.59
-1978-02-17,88.08,88.70,87.55,87.96,18500000,87.96
-1978-02-16,88.77,88.77,87.64,88.08,21570000,88.08
-1978-02-15,89.04,89.40,88.30,88.83,20170000,88.83
-1978-02-14,89.86,89.89,88.70,89.04,20470000,89.04
-1978-02-13,90.08,90.30,89.38,89.86,16810000,89.86
-1978-02-10,90.30,90.69,89.56,90.08,19480000,90.08
-1978-02-09,90.83,90.96,89.84,90.30,17940000,90.30
-1978-02-08,90.33,91.32,90.09,90.83,21300000,90.83
-1978-02-07,89.50,90.53,89.38,90.33,14730000,90.33
-1978-02-06,89.62,89.85,88.95,89.50,11630000,89.50
-1978-02-03,90.13,90.32,89.19,89.62,19400000,89.62
-1978-02-02,89.93,90.91,89.54,90.13,23050000,90.13
-1978-02-01,89.25,90.24,88.82,89.93,22240000,89.93
-1978-01-31,89.34,89.92,88.61,89.25,19870000,89.25
-1978-01-30,88.58,89.67,88.26,89.34,17400000,89.34
-1978-01-27,88.58,89.10,88.02,88.58,17600000,88.58
-1978-01-26,89.39,89.79,88.31,88.58,19600000,88.58
-1978-01-25,89.25,89.94,88.83,89.39,18690000,89.39
-1978-01-24,89.24,89.80,88.67,89.25,18690000,89.25
-1978-01-23,89.89,90.08,88.81,89.24,19380000,89.24
-1978-01-20,90.09,90.27,89.41,89.89,7580000,89.89
-1978-01-19,90.56,91.04,89.74,90.09,21500000,90.09
-1978-01-18,89.88,90.86,89.59,90.56,21390000,90.56
-1978-01-17,89.43,90.31,89.05,89.88,19360000,89.88
-1978-01-16,89.69,90.11,88.88,89.43,18760000,89.43
-1978-01-13,89.82,90.47,89.26,89.69,18010000,89.69
-1978-01-12,89.74,90.60,89.25,89.82,22730000,89.82
-1978-01-11,90.17,90.70,89.23,89.74,22880000,89.74
-1978-01-10,90.64,91.29,89.72,90.17,25180000,90.17
-1978-01-09,91.48,91.48,89.97,90.64,27990000,90.64
-1978-01-06,92.66,92.66,91.05,91.62,26150000,91.62
-1978-01-05,93.52,94.53,92.51,92.74,23570000,92.74
-1978-01-04,93.82,94.10,92.57,93.52,24090000,93.52
-1978-01-03,95.10,95.15,93.49,93.82,17720000,93.82
-1977-12-30,94.94,95.67,94.44,95.10,23560000,95.10
-1977-12-29,94.75,95.43,94.10,94.94,23610000,94.94
-1977-12-28,94.69,95.20,93.99,94.75,19630000,94.75
-1977-12-27,94.69,95.21,94.09,94.69,16750000,94.69
-1977-12-23,93.80,94.99,93.75,94.69,20080000,94.69
-1977-12-22,93.05,94.37,93.05,93.80,28100000,93.80
-1977-12-21,92.50,93.58,92.20,93.05,24510000,93.05
-1977-12-20,92.69,93.00,91.76,92.50,23250000,92.50
-1977-12-19,93.40,93.71,92.42,92.69,21150000,92.69
-1977-12-16,93.55,94.04,92.93,93.40,20270000,93.40
-1977-12-15,94.03,94.42,93.23,93.55,21610000,93.55
-1977-12-14,93.56,94.26,92.94,94.03,22110000,94.03
-1977-12-13,93.63,94.04,92.90,93.56,19190000,93.56
-1977-12-12,93.65,94.29,93.18,93.63,18180000,93.63
-1977-12-09,92.96,94.11,92.77,93.65,19210000,93.65
-1977-12-08,92.78,93.76,92.51,92.96,20400000,92.96
-1977-12-07,92.83,93.39,92.15,92.78,21050000,92.78
-1977-12-06,94.09,94.09,92.44,92.83,23770000,92.83
-1977-12-05,94.67,95.01,93.91,94.27,19160000,94.27
-1977-12-02,94.69,95.25,94.08,94.67,21160000,94.67
-1977-12-01,94.83,95.45,94.23,94.69,24220000,94.69
-1977-11-30,94.55,95.17,93.78,94.83,22670000,94.83
-1977-11-29,96.04,96.09,94.28,94.55,22950000,94.55
-1977-11-28,96.69,96.98,95.67,96.04,21570000,96.04
-1977-11-25,96.49,97.11,95.86,96.69,17910000,96.69
-1977-11-23,96.09,96.94,95.60,96.49,29150000,96.49
-1977-11-22,95.25,96.52,95.05,96.09,28600000,96.09
-1977-11-21,95.33,95.77,94.59,95.25,20110000,95.25
-1977-11-18,95.16,95.88,94.70,95.33,23930000,95.33
-1977-11-17,95.45,95.88,94.59,95.16,25110000,95.16
-1977-11-16,95.93,96.47,95.06,95.45,24950000,95.45
-1977-11-15,95.32,96.47,94.73,95.93,27740000,95.93
-1977-11-14,95.98,96.38,94.91,95.32,23220000,95.32
-1977-11-11,95.10,96.49,95.10,95.98,35260000,95.98
-1977-11-10,92.98,95.10,92.69,94.71,31980000,94.71
-1977-11-09,92.46,93.27,92.01,92.98,21330000,92.98
-1977-11-08,92.29,92.97,91.82,92.46,19210000,92.46
-1977-11-07,91.58,92.70,91.32,92.29,21270000,92.29
-1977-11-04,90.76,91.97,90.72,91.58,21700000,91.58
-1977-11-03,90.71,91.18,90.01,90.76,18090000,90.76
-1977-11-02,91.35,91.59,90.29,90.71,20760000,90.71
-1977-11-01,92.19,92.19,91.00,91.35,17170000,91.35
-1977-10-31,92.61,93.03,91.85,92.34,17070000,92.34
-1977-10-28,92.34,93.13,91.88,92.61,18050000,92.61
-1977-10-27,92.10,93.15,91.54,92.34,21920000,92.34
-1977-10-26,91.00,92.46,90.44,92.10,24860000,92.10
-1977-10-25,91.63,91.71,90.20,91.00,23590000,91.00
-1977-10-24,92.32,92.62,91.36,91.63,19210000,91.63
-1977-10-21,92.67,92.99,91.80,92.32,20230000,92.32
-1977-10-20,92.38,93.12,91.60,92.67,20520000,92.67
-1977-10-19,93.46,93.71,92.07,92.38,22030000,92.38
-1977-10-18,93.47,94.19,93.01,93.46,20130000,93.46
-1977-10-17,93.56,94.03,92.87,93.47,17340000,93.47
-1977-10-14,93.46,94.19,92.88,93.56,20410000,93.56
-1977-10-13,94.04,94.32,92.89,93.46,23870000,93.46
-1977-10-12,94.82,94.82,93.40,94.04,22440000,94.04
-1977-10-11,95.75,95.97,94.73,94.93,17870000,94.93
-1977-10-10,95.97,96.15,95.32,95.75,10580000,95.75
-1977-10-07,96.05,96.51,95.48,95.97,16250000,95.97
-1977-10-06,95.68,96.45,95.30,96.05,18490000,96.05
-1977-10-05,96.03,96.36,95.20,95.68,18300000,95.68
-1977-10-04,96.74,97.27,95.73,96.03,20850000,96.03
-1977-10-03,96.53,97.11,95.86,96.74,19460000,96.74
-1977-09-30,95.85,96.85,95.66,96.53,21170000,96.53
-1977-09-29,95.31,96.28,95.09,95.85,21160000,95.85
-1977-09-28,95.24,95.91,94.73,95.31,17960000,95.31
-1977-09-27,95.38,96.01,94.76,95.24,19080000,95.24
-1977-09-26,95.04,95.68,94.44,95.38,18230000,95.38
-1977-09-23,95.09,95.69,94.60,95.04,18760000,95.04
-1977-09-22,95.10,95.61,94.51,95.09,16660000,95.09
-1977-09-21,95.89,96.52,94.83,95.10,22200000,95.10
-1977-09-20,95.85,96.29,95.23,95.89,19030000,95.89
-1977-09-19,96.48,96.59,95.46,95.85,16890000,95.85
-1977-09-16,96.80,97.30,96.05,96.48,18340000,96.48
-1977-09-15,96.55,97.31,96.15,96.80,18230000,96.80
-1977-09-14,96.09,96.88,95.66,96.55,17330000,96.55
-1977-09-13,96.03,96.56,95.48,96.09,14900000,96.09
-1977-09-12,96.37,96.64,95.37,96.03,18700000,96.03
-1977-09-09,97.10,97.10,95.97,96.37,18100000,96.37
-1977-09-08,98.01,98.43,97.01,97.28,18290000,97.28
-1977-09-07,97.71,98.38,97.33,98.01,18070000,98.01
-1977-09-06,97.45,98.13,96.93,97.71,16130000,97.71
-1977-09-02,96.83,97.76,96.51,97.45,15620000,97.45
-1977-09-01,96.77,97.54,96.35,96.83,18820000,96.83
-1977-08-31,96.38,97.00,95.59,96.77,19080000,96.77
-1977-08-30,96.92,97.55,96.04,96.38,18220000,96.38
-1977-08-29,96.06,97.25,95.93,96.92,15280000,96.92
-1977-08-26,96.15,96.42,95.04,96.06,18480000,96.06
-1977-08-25,97.18,97.18,95.81,96.15,19400000,96.15
-1977-08-24,97.62,97.99,96.77,97.23,18170000,97.23
-1977-08-23,97.79,98.52,97.18,97.62,20290000,97.62
-1977-08-22,97.51,98.29,96.84,97.79,17870000,97.79
-1977-08-19,97.68,98.29,96.78,97.51,20800000,97.51
-1977-08-18,97.74,98.69,97.21,97.68,21040000,97.68
-1977-08-17,97.73,98.40,97.12,97.74,20920000,97.74
-1977-08-16,98.18,98.60,97.35,97.73,19340000,97.73
-1977-08-15,97.88,98.56,97.14,98.18,15750000,98.18
-1977-08-12,98.16,98.51,97.31,97.88,16870000,97.88
-1977-08-11,98.92,99.45,97.90,98.16,21740000,98.16
-1977-08-10,98.05,99.06,97.67,98.92,18280000,98.92
-1977-08-09,97.99,98.63,97.48,98.05,19900000,98.05
-1977-08-08,98.76,98.86,97.68,97.99,15870000,97.99
-1977-08-05,98.74,99.44,98.31,98.76,19940000,98.76
-1977-08-04,98.37,99.19,97.79,98.74,18870000,98.74
-1977-08-03,98.50,98.86,97.53,98.37,21710000,98.37
-1977-08-02,99.12,99.27,98.14,98.50,17910000,98.50
-1977-08-01,98.85,99.84,98.46,99.12,17920000,99.12
-1977-07-29,98.79,99.21,97.71,98.85,20350000,98.85
-1977-07-28,98.64,99.36,97.78,98.79,26340000,98.79
-1977-07-27,100.27,100.29,98.31,98.64,26440000,98.64
-1977-07-26,100.85,100.92,99.72,100.27,21390000,100.27
-1977-07-25,101.67,101.85,100.46,100.85,20430000,100.85
-1977-07-22,101.59,102.28,101.02,101.67,23110000,101.67
-1977-07-21,101.73,102.19,100.85,101.59,26880000,101.59
-1977-07-20,101.79,102.57,101.14,101.73,29380000,101.73
-1977-07-19,100.95,102.17,100.68,101.79,31930000,101.79
-1977-07-18,100.18,101.40,99.94,100.95,29890000,100.95
-1977-07-15,99.59,100.68,99.28,100.18,29120000,100.18
-1977-07-13,99.45,99.99,98.83,99.59,23160000,99.59
-1977-07-12,99.55,100.01,98.81,99.45,22470000,99.45
-1977-07-11,99.79,100.16,98.90,99.55,19790000,99.55
-1977-07-08,99.93,100.62,99.37,99.79,23820000,99.79
-1977-07-07,99.58,100.30,99.12,99.93,21740000,99.93
-1977-07-06,100.09,100.41,99.20,99.58,21230000,99.58
-1977-07-05,100.10,100.72,99.62,100.09,16850000,100.09
-1977-07-01,100.48,100.76,99.63,100.10,18160000,100.10
-1977-06-30,100.11,100.88,99.68,100.48,19410000,100.48
-1977-06-29,100.14,100.49,99.30,100.11,19000000,100.11
-1977-06-28,100.98,101.36,99.87,100.14,22670000,100.14
-1977-06-27,101.19,101.63,100.47,100.98,19870000,100.98
-1977-06-24,100.62,101.65,100.41,101.19,27490000,101.19
-1977-06-23,100.46,101.10,99.88,100.62,24330000,100.62
-1977-06-22,100.74,101.07,99.90,100.46,25070000,100.46
-1977-06-21,100.42,101.41,100.16,100.74,29730000,100.74
-1977-06-20,99.97,100.76,99.56,100.42,22950000,100.42
-1977-06-17,99.85,100.47,99.34,99.97,21960000,99.97
-1977-06-16,99.61,100.33,98.91,99.85,24310000,99.85
-1977-06-15,99.86,100.31,99.12,99.61,22640000,99.61
-1977-06-14,98.76,100.12,98.76,99.86,25390000,99.86
-1977-06-13,98.46,99.21,98.06,98.74,20250000,98.74
-1977-06-10,98.14,98.86,97.68,98.46,20630000,98.46
-1977-06-09,98.20,98.62,97.51,98.14,19940000,98.14
-1977-06-08,97.73,98.75,97.49,98.20,22200000,98.20
-1977-06-07,97.23,98.01,96.60,97.73,21110000,97.73
-1977-06-06,97.69,98.26,96.89,97.23,18930000,97.23
-1977-06-03,96.74,98.12,96.55,97.69,20330000,97.69
-1977-06-02,96.93,97.53,96.23,96.74,18620000,96.74
-1977-06-01,96.12,97.27,95.89,96.93,18320000,96.93
-1977-05-31,96.27,96.75,95.52,96.12,17800000,96.12
-1977-05-27,97.01,97.26,95.92,96.27,15730000,96.27
-1977-05-26,96.77,97.47,96.20,97.01,18620000,97.01
-1977-05-25,97.67,98.14,96.50,96.77,20710000,96.77
-1977-05-24,98.15,98.25,97.00,97.67,20050000,97.67
-1977-05-23,99.35,99.35,97.88,98.15,18290000,98.15
-1977-05-20,99.88,100.12,98.91,99.45,18950000,99.45
-1977-05-19,100.30,100.74,99.49,99.88,21280000,99.88
-1977-05-18,99.77,100.93,99.58,100.30,27800000,100.30
-1977-05-17,99.47,100.11,98.76,99.77,22290000,99.77
-1977-05-16,99.03,99.98,98.79,99.47,21170000,99.47
-1977-05-13,98.73,99.52,98.37,99.03,19780000,99.03
-1977-05-12,98.78,99.25,97.91,98.73,21980000,98.73
-1977-05-11,99.47,99.77,98.40,98.78,18980000,98.78
-1977-05-10,99.18,100.09,98.82,99.47,21090000,99.47
-1977-05-09,99.49,99.78,98.66,99.18,15230000,99.18
-1977-05-06,100.11,100.20,98.95,99.49,19370000,99.49
-1977-05-05,99.96,100.79,99.28,100.11,23450000,100.11
-1977-05-04,99.43,100.56,98.90,99.96,23330000,99.96
-1977-05-03,98.93,99.96,98.72,99.43,21950000,99.43
-1977-05-02,98.44,99.26,97.97,98.93,17970000,98.93
-1977-04-29,98.20,98.87,97.58,98.44,18330000,98.44
-1977-04-28,97.96,98.77,97.47,98.20,18370000,98.20
-1977-04-27,97.11,98.47,96.90,97.96,20590000,97.96
-1977-04-26,97.15,97.94,96.53,97.11,20040000,97.11
-1977-04-25,98.32,98.32,96.54,97.15,20440000,97.15
-1977-04-22,99.67,99.67,98.08,98.44,20700000,98.44
-1977-04-21,100.40,101.20,99.35,99.75,22740000,99.75
-1977-04-20,100.07,100.98,99.49,100.40,25090000,100.40
-1977-04-19,100.54,100.81,99.58,100.07,19510000,100.07
-1977-04-18,101.04,101.36,100.09,100.54,17830000,100.54
-1977-04-15,101.00,101.63,100.35,101.04,20230000,101.04
-1977-04-14,100.42,102.07,100.42,101.00,30490000,101.00
-1977-04-13,100.15,100.72,99.02,100.16,21800000,100.16
-1977-04-12,98.97,100.58,98.97,100.15,23760000,100.15
-1977-04-11,98.35,99.37,98.08,98.88,17650000,98.88
-1977-04-07,97.91,98.65,97.48,98.35,17260000,98.35
-1977-04-06,98.01,98.61,97.45,97.91,16600000,97.91
-1977-04-05,98.23,98.60,97.43,98.01,18330000,98.01
-1977-04-04,99.21,99.50,97.98,98.23,16250000,98.23
-1977-04-01,98.42,99.57,98.38,99.21,17050000,99.21
-1977-03-31,98.54,99.14,97.80,98.42,16510000,98.42
-1977-03-30,99.69,99.99,98.18,98.54,18810000,98.54
-1977-03-29,99.00,100.12,98.95,99.69,17030000,99.69
-1977-03-28,99.06,99.54,98.35,99.00,16710000,99.00
-1977-03-25,99.70,100.05,98.71,99.06,16550000,99.06
-1977-03-24,100.20,100.60,99.26,99.70,19650000,99.70
-1977-03-23,101.00,101.42,99.88,100.20,19360000,100.20
-1977-03-22,101.31,101.58,100.35,101.00,18660000,101.00
-1977-03-21,101.86,102.13,100.92,101.31,18040000,101.31
-1977-03-18,102.08,102.61,101.39,101.86,19840000,101.86
-1977-03-17,102.17,102.58,101.28,102.08,20700000,102.08
-1977-03-16,101.98,102.70,101.52,102.17,22140000,102.17
-1977-03-15,101.42,102.61,101.34,101.98,23940000,101.98
-1977-03-14,100.65,101.75,100.24,101.42,19290000,101.42
-1977-03-11,100.67,101.37,100.14,100.65,18230000,100.65
-1977-03-10,100.10,100.96,99.49,100.67,18620000,100.67
-1977-03-09,100.87,100.89,99.63,100.10,19680000,100.10
-1977-03-08,101.25,101.85,100.48,100.87,19520000,100.87
-1977-03-07,101.20,101.77,100.64,101.25,17410000,101.25
-1977-03-04,100.88,101.67,100.52,101.20,18950000,101.20
-1977-03-03,100.39,101.28,100.01,100.88,17560000,100.88
-1977-03-02,100.66,101.24,99.97,100.39,18010000,100.39
-1977-03-01,99.82,101.03,99.65,100.66,19480000,100.66
-1977-02-28,99.48,100.06,98.91,99.82,16220000,99.82
-1977-02-25,99.60,100.02,98.82,99.48,17610000,99.48
-1977-02-24,100.19,100.42,99.18,99.60,19730000,99.60
-1977-02-23,100.49,100.95,99.78,100.19,18240000,100.19
-1977-02-22,100.49,101.22,99.94,100.49,17730000,100.49
-1977-02-18,100.92,101.13,99.95,100.49,18040000,100.49
-1977-02-17,101.50,101.76,100.43,100.92,19040000,100.92
-1977-02-16,101.04,102.22,100.68,101.50,23430000,101.50
-1977-02-15,100.74,101.67,100.35,101.04,21620000,101.04
-1977-02-14,100.22,101.06,99.51,100.74,19230000,100.74
-1977-02-11,100.82,101.18,99.74,100.22,20510000,100.22
-1977-02-10,100.73,101.51,100.16,100.82,22340000,100.82
-1977-02-09,101.60,101.88,100.12,100.73,23640000,100.73
-1977-02-08,101.89,102.65,101.16,101.60,24040000,101.60
-1977-02-07,101.88,102.43,101.25,101.89,20700000,101.89
-1977-02-04,101.85,102.71,101.30,101.88,23130000,101.88
-1977-02-03,102.36,102.57,101.28,101.85,23790000,101.85
-1977-02-02,102.54,103.32,101.89,102.36,25700000,102.36
-1977-02-01,102.03,103.06,101.57,102.54,23700000,102.54
-1977-01-31,101.93,102.44,100.91,102.03,22920000,102.03
-1977-01-28,101.79,102.61,101.08,101.93,22700000,101.93
-1977-01-27,102.34,102.81,101.27,101.79,24360000,101.79
-1977-01-26,103.13,103.48,101.84,102.34,27840000,102.34
-1977-01-25,103.25,104.08,102.42,103.13,26340000,103.13
-1977-01-24,103.32,104.06,102.50,103.25,22890000,103.25
-1977-01-21,102.97,103.91,102.35,103.32,23930000,103.32
-1977-01-20,103.85,104.45,102.50,102.97,26520000,102.97
-1977-01-19,103.32,104.38,102.83,103.85,27120000,103.85
-1977-01-18,103.73,104.29,102.71,103.32,24380000,103.32
-1977-01-17,104.01,104.37,103.04,103.73,21060000,103.73
-1977-01-14,104.20,104.71,103.37,104.01,24480000,104.01
-1977-01-13,103.40,104.60,103.21,104.20,24780000,104.20
-1977-01-12,104.12,104.18,102.75,103.40,22670000,103.40
-1977-01-11,105.20,105.60,103.76,104.12,24100000,104.12
-1977-01-10,105.01,105.75,104.46,105.20,20860000,105.20
-1977-01-07,105.02,105.59,104.30,105.01,21720000,105.01
-1977-01-06,104.76,105.86,104.40,105.02,23920000,105.02
-1977-01-05,105.70,106.07,104.33,104.76,25010000,104.76
-1977-01-04,107.00,107.31,105.40,105.70,22740000,105.70
-1977-01-03,107.46,107.97,106.42,107.00,21280000,107.00
-1976-12-31,106.88,107.82,106.55,107.46,19170000,107.46
-1976-12-30,106.34,107.41,105.97,106.88,23700000,106.88
-1976-12-29,106.77,107.17,105.83,106.34,21910000,106.34
-1976-12-28,106.06,107.36,105.90,106.77,25790000,106.77
-1976-12-27,104.84,106.31,104.58,106.06,20130000,106.06
-1976-12-23,104.71,105.49,104.09,104.84,24560000,104.84
-1976-12-22,104.22,105.59,104.03,104.71,26970000,104.71
-1976-12-21,103.65,104.66,102.99,104.22,24390000,104.22
-1976-12-20,104.26,104.63,103.21,103.65,20690000,103.65
-1976-12-17,104.80,105.60,103.89,104.26,23870000,104.26
-1976-12-16,105.14,105.53,104.07,104.80,23920000,104.80
-1976-12-15,105.07,105.89,104.33,105.14,28300000,105.14
-1976-12-14,104.63,105.44,103.80,105.07,25130000,105.07
-1976-12-13,104.70,105.33,103.94,104.63,24830000,104.63
-1976-12-10,104.51,105.36,103.90,104.70,25960000,104.70
-1976-12-09,104.08,105.27,103.71,104.51,31800000,104.51
-1976-12-08,103.49,104.40,102.94,104.08,24560000,104.08
-1976-12-07,103.56,104.40,102.96,103.49,26140000,103.49
-1976-12-06,102.76,104.15,102.53,103.56,24830000,103.56
-1976-12-03,102.12,103.31,101.75,102.76,22640000,102.76
-1976-12-02,102.49,103.30,101.70,102.12,23300000,102.12
-1976-12-01,102.10,103.03,101.62,102.49,21960000,102.49
-1976-11-30,102.44,102.72,101.46,102.10,17030000,102.10
-1976-11-29,103.15,103.46,102.07,102.44,18750000,102.44
-1976-11-26,102.41,103.51,102.13,103.15,15000000,103.15
-1976-11-24,101.96,102.85,101.41,102.41,20420000,102.41
-1976-11-23,102.59,102.90,101.50,101.96,19090000,101.96
-1976-11-22,101.92,103.15,101.63,102.59,20930000,102.59
-1976-11-19,101.89,102.77,101.17,101.92,24550000,101.92
-1976-11-18,100.61,102.22,100.49,101.89,24000000,101.89
-1976-11-17,100.04,101.32,99.64,100.61,19900000,100.61
-1976-11-16,99.90,101.12,99.44,100.04,21020000,100.04
-1976-11-15,99.24,100.16,98.53,99.90,16710000,99.90
-1976-11-12,99.64,99.95,98.51,99.24,15550000,99.24
-1976-11-11,98.81,99.89,98.35,99.64,13230000,99.64
-1976-11-10,99.32,99.98,98.18,98.81,18890000,98.81
-1976-11-09,99.60,100.21,98.38,99.32,19210000,99.32
-1976-11-08,100.62,100.62,99.10,99.60,16520000,99.60
-1976-11-05,102.41,102.70,100.48,100.82,20780000,100.82
-1976-11-04,101.92,103.16,101.40,102.41,21700000,102.41
-1976-11-03,102.49,102.49,100.73,101.92,19350000,101.92
-1976-11-01,102.90,103.78,102.19,103.10,18390000,103.10
-1976-10-29,101.61,103.10,101.15,102.90,17030000,102.90
-1976-10-28,101.76,102.50,101.12,101.61,16920000,101.61
-1976-10-27,101.06,102.12,100.61,101.76,15790000,101.76
-1976-10-26,100.07,101.50,99.91,101.06,15490000,101.06
-1976-10-25,99.96,100.60,99.21,100.07,13310000,100.07
-1976-10-22,100.77,100.93,99.24,99.96,17870000,99.96
-1976-10-21,101.74,102.32,100.49,100.77,17980000,100.77
-1976-10-20,101.45,102.23,100.81,101.74,15860000,101.74
-1976-10-19,101.47,102.04,100.42,101.45,16200000,101.45
-1976-10-18,100.88,101.99,100.62,101.47,15710000,101.47
-1976-10-15,100.85,101.50,100.02,100.88,16210000,100.88
-1976-10-14,102.12,102.14,100.28,100.85,18610000,100.85
-1976-10-13,100.81,102.44,100.54,102.12,21690000,102.12
-1976-10-12,101.64,102.19,100.38,100.81,18210000,100.81
-1976-10-11,102.48,102.48,100.98,101.64,14620000,101.64
-1976-10-08,103.54,104.00,102.24,102.56,16740000,102.56
-1976-10-07,102.97,103.90,102.16,103.54,19830000,103.54
-1976-10-06,103.23,103.72,102.05,102.97,20870000,102.97
-1976-10-05,104.03,104.25,102.51,103.23,19200000,103.23
-1976-10-04,104.17,104.62,103.42,104.03,12630000,104.03
-1976-10-01,105.24,105.75,103.60,104.17,20620000,104.17
-1976-09-30,105.37,105.84,104.57,105.24,14700000,105.24
-1976-09-29,105.92,106.45,104.83,105.37,18090000,105.37
-1976-09-28,107.27,107.54,105.61,105.92,20440000,105.92
-1976-09-27,106.80,107.70,106.35,107.27,17430000,107.27
-1976-09-24,106.92,107.36,106.03,106.80,17400000,106.80
-1976-09-23,107.46,107.96,106.40,106.92,24210000,106.92
-1976-09-22,107.83,108.72,106.92,107.46,32970000,107.46
-1976-09-21,106.32,108.13,106.09,107.83,30300000,107.83
-1976-09-20,106.27,107.20,105.74,106.32,21730000,106.32
-1976-09-17,105.34,106.81,105.14,106.27,28270000,106.27
-1976-09-16,104.25,105.59,103.84,105.34,19620000,105.34
-1976-09-15,103.94,104.70,103.28,104.25,17570000,104.25
-1976-09-14,104.29,104.50,103.31,103.94,15550000,103.94
-1976-09-13,104.65,105.29,103.88,104.29,16100000,104.29
-1976-09-10,104.40,105.03,103.79,104.65,16930000,104.65
-1976-09-09,104.94,105.12,103.91,104.40,16540000,104.40
-1976-09-08,105.03,105.73,104.34,104.94,19750000,104.94
-1976-09-07,104.30,105.31,103.93,105.03,16310000,105.03
-1976-09-03,103.92,104.63,103.36,104.30,13280000,104.30
-1976-09-02,104.06,104.84,103.47,103.92,18920000,103.92
-1976-09-01,102.91,104.30,102.60,104.06,18640000,104.06
-1976-08-31,102.07,103.38,101.94,102.91,15480000,102.91
-1976-08-30,101.48,102.51,101.22,102.07,11140000,102.07
-1976-08-27,101.32,101.90,100.55,101.48,12120000,101.48
-1976-08-26,102.03,102.59,101.01,101.32,15270000,101.32
-1976-08-25,101.27,102.41,100.43,102.03,17400000,102.03
-1976-08-24,101.96,102.65,100.98,101.27,16740000,101.27
-1976-08-23,102.37,102.49,101.04,101.96,15450000,101.96
-1976-08-20,103.31,103.31,101.96,102.37,14920000,102.37
-1976-08-19,104.56,104.74,103.01,103.39,17230000,103.39
-1976-08-18,104.80,105.41,104.12,104.56,17150000,104.56
-1976-08-17,104.43,105.25,103.98,104.80,18500000,104.80
-1976-08-16,104.25,104.99,103.74,104.43,16210000,104.43
-1976-08-13,104.22,104.79,103.61,104.25,13930000,104.25
-1976-08-12,104.06,104.64,103.38,104.22,15560000,104.22
-1976-08-11,104.41,105.24,103.73,104.06,18710000,104.06
-1976-08-10,103.49,104.71,103.21,104.41,16690000,104.41
-1976-08-09,103.79,104.02,103.01,103.49,11700000,103.49
-1976-08-06,103.85,104.25,103.10,103.79,13930000,103.79
-1976-08-05,104.43,104.76,103.48,103.85,15530000,103.85
-1976-08-04,104.14,105.18,103.72,104.43,20650000,104.43
-1976-08-03,103.19,104.49,102.79,104.14,18500000,104.14
-1976-08-02,103.44,103.98,102.64,103.19,13870000,103.19
-1976-07-30,102.93,103.88,102.47,103.44,14830000,103.44
-1976-07-29,103.05,103.59,102.36,102.93,13330000,102.93
-1976-07-28,103.48,103.58,102.31,103.05,16000000,103.05
-1976-07-27,104.07,104.51,103.13,103.48,15580000,103.48
-1976-07-26,104.06,104.69,103.46,104.07,13530000,104.07
-1976-07-23,103.93,104.71,103.49,104.06,15870000,104.06
-1976-07-22,103.82,104.42,103.15,103.93,15600000,103.93
-1976-07-21,103.72,104.56,103.21,103.82,18350000,103.82
-1976-07-20,104.29,104.57,103.05,103.72,18810000,103.72
-1976-07-19,104.68,105.32,103.84,104.29,18200000,104.29
-1976-07-16,105.20,105.27,103.87,104.68,20450000,104.68
-1976-07-15,105.95,106.25,104.76,105.20,20400000,105.20
-1976-07-14,105.67,106.61,105.05,105.95,23840000,105.95
-1976-07-13,105.90,106.78,105.15,105.67,27550000,105.67
-1976-07-12,104.98,106.30,104.74,105.90,23750000,105.90
-1976-07-09,103.98,105.41,103.80,104.98,23500000,104.98
-1976-07-08,103.83,104.75,103.44,103.98,21710000,103.98
-1976-07-07,103.54,104.23,102.80,103.83,18470000,103.83
-1976-07-06,104.11,104.67,103.19,103.54,16130000,103.54
-1976-07-02,103.59,104.53,103.13,104.11,16730000,104.11
-1976-07-01,104.28,104.98,103.14,103.59,21130000,103.59
-1976-06-30,103.86,105.07,103.52,104.28,23830000,104.28
-1976-06-29,103.43,104.33,102.95,103.86,19620000,103.86
-1976-06-28,103.72,104.35,102.97,103.43,17490000,103.43
-1976-06-25,103.79,104.54,103.17,103.72,17830000,103.72
-1976-06-24,103.25,104.37,102.90,103.79,19850000,103.79
-1976-06-23,103.47,103.90,102.40,103.25,17530000,103.25
-1976-06-22,104.28,104.82,103.16,103.47,21150000,103.47
-1976-06-21,103.76,104.73,103.18,104.28,18930000,104.28
-1976-06-18,103.61,104.80,103.06,103.76,25720000,103.76
-1976-06-17,102.01,104.12,101.97,103.61,27810000,103.61
-1976-06-16,101.46,102.65,100.96,102.01,21620000,102.01
-1976-06-15,101.95,102.39,100.84,101.46,18440000,101.46
-1976-06-14,101.00,102.51,101.00,101.95,21250000,101.95
-1976-06-11,99.56,101.22,99.38,100.92,19470000,100.92
-1976-06-10,98.74,99.98,98.55,99.56,16100000,99.56
-1976-06-09,98.80,99.49,98.23,98.74,14560000,98.74
-1976-06-08,98.63,99.71,98.32,98.80,16660000,98.80
-1976-06-07,99.15,99.39,97.97,98.63,14510000,98.63
-1976-06-04,100.13,100.27,98.79,99.15,15960000,99.15
-1976-06-03,100.22,101.10,99.68,100.13,18900000,100.13
-1976-06-02,99.85,100.69,99.26,100.22,16120000,100.22
-1976-06-01,100.18,100.74,99.36,99.85,13880000,99.85
-1976-05-28,99.38,100.64,99.00,100.18,16860000,100.18
-1976-05-27,99.34,99.77,98.26,99.38,15310000,99.38
-1976-05-26,99.49,100.14,98.65,99.34,16750000,99.34
-1976-05-25,99.44,100.02,98.48,99.49,18770000,99.49
-1976-05-24,101.07,101.07,99.11,99.44,16560000,99.44
-1976-05-21,102.00,102.34,100.81,101.26,18730000,101.26
-1976-05-20,101.18,102.53,100.69,102.00,22560000,102.00
-1976-05-19,101.26,102.01,100.55,101.18,18450000,101.18
-1976-05-18,101.09,102.00,100.72,101.26,17410000,101.26
-1976-05-17,101.34,101.71,100.41,101.09,14720000,101.09
-1976-05-14,102.16,102.23,100.82,101.34,16800000,101.34
-1976-05-13,102.77,103.03,101.73,102.16,16730000,102.16
-1976-05-12,102.95,103.55,102.14,102.77,18510000,102.77
-1976-05-11,103.10,103.99,102.39,102.95,23590000,102.95
-1976-05-10,101.88,103.51,101.76,103.10,22760000,103.10
-1976-05-07,101.16,102.27,100.77,101.88,17810000,101.88
-1976-05-06,100.88,101.70,100.31,101.16,16200000,101.16
-1976-05-05,101.46,101.92,100.45,100.88,14970000,100.88
-1976-05-04,100.92,101.93,100.29,101.46,17240000,101.46
-1976-05-03,101.64,101.73,100.14,100.92,15180000,100.92
-1976-04-30,102.13,102.65,101.16,101.64,14530000,101.64
-1976-04-29,102.13,102.97,101.45,102.13,17740000,102.13
-1976-04-28,101.86,102.46,100.91,102.13,15790000,102.13
-1976-04-27,102.43,103.18,101.51,101.86,17760000,101.86
-1976-04-26,102.29,102.80,101.36,102.43,15520000,102.43
-1976-04-23,102.98,103.21,101.70,102.29,17000000,102.29
-1976-04-22,103.32,104.04,102.52,102.98,20220000,102.98
-1976-04-21,102.87,104.03,102.30,103.32,26600000,103.32
-1976-04-20,101.44,103.32,101.42,102.87,23500000,102.87
-1976-04-19,100.67,101.83,100.32,101.44,16500000,101.44
-1976-04-15,100.31,101.18,99.73,100.67,15100000,100.67
-1976-04-14,101.05,101.77,99.98,100.31,18440000,100.31
-1976-04-13,100.20,101.39,99.64,101.05,15990000,101.05
-1976-04-12,100.35,101.30,99.57,100.20,16030000,100.20
-1976-04-09,101.28,101.74,99.87,100.35,19050000,100.35
-1976-04-08,102.21,102.38,100.53,101.28,20860000,101.28
-1976-04-07,103.36,103.85,101.92,102.21,20190000,102.21
-1976-04-06,103.51,104.63,102.93,103.36,24170000,103.36
-1976-04-05,102.32,104.13,102.32,103.51,21940000,103.51
-1976-04-02,102.24,102.76,101.23,102.25,17420000,102.25
-1976-04-01,102.77,103.24,101.50,102.24,17910000,102.24
-1976-03-31,102.01,103.08,101.60,102.77,17520000,102.77
-1976-03-30,102.41,103.36,101.25,102.01,17930000,102.01
-1976-03-29,102.85,103.36,101.99,102.41,16100000,102.41
-1976-03-26,102.85,103.65,102.20,102.85,18510000,102.85
-1976-03-25,103.42,104.00,102.19,102.85,22510000,102.85
-1976-03-24,102.51,104.39,102.51,103.42,32610000,103.42
-1976-03-23,100.71,102.54,100.32,102.24,22450000,102.24
-1976-03-22,100.58,101.53,100.14,100.71,19410000,100.71
-1976-03-19,100.45,101.23,99.70,100.58,18090000,100.58
-1976-03-18,100.86,101.37,99.73,100.45,20330000,100.45
-1976-03-17,100.92,102.01,100.28,100.86,26190000,100.86
-1976-03-16,99.80,101.25,99.38,100.92,22780000,100.92
-1976-03-15,100.86,100.90,99.24,99.80,19570000,99.80
-1976-03-12,101.89,102.46,100.49,100.86,26020000,100.86
-1976-03-11,100.94,102.41,100.62,101.89,27300000,101.89
-1976-03-10,100.58,101.80,99.98,100.94,24900000,100.94
-1976-03-09,100.19,101.90,99.95,100.58,31770000,100.58
-1976-03-08,99.11,100.71,98.93,100.19,25060000,100.19
-1976-03-05,98.92,99.88,98.23,99.11,23030000,99.11
-1976-03-04,99.98,100.40,98.49,98.92,24410000,98.92
-1976-03-03,100.58,100.97,99.23,99.98,25450000,99.98
-1976-03-02,100.02,101.26,99.61,100.58,25590000,100.58
-1976-03-01,99.71,100.64,98.67,100.02,22070000,100.02
-1976-02-27,100.11,100.53,98.60,99.71,26940000,99.71
-1976-02-26,101.69,102.36,99.74,100.11,34320000,100.11
-1976-02-25,102.03,102.71,100.69,101.69,34680000,101.69
-1976-02-24,101.61,102.92,101.03,102.03,34380000,102.03
-1976-02-23,102.10,102.54,100.69,101.61,31460000,101.61
-1976-02-20,101.41,103.07,101.18,102.10,44510000,102.10
-1976-02-19,99.94,101.92,99.94,101.41,39210000,101.41
-1976-02-18,99.05,100.43,98.50,99.85,29900000,99.85
-1976-02-17,99.67,100.25,98.56,99.05,25460000,99.05
-1976-02-13,100.25,100.66,99.01,99.67,23870000,99.67
-1976-02-12,100.77,101.55,99.82,100.25,28610000,100.25
-1976-02-11,100.47,101.80,100.10,100.77,32300000,100.77
-1976-02-10,99.62,100.96,99.11,100.47,27660000,100.47
-1976-02-09,99.46,100.66,98.77,99.62,25340000,99.62
-1976-02-06,100.39,100.53,98.64,99.46,27360000,99.46
-1976-02-05,101.91,102.30,100.06,100.39,33780000,100.39
-1976-02-04,101.18,102.57,100.70,101.91,38270000,101.91
-1976-02-03,100.87,101.97,99.58,101.18,34080000,101.18
-1976-02-02,100.86,101.39,99.74,100.87,24000000,100.87
-1976-01-30,100.11,101.99,99.94,100.86,38510000,100.86
-1976-01-29,98.53,100.54,98.32,100.11,29800000,100.11
-1976-01-28,99.07,99.64,97.66,98.53,27370000,98.53
-1976-01-27,99.68,100.52,98.28,99.07,32070000,99.07
-1976-01-26,99.21,100.75,98.92,99.68,34470000,99.68
-1976-01-23,98.04,99.88,97.68,99.21,33640000,99.21
-1976-01-22,98.24,98.79,97.07,98.04,27420000,98.04
-1976-01-21,98.86,99.24,97.12,98.24,34470000,98.24
-1976-01-20,98.32,99.44,97.43,98.86,36690000,98.86
-1976-01-19,97.00,98.84,96.36,98.32,29450000,98.32
-1976-01-16,96.61,97.73,95.84,97.00,25940000,97.00
-1976-01-15,97.13,98.34,96.15,96.61,38450000,96.61
-1976-01-14,95.57,97.47,94.91,97.13,30340000,97.13
-1976-01-13,96.33,97.39,95.11,95.57,34530000,95.57
-1976-01-12,94.95,96.76,94.38,96.33,30440000,96.33
-1976-01-09,94.58,95.71,94.05,94.95,26510000,94.95
-1976-01-08,93.95,95.47,93.41,94.58,29030000,94.58
-1976-01-07,93.53,95.15,92.91,93.95,33170000,93.95
-1976-01-06,92.58,94.18,92.37,93.53,31270000,93.53
-1976-01-05,90.90,92.84,90.85,92.58,21960000,92.58
-1976-01-02,90.19,91.18,89.81,90.90,10300000,90.90
-1975-12-31,89.77,90.75,89.17,90.19,16970000,90.19
-1975-12-30,90.13,90.55,89.20,89.77,16040000,89.77
-1975-12-29,90.25,91.09,89.63,90.13,17070000,90.13
-1975-12-26,89.46,90.45,89.25,90.25,10020000,90.25
-1975-12-24,88.73,89.84,88.73,89.46,11150000,89.46
-1975-12-23,88.14,89.23,87.64,88.73,17750000,88.73
-1975-12-22,88.80,89.13,87.74,88.14,15340000,88.14
-1975-12-19,89.43,89.81,88.39,88.80,17720000,88.80
-1975-12-18,89.15,90.09,88.62,89.43,18040000,89.43
-1975-12-17,88.93,89.80,88.46,89.15,16560000,89.15
-1975-12-16,88.09,89.49,87.78,88.93,18350000,88.93
-1975-12-15,87.83,88.64,87.32,88.09,13960000,88.09
-1975-12-12,87.80,88.22,87.05,87.83,13100000,87.83
-1975-12-11,88.08,88.79,87.41,87.80,15300000,87.80
-1975-12-10,87.30,88.39,86.91,88.08,15680000,88.08
-1975-12-09,87.07,87.80,86.16,87.30,16040000,87.30
-1975-12-08,86.82,87.75,86.15,87.07,14150000,87.07
-1975-12-05,87.84,88.38,86.54,86.82,14050000,86.82
-1975-12-04,87.60,88.39,86.68,87.84,16380000,87.84
-1975-12-03,88.83,88.83,87.08,87.60,21320000,87.60
-1975-12-02,90.67,90.81,89.08,89.33,17930000,89.33
-1975-12-01,91.24,91.90,90.33,90.67,16050000,90.67
-1975-11-28,90.94,91.74,90.44,91.24,12870000,91.24
-1975-11-26,90.71,91.58,90.17,90.94,18780000,90.94
-1975-11-25,89.70,91.10,89.66,90.71,17490000,90.71
-1975-11-24,89.53,90.17,88.65,89.70,13930000,89.70
-1975-11-21,89.64,90.23,88.79,89.53,14110000,89.53
-1975-11-20,89.98,90.68,89.09,89.64,16460000,89.64
-1975-11-19,91.00,91.28,89.47,89.98,16820000,89.98
-1975-11-18,91.46,92.30,90.60,91.00,20760000,91.00
-1975-11-17,90.97,91.99,90.50,91.46,17660000,91.46
-1975-11-14,91.04,91.59,90.19,90.97,16460000,90.97
-1975-11-13,91.19,92.33,90.56,91.04,25070000,91.04
-1975-11-12,89.87,91.63,89.80,91.19,23960000,91.19
-1975-11-11,89.34,90.47,89.04,89.87,14640000,89.87
-1975-11-10,89.33,89.98,88.35,89.34,14910000,89.34
-1975-11-07,89.55,90.18,88.67,89.33,15930000,89.33
-1975-11-06,89.15,90.15,88.16,89.55,18600000,89.55
-1975-11-05,88.51,90.08,88.32,89.15,17390000,89.15
-1975-11-04,88.09,89.03,87.63,88.51,11570000,88.51
-1975-11-03,89.04,89.21,87.78,88.09,11400000,88.09
-1975-10-31,89.31,89.80,88.35,89.04,12910000,89.04
-1975-10-30,89.39,90.20,88.70,89.31,15080000,89.31
-1975-10-29,90.51,90.61,88.89,89.39,16110000,89.39
-1975-10-28,89.73,91.01,89.40,90.51,17060000,90.51
-1975-10-27,89.83,90.40,88.85,89.73,13100000,89.73
-1975-10-24,91.24,91.52,89.46,89.83,18120000,89.83
-1975-10-23,90.71,91.75,90.09,91.24,17900000,91.24
-1975-10-22,90.56,91.38,89.77,90.71,16060000,90.71
-1975-10-21,89.82,91.43,89.79,90.56,20800000,90.56
-1975-10-20,88.86,90.14,88.43,89.82,13250000,89.82
-1975-10-17,89.37,89.87,88.08,88.86,15650000,88.86
-1975-10-16,89.23,90.73,88.90,89.37,18910000,89.37
-1975-10-15,89.28,90.07,88.50,89.23,14440000,89.23
-1975-10-14,89.46,90.80,88.81,89.28,19960000,89.28
-1975-10-13,88.21,89.67,87.73,89.46,12020000,89.46
-1975-10-10,88.37,89.17,87.44,88.21,14880000,88.21
-1975-10-09,87.94,89.42,87.60,88.37,17770000,88.37
-1975-10-08,86.77,88.46,86.34,87.94,17800000,87.94
-1975-10-07,86.88,87.32,85.56,86.77,13530000,86.77
-1975-10-06,85.98,87.64,85.98,86.88,15470000,86.88
-1975-10-03,83.88,86.21,83.88,85.95,16360000,85.95
-1975-10-02,82.93,84.33,82.82,83.82,14290000,83.82
-1975-10-01,83.87,85.45,82.57,82.93,14070000,82.93
-1975-09-30,85.01,85.01,83.44,83.87,12520000,83.87
-1975-09-29,86.19,86.38,84.74,85.03,10580000,85.03
-1975-09-26,85.64,86.86,85.13,86.19,12570000,86.19
-1975-09-25,85.74,86.41,84.79,85.64,12890000,85.64
-1975-09-24,85.03,86.70,85.03,85.74,16060000,85.74
-1975-09-23,85.07,85.51,83.80,84.94,12800000,84.94
-1975-09-22,85.88,86.70,84.70,85.07,14750000,85.07
-1975-09-19,84.26,86.39,84.26,85.88,20830000,85.88
-1975-09-18,82.37,84.34,82.23,84.06,14560000,84.06
-1975-09-17,82.09,82.93,81.57,82.37,12190000,82.37
-1975-09-16,82.88,83.43,81.79,82.09,13090000,82.09
-1975-09-15,83.30,83.49,82.29,82.88,8670000,82.88
-1975-09-12,83.45,84.47,82.84,83.30,12230000,83.30
-1975-09-11,83.79,84.30,82.88,83.45,11100000,83.45
-1975-09-10,84.59,84.59,83.00,83.79,14780000,83.79
-1975-09-09,85.89,86.73,84.37,84.60,15790000,84.60
-1975-09-08,85.62,86.31,84.89,85.89,11500000,85.89
-1975-09-05,86.20,86.49,85.19,85.62,11680000,85.62
-1975-09-04,86.03,86.91,85.29,86.20,12810000,86.20
-1975-09-03,85.48,86.38,84.62,86.03,12260000,86.03
-1975-09-02,86.88,87.42,85.21,85.48,11460000,85.48
-1975-08-29,86.40,87.73,86.10,86.88,15480000,86.88
-1975-08-28,84.68,86.64,84.68,86.40,14530000,86.40
-1975-08-27,83.96,84.79,83.35,84.43,11100000,84.43
-1975-08-26,85.06,85.40,83.65,83.96,11350000,83.96
-1975-08-25,84.28,85.58,84.06,85.06,11250000,85.06
-1975-08-22,83.07,84.61,82.79,84.28,13050000,84.28
-1975-08-21,83.22,84.15,82.21,83.07,16610000,83.07
-1975-08-20,84.78,84.78,82.76,83.22,18630000,83.22
-1975-08-19,86.20,86.47,84.66,84.95,14990000,84.95
-1975-08-18,86.36,87.21,85.76,86.20,10810000,86.20
-1975-08-15,85.60,86.76,85.33,86.36,10610000,86.36
-1975-08-14,85.97,86.34,85.02,85.60,12460000,85.60
-1975-08-13,87.12,87.41,85.61,85.97,12000000,85.97
-1975-08-12,86.55,88.17,86.49,87.12,14510000,87.12
-1975-08-11,86.02,86.89,85.34,86.55,12350000,86.55
-1975-08-08,86.30,87.00,85.52,86.02,11660000,86.02
-1975-08-07,86.25,87.24,85.69,86.30,12390000,86.30
-1975-08-06,86.23,87.04,85.34,86.25,16280000,86.25
-1975-08-05,87.15,87.81,85.89,86.23,15470000,86.23
-1975-08-04,87.99,88.17,86.68,87.15,12620000,87.15
-1975-08-01,88.75,89.04,87.46,87.99,13320000,87.99
-1975-07-31,88.83,90.07,88.31,88.75,14540000,88.75
-1975-07-30,88.19,89.49,87.68,88.83,16150000,88.83
-1975-07-29,88.69,89.91,87.71,88.19,19000000,88.19
-1975-07-28,89.29,89.68,88.02,88.69,14850000,88.69
-1975-07-25,90.07,90.72,88.72,89.29,15110000,89.29
-1975-07-24,90.18,90.95,88.90,90.07,20550000,90.07
-1975-07-23,91.45,92.15,89.83,90.18,20150000,90.18
-1975-07-22,92.44,92.49,90.63,91.45,20660000,91.45
-1975-07-21,93.20,93.93,92.03,92.44,16690000,92.44
-1975-07-18,93.63,93.96,92.39,93.20,16870000,93.20
-1975-07-17,94.61,95.03,92.99,93.63,21420000,93.63
-1975-07-16,95.61,96.37,94.20,94.61,25250000,94.61
-1975-07-15,95.19,96.58,94.71,95.61,28340000,95.61
-1975-07-14,94.66,95.76,94.04,95.19,21900000,95.19
-1975-07-11,94.81,95.69,93.83,94.66,22210000,94.66
-1975-07-10,94.80,96.19,94.25,94.81,28880000,94.81
-1975-07-09,93.39,95.22,93.38,94.80,26350000,94.80
-1975-07-08,93.54,94.03,92.51,93.39,18990000,93.39
-1975-07-07,94.36,94.82,93.16,93.54,15850000,93.54
-1975-07-03,94.18,95.04,93.49,94.36,19000000,94.36
-1975-07-02,94.85,94.91,93.37,94.18,18530000,94.18
-1975-07-01,95.19,95.73,94.13,94.85,20390000,94.85
-1975-06-30,94.81,95.85,94.30,95.19,19430000,95.19
-1975-06-27,94.81,95.66,94.10,94.81,18820000,94.81
-1975-06-26,94.62,95.72,93.88,94.81,24560000,94.81
-1975-06-25,94.19,95.29,93.53,94.62,21610000,94.62
-1975-06-24,93.62,95.23,93.31,94.19,26620000,94.19
-1975-06-23,92.61,93.98,91.81,93.62,20720000,93.62
-1975-06-20,92.02,93.75,91.83,92.61,26260000,92.61
-1975-06-19,90.39,92.37,90.12,92.02,21450000,92.02
-1975-06-18,90.58,91.07,89.60,90.39,15590000,90.39
-1975-06-17,91.46,92.22,90.17,90.58,19440000,90.58
-1975-06-16,90.52,91.85,90.12,91.46,16660000,91.46
-1975-06-13,90.08,91.06,89.30,90.52,16300000,90.52
-1975-06-12,90.55,91.36,89.64,90.08,15970000,90.08
-1975-06-11,90.44,91.67,90.00,90.55,18230000,90.55
-1975-06-10,91.21,91.21,89.46,90.44,21130000,90.44
-1975-06-09,92.48,92.87,90.91,91.21,20670000,91.21
-1975-06-06,92.69,93.60,91.75,92.48,22230000,92.48
-1975-06-05,92.60,93.16,91.41,92.69,21610000,92.69
-1975-06-04,92.89,93.61,91.82,92.60,24900000,92.60
-1975-06-03,92.58,93.76,91.88,92.89,26560000,92.89
-1975-06-02,91.32,93.41,91.32,92.58,28240000,92.58
-1975-05-30,89.87,91.62,89.87,91.15,22670000,91.15
-1975-05-29,89.71,90.59,88.83,89.68,18570000,89.68
-1975-05-28,90.34,91.14,89.07,89.71,21850000,89.71
-1975-05-27,90.58,91.29,89.60,90.34,17050000,90.34
-1975-05-23,89.39,91.02,89.30,90.58,17870000,90.58
-1975-05-22,89.06,90.30,88.35,89.39,17610000,89.39
-1975-05-21,90.07,90.25,88.47,89.06,17640000,89.06
-1975-05-20,90.53,91.45,89.58,90.07,18310000,90.07
-1975-05-19,90.43,91.07,88.98,90.53,17870000,90.53
-1975-05-16,91.41,91.59,89.74,90.43,16630000,90.43
-1975-05-15,92.27,93.51,90.94,91.41,27690000,91.41
-1975-05-14,91.58,93.23,91.17,92.27,29050000,92.27
-1975-05-13,90.61,92.26,89.99,91.58,24950000,91.58
-1975-05-12,90.53,91.67,89.91,90.61,22410000,90.61
-1975-05-09,89.56,91.24,89.33,90.53,28440000,90.53
-1975-05-08,89.08,90.13,88.23,89.56,22980000,89.56
-1975-05-07,88.64,89.75,87.60,89.08,22250000,89.08
-1975-05-06,90.08,90.86,88.15,88.64,25410000,88.64
-1975-05-05,89.22,90.82,88.26,90.08,22370000,90.08
-1975-05-02,88.10,89.98,87.91,89.22,25210000,89.22
-1975-05-01,87.30,89.10,86.94,88.10,20660000,88.10
-1975-04-30,85.64,87.61,85.00,87.30,18060000,87.30
-1975-04-29,86.23,86.79,85.04,85.64,17740000,85.64
-1975-04-28,86.62,87.33,85.54,86.23,17850000,86.23
-1975-04-25,86.04,87.50,85.62,86.62,20260000,86.62
-1975-04-24,86.12,86.92,85.00,86.04,19050000,86.04
-1975-04-23,87.09,87.42,85.65,86.12,20040000,86.12
-1975-04-22,87.23,88.64,86.58,87.09,26120000,87.09
-1975-04-21,86.30,87.99,85.92,87.23,23960000,87.23
-1975-04-18,87.25,87.59,85.53,86.30,26610000,86.30
-1975-04-17,86.60,88.79,86.43,87.25,32650000,87.25
-1975-04-16,86.30,87.10,84.93,86.60,22970000,86.60
-1975-04-15,85.60,87.24,85.03,86.30,29620000,86.30
-1975-04-14,84.18,86.12,83.98,85.60,26800000,85.60
-1975-04-11,83.77,84.68,82.93,84.18,20160000,84.18
-1975-04-10,82.84,84.70,82.68,83.77,24990000,83.77
-1975-04-09,80.99,83.22,80.91,82.84,18120000,82.84
-1975-04-08,80.35,81.65,80.13,80.99,14320000,80.99
-1975-04-07,80.88,81.11,79.66,80.35,13860000,80.35
-1975-04-04,81.51,81.90,80.29,80.88,14170000,80.88
-1975-04-03,82.43,82.84,80.88,81.51,13920000,81.51
-1975-04-02,82.64,83.57,81.80,82.43,15600000,82.43
-1975-04-01,83.36,83.59,81.98,82.64,14480000,82.64
-1975-03-31,83.85,84.62,82.84,83.36,16270000,83.36
-1975-03-27,83.59,84.88,83.04,83.85,18300000,83.85
-1975-03-26,82.16,84.24,82.16,83.59,18580000,83.59
-1975-03-25,81.42,82.67,80.08,82.06,18500000,82.06
-1975-03-24,82.39,82.39,80.60,81.42,17810000,81.42
-1975-03-21,83.61,84.11,82.52,83.39,15940000,83.39
-1975-03-20,84.34,85.30,83.02,83.61,20960000,83.61
-1975-03-19,85.13,85.17,83.43,84.34,19030000,84.34
-1975-03-18,86.01,87.08,84.75,85.13,29180000,85.13
-1975-03-17,84.76,86.52,84.39,86.01,26780000,86.01
-1975-03-14,83.74,85.43,83.50,84.76,24840000,84.76
-1975-03-13,83.59,84.26,82.52,83.74,18620000,83.74
-1975-03-12,84.36,84.73,82.87,83.59,21560000,83.59
-1975-03-11,84.95,85.89,83.80,84.36,31280000,84.36
-1975-03-10,84.30,85.47,83.43,84.95,25890000,84.95
-1975-03-07,83.69,85.14,83.25,84.30,25930000,84.30
-1975-03-06,83.90,84.17,81.94,83.69,21780000,83.69
-1975-03-05,83.56,84.71,82.16,83.90,24120000,83.90
-1975-03-04,83.03,85.43,82.85,83.56,34140000,83.56
-1975-03-03,81.59,83.46,81.32,83.03,24100000,83.03
-1975-02-28,80.77,82.02,80.07,81.59,17560000,81.59
-1975-02-27,80.37,81.64,80.06,80.77,16430000,80.77
-1975-02-26,79.53,80.89,78.91,80.37,18790000,80.37
-1975-02-25,81.09,81.09,79.05,79.53,20910000,79.53
-1975-02-24,82.62,82.71,80.87,81.44,19150000,81.44
-1975-02-21,82.21,83.56,81.72,82.62,24440000,82.62
-1975-02-20,81.44,82.78,80.82,82.21,22260000,82.21
-1975-02-19,80.93,81.94,79.83,81.44,21930000,81.44
-1975-02-18,81.50,82.45,80.16,80.93,23990000,80.93
-1975-02-14,81.01,82.33,80.13,81.50,23290000,81.50
-1975-02-13,79.98,82.53,79.98,81.01,35160000,81.01
-1975-02-12,78.58,80.21,77.94,79.92,19790000,79.92
-1975-02-11,78.36,79.07,77.38,78.58,16470000,78.58
-1975-02-10,78.63,79.40,77.77,78.36,16120000,78.36
-1975-02-07,78.56,79.12,77.00,78.63,19060000,78.63
-1975-02-06,78.95,80.72,78.09,78.56,32020000,78.56
-1975-02-05,77.61,79.40,76.81,78.95,25830000,78.95
-1975-02-04,77.82,78.37,76.00,77.61,25040000,77.61
-1975-02-03,76.98,78.55,76.36,77.82,25400000,77.82
-1975-01-31,76.21,77.72,75.41,76.98,24640000,76.98
-1975-01-30,77.26,78.69,75.82,76.21,29740000,76.21
-1975-01-29,76.03,78.03,75.23,77.26,27410000,77.26
-1975-01-28,75.37,77.59,75.36,76.03,31760000,76.03
-1975-01-27,73.76,76.03,73.76,75.37,32130000,75.37
-1975-01-24,72.07,73.57,71.55,72.98,20670000,72.98
-1975-01-23,71.74,73.11,71.09,72.07,17960000,72.07
-1975-01-22,70.70,71.97,69.86,71.74,15330000,71.74
-1975-01-21,71.08,72.04,70.25,70.70,14780000,70.70
-1975-01-20,70.96,71.46,69.80,71.08,13450000,71.08
-1975-01-17,72.05,72.36,70.56,70.96,14260000,70.96
-1975-01-16,72.14,72.93,71.26,72.05,17110000,72.05
-1975-01-15,71.68,72.77,70.45,72.14,16580000,72.14
-1975-01-14,72.31,72.70,71.02,71.68,16610000,71.68
-1975-01-13,72.61,73.81,71.83,72.31,19780000,72.31
-1975-01-10,71.60,73.75,71.60,72.61,25890000,72.61
-1975-01-09,70.04,71.42,69.04,71.17,16340000,71.17
-1975-01-08,71.02,71.53,69.65,70.04,15600000,70.04
-1975-01-07,71.07,71.75,69.92,71.02,14890000,71.02
-1975-01-06,70.71,72.24,70.33,71.07,17550000,71.07
-1975-01-03,70.23,71.64,69.29,70.71,15270000,70.71
-1975-01-02,68.65,70.92,68.65,70.23,14800000,70.23
-1974-12-31,67.16,69.04,67.15,68.56,20970000,68.56
-1974-12-30,67.14,67.65,66.23,67.16,18520000,67.16
-1974-12-27,67.44,67.99,66.49,67.14,13060000,67.14
-1974-12-26,66.88,68.19,66.62,67.44,11810000,67.44
-1974-12-24,65.96,67.25,65.86,66.88,9540000,66.88
-1974-12-23,66.91,67.18,65.34,65.96,18040000,65.96
-1974-12-20,67.65,67.93,66.36,66.91,15840000,66.91
-1974-12-19,67.90,68.62,66.93,67.65,15900000,67.65
-1974-12-18,67.58,69.01,67.30,67.90,18050000,67.90
-1974-12-17,66.46,67.92,65.86,67.58,16880000,67.58
-1974-12-16,67.07,67.74,66.02,66.46,15370000,66.46
-1974-12-13,67.45,68.15,66.32,67.07,14000000,67.07
-1974-12-12,67.67,68.61,66.56,67.45,15390000,67.45
-1974-12-11,67.28,69.03,66.83,67.67,15700000,67.67
-1974-12-10,65.88,68.17,65.88,67.28,15690000,67.28
-1974-12-09,65.01,66.29,64.13,65.60,14660000,65.60
-1974-12-06,66.13,66.20,64.40,65.01,15500000,65.01
-1974-12-05,67.41,68.00,65.90,66.13,12890000,66.13
-1974-12-04,67.17,68.32,66.61,67.41,12580000,67.41
-1974-12-03,68.11,68.13,66.62,67.17,13620000,67.17
-1974-12-02,69.80,69.80,67.81,68.11,11140000,68.11
-1974-11-29,69.94,70.49,69.18,69.97,7400000,69.97
-1974-11-27,69.47,71.31,69.17,69.94,14810000,69.94
-1974-11-26,68.83,70.36,68.19,69.47,13600000,69.47
-1974-11-25,68.90,69.68,67.79,68.83,11300000,68.83
-1974-11-22,68.24,70.00,68.24,68.90,13020000,68.90
-1974-11-21,67.90,68.94,66.85,68.18,13820000,68.18
-1974-11-20,68.20,69.25,67.36,67.90,12430000,67.90
-1974-11-19,69.27,69.71,67.66,68.20,15720000,68.20
-1974-11-18,71.10,71.10,68.95,69.27,15230000,69.27
-1974-11-15,73.06,73.27,71.41,71.91,12480000,71.91
-1974-11-14,73.35,74.54,72.53,73.06,13540000,73.06
-1974-11-13,73.67,74.25,72.32,73.35,16040000,73.35
-1974-11-12,75.15,75.59,73.34,73.67,15040000,73.67
-1974-11-11,74.91,75.70,74.04,75.15,13220000,75.15
-1974-11-08,75.21,76.00,74.01,74.91,15890000,74.91
-1974-11-07,74.75,76.30,73.85,75.21,17150000,75.21
-1974-11-06,75.11,77.41,74.23,74.75,23930000,74.75
-1974-11-05,73.08,75.36,72.49,75.11,15960000,75.11
-1974-11-04,73.80,73.80,71.93,73.08,12740000,73.08
-1974-11-01,73.90,74.85,72.68,73.88,13470000,73.88
-1974-10-31,74.31,75.90,73.15,73.90,18840000,73.90
-1974-10-30,72.83,75.45,72.40,74.31,20130000,74.31
-1974-10-29,70.49,73.19,70.49,72.83,15610000,72.83
-1974-10-28,70.12,70.67,68.89,70.09,10540000,70.09
-1974-10-25,70.22,71.59,69.46,70.12,12650000,70.12
-1974-10-24,70.98,70.98,68.80,70.22,14910000,70.22
-1974-10-23,72.81,72.81,70.40,71.03,14200000,71.03
-1974-10-22,73.50,75.09,72.55,73.13,18930000,73.13
-1974-10-21,72.28,73.92,71.24,73.50,14500000,73.50
-1974-10-18,71.20,73.34,71.20,72.28,16460000,72.28
-1974-10-17,70.33,72.00,69.41,71.17,14470000,71.17
-1974-10-16,71.44,71.98,69.54,70.33,14790000,70.33
-1974-10-15,72.74,73.35,70.61,71.44,17390000,71.44
-1974-10-14,71.17,74.43,71.17,72.74,19770000,72.74
-1974-10-11,69.79,71.99,68.80,71.14,20090000,71.14
-1974-10-10,68.30,71.48,68.30,69.79,26360000,69.79
-1974-10-09,64.84,68.15,63.74,67.82,18820000,67.82
-1974-10-08,64.95,66.07,63.95,64.84,15460000,64.84
-1974-10-07,62.78,65.40,62.78,64.95,15000000,64.95
-1974-10-04,62.28,63.23,60.96,62.34,15910000,62.34
-1974-10-03,63.38,63.48,61.66,62.28,13150000,62.28
-1974-10-02,63.39,64.62,62.74,63.38,12230000,63.38
-1974-10-01,63.54,64.37,61.75,63.39,16890000,63.39
-1974-09-30,64.85,64.85,62.52,63.54,15000000,63.54
-1974-09-27,66.46,67.09,64.58,64.94,12320000,64.94
-1974-09-26,67.40,67.40,65.79,66.46,9060000,66.46
-1974-09-25,68.02,69.77,66.86,67.57,17620000,67.57
-1974-09-24,69.03,69.03,67.42,68.02,9840000,68.02
-1974-09-23,70.14,71.02,68.79,69.42,12130000,69.42
-1974-09-20,70.09,71.12,68.62,70.14,16250000,70.14
-1974-09-19,68.36,70.76,68.36,70.09,17000000,70.09
-1974-09-18,67.38,68.14,65.92,67.72,11760000,67.72
-1974-09-17,66.45,68.84,66.45,67.38,13730000,67.38
-1974-09-16,65.20,66.92,64.15,66.26,18370000,66.26
-1974-09-13,66.71,66.91,64.74,65.20,16070000,65.20
-1974-09-12,68.54,68.54,66.22,66.71,16920000,66.71
-1974-09-11,69.24,70.00,68.22,68.55,11820000,68.55
-1974-09-10,69.72,70.47,68.55,69.24,11980000,69.24
-1974-09-09,71.35,71.35,69.38,69.72,11160000,69.72
-1974-09-06,70.87,72.42,70.08,71.42,15130000,71.42
-1974-09-05,68.69,71.30,68.65,70.87,14210000,70.87
-1974-09-04,69.85,69.85,67.64,68.69,16930000,68.69
-1974-09-03,72.15,73.01,70.28,70.52,12750000,70.52
-1974-08-30,70.22,72.68,70.22,72.15,16230000,72.15
-1974-08-29,70.76,71.22,69.37,69.99,13690000,69.99
-1974-08-28,70.94,72.17,70.13,70.76,16670000,70.76
-1974-08-27,72.16,72.50,70.50,70.94,12970000,70.94
-1974-08-26,71.55,73.17,70.42,72.16,14630000,72.16
-1974-08-23,72.80,73.71,70.75,71.55,13590000,71.55
-1974-08-22,73.51,74.05,71.61,72.80,15690000,72.80
-1974-08-21,74.95,75.50,73.16,73.51,11650000,73.51
-1974-08-20,74.57,76.11,73.82,74.95,13820000,74.95
-1974-08-19,75.65,75.65,73.78,74.57,11670000,74.57
-1974-08-16,76.30,77.02,75.29,75.67,10510000,75.67
-1974-08-15,76.73,77.52,75.19,76.30,11130000,76.30
-1974-08-14,76.73,76.73,76.73,76.73,11750000,76.73
-1974-08-13,79.75,79.95,77.83,78.49,10140000,78.49
-1974-08-12,80.86,81.26,79.30,79.75,7780000,79.75
-1974-08-09,81.57,81.88,80.11,80.86,10160000,80.86
-1974-08-08,82.65,83.53,80.86,81.57,16060000,81.57
-1974-08-07,80.52,82.93,80.13,82.65,13380000,82.65
-1974-08-06,79.78,82.65,79.78,80.52,15770000,80.52
-1974-08-05,78.59,80.31,78.03,79.29,11230000,79.29
-1974-08-02,78.75,79.39,77.84,78.59,10110000,78.59
-1974-08-01,79.31,80.02,77.97,78.75,11470000,78.75
-1974-07-31,80.50,80.82,78.96,79.31,10960000,79.31
-1974-07-30,80.94,81.52,79.58,80.50,11360000,80.50
-1974-07-29,82.02,82.02,80.22,80.94,11560000,80.94
-1974-07-26,83.98,84.17,82.00,82.40,10420000,82.40
-1974-07-25,84.99,85.67,83.13,83.98,13310000,83.98
-1974-07-24,84.65,85.64,83.61,84.99,12870000,84.99
-1974-07-23,83.81,85.63,83.67,84.65,12910000,84.65
-1974-07-22,83.54,84.44,82.59,83.81,9290000,83.81
-1974-07-19,83.78,84.67,82.87,83.54,11080000,83.54
-1974-07-18,83.70,85.39,83.13,83.78,13980000,83.78
-1974-07-17,82.81,84.13,81.70,83.70,11320000,83.70
-1974-07-16,83.78,83.85,82.14,82.81,9920000,82.81
-1974-07-15,83.15,84.89,82.65,83.78,13560000,83.78
-1974-07-12,80.97,83.65,80.97,83.15,17770000,83.15
-1974-07-11,79.99,81.08,79.08,79.89,14640000,79.89
-1974-07-10,81.48,82.22,79.74,79.99,13490000,79.99
-1974-07-09,81.09,82.50,80.35,81.48,15580000,81.48
-1974-07-08,83.13,83.13,80.48,81.09,15510000,81.09
-1974-07-05,84.25,84.45,83.17,83.66,7400000,83.66
-1974-07-03,84.30,85.15,83.46,84.25,13430000,84.25
-1974-07-02,86.02,86.26,83.98,84.30,13460000,84.30
-1974-07-01,86.00,86.89,85.32,86.02,10270000,86.02
-1974-06-28,86.31,86.78,85.13,86.00,12010000,86.00
-1974-06-27,87.61,87.61,85.88,86.31,12650000,86.31
-1974-06-26,88.98,89.12,87.30,87.61,11410000,87.61
-1974-06-25,87.69,89.48,87.67,88.98,11920000,88.98
-1974-06-24,87.46,88.38,86.70,87.69,9960000,87.69
-1974-06-21,88.21,88.31,86.77,87.46,11830000,87.46
-1974-06-20,88.84,89.35,87.80,88.21,11990000,88.21
-1974-06-19,89.45,89.80,88.39,88.84,10550000,88.84
-1974-06-18,90.04,90.53,88.92,89.45,10110000,89.45
-1974-06-17,91.30,91.34,89.63,90.04,9680000,90.04
-1974-06-14,92.23,92.23,90.73,91.30,10030000,91.30
-1974-06-13,92.06,93.33,91.48,92.34,11540000,92.34
-1974-06-12,92.28,92.61,90.89,92.06,11150000,92.06
-1974-06-11,93.10,93.57,91.76,92.28,12380000,92.28
-1974-06-10,92.55,93.64,91.53,93.10,13540000,93.10
-1974-06-07,91.96,93.76,91.74,92.55,19020000,92.55
-1974-06-06,90.31,92.31,89.71,91.96,13360000,91.96
-1974-06-05,90.14,91.42,89.04,90.31,13680000,90.31
-1974-06-04,89.10,91.13,89.09,90.14,16040000,90.14
-1974-06-03,87.28,89.40,86.78,89.10,12490000,89.10
-1974-05-31,87.43,88.02,86.19,87.28,10810000,87.28
-1974-05-30,86.89,88.09,85.87,87.43,13580000,87.43
-1974-05-29,88.37,88.84,86.52,86.89,12300000,86.89
-1974-05-28,88.58,89.37,87.69,88.37,10580000,88.37
-1974-05-24,87.29,89.27,87.20,88.58,13740000,88.58
-1974-05-23,87.09,87.98,86.12,87.29,14770000,87.29
-1974-05-22,87.91,88.79,86.72,87.09,15450000,87.09
-1974-05-21,87.86,88.98,87.19,87.91,12190000,87.91
-1974-05-20,88.21,89.09,87.19,87.86,10550000,87.86
-1974-05-17,89.53,89.53,87.67,88.21,13870000,88.21
-1974-05-16,90.45,91.31,89.36,89.72,12090000,89.72
-1974-05-15,90.69,91.22,89.65,90.45,11240000,90.45
-1974-05-14,90.66,91.68,90.05,90.69,10880000,90.69
-1974-05-13,91.47,91.72,89.91,90.66,11290000,90.66
-1974-05-10,92.96,93.57,91.03,91.47,15270000,91.47
-1974-05-09,91.64,93.49,91.27,92.96,14710000,92.96
-1974-05-08,91.46,92.34,90.71,91.64,11850000,91.64
-1974-05-07,91.12,92.36,90.69,91.46,10710000,91.46
-1974-05-06,91.29,91.60,90.13,91.12,9450000,91.12
-1974-05-03,92.09,92.27,90.59,91.29,11080000,91.29
-1974-05-02,92.22,93.59,91.46,92.09,13620000,92.09
-1974-05-01,90.31,93.03,89.82,92.22,15120000,92.22
-1974-04-30,90.00,91.09,89.38,90.31,10980000,90.31
-1974-04-29,90.18,90.78,89.02,90.00,10170000,90.00
-1974-04-26,89.57,91.10,89.06,90.18,13250000,90.18
-1974-04-25,90.30,90.53,88.62,89.57,15870000,89.57
-1974-04-24,91.81,91.82,89.91,90.30,16010000,90.30
-1974-04-23,93.38,93.51,91.53,91.81,14110000,91.81
-1974-04-22,93.75,94.12,92.71,93.38,10520000,93.38
-1974-04-19,94.77,94.77,93.20,93.75,10710000,93.75
-1974-04-18,94.36,95.42,93.75,94.78,12470000,94.78
-1974-04-17,93.66,95.04,93.12,94.36,14020000,94.36
-1974-04-16,92.05,94.06,92.05,93.66,14530000,93.66
-1974-04-15,92.12,92.94,91.49,92.05,10130000,92.05
-1974-04-11,92.40,92.92,91.55,92.12,9970000,92.12
-1974-04-10,92.61,93.52,91.89,92.40,11160000,92.40
-1974-04-09,92.03,93.28,91.61,92.61,11330000,92.61
-1974-04-08,93.00,93.00,91.50,92.03,10740000,92.03
-1974-04-05,94.24,94.24,92.55,93.01,11670000,93.01
-1974-04-04,94.33,95.14,93.55,94.33,11650000,94.33
-1974-04-03,93.35,94.70,92.94,94.33,11500000,94.33
-1974-04-02,93.25,94.15,92.59,93.35,12010000,93.35
-1974-04-01,93.98,94.68,92.82,93.25,11470000,93.25
-1974-03-29,94.82,95.12,93.44,93.98,12150000,93.98
-1974-03-28,96.20,96.20,94.36,94.82,14940000,94.82
-1974-03-27,97.95,98.26,96.32,96.59,11690000,96.59
-1974-03-26,97.64,98.66,97.11,97.95,11840000,97.95
-1974-03-25,97.27,98.02,95.69,97.64,10540000,97.64
-1974-03-22,97.34,98.04,96.35,97.27,11930000,97.27
-1974-03-21,97.57,98.59,96.82,97.34,12950000,97.34
-1974-03-20,97.23,98.22,96.67,97.57,12960000,97.57
-1974-03-19,98.05,98.20,96.63,97.23,12800000,97.23
-1974-03-18,99.28,99.71,97.62,98.05,14010000,98.05
-1974-03-15,99.65,99.99,98.22,99.28,14500000,99.28
-1974-03-14,99.74,101.05,98.80,99.65,19770000,99.65
-1974-03-13,99.15,100.73,98.72,99.74,16820000,99.74
-1974-03-12,98.88,100.02,97.97,99.15,17250000,99.15
-1974-03-11,97.78,99.40,96.38,98.88,18470000,98.88
-1974-03-08,96.94,98.28,95.77,97.78,16210000,97.78
-1974-03-07,97.98,98.20,96.37,96.94,14500000,96.94
-1974-03-06,97.32,98.57,96.54,97.98,19140000,97.98
-1974-03-05,95.98,98.17,95.98,97.32,21980000,97.32
-1974-03-04,95.53,95.95,94.19,95.53,12270000,95.53
-1974-03-01,96.22,96.40,94.81,95.53,12880000,95.53
-1974-02-28,96.40,96.98,95.20,96.22,13680000,96.22
-1974-02-27,96.00,97.43,95.49,96.40,18730000,96.40
-1974-02-26,95.03,96.38,94.20,96.00,15860000,96.00
-1974-02-25,95.39,95.96,94.24,95.03,12900000,95.03
-1974-02-22,94.71,96.19,94.08,95.39,16360000,95.39
-1974-02-21,93.44,95.19,93.20,94.71,13930000,94.71
-1974-02-20,92.12,93.92,91.34,93.44,11670000,93.44
-1974-02-19,92.27,94.44,91.68,92.12,15940000,92.12
-1974-02-15,90.95,92.98,90.62,92.27,12640000,92.27
-1974-02-14,90.98,91.89,90.17,90.95,12230000,90.95
-1974-02-13,90.94,92.13,90.37,90.98,10990000,90.98
-1974-02-12,90.66,91.60,89.53,90.94,12920000,90.94
-1974-02-11,92.33,92.54,90.26,90.66,12930000,90.66
-1974-02-08,93.30,93.79,91.87,92.33,12990000,92.33
-1974-02-07,93.26,94.09,92.43,93.30,11750000,93.30
-1974-02-06,93.00,94.09,92.37,93.26,11610000,93.26
-1974-02-05,93.29,94.17,92.26,93.00,12820000,93.00
-1974-02-04,94.89,94.89,92.74,93.29,14380000,93.29
-1974-02-01,96.57,96.63,94.66,95.32,12480000,95.32
-1974-01-31,97.06,98.06,96.11,96.57,14020000,96.57
-1974-01-30,96.02,97.90,96.02,97.06,16790000,97.06
-1974-01-29,96.09,96.81,94.97,96.01,12850000,96.01
-1974-01-28,96.63,97.32,95.37,96.09,13410000,96.09
-1974-01-25,96.82,97.64,95.68,96.63,14860000,96.63
-1974-01-24,97.07,97.75,95.49,96.82,15980000,96.82
-1974-01-23,96.55,98.11,95.88,97.07,16890000,97.07
-1974-01-22,95.40,97.41,94.92,96.55,17330000,96.55
-1974-01-21,95.56,95.96,93.23,95.40,15630000,95.40
-1974-01-18,97.30,97.63,95.00,95.56,16470000,95.56
-1974-01-17,95.67,98.35,95.67,97.30,21040000,97.30
-1974-01-16,94.23,96.20,93.78,95.67,14930000,95.67
-1974-01-15,93.42,95.26,92.84,94.23,13250000,94.23
-1974-01-14,93.66,95.24,92.35,93.42,14610000,93.42
-1974-01-11,92.39,94.57,91.75,93.66,15140000,93.66
-1974-01-10,93.42,94.63,91.62,92.39,16120000,92.39
-1974-01-09,95.40,95.40,92.63,93.42,18070000,93.42
-1974-01-08,98.07,98.26,95.58,96.12,18080000,96.12
-1974-01-07,98.90,99.31,96.86,98.07,19070000,98.07
-1974-01-04,99.80,100.70,97.70,98.90,21700000,98.90
-1974-01-03,98.02,100.94,98.02,99.80,24850000,99.80
-1974-01-02,97.55,98.38,96.25,97.68,12060000,97.68
-1973-12-31,97.54,98.30,95.95,97.55,23470000,97.55
-1973-12-28,97.74,98.76,96.41,97.54,21310000,97.54
-1973-12-27,96.00,98.53,96.00,97.74,22720000,97.74
-1973-12-26,93.87,96.52,93.87,95.74,18620000,95.74
-1973-12-24,93.54,93.77,91.68,92.90,11540000,92.90
-1973-12-21,94.55,95.11,92.70,93.54,18680000,93.54
-1973-12-20,94.82,96.26,93.51,94.55,17340000,94.55
-1973-12-19,94.74,96.83,93.81,94.82,20670000,94.82
-1973-12-18,92.75,95.41,92.18,94.74,19490000,94.74
-1973-12-17,93.29,94.00,91.87,92.75,12930000,92.75
-1973-12-14,92.38,94.53,91.05,93.29,20000000,93.29
-1973-12-13,93.57,94.68,91.64,92.38,18130000,92.38
-1973-12-12,95.52,95.52,92.90,93.57,18190000,93.57
-1973-12-11,97.95,99.09,95.62,96.04,20100000,96.04
-1973-12-10,96.51,98.58,95.44,97.95,18590000,97.95
-1973-12-07,94.49,97.58,94.49,96.51,23230000,96.51
-1973-12-06,92.16,94.89,91.68,94.42,23260000,94.42
-1973-12-05,93.59,93.93,91.55,92.16,19180000,92.16
-1973-12-04,93.90,95.23,92.60,93.59,19030000,93.59
-1973-12-03,95.83,95.83,92.92,93.90,17900000,93.90
-1973-11-30,97.31,97.55,95.40,95.96,15380000,95.96
-1973-11-29,97.65,98.72,96.01,97.31,18870000,97.31
-1973-11-28,95.70,98.40,95.22,97.65,19990000,97.65
-1973-11-27,96.58,97.70,94.88,95.70,19750000,95.70
-1973-11-26,98.64,98.64,95.79,96.58,19830000,96.58
-1973-11-23,99.76,100.49,98.59,99.44,11470000,99.44
-1973-11-21,98.66,101.33,97.87,99.76,24260000,99.76
-1973-11-20,100.65,100.65,97.64,98.66,23960000,98.66
-1973-11-19,103.65,103.65,100.37,100.71,16700000,100.71
-1973-11-16,102.43,105.41,101.77,103.88,22510000,103.88
-1973-11-15,102.45,103.85,100.69,102.43,24530000,102.43
-1973-11-14,104.36,105.25,101.87,102.45,22710000,102.45
-1973-11-13,104.44,105.42,102.91,104.36,20310000,104.36
-1973-11-12,105.30,105.75,103.12,104.44,19250000,104.44
-1973-11-09,107.02,107.27,104.77,105.30,17320000,105.30
-1973-11-08,106.10,108.45,106.10,107.02,19650000,107.02
-1973-11-07,104.96,106.72,104.53,105.80,16570000,105.80
-1973-11-06,105.52,107.00,104.52,104.96,16430000,104.96
-1973-11-05,106.97,106.97,104.87,105.52,17150000,105.52
-1973-11-02,107.69,108.35,106.33,107.07,16340000,107.07
-1973-11-01,108.29,109.20,106.88,107.69,16920000,107.69
-1973-10-31,109.33,109.82,107.64,108.29,17890000,108.29
-1973-10-30,111.15,111.30,108.95,109.33,17580000,109.33
-1973-10-29,111.38,112.56,110.52,111.15,17960000,111.15
-1973-10-26,110.50,112.31,110.08,111.38,17800000,111.38
-1973-10-25,110.27,111.33,108.85,110.50,15580000,110.50
-1973-10-24,109.75,110.98,109.03,110.27,15840000,110.27
-1973-10-23,109.16,110.91,107.40,109.75,17230000,109.75
-1973-10-22,110.22,110.56,108.18,109.16,14290000,109.16
-1973-10-19,110.01,111.56,109.30,110.22,17880000,110.22
-1973-10-18,109.97,111.43,108.97,110.01,19210000,110.01
-1973-10-17,110.19,111.41,109.19,109.97,18600000,109.97
-1973-10-16,110.05,110.80,108.50,110.19,18780000,110.19
-1973-10-15,111.32,111.32,109.29,110.05,16160000,110.05
-1973-10-12,111.09,112.82,110.52,111.44,22730000,111.44
-1973-10-11,109.22,111.77,108.96,111.09,20740000,111.09
-1973-10-10,110.13,111.31,108.51,109.22,19010000,109.22
-1973-10-09,110.23,111.19,109.05,110.13,19440000,110.13
-1973-10-08,109.85,110.93,108.02,110.23,18990000,110.23
-1973-10-05,108.41,110.46,107.76,109.85,18820000,109.85
-1973-10-04,108.78,109.53,107.30,108.41,19730000,108.41
-1973-10-03,108.79,109.95,107.74,108.78,22040000,108.78
-1973-10-02,108.21,109.46,107.48,108.79,20770000,108.79
-1973-10-01,108.43,108.98,107.08,108.21,15830000,108.21
-1973-09-28,109.08,109.42,107.48,108.43,16300000,108.43
-1973-09-27,108.83,110.45,108.02,109.08,23660000,109.08
-1973-09-26,108.05,109.61,107.43,108.83,21130000,108.83
-1973-09-25,107.36,108.79,106.50,108.05,21530000,108.05
-1973-09-24,107.20,108.36,106.21,107.36,19490000,107.36
-1973-09-21,106.76,108.02,105.43,107.20,23760000,107.20
-1973-09-20,105.88,107.55,105.32,106.76,25960000,106.76
-1973-09-19,103.80,106.43,103.80,105.88,24570000,105.88
-1973-09-18,104.15,104.62,102.41,103.77,16400000,103.77
-1973-09-17,104.44,105.41,103.21,104.15,15100000,104.15
-1973-09-14,103.36,104.75,102.66,104.44,13760000,104.44
-1973-09-13,103.06,104.09,102.37,103.36,11670000,103.36
-1973-09-12,103.22,103.98,102.15,103.06,12040000,103.06
-1973-09-11,103.85,104.09,102.13,103.22,12690000,103.22
-1973-09-10,104.76,105.12,103.33,103.85,11620000,103.85
-1973-09-07,105.15,105.87,104.04,104.76,14930000,104.76
-1973-09-06,104.64,105.95,104.05,105.15,15670000,105.15
-1973-09-05,104.51,105.33,103.60,104.64,14580000,104.64
-1973-09-04,104.25,105.35,103.60,104.51,14210000,104.51
-1973-08-31,103.88,104.72,103.15,104.25,10530000,104.25
-1973-08-30,104.03,104.84,103.29,103.88,12100000,103.88
-1973-08-29,103.02,104.92,102.69,104.03,15690000,104.03
-1973-08-28,102.42,103.66,102.06,103.02,11810000,103.02
-1973-08-27,101.62,102.82,101.09,102.42,9740000,102.42
-1973-08-24,101.91,102.65,100.88,101.62,11200000,101.62
-1973-08-23,100.62,102.50,100.62,101.91,11390000,101.91
-1973-08-22,100.89,101.39,99.74,100.53,10770000,100.53
-1973-08-21,101.61,102.10,100.51,100.89,11480000,100.89
-1973-08-20,102.31,102.54,101.11,101.61,8970000,101.61
-1973-08-17,102.29,102.98,101.38,102.31,11110000,102.31
-1973-08-16,103.01,103.97,101.85,102.29,12990000,102.29
-1973-08-15,102.71,103.79,101.92,103.01,12040000,103.01
-1973-08-14,103.71,104.29,102.34,102.71,11740000,102.71
-1973-08-13,104.77,104.83,103.13,103.71,11330000,103.71
-1973-08-10,105.61,106.03,104.21,104.77,10870000,104.77
-1973-08-09,105.55,106.65,104.89,105.61,12880000,105.61
-1973-08-08,106.55,106.73,105.04,105.55,12440000,105.55
-1973-08-07,106.73,107.57,105.87,106.55,13510000,106.55
-1973-08-06,106.49,107.54,105.45,106.73,12320000,106.73
-1973-08-03,106.67,107.17,105.68,106.49,9940000,106.49
-1973-08-02,106.83,107.38,105.51,106.67,16080000,106.67
-1973-08-01,108.17,108.17,106.29,106.83,13530000,106.83
-1973-07-31,109.25,110.09,107.89,108.22,13530000,108.22
-1973-07-30,109.59,110.12,108.24,109.25,11170000,109.25
-1973-07-27,109.85,110.49,108.70,109.59,12910000,109.59
-1973-07-26,109.64,111.04,108.51,109.85,18410000,109.85
-1973-07-25,108.14,110.76,107.92,109.64,22220000,109.64
-1973-07-24,107.52,108.63,106.31,108.14,16280000,108.14
-1973-07-23,107.14,108.42,106.54,107.52,15580000,107.52
-1973-07-20,106.55,108.02,105.95,107.14,16300000,107.14
-1973-07-19,106.35,107.58,105.06,106.55,18650000,106.55
-1973-07-18,105.72,107.05,104.73,106.35,17020000,106.35
-1973-07-17,105.67,107.28,104.99,105.72,18750000,105.72
-1973-07-16,104.09,106.01,103.42,105.67,12920000,105.67
-1973-07-13,105.50,105.80,103.66,104.09,11390000,104.09
-1973-07-12,105.80,106.62,104.38,105.50,16400000,105.50
-1973-07-11,103.64,106.21,103.64,105.80,18730000,105.80
-1973-07-10,102.26,104.20,102.26,103.52,15090000,103.52
-1973-07-09,101.28,102.45,100.44,102.14,11560000,102.14
-1973-07-06,101.78,102.22,100.67,101.28,9980000,101.28
-1973-07-05,101.87,102.48,100.80,101.78,10500000,101.78
-1973-07-03,102.90,103.02,101.14,101.87,10560000,101.87
-1973-07-02,104.10,104.10,102.44,102.90,9830000,102.90
-1973-06-29,104.69,105.30,103.68,104.26,10770000,104.26
-1973-06-28,103.62,105.17,103.18,104.69,12760000,104.69
-1973-06-27,103.30,104.23,102.29,103.62,12660000,103.62
-1973-06-26,102.25,103.78,101.45,103.30,14040000,103.30
-1973-06-25,103.64,103.64,101.71,102.25,11670000,102.25
-1973-06-22,103.21,105.66,103.07,103.70,18470000,103.70
-1973-06-21,104.44,104.77,102.84,103.21,11630000,103.21
-1973-06-20,103.99,105.13,103.51,104.44,10600000,104.44
-1973-06-19,103.60,104.96,102.46,103.99,12970000,103.99
-1973-06-18,104.96,104.96,103.08,103.60,11460000,103.60
-1973-06-15,106.21,106.21,104.37,105.10,11970000,105.10
-1973-06-14,107.60,108.27,105.83,106.40,13210000,106.40
-1973-06-13,108.29,109.52,107.08,107.60,15700000,107.60
-1973-06-12,106.70,108.78,106.40,108.29,13840000,108.29
-1973-06-11,107.03,107.79,106.11,106.70,9940000,106.70
-1973-06-08,105.84,107.75,105.60,107.03,14050000,107.03
-1973-06-07,104.31,106.39,104.19,105.84,14160000,105.84
-1973-06-06,104.62,105.78,103.60,104.31,13080000,104.31
-1973-06-05,102.97,105.27,102.61,104.62,14080000,104.62
-1973-06-04,103.93,103.98,102.33,102.97,11230000,102.97
-1973-06-01,104.95,105.04,103.31,103.93,10410000,103.93
-1973-05-31,105.91,106.30,104.35,104.95,12190000,104.95
-1973-05-30,107.51,107.64,105.48,105.91,11730000,105.91
-1973-05-29,107.94,108.58,106.77,107.51,11300000,107.51
-1973-05-25,107.14,108.86,106.08,107.94,19270000,107.94
-1973-05-24,104.07,107.44,103.59,107.14,17310000,107.14
-1973-05-23,103.58,105.10,102.82,104.07,14950000,104.07
-1973-05-22,102.73,105.04,102.58,103.58,18020000,103.58
-1973-05-21,103.77,103.77,101.36,102.73,20690000,102.73
-1973-05-18,105.41,105.41,103.18,103.86,17080000,103.86
-1973-05-17,106.43,106.82,105.15,105.56,13060000,105.56
-1973-05-16,106.57,107.61,105.49,106.43,13800000,106.43
-1973-05-15,105.90,107.16,104.12,106.57,18530000,106.57
-1973-05-14,107.74,107.74,105.52,105.90,13520000,105.90
-1973-05-11,109.49,109.49,107.70,108.17,12980000,108.17
-1973-05-10,110.44,110.86,108.86,109.54,13520000,109.54
-1973-05-09,111.25,112.25,109.97,110.44,16050000,110.44
-1973-05-08,110.53,111.72,109.46,111.25,13730000,111.25
-1973-05-07,111.00,111.38,109.68,110.53,12500000,110.53
-1973-05-04,110.22,111.99,109.89,111.00,19510000,111.00
-1973-05-03,108.43,110.64,106.81,110.22,17760000,110.22
-1973-05-02,107.10,109.06,106.95,108.43,14380000,108.43
-1973-05-01,106.97,108.00,105.34,107.10,15380000,107.10
-1973-04-30,107.23,107.90,105.44,106.97,14820000,106.97
-1973-04-27,108.89,109.28,106.76,107.23,13730000,107.23
-1973-04-26,108.34,109.66,107.14,108.89,16210000,108.89
-1973-04-25,109.82,109.82,107.79,108.34,15960000,108.34
-1973-04-24,111.57,111.89,109.64,109.99,13830000,109.99
-1973-04-23,112.17,112.66,110.91,111.57,12580000,111.57
-1973-04-19,111.54,112.93,111.06,112.17,14560000,112.17
-1973-04-18,110.94,112.03,109.99,111.54,13890000,111.54
-1973-04-17,111.44,111.81,110.19,110.94,12830000,110.94
-1973-04-16,112.08,112.61,110.91,111.44,11350000,111.44
-1973-04-13,112.58,112.91,111.23,112.08,14390000,112.08
-1973-04-12,112.68,113.65,111.83,112.58,16360000,112.58
-1973-04-11,112.21,113.27,111.21,112.68,14890000,112.68
-1973-04-10,110.92,112.85,110.92,112.21,16770000,112.21
-1973-04-09,109.28,111.24,108.74,110.86,13740000,110.86
-1973-04-06,108.52,110.04,108.22,109.28,13890000,109.28
-1973-04-05,108.77,109.15,107.44,108.52,12750000,108.52
-1973-04-04,109.24,109.96,108.10,108.77,11890000,108.77
-1973-04-03,110.18,110.35,108.47,109.24,12910000,109.24
-1973-04-02,111.52,111.70,109.68,110.18,10640000,110.18
-1973-03-30,112.71,112.87,110.89,111.52,13740000,111.52
-1973-03-29,111.62,113.22,111.07,112.71,16050000,112.71
-1973-03-28,111.56,112.47,110.54,111.62,15850000,111.62
-1973-03-27,109.95,112.07,109.95,111.56,17500000,111.56
-1973-03-26,108.88,110.40,108.29,109.84,14980000,109.84
-1973-03-23,108.84,109.97,107.41,108.88,18470000,108.88
-1973-03-22,110.39,110.39,108.19,108.84,17130000,108.84
-1973-03-21,111.95,112.81,110.17,110.49,16080000,110.49
-1973-03-20,112.17,112.68,111.02,111.95,13250000,111.95
-1973-03-19,113.50,113.50,111.65,112.17,12460000,112.17
-1973-03-16,114.12,114.62,112.84,113.54,15130000,113.54
-1973-03-15,114.98,115.47,113.77,114.12,14450000,114.12
-1973-03-14,114.48,115.61,113.97,114.98,14460000,114.98
-1973-03-13,113.86,115.05,113.32,114.48,14210000,114.48
-1973-03-12,113.79,114.80,113.25,113.86,13810000,113.86
-1973-03-09,114.23,114.55,112.93,113.79,14070000,113.79
-1973-03-08,114.45,115.23,113.57,114.23,15100000,114.23
-1973-03-07,114.10,115.12,112.83,114.45,19310000,114.45
-1973-03-06,112.68,114.71,112.57,114.10,17710000,114.10
-1973-03-05,112.28,113.43,111.33,112.68,13720000,112.68
-1973-03-02,111.05,112.62,109.45,112.28,17710000,112.28
-1973-03-01,111.68,112.98,110.68,111.05,18210000,111.05
-1973-02-28,110.90,112.21,109.80,111.68,17950000,111.68
-1973-02-27,112.19,112.90,110.50,110.90,16130000,110.90
-1973-02-26,113.16,113.26,111.15,112.19,15860000,112.19
-1973-02-23,114.44,114.67,112.77,113.16,15450000,113.16
-1973-02-22,114.69,115.20,113.44,114.44,14570000,114.44
-1973-02-21,115.40,116.01,114.13,114.69,14880000,114.69
-1973-02-20,114.98,116.26,114.57,115.40,14020000,115.40
-1973-02-16,114.45,115.47,113.73,114.98,13320000,114.98
-1973-02-15,115.10,115.68,113.70,114.45,13940000,114.45
-1973-02-14,116.78,116.92,114.52,115.10,16520000,115.10
-1973-02-13,116.09,118.98,116.09,116.78,25320000,116.78
-1973-02-12,114.69,116.66,114.69,116.06,16130000,116.06
-1973-02-09,113.16,115.20,113.08,114.68,19260000,114.68
-1973-02-08,113.66,114.05,111.85,113.16,18440000,113.16
-1973-02-07,114.45,115.48,113.24,113.66,17960000,113.66
-1973-02-06,114.23,115.33,113.45,114.45,15720000,114.45
-1973-02-05,114.35,115.15,113.62,114.23,14580000,114.23
-1973-02-02,114.76,115.40,113.45,114.35,17470000,114.35
-1973-02-01,116.03,117.01,114.26,114.76,20670000,114.76
-1973-01-31,115.83,116.84,115.05,116.03,14870000,116.03
-1973-01-30,116.01,117.11,115.26,115.83,15270000,115.83
-1973-01-29,116.45,117.18,115.13,116.01,14680000,116.01
-1973-01-26,116.73,117.29,114.97,116.45,21130000,116.45
-1973-01-24,118.22,119.04,116.09,116.73,20870000,116.73
-1973-01-23,118.21,119.00,116.84,118.22,19060000,118.22
-1973-01-22,118.78,119.63,117.72,118.21,15570000,118.21
-1973-01-19,118.85,119.45,117.46,118.78,17020000,118.78
-1973-01-18,118.68,119.93,118.15,118.85,17810000,118.85
-1973-01-17,118.14,119.35,117.61,118.68,17680000,118.68
-1973-01-16,118.44,119.17,117.04,118.14,19170000,118.14
-1973-01-15,119.30,120.82,118.04,118.44,21520000,118.44
-1973-01-12,120.24,121.27,118.69,119.30,22230000,119.30
-1973-01-11,119.43,121.74,119.01,120.24,25050000,120.24
-1973-01-10,119.73,120.44,118.78,119.43,20880000,119.43
-1973-01-09,119.85,120.40,118.89,119.73,16830000,119.73
-1973-01-08,119.87,120.55,119.04,119.85,16840000,119.85
-1973-01-05,119.40,120.71,118.88,119.87,19330000,119.87
-1973-01-04,119.57,120.17,118.12,119.40,20230000,119.40
-1973-01-03,119.10,120.45,118.69,119.57,20620000,119.57
-1973-01-02,118.06,119.90,118.06,119.10,17090000,119.10
-1972-12-29,116.93,118.77,116.70,118.05,27550000,118.05
-1972-12-27,116.30,117.55,115.89,116.93,19100000,116.93
-1972-12-26,115.83,116.87,115.54,116.30,11120000,116.30
-1972-12-22,115.11,116.40,114.78,115.83,12540000,115.83
-1972-12-21,115.95,116.60,114.63,115.11,18290000,115.11
-1972-12-20,116.34,117.13,115.38,115.95,18490000,115.95
-1972-12-19,116.90,117.37,115.69,116.34,17000000,116.34
-1972-12-18,117.88,117.88,115.89,116.90,17540000,116.90
-1972-12-15,118.24,119.25,117.37,118.26,18300000,118.26
-1972-12-14,118.56,119.19,117.63,118.24,17930000,118.24
-1972-12-13,118.66,119.23,117.77,118.56,16540000,118.56
-1972-12-12,119.12,119.79,118.09,118.66,17040000,118.66
-1972-12-11,118.86,119.78,118.24,119.12,17230000,119.12
-1972-12-08,118.60,119.54,117.92,118.86,18030000,118.86
-1972-12-07,118.01,119.17,117.57,118.60,19320000,118.60
-1972-12-06,117.58,118.56,116.90,118.01,18610000,118.01
-1972-12-05,117.77,118.42,116.89,117.58,17800000,117.58
-1972-12-04,117.38,118.54,116.99,117.77,19730000,117.77
-1972-12-01,116.67,118.18,116.29,117.38,22570000,117.38
-1972-11-30,116.52,117.39,115.74,116.67,19340000,116.67
-1972-11-29,116.47,117.14,115.56,116.52,17380000,116.52
-1972-11-28,116.72,117.48,115.78,116.47,19210000,116.47
-1972-11-27,117.27,117.55,115.66,116.72,18190000,116.72
-1972-11-24,116.90,117.91,116.19,117.27,15760000,117.27
-1972-11-22,116.21,117.61,115.67,116.90,24510000,116.90
-1972-11-21,115.53,116.84,115.04,116.21,22110000,116.21
-1972-11-20,115.49,116.25,114.57,115.53,16680000,115.53
-1972-11-17,115.13,116.23,114.44,115.49,20220000,115.49
-1972-11-16,114.50,115.57,113.73,115.13,19580000,115.13
-1972-11-15,114.95,116.07,113.87,114.50,23270000,114.50
-1972-11-14,113.90,115.41,113.36,114.95,20200000,114.95
-1972-11-13,113.73,114.75,112.91,113.90,17210000,113.90
-1972-11-10,113.50,115.15,112.85,113.73,24360000,113.73
-1972-11-09,113.35,114.11,112.08,113.50,17040000,113.50
-1972-11-08,113.98,115.23,112.77,113.35,24620000,113.35
-1972-11-06,114.22,115.17,112.91,113.98,21330000,113.98
-1972-11-03,113.23,114.81,112.71,114.22,22510000,114.22
-1972-11-02,112.67,113.81,111.96,113.23,20690000,113.23
-1972-11-01,111.58,113.31,111.32,112.67,21360000,112.67
-1972-10-31,110.59,112.05,110.40,111.58,15450000,111.58
-1972-10-30,110.62,111.19,109.66,110.59,11820000,110.59
-1972-10-27,110.99,111.62,109.99,110.62,15470000,110.62
-1972-10-26,110.72,112.26,110.26,110.99,20790000,110.99
-1972-10-25,110.81,111.56,109.96,110.72,17430000,110.72
-1972-10-24,110.35,111.34,109.38,110.81,15240000,110.81
-1972-10-23,109.51,111.10,109.51,110.35,14190000,110.35
-1972-10-20,108.05,109.79,107.59,109.24,15740000,109.24
-1972-10-19,108.19,108.81,107.40,108.05,13850000,108.05
-1972-10-18,107.50,109.11,107.36,108.19,17290000,108.19
-1972-10-17,106.77,108.04,106.27,107.50,13410000,107.50
-1972-10-16,107.92,108.40,106.38,106.77,10940000,106.77
-1972-10-13,108.60,108.88,107.17,107.92,12870000,107.92
-1972-10-12,109.50,109.69,108.03,108.60,13130000,108.60
-1972-10-11,109.99,110.51,108.77,109.50,11900000,109.50
-1972-10-10,109.90,111.11,109.32,109.99,13310000,109.99
-1972-10-09,109.62,110.44,109.28,109.90,7940000,109.90
-1972-10-06,108.89,110.49,107.78,109.62,16630000,109.62
-1972-10-05,110.09,110.52,108.49,108.89,17730000,108.89
-1972-10-04,110.30,111.35,109.58,110.09,16640000,110.09
-1972-10-03,110.16,110.90,109.47,110.30,13090000,110.30
-1972-10-02,110.55,110.98,109.49,110.16,12440000,110.16
-1972-09-29,110.35,110.55,108.05,110.55,16250000,110.55
-1972-09-28,109.66,110.75,108.75,110.35,14710000,110.35
-1972-09-27,108.12,109.92,107.79,109.66,14620000,109.66
-1972-09-26,108.05,108.97,107.35,108.12,13150000,108.12
-1972-09-25,108.52,109.09,107.67,108.05,10920000,108.05
-1972-09-22,108.43,109.20,107.72,108.52,12570000,108.52
-1972-09-21,108.60,109.13,107.75,108.43,11940000,108.43
-1972-09-20,108.55,109.12,107.84,108.60,11980000,108.60
-1972-09-19,108.61,109.57,108.08,108.55,13330000,108.55
-1972-09-18,108.81,109.22,107.86,108.61,8880000,108.61
-1972-09-15,108.93,109.49,108.10,108.81,11690000,108.81
-1972-09-14,108.90,109.64,108.21,108.93,12500000,108.93
-1972-09-13,108.47,109.36,107.84,108.90,13070000,108.90
-1972-09-12,109.51,109.84,107.81,108.47,13560000,108.47
-1972-09-11,110.15,110.57,109.01,109.51,10710000,109.51
-1972-09-08,110.29,110.90,109.67,110.15,10980000,110.15
-1972-09-07,110.55,111.06,109.71,110.29,11090000,110.29
-1972-09-06,111.23,111.38,110.04,110.55,12010000,110.55
-1972-09-05,111.51,112.08,110.75,111.23,10630000,111.23
-1972-09-01,111.09,112.12,110.70,111.51,11600000,111.51
-1972-08-31,110.57,111.52,110.08,111.09,12340000,111.09
-1972-08-30,110.41,111.33,109.90,110.57,12470000,110.57
-1972-08-29,110.23,111.02,109.26,110.41,12300000,110.41
-1972-08-28,110.67,111.24,109.71,110.23,10720000,110.23
-1972-08-25,111.02,111.53,109.78,110.67,13840000,110.67
-1972-08-24,112.26,112.81,110.62,111.02,18280000,111.02
-1972-08-23,112.41,113.27,111.30,112.26,18670000,112.26
-1972-08-22,111.72,113.16,111.28,112.41,18560000,112.41
-1972-08-21,111.76,112.74,110.75,111.72,14290000,111.72
-1972-08-18,111.34,112.53,110.81,111.76,16150000,111.76
-1972-08-17,111.66,112.41,110.72,111.34,14360000,111.34
-1972-08-16,112.06,112.80,110.87,111.66,14950000,111.66
-1972-08-15,112.55,113.04,111.27,112.06,16670000,112.06
-1972-08-14,111.95,113.45,111.66,112.55,18870000,112.55
-1972-08-11,111.05,112.40,110.52,111.95,16570000,111.95
-1972-08-10,110.86,111.68,110.09,111.05,15260000,111.05
-1972-08-09,110.69,111.57,109.98,110.86,15730000,110.86
-1972-08-08,110.61,111.32,109.67,110.69,14550000,110.69
-1972-08-07,110.43,111.38,109.69,110.61,13220000,110.61
-1972-08-04,110.14,111.12,109.37,110.43,15700000,110.43
-1972-08-03,109.29,110.88,108.90,110.14,19970000,110.14
-1972-08-02,108.40,109.85,108.12,109.29,17920000,109.29
-1972-08-01,107.39,108.85,107.06,108.40,15540000,108.40
-1972-07-31,107.38,108.06,106.60,107.39,11120000,107.39
-1972-07-28,107.28,108.03,106.52,107.38,13050000,107.38
-1972-07-27,107.53,108.31,106.61,107.28,13870000,107.28
-1972-07-26,107.60,108.42,106.79,107.53,14130000,107.53
-1972-07-25,107.92,108.88,107.06,107.60,17180000,107.60
-1972-07-24,106.66,108.67,106.63,107.92,18020000,107.92
-1972-07-21,105.81,107.05,104.99,106.66,14010000,106.66
-1972-07-20,106.14,106.68,105.12,105.81,15050000,105.81
-1972-07-19,105.83,107.36,105.47,106.14,17880000,106.14
-1972-07-18,105.88,106.40,104.43,105.83,16820000,105.83
-1972-07-17,106.80,107.37,105.55,105.88,13170000,105.88
-1972-07-14,106.28,107.58,105.77,106.80,13910000,106.80
-1972-07-13,106.89,107.30,105.62,106.28,14740000,106.28
-1972-07-12,107.32,108.15,106.42,106.89,16150000,106.89
-1972-07-11,108.11,108.35,106.87,107.32,12830000,107.32
-1972-07-10,108.69,109.16,107.62,108.11,11700000,108.11
-1972-07-07,109.04,109.66,108.16,108.69,12900000,108.69
-1972-07-06,108.28,110.27,108.28,109.04,19520000,109.04
-1972-07-05,107.49,108.80,107.14,108.10,14710000,108.10
-1972-07-03,107.14,107.95,106.72,107.49,8140000,107.49
-1972-06-30,106.82,107.91,106.40,107.14,12860000,107.14
-1972-06-29,107.02,107.47,105.94,106.82,14610000,106.82
-1972-06-28,107.37,107.87,106.49,107.02,12140000,107.02
-1972-06-27,107.48,108.29,106.70,107.37,13750000,107.37
-1972-06-26,108.23,108.23,106.68,107.48,12720000,107.48
-1972-06-23,108.68,109.33,107.69,108.27,13940000,108.27
-1972-06-22,108.79,109.26,107.62,108.68,13410000,108.68
-1972-06-21,108.56,109.66,107.98,108.79,15510000,108.79
-1972-06-20,108.11,109.12,107.64,108.56,14970000,108.56
-1972-06-19,108.36,108.78,107.37,108.11,11660000,108.11
-1972-06-16,108.44,108.94,107.54,108.36,13010000,108.36
-1972-06-15,108.39,109.52,107.78,108.44,16940000,108.44
-1972-06-14,107.55,109.15,107.38,108.39,18320000,108.39
-1972-06-13,107.01,108.03,106.38,107.55,15710000,107.55
-1972-06-12,106.86,107.92,106.29,107.01,13390000,107.01
-1972-06-09,107.28,107.68,106.30,106.86,12790000,106.86
-1972-06-08,107.65,108.52,106.90,107.28,13820000,107.28
-1972-06-07,108.21,108.52,106.91,107.65,15220000,107.65
-1972-06-06,108.82,109.32,107.71,108.21,15980000,108.21
-1972-06-05,109.73,109.92,108.28,108.82,13450000,108.82
-1972-06-02,109.69,110.51,108.93,109.73,15400000,109.73
-1972-06-01,109.53,110.35,108.97,109.69,14910000,109.69
-1972-05-31,110.35,110.52,108.92,109.53,15230000,109.53
-1972-05-30,110.66,111.48,109.78,110.35,15810000,110.35
-1972-05-26,110.46,111.31,109.84,110.66,15730000,110.66
-1972-05-25,110.31,111.20,109.67,110.46,16480000,110.46
-1972-05-24,109.78,111.07,109.39,110.31,17870000,110.31
-1972-05-23,109.69,110.46,108.91,109.78,16410000,109.78
-1972-05-22,108.98,110.37,108.79,109.69,16030000,109.69
-1972-05-19,107.94,109.59,107.74,108.98,19580000,108.98
-1972-05-18,106.89,108.39,106.72,107.94,17370000,107.94
-1972-05-17,106.66,107.38,106.02,106.89,13600000,106.89
-1972-05-16,106.86,107.55,106.13,106.66,14070000,106.66
-1972-05-15,106.38,107.45,106.06,106.86,13600000,106.86
-1972-05-12,105.77,107.02,105.49,106.38,13990000,106.38
-1972-05-11,105.42,106.45,104.90,105.77,12900000,105.77
-1972-05-10,104.74,106.10,104.43,105.42,13870000,105.42
-1972-05-09,106.06,106.06,103.83,104.74,19910000,104.74
-1972-05-08,106.63,106.81,105.36,106.14,11250000,106.14
-1972-05-05,106.25,107.33,105.70,106.63,13210000,106.63
-1972-05-04,105.99,106.81,105.14,106.25,14790000,106.25
-1972-05-03,106.08,107.24,105.44,105.99,15900000,105.99
-1972-05-02,106.69,107.37,105.55,106.08,15370000,106.08
-1972-05-01,107.67,108.00,106.30,106.69,12880000,106.69
-1972-04-28,107.05,108.28,106.70,107.67,14160000,107.67
-1972-04-27,106.89,107.89,106.42,107.05,15740000,107.05
-1972-04-26,107.12,107.89,106.18,106.89,17710000,106.89
-1972-04-25,108.19,108.29,106.70,107.12,17030000,107.12
-1972-04-24,108.89,109.19,107.62,108.19,14650000,108.19
-1972-04-21,109.04,109.92,108.30,108.89,18200000,108.89
-1972-04-20,109.20,109.69,108.08,109.04,18190000,109.04
-1972-04-19,109.77,110.35,108.71,109.20,19180000,109.20
-1972-04-18,109.51,110.64,109.02,109.77,19410000,109.77
-1972-04-17,109.84,110.22,108.77,109.51,15390000,109.51
-1972-04-14,109.91,110.56,109.07,109.84,17460000,109.84
-1972-04-13,110.18,110.79,109.37,109.91,17990000,109.91
-1972-04-12,109.76,111.11,109.36,110.18,24690000,110.18
-1972-04-11,109.45,110.38,108.76,109.76,19930000,109.76
-1972-04-10,109.62,110.54,108.89,109.45,19470000,109.45
-1972-04-07,109.53,110.15,108.53,109.62,19900000,109.62
-1972-04-06,109.00,110.29,108.53,109.53,22830000,109.53
-1972-04-05,108.12,109.64,107.96,109.00,22960000,109.00
-1972-04-04,107.48,108.62,106.77,108.12,18110000,108.12
-1972-04-03,107.20,108.26,106.75,107.48,14990000,107.48
-1972-03-30,106.49,107.67,106.07,107.20,14360000,107.20
-1972-03-29,107.17,107.41,105.98,106.49,13860000,106.49
-1972-03-28,107.30,108.08,106.22,107.17,15380000,107.17
-1972-03-27,107.52,108.00,106.53,107.30,12180000,107.30
-1972-03-24,107.75,108.36,106.95,107.52,15390000,107.52
-1972-03-23,106.84,108.33,106.67,107.75,18380000,107.75
-1972-03-22,106.69,107.52,106.00,106.84,15400000,106.84
-1972-03-21,107.59,107.68,105.86,106.69,18610000,106.69
-1972-03-20,107.92,108.81,107.18,107.59,16420000,107.59
-1972-03-17,107.50,108.61,106.89,107.92,16040000,107.92
-1972-03-16,107.75,108.22,106.55,107.50,16700000,107.50
-1972-03-15,107.61,108.55,107.09,107.75,19460000,107.75
-1972-03-14,107.33,108.20,106.71,107.61,22370000,107.61
-1972-03-13,108.38,108.52,106.71,107.33,16730000,107.33
-1972-03-10,108.94,109.37,107.77,108.38,19690000,108.38
-1972-03-09,108.96,109.75,108.19,108.94,21460000,108.94
-1972-03-08,108.87,109.68,108.04,108.96,21290000,108.96
-1972-03-07,108.77,109.72,108.02,108.87,22640000,108.87
-1972-03-06,107.94,109.40,107.64,108.77,21000000,108.77
-1972-03-03,107.32,108.51,106.78,107.94,20420000,107.94
-1972-03-02,107.35,108.39,106.63,107.32,22200000,107.32
-1972-03-01,106.57,108.13,106.21,107.35,23670000,107.35
-1972-02-29,106.19,107.16,105.45,106.57,20320000,106.57
-1972-02-28,106.18,107.04,105.37,106.19,18200000,106.19
-1972-02-25,105.45,106.73,105.04,106.18,18180000,106.18
-1972-02-24,105.38,106.24,104.76,105.45,16000000,105.45
-1972-02-23,105.29,106.18,104.72,105.38,16770000,105.38
-1972-02-22,105.28,106.18,104.65,105.29,16670000,105.29
-1972-02-18,105.59,106.01,104.47,105.28,16590000,105.28
-1972-02-17,105.62,106.65,104.96,105.59,22330000,105.59
-1972-02-16,105.03,106.25,104.65,105.62,20670000,105.62
-1972-02-15,104.59,105.59,104.10,105.03,17770000,105.03
-1972-02-14,105.08,105.53,104.03,104.59,15840000,104.59
-1972-02-11,105.59,105.91,104.45,105.08,17850000,105.08
-1972-02-10,105.55,106.69,104.97,105.59,23460000,105.59
-1972-02-09,104.74,106.03,104.36,105.55,19850000,105.55
-1972-02-08,104.54,105.22,103.90,104.74,17390000,104.74
-1972-02-07,104.86,105.46,103.97,104.54,16930000,104.54
-1972-02-04,104.64,105.48,104.05,104.86,17890000,104.86
-1972-02-03,104.68,105.43,103.85,104.64,19880000,104.64
-1972-02-02,104.01,105.41,103.50,104.68,24070000,104.68
-1972-02-01,103.94,104.57,103.10,104.01,19600000,104.01
-1972-01-31,104.16,104.88,103.30,103.94,18250000,103.94
-1972-01-28,103.50,104.98,103.22,104.16,25000000,104.16
-1972-01-27,102.50,103.93,102.20,103.50,20360000,103.50
-1972-01-26,102.70,103.31,101.81,102.50,14940000,102.50
-1972-01-25,102.57,103.59,101.63,102.70,17570000,102.70
-1972-01-24,103.65,104.03,102.20,102.57,15640000,102.57
-1972-01-21,103.88,104.40,102.75,103.65,18810000,103.65
-1972-01-20,103.88,105.00,103.32,103.88,20210000,103.88
-1972-01-19,104.05,104.61,102.83,103.88,18800000,103.88
-1972-01-18,103.70,104.85,103.35,104.05,21070000,104.05
-1972-01-17,103.39,104.24,102.80,103.70,15860000,103.70
-1972-01-14,102.99,103.89,102.41,103.39,14960000,103.39
-1972-01-13,103.59,103.80,102.29,102.99,16410000,102.99
-1972-01-12,103.65,104.66,103.05,103.59,20970000,103.59
-1972-01-11,103.32,104.30,102.85,103.65,17970000,103.65
-1972-01-10,103.47,103.97,102.44,103.32,15320000,103.32
-1972-01-07,103.51,104.29,102.38,103.47,17140000,103.47
-1972-01-06,103.06,104.20,102.66,103.51,21100000,103.51
-1972-01-05,102.09,103.69,101.90,103.06,21350000,103.06
-1972-01-04,101.67,102.59,100.87,102.09,15190000,102.09
-1972-01-03,102.09,102.85,101.19,101.67,12570000,101.67
-1971-12-31,102.09,102.09,102.09,102.09,14040000,102.09
-1971-12-30,101.78,101.78,101.78,101.78,13810000,101.78
-1971-12-29,102.21,102.21,102.21,102.21,17150000,102.21
-1971-12-28,101.95,101.95,101.95,101.95,15090000,101.95
-1971-12-27,100.95,100.95,100.95,100.95,11890000,100.95
-1971-12-23,100.74,100.74,100.74,100.74,16000000,100.74
-1971-12-22,101.18,101.18,101.18,101.18,18930000,101.18
-1971-12-21,101.80,101.80,101.80,101.80,20460000,101.80
-1971-12-20,101.55,101.55,101.55,101.55,23810000,101.55
-1971-12-17,100.26,100.26,100.26,100.26,18270000,100.26
-1971-12-16,99.74,99.74,99.74,99.74,21070000,99.74
-1971-12-15,98.54,98.54,98.54,98.54,16890000,98.54
-1971-12-14,97.67,97.67,97.67,97.67,16070000,97.67
-1971-12-13,97.97,97.97,97.97,97.97,17020000,97.97
-1971-12-10,97.69,97.69,97.69,97.69,17510000,97.69
-1971-12-09,96.96,96.96,96.96,96.96,14710000,96.96
-1971-12-08,96.87,97.65,96.08,96.92,16650000,96.92
-1971-12-07,96.51,97.35,95.40,96.87,15250000,96.87
-1971-12-06,97.06,98.17,96.07,96.51,17480000,96.51
-1971-12-03,95.84,97.57,95.36,97.06,16760000,97.06
-1971-12-02,95.44,96.59,94.73,95.84,17780000,95.84
-1971-12-01,93.99,96.12,93.95,95.44,21040000,95.44
-1971-11-30,93.41,94.43,92.51,93.99,18320000,93.99
-1971-11-29,92.04,94.90,92.04,93.41,18910000,93.41
-1971-11-26,90.33,92.19,90.27,91.94,10870000,91.94
-1971-11-24,90.16,91.14,89.73,90.33,11870000,90.33
-1971-11-23,90.79,91.10,89.34,90.16,16840000,90.16
-1971-11-22,91.61,92.12,90.51,90.79,11390000,90.79
-1971-11-19,92.13,92.38,90.95,91.61,12420000,91.61
-1971-11-18,92.85,93.62,91.88,92.13,13010000,92.13
-1971-11-17,92.71,93.35,91.80,92.85,12840000,92.85
-1971-11-16,91.81,93.15,91.21,92.71,13300000,92.71
-1971-11-15,92.12,92.69,91.38,91.81,9370000,91.81
-1971-11-12,92.12,92.90,90.93,92.12,14540000,92.12
-1971-11-11,93.41,93.54,91.64,92.12,13310000,92.12
-1971-11-10,94.46,94.84,93.10,93.41,13410000,93.41
-1971-11-09,94.39,95.31,93.94,94.46,12080000,94.46
-1971-11-08,94.46,94.97,93.78,94.39,8520000,94.39
-1971-11-05,94.79,95.01,93.64,94.46,10780000,94.46
-1971-11-04,94.91,96.08,94.37,94.79,15750000,94.79
-1971-11-03,93.27,95.31,93.27,94.91,14590000,94.91
-1971-11-02,92.80,93.73,91.84,93.18,13330000,93.18
-1971-11-01,94.23,94.43,92.48,92.80,10960000,92.80
-1971-10-29,93.96,94.71,93.28,94.23,11710000,94.23
-1971-10-28,93.79,94.75,92.96,93.96,15530000,93.96
-1971-10-27,94.74,94.99,93.39,93.79,13480000,93.79
-1971-10-26,95.02,95.02,94.38,94.74,13390000,94.74
-1971-10-25,95.57,95.76,94.57,95.10,7340000,95.10
-1971-10-22,95.60,96.83,94.97,95.57,14560000,95.57
-1971-10-21,95.65,96.33,94.59,95.60,14990000,95.60
-1971-10-20,97.00,97.45,95.23,95.65,16340000,95.65
-1971-10-19,97.35,97.66,96.05,97.00,13040000,97.00
-1971-10-18,97.79,98.33,96.98,97.35,10420000,97.35
-1971-10-15,98.13,98.45,97.03,97.79,13120000,97.79
-1971-10-14,99.03,99.25,97.74,98.13,12870000,98.13
-1971-10-13,99.57,100.08,98.61,99.03,13540000,99.03
-1971-10-12,99.21,100.20,98.62,99.57,14340000,99.57
-1971-10-11,99.36,99.62,98.58,99.21,7800000,99.21
-1971-10-08,100.02,100.30,98.87,99.36,13870000,99.36
-1971-10-07,99.82,100.96,99.42,100.02,17780000,100.02
-1971-10-06,99.11,100.13,98.49,99.82,15630000,99.82
-1971-10-05,99.21,99.78,98.34,99.11,12360000,99.11
-1971-10-04,98.93,100.04,98.62,99.21,14570000,99.21
-1971-10-01,98.34,99.49,97.96,98.93,13400000,98.93
-1971-09-30,97.90,98.97,97.48,98.34,13490000,98.34
-1971-09-29,97.88,98.51,97.29,97.90,8580000,97.90
-1971-09-28,97.62,98.55,97.12,97.88,11250000,97.88
-1971-09-27,98.15,98.41,96.97,97.62,10220000,97.62
-1971-09-24,98.38,99.35,97.78,98.15,13460000,98.15
-1971-09-23,98.47,99.12,97.61,98.38,13250000,98.38
-1971-09-22,99.34,99.72,98.15,98.47,14250000,98.47
-1971-09-21,99.68,100.08,98.71,99.34,10640000,99.34
-1971-09-20,99.96,100.40,99.14,99.68,9540000,99.68
-1971-09-17,99.66,100.52,99.26,99.96,11020000,99.96
-1971-09-16,99.77,100.35,99.07,99.66,10550000,99.66
-1971-09-15,99.34,100.24,98.79,99.77,11080000,99.77
-1971-09-14,100.07,100.35,98.99,99.34,11410000,99.34
-1971-09-13,100.42,100.84,99.49,100.07,10000000,100.07
-1971-09-10,100.80,101.01,99.69,100.42,11380000,100.42
-1971-09-09,101.34,101.88,100.38,100.80,15790000,100.80
-1971-09-08,101.15,101.94,100.52,101.34,14230000,101.34
-1971-09-07,100.69,102.25,100.43,101.15,17080000,101.15
-1971-09-03,99.29,100.93,99.10,100.69,14040000,100.69
-1971-09-02,99.07,99.80,98.52,99.29,10690000,99.29
-1971-09-01,99.03,99.84,98.50,99.07,10770000,99.07
-1971-08-31,99.52,99.76,98.32,99.03,10430000,99.03
-1971-08-30,100.48,100.89,99.17,99.52,11140000,99.52
-1971-08-27,100.24,101.22,99.76,100.48,12490000,100.48
-1971-08-26,100.41,101.12,99.40,100.24,13990000,100.24
-1971-08-25,100.40,101.51,99.77,100.41,18280000,100.41
-1971-08-24,99.25,101.02,99.15,100.40,18700000,100.40
-1971-08-23,98.33,99.96,98.09,99.25,13040000,99.25
-1971-08-20,98.16,98.94,97.52,98.33,11890000,98.33
-1971-08-19,98.60,99.07,97.35,98.16,14190000,98.16
-1971-08-18,99.99,100.19,98.06,98.60,20680000,98.60
-1971-08-17,98.76,101.00,98.49,99.99,26790000,99.99
-1971-08-16,97.90,100.96,97.90,98.76,31730000,98.76
-1971-08-13,96.00,96.53,95.19,95.69,9960000,95.69
-1971-08-12,94.81,96.50,94.81,96.00,15910000,96.00
-1971-08-11,93.54,95.06,93.35,94.66,11370000,94.66
-1971-08-10,93.53,94.13,92.81,93.54,9460000,93.54
-1971-08-09,94.25,94.55,93.17,93.53,8110000,93.53
-1971-08-06,94.09,94.91,93.63,94.25,9490000,94.25
-1971-08-05,93.89,94.89,93.33,94.09,12100000,94.09
-1971-08-04,94.51,95.34,93.35,93.89,15410000,93.89
-1971-08-03,95.96,96.11,94.06,94.51,13490000,94.51
-1971-08-02,95.58,96.76,95.22,95.96,11870000,95.96
-1971-07-30,96.02,96.78,95.08,95.58,12970000,95.58
-1971-07-29,97.07,97.22,95.37,96.02,14570000,96.02
-1971-07-28,97.78,98.15,96.51,97.07,13940000,97.07
-1971-07-27,98.14,98.99,97.42,97.78,11560000,97.78
-1971-07-26,98.94,99.47,96.67,98.14,9930000,98.14
-1971-07-23,99.11,99.60,98.26,98.94,12370000,98.94
-1971-07-22,99.28,99.82,98.50,99.11,12570000,99.11
-1971-07-21,99.32,100.00,98.74,99.28,11920000,99.28
-1971-07-20,98.93,100.01,98.60,99.32,12540000,99.32
-1971-07-19,99.11,99.57,98.11,98.93,11430000,98.93
-1971-07-16,99.28,100.35,98.64,99.11,13870000,99.11
-1971-07-15,99.22,100.48,98.76,99.28,13080000,99.28
-1971-07-14,99.50,99.83,98.23,99.22,14360000,99.22
-1971-07-13,100.82,101.06,99.07,99.50,13540000,99.50
-1971-07-12,100.69,101.52,100.19,100.82,12020000,100.82
-1971-07-09,100.34,101.33,99.86,100.69,12640000,100.69
-1971-07-08,100.04,101.03,99.59,100.34,13920000,100.34
-1971-07-07,99.76,100.83,99.25,100.04,14520000,100.04
-1971-07-06,99.78,100.35,99.10,99.76,10440000,99.76
-1971-07-02,99.78,100.31,99.09,99.78,9960000,99.78
-1971-07-01,99.16,100.65,99.16,99.78,13090000,99.78
-1971-06-30,98.82,100.29,98.68,98.70,15410000,98.70
-1971-06-29,97.74,99.39,97.61,98.82,14460000,98.82
-1971-06-28,97.99,98.48,97.02,97.74,9810000,97.74
-1971-06-25,98.13,98.66,97.33,97.99,10580000,97.99
-1971-06-24,98.41,99.00,97.59,98.13,11360000,98.13
-1971-06-23,97.59,98.95,97.36,98.41,12640000,98.41
-1971-06-22,97.87,98.66,96.92,97.59,15200000,97.59
-1971-06-21,98.97,99.18,97.22,97.87,16490000,97.87
-1971-06-18,100.50,100.63,98.65,98.97,15040000,98.97
-1971-06-17,100.52,101.37,99.87,100.50,13980000,100.50
-1971-06-16,100.32,101.29,99.68,100.52,14300000,100.52
-1971-06-15,100.22,101.10,99.45,100.32,13550000,100.32
-1971-06-14,101.07,101.28,99.78,100.22,11530000,100.22
-1971-06-11,100.64,101.71,100.18,101.07,12270000,101.07
-1971-06-10,100.29,101.23,99.78,100.64,12450000,100.64
-1971-06-09,100.32,100.97,99.28,100.29,14250000,100.29
-1971-06-08,101.09,101.50,99.91,100.32,13610000,100.32
-1971-06-07,101.30,102.02,100.55,101.09,13800000,101.09
-1971-06-04,101.01,101.88,100.43,101.30,14400000,101.30
-1971-06-03,100.96,102.07,100.30,101.01,18790000,101.01
-1971-06-02,100.20,101.53,99.89,100.96,17740000,100.96
-1971-06-01,99.63,100.76,99.22,100.20,11930000,100.20
-1971-05-28,99.40,100.17,98.68,99.63,11760000,99.63
-1971-05-27,99.59,100.14,98.78,99.40,12610000,99.40
-1971-05-26,99.47,100.49,98.93,99.59,13550000,99.59
-1971-05-25,100.13,100.39,98.73,99.47,16050000,99.47
-1971-05-24,100.99,101.24,99.72,100.13,12060000,100.13
-1971-05-21,101.31,101.84,100.41,100.99,12090000,100.99
-1971-05-20,101.07,102.17,100.61,101.31,11740000,101.31
-1971-05-19,100.83,101.75,100.30,101.07,17640000,101.07
-1971-05-18,100.69,101.62,99.68,100.83,17640000,100.83
-1971-05-17,102.08,102.08,100.25,100.69,15980000,100.69
-1971-05-14,102.69,103.17,101.65,102.21,16430000,102.21
-1971-05-13,102.90,103.57,101.98,102.69,17640000,102.69
-1971-05-12,102.62,103.57,102.12,102.90,15140000,102.90
-1971-05-11,102.36,103.37,101.50,102.62,17730000,102.62
-1971-05-10,102.87,103.15,101.71,102.36,12810000,102.36
-1971-05-07,103.23,103.50,101.86,102.87,16490000,102.87
-1971-05-06,103.78,104.42,102.80,103.23,19300000,103.23
-1971-05-05,103.79,104.28,102.68,103.78,17270000,103.78
-1971-05-04,103.29,104.36,102.71,103.79,17310000,103.79
-1971-05-03,103.95,104.11,102.37,103.29,16120000,103.29
-1971-04-30,104.63,104.96,103.25,103.95,17490000,103.95
-1971-04-29,104.77,105.58,103.90,104.63,20340000,104.63
-1971-04-28,104.59,105.60,103.85,104.77,24820000,104.77
-1971-04-27,103.94,105.07,103.23,104.59,21250000,104.59
-1971-04-26,104.05,104.83,103.19,103.94,18860000,103.94
-1971-04-23,103.56,104.63,102.79,104.05,20150000,104.05
-1971-04-22,103.36,104.27,102.58,103.56,19270000,103.56
-1971-04-21,103.61,104.16,102.55,103.36,17040000,103.36
-1971-04-20,104.01,104.58,103.06,103.61,17880000,103.61
-1971-04-19,103.49,104.63,103.09,104.01,17730000,104.01
-1971-04-16,103.52,104.18,102.68,103.49,18280000,103.49
-1971-04-15,103.37,104.40,102.76,103.52,22540000,103.52
-1971-04-14,102.98,104.01,102.28,103.37,19440000,103.37
-1971-04-13,102.88,103.96,102.25,102.98,23200000,102.98
-1971-04-12,102.10,103.54,101.75,102.88,19410000,102.88
-1971-04-08,101.98,102.86,101.30,102.10,17590000,102.10
-1971-04-07,101.51,102.87,101.13,101.98,22270000,101.98
-1971-04-06,100.79,102.11,100.30,101.51,19990000,101.51
-1971-04-05,100.56,101.41,99.88,100.79,16040000,100.79
-1971-04-02,100.39,101.23,99.86,100.56,14520000,100.56
-1971-04-01,100.31,100.99,99.63,100.39,13470000,100.39
-1971-03-31,100.26,101.05,99.69,100.31,17610000,100.31
-1971-03-30,100.03,100.86,99.41,100.26,15430000,100.26
-1971-03-29,99.95,100.74,99.36,100.03,13650000,100.03
-1971-03-26,99.61,100.65,99.18,99.95,15560000,99.95
-1971-03-25,99.62,100.03,98.36,99.61,15870000,99.61
-1971-03-24,100.28,100.63,99.15,99.62,15770000,99.62
-1971-03-23,100.62,101.06,99.62,100.28,16470000,100.28
-1971-03-22,101.01,101.46,100.08,100.62,14290000,100.62
-1971-03-19,101.19,101.74,100.35,101.01,15150000,101.01
-1971-03-18,101.12,102.03,100.43,101.19,17910000,101.19
-1971-03-17,101.21,101.66,99.98,101.12,17070000,101.12
-1971-03-16,100.71,101.94,100.36,101.21,22270000,101.21
-1971-03-15,99.57,101.15,99.12,100.71,18920000,100.71
-1971-03-12,99.39,100.09,98.64,99.57,14680000,99.57
-1971-03-11,99.30,100.29,98.57,99.39,19830000,99.39
-1971-03-10,99.46,100.10,98.63,99.30,17220000,99.30
-1971-03-09,99.38,100.31,98.72,99.46,20490000,99.46
-1971-03-08,98.96,99.44,98.42,99.38,19340000,99.38
-1971-03-05,97.92,99.49,97.82,98.96,22430000,98.96
-1971-03-04,96.95,98.38,96.90,97.92,17350000,97.92
-1971-03-03,96.98,97.54,96.30,96.95,14680000,96.95
-1971-03-02,97.00,97.60,96.32,96.98,14870000,96.98
-1971-03-01,96.75,97.48,96.11,97.00,13020000,97.00
-1971-02-26,96.96,97.54,95.84,96.75,17250000,96.75
-1971-02-25,96.73,97.71,96.08,96.96,16200000,96.96
-1971-02-24,96.09,97.34,95.86,96.73,15930000,96.73
-1971-02-23,95.72,96.67,94.92,96.09,15080000,96.09
-1971-02-22,96.65,96.65,94.97,95.72,15840000,95.72
-1971-02-19,97.56,97.79,96.25,96.74,17860000,96.74
-1971-02-18,98.20,98.60,96.96,97.56,16650000,97.56
-1971-02-17,98.66,99.32,97.32,98.20,18720000,98.20
-1971-02-16,98.43,99.59,97.85,98.66,21350000,98.66
-1971-02-12,97.91,98.96,97.56,98.43,18470000,98.43
-1971-02-11,97.39,98.49,96.99,97.91,19260000,97.91
-1971-02-10,97.51,97.97,96.23,97.39,19040000,97.39
-1971-02-09,97.45,98.50,96.90,97.51,28250000,97.51
-1971-02-08,96.93,98.04,96.13,97.45,25590000,97.45
-1971-02-05,96.62,97.58,95.84,96.93,20480000,96.93
-1971-02-04,96.63,97.26,95.69,96.62,20860000,96.62
-1971-02-03,96.43,97.19,95.58,96.63,21680000,96.63
-1971-02-02,96.42,97.19,95.60,96.43,22030000,96.43
-1971-02-01,95.88,97.05,95.38,96.42,20650000,96.42
-1971-01-29,95.21,96.49,94.79,95.88,20960000,95.88
-1971-01-28,94.89,95.78,94.12,95.21,18840000,95.21
-1971-01-27,95.59,95.78,93.96,94.89,20640000,94.89
-1971-01-26,95.28,96.36,94.69,95.59,21380000,95.59
-1971-01-25,94.88,95.93,94.16,95.28,19050000,95.28
-1971-01-22,94.19,95.53,93.96,94.88,21680000,94.88
-1971-01-21,93.78,94.69,93.15,94.19,19060000,94.19
-1971-01-20,93.76,94.53,93.07,93.78,18330000,93.78
-1971-01-19,93.41,94.28,92.85,93.76,15800000,93.76
-1971-01-18,93.03,94.11,92.63,93.41,15400000,93.41
-1971-01-15,92.80,93.94,92.25,93.03,18010000,93.03
-1971-01-14,92.56,93.36,91.67,92.80,17600000,92.80
-1971-01-13,92.72,93.66,91.88,92.56,19070000,92.56
-1971-01-12,91.98,93.28,91.63,92.72,17820000,92.72
-1971-01-11,92.19,92.67,90.99,91.98,14720000,91.98
-1971-01-08,92.38,93.02,91.60,92.19,14100000,92.19
-1971-01-07,92.35,93.26,91.75,92.38,16460000,92.38
-1971-01-06,91.80,93.00,91.50,92.35,16960000,92.35
-1971-01-05,91.15,92.28,90.69,91.80,12600000,91.80
-1971-01-04,92.15,92.19,90.64,91.15,10010000,91.15
-1970-12-31,92.27,92.79,91.36,92.15,13390000,92.15
-1970-12-30,92.08,92.99,91.60,92.27,19140000,92.27
-1970-12-29,91.09,92.38,90.73,92.08,17750000,92.08
-1970-12-28,90.61,91.49,90.28,91.09,12290000,91.09
-1970-12-24,90.10,91.08,89.81,90.61,12140000,90.61
-1970-12-23,90.04,90.86,89.35,90.10,15400000,90.10
-1970-12-22,89.94,90.84,89.35,90.04,14510000,90.04
-1970-12-21,90.22,90.77,89.36,89.94,12690000,89.94
-1970-12-18,90.04,90.77,89.42,90.22,14360000,90.22
-1970-12-17,89.72,90.61,89.31,90.04,13660000,90.04
-1970-12-16,89.66,90.22,88.77,89.72,14240000,89.72
-1970-12-15,89.80,90.32,88.93,89.66,13420000,89.66
-1970-12-14,90.26,90.81,89.28,89.80,13810000,89.80
-1970-12-11,89.92,90.93,89.44,90.26,15790000,90.26
-1970-12-10,89.54,90.87,89.01,89.92,14610000,89.92
-1970-12-09,89.47,90.03,88.48,89.54,13550000,89.54
-1970-12-08,89.94,90.47,88.87,89.47,14370000,89.47
-1970-12-07,89.46,90.39,88.76,89.94,15530000,89.94
-1970-12-04,88.90,89.89,88.12,89.46,15980000,89.46
-1970-12-03,88.48,89.87,88.11,88.90,20480000,88.90
-1970-12-02,87.47,88.83,86.72,88.48,17960000,88.48
-1970-12-01,87.20,88.61,86.11,87.47,20170000,87.47
-1970-11-30,85.93,87.60,85.79,87.20,17700000,87.20
-1970-11-27,85.09,86.21,84.67,85.93,10130000,85.93
-1970-11-25,84.78,85.70,84.35,85.09,13490000,85.09
-1970-11-24,84.24,85.18,83.59,84.78,12560000,84.78
-1970-11-23,83.72,84.92,83.47,84.24,12720000,84.24
-1970-11-20,82.91,84.06,82.49,83.72,10920000,83.72
-1970-11-19,82.79,83.48,82.23,82.91,9280000,82.91
-1970-11-18,83.47,83.53,82.41,82.79,9850000,82.79
-1970-11-17,83.24,84.17,82.81,83.47,9450000,83.47
-1970-11-16,83.37,83.75,82.34,83.24,9160000,83.24
-1970-11-13,84.15,84.33,82.92,83.37,11890000,83.37
-1970-11-12,85.03,85.54,83.81,84.15,12520000,84.15
-1970-11-11,84.79,86.24,84.69,85.03,13520000,85.03
-1970-11-10,84.67,85.69,84.18,84.79,12030000,84.79
-1970-11-09,84.22,85.27,83.82,84.67,10890000,84.67
-1970-11-06,84.10,84.73,83.55,84.22,9970000,84.22
-1970-11-05,84.39,84.79,83.53,84.10,10800000,84.10
-1970-11-04,84.22,85.26,83.82,84.39,12180000,84.39
-1970-11-03,83.51,84.77,83.21,84.22,11760000,84.22
-1970-11-02,83.25,83.99,82.66,83.51,9470000,83.51
-1970-10-30,83.36,83.80,82.52,83.25,10520000,83.25
-1970-10-29,83.43,84.10,82.82,83.36,10440000,83.36
-1970-10-28,83.12,83.81,82.29,83.43,10660000,83.43
-1970-10-27,83.31,83.73,82.52,83.12,9680000,83.12
-1970-10-26,83.77,84.26,82.89,83.31,9200000,83.31
-1970-10-23,83.38,84.30,82.91,83.77,10270000,83.77
-1970-10-22,83.66,84.04,82.77,83.38,9000000,83.38
-1970-10-21,83.64,84.72,83.21,83.66,11330000,83.66
-1970-10-20,83.15,84.19,82.62,83.64,10630000,83.64
-1970-10-19,84.28,84.29,82.81,83.15,9890000,83.15
-1970-10-16,84.65,85.21,83.83,84.28,11300000,84.28
-1970-10-15,84.19,85.28,83.82,84.65,11250000,84.65
-1970-10-14,84.06,84.83,83.42,84.19,9920000,84.19
-1970-10-13,84.17,84.70,83.24,84.06,9500000,84.06
-1970-10-12,85.05,85.05,83.58,84.17,8570000,84.17
-1970-10-09,85.95,86.25,84.54,85.08,13980000,85.08
-1970-10-08,86.89,87.37,85.55,85.95,14500000,85.95
-1970-10-07,86.85,87.47,85.55,86.89,15610000,86.89
-1970-10-06,86.47,87.75,86.04,86.85,20240000,86.85
-1970-10-05,85.16,86.99,85.01,86.47,19760000,86.47
-1970-10-02,84.32,85.56,84.06,85.16,15420000,85.16
-1970-10-01,84.30,84.70,83.46,84.32,9700000,84.32
-1970-09-30,83.86,84.99,82.78,84.30,14830000,84.30
-1970-09-29,83.91,84.57,83.11,83.86,17880000,83.86
-1970-09-28,82.83,84.56,82.61,83.91,14390000,83.91
-1970-09-25,81.66,83.60,81.41,82.83,20470000,82.83
-1970-09-24,81.91,82.24,80.82,81.66,21340000,81.66
-1970-09-23,81.86,83.15,81.52,81.91,16940000,81.91
-1970-09-22,81.91,82.24,80.82,81.86,12110000,81.86
-1970-09-21,82.62,83.15,81.52,81.91,12540000,81.91
-1970-09-18,82.29,83.50,81.77,82.62,15900000,82.62
-1970-09-17,81.79,83.09,81.51,82.29,15530000,82.29
-1970-09-16,81.36,82.57,80.61,81.79,12090000,81.79
-1970-09-15,82.07,82.11,80.75,81.36,9830000,81.36
-1970-09-14,82.52,83.13,81.43,82.07,11900000,82.07
-1970-09-11,82.30,83.19,81.81,82.52,12140000,82.52
-1970-09-10,82.79,82.98,81.62,82.30,11900000,82.30
-1970-09-09,83.04,83.78,81.90,82.79,16250000,82.79
-1970-09-08,82.83,83.69,81.48,83.04,17110000,83.04
-1970-09-04,82.09,83.42,81.79,82.83,15360000,82.83
-1970-09-03,80.96,82.63,80.88,82.09,14110000,82.09
-1970-09-02,80.95,81.35,79.95,80.96,9710000,80.96
-1970-09-01,81.52,81.80,80.43,80.95,10960000,80.95
-1970-08-31,81.86,82.33,80.95,81.52,10740000,81.52
-1970-08-28,81.08,82.47,80.69,81.86,13820000,81.86
-1970-08-27,81.21,81.91,80.13,81.08,12440000,81.08
-1970-08-26,81.12,82.26,80.60,81.21,15970000,81.21
-1970-08-25,80.99,81.81,79.69,81.12,17520000,81.12
-1970-08-24,79.41,81.62,79.41,80.99,18910000,80.99
-1970-08-21,77.84,79.60,77.46,79.24,13420000,79.24
-1970-08-20,76.96,77.99,76.30,77.84,10170000,77.84
-1970-08-19,76.20,77.58,76.01,76.96,9870000,76.96
-1970-08-18,75.33,76.79,75.30,76.20,9500000,76.20
-1970-08-17,75.18,75.79,74.52,75.33,6940000,75.33
-1970-08-14,74.76,75.74,74.39,75.18,7850000,75.18
-1970-08-13,75.42,75.69,74.13,74.76,8640000,74.76
-1970-08-12,75.82,76.24,75.04,75.42,7440000,75.42
-1970-08-11,76.20,76.33,75.16,75.82,7330000,75.82
-1970-08-10,77.28,77.40,75.72,76.20,7580000,76.20
-1970-08-07,77.08,78.09,76.46,77.28,9370000,77.28
-1970-08-06,77.18,77.68,76.39,77.08,7560000,77.08
-1970-08-05,77.19,77.86,76.59,77.18,7660000,77.18
-1970-08-04,77.02,77.56,76.12,77.19,8310000,77.19
-1970-08-03,78.05,78.24,76.56,77.02,7650000,77.02
-1970-07-31,78.07,79.03,77.44,78.05,11640000,78.05
-1970-07-30,78.04,78.66,77.36,78.07,10430000,78.07
-1970-07-29,77.77,78.81,77.28,78.04,12580000,78.04
-1970-07-28,77.65,78.35,76.96,77.77,9040000,77.77
-1970-07-27,77.82,78.27,77.07,77.65,7460000,77.65
-1970-07-24,78.00,78.48,76.96,77.82,9520000,77.82
-1970-07-23,77.03,78.51,76.46,78.00,12460000,78.00
-1970-07-22,76.98,78.20,76.22,77.03,12460000,77.03
-1970-07-21,77.79,77.94,76.39,76.98,9940000,76.98
-1970-07-20,77.69,78.72,77.04,77.79,11660000,77.79
-1970-07-17,76.37,78.23,76.37,77.69,13870000,77.69
-1970-07-16,75.23,77.09,75.12,76.34,12200000,76.34
-1970-07-15,74.42,75.68,74.06,75.23,8860000,75.23
-1970-07-14,74.55,75.04,73.78,74.42,7360000,74.42
-1970-07-13,74.45,75.37,73.83,74.55,7450000,74.55
-1970-07-10,74.06,75.21,73.49,74.45,10160000,74.45
-1970-07-09,73.00,74.77,72.88,74.06,12820000,74.06
-1970-07-08,71.23,73.30,70.99,73.00,10970000,73.00
-1970-07-07,71.78,72.32,70.69,71.23,10470000,71.23
-1970-07-06,72.92,73.12,71.38,71.78,9340000,71.78
-1970-07-02,72.94,73.92,72.43,72.92,8440000,72.92
-1970-07-01,72.72,73.66,72.11,72.94,8610000,72.94
-1970-06-30,72.89,73.89,72.25,72.72,9280000,72.72
-1970-06-29,73.47,73.86,72.34,72.89,8770000,72.89
-1970-06-26,74.02,74.68,73.09,73.47,9160000,73.47
-1970-06-25,73.97,74.93,73.30,74.02,8200000,74.02
-1970-06-24,74.76,75.42,73.40,73.97,12630000,73.97
-1970-06-23,76.64,76.83,74.52,74.76,10790000,74.76
-1970-06-22,77.05,77.43,75.61,76.64,8700000,76.64
-1970-06-19,76.51,78.05,76.31,77.05,10980000,77.05
-1970-06-18,76.00,77.17,74.99,76.51,8870000,76.51
-1970-06-17,76.15,78.04,75.63,76.00,9870000,76.00
-1970-06-16,74.58,76.76,74.21,76.15,11330000,76.15
-1970-06-15,73.88,75.27,73.67,74.58,6920000,74.58
-1970-06-12,74.45,74.84,73.25,73.88,8890000,73.88
-1970-06-11,75.48,75.52,73.96,74.45,7770000,74.45
-1970-06-10,76.25,76.62,74.92,75.48,7240000,75.48
-1970-06-09,76.29,79.96,75.58,76.25,7050000,76.25
-1970-06-08,76.17,77.37,75.30,76.29,8040000,76.29
-1970-06-05,77.36,77.48,75.25,76.17,12450000,76.17
-1970-06-04,78.52,79.42,76.99,77.36,14380000,77.36
-1970-06-03,77.84,79.22,76.97,78.52,16600000,78.52
-1970-06-02,77.84,78.73,76.51,77.84,13480000,77.84
-1970-06-01,76.55,78.40,75.84,77.84,15020000,77.84
-1970-05-29,74.61,76.92,73.53,76.55,14630000,76.55
-1970-05-28,72.77,75.44,72.59,74.61,18910000,74.61
-1970-05-27,69.37,73.22,69.37,72.77,17460000,72.77
-1970-05-26,70.25,71.17,68.61,69.29,17030000,69.29
-1970-05-25,72.16,72.16,69.92,70.25,12660000,70.25
-1970-05-22,72.16,73.42,71.42,72.25,12170000,72.25
-1970-05-21,73.51,73.51,70.94,72.16,16710000,72.16
-1970-05-20,75.35,75.35,73.25,73.52,13020000,73.52
-1970-05-19,76.96,77.20,75.21,75.46,9480000,75.46
-1970-05-18,76.90,77.68,76.07,76.96,8280000,76.96
-1970-05-15,75.44,77.42,74.59,76.90,14570000,76.90
-1970-05-14,76.53,76.64,74.03,75.44,13920000,75.44
-1970-05-13,77.75,77.75,75.92,76.53,10720000,76.53
-1970-05-12,78.60,79.15,77.06,77.85,10850000,77.85
-1970-05-11,79.44,79.72,78.29,78.60,6650000,78.60
-1970-05-08,79.83,80.15,78.71,79.44,6930000,79.44
-1970-05-07,79.47,80.60,78.89,79.83,9530000,79.83
-1970-05-06,78.60,80.91,78.23,79.47,14380000,79.47
-1970-05-05,79.37,79.83,78.02,78.60,10580000,78.60
-1970-05-04,81.28,81.28,78.85,79.37,11450000,79.37
-1970-05-01,81.52,82.32,80.27,81.44,8290000,81.44
-1970-04-30,81.81,82.57,80.76,81.52,9880000,81.52
-1970-04-29,80.27,83.23,79.31,81.81,15800000,81.81
-1970-04-28,81.46,82.16,79.86,80.27,12620000,80.27
-1970-04-27,82.77,83.08,81.08,81.46,10240000,81.46
-1970-04-24,83.04,83.62,81.96,82.77,10410000,82.77
-1970-04-23,84.27,84.30,82.61,83.04,11050000,83.04
-1970-04-22,85.38,85.51,83.84,84.27,10780000,84.27
-1970-04-21,85.83,86.54,84.99,85.38,8490000,85.38
-1970-04-20,85.67,86.36,84.99,85.83,8280000,85.83
-1970-04-17,85.88,86.36,84.75,85.67,10990000,85.67
-1970-04-16,86.73,87.13,85.51,85.88,10250000,85.88
-1970-04-15,86.89,87.71,86.53,86.73,9410000,86.73
-1970-04-14,87.64,87.73,86.01,86.89,10840000,86.89
-1970-04-13,88.24,88.67,87.15,87.64,8810000,87.64
-1970-04-10,88.53,89.14,87.82,88.24,10020000,88.24
-1970-04-09,88.49,89.32,87.96,88.53,9060000,88.53
-1970-04-08,88.52,89.09,87.83,88.49,9070000,88.49
-1970-04-07,88.76,89.31,87.94,88.52,8490000,88.52
-1970-04-06,89.39,89.61,88.15,88.76,8380000,88.76
-1970-04-03,89.79,90.16,88.81,89.39,9920000,89.39
-1970-04-02,90.07,90.70,89.28,89.79,10520000,89.79
-1970-04-01,89.63,90.62,89.30,90.07,9810000,90.07
-1970-03-31,89.63,90.17,88.85,89.63,8370000,89.63
-1970-03-30,89.92,90.41,88.91,89.63,9600000,89.63
-1970-03-26,89.77,90.65,89.18,89.92,11350000,89.92
-1970-03-25,88.11,91.07,88.11,89.77,17500000,89.77
-1970-03-24,86.99,88.43,86.90,87.98,8840000,87.98
-1970-03-23,87.06,87.64,86.19,86.99,7330000,86.99
-1970-03-20,87.42,87.77,86.43,87.06,7910000,87.06
-1970-03-19,87.54,88.20,86.88,87.42,8930000,87.42
-1970-03-18,87.29,88.28,86.93,87.54,9790000,87.54
-1970-03-17,86.91,87.86,86.36,87.29,9090000,87.29
-1970-03-16,87.86,87.97,86.39,86.91,8910000,86.91
-1970-03-13,88.33,89.43,87.29,87.86,9560000,87.86
-1970-03-12,88.69,89.09,87.68,88.33,9140000,88.33
-1970-03-11,88.75,89.58,88.11,88.69,9180000,88.69
-1970-03-10,88.51,89.41,87.89,88.75,9450000,88.75
-1970-03-09,89.43,89.43,87.94,88.51,9760000,88.51
-1970-03-06,90.00,90.36,88.84,89.44,10980000,89.44
-1970-03-05,90.04,90.99,89.38,90.00,11370000,90.00
-1970-03-04,90.23,91.05,89.32,90.04,11850000,90.04
-1970-03-03,89.71,90.67,88.96,90.23,11700000,90.23
-1970-03-02,89.50,90.80,88.92,89.71,12270000,89.71
-1970-02-27,88.90,90.33,88.42,89.50,12890000,89.50
-1970-02-26,89.35,89.63,87.63,88.90,11540000,88.90
-1970-02-25,87.99,89.80,87.11,89.35,13210000,89.35
-1970-02-24,88.03,88.91,87.28,87.99,10810000,87.99
-1970-02-20,87.76,88.74,86.87,88.03,10790000,88.03
-1970-02-19,87.44,88.70,86.94,87.76,12890000,87.76
-1970-02-18,86.37,88.07,86.19,87.44,11950000,87.44
-1970-02-17,86.47,87.08,85.57,86.37,10140000,86.37
-1970-02-16,86.54,87.30,85.80,86.47,19780000,86.47
-1970-02-13,86.73,87.30,85.71,86.54,11060000,86.54
-1970-02-12,86.94,87.54,85.93,86.73,10010000,86.73
-1970-02-11,86.10,87.38,85.30,86.94,12260000,86.94
-1970-02-10,87.01,87.40,85.58,86.10,10110000,86.10
-1970-02-09,86.33,87.85,86.16,87.01,10830000,87.01
-1970-02-06,85.90,86.88,85.23,86.33,10150000,86.33
-1970-02-05,86.24,86.62,84.95,85.90,9430000,85.90
-1970-02-04,86.77,87.66,85.59,86.24,11040000,86.24
-1970-02-03,85.75,87.54,84.64,86.77,16050000,86.77
-1970-02-02,85.02,86.76,84.76,85.75,13440000,85.75
-1970-01-30,85.69,86.33,84.42,85.02,12320000,85.02
-1970-01-29,86.79,87.09,85.02,85.69,12210000,85.69
-1970-01-28,87.62,88.24,86.44,86.79,10510000,86.79
-1970-01-27,88.17,88.54,86.92,87.62,9630000,87.62
-1970-01-26,89.23,89.23,87.49,88.17,10670000,88.17
-1970-01-23,90.04,90.45,88.74,89.37,11000000,89.37
-1970-01-22,89.95,90.80,89.20,90.04,11050000,90.04
-1970-01-21,89.83,90.61,89.20,89.95,9880000,89.95
-1970-01-20,89.65,90.45,88.64,89.83,11050000,89.83
-1970-01-19,90.72,90.72,89.14,89.65,9500000,89.65
-1970-01-16,91.68,92.49,90.36,90.92,11940000,90.92
-1970-01-15,91.65,92.35,90.73,91.68,11120000,91.68
-1970-01-14,91.92,92.40,90.88,91.65,10380000,91.65
-1970-01-13,91.70,92.61,90.99,91.92,9870000,91.92
-1970-01-12,92.40,92.67,91.20,91.70,8900000,91.70
-1970-01-09,92.68,93.25,91.82,92.40,9380000,92.40
-1970-01-08,92.63,93.47,91.99,92.68,10670000,92.68
-1970-01-07,92.82,93.38,91.93,92.63,10010000,92.63
-1970-01-06,93.46,93.81,92.13,92.82,11460000,92.82
-1970-01-05,93.00,94.25,92.53,93.46,11490000,93.46
-1970-01-02,92.06,93.54,91.79,93.00,8050000,93.00
-1969-12-31,91.60,92.94,91.15,92.06,19380000,92.06
-1969-12-30,91.25,92.20,90.47,91.60,15790000,91.60
-1969-12-29,91.89,92.49,90.66,91.25,12500000,91.25
-1969-12-26,91.18,92.30,90.94,91.89,6750000,91.89
-1969-12-24,90.23,91.89,89.93,91.18,11670000,91.18
-1969-12-23,90.58,91.13,89.40,90.23,13890000,90.23
-1969-12-22,91.38,92.03,90.10,90.58,12680000,90.58
-1969-12-19,90.61,92.34,90.33,91.38,15420000,91.38
-1969-12-18,89.20,91.15,88.62,90.61,15950000,90.61
-1969-12-17,89.72,90.32,88.94,89.20,12840000,89.20
-1969-12-16,90.54,91.05,89.23,89.72,11880000,89.72
-1969-12-15,90.81,91.42,89.96,90.54,11100000,90.54
-1969-12-12,90.52,91.67,90.05,90.81,11630000,90.81
-1969-12-11,90.48,91.37,89.74,90.52,10430000,90.52
-1969-12-10,90.55,91.22,89.33,90.48,12590000,90.48
-1969-12-09,90.84,91.79,89.93,90.55,12290000,90.55
-1969-12-08,91.73,92.05,90.29,90.84,9990000,90.84
-1969-12-05,91.95,92.91,91.14,91.73,11150000,91.73
-1969-12-04,91.65,92.45,90.36,91.95,13230000,91.95
-1969-12-03,92.65,93.05,91.25,91.65,11300000,91.65
-1969-12-02,93.22,93.54,91.95,92.65,9940000,92.65
-1969-12-01,93.81,94.47,92.78,93.22,9950000,93.22
-1969-11-28,93.27,94.41,92.88,93.81,8550000,93.81
-1969-11-26,92.94,93.85,92.24,93.27,10630000,93.27
-1969-11-25,93.24,94.17,92.38,92.94,11560000,92.94
-1969-11-24,94.32,94.43,92.63,93.24,10940000,93.24
-1969-11-21,94.91,95.34,93.87,94.32,9840000,94.32
-1969-11-20,95.90,95.94,94.12,94.91,12010000,94.91
-1969-11-19,96.39,96.95,95.36,95.90,11240000,95.90
-1969-11-18,96.41,97.00,95.57,96.39,11010000,96.39
-1969-11-17,97.07,97.36,95.82,96.41,10120000,96.41
-1969-11-14,97.42,97.44,96.36,97.07,10580000,97.07
-1969-11-13,97.89,98.34,96.54,97.42,12090000,97.42
-1969-11-12,98.07,98.72,97.28,97.89,12480000,97.89
-1969-11-11,98.33,98.79,97.45,98.07,10080000,98.07
-1969-11-10,98.26,99.23,97.65,98.33,12490000,98.33
-1969-11-07,97.67,99.01,97.18,98.26,13280000,98.26
-1969-11-06,97.64,98.31,96.80,97.67,11110000,97.67
-1969-11-05,97.21,98.39,96.75,97.64,12110000,97.64
-1969-11-04,97.15,97.82,95.84,97.21,12340000,97.21
-1969-11-03,97.12,97.82,96.19,97.15,11140000,97.15
-1969-10-31,96.93,98.03,96.33,97.12,13100000,97.12
-1969-10-30,96.81,97.47,95.61,96.93,12820000,96.93
-1969-10-29,97.66,97.92,96.26,96.81,12380000,96.81
-1969-10-28,97.97,98.55,97.02,97.66,12410000,97.66
-1969-10-27,98.12,98.78,97.49,97.97,12160000,97.97
-1969-10-24,97.46,98.83,96.97,98.12,15430000,98.12
-1969-10-23,97.83,98.39,96.46,97.46,14780000,97.46
-1969-10-22,97.20,98.61,96.56,97.83,19320000,97.83
-1969-10-21,96.46,97.84,95.86,97.20,16460000,97.20
-1969-10-20,96.26,97.17,95.29,96.46,13540000,96.46
-1969-10-17,96.37,97.24,95.38,96.26,13740000,96.26
-1969-10-16,95.72,97.54,95.05,96.37,19500000,96.37
-1969-10-15,95.70,96.56,94.65,95.72,15740000,95.72
-1969-10-14,94.55,96.53,94.32,95.70,19950000,95.70
-1969-10-13,93.56,94.86,93.20,94.55,13620000,94.55
-1969-10-10,93.03,94.19,92.60,93.56,12210000,93.56
-1969-10-09,92.67,93.55,91.75,93.03,10420000,93.03
-1969-10-08,93.09,93.56,92.04,92.67,10370000,92.67
-1969-10-07,93.38,94.03,92.59,93.09,10050000,93.09
-1969-10-06,93.19,93.99,92.50,93.38,9180000,93.38
-1969-10-03,93.24,94.39,92.65,93.19,12410000,93.19
-1969-10-02,92.52,93.63,91.66,93.24,11430000,93.24
-1969-10-01,93.12,93.51,92.12,92.52,9090000,92.52
-1969-09-30,93.41,94.05,92.55,93.12,9180000,93.12
-1969-09-29,94.16,94.45,92.62,93.41,10170000,93.41
-1969-09-26,94.77,95.23,93.53,94.16,9680000,94.16
-1969-09-25,95.50,95.92,94.28,94.77,10690000,94.77
-1969-09-24,95.63,96.20,94.75,95.50,11320000,95.50
-1969-09-23,95.63,96.62,94.86,95.63,13030000,95.63
-1969-09-22,95.19,96.13,94.58,95.63,9280000,95.63
-1969-09-19,94.90,95.92,94.35,95.19,12270000,95.19
-1969-09-18,94.76,95.53,94.05,94.90,11170000,94.90
-1969-09-17,94.95,95.70,94.04,94.76,10980000,94.76
-1969-09-16,94.87,95.73,94.06,94.95,11160000,94.95
-1969-09-15,94.13,95.61,93.73,94.87,10680000,94.87
-1969-09-12,94.22,95.04,93.26,94.13,10800000,94.13
-1969-09-11,94.95,95.77,93.72,94.22,12370000,94.22
-1969-09-10,93.38,95.35,93.23,94.95,11490000,94.95
-1969-09-09,92.70,93.94,91.77,93.38,10980000,93.38
-1969-09-08,93.64,93.76,92.35,92.70,8310000,92.70
-1969-09-05,94.20,94.51,93.09,93.64,8890000,93.64
-1969-09-04,94.98,95.20,93.66,94.20,9380000,94.20
-1969-09-03,95.54,96.11,94.38,94.98,8760000,94.98
-1969-09-02,95.51,96.31,94.85,95.54,8560000,95.54
-1969-08-29,94.89,95.51,94.46,95.51,8850000,95.51
-1969-08-28,94.49,95.38,94.04,94.89,7730000,94.89
-1969-08-27,94.30,95.16,93.76,94.49,9100000,94.49
-1969-08-26,94.93,95.04,93.65,94.30,8910000,94.30
-1969-08-25,95.92,96.13,94.52,94.93,8410000,94.93
-1969-08-22,95.35,96.43,94.91,95.92,10140000,95.92
-1969-08-21,95.07,95.87,94.56,95.35,8420000,95.35
-1969-08-20,95.07,95.64,94.25,95.07,9680000,95.07
-1969-08-19,94.57,95.18,93.95,95.07,12640000,95.07
-1969-08-18,94.00,95.00,93.51,94.57,9420000,94.57
-1969-08-15,93.34,94.50,92.92,94.00,10210000,94.00
-1969-08-14,92.70,93.87,92.32,93.34,9690000,93.34
-1969-08-13,92.63,93.26,91.48,92.70,9910000,92.70
-1969-08-12,93.36,93.66,92.19,92.63,7870000,92.63
-1969-08-11,93.94,94.24,92.77,93.36,6680000,93.36
-1969-08-08,93.99,94.63,93.29,93.94,8760000,93.94
-1969-08-07,93.92,94.77,93.17,93.99,9450000,93.99
-1969-08-06,93.41,94.76,93.02,93.92,11100000,93.92
-1969-08-05,92.99,94.02,92.13,93.41,8940000,93.41
-1969-08-04,93.47,94.42,92.29,92.99,10700000,92.99
-1969-08-01,91.92,94.19,91.92,93.47,15070000,93.47
-1969-07-31,89.96,92.40,89.96,91.83,14160000,91.83
-1969-07-30,89.48,90.82,88.04,89.93,15580000,89.93
-1969-07-29,90.21,91.56,89.06,89.48,13630000,89.48
-1969-07-28,91.91,91.91,89.83,90.21,11800000,90.21
-1969-07-25,92.80,93.28,91.54,92.06,9800000,92.06
-1969-07-24,93.12,93.87,92.29,92.80,9750000,92.80
-1969-07-23,93.52,93.99,92.07,93.12,11680000,93.12
-1969-07-22,94.95,95.45,93.15,93.52,9780000,93.52
-1969-07-18,95.76,95.84,94.18,94.95,8590000,94.95
-1969-07-17,95.18,96.71,95.07,95.76,10450000,95.76
-1969-07-16,94.24,95.83,94.22,95.18,10470000,95.18
-1969-07-15,94.55,95.00,93.11,94.24,11110000,94.24
-1969-07-14,95.77,96.17,94.20,94.55,8310000,94.55
-1969-07-11,95.38,96.65,94.81,95.77,11730000,95.77
-1969-07-10,96.88,97.04,95.03,95.38,11450000,95.38
-1969-07-09,97.63,97.85,96.33,96.88,9320000,96.88
-1969-07-08,98.98,98.98,97.15,97.63,9320000,97.63
-1969-07-07,99.61,100.33,98.45,99.03,9970000,99.03
-1969-07-03,98.94,100.25,98.62,99.61,10110000,99.61
-1969-07-02,98.08,99.50,97.81,98.94,11350000,98.94
-1969-07-01,97.71,98.66,97.13,98.08,9890000,98.08
-1969-06-30,97.33,98.64,96.82,97.71,8640000,97.71
-1969-06-27,97.25,98.15,96.65,97.33,9020000,97.33
-1969-06-26,97.01,97.91,95.97,97.25,10310000,97.25
-1969-06-25,97.32,98.30,96.56,97.01,10490000,97.01
-1969-06-24,96.29,98.04,96.29,97.32,11460000,97.32
-1969-06-23,96.67,97.17,95.21,96.23,12900000,96.23
-1969-06-20,97.24,98.22,96.29,96.67,11360000,96.67
-1969-06-19,97.81,98.38,96.61,97.24,11160000,97.24
-1969-06-18,97.95,99.20,97.45,97.81,11290000,97.81
-1969-06-17,98.32,98.71,96.88,97.95,12210000,97.95
-1969-06-16,98.65,99.64,97.91,98.32,10400000,98.32
-1969-06-13,98.26,99.51,97.59,98.65,13070000,98.65
-1969-06-12,99.05,99.78,97.96,98.26,11790000,98.26
-1969-06-11,100.42,100.71,99.02,99.05,13640000,99.05
-1969-06-10,101.20,101.76,100.02,100.42,10660000,100.42
-1969-06-09,102.12,102.16,100.54,101.20,10650000,101.20
-1969-06-06,102.76,103.41,101.68,102.12,12520000,102.12
-1969-06-05,102.59,103.45,102.05,102.76,12350000,102.76
-1969-06-04,102.63,103.45,102.07,102.59,10840000,102.59
-1969-06-03,102.94,103.60,102.09,102.63,11190000,102.63
-1969-06-02,103.46,103.75,102.40,102.94,9180000,102.94
-1969-05-29,103.26,104.27,102.76,103.46,11770000,103.46
-1969-05-28,103.57,103.91,102.29,103.26,11330000,103.26
-1969-05-27,104.36,104.68,103.12,103.57,10580000,103.57
-1969-05-26,104.59,105.14,103.80,104.36,9030000,104.36
-1969-05-23,104.60,105.32,103.78,104.59,10900000,104.59
-1969-05-22,104.47,105.66,103.92,104.60,13710000,104.60
-1969-05-21,104.04,105.03,103.37,104.47,12100000,104.47
-1969-05-20,104.97,105.16,103.56,104.04,10280000,104.04
-1969-05-19,105.94,106.15,104.52,104.97,9790000,104.97
-1969-05-16,105.85,106.59,105.18,105.94,12280000,105.94
-1969-05-15,106.16,106.69,105.08,105.85,11930000,105.85
-1969-05-14,105.34,106.74,105.07,106.16,14360000,106.16
-1969-05-13,104.89,105.91,104.31,105.34,12910000,105.34
-1969-05-12,105.05,105.65,104.12,104.89,10550000,104.89
-1969-05-09,105.10,106.01,104.35,105.05,12530000,105.05
-1969-05-08,104.67,105.74,104.10,105.10,13050000,105.10
-1969-05-07,104.86,105.59,103.83,104.67,14030000,104.67
-1969-05-06,104.37,105.50,103.84,104.86,14700000,104.86
-1969-05-05,104.00,105.08,103.48,104.37,13300000,104.37
-1969-05-02,103.51,104.63,102.98,104.00,13070000,104.00
-1969-05-01,103.69,104.59,102.74,103.51,14380000,103.51
-1969-04-30,102.79,104.56,102.50,103.69,19350000,103.69
-1969-04-29,102.03,103.31,101.51,102.79,14730000,102.79
-1969-04-28,101.72,102.65,100.97,102.03,11120000,102.03
-1969-04-25,101.27,102.29,100.81,101.72,12480000,101.72
-1969-04-24,100.80,101.80,100.21,101.27,11340000,101.27
-1969-04-23,100.78,101.77,100.15,100.80,12220000,100.80
-1969-04-22,100.56,101.29,99.52,100.78,10250000,100.78
-1969-04-21,101.24,101.68,100.11,100.56,10010000,100.56
-1969-04-18,100.78,102.09,100.30,101.24,10850000,101.24
-1969-04-17,100.63,101.41,99.99,100.78,9360000,100.78
-1969-04-16,101.53,101.78,100.16,100.63,9680000,100.63
-1969-04-15,101.57,102.15,100.76,101.53,9610000,101.53
-1969-04-14,101.65,102.40,101.02,101.57,8990000,101.57
-1969-04-11,101.55,102.28,100.97,101.65,10650000,101.65
-1969-04-10,101.02,102.22,100.73,101.55,12200000,101.55
-1969-04-09,100.14,101.44,99.88,101.02,12530000,101.02
-1969-04-08,99.89,101.27,99.35,100.14,9360000,100.14
-1969-04-07,100.63,100.63,99.08,99.89,9430000,99.89
-1969-04-03,100.78,101.30,99.87,100.68,10300000,100.68
-1969-04-02,101.42,101.65,100.61,100.78,10110000,100.78
-1969-04-01,101.51,102.45,100.84,101.42,12360000,101.42
-1969-03-28,101.10,102.35,100.73,101.51,12430000,101.51
-1969-03-27,100.39,101.81,100.03,101.10,11900000,101.10
-1969-03-26,99.66,100.86,99.24,100.39,11030000,100.39
-1969-03-25,99.50,100.30,98.88,99.66,9820000,99.66
-1969-03-24,99.63,100.16,98.85,99.50,8110000,99.50
-1969-03-21,99.84,100.37,98.88,99.63,9830000,99.63
-1969-03-20,99.21,100.39,98.90,99.84,10260000,99.84
-1969-03-19,98.49,99.70,98.03,99.21,9740000,99.21
-1969-03-18,98.25,99.41,97.83,98.49,11210000,98.49
-1969-03-17,98.00,98.71,97.06,98.25,9150000,98.25
-1969-03-14,98.39,98.70,97.40,98.00,8640000,98.00
-1969-03-13,99.05,99.35,97.82,98.39,10030000,98.39
-1969-03-12,99.32,99.87,98.35,99.05,8720000,99.05
-1969-03-11,98.99,100.14,98.58,99.32,9870000,99.32
-1969-03-10,98.65,99.47,97.87,98.99,8920000,98.99
-1969-03-07,98.70,99.13,97.32,98.65,10830000,98.65
-1969-03-06,99.71,99.93,98.11,98.70,9670000,98.70
-1969-03-05,99.32,100.48,98.95,99.71,11370000,99.71
-1969-03-04,98.38,99.76,98.17,99.32,9320000,99.32
-1969-03-03,98.13,99.08,97.61,98.38,8260000,98.38
-1969-02-28,98.14,99.02,97.53,98.13,8990000,98.13
-1969-02-27,98.45,99.00,97.50,98.14,9670000,98.14
-1969-02-26,97.98,99.10,97.36,98.45,9540000,98.45
-1969-02-25,98.60,99.65,97.50,97.98,9540000,97.98
-1969-02-24,99.79,100.07,98.09,98.60,12730000,98.60
-1969-02-20,100.65,101.03,99.29,99.79,10990000,99.79
-1969-02-19,101.40,102.07,100.30,100.65,10390000,100.65
-1969-02-18,102.27,102.27,100.58,101.40,12490000,101.40
-1969-02-17,103.61,104.03,102.04,102.44,11670000,102.44
-1969-02-14,103.71,104.37,102.88,103.61,11460000,103.61
-1969-02-13,103.63,104.36,102.86,103.71,12010000,103.71
-1969-02-12,103.65,104.34,102.98,103.63,11530000,103.63
-1969-02-11,103.53,104.61,102.96,103.65,12320000,103.65
-1969-02-07,103.54,104.22,102.50,103.53,12780000,103.53
-1969-02-06,103.20,104.30,102.55,103.54,12570000,103.54
-1969-02-05,102.92,103.84,102.26,103.20,13750000,103.20
-1969-02-04,102.89,103.59,102.15,102.92,12550000,102.92
-1969-02-03,103.01,103.75,102.04,102.89,12510000,102.89
-1969-01-31,102.55,103.64,102.08,103.01,12020000,103.01
-1969-01-30,102.51,103.33,101.73,102.55,13010000,102.55
-1969-01-29,102.41,103.31,101.69,102.51,11470000,102.51
-1969-01-28,102.40,103.30,101.56,102.41,12070000,102.41
-1969-01-27,102.38,103.15,101.64,102.40,11020000,102.40
-1969-01-24,102.43,103.23,101.71,102.38,12520000,102.38
-1969-01-23,101.98,103.21,101.57,102.43,13140000,102.43
-1969-01-22,101.63,102.55,101.06,101.98,11480000,101.98
-1969-01-21,101.69,102.40,100.88,101.63,10910000,101.63
-1969-01-20,102.03,102.60,101.00,101.69,10950000,101.69
-1969-01-17,102.18,103.06,101.32,102.03,11590000,102.03
-1969-01-16,101.62,103.25,101.27,102.18,13120000,102.18
-1969-01-15,101.13,102.48,100.78,101.62,11810000,101.62
-1969-01-14,100.44,101.63,99.04,101.13,10700000,101.13
-1969-01-13,100.93,101.35,96.63,100.44,11160000,100.44
-1969-01-10,101.22,102.14,100.32,100.93,12680000,100.93
-1969-01-09,100.80,102.09,100.35,101.22,12100000,101.22
-1969-01-08,101.22,102.12,100.14,100.80,13840000,100.80
-1969-01-07,102.47,102.68,100.15,101.22,15740000,101.22
-1969-01-06,103.99,104.36,101.94,102.47,12720000,102.47
-1969-01-03,103.93,104.87,103.17,103.99,12750000,103.99
-1969-01-02,103.86,104.85,103.21,103.93,9800000,103.93
-1968-12-31,103.80,104.61,102.98,103.86,13130000,103.86
-1968-12-30,104.74,104.99,103.09,103.80,12080000,103.80
-1968-12-27,105.15,105.87,104.20,104.74,11200000,104.74
-1968-12-26,105.04,106.03,104.29,105.15,9670000,105.15
-1968-12-24,105.21,105.95,104.37,105.04,11540000,105.04
-1968-12-23,106.34,106.68,104.61,105.21,12970000,105.21
-1968-12-20,106.97,107.98,105.73,106.34,15910000,106.34
-1968-12-19,106.66,107.67,105.10,106.97,19630000,106.97
-1968-12-17,107.10,107.65,105.86,106.66,14700000,106.66
-1968-12-16,107.58,108.40,106.40,107.10,15950000,107.10
-1968-12-13,107.32,108.50,106.56,107.58,16740000,107.58
-1968-12-12,107.39,108.43,106.33,107.32,18160000,107.32
-1968-12-10,107.66,108.33,106.68,107.39,14500000,107.39
-1968-12-09,107.93,108.77,106.89,107.66,15800000,107.66
-1968-12-06,107.67,108.91,106.85,107.93,15320000,107.93
-1968-12-05,108.02,108.90,106.71,107.67,19330000,107.67
-1968-12-03,108.12,108.74,107.02,108.02,15460000,108.02
-1968-12-02,108.37,109.37,107.15,108.12,15390000,108.12
-1968-11-29,107.76,109.09,107.32,108.37,14390000,108.37
-1968-11-27,107.26,108.55,106.59,107.76,16550000,107.76
-1968-11-26,106.48,107.93,106.11,107.26,16360000,107.26
-1968-11-25,106.30,107.29,105.47,106.48,14490000,106.48
-1968-11-22,105.97,106.89,105.21,106.30,15420000,106.30
-1968-11-21,106.14,106.77,104.85,105.97,18320000,105.97
-1968-11-19,105.92,106.84,105.06,106.14,15120000,106.14
-1968-11-18,105.78,106.74,105.05,105.92,14390000,105.92
-1968-11-15,105.20,106.44,104.61,105.78,15040000,105.78
-1968-11-14,105.13,106.01,104.34,105.20,14900000,105.20
-1968-11-13,104.62,105.76,104.08,105.13,15660000,105.13
-1968-11-12,103.95,105.28,103.51,104.62,17250000,104.62
-1968-11-08,103.50,104.59,102.96,103.95,14250000,103.95
-1968-11-07,103.27,104.47,102.31,103.50,11660000,103.50
-1968-11-06,103.10,104.41,102.45,103.27,12640000,103.27
-1968-11-04,103.06,103.69,101.85,103.10,10930000,103.10
-1968-11-01,103.41,104.30,102.36,103.06,14480000,103.06
-1968-10-31,103.30,104.57,102.43,103.41,17650000,103.41
-1968-10-29,103.90,104.50,102.65,103.30,12340000,103.30
-1968-10-28,104.20,104.89,103.16,103.90,11740000,103.90
-1968-10-25,103.84,104.81,103.14,104.20,14150000,104.20
-1968-10-24,104.57,105.15,103.15,103.84,18300000,103.84
-1968-10-22,104.99,105.48,103.84,104.57,13970000,104.57
-1968-10-21,104.82,105.78,104.09,104.99,14380000,104.99
-1968-10-18,104.01,105.34,103.54,104.82,15130000,104.82
-1968-10-17,103.81,105.01,103.81,104.01,21060000,104.01
-1968-10-15,103.32,104.25,102.66,103.53,13410000,103.53
-1968-10-14,103.18,104.03,102.48,103.32,11980000,103.32
-1968-10-11,103.29,103.90,102.39,103.18,12650000,103.18
-1968-10-10,103.74,104.30,102.61,103.29,17000000,103.29
-1968-10-08,103.70,104.45,102.84,103.74,14000000,103.74
-1968-10-07,103.71,104.40,102.93,103.70,12420000,103.70
-1968-10-04,103.22,104.35,102.65,103.71,15350000,103.71
-1968-10-03,102.86,104.13,102.34,103.22,21110000,103.22
-1968-10-01,102.67,103.58,101.80,102.86,15560000,102.86
-1968-09-30,102.31,103.29,101.71,102.67,13610000,102.67
-1968-09-27,102.36,103.07,101.36,102.31,13860000,102.31
-1968-09-26,102.59,103.63,101.59,102.36,18950000,102.36
-1968-09-24,102.24,103.21,101.59,102.59,15210000,102.59
-1968-09-23,101.66,102.82,101.20,102.24,11550000,102.24
-1968-09-20,101.59,102.37,100.81,101.66,14190000,101.66
-1968-09-19,101.50,102.53,100.84,101.59,17910000,101.59
-1968-09-17,101.24,102.18,100.64,101.50,13920000,101.50
-1968-09-16,100.86,102.01,100.33,101.24,13260000,101.24
-1968-09-13,100.52,101.53,99.89,100.86,13070000,100.86
-1968-09-12,100.73,101.40,99.70,100.52,14630000,100.52
-1968-09-10,101.23,101.81,100.12,100.73,11430000,100.73
-1968-09-09,101.20,102.09,100.47,101.23,11890000,101.23
-1968-09-06,100.74,101.88,100.23,101.20,13180000,101.20
-1968-09-05,100.02,101.34,99.63,100.74,12980000,100.74
-1968-09-04,99.32,100.49,98.95,100.02,10040000,100.02
-1968-09-03,98.86,99.89,98.31,99.32,8620000,99.32
-1968-08-30,98.74,99.52,98.20,98.86,8190000,98.86
-1968-08-29,98.81,99.49,97.90,98.74,10940000,98.74
-1968-08-27,98.94,99.61,98.16,98.81,9710000,98.81
-1968-08-26,98.69,99.67,98.29,98.94,9740000,98.94
-1968-08-23,98.70,99.57,97.71,98.69,9890000,98.69
-1968-08-22,98.96,99.58,97.71,98.70,15140000,98.70
-1968-08-20,99.00,99.65,98.08,98.96,10640000,98.96
-1968-08-19,98.68,99.64,98.16,99.00,9900000,99.00
-1968-08-16,98.07,99.21,97.62,98.68,9940000,98.68
-1968-08-15,98.53,99.36,97.48,98.07,12710000,98.07
-1968-08-13,98.01,99.20,97.68,98.53,12730000,98.53
-1968-08-12,97.01,98.49,96.72,98.01,10420000,98.01
-1968-08-09,97.04,97.56,96.11,97.01,8390000,97.01
-1968-08-08,97.25,98.32,96.58,97.04,12920000,97.04
-1968-08-06,96.85,97.82,96.42,97.25,9620000,97.25
-1968-08-05,96.63,97.51,95.95,96.85,8850000,96.85
-1968-08-02,97.28,97.47,95.79,96.63,9860000,96.63
-1968-08-01,97.74,98.82,96.78,97.28,14380000,97.28
-1968-07-30,97.65,98.62,96.84,97.74,10250000,97.74
-1968-07-29,98.34,98.78,96.89,97.65,10940000,97.65
-1968-07-26,97.94,99.14,97.22,98.34,11690000,98.34
-1968-07-25,99.21,100.07,97.43,97.94,16140000,97.94
-1968-07-23,99.33,99.93,97.89,99.21,13570000,99.21
-1968-07-22,100.46,100.88,98.51,99.33,13530000,99.33
-1968-07-19,101.44,101.82,99.80,100.46,14620000,100.46
-1968-07-18,101.70,102.65,100.49,101.44,17420000,101.44
-1968-07-16,102.26,102.72,100.97,101.70,13380000,101.70
-1968-07-15,102.34,103.15,101.44,102.26,13390000,102.26
-1968-07-12,102.39,103.24,101.39,102.34,14810000,102.34
-1968-07-11,102.23,103.67,101.41,102.39,20290000,102.39
-1968-07-09,101.94,102.93,101.19,102.23,16540000,102.23
-1968-07-08,100.91,102.76,100.72,101.94,16860000,101.94
-1968-07-03,99.74,101.36,99.60,100.91,14390000,100.91
-1968-07-02,99.40,100.60,98.60,99.74,13350000,99.74
-1968-07-01,99.58,100.33,98.77,99.40,11280000,99.40
-1968-06-28,99.98,100.63,98.91,99.58,12040000,99.58
-1968-06-27,100.08,101.01,99.11,99.98,15370000,99.98
-1968-06-25,100.39,101.10,99.28,100.08,13200000,100.08
-1968-06-24,100.66,101.48,99.66,100.39,12320000,100.39
-1968-06-21,101.51,101.59,99.80,100.66,13450000,100.66
-1968-06-20,99.99,101.60,99.52,101.51,16290000,101.51
-1968-06-18,100.13,101.09,99.43,99.99,13630000,99.99
-1968-06-17,101.13,101.71,99.43,100.13,12570000,100.13
-1968-06-14,101.25,101.82,99.98,101.13,14690000,101.13
-1968-06-13,101.66,102.84,100.55,101.25,21350000,101.25
-1968-06-11,101.41,102.40,100.74,101.66,15700000,101.66
-1968-06-10,101.27,102.25,100.42,101.41,14640000,101.41
-1968-06-07,100.65,101.89,100.24,101.27,17320000,101.27
-1968-06-06,99.89,101.59,99.50,100.65,16130000,100.65
-1968-06-05,100.38,101.13,99.26,99.89,15590000,99.89
-1968-06-04,99.99,101.26,99.32,100.38,18030000,100.38
-1968-06-03,98.72,100.62,98.72,99.99,14970000,99.99
-1968-05-31,97.92,99.40,97.66,98.68,13090000,98.68
-1968-05-29,97.62,98.74,97.01,97.92,14100000,97.92
-1968-05-28,96.99,98.20,96.41,97.62,13850000,97.62
-1968-05-27,97.15,97.81,96.29,96.99,12720000,96.99
-1968-05-24,96.97,97.73,96.21,97.15,13300000,97.15
-1968-05-23,97.18,97.79,96.38,96.97,12840000,96.97
-1968-05-22,96.93,98.17,96.47,97.18,14200000,97.18
-1968-05-21,96.45,97.52,95.92,96.93,13160000,96.93
-1968-05-20,96.90,97.41,95.80,96.45,11180000,96.45
-1968-05-17,97.60,97.81,96.11,96.90,11830000,96.90
-1968-05-16,98.07,98.69,97.05,97.60,13030000,97.60
-1968-05-15,98.12,98.79,97.32,98.07,13180000,98.07
-1968-05-14,98.19,98.85,97.33,98.12,13160000,98.12
-1968-05-13,98.50,99.10,97.52,98.19,11860000,98.19
-1968-05-10,98.39,99.30,97.76,98.50,11700000,98.50
-1968-05-09,98.91,99.47,97.68,98.39,12890000,98.39
-1968-05-08,98.90,99.74,98.25,98.91,13120000,98.91
-1968-05-07,98.35,99.59,97.86,98.90,13920000,98.90
-1968-05-06,98.66,99.11,97.27,98.35,12160000,98.35
-1968-05-03,98.59,100.19,97.98,98.66,17990000,98.66
-1968-05-02,97.97,99.18,97.53,98.59,14260000,98.59
-1968-05-01,97.46,98.61,96.84,97.97,14440000,97.97
-1968-04-30,97.97,98.17,96.58,97.46,14380000,97.46
-1968-04-29,97.21,98.61,96.81,97.97,12030000,97.97
-1968-04-26,96.62,97.83,96.22,97.21,13500000,97.21
-1968-04-25,96.92,97.48,95.68,96.62,14430000,96.62
-1968-04-24,96.62,97.81,95.98,96.92,14810000,96.92
-1968-04-23,95.68,97.48,95.68,96.62,14010000,96.62
-1968-04-22,95.85,96.07,94.22,95.32,11720000,95.32
-1968-04-19,97.08,97.08,95.15,95.85,14560000,95.85
-1968-04-18,96.81,97.89,96.12,97.08,15890000,97.08
-1968-04-17,96.62,97.40,95.76,96.81,14090000,96.81
-1968-04-16,96.59,97.54,95.72,96.62,15680000,96.62
-1968-04-15,96.53,97.36,95.33,96.59,14220000,96.59
-1968-04-11,95.67,96.93,94.81,96.53,14230000,96.53
-1968-04-10,94.95,97.11,94.74,95.67,20410000,95.67
-1968-04-08,93.29,95.45,93.11,94.95,13010000,94.95
-1968-04-05,93.84,94.51,92.67,93.29,12570000,93.29
-1968-04-04,93.47,94.59,92.63,93.84,14340000,93.84
-1968-04-03,92.64,95.13,92.24,93.47,19290000,93.47
-1968-04-02,92.48,93.44,91.39,92.64,14520000,92.64
-1968-04-01,91.11,93.55,91.11,92.48,17730000,92.48
-1968-03-29,89.57,90.92,89.21,90.20,9000000,90.20
-1968-03-28,89.66,90.40,89.05,89.57,8000000,89.57
-1968-03-27,88.93,90.20,88.88,89.66,8970000,89.66
-1968-03-26,88.33,89.50,88.10,88.93,8670000,88.93
-1968-03-25,88.42,88.88,87.65,88.33,6700000,88.33
-1968-03-22,88.33,89.14,87.50,88.42,9900000,88.42
-1968-03-21,88.98,89.48,88.05,88.33,8580000,88.33
-1968-03-20,88.99,89.65,88.48,88.98,7390000,88.98
-1968-03-19,89.59,90.05,88.61,88.99,7410000,88.99
-1968-03-18,89.11,91.09,89.11,89.59,10800000,89.59
-1968-03-15,88.32,89.75,87.61,89.10,11210000,89.10
-1968-03-14,89.75,89.75,87.81,88.32,11640000,88.32
-1968-03-13,90.23,90.71,89.40,90.03,8990000,90.03
-1968-03-12,90.13,90.78,89.39,90.23,9250000,90.23
-1968-03-11,89.03,90.56,88.81,90.13,9520000,90.13
-1968-03-08,89.10,89.57,88.23,89.03,7410000,89.03
-1968-03-07,89.26,89.98,88.44,89.10,8630000,89.10
-1968-03-06,87.72,89.76,87.64,89.26,9900000,89.26
-1968-03-05,87.92,88.72,86.99,87.72,11440000,87.72
-1968-03-04,89.11,89.33,87.52,87.92,10590000,87.92
-1968-03-01,89.36,89.82,88.58,89.11,8610000,89.11
-1968-02-29,90.08,90.24,88.93,89.36,7700000,89.36
-1968-02-28,90.53,91.19,89.71,90.08,8020000,90.08
-1968-02-27,90.18,90.91,89.56,90.53,7600000,90.53
-1968-02-26,90.89,91.08,89.67,90.18,7810000,90.18
-1968-02-23,91.24,91.80,90.28,90.89,8810000,90.89
-1968-02-21,91.24,91.87,90.54,91.24,9170000,91.24
-1968-02-20,90.31,91.34,89.95,91.24,8800000,91.24
-1968-02-19,89.96,90.87,89.42,90.31,7270000,90.31
-1968-02-16,90.30,90.62,89.28,89.96,9070000,89.96
-1968-02-15,90.30,90.30,90.30,90.30,9770000,90.30
-1968-02-14,89.07,90.60,88.66,90.14,11390000,90.14
-1968-02-13,89.86,90.46,86.73,89.07,10830000,89.07
-1968-02-09,90.90,91.00,89.23,89.86,11850000,89.86
-1968-02-08,92.06,92.40,90.60,90.90,9660000,90.90
-1968-02-07,91.90,92.74,91.48,92.06,8380000,92.06
-1968-02-06,91.87,92.52,91.15,91.90,8560000,91.90
-1968-02-05,92.27,92.72,91.24,91.87,8980000,91.87
-1968-02-02,92.56,93.44,91.69,92.27,10120000,92.27
-1968-02-01,92.24,93.14,91.57,92.56,10590000,92.56
-1968-01-31,92.89,93.26,91.27,92.24,9410000,92.24
-1968-01-30,93.35,93.71,92.18,92.89,10110000,92.89
-1968-01-29,93.45,94.38,92.71,93.35,9950000,93.35
-1968-01-26,93.30,94.34,92.77,93.45,9980000,93.45
-1968-01-25,93.17,94.11,91.96,93.30,12410000,93.30
-1968-01-24,93.66,94.12,92.45,93.17,10570000,93.17
-1968-01-23,94.03,94.66,92.88,93.66,11030000,93.66
-1968-01-22,95.24,95.40,93.55,94.03,10630000,94.03
-1968-01-19,95.56,96.22,94.60,95.24,11950000,95.24
-1968-01-18,95.64,96.66,95.01,95.56,13840000,95.56
-1968-01-17,95.82,96.41,94.78,95.64,12910000,95.64
-1968-01-16,96.42,96.91,95.32,95.82,12340000,95.82
-1968-01-15,96.72,97.46,95.85,96.42,12640000,96.42
-1968-01-12,96.62,97.44,95.87,96.72,13080000,96.72
-1968-01-11,96.52,97.82,95.88,96.62,13220000,96.62
-1968-01-10,96.50,97.26,95.66,96.52,11670000,96.52
-1968-01-09,96.62,97.84,95.89,96.50,13720000,96.50
-1968-01-08,95.94,97.40,95.54,96.62,14260000,96.62
-1968-01-05,95.36,96.66,94.97,95.94,11880000,95.94
-1968-01-04,95.67,96.23,94.31,95.36,13440000,95.36
-1968-01-03,96.11,96.95,95.04,95.67,12650000,95.67
-1968-01-02,96.47,97.33,95.31,96.11,11080000,96.11
-1967-12-29,95.89,96.90,95.85,96.47,14950000,96.47
-1967-12-28,95.91,96.65,94.91,95.89,12530000,95.89
-1967-12-27,95.26,96.42,94.82,95.91,12690000,95.91
-1967-12-26,95.20,96.02,94.61,95.26,9150000,95.26
-1967-12-22,95.38,96.11,94.61,95.20,9570000,95.20
-1967-12-21,95.15,96.25,94.69,95.38,11010000,95.38
-1967-12-20,94.63,95.75,94.17,95.15,11390000,95.15
-1967-12-19,94.77,95.41,94.00,94.63,10610000,94.63
-1967-12-18,95.03,95.88,94.17,94.77,10320000,94.77
-1967-12-15,95.47,96.20,94.51,95.03,11530000,95.03
-1967-12-14,95.34,96.35,94.85,95.47,12310000,95.47
-1967-12-13,95.01,96.00,94.58,95.34,12480000,95.34
-1967-12-12,95.12,95.78,94.34,95.01,10860000,95.01
-1967-12-11,95.42,95.99,94.50,95.12,10500000,95.12
-1967-12-08,95.53,96.25,94.78,95.42,10710000,95.42
-1967-12-07,95.64,96.67,95.04,95.53,12490000,95.53
-1967-12-06,95.23,96.16,94.10,95.64,11940000,95.64
-1967-12-05,95.10,96.27,94.52,95.23,12940000,95.23
-1967-12-04,94.50,95.68,94.09,95.10,11740000,95.10
-1967-12-01,94.00,94.95,93.41,94.50,9740000,94.50
-1967-11-30,94.47,94.94,93.49,94.00,8860000,94.00
-1967-11-29,94.49,95.51,93.85,94.47,11400000,94.47
-1967-11-28,94.17,95.08,93.57,94.49,11040000,94.49
-1967-11-27,93.90,94.80,93.32,94.17,10040000,94.17
-1967-11-24,93.65,94.46,92.74,93.90,9470000,93.90
-1967-11-22,93.10,94.41,92.70,93.65,12180000,93.65
-1967-11-21,91.65,93.71,91.64,93.10,12300000,93.10
-1967-11-20,92.38,92.38,90.09,91.65,12750000,91.65
-1967-11-17,92.60,93.62,92.02,92.82,10050000,92.82
-1967-11-16,91.76,93.28,91.50,92.60,10570000,92.60
-1967-11-15,91.39,92.25,90.44,91.76,10000000,91.76
-1967-11-14,91.97,92.49,90.81,91.39,10350000,91.39
-1967-11-13,92.21,93.23,91.46,91.97,10130000,91.97
-1967-11-10,91.59,92.84,91.29,92.21,9960000,92.21
-1967-11-09,91.14,92.25,90.61,91.59,8890000,91.59
-1967-11-08,91.48,93.07,90.80,91.14,12630000,91.14
-1967-11-06,91.78,92.23,90.39,91.48,10320000,91.48
-1967-11-03,92.34,92.90,91.33,91.78,8800000,91.78
-1967-11-02,92.71,93.69,91.85,92.34,10760000,92.34
-1967-11-01,93.30,94.21,92.45,92.71,10930000,92.71
-1967-10-31,94.79,95.25,93.29,93.30,12020000,93.30
-1967-10-30,94.96,95.67,94.14,94.79,10250000,94.79
-1967-10-27,94.94,95.79,94.31,94.96,9880000,94.96
-1967-10-26,94.52,95.56,93.99,94.94,9920000,94.94
-1967-10-25,94.42,95.18,93.47,94.52,10300000,94.52
-1967-10-24,94.96,95.98,94.05,94.42,11110000,94.42
-1967-10-23,95.38,95.69,93.92,94.96,9680000,94.96
-1967-10-20,95.43,96.12,94.62,95.38,9510000,95.38
-1967-10-19,95.25,96.46,94.86,95.43,11620000,95.43
-1967-10-18,95.00,95.82,94.34,95.25,10500000,95.25
-1967-10-17,95.25,95.92,94.19,95.00,10290000,95.00
-1967-10-16,96.00,96.55,94.85,95.25,9080000,95.25
-1967-10-13,95.75,96.69,95.16,96.00,9040000,96.00
-1967-10-12,96.37,96.70,95.32,95.75,7770000,95.75
-1967-10-11,96.84,97.34,95.70,96.37,11230000,96.37
-1967-10-10,97.51,98.15,96.38,96.84,12000000,96.84
-1967-10-09,97.26,98.25,96.70,97.51,11180000,97.51
-1967-10-06,96.67,97.83,96.34,97.26,9830000,97.26
-1967-10-05,96.43,97.25,95.89,96.67,8490000,96.67
-1967-10-04,96.65,97.47,95.94,96.43,11520000,96.43
-1967-10-03,96.32,97.23,95.75,96.65,10320000,96.65
-1967-10-02,96.71,97.25,95.82,96.32,9240000,96.32
-1967-09-29,96.79,97.37,96.06,96.71,9710000,96.71
-1967-09-28,96.79,97.59,96.19,96.79,10470000,96.79
-1967-09-27,96.76,97.54,96.00,96.79,8810000,96.79
-1967-09-26,97.59,98.20,96.40,96.76,10940000,96.76
-1967-09-25,97.00,98.31,96.74,97.59,10910000,97.59
-1967-09-22,96.75,97.61,96.11,97.00,11160000,97.00
-1967-09-21,96.13,97.50,95.67,96.75,11290000,96.75
-1967-09-20,96.17,96.84,95.39,96.13,10980000,96.13
-1967-09-19,96.53,97.35,95.84,96.17,11540000,96.17
-1967-09-18,96.27,97.31,95.73,96.53,11620000,96.53
-1967-09-15,96.20,96.94,95.47,96.27,10270000,96.27
-1967-09-14,95.99,97.40,95.59,96.20,12220000,96.20
-1967-09-13,94.99,96.62,94.80,95.99,12400000,95.99
-1967-09-12,94.54,95.48,94.01,94.99,9930000,94.99
-1967-09-11,94.36,95.26,93.88,94.54,9170000,94.54
-1967-09-08,94.33,95.04,93.70,94.36,9300000,94.36
-1967-09-07,94.39,94.95,93.70,94.33,8910000,94.33
-1967-09-06,94.21,95.06,93.72,94.39,9550000,94.39
-1967-09-05,93.68,94.70,93.36,94.21,8320000,94.21
-1967-09-01,93.64,94.21,93.00,93.68,7460000,93.68
-1967-08-31,93.07,94.19,92.84,93.64,8840000,93.64
-1967-08-30,92.88,93.67,92.43,93.07,7200000,93.07
-1967-08-29,92.64,93.58,92.17,92.88,6350000,92.88
-1967-08-28,92.70,93.31,92.01,92.64,6270000,92.64
-1967-08-25,93.09,93.38,92.04,92.70,7250000,92.70
-1967-08-24,93.61,94.28,92.77,93.09,7740000,93.09
-1967-08-23,93.74,94.15,92.77,93.61,8760000,93.61
-1967-08-22,94.25,94.72,93.35,93.74,7940000,93.74
-1967-08-21,94.78,95.22,93.79,94.25,8600000,94.25
-1967-08-18,94.63,95.40,94.16,94.78,8250000,94.78
-1967-08-17,94.55,95.33,94.11,94.63,8790000,94.63
-1967-08-16,94.77,95.15,93.93,94.55,8220000,94.55
-1967-08-15,94.64,95.54,94.18,94.77,8710000,94.77
-1967-08-14,95.15,95.40,94.02,94.64,7990000,94.64
-1967-08-11,95.53,95.98,94.62,95.15,8250000,95.15
-1967-08-10,95.78,96.67,95.05,95.53,9040000,95.53
-1967-08-09,95.69,96.47,95.11,95.78,10100000,95.78
-1967-08-08,95.58,96.28,95.04,95.69,8970000,95.69
-1967-08-07,95.83,96.43,95.02,95.58,10160000,95.58
-1967-08-04,95.66,96.54,95.15,95.83,11130000,95.83
-1967-08-03,95.78,96.36,94.42,95.66,13440000,95.66
-1967-08-02,95.37,96.64,95.03,95.78,13510000,95.78
-1967-08-01,94.75,95.84,94.20,95.37,12290000,95.37
-1967-07-31,94.49,95.51,94.01,94.75,10330000,94.75
-1967-07-28,94.35,95.23,93.77,94.49,10900000,94.49
-1967-07-27,94.06,95.19,93.51,94.35,12400000,94.35
-1967-07-26,93.24,94.71,93.12,94.06,11160000,94.06
-1967-07-25,93.73,94.56,93.03,93.24,9890000,93.24
-1967-07-24,94.04,94.68,92.91,93.73,9580000,93.73
-1967-07-21,93.85,94.92,93.24,94.04,11710000,94.04
-1967-07-20,93.65,94.49,93.01,93.85,11160000,93.85
-1967-07-19,93.50,94.40,92.83,93.65,12850000,93.65
-1967-07-18,92.75,94.05,92.30,93.50,12060000,93.50
-1967-07-17,92.74,93.53,92.10,92.75,10390000,92.75
-1967-07-14,92.42,93.35,91.87,92.74,10880000,92.74
-1967-07-13,92.40,93.17,91.82,92.42,10730000,92.42
-1967-07-12,92.48,93.10,91.62,92.40,11240000,92.40
-1967-07-11,92.05,93.16,91.58,92.48,12400000,92.48
-1967-07-10,91.69,92.80,91.11,92.05,12130000,92.05
-1967-07-07,91.32,92.28,90.76,91.69,11540000,91.69
-1967-07-06,91.36,92.03,90.64,91.32,10170000,91.32
-1967-07-05,90.91,91.91,90.56,91.36,9170000,91.36
-1967-07-03,90.64,91.32,90.12,90.91,6040000,90.91
-1967-06-30,90.64,90.64,90.64,90.64,7850000,90.64
-1967-06-29,90.85,90.85,90.85,90.85,9940000,90.85
-1967-06-28,91.31,91.31,91.31,91.31,9310000,91.31
-1967-06-27,91.30,91.30,91.30,91.30,8780000,91.30
-1967-06-26,91.64,91.64,91.64,91.64,9040000,91.64
-1967-06-23,92.00,92.00,92.00,92.00,9130000,92.00
-1967-06-22,91.97,91.97,91.97,91.97,9550000,91.97
-1967-06-21,92.20,92.20,92.20,92.20,9760000,92.20
-1967-06-20,92.48,92.48,92.48,92.48,10350000,92.48
-1967-06-19,92.51,92.51,92.51,92.51,8570000,92.51
-1967-06-16,92.49,93.28,91.98,92.54,10740000,92.54
-1967-06-15,92.40,93.26,91.76,92.49,11240000,92.49
-1967-06-14,92.62,93.21,91.81,92.40,10960000,92.40
-1967-06-13,92.04,93.27,91.65,92.62,11570000,92.62
-1967-06-12,91.56,92.66,91.12,92.04,10230000,92.04
-1967-06-09,91.40,92.26,90.77,91.56,9650000,91.56
-1967-06-08,90.91,91.78,90.24,91.40,8300000,91.40
-1967-06-07,90.23,91.75,89.92,90.91,10170000,90.91
-1967-06-06,88.48,90.59,88.48,90.23,9230000,90.23
-1967-06-05,89.56,89.56,87.19,88.43,11110000,88.43
-1967-06-02,90.23,90.90,89.27,89.79,8070000,89.79
-1967-06-01,89.08,90.76,88.81,90.23,9040000,90.23
-1967-05-31,90.39,90.39,88.71,89.08,8870000,89.08
-1967-05-29,90.98,91.22,89.92,90.49,6590000,90.49
-1967-05-26,91.19,91.70,90.34,90.98,7810000,90.98
-1967-05-25,90.18,91.84,90.04,91.19,8960000,91.19
-1967-05-24,91.23,91.36,89.68,90.18,10290000,90.18
-1967-05-23,91.67,92.07,90.58,91.23,9810000,91.23
-1967-05-22,92.07,92.40,90.83,91.67,9600000,91.67
-1967-05-19,92.53,92.86,91.40,92.07,10560000,92.07
-1967-05-18,92.78,93.30,91.98,92.53,10290000,92.53
-1967-05-17,93.14,93.75,92.34,92.78,9560000,92.78
-1967-05-16,92.71,93.85,92.19,93.14,10700000,93.14
-1967-05-15,93.48,93.75,92.27,92.71,8320000,92.71
-1967-05-12,93.75,94.45,92.94,93.48,10470000,93.48
-1967-05-11,93.35,94.37,92.90,93.75,10320000,93.75
-1967-05-10,93.60,94.04,92.51,93.35,10410000,93.35
-1967-05-09,94.58,95.25,93.28,93.60,10830000,93.60
-1967-05-08,94.44,95.22,93.71,94.58,10330000,94.58
-1967-05-05,94.32,95.14,93.64,94.44,10630000,94.44
-1967-05-04,93.91,94.92,93.41,94.32,12850000,94.32
-1967-05-03,93.67,94.48,92.94,93.91,11550000,93.91
-1967-05-02,93.84,94.42,93.06,93.67,10260000,93.67
-1967-05-01,94.01,94.60,93.08,93.84,9410000,93.84
-1967-04-28,93.81,94.77,93.33,94.01,11200000,94.01
-1967-04-27,93.02,94.25,92.41,93.81,10250000,93.81
-1967-04-26,93.11,93.99,92.44,93.02,10560000,93.02
-1967-04-25,92.62,93.57,92.01,93.11,10420000,93.11
-1967-04-24,92.30,93.45,91.78,92.62,10250000,92.62
-1967-04-21,92.11,92.90,91.48,92.30,10210000,92.30
-1967-04-20,91.94,92.61,91.21,92.11,9690000,92.11
-1967-04-19,91.86,92.73,91.25,91.94,10860000,91.94
-1967-04-18,91.07,92.31,90.70,91.86,10500000,91.86
-1967-04-17,90.43,91.78,90.18,91.07,9070000,91.07
-1967-04-14,89.46,91.08,89.26,90.43,8810000,90.43
-1967-04-13,88.78,89.86,88.49,89.46,7610000,89.46
-1967-04-12,88.88,89.54,88.36,88.78,7750000,88.78
-1967-04-11,88.24,89.34,87.92,88.88,7710000,88.88
-1967-04-10,89.32,89.32,87.86,88.24,8110000,88.24
-1967-04-07,89.94,90.60,88.96,89.36,9090000,89.36
-1967-04-06,89.79,90.74,89.44,89.94,9470000,89.94
-1967-04-05,89.22,90.31,88.92,89.79,8810000,89.79
-1967-04-04,89.24,89.93,88.45,89.22,8750000,89.22
-1967-04-03,90.20,90.37,88.76,89.24,8530000,89.24
-1967-03-31,90.70,91.15,89.75,90.20,8130000,90.20
-1967-03-30,90.73,91.32,90.06,90.70,8340000,90.70
-1967-03-29,90.91,91.45,90.17,90.73,8430000,90.73
-1967-03-28,90.87,91.62,90.23,90.91,8940000,90.91
-1967-03-27,90.94,91.72,90.19,90.87,9260000,90.87
-1967-03-23,90.25,91.51,90.04,90.94,9500000,90.94
-1967-03-22,90.00,90.70,89.17,90.25,8820000,90.25
-1967-03-21,90.20,91.05,89.52,90.00,9820000,90.00
-1967-03-20,90.25,90.87,89.35,90.20,9040000,90.20
-1967-03-17,90.09,90.84,89.39,90.25,10020000,90.25
-1967-03-16,89.19,90.66,89.09,90.09,12170000,90.09
-1967-03-15,88.35,89.60,88.00,89.19,10830000,89.19
-1967-03-14,88.43,89.07,87.58,88.35,10260000,88.35
-1967-03-13,88.89,89.41,87.93,88.43,9910000,88.43
-1967-03-10,88.53,90.37,88.46,88.89,14900000,88.89
-1967-03-09,88.27,89.04,87.70,88.53,10480000,88.53
-1967-03-08,88.16,89.10,87.69,88.27,11070000,88.27
-1967-03-07,88.10,88.74,87.34,88.16,9810000,88.16
-1967-03-06,88.29,89.08,87.46,88.10,10400000,88.10
-1967-03-03,88.16,89.00,87.51,88.29,11100000,88.29
-1967-03-02,87.68,88.85,87.39,88.16,11900000,88.16
-1967-03-01,86.78,88.36,86.67,87.68,11510000,87.68
-1967-02-28,86.46,87.26,85.61,86.78,9970000,86.78
-1967-02-27,87.41,87.61,85.68,86.46,10210000,86.46
-1967-02-24,87.45,88.16,86.76,87.41,9830000,87.41
-1967-02-23,87.34,88.00,86.64,87.45,10010000,87.45
-1967-02-21,87.40,88.01,86.80,87.34,9030000,87.34
-1967-02-20,87.89,88.13,86.65,87.40,8640000,87.40
-1967-02-17,87.86,88.40,87.25,87.89,8530000,87.89
-1967-02-16,88.27,88.80,87.43,87.86,8490000,87.86
-1967-02-15,88.17,89.00,87.62,88.27,10480000,88.27
-1967-02-14,87.58,88.74,87.15,88.17,9760000,88.17
-1967-02-13,87.63,88.19,86.95,87.58,7570000,87.58
-1967-02-10,87.36,88.19,86.79,87.63,8850000,87.63
-1967-02-09,87.72,88.57,86.99,87.36,10970000,87.36
-1967-02-08,86.95,88.25,86.64,87.72,11220000,87.72
-1967-02-07,87.18,87.52,86.48,86.95,6400000,86.95
-1967-02-06,87.36,87.98,86.61,87.18,10680000,87.18
-1967-02-03,86.73,87.97,86.51,87.36,12010000,87.36
-1967-02-02,86.43,87.31,85.87,86.73,10720000,86.73
-1967-02-01,86.61,87.04,85.68,86.43,9580000,86.43
-1967-01-31,86.66,87.46,86.06,86.61,11540000,86.61
-1967-01-30,86.16,87.35,85.84,86.66,10250000,86.66
-1967-01-27,85.81,86.76,85.34,86.16,9690000,86.16
-1967-01-26,85.85,86.66,84.87,85.81,10630000,85.81
-1967-01-25,86.51,87.02,85.47,85.85,10260000,85.85
-1967-01-24,86.39,87.00,85.29,86.51,10430000,86.51
-1967-01-23,86.07,88.17,85.64,86.39,10830000,86.39
-1967-01-20,85.82,86.47,85.07,86.07,9530000,86.07
-1967-01-19,85.79,86.61,85.17,85.82,10230000,85.82
-1967-01-18,85.24,86.36,84.90,85.79,11390000,85.79
-1967-01-17,84.31,85.81,84.03,85.24,11590000,85.24
-1967-01-16,84.53,85.28,83.73,84.31,10280000,84.31
-1967-01-13,83.91,84.90,83.10,84.53,10000000,84.53
-1967-01-12,83.47,84.80,83.11,83.91,12830000,83.91
-1967-01-11,82.81,83.92,81.37,83.47,13230000,83.47
-1967-01-10,82.81,83.54,82.22,82.81,8120000,82.81
-1967-01-09,82.18,83.31,81.78,82.81,9180000,82.81
-1967-01-06,81.60,82.79,81.32,82.18,7830000,82.18
-1967-01-05,80.55,81.93,80.50,81.60,7320000,81.60
-1967-01-04,80.38,81.01,79.43,80.55,6150000,80.55
-1967-01-03,80.33,81.61,79.59,80.38,6100000,80.38
-1966-12-30,80.37,81.14,79.66,80.33,11330000,80.33
-1966-12-29,80.61,81.08,79.84,80.37,7900000,80.37
-1966-12-28,81.00,81.67,80.29,80.61,7160000,80.61
-1966-12-27,81.47,81.84,80.55,81.00,6280000,81.00
-1966-12-23,81.69,82.22,80.97,81.47,7350000,81.47
-1966-12-22,81.38,82.34,81.00,81.69,8560000,81.69
-1966-12-21,80.96,81.91,80.42,81.38,7690000,81.38
-1966-12-20,81.27,81.69,80.31,80.96,6830000,80.96
-1966-12-19,81.58,82.06,80.56,81.27,7340000,81.27
-1966-12-16,81.64,82.21,80.94,81.58,6980000,81.58
-1966-12-15,82.64,82.89,81.20,81.64,7150000,81.64
-1966-12-14,82.73,83.35,81.97,82.64,7470000,82.64
-1966-12-13,83.00,83.88,82.28,82.73,9650000,82.73
-1966-12-12,82.14,83.54,81.94,83.00,9530000,83.00
-1966-12-09,82.05,82.68,81.33,82.14,7650000,82.14
-1966-12-08,81.72,82.72,81.34,82.05,8370000,82.05
-1966-12-07,80.84,82.19,80.59,81.72,8980000,81.72
-1966-12-06,80.24,81.29,79.95,80.84,7670000,80.84
-1966-12-05,80.13,80.81,79.60,80.24,6470000,80.24
-1966-12-02,80.08,81.29,79.49,80.13,6230000,80.13
-1966-12-01,80.45,81.04,79.66,80.08,8480000,80.08
-1966-11-30,80.42,80.90,79.62,80.45,7230000,80.45
-1966-11-29,80.71,81.16,79.94,80.42,7320000,80.42
-1966-11-28,80.85,81.38,79.96,80.71,7630000,80.71
-1966-11-25,80.21,81.37,79.83,80.85,6810000,80.85
-1966-11-23,79.67,80.85,79.39,80.21,7350000,80.21
-1966-11-22,80.09,80.32,78.89,79.67,6430000,79.67
-1966-11-21,81.09,81.09,79.51,80.09,7450000,80.09
-1966-11-18,81.80,82.05,80.79,81.26,6900000,81.26
-1966-11-17,82.37,82.80,81.24,81.80,8900000,81.80
-1966-11-16,81.69,83.01,81.55,82.37,10350000,82.37
-1966-11-15,81.37,82.07,80.82,81.69,7190000,81.69
-1966-11-14,81.94,82.18,80.81,81.37,6540000,81.37
-1966-11-11,81.89,82.36,81.27,81.94,6690000,81.94
-1966-11-10,81.38,82.43,81.00,81.89,8870000,81.89
-1966-11-09,80.73,81.90,80.46,81.38,8390000,81.38
-1966-11-07,80.81,81.48,80.16,80.73,6120000,80.73
-1966-11-04,80.56,81.21,79.64,80.81,6530000,80.81
-1966-11-03,80.88,81.35,79.98,80.56,5860000,80.56
-1966-11-02,80.81,81.68,80.30,80.88,6740000,80.88
-1966-11-01,80.20,81.18,79.79,80.81,6480000,80.81
-1966-10-31,80.24,80.82,79.34,80.20,5860000,80.20
-1966-10-28,80.23,80.91,79.49,80.24,6420000,80.24
-1966-10-27,79.58,80.72,79.28,80.23,6670000,80.23
-1966-10-26,78.90,80.29,78.70,79.58,6760000,79.58
-1966-10-25,78.42,79.22,77.56,78.90,6190000,78.90
-1966-10-24,78.19,79.20,77.73,78.42,5780000,78.42
-1966-10-21,77.84,78.62,77.16,78.19,5690000,78.19
-1966-10-20,78.05,78.96,77.26,77.84,6840000,77.84
-1966-10-19,78.68,79.34,77.54,78.05,6460000,78.05
-1966-10-18,77.47,79.08,77.35,78.68,7180000,78.68
-1966-10-17,76.60,78.41,76.48,77.47,5570000,77.47
-1966-10-14,76.89,77.80,76.01,76.60,5610000,76.60
-1966-10-13,77.04,78.45,76.22,76.89,8680000,76.89
-1966-10-12,74.91,77.26,74.37,77.04,6910000,77.04
-1966-10-11,74.53,76.20,74.22,74.91,8430000,74.91
-1966-10-10,73.20,74.97,72.28,74.53,9630000,74.53
-1966-10-07,74.05,74.67,72.77,73.20,8140000,73.20
-1966-10-06,74.69,75.09,73.47,74.05,8110000,74.05
-1966-10-05,75.10,76.10,74.31,74.69,5880000,74.69
-1966-10-04,74.90,75.76,73.91,75.10,8910000,75.10
-1966-10-03,76.56,76.98,74.71,74.90,6490000,74.90
-1966-09-30,76.31,77.09,75.45,76.56,6170000,76.56
-1966-09-29,77.11,77.28,75.85,76.31,6110000,76.31
-1966-09-28,78.10,78.36,76.70,77.11,5990000,77.11
-1966-09-27,77.86,79.10,77.56,78.10,6300000,78.10
-1966-09-26,77.67,78.34,76.88,77.86,4960000,77.86
-1966-09-23,77.94,78.43,77.15,77.67,4560000,77.67
-1966-09-22,77.71,78.41,76.81,77.94,5760000,77.94
-1966-09-21,79.04,79.15,77.52,77.71,5360000,77.71
-1966-09-20,79.59,79.90,78.57,79.04,4560000,79.04
-1966-09-19,79.99,80.50,79.02,79.59,4920000,79.59
-1966-09-16,80.08,80.81,79.33,79.99,5150000,79.99
-1966-09-15,79.13,80.60,78.87,80.08,6140000,80.08
-1966-09-14,78.32,79.43,77.73,79.13,6250000,79.13
-1966-09-13,77.91,79.16,77.66,78.32,6870000,78.32
-1966-09-12,76.47,78.34,76.47,77.91,6780000,77.91
-1966-09-09,76.05,76.94,75.43,76.29,5280000,76.29
-1966-09-08,76.37,76.95,75.03,76.05,6660000,76.05
-1966-09-07,76.96,77.26,75.77,76.37,5530000,76.37
-1966-09-06,77.42,78.16,76.55,76.96,4350000,76.96
-1966-09-02,77.70,78.20,76.27,77.42,6080000,77.42
-1966-09-01,77.10,78.50,76.66,77.70,6250000,77.70
-1966-08-31,75.98,78.06,75.98,77.10,8690000,77.10
-1966-08-30,74.53,76.46,73.91,75.86,11230000,75.86
-1966-08-29,76.24,76.24,74.18,74.53,10900000,74.53
-1966-08-26,77.85,77.85,76.10,76.41,8190000,76.41
-1966-08-25,79.07,79.79,77.80,78.06,6760000,78.06
-1966-08-24,78.11,79.63,77.92,79.07,7050000,79.07
-1966-08-23,78.24,79.24,77.05,78.11,9830000,78.11
-1966-08-22,79.62,79.88,77.58,78.24,8690000,78.24
-1966-08-19,80.16,80.78,79.24,79.62,7070000,79.62
-1966-08-18,81.18,81.38,79.60,80.16,7000000,80.16
-1966-08-17,81.63,81.90,80.53,81.18,6630000,81.18
-1966-08-16,82.71,82.71,81.26,81.63,6130000,81.63
-1966-08-15,83.17,83.69,82.39,82.74,5680000,82.74
-1966-08-12,83.02,83.88,82.57,83.17,6230000,83.17
-1966-08-11,83.11,83.53,82.34,83.02,5700000,83.02
-1966-08-10,83.49,83.83,82.69,83.11,5290000,83.11
-1966-08-09,83.75,84.36,83.04,83.49,6270000,83.49
-1966-08-08,84.00,84.31,82.97,83.75,4900000,83.75
-1966-08-05,83.93,84.70,83.43,84.00,5500000,84.00
-1966-08-04,83.15,84.54,83.07,83.93,6880000,83.93
-1966-08-03,82.33,83.71,82.30,83.15,6220000,83.15
-1966-08-02,82.31,83.04,81.77,82.33,5710000,82.33
-1966-08-01,83.50,83.50,81.98,82.31,5880000,82.31
-1966-07-29,83.77,84.30,83.10,83.60,5150000,83.60
-1966-07-28,84.10,84.76,83.44,83.77,5680000,83.77
-1966-07-27,83.70,84.83,83.50,84.10,6070000,84.10
-1966-07-26,83.83,84.67,83.05,83.70,7610000,83.70
-1966-07-25,85.41,85.57,83.56,83.83,7050000,83.83
-1966-07-22,85.52,86.11,84.93,85.41,6540000,85.41
-1966-07-21,85.51,86.24,84.77,85.52,6200000,85.52
-1966-07-20,86.33,86.64,85.26,85.51,5470000,85.51
-1966-07-19,86.99,87.17,85.75,86.33,5960000,86.33
-1966-07-18,87.08,87.59,86.42,86.99,5110000,86.99
-1966-07-15,86.82,87.68,86.44,87.08,6090000,87.08
-1966-07-14,86.30,87.34,85.85,86.82,5950000,86.82
-1966-07-13,86.88,87.06,85.83,86.30,5580000,86.30
-1966-07-12,87.45,87.78,86.45,86.88,5180000,86.88
-1966-07-11,87.61,88.19,86.97,87.45,6200000,87.45
-1966-07-08,87.38,88.04,86.85,87.61,6100000,87.61
-1966-07-07,87.06,88.02,86.67,87.38,7200000,87.38
-1966-07-06,85.82,87.38,85.57,87.06,6860000,87.06
-1966-07-05,85.61,86.41,85.09,85.82,4610000,85.82
-1966-07-01,84.74,86.08,84.74,85.61,5200000,85.61
-1966-06-30,84.86,85.37,83.75,84.74,7250000,84.74
-1966-06-29,85.67,85.98,84.52,84.86,6020000,84.86
-1966-06-28,86.08,86.43,85.00,85.67,6280000,85.67
-1966-06-27,86.58,87.31,85.77,86.08,5330000,86.08
-1966-06-24,86.50,87.31,85.68,86.58,7140000,86.58
-1966-06-23,86.85,87.73,86.11,86.50,7930000,86.50
-1966-06-22,86.71,87.38,86.15,86.85,7800000,86.85
-1966-06-21,86.48,87.28,86.07,86.71,6860000,86.71
-1966-06-20,86.51,87.03,85.84,86.48,5940000,86.48
-1966-06-17,86.47,87.11,85.89,86.51,6580000,86.51
-1966-06-16,86.73,87.18,85.88,86.47,6870000,86.47
-1966-06-15,87.07,87.74,86.33,86.73,8520000,86.73
-1966-06-14,86.83,87.57,86.02,87.07,7600000,87.07
-1966-06-13,86.44,87.59,86.20,86.83,7600000,86.83
-1966-06-10,85.50,86.97,85.32,86.44,8240000,86.44
-1966-06-09,84.93,85.98,84.56,85.50,5810000,85.50
-1966-06-08,84.83,85.43,84.31,84.93,4580000,84.93
-1966-06-07,85.42,85.54,84.25,84.83,5040000,84.83
-1966-06-06,86.06,86.28,85.03,85.42,4260000,85.42
-1966-06-03,85.96,86.55,85.43,86.06,4430000,86.06
-1966-06-02,86.10,86.85,85.55,85.96,5080000,85.96
-1966-06-01,86.13,86.65,85.28,86.10,5290000,86.10
-1966-05-31,87.33,87.65,85.80,86.13,5770000,86.13
-1966-05-27,87.07,87.42,86.43,87.33,4790000,87.33
-1966-05-26,87.07,87.88,86.54,87.07,6080000,87.07
-1966-05-25,86.77,87.48,86.05,87.07,5820000,87.07
-1966-05-24,86.20,87.70,86.19,86.77,7210000,86.77
-1966-05-23,85.43,86.91,85.29,86.20,7080000,86.20
-1966-05-20,85.02,85.79,84.21,85.43,6430000,85.43
-1966-05-19,85.12,86.33,84.54,85.02,8640000,85.02
-1966-05-18,83.72,85.64,83.72,85.12,9310000,85.12
-1966-05-17,84.41,85.03,83.18,83.63,9870000,83.63
-1966-05-16,85.47,86.04,83.90,84.41,9260000,84.41
-1966-05-13,86.23,86.31,84.77,85.47,8970000,85.47
-1966-05-12,87.23,87.49,85.72,86.23,8210000,86.23
-1966-05-11,87.08,88.38,86.84,87.23,7470000,87.23
-1966-05-10,86.32,87.88,86.12,87.08,9050000,87.08
-1966-05-09,87.84,87.96,85.92,86.32,9290000,86.32
-1966-05-06,87.93,88.52,86.24,87.84,13110000,87.84
-1966-05-05,89.39,89.77,87.60,87.93,10100000,87.93
-1966-05-04,89.85,90.11,88.54,89.39,9740000,89.39
-1966-05-03,90.90,91.10,89.46,89.85,8020000,89.85
-1966-05-02,91.06,91.75,90.43,90.90,7070000,90.90
-1966-04-29,91.13,91.86,90.57,91.06,7220000,91.06
-1966-04-28,91.76,91.92,90.24,91.13,8310000,91.13
-1966-04-27,91.99,92.49,91.10,91.76,7950000,91.76
-1966-04-26,92.08,92.77,91.47,91.99,7540000,91.99
-1966-04-25,92.27,92.86,91.41,92.08,7270000,92.08
-1966-04-22,92.42,92.87,91.60,92.27,8650000,92.27
-1966-04-21,92.08,93.02,91.78,92.42,9560000,92.42
-1966-04-20,91.57,92.75,91.34,92.08,10530000,92.08
-1966-04-19,91.58,92.31,90.89,91.57,8820000,91.57
-1966-04-18,91.99,92.59,91.09,91.58,9150000,91.58
-1966-04-15,91.87,92.75,91.28,91.99,10270000,91.99
-1966-04-14,91.54,92.80,91.12,91.87,12980000,91.87
-1966-04-13,91.45,92.81,90.73,91.54,10440000,91.54
-1966-04-12,91.79,92.51,90.92,91.45,10500000,91.45
-1966-04-11,91.76,92.60,91.08,91.79,9310000,91.79
-1966-04-07,91.56,92.42,90.99,91.76,9650000,91.76
-1966-04-06,91.31,92.10,90.77,91.56,9040000,91.56
-1966-04-05,90.76,92.04,90.47,91.31,10560000,91.31
-1966-04-04,89.94,91.33,89.92,90.76,9360000,90.76
-1966-04-01,89.23,90.37,88.96,89.94,9050000,89.94
-1966-03-31,88.78,89.70,88.47,89.23,6690000,89.23
-1966-03-30,89.27,89.57,88.31,88.78,7980000,88.78
-1966-03-29,89.62,90.04,88.63,89.27,8300000,89.27
-1966-03-28,89.54,90.41,89.15,89.62,8640000,89.62
-1966-03-25,89.29,90.14,88.96,89.54,7750000,89.54
-1966-03-24,89.13,89.80,88.68,89.29,7880000,89.29
-1966-03-23,89.46,89.80,88.69,89.13,6720000,89.13
-1966-03-22,89.20,90.28,89.01,89.46,8910000,89.46
-1966-03-21,88.53,89.73,88.40,89.20,7230000,89.20
-1966-03-18,88.17,89.23,87.82,88.53,6450000,88.53
-1966-03-17,87.86,88.60,87.45,88.17,5460000,88.17
-1966-03-16,87.35,88.55,87.09,87.86,7330000,87.86
-1966-03-15,87.85,88.20,86.69,87.35,9440000,87.35
-1966-03-14,88.85,88.92,87.56,87.85,7400000,87.85
-1966-03-11,88.96,89.63,88.30,88.85,7000000,88.85
-1966-03-10,88.96,90.14,88.36,88.96,10310000,88.96
-1966-03-09,88.18,89.21,87.96,88.96,7980000,88.96
-1966-03-08,88.04,89.00,87.17,88.18,10120000,88.18
-1966-03-07,89.24,89.39,87.67,88.04,9370000,88.04
-1966-03-04,89.47,90.25,88.72,89.24,9000000,89.24
-1966-03-03,89.15,90.03,88.26,89.47,9900000,89.47
-1966-03-02,90.06,90.65,88.70,89.15,10470000,89.15
-1966-03-01,91.22,91.65,89.76,90.06,11030000,90.06
-1966-02-28,91.14,91.95,90.65,91.22,9910000,91.22
-1966-02-25,90.89,91.88,90.43,91.14,8140000,91.14
-1966-02-24,91.48,91.81,90.45,90.89,7860000,90.89
-1966-02-23,91.87,92.21,90.99,91.48,8080000,91.48
-1966-02-21,92.41,92.83,91.35,91.87,8510000,91.87
-1966-02-18,92.66,93.14,91.80,92.41,8470000,92.41
-1966-02-17,93.16,93.58,92.11,92.66,9330000,92.66
-1966-02-16,93.17,93.74,92.63,93.16,9180000,93.16
-1966-02-15,93.53,94.04,92.67,93.17,8750000,93.17
-1966-02-14,93.81,94.40,93.15,93.53,8360000,93.53
-1966-02-11,93.83,94.52,93.25,93.81,8150000,93.81
-1966-02-10,94.06,94.70,93.32,93.83,9790000,93.83
-1966-02-09,93.55,94.72,93.29,94.06,9760000,94.06
-1966-02-08,93.59,94.29,92.58,93.55,10560000,93.55
-1966-02-07,93.26,94.22,92.85,93.59,8000000,93.59
-1966-02-04,92.65,93.70,92.33,93.26,7560000,93.26
-1966-02-03,92.53,93.67,92.11,92.65,8160000,92.65
-1966-02-02,92.16,92.91,91.32,92.53,8130000,92.53
-1966-02-01,92.88,93.36,91.61,92.16,9090000,92.16
-1966-01-31,93.31,93.77,92.46,92.88,7800000,92.88
-1966-01-28,93.67,94.15,92.84,93.31,9000000,93.31
-1966-01-27,93.70,94.34,93.09,93.67,8970000,93.67
-1966-01-26,93.85,94.53,93.18,93.70,9910000,93.70
-1966-01-25,93.71,94.56,93.24,93.85,9300000,93.85
-1966-01-24,93.47,94.41,93.07,93.71,8780000,93.71
-1966-01-21,93.36,93.97,92.60,93.47,9180000,93.47
-1966-01-20,93.69,94.33,92.87,93.36,8670000,93.36
-1966-01-19,93.95,94.62,93.16,93.69,10230000,93.69
-1966-01-18,93.77,94.64,93.23,93.95,9790000,93.95
-1966-01-17,93.50,94.46,93.10,93.77,9430000,93.77
-1966-01-14,93.36,94.14,92.98,93.50,9210000,93.50
-1966-01-13,93.19,94.00,92.68,93.36,8860000,93.36
-1966-01-12,93.41,93.98,92.80,93.19,8530000,93.19
-1966-01-11,93.33,94.05,92.85,93.41,8910000,93.41
-1966-01-10,93.14,93.94,92.75,93.33,7720000,93.33
-1966-01-07,93.06,93.64,92.47,93.14,7600000,93.14
-1966-01-06,92.85,93.65,92.51,93.06,7880000,93.06
-1966-01-05,92.26,93.33,91.99,92.85,9650000,92.85
-1966-01-04,92.18,93.04,91.68,92.26,7540000,92.26
-1966-01-03,92.43,92.87,91.63,92.18,5950000,92.18
-1965-12-31,92.20,93.05,91.82,92.43,7240000,92.43
-1965-12-30,91.81,92.68,91.52,92.20,7060000,92.20
-1965-12-29,91.53,92.39,91.14,91.81,7610000,91.81
-1965-12-28,91.52,92.13,90.63,91.53,7280000,91.53
-1965-12-27,92.19,92.71,91.28,91.52,5950000,91.52
-1965-12-23,92.29,92.89,91.58,92.19,6870000,92.19
-1965-12-22,92.01,93.07,91.53,92.29,9720000,92.29
-1965-12-21,91.65,92.59,91.24,92.01,8230000,92.01
-1965-12-20,92.08,92.35,91.09,91.65,7350000,91.65
-1965-12-17,92.12,92.76,91.51,92.08,9490000,92.08
-1965-12-16,92.02,92.95,91.53,92.12,9950000,92.12
-1965-12-15,91.88,92.67,91.30,92.02,9560000,92.02
-1965-12-14,91.83,92.59,91.35,91.88,9920000,91.88
-1965-12-13,91.80,92.45,91.27,91.83,8660000,91.83
-1965-12-10,91.56,92.28,91.14,91.80,8740000,91.80
-1965-12-09,91.28,92.06,90.87,91.56,9150000,91.56
-1965-12-08,91.39,92.24,90.84,91.28,10120000,91.28
-1965-12-07,90.59,92.00,90.45,91.39,9340000,91.39
-1965-12-06,91.20,91.20,89.20,90.59,11440000,90.59
-1965-12-03,91.21,91.80,90.53,91.27,8160000,91.27
-1965-12-02,91.50,91.95,90.69,91.21,9070000,91.21
-1965-12-01,91.61,92.26,91.02,91.50,10140000,91.50
-1965-11-30,91.80,92.14,90.81,91.61,8990000,91.61
-1965-11-29,92.03,92.60,91.37,91.80,8760000,91.80
-1965-11-26,91.94,92.65,91.39,92.03,6970000,92.03
-1965-11-24,91.78,92.50,91.14,91.94,7870000,91.94
-1965-11-23,91.64,92.24,91.15,91.78,7150000,91.78
-1965-11-22,92.24,92.48,91.16,91.64,6370000,91.64
-1965-11-19,92.22,92.88,91.73,92.24,6850000,92.24
-1965-11-18,92.60,92.94,91.72,92.22,7040000,92.22
-1965-11-17,92.41,93.28,91.85,92.60,9120000,92.60
-1965-11-16,92.63,93.13,91.90,92.41,8380000,92.41
-1965-11-15,92.55,93.30,92.04,92.63,8310000,92.63
-1965-11-12,92.11,93.07,91.83,92.55,7780000,92.55
-1965-11-11,91.83,92.37,91.31,92.11,5430000,92.11
-1965-11-10,91.93,92.40,91.35,91.83,4860000,91.83
-1965-11-09,92.23,92.65,91.47,91.93,6680000,91.93
-1965-11-08,92.37,92.97,91.63,92.23,7000000,92.23
-1965-11-05,92.46,92.92,91.78,92.37,7310000,92.37
-1965-11-04,92.31,93.07,91.90,92.46,8380000,92.46
-1965-11-03,92.23,92.79,91.62,92.31,7520000,92.31
-1965-11-01,92.42,92.92,91.73,92.23,6340000,92.23
-1965-10-29,92.21,92.94,91.83,92.42,7240000,92.42
-1965-10-28,92.51,92.95,91.60,92.21,7230000,92.21
-1965-10-27,92.20,93.19,91.95,92.51,7670000,92.51
-1965-10-26,91.67,92.63,91.36,92.20,6750000,92.20
-1965-10-25,91.98,92.72,91.34,91.67,7090000,91.67
-1965-10-22,91.94,92.74,91.54,91.98,8960000,91.98
-1965-10-21,91.78,92.51,91.42,91.94,9170000,91.94
-1965-10-20,91.80,92.26,91.12,91.78,8200000,91.78
-1965-10-19,91.68,92.45,91.35,91.80,8620000,91.80
-1965-10-18,91.38,92.28,91.06,91.68,8180000,91.68
-1965-10-15,91.19,92.09,90.76,91.38,7470000,91.38
-1965-10-14,91.34,91.90,90.71,91.19,8580000,91.19
-1965-10-13,91.35,91.81,90.73,91.34,9470000,91.34
-1965-10-12,91.37,91.94,90.83,91.35,9470000,91.35
-1965-10-11,90.85,91.84,90.73,91.37,9600000,91.37
-1965-10-08,90.47,91.31,90.30,90.85,7670000,90.85
-1965-10-07,90.54,91.09,90.09,90.47,6670000,90.47
-1965-10-06,90.63,90.94,89.74,90.54,6010000,90.54
-1965-10-05,90.08,91.02,89.92,90.63,6980000,90.63
-1965-10-04,89.90,90.56,89.47,90.08,5590000,90.08
-1965-10-01,89.96,90.48,89.30,89.90,7470000,89.90
-1965-09-30,90.02,90.71,89.51,89.96,8670000,89.96
-1965-09-29,90.43,91.11,89.56,90.02,10600000,90.02
-1965-09-28,90.65,91.13,89.83,90.43,8750000,90.43
-1965-09-27,90.65,90.65,90.65,90.65,6820000,90.65
-1965-09-24,89.86,90.47,89.13,90.02,7810000,90.02
-1965-09-23,90.22,90.78,89.43,89.86,9990000,89.86
-1965-09-22,89.81,90.67,89.45,90.22,8290000,90.22
-1965-09-21,90.08,90.66,89.43,89.81,7750000,89.81
-1965-09-20,90.05,90.67,89.51,90.08,7040000,90.08
-1965-09-17,90.02,90.47,89.32,90.05,6610000,90.05
-1965-09-16,90.02,90.02,90.02,90.02,7410000,90.02
-1965-09-15,89.03,89.96,88.71,89.52,6220000,89.52
-1965-09-14,89.38,90.01,88.69,89.03,7830000,89.03
-1965-09-13,89.12,89.91,88.77,89.38,7020000,89.38
-1965-09-10,88.89,89.85,88.41,89.12,6650000,89.12
-1965-09-09,88.66,89.46,88.35,88.89,7360000,88.89
-1965-09-08,88.36,89.08,87.93,88.66,6240000,88.66
-1965-09-07,88.06,88.77,87.76,88.36,5750000,88.36
-1965-09-03,87.65,88.41,87.52,88.06,6010000,88.06
-1965-09-02,87.17,87.96,86.98,87.65,6470000,87.65
-1965-09-01,87.17,87.63,86.69,87.17,5890000,87.17
-1965-08-31,87.21,87.79,86.78,87.17,5170000,87.17
-1965-08-30,87.20,87.64,86.76,87.21,4400000,87.21
-1965-08-27,87.14,87.74,86.81,87.20,5570000,87.20
-1965-08-26,86.81,87.52,86.40,87.14,6010000,87.14
-1965-08-25,86.71,87.27,86.33,86.81,6240000,86.81
-1965-08-24,86.56,87.19,86.22,86.71,4740000,86.71
-1965-08-23,86.69,87.10,86.22,86.56,4470000,86.56
-1965-08-20,86.79,87.14,86.21,86.69,4170000,86.69
-1965-08-19,86.99,87.48,86.49,86.79,5000000,86.79
-1965-08-18,87.04,87.57,86.63,86.99,5850000,86.99
-1965-08-17,86.87,87.42,86.48,87.04,4520000,87.04
-1965-08-16,86.77,87.43,86.46,86.87,5270000,86.87
-1965-08-13,86.38,87.14,86.09,86.77,5430000,86.77
-1965-08-12,86.13,86.75,85.85,86.38,5160000,86.38
-1965-08-11,85.87,86.48,85.64,86.13,5030000,86.13
-1965-08-10,85.86,86.31,85.45,85.87,4690000,85.87
-1965-08-09,86.07,86.54,85.52,85.86,4540000,85.86
-1965-08-06,85.79,86.40,85.42,86.07,4200000,86.07
-1965-08-05,85.79,86.28,85.43,85.79,4920000,85.79
-1965-08-04,85.46,86.12,85.22,85.79,4830000,85.79
-1965-08-03,85.42,85.81,84.80,85.46,4640000,85.46
-1965-08-02,85.25,85.87,84.87,85.42,4220000,85.42
-1965-07-30,84.68,85.64,84.64,85.25,5200000,85.25
-1965-07-29,84.03,85.00,83.79,84.68,4690000,84.68
-1965-07-28,83.87,84.52,83.30,84.03,4760000,84.03
-1965-07-27,84.05,84.59,83.58,83.87,4190000,83.87
-1965-07-26,84.07,84.47,83.49,84.05,3790000,84.05
-1965-07-23,83.85,84.52,83.57,84.07,3600000,84.07
-1965-07-22,84.07,84.45,83.53,83.85,3310000,83.85
-1965-07-21,84.55,84.84,83.76,84.07,4350000,84.07
-1965-07-20,85.63,85.85,84.39,84.55,4670000,84.55
-1965-07-19,85.69,86.04,85.21,85.63,3220000,85.63
-1965-07-16,85.72,86.14,85.26,85.69,3520000,85.69
-1965-07-15,85.87,86.47,85.44,85.72,4420000,85.72
-1965-07-14,85.59,86.23,85.18,85.87,4100000,85.87
-1965-07-13,85.69,86.01,85.12,85.59,3260000,85.59
-1965-07-12,85.71,86.08,85.24,85.69,3690000,85.69
-1965-07-09,85.39,86.11,85.11,85.71,4800000,85.71
-1965-07-08,84.67,85.60,84.29,85.39,4380000,85.39
-1965-07-07,84.99,85.14,84.28,84.67,3020000,84.67
-1965-07-06,85.16,85.63,84.57,84.99,3400000,84.99
-1965-07-02,84.48,85.40,84.13,85.16,4260000,85.16
-1965-07-01,84.12,84.64,83.57,84.48,4520000,84.48
-1965-06-30,82.97,84.63,82.97,84.12,6930000,84.12
-1965-06-29,81.60,83.04,80.73,82.41,10450000,82.41
-1965-06-28,83.06,83.34,81.36,81.60,7650000,81.60
-1965-06-25,83.56,83.83,82.60,83.06,5790000,83.06
-1965-06-24,84.67,84.73,83.30,83.56,5840000,83.56
-1965-06-23,85.21,85.59,84.52,84.67,3580000,84.67
-1965-06-22,85.05,85.70,84.76,85.21,3330000,85.21
-1965-06-21,85.34,85.64,84.53,85.05,3280000,85.05
-1965-06-18,85.74,86.10,84.90,85.34,4330000,85.34
-1965-06-17,85.20,86.22,84.98,85.74,5220000,85.74
-1965-06-16,84.58,85.79,84.58,85.20,6290000,85.20
-1965-06-15,84.01,84.86,83.01,84.49,8450000,84.49
-1965-06-14,85.12,85.68,83.64,84.01,5920000,84.01
-1965-06-11,84.73,85.68,84.50,85.12,5350000,85.12
-1965-06-10,85.04,85.82,84.10,84.73,7470000,84.73
-1965-06-09,85.93,86.37,84.75,85.04,7070000,85.04
-1965-06-08,86.88,87.10,85.74,85.93,4660000,85.93
-1965-06-07,87.11,87.45,86.04,86.88,4680000,86.88
-1965-06-04,86.90,87.46,86.36,87.11,4530000,87.11
-1965-06-03,87.09,88.05,86.58,86.90,5720000,86.90
-1965-06-02,87.87,87.87,86.25,87.09,6790000,87.09
-1965-06-01,88.42,88.80,87.88,88.72,4830000,88.72
-1965-05-28,87.84,88.68,87.58,88.42,4270000,88.42
-1965-05-27,88.30,88.36,87.24,87.84,5520000,87.84
-1965-05-26,88.60,89.22,88.04,88.30,5330000,88.30
-1965-05-25,88.09,88.96,87.82,88.60,4950000,88.60
-1965-05-24,88.75,88.89,87.75,88.09,4790000,88.09
-1965-05-21,89.18,89.41,88.40,88.75,4660000,88.75
-1965-05-20,89.67,89.86,88.74,89.18,5750000,89.18
-1965-05-19,89.46,90.15,89.17,89.67,5860000,89.67
-1965-05-18,89.54,89.84,88.87,89.46,5130000,89.46
-1965-05-17,90.10,90.44,89.24,89.54,4980000,89.54
-1965-05-14,90.27,90.66,89.63,90.10,5860000,90.10
-1965-05-13,89.94,90.68,89.68,90.27,6460000,90.27
-1965-05-12,89.55,90.31,89.30,89.94,6310000,89.94
-1965-05-11,89.66,89.98,89.05,89.55,5150000,89.55
-1965-05-10,89.85,90.22,89.22,89.66,5600000,89.66
-1965-05-07,89.92,90.30,89.33,89.85,5820000,89.85
-1965-05-06,89.71,90.57,89.39,89.92,6340000,89.92
-1965-05-05,89.51,90.40,89.14,89.71,6350000,89.71
-1965-05-04,89.23,89.89,88.82,89.51,5720000,89.51
-1965-05-03,89.11,89.68,88.62,89.23,5340000,89.23
-1965-04-30,88.93,89.44,88.50,89.11,5190000,89.11
-1965-04-29,89.00,89.43,88.47,88.93,5510000,88.93
-1965-04-28,89.04,89.48,88.51,89.00,5680000,89.00
-1965-04-27,88.89,89.64,88.71,89.04,6310000,89.04
-1965-04-26,88.88,89.29,88.30,88.89,5410000,88.89
-1965-04-23,88.78,89.41,88.48,88.88,5860000,88.88
-1965-04-22,88.30,89.13,88.12,88.78,5990000,88.78
-1965-04-21,88.46,88.82,87.70,88.30,5590000,88.30
-1965-04-20,88.51,89.07,88.02,88.46,6480000,88.46
-1965-04-19,88.15,88.90,87.90,88.51,5700000,88.51
-1965-04-15,88.24,88.63,87.55,88.15,5830000,88.15
-1965-04-14,88.04,88.65,87.71,88.24,6580000,88.24
-1965-04-13,87.94,88.48,87.54,88.04,6690000,88.04
-1965-04-12,87.56,88.36,87.31,87.94,6040000,87.94
-1965-04-09,87.04,87.87,86.86,87.56,6580000,87.56
-1965-04-08,86.55,87.35,86.34,87.04,5770000,87.04
-1965-04-07,86.50,86.88,86.14,86.55,4430000,86.55
-1965-04-06,86.53,86.91,86.08,86.50,4610000,86.50
-1965-04-05,86.53,87.08,86.14,86.53,4920000,86.53
-1965-04-02,86.32,86.89,86.08,86.53,5060000,86.53
-1965-04-01,86.16,86.73,85.87,86.32,4890000,86.32
-1965-03-31,86.20,86.64,85.83,86.16,4470000,86.16
-1965-03-30,86.03,86.53,85.69,86.20,4270000,86.20
-1965-03-29,86.20,86.66,85.65,86.03,4590000,86.03
-1965-03-26,86.84,87.06,85.96,86.20,5020000,86.20
-1965-03-25,87.09,87.50,86.55,86.84,5460000,86.84
-1965-03-24,86.93,87.55,86.68,87.09,5420000,87.09
-1965-03-23,86.83,87.34,86.45,86.93,4820000,86.93
-1965-03-22,86.84,87.34,86.41,86.83,4920000,86.83
-1965-03-19,86.81,87.37,86.43,86.84,5040000,86.84
-1965-03-18,87.02,87.48,86.50,86.81,4990000,86.81
-1965-03-17,87.13,87.51,86.63,87.02,5120000,87.02
-1965-03-16,87.24,87.61,86.67,87.13,5480000,87.13
-1965-03-15,87.21,87.92,86.82,87.24,6000000,87.24
-1965-03-12,86.90,87.65,86.60,87.21,6370000,87.21
-1965-03-11,86.54,87.29,86.17,86.90,5770000,86.90
-1965-03-10,86.69,87.07,86.20,86.54,5100000,86.54
-1965-03-09,86.83,87.27,86.33,86.69,5210000,86.69
-1965-03-08,86.80,87.28,86.31,86.83,5250000,86.83
-1965-03-05,86.98,87.26,86.00,86.80,6120000,86.80
-1965-03-04,87.26,87.72,86.63,86.98,7300000,86.98
-1965-03-03,87.40,87.83,86.88,87.26,6600000,87.26
-1965-03-02,87.25,87.79,86.84,87.40,5730000,87.40
-1965-03-01,87.43,87.93,86.92,87.25,5780000,87.25
-1965-02-26,87.20,87.84,86.81,87.43,5800000,87.43
-1965-02-25,87.17,87.70,86.70,87.20,6680000,87.20
-1965-02-24,86.64,87.72,86.43,87.17,7160000,87.17
-1965-02-23,86.21,87.01,86.03,86.64,5880000,86.64
-1965-02-19,86.05,86.67,85.71,86.21,5560000,86.21
-1965-02-18,85.77,86.48,85.47,86.05,6060000,86.05
-1965-02-17,85.67,86.25,85.25,85.77,5510000,85.77
-1965-02-16,86.07,86.31,85.33,85.67,5000000,85.67
-1965-02-15,86.17,86.86,85.75,86.07,5760000,86.07
-1965-02-12,85.54,86.48,85.54,86.17,4960000,86.17
-1965-02-11,86.46,86.89,85.40,85.54,5800000,85.54
-1965-02-10,87.24,87.70,86.20,86.46,7210000,86.46
-1965-02-09,86.95,87.64,86.70,87.24,5690000,87.24
-1965-02-08,87.00,87.00,85.95,86.95,6010000,86.95
-1965-02-05,87.57,87.98,86.90,87.29,5690000,87.29
-1965-02-04,87.63,88.06,87.06,87.57,6230000,87.57
-1965-02-03,87.55,88.01,87.07,87.63,6130000,87.63
-1965-02-02,87.58,87.94,87.03,87.55,5460000,87.55
-1965-02-01,87.56,88.01,87.05,87.58,5690000,87.58
-1965-01-29,87.48,88.19,87.18,87.56,6940000,87.56
-1965-01-28,87.23,87.88,86.89,87.48,6730000,87.48
-1965-01-27,86.94,87.67,86.70,87.23,6010000,87.23
-1965-01-26,86.86,87.45,86.51,86.94,5760000,86.94
-1965-01-25,86.74,87.27,86.39,86.86,5370000,86.86
-1965-01-22,86.52,87.15,86.20,86.74,5430000,86.74
-1965-01-21,86.60,86.90,86.02,86.52,4780000,86.52
-1965-01-20,86.63,87.10,86.26,86.60,5550000,86.60
-1965-01-19,86.49,87.09,86.15,86.63,5550000,86.63
-1965-01-18,86.21,87.15,85.99,86.49,5550000,86.49
-1965-01-15,85.84,86.52,85.60,86.21,5340000,86.21
-1965-01-14,85.84,86.38,85.41,85.84,5810000,85.84
-1965-01-13,85.61,86.27,85.35,85.84,6160000,85.84
-1965-01-12,85.40,85.98,85.13,85.61,5400000,85.61
-1965-01-11,85.37,85.81,84.90,85.40,5440000,85.40
-1965-01-08,85.26,85.84,84.91,85.37,5340000,85.37
-1965-01-07,84.89,85.62,84.66,85.26,5080000,85.26
-1965-01-06,84.63,85.38,84.45,84.89,4850000,84.89
-1965-01-05,84.23,85.02,84.02,84.63,4110000,84.63
-1965-01-04,84.75,85.15,83.77,84.23,3930000,84.23
-1964-12-31,84.30,85.18,84.18,84.75,6470000,84.75
-1964-12-30,83.81,84.63,83.63,84.30,5610000,84.30
-1964-12-29,84.07,84.35,83.38,83.81,4450000,83.81
-1964-12-28,84.15,84.58,83.70,84.07,3990000,84.07
-1964-12-24,84.15,84.59,83.74,84.15,3600000,84.15
-1964-12-23,84.33,84.76,83.79,84.15,4470000,84.15
-1964-12-22,84.38,84.88,83.94,84.33,4520000,84.33
-1964-12-21,84.29,84.91,84.11,84.38,4470000,84.38
-1964-12-18,83.90,84.65,83.73,84.29,4630000,84.29
-1964-12-17,83.55,84.24,83.34,83.90,4850000,83.90
-1964-12-16,83.22,83.94,83.00,83.55,4610000,83.55
-1964-12-15,83.45,83.79,82.65,83.22,5340000,83.22
-1964-12-14,83.66,84.17,83.10,83.45,4340000,83.45
-1964-12-11,83.45,84.05,83.09,83.66,4530000,83.66
-1964-12-10,83.46,83.96,82.98,83.45,4790000,83.45
-1964-12-09,84.00,84.24,83.24,83.46,5120000,83.46
-1964-12-08,84.33,84.71,83.69,84.00,4990000,84.00
-1964-12-07,84.35,85.03,84.04,84.33,4770000,84.33
-1964-12-04,84.35,84.35,84.35,84.35,4340000,84.35
-1964-12-03,83.79,84.74,83.71,84.18,4250000,84.18
-1964-12-02,83.55,84.23,83.12,83.79,4930000,83.79
-1964-12-01,84.42,84.56,83.36,83.55,4940000,83.55
-1964-11-30,85.16,85.41,84.10,84.42,4890000,84.42
-1964-11-27,85.44,85.68,84.55,85.16,4070000,85.16
-1964-11-25,85.73,86.18,85.10,85.44,4800000,85.44
-1964-11-24,86.00,86.12,85.15,85.73,5070000,85.73
-1964-11-23,86.28,86.59,85.48,86.00,4860000,86.00
-1964-11-20,86.18,86.80,85.73,86.28,5210000,86.28
-1964-11-19,86.22,86.57,85.60,86.18,5570000,86.18
-1964-11-18,86.03,86.80,85.73,86.22,6560000,86.22
-1964-11-17,85.65,86.55,85.48,86.03,5920000,86.03
-1964-11-16,85.21,85.94,84.88,85.65,4870000,85.65
-1964-11-13,85.19,85.68,84.76,85.21,4860000,85.21
-1964-11-12,85.08,85.63,84.75,85.19,5250000,85.19
-1964-11-11,84.84,85.30,84.49,85.08,3790000,85.08
-1964-11-10,85.19,85.55,84.49,84.84,5020000,84.84
-1964-11-09,85.23,85.72,84.93,85.19,4560000,85.19
-1964-11-06,85.16,85.55,84.65,85.23,4810000,85.23
-1964-11-05,85.14,85.62,84.72,85.16,4380000,85.16
-1964-11-04,85.18,85.90,84.80,85.14,4720000,85.14
-1964-11-02,84.86,85.54,84.51,85.18,4430000,85.18
-1964-10-30,84.73,85.22,84.41,84.86,4120000,84.86
-1964-10-29,84.69,85.15,84.36,84.73,4390000,84.73
-1964-10-28,85.00,85.37,84.43,84.69,4890000,84.69
-1964-10-27,85.00,85.40,84.61,85.00,4470000,85.00
-1964-10-26,85.14,85.70,84.65,85.00,5230000,85.00
-1964-10-23,84.94,85.42,84.57,85.14,3830000,85.14
-1964-10-22,85.10,85.44,84.51,84.94,4670000,84.94
-1964-10-21,85.18,85.64,84.77,85.10,5170000,85.10
-1964-10-20,84.93,85.57,84.56,85.18,5140000,85.18
-1964-10-19,84.83,85.36,84.47,84.93,5010000,84.93
-1964-10-16,84.25,85.10,84.10,84.83,5140000,84.83
-1964-10-15,84.79,84.99,83.65,84.25,6500000,84.25
-1964-10-14,84.96,85.29,84.50,84.79,4530000,84.79
-1964-10-13,85.24,85.57,84.63,84.96,5400000,84.96
-1964-10-12,85.22,85.58,84.88,85.24,4110000,85.24
-1964-10-09,85.04,85.60,84.72,85.22,5290000,85.22
-1964-10-08,84.80,85.40,84.47,85.04,5060000,85.04
-1964-10-07,84.79,85.25,84.42,84.80,5090000,84.80
-1964-10-06,84.74,85.24,84.37,84.79,4820000,84.79
-1964-10-05,84.36,85.25,84.20,84.74,4850000,84.74
-1964-10-02,84.08,84.64,83.71,84.36,4370000,84.36
-1964-10-01,84.18,84.53,83.74,84.08,4470000,84.08
-1964-09-30,84.24,84.66,83.86,84.18,4720000,84.18
-1964-09-29,84.28,84.80,83.84,84.24,5070000,84.24
-1964-09-28,84.21,84.73,83.79,84.28,4810000,84.28
-1964-09-25,84.00,84.62,83.56,84.21,6170000,84.21
-1964-09-24,83.91,84.43,83.45,84.00,5840000,84.00
-1964-09-23,83.89,84.37,83.45,83.91,5920000,83.91
-1964-09-22,83.86,84.44,83.53,83.89,5250000,83.89
-1964-09-21,83.48,84.32,83.41,83.86,5310000,83.86
-1964-09-18,83.79,84.29,83.03,83.48,6160000,83.48
-1964-09-17,83.24,84.18,83.17,83.79,6380000,83.79
-1964-09-16,83.00,83.52,82.57,83.24,4230000,83.24
-1964-09-15,83.22,83.68,82.69,83.00,5690000,83.00
-1964-09-14,83.45,83.89,82.88,83.22,5370000,83.22
-1964-09-11,83.10,83.84,82.79,83.45,5630000,83.45
-1964-09-10,83.05,83.50,82.60,83.10,5470000,83.10
-1964-09-09,82.87,83.51,82.54,83.05,5690000,83.05
-1964-09-08,82.76,83.24,82.46,82.87,4090000,82.87
-1964-09-04,82.56,83.03,82.31,82.76,4210000,82.76
-1964-09-03,82.31,82.83,82.04,82.56,4310000,82.56
-1964-09-02,82.18,82.76,81.95,82.31,4800000,82.31
-1964-09-01,81.83,82.50,81.57,82.18,4650000,82.18
-1964-08-31,81.99,82.48,81.46,81.83,3340000,81.83
-1964-08-28,81.70,82.29,81.54,81.99,3760000,81.99
-1964-08-27,81.32,81.94,81.07,81.70,3560000,81.70
-1964-08-26,81.44,81.74,80.99,81.32,3300000,81.32
-1964-08-25,81.91,82.13,81.20,81.44,3780000,81.44
-1964-08-24,82.07,82.48,81.64,81.91,3790000,81.91
-1964-08-21,81.94,82.43,81.64,82.07,3620000,82.07
-1964-08-20,82.32,82.57,81.60,81.94,3840000,81.94
-1964-08-19,82.40,82.80,81.99,82.32,4160000,82.32
-1964-08-18,82.36,82.79,82.01,82.40,4180000,82.40
-1964-08-17,82.35,82.85,82.02,82.36,3780000,82.36
-1964-08-14,82.41,82.83,82.03,82.35,4080000,82.35
-1964-08-13,82.17,82.87,81.98,82.41,4600000,82.41
-1964-08-12,81.76,82.53,81.60,82.17,4140000,82.17
-1964-08-11,81.78,82.25,81.45,81.76,3450000,81.76
-1964-08-10,81.86,82.23,81.43,81.78,3050000,81.78
-1964-08-07,81.34,82.20,81.19,81.86,3190000,81.86
-1964-08-06,82.09,82.45,81.20,81.34,3940000,81.34
-1964-08-05,81.96,82.41,80.80,82.09,6160000,82.09
-1964-08-04,83.00,83.02,81.68,81.96,4780000,81.96
-1964-08-03,83.18,83.49,82.65,83.00,3780000,83.00
-1964-07-31,83.09,83.57,82.72,83.18,4220000,83.18
-1964-07-30,82.92,83.50,82.63,83.09,4530000,83.09
-1964-07-29,82.85,83.30,82.47,82.92,4050000,82.92
-1964-07-28,83.08,83.30,82.40,82.85,3860000,82.85
-1964-07-27,83.46,83.82,82.82,83.08,4090000,83.08
-1964-07-24,83.48,83.92,83.07,83.46,4210000,83.46
-1964-07-23,83.52,83.91,83.06,83.48,4560000,83.48
-1964-07-22,83.54,83.95,82.96,83.52,4570000,83.52
-1964-07-21,83.74,83.99,83.06,83.54,4570000,83.54
-1964-07-20,84.01,84.33,83.44,83.74,4390000,83.74
-1964-07-17,83.64,84.33,83.37,84.01,4640000,84.01
-1964-07-16,83.34,83.98,83.06,83.64,4640000,83.64
-1964-07-15,83.06,83.67,82.72,83.34,4610000,83.34
-1964-07-14,83.31,83.71,82.72,83.06,4760000,83.06
-1964-07-13,83.36,83.86,82.92,83.31,4800000,83.31
-1964-07-10,83.22,83.99,82.87,83.36,5420000,83.36
-1964-07-09,83.12,83.64,82.74,83.22,5040000,83.22
-1964-07-08,83.12,83.56,82.58,83.12,4760000,83.12
-1964-07-07,82.98,83.53,82.60,83.12,5240000,83.12
-1964-07-06,82.60,83.38,82.37,82.98,5080000,82.98
-1964-07-02,82.27,82.98,82.09,82.60,5230000,82.60
-1964-07-01,81.69,82.51,81.46,82.27,5320000,82.27
-1964-06-30,81.64,82.07,81.19,81.69,4360000,81.69
-1964-06-29,81.46,82.10,81.10,81.64,4380000,81.64
-1964-06-26,81.21,81.78,80.86,81.46,4440000,81.46
-1964-06-25,81.06,81.73,80.75,81.21,5010000,81.21
-1964-06-24,80.77,81.45,80.41,81.06,4840000,81.06
-1964-06-23,81.11,81.43,80.50,80.77,4060000,80.77
-1964-06-22,80.89,81.54,80.66,81.11,4540000,81.11
-1964-06-19,80.79,81.23,80.39,80.89,4050000,80.89
-1964-06-18,80.81,81.34,80.43,80.79,4730000,80.79
-1964-06-17,80.40,81.13,80.22,80.81,5340000,80.81
-1964-06-16,79.97,80.72,79.85,80.40,4590000,80.40
-1964-06-15,79.60,80.33,79.39,79.97,4110000,79.97
-1964-06-12,79.73,80.05,79.19,79.60,3840000,79.60
-1964-06-11,79.44,80.13,79.24,79.73,3620000,79.73
-1964-06-10,79.14,79.84,79.02,79.44,4170000,79.44
-1964-06-09,78.64,79.39,78.15,79.14,4470000,79.14
-1964-06-08,79.02,79.44,78.44,78.64,4010000,78.64
-1964-06-05,78.67,79.45,78.50,79.02,4240000,79.02
-1964-06-04,79.49,79.75,78.44,78.67,4880000,78.67
-1964-06-03,79.70,80.12,79.27,79.49,3990000,79.49
-1964-06-02,80.11,80.60,79.50,79.70,4180000,79.70
-1964-06-01,80.37,80.83,79.83,80.11,4300000,80.11
-1964-05-28,80.26,80.75,79.88,80.37,4560000,80.37
-1964-05-27,80.39,80.72,79.78,80.26,4450000,80.26
-1964-05-26,80.56,80.94,80.12,80.39,4290000,80.39
-1964-05-25,80.73,81.16,80.21,80.56,3990000,80.56
-1964-05-22,80.94,81.15,80.36,80.73,4640000,80.73
-1964-05-21,80.66,81.49,80.36,80.94,5350000,80.94
-1964-05-20,80.30,81.02,80.09,80.66,4790000,80.66
-1964-05-19,80.72,81.04,79.96,80.30,4360000,80.30
-1964-05-18,81.10,81.47,80.42,80.72,4590000,80.72
-1964-05-15,80.86,81.45,80.49,81.10,5070000,81.10
-1964-05-14,80.97,81.28,80.37,80.86,4720000,80.86
-1964-05-13,81.16,81.65,80.66,80.97,5890000,80.97
-1964-05-12,80.90,81.81,80.66,81.16,5200000,81.16
-1964-05-11,81.00,81.51,80.58,80.90,4490000,80.90
-1964-05-08,81.00,81.00,81.00,81.00,4910000,81.00
-1964-05-07,81.06,81.72,80.67,81.15,5600000,81.15
-1964-05-06,80.88,81.57,80.53,81.06,5560000,81.06
-1964-05-05,80.47,81.20,79.99,80.88,5340000,80.88
-1964-05-04,80.17,81.01,79.87,80.47,5360000,80.47
-1964-05-01,79.46,80.47,79.46,80.17,5990000,80.17
-1964-04-30,79.70,80.08,79.08,79.46,5690000,79.46
-1964-04-29,79.90,80.60,79.29,79.70,6200000,79.70
-1964-04-28,79.35,80.26,79.14,79.90,4790000,79.90
-1964-04-27,79.75,80.01,78.90,79.35,5070000,79.35
-1964-04-24,80.38,80.62,79.45,79.75,5610000,79.75
-1964-04-23,80.49,81.20,80.09,80.38,6690000,80.38
-1964-04-22,80.54,80.92,80.06,80.49,5390000,80.49
-1964-04-21,80.50,80.98,80.05,80.54,5750000,80.54
-1964-04-20,80.55,81.04,80.11,80.50,5560000,80.50
-1964-04-17,80.20,80.98,79.99,80.55,6030000,80.55
-1964-04-16,80.09,80.62,79.73,80.20,5240000,80.20
-1964-04-15,79.99,80.50,79.63,80.09,5270000,80.09
-1964-04-14,79.77,80.37,79.46,79.99,5120000,79.99
-1964-04-13,79.85,80.30,79.42,79.77,5330000,79.77
-1964-04-10,79.70,80.26,79.43,79.85,4990000,79.85
-1964-04-09,79.75,80.23,79.36,79.70,5300000,79.70
-1964-04-08,79.74,80.17,79.26,79.75,5380000,79.75
-1964-04-07,80.02,80.44,79.41,79.74,5900000,79.74
-1964-04-06,79.94,80.45,79.55,80.02,5840000,80.02
-1964-04-03,79.70,80.37,79.45,79.94,5990000,79.94
-1964-04-02,79.24,80.09,79.13,79.70,6840000,79.70
-1964-04-01,78.98,79.58,78.67,79.24,5510000,79.24
-1964-03-31,79.14,79.51,78.57,78.98,5270000,78.98
-1964-03-30,79.19,79.67,78.75,79.14,6060000,79.14
-1964-03-26,78.98,79.58,78.67,79.19,5760000,79.19
-1964-03-25,78.79,79.33,78.17,78.98,5420000,78.98
-1964-03-24,78.93,79.34,78.51,78.79,5210000,78.79
-1964-03-23,78.92,79.33,78.45,78.93,4940000,78.93
-1964-03-20,79.30,79.35,78.92,78.92,5020000,78.92
-1964-03-19,79.38,79.85,78.94,79.30,5670000,79.30
-1964-03-18,79.32,79.89,78.90,79.38,5890000,79.38
-1964-03-17,79.14,79.65,78.77,79.32,5480000,79.32
-1964-03-16,79.14,79.60,78.72,79.14,5140000,79.14
-1964-03-13,79.08,79.59,78.74,79.14,5660000,79.14
-1964-03-12,78.95,79.41,78.55,79.08,5290000,79.08
-1964-03-11,78.59,79.42,78.45,78.95,6180000,78.95
-1964-03-10,78.33,78.90,77.95,78.59,5500000,78.59
-1964-03-09,78.31,78.88,77.95,78.33,5510000,78.33
-1964-03-06,78.06,78.60,77.85,78.31,4790000,78.31
-1964-03-05,78.07,78.44,77.58,78.06,4680000,78.06
-1964-03-04,78.22,78.70,77.70,78.07,5250000,78.07
-1964-03-03,77.97,78.66,77.69,78.22,5350000,78.22
-1964-03-02,77.80,78.38,77.50,77.97,5690000,77.97
-1964-02-28,77.62,78.06,77.20,77.80,4980000,77.80
-1964-02-27,77.87,78.29,77.38,77.62,5420000,77.62
-1964-02-26,77.68,78.13,77.33,77.87,5350000,77.87
-1964-02-25,77.68,78.31,77.19,77.68,5010000,77.68
-1964-02-24,77.62,78.16,77.27,77.68,5630000,77.68
-1964-02-20,77.55,77.99,77.16,77.62,4690000,77.62
-1964-02-19,77.47,77.98,77.13,77.55,4280000,77.55
-1964-02-18,77.46,77.90,77.00,77.47,4660000,77.47
-1964-02-17,77.48,77.93,77.04,77.46,4780000,77.46
-1964-02-14,77.52,77.82,77.02,77.48,4360000,77.48
-1964-02-13,77.57,77.93,77.10,77.52,4820000,77.52
-1964-02-12,77.33,77.88,77.14,77.57,4650000,77.57
-1964-02-11,77.05,77.65,76.81,77.33,4040000,77.33
-1964-02-10,77.18,77.77,76.83,77.05,4150000,77.05
-1964-02-07,76.93,77.51,76.66,77.18,4710000,77.18
-1964-02-06,76.75,77.26,76.47,76.93,4110000,76.93
-1964-02-05,76.88,77.28,76.36,76.75,4010000,76.75
-1964-02-04,76.97,77.31,76.46,76.88,4320000,76.88
-1964-02-03,77.04,77.55,76.53,76.97,4140000,76.97
-1964-01-31,76.70,77.37,76.39,77.04,4000000,77.04
-1964-01-30,76.63,77.20,76.26,76.70,4230000,76.70
-1964-01-29,77.10,77.36,76.33,76.63,4450000,76.63
-1964-01-28,77.08,77.56,76.63,77.10,4720000,77.10
-1964-01-27,77.11,77.78,76.64,77.08,5240000,77.08
-1964-01-24,77.09,77.56,76.58,77.11,5080000,77.11
-1964-01-23,77.03,77.62,76.67,77.09,5380000,77.09
-1964-01-22,76.62,77.62,76.45,77.03,5430000,77.03
-1964-01-21,76.41,76.99,75.87,76.62,4800000,76.62
-1964-01-20,76.56,77.19,76.02,76.41,5570000,76.41
-1964-01-17,76.55,77.09,76.02,76.56,5600000,76.56
-1964-01-16,76.64,77.21,76.05,76.55,6200000,76.55
-1964-01-15,76.36,77.06,75.96,76.64,6750000,76.64
-1964-01-14,76.22,76.85,75.88,76.36,6500000,76.36
-1964-01-13,76.24,76.71,75.78,76.22,5440000,76.22
-1964-01-10,76.28,76.67,75.74,76.24,5260000,76.24
-1964-01-09,76.00,76.64,75.60,76.28,5180000,76.28
-1964-01-08,75.69,76.35,75.39,76.00,5380000,76.00
-1964-01-07,75.67,76.24,75.25,75.69,5700000,75.69
-1964-01-06,75.50,76.12,75.18,75.67,5480000,75.67
-1964-01-03,75.43,76.04,75.09,75.50,5550000,75.50
-1964-01-02,75.02,75.79,74.82,75.43,4680000,75.43
-1963-12-31,74.56,75.36,74.40,75.02,6730000,75.02
-1963-12-30,74.44,74.94,74.13,74.56,4930000,74.56
-1963-12-27,74.32,74.91,74.09,74.44,4360000,74.44
-1963-12-26,73.97,74.63,73.74,74.32,3700000,74.32
-1963-12-24,73.81,74.48,73.44,73.97,3970000,73.97
-1963-12-23,74.28,74.45,73.49,73.81,4540000,73.81
-1963-12-20,74.40,74.75,73.85,74.28,4600000,74.28
-1963-12-19,74.63,74.92,74.08,74.40,4410000,74.40
-1963-12-18,74.74,75.21,74.25,74.63,6000000,74.63
-1963-12-17,74.30,75.08,74.07,74.74,5140000,74.74
-1963-12-16,74.06,74.66,73.78,74.30,4280000,74.30
-1963-12-13,73.91,74.39,73.68,74.06,4290000,74.06
-1963-12-12,73.90,74.31,73.58,73.91,4220000,73.91
-1963-12-11,73.99,74.37,73.58,73.90,4400000,73.90
-1963-12-10,73.96,74.48,73.40,73.99,4560000,73.99
-1963-12-09,74.00,74.41,73.56,73.96,4430000,73.96
-1963-12-06,74.28,74.63,73.62,74.00,4830000,74.00
-1963-12-05,73.80,74.57,73.45,74.28,5190000,74.28
-1963-12-04,73.62,74.18,73.21,73.80,4790000,73.80
-1963-12-03,73.66,74.01,73.14,73.62,4520000,73.62
-1963-12-02,73.23,74.08,73.02,73.66,4770000,73.66
-1963-11-29,72.25,73.47,72.05,73.23,4810000,73.23
-1963-11-27,72.38,72.78,71.76,72.25,5210000,72.25
-1963-11-26,71.40,72.74,71.40,72.38,9320000,72.38
-1963-11-22,71.62,72.17,69.48,69.61,6630000,69.61
-1963-11-21,72.56,72.86,71.40,71.62,5670000,71.62
-1963-11-20,71.90,73.14,71.49,72.56,5330000,72.56
-1963-11-19,71.83,72.61,71.42,71.90,4430000,71.90
-1963-11-18,72.35,72.52,71.42,71.83,4730000,71.83
-1963-11-15,72.95,73.20,72.09,72.35,4790000,72.35
-1963-11-14,73.29,73.53,72.63,72.95,4610000,72.95
-1963-11-13,73.23,73.67,72.89,73.29,4710000,73.29
-1963-11-12,73.23,73.23,73.23,73.23,4610000,73.23
-1963-11-11,73.52,73.52,73.52,73.52,3970000,73.52
-1963-11-08,73.06,73.66,72.80,73.36,4570000,73.36
-1963-11-07,72.81,73.48,72.58,73.06,4320000,73.06
-1963-11-06,73.45,73.47,72.33,72.81,5600000,72.81
-1963-11-04,73.83,74.27,73.09,73.45,5440000,73.45
-1963-11-01,74.01,74.44,73.47,73.83,5240000,73.83
-1963-10-31,73.80,74.35,73.25,74.01,5030000,74.01
-1963-10-30,74.46,74.59,73.43,73.80,5170000,73.80
-1963-10-29,74.48,75.18,73.97,74.46,6100000,74.46
-1963-10-28,74.01,75.15,73.75,74.48,7150000,74.48
-1963-10-25,73.28,74.41,73.06,74.01,6390000,74.01
-1963-10-24,73.00,73.73,72.74,73.28,6280000,73.28
-1963-10-23,72.96,73.55,72.59,73.00,5830000,73.00
-1963-10-22,73.38,73.55,72.48,72.96,6420000,72.96
-1963-10-21,73.32,73.87,73.03,73.38,5450000,73.38
-1963-10-18,73.26,73.74,72.85,73.32,5830000,73.32
-1963-10-17,72.97,73.77,72.84,73.26,6790000,73.26
-1963-10-16,72.40,73.20,72.08,72.97,5570000,72.97
-1963-10-15,72.30,72.79,71.99,72.40,4550000,72.40
-1963-10-14,72.27,72.43,71.85,72.30,4270000,72.30
-1963-10-11,72.20,72.71,71.87,72.27,4740000,72.27
-1963-10-10,71.87,72.52,71.60,72.20,4470000,72.20
-1963-10-09,71.98,71.98,71.60,71.87,5520000,71.87
-1963-10-08,72.70,73.14,72.24,72.60,4920000,72.60
-1963-10-07,72.85,73.27,72.39,72.70,4050000,72.70
-1963-10-04,72.83,73.19,72.46,72.85,5120000,72.85
-1963-10-03,72.30,73.10,72.10,72.83,4510000,72.83
-1963-10-02,72.22,72.67,71.92,72.30,3780000,72.30
-1963-10-01,71.70,72.65,71.57,72.22,4420000,72.22
-1963-09-30,72.13,72.37,71.28,71.70,3730000,71.70
-1963-09-27,72.27,72.60,71.60,72.13,4350000,72.13
-1963-09-26,72.89,73.07,72.01,72.27,5100000,72.27
-1963-09-25,73.30,73.87,72.58,72.89,6340000,72.89
-1963-09-24,72.96,73.67,72.59,73.30,5520000,73.30
-1963-09-23,73.30,73.53,72.62,72.96,5140000,72.96
-1963-09-20,73.22,73.71,72.92,73.30,5310000,73.30
-1963-09-19,72.80,73.47,72.61,73.22,4080000,73.22
-1963-09-18,73.12,73.44,72.51,72.80,5070000,72.80
-1963-09-17,73.07,73.64,72.79,73.12,4950000,73.12
-1963-09-16,73.17,73.63,72.80,73.07,4740000,73.07
-1963-09-13,73.15,73.59,72.82,73.17,5230000,73.17
-1963-09-12,73.20,73.60,72.72,73.15,5560000,73.15
-1963-09-11,72.99,73.79,72.83,73.20,6670000,73.20
-1963-09-10,72.58,73.27,72.25,72.99,5310000,72.99
-1963-09-09,72.84,73.23,72.26,72.58,5020000,72.58
-1963-09-06,73.00,73.51,72.51,72.84,7160000,72.84
-1963-09-05,72.64,73.19,72.15,73.00,5700000,73.00
-1963-09-04,72.66,73.18,72.32,72.64,6070000,72.64
-1963-09-03,72.50,73.09,72.30,72.66,5570000,72.66
-1963-08-30,72.16,72.71,71.88,72.50,4560000,72.50
-1963-08-29,72.04,72.56,71.83,72.16,5110000,72.16
-1963-08-28,71.52,72.39,71.49,72.04,5120000,72.04
-1963-08-27,71.91,72.04,71.27,71.52,4080000,71.52
-1963-08-26,71.76,72.30,71.57,71.91,4700000,71.91
-1963-08-23,71.54,72.14,71.33,71.76,4880000,71.76
-1963-08-22,71.29,71.81,70.95,71.54,4540000,71.54
-1963-08-21,71.38,71.73,71.00,71.29,3820000,71.29
-1963-08-20,71.44,71.91,71.03,71.38,3660000,71.38
-1963-08-19,71.49,71.92,71.15,71.44,3650000,71.44
-1963-08-16,71.38,71.95,71.05,71.49,4130000,71.49
-1963-08-15,71.07,71.71,70.81,71.38,4980000,71.38
-1963-08-14,70.79,71.32,70.39,71.07,4420000,71.07
-1963-08-13,70.59,71.09,70.32,70.79,4450000,70.79
-1963-08-12,70.48,71.00,70.19,70.59,4770000,70.59
-1963-08-09,70.02,70.65,69.83,70.48,4050000,70.48
-1963-08-08,69.96,70.31,69.58,70.02,3460000,70.02
-1963-08-07,70.17,70.53,69.69,69.96,3790000,69.96
-1963-08-06,69.71,70.40,69.57,70.17,3760000,70.17
-1963-08-05,69.30,69.97,69.20,69.71,3370000,69.71
-1963-08-02,69.07,69.56,68.86,69.30,2940000,69.30
-1963-08-01,69.13,69.47,68.64,69.07,3410000,69.07
-1963-07-31,69.24,69.83,68.91,69.13,3960000,69.13
-1963-07-30,68.67,69.45,68.58,69.24,3550000,69.24
-1963-07-29,68.54,68.96,68.32,68.67,2840000,68.67
-1963-07-26,68.26,68.76,68.03,68.54,2510000,68.54
-1963-07-25,68.28,68.92,68.02,68.26,3710000,68.26
-1963-07-24,67.91,68.54,67.76,68.28,2810000,68.28
-1963-07-23,67.90,68.57,67.65,67.91,3500000,67.91
-1963-07-22,68.35,68.60,67.54,67.90,3700000,67.90
-1963-07-19,68.49,68.70,67.90,68.35,3340000,68.35
-1963-07-18,68.93,69.27,68.34,68.49,3710000,68.49
-1963-07-17,69.14,69.53,68.68,68.93,3940000,68.93
-1963-07-16,69.20,69.51,68.85,69.14,3000000,69.14
-1963-07-15,69.64,69.73,68.97,69.20,3290000,69.20
-1963-07-12,69.76,70.13,69.36,69.64,3660000,69.64
-1963-07-11,69.89,70.30,69.52,69.76,4100000,69.76
-1963-07-10,70.04,70.31,69.56,69.89,3730000,69.89
-1963-07-09,69.74,70.39,69.55,70.04,3830000,70.04
-1963-07-08,70.22,70.35,69.47,69.74,3290000,69.74
-1963-07-05,69.94,70.48,69.78,70.22,2910000,70.22
-1963-07-03,69.46,70.28,69.42,69.94,4030000,69.94
-1963-07-02,68.86,69.72,68.74,69.46,3540000,69.46
-1963-07-01,69.37,69.53,68.58,68.86,3360000,68.86
-1963-06-28,69.07,69.68,68.93,69.37,3020000,69.37
-1963-06-27,69.41,69.81,68.78,69.07,4540000,69.07
-1963-06-26,70.04,70.10,69.17,69.41,4500000,69.41
-1963-06-25,70.20,70.51,69.75,70.04,4120000,70.04
-1963-06-24,70.25,70.67,69.84,70.20,3700000,70.20
-1963-06-21,70.01,70.57,69.79,70.25,4190000,70.25
-1963-06-20,70.09,70.36,69.31,70.01,4970000,70.01
-1963-06-19,70.02,70.47,69.75,70.09,3970000,70.09
-1963-06-18,69.95,70.43,69.63,70.02,3910000,70.02
-1963-06-17,69.95,69.95,69.95,69.95,3510000,69.95
-1963-06-14,70.23,70.60,69.87,70.25,3840000,70.25
-1963-06-13,70.41,70.85,69.98,70.23,4690000,70.23
-1963-06-12,70.03,70.81,69.91,70.41,5210000,70.41
-1963-06-11,69.94,70.41,69.58,70.03,4390000,70.03
-1963-06-10,70.41,70.51,69.57,69.94,4690000,69.94
-1963-06-07,70.58,70.98,70.10,70.41,5110000,70.41
-1963-06-06,70.53,70.95,70.11,70.58,4990000,70.58
-1963-06-05,70.70,71.17,70.17,70.53,5860000,70.53
-1963-06-04,70.69,71.08,70.20,70.70,5970000,70.70
-1963-06-03,70.80,71.24,70.39,70.69,5400000,70.69
-1963-05-31,70.33,71.14,70.27,70.80,4680000,70.80
-1963-05-29,70.01,70.65,69.86,70.33,4320000,70.33
-1963-05-28,69.87,70.41,69.55,70.01,3860000,70.01
-1963-05-27,70.02,70.27,69.48,69.87,3760000,69.87
-1963-05-24,70.10,70.44,69.66,70.02,4320000,70.02
-1963-05-23,70.14,70.53,69.79,70.10,4400000,70.10
-1963-05-22,70.14,70.68,69.82,70.14,5560000,70.14
-1963-05-21,69.96,70.51,69.62,70.14,5570000,70.14
-1963-05-20,70.29,70.48,69.59,69.96,4710000,69.96
-1963-05-17,70.25,70.63,69.83,70.29,4410000,70.29
-1963-05-16,70.43,70.81,69.91,70.25,5640000,70.25
-1963-05-15,70.21,70.77,69.87,70.43,5650000,70.43
-1963-05-14,70.48,70.73,69.92,70.21,4740000,70.21
-1963-05-13,70.52,70.89,70.11,70.48,4920000,70.48
-1963-05-10,70.35,70.81,69.99,70.52,5260000,70.52
-1963-05-09,70.01,70.74,69.86,70.35,5600000,70.35
-1963-05-08,69.44,70.24,69.23,70.01,5140000,70.01
-1963-05-07,69.53,69.92,69.03,69.44,4140000,69.44
-1963-05-06,70.03,70.31,69.32,69.53,4090000,69.53
-1963-05-03,70.17,70.51,69.78,70.03,4760000,70.03
-1963-05-02,69.97,70.50,69.75,70.17,4480000,70.17
-1963-05-01,69.80,70.43,69.61,69.97,5060000,69.97
-1963-04-30,69.65,70.18,69.26,69.80,4680000,69.80
-1963-04-29,69.70,70.04,69.26,69.65,3980000,69.65
-1963-04-26,69.76,70.11,69.23,69.70,4490000,69.70
-1963-04-25,69.72,70.08,69.25,69.76,5070000,69.76
-1963-04-24,69.53,70.12,69.34,69.72,5910000,69.72
-1963-04-23,69.30,69.83,68.95,69.53,5220000,69.53
-1963-04-22,69.23,69.82,69.01,69.30,5180000,69.30
-1963-04-19,68.89,69.46,68.60,69.23,4660000,69.23
-1963-04-18,68.92,69.34,68.56,68.89,4770000,68.89
-1963-04-17,69.14,69.37,68.47,68.92,5220000,68.92
-1963-04-16,69.09,69.61,68.66,69.14,5570000,69.14
-1963-04-15,68.77,69.56,68.58,69.09,5930000,69.09
-1963-04-11,68.29,69.07,67.97,68.77,5250000,68.77
-1963-04-10,68.45,68.89,67.66,68.29,5880000,68.29
-1963-04-09,68.52,68.84,68.03,68.45,5090000,68.45
-1963-04-08,68.28,68.91,68.05,68.52,5940000,68.52
-1963-04-05,67.85,68.46,67.46,68.28,5240000,68.28
-1963-04-04,67.36,68.12,67.28,67.85,5300000,67.85
-1963-04-03,66.84,67.55,66.63,67.36,4660000,67.36
-1963-04-02,66.85,67.36,66.51,66.84,4360000,66.84
-1963-04-01,66.57,67.18,66.23,66.85,3890000,66.85
-1963-03-29,66.58,66.90,66.23,66.57,3390000,66.57
-1963-03-28,66.68,67.01,66.32,66.58,3890000,66.58
-1963-03-27,66.40,66.93,66.21,66.68,4270000,66.68
-1963-03-26,66.21,66.73,66.01,66.40,4100000,66.40
-1963-03-25,66.19,66.60,65.92,66.21,3700000,66.21
-1963-03-22,65.85,66.44,65.68,66.19,3820000,66.19
-1963-03-21,65.95,66.25,65.60,65.85,3220000,65.85
-1963-03-20,65.47,66.15,65.30,65.95,3690000,65.95
-1963-03-19,65.61,65.85,65.19,65.47,3180000,65.47
-1963-03-18,65.93,66.17,65.36,65.61,3250000,65.61
-1963-03-15,65.60,66.22,65.39,65.93,3400000,65.93
-1963-03-14,65.91,66.21,65.39,65.60,3540000,65.60
-1963-03-13,65.67,66.27,65.54,65.91,4120000,65.91
-1963-03-12,65.51,65.97,65.26,65.67,3350000,65.67
-1963-03-11,65.33,65.86,65.11,65.51,3180000,65.51
-1963-03-08,65.26,65.74,65.03,65.33,3360000,65.33
-1963-03-07,64.85,65.60,64.81,65.26,3350000,65.26
-1963-03-06,64.74,65.06,64.31,64.85,3100000,64.85
-1963-03-05,64.72,65.27,64.41,64.74,3280000,64.74
-1963-03-04,64.10,65.08,63.88,64.72,3650000,64.72
-1963-03-01,64.29,64.75,63.80,64.10,3920000,64.10
-1963-02-28,65.01,65.14,64.08,64.29,4090000,64.29
-1963-02-27,65.47,65.74,64.86,65.01,3680000,65.01
-1963-02-26,65.46,65.86,65.06,65.47,3670000,65.47
-1963-02-25,65.92,66.09,65.24,65.46,3680000,65.46
-1963-02-21,65.83,66.23,65.36,65.92,3980000,65.92
-1963-02-20,66.20,66.28,65.44,65.83,4120000,65.83
-1963-02-19,66.52,66.67,65.92,66.20,4130000,66.20
-1963-02-18,66.41,66.96,66.10,66.52,4700000,66.52
-1963-02-15,66.35,66.74,65.96,66.41,4410000,66.41
-1963-02-14,66.15,66.75,65.93,66.35,5640000,66.35
-1963-02-13,65.83,66.53,65.56,66.15,4960000,66.15
-1963-02-12,65.76,66.01,65.16,65.83,3710000,65.83
-1963-02-11,66.17,66.41,65.50,65.76,3880000,65.76
-1963-02-08,66.17,66.45,65.65,66.17,3890000,66.17
-1963-02-07,66.40,66.81,65.91,66.17,4240000,66.17
-1963-02-06,66.11,66.76,65.88,66.40,4340000,66.40
-1963-02-05,66.17,66.35,65.38,66.11,4050000,66.11
-1963-02-04,66.31,66.66,65.89,66.17,3670000,66.17
-1963-02-01,66.31,66.31,66.31,66.31,4280000,66.31
-1963-01-31,65.85,66.45,65.51,66.20,4270000,66.20
-1963-01-30,66.23,66.33,65.55,65.85,3740000,65.85
-1963-01-29,66.24,66.58,65.83,66.23,4360000,66.23
-1963-01-28,65.92,66.59,65.77,66.24,4720000,66.24
-1963-01-25,65.75,66.23,65.38,65.92,4770000,65.92
-1963-01-24,65.62,66.09,65.33,65.75,4810000,65.75
-1963-01-23,65.44,65.91,65.23,65.62,4820000,65.62
-1963-01-22,65.28,65.80,65.03,65.44,4810000,65.44
-1963-01-21,65.18,65.52,64.64,65.28,4090000,65.28
-1963-01-18,65.13,65.70,64.86,65.18,4760000,65.18
-1963-01-17,64.67,65.40,64.35,65.13,5230000,65.13
-1963-01-16,65.11,65.25,64.42,64.67,4260000,64.67
-1963-01-15,65.20,65.62,64.82,65.11,5930000,65.11
-1963-01-14,64.85,65.50,64.61,65.20,5000000,65.20
-1963-01-11,64.71,65.10,64.31,64.85,4410000,64.85
-1963-01-10,64.59,65.16,64.33,64.71,4520000,64.71
-1963-01-09,64.74,65.22,64.32,64.59,5110000,64.59
-1963-01-08,64.12,64.98,64.00,64.74,5410000,64.74
-1963-01-07,64.13,64.59,63.67,64.12,4440000,64.12
-1963-01-04,63.72,64.45,63.57,64.13,5400000,64.13
-1963-01-03,62.69,63.89,62.67,63.72,4570000,63.72
-1963-01-02,63.10,63.39,62.32,62.69,2540000,62.69
-1962-12-31,62.96,63.43,62.68,63.10,5420000,63.10
-1962-12-28,62.93,63.25,62.53,62.96,4140000,62.96
-1962-12-27,63.02,63.41,62.67,62.93,3670000,62.93
-1962-12-26,62.63,63.32,62.56,63.02,3370000,63.02
-1962-12-24,62.64,63.03,62.19,62.63,3180000,62.63
-1962-12-21,62.82,63.13,62.26,62.64,3470000,62.64
-1962-12-20,62.58,63.28,62.44,62.82,4220000,62.82
-1962-12-19,62.07,62.81,61.72,62.58,4000000,62.58
-1962-12-18,62.37,62.66,61.78,62.07,3620000,62.07
-1962-12-17,62.57,62.95,62.14,62.37,3590000,62.37
-1962-12-14,62.42,62.83,61.96,62.57,3280000,62.57
-1962-12-13,62.63,63.07,62.09,62.42,3380000,62.42
-1962-12-12,62.32,63.16,62.13,62.63,3760000,62.63
-1962-12-11,62.27,62.58,61.72,62.32,3700000,62.32
-1962-12-10,63.06,63.35,61.96,62.27,4270000,62.27
-1962-12-07,62.93,63.43,62.45,63.06,3900000,63.06
-1962-12-06,62.39,63.36,62.28,62.93,4600000,62.93
-1962-12-05,62.64,63.50,62.37,62.39,6280000,62.39
-1962-12-04,61.94,62.93,61.77,62.64,5210000,62.64
-1962-12-03,62.26,62.45,61.28,61.94,3810000,61.94
-1962-11-30,62.41,62.78,61.78,62.26,4570000,62.26
-1962-11-29,62.12,62.72,61.69,62.41,5810000,62.41
-1962-11-28,61.73,62.48,61.51,62.12,5980000,62.12
-1962-11-27,61.36,62.04,60.98,61.73,5500000,61.73
-1962-11-26,61.54,62.13,60.95,61.36,5650000,61.36
-1962-11-23,60.81,62.03,60.66,61.54,5660000,61.54
-1962-11-21,60.45,61.18,60.19,60.81,5100000,60.81
-1962-11-20,59.82,60.63,59.57,60.45,4290000,60.45
-1962-11-19,60.16,60.42,59.46,59.82,3410000,59.82
-1962-11-16,59.97,60.46,59.46,60.16,4000000,60.16
-1962-11-15,60.16,60.67,59.74,59.97,5050000,59.97
-1962-11-14,59.46,60.41,59.18,60.16,5090000,60.16
-1962-11-13,59.59,60.06,59.06,59.46,4550000,59.46
-1962-11-12,58.78,60.00,58.59,59.59,5090000,59.59
-1962-11-09,58.32,58.99,57.90,58.78,4340000,58.78
-1962-11-08,58.71,59.12,58.09,58.32,4160000,58.32
-1962-11-07,58.35,59.11,57.76,58.71,4580000,58.71
-1962-11-05,57.75,58.70,57.69,58.35,4320000,58.35
-1962-11-02,57.12,58.19,56.78,57.75,5470000,57.75
-1962-11-01,56.52,57.31,55.90,57.12,3400000,57.12
-1962-10-31,56.54,57.00,56.19,56.52,3090000,56.52
-1962-10-30,55.72,56.84,55.52,56.54,3830000,56.54
-1962-10-29,55.34,56.38,55.34,55.72,4280000,55.72
-1962-10-26,54.69,54.96,54.08,54.54,2580000,54.54
-1962-10-25,55.17,55.17,53.82,54.69,3950000,54.69
-1962-10-24,53.49,55.44,52.55,55.21,6720000,55.21
-1962-10-23,54.96,55.19,53.24,53.49,6110000,53.49
-1962-10-22,55.48,55.48,54.38,54.96,5690000,54.96
-1962-10-19,56.34,56.54,55.34,55.59,4650000,55.59
-1962-10-18,56.89,57.02,56.18,56.34,3280000,56.34
-1962-10-17,57.08,57.23,56.37,56.89,3240000,56.89
-1962-10-16,57.27,57.63,56.87,57.08,2860000,57.08
-1962-10-15,56.95,57.50,56.66,57.27,2640000,57.27
-1962-10-12,57.05,57.21,56.66,56.95,2020000,56.95
-1962-10-11,57.24,57.46,56.78,57.05,2460000,57.05
-1962-10-10,57.20,57.83,56.96,57.24,3040000,57.24
-1962-10-09,57.07,57.40,56.71,57.20,2340000,57.20
-1962-10-08,57.07,57.41,56.68,57.07,1950000,57.07
-1962-10-05,56.70,57.30,56.55,57.07,2730000,57.07
-1962-10-04,56.16,56.84,55.90,56.70,2530000,56.70
-1962-10-03,56.10,56.71,55.84,56.16,2610000,56.16
-1962-10-02,55.49,56.46,55.31,56.10,3000000,56.10
-1962-10-01,56.27,56.31,55.26,55.49,3090000,55.49
-1962-09-28,55.77,56.58,55.59,56.27,2850000,56.27
-1962-09-27,56.15,56.55,55.53,55.77,3540000,55.77
-1962-09-26,56.96,57.29,55.92,56.15,3550000,56.15
-1962-09-25,56.63,57.22,56.12,56.96,3620000,56.96
-1962-09-24,57.45,57.45,56.30,56.63,5000000,56.63
-1962-09-21,58.54,58.64,57.43,57.69,4280000,57.69
-1962-09-20,58.95,59.29,58.33,58.54,3350000,58.54
-1962-09-19,59.03,59.26,58.59,58.95,2950000,58.95
-1962-09-18,59.08,59.54,58.77,59.03,3690000,59.03
-1962-09-17,58.89,59.42,58.65,59.08,3330000,59.08
-1962-09-14,58.70,59.14,58.40,58.89,2880000,58.89
-1962-09-13,58.84,59.18,58.46,58.70,3100000,58.70
-1962-09-12,58.59,59.06,58.40,58.84,3100000,58.84
-1962-09-11,58.45,58.93,58.17,58.59,3040000,58.59
-1962-09-10,58.38,58.64,57.88,58.45,2520000,58.45
-1962-09-07,58.36,58.90,58.09,58.38,2890000,58.38
-1962-09-06,58.12,58.60,57.72,58.36,3180000,58.36
-1962-09-05,58.56,58.77,57.95,58.12,3050000,58.12
-1962-09-04,59.12,59.49,58.44,58.56,2970000,58.56
-1962-08-31,58.68,59.25,58.45,59.12,2830000,59.12
-1962-08-30,58.66,59.06,58.39,58.68,2260000,58.68
-1962-08-29,58.79,58.96,58.17,58.66,2900000,58.66
-1962-08-28,59.55,59.61,58.66,58.79,3180000,58.79
-1962-08-27,59.58,59.94,59.24,59.55,3140000,59.55
-1962-08-24,59.70,59.92,59.18,59.58,2890000,59.58
-1962-08-23,59.78,60.33,59.47,59.70,4770000,59.70
-1962-08-22,59.12,59.93,58.91,59.78,4520000,59.78
-1962-08-21,59.37,59.66,58.90,59.12,3730000,59.12
-1962-08-20,59.01,59.72,58.90,59.37,4580000,59.37
-1962-08-17,58.64,59.24,58.43,59.01,3430000,59.01
-1962-08-16,58.66,59.11,58.24,58.64,4180000,58.64
-1962-08-15,58.25,59.11,58.22,58.66,4880000,58.66
-1962-08-14,57.63,58.43,57.41,58.25,3640000,58.25
-1962-08-13,57.55,57.90,57.22,57.63,2670000,57.63
-1962-08-10,57.57,57.85,57.16,57.55,2470000,57.55
-1962-08-09,57.51,57.88,57.19,57.57,2670000,57.57
-1962-08-08,57.36,57.64,56.76,57.51,3080000,57.51
-1962-08-07,57.75,57.81,57.07,57.36,2970000,57.36
-1962-08-06,58.12,58.35,57.54,57.75,3110000,57.75
-1962-08-03,57.98,58.32,57.63,58.12,5990000,58.12
-1962-08-02,57.75,58.20,57.38,57.98,3410000,57.98
-1962-08-01,58.23,58.30,57.51,57.75,3100000,57.75
-1962-07-31,57.83,58.58,57.74,58.23,4190000,58.23
-1962-07-30,57.20,57.98,57.08,57.83,3200000,57.83
-1962-07-27,56.77,57.36,56.56,57.20,2890000,57.20
-1962-07-26,56.46,57.18,56.16,56.77,2790000,56.77
-1962-07-25,56.36,56.67,55.78,56.46,2910000,56.46
-1962-07-24,56.80,56.93,56.14,56.36,2560000,56.36
-1962-07-23,56.81,57.32,56.53,56.80,2770000,56.80
-1962-07-20,56.42,57.09,56.27,56.81,2610000,56.81
-1962-07-19,56.20,56.95,55.96,56.42,3090000,56.42
-1962-07-18,56.78,56.81,55.86,56.20,3620000,56.20
-1962-07-17,57.83,57.96,56.68,56.78,3500000,56.78
-1962-07-16,57.83,58.10,57.18,57.83,3130000,57.83
-1962-07-13,58.03,58.18,57.23,57.83,3380000,57.83
-1962-07-12,57.73,58.67,57.59,58.03,5370000,58.03
-1962-07-11,57.20,57.95,56.77,57.73,4250000,57.73
-1962-07-10,56.99,58.36,56.99,57.20,7120000,57.20
-1962-07-09,56.17,56.73,55.54,56.55,2950000,56.55
-1962-07-06,56.73,56.73,55.64,56.17,3110000,56.17
-1962-07-05,56.49,57.10,56.15,56.81,3350000,56.81
-1962-07-03,55.86,56.74,55.57,56.49,3920000,56.49
-1962-07-02,54.75,56.02,54.47,55.86,3450000,55.86
-1962-06-29,54.41,55.47,54.20,54.75,4720000,54.75
-1962-06-28,52.98,54.64,52.98,54.41,5440000,54.41
-1962-06-27,52.32,52.83,51.77,52.60,3890000,52.60
-1962-06-26,52.45,53.58,52.10,52.32,4630000,52.32
-1962-06-25,52.68,52.96,51.35,52.45,7090000,52.45
-1962-06-22,53.59,53.78,52.48,52.68,5640000,52.68
-1962-06-21,54.78,54.78,53.50,53.59,4560000,53.59
-1962-06-20,55.54,55.92,54.66,54.78,3360000,54.78
-1962-06-19,55.74,55.88,54.98,55.54,2680000,55.54
-1962-06-18,55.89,56.53,54.97,55.74,4580000,55.74
-1962-06-15,54.33,55.96,53.66,55.89,7130000,55.89
-1962-06-14,55.50,56.00,54.12,54.33,6240000,54.33
-1962-06-13,56.34,56.80,55.24,55.50,5850000,55.50
-1962-06-12,57.66,57.66,56.23,56.34,4690000,56.34
-1962-06-11,58.45,58.58,57.51,57.82,2870000,57.82
-1962-06-08,58.40,58.97,58.14,58.45,2560000,58.45
-1962-06-07,58.39,58.90,58.00,58.40,2760000,58.40
-1962-06-06,57.64,59.17,57.64,58.39,4190000,58.39
-1962-06-05,57.27,58.42,56.33,57.57,6140000,57.57
-1962-06-04,59.12,59.12,57.14,57.27,5380000,57.27
-1962-06-01,59.63,59.96,58.52,59.38,5760000,59.38
-1962-05-31,58.80,60.82,58.80,59.63,10710000,59.63
-1962-05-29,55.50,58.29,53.13,58.08,14750000,58.08
-1962-05-28,59.15,59.15,55.42,55.50,9350000,55.50
-1962-05-25,60.62,60.98,59.00,59.47,6380000,59.47
-1962-05-24,61.11,61.79,60.36,60.62,5250000,60.62
-1962-05-23,62.34,62.42,60.90,61.11,5450000,61.11
-1962-05-22,63.59,63.69,62.26,62.34,3640000,62.34
-1962-05-21,63.82,64.00,63.21,63.59,2260000,63.59
-1962-05-18,63.93,64.14,63.29,63.82,2490000,63.82
-1962-05-17,64.27,64.41,63.38,63.93,2950000,63.93
-1962-05-16,64.29,64.88,63.82,64.27,3360000,64.27
-1962-05-15,63.41,64.87,63.41,64.29,4780000,64.29
-1962-05-14,62.65,63.31,61.11,63.10,5990000,63.10
-1962-05-11,63.57,64.10,62.44,62.65,4510000,62.65
-1962-05-10,64.26,64.39,62.99,63.57,4730000,63.57
-1962-05-09,65.17,65.17,64.02,64.26,3670000,64.26
-1962-05-08,66.02,66.13,64.88,65.17,3020000,65.17
-1962-05-07,66.24,66.56,65.66,66.02,2530000,66.02
-1962-05-04,66.53,66.80,65.80,66.24,3010000,66.24
-1962-05-03,65.99,66.93,65.81,66.53,3320000,66.53
-1962-05-02,65.70,66.67,65.56,65.99,3780000,65.99
-1962-05-01,65.24,65.94,63.76,65.70,5100000,65.70
-1962-04-30,66.30,66.90,64.95,65.24,4150000,65.24
-1962-04-27,67.05,67.61,65.99,66.30,4140000,66.30
-1962-04-26,67.71,67.97,66.92,67.05,3650000,67.05
-1962-04-25,68.46,68.58,67.53,67.71,3340000,67.71
-1962-04-24,68.53,68.91,68.16,68.46,3040000,68.46
-1962-04-23,68.59,69.01,68.17,68.53,3240000,68.53
-1962-04-19,68.27,68.90,68.07,68.59,3100000,68.59
-1962-04-18,67.90,68.72,67.83,68.27,3350000,68.27
-1962-04-17,67.60,68.20,67.24,67.90,2940000,67.90
-1962-04-16,67.90,68.19,67.21,67.60,3070000,67.60
-1962-04-13,67.90,68.11,67.03,67.90,3470000,67.90
-1962-04-12,68.41,68.43,67.47,67.90,3320000,67.90
-1962-04-11,68.56,69.26,68.24,68.41,3240000,68.41
-1962-04-10,68.31,68.80,67.94,68.56,2880000,68.56
-1962-04-09,68.84,69.02,68.09,68.31,3020000,68.31
-1962-04-06,68.91,69.42,68.58,68.84,2730000,68.84
-1962-04-05,68.49,69.09,68.12,68.91,3130000,68.91
-1962-04-04,68.81,69.22,68.33,68.49,3290000,68.49
-1962-04-03,69.37,69.53,68.53,68.81,3350000,68.81
-1962-04-02,69.55,69.82,69.13,69.37,2790000,69.37
-1962-03-30,70.01,70.09,69.16,69.55,2950000,69.55
-1962-03-29,70.04,70.50,69.81,70.01,2870000,70.01
-1962-03-28,69.70,70.33,69.54,70.04,2940000,70.04
-1962-03-27,69.89,70.20,69.41,69.70,3090000,69.70
-1962-03-26,70.45,70.63,69.73,69.89,3040000,69.89
-1962-03-23,70.40,70.78,70.12,70.45,3050000,70.45
-1962-03-22,70.51,70.84,70.14,70.40,3130000,70.40
-1962-03-21,70.66,70.93,70.16,70.51,3360000,70.51
-1962-03-20,70.85,71.08,70.40,70.66,3060000,70.66
-1962-03-19,70.94,71.31,70.53,70.85,3220000,70.85
-1962-03-16,71.06,71.34,70.67,70.94,3060000,70.94
-1962-03-15,70.91,71.44,70.59,71.06,3250000,71.06
-1962-03-14,70.60,71.25,70.48,70.91,3670000,70.91
-1962-03-13,70.40,70.86,70.06,70.60,3200000,70.60
-1962-03-12,70.42,70.76,70.02,70.40,3280000,70.40
-1962-03-09,70.19,70.71,70.00,70.42,3340000,70.42
-1962-03-08,69.69,70.37,69.40,70.19,3210000,70.19
-1962-03-07,69.78,70.07,69.37,69.69,2890000,69.69
-1962-03-06,70.01,70.24,69.46,69.78,2870000,69.78
-1962-03-05,70.16,70.48,69.65,70.01,3020000,70.01
-1962-03-02,70.16,70.16,69.75,70.16,2980000,70.16
-1962-03-01,69.96,70.60,69.76,70.20,2960000,70.20
-1962-02-28,69.89,70.42,69.57,69.96,3030000,69.96
-1962-02-27,69.76,70.32,69.48,69.89,3110000,69.89
-1962-02-26,70.16,70.33,69.44,69.76,2910000,69.76
-1962-02-23,70.32,70.57,69.73,70.16,3230000,70.16
-1962-02-21,70.66,70.97,70.12,70.32,3310000,70.32
-1962-02-20,70.41,70.91,70.13,70.66,3300000,70.66
-1962-02-19,70.59,70.96,70.12,70.41,3350000,70.41
-1962-02-16,70.74,71.13,70.27,70.59,3700000,70.59
-1962-02-15,70.42,71.06,70.23,70.74,3470000,70.74
-1962-02-14,70.45,70.79,70.03,70.42,3630000,70.42
-1962-02-13,70.46,70.89,70.07,70.45,3400000,70.45
-1962-02-12,70.48,70.81,70.14,70.46,2620000,70.46
-1962-02-09,70.58,70.83,69.93,70.48,3370000,70.48
-1962-02-08,70.42,70.95,70.16,70.58,3810000,70.58
-1962-02-07,69.96,70.67,69.78,70.42,4140000,70.42
-1962-02-06,69.88,70.32,69.41,69.96,3650000,69.96
-1962-02-05,69.81,70.30,69.42,69.88,3890000,69.88
-1962-02-02,69.26,70.02,69.02,69.81,3950000,69.81
-1962-02-01,68.84,69.65,68.56,69.26,4260000,69.26
-1962-01-31,68.17,69.09,68.12,68.84,3840000,68.84
-1962-01-30,67.90,68.65,67.62,68.17,3520000,68.17
-1962-01-29,68.13,68.50,67.55,67.90,3050000,67.90
-1962-01-26,68.35,68.67,67.83,68.13,3330000,68.13
-1962-01-25,68.40,69.05,68.10,68.35,3560000,68.35
-1962-01-24,68.29,68.68,67.55,68.40,3760000,68.40
-1962-01-23,68.81,68.96,68.00,68.29,3350000,68.29
-1962-01-22,68.75,69.37,68.45,68.81,3810000,68.81
-1962-01-19,68.39,70.08,68.14,68.75,3800000,68.75
-1962-01-18,68.32,68.73,67.75,68.39,3460000,68.39
-1962-01-17,69.07,69.31,68.13,68.32,3780000,68.32
-1962-01-16,69.47,69.61,68.68,69.07,3650000,69.07
-1962-01-15,69.61,69.96,69.06,69.47,3450000,69.47
-1962-01-12,69.37,70.17,69.23,69.61,3730000,69.61
-1962-01-11,68.96,69.54,68.57,69.37,3390000,69.37
-1962-01-10,69.15,69.58,68.62,68.96,3300000,68.96
-1962-01-09,69.12,69.93,68.83,69.15,3600000,69.15
-1962-01-08,69.66,69.84,68.17,69.12,4620000,69.12
-1962-01-05,70.64,70.84,69.35,69.66,4630000,69.66
-1962-01-04,71.13,71.62,70.45,70.64,4450000,70.64
-1962-01-03,70.96,71.48,70.38,71.13,3590000,71.13
-1962-01-02,71.55,71.96,70.71,70.96,3120000,70.96
-1961-12-29,71.55,71.55,71.55,71.55,5370000,71.55
-1961-12-28,71.69,71.69,71.69,71.69,4530000,71.69
-1961-12-27,71.65,71.65,71.65,71.65,4170000,71.65
-1961-12-26,71.02,71.02,71.02,71.02,3180000,71.02
-1961-12-22,70.91,70.91,70.91,70.91,3390000,70.91
-1961-12-21,70.86,70.86,70.86,70.86,3440000,70.86
-1961-12-20,71.12,71.12,71.12,71.12,3640000,71.12
-1961-12-19,71.26,71.26,71.26,71.26,3440000,71.26
-1961-12-18,71.76,71.76,71.76,71.76,3810000,71.76
-1961-12-15,72.01,72.01,72.01,72.01,3710000,72.01
-1961-12-14,71.98,71.98,71.98,71.98,4350000,71.98
-1961-12-13,72.53,72.53,72.53,72.53,4890000,72.53
-1961-12-12,72.64,72.64,72.64,72.64,4680000,72.64
-1961-12-11,72.39,72.39,72.39,72.39,4360000,72.39
-1961-12-08,72.04,72.04,72.04,72.04,4010000,72.04
-1961-12-07,71.70,71.70,71.70,71.70,3900000,71.70
-1961-12-06,71.99,71.99,71.99,71.99,4200000,71.99
-1961-12-05,71.93,71.93,71.93,71.93,4330000,71.93
-1961-12-04,72.01,72.01,72.01,72.01,4560000,72.01
-1961-12-01,71.78,71.78,71.78,71.78,4420000,71.78
-1961-11-30,71.32,71.32,71.32,71.32,4210000,71.32
-1961-11-29,71.70,71.70,71.70,71.70,4550000,71.70
-1961-11-28,71.75,71.75,71.75,71.75,4360000,71.75
-1961-11-27,71.85,71.85,71.85,71.85,4700000,71.85
-1961-11-24,71.84,71.84,71.84,71.84,4020000,71.84
-1961-11-22,71.70,71.70,71.70,71.70,4500000,71.70
-1961-11-21,71.78,71.78,71.78,71.78,4890000,71.78
-1961-11-20,71.72,71.72,71.72,71.72,4190000,71.72
-1961-11-17,71.62,71.62,71.62,71.62,3960000,71.62
-1961-11-16,71.62,71.62,71.62,71.62,3980000,71.62
-1961-11-15,71.67,71.67,71.67,71.67,4660000,71.67
-1961-11-14,71.66,71.66,71.66,71.66,4750000,71.66
-1961-11-13,71.27,71.27,71.27,71.27,4540000,71.27
-1961-11-10,71.07,71.07,71.07,71.07,4180000,71.07
-1961-11-09,70.77,70.77,70.77,70.77,4680000,70.77
-1961-11-08,70.87,70.87,70.87,70.87,6090000,70.87
-1961-11-06,70.01,70.01,70.01,70.01,4340000,70.01
-1961-11-03,69.47,69.47,69.47,69.47,4070000,69.47
-1961-11-02,69.11,69.11,69.11,69.11,3890000,69.11
-1961-11-01,68.73,68.73,68.73,68.73,3210000,68.73
-1961-10-31,68.62,68.62,68.62,68.62,3350000,68.62
-1961-10-30,68.42,68.42,68.42,68.42,3430000,68.42
-1961-10-27,68.34,68.34,68.34,68.34,3200000,68.34
-1961-10-26,68.46,68.46,68.46,68.46,3330000,68.46
-1961-10-25,68.34,68.34,68.34,68.34,3590000,68.34
-1961-10-24,67.98,67.98,67.98,67.98,3430000,67.98
-1961-10-23,68.06,68.06,68.06,68.06,3440000,68.06
-1961-10-20,68.00,68.00,68.00,68.00,3470000,68.00
-1961-10-19,68.45,68.45,68.45,68.45,3850000,68.45
-1961-10-18,68.21,68.21,68.21,68.21,3520000,68.21
-1961-10-17,67.87,67.87,67.87,67.87,3110000,67.87
-1961-10-16,67.85,67.85,67.85,67.85,2840000,67.85
-1961-10-13,68.04,68.04,68.04,68.04,3090000,68.04
-1961-10-12,68.16,68.16,68.16,68.16,3060000,68.16
-1961-10-11,68.17,68.17,68.17,68.17,3670000,68.17
-1961-10-10,68.11,68.11,68.11,68.11,3430000,68.11
-1961-10-09,67.94,67.94,67.94,67.94,2920000,67.94
-1961-10-06,66.97,66.97,66.97,66.97,3470000,66.97
-1961-10-05,67.77,67.77,67.77,67.77,3920000,67.77
-1961-10-04,67.18,67.18,67.18,67.18,3380000,67.18
-1961-10-03,66.73,66.73,66.73,66.73,2680000,66.73
-1961-10-02,66.77,66.77,66.77,66.77,2800000,66.77
-1961-09-29,66.73,66.73,66.73,66.73,3060000,66.73
-1961-09-28,66.58,66.58,66.58,66.58,3000000,66.58
-1961-09-27,66.47,66.47,66.47,66.47,3440000,66.47
-1961-09-26,65.78,65.78,65.78,65.78,3320000,65.78
-1961-09-25,65.77,65.77,65.77,65.77,3700000,65.77
-1961-09-22,66.72,66.72,66.72,66.72,3070000,66.72
-1961-09-21,66.99,66.99,66.99,66.99,3340000,66.99
-1961-09-20,66.96,66.96,66.96,66.96,2700000,66.96
-1961-09-19,66.08,66.08,66.08,66.08,3260000,66.08
-1961-09-18,67.21,67.21,67.21,67.21,3550000,67.21
-1961-09-15,67.65,67.65,67.65,67.65,3130000,67.65
-1961-09-14,67.53,67.53,67.53,67.53,2920000,67.53
-1961-09-13,68.01,68.01,68.01,68.01,3110000,68.01
-1961-09-12,67.96,67.96,67.96,67.96,2950000,67.96
-1961-09-11,67.28,67.28,67.28,67.28,2790000,67.28
-1961-09-08,67.88,67.88,67.88,67.88,3430000,67.88
-1961-09-07,68.35,68.35,68.35,68.35,3900000,68.35
-1961-09-06,68.46,68.46,68.46,68.46,3440000,68.46
-1961-09-05,67.96,67.96,67.96,67.96,3000000,67.96
-1961-09-01,68.19,68.19,68.19,68.19,2710000,68.19
-1961-08-31,68.07,68.07,68.07,68.07,2920000,68.07
-1961-08-30,67.81,67.81,67.81,67.81,3220000,67.81
-1961-08-29,67.55,67.55,67.55,67.55,3160000,67.55
-1961-08-28,67.70,67.70,67.70,67.70,3150000,67.70
-1961-08-25,67.67,67.67,67.67,67.67,3050000,67.67
-1961-08-24,67.59,67.59,67.59,67.59,3090000,67.59
-1961-08-23,67.98,67.98,67.98,67.98,3550000,67.98
-1961-08-22,68.44,68.44,68.44,68.44,3640000,68.44
-1961-08-21,68.43,68.43,68.43,68.43,3880000,68.43
-1961-08-18,68.29,68.29,68.29,68.29,4030000,68.29
-1961-08-17,68.11,68.11,68.11,68.11,4130000,68.11
-1961-08-16,67.73,67.73,67.73,67.73,3430000,67.73
-1961-08-15,67.55,67.55,67.55,67.55,3320000,67.55
-1961-08-14,67.72,67.72,67.72,67.72,3120000,67.72
-1961-08-11,68.06,68.06,68.06,68.06,3260000,68.06
-1961-08-10,67.95,67.95,67.95,67.95,3570000,67.95
-1961-08-09,67.74,67.74,67.74,67.74,3710000,67.74
-1961-08-08,67.82,67.82,67.82,67.82,4050000,67.82
-1961-08-07,67.67,67.67,67.67,67.67,3560000,67.67
-1961-08-04,67.68,67.68,67.68,67.68,3710000,67.68
-1961-08-03,67.29,67.29,67.29,67.29,3650000,67.29
-1961-08-02,66.94,66.94,66.94,66.94,4300000,66.94
-1961-08-01,67.37,67.37,67.37,67.37,3990000,67.37
-1961-07-31,66.76,66.76,66.76,66.76,3170000,66.76
-1961-07-28,66.71,66.71,66.71,66.71,3610000,66.71
-1961-07-27,66.61,66.61,66.61,66.61,4170000,66.61
-1961-07-26,65.84,65.84,65.84,65.84,4070000,65.84
-1961-07-25,65.23,65.23,65.23,65.23,3010000,65.23
-1961-07-24,64.87,64.87,64.87,64.87,2490000,64.87
-1961-07-21,64.86,64.86,64.86,64.86,2360000,64.86
-1961-07-20,64.71,64.71,64.71,64.71,2530000,64.71
-1961-07-19,64.70,64.70,64.70,64.70,2940000,64.70
-1961-07-18,64.41,64.41,64.41,64.41,3010000,64.41
-1961-07-17,64.79,64.79,64.79,64.79,2690000,64.79
-1961-07-14,65.28,65.28,65.28,65.28,2760000,65.28
-1961-07-13,64.86,64.86,64.86,64.86,2670000,64.86
-1961-07-12,65.32,65.32,65.32,65.32,3070000,65.32
-1961-07-11,65.69,65.69,65.69,65.69,3160000,65.69
-1961-07-10,65.71,65.71,65.71,65.71,3180000,65.71
-1961-07-07,65.77,65.77,65.77,65.77,3030000,65.77
-1961-07-06,65.81,65.81,65.81,65.81,3470000,65.81
-1961-07-05,65.63,65.63,65.63,65.63,3270000,65.63
-1961-07-03,65.21,65.21,65.21,65.21,2180000,65.21
-1961-06-30,64.64,64.64,64.64,64.64,2380000,64.64
-1961-06-29,64.52,64.52,64.52,64.52,2560000,64.52
-1961-06-28,64.59,64.59,64.59,64.59,2830000,64.59
-1961-06-27,64.47,64.47,64.47,64.47,3090000,64.47
-1961-06-26,64.47,64.47,64.47,64.47,2690000,64.47
-1961-06-23,65.16,65.16,65.16,65.16,2720000,65.16
-1961-06-22,64.90,64.90,64.90,64.90,2880000,64.90
-1961-06-21,65.14,65.14,65.14,65.14,3210000,65.14
-1961-06-20,65.15,65.15,65.15,65.15,3280000,65.15
-1961-06-19,64.58,64.58,64.58,64.58,3980000,64.58
-1961-06-16,65.18,65.18,65.18,65.18,3380000,65.18
-1961-06-15,65.69,65.69,65.69,65.69,3220000,65.69
-1961-06-14,65.98,65.98,65.98,65.98,3430000,65.98
-1961-06-13,65.80,65.80,65.80,65.80,3030000,65.80
-1961-06-12,66.15,66.15,66.15,66.15,3260000,66.15
-1961-06-09,66.66,66.66,66.66,66.66,3520000,66.66
-1961-06-08,66.67,66.67,66.67,66.67,3810000,66.67
-1961-06-07,65.64,65.64,65.64,65.64,3980000,65.64
-1961-06-06,66.89,66.89,66.89,66.89,4250000,66.89
-1961-06-05,67.08,67.08,67.08,67.08,4150000,67.08
-1961-06-02,66.73,66.73,66.73,66.73,3670000,66.73
-1961-06-01,66.56,66.56,66.56,66.56,3770000,66.56
-1961-05-31,66.56,66.56,66.56,66.56,4320000,66.56
-1961-05-26,66.43,66.43,66.43,66.43,3780000,66.43
-1961-05-25,66.01,66.01,66.01,66.01,3760000,66.01
-1961-05-24,66.26,66.26,66.26,66.26,3970000,66.26
-1961-05-23,66.68,66.68,66.68,66.68,3660000,66.68
-1961-05-22,66.85,66.85,66.85,66.85,4070000,66.85
-1961-05-19,67.27,67.27,67.27,67.27,4200000,67.27
-1961-05-18,66.99,66.99,66.99,66.99,4610000,66.99
-1961-05-17,67.39,67.39,67.39,67.39,5520000,67.39
-1961-05-16,67.08,67.08,67.08,67.08,5110000,67.08
-1961-05-15,66.83,66.83,66.83,66.83,4840000,66.83
-1961-05-12,66.50,66.50,66.50,66.50,4840000,66.50
-1961-05-11,66.39,66.39,66.39,66.39,5170000,66.39
-1961-05-10,66.41,66.41,66.41,66.41,5450000,66.41
-1961-05-09,66.47,66.47,66.47,66.47,5380000,66.47
-1961-05-08,66.41,66.41,66.41,66.41,5170000,66.41
-1961-05-05,66.52,66.52,66.52,66.52,4980000,66.52
-1961-05-04,66.44,66.44,66.44,66.44,5350000,66.44
-1961-05-03,66.18,66.18,66.18,66.18,4940000,66.18
-1961-05-02,65.64,65.64,65.64,65.64,4110000,65.64
-1961-05-01,65.17,65.17,65.17,65.17,3710000,65.17
-1961-04-28,65.31,65.31,65.31,65.31,3710000,65.31
-1961-04-27,65.46,65.46,65.46,65.46,4450000,65.46
-1961-04-26,65.55,65.55,65.55,65.55,4980000,65.55
-1961-04-25,65.30,65.30,65.30,65.30,4670000,65.30
-1961-04-24,64.40,64.40,64.40,64.40,4590000,64.40
-1961-04-21,65.77,65.77,65.77,65.77,4340000,65.77
-1961-04-20,65.82,65.82,65.82,65.82,4810000,65.82
-1961-04-19,65.81,65.81,65.81,65.81,4870000,65.81
-1961-04-18,66.20,66.20,66.20,66.20,4830000,66.20
-1961-04-17,68.68,68.68,68.68,68.68,5860000,68.68
-1961-04-14,66.37,66.37,66.37,66.37,5240000,66.37
-1961-04-13,66.26,66.26,66.26,66.26,4770000,66.26
-1961-04-12,66.31,66.31,66.31,66.31,4870000,66.31
-1961-04-11,66.62,66.62,66.62,66.62,5230000,66.62
-1961-04-10,66.53,66.53,66.53,66.53,5550000,66.53
-1961-04-07,65.96,65.96,65.96,65.96,5100000,65.96
-1961-04-06,65.61,65.61,65.61,65.61,4910000,65.61
-1961-04-05,65.46,65.46,65.46,65.46,5430000,65.46
-1961-04-04,65.66,65.66,65.66,65.66,7080000,65.66
-1961-04-03,65.60,65.60,65.60,65.60,6470000,65.60
-1961-03-30,65.06,65.06,65.06,65.06,5610000,65.06
-1961-03-29,64.93,64.93,64.93,64.93,5330000,64.93
-1961-03-28,64.38,64.38,64.38,64.38,4630000,64.38
-1961-03-27,64.35,64.35,64.35,64.35,4190000,64.35
-1961-03-24,64.42,64.42,64.42,64.42,4390000,64.42
-1961-03-23,64.53,64.53,64.53,64.53,2170000,64.53
-1961-03-22,64.70,64.70,64.70,64.70,5840000,64.70
-1961-03-21,64.74,64.74,64.74,64.74,5800000,64.74
-1961-03-20,64.86,64.86,64.86,64.86,5780000,64.86
-1961-03-17,64.00,64.00,64.00,64.00,5960000,64.00
-1961-03-16,64.21,64.21,64.21,64.21,5610000,64.21
-1961-03-15,63.57,63.57,63.57,63.57,4900000,63.57
-1961-03-14,63.38,63.38,63.38,63.38,4900000,63.38
-1961-03-13,63.66,63.66,63.66,63.66,5080000,63.66
-1961-03-10,63.48,63.48,63.48,63.48,5950000,63.48
-1961-03-09,63.50,63.50,63.50,63.50,6010000,63.50
-1961-03-08,63.44,63.44,63.44,63.44,5910000,63.44
-1961-03-07,63.47,63.47,63.47,63.47,5540000,63.47
-1961-03-06,64.05,64.05,64.05,64.05,5650000,64.05
-1961-03-03,63.95,63.95,63.95,63.95,5530000,63.95
-1961-03-02,63.85,63.85,63.85,63.85,5300000,63.85
-1961-03-01,63.43,63.43,63.43,63.43,4970000,63.43
-1961-02-28,63.44,63.44,63.44,63.44,5830000,63.44
-1961-02-27,63.30,63.30,63.30,63.30,5470000,63.30
-1961-02-24,62.84,62.84,62.84,62.84,5330000,62.84
-1961-02-23,62.59,62.59,62.59,62.59,5620000,62.59
-1961-02-21,62.36,62.36,62.36,62.36,5070000,62.36
-1961-02-20,62.32,62.32,62.32,62.32,4680000,62.32
-1961-02-17,62.10,62.10,62.10,62.10,4640000,62.10
-1961-02-16,62.30,62.30,62.30,62.30,5070000,62.30
-1961-02-15,61.92,61.92,61.92,61.92,5200000,61.92
-1961-02-14,61.41,61.41,61.41,61.41,4490000,61.41
-1961-02-13,61.14,61.14,61.14,61.14,3560000,61.14
-1961-02-10,61.50,61.50,61.50,61.50,4840000,61.50
-1961-02-09,62.02,62.02,62.02,62.02,5590000,62.02
-1961-02-08,62.21,62.21,62.21,62.21,4940000,62.21
-1961-02-07,61.65,61.65,61.65,61.65,4020000,61.65
-1961-02-06,61.76,61.76,61.76,61.76,3890000,61.76
-1961-02-03,62.22,62.22,62.22,62.22,5210000,62.22
-1961-02-02,62.30,62.30,62.30,62.30,4900000,62.30
-1961-02-01,61.90,61.90,61.90,61.90,4380000,61.90
-1961-01-31,61.78,61.78,61.78,61.78,4690000,61.78
-1961-01-30,61.97,61.97,61.97,61.97,5190000,61.97
-1961-01-27,61.24,61.24,61.24,61.24,4510000,61.24
-1961-01-26,60.62,60.62,60.62,60.62,4110000,60.62
-1961-01-25,60.53,60.53,60.53,60.53,4470000,60.53
-1961-01-24,60.45,60.45,60.45,60.45,4280000,60.45
-1961-01-23,60.29,60.29,60.29,60.29,4450000,60.29
-1961-01-20,59.96,59.96,59.96,59.96,3270000,59.96
-1961-01-19,59.77,59.77,59.77,59.77,4740000,59.77
-1961-01-18,59.68,59.68,59.68,59.68,4390000,59.68
-1961-01-17,59.64,59.64,59.64,59.64,3830000,59.64
-1961-01-16,59.58,59.58,59.58,59.58,4510000,59.58
-1961-01-13,59.60,59.60,59.60,59.60,4520000,59.60
-1961-01-12,59.32,59.32,59.32,59.32,4270000,59.32
-1961-01-11,59.14,59.14,59.14,59.14,4370000,59.14
-1961-01-10,58.97,58.97,58.97,58.97,4840000,58.97
-1961-01-09,58.81,58.81,58.81,58.81,4210000,58.81
-1961-01-06,58.40,58.40,58.40,58.40,3620000,58.40
-1961-01-05,58.57,58.57,58.57,58.57,4130000,58.57
-1961-01-04,58.36,58.36,58.36,58.36,3840000,58.36
-1961-01-03,57.57,57.57,57.57,57.57,2770000,57.57
-1960-12-30,58.11,58.11,58.11,58.11,5300000,58.11
-1960-12-29,58.05,58.05,58.05,58.05,4340000,58.05
-1960-12-28,57.78,57.78,57.78,57.78,3620000,57.78
-1960-12-27,57.52,57.52,57.52,57.52,3270000,57.52
-1960-12-23,57.44,57.44,57.44,57.44,3580000,57.44
-1960-12-22,57.39,57.39,57.39,57.39,3820000,57.39
-1960-12-21,57.55,57.55,57.55,57.55,4060000,57.55
-1960-12-20,57.09,57.09,57.09,57.09,3340000,57.09
-1960-12-19,57.13,57.13,57.13,57.13,3630000,57.13
-1960-12-16,57.20,57.20,57.20,57.20,3770000,57.20
-1960-12-15,56.68,56.68,56.68,56.68,3660000,56.68
-1960-12-14,56.84,56.84,56.84,56.84,3880000,56.84
-1960-12-13,56.88,56.88,56.88,56.88,3500000,56.88
-1960-12-12,56.85,56.85,56.85,56.85,3020000,56.85
-1960-12-09,56.65,56.65,56.65,56.65,4460000,56.65
-1960-12-08,56.15,56.15,56.15,56.15,3540000,56.15
-1960-12-07,56.02,56.02,56.02,56.02,3660000,56.02
-1960-12-06,55.47,55.47,55.47,55.47,3360000,55.47
-1960-12-05,55.31,55.31,55.31,55.31,3290000,55.31
-1960-12-02,55.39,55.39,55.39,55.39,3140000,55.39
-1960-12-01,55.30,55.30,55.30,55.30,3090000,55.30
-1960-11-30,55.54,55.54,55.54,55.54,3080000,55.54
-1960-11-29,55.83,55.83,55.83,55.83,3630000,55.83
-1960-11-28,56.03,56.03,56.03,56.03,3860000,56.03
-1960-11-25,56.13,56.13,56.13,56.13,3190000,56.13
-1960-11-23,55.80,55.80,55.80,55.80,3000000,55.80
-1960-11-22,55.72,55.72,55.72,55.72,3430000,55.72
-1960-11-21,55.93,55.93,55.93,55.93,3090000,55.93
-1960-11-18,55.82,55.82,55.82,55.82,2760000,55.82
-1960-11-17,55.55,55.55,55.55,55.55,2450000,55.55
-1960-11-16,55.70,55.70,55.70,55.70,3110000,55.70
-1960-11-15,55.81,55.81,55.81,55.81,2990000,55.81
-1960-11-14,55.59,55.59,55.59,55.59,2660000,55.59
-1960-11-11,55.87,55.87,55.87,55.87,2730000,55.87
-1960-11-10,56.43,56.43,56.43,56.43,4030000,56.43
-1960-11-09,55.35,55.35,55.35,55.35,3450000,55.35
-1960-11-07,55.11,55.11,55.11,55.11,3540000,55.11
-1960-11-04,54.90,54.90,54.90,54.90,3050000,54.90
-1960-11-03,54.43,54.43,54.43,54.43,2580000,54.43
-1960-11-02,54.22,54.22,54.22,54.22,2780000,54.22
-1960-11-01,53.94,53.94,53.94,53.94,2600000,53.94
-1960-10-31,53.39,53.39,53.39,53.39,2460000,53.39
-1960-10-28,53.41,53.41,53.41,53.41,2490000,53.41
-1960-10-27,53.62,53.62,53.62,53.62,2900000,53.62
-1960-10-26,53.05,53.05,53.05,53.05,3020000,53.05
-1960-10-25,52.20,52.20,52.20,52.20,3030000,52.20
-1960-10-24,52.70,52.70,52.70,52.70,4420000,52.70
-1960-10-21,53.72,53.72,53.72,53.72,3090000,53.72
-1960-10-20,53.86,53.86,53.86,53.86,2910000,53.86
-1960-10-19,54.25,54.25,54.25,54.25,2410000,54.25
-1960-10-18,54.35,54.35,54.35,54.35,2220000,54.35
-1960-10-17,54.63,54.63,54.63,54.63,2280000,54.63
-1960-10-14,54.86,54.86,54.86,54.86,2470000,54.86
-1960-10-13,54.57,54.57,54.57,54.57,2220000,54.57
-1960-10-12,54.15,54.15,54.15,54.15,1890000,54.15
-1960-10-11,54.22,54.22,54.22,54.22,2350000,54.22
-1960-10-10,54.14,54.14,54.14,54.14,2030000,54.14
-1960-10-07,54.03,54.03,54.03,54.03,2530000,54.03
-1960-10-06,53.72,53.72,53.72,53.72,2510000,53.72
-1960-10-05,53.39,53.39,53.39,53.39,2650000,53.39
-1960-10-04,52.99,52.99,52.99,52.99,2270000,52.99
-1960-10-03,53.36,53.36,53.36,53.36,2220000,53.36
-1960-09-30,53.52,53.52,53.52,53.52,3370000,53.52
-1960-09-29,52.62,52.62,52.62,52.62,2850000,52.62
-1960-09-28,52.48,52.48,52.48,52.48,3520000,52.48
-1960-09-27,52.94,52.94,52.94,52.94,3170000,52.94
-1960-09-26,53.06,53.06,53.06,53.06,3930000,53.06
-1960-09-23,53.90,53.90,53.90,53.90,2580000,53.90
-1960-09-22,54.36,54.36,54.36,54.36,1970000,54.36
-1960-09-21,54.57,54.57,54.57,54.57,2930000,54.57
-1960-09-20,54.01,54.01,54.01,54.01,3660000,54.01
-1960-09-19,53.86,53.86,53.86,53.86,3790000,53.86
-1960-09-16,55.11,55.11,55.11,55.11,2340000,55.11
-1960-09-15,55.22,55.22,55.22,55.22,2870000,55.22
-1960-09-14,55.44,55.44,55.44,55.44,2530000,55.44
-1960-09-13,55.83,55.83,55.83,55.83,2180000,55.83
-1960-09-12,55.72,55.72,55.72,55.72,2160000,55.72
-1960-09-09,56.11,56.11,56.11,56.11,2750000,56.11
-1960-09-08,55.74,55.74,55.74,55.74,2670000,55.74
-1960-09-07,55.79,55.79,55.79,55.79,2850000,55.79
-1960-09-06,56.49,56.49,56.49,56.49,2580000,56.49
-1960-09-02,57.00,57.00,57.00,57.00,2680000,57.00
-1960-09-01,57.09,57.09,57.09,57.09,3460000,57.09
-1960-08-31,56.96,56.96,56.96,56.96,3130000,56.96
-1960-08-30,56.84,56.84,56.84,56.84,2890000,56.84
-1960-08-29,57.44,57.44,57.44,57.44,2780000,57.44
-1960-08-26,57.60,57.60,57.60,57.60,2780000,57.60
-1960-08-25,57.79,57.79,57.79,57.79,2680000,57.79
-1960-08-24,58.07,58.07,58.07,58.07,3500000,58.07
-1960-08-23,57.75,57.75,57.75,57.75,3560000,57.75
-1960-08-22,57.19,57.19,57.19,57.19,2760000,57.19
-1960-08-19,57.01,57.01,57.01,57.01,2570000,57.01
-1960-08-18,56.81,56.81,56.81,56.81,2890000,56.81
-1960-08-17,56.84,56.84,56.84,56.84,3090000,56.84
-1960-08-16,56.72,56.72,56.72,56.72,2710000,56.72
-1960-08-15,56.61,56.61,56.61,56.61,2450000,56.61
-1960-08-12,56.66,56.66,56.66,56.66,3160000,56.66
-1960-08-11,56.28,56.28,56.28,56.28,3070000,56.28
-1960-08-10,56.07,56.07,56.07,56.07,2810000,56.07
-1960-08-09,55.84,55.84,55.84,55.84,2700000,55.84
-1960-08-08,55.52,55.52,55.52,55.52,2960000,55.52
-1960-08-05,55.44,55.44,55.44,55.44,3000000,55.44
-1960-08-04,54.89,54.89,54.89,54.89,2840000,54.89
-1960-08-03,54.72,54.72,54.72,54.72,2470000,54.72
-1960-08-02,55.04,55.04,55.04,55.04,2090000,55.04
-1960-08-01,55.53,55.53,55.53,55.53,2440000,55.53
-1960-07-29,55.51,55.51,55.51,55.51,2730000,55.51
-1960-07-28,54.57,54.57,54.57,54.57,3020000,54.57
-1960-07-27,54.17,54.17,54.17,54.17,2560000,54.17
-1960-07-26,54.51,54.51,54.51,54.51,2720000,54.51
-1960-07-25,54.18,54.18,54.18,54.18,2840000,54.18
-1960-07-22,54.72,54.72,54.72,54.72,2850000,54.72
-1960-07-21,55.10,55.10,55.10,55.10,2510000,55.10
-1960-07-20,55.61,55.61,55.61,55.61,2370000,55.61
-1960-07-19,55.70,55.70,55.70,55.70,2490000,55.70
-1960-07-18,55.70,55.70,55.70,55.70,2350000,55.70
-1960-07-15,56.05,56.05,56.05,56.05,2140000,56.05
-1960-07-14,56.12,56.12,56.12,56.12,2480000,56.12
-1960-07-13,56.10,56.10,56.10,56.10,2590000,56.10
-1960-07-12,56.25,56.25,56.25,56.25,2860000,56.25
-1960-07-11,56.87,56.87,56.87,56.87,2920000,56.87
-1960-07-08,57.38,57.38,57.38,57.38,3010000,57.38
-1960-07-07,57.24,57.24,57.24,57.24,3050000,57.24
-1960-07-06,56.94,56.94,56.94,56.94,2970000,56.94
-1960-07-05,57.02,57.02,57.02,57.02,2780000,57.02
-1960-07-01,57.06,57.06,57.06,57.06,2620000,57.06
-1960-06-30,56.92,56.92,56.92,56.92,2940000,56.92
-1960-06-29,56.94,56.94,56.94,56.94,3160000,56.94
-1960-06-28,56.94,56.94,56.94,56.94,3120000,56.94
-1960-06-27,57.33,57.33,57.33,57.33,2960000,57.33
-1960-06-24,57.68,57.68,57.68,57.68,3220000,57.68
-1960-06-23,57.59,57.59,57.59,57.59,3620000,57.59
-1960-06-22,57.28,57.28,57.28,57.28,3600000,57.28
-1960-06-21,57.11,57.11,57.11,57.11,3860000,57.11
-1960-06-20,57.16,57.16,57.16,57.16,3970000,57.16
-1960-06-17,57.44,57.44,57.44,57.44,3920000,57.44
-1960-06-16,57.50,57.50,57.50,57.50,3540000,57.50
-1960-06-15,57.57,57.57,57.57,57.57,3630000,57.57
-1960-06-14,57.91,57.91,57.91,57.91,3430000,57.91
-1960-06-13,57.99,57.99,57.99,57.99,3180000,57.99
-1960-06-10,57.97,57.97,57.97,57.97,2940000,57.97
-1960-06-09,58.00,58.00,58.00,58.00,3820000,58.00
-1960-06-08,57.89,57.89,57.89,57.89,3800000,57.89
-1960-06-07,57.43,57.43,57.43,57.43,3710000,57.43
-1960-06-06,56.89,56.89,56.89,56.89,3220000,56.89
-1960-06-03,56.23,56.23,56.23,56.23,3340000,56.23
-1960-06-02,56.13,56.13,56.13,56.13,3730000,56.13
-1960-06-01,55.89,55.89,55.89,55.89,3770000,55.89
-1960-05-31,55.83,55.83,55.83,55.83,3750000,55.83
-1960-05-27,55.74,55.74,55.74,55.74,3040000,55.74
-1960-05-26,55.71,55.71,55.71,55.71,3720000,55.71
-1960-05-25,55.67,55.67,55.67,55.67,3440000,55.67
-1960-05-24,55.70,55.70,55.70,55.70,3240000,55.70
-1960-05-23,55.76,55.76,55.76,55.76,2530000,55.76
-1960-05-20,55.73,55.73,55.73,55.73,3170000,55.73
-1960-05-19,55.68,55.68,55.68,55.68,3700000,55.68
-1960-05-18,55.44,55.44,55.44,55.44,5240000,55.44
-1960-05-17,55.46,55.46,55.46,55.46,4080000,55.46
-1960-05-16,55.25,55.25,55.25,55.25,3530000,55.25
-1960-05-13,55.30,55.30,55.30,55.30,3750000,55.30
-1960-05-12,54.85,54.85,54.85,54.85,3220000,54.85
-1960-05-11,54.57,54.57,54.57,54.57,2900000,54.57
-1960-05-10,54.42,54.42,54.42,54.42,2870000,54.42
-1960-05-09,54.80,54.80,54.80,54.80,2670000,54.80
-1960-05-06,54.75,54.75,54.75,54.75,2560000,54.75
-1960-05-05,54.86,54.86,54.86,54.86,2670000,54.86
-1960-05-04,55.04,55.04,55.04,55.04,2870000,55.04
-1960-05-03,54.83,54.83,54.83,54.83,2910000,54.83
-1960-05-02,54.13,54.13,54.13,54.13,2930000,54.13
-1960-04-29,54.37,54.37,54.37,54.37,2850000,54.37
-1960-04-28,54.56,54.56,54.56,54.56,3190000,54.56
-1960-04-27,55.04,55.04,55.04,55.04,3020000,55.04
-1960-04-26,55.04,55.04,55.04,55.04,2940000,55.04
-1960-04-25,54.86,54.86,54.86,54.86,2980000,54.86
-1960-04-22,55.42,55.42,55.42,55.42,2850000,55.42
-1960-04-21,55.59,55.59,55.59,55.59,2700000,55.59
-1960-04-20,55.44,55.44,55.44,55.44,3150000,55.44
-1960-04-19,56.13,56.13,56.13,56.13,3080000,56.13
-1960-04-18,56.59,56.59,56.59,56.59,3200000,56.59
-1960-04-14,56.43,56.43,56.43,56.43,2730000,56.43
-1960-04-13,56.30,56.30,56.30,56.30,2730000,56.30
-1960-04-12,56.30,56.30,56.30,56.30,2470000,56.30
-1960-04-11,56.17,56.17,56.17,56.17,2520000,56.17
-1960-04-08,56.39,56.39,56.39,56.39,2820000,56.39
-1960-04-07,56.52,56.52,56.52,56.52,3070000,56.52
-1960-04-06,56.51,56.51,56.51,56.51,3450000,56.51
-1960-04-05,55.37,55.37,55.37,55.37,2840000,55.37
-1960-04-04,55.54,55.54,55.54,55.54,2450000,55.54
-1960-04-01,55.43,55.43,55.43,55.43,2260000,55.43
-1960-03-31,55.34,55.34,55.34,55.34,2690000,55.34
-1960-03-30,55.66,55.66,55.66,55.66,2450000,55.66
-1960-03-29,55.78,55.78,55.78,55.78,2320000,55.78
-1960-03-28,55.86,55.86,55.86,55.86,2500000,55.86
-1960-03-25,55.98,55.98,55.98,55.98,2640000,55.98
-1960-03-24,55.98,55.98,55.98,55.98,2940000,55.98
-1960-03-23,55.74,55.74,55.74,55.74,3020000,55.74
-1960-03-22,55.29,55.29,55.29,55.29,2490000,55.29
-1960-03-21,55.07,55.07,55.07,55.07,2500000,55.07
-1960-03-18,55.01,55.01,55.01,55.01,2620000,55.01
-1960-03-17,54.96,54.96,54.96,54.96,2140000,54.96
-1960-03-16,55.04,55.04,55.04,55.04,2960000,55.04
-1960-03-15,54.74,54.74,54.74,54.74,2690000,54.74
-1960-03-14,54.32,54.32,54.32,54.32,2530000,54.32
-1960-03-11,54.24,54.24,54.24,54.24,2770000,54.24
-1960-03-10,53.83,53.83,53.83,53.83,3350000,53.83
-1960-03-09,54.04,54.04,54.04,54.04,3580000,54.04
-1960-03-08,53.47,53.47,53.47,53.47,3370000,53.47
-1960-03-07,54.02,54.02,54.02,54.02,2900000,54.02
-1960-03-04,54.57,54.57,54.57,54.57,4060000,54.57
-1960-03-03,54.78,54.78,54.78,54.78,3160000,54.78
-1960-03-02,55.62,55.62,55.62,55.62,3110000,55.62
-1960-03-01,56.01,56.01,56.01,56.01,2920000,56.01
-1960-02-29,56.12,56.12,56.12,56.12,2990000,56.12
-1960-02-26,56.16,56.16,56.16,56.16,3380000,56.16
-1960-02-25,55.93,55.93,55.93,55.93,3600000,55.93
-1960-02-24,55.74,55.74,55.74,55.74,2740000,55.74
-1960-02-23,55.94,55.94,55.94,55.94,2960000,55.94
-1960-02-19,56.24,56.24,56.24,56.24,3230000,56.24
-1960-02-18,55.80,55.80,55.80,55.80,3800000,55.80
-1960-02-17,55.03,55.03,55.03,55.03,4210000,55.03
-1960-02-16,54.73,54.73,54.73,54.73,3270000,54.73
-1960-02-15,55.17,55.17,55.17,55.17,2780000,55.17
-1960-02-12,55.46,55.46,55.46,55.46,2230000,55.46
-1960-02-11,55.18,55.18,55.18,55.18,2610000,55.18
-1960-02-10,55.49,55.49,55.49,55.49,2440000,55.49
-1960-02-09,55.84,55.84,55.84,55.84,2860000,55.84
-1960-02-08,55.32,55.32,55.32,55.32,3350000,55.32
-1960-02-05,55.98,55.98,55.98,55.98,2530000,55.98
-1960-02-04,56.27,56.27,56.27,56.27,2600000,56.27
-1960-02-03,56.32,56.32,56.32,56.32,3020000,56.32
-1960-02-02,56.82,56.82,56.82,56.82,3080000,56.82
-1960-02-01,55.96,55.96,55.96,55.96,2820000,55.96
-1960-01-29,55.61,55.61,55.61,55.61,3060000,55.61
-1960-01-28,56.13,56.13,56.13,56.13,2630000,56.13
-1960-01-27,56.72,56.72,56.72,56.72,2460000,56.72
-1960-01-26,56.86,56.86,56.86,56.86,3060000,56.86
-1960-01-25,56.78,56.78,56.78,56.78,2790000,56.78
-1960-01-22,57.38,57.38,57.38,57.38,2690000,57.38
-1960-01-21,57.21,57.21,57.21,57.21,2700000,57.21
-1960-01-20,57.07,57.07,57.07,57.07,2720000,57.07
-1960-01-19,57.27,57.27,57.27,57.27,3100000,57.27
-1960-01-18,57.89,57.89,57.89,57.89,3020000,57.89
-1960-01-15,58.38,58.38,58.38,58.38,3400000,58.38
-1960-01-14,58.40,58.40,58.40,58.40,3560000,58.40
-1960-01-13,58.08,58.08,58.08,58.08,3470000,58.08
-1960-01-12,58.41,58.41,58.41,58.41,3760000,58.41
-1960-01-11,58.77,58.77,58.77,58.77,3470000,58.77
-1960-01-08,59.50,59.50,59.50,59.50,3290000,59.50
-1960-01-07,59.69,59.69,59.69,59.69,3310000,59.69
-1960-01-06,60.13,60.13,60.13,60.13,3730000,60.13
-1960-01-05,60.39,60.39,60.39,60.39,3710000,60.39
-1960-01-04,59.91,59.91,59.91,59.91,3990000,59.91
-1959-12-31,59.89,59.89,59.89,59.89,3810000,59.89
-1959-12-30,59.77,59.77,59.77,59.77,3680000,59.77
-1959-12-29,59.30,59.30,59.30,59.30,3020000,59.30
-1959-12-28,58.98,58.98,58.98,58.98,2830000,58.98
-1959-12-24,59.00,59.00,59.00,59.00,2320000,59.00
-1959-12-23,58.96,58.96,58.96,58.96,2890000,58.96
-1959-12-22,59.14,59.14,59.14,59.14,2930000,59.14
-1959-12-21,59.21,59.21,59.21,59.21,3290000,59.21
-1959-12-18,59.14,59.14,59.14,59.14,3230000,59.14
-1959-12-17,58.86,58.86,58.86,58.86,3040000,58.86
-1959-12-16,58.97,58.97,58.97,58.97,3270000,58.97
-1959-12-15,58.90,58.90,58.90,58.90,3450000,58.90
-1959-12-14,59.04,59.04,59.04,59.04,3100000,59.04
-1959-12-11,58.88,58.88,58.88,58.88,2910000,58.88
-1959-12-10,59.02,59.02,59.02,59.02,3170000,59.02
-1959-12-09,58.97,58.97,58.97,58.97,3430000,58.97
-1959-12-08,59.34,59.34,59.34,59.34,3870000,59.34
-1959-12-07,58.96,58.96,58.96,58.96,3620000,58.96
-1959-12-04,58.85,58.85,58.85,58.85,3590000,58.85
-1959-12-03,58.73,58.73,58.73,58.73,3280000,58.73
-1959-12-02,58.60,58.60,58.60,58.60,3490000,58.60
-1959-12-01,58.70,58.70,58.70,58.70,3990000,58.70
-1959-11-30,58.28,58.28,58.28,58.28,3670000,58.28
-1959-11-27,57.70,57.70,57.70,57.70,3030000,57.70
-1959-11-25,57.44,57.44,57.44,57.44,3550000,57.44
-1959-11-24,57.35,57.35,57.35,57.35,3650000,57.35
-1959-11-23,57.08,57.08,57.08,57.08,3400000,57.08
-1959-11-20,56.97,56.97,56.97,56.97,2960000,56.97
-1959-11-19,56.94,56.94,56.94,56.94,3230000,56.94
-1959-11-18,56.99,56.99,56.99,56.99,3660000,56.99
-1959-11-17,56.38,56.38,56.38,56.38,3570000,56.38
-1959-11-16,56.22,56.22,56.22,56.22,3710000,56.22
-1959-11-13,56.85,56.85,56.85,56.85,3050000,56.85
-1959-11-12,57.17,57.17,57.17,57.17,3600000,57.17
-1959-11-11,57.49,57.49,57.49,57.49,2820000,57.49
-1959-11-10,57.48,57.48,57.48,57.48,3020000,57.48
-1959-11-09,57.50,57.50,57.50,57.50,3700000,57.50
-1959-11-06,57.60,57.60,57.60,57.60,3450000,57.60
-1959-11-05,57.32,57.32,57.32,57.32,3170000,57.32
-1959-11-04,57.26,57.26,57.26,57.26,3940000,57.26
-1959-11-02,57.41,57.41,57.41,57.41,3320000,57.41
-1959-10-30,57.52,57.52,57.52,57.52,3560000,57.52
-1959-10-29,57.41,57.41,57.41,57.41,3890000,57.41
-1959-10-28,57.46,57.46,57.46,57.46,3920000,57.46
-1959-10-27,57.42,57.42,57.42,57.42,4160000,57.42
-1959-10-26,56.94,56.94,56.94,56.94,3580000,56.94
-1959-10-23,56.56,56.56,56.56,56.56,2880000,56.56
-1959-10-22,56.00,56.00,56.00,56.00,3060000,56.00
-1959-10-21,56.55,56.55,56.55,56.55,2730000,56.55
-1959-10-20,56.66,56.66,56.66,56.66,2740000,56.66
-1959-10-19,57.01,57.01,57.01,57.01,2470000,57.01
-1959-10-16,57.33,57.33,57.33,57.33,2760000,57.33
-1959-10-15,56.87,56.87,56.87,56.87,2190000,56.87
-1959-10-14,56.71,56.71,56.71,56.71,2320000,56.71
-1959-10-13,57.16,57.16,57.16,57.16,2530000,57.16
-1959-10-12,57.32,57.32,57.32,57.32,1750000,57.32
-1959-10-09,57.00,57.00,57.00,57.00,2540000,57.00
-1959-10-08,56.81,56.81,56.81,56.81,2510000,56.81
-1959-10-07,56.94,56.94,56.94,56.94,2380000,56.94
-1959-10-06,57.09,57.09,57.09,57.09,2330000,57.09
-1959-10-05,57.14,57.14,57.14,57.14,2100000,57.14
-1959-10-02,57.20,57.20,57.20,57.20,2270000,57.20
-1959-10-01,56.94,56.94,56.94,56.94,2660000,56.94
-1959-09-30,56.88,56.88,56.88,56.88,2850000,56.88
-1959-09-29,57.51,57.51,57.51,57.51,3220000,57.51
-1959-09-28,57.15,57.15,57.15,57.15,2640000,57.15
-1959-09-25,56.73,56.73,56.73,56.73,3280000,56.73
-1959-09-24,56.78,56.78,56.78,56.78,3480000,56.78
-1959-09-23,55.82,55.82,55.82,55.82,3010000,55.82
-1959-09-22,55.14,55.14,55.14,55.14,3000000,55.14
-1959-09-21,55.27,55.27,55.27,55.27,3240000,55.27
-1959-09-18,56.19,56.19,56.19,56.19,2530000,56.19
-1959-09-17,56.41,56.41,56.41,56.41,2090000,56.41
-1959-09-16,56.72,56.72,56.72,56.72,2180000,56.72
-1959-09-15,56.68,56.68,56.68,56.68,2830000,56.68
-1959-09-14,56.99,56.99,56.99,56.99,2590000,56.99
-1959-09-11,57.41,57.41,57.41,57.41,2640000,57.41
-1959-09-10,56.99,56.99,56.99,56.99,2520000,56.99
-1959-09-09,57.29,57.29,57.29,57.29,3030000,57.29
-1959-09-08,57.70,57.70,57.70,57.70,2940000,57.70
-1959-09-04,58.54,58.54,58.54,58.54,2300000,58.54
-1959-09-03,58.26,58.26,58.26,58.26,2330000,58.26
-1959-09-02,58.92,58.92,58.92,58.92,2370000,58.92
-1959-09-01,58.87,58.87,58.87,58.87,2430000,58.87
-1959-08-31,59.60,59.60,59.60,59.60,2140000,59.60
-1959-08-28,59.60,59.60,59.60,59.60,1930000,59.60
-1959-08-27,59.58,59.58,59.58,59.58,2550000,59.58
-1959-08-26,59.07,59.07,59.07,59.07,2210000,59.07
-1959-08-25,58.99,58.99,58.99,58.99,1960000,58.99
-1959-08-24,58.87,58.87,58.87,58.87,1860000,58.87
-1959-08-21,59.08,59.08,59.08,59.08,2000000,59.08
-1959-08-20,59.14,59.14,59.14,59.14,2450000,59.14
-1959-08-19,58.27,58.27,58.27,58.27,3050000,58.27
-1959-08-18,58.62,58.62,58.62,58.62,2280000,58.62
-1959-08-17,59.17,59.17,59.17,59.17,1980000,59.17
-1959-08-14,59.29,59.29,59.29,59.29,1990000,59.29
-1959-08-13,59.15,59.15,59.15,59.15,2020000,59.15
-1959-08-12,59.25,59.25,59.25,59.25,2700000,59.25
-1959-08-11,59.39,59.39,59.39,59.39,2980000,59.39
-1959-08-10,58.62,58.62,58.62,58.62,4190000,58.62
-1959-08-07,59.87,59.87,59.87,59.87,2580000,59.87
-1959-08-06,60.24,60.24,60.24,60.24,2610000,60.24
-1959-08-05,60.30,60.30,60.30,60.30,2630000,60.30
-1959-08-04,60.61,60.61,60.61,60.61,2530000,60.61
-1959-08-03,60.71,60.71,60.71,60.71,2410000,60.71
-1959-07-31,60.51,60.51,60.51,60.51,2270000,60.51
-1959-07-30,60.50,60.50,60.50,60.50,3240000,60.50
-1959-07-29,60.62,60.62,60.62,60.62,3460000,60.62
-1959-07-28,60.32,60.32,60.32,60.32,3190000,60.32
-1959-07-27,60.02,60.02,60.02,60.02,2910000,60.02
-1959-07-24,59.65,59.65,59.65,59.65,2720000,59.65
-1959-07-23,59.67,59.67,59.67,59.67,3310000,59.67
-1959-07-22,59.61,59.61,59.61,59.61,3310000,59.61
-1959-07-21,59.41,59.41,59.41,59.41,2950000,59.41
-1959-07-20,58.91,58.91,58.91,58.91,2500000,58.91
-1959-07-17,59.19,59.19,59.19,59.19,2510000,59.19
-1959-07-16,59.41,59.41,59.41,59.41,3170000,59.41
-1959-07-15,59.59,59.59,59.59,59.59,3280000,59.59
-1959-07-14,59.55,59.55,59.55,59.55,3230000,59.55
-1959-07-13,59.41,59.41,59.41,59.41,3360000,59.41
-1959-07-10,59.91,59.91,59.91,59.91,3600000,59.91
-1959-07-09,59.97,59.97,59.97,59.97,3560000,59.97
-1959-07-08,60.03,60.03,60.03,60.03,4010000,60.03
-1959-07-07,60.01,60.01,60.01,60.01,3840000,60.01
-1959-07-06,59.65,59.65,59.65,59.65,3720000,59.65
-1959-07-02,59.28,59.28,59.28,59.28,3610000,59.28
-1959-07-01,58.97,58.97,58.97,58.97,3150000,58.97
-1959-06-30,58.47,58.47,58.47,58.47,3200000,58.47
-1959-06-29,58.37,58.37,58.37,58.37,3000000,58.37
-1959-06-26,57.98,57.98,57.98,57.98,3100000,57.98
-1959-06-25,57.73,57.73,57.73,57.73,3250000,57.73
-1959-06-24,57.41,57.41,57.41,57.41,3180000,57.41
-1959-06-23,57.12,57.12,57.12,57.12,2600000,57.12
-1959-06-22,57.13,57.13,57.13,57.13,2630000,57.13
-1959-06-19,57.13,57.13,57.13,57.13,2260000,57.13
-1959-06-18,57.05,57.05,57.05,57.05,3150000,57.05
-1959-06-17,57.09,57.09,57.09,57.09,2850000,57.09
-1959-06-16,56.56,56.56,56.56,56.56,2440000,56.56
-1959-06-15,56.99,56.99,56.99,56.99,2410000,56.99
-1959-06-12,57.29,57.29,57.29,57.29,2580000,57.29
-1959-06-11,57.25,57.25,57.25,57.25,3120000,57.25
-1959-06-10,57.19,57.19,57.19,57.19,3310000,57.19
-1959-06-09,56.36,56.36,56.36,56.36,3490000,56.36
-1959-06-08,56.76,56.76,56.76,56.76,2970000,56.76
-1959-06-05,57.51,57.51,57.51,57.51,2800000,57.51
-1959-06-04,57.63,57.63,57.63,57.63,3210000,57.63
-1959-06-03,58.25,58.25,58.25,58.25,2910000,58.25
-1959-06-02,58.23,58.23,58.23,58.23,3120000,58.23
-1959-06-01,58.63,58.63,58.63,58.63,2730000,58.63
-1959-05-29,58.68,58.68,58.68,58.68,2790000,58.68
-1959-05-28,58.39,58.39,58.39,58.39,2970000,58.39
-1959-05-27,58.19,58.19,58.19,58.19,2940000,58.19
-1959-05-26,58.09,58.09,58.09,58.09,2910000,58.09
-1959-05-25,58.18,58.18,58.18,58.18,3260000,58.18
-1959-05-22,58.33,58.33,58.33,58.33,3030000,58.33
-1959-05-21,58.14,58.14,58.14,58.14,3230000,58.14
-1959-05-20,58.09,58.09,58.09,58.09,3550000,58.09
-1959-05-19,58.32,58.32,58.32,58.32,3170000,58.32
-1959-05-18,58.15,58.15,58.15,58.15,2970000,58.15
-1959-05-15,58.16,58.16,58.16,58.16,3510000,58.16
-1959-05-14,58.37,58.37,58.37,58.37,3660000,58.37
-1959-05-13,57.97,57.97,57.97,57.97,3540000,57.97
-1959-05-12,57.96,57.96,57.96,57.96,3550000,57.96
-1959-05-11,57.96,57.96,57.96,57.96,3860000,57.96
-1959-05-08,57.32,57.32,57.32,57.32,3930000,57.32
-1959-05-07,56.88,56.88,56.88,56.88,4530000,56.88
-1959-05-06,57.61,57.61,57.61,57.61,4110000,57.61
-1959-05-05,57.75,57.75,57.75,57.75,3360000,57.75
-1959-05-04,57.65,57.65,57.65,57.65,3060000,57.65
-1959-05-01,57.65,57.65,57.65,57.65,3020000,57.65
-1959-04-30,57.59,57.59,57.59,57.59,3510000,57.59
-1959-04-29,57.69,57.69,57.69,57.69,3470000,57.69
-1959-04-28,57.92,57.92,57.92,57.92,3920000,57.92
-1959-04-27,58.14,58.14,58.14,58.14,3850000,58.14
-1959-04-24,57.96,57.96,57.96,57.96,3790000,57.96
-1959-04-23,57.60,57.60,57.60,57.60,3310000,57.60
-1959-04-22,57.73,57.73,57.73,57.73,3430000,57.73
-1959-04-21,58.11,58.11,58.11,58.11,3650000,58.11
-1959-04-20,58.17,58.17,58.17,58.17,3610000,58.17
-1959-04-17,57.92,57.92,57.92,57.92,3870000,57.92
-1959-04-16,57.43,57.43,57.43,57.43,3790000,57.43
-1959-04-15,56.96,56.96,56.96,56.96,3680000,56.96
-1959-04-14,56.71,56.71,56.71,56.71,3320000,56.71
-1959-04-13,56.43,56.43,56.43,56.43,3140000,56.43
-1959-04-10,56.22,56.22,56.22,56.22,3000000,56.22
-1959-04-09,56.17,56.17,56.17,56.17,2830000,56.17
-1959-04-08,56.21,56.21,56.21,56.21,3260000,56.21
-1959-04-07,56.48,56.48,56.48,56.48,3020000,56.48
-1959-04-06,56.60,56.60,56.60,56.60,3510000,56.60
-1959-04-03,56.44,56.44,56.44,56.44,3680000,56.44
-1959-04-02,56.00,56.00,56.00,56.00,3220000,56.00
-1959-04-01,55.69,55.69,55.69,55.69,2980000,55.69
-1959-03-31,55.44,55.44,55.44,55.44,2820000,55.44
-1959-03-30,55.45,55.45,55.45,55.45,2940000,55.45
-1959-03-26,55.76,55.76,55.76,55.76,2900000,55.76
-1959-03-25,55.88,55.88,55.88,55.88,3280000,55.88
-1959-03-24,55.96,55.96,55.96,55.96,3000000,55.96
-1959-03-23,55.87,55.87,55.87,55.87,3700000,55.87
-1959-03-20,56.39,56.39,56.39,56.39,3770000,56.39
-1959-03-19,56.34,56.34,56.34,56.34,4150000,56.34
-1959-03-18,56.39,56.39,56.39,56.39,4530000,56.39
-1959-03-17,56.52,56.52,56.52,56.52,4730000,56.52
-1959-03-16,56.06,56.06,56.06,56.06,4420000,56.06
-1959-03-13,56.67,56.67,56.67,56.67,4880000,56.67
-1959-03-12,56.60,56.60,56.60,56.60,4690000,56.60
-1959-03-11,56.35,56.35,56.35,56.35,4160000,56.35
-1959-03-10,56.31,56.31,56.31,56.31,3920000,56.31
-1959-03-09,56.15,56.15,56.15,56.15,3530000,56.15
-1959-03-06,56.21,56.21,56.21,56.21,3930000,56.21
-1959-03-05,56.43,56.43,56.43,56.43,3930000,56.43
-1959-03-04,56.35,56.35,56.35,56.35,4150000,56.35
-1959-03-03,56.25,56.25,56.25,56.25,4790000,56.25
-1959-03-02,55.73,55.73,55.73,55.73,4210000,55.73
-1959-02-27,55.41,55.41,55.41,55.41,4300000,55.41
-1959-02-26,55.34,55.34,55.34,55.34,3930000,55.34
-1959-02-25,55.24,55.24,55.24,55.24,3780000,55.24
-1959-02-24,55.48,55.48,55.48,55.48,4340000,55.48
-1959-02-20,55.52,55.52,55.52,55.52,4190000,55.52
-1959-02-19,55.50,55.50,55.50,55.50,4160000,55.50
-1959-02-18,54.30,54.30,54.30,54.30,3480000,54.30
-1959-02-17,54.29,54.29,54.29,54.29,3190000,54.29
-1959-02-16,54.50,54.50,54.50,54.50,3480000,54.50
-1959-02-13,54.42,54.42,54.42,54.42,3070000,54.42
-1959-02-12,54.00,54.00,54.00,54.00,2630000,54.00
-1959-02-11,54.35,54.35,54.35,54.35,3000000,54.35
-1959-02-10,54.32,54.32,54.32,54.32,2960000,54.32
-1959-02-09,53.58,53.58,53.58,53.58,3130000,53.58
-1959-02-06,54.37,54.37,54.37,54.37,3010000,54.37
-1959-02-05,54.81,54.81,54.81,54.81,3140000,54.81
-1959-02-04,55.06,55.06,55.06,55.06,3170000,55.06
-1959-02-03,55.28,55.28,55.28,55.28,3220000,55.28
-1959-02-02,55.21,55.21,55.21,55.21,3610000,55.21
-1959-01-30,55.45,55.45,55.45,55.45,3600000,55.45
-1959-01-29,55.20,55.20,55.20,55.20,3470000,55.20
-1959-01-28,55.16,55.16,55.16,55.16,4190000,55.16
-1959-01-27,55.78,55.78,55.78,55.78,3480000,55.78
-1959-01-26,55.77,55.77,55.77,55.77,3980000,55.77
-1959-01-23,56.00,56.00,56.00,56.00,3600000,56.00
-1959-01-22,55.97,55.97,55.97,55.97,4250000,55.97
-1959-01-21,56.04,56.04,56.04,56.04,3940000,56.04
-1959-01-20,55.72,55.72,55.72,55.72,3680000,55.72
-1959-01-19,55.68,55.68,55.68,55.68,3840000,55.68
-1959-01-16,55.81,55.81,55.81,55.81,4300000,55.81
-1959-01-15,55.83,55.83,55.83,55.83,4500000,55.83
-1959-01-14,55.62,55.62,55.62,55.62,4090000,55.62
-1959-01-13,55.47,55.47,55.47,55.47,3790000,55.47
-1959-01-12,55.78,55.78,55.78,55.78,4320000,55.78
-1959-01-09,55.77,55.77,55.77,55.77,4760000,55.77
-1959-01-08,55.40,55.40,55.40,55.40,4030000,55.40
-1959-01-07,54.89,54.89,54.89,54.89,4140000,54.89
-1959-01-06,55.59,55.59,55.59,55.59,3690000,55.59
-1959-01-05,55.66,55.66,55.66,55.66,4210000,55.66
-1959-01-02,55.44,55.44,55.44,55.44,3380000,55.44
-1958-12-31,55.21,55.21,55.21,55.21,3970000,55.21
-1958-12-30,54.93,54.93,54.93,54.93,3900000,54.93
-1958-12-29,54.74,54.74,54.74,54.74,3790000,54.74
-1958-12-24,54.11,54.11,54.11,54.11,3050000,54.11
-1958-12-23,53.42,53.42,53.42,53.42,2870000,53.42
-1958-12-22,53.71,53.71,53.71,53.71,3030000,53.71
-1958-12-19,54.07,54.07,54.07,54.07,3540000,54.07
-1958-12-18,54.15,54.15,54.15,54.15,3900000,54.15
-1958-12-17,53.92,53.92,53.92,53.92,3900000,53.92
-1958-12-16,53.57,53.57,53.57,53.57,3970000,53.57
-1958-12-15,53.37,53.37,53.37,53.37,3340000,53.37
-1958-12-12,53.22,53.22,53.22,53.22,3140000,53.22
-1958-12-11,53.35,53.35,53.35,53.35,4250000,53.35
-1958-12-10,53.46,53.46,53.46,53.46,4340000,53.46
-1958-12-09,52.82,52.82,52.82,52.82,3790000,52.82
-1958-12-08,52.46,52.46,52.46,52.46,3590000,52.46
-1958-12-05,52.46,52.46,52.46,52.46,3360000,52.46
-1958-12-04,52.55,52.55,52.55,52.55,3630000,52.55
-1958-12-03,52.53,52.53,52.53,52.53,3460000,52.53
-1958-12-02,52.46,52.46,52.46,52.46,3320000,52.46
-1958-12-01,52.69,52.69,52.69,52.69,3800000,52.69
-1958-11-28,52.48,52.48,52.48,52.48,4120000,52.48
-1958-11-26,51.90,51.90,51.90,51.90,4090000,51.90
-1958-11-25,51.02,51.02,51.02,51.02,3940000,51.02
-1958-11-24,52.03,52.03,52.03,52.03,4770000,52.03
-1958-11-21,52.70,52.70,52.70,52.70,3950000,52.70
-1958-11-20,53.21,53.21,53.21,53.21,4320000,53.21
-1958-11-19,53.20,53.20,53.20,53.20,4090000,53.20
-1958-11-18,53.13,53.13,53.13,53.13,3820000,53.13
-1958-11-17,53.24,53.24,53.24,53.24,4540000,53.24
-1958-11-14,53.09,53.09,53.09,53.09,4390000,53.09
-1958-11-13,52.83,52.83,52.83,52.83,4200000,52.83
-1958-11-12,53.05,53.05,53.05,53.05,4440000,53.05
-1958-11-11,52.98,52.98,52.98,52.98,4040000,52.98
-1958-11-10,52.57,52.57,52.57,52.57,3730000,52.57
-1958-11-07,52.26,52.26,52.26,52.26,3700000,52.26
-1958-11-06,52.45,52.45,52.45,52.45,4890000,52.45
-1958-11-05,52.03,52.03,52.03,52.03,4080000,52.03
-1958-11-03,51.56,51.56,51.56,51.56,3240000,51.56
-1958-10-31,51.33,51.33,51.33,51.33,3920000,51.33
-1958-10-30,51.27,51.27,51.27,51.27,4360000,51.27
-1958-10-29,51.07,51.07,51.07,51.07,4790000,51.07
-1958-10-28,50.58,50.58,50.58,50.58,3670000,50.58
-1958-10-27,50.42,50.42,50.42,50.42,3980000,50.42
-1958-10-24,50.81,50.81,50.81,50.81,3770000,50.81
-1958-10-23,50.97,50.97,50.97,50.97,3610000,50.97
-1958-10-22,51.07,51.07,51.07,51.07,3500000,51.07
-1958-10-21,51.27,51.27,51.27,51.27,4010000,51.27
-1958-10-20,51.27,51.27,51.27,51.27,4560000,51.27
-1958-10-17,51.46,51.46,51.46,51.46,5360000,51.46
-1958-10-16,50.94,50.94,50.94,50.94,4560000,50.94
-1958-10-15,50.58,50.58,50.58,50.58,4810000,50.58
-1958-10-14,51.26,51.26,51.26,51.26,5110000,51.26
-1958-10-13,51.62,51.62,51.62,51.62,4550000,51.62
-1958-10-10,51.39,51.39,51.39,51.39,4610000,51.39
-1958-10-09,51.05,51.05,51.05,51.05,3670000,51.05
-1958-10-08,51.06,51.06,51.06,51.06,3680000,51.06
-1958-10-07,51.07,51.07,51.07,51.07,3570000,51.07
-1958-10-06,51.07,51.07,51.07,51.07,3570000,51.07
-1958-10-03,50.37,50.37,50.37,50.37,3830000,50.37
-1958-10-02,50.17,50.17,50.17,50.17,3750000,50.17
-1958-10-01,49.98,49.98,49.98,49.98,3780000,49.98
-1958-09-30,50.06,50.06,50.06,50.06,4160000,50.06
-1958-09-29,49.87,49.87,49.87,49.87,3680000,49.87
-1958-09-26,49.66,49.66,49.66,49.66,3420000,49.66
-1958-09-25,49.57,49.57,49.57,49.57,4490000,49.57
-1958-09-24,49.78,49.78,49.78,49.78,3120000,49.78
-1958-09-23,49.56,49.56,49.56,49.56,3950000,49.56
-1958-09-22,49.20,49.20,49.20,49.20,3490000,49.20
-1958-09-19,49.40,49.40,49.40,49.40,3880000,49.40
-1958-09-18,49.38,49.38,49.38,49.38,3460000,49.38
-1958-09-17,49.35,49.35,49.35,49.35,3790000,49.35
-1958-09-16,49.35,49.35,49.35,49.35,3940000,49.35
-1958-09-15,48.96,48.96,48.96,48.96,3040000,48.96
-1958-09-12,48.53,48.53,48.53,48.53,3100000,48.53
-1958-09-11,48.64,48.64,48.64,48.64,3300000,48.64
-1958-09-10,48.31,48.31,48.31,48.31,2820000,48.31
-1958-09-09,48.46,48.46,48.46,48.46,3480000,48.46
-1958-09-08,48.13,48.13,48.13,48.13,3030000,48.13
-1958-09-05,47.97,47.97,47.97,47.97,2520000,47.97
-1958-09-04,48.10,48.10,48.10,48.10,3100000,48.10
-1958-09-03,48.18,48.18,48.18,48.18,3240000,48.18
-1958-09-02,48.00,48.00,48.00,48.00,2930000,48.00
-1958-08-29,47.75,47.75,47.75,47.75,2260000,47.75
-1958-08-28,47.66,47.66,47.66,47.66,2540000,47.66
-1958-08-27,47.91,47.91,47.91,47.91,3250000,47.91
-1958-08-26,47.90,47.90,47.90,47.90,2910000,47.90
-1958-08-25,47.74,47.74,47.74,47.74,2610000,47.74
-1958-08-22,47.73,47.73,47.73,47.73,2660000,47.73
-1958-08-21,47.63,47.63,47.63,47.63,2500000,47.63
-1958-08-20,47.32,47.32,47.32,47.32,2460000,47.32
-1958-08-19,47.30,47.30,47.30,47.30,2250000,47.30
-1958-08-18,47.22,47.22,47.22,47.22,2390000,47.22
-1958-08-15,47.50,47.50,47.50,47.50,2960000,47.50
-1958-08-14,47.91,47.91,47.91,47.91,3370000,47.91
-1958-08-13,47.81,47.81,47.81,47.81,2790000,47.81
-1958-08-12,47.73,47.73,47.73,47.73,2600000,47.73
-1958-08-11,48.16,48.16,48.16,48.16,2870000,48.16
-1958-08-08,48.05,48.05,48.05,48.05,3650000,48.05
-1958-08-07,47.77,47.77,47.77,47.77,3200000,47.77
-1958-08-06,47.46,47.46,47.46,47.46,3440000,47.46
-1958-08-05,47.75,47.75,47.75,47.75,4210000,47.75
-1958-08-04,47.94,47.94,47.94,47.94,4000000,47.94
-1958-08-01,47.49,47.49,47.49,47.49,3380000,47.49
-1958-07-31,47.19,47.19,47.19,47.19,4440000,47.19
-1958-07-30,47.09,47.09,47.09,47.09,3680000,47.09
-1958-07-29,46.96,46.96,46.96,46.96,3310000,46.96
-1958-07-28,47.15,47.15,47.15,47.15,3940000,47.15
-1958-07-25,46.97,46.97,46.97,46.97,4430000,46.97
-1958-07-24,46.65,46.65,46.65,46.65,3740000,46.65
-1958-07-23,46.40,46.40,46.40,46.40,3550000,46.40
-1958-07-22,46.41,46.41,46.41,46.41,3420000,46.41
-1958-07-21,46.33,46.33,46.33,46.33,3440000,46.33
-1958-07-18,45.77,45.77,45.77,45.77,3350000,45.77
-1958-07-17,45.55,45.55,45.55,45.55,3180000,45.55
-1958-07-16,45.25,45.25,45.25,45.25,3240000,45.25
-1958-07-15,45.11,45.11,45.11,45.11,3090000,45.11
-1958-07-14,45.14,45.14,45.14,45.14,2540000,45.14
-1958-07-11,45.72,45.72,45.72,45.72,2400000,45.72
-1958-07-10,45.42,45.42,45.42,45.42,2510000,45.42
-1958-07-09,45.25,45.25,45.25,45.25,2630000,45.25
-1958-07-08,45.40,45.40,45.40,45.40,2430000,45.40
-1958-07-07,45.62,45.62,45.62,45.62,2510000,45.62
-1958-07-03,45.47,45.47,45.47,45.47,2630000,45.47
-1958-07-02,45.32,45.32,45.32,45.32,2370000,45.32
-1958-07-01,45.28,45.28,45.28,45.28,2600000,45.28
-1958-06-30,45.24,45.24,45.24,45.24,2820000,45.24
-1958-06-27,44.90,44.90,44.90,44.90,2800000,44.90
-1958-06-26,44.84,44.84,44.84,44.84,2910000,44.84
-1958-06-25,44.63,44.63,44.63,44.63,2720000,44.63
-1958-06-24,44.52,44.52,44.52,44.52,2560000,44.52
-1958-06-23,44.69,44.69,44.69,44.69,2340000,44.69
-1958-06-20,44.85,44.85,44.85,44.85,2590000,44.85
-1958-06-19,44.61,44.61,44.61,44.61,2690000,44.61
-1958-06-18,45.34,45.34,45.34,45.34,2640000,45.34
-1958-06-17,44.94,44.94,44.94,44.94,2950000,44.94
-1958-06-16,45.18,45.18,45.18,45.18,2870000,45.18
-1958-06-13,45.02,45.02,45.02,45.02,3100000,45.02
-1958-06-12,44.75,44.75,44.75,44.75,2760000,44.75
-1958-06-11,44.49,44.49,44.49,44.49,2570000,44.49
-1958-06-10,44.48,44.48,44.48,44.48,2390000,44.48
-1958-06-09,44.57,44.57,44.57,44.57,2380000,44.57
-1958-06-06,44.64,44.64,44.64,44.64,2680000,44.64
-1958-06-05,44.55,44.55,44.55,44.55,2600000,44.55
-1958-06-04,44.50,44.50,44.50,44.50,2690000,44.50
-1958-06-03,44.46,44.46,44.46,44.46,2780000,44.46
-1958-06-02,44.31,44.31,44.31,44.31,2770000,44.31
-1958-05-29,44.09,44.09,44.09,44.09,2350000,44.09
-1958-05-28,43.85,43.85,43.85,43.85,2260000,43.85
-1958-05-27,43.79,43.79,43.79,43.79,2180000,43.79
-1958-05-26,43.85,43.85,43.85,43.85,2500000,43.85
-1958-05-23,43.87,43.87,43.87,43.87,2570000,43.87
-1958-05-22,43.78,43.78,43.78,43.78,2950000,43.78
-1958-05-21,43.55,43.55,43.55,43.55,2580000,43.55
-1958-05-20,43.61,43.61,43.61,43.61,2500000,43.61
-1958-05-19,43.24,43.24,43.24,43.24,1910000,43.24
-1958-05-16,43.36,43.36,43.36,43.36,2030000,43.36
-1958-05-15,43.34,43.34,43.34,43.34,2470000,43.34
-1958-05-14,43.12,43.12,43.12,43.12,3060000,43.12
-1958-05-13,43.62,43.62,43.62,43.62,2940000,43.62
-1958-05-12,43.75,43.75,43.75,43.75,2780000,43.75
-1958-05-09,44.09,44.09,44.09,44.09,2760000,44.09
-1958-05-08,43.99,43.99,43.99,43.99,2790000,43.99
-1958-05-07,43.93,43.93,43.93,43.93,2770000,43.93
-1958-05-06,44.01,44.01,44.01,44.01,3110000,44.01
-1958-05-05,43.79,43.79,43.79,43.79,2670000,43.79
-1958-05-02,43.69,43.69,43.69,43.69,2290000,43.69
-1958-05-01,43.54,43.54,43.54,43.54,2630000,43.54
-1958-04-30,43.44,43.44,43.44,43.44,2900000,43.44
-1958-04-29,43.00,43.00,43.00,43.00,2190000,43.00
-1958-04-28,43.22,43.22,43.22,43.22,2400000,43.22
-1958-04-25,43.36,43.36,43.36,43.36,3020000,43.36
-1958-04-24,43.14,43.14,43.14,43.14,2870000,43.14
-1958-04-23,42.80,42.80,42.80,42.80,2720000,42.80
-1958-04-22,42.80,42.80,42.80,42.80,2440000,42.80
-1958-04-21,42.93,42.93,42.93,42.93,2550000,42.93
-1958-04-18,42.71,42.71,42.71,42.71,2700000,42.71
-1958-04-17,42.25,42.25,42.25,42.25,2500000,42.25
-1958-04-16,42.10,42.10,42.10,42.10,2240000,42.10
-1958-04-15,42.43,42.43,42.43,42.43,2590000,42.43
-1958-04-14,42.00,42.00,42.00,42.00,2180000,42.00
-1958-04-11,41.74,41.74,41.74,41.74,2060000,41.74
-1958-04-10,41.70,41.70,41.70,41.70,2000000,41.70
-1958-04-09,41.65,41.65,41.65,41.65,2040000,41.65
-1958-04-08,41.43,41.43,41.43,41.43,2190000,41.43
-1958-04-07,41.33,41.33,41.33,41.33,2090000,41.33
-1958-04-03,41.48,41.48,41.48,41.48,2130000,41.48
-1958-04-02,41.60,41.60,41.60,41.60,2390000,41.60
-1958-04-01,41.93,41.93,41.93,41.93,2070000,41.93
-1958-03-31,42.10,42.10,42.10,42.10,2050000,42.10
-1958-03-28,42.20,42.20,42.20,42.20,1930000,42.20
-1958-03-27,42.17,42.17,42.17,42.17,2140000,42.17
-1958-03-26,42.30,42.30,42.30,42.30,1990000,42.30
-1958-03-25,42.44,42.44,42.44,42.44,2210000,42.44
-1958-03-24,42.58,42.58,42.58,42.58,2580000,42.58
-1958-03-21,42.42,42.42,42.42,42.42,2430000,42.42
-1958-03-20,42.11,42.11,42.11,42.11,2280000,42.11
-1958-03-19,42.09,42.09,42.09,42.09,2410000,42.09
-1958-03-18,41.89,41.89,41.89,41.89,2070000,41.89
-1958-03-17,42.04,42.04,42.04,42.04,2130000,42.04
-1958-03-14,42.33,42.33,42.33,42.33,2150000,42.33
-1958-03-13,42.46,42.46,42.46,42.46,2830000,42.46
-1958-03-12,42.41,42.41,42.41,42.41,2420000,42.41
-1958-03-11,42.51,42.51,42.51,42.51,2640000,42.51
-1958-03-10,42.21,42.21,42.21,42.21,1980000,42.21
-1958-03-07,42.07,42.07,42.07,42.07,2130000,42.07
-1958-03-06,42.00,42.00,42.00,42.00,2470000,42.00
-1958-03-05,41.47,41.47,41.47,41.47,2020000,41.47
-1958-03-04,41.35,41.35,41.35,41.35,2010000,41.35
-1958-03-03,41.13,41.13,41.13,41.13,1810000,41.13
-1958-02-28,40.84,40.84,40.84,40.84,1580000,40.84
-1958-02-27,40.68,40.68,40.68,40.68,1670000,40.68
-1958-02-26,40.92,40.92,40.92,40.92,1880000,40.92
-1958-02-25,40.61,40.61,40.61,40.61,1920000,40.61
-1958-02-24,40.65,40.65,40.65,40.65,1570000,40.65
-1958-02-21,40.88,40.88,40.88,40.88,1700000,40.88
-1958-02-20,40.91,40.91,40.91,40.91,2060000,40.91
-1958-02-19,41.15,41.15,41.15,41.15,2070000,41.15
-1958-02-18,41.17,41.17,41.17,41.17,1680000,41.17
-1958-02-17,41.11,41.11,41.11,41.11,1700000,41.11
-1958-02-14,41.33,41.33,41.33,41.33,2070000,41.33
-1958-02-13,40.94,40.94,40.94,40.94,1880000,40.94
-1958-02-12,40.93,40.93,40.93,40.93,2030000,40.93
-1958-02-11,41.11,41.11,41.11,41.11,2110000,41.11
-1958-02-10,41.48,41.48,41.48,41.48,1900000,41.48
-1958-02-07,41.73,41.73,41.73,41.73,2220000,41.73
-1958-02-06,42.10,42.10,42.10,42.10,2210000,42.10
-1958-02-05,42.19,42.19,42.19,42.19,2480000,42.19
-1958-02-04,42.46,42.46,42.46,42.46,2970000,42.46
-1958-02-03,42.04,42.04,42.04,42.04,2490000,42.04
-1958-01-31,41.70,41.70,41.70,41.70,2030000,41.70
-1958-01-30,41.68,41.68,41.68,41.68,2150000,41.68
-1958-01-29,41.88,41.88,41.88,41.88,2220000,41.88
-1958-01-28,41.63,41.63,41.63,41.63,2030000,41.63
-1958-01-27,41.59,41.59,41.59,41.59,2320000,41.59
-1958-01-24,41.71,41.71,41.71,41.71,2830000,41.71
-1958-01-23,41.36,41.36,41.36,41.36,1910000,41.36
-1958-01-22,41.20,41.20,41.20,41.20,2390000,41.20
-1958-01-21,41.30,41.30,41.30,41.30,2160000,41.30
-1958-01-20,41.35,41.35,41.35,41.35,2310000,41.35
-1958-01-17,41.10,41.10,41.10,41.10,2200000,41.10
-1958-01-16,41.06,41.06,41.06,41.06,3950000,41.06
-1958-01-15,40.99,40.99,40.99,40.99,2080000,40.99
-1958-01-14,40.67,40.67,40.67,40.67,2010000,40.67
-1958-01-13,40.49,40.49,40.49,40.49,1860000,40.49
-1958-01-10,40.37,40.37,40.37,40.37,2010000,40.37
-1958-01-09,40.75,40.75,40.75,40.75,2180000,40.75
-1958-01-08,40.99,40.99,40.99,40.99,2230000,40.99
-1958-01-07,41.00,41.00,41.00,41.00,2220000,41.00
-1958-01-06,40.68,40.68,40.68,40.68,2500000,40.68
-1958-01-03,40.87,40.87,40.87,40.87,2440000,40.87
-1958-01-02,40.33,40.33,40.33,40.33,1800000,40.33
-1957-12-31,39.99,39.99,39.99,39.99,5070000,39.99
-1957-12-30,39.58,39.58,39.58,39.58,3750000,39.58
-1957-12-27,39.78,39.78,39.78,39.78,2620000,39.78
-1957-12-26,39.92,39.92,39.92,39.92,2280000,39.92
-1957-12-24,39.52,39.52,39.52,39.52,2220000,39.52
-1957-12-23,39.48,39.48,39.48,39.48,2790000,39.48
-1957-12-20,39.48,39.48,39.48,39.48,2500000,39.48
-1957-12-19,39.80,39.80,39.80,39.80,2740000,39.80
-1957-12-18,39.38,39.38,39.38,39.38,2750000,39.38
-1957-12-17,39.42,39.42,39.42,39.42,2820000,39.42
-1957-12-16,40.12,40.12,40.12,40.12,2350000,40.12
-1957-12-13,40.73,40.73,40.73,40.73,2310000,40.73
-1957-12-12,40.55,40.55,40.55,40.55,2330000,40.55
-1957-12-11,40.51,40.51,40.51,40.51,2240000,40.51
-1957-12-10,40.56,40.56,40.56,40.56,2360000,40.56
-1957-12-09,40.92,40.92,40.92,40.92,2230000,40.92
-1957-12-06,41.31,41.31,41.31,41.31,2350000,41.31
-1957-12-05,41.52,41.52,41.52,41.52,2020000,41.52
-1957-12-04,41.54,41.54,41.54,41.54,2220000,41.54
-1957-12-03,41.37,41.37,41.37,41.37,2060000,41.37
-1957-12-02,41.36,41.36,41.36,41.36,2430000,41.36
-1957-11-29,41.72,41.72,41.72,41.72,2740000,41.72
-1957-11-27,41.25,41.25,41.25,41.25,3330000,41.25
-1957-11-26,40.09,40.09,40.09,40.09,3650000,40.09
-1957-11-25,41.18,41.18,41.18,41.18,2600000,41.18
-1957-11-22,40.87,40.87,40.87,40.87,2850000,40.87
-1957-11-21,40.48,40.48,40.48,40.48,2900000,40.48
-1957-11-20,39.92,39.92,39.92,39.92,2400000,39.92
-1957-11-19,39.81,39.81,39.81,39.81,2240000,39.81
-1957-11-18,40.04,40.04,40.04,40.04,2110000,40.04
-1957-11-15,40.37,40.37,40.37,40.37,3510000,40.37
-1957-11-14,39.44,39.44,39.44,39.44,2450000,39.44
-1957-11-13,39.55,39.55,39.55,39.55,2120000,39.55
-1957-11-12,39.60,39.60,39.60,39.60,2050000,39.60
-1957-11-11,40.18,40.18,40.18,40.18,1540000,40.18
-1957-11-08,40.19,40.19,40.19,40.19,2140000,40.19
-1957-11-07,40.67,40.67,40.67,40.67,2580000,40.67
-1957-11-06,40.43,40.43,40.43,40.43,2550000,40.43
-1957-11-04,40.37,40.37,40.37,40.37,2380000,40.37
-1957-11-01,40.44,40.44,40.44,40.44,2060000,40.44
-1957-10-31,41.06,41.06,41.06,41.06,2170000,41.06
-1957-10-30,41.02,41.02,41.02,41.02,2060000,41.02
-1957-10-29,40.69,40.69,40.69,40.69,1860000,40.69
-1957-10-28,40.42,40.42,40.42,40.42,1800000,40.42
-1957-10-25,40.59,40.59,40.59,40.59,2400000,40.59
-1957-10-24,40.71,40.71,40.71,40.71,4030000,40.71
-1957-10-23,40.73,40.73,40.73,40.73,4600000,40.73
-1957-10-22,38.98,38.98,38.98,38.98,5090000,38.98
-1957-10-21,39.15,39.15,39.15,39.15,4670000,39.15
-1957-10-18,40.33,40.33,40.33,40.33,2670000,40.33
-1957-10-17,40.65,40.65,40.65,40.65,3060000,40.65
-1957-10-16,41.33,41.33,41.33,41.33,2050000,41.33
-1957-10-15,41.67,41.67,41.67,41.67,2620000,41.67
-1957-10-14,41.24,41.24,41.24,41.24,2770000,41.24
-1957-10-11,40.94,40.94,40.94,40.94,4460000,40.94
-1957-10-10,40.96,40.96,40.96,40.96,3300000,40.96
-1957-10-09,41.99,41.99,41.99,41.99,2120000,41.99
-1957-10-08,41.95,41.95,41.95,41.95,3190000,41.95
-1957-10-07,42.22,42.22,42.22,42.22,2490000,42.22
-1957-10-04,42.79,42.79,42.79,42.79,1520000,42.79
-1957-10-03,43.14,43.14,43.14,43.14,1590000,43.14
-1957-10-02,43.10,43.10,43.10,43.10,1760000,43.10
-1957-10-01,42.76,42.76,42.76,42.76,1680000,42.76
-1957-09-30,42.42,42.42,42.42,42.42,1520000,42.42
-1957-09-27,42.55,42.55,42.55,42.55,1750000,42.55
-1957-09-26,42.57,42.57,42.57,42.57,2130000,42.57
-1957-09-25,42.98,42.98,42.98,42.98,2770000,42.98
-1957-09-24,42.98,42.98,42.98,42.98,2840000,42.98
-1957-09-23,42.69,42.69,42.69,42.69,3160000,42.69
-1957-09-20,43.69,43.69,43.69,43.69,2340000,43.69
-1957-09-19,44.40,44.40,44.40,44.40,1520000,44.40
-1957-09-18,44.69,44.69,44.69,44.69,1540000,44.69
-1957-09-17,44.64,44.64,44.64,44.64,1490000,44.64
-1957-09-16,44.58,44.58,44.58,44.58,1290000,44.58
-1957-09-13,44.80,44.80,44.80,44.80,1620000,44.80
-1957-09-12,44.82,44.82,44.82,44.82,2010000,44.82
-1957-09-11,44.26,44.26,44.26,44.26,2130000,44.26
-1957-09-10,43.87,43.87,43.87,43.87,1870000,43.87
-1957-09-09,44.28,44.28,44.28,44.28,1420000,44.28
-1957-09-06,44.68,44.68,44.68,44.68,1320000,44.68
-1957-09-05,44.82,44.82,44.82,44.82,1420000,44.82
-1957-09-04,45.05,45.05,45.05,45.05,1260000,45.05
-1957-09-03,45.44,45.44,45.44,45.44,1490000,45.44
-1957-08-30,45.22,45.22,45.22,45.22,1600000,45.22
-1957-08-29,44.46,44.46,44.46,44.46,1630000,44.46
-1957-08-28,44.64,44.64,44.64,44.64,1840000,44.64
-1957-08-27,44.61,44.61,44.61,44.61,2250000,44.61
-1957-08-26,43.89,43.89,43.89,43.89,2680000,43.89
-1957-08-23,44.51,44.51,44.51,44.51,1960000,44.51
-1957-08-22,45.16,45.16,45.16,45.16,1500000,45.16
-1957-08-21,45.49,45.49,45.49,45.49,1720000,45.49
-1957-08-20,45.29,45.29,45.29,45.29,2700000,45.29
-1957-08-19,44.91,44.91,44.91,44.91,2040000,44.91
-1957-08-16,45.83,45.83,45.83,45.83,1470000,45.83
-1957-08-15,45.75,45.75,45.75,45.75,2040000,45.75
-1957-08-14,45.73,45.73,45.73,45.73,2040000,45.73
-1957-08-13,46.30,46.30,46.30,46.30,1580000,46.30
-1957-08-12,46.33,46.33,46.33,46.33,1650000,46.33
-1957-08-09,46.92,46.92,46.92,46.92,1570000,46.92
-1957-08-08,46.90,46.90,46.90,46.90,1690000,46.90
-1957-08-07,47.03,47.03,47.03,47.03,2460000,47.03
-1957-08-06,46.67,46.67,46.67,46.67,1910000,46.67
-1957-08-05,47.26,47.26,47.26,47.26,1790000,47.26
-1957-08-02,47.68,47.68,47.68,47.68,1610000,47.68
-1957-08-01,47.79,47.79,47.79,47.79,1660000,47.79
-1957-07-31,47.91,47.91,47.91,47.91,1830000,47.91
-1957-07-30,47.92,47.92,47.92,47.92,1780000,47.92
-1957-07-29,47.92,47.92,47.92,47.92,1990000,47.92
-1957-07-26,48.45,48.45,48.45,48.45,1710000,48.45
-1957-07-25,48.61,48.61,48.61,48.61,1800000,48.61
-1957-07-24,48.61,48.61,48.61,48.61,1730000,48.61
-1957-07-23,48.56,48.56,48.56,48.56,1840000,48.56
-1957-07-22,48.47,48.47,48.47,48.47,1950000,48.47
-1957-07-19,48.58,48.58,48.58,48.58,1930000,48.58
-1957-07-18,48.53,48.53,48.53,48.53,2130000,48.53
-1957-07-17,48.58,48.58,48.58,48.58,2060000,48.58
-1957-07-16,48.88,48.88,48.88,48.88,2510000,48.88
-1957-07-15,49.13,49.13,49.13,49.13,2480000,49.13
-1957-07-12,49.08,49.08,49.08,49.08,2240000,49.08
-1957-07-11,48.86,48.86,48.86,48.86,2830000,48.86
-1957-07-10,49.00,49.00,49.00,49.00,2880000,49.00
-1957-07-09,48.90,48.90,48.90,48.90,2450000,48.90
-1957-07-08,48.90,48.90,48.90,48.90,2840000,48.90
-1957-07-05,48.69,48.69,48.69,48.69,2240000,48.69
-1957-07-03,48.46,48.46,48.46,48.46,2720000,48.46
-1957-07-02,47.90,47.90,47.90,47.90,2450000,47.90
-1957-07-01,47.43,47.43,47.43,47.43,1840000,47.43
-1957-06-28,47.37,47.37,47.37,47.37,1770000,47.37
-1957-06-27,47.26,47.26,47.26,47.26,1800000,47.26
-1957-06-26,47.09,47.09,47.09,47.09,1870000,47.09
-1957-06-25,47.15,47.15,47.15,47.15,2000000,47.15
-1957-06-24,46.78,46.78,46.78,46.78,2040000,46.78
-1957-06-21,47.15,47.15,47.15,47.15,1970000,47.15
-1957-06-20,47.43,47.43,47.43,47.43,2050000,47.43
-1957-06-19,47.72,47.72,47.72,47.72,2220000,47.72
-1957-06-18,48.04,48.04,48.04,48.04,2440000,48.04
-1957-06-17,48.24,48.24,48.24,48.24,2220000,48.24
-1957-06-14,48.15,48.15,48.15,48.15,2090000,48.15
-1957-06-13,48.14,48.14,48.14,48.14,2630000,48.14
-1957-06-12,48.05,48.05,48.05,48.05,2600000,48.05
-1957-06-11,47.94,47.94,47.94,47.94,2850000,47.94
-1957-06-10,47.90,47.90,47.90,47.90,2050000,47.90
-1957-06-07,47.85,47.85,47.85,47.85,2380000,47.85
-1957-06-06,47.80,47.80,47.80,47.80,2300000,47.80
-1957-06-05,47.27,47.27,47.27,47.27,1940000,47.27
-1957-06-04,47.28,47.28,47.28,47.28,2200000,47.28
-1957-06-03,47.37,47.37,47.37,47.37,2050000,47.37
-1957-05-31,47.43,47.43,47.43,47.43,2050000,47.43
-1957-05-29,47.11,47.11,47.11,47.11,2270000,47.11
-1957-05-28,46.69,46.69,46.69,46.69,2070000,46.69
-1957-05-27,46.78,46.78,46.78,46.78,2290000,46.78
-1957-05-24,47.21,47.21,47.21,47.21,2340000,47.21
-1957-05-23,47.15,47.15,47.15,47.15,2110000,47.15
-1957-05-22,47.14,47.14,47.14,47.14,2060000,47.14
-1957-05-21,47.33,47.33,47.33,47.33,2370000,47.33
-1957-05-20,47.35,47.35,47.35,47.35,2300000,47.35
-1957-05-17,47.15,47.15,47.15,47.15,2510000,47.15
-1957-05-16,47.02,47.02,47.02,47.02,2690000,47.02
-1957-05-15,46.83,46.83,46.83,46.83,2590000,46.83
-1957-05-14,46.67,46.67,46.67,46.67,2580000,46.67
-1957-05-13,46.88,46.88,46.88,46.88,2720000,46.88
-1957-05-10,46.59,46.59,46.59,46.59,2430000,46.59
-1957-05-09,46.36,46.36,46.36,46.36,2520000,46.36
-1957-05-08,46.31,46.31,46.31,46.31,2590000,46.31
-1957-05-07,46.13,46.13,46.13,46.13,2300000,46.13
-1957-05-06,46.27,46.27,46.27,46.27,2210000,46.27
-1957-05-03,46.34,46.34,46.34,46.34,2390000,46.34
-1957-05-02,46.39,46.39,46.39,46.39,2860000,46.39
-1957-05-01,46.02,46.02,46.02,46.02,2310000,46.02
-1957-04-30,45.74,45.74,45.74,45.74,2200000,45.74
-1957-04-29,45.73,45.73,45.73,45.73,2290000,45.73
-1957-04-26,45.50,45.50,45.50,45.50,2380000,45.50
-1957-04-25,45.56,45.56,45.56,45.56,2640000,45.56
-1957-04-24,45.72,45.72,45.72,45.72,2990000,45.72
-1957-04-23,45.65,45.65,45.65,45.65,2840000,45.65
-1957-04-22,45.48,45.48,45.48,45.48,2560000,45.48
-1957-04-18,45.41,45.41,45.41,45.41,2480000,45.41
-1957-04-17,45.08,45.08,45.08,45.08,2290000,45.08
-1957-04-16,45.02,45.02,45.02,45.02,1890000,45.02
-1957-04-15,44.95,44.95,44.95,44.95,2010000,44.95
-1957-04-12,44.98,44.98,44.98,44.98,2370000,44.98
-1957-04-11,44.98,44.98,44.98,44.98,2350000,44.98
-1957-04-10,44.98,44.98,44.98,44.98,2920000,44.98
-1957-04-09,44.79,44.79,44.79,44.79,2400000,44.79
-1957-04-08,44.39,44.39,44.39,44.39,1950000,44.39
-1957-04-05,44.49,44.49,44.49,44.49,1830000,44.49
-1957-04-04,44.44,44.44,44.44,44.44,1820000,44.44
-1957-04-03,44.54,44.54,44.54,44.54,2160000,44.54
-1957-04-02,44.42,44.42,44.42,44.42,2300000,44.42
-1957-04-01,44.14,44.14,44.14,44.14,1620000,44.14
-1957-03-29,44.11,44.11,44.11,44.11,1650000,44.11
-1957-03-28,44.18,44.18,44.18,44.18,1930000,44.18
-1957-03-27,44.09,44.09,44.09,44.09,1710000,44.09
-1957-03-26,43.91,43.91,43.91,43.91,1660000,43.91
-1957-03-25,43.88,43.88,43.88,43.88,1590000,43.88
-1957-03-22,44.06,44.06,44.06,44.06,1610000,44.06
-1957-03-21,44.11,44.11,44.11,44.11,1630000,44.11
-1957-03-20,44.10,44.10,44.10,44.10,1830000,44.10
-1957-03-19,44.04,44.04,44.04,44.04,1540000,44.04
-1957-03-18,43.85,43.85,43.85,43.85,1450000,43.85
-1957-03-15,44.05,44.05,44.05,44.05,1600000,44.05
-1957-03-14,44.07,44.07,44.07,44.07,1580000,44.07
-1957-03-13,44.04,44.04,44.04,44.04,1840000,44.04
-1957-03-12,43.75,43.75,43.75,43.75,1600000,43.75
-1957-03-11,43.78,43.78,43.78,43.78,1650000,43.78
-1957-03-08,44.07,44.07,44.07,44.07,1630000,44.07
-1957-03-07,44.21,44.21,44.21,44.21,1830000,44.21
-1957-03-06,44.23,44.23,44.23,44.23,1840000,44.23
-1957-03-05,44.22,44.22,44.22,44.22,1860000,44.22
-1957-03-04,44.06,44.06,44.06,44.06,1890000,44.06
-1957-03-01,43.74,43.74,43.74,43.74,1700000,43.74
-1957-02-28,43.26,43.26,43.26,43.26,1620000,43.26
-1957-02-27,43.41,43.41,43.41,43.41,1620000,43.41
-1957-02-26,43.45,43.45,43.45,43.45,1580000,43.45
-1957-02-25,43.38,43.38,43.38,43.38,1710000,43.38
-1957-02-21,43.48,43.48,43.48,43.48,1680000,43.48
-1957-02-20,43.63,43.63,43.63,43.63,1790000,43.63
-1957-02-19,43.49,43.49,43.49,43.49,1670000,43.49
-1957-02-18,43.46,43.46,43.46,43.46,1800000,43.46
-1957-02-15,43.51,43.51,43.51,43.51,2060000,43.51
-1957-02-14,42.99,42.99,42.99,42.99,2220000,42.99
-1957-02-13,43.04,43.04,43.04,43.04,2380000,43.04
-1957-02-12,42.39,42.39,42.39,42.39,2550000,42.39
-1957-02-11,42.57,42.57,42.57,42.57,2740000,42.57
-1957-02-08,43.32,43.32,43.32,43.32,2120000,43.32
-1957-02-07,43.62,43.62,43.62,43.62,1840000,43.62
-1957-02-06,43.82,43.82,43.82,43.82,2110000,43.82
-1957-02-05,43.89,43.89,43.89,43.89,2610000,43.89
-1957-02-04,44.53,44.53,44.53,44.53,1750000,44.53
-1957-02-01,44.62,44.62,44.62,44.62,1680000,44.62
-1957-01-31,44.72,44.72,44.72,44.72,1920000,44.72
-1957-01-30,44.91,44.91,44.91,44.91,1950000,44.91
-1957-01-29,44.71,44.71,44.71,44.71,1800000,44.71
-1957-01-28,44.49,44.49,44.49,44.49,1700000,44.49
-1957-01-25,44.82,44.82,44.82,44.82,2010000,44.82
-1957-01-24,45.03,45.03,45.03,45.03,1910000,45.03
-1957-01-23,44.87,44.87,44.87,44.87,1920000,44.87
-1957-01-22,44.53,44.53,44.53,44.53,1920000,44.53
-1957-01-21,44.40,44.40,44.40,44.40,2740000,44.40
-1957-01-18,44.64,44.64,44.64,44.64,2400000,44.64
-1957-01-17,45.22,45.22,45.22,45.22,2140000,45.22
-1957-01-16,45.23,45.23,45.23,45.23,2210000,45.23
-1957-01-15,45.18,45.18,45.18,45.18,2370000,45.18
-1957-01-14,45.86,45.86,45.86,45.86,2350000,45.86
-1957-01-11,46.18,46.18,46.18,46.18,2340000,46.18
-1957-01-10,46.27,46.27,46.27,46.27,2470000,46.27
-1957-01-09,46.16,46.16,46.16,46.16,2330000,46.16
-1957-01-08,46.25,46.25,46.25,46.25,2230000,46.25
-1957-01-07,46.42,46.42,46.42,46.42,2500000,46.42
-1957-01-04,46.66,46.66,46.66,46.66,2710000,46.66
-1957-01-03,46.60,46.60,46.60,46.60,2260000,46.60
-1957-01-02,46.20,46.20,46.20,46.20,1960000,46.20
-1956-12-31,46.67,46.67,46.67,46.67,3680000,46.67
-1956-12-28,46.56,46.56,46.56,46.56,2790000,46.56
-1956-12-27,46.35,46.35,46.35,46.35,2420000,46.35
-1956-12-26,46.39,46.39,46.39,46.39,2440000,46.39
-1956-12-21,46.37,46.37,46.37,46.37,2380000,46.37
-1956-12-20,46.07,46.07,46.07,46.07,2060000,46.07
-1956-12-19,46.43,46.43,46.43,46.43,1900000,46.43
-1956-12-18,46.54,46.54,46.54,46.54,2370000,46.54
-1956-12-17,46.54,46.54,46.54,46.54,2500000,46.54
-1956-12-14,46.54,46.54,46.54,46.54,2450000,46.54
-1956-12-13,46.50,46.50,46.50,46.50,2370000,46.50
-1956-12-12,46.13,46.13,46.13,46.13,2180000,46.13
-1956-12-11,46.48,46.48,46.48,46.48,2210000,46.48
-1956-12-10,46.80,46.80,46.80,46.80,2600000,46.80
-1956-12-07,47.04,47.04,47.04,47.04,2400000,47.04
-1956-12-06,46.81,46.81,46.81,46.81,2470000,46.81
-1956-12-05,46.39,46.39,46.39,46.39,2360000,46.39
-1956-12-04,45.84,45.84,45.84,45.84,2180000,45.84
-1956-12-03,45.98,45.98,45.98,45.98,2570000,45.98
-1956-11-30,45.08,45.08,45.08,45.08,2300000,45.08
-1956-11-29,44.38,44.38,44.38,44.38,2440000,44.38
-1956-11-28,44.43,44.43,44.43,44.43,2190000,44.43
-1956-11-27,44.91,44.91,44.91,44.91,2130000,44.91
-1956-11-26,44.87,44.87,44.87,44.87,2230000,44.87
-1956-11-23,45.14,45.14,45.14,45.14,1880000,45.14
-1956-11-21,44.67,44.67,44.67,44.67,2310000,44.67
-1956-11-20,44.89,44.89,44.89,44.89,2240000,44.89
-1956-11-19,45.29,45.29,45.29,45.29,2560000,45.29
-1956-11-16,45.74,45.74,45.74,45.74,1820000,45.74
-1956-11-15,45.72,45.72,45.72,45.72,2210000,45.72
-1956-11-14,46.01,46.01,46.01,46.01,2290000,46.01
-1956-11-13,46.27,46.27,46.27,46.27,2140000,46.27
-1956-11-12,46.49,46.49,46.49,46.49,1600000,46.49
-1956-11-09,46.34,46.34,46.34,46.34,1690000,46.34
-1956-11-08,46.73,46.73,46.73,46.73,1970000,46.73
-1956-11-07,47.11,47.11,47.11,47.11,2650000,47.11
-1956-11-05,47.60,47.60,47.60,47.60,2830000,47.60
-1956-11-02,46.98,46.98,46.98,46.98,2180000,46.98
-1956-11-01,46.52,46.52,46.52,46.52,1890000,46.52
-1956-10-31,45.58,45.58,45.58,45.58,2280000,45.58
-1956-10-30,46.37,46.37,46.37,46.37,1830000,46.37
-1956-10-29,46.40,46.40,46.40,46.40,2420000,46.40
-1956-10-26,46.27,46.27,46.27,46.27,1800000,46.27
-1956-10-25,45.85,45.85,45.85,45.85,1580000,45.85
-1956-10-24,45.93,45.93,45.93,45.93,1640000,45.93
-1956-10-23,46.12,46.12,46.12,46.12,1390000,46.12
-1956-10-22,46.23,46.23,46.23,46.23,1430000,46.23
-1956-10-19,46.24,46.24,46.24,46.24,1720000,46.24
-1956-10-18,46.34,46.34,46.34,46.34,1640000,46.34
-1956-10-17,46.26,46.26,46.26,46.26,1640000,46.26
-1956-10-16,46.62,46.62,46.62,46.62,1580000,46.62
-1956-10-15,46.86,46.86,46.86,46.86,1610000,46.86
-1956-10-12,47.00,47.00,47.00,47.00,1330000,47.00
-1956-10-11,46.81,46.81,46.81,46.81,1760000,46.81
-1956-10-10,46.84,46.84,46.84,46.84,1620000,46.84
-1956-10-09,46.20,46.20,46.20,46.20,1220000,46.20
-1956-10-08,46.43,46.43,46.43,46.43,1450000,46.43
-1956-10-05,46.45,46.45,46.45,46.45,1580000,46.45
-1956-10-04,46.29,46.29,46.29,46.29,1600000,46.29
-1956-10-03,46.28,46.28,46.28,46.28,2180000,46.28
-1956-10-02,45.52,45.52,45.52,45.52,2400000,45.52
-1956-10-01,44.70,44.70,44.70,44.70,2600000,44.70
-1956-09-28,45.35,45.35,45.35,45.35,1720000,45.35
-1956-09-27,45.60,45.60,45.60,45.60,1770000,45.60
-1956-09-26,45.82,45.82,45.82,45.82,2370000,45.82
-1956-09-25,45.75,45.75,45.75,45.75,2100000,45.75
-1956-09-24,46.40,46.40,46.40,46.40,1840000,46.40
-1956-09-21,46.58,46.58,46.58,46.58,2110000,46.58
-1956-09-20,46.21,46.21,46.21,46.21,2150000,46.21
-1956-09-19,46.24,46.24,46.24,46.24,2040000,46.24
-1956-09-18,46.79,46.79,46.79,46.79,2200000,46.79
-1956-09-17,47.10,47.10,47.10,47.10,1940000,47.10
-1956-09-14,47.21,47.21,47.21,47.21,2110000,47.21
-1956-09-13,46.09,46.09,46.09,46.09,2000000,46.09
-1956-09-12,47.05,47.05,47.05,47.05,1930000,47.05
-1956-09-11,47.38,47.38,47.38,47.38,1920000,47.38
-1956-09-10,47.56,47.56,47.56,47.56,1860000,47.56
-1956-09-07,47.81,47.81,47.81,47.81,1690000,47.81
-1956-09-06,48.10,48.10,48.10,48.10,1550000,48.10
-1956-09-05,48.02,48.02,48.02,48.02,2130000,48.02
-1956-09-04,47.89,47.89,47.89,47.89,1790000,47.89
-1956-08-31,47.51,47.51,47.51,47.51,1620000,47.51
-1956-08-30,46.94,46.94,46.94,46.94,2050000,46.94
-1956-08-29,47.36,47.36,47.36,47.36,1530000,47.36
-1956-08-28,47.57,47.57,47.57,47.57,1400000,47.57
-1956-08-27,47.66,47.66,47.66,47.66,1420000,47.66
-1956-08-24,47.95,47.95,47.95,47.95,1530000,47.95
-1956-08-23,48.00,48.00,48.00,48.00,1590000,48.00
-1956-08-22,47.42,47.42,47.42,47.42,1570000,47.42
-1956-08-21,47.89,47.89,47.89,47.89,2440000,47.89
-1956-08-20,48.25,48.25,48.25,48.25,1770000,48.25
-1956-08-17,48.82,48.82,48.82,48.82,1720000,48.82
-1956-08-16,48.88,48.88,48.88,48.88,1790000,48.88
-1956-08-15,48.99,48.99,48.99,48.99,2000000,48.99
-1956-08-14,48.00,48.00,48.00,48.00,1790000,48.00
-1956-08-13,48.58,48.58,48.58,48.58,1730000,48.58
-1956-08-10,49.09,49.09,49.09,49.09,2040000,49.09
-1956-08-09,49.32,49.32,49.32,49.32,2550000,49.32
-1956-08-08,49.36,49.36,49.36,49.36,2480000,49.36
-1956-08-07,49.16,49.16,49.16,49.16,2180000,49.16
-1956-08-06,48.96,48.96,48.96,48.96,2280000,48.96
-1956-08-03,49.64,49.64,49.64,49.64,2210000,49.64
-1956-08-02,49.64,49.64,49.64,49.64,2530000,49.64
-1956-08-01,49.62,49.62,49.62,49.62,2230000,49.62
-1956-07-31,49.39,49.39,49.39,49.39,2520000,49.39
-1956-07-30,49.00,49.00,49.00,49.00,2100000,49.00
-1956-07-27,49.08,49.08,49.08,49.08,2240000,49.08
-1956-07-26,49.48,49.48,49.48,49.48,2060000,49.48
-1956-07-25,49.44,49.44,49.44,49.44,2220000,49.44
-1956-07-24,49.33,49.33,49.33,49.33,2040000,49.33
-1956-07-23,49.33,49.33,49.33,49.33,1970000,49.33
-1956-07-20,49.35,49.35,49.35,49.35,2020000,49.35
-1956-07-19,49.32,49.32,49.32,49.32,1950000,49.32
-1956-07-18,49.30,49.30,49.30,49.30,2530000,49.30
-1956-07-17,49.31,49.31,49.31,49.31,2520000,49.31
-1956-07-16,49.14,49.14,49.14,49.14,2260000,49.14
-1956-07-13,48.72,48.72,48.72,48.72,2020000,48.72
-1956-07-12,48.58,48.58,48.58,48.58,2180000,48.58
-1956-07-11,48.69,48.69,48.69,48.69,2520000,48.69
-1956-07-10,48.54,48.54,48.54,48.54,2450000,48.54
-1956-07-09,48.25,48.25,48.25,48.25,2180000,48.25
-1956-07-06,48.04,48.04,48.04,48.04,2180000,48.04
-1956-07-05,47.80,47.80,47.80,47.80,2240000,47.80
-1956-07-03,47.32,47.32,47.32,47.32,1840000,47.32
-1956-07-02,46.93,46.93,46.93,46.93,1610000,46.93
-1956-06-29,46.97,46.97,46.97,46.97,1780000,46.97
-1956-06-28,47.13,47.13,47.13,47.13,1900000,47.13
-1956-06-27,47.07,47.07,47.07,47.07,2090000,47.07
-1956-06-26,46.72,46.72,46.72,46.72,1730000,46.72
-1956-06-25,46.41,46.41,46.41,46.41,1500000,46.41
-1956-06-22,46.59,46.59,46.59,46.59,1630000,46.59
-1956-06-21,46.73,46.73,46.73,46.73,1820000,46.73
-1956-06-20,46.41,46.41,46.41,46.41,1670000,46.41
-1956-06-19,46.22,46.22,46.22,46.22,1430000,46.22
-1956-06-18,46.17,46.17,46.17,46.17,1440000,46.17
-1956-06-15,46.37,46.37,46.37,46.37,1550000,46.37
-1956-06-14,46.31,46.31,46.31,46.31,1670000,46.31
-1956-06-13,46.42,46.42,46.42,46.42,1760000,46.42
-1956-06-12,46.36,46.36,46.36,46.36,1900000,46.36
-1956-06-11,45.71,45.71,45.71,45.71,2000000,45.71
-1956-06-08,45.14,45.14,45.14,45.14,3630000,45.14
-1956-06-07,45.99,45.99,45.99,45.99,1630000,45.99
-1956-06-06,45.63,45.63,45.63,45.63,1460000,45.63
-1956-06-05,45.86,45.86,45.86,45.86,1650000,45.86
-1956-06-04,45.85,45.85,45.85,45.85,1500000,45.85
-1956-06-01,45.58,45.58,45.58,45.58,1440000,45.58
-1956-05-31,45.20,45.20,45.20,45.20,2020000,45.20
-1956-05-29,45.11,45.11,45.11,45.11,2430000,45.11
-1956-05-28,44.10,44.10,44.10,44.10,2780000,44.10
-1956-05-25,44.62,44.62,44.62,44.62,2570000,44.62
-1956-05-24,44.60,44.60,44.60,44.60,2600000,44.60
-1956-05-23,45.02,45.02,45.02,45.02,2140000,45.02
-1956-05-22,45.26,45.26,45.26,45.26,2290000,45.26
-1956-05-21,45.99,45.99,45.99,45.99,1940000,45.99
-1956-05-18,46.39,46.39,46.39,46.39,2020000,46.39
-1956-05-17,46.61,46.61,46.61,46.61,1970000,46.61
-1956-05-16,46.05,46.05,46.05,46.05,2080000,46.05
-1956-05-15,46.37,46.37,46.37,46.37,2650000,46.37
-1956-05-14,46.86,46.86,46.86,46.86,2440000,46.86
-1956-05-11,47.12,47.12,47.12,47.12,2450000,47.12
-1956-05-10,47.16,47.16,47.16,47.16,2850000,47.16
-1956-05-09,47.94,47.94,47.94,47.94,2550000,47.94
-1956-05-08,48.02,48.02,48.02,48.02,2440000,48.02
-1956-05-07,48.22,48.22,48.22,48.22,2550000,48.22
-1956-05-04,48.51,48.51,48.51,48.51,2860000,48.51
-1956-05-03,48.34,48.34,48.34,48.34,2640000,48.34
-1956-05-02,48.17,48.17,48.17,48.17,2440000,48.17
-1956-05-01,48.16,48.16,48.16,48.16,2500000,48.16
-1956-04-30,48.38,48.38,48.38,48.38,2730000,48.38
-1956-04-27,47.99,47.99,47.99,47.99,2760000,47.99
-1956-04-26,47.49,47.49,47.49,47.49,2630000,47.49
-1956-04-25,47.09,47.09,47.09,47.09,2270000,47.09
-1956-04-24,47.26,47.26,47.26,47.26,2500000,47.26
-1956-04-23,47.65,47.65,47.65,47.65,2440000,47.65
-1956-04-20,47.76,47.76,47.76,47.76,2320000,47.76
-1956-04-19,47.57,47.57,47.57,47.57,2210000,47.57
-1956-04-18,47.74,47.74,47.74,47.74,2470000,47.74
-1956-04-17,47.93,47.93,47.93,47.93,2330000,47.93
-1956-04-16,47.96,47.96,47.96,47.96,2310000,47.96
-1956-04-13,47.95,47.95,47.95,47.95,2450000,47.95
-1956-04-12,48.02,48.02,48.02,48.02,2700000,48.02
-1956-04-11,48.31,48.31,48.31,48.31,2440000,48.31
-1956-04-10,47.93,47.93,47.93,47.93,2590000,47.93
-1956-04-09,48.61,48.61,48.61,48.61,2760000,48.61
-1956-04-06,48.85,48.85,48.85,48.85,2600000,48.85
-1956-04-05,48.57,48.57,48.57,48.57,2950000,48.57
-1956-04-04,48.80,48.80,48.80,48.80,2760000,48.80
-1956-04-03,48.53,48.53,48.53,48.53,2760000,48.53
-1956-04-02,48.70,48.70,48.70,48.70,3120000,48.70
-1956-03-29,48.48,48.48,48.48,48.48,3480000,48.48
-1956-03-28,48.51,48.51,48.51,48.51,2610000,48.51
-1956-03-27,48.25,48.25,48.25,48.25,2540000,48.25
-1956-03-26,48.62,48.62,48.62,48.62,2720000,48.62
-1956-03-23,48.83,48.83,48.83,48.83,2980000,48.83
-1956-03-22,48.72,48.72,48.72,48.72,2650000,48.72
-1956-03-21,48.23,48.23,48.23,48.23,2930000,48.23
-1956-03-20,48.87,48.87,48.87,48.87,2960000,48.87
-1956-03-19,48.59,48.59,48.59,48.59,2570000,48.59
-1956-03-16,48.14,48.14,48.14,48.14,3120000,48.14
-1956-03-15,47.99,47.99,47.99,47.99,3270000,47.99
-1956-03-14,47.53,47.53,47.53,47.53,3140000,47.53
-1956-03-13,47.06,47.06,47.06,47.06,2790000,47.06
-1956-03-12,47.13,47.13,47.13,47.13,3110000,47.13
-1956-03-09,46.70,46.70,46.70,46.70,3430000,46.70
-1956-03-08,46.12,46.12,46.12,46.12,2500000,46.12
-1956-03-07,46.01,46.01,46.01,46.01,2380000,46.01
-1956-03-06,46.04,46.04,46.04,46.04,2770000,46.04
-1956-03-05,46.06,46.06,46.06,46.06,3090000,46.06
-1956-03-02,45.81,45.81,45.81,45.81,2860000,45.81
-1956-03-01,45.54,45.54,45.54,45.54,2410000,45.54
-1956-02-29,45.34,45.34,45.34,45.34,3900000,45.34
-1956-02-28,45.43,45.43,45.43,45.43,2540000,45.43
-1956-02-27,45.27,45.27,45.27,45.27,2440000,45.27
-1956-02-24,45.32,45.32,45.32,45.32,2890000,45.32
-1956-02-23,44.95,44.95,44.95,44.95,2900000,44.95
-1956-02-21,44.56,44.56,44.56,44.56,2240000,44.56
-1956-02-20,44.45,44.45,44.45,44.45,2530000,44.45
-1956-02-17,44.52,44.52,44.52,44.52,2840000,44.52
-1956-02-16,43.82,43.82,43.82,43.82,1750000,43.82
-1956-02-15,44.04,44.04,44.04,44.04,3000000,44.04
-1956-02-14,43.42,43.42,43.42,43.42,1590000,43.42
-1956-02-13,43.58,43.58,43.58,43.58,1420000,43.58
-1956-02-10,43.64,43.64,43.64,43.64,1770000,43.64
-1956-02-09,43.66,43.66,43.66,43.66,2080000,43.66
-1956-02-08,44.16,44.16,44.16,44.16,2170000,44.16
-1956-02-07,44.60,44.60,44.60,44.60,2060000,44.60
-1956-02-06,44.81,44.81,44.81,44.81,2230000,44.81
-1956-02-03,44.78,44.78,44.78,44.78,2110000,44.78
-1956-02-02,44.22,44.22,44.22,44.22,1900000,44.22
-1956-02-01,44.03,44.03,44.03,44.03,2010000,44.03
-1956-01-31,43.82,43.82,43.82,43.82,1900000,43.82
-1956-01-30,43.50,43.50,43.50,43.50,1830000,43.50
-1956-01-27,43.35,43.35,43.35,43.35,1950000,43.35
-1956-01-26,43.46,43.46,43.46,43.46,1840000,43.46
-1956-01-25,43.72,43.72,43.72,43.72,1950000,43.72
-1956-01-24,43.65,43.65,43.65,43.65,2160000,43.65
-1956-01-23,43.11,43.11,43.11,43.11,2720000,43.11
-1956-01-20,43.22,43.22,43.22,43.22,2430000,43.22
-1956-01-19,43.72,43.72,43.72,43.72,2500000,43.72
-1956-01-18,44.17,44.17,44.17,44.17,2110000,44.17
-1956-01-17,44.47,44.47,44.47,44.47,2050000,44.47
-1956-01-16,44.14,44.14,44.14,44.14,2260000,44.14
-1956-01-13,44.67,44.67,44.67,44.67,2120000,44.67
-1956-01-12,44.75,44.75,44.75,44.75,2330000,44.75
-1956-01-11,44.38,44.38,44.38,44.38,2310000,44.38
-1956-01-10,44.16,44.16,44.16,44.16,2640000,44.16
-1956-01-09,44.51,44.51,44.51,44.51,2700000,44.51
-1956-01-06,45.14,45.14,45.14,45.14,2570000,45.14
-1956-01-05,44.95,44.95,44.95,44.95,2110000,44.95
-1956-01-04,45.00,45.00,45.00,45.00,2290000,45.00
-1956-01-03,45.16,45.16,45.16,45.16,2390000,45.16
-1955-12-30,45.48,45.48,45.48,45.48,2820000,45.48
-1955-12-29,45.15,45.15,45.15,45.15,2190000,45.15
-1955-12-28,45.05,45.05,45.05,45.05,1990000,45.05
-1955-12-27,45.22,45.22,45.22,45.22,2010000,45.22
-1955-12-23,45.50,45.50,45.50,45.50,2090000,45.50
-1955-12-22,45.41,45.41,45.41,45.41,2650000,45.41
-1955-12-21,45.84,45.84,45.84,45.84,2540000,45.84
-1955-12-20,44.95,44.95,44.95,44.95,2280000,44.95
-1955-12-19,45.02,45.02,45.02,45.02,2380000,45.02
-1955-12-16,45.13,45.13,45.13,45.13,2310000,45.13
-1955-12-15,45.06,45.06,45.06,45.06,2260000,45.06
-1955-12-14,45.07,45.07,45.07,45.07,2670000,45.07
-1955-12-13,45.45,45.45,45.45,45.45,2430000,45.45
-1955-12-12,45.42,45.42,45.42,45.42,2510000,45.42
-1955-12-09,45.89,45.89,45.89,45.89,2660000,45.89
-1955-12-08,45.82,45.82,45.82,45.82,2970000,45.82
-1955-12-07,45.55,45.55,45.55,45.55,2480000,45.55
-1955-12-06,45.70,45.70,45.70,45.70,2540000,45.70
-1955-12-05,45.70,45.70,45.70,45.70,2440000,45.70
-1955-12-02,45.44,45.44,45.44,45.44,2400000,45.44
-1955-12-01,45.35,45.35,45.35,45.35,2370000,45.35
-1955-11-30,45.51,45.51,45.51,45.51,2900000,45.51
-1955-11-29,45.56,45.56,45.56,45.56,2370000,45.56
-1955-11-28,45.38,45.38,45.38,45.38,2460000,45.38
-1955-11-25,45.68,45.68,45.68,45.68,2190000,45.68
-1955-11-23,45.72,45.72,45.72,45.72,2550000,45.72
-1955-11-22,45.66,45.66,45.66,45.66,2270000,45.66
-1955-11-21,45.22,45.22,45.22,45.22,1960000,45.22
-1955-11-18,45.54,45.54,45.54,45.54,2320000,45.54
-1955-11-17,45.59,45.59,45.59,45.59,2310000,45.59
-1955-11-16,45.91,45.91,45.91,45.91,2460000,45.91
-1955-11-15,46.21,46.21,46.21,46.21,2560000,46.21
-1955-11-14,46.41,46.41,46.41,46.41,2760000,46.41
-1955-11-11,45.24,45.24,45.24,45.24,2000000,45.24
-1955-11-10,44.72,44.72,44.72,44.72,2550000,44.72
-1955-11-09,44.61,44.61,44.61,44.61,2580000,44.61
-1955-11-07,44.15,44.15,44.15,44.15,2230000,44.15
-1955-11-04,43.96,43.96,43.96,43.96,2430000,43.96
-1955-11-03,43.24,43.24,43.24,43.24,2260000,43.24
-1955-11-02,42.35,42.35,42.35,42.35,1610000,42.35
-1955-11-01,42.28,42.28,42.28,42.28,1590000,42.28
-1955-10-31,42.34,42.34,42.34,42.34,1800000,42.34
-1955-10-28,42.37,42.37,42.37,42.37,1720000,42.37
-1955-10-27,42.34,42.34,42.34,42.34,1830000,42.34
-1955-10-26,42.29,42.29,42.29,42.29,1660000,42.29
-1955-10-25,42.63,42.63,42.63,42.63,1950000,42.63
-1955-10-24,42.91,42.91,42.91,42.91,1820000,42.91
-1955-10-21,42.59,42.59,42.59,42.59,1710000,42.59
-1955-10-20,42.59,42.59,42.59,42.59,2160000,42.59
-1955-10-19,42.07,42.07,42.07,42.07,1760000,42.07
-1955-10-18,41.65,41.65,41.65,41.65,1550000,41.65
-1955-10-17,41.35,41.35,41.35,41.35,1480000,41.35
-1955-10-14,41.22,41.22,41.22,41.22,1640000,41.22
-1955-10-13,41.39,41.39,41.39,41.39,1980000,41.39
-1955-10-12,41.52,41.52,41.52,41.52,1900000,41.52
-1955-10-11,40.80,40.80,40.80,40.80,3590000,40.80
-1955-10-10,41.15,41.15,41.15,41.15,3100000,41.15
-1955-10-07,42.38,42.38,42.38,42.38,2150000,42.38
-1955-10-06,42.70,42.70,42.70,42.70,1690000,42.70
-1955-10-05,42.99,42.99,42.99,42.99,1920000,42.99
-1955-10-04,42.82,42.82,42.82,42.82,2020000,42.82
-1955-10-03,42.49,42.49,42.49,42.49,2720000,42.49
-1955-09-30,43.67,43.67,43.67,43.67,2140000,43.67
-1955-09-29,44.03,44.03,44.03,44.03,2560000,44.03
-1955-09-28,44.31,44.31,44.31,44.31,3780000,44.31
-1955-09-27,43.58,43.58,43.58,43.58,5500000,43.58
-1955-09-26,42.61,42.61,42.61,42.61,7720000,42.61
-1955-09-23,45.63,45.63,45.63,45.63,2540000,45.63
-1955-09-22,45.39,45.39,45.39,45.39,2550000,45.39
-1955-09-21,45.39,45.39,45.39,45.39,2460000,45.39
-1955-09-20,45.13,45.13,45.13,45.13,2090000,45.13
-1955-09-19,45.16,45.16,45.16,45.16,2390000,45.16
-1955-09-16,45.09,45.09,45.09,45.09,2540000,45.09
-1955-09-15,44.75,44.75,44.75,44.75,2890000,44.75
-1955-09-14,44.99,44.99,44.99,44.99,2570000,44.99
-1955-09-13,44.80,44.80,44.80,44.80,2580000,44.80
-1955-09-12,44.19,44.19,44.19,44.19,2520000,44.19
-1955-09-09,43.89,43.89,43.89,43.89,2480000,43.89
-1955-09-08,43.88,43.88,43.88,43.88,2470000,43.88
-1955-09-07,43.85,43.85,43.85,43.85,2380000,43.85
-1955-09-06,43.86,43.86,43.86,43.86,2360000,43.86
-1955-09-02,43.60,43.60,43.60,43.60,1700000,43.60
-1955-09-01,43.37,43.37,43.37,43.37,1860000,43.37
-1955-08-31,43.18,43.18,43.18,43.18,1850000,43.18
-1955-08-30,42.92,42.92,42.92,42.92,1740000,42.92
-1955-08-29,42.96,42.96,42.96,42.96,1910000,42.96
-1955-08-26,42.99,42.99,42.99,42.99,2200000,42.99
-1955-08-25,42.80,42.80,42.80,42.80,2120000,42.80
-1955-08-24,42.61,42.61,42.61,42.61,2140000,42.61
-1955-08-23,42.55,42.55,42.55,42.55,1890000,42.55
-1955-08-22,41.98,41.98,41.98,41.98,1430000,41.98
-1955-08-19,42.02,42.02,42.02,42.02,1400000,42.02
-1955-08-18,41.84,41.84,41.84,41.84,1560000,41.84
-1955-08-17,41.90,41.90,41.90,41.90,1570000,41.90
-1955-08-16,41.86,41.86,41.86,41.86,1520000,41.86
-1955-08-15,42.17,42.17,42.17,42.17,1230000,42.17
-1955-08-12,42.21,42.21,42.21,42.21,1530000,42.21
-1955-08-11,42.13,42.13,42.13,42.13,1620000,42.13
-1955-08-10,41.74,41.74,41.74,41.74,1580000,41.74
-1955-08-09,41.75,41.75,41.75,41.75,2240000,41.75
-1955-08-08,42.31,42.31,42.31,42.31,1730000,42.31
-1955-08-05,42.56,42.56,42.56,42.56,1690000,42.56
-1955-08-04,42.36,42.36,42.36,42.36,2210000,42.36
-1955-08-03,43.09,43.09,43.09,43.09,2190000,43.09
-1955-08-02,43.03,43.03,43.03,43.03,2260000,43.03
-1955-08-01,42.93,42.93,42.93,42.93,2190000,42.93
-1955-07-29,43.52,43.52,43.52,43.52,2070000,43.52
-1955-07-28,43.50,43.50,43.50,43.50,2090000,43.50
-1955-07-27,43.76,43.76,43.76,43.76,2170000,43.76
-1955-07-26,43.58,43.58,43.58,43.58,2340000,43.58
-1955-07-25,43.48,43.48,43.48,43.48,2500000,43.48
-1955-07-22,43.00,43.00,43.00,43.00,2500000,43.00
-1955-07-21,42.64,42.64,42.64,42.64,2530000,42.64
-1955-07-20,42.23,42.23,42.23,42.23,2080000,42.23
-1955-07-19,42.10,42.10,42.10,42.10,2300000,42.10
-1955-07-18,42.36,42.36,42.36,42.36,2160000,42.36
-1955-07-15,42.40,42.40,42.40,42.40,2230000,42.40
-1955-07-14,42.25,42.25,42.25,42.25,1980000,42.25
-1955-07-13,42.24,42.24,42.24,42.24,2360000,42.24
-1955-07-12,42.75,42.75,42.75,42.75,2630000,42.75
-1955-07-11,42.75,42.75,42.75,42.75,2420000,42.75
-1955-07-08,42.64,42.64,42.64,42.64,2450000,42.64
-1955-07-07,42.58,42.58,42.58,42.58,3300000,42.58
-1955-07-06,43.18,43.18,43.18,43.18,3140000,43.18
-1955-07-05,41.69,41.69,41.69,41.69,2680000,41.69
-1955-07-01,41.19,41.19,41.19,41.19,2540000,41.19
-1955-06-30,41.03,41.03,41.03,41.03,2370000,41.03
-1955-06-29,40.79,40.79,40.79,40.79,2180000,40.79
-1955-06-28,40.77,40.77,40.77,40.77,2180000,40.77
-1955-06-27,40.99,40.99,40.99,40.99,2250000,40.99
-1955-06-24,40.96,40.96,40.96,40.96,2410000,40.96
-1955-06-23,40.75,40.75,40.75,40.75,2900000,40.75
-1955-06-22,40.60,40.60,40.60,40.60,3010000,40.60
-1955-06-21,40.51,40.51,40.51,40.51,2720000,40.51
-1955-06-20,40.14,40.14,40.14,40.14,2490000,40.14
-1955-06-17,40.10,40.10,40.10,40.10,2340000,40.10
-1955-06-16,39.96,39.96,39.96,39.96,2760000,39.96
-1955-06-15,39.89,39.89,39.89,39.89,2650000,39.89
-1955-06-14,39.67,39.67,39.67,39.67,2860000,39.67
-1955-06-13,39.62,39.62,39.62,39.62,2770000,39.62
-1955-06-10,39.25,39.25,39.25,39.25,2470000,39.25
-1955-06-09,39.01,39.01,39.01,39.01,2960000,39.01
-1955-06-08,39.22,39.22,39.22,39.22,3300000,39.22
-1955-06-07,39.96,39.96,39.96,39.96,3230000,39.96
-1955-06-06,39.69,39.69,39.69,39.69,2560000,39.69
-1955-06-03,38.37,38.37,38.37,38.37,2590000,38.37
-1955-06-02,38.01,38.01,38.01,38.01,2610000,38.01
-1955-06-01,37.96,37.96,37.96,37.96,2510000,37.96
-1955-05-31,37.91,37.91,37.91,37.91,1990000,37.91
-1955-05-27,37.93,37.93,37.93,37.93,2220000,37.93
-1955-05-26,37.85,37.85,37.85,37.85,2260000,37.85
-1955-05-25,37.60,37.60,37.60,37.60,2100000,37.60
-1955-05-24,37.46,37.46,37.46,37.46,1650000,37.46
-1955-05-23,37.48,37.48,37.48,37.48,1900000,37.48
-1955-05-20,37.74,37.74,37.74,37.74,2240000,37.74
-1955-05-19,37.49,37.49,37.49,37.49,2380000,37.49
-1955-05-18,37.28,37.28,37.28,37.28,2010000,37.28
-1955-05-17,36.97,36.97,36.97,36.97,1900000,36.97
-1955-05-16,37.02,37.02,37.02,37.02,2160000,37.02
-1955-05-13,37.44,37.44,37.44,37.44,1860000,37.44
-1955-05-12,37.20,37.20,37.20,37.20,2830000,37.20
-1955-05-11,37.42,37.42,37.42,37.42,2120000,37.42
-1955-05-10,37.85,37.85,37.85,37.85,2150000,37.85
-1955-05-09,37.93,37.93,37.93,37.93,2090000,37.93
-1955-05-06,37.89,37.89,37.89,37.89,2250000,37.89
-1955-05-05,37.82,37.82,37.82,37.82,2270000,37.82
-1955-05-04,37.64,37.64,37.64,37.64,2220000,37.64
-1955-05-03,37.70,37.70,37.70,37.70,2630000,37.70
-1955-05-02,38.04,38.04,38.04,38.04,2220000,38.04
-1955-04-29,37.96,37.96,37.96,37.96,2230000,37.96
-1955-04-28,37.68,37.68,37.68,37.68,2550000,37.68
-1955-04-27,38.11,38.11,38.11,38.11,2660000,38.11
-1955-04-26,38.31,38.31,38.31,38.31,2720000,38.31
-1955-04-25,38.11,38.11,38.11,38.11,2720000,38.11
-1955-04-22,38.01,38.01,38.01,38.01,2800000,38.01
-1955-04-21,38.32,38.32,38.32,38.32,2810000,38.32
-1955-04-20,38.28,38.28,38.28,38.28,3090000,38.28
-1955-04-19,38.22,38.22,38.22,38.22,2700000,38.22
-1955-04-18,38.27,38.27,38.27,38.27,3080000,38.27
-1955-04-15,37.96,37.96,37.96,37.96,3180000,37.96
-1955-04-14,37.79,37.79,37.79,37.79,2890000,37.79
-1955-04-13,37.71,37.71,37.71,37.71,2820000,37.71
-1955-04-12,37.66,37.66,37.66,37.66,2770000,37.66
-1955-04-11,37.44,37.44,37.44,37.44,2680000,37.44
-1955-04-07,37.34,37.34,37.34,37.34,2330000,37.34
-1955-04-06,37.17,37.17,37.17,37.17,2500000,37.17
-1955-04-05,36.98,36.98,36.98,36.98,2100000,36.98
-1955-04-04,36.83,36.83,36.83,36.83,2500000,36.83
-1955-04-01,36.95,36.95,36.95,36.95,2660000,36.95
-1955-03-31,36.58,36.58,36.58,36.58,2680000,36.58
-1955-03-30,36.52,36.52,36.52,36.52,3410000,36.52
-1955-03-29,36.85,36.85,36.85,36.85,2770000,36.85
-1955-03-28,36.83,36.83,36.83,36.83,2540000,36.83
-1955-03-25,36.96,36.96,36.96,36.96,2540000,36.96
-1955-03-24,36.93,36.93,36.93,36.93,3170000,36.93
-1955-03-23,36.64,36.64,36.64,36.64,2730000,36.64
-1955-03-22,36.17,36.17,36.17,36.17,1910000,36.17
-1955-03-21,35.95,35.95,35.95,35.95,2020000,35.95
-1955-03-18,36.18,36.18,36.18,36.18,2050000,36.18
-1955-03-17,36.12,36.12,36.12,36.12,2200000,36.12
-1955-03-16,35.98,35.98,35.98,35.98,2900000,35.98
-1955-03-15,35.71,35.71,35.71,35.71,3160000,35.71
-1955-03-14,34.96,34.96,34.96,34.96,4220000,34.96
-1955-03-11,35.82,35.82,35.82,35.82,3040000,35.82
-1955-03-10,36.45,36.45,36.45,36.45,2760000,36.45
-1955-03-09,36.22,36.22,36.22,36.22,3590000,36.22
-1955-03-08,36.58,36.58,36.58,36.58,3160000,36.58
-1955-03-07,37.28,37.28,37.28,37.28,2630000,37.28
-1955-03-04,37.52,37.52,37.52,37.52,2770000,37.52
-1955-03-03,37.29,37.29,37.29,37.29,3330000,37.29
-1955-03-02,37.15,37.15,37.15,37.15,3370000,37.15
-1955-03-01,36.83,36.83,36.83,36.83,2830000,36.83
-1955-02-28,36.76,36.76,36.76,36.76,2620000,36.76
-1955-02-25,36.57,36.57,36.57,36.57,2540000,36.57
-1955-02-24,36.62,36.62,36.62,36.62,2920000,36.62
-1955-02-23,36.82,36.82,36.82,36.82,3030000,36.82
-1955-02-21,36.85,36.85,36.85,36.85,3010000,36.85
-1955-02-18,36.89,36.89,36.89,36.89,3660000,36.89
-1955-02-17,36.84,36.84,36.84,36.84,3030000,36.84
-1955-02-16,36.77,36.77,36.77,36.77,3660000,36.77
-1955-02-15,36.89,36.89,36.89,36.89,3510000,36.89
-1955-02-14,36.89,36.89,36.89,36.89,2950000,36.89
-1955-02-11,37.15,37.15,37.15,37.15,3260000,37.15
-1955-02-10,37.08,37.08,37.08,37.08,3460000,37.08
-1955-02-09,36.75,36.75,36.75,36.75,3360000,36.75
-1955-02-08,36.46,36.46,36.46,36.46,3400000,36.46
-1955-02-07,36.96,36.96,36.96,36.96,3610000,36.96
-1955-02-04,36.96,36.96,36.96,36.96,3370000,36.96
-1955-02-03,36.44,36.44,36.44,36.44,2890000,36.44
-1955-02-02,36.61,36.61,36.61,36.61,3210000,36.61
-1955-02-01,36.72,36.72,36.72,36.72,3320000,36.72
-1955-01-31,36.63,36.63,36.63,36.63,3500000,36.63
-1955-01-28,36.19,36.19,36.19,36.19,3290000,36.19
-1955-01-27,35.99,35.99,35.99,35.99,3500000,35.99
-1955-01-26,35.95,35.95,35.95,35.95,3860000,35.95
-1955-01-25,35.51,35.51,35.51,35.51,3230000,35.51
-1955-01-24,35.52,35.52,35.52,35.52,2910000,35.52
-1955-01-21,35.44,35.44,35.44,35.44,2690000,35.44
-1955-01-20,35.13,35.13,35.13,35.13,2210000,35.13
-1955-01-19,34.96,34.96,34.96,34.96,2760000,34.96
-1955-01-18,34.80,34.80,34.80,34.80,3020000,34.80
-1955-01-17,34.58,34.58,34.58,34.58,3360000,34.58
-1955-01-14,35.28,35.28,35.28,35.28,2630000,35.28
-1955-01-13,35.43,35.43,35.43,35.43,3350000,35.43
-1955-01-12,35.58,35.58,35.58,35.58,3400000,35.58
-1955-01-11,35.68,35.68,35.68,35.68,3680000,35.68
-1955-01-10,35.79,35.79,35.79,35.79,4300000,35.79
-1955-01-07,35.33,35.33,35.33,35.33,4030000,35.33
-1955-01-06,35.04,35.04,35.04,35.04,5300000,35.04
-1955-01-05,35.52,35.52,35.52,35.52,4640000,35.52
-1955-01-04,36.42,36.42,36.42,36.42,4420000,36.42
-1955-01-03,36.75,36.75,36.75,36.75,4570000,36.75
-1954-12-31,35.98,35.98,35.98,35.98,3840000,35.98
-1954-12-30,35.74,35.74,35.74,35.74,3590000,35.74
-1954-12-29,35.74,35.74,35.74,35.74,4430000,35.74
-1954-12-28,35.43,35.43,35.43,35.43,3660000,35.43
-1954-12-27,35.07,35.07,35.07,35.07,2970000,35.07
-1954-12-23,35.37,35.37,35.37,35.37,3310000,35.37
-1954-12-22,35.34,35.34,35.34,35.34,3460000,35.34
-1954-12-21,35.38,35.38,35.38,35.38,3630000,35.38
-1954-12-20,35.33,35.33,35.33,35.33,3770000,35.33
-1954-12-17,35.92,35.92,35.92,35.92,3730000,35.92
-1954-12-16,34.93,34.93,34.93,34.93,3390000,34.93
-1954-12-15,34.56,34.56,34.56,34.56,2740000,34.56
-1954-12-14,34.35,34.35,34.35,34.35,2650000,34.35
-1954-12-13,34.59,34.59,34.59,34.59,2750000,34.59
-1954-12-10,34.56,34.56,34.56,34.56,3250000,34.56
-1954-12-09,34.69,34.69,34.69,34.69,3300000,34.69
-1954-12-08,34.86,34.86,34.86,34.86,4150000,34.86
-1954-12-07,34.92,34.92,34.92,34.92,3820000,34.92
-1954-12-06,34.76,34.76,34.76,34.76,3960000,34.76
-1954-12-03,34.49,34.49,34.49,34.49,3790000,34.49
-1954-12-02,34.18,34.18,34.18,34.18,3190000,34.18
-1954-12-01,33.99,33.99,33.99,33.99,3100000,33.99
-1954-11-30,34.24,34.24,34.24,34.24,3440000,34.24
-1954-11-29,34.54,34.54,34.54,34.54,3300000,34.54
-1954-11-26,34.55,34.55,34.55,34.55,3010000,34.55
-1954-11-24,34.22,34.22,34.22,34.22,3990000,34.22
-1954-11-23,34.03,34.03,34.03,34.03,3690000,34.03
-1954-11-22,33.58,33.58,33.58,33.58,3000000,33.58
-1954-11-19,33.45,33.45,33.45,33.45,3130000,33.45
-1954-11-18,33.44,33.44,33.44,33.44,3530000,33.44
-1954-11-17,33.63,33.63,33.63,33.63,3830000,33.63
-1954-11-16,33.57,33.57,33.57,33.57,3260000,33.57
-1954-11-15,33.47,33.47,33.47,33.47,3080000,33.47
-1954-11-12,33.54,33.54,33.54,33.54,3720000,33.54
-1954-11-11,33.47,33.47,33.47,33.47,2960000,33.47
-1954-11-10,33.18,33.18,33.18,33.18,2070000,33.18
-1954-11-09,33.15,33.15,33.15,33.15,3240000,33.15
-1954-11-08,33.02,33.02,33.02,33.02,3180000,33.02
-1954-11-05,32.71,32.71,32.71,32.71,2950000,32.71
-1954-11-04,32.82,32.82,32.82,32.82,3140000,32.82
-1954-11-03,32.44,32.44,32.44,32.44,2700000,32.44
-1954-11-01,31.79,31.79,31.79,31.79,1790000,31.79
-1954-10-29,31.68,31.68,31.68,31.68,1900000,31.68
-1954-10-28,31.88,31.88,31.88,31.88,2190000,31.88
-1954-10-27,32.02,32.02,32.02,32.02,2030000,32.02
-1954-10-26,31.94,31.94,31.94,31.94,2010000,31.94
-1954-10-25,31.96,31.96,31.96,31.96,2340000,31.96
-1954-10-22,32.13,32.13,32.13,32.13,2080000,32.13
-1954-10-21,32.13,32.13,32.13,32.13,2320000,32.13
-1954-10-20,32.17,32.17,32.17,32.17,2380000,32.17
-1954-10-19,31.91,31.91,31.91,31.91,1900000,31.91
-1954-10-18,31.83,31.83,31.83,31.83,1790000,31.83
-1954-10-15,31.71,31.71,31.71,31.71,2250000,31.71
-1954-10-14,31.88,31.88,31.88,31.88,2540000,31.88
-1954-10-13,32.27,32.27,32.27,32.27,2070000,32.27
-1954-10-12,32.28,32.28,32.28,32.28,1620000,32.28
-1954-10-11,32.41,32.41,32.41,32.41,2100000,32.41
-1954-10-08,32.67,32.67,32.67,32.67,2120000,32.67
-1954-10-07,32.69,32.69,32.69,32.69,1810000,32.69
-1954-10-06,32.76,32.76,32.76,32.76,2570000,32.76
-1954-10-05,32.63,32.63,32.63,32.63,2300000,32.63
-1954-10-04,32.47,32.47,32.47,32.47,2000000,32.47
-1954-10-01,32.29,32.29,32.29,32.29,1850000,32.29
-1954-09-30,32.31,32.31,32.31,32.31,1840000,32.31
-1954-09-29,32.50,32.50,32.50,32.50,1810000,32.50
-1954-09-28,32.69,32.69,32.69,32.69,1800000,32.69
-1954-09-27,32.53,32.53,32.53,32.53,2190000,32.53
-1954-09-24,32.40,32.40,32.40,32.40,2340000,32.40
-1954-09-23,32.18,32.18,32.18,32.18,2340000,32.18
-1954-09-22,32.00,32.00,32.00,32.00,2260000,32.00
-1954-09-21,31.79,31.79,31.79,31.79,1770000,31.79
-1954-09-20,31.57,31.57,31.57,31.57,2060000,31.57
-1954-09-17,31.71,31.71,31.71,31.71,2250000,31.71
-1954-09-16,31.46,31.46,31.46,31.46,1880000,31.46
-1954-09-15,31.29,31.29,31.29,31.29,2110000,31.29
-1954-09-14,31.28,31.28,31.28,31.28,2120000,31.28
-1954-09-13,31.12,31.12,31.12,31.12,2030000,31.12
-1954-09-10,30.84,30.84,30.84,30.84,1870000,30.84
-1954-09-09,30.73,30.73,30.73,30.73,1700000,30.73
-1954-09-08,30.68,30.68,30.68,30.68,1970000,30.68
-1954-09-07,30.66,30.66,30.66,30.66,1860000,30.66
-1954-09-03,30.50,30.50,30.50,30.50,1630000,30.50
-1954-09-02,30.27,30.27,30.27,30.27,1600000,30.27
-1954-09-01,30.04,30.04,30.04,30.04,1790000,30.04
-1954-08-31,29.83,29.83,29.83,29.83,2640000,29.83
-1954-08-30,30.35,30.35,30.35,30.35,1950000,30.35
-1954-08-27,30.66,30.66,30.66,30.66,1740000,30.66
-1954-08-26,30.57,30.57,30.57,30.57,2060000,30.57
-1954-08-25,30.65,30.65,30.65,30.65,2280000,30.65
-1954-08-24,30.87,30.87,30.87,30.87,2000000,30.87
-1954-08-23,31.00,31.00,31.00,31.00,2020000,31.00
-1954-08-20,31.21,31.21,31.21,31.21,2110000,31.21
-1954-08-19,31.16,31.16,31.16,31.16,2320000,31.16
-1954-08-18,31.09,31.09,31.09,31.09,2390000,31.09
-1954-08-17,31.12,31.12,31.12,31.12,2900000,31.12
-1954-08-16,31.05,31.05,31.05,31.05,2760000,31.05
-1954-08-13,30.72,30.72,30.72,30.72,2500000,30.72
-1954-08-12,30.59,30.59,30.59,30.59,2680000,30.59
-1954-08-11,30.72,30.72,30.72,30.72,3440000,30.72
-1954-08-10,30.37,30.37,30.37,30.37,2890000,30.37
-1954-08-09,30.12,30.12,30.12,30.12,2280000,30.12
-1954-08-06,30.38,30.38,30.38,30.38,3350000,30.38
-1954-08-05,30.77,30.77,30.77,30.77,3150000,30.77
-1954-08-04,30.90,30.90,30.90,30.90,3620000,30.90
-1954-08-03,30.93,30.93,30.93,30.93,2970000,30.93
-1954-08-02,30.99,30.99,30.99,30.99,2850000,30.99
-1954-07-30,30.88,30.88,30.88,30.88,2800000,30.88
-1954-07-29,30.69,30.69,30.69,30.69,2710000,30.69
-1954-07-28,30.58,30.58,30.58,30.58,2740000,30.58
-1954-07-27,30.52,30.52,30.52,30.52,2690000,30.52
-1954-07-26,30.34,30.34,30.34,30.34,2110000,30.34
-1954-07-23,30.31,30.31,30.31,30.31,2520000,30.31
-1954-07-22,30.27,30.27,30.27,30.27,2890000,30.27
-1954-07-21,30.03,30.03,30.03,30.03,2510000,30.03
-1954-07-20,29.84,29.84,29.84,29.84,2580000,29.84
-1954-07-19,29.98,29.98,29.98,29.98,2370000,29.98
-1954-07-16,30.06,30.06,30.06,30.06,2540000,30.06
-1954-07-15,30.19,30.19,30.19,30.19,3000000,30.19
-1954-07-14,30.09,30.09,30.09,30.09,2520000,30.09
-1954-07-13,30.02,30.02,30.02,30.02,2430000,30.02
-1954-07-12,30.12,30.12,30.12,30.12,2330000,30.12
-1954-07-09,30.14,30.14,30.14,30.14,2240000,30.14
-1954-07-08,29.94,29.94,29.94,29.94,2080000,29.94
-1954-07-07,29.94,29.94,29.94,29.94,2380000,29.94
-1954-07-06,29.92,29.92,29.92,29.92,2560000,29.92
-1954-07-02,29.59,29.59,29.59,29.59,1980000,29.59
-1954-07-01,29.21,29.21,29.21,29.21,1860000,29.21
-1954-06-30,29.21,29.21,29.21,29.21,1950000,29.21
-1954-06-29,29.43,29.43,29.43,29.43,2580000,29.43
-1954-06-28,29.28,29.28,29.28,29.28,1890000,29.28
-1954-06-25,29.20,29.20,29.20,29.20,2060000,29.20
-1954-06-24,29.26,29.26,29.26,29.26,2260000,29.26
-1954-06-23,29.13,29.13,29.13,29.13,2090000,29.13
-1954-06-22,29.08,29.08,29.08,29.08,2100000,29.08
-1954-06-21,29.06,29.06,29.06,29.06,1820000,29.06
-1954-06-18,29.04,29.04,29.04,29.04,1580000,29.04
-1954-06-17,28.96,28.96,28.96,28.96,1810000,28.96
-1954-06-16,29.04,29.04,29.04,29.04,2070000,29.04
-1954-06-15,28.83,28.83,28.83,28.83,1630000,28.83
-1954-06-14,28.62,28.62,28.62,28.62,1420000,28.62
-1954-06-11,28.58,28.58,28.58,28.58,1630000,28.58
-1954-06-10,28.34,28.34,28.34,28.34,1610000,28.34
-1954-06-09,28.15,28.15,28.15,28.15,2360000,28.15
-1954-06-08,28.34,28.34,28.34,28.34,2540000,28.34
-1954-06-07,28.99,28.99,28.99,28.99,1520000,28.99
-1954-06-04,29.10,29.10,29.10,29.10,1720000,29.10
-1954-06-03,29.15,29.15,29.15,29.15,1810000,29.15
-1954-06-02,29.16,29.16,29.16,29.16,1930000,29.16
-1954-06-01,29.19,29.19,29.19,29.19,1850000,29.19
-1954-05-28,29.19,29.19,29.19,29.19,1940000,29.19
-1954-05-27,29.05,29.05,29.05,29.05,2230000,29.05
-1954-05-26,29.17,29.17,29.17,29.17,2180000,29.17
-1954-05-25,28.93,28.93,28.93,28.93,2050000,28.93
-1954-05-24,29.00,29.00,29.00,29.00,2330000,29.00
-1954-05-21,28.99,28.99,28.99,28.99,2620000,28.99
-1954-05-20,28.82,28.82,28.82,28.82,2070000,28.82
-1954-05-19,28.72,28.72,28.72,28.72,2170000,28.72
-1954-05-18,28.85,28.85,28.85,28.85,2250000,28.85
-1954-05-17,28.84,28.84,28.84,28.84,2040000,28.84
-1954-05-14,28.80,28.80,28.80,28.80,1970000,28.80
-1954-05-13,28.56,28.56,28.56,28.56,2340000,28.56
-1954-05-12,28.72,28.72,28.72,28.72,2210000,28.72
-1954-05-11,28.49,28.49,28.49,28.49,1770000,28.49
-1954-05-10,28.62,28.62,28.62,28.62,1800000,28.62
-1954-05-07,28.65,28.65,28.65,28.65,2070000,28.65
-1954-05-06,28.51,28.51,28.51,28.51,1980000,28.51
-1954-05-05,28.29,28.29,28.29,28.29,2020000,28.29
-1954-05-04,28.28,28.28,28.28,28.28,1990000,28.28
-1954-05-03,28.21,28.21,28.21,28.21,1870000,28.21
-1954-04-30,28.26,28.26,28.26,28.26,2450000,28.26
-1954-04-29,28.18,28.18,28.18,28.18,2150000,28.18
-1954-04-28,27.76,27.76,27.76,27.76,2120000,27.76
-1954-04-27,27.71,27.71,27.71,27.71,1970000,27.71
-1954-04-26,27.88,27.88,27.88,27.88,2150000,27.88
-1954-04-23,27.78,27.78,27.78,27.78,1990000,27.78
-1954-04-22,27.68,27.68,27.68,27.68,1750000,27.68
-1954-04-21,27.64,27.64,27.64,27.64,1870000,27.64
-1954-04-20,27.75,27.75,27.75,27.75,1860000,27.75
-1954-04-19,27.76,27.76,27.76,27.76,2430000,27.76
-1954-04-15,27.94,27.94,27.94,27.94,2200000,27.94
-1954-04-14,27.85,27.85,27.85,27.85,2330000,27.85
-1954-04-13,27.64,27.64,27.64,27.64,2020000,27.64
-1954-04-12,27.57,27.57,27.57,27.57,1790000,27.57
-1954-04-09,27.38,27.38,27.38,27.38,2360000,27.38
-1954-04-08,27.38,27.38,27.38,27.38,2300000,27.38
-1954-04-07,27.11,27.11,27.11,27.11,1830000,27.11
-1954-04-06,27.01,27.01,27.01,27.01,2120000,27.01
-1954-04-05,27.26,27.26,27.26,27.26,1710000,27.26
-1954-04-02,27.21,27.21,27.21,27.21,1830000,27.21
-1954-04-01,27.17,27.17,27.17,27.17,2270000,27.17
-1954-03-31,26.94,26.94,26.94,26.94,2690000,26.94
-1954-03-30,26.69,26.69,26.69,26.69,2130000,26.69
-1954-03-29,26.66,26.66,26.66,26.66,1870000,26.66
-1954-03-26,26.56,26.56,26.56,26.56,1550000,26.56
-1954-03-25,26.42,26.42,26.42,26.42,1720000,26.42
-1954-03-24,26.47,26.47,26.47,26.47,1900000,26.47
-1954-03-23,26.60,26.60,26.60,26.60,2180000,26.60
-1954-03-22,26.79,26.79,26.79,26.79,1800000,26.79
-1954-03-19,26.81,26.81,26.81,26.81,1930000,26.81
-1954-03-18,26.73,26.73,26.73,26.73,2020000,26.73
-1954-03-17,26.62,26.62,26.62,26.62,1740000,26.62
-1954-03-16,26.56,26.56,26.56,26.56,1540000,26.56
-1954-03-15,26.57,26.57,26.57,26.57,1680000,26.57
-1954-03-12,26.69,26.69,26.69,26.69,1980000,26.69
-1954-03-11,26.69,26.69,26.69,26.69,2050000,26.69
-1954-03-10,26.57,26.57,26.57,26.57,1870000,26.57
-1954-03-09,26.51,26.51,26.51,26.51,1630000,26.51
-1954-03-08,26.45,26.45,26.45,26.45,1650000,26.45
-1954-03-05,26.52,26.52,26.52,26.52,2030000,26.52
-1954-03-04,26.41,26.41,26.41,26.41,1830000,26.41
-1954-03-03,26.32,26.32,26.32,26.32,2240000,26.32
-1954-03-02,26.32,26.32,26.32,26.32,1980000,26.32
-1954-03-01,26.25,26.25,26.25,26.25,2040000,26.25
-1954-02-26,26.15,26.15,26.15,26.15,1910000,26.15
-1954-02-25,25.91,25.91,25.91,25.91,1470000,25.91
-1954-02-24,25.83,25.83,25.83,25.83,1350000,25.83
-1954-02-23,25.83,25.83,25.83,25.83,1470000,25.83
-1954-02-19,25.92,25.92,25.92,25.92,1510000,25.92
-1954-02-18,25.86,25.86,25.86,25.86,1500000,25.86
-1954-02-17,25.86,25.86,25.86,25.86,1740000,25.86
-1954-02-16,25.81,25.81,25.81,25.81,1870000,25.81
-1954-02-15,26.04,26.04,26.04,26.04,2080000,26.04
-1954-02-12,26.12,26.12,26.12,26.12,1730000,26.12
-1954-02-11,26.06,26.06,26.06,26.06,1860000,26.06
-1954-02-10,26.14,26.14,26.14,26.14,1790000,26.14
-1954-02-09,26.17,26.17,26.17,26.17,1880000,26.17
-1954-02-08,26.23,26.23,26.23,26.23,2180000,26.23
-1954-02-05,26.30,26.30,26.30,26.30,2030000,26.30
-1954-02-04,26.20,26.20,26.20,26.20,2040000,26.20
-1954-02-03,26.01,26.01,26.01,26.01,1690000,26.01
-1954-02-02,25.92,25.92,25.92,25.92,1420000,25.92
-1954-02-01,25.99,25.99,25.99,25.99,1740000,25.99
-1954-01-29,26.08,26.08,26.08,26.08,1950000,26.08
-1954-01-28,26.02,26.02,26.02,26.02,1730000,26.02
-1954-01-27,26.01,26.01,26.01,26.01,2020000,26.01
-1954-01-26,26.09,26.09,26.09,26.09,2120000,26.09
-1954-01-25,25.93,25.93,25.93,25.93,1860000,25.93
-1954-01-22,25.85,25.85,25.85,25.85,1890000,25.85
-1954-01-21,25.79,25.79,25.79,25.79,1780000,25.79
-1954-01-20,25.75,25.75,25.75,25.75,1960000,25.75
-1954-01-19,25.68,25.68,25.68,25.68,1840000,25.68
-1954-01-18,25.43,25.43,25.43,25.43,1580000,25.43
-1954-01-15,25.43,25.43,25.43,25.43,2180000,25.43
-1954-01-14,25.19,25.19,25.19,25.19,1530000,25.19
-1954-01-13,25.07,25.07,25.07,25.07,1420000,25.07
-1954-01-12,24.93,24.93,24.93,24.93,1250000,24.93
-1954-01-11,24.80,24.80,24.80,24.80,1220000,24.80
-1954-01-08,24.93,24.93,24.93,24.93,1260000,24.93
-1954-01-07,25.06,25.06,25.06,25.06,1540000,25.06
-1954-01-06,25.14,25.14,25.14,25.14,1460000,25.14
-1954-01-05,25.10,25.10,25.10,25.10,1520000,25.10
-1954-01-04,24.95,24.95,24.95,24.95,1310000,24.95
-1953-12-31,24.81,24.81,24.81,24.81,2490000,24.81
-1953-12-30,24.76,24.76,24.76,24.76,2050000,24.76
-1953-12-29,24.55,24.55,24.55,24.55,2140000,24.55
-1953-12-28,24.71,24.71,24.71,24.71,1570000,24.71
-1953-12-24,24.80,24.80,24.80,24.80,1270000,24.80
-1953-12-23,24.69,24.69,24.69,24.69,1570000,24.69
-1953-12-22,24.76,24.76,24.76,24.76,1720000,24.76
-1953-12-21,24.95,24.95,24.95,24.95,1690000,24.95
-1953-12-18,24.99,24.99,24.99,24.99,1550000,24.99
-1953-12-17,24.94,24.94,24.94,24.94,1600000,24.94
-1953-12-16,24.96,24.96,24.96,24.96,1880000,24.96
-1953-12-15,24.71,24.71,24.71,24.71,1450000,24.71
-1953-12-14,24.69,24.69,24.69,24.69,1540000,24.69
-1953-12-11,24.76,24.76,24.76,24.76,1440000,24.76
-1953-12-10,24.78,24.78,24.78,24.78,1420000,24.78
-1953-12-09,24.84,24.84,24.84,24.84,1410000,24.84
-1953-12-08,24.87,24.87,24.87,24.87,1390000,24.87
-1953-12-07,24.95,24.95,24.95,24.95,1410000,24.95
-1953-12-04,24.98,24.98,24.98,24.98,1390000,24.98
-1953-12-03,24.97,24.97,24.97,24.97,1740000,24.97
-1953-12-02,24.95,24.95,24.95,24.95,1850000,24.95
-1953-12-01,24.78,24.78,24.78,24.78,1580000,24.78
-1953-11-30,24.76,24.76,24.76,24.76,1960000,24.76
-1953-11-27,24.66,24.66,24.66,24.66,1600000,24.66
-1953-11-25,24.52,24.52,24.52,24.52,1540000,24.52
-1953-11-24,24.50,24.50,24.50,24.50,1470000,24.50
-1953-11-23,24.36,24.36,24.36,24.36,1410000,24.36
-1953-11-20,24.44,24.44,24.44,24.44,1300000,24.44
-1953-11-19,24.40,24.40,24.40,24.40,1420000,24.40
-1953-11-18,24.29,24.29,24.29,24.29,1250000,24.29
-1953-11-17,24.25,24.25,24.25,24.25,1250000,24.25
-1953-11-16,24.38,24.38,24.38,24.38,1490000,24.38
-1953-11-13,24.54,24.54,24.54,24.54,1540000,24.54
-1953-11-12,24.46,24.46,24.46,24.46,1390000,24.46
-1953-11-10,24.37,24.37,24.37,24.37,1340000,24.37
-1953-11-09,24.66,24.66,24.66,24.66,1440000,24.66
-1953-11-06,24.61,24.61,24.61,24.61,1700000,24.61
-1953-11-05,24.64,24.64,24.64,24.64,1720000,24.64
-1953-11-04,24.51,24.51,24.51,24.51,1480000,24.51
-1953-11-02,24.66,24.66,24.66,24.66,1340000,24.66
-1953-10-30,24.54,24.54,24.54,24.54,1400000,24.54
-1953-10-29,24.58,24.58,24.58,24.58,1610000,24.58
-1953-10-28,24.29,24.29,24.29,24.29,1260000,24.29
-1953-10-27,24.26,24.26,24.26,24.26,1170000,24.26
-1953-10-26,24.31,24.31,24.31,24.31,1340000,24.31
-1953-10-23,24.35,24.35,24.35,24.35,1330000,24.35
-1953-10-22,24.30,24.30,24.30,24.30,1330000,24.30
-1953-10-21,24.19,24.19,24.19,24.19,1320000,24.19
-1953-10-20,24.17,24.17,24.17,24.17,1280000,24.17
-1953-10-19,24.16,24.16,24.16,24.16,1190000,24.16
-1953-10-16,24.14,24.14,24.14,24.14,1620000,24.14
-1953-10-15,23.95,23.95,23.95,23.95,1710000,23.95
-1953-10-14,23.68,23.68,23.68,23.68,1290000,23.68
-1953-10-13,23.57,23.57,23.57,23.57,1130000,23.57
-1953-10-09,23.66,23.66,23.66,23.66,900000,23.66
-1953-10-08,23.62,23.62,23.62,23.62,960000,23.62
-1953-10-07,23.58,23.58,23.58,23.58,1010000,23.58
-1953-10-06,23.39,23.39,23.39,23.39,1100000,23.39
-1953-10-05,23.48,23.48,23.48,23.48,930000,23.48
-1953-10-02,23.59,23.59,23.59,23.59,890000,23.59
-1953-10-01,23.49,23.49,23.49,23.49,940000,23.49
-1953-09-30,23.35,23.35,23.35,23.35,940000,23.35
-1953-09-29,23.49,23.49,23.49,23.49,1170000,23.49
-1953-09-28,23.45,23.45,23.45,23.45,1150000,23.45
-1953-09-25,23.30,23.30,23.30,23.30,910000,23.30
-1953-09-24,23.24,23.24,23.24,23.24,1020000,23.24
-1953-09-23,23.23,23.23,23.23,23.23,1240000,23.23
-1953-09-22,23.20,23.20,23.20,23.20,1300000,23.20
-1953-09-21,22.88,22.88,22.88,22.88,1070000,22.88
-1953-09-18,22.95,22.95,22.95,22.95,1190000,22.95
-1953-09-17,23.07,23.07,23.07,23.07,1290000,23.07
-1953-09-16,23.01,23.01,23.01,23.01,1570000,23.01
-1953-09-15,22.90,22.90,22.90,22.90,2850000,22.90
-1953-09-14,22.71,22.71,22.71,22.71,2550000,22.71
-1953-09-11,23.14,23.14,23.14,23.14,1930000,23.14
-1953-09-10,23.41,23.41,23.41,23.41,1010000,23.41
-1953-09-09,23.65,23.65,23.65,23.65,860000,23.65
-1953-09-08,23.61,23.61,23.61,23.61,740000,23.61
-1953-09-04,23.57,23.57,23.57,23.57,770000,23.57
-1953-09-03,23.51,23.51,23.51,23.51,900000,23.51
-1953-09-02,23.56,23.56,23.56,23.56,1110000,23.56
-1953-09-01,23.42,23.42,23.42,23.42,1580000,23.42
-1953-08-31,23.32,23.32,23.32,23.32,2190000,23.32
-1953-08-28,23.74,23.74,23.74,23.74,1060000,23.74
-1953-08-27,23.79,23.79,23.79,23.79,1290000,23.79
-1953-08-26,23.86,23.86,23.86,23.86,1060000,23.86
-1953-08-25,23.93,23.93,23.93,23.93,1470000,23.93
-1953-08-24,24.09,24.09,24.09,24.09,1320000,24.09
-1953-08-21,24.35,24.35,24.35,24.35,850000,24.35
-1953-08-20,24.29,24.29,24.29,24.29,860000,24.29
-1953-08-19,24.31,24.31,24.31,24.31,1400000,24.31
-1953-08-18,24.46,24.46,24.46,24.46,1030000,24.46
-1953-08-17,24.56,24.56,24.56,24.56,910000,24.56
-1953-08-14,24.62,24.62,24.62,24.62,1000000,24.62
-1953-08-13,24.73,24.73,24.73,24.73,1040000,24.73
-1953-08-12,24.78,24.78,24.78,24.78,990000,24.78
-1953-08-11,24.72,24.72,24.72,24.72,940000,24.72
-1953-08-10,24.75,24.75,24.75,24.75,1090000,24.75
-1953-08-07,24.78,24.78,24.78,24.78,950000,24.78
-1953-08-06,24.80,24.80,24.80,24.80,1200000,24.80
-1953-08-05,24.68,24.68,24.68,24.68,1080000,24.68
-1953-08-04,24.78,24.78,24.78,24.78,1000000,24.78
-1953-08-03,24.84,24.84,24.84,24.84,1160000,24.84
-1953-07-31,24.75,24.75,24.75,24.75,1320000,24.75
-1953-07-30,24.49,24.49,24.49,24.49,1200000,24.49
-1953-07-29,24.26,24.26,24.26,24.26,1000000,24.26
-1953-07-28,24.11,24.11,24.11,24.11,1080000,24.11
-1953-07-27,24.07,24.07,24.07,24.07,1210000,24.07
-1953-07-24,24.23,24.23,24.23,24.23,890000,24.23
-1953-07-23,24.23,24.23,24.23,24.23,1000000,24.23
-1953-07-22,24.19,24.19,24.19,24.19,900000,24.19
-1953-07-21,24.16,24.16,24.16,24.16,850000,24.16
-1953-07-20,24.22,24.22,24.22,24.22,830000,24.22
-1953-07-17,24.35,24.35,24.35,24.35,840000,24.35
-1953-07-16,24.18,24.18,24.18,24.18,790000,24.18
-1953-07-15,24.15,24.15,24.15,24.15,840000,24.15
-1953-07-14,24.08,24.08,24.08,24.08,1030000,24.08
-1953-07-13,24.17,24.17,24.17,24.17,1120000,24.17
-1953-07-10,24.41,24.41,24.41,24.41,860000,24.41
-1953-07-09,24.43,24.43,24.43,24.43,910000,24.43
-1953-07-08,24.50,24.50,24.50,24.50,950000,24.50
-1953-07-07,24.51,24.51,24.51,24.51,1030000,24.51
-1953-07-06,24.38,24.38,24.38,24.38,820000,24.38
-1953-07-03,24.36,24.36,24.36,24.36,830000,24.36
-1953-07-02,24.31,24.31,24.31,24.31,1030000,24.31
-1953-07-01,24.24,24.24,24.24,24.24,910000,24.24
-1953-06-30,24.14,24.14,24.14,24.14,820000,24.14
-1953-06-29,24.14,24.14,24.14,24.14,800000,24.14
-1953-06-26,24.21,24.21,24.21,24.21,830000,24.21
-1953-06-25,24.19,24.19,24.19,24.19,1160000,24.19
-1953-06-24,24.09,24.09,24.09,24.09,1030000,24.09
-1953-06-23,24.12,24.12,24.12,24.12,1050000,24.12
-1953-06-22,23.96,23.96,23.96,23.96,1030000,23.96
-1953-06-19,23.84,23.84,23.84,23.84,890000,23.84
-1953-06-18,23.84,23.84,23.84,23.84,1010000,23.84
-1953-06-17,23.85,23.85,23.85,23.85,1150000,23.85
-1953-06-16,23.55,23.55,23.55,23.55,1370000,23.55
-1953-06-15,23.62,23.62,23.62,23.62,1090000,23.62
-1953-06-12,23.82,23.82,23.82,23.82,920000,23.82
-1953-06-11,23.75,23.75,23.75,23.75,1220000,23.75
-1953-06-10,23.54,23.54,23.54,23.54,1960000,23.54
-1953-06-09,23.60,23.60,23.60,23.60,2200000,23.60
-1953-06-08,24.01,24.01,24.01,24.01,1000000,24.01
-1953-06-05,24.09,24.09,24.09,24.09,1160000,24.09
-1953-06-04,24.03,24.03,24.03,24.03,1400000,24.03
-1953-06-03,24.18,24.18,24.18,24.18,1050000,24.18
-1953-06-02,24.22,24.22,24.22,24.22,1450000,24.22
-1953-06-01,24.15,24.15,24.15,24.15,1490000,24.15
-1953-05-29,24.54,24.54,24.54,24.54,920000,24.54
-1953-05-28,24.46,24.46,24.46,24.46,1240000,24.46
-1953-05-27,24.64,24.64,24.64,24.64,1330000,24.64
-1953-05-26,24.87,24.87,24.87,24.87,1160000,24.87
-1953-05-25,24.99,24.99,24.99,24.99,1180000,24.99
-1953-05-22,25.03,25.03,25.03,25.03,1350000,25.03
-1953-05-21,25.06,25.06,25.06,25.06,1590000,25.06
-1953-05-20,24.93,24.93,24.93,24.93,1690000,24.93
-1953-05-19,24.70,24.70,24.70,24.70,1120000,24.70
-1953-05-18,24.75,24.75,24.75,24.75,1080000,24.75
-1953-05-15,24.84,24.84,24.84,24.84,1200000,24.84
-1953-05-14,24.85,24.85,24.85,24.85,1210000,24.85
-1953-05-13,24.71,24.71,24.71,24.71,1120000,24.71
-1953-05-12,24.74,24.74,24.74,24.74,1080000,24.74
-1953-05-11,24.91,24.91,24.91,24.91,1010000,24.91
-1953-05-08,24.90,24.90,24.90,24.90,1220000,24.90
-1953-05-07,24.90,24.90,24.90,24.90,1110000,24.90
-1953-05-06,25.00,25.00,25.00,25.00,1110000,25.00
-1953-05-05,25.03,25.03,25.03,25.03,1290000,25.03
-1953-05-04,25.00,25.00,25.00,25.00,1520000,25.00
-1953-05-01,24.73,24.73,24.73,24.73,1200000,24.73
-1953-04-30,24.62,24.62,24.62,24.62,1140000,24.62
-1953-04-29,24.68,24.68,24.68,24.68,1310000,24.68
-1953-04-28,24.52,24.52,24.52,24.52,1330000,24.52
-1953-04-27,24.34,24.34,24.34,24.34,1400000,24.34
-1953-04-24,24.20,24.20,24.20,24.20,1780000,24.20
-1953-04-23,24.19,24.19,24.19,24.19,1920000,24.19
-1953-04-22,24.46,24.46,24.46,24.46,1390000,24.46
-1953-04-21,24.67,24.67,24.67,24.67,1250000,24.67
-1953-04-20,24.73,24.73,24.73,24.73,1520000,24.73
-1953-04-17,24.62,24.62,24.62,24.62,1430000,24.62
-1953-04-16,24.91,24.91,24.91,24.91,1310000,24.91
-1953-04-15,24.96,24.96,24.96,24.96,1580000,24.96
-1953-04-14,24.86,24.86,24.86,24.86,1480000,24.86
-1953-04-13,24.77,24.77,24.77,24.77,1280000,24.77
-1953-04-10,24.82,24.82,24.82,24.82,1360000,24.82
-1953-04-09,24.88,24.88,24.88,24.88,1520000,24.88
-1953-04-08,24.93,24.93,24.93,24.93,1860000,24.93
-1953-04-07,24.71,24.71,24.71,24.71,2500000,24.71
-1953-04-06,24.61,24.61,24.61,24.61,3050000,24.61
-1953-04-02,25.23,25.23,25.23,25.23,1720000,25.23
-1953-04-01,25.25,25.25,25.25,25.25,2240000,25.25
-1953-03-31,25.29,25.29,25.29,25.29,3120000,25.29
-1953-03-30,25.61,25.61,25.61,25.61,2740000,25.61
-1953-03-27,25.99,25.99,25.99,25.99,1640000,25.99
-1953-03-26,25.95,25.95,25.95,25.95,2000000,25.95
-1953-03-25,26.10,26.10,26.10,26.10,2320000,26.10
-1953-03-24,26.17,26.17,26.17,26.17,1970000,26.17
-1953-03-23,26.02,26.02,26.02,26.02,1750000,26.02
-1953-03-20,26.18,26.18,26.18,26.18,1730000,26.18
-1953-03-19,26.22,26.22,26.22,26.22,1840000,26.22
-1953-03-18,26.24,26.24,26.24,26.24,2110000,26.24
-1953-03-17,26.33,26.33,26.33,26.33,2110000,26.33
-1953-03-16,26.22,26.22,26.22,26.22,1770000,26.22
-1953-03-13,26.18,26.18,26.18,26.18,1760000,26.18
-1953-03-12,26.13,26.13,26.13,26.13,1780000,26.13
-1953-03-11,26.12,26.12,26.12,26.12,1890000,26.12
-1953-03-10,25.91,25.91,25.91,25.91,1530000,25.91
-1953-03-09,25.83,25.83,25.83,25.83,1600000,25.83
-1953-03-06,25.84,25.84,25.84,25.84,1690000,25.84
-1953-03-05,25.79,25.79,25.79,25.79,1540000,25.79
-1953-03-04,25.78,25.78,25.78,25.78,2010000,25.78
-1953-03-03,26.00,26.00,26.00,26.00,1850000,26.00
-1953-03-02,25.93,25.93,25.93,25.93,1760000,25.93
-1953-02-27,25.90,25.90,25.90,25.90,1990000,25.90
-1953-02-26,25.95,25.95,25.95,25.95,2290000,25.95
-1953-02-25,25.91,25.91,25.91,25.91,2360000,25.91
-1953-02-24,25.75,25.75,25.75,25.75,2300000,25.75
-1953-02-20,25.63,25.63,25.63,25.63,1400000,25.63
-1953-02-19,25.57,25.57,25.57,25.57,1390000,25.57
-1953-02-18,25.48,25.48,25.48,25.48,1220000,25.48
-1953-02-17,25.50,25.50,25.50,25.50,1290000,25.50
-1953-02-16,25.65,25.65,25.65,25.65,1330000,25.65
-1953-02-13,25.74,25.74,25.74,25.74,1350000,25.74
-1953-02-11,25.64,25.64,25.64,25.64,1240000,25.64
-1953-02-10,25.62,25.62,25.62,25.62,1350000,25.62
-1953-02-09,25.69,25.69,25.69,25.69,1780000,25.69
-1953-02-06,26.51,26.51,26.51,26.51,1870000,26.51
-1953-02-05,26.15,26.15,26.15,26.15,1900000,26.15
-1953-02-04,26.42,26.42,26.42,26.42,1660000,26.42
-1953-02-03,26.54,26.54,26.54,26.54,1560000,26.54
-1953-02-02,26.51,26.51,26.51,26.51,1890000,26.51
-1953-01-30,26.38,26.38,26.38,26.38,1760000,26.38
-1953-01-29,26.20,26.20,26.20,26.20,1830000,26.20
-1953-01-28,26.13,26.13,26.13,26.13,1640000,26.13
-1953-01-27,26.05,26.05,26.05,26.05,1550000,26.05
-1953-01-26,26.02,26.02,26.02,26.02,1420000,26.02
-1953-01-23,26.07,26.07,26.07,26.07,1340000,26.07
-1953-01-22,26.12,26.12,26.12,26.12,1380000,26.12
-1953-01-21,26.09,26.09,26.09,26.09,1300000,26.09
-1953-01-20,26.14,26.14,26.14,26.14,1490000,26.14
-1953-01-19,26.01,26.01,26.01,26.01,1360000,26.01
-1953-01-16,26.02,26.02,26.02,26.02,1710000,26.02
-1953-01-15,26.13,26.13,26.13,26.13,1450000,26.13
-1953-01-14,26.08,26.08,26.08,26.08,1370000,26.08
-1953-01-13,26.02,26.02,26.02,26.02,1680000,26.02
-1953-01-12,25.86,25.86,25.86,25.86,1500000,25.86
-1953-01-09,26.08,26.08,26.08,26.08,2080000,26.08
-1953-01-08,26.33,26.33,26.33,26.33,1780000,26.33
-1953-01-07,26.37,26.37,26.37,26.37,1760000,26.37
-1953-01-06,26.48,26.48,26.48,26.48,2080000,26.48
-1953-01-05,26.66,26.66,26.66,26.66,2130000,26.66
-1953-01-02,26.54,26.54,26.54,26.54,1450000,26.54
-1952-12-31,26.57,26.57,26.57,26.57,2050000,26.57
-1952-12-30,26.59,26.59,26.59,26.59,2070000,26.59
-1952-12-29,26.40,26.40,26.40,26.40,1820000,26.40
-1952-12-26,26.25,26.25,26.25,26.25,1290000,26.25
-1952-12-24,26.21,26.21,26.21,26.21,1510000,26.21
-1952-12-23,26.19,26.19,26.19,26.19,2100000,26.19
-1952-12-22,26.30,26.30,26.30,26.30,2100000,26.30
-1952-12-19,26.15,26.15,26.15,26.15,2050000,26.15
-1952-12-18,26.03,26.03,26.03,26.03,1860000,26.03
-1952-12-17,26.04,26.04,26.04,26.04,1700000,26.04
-1952-12-16,26.07,26.07,26.07,26.07,1980000,26.07
-1952-12-15,26.04,26.04,26.04,26.04,1940000,26.04
-1952-12-12,26.04,26.04,26.04,26.04,2030000,26.04
-1952-12-11,25.96,25.96,25.96,25.96,1790000,25.96
-1952-12-10,25.98,25.98,25.98,25.98,1880000,25.98
-1952-12-09,25.93,25.93,25.93,25.93,2120000,25.93
-1952-12-08,25.76,25.76,25.76,25.76,1790000,25.76
-1952-12-05,25.62,25.62,25.62,25.62,1510000,25.62
-1952-12-04,25.61,25.61,25.61,25.61,1570000,25.61
-1952-12-03,25.71,25.71,25.71,25.71,1610000,25.71
-1952-12-02,25.74,25.74,25.74,25.74,1610000,25.74
-1952-12-01,25.68,25.68,25.68,25.68,2100000,25.68
-1952-11-28,25.66,25.66,25.66,25.66,2160000,25.66
-1952-11-26,25.52,25.52,25.52,25.52,1920000,25.52
-1952-11-25,25.36,25.36,25.36,25.36,1930000,25.36
-1952-11-24,25.42,25.42,25.42,25.42,2100000,25.42
-1952-11-21,25.27,25.27,25.27,25.27,1760000,25.27
-1952-11-20,25.28,25.28,25.28,25.28,1740000,25.28
-1952-11-19,25.33,25.33,25.33,25.33,2350000,25.33
-1952-11-18,25.16,25.16,25.16,25.16,2250000,25.16
-1952-11-17,24.80,24.80,24.80,24.80,1490000,24.80
-1952-11-14,24.75,24.75,24.75,24.75,1700000,24.75
-1952-11-13,24.71,24.71,24.71,24.71,1330000,24.71
-1952-11-12,24.65,24.65,24.65,24.65,1490000,24.65
-1952-11-10,24.77,24.77,24.77,24.77,1360000,24.77
-1952-11-07,24.78,24.78,24.78,24.78,1540000,24.78
-1952-11-06,24.77,24.77,24.77,24.77,1390000,24.77
-1952-11-05,24.67,24.67,24.67,24.67,2030000,24.67
-1952-11-03,24.60,24.60,24.60,24.60,1670000,24.60
-1952-10-31,24.52,24.52,24.52,24.52,1760000,24.52
-1952-10-30,24.15,24.15,24.15,24.15,1090000,24.15
-1952-10-29,24.15,24.15,24.15,24.15,1020000,24.15
-1952-10-28,24.13,24.13,24.13,24.13,1080000,24.13
-1952-10-27,24.09,24.09,24.09,24.09,1000000,24.09
-1952-10-24,24.03,24.03,24.03,24.03,1060000,24.03
-1952-10-23,23.87,23.87,23.87,23.87,1260000,23.87
-1952-10-22,23.80,23.80,23.80,23.80,1160000,23.80
-1952-10-21,24.07,24.07,24.07,24.07,990000,24.07
-1952-10-20,24.13,24.13,24.13,24.13,1050000,24.13
-1952-10-17,24.20,24.20,24.20,24.20,1360000,24.20
-1952-10-16,23.91,23.91,23.91,23.91,1730000,23.91
-1952-10-15,24.06,24.06,24.06,24.06,1730000,24.06
-1952-10-14,24.48,24.48,24.48,24.48,1130000,24.48
-1952-10-10,24.55,24.55,24.55,24.55,1070000,24.55
-1952-10-09,24.57,24.57,24.57,24.57,1090000,24.57
-1952-10-08,24.58,24.58,24.58,24.58,1260000,24.58
-1952-10-07,24.40,24.40,24.40,24.40,950000,24.40
-1952-10-06,24.44,24.44,24.44,24.44,1070000,24.44
-1952-10-03,24.50,24.50,24.50,24.50,980000,24.50
-1952-10-02,24.52,24.52,24.52,24.52,1040000,24.52
-1952-10-01,24.48,24.48,24.48,24.48,1060000,24.48
-1952-09-30,24.54,24.54,24.54,24.54,1120000,24.54
-1952-09-29,24.68,24.68,24.68,24.68,970000,24.68
-1952-09-26,24.73,24.73,24.73,24.73,1180000,24.73
-1952-09-25,24.81,24.81,24.81,24.81,1210000,24.81
-1952-09-24,24.79,24.79,24.79,24.79,1390000,24.79
-1952-09-23,24.70,24.70,24.70,24.70,1240000,24.70
-1952-09-22,24.59,24.59,24.59,24.59,1160000,24.59
-1952-09-19,24.57,24.57,24.57,24.57,1150000,24.57
-1952-09-18,24.51,24.51,24.51,24.51,1030000,24.51
-1952-09-17,24.58,24.58,24.58,24.58,1000000,24.58
-1952-09-16,24.53,24.53,24.53,24.53,1140000,24.53
-1952-09-15,24.45,24.45,24.45,24.45,1100000,24.45
-1952-09-12,24.71,24.71,24.71,24.71,1040000,24.71
-1952-09-11,24.72,24.72,24.72,24.72,970000,24.72
-1952-09-10,24.69,24.69,24.69,24.69,1590000,24.69
-1952-09-09,24.86,24.86,24.86,24.86,1310000,24.86
-1952-09-08,25.11,25.11,25.11,25.11,1170000,25.11
-1952-09-05,25.21,25.21,25.21,25.21,1040000,25.21
-1952-09-04,25.24,25.24,25.24,25.24,1120000,25.24
-1952-09-03,25.25,25.25,25.25,25.25,1200000,25.25
-1952-09-02,25.15,25.15,25.15,25.15,970000,25.15
-1952-08-29,25.03,25.03,25.03,25.03,890000,25.03
-1952-08-28,24.97,24.97,24.97,24.97,980000,24.97
-1952-08-27,24.94,24.94,24.94,24.94,930000,24.94
-1952-08-26,24.83,24.83,24.83,24.83,890000,24.83
-1952-08-25,24.87,24.87,24.87,24.87,840000,24.87
-1952-08-22,24.99,24.99,24.99,24.99,910000,24.99
-1952-08-21,24.98,24.98,24.98,24.98,800000,24.98
-1952-08-20,24.95,24.95,24.95,24.95,960000,24.95
-1952-08-19,24.89,24.89,24.89,24.89,980000,24.89
-1952-08-18,24.94,24.94,24.94,24.94,1090000,24.94
-1952-08-15,25.20,25.20,25.20,25.20,890000,25.20
-1952-08-14,25.28,25.28,25.28,25.28,930000,25.28
-1952-08-13,25.28,25.28,25.28,25.28,990000,25.28
-1952-08-12,25.31,25.31,25.31,25.31,1110000,25.31
-1952-08-11,25.52,25.52,25.52,25.52,1160000,25.52
-1952-08-08,25.55,25.55,25.55,25.55,1170000,25.55
-1952-08-07,25.52,25.52,25.52,25.52,1180000,25.52
-1952-08-06,25.44,25.44,25.44,25.44,1140000,25.44
-1952-08-05,25.46,25.46,25.46,25.46,1050000,25.46
-1952-08-04,25.43,25.43,25.43,25.43,950000,25.43
-1952-08-01,25.45,25.45,25.45,25.45,1050000,25.45
-1952-07-31,25.40,25.40,25.40,25.40,1230000,25.40
-1952-07-30,25.37,25.37,25.37,25.37,1240000,25.37
-1952-07-29,25.26,25.26,25.26,25.26,1010000,25.26
-1952-07-28,25.20,25.20,25.20,25.20,1030000,25.20
-1952-07-25,25.16,25.16,25.16,25.16,1130000,25.16
-1952-07-24,25.24,25.24,25.24,25.24,1270000,25.24
-1952-07-23,25.11,25.11,25.11,25.11,1020000,25.11
-1952-07-22,25.00,25.00,25.00,25.00,910000,25.00
-1952-07-21,24.95,24.95,24.95,24.95,780000,24.95
-1952-07-18,24.85,24.85,24.85,24.85,1020000,24.85
-1952-07-17,25.05,25.05,25.05,25.05,1010000,25.05
-1952-07-16,25.16,25.16,25.16,25.16,1120000,25.16
-1952-07-15,25.16,25.16,25.16,25.16,1220000,25.16
-1952-07-14,25.03,25.03,25.03,25.03,1090000,25.03
-1952-07-11,24.98,24.98,24.98,24.98,1040000,24.98
-1952-07-10,24.81,24.81,24.81,24.81,1010000,24.81
-1952-07-09,24.86,24.86,24.86,24.86,1120000,24.86
-1952-07-08,24.96,24.96,24.96,24.96,850000,24.96
-1952-07-07,24.97,24.97,24.97,24.97,1080000,24.97
-1952-07-03,25.05,25.05,25.05,25.05,1150000,25.05
-1952-07-02,25.06,25.06,25.06,25.06,1320000,25.06
-1952-07-01,25.12,25.12,25.12,25.12,1450000,25.12
-1952-06-30,24.96,24.96,24.96,24.96,1380000,24.96
-1952-06-27,24.83,24.83,24.83,24.83,1210000,24.83
-1952-06-26,24.75,24.75,24.75,24.75,1190000,24.75
-1952-06-25,24.66,24.66,24.66,24.66,1230000,24.66
-1952-06-24,24.60,24.60,24.60,24.60,1200000,24.60
-1952-06-23,24.56,24.56,24.56,24.56,1200000,24.56
-1952-06-20,24.59,24.59,24.59,24.59,1190000,24.59
-1952-06-19,24.51,24.51,24.51,24.51,1320000,24.51
-1952-06-18,24.43,24.43,24.43,24.43,1270000,24.43
-1952-06-17,24.33,24.33,24.33,24.33,920000,24.33
-1952-06-16,24.30,24.30,24.30,24.30,980000,24.30
-1952-06-13,24.37,24.37,24.37,24.37,1130000,24.37
-1952-06-12,24.31,24.31,24.31,24.31,1370000,24.31
-1952-06-11,24.31,24.31,24.31,24.31,1190000,24.31
-1952-06-10,24.23,24.23,24.23,24.23,1220000,24.23
-1952-06-09,24.37,24.37,24.37,24.37,1270000,24.37
-1952-06-06,24.26,24.26,24.26,24.26,1520000,24.26
-1952-06-05,24.10,24.10,24.10,24.10,1410000,24.10
-1952-06-04,23.95,23.95,23.95,23.95,1200000,23.95
-1952-06-03,23.78,23.78,23.78,23.78,940000,23.78
-1952-06-02,23.80,23.80,23.80,23.80,1190000,23.80
-1952-05-29,23.86,23.86,23.86,23.86,1100000,23.86
-1952-05-28,23.84,23.84,23.84,23.84,1130000,23.84
-1952-05-27,23.88,23.88,23.88,23.88,1040000,23.88
-1952-05-26,23.94,23.94,23.94,23.94,940000,23.94
-1952-05-23,23.89,23.89,23.89,23.89,1150000,23.89
-1952-05-22,23.91,23.91,23.91,23.91,1360000,23.91
-1952-05-21,23.78,23.78,23.78,23.78,1210000,23.78
-1952-05-20,23.74,23.74,23.74,23.74,1150000,23.74
-1952-05-19,23.61,23.61,23.61,23.61,780000,23.61
-1952-05-16,23.56,23.56,23.56,23.56,910000,23.56
-1952-05-15,23.60,23.60,23.60,23.60,1050000,23.60
-1952-05-14,23.68,23.68,23.68,23.68,950000,23.68
-1952-05-13,23.78,23.78,23.78,23.78,890000,23.78
-1952-05-12,23.75,23.75,23.75,23.75,800000,23.75
-1952-05-09,23.84,23.84,23.84,23.84,960000,23.84
-1952-05-08,23.86,23.86,23.86,23.86,1230000,23.86
-1952-05-07,23.81,23.81,23.81,23.81,1120000,23.81
-1952-05-06,23.67,23.67,23.67,23.67,1120000,23.67
-1952-05-05,23.66,23.66,23.66,23.66,860000,23.66
-1952-05-02,23.56,23.56,23.56,23.56,1300000,23.56
-1952-05-01,23.17,23.17,23.17,23.17,1400000,23.17
-1952-04-30,23.32,23.32,23.32,23.32,1000000,23.32
-1952-04-29,23.49,23.49,23.49,23.49,1170000,23.49
-1952-04-28,23.55,23.55,23.55,23.55,980000,23.55
-1952-04-25,23.54,23.54,23.54,23.54,1240000,23.54
-1952-04-24,23.43,23.43,23.43,23.43,1580000,23.43
-1952-04-23,23.48,23.48,23.48,23.48,1090000,23.48
-1952-04-22,23.58,23.58,23.58,23.58,1240000,23.58
-1952-04-21,23.69,23.69,23.69,23.69,1110000,23.69
-1952-04-18,23.50,23.50,23.50,23.50,1240000,23.50
-1952-04-17,23.41,23.41,23.41,23.41,1620000,23.41
-1952-04-16,23.58,23.58,23.58,23.58,1400000,23.58
-1952-04-15,23.65,23.65,23.65,23.65,1720000,23.65
-1952-04-14,23.95,23.95,23.95,23.95,1790000,23.95
-1952-04-10,24.11,24.11,24.11,24.11,1130000,24.11
-1952-04-09,23.94,23.94,23.94,23.94,980000,23.94
-1952-04-08,23.91,23.91,23.91,23.91,1090000,23.91
-1952-04-07,23.80,23.80,23.80,23.80,1230000,23.80
-1952-04-04,24.02,24.02,24.02,24.02,1190000,24.02
-1952-04-03,24.12,24.12,24.12,24.12,1280000,24.12
-1952-04-02,24.12,24.12,24.12,24.12,1260000,24.12
-1952-04-01,24.18,24.18,24.18,24.18,1720000,24.18
-1952-03-31,24.37,24.37,24.37,24.37,1680000,24.37
-1952-03-28,24.18,24.18,24.18,24.18,1560000,24.18
-1952-03-27,23.99,23.99,23.99,23.99,1370000,23.99
-1952-03-26,23.78,23.78,23.78,23.78,1030000,23.78
-1952-03-25,23.79,23.79,23.79,23.79,1060000,23.79
-1952-03-24,23.93,23.93,23.93,23.93,1040000,23.93
-1952-03-21,23.93,23.93,23.93,23.93,1290000,23.93
-1952-03-20,23.89,23.89,23.89,23.89,1240000,23.89
-1952-03-19,23.82,23.82,23.82,23.82,1090000,23.82
-1952-03-18,23.87,23.87,23.87,23.87,1170000,23.87
-1952-03-17,23.92,23.92,23.92,23.92,1150000,23.92
-1952-03-14,23.75,23.75,23.75,23.75,1350000,23.75
-1952-03-13,23.75,23.75,23.75,23.75,1270000,23.75
-1952-03-12,23.73,23.73,23.73,23.73,1310000,23.73
-1952-03-11,23.62,23.62,23.62,23.62,1210000,23.62
-1952-03-10,23.60,23.60,23.60,23.60,1170000,23.60
-1952-03-07,23.72,23.72,23.72,23.72,1410000,23.72
-1952-03-06,23.69,23.69,23.69,23.69,1210000,23.69
-1952-03-05,23.71,23.71,23.71,23.71,1380000,23.71
-1952-03-04,23.68,23.68,23.68,23.68,1570000,23.68
-1952-03-03,23.29,23.29,23.29,23.29,1020000,23.29
-1952-02-29,23.26,23.26,23.26,23.26,1000000,23.26
-1952-02-28,23.29,23.29,23.29,23.29,1150000,23.29
-1952-02-27,23.18,23.18,23.18,23.18,1260000,23.18
-1952-02-26,23.15,23.15,23.15,23.15,1080000,23.15
-1952-02-25,23.23,23.23,23.23,23.23,1200000,23.23
-1952-02-21,23.16,23.16,23.16,23.16,1360000,23.16
-1952-02-20,23.09,23.09,23.09,23.09,1970000,23.09
-1952-02-19,23.36,23.36,23.36,23.36,1630000,23.36
-1952-02-18,23.74,23.74,23.74,23.74,1140000,23.74
-1952-02-15,23.86,23.86,23.86,23.86,1200000,23.86
-1952-02-14,23.87,23.87,23.87,23.87,1340000,23.87
-1952-02-13,23.92,23.92,23.92,23.92,1300000,23.92
-1952-02-11,24.11,24.11,24.11,24.11,1140000,24.11
-1952-02-08,24.24,24.24,24.24,24.24,1350000,24.24
-1952-02-07,24.11,24.11,24.11,24.11,1170000,24.11
-1952-02-06,24.18,24.18,24.18,24.18,1310000,24.18
-1952-02-05,24.11,24.11,24.11,24.11,1590000,24.11
-1952-02-04,24.12,24.12,24.12,24.12,1640000,24.12
-1952-02-01,24.30,24.30,24.30,24.30,1350000,24.30
-1952-01-31,24.14,24.14,24.14,24.14,1810000,24.14
-1952-01-30,24.23,24.23,24.23,24.23,1880000,24.23
-1952-01-29,24.57,24.57,24.57,24.57,1730000,24.57
-1952-01-28,24.61,24.61,24.61,24.61,1590000,24.61
-1952-01-25,24.55,24.55,24.55,24.55,1650000,24.55
-1952-01-24,24.56,24.56,24.56,24.56,1570000,24.56
-1952-01-23,24.54,24.54,24.54,24.54,1680000,24.54
-1952-01-22,24.66,24.66,24.66,24.66,1920000,24.66
-1952-01-21,24.46,24.46,24.46,24.46,1730000,24.46
-1952-01-18,24.25,24.25,24.25,24.25,1740000,24.25
-1952-01-17,24.20,24.20,24.20,24.20,1590000,24.20
-1952-01-16,24.09,24.09,24.09,24.09,1430000,24.09
-1952-01-15,24.06,24.06,24.06,24.06,1340000,24.06
-1952-01-14,24.16,24.16,24.16,24.16,1510000,24.16
-1952-01-11,23.98,23.98,23.98,23.98,1760000,23.98
-1952-01-10,23.86,23.86,23.86,23.86,1520000,23.86
-1952-01-09,23.74,23.74,23.74,23.74,1370000,23.74
-1952-01-08,23.82,23.82,23.82,23.82,1390000,23.82
-1952-01-07,23.91,23.91,23.91,23.91,1540000,23.91
-1952-01-04,23.92,23.92,23.92,23.92,1480000,23.92
-1952-01-03,23.88,23.88,23.88,23.88,1220000,23.88
-1952-01-02,23.80,23.80,23.80,23.80,1070000,23.80
-1951-12-31,23.77,23.77,23.77,23.77,1440000,23.77
-1951-12-28,23.69,23.69,23.69,23.69,1470000,23.69
-1951-12-27,23.65,23.65,23.65,23.65,1460000,23.65
-1951-12-26,23.44,23.44,23.44,23.44,1520000,23.44
-1951-12-24,23.54,23.54,23.54,23.54,680000,23.54
-1951-12-21,23.51,23.51,23.51,23.51,1250000,23.51
-1951-12-20,23.57,23.57,23.57,23.57,1340000,23.57
-1951-12-19,23.57,23.57,23.57,23.57,1510000,23.57
-1951-12-18,23.49,23.49,23.49,23.49,1290000,23.49
-1951-12-17,23.41,23.41,23.41,23.41,1220000,23.41
-1951-12-14,23.37,23.37,23.37,23.37,1360000,23.37
-1951-12-13,23.39,23.39,23.39,23.39,1380000,23.39
-1951-12-12,23.37,23.37,23.37,23.37,1280000,23.37
-1951-12-11,23.30,23.30,23.30,23.30,1360000,23.30
-1951-12-10,23.42,23.42,23.42,23.42,1340000,23.42
-1951-12-07,23.38,23.38,23.38,23.38,1990000,23.38
-1951-12-06,23.34,23.34,23.34,23.34,1840000,23.34
-1951-12-05,23.07,23.07,23.07,23.07,1330000,23.07
-1951-12-04,23.14,23.14,23.14,23.14,1280000,23.14
-1951-12-03,23.01,23.01,23.01,23.01,1220000,23.01
-1951-11-30,22.88,22.88,22.88,22.88,1530000,22.88
-1951-11-29,22.67,22.67,22.67,22.67,1070000,22.67
-1951-11-28,22.61,22.61,22.61,22.61,1150000,22.61
-1951-11-27,22.66,22.66,22.66,22.66,1310000,22.66
-1951-11-26,22.43,22.43,22.43,22.43,1180000,22.43
-1951-11-23,22.40,22.40,22.40,22.40,1210000,22.40
-1951-11-21,22.64,22.64,22.64,22.64,1090000,22.64
-1951-11-20,22.68,22.68,22.68,22.68,1130000,22.68
-1951-11-19,22.73,22.73,22.73,22.73,1030000,22.73
-1951-11-16,22.82,22.82,22.82,22.82,1140000,22.82
-1951-11-15,22.84,22.84,22.84,22.84,1200000,22.84
-1951-11-14,22.85,22.85,22.85,22.85,1220000,22.85
-1951-11-13,22.79,22.79,22.79,22.79,1160000,22.79
-1951-11-09,22.75,22.75,22.75,22.75,1470000,22.75
-1951-11-08,22.47,22.47,22.47,22.47,1410000,22.47
-1951-11-07,22.49,22.49,22.49,22.49,1490000,22.49
-1951-11-05,22.82,22.82,22.82,22.82,1130000,22.82
-1951-11-02,22.93,22.93,22.93,22.93,1230000,22.93
-1951-11-01,23.10,23.10,23.10,23.10,1430000,23.10
-1951-10-31,22.94,22.94,22.94,22.94,1490000,22.94
-1951-10-30,22.66,22.66,22.66,22.66,1530000,22.66
-1951-10-29,22.69,22.69,22.69,22.69,1780000,22.69
-1951-10-26,22.81,22.81,22.81,22.81,1710000,22.81
-1951-10-25,22.96,22.96,22.96,22.96,1360000,22.96
-1951-10-24,23.03,23.03,23.03,23.03,1670000,23.03
-1951-10-23,22.84,22.84,22.84,22.84,2110000,22.84
-1951-10-22,22.75,22.75,22.75,22.75,2690000,22.75
-1951-10-19,23.32,23.32,23.32,23.32,1990000,23.32
-1951-10-18,23.67,23.67,23.67,23.67,1450000,23.67
-1951-10-17,23.69,23.69,23.69,23.69,1460000,23.69
-1951-10-16,23.77,23.77,23.77,23.77,1730000,23.77
-1951-10-15,23.85,23.85,23.85,23.85,1720000,23.85
-1951-10-11,23.70,23.70,23.70,23.70,1760000,23.70
-1951-10-10,23.61,23.61,23.61,23.61,1320000,23.61
-1951-10-09,23.65,23.65,23.65,23.65,1750000,23.65
-1951-10-08,23.75,23.75,23.75,23.75,1860000,23.75
-1951-10-05,23.78,23.78,23.78,23.78,2080000,23.78
-1951-10-04,23.72,23.72,23.72,23.72,1810000,23.72
-1951-10-03,23.79,23.79,23.79,23.79,2780000,23.79
-1951-10-02,23.64,23.64,23.64,23.64,1870000,23.64
-1951-10-01,23.47,23.47,23.47,23.47,1330000,23.47
-1951-09-28,23.26,23.26,23.26,23.26,1390000,23.26
-1951-09-27,23.27,23.27,23.27,23.27,1540000,23.27
-1951-09-26,23.40,23.40,23.40,23.40,1520000,23.40
-1951-09-25,23.38,23.38,23.38,23.38,1740000,23.38
-1951-09-24,23.30,23.30,23.30,23.30,1630000,23.30
-1951-09-21,23.40,23.40,23.40,23.40,2180000,23.40
-1951-09-20,23.57,23.57,23.57,23.57,2100000,23.57
-1951-09-19,23.59,23.59,23.59,23.59,2070000,23.59
-1951-09-18,23.59,23.59,23.59,23.59,2030000,23.59
-1951-09-17,23.62,23.62,23.62,23.62,1800000,23.62
-1951-09-14,23.69,23.69,23.69,23.69,2170000,23.69
-1951-09-13,23.71,23.71,23.71,23.71,2350000,23.71
-1951-09-12,23.60,23.60,23.60,23.60,2180000,23.60
-1951-09-11,23.50,23.50,23.50,23.50,2040000,23.50
-1951-09-10,23.62,23.62,23.62,23.62,2190000,23.62
-1951-09-07,23.53,23.53,23.53,23.53,1970000,23.53
-1951-09-06,23.47,23.47,23.47,23.47,2150000,23.47
-1951-09-05,23.42,23.42,23.42,23.42,1850000,23.42
-1951-09-04,23.28,23.28,23.28,23.28,1520000,23.28
-1951-08-31,23.28,23.28,23.28,23.28,1530000,23.28
-1951-08-30,23.24,23.24,23.24,23.24,1950000,23.24
-1951-08-29,23.08,23.08,23.08,23.08,1520000,23.08
-1951-08-28,22.90,22.90,22.90,22.90,1280000,22.90
-1951-08-27,22.85,22.85,22.85,22.85,1080000,22.85
-1951-08-24,22.88,22.88,22.88,22.88,1210000,22.88
-1951-08-23,22.90,22.90,22.90,22.90,1230000,22.90
-1951-08-22,22.75,22.75,22.75,22.75,1130000,22.75
-1951-08-21,22.83,22.83,22.83,22.83,1400000,22.83
-1951-08-20,22.93,22.93,22.93,22.93,1130000,22.93
-1951-08-17,22.94,22.94,22.94,22.94,1620000,22.94
-1951-08-16,22.87,22.87,22.87,22.87,1750000,22.87
-1951-08-15,22.79,22.79,22.79,22.79,1340000,22.79
-1951-08-14,22.70,22.70,22.70,22.70,1180000,22.70
-1951-08-13,22.80,22.80,22.80,22.80,1320000,22.80
-1951-08-10,22.79,22.79,22.79,22.79,1260000,22.79
-1951-08-09,22.84,22.84,22.84,22.84,1500000,22.84
-1951-08-08,22.93,22.93,22.93,22.93,1410000,22.93
-1951-08-07,23.03,23.03,23.03,23.03,1810000,23.03
-1951-08-06,23.01,23.01,23.01,23.01,1600000,23.01
-1951-08-03,22.85,22.85,22.85,22.85,1570000,22.85
-1951-08-02,22.82,22.82,22.82,22.82,2130000,22.82
-1951-08-01,22.51,22.51,22.51,22.51,1680000,22.51
-1951-07-31,22.40,22.40,22.40,22.40,1550000,22.40
-1951-07-30,22.63,22.63,22.63,22.63,1600000,22.63
-1951-07-27,22.53,22.53,22.53,22.53,1450000,22.53
-1951-07-26,22.47,22.47,22.47,22.47,1480000,22.47
-1951-07-25,22.32,22.32,22.32,22.32,1870000,22.32
-1951-07-24,22.44,22.44,22.44,22.44,1740000,22.44
-1951-07-23,22.10,22.10,22.10,22.10,1320000,22.10
-1951-07-20,21.88,21.88,21.88,21.88,1390000,21.88
-1951-07-19,21.84,21.84,21.84,21.84,1120000,21.84
-1951-07-18,21.88,21.88,21.88,21.88,1370000,21.88
-1951-07-17,21.92,21.92,21.92,21.92,1280000,21.92
-1951-07-16,21.73,21.73,21.73,21.73,1200000,21.73
-1951-07-13,21.98,21.98,21.98,21.98,1320000,21.98
-1951-07-12,21.80,21.80,21.80,21.80,1050000,21.80
-1951-07-11,21.68,21.68,21.68,21.68,970000,21.68
-1951-07-10,21.63,21.63,21.63,21.63,990000,21.63
-1951-07-09,21.73,21.73,21.73,21.73,1110000,21.73
-1951-07-06,21.64,21.64,21.64,21.64,1170000,21.64
-1951-07-05,21.64,21.64,21.64,21.64,1410000,21.64
-1951-07-03,21.23,21.23,21.23,21.23,1250000,21.23
-1951-07-02,21.10,21.10,21.10,21.10,1350000,21.10
-1951-06-29,20.96,20.96,20.96,20.96,1730000,20.96
-1951-06-28,21.10,21.10,21.10,21.10,1940000,21.10
-1951-06-27,21.37,21.37,21.37,21.37,1360000,21.37
-1951-06-26,21.30,21.30,21.30,21.30,1260000,21.30
-1951-06-25,21.29,21.29,21.29,21.29,2440000,21.29
-1951-06-22,21.55,21.55,21.55,21.55,1340000,21.55
-1951-06-21,21.78,21.78,21.78,21.78,1100000,21.78
-1951-06-20,21.91,21.91,21.91,21.91,1120000,21.91
-1951-06-19,22.02,22.02,22.02,22.02,1100000,22.02
-1951-06-18,22.05,22.05,22.05,22.05,1050000,22.05
-1951-06-15,22.04,22.04,22.04,22.04,1370000,22.04
-1951-06-14,21.84,21.84,21.84,21.84,1300000,21.84
-1951-06-13,21.55,21.55,21.55,21.55,1060000,21.55
-1951-06-12,21.52,21.52,21.52,21.52,1200000,21.52
-1951-06-11,21.61,21.61,21.61,21.61,1220000,21.61
-1951-06-08,21.49,21.49,21.49,21.49,1000000,21.49
-1951-06-07,21.56,21.56,21.56,21.56,1340000,21.56
-1951-06-06,21.48,21.48,21.48,21.48,1200000,21.48
-1951-06-05,21.33,21.33,21.33,21.33,1180000,21.33
-1951-06-04,21.24,21.24,21.24,21.24,1100000,21.24
-1951-06-01,21.48,21.48,21.48,21.48,9810000,21.48
-1951-05-31,21.52,21.52,21.52,21.52,1220000,21.52
-1951-05-29,21.35,21.35,21.35,21.35,1190000,21.35
-1951-05-28,21.21,21.21,21.21,21.21,1240000,21.21
-1951-05-25,21.03,21.03,21.03,21.03,1210000,21.03
-1951-05-24,21.05,21.05,21.05,21.05,2580000,21.05
-1951-05-23,21.16,21.16,21.16,21.16,1540000,21.16
-1951-05-22,21.36,21.36,21.36,21.36,1440000,21.36
-1951-05-21,21.46,21.46,21.46,21.46,1580000,21.46
-1951-05-18,21.51,21.51,21.51,21.51,1660000,21.51
-1951-05-17,21.91,21.91,21.91,21.91,1370000,21.91
-1951-05-16,21.69,21.69,21.69,21.69,1660000,21.69
-1951-05-15,21.76,21.76,21.76,21.76,2020000,21.76
-1951-05-14,22.18,22.18,22.18,22.18,1250000,22.18
-1951-05-11,22.33,22.33,22.33,22.33,1640000,22.33
-1951-05-10,22.51,22.51,22.51,22.51,1660000,22.51
-1951-05-09,22.64,22.64,22.64,22.64,1960000,22.64
-1951-05-08,22.61,22.61,22.61,22.61,1600000,22.61
-1951-05-07,22.63,22.63,22.63,22.63,1580000,22.63
-1951-05-04,22.77,22.77,22.77,22.77,2050000,22.77
-1951-05-03,22.81,22.81,22.81,22.81,2060000,22.81
-1951-05-02,22.62,22.62,22.62,22.62,1900000,22.62
-1951-05-01,22.53,22.53,22.53,22.53,1760000,22.53
-1951-04-30,22.43,22.43,22.43,22.43,1790000,22.43
-1951-04-27,22.39,22.39,22.39,22.39,2120000,22.39
-1951-04-26,22.16,22.16,22.16,22.16,1800000,22.16
-1951-04-25,21.97,21.97,21.97,21.97,1520000,21.97
-1951-04-24,21.96,21.96,21.96,21.96,1420000,21.96
-1951-04-23,22.05,22.05,22.05,22.05,1160000,22.05
-1951-04-20,22.04,22.04,22.04,22.04,940000,22.04
-1951-04-19,22.04,22.04,22.04,22.04,1520000,22.04
-1951-04-18,22.13,22.13,22.13,22.13,1780000,22.13
-1951-04-17,22.09,22.09,22.09,22.09,1470000,22.09
-1951-04-16,22.04,22.04,22.04,22.04,1730000,22.04
-1951-04-13,22.09,22.09,22.09,22.09,2120000,22.09
-1951-04-12,21.83,21.83,21.83,21.83,1530000,21.83
-1951-04-11,21.64,21.64,21.64,21.64,1420000,21.64
-1951-04-10,21.65,21.65,21.65,21.65,1280000,21.65
-1951-04-09,21.68,21.68,21.68,21.68,1110000,21.68
-1951-04-06,21.72,21.72,21.72,21.72,1450000,21.72
-1951-04-05,21.69,21.69,21.69,21.69,1790000,21.69
-1951-04-04,21.40,21.40,21.40,21.40,1300000,21.40
-1951-04-03,21.26,21.26,21.26,21.26,1220000,21.26
-1951-04-02,21.32,21.32,21.32,21.32,1280000,21.32
-1951-03-30,21.48,21.48,21.48,21.48,1150000,21.48
-1951-03-29,21.33,21.33,21.33,21.33,1300000,21.33
-1951-03-28,21.26,21.26,21.26,21.26,1770000,21.26
-1951-03-27,21.51,21.51,21.51,21.51,1250000,21.51
-1951-03-26,21.53,21.53,21.53,21.53,1230000,21.53
-1951-03-22,21.73,21.73,21.73,21.73,1290000,21.73
-1951-03-21,21.64,21.64,21.64,21.64,1310000,21.64
-1951-03-20,21.52,21.52,21.52,21.52,1020000,21.52
-1951-03-19,21.56,21.56,21.56,21.56,1120000,21.56
-1951-03-16,21.64,21.64,21.64,21.64,1660000,21.64
-1951-03-15,21.29,21.29,21.29,21.29,2070000,21.29
-1951-03-14,21.25,21.25,21.25,21.25,2110000,21.25
-1951-03-13,21.41,21.41,21.41,21.41,2330000,21.41
-1951-03-12,21.70,21.70,21.70,21.70,1640000,21.70
-1951-03-09,21.95,21.95,21.95,21.95,1610000,21.95
-1951-03-08,21.95,21.95,21.95,21.95,1440000,21.95
-1951-03-07,21.86,21.86,21.86,21.86,1770000,21.86
-1951-03-06,21.79,21.79,21.79,21.79,1490000,21.79
-1951-03-05,21.79,21.79,21.79,21.79,1690000,21.79
-1951-03-02,21.93,21.93,21.93,21.93,1570000,21.93
-1951-03-01,21.85,21.85,21.85,21.85,1610000,21.85
-1951-02-28,21.80,21.80,21.80,21.80,1640000,21.80
-1951-02-27,21.76,21.76,21.76,21.76,1680000,21.76
-1951-02-26,21.93,21.93,21.93,21.93,1650000,21.93
-1951-02-23,21.92,21.92,21.92,21.92,1540000,21.92
-1951-02-21,21.86,21.86,21.86,21.86,1670000,21.86
-1951-02-20,21.79,21.79,21.79,21.79,2010000,21.79
-1951-02-19,21.83,21.83,21.83,21.83,1910000,21.83
-1951-02-16,22.13,22.13,22.13,22.13,1860000,22.13
-1951-02-15,22.00,22.00,22.00,22.00,1700000,22.00
-1951-02-14,22.12,22.12,22.12,22.12,2050000,22.12
-1951-02-13,22.18,22.18,22.18,22.18,2400000,22.18
-1951-02-09,22.17,22.17,22.17,22.17,2550000,22.17
-1951-02-08,22.09,22.09,22.09,22.09,2120000,22.09
-1951-02-07,21.99,21.99,21.99,21.99,2020000,21.99
-1951-02-06,22.12,22.12,22.12,22.12,2370000,22.12
-1951-02-05,22.20,22.20,22.20,22.20,2680000,22.20
-1951-02-02,21.96,21.96,21.96,21.96,3030000,21.96
-1951-02-01,21.77,21.77,21.77,21.77,2380000,21.77
-1951-01-31,21.66,21.66,21.66,21.66,2340000,21.66
-1951-01-30,21.74,21.74,21.74,21.74,2480000,21.74
-1951-01-29,21.67,21.67,21.67,21.67,2630000,21.67
-1951-01-26,21.26,21.26,21.26,21.26,2230000,21.26
-1951-01-25,21.03,21.03,21.03,21.03,2520000,21.03
-1951-01-24,21.16,21.16,21.16,21.16,1990000,21.16
-1951-01-23,21.26,21.26,21.26,21.26,2080000,21.26
-1951-01-22,21.18,21.18,21.18,21.18,2570000,21.18
-1951-01-19,21.36,21.36,21.36,21.36,3170000,21.36
-1951-01-18,21.40,21.40,21.40,21.40,3490000,21.40
-1951-01-17,21.55,21.55,21.55,21.55,3880000,21.55
-1951-01-16,21.46,21.46,21.46,21.46,3740000,21.46
-1951-01-15,21.30,21.30,21.30,21.30,2830000,21.30
-1951-01-12,21.11,21.11,21.11,21.11,2950000,21.11
-1951-01-11,21.19,21.19,21.19,21.19,3490000,21.19
-1951-01-10,20.85,20.85,20.85,20.85,3270000,20.85
-1951-01-09,21.12,21.12,21.12,21.12,3800000,21.12
-1951-01-08,21.00,21.00,21.00,21.00,2780000,21.00
-1951-01-05,20.87,20.87,20.87,20.87,3390000,20.87
-1951-01-04,20.87,20.87,20.87,20.87,3390000,20.87
-1951-01-03,20.69,20.69,20.69,20.69,3370000,20.69
-1951-01-02,20.77,20.77,20.77,20.77,3030000,20.77
-1950-12-29,20.43,20.43,20.43,20.43,3440000,20.43
-1950-12-28,20.38,20.38,20.38,20.38,3560000,20.38
-1950-12-27,20.30,20.30,20.30,20.30,2940000,20.30
-1950-12-26,19.92,19.92,19.92,19.92,2660000,19.92
-1950-12-22,20.07,20.07,20.07,20.07,2720000,20.07
-1950-12-21,19.98,19.98,19.98,19.98,3990000,19.98
-1950-12-20,19.97,19.97,19.97,19.97,3510000,19.97
-1950-12-19,19.96,19.96,19.96,19.96,3650000,19.96
-1950-12-18,19.85,19.85,19.85,19.85,4500000,19.85
-1950-12-15,19.33,19.33,19.33,19.33,2420000,19.33
-1950-12-14,19.43,19.43,19.43,19.43,2660000,19.43
-1950-12-13,19.67,19.67,19.67,19.67,2030000,19.67
-1950-12-12,19.68,19.68,19.68,19.68,2140000,19.68
-1950-12-11,19.72,19.72,19.72,19.72,2600000,19.72
-1950-12-08,19.40,19.40,19.40,19.40,2310000,19.40
-1950-12-07,19.40,19.40,19.40,19.40,1810000,19.40
-1950-12-06,19.45,19.45,19.45,19.45,2010000,19.45
-1950-12-05,19.31,19.31,19.31,19.31,1940000,19.31
-1950-12-04,19.00,19.00,19.00,19.00,2510000,19.00
-1950-12-01,19.66,19.66,19.66,19.66,1870000,19.66
-1950-11-30,19.51,19.51,19.51,19.51,2080000,19.51
-1950-11-29,19.37,19.37,19.37,19.37,2770000,19.37
-1950-11-28,19.56,19.56,19.56,19.56,2970000,19.56
-1950-11-27,20.18,20.18,20.18,20.18,1740000,20.18
-1950-11-24,20.32,20.32,20.32,20.32,2620000,20.32
-1950-11-22,20.16,20.16,20.16,20.16,2730000,20.16
-1950-11-21,19.88,19.88,19.88,19.88,2010000,19.88
-1950-11-20,19.93,19.93,19.93,19.93,2250000,19.93
-1950-11-17,19.86,19.86,19.86,19.86,2130000,19.86
-1950-11-16,19.72,19.72,19.72,19.72,1760000,19.72
-1950-11-15,19.82,19.82,19.82,19.82,1620000,19.82
-1950-11-14,19.86,19.86,19.86,19.86,1780000,19.86
-1950-11-13,20.01,20.01,20.01,20.01,1630000,20.01
-1950-11-10,19.94,19.94,19.94,19.94,1640000,19.94
-1950-11-09,19.79,19.79,19.79,19.79,1760000,19.79
-1950-11-08,19.56,19.56,19.56,19.56,1850000,19.56
-1950-11-06,19.36,19.36,19.36,19.36,2580000,19.36
-1950-11-03,19.85,19.85,19.85,19.85,1560000,19.85
-1950-11-02,19.73,19.73,19.73,19.73,1580000,19.73
-1950-11-01,19.56,19.56,19.56,19.56,1780000,19.56
-1950-10-31,19.53,19.53,19.53,19.53,2010000,19.53
-1950-10-30,19.61,19.61,19.61,19.61,1790000,19.61
-1950-10-27,19.77,19.77,19.77,19.77,1800000,19.77
-1950-10-26,19.61,19.61,19.61,19.61,3000000,19.61
-1950-10-25,20.05,20.05,20.05,20.05,1930000,20.05
-1950-10-24,20.08,20.08,20.08,20.08,1790000,20.08
-1950-10-23,19.96,19.96,19.96,19.96,1850000,19.96
-1950-10-20,19.96,19.96,19.96,19.96,1840000,19.96
-1950-10-19,20.02,20.02,20.02,20.02,2250000,20.02
-1950-10-18,20.01,20.01,20.01,20.01,2410000,20.01
-1950-10-17,19.89,19.89,19.89,19.89,2010000,19.89
-1950-10-16,19.71,19.71,19.71,19.71,1630000,19.71
-1950-10-13,19.85,19.85,19.85,19.85,2030000,19.85
-1950-10-11,19.86,19.86,19.86,19.86,2200000,19.86
-1950-10-10,19.78,19.78,19.78,19.78,1870000,19.78
-1950-10-09,20.00,20.00,20.00,20.00,2330000,20.00
-1950-10-06,20.12,20.12,20.12,20.12,2360000,20.12
-1950-10-05,19.89,19.89,19.89,19.89,2490000,19.89
-1950-10-04,20.00,20.00,20.00,20.00,2920000,20.00
-1950-10-03,19.66,19.66,19.66,19.66,2480000,19.66
-1950-10-02,19.69,19.69,19.69,19.69,2200000,19.69
-1950-09-29,19.45,19.45,19.45,19.45,1800000,19.45
-1950-09-28,19.42,19.42,19.42,19.42,2200000,19.42
-1950-09-27,19.41,19.41,19.41,19.41,2360000,19.41
-1950-09-26,19.14,19.14,19.14,19.14,2280000,19.14
-1950-09-25,19.42,19.42,19.42,19.42,2020000,19.42
-1950-09-22,19.44,19.44,19.44,19.44,2510000,19.44
-1950-09-21,19.37,19.37,19.37,19.37,1650000,19.37
-1950-09-20,19.21,19.21,19.21,19.21,2100000,19.21
-1950-09-19,19.31,19.31,19.31,19.31,1590000,19.31
-1950-09-18,19.37,19.37,19.37,19.37,2040000,19.37
-1950-09-15,19.29,19.29,19.29,19.29,2410000,19.29
-1950-09-14,19.18,19.18,19.18,19.18,2350000,19.18
-1950-09-13,19.09,19.09,19.09,19.09,2600000,19.09
-1950-09-12,18.87,18.87,18.87,18.87,1680000,18.87
-1950-09-11,18.61,18.61,18.61,18.61,1860000,18.61
-1950-09-08,18.75,18.75,18.75,18.75,1960000,18.75
-1950-09-07,18.59,18.59,18.59,18.59,1340000,18.59
-1950-09-06,18.54,18.54,18.54,18.54,1300000,18.54
-1950-09-05,18.68,18.68,18.68,18.68,1250000,18.68
-1950-09-01,18.55,18.55,18.55,18.55,1290000,18.55
-1950-08-31,18.42,18.42,18.42,18.42,1140000,18.42
-1950-08-30,18.43,18.43,18.43,18.43,1490000,18.43
-1950-08-29,18.54,18.54,18.54,18.54,1890000,18.54
-1950-08-28,18.53,18.53,18.53,18.53,1300000,18.53
-1950-08-25,18.54,18.54,18.54,18.54,1610000,18.54
-1950-08-24,18.79,18.79,18.79,18.79,1620000,18.79
-1950-08-23,18.82,18.82,18.82,18.82,1580000,18.82
-1950-08-22,18.68,18.68,18.68,18.68,1550000,18.68
-1950-08-21,18.70,18.70,18.70,18.70,1840000,18.70
-1950-08-18,18.68,18.68,18.68,18.68,1780000,18.68
-1950-08-17,18.54,18.54,18.54,18.54,2170000,18.54
-1950-08-16,18.34,18.34,18.34,18.34,1770000,18.34
-1950-08-15,18.32,18.32,18.32,18.32,1330000,18.32
-1950-08-14,18.29,18.29,18.29,18.29,1280000,18.29
-1950-08-11,18.28,18.28,18.28,18.28,1680000,18.28
-1950-08-10,18.48,18.48,18.48,18.48,1870000,18.48
-1950-08-09,18.61,18.61,18.61,18.61,1760000,18.61
-1950-08-08,18.46,18.46,18.46,18.46,2180000,18.46
-1950-08-07,18.41,18.41,18.41,18.41,1850000,18.41
-1950-08-04,18.14,18.14,18.14,18.14,1600000,18.14
-1950-08-03,17.99,17.99,17.99,17.99,1660000,17.99
-1950-08-02,17.95,17.95,17.95,17.95,1980000,17.95
-1950-08-01,18.02,18.02,18.02,18.02,1970000,18.02
-1950-07-31,17.84,17.84,17.84,17.84,1590000,17.84
-1950-07-28,17.69,17.69,17.69,17.69,2050000,17.69
-1950-07-27,17.50,17.50,17.50,17.50,2300000,17.50
-1950-07-26,17.27,17.27,17.27,17.27,2460000,17.27
-1950-07-25,17.23,17.23,17.23,17.23,2770000,17.23
-1950-07-24,17.48,17.48,17.48,17.48,2300000,17.48
-1950-07-21,17.59,17.59,17.59,17.59,2810000,17.59
-1950-07-20,17.61,17.61,17.61,17.61,3160000,17.61
-1950-07-19,17.36,17.36,17.36,17.36,2430000,17.36
-1950-07-18,17.06,17.06,17.06,17.06,1820000,17.06
-1950-07-17,16.68,16.68,16.68,16.68,1520000,16.68
-1950-07-14,16.87,16.87,16.87,16.87,1900000,16.87
-1950-07-13,16.69,16.69,16.69,16.69,2660000,16.69
-1950-07-12,16.87,16.87,16.87,16.87,3200000,16.87
-1950-07-11,17.32,17.32,17.32,17.32,3250000,17.32
-1950-07-10,17.59,17.59,17.59,17.59,1960000,17.59
-1950-07-07,17.67,17.67,17.67,17.67,1870000,17.67
-1950-07-06,17.91,17.91,17.91,17.91,1570000,17.91
-1950-07-05,17.81,17.81,17.81,17.81,1400000,17.81
-1950-07-03,17.64,17.64,17.64,17.64,1550000,17.64
-1950-06-30,17.69,17.69,17.69,17.69,2660000,17.69
-1950-06-29,17.44,17.44,17.44,17.44,3040000,17.44
-1950-06-28,18.11,18.11,18.11,18.11,2600000,18.11
-1950-06-27,17.91,17.91,17.91,17.91,4860000,17.91
-1950-06-26,18.11,18.11,18.11,18.11,3950000,18.11
-1950-06-23,19.14,19.14,19.14,19.14,1700000,19.14
-1950-06-22,19.16,19.16,19.16,19.16,1830000,19.16
-1950-06-21,19.00,19.00,19.00,19.00,1750000,19.00
-1950-06-20,18.83,18.83,18.83,18.83,1470000,18.83
-1950-06-19,18.92,18.92,18.92,18.92,1290000,18.92
-1950-06-16,18.97,18.97,18.97,18.97,1180000,18.97
-1950-06-15,18.93,18.93,18.93,18.93,1530000,18.93
-1950-06-14,18.98,18.98,18.98,18.98,1650000,18.98
-1950-06-13,19.25,19.25,19.25,19.25,1790000,19.25
-1950-06-12,19.40,19.40,19.40,19.40,1790000,19.40
-1950-06-09,19.26,19.26,19.26,19.26,2130000,19.26
-1950-06-08,19.14,19.14,19.14,19.14,1780000,19.14
-1950-06-07,18.93,18.93,18.93,18.93,1750000,18.93
-1950-06-06,18.88,18.88,18.88,18.88,2250000,18.88
-1950-06-05,18.60,18.60,18.60,18.60,1630000,18.60
-1950-06-02,18.79,18.79,18.79,18.79,1450000,18.79
-1950-06-01,18.77,18.77,18.77,18.77,1580000,18.77
-1950-05-31,18.78,18.78,18.78,18.78,1530000,18.78
-1950-05-29,18.72,18.72,18.72,18.72,1110000,18.72
-1950-05-26,18.67,18.67,18.67,18.67,1330000,18.67
-1950-05-25,18.69,18.69,18.69,18.69,1480000,18.69
-1950-05-24,18.69,18.69,18.69,18.69,1850000,18.69
-1950-05-23,18.71,18.71,18.71,18.71,1460000,18.71
-1950-05-22,18.60,18.60,18.60,18.60,1620000,18.60
-1950-05-19,18.68,18.68,18.68,18.68,2110000,18.68
-1950-05-18,18.56,18.56,18.56,18.56,5240000,18.56
-1950-05-17,18.52,18.52,18.52,18.52,2020000,18.52
-1950-05-16,18.44,18.44,18.44,18.44,1730000,18.44
-1950-05-15,18.26,18.26,18.26,18.26,1220000,18.26
-1950-05-12,18.18,18.18,18.18,18.18,1790000,18.18
-1950-05-11,18.29,18.29,18.29,18.29,1750000,18.29
-1950-05-10,18.29,18.29,18.29,18.29,1880000,18.29
-1950-05-09,18.27,18.27,18.27,18.27,1720000,18.27
-1950-05-08,18.27,18.27,18.27,18.27,1680000,18.27
-1950-05-05,18.22,18.22,18.22,18.22,1800000,18.22
-1950-05-04,18.12,18.12,18.12,18.12,2150000,18.12
-1950-05-03,18.27,18.27,18.27,18.27,2120000,18.27
-1950-05-02,18.11,18.11,18.11,18.11,2250000,18.11
-1950-05-01,18.22,18.22,18.22,18.22,2390000,18.22
-1950-04-28,17.96,17.96,17.96,17.96,2190000,17.96
-1950-04-27,17.86,17.86,17.86,17.86,2070000,17.86
-1950-04-26,17.76,17.76,17.76,17.76,1880000,17.76
-1950-04-25,17.83,17.83,17.83,17.83,1830000,17.83
-1950-04-24,17.83,17.83,17.83,17.83,2310000,17.83
-1950-04-21,17.96,17.96,17.96,17.96,2710000,17.96
-1950-04-20,17.93,17.93,17.93,17.93,2590000,17.93
-1950-04-19,18.05,18.05,18.05,18.05,2950000,18.05
-1950-04-18,18.03,18.03,18.03,18.03,3320000,18.03
-1950-04-17,17.88,17.88,17.88,17.88,2520000,17.88
-1950-04-14,17.96,17.96,17.96,17.96,2750000,17.96
-1950-04-13,17.98,17.98,17.98,17.98,2410000,17.98
-1950-04-12,17.94,17.94,17.94,17.94,2010000,17.94
-1950-04-11,17.75,17.75,17.75,17.75,2010000,17.75
-1950-04-10,17.85,17.85,17.85,17.85,2070000,17.85
-1950-04-06,17.78,17.78,17.78,17.78,2000000,17.78
-1950-04-05,17.63,17.63,17.63,17.63,1430000,17.63
-1950-04-04,17.55,17.55,17.55,17.55,2010000,17.55
-1950-04-03,17.53,17.53,17.53,17.53,1570000,17.53
-1950-03-31,17.29,17.29,17.29,17.29,1880000,17.29
-1950-03-30,17.30,17.30,17.30,17.30,2370000,17.30
-1950-03-29,17.44,17.44,17.44,17.44,2090000,17.44
-1950-03-28,17.53,17.53,17.53,17.53,1780000,17.53
-1950-03-27,17.46,17.46,17.46,17.46,1930000,17.46
-1950-03-24,17.56,17.56,17.56,17.56,1570000,17.56
-1950-03-23,17.56,17.56,17.56,17.56,2020000,17.56
-1950-03-22,17.55,17.55,17.55,17.55,2010000,17.55
-1950-03-21,17.45,17.45,17.45,17.45,1400000,17.45
-1950-03-20,17.44,17.44,17.44,17.44,1430000,17.44
-1950-03-17,17.45,17.45,17.45,17.45,1600000,17.45
-1950-03-16,17.49,17.49,17.49,17.49,2060000,17.49
-1950-03-15,17.45,17.45,17.45,17.45,1830000,17.45
-1950-03-14,17.25,17.25,17.25,17.25,1140000,17.25
-1950-03-13,17.12,17.12,17.12,17.12,1060000,17.12
-1950-03-10,17.09,17.09,17.09,17.09,1260000,17.09
-1950-03-09,17.07,17.07,17.07,17.07,1330000,17.07
-1950-03-08,17.19,17.19,17.19,17.19,1360000,17.19
-1950-03-07,17.20,17.20,17.20,17.20,1590000,17.20
-1950-03-06,17.32,17.32,17.32,17.32,1470000,17.32
-1950-03-03,17.29,17.29,17.29,17.29,1520000,17.29
-1950-03-02,17.23,17.23,17.23,17.23,1340000,17.23
-1950-03-01,17.24,17.24,17.24,17.24,1410000,17.24
-1950-02-28,17.22,17.22,17.22,17.22,1310000,17.22
-1950-02-27,17.28,17.28,17.28,17.28,1410000,17.28
-1950-02-24,17.28,17.28,17.28,17.28,1710000,17.28
-1950-02-23,17.21,17.21,17.21,17.21,1310000,17.21
-1950-02-21,17.17,17.17,17.17,17.17,1260000,17.17
-1950-02-20,17.20,17.20,17.20,17.20,1420000,17.20
-1950-02-17,17.15,17.15,17.15,17.15,1940000,17.15
-1950-02-16,16.99,16.99,16.99,16.99,1920000,16.99
-1950-02-15,17.06,17.06,17.06,17.06,1730000,17.06
-1950-02-14,17.06,17.06,17.06,17.06,2210000,17.06
-1950-02-10,17.24,17.24,17.24,17.24,1790000,17.24
-1950-02-09,17.28,17.28,17.28,17.28,1810000,17.28
-1950-02-08,17.21,17.21,17.21,17.21,1470000,17.21
-1950-02-07,17.23,17.23,17.23,17.23,1360000,17.23
-1950-02-06,17.32,17.32,17.32,17.32,1490000,17.32
-1950-02-03,17.29,17.29,17.29,17.29,2210000,17.29
-1950-02-02,17.23,17.23,17.23,17.23,2040000,17.23
-1950-02-01,17.05,17.05,17.05,17.05,1810000,17.05
-1950-01-31,17.05,17.05,17.05,17.05,1690000,17.05
-1950-01-30,17.02,17.02,17.02,17.02,1640000,17.02
-1950-01-27,16.82,16.82,16.82,16.82,1250000,16.82
-1950-01-26,16.73,16.73,16.73,16.73,1150000,16.73
-1950-01-25,16.74,16.74,16.74,16.74,1700000,16.74
-1950-01-24,16.86,16.86,16.86,16.86,1250000,16.86
-1950-01-23,16.92,16.92,16.92,16.92,1340000,16.92
-1950-01-20,16.90,16.90,16.90,16.90,1440000,16.90
-1950-01-19,16.87,16.87,16.87,16.87,1170000,16.87
-1950-01-18,16.85,16.85,16.85,16.85,1570000,16.85
-1950-01-17,16.86,16.86,16.86,16.86,1790000,16.86
-1950-01-16,16.72,16.72,16.72,16.72,1460000,16.72
-1950-01-13,16.67,16.67,16.67,16.67,3330000,16.67
-1950-01-12,16.76,16.76,16.76,16.76,2970000,16.76
-1950-01-11,17.09,17.09,17.09,17.09,2630000,17.09
-1950-01-10,17.03,17.03,17.03,17.03,2160000,17.03
-1950-01-09,17.08,17.08,17.08,17.08,2520000,17.08
-1950-01-06,16.98,16.98,16.98,16.98,2010000,16.98
-1950-01-05,16.93,16.93,16.93,16.93,2550000,16.93
-1950-01-04,16.85,16.85,16.85,16.85,1890000,16.85
-1950-01-03,16.66,16.66,16.66,16.66,1260000,16.66
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/run_all.py b/statsmodels/scikits/statsmodels/sandbox/examples/run_all.py
deleted file mode 100644
index aa48269..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/run_all.py
+++ /dev/null
@@ -1,36 +0,0 @@
-'''run all examples to make sure we don't get an exception
-
-Note:
-If an example contaings plt.show(), then all plot windows have to be closed
-manually, at least in my setup.
-
-uncomment plt.show() to show all plot windows
-
-'''
-
-stop_on_error = True
-
-
-filelist = ['example_pca.py', 'example_sysreg.py', 'example_mle.py',
-# 'example_gam.py', # exclude, currently we are not working on it
- 'example_pca_regression.py']
-
-cont = raw_input("""Are you sure you want to run all of the examples?
-This is done mainly to check that they are up to date.
-(y/n) >>> """)
-if 'y' in cont.lower():
- for run_all_f in filelist:
- try:
- print "Executing example file", run_all_f
- print "-----------------------" + "-"*len(run_all_f)
- execfile(run_all_f)
- except:
- #f might be overwritten in the executed file
- print "*********************"
- print "ERROR in example file", run_all_f
- print "**********************" + "*"*len(run_all_f)
- if stop_on_error:
- raise
-#plt.show()
-#plt.close('all')
-#close doesn't work because I never get here without closing plots manually
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/ex_ratereturn.py b/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/ex_ratereturn.py
deleted file mode 100644
index 6cda0fe..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/ex_ratereturn.py
+++ /dev/null
@@ -1,146 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Playing with correlation of DJ-30 stock returns
-
-this uses pickled data that needs to be created with findow.py
-to see graphs, uncomment plt.show()
-
-
-Created on Sat Jan 30 16:30:18 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-import matplotlib.finance as fin
-import matplotlib.pyplot as plt
-import datetime as dt
-
-import pandas as pa
-import pickle
-
-import scikits.statsmodels.api as sm
-import scikits.statsmodels.sandbox as sb
-import scikits.statsmodels.sandbox.tools as sbtools
-
-from scikits.statsmodels.graphics.correlation import plot_corr, plot_corr_grid
-
-try:
- rrdm = pickle.load(file('dj30rr','rb'))
-except Exception: #blanket for any unpickling error
- print "Error with unpickling, a new pickle file can be created with findow_1"
- raise
-
-ticksym = rrdm.columns.tolist()
-rr = rrdm.values[1:400]
-
-rrcorr = np.corrcoef(rr, rowvar=0)
-
-
-plot_corr(rrcorr, xnames=ticksym)
-nvars = rrcorr.shape[0]
-plt.figure()
-plt.hist(rrcorr[np.triu_indices(nvars,1)])
-plt.title('Correlation Coefficients')
-
-xreda, facta, evaa, evea = sbtools.pcasvd(rr)
-evallcs = (evaa).cumsum()
-print evallcs/evallcs[-1]
-xred, fact, eva, eve = sbtools.pcasvd(rr, keepdim=4)
-pcacorr = np.corrcoef(xred, rowvar=0)
-
-plot_corr(pcacorr, xnames=ticksym, title='Correlation PCA')
-
-resid = rr-xred
-residcorr = np.corrcoef(resid, rowvar=0)
-plot_corr(residcorr, xnames=ticksym, title='Correlation Residuals')
-
-plt.matshow(residcorr)
-plt.imshow(residcorr, cmap=plt.cm.jet, interpolation='nearest',
- extent=(0,30,0,30), vmin=-1.0, vmax=1.0)
-plt.colorbar()
-
-normcolor = (0,1) #False #True
-fig = plt.figure()
-ax = fig.add_subplot(2,2,1)
-plot_corr(rrcorr, xnames=ticksym, normcolor=normcolor, ax=ax)
-ax2 = fig.add_subplot(2,2,3)
-#pcacorr = np.corrcoef(xred, rowvar=0)
-plot_corr(pcacorr, xnames=ticksym, title='Correlation PCA',
- normcolor=normcolor, ax=ax2)
-ax3 = fig.add_subplot(2,2,4)
-plot_corr(residcorr, xnames=ticksym, title='Correlation Residuals',
- normcolor=normcolor, ax=ax3)
-
-import matplotlib as mpl
-images = [c for ax in fig.axes for c in ax.get_children() if isinstance(c, mpl.image.AxesImage)]
-print images
-print ax.get_children()
-#cax = fig.add_subplot(2,2,2)
-#[0.85, 0.1, 0.075, 0.8]
-fig. subplots_adjust(bottom=0.1, right=0.9, top=0.9)
-cax = fig.add_axes([0.9, 0.1, 0.025, 0.8])
-fig.colorbar(images[0], cax=cax)
-fig.savefig('corrmatrixgrid.png', dpi=120)
-
-has_sklearn = True
-try:
- import sklearn
-except ImportError:
- has_sklearn = False
- print 'sklearn not available'
-
-
-def cov2corr(cov):
- std_ = np.sqrt(np.diag(cov))
- corr = cov / np.outer(std_, std_)
- return corr
-
-if has_sklearn:
- from sklearn.covariance import LedoitWolf, OAS, MCD
-
- lw = LedoitWolf(store_precision=False)
- lw.fit(rr, assume_centered=False)
- cov_lw = lw.covariance_
- corr_lw = cov2corr(cov_lw)
-
- oas = OAS(store_precision=False)
- oas.fit(rr, assume_centered=False)
- cov_oas = oas.covariance_
- corr_oas = cov2corr(cov_oas)
-
- mcd = MCD()#.fit(rr, reweight=None)
- mcd.fit(rr, assume_centered=False)
- cov_mcd = mcd.covariance_
- corr_mcd = cov2corr(cov_mcd)
-
- titles = ['raw correlation', 'lw', 'oas', 'mcd']
- normcolor = None
- fig = plt.figure()
- for i, c in enumerate([rrcorr, corr_lw, corr_oas, corr_mcd]):
- #for i, c in enumerate([np.cov(rr, rowvar=0), cov_lw, cov_oas, cov_mcd]):
- ax = fig.add_subplot(2,2,i+1)
- plot_corr(c, xnames=None, title=titles[i],
- normcolor=normcolor, ax=ax)
-
- images = [c for ax in fig.axes for c in ax.get_children() if isinstance(c, mpl.image.AxesImage)]
- fig. subplots_adjust(bottom=0.1, right=0.9, top=0.9)
- cax = fig.add_axes([0.9, 0.1, 0.025, 0.8])
- fig.colorbar(images[0], cax=cax)
-
- corrli = [rrcorr, corr_lw, corr_oas, corr_mcd, pcacorr]
- diffssq = np.array([[((ci-cj)**2).sum() for ci in corrli]
- for cj in corrli])
- diffsabs = np.array([[np.max(np.abs(ci-cj)) for ci in corrli]
- for cj in corrli])
- print diffssq
- print '\nmaxabs'
- print diffsabs
- fig.savefig('corrmatrix_sklearn.png', dpi=120)
-
- fig2 = plot_corr_grid(corrli+[residcorr], ncols=3,
- titles=titles+['pca', 'pca-residual'],
- xnames=[], ynames=[])
- fig2.savefig('corrmatrix_sklearn_2.png', dpi=120)
-
-#plt.show()
-#plt.close('all')
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_0.py b/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_0.py
deleted file mode 100644
index 5adf31a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_0.py
+++ /dev/null
@@ -1,81 +0,0 @@
-# -*- coding: utf-8 -*-
-"""A quick look at volatility of stock returns for 2009
-
-Just an exercise to find my way around the pandas methods.
-Shows the daily rate of return, the square of it (volatility) and
-a 5 day moving average of the volatility.
-No guarantee for correctness.
-Assumes no missing values.
-colors of lines in graphs are not great
-
-uses DataMatrix and WidePanel to hold data downloaded from yahoo using matplotlib.
-I haven't figured out storage, so the download happens at each run
-of the script.
-
-getquotes is from pandas\examples\finance.py
-
-Created on Sat Jan 30 16:30:18 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-import matplotlib.finance as fin
-import matplotlib.pyplot as plt
-import datetime as dt
-
-import pandas as pa
-
-
-def getquotes(symbol, start, end):
- quotes = fin.quotes_historical_yahoo(symbol, start, end)
- dates, open, close, high, low, volume = zip(*quotes)
-
- data = {
- 'open' : open,
- 'close' : close,
- 'high' : high,
- 'low' : low,
- 'volume' : volume
- }
-
- dates = pa.Index([dt.datetime.fromordinal(int(d)) for d in dates])
- return pa.DataMatrix(data, index=dates)
-
-
-start_date = dt.datetime(2009, 1, 1)
-end_date = dt.datetime(2010, 1, 1)
-
-mysym = ['msft', 'ibm', 'goog']
-indexsym = ['gspc', 'dji']
-
-
-# download data
-dmall = {}
-for sy in mysym:
- dmall[sy] = getquotes(sy, start_date, end_date)
-
-# combine into WidePanel
-pawp = pa.WidePanel.fromDict(dmall)
-print pawp.values.shape
-
-# select closing prices
-paclose = pawp.getMinorXS('close')
-
-# take log and first difference over time
-paclose_ratereturn = paclose.apply(np.log).diff()
-plt.figure()
-paclose_ratereturn.plot()
-plt.title('daily rate of return')
-
-# square the returns
-paclose_ratereturn_vol = paclose_ratereturn.apply(lambda x:np.power(x,2))
-plt.figure()
-plt.title('volatility (with 5 day moving average')
-paclose_ratereturn_vol.plot()
-
-# use convolution to get moving average
-paclose_ratereturn_vol_mov = paclose_ratereturn_vol.apply(
- lambda x:np.convolve(x,np.ones(5)/5.,'same'))
-paclose_ratereturn_vol_mov.plot()
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_1.py b/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_1.py
deleted file mode 100644
index c507fe9..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/findow_1.py
+++ /dev/null
@@ -1,93 +0,0 @@
-# -*- coding: utf-8 -*-
-"""A quick look at volatility of stock returns for 2009
-
-Just an exercise to find my way around the pandas methods.
-Shows the daily rate of return, the square of it (volatility) and
-a 5 day moving average of the volatility.
-No guarantee for correctness.
-Assumes no missing values.
-colors of lines in graphs are not great
-
-uses DataMatrix and WidePanel to hold data downloaded from yahoo using matplotlib.
-I haven't figured out storage, so the download happens at each run
-of the script.
-
-getquotes is from pandas\examples\finance.py
-
-Created on Sat Jan 30 16:30:18 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-import matplotlib.finance as fin
-import matplotlib.pyplot as plt
-import datetime as dt
-
-import pandas as pa
-
-
-def getquotes(symbol, start, end):
- quotes = fin.quotes_historical_yahoo(symbol, start, end)
- dates, open, close, high, low, volume = zip(*quotes)
-
- data = {
- 'open' : open,
- 'close' : close,
- 'high' : high,
- 'low' : low,
- 'volume' : volume
- }
-
- dates = pa.Index([dt.datetime.fromordinal(int(d)) for d in dates])
- return pa.DataMatrix(data, index=dates)
-
-
-start_date = dt.datetime(2007, 1, 1)
-end_date = dt.datetime(2009, 12, 31)
-
-dj30 = ['MMM', 'AA', 'AXP', 'T', 'BAC', 'BA', 'CAT', 'CVX', 'CSCO',
- 'KO', 'DD', 'XOM', 'GE', 'HPQ', 'HD', 'INTC', 'IBM', 'JNJ',
- 'JPM', 'KFT', 'MCD', 'MRK', 'MSFT', 'PFE', 'PG', 'TRV',
- 'UTX', 'VZ', 'WMT', 'DIS']
-mysym = ['msft', 'ibm', 'goog']
-indexsym = ['gspc', 'dji']
-
-
-# download data
-dmall = {}
-for sy in dj30:
- dmall[sy] = getquotes(sy, start_date, end_date)
-
-# combine into WidePanel
-pawp = pa.WidePanel.fromDict(dmall)
-print pawp.values.shape
-
-# select closing prices
-paclose = pawp.getMinorXS('close')
-
-# take log and first difference over time
-paclose_ratereturn = paclose.apply(np.log).diff()
-
-import os
-if not os.path.exists('dj30rr'):
- #if pandas is updated, then sometimes unpickling fails, and need to save again
- paclose_ratereturn.save('dj30rr')
-
-plt.figure()
-paclose_ratereturn.plot()
-plt.title('daily rate of return')
-
-# square the returns
-paclose_ratereturn_vol = paclose_ratereturn.apply(lambda x:np.power(x,2))
-plt.figure()
-plt.title('volatility (with 5 day moving average')
-paclose_ratereturn_vol.plot()
-
-# use convolution to get moving average
-paclose_ratereturn_vol_mov = paclose_ratereturn_vol.apply(
- lambda x:np.convolve(x,np.ones(5)/5.,'same'))
-paclose_ratereturn_vol_mov.plot()
-
-
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/try_interchange.py b/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/try_interchange.py
deleted file mode 100644
index e362777..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/examples/thirdparty/try_interchange.py
+++ /dev/null
@@ -1,74 +0,0 @@
-# -*- coding: utf-8 -*-
-"""groupmean, groupby in pandas, la and tabular from a scikits.timeseries
-
-after a question on the scipy-user mailing list I tried to do
-groupmeans, which in this case are duplicate dates, in the 3 packages.
-
-I'm using the versions that I had installed, which are all based on
-repository checkout, but are not fully up-to-date
-
-some brief comments
-
-* la.larry and pandas.DataMatrix require unique labels/index so
- groups have to represented in a separate data structure
-* pandas is missing GroupBy in the docs, but the docstring is helpful
-* both la and pandas handle datetime objects as object arrays
-* tabular requires conversion to structured dtype, but easy helper
- functions or methods are available in scikits.timeseries and tabular
-
-* not too bad for a first try
-
-Created on Sat Jan 30 08:33:11 2010
-Author: josef-pktd
-"""
-
-import numpy as np
-import scikits.timeseries as ts
-
-s = ts.time_series([1,2,3,4,5],
- dates=ts.date_array(["2001-01","2001-01",
- "2001-02","2001-03","2001-03"],freq="M"))
-
-print '\nUsing la'
-import la
-dta = la.larry(s.data, label=[range(len(s.data))])
-dat = la.larry(s.dates.tolist(), label=[range(len(s.data))])
-s2 = ts.time_series(dta.group_mean(dat).x,dates=ts.date_array(dat.x,freq="M"))
-s2u = ts.remove_duplicated_dates(s2)
-print repr(s)
-print dat
-print repr(s2)
-print repr(s2u)
-
-print '\nUsing pandas'
-import pandas
-pdta = pandas.DataMatrix(s.data, np.arange(len(s.data)), [1])
-pa = pdta.groupby(dict(zip(np.arange(len(s.data)),
- s.dates.tolist()))).aggregate(np.mean)
-s3 = ts.time_series(pa.values.ravel(),
- dates=ts.date_array(pa.index.tolist(),freq="M"))
-
-print pa
-print repr(s3)
-
-print '\nUsing tabular'
-import tabular as tb
-X = tb.tabarray(array=s.torecords(), dtype=s.torecords().dtype)
-tabx = X.aggregate(On=['_dates'], AggFuncDict={'_data':np.mean,'_mask':np.all})
-s4 = ts.time_series(tabx['_data'],dates=ts.date_array(tabx['_dates'],freq="M"))
-print tabx
-print repr(s4)
-
-from finance import * #hack to make it run as standalone
-#after running pandas/examples/finance.py
-larmsft = la.larry(msft.values, [msft.index.tolist(), msft.columns.tolist()])
-laribm = la.larry(ibm.values, [ibm.index.tolist(), ibm.columns.tolist()])
-lar1 = la.larry(np.dstack((msft.values,ibm.values)), [ibm.index.tolist(), ibm.columns.tolist(), ['msft', 'ibm']])
-print lar1.mean(0)
-
-
-y = la.larry([[1.0, 2.0], [3.0, 4.0]], [['a', 'b'], ['c', 'd']])
-ysr = np.empty(y.x.shape[0],dtype=([('index','S1')]+[(i,np.float) for i in y.label[1]]))
-ysr['index'] = y.label[0]
-for i in ysr.dtype.names[1:]:
- ysr[i] = y[y.labelindex(i, axis=1)].x
diff --git a/statsmodels/scikits/statsmodels/sandbox/formula.py b/statsmodels/scikits/statsmodels/sandbox/formula.py
deleted file mode 100644
index 7b8f0f9..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/formula.py
+++ /dev/null
@@ -1,763 +0,0 @@
-"""
-Provides the basic classes needed to specify statistical models.
-
-
-
-namespace : dictionary
- mapping from names to data, used to associate data to a formula or term
-
-
-"""
-import copy
-import types
-import numpy as np
-
-try:
- set
-except NameError:
- from sets import Set as set
-
-__docformat__ = 'restructuredtext'
-
-default_namespace = {}
-
-class Term(object):
- """
- This class is very simple: it is just a named term in a model formula.
-
- It is also callable: by default it namespace[self.name], where namespace
- defaults to formula.default_namespace.
- When called in an instance of formula,
- the namespace used is that formula's namespace.
-
- Inheritance of the namespace under +,*,- operations:
- ----------------------------------------------------
-
- By default, the namespace is empty, which means it must be
- specified before evaluating the design matrix.
-
- When it is unambiguous, the namespaces of objects are derived from the
- context.
-
- Rules:
- ------
-
- i) "X * I", "X + I", "X**i": these inherit X's namespace
- ii) "F.main_effect()": this inherits the Factor F's namespace
- iii) "A-B": this inherits A's namespace
- iv) if A.namespace == B.namespace, then A+B inherits this namespace
- v) if A.namespace == B.namespace, then A*B inherits this namespace
-
- Equality of namespaces:
- -----------------------
-
- This is done by comparing the namespaces directly, if
- an exception is raised in the check of equality, they are
- assumed not to be equal.
- """
-
- def __pow__(self, power):
- """
- Raise the quantitative term's values to an integer power, i.e.
- polynomial.
- """
-
- try:
- power = float(power)
- except:
- raise ValueError, 'expecting a float'
-
- if power == int(power):
- name = '%s^%d' % (self.name, int(power))
- else:
- name = '%s^%0.2f' % (self.name, power)
-
- value = Quantitative(name, func=self, transform=lambda x: np.power(x, power))
- value.power = power
- value.namespace = self.namespace
- return value
-
- def __init__(self, name, func=None, termname=None):
-
- self.name = name
- self.__namespace = None
- if termname is None:
- self.termname = name
- else:
- self.termname = termname
-
- if type(self.termname) is not types.StringType:
- raise ValueError, 'expecting a string for termname'
- if func:
- self.func = func
-
- # Namespace in which self.name will be looked up in, if needed
-
- def _get_namespace(self):
- if isinstance(self.__namespace, np.ndarray):
- return self.__namespace
- else: return self.__namespace or default_namespace
-
- def _set_namespace(self, value): self.__namespace = value
- def _del_namespace(self): del self.__namespace
- namespace = property(_get_namespace, _set_namespace, _del_namespace)
-
- def __str__(self):
- """
- '' % self.termname
- """
- return '' % self.termname
-
- def __add__(self, other):
- """
- Formula(self) + Formula(other)
- """
- fother = Formula(other, namespace=other.namespace)
- f = fother + self
- if _namespace_equal(fother.namespace, self.namespace):
- f.namespace = self.namespace
- return f
-
- def __mul__(self, other):
- """
- Formula(self) * Formula(other)
- """
-
- if type(other) is Term and other.name is 'intercept':
- f = Formula(self, namespace=self.namespace)
- elif self.name is 'intercept':
- f = Formula(other, namespace=other.namespace)
- else:
- other = Formula(other, namespace=other.namespace)
- f = other * self
- if _namespace_equal(other.namespace, self.namespace):
- f.namespace = self.namespace
- return f
-
- def names(self):
- """
- Return the names of the columns in design associated to the terms,
- i.e. len(self.names()) = self().shape[0].
- """
- if type(self.name) is types.StringType:
- return [self.name]
- else:
- return list(self.name)
-
- def __call__(self, *args, **kw):
- """
- Return the columns associated to self in a design matrix.
- If the term has no 'func' attribute, it returns
- ``self.namespace[self.termname]``
- else, it returns
- ``self.func(*args, **kw)``
- """
-
- if not hasattr(self, 'func'):
- val = self.namespace[self.termname]
- else:
- val = self.func
- if callable(val):
- if isinstance(val, (Term, Formula)):
- val = copy.copy(val)
- val.namespace = self.namespace
- val = val(*args, **kw)
-
- val = np.asarray(val)
- return np.squeeze(val)
-
-class Factor(Term):
- """A categorical factor."""
-
- def __init__(self, termname, keys, ordinal=False):
- """
- Factor is initialized with keys, representing all valid
- levels of the factor.
-
- If ordinal is False, keys can have repeats: set(keys) is what is
- used.
-
- If ordinal is True, the order is taken from the keys, and
- there should be no repeats.
- """
-
- if not ordinal:
- self.keys = list(set(keys))
- self.keys.sort()
- else:
- self.keys = keys
- if len(set(keys)) != len(list(keys)):
- raise ValueError, 'keys for ordinal Factor should be unique, in increasing order'
- self._name = termname
- self.termname = termname
- self.ordinal = ordinal
-
- if self.ordinal:
- name = self.termname
- else:
- name = ['(%s==%s)' % (self.termname, str(key)) for key in self.keys]
-
- Term.__init__(self, name, termname=self.termname, func=self.get_columns)
-
- def get_columns(self, *args, **kw):
- """
- Calling function for factor instance.
- """
-
- v = self.namespace[self._name]
- while True:
- if callable(v):
- if isinstance(v, (Term, Formula)):
- v = copy.copy(v)
- v.namespace = self.namespace
- v = v(*args, **kw)
- else: break
-
- n = len(v)
-
- if self.ordinal:
- col = [float(self.keys.index(v[i])) for i in range(n)]
- return np.array(col)
-
- else:
- value = []
- for key in self.keys:
- col = [float((v[i] == key)) for i in range(n)]
- value.append(col)
- return np.array(value)
-
- def values(self, *args, **kw):
- """
- Return the keys of the factor, rather than the columns of the design
- matrix.
- """
-
- del(self.func)
- val = self(*args, **kw)
- self.func = self.get_columns
- return val
-
- def verify(self, values):
- """
- Verify that all values correspond to valid keys in self.
- """
- s = set(values)
- if not s.issubset(self.keys):
- raise ValueError, 'unknown keys in values'
-
- def __add__(self, other):
- """
- Formula(self) + Formula(other)
-
- When adding \'intercept\' to a factor, this just returns
-
- Formula(self, namespace=self.namespace)
-
- """
-
- if type(other) is Term and other.name is 'intercept':
- return Formula(self, namespace=self.namespace)
- else:
- return Term.__add__(self, other)
-
- def main_effect(self, reference=None):
- """
- Return the 'main effect' columns of a factor, choosing
- an optional reference key.
-
- The reference key can be one of the keys of the Factor,
- or an integer, representing which column to remove.
- It defaults to 0.
-
- """
-
- names = self.names()
-
- if reference is None:
- reference = 0
- else:
- try:
- reference = self.keys.index(reference)
- except ValueError:
- reference = int(reference)
-
- def maineffect_func(value, reference=reference):
- rvalue = []
- keep = range(value.shape[0])
- keep.pop(reference)
- for i in range(len(keep)):
- rvalue.append(value[keep[i]] - value[reference])
- return np.array(rvalue)
-
- keep = range(len(self.names()))
- keep.pop(reference)
- __names = self.names()
- _names = ['%s-%s' % (__names[keep[i]], __names[reference]) for i in range(len(keep))]
- value = Quantitative(_names, func=self,
- termname='%s:maineffect' % self.termname,
- transform=maineffect_func)
- value.namespace = self.namespace
- return value
-
- def __getitem__(self, key):
- """
- Retrieve the column corresponding to key in a Formula.
-
- :Parameters:
- key : one of the Factor's keys
-
- :Returns: ndarray corresponding to key, when evaluated in
- current namespace
- """
- if not self.ordinal:
- i = self.names().index('(%s==%s)' % (self.termname, str(key)))
- return self()[i]
- else:
- v = self.namespace[self._name]
- return np.array([(vv == key) for vv in v]).astype(np.float)
-
-
-class Quantitative(Term):
- """
- A subclass of term that can be used to apply point transformations
- of another term, i.e. to take powers:
-
- >>> import numpy as np
- >>> from nipy.fixes.scipy.stats.models import formula
- >>> X = np.linspace(0,10,101)
- >>> x = formula.Term('X')
- >>> x.namespace={'X':X}
- >>> x2 = x**2
- >>> print np.allclose(x()**2, x2())
- True
- >>> x3 = formula.Quantitative('x2', func=x, transform=lambda x: x**2)
- >>> x3.namespace = x.namespace
- >>> print np.allclose(x()**2, x3())
- True
-
- """
-
- def __init__(self, name, func=None, termname=None, transform=lambda x: x):
- self.transform = transform
- Term.__init__(self, name, func=func, termname=termname)
-
- def __call__(self, *args, **kw):
- """
- A quantitative is just like term, except there is an additional
- transformation: self.transform.
-
- """
- return self.transform(Term.__call__(self, *args, **kw))
-
-class Formula(object):
- """
- A formula object for manipulating design matrices in regression models,
- essentially consisting of a list of term instances.
-
- The object supports addition and multiplication which correspond
- to concatenation and pairwise multiplication, respectively,
- of the columns of the two formulas.
-
- """
-
- def _get_namespace(self):
- if isinstance(self.__namespace, np.ndarray):
- return self.__namespace
- else: return self.__namespace or default_namespace
-
- def _set_namespace(self, value): self.__namespace = value
- def _del_namespace(self): del self.__namespace
- namespace = property(_get_namespace, _set_namespace, _del_namespace)
-
- def _terms_changed(self):
- self._names = self.names()
- self._termnames = self.termnames()
-
- def __init__(self, termlist, namespace=default_namespace):
- """
- Create a formula from either:
- i. a `formula` object
- ii. a sequence of `term` instances
- iii. one `term`
- """
-
-
- self.__namespace = namespace
- if isinstance(termlist, Formula):
- self.terms = copy.copy(list(termlist.terms))
- elif type(termlist) is types.ListType:
- self.terms = termlist
- elif isinstance(termlist, Term):
- self.terms = [termlist]
- else:
- raise ValueError
-
- self._terms_changed()
-
- def __str__(self):
- """
- String representation of list of termnames of a formula.
- """
- value = []
- for term in self.terms:
- value += [term.termname]
- return '' % ' + '.join(value)
-
- def __call__(self, *args, **kw):
-
- """
- Create (transpose) of the design matrix of the formula within
- namespace. Extra arguments are passed to each term instance. If
- the formula just contains an intercept, then the keyword
- argument 'nrow' indicates the number of rows (observations).
- """
-
- if 'namespace' in kw:
- namespace = kw['namespace']
- else:
- namespace = self.namespace
-
-
- allvals = []
- intercept = False
- iindex = 0
- for t in self.terms:
- t = copy.copy(t)
- t.namespace = namespace
- val = t(*args, **kw)
-
- isintercept = False
- if hasattr(t, "termname"):
- if t.termname == 'intercept':
- intercept = True
- isintercept = True
- interceptindex = iindex
- allvals.append(None)
-
- if val.ndim == 1 and not isintercept:
- val.shape = (1, val.shape[0])
- allvals.append(val)
- elif not isintercept:
- allvals.append(val)
- iindex += 1
-
- if not intercept:
- try:
- allvals = np.concatenate(allvals)
- except:
- pass
- else:
- nrow = kw.get('nrow', -1)
- if allvals != []:
- if interceptindex > 0:
- n = allvals[0].shape[1]
- else:
- n = allvals[1].shape[1]
- allvals[interceptindex] = np.ones((1,n), np.float64)
- allvals = np.concatenate(allvals)
- elif nrow <= 1:
- raise ValueError, 'with only intercept in formula, keyword \'nrow\' argument needed'
- else:
- allvals = I(nrow=nrow)
- allvals.shape = (1,) + allvals.shape
- return np.squeeze(allvals)
-
- def hasterm(self, query_term):
- """
- Determine whether a given term is in a formula.
- """
-
- if not isinstance(query_term, Formula):
- if type(query_term) == type("name"):
- try:
- query = self[query_term]
- return query.termname in self.termnames()
- except:
- return False
- elif isinstance(query_term, Term):
- return query_term.termname in self.termnames()
- elif len(query_term.terms) == 1:
- query_term = query_term.terms[0]
- return query_term.termname in self.termnames()
- else:
- raise ValueError, 'more than one term passed to hasterm'
-
- def __getitem__(self, name):
- t = self.termnames()
- if name in t:
- return self.terms[t.index(name)]
- else:
- raise KeyError, 'formula has no such term: %s' % repr(name)
-
- def termcolumns(self, query_term, dict=False):
- """
- Return a list of the indices of all columns associated
- to a given term.
- """
-
- if self.hasterm(query_term):
- names = query_term.names()
- value = {}
- for name in names:
- value[name] = self._names.index(name)
- else:
- raise ValueError, 'term not in formula'
- if dict:
- return value
- else:
- return value.values()
-
- def names(self):
- """
- Return a list of the names in the formula. The order of the
- names corresponds to the order of the columns when self
- is evaluated.
- """
-
- allnames = []
- for term in self.terms:
- allnames += term.names()
- return allnames
-
- def termnames(self):
- """
- Return a list of the term names in the formula. These
- are the names of each term instance in self.
- """
-
- names = []
- for term in self.terms:
- names += [term.termname]
- return names
-
- def design(self, *args, **kw):
- """
- ``transpose(self(*args, **kw))``
- """
- return self(*args, **kw).T
-
- def __mul__(self, other, nested=False):
- """
- This returns a formula whose columns are the pairwise
- product of the columns of self and other.
-
- TO DO: check for nesting relationship. Should not be too difficult.
- """
-
- other = Formula(other)
-
- selftermnames = self.termnames()
- othertermnames = other.termnames()
-
- I = len(selftermnames)
- J = len(othertermnames)
-
- terms = []
- termnames = []
-
- for i in range(I):
- for j in range(J):
- termname = '%s*%s' % (str(selftermnames[i]), str(othertermnames[j]))
- pieces = termname.split('*')
- pieces.sort()
- termname = '*'.join(pieces)
- termnames.append(termname)
-
- selfnames = self.terms[i].names()
- othernames = other.terms[j].names()
-
- if self.terms[i].name is 'intercept':
- _term = other.terms[j]
- _term.namespace = other.namespace
- elif other.terms[j].name is 'intercept':
- _term = self.terms[i]
- _term.namespace = self.namespace
- else:
- names = []
-
- d1 = len(selfnames)
- d2 = len(othernames)
-
- for r in range(d1):
- for s in range(d2):
- name = '%s*%s' % (str(selfnames[r]), str(othernames[s]))
- pieces = name.split('*')
- pieces.sort()
- name = '*'.join(pieces)
- names.append(name)
-
- def product_func(value, d1=d1, d2=d2):
-
- out = []
- for r in range(d1):
- for s in range(d2):
- out.append(value[r] * value[d1+s])
- return np.array(out)
-
- cself = copy.copy(self.terms[i])
- cother = copy.copy(other.terms[j])
- sumterms = cself + cother
- sumterms.terms = [cself, cother] # enforce the order we want
-
- _term = Quantitative(names, func=sumterms,
- termname=termname,
- transform=product_func)
-
- if _namespace_equal(self.namespace, other.namespace):
- _term.namespace = self.namespace
-
- terms.append(_term)
-
- return Formula(terms)
-
- def __add__(self, other):
-
- """
- Return a formula whose columns are the
- concatenation of the columns of self and other.
-
- terms in the formula are sorted alphabetically.
- """
-
- other = Formula(other)
- terms = self.terms + other.terms
- pieces = [(term.name, term) for term in terms]
- pieces.sort()
- terms = [piece[1] for piece in pieces]
- f = Formula(terms)
- if _namespace_equal(self.namespace, other.namespace):
- f.namespace = self.namespace
- return f
-
- def __sub__(self, other):
-
- """
- Return a formula with all terms in other removed from self.
- If other contains term instances not in formula, this
- function does not raise an exception.
- """
-
- other = Formula(other)
- terms = copy.copy(self.terms)
-
- for term in other.terms:
- for i in range(len(terms)):
- if terms[i].termname == term.termname:
- terms.pop(i)
- break
- f = Formula(terms)
- f.namespace = self.namespace
- return f
-
-def isnested(A, B, namespace=None):
- """
- Is factor B nested within factor A or vice versa: a very crude test
- which depends on the namespace.
-
- If they are nested, returns (True, F) where F is the finest
- level of the relationship. Otherwise, returns (False, None)
-
- """
-
- if namespace is not None:
- A = copy.copy(A); A.namespace = namespace
- B = copy.copy(B); B.namespace = namespace
-
- a = A(values=True)[0]
- b = B(values=True)[0]
-
- if len(a) != len(b):
- raise ValueError, 'A() and B() should be sequences of the same length'
-
- nA = len(set(a))
- nB = len(set(b))
- n = max(nA, nB)
-
- AB = [(a[i],b[i]) for i in range(len(a))]
- nAB = len(set(AB))
-
- if nAB == n:
- if nA > nB:
- F = A
- else:
- F = B
- return (True, F)
- else:
- return (False, None)
-
-def _intercept_fn(nrow=1, **extra):
- return np.ones((1,nrow))
-
-I = Term('intercept', func=_intercept_fn)
-I.__doc__ = """
-Intercept term in a formula. If intercept is the
-only term in the formula, then a keyword argument
-\'nrow\' is needed.
-
->>> from nipy.fixes.scipy.stats.models.formula import Formula, I
->>> I()
-array(1.0)
->>> I(nrow=5)
-array([ 1., 1., 1., 1., 1.])
->>> f=Formula(I)
->>> f(nrow=5)
-array([1, 1, 1, 1, 1])
-
-"""
-
-def interactions(terms, order=[1,2]):
- """
- Output all pairwise interactions of given order of a
- sequence of terms.
-
- The argument order is a sequence specifying which order
- of interactions should be generated -- the default
- creates main effects and two-way interactions. If order
- is an integer, it is changed to range(1,order+1), so
- order=3 is equivalent to order=[1,2,3], generating
- all one, two and three-way interactions.
-
- If any entry of order is greater than len(terms), it is
- effectively treated as len(terms).
-
- >>> print interactions([Term(l) for l in ['a', 'b', 'c']])
-
- >>>
- >>> print interactions([Term(l) for l in ['a', 'b', 'c']], order=range(5))
-
- >>>
-
- """
- l = len(terms)
-
- values = {}
-
- if np.asarray(order).shape == ():
- order = range(1, int(order)+1)
-
- # First order
-
- for o in order:
- I = np.indices((l,)*(o))
- I.shape = (I.shape[0], np.product(I.shape[1:]))
- for m in range(I.shape[1]):
-
- # only keep combinations that have unique entries
-
- if (np.unique(I[:,m]).shape == I[:,m].shape and
- np.alltrue(np.equal(np.sort(I[:,m]), I[:,m]))):
- ll = [terms[j] for j in I[:,m]]
- v = ll[0]
- for ii in range(len(ll)-1):
- v *= ll[ii+1]
- values[tuple(I[:,m])] = v
-
- key = values.keys()[0]
- value = values[key]; del(values[key])
-
- for v in values.values():
- value += v
- return value
-
-def _namespace_equal(space1, space2):
- return space1 is space2
diff --git a/statsmodels/scikits/statsmodels/sandbox/gam.py b/statsmodels/scikits/statsmodels/sandbox/gam.py
deleted file mode 100644
index 2845552..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/gam.py
+++ /dev/null
@@ -1,216 +0,0 @@
-"""
-Generalized additive models
-
-"""
-
-# JP:
-# changes: use PolySmoother instead of crashing bspline
-# TODO: check/catalogue required interface of a smoother
-# TODO: replace default smoother by corresponding function to initialize
-# other smoothers
-# TODO: fix iteration, don't define class with iterator methods, use looping;
-# add maximum iteration and other optional stop criteria
-# fixed some of the dimension problems in PolySmoother,
-# now graph for example looks good
-# NOTE: example script is now in examples folder
-
-import numpy as np
-
-from scikits.statsmodels.genmod.families import family
-from smoothers import PolySmoother as SmoothingSpline # relative import
-from scikits.statsmodels.genmod.glm import GLM
-
-def default_smoother(x):
- _x = x.copy()
- _x.sort()
- n = x.shape[0]
- # taken form smooth.spline in R
-
- if n < 50:
- nknots = n
- else:
- a1 = np.log(50) / np.log(2)
- a2 = np.log(100) / np.log(2)
- a3 = np.log(140) / np.log(2)
- a4 = np.log(200) / np.log(2)
- if n < 200:
- nknots = 2**(a1 + (a2 - a1) * (n - 50)/150.)
- elif n < 800:
- nknots = 2**(a2 + (a3 - a2) * (n - 200)/600.)
- elif n < 3200:
- nknots = 2**(a3 + (a4 - a3) * (n - 800)/2400.)
- else:
- nknots = 200 + (n - 3200.)**0.2
- knots = _x[np.linspace(0, n-1, nknots).astype(np.int32)]
-
- s = SmoothingSpline(knots, x=x.copy())
- s.gram(d=2)
- s.target_df = 5
- return s
-
-class Offset(object):
-
- def __init__(self, fn, offset):
- self.fn = fn
- self.offset = offset
-
- def __call__(self, *args, **kw):
- return self.fn(*args, **kw) + self.offset
-
-class Results(object):
-
- def __init__(self, Y, alpha, design, smoothers, family, offset):
- self.Y = Y
- self.alpha = alpha
- self.smoothers = smoothers
- self.offset = offset
- self.family = family
- self.design = design
- self.offset = offset
- self.mu = self(design)
-
- def __call__(self, design):
- return self.family.link.inverse(self.predict(design))
-
- def predict(self, design):
- return np.sum(self.smoothed(design), axis=0) + self.alpha
-
- def smoothed(self, design):
- return np.array([self.smoothers[i]() + self.offset[i] for i in range(design.shape[1])])
-
-class AdditiveModel(object):
-
- def __init__(self, design, smoothers=None, weights=None):
- self.design = design
- if not weights is None:
- self.weights = weights
- else:
- self.weights = np.ones(self.design.shape[0])
-
- self.smoothers = smoothers or [default_smoother(design[:,i]) for i in range(design.shape[1])]
- for i in range(design.shape[1]):
- self.smoothers[i].df = 10
- self.family = family.Gaussian()
-
- def __iter__(self):
- self.iter = 0
- self.dev = np.inf
- return self
-
- def next(self):
- _results = self.results; Y = self.results.Y
- mu = _results.predict(self.design)
- offset = np.zeros(self.design.shape[1], np.float64)
- alpha = (Y * self.weights).sum() / self.weights.sum()
- for i in range(self.design.shape[1]):
- tmp = self.smoothers[i]()
- self.smoothers[i].smooth(Y - alpha - mu + tmp,
- weights=self.weights)
- tmp2 = self.smoothers[i]()
- offset[i] = -(tmp2*self.weights).sum() / self.weights.sum()
- mu += tmp2 - tmp
-
- #print self.iter
- #self.iter += 1 #missing incrementing of iter counter NOT
- return Results(Y, alpha, self.design, self.smoothers, self.family, offset)
-
- def cont(self, tol=1.0e-04):
- self.iter += 1 #moved here to always count, not necessary
- print self.iter,
- curdev = (((self.results.Y - self.results.predict(self.design))**2) * self.weights).sum()
-
- if self.iter > 30: #kill it, no max iterationoption
- return False
- if np.fabs((self.dev - curdev) / curdev) < tol:
- self.dev = curdev
- return False
-
- #self.iter += 1
- self.dev = curdev
- return True
-
- def df_resid(self):
- return self.results.Y.shape[0] - np.array([self.smoothers[i].df_fit() for i in range(self.design.shape[1])]).sum()
-
- def estimate_scale(self):
- return ((self.results.Y - self.results(self.design))**2).sum() / self.df_resid()
-
- def fit(self, Y):
- iter(self) # what does this do? anything?
- mu = 0
- alpha = (Y * self.weights).sum() / self.weights.sum()
-
- offset = np.zeros(self.design.shape[1], np.float64)
-
- for i in range(self.design.shape[1]):
- self.smoothers[i].smooth(Y - alpha - mu,
- weights=self.weights)
- tmp = self.smoothers[i]()
- offset[i] = (tmp * self.weights).sum() / self.weights.sum()
- tmp -= tmp.sum()
- mu += tmp
-
- self.results = Results(Y, alpha, self.design, self.smoothers, self.family, offset)
-
- while self.cont():
- self.results = self.next()
-
- return self.results
-
-class Model(GLM, AdditiveModel):
-
- niter = 2
-
-# def __init__(self, design, smoothers=None, family=family.Gaussian()):
-# GLM.__init__(self, design, family=family)
-# AdditiveModel.__init__(self, design, smoothers=smoothers)
-# self.family = family
- def __init__(self, endog, exog, smoothers=None, family=family.Gaussian()):
- GLM.__init__(self, endog, exog, family=family)
- AdditiveModel.__init__(self, exog, smoothers=smoothers)
-
- def next(self):
- _results = self.results; Y = _results.Y
- if np.isnan(self.weights).all(): print "nanweights1"
- _results.mu = self.family.link.inverse(_results.predict(self.design))
- weights = self.family.weights(_results.mu)
- if np.isnan(weights).all():
- self.weights = weights
- print "nanweights2"
- Z = _results.predict(self.design) + self.family.link.deriv(_results.mu) * (Y - _results.mu)
- m = AdditiveModel(self.design, smoothers=self.smoothers, weights=self.weights)
- _results = m.fit(Z)
- _results.Y = Y
- _results.mu = self.family.link.inverse(_results.predict(self.design))
- self.iter += 1
- self.results = _results
-
- return _results
-
- def estimate_scale(self, Y=None):
- """
- Return Pearson\'s X^2 estimate of scale.
- """
-
- if Y is None:
- Y = self.Y
- resid = Y - self.results.mu
- return (np.power(resid, 2) / self.family.variance(self.results.mu)).sum() / AdditiveModel.df_resid(self)
-
- def fit(self, Y):
- self.Y = np.asarray(Y, np.float64)
-
- iter(self)
- alpha = self.Y.mean()
- Z = self.family.link(alpha) + self.family.link.deriv(alpha) * (Y - alpha)
- m = AdditiveModel(self.design, smoothers=self.smoothers)
- self.results = m.fit(Z)
- self.results.mu = self.family.link.inverse(self.results.predict(self.design))
- self.results.Y = Y
-
- while self.cont():
- self.results = self.next()
- self.scale = self.results.scale = self.estimate_scale()
-
-
- return self.results
diff --git a/statsmodels/scikits/statsmodels/sandbox/infotheo.py b/statsmodels/scikits/statsmodels/sandbox/infotheo.py
deleted file mode 100644
index 9b1232b..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/infotheo.py
+++ /dev/null
@@ -1,518 +0,0 @@
-"""
-Information Theoretic and Entropy Measures
-
-References
-----------
-Golan, As. 2008. "Information and Entropy Econometrics -- A Review and
- Synthesis." Foundations And Trends in Econometrics 2(1-2), 1-145.
-
-Golan, A., Judge, G., and Miller, D. 1996. Maximum Entropy Econometrics.
- Wiley & Sons, Chichester.
-"""
-#For MillerMadow correction
-#Miller, G. 1955. Note on the bias of information estimates. Info. Theory
-# Psychol. Prob. Methods II-B:95-100.
-
-#For ChaoShen method
-#Chao, A., and T.-J. Shen. 2003. Nonparametric estimation of Shannon's index of diversity when
-#there are unseen species in sample. Environ. Ecol. Stat. 10:429-443.
-#Good, I. J. 1953. The population frequencies of species and the estimation of population parameters.
-#Biometrika 40:237-264.
-#Horvitz, D.G., and D. J. Thompson. 1952. A generalization of sampling without replacement from a finute universe. J. Am. Stat. Assoc. 47:663-685.
-
-#For NSB method
-#Nemenman, I., F. Shafee, and W. Bialek. 2002. Entropy and inference, revisited. In: Dietterich, T.,
-#S. Becker, Z. Gharamani, eds. Advances in Neural Information Processing Systems 14: 471-478.
-#Cambridge (Massachusetts): MIT Press.
-
-#For shrinkage method
-#Dougherty, J., Kohavi, R., and Sahami, M. (1995). Supervised and unsupervised discretization of
-#continuous features. In International Conference on Machine Learning.
-#Yang, Y. and Webb, G. I. (2003). Discretization for naive-bayes learning: managing discretization
-#bias and variance. Technical Report 2003/131 School of Computer Science and Software Engineer-
-#ing, Monash University.
-
-from scipy import maxentropy, stats
-import numpy as np
-from matplotlib import pyplot as plt
-
-#TODO: change these to use maxentutils so that over/underflow is handled
-#with the logsumexp.
-
-from scipy.maxentropy import logsumexp as lse
-
-def logsumexp(a, axis=None):
- """
- Compute the log of the sum of exponentials log(e^{a_1}+...e^{a_n}) of a
-
- Avoids numerical overflow.
-
- Parameters
- ----------
- a : array-like
- The vector to exponentiate and sum
- axis : int, optional
- The axis along which to apply the operation. Defaults is None.
-
- Returns
- -------
- sum(log(exp(a)))
-
- Notes
- -----
- This function was taken from the mailing list
- http://mail.scipy.org/pipermail/scipy-user/2009-October/022931.html
-
- This should be superceded by the ufunc when it is finished.
- """
- if axis is None:
- # Use the scipy.maxentropy version.
- return lse(a)
- a = asarray(a)
- shp = list(a.shape)
- shp[axis] = 1
- a_max = a.max(axis=axis)
- s = log(exp(a - a_max.reshape(shp)).sum(axis=axis))
- lse = a_max + s
- return lse
-
-
-def _isproperdist(X):
- """
- Checks to see if `X` is a proper probability distribution
- """
- X = np.asarray(X)
- if not np.allclose(np.sum(X), 1) or not np.all(X>=0) or not np.all(X<=1):
- return False
- else:
- return True
-
-def discretize(X, method="ef", nbins=None):
- """
- Discretize `X`
-
- Parameters
- ----------
- bins : int, optional
- Number of bins. Default is floor(sqrt(N))
- method : string
- "ef" is equal-frequency binning
- "ew" is equal-width binning
-
- Examples
- --------
- """
- nobs = len(X)
- if nbins == None:
- nbins = np.floor(np.sqrt(nobs))
- if method == "ef":
- discrete = np.ceil(nbins * stats.rankdata(X)/nobs)
- if method == "ew":
- width = np.max(X) - np.min(X)
- width = np.floor(width/nbins)
- svec, ivec = stats.fastsort(X)
- discrete = np.zeros(nobs)
- binnum = 1
- base = svec[0]
- discrete[ivec[0]] = binnum
- for i in xrange(1,nobs):
- if svec[i] < base + width:
- discrete[ivec[i]] = binnum
- else:
- base = svec[i]
- binnum += 1
- discrete[ivec[i]] = binnum
- return discrete
-#TODO: looks okay but needs more robust tests for corner cases
-
-
-
-def logbasechange(a,b):
- """
- There is a one-to-one transformation of the entropy value from
- a log base b to a log base a :
-
- H_{b}(X)=log_{b}(a)[H_{a}(X)]
-
- Returns
- -------
- log_{b}(a)
- """
- return np.log(b)/np.log(a)
-
-def natstobits(X):
- """
- Converts from nats to bits
- """
- return logbasechange(np.e, 2) * X
-
-def bitstonats(X):
- """
- Converts from bits to nats
- """
- return logbasechange(2, np.e) * X
-
-#TODO: make this entropy, and then have different measures as
-#a method
-def shannonentropy(px, logbase=2):
- """
- This is Shannon's entropy
-
- Parameters
- -----------
- logbase, int or np.e
- The base of the log
- px : 1d or 2d array_like
- Can be a discrete probability distribution, a 2d joint distribution,
- or a sequence of probabilities.
-
- Returns
- -----
- For log base 2 (bits) given a discrete distribution
- H(p) = sum(px * log2(1/px) = -sum(pk*log2(px)) = E[log2(1/p(X))]
-
- For log base 2 (bits) given a joint distribution
- H(px,py) = -sum_{k,j}*w_{kj}log2(w_{kj})
-
- Notes
- -----
- shannonentropy(0) is defined as 0
- """
-#TODO: haven't defined the px,py case?
- px = np.asarray(px)
- if not np.all(px <= 1) or not np.all(px >= 0):
- raise ValueError, "px does not define proper distribution"
- entropy = -np.sum(np.nan_to_num(px*np.log2(px)))
- if logbase != 2:
- return logbasechange(2,logbase) * entropy
- else:
- return entropy
-
-# Shannon's information content
-def shannoninfo(px, logbase=2):
- """
- Shannon's information
-
- Parameters
- ----------
- px : float or array-like
- `px` is a discrete probability distribution
-
- Returns
- -------
- For logbase = 2
- np.log2(px)
- """
- px = np.asarray(px)
- if not np.all(px <= 1) or not np.all(px >= 0):
- raise ValueError, "px does not define proper distribution"
- if logbase != 2:
- return - logbasechange(2,logbase) * np.log2(px)
- else:
- return - np.log2(px)
-
-def condentropy(px, py, pxpy=None, logbase=2):
- """
- Return the conditional entropy of X given Y.
-
- Parameters
- ----------
- px : array-like
- py : array-like
- pxpy : array-like, optional
- If pxpy is None, the distributions are assumed to be independent
- and conendtropy(px,py) = shannonentropy(px)
- logbase : int or np.e
-
- Returns
- -------
- sum_{kj}log(q_{j}/w_{kj}
-
- where q_{j} = Y[j]
- and w_kj = X[k,j]
- """
- if not _isproperdist(px) or not _isproperdist(py):
- raise ValueError, "px or py is not a proper probability distribution"
- if pxpy != None and not _isproperdist(pxpy):
- raise ValueError, "pxpy is not a proper joint distribtion"
- if pxpy == None:
- pxpy = np.outer(py,px)
- condent = np.sum(pxpy * np.nan_to_num(np.log2(py/pxpy)))
- if logbase == 2:
- return condent
- else:
- return logbasechange(2, logbase) * condent
-
-def mutualinfo(px,py,pxpy, logbase=2):
- """
- Returns the mutual information between X and Y.
-
- Parameters
- ----------
- px : array-like
- Discrete probability distribution of random variable X
- py : array-like
- Discrete probability distribution of random variable Y
- pxpy : 2d array-like
- The joint probability distribution of random variables X and Y.
- Note that if X and Y are independent then the mutual information
- is zero.
- logbase : int or np.e, optional
- Default is 2 (bits)
-
- Returns
- -------
- shannonentropy(px) - condentropy(px,py,pxpy)
- """
- if not _isproperdist(px) or not _isproperdist(py):
- raise ValueError, "px or py is not a proper probability distribution"
- if pxpy != None and not _isproperdist(pxpy):
- raise ValueError, "pxpy is not a proper joint distribtion"
- if pxpy == None:
- pxpy = np.outer(py,px)
- return shannonentropy(px, logbase=logbase) - condentropy(px,py,pxpy,
- logbase=logbase)
-
-def corrent(px,py,pxpy,logbase=2):
- """
- An information theoretic correlation measure.
-
- Reflects linear and nonlinear correlation between two random variables
- X and Y, characterized by the discrete probability distributions px and py
- respectively.
-
- Parameters
- ----------
- px : array-like
- Discrete probability distribution of random variable X
- py : array-like
- Discrete probability distribution of random variable Y
- pxpy : 2d array-like, optional
- Joint probability distribution of X and Y. If pxpy is None, X and Y
- are assumed to be independent.
- logbase : int or np.e, optional
- Default is 2 (bits)
-
- Returns
- -------
- mutualinfo(px,py,pxpy,logbase=logbase)/shannonentropy(py,logbase=logbase)
-
- Notes
- -----
- This is also equivalent to
-
- corrent(px,py,pxpy) = 1 - condent(px,py,pxpy)/shannonentropy(py)
- """
- if not _isproperdist(px) or not _isproperdist(py):
- raise ValueError, "px or py is not a proper probability distribution"
- if pxpy != None and not _isproperdist(pxpy):
- raise ValueError, "pxpy is not a proper joint distribtion"
- if pxpy == None:
- pxpy = np.outer(py,px)
-
- return mutualinfo(px,py,pxpy,logbase=logbase)/shannonentropy(py,
- logbase=logbase)
-
-def covent(px,py,pxpy,logbase=2):
- """
- An information theoretic covariance measure.
-
- Reflects linear and nonlinear correlation between two random variables
- X and Y, characterized by the discrete probability distributions px and py
- respectively.
-
- Parameters
- ----------
- px : array-like
- Discrete probability distribution of random variable X
- py : array-like
- Discrete probability distribution of random variable Y
- pxpy : 2d array-like, optional
- Joint probability distribution of X and Y. If pxpy is None, X and Y
- are assumed to be independent.
- logbase : int or np.e, optional
- Default is 2 (bits)
-
- Returns
- -------
- condent(px,py,pxpy,logbase=logbase) + condent(py,px,pxpy,
- logbase=logbase)
-
- Notes
- -----
- This is also equivalent to
-
- covent(px,py,pxpy) = condent(px,py,pxpy) + condent(py,px,pxpy)
- """
- if not _isproperdist(px) or not _isproperdist(py):
- raise ValueError, "px or py is not a proper probability distribution"
- if pxpy != None and not _isproperdist(pxpy):
- raise ValueError, "pxpy is not a proper joint distribtion"
- if pxpy == None:
- pxpy = np.outer(py,px)
-
- return condent(px,py,pxpy,logbase=logbase) + condent(py,px,pxpy,
- logbase=logbase)
-
-
-#### Generalized Entropies ####
-
-def renyientropy(px,alpha=1,logbase=2,measure='R'):
- """
- Renyi's generalized entropy
-
- Parameters
- ----------
- px : array-like
- Discrete probability distribution of random variable X. Note that
- px is assumed to be a proper probability distribution.
- logbase : int or np.e, optional
- Default is 2 (bits)
- alpha : float or inf
- The order of the entropy. The default is 1, which in the limit
- is just Shannon's entropy. 2 is Renyi (Collision) entropy. If
- the string "inf" or numpy.inf is specified the min-entropy is returned.
- measure : str, optional
- The type of entropy measure desired. 'R' returns Renyi entropy
- measure. 'T' returns the Tsallis entropy measure.
-
- Returns
- -------
- 1/(1-alpha)*log(sum(px**alpha))
-
- In the limit as alpha -> 1, Shannon's entropy is returned.
-
- In the limit as alpha -> inf, min-entropy is returned.
- """
-#TODO:finish returns
-#TODO:add checks for measure
- if not _isproperdist(px):
- raise ValueError, "px is not a proper probability distribution"
- alpha = float(alpha)
- if alpha == 1:
- genent = shannonentropy(px)
- if logbase != 2:
- return logbasechange(2, logbase) * genent
- return genent
- elif 'inf' in string(alpha).lower() or alpha == np.inf:
- return -np.log(np.max(px))
-
- # gets here if alpha != (1 or inf)
- px = px**alpha
- genent = np.log(px.sum())
- if logbase == 2:
- return 1/(1-alpha) * genent
- else:
- return 1/(1-alpha) * logbasechange(2, logbase) * genent
-
-#TODO: before completing this, need to rethink the organization of
-# (relative) entropy measures, ie., all put into one function
-# and have kwdargs, etc.?
-def gencrossentropy(px,py,pxpy,alpha=1,logbase=2, measure='T'):
- """
- Generalized cross-entropy measures.
-
- Parameters
- ----------
- px : array-like
- Discrete probability distribution of random variable X
- py : array-like
- Discrete probability distribution of random variable Y
- pxpy : 2d array-like, optional
- Joint probability distribution of X and Y. If pxpy is None, X and Y
- are assumed to be independent.
- logbase : int or np.e, optional
- Default is 2 (bits)
- measure : str, optional
- The measure is the type of generalized cross-entropy desired. 'T' is
- the cross-entropy version of the Tsallis measure. 'CR' is Cressie-Read
- measure.
-
- """
-
-
-if __name__ == "__main__":
- print "From Golan (2008) \"Information and Entropy Econometrics -- A Review \
-and Synthesis"
- print "Table 3.1"
- # Examples from Golan (2008)
-
- X = [.2,.2,.2,.2,.2]
- Y = [.322,.072,.511,.091,.004]
-
- for i in X:
- print shannoninfo(i)
- for i in Y:
- print shannoninfo(i)
- print shannonentropy(X)
- print shannonentropy(Y)
-
- p = [1e-5,1e-4,.001,.01,.1,.15,.2,.25,.3,.35,.4,.45,.5]
-
- plt.subplot(111)
- plt.ylabel("Information")
- plt.xlabel("Probability")
- x = np.linspace(0,1,100001)
- plt.plot(x, shannoninfo(x))
-# plt.show()
-
- plt.subplot(111)
- plt.ylabel("Entropy")
- plt.xlabel("Probability")
- x = np.linspace(0,1,101)
- plt.plot(x, map(shannonentropy, zip(x,1-x)))
-# plt.show()
-
- # define a joint probability distribution
- # from Golan (2008) table 3.3
- w = np.array([[0,0,1./3],[1/9.,1/9.,1/9.],[1/18.,1/9.,1/6.]])
- # table 3.4
- px = w.sum(0)
- py = w.sum(1)
- H_X = shannonentropy(px)
- H_Y = shannonentropy(py)
- H_XY = shannonentropy(w)
- H_XgivenY = condentropy(px,py,w)
- H_YgivenX = condentropy(py,px,w)
-# note that cross-entropy is not a distance measure as the following shows
- D_YX = logbasechange(2,np.e)*stats.entropy(px, py)
- D_XY = logbasechange(2,np.e)*stats.entropy(py, px)
- I_XY = mutualinfo(px,py,w)
- print "Table 3.3"
- print H_X,H_Y, H_XY, H_XgivenY, H_YgivenX, D_YX, D_XY, I_XY
-
- print "discretize functions"
- X=np.array([21.2,44.5,31.0,19.5,40.6,38.7,11.1,15.8,31.9,25.8,20.2,14.2,
- 24.0,21.0,11.3,18.0,16.3,22.2,7.8,27.8,16.3,35.1,14.9,17.1,28.2,16.4,
- 16.5,46.0,9.5,18.8,32.1,26.1,16.1,7.3,21.4,20.0,29.3,14.9,8.3,22.5,
- 12.8,26.9,25.5,22.9,11.2,20.7,26.2,9.3,10.8,15.6])
- discX = discretize(X)
- #CF: R's infotheo
-#TODO: compare to pyentropy quantize?
- print
- print "Example in section 3.6 of Golan, using table 3.3"
- print "Bounding errors using Fano's inequality"
- print "H(P_{e}) + P_{e}log(K-1) >= H(X|Y)"
- print "or, a weaker inequality"
- print "P_{e} >= [H(X|Y) - 1]/log(K)"
- print "P(x) = %s" % px
- print "X = 3 has the highest probability, so this is the estimate Xhat"
- pe = 1 - px[2]
- print "The probability of error Pe is 1 - p(X=3) = %0.4g" % pe
- H_pe = shannonentropy([pe,1-pe])
- print "H(Pe) = %0.4g and K=3" % H_pe
- print "H(Pe) + Pe*log(K-1) = %0.4g >= H(X|Y) = %0.4g" % \
- (H_pe+pe*np.log2(2), H_XgivenY)
- print "or using the weaker inequality"
- print "Pe = %0.4g >= [H(X) - 1]/log(K) = %0.4g" % (pe, (H_X - 1)/np.log2(3))
- print "Consider now, table 3.5, where there is additional information"
- print "The conditional probabilities of P(X|Y=y) are "
- w2 = np.array([[0.,0.,1.],[1/3.,1/3.,1/3.],[1/6.,1/3.,1/2.]])
- print w2
-# not a proper distribution?
- print "The probability of error given this information is"
- print "Pe = [H(X|Y) -1]/log(K) = %0.4g" % ((np.mean([0,shannonentropy(w2[1]),shannonentropy(w2[2])])-1)/np.log2(3))
- print "such that more information lowers the error"
-
-### Stochastic processes
- markovchain = np.array([[.553,.284,.163],[.465,.312,.223],[.420,.322,.258]])
diff --git a/statsmodels/scikits/statsmodels/sandbox/km_class.py b/statsmodels/scikits/statsmodels/sandbox/km_class.py
deleted file mode 100644
index 5eccd6d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/km_class.py
+++ /dev/null
@@ -1,239 +0,0 @@
-#a class for the Kaplan-Meier estimator
-import numpy as np
-from math import sqrt
-import matplotlib.pyplot as plt
-
-class KAPLAN_MEIER(object):
- def __init__(self, data, timesIn, groupIn, censoringIn):
- raise RuntimeError('Newer version of Kaplan-Meier class available in survival2.py')
- #store the inputs
- self.data = data
- self.timesIn = timesIn
- self.groupIn = groupIn
- self.censoringIn = censoringIn
-
- def fit(self):
- #split the data into groups based on the predicting variable
- #get a set of all the groups
- groups = list(set(self.data[:,self.groupIn]))
- #create an empty list to store the data for different groups
- groupList = []
- #create an empty list for each group and add it to groups
- for i in range(len(groups)):
- groupList.append([])
- #iterate through all the groups in groups
- for i in range(len(groups)):
- #iterate though the rows of dataArray
- for j in range(len(self.data)):
- #test if this row has the correct group
- if self.data[j,self.groupIn] == groups[i]:
- #add the row to groupList
- groupList[i].append(self.data[j])
- #create an empty list to store the times for each group
- timeList = []
- #iterate through all the groups
- for i in range(len(groupList)):
- #create an empty list
- times = []
- #iterate through all the rows of the group
- for j in range(len(groupList[i])):
- #get a list of all the times in the group
- times.append(groupList[i][j][self.timesIn])
- #get a sorted set of the times and store it in timeList
- times = list(sorted(set(times)))
- timeList.append(times)
- #get a list of the number at risk and events at each time
- #create an empty list to store the results in
- timeCounts = []
- #create an empty list to hold points for plotting
- points = []
- #create a list for points where censoring occurs
- censoredPoints = []
- #iterate trough each group
- for i in range(len(groupList)):
- #initialize a variable to estimate the survival function
- survival = 1
- #initialize a variable to estimate the variance of
- #the survival function
- varSum = 0
- #initialize a counter for the number at risk
- riskCounter = len(groupList[i])
- #create a list for the counts for this group
- counts = []
- ##create a list for points to plot
- x = []
- y = []
- #iterate through the list of times
- for j in range(len(timeList[i])):
- if j != 0:
- if j == 1:
- #add an indicator to tell if the time
- #starts a new group
- groupInd = 1
- #add (0,1) to the list of points
- x.append(0)
- y.append(1)
- #add the point time to the right of that
- x.append(timeList[i][j-1])
- y.append(1)
- #add the point below that at survival
- x.append(timeList[i][j-1])
- y.append(survival)
- #add the survival to y
- y.append(survival)
- else:
- groupInd = 0
- #add survival twice to y
- y.append(survival)
- y.append(survival)
- #add the time twice to x
- x.append(timeList[i][j-1])
- x.append(timeList[i][j-1])
- #add each censored time, number of censorings and
- #its survival to censoredPoints
- censoredPoints.append([timeList[i][j-1],
- censoringNum,survival,groupInd])
- #add the count to the list
- counts.append([timeList[i][j-1],riskCounter,
- eventCounter,survival,
- sqrt(((survival)**2)*varSum)])
- #increment the number at risk
- riskCounter += -1*(riskChange)
- #initialize a counter for the change in the number at risk
- riskChange = 0
- #initialize a counter to zero
- eventCounter = 0
- #intialize a counter to tell when censoring occurs
- censoringCounter = 0
- censoringNum = 0
- #iterate through the observations in each group
- for k in range(len(groupList[i])):
- #check of the observation has the given time
- if (groupList[i][k][self.timesIn]) == (timeList[i][j]):
- #increment the number at risk counter
- riskChange += 1
- #check if this is an event or censoring
- if groupList[i][k][self.censoringIn] == 1:
- #add 1 to the counter
- eventCounter += 1
- else:
- censoringNum += 1
- #check if there are any events at this time
- if eventCounter != censoringCounter:
- censoringCounter = eventCounter
- #calculate the estimate of the survival function
- survival *= ((float(riskCounter) -
- eventCounter)/(riskCounter))
- try:
- #calculate the estimate of the variance
- varSum += (eventCounter)/((riskCounter)
- *(float(riskCounter)-
- eventCounter))
- except ZeroDivisionError:
- varSum = 0
- #append the last row to counts
- counts.append([timeList[i][len(timeList[i])-1],
- riskCounter,eventCounter,survival,
- sqrt(((survival)**2)*varSum)])
- #add the last time once to x
- x.append(timeList[i][len(timeList[i])-1])
- x.append(timeList[i][len(timeList[i])-1])
- #add the last survival twice to y
- y.append(survival)
- #y.append(survival)
- censoredPoints.append([timeList[i][len(timeList[i])-1],
- censoringNum,survival,1])
- #add the list for the group to al ist for all the groups
- timeCounts.append(np.array(counts))
- points.append([x,y])
- #returns a list of arrays, where each array has as it columns: the time,
- #the number at risk, the number of events, the estimated value of the
- #survival function at that time, and the estimated standard error at
- #that time, in that order
- self.results = timeCounts
- self.points = points
- self.censoredPoints = censoredPoints
-
- def plot(self):
- x = []
- #iterate through the groups
- for i in range(len(self.points)):
- #plot x and y
- plt.plot(np.array(self.points[i][0]),np.array(self.points[i][1]))
- #create lists of all the x and y values
- x += self.points[i][0]
- for j in range(len(self.censoredPoints)):
- #check if censoring is occuring
- if (self.censoredPoints[j][1] != 0):
- #if this is the first censored point
- if (self.censoredPoints[j][3] == 1) and (j == 0):
- #calculate a distance beyond 1 to place it
- #so all the points will fit
- dx = ((1./((self.censoredPoints[j][1])+1.))
- *(float(self.censoredPoints[j][0])))
- #iterate through all the censored points at this time
- for k in range(self.censoredPoints[j][1]):
- #plot a vertical line for censoring
- plt.vlines((1+((k+1)*dx)),
- self.censoredPoints[j][2]-0.03,
- self.censoredPoints[j][2]+0.03)
- #if this censored point starts a new group
- elif ((self.censoredPoints[j][3] == 1) and
- (self.censoredPoints[j-1][3] == 1)):
- #calculate a distance beyond 1 to place it
- #so all the points will fit
- dx = ((1./((self.censoredPoints[j][1])+1.))
- *(float(self.censoredPoints[j][0])))
- #iterate through all the censored points at this time
- for k in range(self.censoredPoints[j][1]):
- #plot a vertical line for censoring
- plt.vlines((1+((k+1)*dx)),
- self.censoredPoints[j][2]-0.03,
- self.censoredPoints[j][2]+0.03)
- #if this is the last censored point
- elif j == (len(self.censoredPoints) - 1):
- #calculate a distance beyond the previous time
- #so that all the points will fit
- dx = ((1./((self.censoredPoints[j][1])+1.))
- *(float(self.censoredPoints[j][0])))
- #iterate through all the points at this time
- for k in range(self.censoredPoints[j][1]):
- #plot a vertical line for censoring
- plt.vlines((self.censoredPoints[j-1][0]+((k+1)*dx)),
- self.censoredPoints[j][2]-0.03,
- self.censoredPoints[j][2]+0.03)
- #if this is a point in the middle of the group
- else:
- #calcuate a distance beyond the current time
- #to place the point, so they all fit
- dx = ((1./((self.censoredPoints[j][1])+1.))
- *(float(self.censoredPoints[j+1][0])
- - self.censoredPoints[j][0]))
- #iterate through all the points at this time
- for k in range(self.censoredPoints[j][1]):
- #plot a vetical line for censoring
- plt.vlines((self.censoredPoints[j][0]+((k+1)*dx)),
- self.censoredPoints[j][2]-0.03,
- self.censoredPoints[j][2]+0.03)
- #set the size of the plot so it extends to the max x and above 1 for y
- plt.xlim((0,np.max(x)))
- plt.ylim((0,1.05))
- #label the axes
- plt.xlabel('time')
- plt.ylabel('survival')
- plt.show()
-
- def show_results(self):
- #start a string that will be a table of the results
- resultsString = ''
- #iterate through all the groups
- for i in range(len(self.results)):
- #label the group and header
- resultsString += ('Group {0}\n\n'.format(i) +
- 'Time At Risk Events Survival Std. Err\n')
- for j in self.results[i]:
- #add the results to the string
- resultsString += (
- '{0:<9d}{1:<12d}{2:<11d}{3:<13.4f}{4:<6.4f}\n'.format(
- int(j[0]),int(j[1]),int(j[2]),j[3],j[4]))
- print(resultsString)
diff --git a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/__init__.py b/statsmodels/scikits/statsmodels/sandbox/mcevaluate/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/arma.py b/statsmodels/scikits/statsmodels/sandbox/mcevaluate/arma.py
deleted file mode 100644
index 066ded5..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/arma.py
+++ /dev/null
@@ -1,147 +0,0 @@
-
-import numpy as np
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-from scikits.statsmodels.tsa.arma_mle import Arma
-
-
-#TODO: still refactoring problem with cov_x
-#copied from sandbox.tsa.arima.py
-def mcarma22(niter=10, nsample=1000, ar=None, ma=None, sig=0.5):
- '''run Monte Carlo for ARMA(2,2)
-
- DGP parameters currently hard coded
- also sample size `nsample`
-
- was not a self contained function, used instances from outer scope
- now corrected
-
- '''
- #nsample = 1000
- #ar = [1.0, 0, 0]
- if ar is None:
- ar = [1.0, -0.55, -0.1]
- #ma = [1.0, 0, 0]
- if ma is None:
- ma = [1.0, 0.3, 0.2]
- results = []
- results_bse = []
- for _ in range(niter):
- y2 = arma_generate_sample(ar,ma,nsample+1000, sig)[-nsample:]
- y2 -= y2.mean()
- arest2 = Arma(y2)
- rhohat2a, cov_x2a, infodict, mesg, ier = arest2.fit((2,2))
- results.append(rhohat2a)
- err2a = arest2.geterrors(rhohat2a)
- sige2a = np.sqrt(np.dot(err2a,err2a)/nsample)
- #print 'sige2a', sige2a,
- #print 'cov_x2a.shape', cov_x2a.shape
- #results_bse.append(sige2a * np.sqrt(np.diag(cov_x2a)))
- if not cov_x2a is None:
- results_bse.append(sige2a * np.sqrt(np.diag(cov_x2a)))
- else:
- results_bse.append(np.nan + np.zeros_like(rhohat2a))
- return np.r_[ar[1:], ma[1:]], np.array(results), np.array(results_bse)
-
-def mc_summary(res, rt=None):
- if rt is None:
- rt = np.zeros(res.shape[1])
- nanrows = np.isnan(res).any(1)
- print 'fractions of iterations with nans', nanrows.mean()
- res = res[~nanrows]
- print 'RMSE'
- print np.sqrt(((res-rt)**2).mean(0))
- print 'mean bias'
- print (res-rt).mean(0)
- print 'median bias'
- print np.median((res-rt),0)
- print 'median bias percent'
- print np.median((res-rt)/rt*100,0)
- print 'median absolute error'
- print np.median(np.abs(res-rt),0)
- print 'positive error fraction'
- print (res > rt).mean(0)
-
-
-if __name__ == '__main__':
-
-#short version
-# true, est, bse = mcarma22(niter=50)
-# print true
-# #print est
-# print est.mean(0)
-
- ''' niter 50, sample size=1000, 2 runs
- [-0.55 -0.1 0.3 0.2 ]
- [-0.542401 -0.09904305 0.30840599 0.2052473 ]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.54681176 -0.09742921 0.2996297 0.20624258]
-
-
- niter=50, sample size=200, 3 runs
- [-0.55 -0.1 0.3 0.2 ]
- [-0.64669489 -0.01134491 0.19972259 0.20634019]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.53141595 -0.10653234 0.32297968 0.20505973]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.50244588 -0.125455 0.33867488 0.19498214]
-
- niter=50, sample size=100, 5 runs --> ar1 too low, ma1 too high
- [-0.55 -0.1 0.3 0.2 ]
- [-0.35715008 -0.23392766 0.48771794 0.21901059]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.3554852 -0.21581914 0.51744748 0.24759245]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.3737861 -0.24665911 0.48031939 0.17274438]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.30015385 -0.27705506 0.56168199 0.21995759]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.35879991 -0.22999604 0.4761953 0.19670835]
-
- new version, with burnin 1000 in DGP and demean
- [-0.55 -0.1 0.3 0.2 ]
- [-0.56770228 -0.00076025 0.25621825 0.24492449]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.27598305 -0.2312364 0.57599134 0.23582417]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.38059051 -0.17413628 0.45147109 0.20046776]
-
- [-0.55 -0.1 0.3 0.2 ]
- [-0.47789765 -0.08650743 0.3554441 0.24196087]
- '''
-
- ar = [1.0, -0.55, -0.1]
- ma = [1.0, 0.3, 0.2]
- nsample = 200
-
-
-
- run_mc = True#False
- if run_mc:
- for sig in [0.1, 0.5, 1.]:
- import time
- t0 = time.time()
- rt, res_rho, res_bse = mcarma22(niter=100, sig=sig)
- print '\nResults for Monte Carlo'
- print 'true'
- print rt
- print 'nsample =', nsample, 'sigma = ', sig
- print 'elapsed time for Monte Carlo', time.time()-t0
- # 20 seconds for ARMA(2,2), 1000 iterations with 1000 observations
- #sige2a = np.sqrt(np.dot(err2a,err2a)/nsample)
- #print '\nbse of one sample'
- #print sige2a * np.sqrt(np.diag(cov_x2a))
- print '\nMC of rho versus true'
- mc_summary(res_rho, rt)
- print '\nMC of bse versus zero' # this implies inf in percent
- mc_summary(res_bse)
- print '\nMC of bse versus std'
- mc_summary(res_bse, res_rho.std(0))
diff --git a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/mcresuts_arma1.txt b/statsmodels/scikits/statsmodels/sandbox/mcevaluate/mcresuts_arma1.txt
deleted file mode 100644
index ef04b97..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mcevaluate/mcresuts_arma1.txt
+++ /dev/null
@@ -1,325 +0,0 @@
-MonteCarlo for Arma(2,2) fit with conditional least squares
-===========================================================
-
-
-Comments:
----------
-scikits.statsmodels.tsa.arma_mle.Arma.fit((2,0,2))
-niter=100
-didn't use seed
-some strange inf in median bias percent and
-positive error fraction equal to 1
-
-
-Sample Size 1000
-----------------
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 1000 sigma = 0.1
-elapsed time for Monte Carlo 3.67199993134
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.20193839 0.1609546 0.19646184 0.03923539]
-mean bias
-[-0.00186601 0.00542719 -0.00533277 0.00676964]
-median bias
-[-0.00810009 0.01230101 -0.01806484 0.0026727 ]
-median bias percent
-[ 1.47274338 -12.30101426 -6.02161246 1.33634779]
-median absolute error
-[ 0.12849263 0.0892165 0.11939251 0.02566005]
-positive error fraction
-[ 0.49 0.52 0.48 0.54]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.18967743 0.1526568 0.18747709 0.0399396 ]
-mean bias
-[ 0.18424688 0.14866981 0.18194085 0.03985427]
-median bias
-[ 0.18197743 0.14733603 0.17935651 0.03915853]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.18197743 0.14733603 0.17935651 0.03915853]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.04840765 0.03674317 0.04747574 0.00287514]
-mean bias
-[-0.01768289 -0.01219327 -0.0144486 0.0012073 ]
-median bias
-[-0.01995233 -0.01352704 -0.01703294 0.00051156]
-median bias percent
-[-9.88082703 -8.40904072 -8.67304431 1.3236821 ]
-median absolute error
-[ 0.03143609 0.02330123 0.03006728 0.00095056]
-positive error fraction
-[ 0.31 0.31 0.35 0.65]
-
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 1000 sigma = 0.5
-elapsed time for Monte Carlo 3.53200006485
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.23357913 0.18306959 0.23336364 0.04347842]
-mean bias
-[-0.01220215 0.01449933 -0.00740801 0.00400656]
-median bias
-[ 0.00474757 -0.00285192 -0.00179209 0.00881695]
-median bias percent
-[-0.86319392 2.85192134 -0.59736288 4.40847694]
-median absolute error
-[ 0.14260379 0.10966381 0.1388728 0.02879121]
-positive error fraction
-[ 0.51 0.49 0.5 0.59]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.19115836 0.15300091 0.18899884 0.04041533]
-mean bias
-[ 0.18636096 0.14958803 0.18410379 0.04029974]
-median bias
-[ 0.17674161 0.14286746 0.17423869 0.03952101]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.17674161 0.14286746 0.17423869 0.03952101]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.0633297 0.04599496 0.06512538 0.004277 ]
-mean bias
-[-0.04689923 -0.03290647 -0.04914224 -0.00299369]
-median bias
-[-0.05651859 -0.03962704 -0.05900734 -0.00377242]
-median bias percent
-[-24.22984657 -21.71410167 -25.29832734 -8.71360165]
-median absolute error
-[ 0.05810372 0.04048892 0.06100925 0.00383568]
-positive error fraction
-[ 0.13 0.11 0.11 0.1 ]
-
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 1000 sigma = 1.0
-elapsed time for Monte Carlo 3.78200006485
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.23501983 0.18658536 0.23630675 0.04845701]
-mean bias
-[-0.0638577 0.0559638 -0.06116445 -0.00201522]
-median bias
-[-0.02571522 0.01710684 -0.02476506 -0.00040966]
-median bias percent
-[ 4.6754946 -17.10684152 -8.25501939 -0.20482813]
-median absolute error
-[ 0.13186172 0.11635244 0.1391435 0.03325726]
-positive error fraction
-[ 0.45 0.52 0.46 0.5 ]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.2057234 0.16345869 0.20369599 0.04110316]
-mean bias
-[ 0.19816783 0.15783531 0.19595057 0.04093056]
-median bias
-[ 0.18616527 0.14688067 0.18394698 0.03953418]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.18616527 0.14688067 0.18394698 0.03953418]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.06193706 0.04704427 0.06433453 0.00837719]
-mean bias
-[-0.02801022 -0.02015949 -0.03230322 -0.00748453]
-median bias
-[-0.04001279 -0.03111413 -0.04430681 -0.00888091]
-median bias percent
-[-17.69083491 -17.48036125 -19.41120455 -18.3432625 ]
-median absolute error
-[ 0.05454876 0.03993081 0.05735269 0.00892246]
-positive error fraction
-[ 0.24 0.21 0.2 0.07]
-
-
-Sample Size 200
----------------
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 200 sigma = 0.1
-elapsed time for Monte Carlo 3.76600003242
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.23797307 0.18908967 0.24248704 0.04532965]
-mean bias
-[-0.02240914 0.02006369 -0.02856247 0.00419784]
-median bias
-[ 0.0132667 -0.01695 -0.00779267 0.00943245]
-median bias percent
-[ -2.41212746 16.94999813 -2.5975563 4.71622452]
-median absolute error
-[ 0.14314755 0.10134399 0.13262758 0.02681113]
-positive error fraction
-[ 0.53 0.49 0.48 0.57]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.18994719 0.1524025 0.18777651 0.0401027 ]
-mean bias
-[ 0.18437936 0.14841141 0.18216825 0.03997125]
-median bias
-[ 0.18044553 0.14526126 0.17764634 0.03921749]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.18044553 0.14526126 0.17764634 0.03921749]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.0696006 0.05262689 0.07424492 0.00609829]
-mean bias
-[-0.05253626 -0.0396108 -0.05863073 -0.00516361]
-median bias
-[-0.0564701 -0.04276095 -0.06315264 -0.00591737]
-median bias percent
-[-23.83553085 -22.74250075 -26.22629031 -13.11041727]
-median absolute error
-[ 0.05851016 0.04572261 0.0646474 0.00594597]
-positive error fraction
-[ 0.11 0.13 0.1 0.04]
-
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 200 sigma = 0.5
-elapsed time for Monte Carlo 3.86000013351
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.21997161 0.17584013 0.22184246 0.04268358]
-mean bias
-[-0.04259758 0.03350341 -0.05393998 -0.01056256]
-median bias
-[-0.02365517 0.01051654 -0.04060612 -0.00710624]
-median bias percent
-[ 4.3009406 -10.51654169 -13.53537431 -3.55312073]
-median absolute error
-[ 0.13186161 0.1056892 0.13501117 0.02523291]
-positive error fraction
-[ 0.45 0.55 0.42 0.42]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.21373305 0.17013489 0.21176584 0.04080147]
-mean bias
-[ 0.20622114 0.16464733 0.20408995 0.04068523]
-median bias
-[ 0.19022777 0.15274254 0.1879751 0.03969161]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.19022777 0.15274254 0.1879751 0.03969161]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.05697861 0.0435968 0.05757744 0.00314984]
-mean bias
-[-0.00958654 -0.00797153 -0.01109498 -0.00067079]
-median bias
-[-0.02557991 -0.01987633 -0.02720983 -0.00166441]
-median bias percent
-[-11.85310581 -11.5145739 -12.64485773 -4.02458691]
-median absolute error
-[ 0.03635737 0.0292344 0.03793175 0.00238808]
-positive error fraction
-[ 0.31 0.29 0.3 0.28]
-
-Results for Monte Carlo
-true
-[-0.55 -0.1 0.3 0.2 ]
-nsample = 200 sigma = 1.0
-elapsed time for Monte Carlo 3.59400010109
-
-MC of rho versus true
-fractions of iterations with nans 0.0
-RMSE
-[ 0.22232599 0.17545665 0.21586404 0.04731953]
-mean bias
-[-0.02145001 0.02789994 -0.01930862 0.00418517]
-median bias
-[ 0.00685442 0.01411879 0.01616525 0.01340016]
-median bias percent
-[ -1.24625802 -14.11879188 5.38841584 6.70007966]
-median absolute error
-[ 0.1010917 0.09510124 0.10884815 0.02735024]
-positive error fraction
-[ 0.51 0.54 0.51 0.64]
-
-MC of bse versus zero
-fractions of iterations with nans 0.0
-RMSE
-[ 0.19090008 0.15218083 0.18870297 0.04077881]
-mean bias
-[ 0.1863764 0.14894541 0.18407595 0.04063975]
-median bias
-[ 0.17861243 0.14324048 0.17665358 0.03948681]
-median bias percent
-[ Inf Inf Inf Inf]
-median absolute error
-[ 0.17861243 0.14324048 0.17665358 0.03948681]
-positive error fraction
-[ 1. 1. 1. 1.]
-
-MC of bse versus std
-fractions of iterations with nans 0.0
-RMSE
-[ 0.05408839 0.03954405 0.0517791 0.00731427]
-mean bias
-[-0.03491242 -0.02427881 -0.03092279 -0.00649433]
-median bias
-[-0.04267639 -0.02998373 -0.03834516 -0.00764727]
-median bias percent
-[-19.2853791 -17.30920408 -17.83506488 -16.22449948]
-median absolute error
-[ 0.04673299 0.03434164 0.0433639 0.00769409]
-positive error fraction
-[ 0.13 0.14 0.16 0.07]
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/mixed.py b/statsmodels/scikits/statsmodels/sandbox/mixed.py
deleted file mode 100644
index 8ab009c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mixed.py
+++ /dev/null
@@ -1,365 +0,0 @@
-"""
-Mixed effects models
-
-
-Notes
-------
-This still depends on nipy
-"""
-
-import numpy as np
-import numpy.linalg as L
-#import nipy
-
-from scikits.statsmodels.sandbox.formula import Formula, I
-
-class Unit(object):
- """
- Individual experimental unit for
- EM implementation of (repeated measures)
- mixed effects model.
-
- \'Maximum Likelihood Computations with Repeated Measures:
- Application of the EM Algorithm\'
-
- Nan Laird; Nicholas Lange; Daniel Stram
-
- Journal of the American Statistical Association,
- Vol. 82, No. 397. (Mar., 1987), pp. 97-105.
- """
-
- def __getitem__(self, item):
- return self.dict[item]
-
- def __setitem__(self, item, value):
- self.dict[item] = value
-
- def __init__(self, dict_):
- self.dict = dict_ # don't use build in names
-
- def __call__(self, formula, **extra):
- """
- Return the corresponding design matrix from formula,
- perform a check whether formula just has an intercept in it, in
- which case the number of rows must be computed.
- """
- if hasattr(self, 'n') and 'nrow' not in extra:
- extra['nrow'] = self.n
- return formula(namespace=self.dict, **extra)
-
- def design(self, formula, **extra):
- v = np.transpose(self(formula, **extra))
- self.n = v.shape[0]
- return v
-
- def _compute_S(self, D, sigma):
- """
- Display (3.3) from Laird, Lange, Stram (see help(Unit))
- """
- self.S = (np.identity(self.n) * sigma**2 +
- np.dot(self.Z, np.dot(D, self.Z.T)))
-
- def _compute_W(self):
- """
- Display (3.2) from Laird, Lange, Stram (see help(Unit))
- """
- self.W = L.inv(self.S)
-
- def compute_P(self, Sinv):
- """
- Display (3.10) from Laird, Lange, Stram (see help(Unit))
- """
- t = np.dot(self.W, self.X)
- self.P = self.W - np.dot(np.dot(t, Sinv), t.T)
-
- def _compute_r(self, alpha):
- """
- Display (3.5) from Laird, Lange, Stram (see help(Unit))
- """
- self.r = self.Y - np.dot(self.X, alpha)
-
- def _compute_b(self, D):
- """
- Display (3.4) from Laird, Lange, Stram (see help(Unit))
- """
- self.b = np.dot(D, np.dot(np.dot(self.Z.T, self.W), self.r))
-
- def fit(self, a, D, sigma):
- """
- Compute unit specific parameters in
- Laird, Lange, Stram (see help(Unit)).
-
- Displays (3.2)-(3.5).
- """
-
- self._compute_S(D, sigma)
- self._compute_W()
- self._compute_r(a)
- self._compute_b(D)
-
- def compute_xtwy(self):
- """
- Utility function to compute X^tWY for Unit instance.
- """
- return np.dot(np.dot(self.W, self.Y), self.X)
-
- def compute_xtwx(self):
- """
- Utility function to compute X^tWX for Unit instance.
- """
- return np.dot(np.dot(self.X.T, self.W), self.X)
-
- def cov_random(self, D, Sinv=None):
- """
- Approximate covariance of estimates of random effects. Just after
- Display (3.10) in Laird, Lange, Stram (see help(Unit)).
- """
- if Sinv is not None:
- self.compute_P(Sinv)
- t = np.dot(self.Z, D)
- return D - np.dot(np.dot(t.T, self.P), t)
-
- def logL(self, a, ML=False):
- """
- Individual contributions to the log-likelihood, tries to return REML
- contribution by default though this requires estimated
- fixed effect a to be passed as an argument.
- """
-
- if ML:
- return (np.log(L.det(self.W)) - (self.r * np.dot(self.W, self.r)).sum()) / 2.
- else:
- if a is None:
- raise ValueError('need fixed effect a for REML contribution to log-likelihood')
- r = self.Y - np.dot(self.X, a)
- return (np.log(L.det(self.W)) - (r * np.dot(self.W, r)).sum()) / 2.
-
- def deviance(self, ML=False):
- return - 2 * self.logL(ML=ML)
-
-class Mixed(object):
-
- """
- Model for
- EM implementation of (repeated measures)
- mixed effects model.
-
- \'Maximum Likelihood Computations with Repeated Measures:
- Application of the EM Algorithm\'
-
- Nan Laird; Nicholas Lange; Daniel Stram
-
- Journal of the American Statistical Association,
- Vol. 82, No. 397. (Mar., 1987), pp. 97-105.
- """
-
- def __init__(self, units, response, fixed=I, random=I):
- self.units = units
- self.m = len(self.units)
-
- self.fixed = Formula(fixed)
- self.random = Formula(random)
- self.response = Formula(response)
-
- self.N = 0
- for unit in self.units:
- unit.Y = np.squeeze(unit.design(self.response)) # response is just 'y'
- unit.X = unit.design(self.fixed)
- unit.Z = unit.design(self.random)
- self.N += unit.X.shape[0]
-
- # Determine size of fixed effects
-
- d = self.units[0].design(self.fixed)
- self.p = d.shape[1] # d.shape = p
- self.a = np.zeros(self.p, np.float64)
-
- # Determine size of D, and sensible initial estimates
- # of sigma and D
- d = self.units[0].design(self.random)
- self.q = d.shape[1] # d.shape = q
-
- self.D = np.zeros((self.q,)*2, np.float64)
- self.sigma = 1.
-
- self.dev = np.inf
-
- def _compute_a(self):
- """
- Display (3.1) of
- Laird, Lange, Stram (see help(Mixed)).
-
- """
-
- for unit in self.units:
- unit.fit(self.a, self.D, self.sigma)
-
- S = sum([unit.compute_xtwx() for unit in self.units])
- Y = sum([unit.compute_xtwy() for unit in self.units])
-
- self.Sinv = L.pinv(S)
- self.a = np.dot(self.Sinv, Y)
-
- def _compute_sigma(self, ML=False):
- """
- Estimate sigma. If ML is True, return the ML estimate of sigma,
- else return the REML estimate.
-
- If ML, this is (3.6) in Laird, Lange, Stram (see help(Mixed)),
- otherwise it corresponds to (3.8).
-
- """
- sigmasq = 0.
- for unit in self.units:
- if ML:
- W = unit.W
- else:
- unit.compute_P(self.Sinv)
- W = unit.P
- t = unit.r - np.dot(unit.Z, unit.b)
- sigmasq += np.power(t, 2).sum()
- sigmasq += self.sigma**2 * np.trace(np.identity(unit.n) -
- self.sigma**2 * W)
- self.sigma = np.sqrt(sigmasq / self.N)
-
- def _compute_D(self, ML=False):
- """
- Estimate random effects covariance D.
- If ML is True, return the ML estimate of sigma,
- else return the REML estimate.
-
- If ML, this is (3.7) in Laird, Lange, Stram (see help(Mixed)),
- otherwise it corresponds to (3.9).
-
- """
- D = 0.
- for unit in self.units:
- if ML:
- W = unit.W
- else:
- unit.compute_P(self.Sinv)
- W = unit.P
- D += np.multiply.outer(unit.b, unit.b)
- t = np.dot(unit.Z, self.D)
- D += self.D - np.dot(np.dot(t.T, W), t)
-
- self.D = D / self.m
-
- def cov_fixed(self):
- """
- Approximate covariance of estimates of fixed effects. Just after
- Display (3.10) in Laird, Lange, Stram (see help(Mixed)).
- """
- return self.Sinv
-
- def deviance(self, ML=False):
- return -2 * self.logL(ML=ML)
-
- def logL(self, ML=False):
- """
- Return log-likelihood, REML by default.
- """
- logL = 0.
-
- for unit in self.units:
- logL += unit.logL(a=self.a, ML=ML)
- if not ML:
- logL += np.log(L.det(self.Sinv)) / 2
- return logL
-
- def initialize(self):
- S = sum([np.dot(unit.X.T, unit.X) for unit in self.units])
- Y = sum([np.dot(unit.X.T, unit.Y) for unit in self.units])
- self.a = L.lstsq(S, Y)[0]
-
- D = 0
- t = 0
- sigmasq = 0
- for unit in self.units:
- unit.r = unit.Y - np.dot(unit.X, self.a)
- if self.q > 1:
- unit.b = L.lstsq(unit.Z, unit.r)[0]
- else:
- Z = unit.Z.reshape((unit.Z.shape[0], 1))
- unit.b = L.lstsq(Z, unit.r)[0]
-
- sigmasq += (np.power(unit.Y, 2).sum() -
- (self.a * np.dot(unit.X.T, unit.Y)).sum() -
- (unit.b * np.dot(unit.Z.T, unit.r)).sum())
- D += np.multiply.outer(unit.b, unit.b)
- t += L.pinv(np.dot(unit.Z.T, unit.Z))
-
- sigmasq /= (self.N - (self.m - 1) * self.q - self.p)
- self.sigma = np.sqrt(sigmasq)
- self.D = (D - sigmasq * t) / self.m
-
- def cont(self, ML=False, tol=1.0e-05):
-
- self.dev, old = self.deviance(ML=ML), self.dev
- if np.fabs((self.dev - old)) * self.dev < tol:
- return False
- return True
-
- def fit(self, niter=100, ML=False):
-
- for i in range(niter):
- self._compute_a()
- self._compute_sigma(ML=ML)
- self._compute_D(ML=ML)
- if not self.cont(ML=ML):
- break
-
-
-if __name__ == '__main__':
- import numpy.random as R
- R.seed(54321)
- nsubj = 400
- units = []
-
- n = 3
-
- from scikits.statsmodels.sandbox.formula import Term
- fixed = Term('f')
- random = Term('r')
- response = Term('y')
-
- nx = 4
- beta = np.ones(nx)
- for i in range(nsubj):
- d = R.standard_normal()
- X = R.standard_normal((nx,n))
- Z = X[0:2]
- #Y = R.standard_normal((n,)) + d * 4
- Y = np.dot(X.T,beta) + d * 4
- units.append(Unit({'f':X, 'r':Z, 'y':Y}))
-
- #m = Mixed(units, response)#, fixed, random)
- m = Mixed(units, response, fixed, random)
- #m = Mixed(units, response, fixed + random, random)
- m.initialize()
- m.fit()
- #print dir(m)
- #print vars(m)
- print 'estimates for fixed effects'
- print m.a
- bfixed_cov = m.cov_fixed()
- print 'beta fixed standard errors'
- print np.sqrt(np.diag(bfixed_cov))
-
-
-
-
- a = Unit({})
- a['x'] = np.array([2,3])
- a['y'] = np.array([3,4])
-
- x = Term('x')
- y = Term('y')
-
- fixed = x + y + x * y
- random = Formula(x)
-
- a.X = a.design(fixed)
- a.Z = a.design(random)
-
- print help(a._compute_S)
diff --git a/statsmodels/scikits/statsmodels/sandbox/mle.py b/statsmodels/scikits/statsmodels/sandbox/mle.py
deleted file mode 100644
index db2273d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mle.py
+++ /dev/null
@@ -1,65 +0,0 @@
-'''What's the origin of this file? It is not ours.
-Does not run because of missing mtx files, now included
-
-changes: JP corrections to imports so it runs, comment out print
-'''
-
-import numpy as np
-from numpy import dot, outer, random, argsort
-from scipy import io, linalg, optimize
-from scipy.sparse import eye as speye
-import matplotlib.pyplot as plt
-
-def R(v):
- rq = dot(v.T,A*v)/dot(v.T,B*v)
- res = (A*v-rq*B*v)/linalg.norm(B*v)
- data.append(linalg.norm(res))
- return rq
-
-def Rp(v):
- """ Gradient """
- result = 2*(A*v-R(v)*B*v)/dot(v.T,B*v)
- #print "Rp: ", result
- return result
-
-def Rpp(v):
- """ Hessian """
- result = 2*(A-R(v)*B-outer(B*v,Rp(v))-outer(Rp(v),B*v))/dot(v.T,B*v)
- #print "Rpp: ", result
- return result
-
-
-A = io.mmread('nos4.mtx') # clustered eigenvalues
-#B = io.mmread('bcsstm02.mtx.gz')
-#A = io.mmread('bcsstk06.mtx.gz') # clustered eigenvalues
-#B = io.mmread('bcsstm06.mtx.gz')
-n = A.shape[0]
-B = speye(n,n)
-random.seed(1)
-v_0=random.rand(n)
-
-print "try fmin_bfgs"
-full_output = 1
-data=[]
-v,fopt, gopt, Hopt, func_calls, grad_calls, warnflag, allvecs = \
- optimize.fmin_bfgs(R,v_0,fprime=Rp,full_output=full_output,retall=1)
-if warnflag == 0:
- plt.semilogy(np.arange(0,len(data)),data)
- print 'Rayleigh quotient BFGS',R(v)
-
-
-print "fmin_bfgs OK"
-
-print "try fmin_ncg"
-
-#
-# WARNING: the program may hangs if fmin_ncg is used
-#
-data=[]
-v,fopt, fcalls, gcalls, hcalls, warnflag, allvecs = \
- optimize.fmin_ncg(R,v_0,fprime=Rp,fhess=Rpp,full_output=full_output,retall=1)
-if warnflag==0:
- plt.figure()
- plt.semilogy(np.arange(0,len(data)),data)
- print 'Rayleigh quotient NCG',R(v)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/mlogitmath.lyx b/statsmodels/scikits/statsmodels/sandbox/mlogitmath.lyx
deleted file mode 100644
index 5870dc3..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/mlogitmath.lyx
+++ /dev/null
@@ -1,219 +0,0 @@
-#LyX 1.6.2 created this file. For more info see http://www.lyx.org/
-\lyxformat 345
-\begin_document
-\begin_header
-\textclass article
-\use_default_options true
-\language english
-\inputencoding auto
-\font_roman default
-\font_sans default
-\font_typewriter default
-\font_default_family default
-\font_sc false
-\font_osf false
-\font_sf_scale 100
-\font_tt_scale 100
-
-\graphics default
-\paperfontsize default
-\use_hyperref false
-\papersize default
-\use_geometry false
-\use_amsmath 1
-\use_esint 1
-\cite_engine basic
-\use_bibtopic false
-\paperorientation portrait
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language english
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-\tracking_changes false
-\output_changes false
-\author ""
-\author ""
-\end_header
-
-\begin_body
-
-\begin_layout Standard
-Notes on mlogit.
-\end_layout
-
-\begin_layout Standard
-Assume that
-\begin_inset Formula $J=3$
-\end_inset
-
-, so that there are
-\begin_inset Formula $2$
-\end_inset
-
- vectors of parameters for
-\begin_inset Formula $J-1$
-\end_inset
-
-.
- For now the parameters are passed around as
-\begin_inset Formula \[
-\left[\beta_{1}^{\prime}\beta_{2}^{\prime}\right]\]
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-So if
-\begin_inset Formula $K=3$
-\end_inset
-
- (including the constant), then the matrix of parameters is
-\begin_inset Formula \[
-\left[\begin{array}{cc}
-b_{10} & b_{20}\\
-b_{11} & b_{21}\\
-b_{12} & b_{22}\end{array}\right]^{\prime}\]
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-(changed to rows and added prime above, so this all changes and the score
- is also just transposed and flattend along the zero axis.) This is flattened
- along the zero axis for the sake of the solvers.
- So that it is passed internally as
-\begin_inset Formula \[
-\left[\begin{array}{cccccc}
-b_{10} & b_{20} & b_{11} & b_{21} & b_{12} & b_{22}\end{array}\right]\]
-
-\end_inset
-
-Now the matrix of score vectors is
-\begin_inset Formula \[
-\left[\begin{array}{cc}
-\frac{\partial\ln L}{\partial b_{10}} & \frac{\partial\ln L}{\partial b_{20}}\\
-\frac{\partial\ln L}{\partial b_{11}} & \frac{\partial\ln L}{\partial b_{21}}\\
-\frac{\partial\ln L}{\partial b_{12}} & \frac{\partial\ln L}{\partial b_{22}}\end{array}\right]\]
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-In Dhrymes notation, this would be column vectors
-\begin_inset Formula $\left(\partial\ln L/\partial\beta_{j}\right)^{\prime}\text{ for }j=1,2$
-\end_inset
-
- in our example.
- So, our Jacobian is actually transposed vis-a-vis the more traditional
- notation.
- So that the solvers can handle this, though, it gets flattened but the
- score gets flattened along the first axis to make things easier, which
- is going to make things tricky.
- Now, in traditional notation, the Hessian would be
-\begin_inset Formula \[
-\frac{\partial^{2}\ln L}{\partial\beta_{j}\partial\beta_{j}}=\frac{\partial}{\partial\beta_{j}}\vec{\left[\left(\frac{\partial\ln L}{\partial\beta_{j}}\right)\right]}\]
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-where
-\begin_inset Formula $\vec{}$
-\end_inset
-
- denotes a vectorized matrix, i.e., for a
-\begin_inset Formula $n\times m$
-\end_inset
-
- matrix
-\begin_inset Formula $X$
-\end_inset
-
-,
-\begin_inset Formula $\vec{X}=\left(x_{\cdot1}^{\prime},x_{\cdot2}^{\prime},...,x_{\cdot m}^{\prime}\right)^{\prime}$
-\end_inset
-
- such that
-\begin_inset Formula $x_{\cdot1}$
-\end_inset
-
- is the first
-\begin_inset Formula $n$
-\end_inset
-
- elements of column 1 of
-\begin_inset Formula $X$
-\end_inset
-
-.
- This matrix is
-\begin_inset Formula $mn\times n$
-\end_inset
-
-.
- In our case
-\begin_inset Formula $\ln L$
-\end_inset
-
- is a scalar so
-\begin_inset Formula $m=1$
-\end_inset
-
-, so each second derivative is
-\begin_inset Formula $n\times n$
-\end_inset
-
- and
-\begin_inset Formula $n=K=3$
-\end_inset
-
- in our example.
- Given our score
-\begin_inset Quotes eld
-\end_inset
-
-matrix,
-\begin_inset Quotes erd
-\end_inset
-
- our Hessian will look like
-\begin_inset Formula \[
-H=\left[\begin{array}{cc}
-\frac{\partial\ln L}{\partial\beta_{1}\partial\beta_{1}} & \frac{\partial\ln L}{\partial\beta_{1}\partial\beta_{2}}\\
-\frac{\partial\ln L}{\partial\beta_{2}\partial\beta_{1}} & \frac{\partial\ln L}{\partial\beta_{2}\partial\beta_{2}}\end{array}\right]\]
-
-\end_inset
-
-
-\begin_inset Formula \[
-H=\left[\begin{array}{cccccc}
-\frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{10}} & \frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{11}} & \frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{12}} & \frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{20}} & \frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{21}} & \frac{\partial^{2}\ln L}{\partial b_{10}\partial b_{22}}\\
-\frac{\partial\ln L}{\partial b_{11}\partial b_{10}} & \frac{\partial\ln L}{\partial b_{11}\partial b_{11}} & \frac{\partial\ln L}{\partial b_{11}\partial b_{12}} & \frac{\partial\ln L}{\partial b_{11}\partial b_{20}} & \frac{\partial\ln L}{\partial b_{11}\partial b_{21}} & \frac{\partial\ln L}{\partial b_{11}\partial b_{22}}\\
-\frac{\partial\ln L}{\partial b_{12}\partial b_{10}} & \frac{\partial\ln L}{\partial b_{12}\partial b_{11}} & \frac{\partial\ln L}{\partial b_{12}\partial b_{12}} & \frac{\partial\ln L}{\partial b_{12}\partial b_{20}} & \frac{\partial\ln L}{\partial b_{12}\partial b_{21}} & \frac{\partial\ln L}{\partial b_{12}\partial b_{22}}\\
-\frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{10}} & \frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{11}} & \frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{12}} & \frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{20}} & \frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{21}} & \frac{\partial^{2}\ln L}{\partial b_{20}\partial b_{22}}\\
-\frac{\partial\ln L}{\partial b_{21}\partial b_{10}} & \frac{\partial\ln L}{\partial b_{21}\partial b_{11}} & \frac{\partial\ln L}{\partial b_{21}\partial b_{12}} & \frac{\partial\ln L}{\partial b_{21}\partial b_{20}} & \frac{\partial\ln L}{\partial b_{21}\partial b_{21}} & \frac{\partial\ln L}{\partial b_{21}\partial b_{22}}\\
-\frac{\partial\ln L}{\partial b_{22}\partial b_{10}} & \frac{\partial\ln L}{\partial b_{22}\partial b_{11}} & \frac{\partial\ln L}{\partial b_{22}\partial b_{12}} & \frac{\partial\ln L}{\partial b_{22}\partial b_{20}} & \frac{\partial\ln L}{\partial b_{22}\partial b_{21}} & \frac{\partial\ln L}{\partial b_{22}\partial b_{22}}\end{array}\right]\]
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-But since our Jacobian is a row vector that alternate
-\end_layout
-
-\end_body
-\end_document
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/__init__.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/__init__.py
deleted file mode 100644
index b8a2ace..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-# -*- coding: utf-8 -*-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/densityorthopoly.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/densityorthopoly.py
deleted file mode 100644
index c797c15..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/densityorthopoly.py
+++ /dev/null
@@ -1,569 +0,0 @@
-# -*- coding: cp1252 -*-
-# some cut and paste characters are not ASCII
-'''density estimation based on orthogonal polynomials
-
-
-Author: Josef Perktold
-Created: 2011-05017
-License: BSD
-
-2 versions work: based on Fourier, FPoly, and chebychev T, ChebyTPoly
-also hermite polynomials, HPoly, works
-other versions need normalization
-
-
-TODO:
-
-* check fourier case again: base is orthonormal,
- but needs offsetfact = 0 and doesn't integrate to 1, rescaled looks good
-* hermite: works but DensityOrthoPoly requires currently finite bounds
- I use it with offsettfactor 0.5 in example
-* not implemented methods:
- - add bonafide density correction
- - add transformation to domain of polynomial base - DONE
- possible problem: what is the behavior at the boundary,
- offsetfact requires more work, check different cases, add as option
- moved to polynomial class by default, as attribute
-* convert examples to test cases
-* need examples with large density on boundary, beta ?
-* organize poly classes in separate module, check new numpy.polynomials,
- polyvander
-* MISE measures, order selection, ...
-
-enhancements:
- * other polynomial bases: especially for open and half open support
- * wavelets
- * local or piecewise approximations
-
-
-'''
-
-from scipy import stats
-import numpy as np
-
-
-
-sqr2 = np.sqrt(2.)
-
-class FPoly(object):
- '''Orthonormal (for weight=1) Fourier Polynomial on [0,1]
-
- orthonormal polynomial but density needs corfactor that I don't see what
- it is analytically
-
- parameterization on [0,1] from
-
- Sam Efromovich: Orthogonal series density estimation,
- 2010 John Wiley & Sons, Inc. WIREs Comp Stat 2010 2 467–476
-
-
- '''
-
- def __init__(self, order):
- self.order = order
- self.domain = (0, 1)
- self.intdomain = self.domain
-
- def __call__(self, x):
- if self.order == 0:
- return np.ones_like(x)
- else:
- return sqr2 * np.cos(np.pi * self.order * x)
-
-class F2Poly(object):
- '''Orthogonal (for weight=1) Fourier Polynomial on [0,pi]
-
- is orthogonal but first component doesn't square-integrate to 1
- final result seems to need a correction factor of sqrt(pi)
- _corfactor = sqrt(pi) from integrating the density
-
- Parameterization on [0, pi] from
-
- Peter Hall, Cross-Validation and the Smoothing of Orthogonal Series Density
- Estimators, JOURNAL OF MULTIVARIATE ANALYSIS 21, 189-206 (1987)
-
- '''
-
- def __init__(self, order):
- self.order = order
- self.domain = (0, np.pi)
- self.intdomain = self.domain
- self.offsetfactor = 0
-
- def __call__(self, x):
- if self.order == 0:
- return np.ones_like(x) / np.sqrt(np.pi)
- else:
- return sqr2 * np.cos(self.order * x) / np.sqrt(np.pi)
-
-class ChebyTPoly(object):
- '''Orthonormal (for weight=1) Chebychev Polynomial on (-1,1)
-
-
- Notes
- -----
- integration requires to stay away from boundary, offsetfactor > 0
- maybe this implies that we cannot use it for densities that are > 0 at
- boundary ???
-
- or maybe there is a mistake close to the boundary, sometimes integration works.
-
- '''
-
- def __init__(self, order):
- self.order = order
- from scipy.special import chebyt
- self.poly = chebyt(order)
- self.domain = (-1, 1)
- self.intdomain = (-1+1e-6, 1-1e-6)
- #not sure if I need this, in integration nans are possible on the boundary
- self.offsetfactor = 0.01 #required for integration
-
-
- def __call__(self, x):
- if self.order == 0:
- return np.ones_like(x) / (1-x**2)**(1/4.) /np.sqrt(np.pi)
-
- else:
- return self.poly(x) / (1-x**2)**(1/4.) /np.sqrt(np.pi) *np.sqrt(2)
-
-
-
-from scipy.misc import factorial
-from scipy import special
-
-logpi2 = np.log(np.pi)/2
-
-class HPoly(object):
- '''Orthonormal (for weight=1) Hermite Polynomial, uses finite bounds
-
- for current use with DensityOrthoPoly domain is defined as [-6,6]
-
- '''
- def __init__(self, order):
- self.order = order
- from scipy.special import hermite
- self.poly = hermite(order)
- self.domain = (-6, +6)
- self.offsetfactor = 0.5 # note this is
-
- def __call__(self, x):
- k = self.order
-
- lnfact = -(1./2)*(k*np.log(2.) + special.gammaln(k+1) + logpi2) - x*x/2
- fact = np.exp(lnfact)
-
- return self.poly(x) * fact
-
-def polyvander(x, polybase, order=5):
- polyarr = np.column_stack([polybase(i)(x) for i in range(order)])
- return polyarr
-
-def inner_cont(polys, lower, upper, weight=None):
- '''inner product of continuous function (with weight=1)
-
- Parameters
- ----------
- polys : list of callables
- polynomial instances
- lower : float
- lower integration limit
- upper : float
- upper integration limit
- weight : callable or None
- weighting function
-
- Returns
- -------
- innp : ndarray
- symmetric 2d square array with innerproduct of all function pairs
- err : ndarray
- numerical error estimate from scipy.integrate.quad, same dimension as innp
-
- Examples
- --------
- >>> from scipy.special import chebyt
- >>> polys = [chebyt(i) for i in range(4)]
- >>> r, e = inner_cont(polys, -1, 1)
- >>> r
- array([[ 2. , 0. , -0.66666667, 0. ],
- [ 0. , 0.66666667, 0. , -0.4 ],
- [-0.66666667, 0. , 0.93333333, 0. ],
- [ 0. , -0.4 , 0. , 0.97142857]])
-
- '''
- n_polys = len(polys)
- innerprod = np.empty((n_polys, n_polys))
- innerprod.fill(np.nan)
- interr = np.zeros((n_polys, n_polys))
-
- for i in range(n_polys):
- for j in range(i+1):
- p1 = polys[i]
- p2 = polys[j]
- if not weight is None:
- innp, err = integrate.quad(lambda x: p1(x)*p2(x)*weight(x),
- lower, upper)
- else:
- innp, err = integrate.quad(lambda x: p1(x)*p2(x), lower, upper)
- innerprod[i,j] = innp
- interr[i,j] = err
- if not i == j:
- innerprod[j,i] = innp
- interr[j,i] = err
-
- return innerprod, interr
-
-
-def is_orthonormal_cont(polys, lower, upper, rtol=0, atol=1e-08):
- '''check whether functions are orthonormal
-
- Parameters
- ----------
- polys : list of polynomials or function
-
- Returns
- -------
- is_orthonormal : bool
- is False if the innerproducts are not close to 0 or 1
-
- Notes
- -----
- this stops as soon as the first deviation from orthonormality is found.
-
- Examples
- --------
- >>> from scipy.special import chebyt
- >>> polys = [chebyt(i) for i in range(4)]
- >>> r, e = inner_cont(polys, -1, 1)
- >>> r
- array([[ 2. , 0. , -0.66666667, 0. ],
- [ 0. , 0.66666667, 0. , -0.4 ],
- [-0.66666667, 0. , 0.93333333, 0. ],
- [ 0. , -0.4 , 0. , 0.97142857]])
- >>> is_orthonormal_cont(polys, -1, 1, atol=1e-6)
- False
-
- >>> polys = [ChebyTPoly(i) for i in range(4)]
- >>> r, e = inner_cont(polys, -1, 1)
- >>> r
- array([[ 1.00000000e+00, 0.00000000e+00, -9.31270888e-14,
- 0.00000000e+00],
- [ 0.00000000e+00, 1.00000000e+00, 0.00000000e+00,
- -9.47850712e-15],
- [ -9.31270888e-14, 0.00000000e+00, 1.00000000e+00,
- 0.00000000e+00],
- [ 0.00000000e+00, -9.47850712e-15, 0.00000000e+00,
- 1.00000000e+00]])
- >>> is_orthonormal_cont(polys, -1, 1, atol=1e-6)
- True
-
- '''
- for i in range(len(polys)):
- for j in range(i+1):
- p1 = polys[i]
- p2 = polys[j]
- innerprod = integrate.quad(lambda x: p1(x)*p2(x), lower, upper)[0]
- #print i,j, innerprod
- if not np.allclose(innerprod, i==j, rtol=rtol, atol=atol):
- return False
- return True
-
-
-
-#new versions
-
-
-class DensityOrthoPoly(object):
- '''Univariate density estimation by orthonormal series expansion
-
-
- Uses an orthonormal polynomial basis to approximate a univariate density.
-
-
- currently all arguments can be given to fit, I might change it to requiring
- arguments in __init__ instead.
- '''
-
- def __init__(self, polybase=None, order=5):
- if not polybase is None:
- self.polybase = polybase
- self.polys = polys = [polybase(i) for i in range(order)]
- #try:
- #self.offsetfac = 0.05
- #self.offsetfac = polys[0].offsetfactor #polys maybe not defined yet
- self._corfactor = 1
- self._corshift = 0
-
-
- def fit(self, x, polybase=None, order=5, limits=None):
- '''estimate the orthogonal polynomial approximation to the density
-
- '''
- if polybase is None:
- polys = self.polys[:order]
- else:
- self.polybase = polybase
- self.polys = polys = [polybase(i) for i in range(order)]
-
- #move to init ?
- if not hasattr(self, 'offsetfac'):
- self.offsetfac = polys[0].offsetfactor
-
-
- xmin, xmax = x.min(), x.max()
- if limits is None:
- self.offset = offset = (xmax - xmin) * self.offsetfac
- limits = self.limits = (xmin - offset, xmax + offset)
-
- interval_length = limits[1] - limits[0]
- xinterval = xmax - xmin
- # need to cover (half-)open intervalls
- self.shrink = 1. / interval_length #xinterval/interval_length
- offset = (interval_length - xinterval ) / 2.
- self.shift = xmin - offset
-
- self.x = x = self._transform(x)
-
- coeffs = [(p(x)).mean() for p in polys]
- self.coeffs = coeffs
- self.polys = polys
- self._verify() #verify that it is a proper density
-
- return self #coeffs, polys
-
- def evaluate(self, xeval, order=None):
- xeval = self._transform(xeval)
- if order is None:
- order = len(self.polys)
- res = sum(c*p(xeval) for c, p in zip(self.coeffs, self.polys)[:order])
- res = self._correction(res)
- return res
-
- def __call__(self, xeval):
- '''alias for evaluate, except no order argument'''
- return self.evaluate(xeval)
-
- def _verify(self):
- '''check for bona fide density correction
-
- currently only checks that density integrates to 1
-
-` non-negativity - NotImplementedYet
- '''
- #watch out for circular/recursive usage
-
- #evaluate uses domain of data, we stay offset away from bounds
- intdomain = self.limits #self.polys[0].intdomain
- self._corfactor = 1./integrate.quad(self.evaluate, *intdomain)[0]
- #self._corshift = 0
- #self._corfactor
- return self._corfactor
-
-
-
- def _correction(self, x):
- '''bona fide density correction
-
- affine shift of density to make it into a proper density
-
- '''
- if self._corfactor != 1:
- x *= self._corfactor
-
- if self._corshift != 0:
- x += self._corshift
-
- return x
-
- def _transform(self, x): # limits=None):
- '''transform observation to the domain of the density
-
-
- uses shrink and shift attribute which are set in fit to stay
-
-
- '''
-
- #use domain from first instance
- #class doesn't have domain self.polybase.domain[0] AttributeError
- domain = self.polys[0].domain
-
- ilen = (domain[1] - domain[0])
- shift = self.shift - domain[0]/self.shrink/ilen
- shrink = self.shrink * ilen
-
- return (x - shift) * shrink
-
-
-#old version as a simple function
-def density_orthopoly(x, polybase, order=5, xeval=None):
- from scipy.special import legendre, hermitenorm, chebyt, chebyu, hermite
- #polybase = legendre #chebyt #hermitenorm#
- #polybase = chebyt
- #polybase = FPoly
- #polybase = ChtPoly
- #polybase = hermite
- #polybase = HPoly
-
- if xeval is None:
- xeval = np.linspace(x.min(),x.max(),50)
-
- #polys = [legendre(i) for i in range(order)]
- polys = [polybase(i) for i in range(order)]
- #coeffs = [(p(x)*(1-x**2)**(-1/2.)).mean() for p in polys]
- #coeffs = [(p(x)*np.exp(-x*x)).mean() for p in polys]
- coeffs = [(p(x)).mean() for p in polys]
- res = sum(c*p(xeval) for c, p in zip(coeffs, polys))
- #res *= (1-xeval**2)**(-1/2.)
- #res *= np.exp(-xeval**2./2)
- return res, xeval, coeffs, polys
-
-
-
-if __name__ == '__main__':
-
- examples = ['chebyt', 'fourier', 'hermite']#[2]
-
- nobs = 10000
-
- import matplotlib.pyplot as plt
- from scikits.statsmodels.sandbox.distributions.mixture_rvs import (
- mixture_rvs, MixtureDistribution)
-
- #np.random.seed(12345)
-## obs_dist = mixture_rvs([1/3.,2/3.], size=nobs, dist=[stats.norm, stats.norm],
-## kwargs = (dict(loc=-1,scale=.5),dict(loc=1,scale=.75)))
- mix_kwds = (dict(loc=-0.5,scale=.5),dict(loc=1,scale=.2))
- obs_dist = mixture_rvs([1/3.,2/3.], size=nobs, dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
- mix = MixtureDistribution()
-
- #obs_dist = np.random.randn(nobs)/4. #np.sqrt(2)
-
-
- if "chebyt_" in examples: # needed for Cheby example below
- #obs_dist = np.clip(obs_dist, -2, 2)/2.01
- #chebyt [0,1]
- obs_dist = obs_dist[(obs_dist>-2) & (obs_dist<2)]/2.0 #/4. + 2/4.0
- #fourier [0,1]
- #obs_dist = obs_dist[(obs_dist>-2) & (obs_dist<2)]/4. + 2/4.0
- f_hat, grid, coeffs, polys = density_orthopoly(obs_dist, ChebyTPoly, order=20, xeval=None)
- #f_hat /= f_hat.sum() * (grid.max() - grid.min())/len(grid)
- f_hat0 = f_hat
- from scipy import integrate
- fint = integrate.trapz(f_hat, grid)# dx=(grid.max() - grid.min())/len(grid))
- #f_hat -= fint/2.
- print 'f_hat.min()', f_hat.min()
- f_hat = (f_hat - f_hat.min()) #/ f_hat.max() - f_hat.min
- fint2 = integrate.trapz(f_hat, grid)# dx=(grid.max() - grid.min())/len(grid))
- print 'fint2', fint, fint2
- f_hat /= fint2
-
- # note that this uses a *huge* grid by default
- #f_hat, grid = kdensityfft(emp_dist, kernel="gauss", bw="scott")
-
- # check the plot
-
- doplot = 0
- if doplot:
- plt.hist(obs_dist, bins=50, normed=True, color='red')
- plt.plot(grid, f_hat, lw=2, color='black')
- plt.plot(grid, f_hat0, lw=2, color='g')
- plt.show()
-
- for i,p in enumerate(polys[:5]):
- for j,p2 in enumerate(polys[:5]):
- print i,j,integrate.quad(lambda x: p(x)*p2(x), -1,1)[0]
-
- for p in polys:
- print integrate.quad(lambda x: p(x)**2, -1,1)
-
-
- #examples using the new class
-
- if "chebyt" in examples:
- dop = DensityOrthoPoly().fit(obs_dist, ChebyTPoly, order=20)
- grid = np.linspace(obs_dist.min(), obs_dist.max())
- xf = dop(grid)
- print 'np.max(np.abs(xf - f_hat0))', np.max(np.abs(xf - f_hat0))
- dopint = integrate.quad(dop, *dop.limits)[0]
- print 'dop F integral', dopint
- mpdf = mix.pdf(grid, [1/3.,2/3.], dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
-
- doplot = 1
- if doplot:
- plt.figure()
- plt.hist(obs_dist, bins=50, normed=True, color='red')
- plt.plot(grid, xf, lw=2, color='black')
- plt.plot(grid, mpdf, lw=2, color='green')
- plt.title('using Chebychev polynomials')
- #plt.show()
-
- if "fourier" in examples:
- dop = DensityOrthoPoly()
- dop.offsetfac = 0.5
- dop = dop.fit(obs_dist, F2Poly, order=30)
- grid = np.linspace(obs_dist.min(), obs_dist.max())
- xf = dop(grid)
- print np.max(np.abs(xf - f_hat0))
- dopint = integrate.quad(dop, *dop.limits)[0]
- print 'dop F integral', dopint
- mpdf = mix.pdf(grid, [1/3.,2/3.], dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
-
- doplot = 1
- if doplot:
- plt.figure()
- plt.hist(obs_dist, bins=50, normed=True, color='red')
- plt.title('using Fourier polynomials')
- plt.plot(grid, xf, lw=2, color='black')
- plt.plot(grid, mpdf, lw=2, color='green')
- #plt.show()
-
- #check orthonormality:
- print np.max(np.abs(inner_cont(dop.polys[:5], 0, 1)[0] -np.eye(5)))
-
- if "hermite" in examples:
- dop = DensityOrthoPoly()
- dop.offsetfac = 0
- dop = dop.fit(obs_dist, HPoly, order=20)
- grid = np.linspace(obs_dist.min(), obs_dist.max())
- xf = dop(grid)
- print np.max(np.abs(xf - f_hat0))
- dopint = integrate.quad(dop, *dop.limits)[0]
- print 'dop F integral', dopint
-
- mpdf = mix.pdf(grid, [1/3.,2/3.], dist=[stats.norm, stats.norm],
- kwargs=mix_kwds)
-
- doplot = 1
- if doplot:
- plt.figure()
- plt.hist(obs_dist, bins=50, normed=True, color='red')
- plt.plot(grid, xf, lw=2, color='black')
- plt.plot(grid, mpdf, lw=2, color='green')
- plt.title('using Hermite polynomials')
- plt.show()
-
- #check orthonormality:
- print np.max(np.abs(inner_cont(dop.polys[:5], 0, 1)[0] -np.eye(5)))
-
-
- #check orthonormality
-
- hpolys = [HPoly(i) for i in range(5)]
- inn = inner_cont(hpolys, -6, 6)[0]
- print np.max(np.abs(inn - np.eye(5)))
- print (inn*100000).astype(int)
-
- from scipy.special import hermite, chebyt
- htpolys = [hermite(i) for i in range(5)]
- innt = inner_cont(htpolys, -10, 10)[0]
- print (innt*100000).astype(int)
-
- polysc = [chebyt(i) for i in range(4)]
- r, e = inner_cont(polysc, -1, 1, weight=lambda x: (1-x*x)**(-1/2.))
- print np.max(np.abs(r - np.diag(np.diag(r))))
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kde2.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/kde2.py
deleted file mode 100644
index 2ecb4bd..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kde2.py
+++ /dev/null
@@ -1,96 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import numpy as np
-import kernel as kernels
-import bandwidths as bw
-
-#TODO: should this be a function?
-class KDE(object):
- """
- Kernel Density Estimator
-
- Parameters
- ----------
- x : array-like
- N-dimensional array from which the density is to be estimated
- kernel : Kernel Class
- Should be a class from *
-
- """
- #TODO: amend docs for Nd case?
- def __init__(self, x, kernel = None):
-
- x = np.asarray(x)
-
- if x.ndim == 1:
- x = x[:,None]
-
- nobs, n_series = x.shape
-# print "%s dimensions" % n_series
-
- if kernel is None:
- kernel = kernels.Gaussian() # no meaningful bandwidth yet
-
- if n_series > 1:
- if isinstance( kernel, kernels.CustomKernel ):
- kernel = kernels.NdKernel(n_series, kernels = kernel)
- self.kernel = kernel
- self.n = n_series # TODO change attribute
- self.x = x
-
- def density(self, x):
- return self.kernel.density(self.x, x)
-
- def __call__(self, x, h = "scott"):
- return np.array([self.density(xx) for xx in x])
-
- def evaluate(self, x, h = "silverman"):
- density = self.kernel.density
- return np.array([density(xx) for xx in x])
-
-if __name__ == "__main__":
- PLOT = True
- from numpy import random
- import matplotlib.pyplot as plt
- import bandwidths as bw
-
- # 1 D case
- random.seed(142)
- x = random.standard_t(4.2, size = 50)
- h = bw.bw_silverman(x)
- #NOTE: try to do it with convolution
- support = np.linspace(-10,10,512)
-
-
- kern = kernels.Gaussian(h = h)
- kde = KDE( x, kern)
- print kde.density(1.015469)
- print 0.2034675
- Xs = np.arange(-10,10,0.1)
-
- if PLOT:
- fig = plt.figure()
- ax = fig.add_subplot(111)
- ax.plot(Xs, kde(Xs), "-")
- ax.set_ylim(-10, 10)
- ax.set_ylim(0,0.4)
- plt.show()
-
- # 2 D case
-# from scikits.statsmodels.sandbox.nonparametric.testdata import kdetest
-# x = zip(kdetest.faithfulData["eruptions"], kdetest.faithfulData["waiting"])
-# x = np.array(x)
-# H = kdetest.Hpi
-# kern = kernel.NdKernel( 2 )
-# kde = KernelEstimate( x, kern )
-# print kde.density( np.matrix( [1,2 ]).T )
-
-
- # 5 D case
-# random.seed(142)
-# mu = [1.0, 4.0, 3.5, -2.4, 0.0]
-# sigma = np.matrix(
-# [[ 0.6 - 0.1*abs(i-j) if i != j else 1.0 for j in xrange(5)] for i in xrange(5)])
-# x = random.multivariate_normal(mu, sigma, size = 100)
-# kern = kernel.Gaussian()
-# kde = KernelEstimate( x, kern )
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kdecovclass.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/kdecovclass.py
deleted file mode 100644
index 6af6a58..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kdecovclass.py
+++ /dev/null
@@ -1,164 +0,0 @@
-'''subclassing kde
-
-Author: josef pktd
-'''
-
-import numpy as np
-import scipy
-from scipy import stats
-import matplotlib.pylab as plt
-
-class gaussian_kde_set_covariance(stats.gaussian_kde):
- '''
- from Anne Archibald in mailinglist:
- http://www.nabble.com/Width-of-the-gaussian-in-stats.kde.gaussian_kde---td19558924.html#a19558924
- '''
- def __init__(self, dataset, covariance):
- self.covariance = covariance
- scipy.stats.gaussian_kde.__init__(self, dataset)
-
- def _compute_covariance(self):
- self.inv_cov = np.linalg.inv(self.covariance)
- self._norm_factor = sqrt(np.linalg.det(2*np.pi*self.covariance)) * self.n
-
-
-class gaussian_kde_covfact(stats.gaussian_kde):
- def __init__(self, dataset, covfact = 'scotts'):
- self.covfact = covfact
- scipy.stats.gaussian_kde.__init__(self, dataset)
-
- def _compute_covariance_(self):
- '''not used'''
- self.inv_cov = np.linalg.inv(self.covariance)
- self._norm_factor = sqrt(np.linalg.det(2*np.pi*self.covariance)) * self.n
-
- def covariance_factor(self):
- if self.covfact in ['sc', 'scotts']:
- return self.scotts_factor()
- if self.covfact in ['si', 'silverman']:
- return self.silverman_factor()
- elif self.covfact:
- return float(self.covfact)
- else:
- raise ValueError, \
- 'covariance factor has to be scotts, silverman or a number'
-
- def reset_covfact(self, covfact):
- self.covfact = covfact
- self.covariance_factor()
- self._compute_covariance()
-
-def plotkde(covfact):
- gkde.reset_covfact(covfact)
- kdepdf = gkde.evaluate(ind)
- plt.figure()
- # plot histgram of sample
- plt.hist(xn, bins=20, normed=1)
- # plot estimated density
- plt.plot(ind, kdepdf, label='kde', color="g")
- # plot data generating density
- plt.plot(ind, alpha * stats.norm.pdf(ind, loc=mlow) +
- (1-alpha) * stats.norm.pdf(ind, loc=mhigh),
- color="r", label='DGP: normal mix')
- plt.title('Kernel Density Estimation - ' + str(gkde.covfact))
- plt.legend()
-
-from numpy.testing import assert_array_almost_equal, \
- assert_almost_equal, assert_
-def test_kde_1d():
- np.random.seed(8765678)
- n_basesample = 500
- xn = np.random.randn(n_basesample)
- xnmean = xn.mean()
- xnstd = xn.std(ddof=1)
- print xnmean, xnstd
-
- # get kde for original sample
- gkde = stats.gaussian_kde(xn)
-
- # evaluate the density funtion for the kde for some points
- xs = np.linspace(-7,7,501)
- kdepdf = gkde.evaluate(xs)
- normpdf = stats.norm.pdf(xs, loc=xnmean, scale=xnstd)
- print 'MSE', np.sum((kdepdf - normpdf)**2)
- print 'axabserror', np.max(np.abs(kdepdf - normpdf))
- intervall = xs[1] - xs[0]
- assert_(np.sum((kdepdf - normpdf)**2)*intervall < 0.01)
- #assert_array_almost_equal(kdepdf, normpdf, decimal=2)
- print gkde.integrate_gaussian(0.0, 1.0)
- print gkde.integrate_box_1d(-np.inf, 0.0)
- print gkde.integrate_box_1d(0.0, np.inf)
- print gkde.integrate_box_1d(-np.inf, xnmean)
- print gkde.integrate_box_1d(xnmean, np.inf)
-
- assert_almost_equal(gkde.integrate_box_1d(xnmean, np.inf), 0.5, decimal=1)
- assert_almost_equal(gkde.integrate_box_1d(-np.inf, xnmean), 0.5, decimal=1)
- assert_almost_equal(gkde.integrate_box(xnmean, np.inf), 0.5, decimal=1)
- assert_almost_equal(gkde.integrate_box(-np.inf, xnmean), 0.5, decimal=1)
-
- assert_almost_equal(gkde.integrate_kde(gkde),
- (kdepdf**2).sum()*intervall, decimal=2)
- assert_almost_equal(gkde.integrate_gaussian(xnmean, xnstd**2),
- (kdepdf*normpdf).sum()*intervall, decimal=2)
-## assert_almost_equal(gkde.integrate_gaussian(0.0, 1.0),
-## (kdepdf*normpdf).sum()*intervall, decimal=2)
-
-
-
-
-if __name__ == '__main__':
- # generate a sample
- n_basesample = 1000
- np.random.seed(8765678)
- alpha = 0.6 #weight for (prob of) lower distribution
- mlow, mhigh = (-3,3) #mean locations for gaussian mixture
- xn = np.concatenate([mlow + np.random.randn(alpha * n_basesample),
- mhigh + np.random.randn((1-alpha) * n_basesample)])
-
- # get kde for original sample
- #gkde = stats.gaussian_kde(xn)
- gkde = gaussian_kde_covfact(xn, 0.1)
- # evaluate the density funtion for the kde for some points
- ind = np.linspace(-7,7,101)
- kdepdf = gkde.evaluate(ind)
-
- plt.figure()
- # plot histgram of sample
- plt.hist(xn, bins=20, normed=1)
- # plot estimated density
- plt.plot(ind, kdepdf, label='kde', color="g")
- # plot data generating density
- plt.plot(ind, alpha * stats.norm.pdf(ind, loc=mlow) +
- (1-alpha) * stats.norm.pdf(ind, loc=mhigh),
- color="r", label='DGP: normal mix')
- plt.title('Kernel Density Estimation')
- plt.legend()
-
- gkde = gaussian_kde_covfact(xn, 'scotts')
- kdepdf = gkde.evaluate(ind)
- plt.figure()
- # plot histgram of sample
- plt.hist(xn, bins=20, normed=1)
- # plot estimated density
- plt.plot(ind, kdepdf, label='kde', color="g")
- # plot data generating density
- plt.plot(ind, alpha * stats.norm.pdf(ind, loc=mlow) +
- (1-alpha) * stats.norm.pdf(ind, loc=mhigh),
- color="r", label='DGP: normal mix')
- plt.title('Kernel Density Estimation')
- plt.legend()
- #plt.show()
- for cv in ['scotts', 'silverman', 0.05, 0.1, 0.5]:
- plotkde(cv)
-
- test_kde_1d()
-
-
- np.random.seed(8765678)
- n_basesample = 1000
- xn = np.random.randn(n_basesample)
- xnmean = xn.mean()
- xnstd = xn.std(ddof=1)
-
- # get kde for original sample
- gkde = stats.gaussian_kde(xn)
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kernels.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/kernels.py
deleted file mode 100644
index 897eb04..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/kernels.py
+++ /dev/null
@@ -1,384 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-"""
-This models contains the Kernels for Kernel smoothing.
-
-Hopefully in the future they may be reused/extended for other kernel based
-method
-
-References:
-----------
-
-Pointwise Kernel Confidence Bounds
-(smoothconf)
-http://fedc.wiwi.hu-berlin.de/xplore/ebooks/html/anr/anrhtmlframe62.html
-"""
-
-# pylint: disable-msg=C0103
-# pylint: disable-msg=W0142
-# pylint: disable-msg=E1101
-# pylint: disable-msg=E0611
-
-import math
-import numpy as np
-import scipy.integrate
-from numpy import exp, multiply, square, divide, subtract, inf
-
-class NdKernel(object):
- """Generic N-dimensial kernel
-
- Parameters
- ----------
- n : int
- The number of series for kernel estimates
- kernels : list
- kernels
-
- Can be constructed from either
- a) a list of n kernels which will be treated as
- indepent marginals on a gaussian copula (specified by H)
- or b) a single univariate kernel which will be applied radially to the
- mahalanobis distance defined by H.
-
- In the case of the Gaussian these are both equivalent, and the second constructiong
- is prefered.
- """
- def __init__(self, n, kernels = None, H = None):
- if kernels is None:
- kernels = Gaussian()
-
- self._kernels = kernels
-
- if H is None:
- H = np.matrix( np.identity(n))
-
- self._H = H
- self._Hrootinv = np.linalg.cholesky( H.I )
-
- def getH(self):
- """Getter for kernel bandwidth, H"""
- return self._H
-
- def setH(self, value):
- """Setter for kernel bandwidth, H"""
- self._H = value
-
- H = property(getH, setH, doc="Kernel bandwidth matrix")
-
- def density(self, xs, x):
- n = len(xs)
- #xs = self.inDomain( xs, xs, x )[0]
-
- if len(xs)>0: ## Need to do product of marginal distributions
- w = np.sum([self(self._Hrootinv * (xx-x) ) for xx in xs])/n
- return w
- else:
- return np.nan
-
- def _kernweight(self, x ):
- """returns the kernel weight for the independent multivariate kernel"""
- if isinstance( self._kernels, CustomKernel ):
- ## Radial case
- d = math.sqrt( x.T * x )
- return self._kernels( d )
-
-
-class CustomKernel(object):
- """
- Generic 1D Kernel object.
- Can be constructed by selecting a standard named Kernel,
- or providing a lambda expression and domain.
- The domain allows some algorithms to run faster for finite domain kernels.
- """
- # MC: Not sure how this will look in the end - or even still exist.
- # Main purpose of this is to allow custom kernels and to allow speed up
- # from finite support.
-
- def __init__(self, shape, h = 1.0, domain = None, norm = None):
- """
- shape should be a lambda taking and returning numeric type.
-
- For sanity it should always return positive or zero but this isn't
- enforced incase you want to do weird things. Bear in mind that the
- statistical tests etc. may not be valid for non-positive kernels.
-
- The bandwidth of the kernel is supplied as h.
-
- You may specify a domain as a list of 2 values [min,max], in which case
- kernel will be treated as zero outside these values. This will speed up
- calculation.
-
- You may also specify the normalisation constant for the supplied Kernel.
- If you do this number will be stored and used as the normalisation
- without calculation. It is recommended you do this if you know the
- constant, to speed up calculation. In particular if the shape function
- provided is already normalised you should provide
- norm = 1.0
- or
- norm = True
- """
- if norm is True:
- norm = 1.0
- self._normconst = norm
- self.domain = domain
- if callable(shape):
- self._shape = shape
- else:
- raise TypeError("shape must be a callable object/function")
- self._h = h
- self._L2Norm = None
-
- def geth(self):
- """Getter for kernel bandwidth, h"""
- return self._h
- def seth(self, value):
- """Setter for kernel bandwidth, h"""
- self._h = value
- h = property(geth, seth, doc="Kernel Bandwidth")
-
- def inDomain(self, xs, ys, x):
- """
- Returns the filtered (xs, ys) based on the Kernel domain centred on x
- """
- # Disable black-list functions: filter used for speed instead of
- # list-comprehension
- # pylint: disable-msg=W0141
- def isInDomain(xy):
- """Used for filter to check if point is in the domain"""
- u = (xy[0]-x)/self.h
- return u >= self.domain[0] and u <= self.domain[1]
-
- if self.domain is None:
- return (xs, ys)
- else:
- filtered = filter(isInDomain, zip(xs, ys))
- if len(filtered) > 0:
- xs, ys = zip(*filtered)
- return (xs, ys)
- else:
- return ([], [])
-
- def density(self, xs, x):
- """Returns the kernel density estimate for point x based on x-values
- xs
- """
- xs = np.asarray(xs)
- n = len(xs) # before inDomain?
- xs = self.inDomain( xs, xs, x )[0]
- if xs.ndim == 1:
- xs = xs[:,None]
- if len(xs)>0:
- h = self.h
- w = 1/h * np.mean(self((xs-x)/h), axis=0)
- return w
- else:
- return np.nan
-
- def smooth(self, xs, ys, x):
- """Returns the kernel smoothing estimate for point x based on x-values
- xs and y-values ys.
- Not expected to be called by the user.
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs)>0:
- w = np.sum(self((xs-x)/self.h))
- #TODO: change the below to broadcasting when shape is sorted
- v = np.sum([yy*self((xx-x)/self.h) for xx, yy in zip(xs, ys)])
- return v / w
- else:
- return np.nan
-
- def smoothvar(self, xs, ys, x):
- """Returns the kernel smoothing estimate of the variance at point x.
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs) > 0:
- fittedvals = np.array([self.smooth(xs, ys, xx) for xx in xs])
- sqresid = square( subtract(ys, fittedvals) )
- w = np.sum(self((xs-x)/self.h))
- v = np.sum([rr*self((xx-x)/self.h) for xx, rr in zip(xs, sqresid)])
- return v / w
- else:
- return np.nan
-
- def smoothconf(self, xs, ys, x):
- """Returns the kernel smoothing estimate with confidence 1sigma bounds
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs) > 0:
- fittedvals = np.array([self.smooth(xs, ys, xx) for xx in xs])
- sqresid = square(
- subtract(ys, fittedvals)
- )
- w = np.sum(self((xs-x)/self.h))
- v = np.sum([rr*self((xx-x)/self.h) for xx, rr in zip(xs, sqresid)])
- var = v / w
- sd = np.sqrt(var)
- K = self.L2Norm
- yhat = self.smooth(xs, ys, x)
- err = sd * K / np.sqrt(w * self.h * self.norm_const)
- return (yhat - err, yhat, yhat + err)
- else:
- return (np.nan, np.nan, np.nan)
-
- @property
- def L2Norm(self):
- """Returns the integral of the square of the kernal from -inf to inf"""
- if self._L2Norm is None:
- L2Func = lambda x: (self.norm_const*self._shape(x))**2
- if self.domain is None:
- self._L2Norm = scipy.integrate.quad(L2Func, -inf, inf)[0]
- else:
- self._L2Norm = scipy.integrate.quad(L2Func, self.domain[0],
- self.domain[1])[0]
- return self._L2Norm
-
- @property
- def norm_const(self):
- """
- Normalising constant for kernel (integral from -inf to inf)
- """
- if self._normconst is None:
- if self.domain is None:
- quadres = scipy.integrate.quad(self._shape, -inf, inf)
- else:
- quadres = scipy.integrate.quad(self._shape, self.domain[0],
- self.domain[1])
- self._normconst = 1.0/(quadres[0])
- return self._normconst
-
- def weight(self, x):
- """This returns the normalised weight at distance x"""
- return self.norm_const*self._shape(x)
-
- def __call__(self, x):
- """
- This simply returns the value of the kernel function at x
-
- Does the same as weight if the function is normalised
- """
- return self._shape(x)
-
-class Uniform(CustomKernel):
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 0.5, h=h,
- domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = 0.5
-
-class Triangular(CustomKernel):
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 1 - abs(x), h=h,
- domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = 2.0/3.0
-
-class Epanechnikov(CustomKernel):
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 0.75*(1 - x*x), h=h,
- domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = 0.6
-
-class Biweight(CustomKernel):
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 0.9375*(1 - x*x)**2, h=h,
- domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = 5.0/7.0
-
- def smooth(self, xs, ys, x):
- """Returns the kernel smoothing estimate for point x based on x-values
- xs and y-values ys.
- Not expected to be called by the user.
-
- Special implementation optimised for Biweight.
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs) > 0:
- w = np.sum(square(subtract(1, square(divide(subtract(xs, x),
- self.h)))))
- v = np.sum(multiply(ys, square(subtract(1, square(divide(
- subtract(xs, x), self.h))))))
- return v / w
- else:
- return np.nan
-
- def smoothvar(self, xs, ys, x):
- """
- Returns the kernel smoothing estimate of the variance at point x.
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs) > 0:
- fittedvals = np.array([self.smooth(xs, ys, xx) for xx in xs])
- rs = square(subtract(ys, fittedvals))
- w = np.sum(square(subtract(1.0, square(divide(subtract(xs, x),
- self.h)))))
- v = np.sum(multiply(rs, square(subtract(1, square(divide(
- subtract(xs, x), self.h))))))
- return v / w
- else:
- return np.nan
-
- def smoothconf(self, xs, ys, x):
- """Returns the kernel smoothing estimate with confidence 1sigma bounds
- """
- xs, ys = self.inDomain(xs, ys, x)
-
- if len(xs) > 0:
- fittedvals = np.array([self.smooth(xs, ys, xx) for xx in xs])
- rs = square(subtract(ys, fittedvals))
- w = np.sum(square(subtract(1.0, square(divide(subtract(xs, x),
- self.h)))))
- v = np.sum(multiply(rs, square(subtract(1, square(divide(
- subtract(xs, x), self.h))))))
- var = v / w
- sd = np.sqrt(var)
- K = self.L2Norm
- yhat = self.smooth(xs, ys, x)
- err = sd * K / np.sqrt(0.9375 * w * self.h)
- return (yhat - err, yhat, yhat + err)
- else:
- return (np.nan, np.nan, np.nan)
-
-class Triweight(CustomKernel):
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 1.09375*(1 - x*x)**3, h=h,
- domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = 350.0/429.0
-
-class Gaussian(CustomKernel):
- """
- Gaussian (Normal) Kernel
-
- K(u) = 1 / (sqrt(2*pi)) exp(-0.5 u**2)
- """
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape = lambda x: 0.3989422804014327 *
- np.exp(-x**2/2.0), h = h, domain = None, norm = 1.0)
- self._L2Norm = 1.0/(2.0*np.sqrt(np.pi))
-
- def smooth(self, xs, ys, x):
- """Returns the kernel smoothing estimate for point x based on x-values
- xs and y-values ys.
- Not expected to be called by the user.
-
- Special implementation optimised for Gaussian.
- """
- w = np.sum(exp(multiply(square(divide(subtract(xs, x),
- self.h)),-0.5)))
- v = np.sum(multiply(ys, exp(multiply(square(divide(subtract(xs, x),
- self.h)), -0.5))))
- return v/w
-
-class Cosine(CustomKernel):
- """
- Cosine Kernel
-
- K(u) = pi/4 cos(0.5 * pi * u) between -1.0 and 1.0
- """
- def __init__(self, h=1.0):
- CustomKernel.__init__(self, shape=lambda x: 0.78539816339744828 *
- np.cos(np.pi/2.0 * x), h=h, domain=[-1.0, 1.0], norm = 1.0)
- self._L2Norm = np.pi**2/16.0
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/smoothers.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/smoothers.py
deleted file mode 100644
index b3f06de..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/smoothers.py
+++ /dev/null
@@ -1,449 +0,0 @@
-"""
-This module contains scatterplot smoothers, that is classes
-who generate a smooth fit of a set of (x,y) pairs.
-"""
-
-# pylint: disable-msg=C0103
-# pylint: disable-msg=W0142
-# pylint: disable-msg=E0611
-# pylint: disable-msg=E1101
-
-import numpy as np
-import numpy.linalg as L
-import kernel
-#import numbers
-#from scipy.linalg import solveh_banded
-#from scipy.optimize import golden
-
-#from models import _hbspline # Need to alter setup to be able to import
- # extension from models or drop for scipy
-#from models.bspline import BSpline, _band2array
-
-class KernelSmoother(object):
- """
- 1D Kernel Density Regression/Kernel Smoother
-
- Requires:
- x - array_like of x values
- y - array_like of y values
- Kernel - Kernel object, Default is Gaussian.
- """
- def __init__(self, x, y, Kernel = None):
- if Kernel is None:
- Kernel = kernel.Gaussian()
- self.Kernel = Kernel
- self.x = np.array(x)
- self.y = np.array(y)
-
- def fit(self):
- pass
-
- def __call__(self, x):
- return np.array([self.predict(xx) for xx in x])
-
- def predict(self, x):
- """
- Returns the kernel smoothed prediction at x
-
- If x is a real number then a single value is returned.
-
- Otherwise an attempt is made to cast x to numpy.ndarray and an array of
- corresponding y-points is returned.
- """
- if np.size(x) == 1: # if isinstance(x, numbers.Real):
- return self.Kernel.smooth(self.x, self.y, x)
- else:
- return np.array([self.Kernel.smooth(self.x, self.y, xx) for xx
- in np.array(x)])
-
- def conf(self, x):
- """
- Returns the fitted curve and 1-sigma upper and lower point-wise
- confidence.
- These bounds are based on variance only, and do not include the bias.
- If the bandwidth is much larger than the curvature of the underlying
- funtion then the bias could be large.
-
- x is the points on which you want to evaluate the fit and the errors.
-
- Alternatively if x is specified as a positive integer, then the fit and
- confidence bands points will be returned after every
- xth sample point - so they are closer together where the data
- is denser.
- """
- if isinstance(x, int):
- sorted_x = np.array(self.x)
- sorted_x.sort()
- confx = sorted_x[::x]
- conffit = self.conf(confx)
- return (confx, conffit)
- else:
- return np.array([self.Kernel.smoothconf(self.x, self.y, xx)
- for xx in x])
-
-
- def var(self, x):
- return np.array([self.Kernel.smoothvar(self.x, self.y, xx) for xx in x])
-
- def std(self, x):
- return np.sqrt(self.var(x))
-
-class PolySmoother(object):
- """
- Polynomial smoother up to a given order.
- Fit based on weighted least squares.
-
- The x values can be specified at instantiation or when called.
- """
- #JP: heavily adjusted to work as plugin replacement for bspline
- # smoother in gam.py initalized by function default_smoother
- # Only fixed exceptions, I didn't check whether it is statistically
- # correctand I think it is not, there are still be some dimension
- # problems, and there were some dimension problems initially.
- # TODO: undo adjustments and fix dimensions correctly
- # comment: this is just like polyfit with initialization options
- # and additional results (OLS on polynomial of x (x is 1d?))
-
-
- def df_fit(self):
- """
- Degrees of freedom used in the fit.
- """
- return self.order + 1
-
- def gram(self, d=None):
- #fake for spline imitation
- pass
-
- def smooth(self,*args, **kwds):
- return self.fit(*args, **kwds)
-
- def df_resid(self):
- """
- Residual degrees of freedom from last fit.
- """
- return self.N - self.order - 1
-
- def __init__(self, order, x=None):
- order = 3 # set this because we get knots instead of order
- self.order = order
-
- #print order, x.shape
- self.coef = np.zeros((order+1,), np.float64)
- if x is not None:
- if x.ndim > 1: x=x[0,:]
- self.X = np.array([x**i for i in range(order+1)]).T
-
- def __call__(self, x=None):
-
- if x is not None:
- if x.ndim > 1: x=x[0,:]
- X = np.array([(x**i) for i in range(self.order+1)])
- else: X = self.X
- #return np.squeeze(np.dot(X.T, self.coef))
- #need to check what dimension this is supposed to be
- if X.shape[1] == self.coef.shape[0]:
- return np.squeeze(np.dot(X, self.coef))#[0]
- else:
- return np.squeeze(np.dot(X.T, self.coef))#[0]
-
- def fit(self, y, x=None, weights=None):
- self.N = y.shape[0]
- if y.ndim == 1:
- y = y[:,None]
- if weights is None or np.isnan(weights).all():
- weights = 1
- _w = 1
- else:
- _w = np.sqrt(weights)[:,None]
- if x is None:
- if not hasattr(self, "X"):
- raise ValueError("x needed to fit PolySmoother")
- else:
- if x.ndim > 1: x=x[0,:]
- self.X = np.array([(x**i) for i in range(self.order+1)]).T
- #print _w.shape
-
- X = self.X * _w
-
- _y = y * _w#[:,None]
- #self.coef = np.dot(L.pinv(X).T, _y[:,None])
- #self.coef = np.dot(L.pinv(X), _y)
- self.coef = L.lstsq(X, _y)[0]
-
-
-
-
-
-
-if __name__ == "__main__":
- from scikits.statsmodels.sandbox import smoothers as s
- import matplotlib.pyplot as plt
- from numpy import sin, array, random
-
- import time
- random.seed(500)
- x = random.normal(size = 250)
- y = array([sin(i*5)/i + 2*i + (3+i)*random.normal() for i in x])
-
- K = s.kernel.Biweight(0.25)
- K2 = s.kernel.CustomKernel(lambda x: (1 - x*x)**2, 0.25, domain = [-1.0,
- 1.0])
-
- KS = s.KernelSmoother(x, y, K)
- KS2 = s.KernelSmoother(x, y, K2)
-
-
- KSx = np.arange(-3, 3, 0.1)
- start = time.time()
- KSy = KS.conf(KSx)
- KVar = KS.std(KSx)
- print time.time() - start # This should be significantly quicker...
- start = time.time() #
- KS2y = KS2.conf(KSx) #
- K2Var = KS2.std(KSx) #
- print time.time() - start # ...than this.
-
- KSConfIntx, KSConfInty = KS.conf(15)
-
- print "Norm const should be 0.9375"
- print K2.norm_const
-
- print "L2 Norms Should Match:"
- print K.L2Norm
- print K2.L2Norm
-
- print "Fit values should match:"
- #print zip(KSy, KS2y)
- print KSy[28]
- print KS2y[28]
-
- print "Var values should match:"
- #print zip(KVar, K2Var)
- print KVar[39]
- print K2Var[39]
-
- fig = plt.figure()
- ax = fig.add_subplot(221)
- ax.plot(x, y, "+")
- ax.plot(KSx, KSy, "o")
- ax.set_ylim(-20, 30)
- ax2 = fig.add_subplot(222)
- ax2.plot(KSx, KVar, "o")
-
- ax3 = fig.add_subplot(223)
- ax3.plot(x, y, "+")
- ax3.plot(KSx, KS2y, "o")
- ax3.set_ylim(-20, 30)
- ax4 = fig.add_subplot(224)
- ax4.plot(KSx, K2Var, "o")
-
- fig2 = plt.figure()
- ax5 = fig2.add_subplot(111)
- ax5.plot(x, y, "+")
- ax5.plot(KSConfIntx, KSConfInty, "o")
- #plt.show()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# comment out for now to remove dependency on _hbspline
-
-##class SmoothingSpline(BSpline):
-##
-## penmax = 30.
-##
-## def fit(self, y, x=None, weights=None, pen=0.):
-## banded = True
-##
-## if x is None:
-## x = self.tau[(self.M-1):-(self.M-1)] # internal knots
-##
-## if pen == 0.: # can't use cholesky for singular matrices
-## banded = False
-##
-## if x.shape != y.shape:
-## raise ValueError('x and y shape do not agree, by default x are the Bspline\'s internal knots')
-##
-## bt = self.basis(x)
-## if pen >= self.penmax:
-## pen = self.penmax
-##
-## if weights is None:
-## weights = np.array(1.)
-##
-## wmean = weights.mean()
-## _w = np.sqrt(weights / wmean)
-## bt *= _w
-##
-## # throw out rows with zeros (this happens at boundary points!)
-##
-## mask = np.flatnonzero(1 - np.alltrue(np.equal(bt, 0), axis=0))
-##
-## bt = bt[:, mask]
-## y = y[mask]
-##
-## self.df_total = y.shape[0]
-##
-## if bt.shape[1] != y.shape[0]:
-## raise ValueError("some x values are outside range of B-spline knots")
-## bty = np.dot(bt, _w * y)
-## self.N = y.shape[0]
-## if not banded:
-## self.btb = np.dot(bt, bt.T)
-## _g = _band2array(self.g, lower=1, symmetric=True)
-## self.coef, _, self.rank = L.lstsq(self.btb + pen*_g, bty)[0:3]
-## self.rank = min(self.rank, self.btb.shape[0])
-## else:
-## self.btb = np.zeros(self.g.shape, np.float64)
-## nband, nbasis = self.g.shape
-## for i in range(nbasis):
-## for k in range(min(nband, nbasis-i)):
-## self.btb[k, i] = (bt[i] * bt[i+k]).sum()
-##
-## bty.shape = (1, bty.shape[0])
-## self.chol, self.coef = solveh_banded(self.btb +
-## pen*self.g,
-## bty, lower=1)
-##
-## self.coef = np.squeeze(self.coef)
-## self.resid = np.sqrt(wmean) * (y * _w - np.dot(self.coef, bt))
-## self.pen = pen
-##
-## def gcv(self):
-## """
-## Generalized cross-validation score of current fit.
-## """
-##
-## norm_resid = (self.resid**2).sum()
-## return norm_resid / (self.df_total - self.trace())
-##
-## def df_resid(self):
-## """
-## self.N - self.trace()
-##
-## where self.N is the number of observations of last fit.
-## """
-##
-## return self.N - self.trace()
-##
-## def df_fit(self):
-## """
-## = self.trace()
-##
-## How many degrees of freedom used in the fit?
-## """
-## return self.trace()
-##
-## def trace(self):
-## """
-## Trace of the smoothing matrix S(pen)
-## """
-##
-## if self.pen > 0:
-## _invband = _hbspline.invband(self.chol.copy())
-## tr = _trace_symbanded(_invband, self.btb, lower=1)
-## return tr
-## else:
-## return self.rank
-##
-##class SmoothingSplineFixedDF(SmoothingSpline):
-## """
-## Fit smoothing spline with approximately df degrees of freedom
-## used in the fit, i.e. so that self.trace() is approximately df.
-##
-## In general, df must be greater than the dimension of the null space
-## of the Gram inner product. For cubic smoothing splines, this means
-## that df > 2.
-## """
-##
-## target_df = 5
-##
-## def __init__(self, knots, order=4, coef=None, M=None, target_df=None):
-## if target_df is not None:
-## self.target_df = target_df
-## BSpline.__init__(self, knots, order=order, coef=coef, M=M)
-## self.target_reached = False
-##
-## def fit(self, y, x=None, df=None, weights=None, tol=1.0e-03):
-##
-## df = df or self.target_df
-##
-## apen, bpen = 0, 1.0e-03
-## olddf = y.shape[0] - self.m
-##
-## if not self.target_reached:
-## while True:
-## curpen = 0.5 * (apen + bpen)
-## SmoothingSpline.fit(self, y, x=x, weights=weights, pen=curpen)
-## curdf = self.trace()
-## if curdf > df:
-## apen, bpen = curpen, 2 * curpen
-## else:
-## apen, bpen = apen, curpen
-## if apen >= self.penmax:
-## raise ValueError("penalty too large, try setting penmax higher or decreasing df")
-## if np.fabs(curdf - df) / df < tol:
-## self.target_reached = True
-## break
-## else:
-## SmoothingSpline.fit(self, y, x=x, weights=weights, pen=self.pen)
-##
-##class SmoothingSplineGCV(SmoothingSpline):
-##
-## """
-## Fit smoothing spline trying to optimize GCV.
-##
-## Try to find a bracketing interval for scipy.optimize.golden
-## based on bracket.
-##
-## It is probably best to use target_df instead, as it is
-## sometimes difficult to find a bracketing interval.
-##
-## """
-##
-## def fit(self, y, x=None, weights=None, tol=1.0e-03,
-## bracket=(0,1.0e-03)):
-##
-## def _gcv(pen, y, x):
-## SmoothingSpline.fit(y, x=x, pen=np.exp(pen), weights=weights)
-## a = self.gcv()
-## return a
-##
-## a = golden(_gcv, args=(y,x), brack=(-100,20), tol=tol)
-##
-##def _trace_symbanded(a,b, lower=0):
-## """
-## Compute the trace(a*b) for two upper or lower banded real symmetric matrices.
-## """
-##
-## if lower:
-## t = _zero_triband(a * b, lower=1)
-## return t[0].sum() + 2 * t[1:].sum()
-## else:
-## t = _zero_triband(a * b, lower=0)
-## return t[-1].sum() + 2 * t[:-1].sum()
-##
-##
-##
-##def _zero_triband(a, lower=0):
-## """
-## Zero out unnecessary elements of a real symmetric banded matrix.
-## """
-##
-## nrow, ncol = a.shape
-## if lower:
-## for i in range(nrow): a[i,(ncol-i):] = 0.
-## else:
-## for i in range(nrow): a[i,0:i] = 0.
-## return a
diff --git a/statsmodels/scikits/statsmodels/sandbox/nonparametric/testdata.py b/statsmodels/scikits/statsmodels/sandbox/nonparametric/testdata.py
deleted file mode 100644
index 07c372d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nonparametric/testdata.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Fri Mar 04 07:36:28 2011
-
-@author: Mike
-"""
-
-import numpy as np
-
-class kdetest(object):
-
-
- Hpi = np.matrix([[ 0.05163034, 0.5098923 ],
- [0.50989228, 8.8822365 ]])
-
-
- faithfulData = dict(
- eruptions = [3.6, 1.8, 3.333, 2.283, 4.533, 2.883, 4.7, 3.6, 1.95, 4.35, 1.833, 3.917,
- 4.2, 1.75, 4.7, 2.167, 1.75, 4.8, 1.6, 4.25, 1.8, 1.75, 3.45, 3.067, 4.533,
- 3.6, 1.967, 4.083, 3.85, 4.433, 4.3, 4.467, 3.367, 4.033, 3.833, 2.017, 1.867,
- 4.833, 1.833, 4.783, 4.35, 1.883, 4.567, 1.75, 4.533, 3.317, 3.833, 2.1, 4.633,
- 2, 4.8, 4.716, 1.833, 4.833, 1.733, 4.883, 3.717, 1.667, 4.567, 4.317, 2.233, 4.5,
- 1.75, 4.8, 1.817, 4.4, 4.167, 4.7, 2.067, 4.7, 4.033, 1.967, 4.5, 4, 1.983, 5.067,
- 2.017, 4.567, 3.883, 3.6, 4.133, 4.333, 4.1, 2.633, 4.067, 4.933, 3.95, 4.517, 2.167,
- 4, 2.2, 4.333, 1.867, 4.817, 1.833, 4.3, 4.667, 3.75, 1.867, 4.9, 2.483, 4.367, 2.1, 4.5,
- 4.05, 1.867, 4.7, 1.783, 4.85, 3.683, 4.733, 2.3, 4.9, 4.417, 1.7, 4.633, 2.317, 4.6,
- 1.817, 4.417, 2.617, 4.067, 4.25, 1.967, 4.6, 3.767, 1.917, 4.5, 2.267, 4.65, 1.867,
- 4.167, 2.8, 4.333, 1.833, 4.383, 1.883, 4.933, 2.033, 3.733, 4.233, 2.233, 4.533,
- 4.817, 4.333, 1.983, 4.633, 2.017, 5.1, 1.8, 5.033, 4, 2.4, 4.6, 3.567, 4, 4.5, 4.083,
- 1.8, 3.967, 2.2, 4.15, 2, 3.833, 3.5, 4.583, 2.367, 5, 1.933, 4.617, 1.917, 2.083,
- 4.583, 3.333, 4.167, 4.333, 4.5, 2.417, 4, 4.167, 1.883, 4.583, 4.25, 3.767, 2.033,
- 4.433, 4.083, 1.833, 4.417, 2.183, 4.8, 1.833, 4.8, 4.1, 3.966, 4.233, 3.5, 4.366,
- 2.25, 4.667, 2.1, 4.35, 4.133, 1.867, 4.6, 1.783, 4.367, 3.85, 1.933, 4.5, 2.383,
- 4.7, 1.867, 3.833, 3.417, 4.233, 2.4, 4.8, 2, 4.15, 1.867, 4.267, 1.75, 4.483, 4,
- 4.117, 4.083, 4.267, 3.917, 4.55, 4.083, 2.417, 4.183, 2.217, 4.45, 1.883, 1.85,
- 4.283, 3.95, 2.333, 4.15, 2.35, 4.933, 2.9, 4.583, 3.833, 2.083, 4.367, 2.133, 4.35,
- 2.2, 4.45, 3.567, 4.5, 4.15, 3.817, 3.917, 4.45, 2, 4.283, 4.767, 4.533, 1.85, 4.25,
- 1.983, 2.25, 4.75, 4.117, 2.15, 4.417, 1.817, 4.467],
- waiting = [79, 54, 74, 62, 85, 55, 88, 85, 51, 85, 54, 84, 78, 47, 83, 52,
- 62, 84, 52, 79, 51, 47, 78, 69, 74, 83, 55, 76, 78, 79, 73, 77,
- 66, 80, 74, 52, 48, 80, 59, 90, 80, 58, 84, 58, 73, 83, 64, 53,
- 82, 59, 75, 90, 54, 80, 54, 83, 71, 64, 77, 81, 59, 84, 48, 82,
- 60, 92, 78, 78, 65, 73, 82, 56, 79, 71, 62, 76, 60, 78, 76, 83,
- 75, 82, 70, 65, 73, 88, 76, 80, 48, 86, 60, 90, 50, 78, 63, 72,
- 84, 75, 51, 82, 62, 88, 49, 83, 81, 47, 84, 52, 86, 81, 75, 59,
- 89, 79, 59, 81, 50, 85, 59, 87, 53, 69, 77, 56, 88, 81, 45, 82,
- 55, 90, 45, 83, 56, 89, 46, 82, 51, 86, 53, 79, 81, 60, 82, 77,
- 76, 59, 80, 49, 96, 53, 77, 77, 65, 81, 71, 70, 81, 93, 53, 89,
- 45, 86, 58, 78, 66, 76, 63, 88, 52, 93, 49, 57, 77, 68, 81, 81,
- 73, 50, 85, 74, 55, 77, 83, 83, 51, 78, 84, 46, 83, 55, 81, 57,
- 76, 84, 77, 81, 87, 77, 51, 78, 60, 82, 91, 53, 78, 46, 77, 84,
- 49, 83, 71, 80, 49, 75, 64, 76, 53, 94, 55, 76, 50, 82, 54, 75,
- 78, 79, 78, 78, 70, 79, 70, 54, 86, 50, 90, 54, 54, 77, 79, 64,
- 75, 47, 86, 63, 85, 82, 57, 82, 67, 74, 54, 83, 73, 73, 88, 80,
- 71, 83, 56, 79, 78, 84, 58, 83, 43, 60, 75, 81, 46, 90, 46, 74]
- )
diff --git a/statsmodels/scikits/statsmodels/sandbox/nos4.mtx b/statsmodels/scikits/statsmodels/sandbox/nos4.mtx
deleted file mode 100644
index 8a44ab8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/nos4.mtx
+++ /dev/null
@@ -1,349 +0,0 @@
-%%MatrixMarket matrix coordinate real symmetric
-100 100 347
-1 1 1.7155418000000e-01
-2 1 3.5777088000000e-02
-3 1 -1.0000000000000e-01
-13 1 -7.1554176000000e-02
-14 1 -3.5777088000000e-02
-2 2 4.1788854000000e-01
-12 2 -2.0000000000000e-01
-13 2 -3.5777088000000e-02
-14 2 -1.7888544000000e-02
-3 3 3.4310835000000e-01
-5 3 -1.0000000000000e-01
-4 4 4.3577709000000e-01
-14 4 -2.0000000000000e-01
-5 5 3.4310835000000e-01
-7 5 -1.0000000000000e-01
-13 5 -7.1554176000000e-02
-14 5 3.5777088000000e-02
-17 5 -7.1554176000000e-02
-18 5 -3.5777088000000e-02
-6 6 4.3577709000000e-01
-13 6 3.5777088000000e-02
-14 6 -1.7888544000000e-02
-16 6 -2.0000000000000e-01
-17 6 -3.5777088000000e-02
-18 6 -1.7888544000000e-02
-7 7 3.4310835000000e-01
-9 7 -1.0000000000000e-01
-8 8 4.3577709000000e-01
-18 8 -2.0000000000000e-01
-9 9 1.7155418000000e-01
-10 9 -3.5777088000000e-02
-17 9 -7.1554176000000e-02
-18 9 3.5777088000000e-02
-10 10 4.1788854000000e-01
-17 10 3.5777088000000e-02
-18 10 -1.7888544000000e-02
-20 10 -2.0000000000000e-01
-11 11 1.7155418000000e-01
-12 11 3.5777088000000e-02
-13 11 -1.0000000000000e-01
-23 11 -7.1554176000000e-02
-24 11 -3.5777088000000e-02
-12 12 4.1788854000000e-01
-22 12 -2.0000000000000e-01
-23 12 -3.5777088000000e-02
-24 12 -1.7888544000000e-02
-13 13 3.4310835000000e-01
-15 13 -1.0000000000000e-01
-14 14 4.3577709000000e-01
-24 14 -2.0000000000000e-01
-15 15 3.4310835000000e-01
-17 15 -1.0000000000000e-01
-23 15 -7.1554176000000e-02
-24 15 3.5777088000000e-02
-27 15 -7.1554176000000e-02
-28 15 -3.5777088000000e-02
-16 16 4.3577709000000e-01
-23 16 3.5777088000000e-02
-24 16 -1.7888544000000e-02
-26 16 -2.0000000000000e-01
-27 16 -3.5777088000000e-02
-28 16 -1.7888544000000e-02
-17 17 3.4310835000000e-01
-19 17 -1.0000000000000e-01
-18 18 4.3577709000000e-01
-28 18 -2.0000000000000e-01
-19 19 1.7155418000000e-01
-20 19 -3.5777088000000e-02
-27 19 -7.1554176000000e-02
-28 19 3.5777088000000e-02
-20 20 4.1788854000000e-01
-27 20 3.5777088000000e-02
-28 20 -1.7888544000000e-02
-30 20 -2.0000000000000e-01
-21 21 1.7155418000000e-01
-22 21 3.5777088000000e-02
-23 21 -1.0000000000000e-01
-33 21 -7.1554176000000e-02
-34 21 -3.5777088000000e-02
-22 22 4.1788854000000e-01
-32 22 -2.0000000000000e-01
-33 22 -3.5777088000000e-02
-34 22 -1.7888544000000e-02
-23 23 3.4310835000000e-01
-25 23 -1.0000000000000e-01
-24 24 4.3577709000000e-01
-34 24 -2.0000000000000e-01
-25 25 3.4310835000000e-01
-27 25 -1.0000000000000e-01
-33 25 -7.1554176000000e-02
-34 25 3.5777088000000e-02
-37 25 -7.1554176000000e-02
-38 25 -3.5777088000000e-02
-26 26 4.3577709000000e-01
-33 26 3.5777088000000e-02
-34 26 -1.7888544000000e-02
-36 26 -2.0000000000000e-01
-37 26 -3.5777088000000e-02
-38 26 -1.7888544000000e-02
-27 27 3.4310835000000e-01
-29 27 -1.0000000000000e-01
-28 28 4.3577709000000e-01
-38 28 -2.0000000000000e-01
-29 29 1.7155418000000e-01
-30 29 -3.5777088000000e-02
-37 29 -7.1554176000000e-02
-38 29 3.5777088000000e-02
-30 30 4.1788854000000e-01
-37 30 3.5777088000000e-02
-38 30 -1.7888544000000e-02
-40 30 -2.0000000000000e-01
-31 31 1.7155418000000e-01
-32 31 3.5777088000000e-02
-33 31 -1.0000000000000e-01
-43 31 -7.1554176000000e-02
-44 31 -3.5777088000000e-02
-32 32 4.1788854000000e-01
-42 32 -2.0000000000000e-01
-43 32 -3.5777088000000e-02
-44 32 -1.7888544000000e-02
-33 33 3.4310835000000e-01
-35 33 -1.0000000000000e-01
-34 34 4.3577709000000e-01
-44 34 -2.0000000000000e-01
-35 35 3.4310835000000e-01
-37 35 -1.0000000000000e-01
-43 35 -7.1554176000000e-02
-44 35 3.5777088000000e-02
-47 35 -7.1554176000000e-02
-48 35 -3.5777088000000e-02
-36 36 4.3577709000000e-01
-43 36 3.5777088000000e-02
-44 36 -1.7888544000000e-02
-46 36 -2.0000000000000e-01
-47 36 -3.5777088000000e-02
-48 36 -1.7888544000000e-02
-37 37 3.4310835000000e-01
-39 37 -1.0000000000000e-01
-38 38 4.3577709000000e-01
-48 38 -2.0000000000000e-01
-39 39 1.7155418000000e-01
-40 39 -3.5777088000000e-02
-47 39 -7.1554176000000e-02
-48 39 3.5777088000000e-02
-40 40 4.1788854000000e-01
-47 40 3.5777088000000e-02
-48 40 -1.7888544000000e-02
-50 40 -2.0000000000000e-01
-41 41 1.7155418000000e-01
-42 41 3.5777088000000e-02
-43 41 -1.0000000000000e-01
-53 41 -7.1554176000000e-02
-54 41 -3.5777088000000e-02
-42 42 4.1788854000000e-01
-52 42 -2.0000000000000e-01
-53 42 -3.5777088000000e-02
-54 42 -1.7888544000000e-02
-43 43 3.4310835000000e-01
-45 43 -1.0000000000000e-01
-44 44 4.3577709000000e-01
-54 44 -2.0000000000000e-01
-45 45 3.4310835000000e-01
-47 45 -1.0000000000000e-01
-53 45 -7.1554176000000e-02
-54 45 3.5777088000000e-02
-57 45 -7.1554176000000e-02
-58 45 -3.5777088000000e-02
-46 46 4.3577709000000e-01
-53 46 3.5777088000000e-02
-54 46 -1.7888544000000e-02
-56 46 -2.0000000000000e-01
-57 46 -3.5777088000000e-02
-58 46 -1.7888544000000e-02
-47 47 3.4310835000000e-01
-49 47 -1.0000000000000e-01
-48 48 4.3577709000000e-01
-58 48 -2.0000000000000e-01
-49 49 1.7155418000000e-01
-50 49 -3.5777088000000e-02
-57 49 -7.1554176000000e-02
-58 49 3.5777088000000e-02
-50 50 4.1788854000000e-01
-57 50 3.5777088000000e-02
-58 50 -1.7888544000000e-02
-60 50 -2.0000000000000e-01
-51 51 1.7155418000000e-01
-52 51 3.5777088000000e-02
-53 51 -1.0000000000000e-01
-63 51 -7.1554176000000e-02
-64 51 -3.5777088000000e-02
-52 52 4.1788854000000e-01
-62 52 -2.0000000000000e-01
-63 52 -3.5777088000000e-02
-64 52 -1.7888544000000e-02
-53 53 3.4310835000000e-01
-55 53 -1.0000000000000e-01
-54 54 4.3577709000000e-01
-64 54 -2.0000000000000e-01
-55 55 3.4310835000000e-01
-57 55 -1.0000000000000e-01
-63 55 -7.1554176000000e-02
-64 55 3.5777088000000e-02
-67 55 -7.1554176000000e-02
-68 55 -3.5777088000000e-02
-56 56 4.3577709000000e-01
-63 56 3.5777088000000e-02
-64 56 -1.7888544000000e-02
-66 56 -2.0000000000000e-01
-67 56 -3.5777088000000e-02
-68 56 -1.7888544000000e-02
-57 57 3.4310835000000e-01
-59 57 -1.0000000000000e-01
-58 58 4.3577709000000e-01
-68 58 -2.0000000000000e-01
-59 59 1.7155418000000e-01
-60 59 -3.5777088000000e-02
-67 59 -7.1554176000000e-02
-68 59 3.5777088000000e-02
-60 60 4.1788854000000e-01
-67 60 3.5777088000000e-02
-68 60 -1.7888544000000e-02
-70 60 -2.0000000000000e-01
-61 61 1.7155418000000e-01
-62 61 3.5777088000000e-02
-63 61 -1.0000000000000e-01
-73 61 -7.1554176000000e-02
-74 61 -3.5777088000000e-02
-62 62 4.1788854000000e-01
-72 62 -2.0000000000000e-01
-73 62 -3.5777088000000e-02
-74 62 -1.7888544000000e-02
-63 63 3.4310835000000e-01
-65 63 -1.0000000000000e-01
-64 64 4.3577709000000e-01
-74 64 -2.0000000000000e-01
-65 65 3.4310835000000e-01
-67 65 -1.0000000000000e-01
-73 65 -7.1554176000000e-02
-74 65 3.5777088000000e-02
-77 65 -7.1554176000000e-02
-78 65 -3.5777088000000e-02
-66 66 4.3577709000000e-01
-73 66 3.5777088000000e-02
-74 66 -1.7888544000000e-02
-76 66 -2.0000000000000e-01
-77 66 -3.5777088000000e-02
-78 66 -1.7888544000000e-02
-67 67 3.4310835000000e-01
-69 67 -1.0000000000000e-01
-68 68 4.3577709000000e-01
-78 68 -2.0000000000000e-01
-69 69 1.7155418000000e-01
-70 69 -3.5777088000000e-02
-77 69 -7.1554176000000e-02
-78 69 3.5777088000000e-02
-70 70 4.1788854000000e-01
-77 70 3.5777088000000e-02
-78 70 -1.7888544000000e-02
-80 70 -2.0000000000000e-01
-71 71 1.7155418000000e-01
-72 71 3.5777088000000e-02
-73 71 -1.0000000000000e-01
-83 71 -7.1554176000000e-02
-84 71 -3.5777088000000e-02
-72 72 4.1788854000000e-01
-82 72 -2.0000000000000e-01
-83 72 -3.5777088000000e-02
-84 72 -1.7888544000000e-02
-73 73 3.4310835000000e-01
-75 73 -1.0000000000000e-01
-74 74 4.3577709000000e-01
-84 74 -2.0000000000000e-01
-75 75 3.4310835000000e-01
-77 75 -1.0000000000000e-01
-83 75 -7.1554176000000e-02
-84 75 3.5777088000000e-02
-87 75 -7.1554176000000e-02
-88 75 -3.5777088000000e-02
-76 76 4.3577709000000e-01
-83 76 3.5777088000000e-02
-84 76 -1.7888544000000e-02
-86 76 -2.0000000000000e-01
-87 76 -3.5777088000000e-02
-88 76 -1.7888544000000e-02
-77 77 3.4310835000000e-01
-79 77 -1.0000000000000e-01
-78 78 4.3577709000000e-01
-88 78 -2.0000000000000e-01
-79 79 1.7155418000000e-01
-80 79 -3.5777088000000e-02
-87 79 -7.1554176000000e-02
-88 79 3.5777088000000e-02
-80 80 4.1788854000000e-01
-87 80 3.5777088000000e-02
-88 80 -1.7888544000000e-02
-90 80 -2.0000000000000e-01
-81 81 1.7155418000000e-01
-82 81 3.5777088000000e-02
-83 81 -1.0000000000000e-01
-93 81 -7.1554176000000e-02
-94 81 -3.5777088000000e-02
-82 82 4.1788854000000e-01
-92 82 -2.0000000000000e-01
-93 82 -3.5777088000000e-02
-94 82 -1.7888544000000e-02
-83 83 3.4310835000000e-01
-85 83 -1.0000000000000e-01
-84 84 4.3577709000000e-01
-94 84 -2.0000000000000e-01
-85 85 3.4310835000000e-01
-87 85 -1.0000000000000e-01
-93 85 -7.1554176000000e-02
-94 85 3.5777088000000e-02
-97 85 -7.1554176000000e-02
-98 85 -3.5777088000000e-02
-86 86 4.3577709000000e-01
-93 86 3.5777088000000e-02
-94 86 -1.7888544000000e-02
-96 86 -2.0000000000000e-01
-97 86 -3.5777088000000e-02
-98 86 -1.7888544000000e-02
-87 87 3.4310835000000e-01
-89 87 -1.0000000000000e-01
-88 88 4.3577709000000e-01
-98 88 -2.0000000000000e-01
-89 89 1.7155418000000e-01
-90 89 -3.5777088000000e-02
-97 89 -7.1554176000000e-02
-98 89 3.5777088000000e-02
-90 90 4.1788854000000e-01
-97 90 3.5777088000000e-02
-98 90 -1.7888544000000e-02
-100 90 -2.0000000000000e-01
-91 91 1.0000000000000e-01
-93 91 -1.0000000000000e-01
-92 92 2.0000000000000e-01
-93 93 3.4310835000000e-01
-95 93 -1.0000000000000e-01
-94 94 2.3577709000000e-01
-95 95 2.0000000000000e-01
-97 95 -1.0000000000000e-01
-96 96 2.0000000000000e-01
-97 97 3.4310835000000e-01
-99 97 -1.0000000000000e-01
-98 98 2.3577709000000e-01
-99 99 1.0000000000000e-01
-100 100 2.0000000000000e-01
diff --git a/statsmodels/scikits/statsmodels/sandbox/panelmod.py b/statsmodels/scikits/statsmodels/sandbox/panelmod.py
deleted file mode 100644
index eb7cba1..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/panelmod.py
+++ /dev/null
@@ -1,444 +0,0 @@
-"""
-Sandbox Panel Estimators
-
-References
------------
-
-Baltagi, Badi H. `Econometric Analysis of Panel Data.` 4th ed. Wiley, 2008.
-"""
-
-from scikits.statsmodels.tools.tools import categorical
-from scikits.statsmodels.regression.linear_model import GLS, WLS
-import numpy as np
-
-__all__ = ["PanelModel"]
-
-try:
- from pandas import LongPanel, __version__
- __version__ >= .1
-except:
- raise ImportError("While in the sandbox this code depends on the pandas \
-package. http://code.google.com/p/pandas/")
-
-
-def group(X):
- """
- Returns unique numeric values for groups without sorting.
-
- Examples
- --------
- >>> X = np.array(['a','a','b','c','b','c'])
- >>> group(X)
- >>> g
- array([ 0., 0., 1., 2., 1., 2.])
- """
- uniq_dict = {}
- group = np.zeros(len(X))
- for i in xrange(len(X)):
- if not X[i] in uniq_dict:
- uniq_dict.update({X[i] : len(uniq_dict)})
- group[i] = uniq_dict[X[i]]
- return group
-
-def repanel_cov(groups, sigmas):
- '''calculate error covariance matrix for random effects model
-
- Parameters
- ----------
- groups : array, (nobs, nre) or (nobs,)
- array of group/category observations
- sigma : array, (nre+1,)
- array of standard deviations of random effects,
- last element is the standard deviation of the
- idiosyncratic error
-
- Returns
- -------
- omega : array, (nobs, nobs)
- covariance matrix of error
- omegainv : array, (nobs, nobs)
- inverse covariance matrix of error
- omegainvsqrt : array, (nobs, nobs)
- squareroot inverse covariance matrix of error
- such that omega = omegainvsqrt * omegainvsqrt.T
-
- Notes
- -----
- This does not use sparse matrices and constructs nobs by nobs
- matrices. Also, omegainvsqrt is not sparse, i.e. elements are non-zero
- '''
-
- if groups.ndim == 1:
- groups = groups[:,None]
- nobs, nre = groups.shape
- omega = sigmas[-1]*np.eye(nobs)
- for igr in range(nre):
- group = groups[:,igr:igr+1]
- groupuniq = np.unique(group)
- dummygr = sigmas[igr] * (group == groupuniq).astype(float)
- omega += np.dot(dummygr, dummygr.T)
- ev, evec = np.linalg.eigh(omega) #eig doesn't work
- omegainv = np.dot(evec, (1/ev * evec).T)
- omegainvhalf = evec/np.sqrt(ev)
- return omega, omegainv, omegainvhalf
-
-
-
-class PanelData(LongPanel):
- pass
-
-class PanelModel(object):
- """
- An abstract statistical model class for panel (longitudinal) datasets.
-
- Parameters
- ---------
- endog : array-like or str
- If a pandas object is used then endog should be the name of the
- endogenous variable as a string.
-# exog
-# panel_arr
-# time_arr
- panel_data : pandas.LongPanel object
-
- Notes
- -----
- If a pandas object is supplied it is assumed that the major_axis is time
- and that the minor_axis has the panel variable.
- """
- def __init__(self, endog=None, exog=None, panel=None, time=None,
- xtnames=None, equation=None, panel_data=None):
- if panel_data == None:
-# if endog == None and exog == None and panel == None and \
-# time == None:
-# raise ValueError("If pandel_data is False then endog, exog, \
-#panel_arr, and time_arr cannot be None.")
- self.initialize(endog, exog, panel, time, xtnames, equation)
-# elif aspandas != False:
-# if not isinstance(endog, str):
-# raise ValueError("If a pandas object is supplied then endog \
-#must be a string containing the name of the endogenous variable")
-# if not isinstance(aspandas, LongPanel):
-# raise ValueError("Only pandas.LongPanel objects are supported")
-# self.initialize_pandas(endog, aspandas, panel_name)
-
-
- def initialize(self, endog, exog, panel, time, xtnames, equation):
- """
- Initialize plain array model.
-
- See PanelModel
- """
-#TODO: for now, we are going assume a constant, and then make the first
-#panel the base, add a flag for this....
-
- # get names
- names = equation.split(" ")
- self.endog_name = names[0]
- exog_names = names[1:] # this makes the order matter in the array
- self.panel_name = xtnames[0]
- self.time_name = xtnames[1]
-
-
- novar = exog.var(0) == 0
- if True in novar:
- cons_index = np.where(novar == 1)[0][0] # constant col. num
- exog_names.insert(cons_index, 'cons')
-
- self._cons_index = novar # used again in fit_fixed
- self.exog_names = exog_names
- self.endog = np.squeeze(np.asarray(endog))
- exog = np.asarray(exog)
- self.exog = exog
- self.panel = np.asarray(panel)
- self.time = np.asarray(time)
-
- self.paneluniq = np.unique(panel)
- self.timeuniq = np.unique(time)
-#TODO: this structure can possibly be extracted somewhat to deal with
-#names in general
-
-#TODO: add some dimension checks, etc.
-
-# def initialize_pandas(self, endog, aspandas):
-# """
-# Initialize pandas objects.
-#
-# See PanelModel.
-# """
-# self.aspandas = aspandas
-# endog = aspandas[endog].values
-# self.endog = np.squeeze(endog)
-# exog_name = aspandas.columns.tolist()
-# exog_name.remove(endog)
-# self.exog = aspandas.filterItems(exog_name).values
-#TODO: can the above be simplified to slice notation?
-# if panel_name != None:
-# self.panel_name = panel_name
-# self.exog_name = exog_name
-# self.endog_name = endog
-# self.time_arr = aspandas.major_axis
- #TODO: is time always handled correctly in fromRecords?
-# self.panel_arr = aspandas.minor_axis
-#TODO: all of this might need to be refactored to explicitly rely (internally)
-# on the pandas LongPanel structure for speed and convenience.
-# not sure this part is finished...
-
-#TODO: doesn't conform to new initialize
- def initialize_pandas(self, panel_data, endog_name, exog_name):
- self.panel_data = panel_data
- endog = panel_data[endog_name].values # does this create a copy?
- self.endog = np.squeeze(endog)
- if exog_name == None:
- exog_name = panel_data.columns.tolist()
- exog_name.remove(endog_name)
- self.exog = panel_data.filterItems(exog_name).values # copy?
- self._exog_name = exog_name
- self._endog_name = endog_name
- self._timeseries = panel_data.major_axis # might not need these
- self._panelseries = panel_data.minor_axis
-
-#TODO: this could be pulled out and just have a by kwd that takes
-# the panel or time array
-#TODO: this also needs to be expanded for 'twoway'
- def _group_mean(self, X, index='oneway', counts=False, dummies=False):
- """
- Get group means of X by time or by panel.
-
- index default is panel
- """
- if index == 'oneway':
- Y = self.panel
- uniq = self.paneluniq
- elif index == 'time':
- Y = self.time
- uniq = self.timeuniq
- else:
- raise ValueError("index %s not understood" % index)
-
- #TODO: use sparse matrices
- dummy = (Y == uniq[:,None]).astype(float)
- if X.ndim > 1:
- mean = np.dot(dummy,X)/dummy.sum(1)[:,None]
- else:
- mean = np.dot(dummy,X)/dummy.sum(1)
- if counts == False and dummies == False:
- return mean
- elif counts == True and dummies == False:
- return mean, dummy.sum(1)
- elif counts == True and dummies == True:
- return mean, dummy.sum(1), dummy
- elif counts == False and dummies == True:
- return mean, dummy
-
-#TODO: Use kwd arguments or have fit_method methods?
- def fit(self, model=None, method=None, effects='oneway'):
- """
- method : LSDV, demeaned, MLE, GLS, BE, FE, optional
- model :
- between
- fixed
- random
- pooled
- [gmm]
- effects :
- oneway
- time
- twoway
- femethod : demeaned (only one implemented)
- WLS
- remethod :
- swar -
- amemiya
- nerlove
- walhus
-
-
- Notes
- ------
- This is unfinished. None of the method arguments work yet.
- Only oneway effects should work.
- """
- if method: # get rid of this with default
- method = method.lower()
- model = model.lower()
- if method and method not in ["lsdv", "demeaned", "mle", "gls", "be",
- "fe"]: # get rid of if method with default
- raise ValueError("%s not a valid method" % method)
-# if method == "lsdv":
-# self.fit_lsdv(model)
- if model == 'pooled':
- return GLS(self.endog, self.exog).fit()
- if model == 'between':
- return self._fit_btwn(method, effects)
- if model == 'fixed':
- return self._fit_fixed(method, effects)
-
-# def fit_lsdv(self, effects):
-# """
-# Fit using least squares dummy variables.
-#
-# Notes
-# -----
-# Should only be used for small `nobs`.
-# """
-# pdummies = None
-# tdummies = None
-
- def _fit_btwn(self, method, effects):
- # group mean regression or WLS
- if effects != "twoway":
- endog = self._group_mean(self.endog, index=effects)
- exog = self._group_mean(self.exog, index=effects)
- else:
- raise ValueError("%s effects is not valid for the between \
-estimator" % s)
- befit = GLS(endog, exog).fit()
- return befit
-
- def _fit_fixed(self, method, effects):
- endog = self.endog
- exog = self.exog
- demeantwice = False
- if effects in ["oneway","twoways"]:
- if effects == "twoways":
- demeantwice = True
- effects = "oneway"
- endog_mean, counts = self._group_mean(endog, index=effects,
- counts=True)
- exog_mean = self._group_mean(exog, index=effects)
- counts = counts.astype(int)
- endog = endog - np.repeat(endog_mean, counts)
- exog = exog - np.repeat(exog_mean, counts, axis=0)
- if demeantwice or effects == "time":
- endog_mean, dummies = self._group_mean(endog, index="time",
- dummies=True)
- exog_mean = self._group_mean(exog, index="time")
- # This allows unbalanced panels
- endog = endog - np.dot(endog_mean, dummies)
- exog = exog - np.dot(dummies.T, exog_mean)
- fefit = GLS(endog, exog[:,-self._cons_index]).fit()
-#TODO: might fail with one regressor
- return fefit
-
-
-
-
-class SURPanel(PanelModel):
- pass
-
-class SEMPanel(PanelModel):
- pass
-
-class DynamicPanel(PanelModel):
- pass
-
-if __name__ == "__main__":
- try:
- import pandas
- pandas.version >= .1
- except:
- raise ImportError("pandas >= .10 not installed")
- from pandas import LongPanel
- import scikits.statsmodels.api as sm
- import numpy.lib.recfunctions as nprf
-
- data = sm.datasets.grunfeld.load()
- # Baltagi doesn't include American Steel
- endog = data.endog[:-20]
- fullexog = data.exog[:-20]
-# fullexog.sort(order=['firm','year'])
- panel_arr = nprf.append_fields(fullexog, 'investment', endog, float,
- usemask=False)
- panel_panda = LongPanel.fromRecords(panel_arr, major_field='year',
- minor_field='firm')
-
- # the most cumbersome way of doing it as far as preprocessing by hand
- exog = fullexog[['value','capital']].view(float).reshape(-1,2)
- exog = sm.add_constant(exog)
- panel = group(fullexog['firm'])
- year = fullexog['year']
- panel_mod = PanelModel(endog, exog, panel, year, xtnames=['firm','year'],
- equation='invest value capital')
-# note that equation doesn't actually do anything but name the variables
- panel_ols = panel_mod.fit(model='pooled')
-
- panel_be = panel_mod.fit(model='between', effects='oneway')
- panel_fe = panel_mod.fit(model='fixed', effects='oneway')
-
- panel_bet = panel_mod.fit(model='between', effects='time')
- panel_fet = panel_mod.fit(model='fixed', effects='time')
-
- panel_fe2 = panel_mod.fit(model='fixed', effects='twoways')
-
-
-#see also Baltagi (3rd edt) 3.3 THE RANDOM EFFECTS MODEL p.35
-#for explicit formulas for spectral decomposition
-#but this works also for unbalanced panel
-#
-#I also just saw: 9.4.2 The Random Effects Model p.176 which is
-#partially almost the same as I did
-#
-#this needs to use sparse matrices for larger datasets
-#
-#"""
-#
-#import numpy as np
-#
-
- groups = np.array([0,0,0,1,1,2,2,2])
- nobs = groups.shape[0]
- groupuniq = np.unique(groups)
- periods = np.array([0,1,2,1,2,0,1,2])
- perioduniq = np.unique(periods)
-
- dummygr = (groups[:,None] == groupuniq).astype(float)
- dummype = (periods[:,None] == perioduniq).astype(float)
-
- sigma = 1.
- sigmagr = np.sqrt(2.)
- sigmape = np.sqrt(3.)
-
- #dummyall = np.c_[sigma*np.ones((nobs,1)), sigmagr*dummygr,
- # sigmape*dummype]
- #exclude constant ?
- dummyall = np.c_[sigmagr*dummygr, sigmape*dummype]
- # omega is the error variance-covariance matrix for the stacked
- # observations
- omega = np.dot(dummyall, dummyall.T) + sigma* np.eye(nobs)
- print omega
- print np.linalg.cholesky(omega)
- ev, evec = np.linalg.eigh(omega) #eig doesn't work
- omegainv = np.dot(evec, (1/ev * evec).T)
- omegainv2 = np.linalg.inv(omega)
- omegacomp = np.dot(evec, (ev * evec).T)
- print np.max(np.abs(omegacomp - omega))
- #check
- #print np.dot(omegainv,omega)
- print np.max(np.abs(np.dot(omegainv,omega) - np.eye(nobs)))
- omegainvhalf = evec/np.sqrt(ev) #not sure whether ev shouldn't be column
- print np.max(np.abs(np.dot(omegainvhalf,omegainvhalf.T) - omegainv))
-
- # now we can use omegainvhalf in GLS (instead of the cholesky)
-
-
-
-
-
-
-
-
- sigmas2 = np.array([sigmagr, sigmape, sigma])
- groups2 = np.column_stack((groups, periods))
- omega_, omegainv_, omegainvhalf_ = repanel_cov(groups2, sigmas2)
- print np.max(np.abs(omega_ - omega))
- print np.max(np.abs(omegainv_ - omegainv))
- print np.max(np.abs(omegainvhalf_ - omegainvhalf))
-
- # notation Baltagi (3rd) section 9.4.1 (Fixed Effects Model)
- Pgr = reduce(np.dot,[dummygr,
- np.linalg.inv(np.dot(dummygr.T, dummygr)),dummygr.T])
- Qgr = np.eye(nobs) - Pgr
- # within group effect: np.dot(Qgr, groups)
- # but this is not memory efficient, compared to groupstats
- print np.max(np.abs(np.dot(Qgr, groups)))
diff --git a/statsmodels/scikits/statsmodels/sandbox/pca.py b/statsmodels/scikits/statsmodels/sandbox/pca.py
deleted file mode 100644
index 06ce51d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/pca.py
+++ /dev/null
@@ -1,226 +0,0 @@
-#Copyright (c) 2008 Erik Tollerud (etolleru@uci.edu)
-
-import numpy as np
-from math import pi
-
-class Pca(object):
- """
- A basic class for Principal Component Analysis (PCA).
-
- p is the number of dimensions, while N is the number of data points
- """
- _colors=('r','g','b','c','y','m','k') #defaults
-
- def __calc(self):
- A = self.A
- M=A-np.mean(A,axis=0)
- N=M/np.std(M,axis=0)
-
- self.M = M
- self.N = N
- self._eig = None
-
- def __init__(self,data,names=None):
- """
- p X N matrix input
- """
- from warnings import warn
- A = np.array(data).T
- n,p = A.shape
- self.n,self.p = n,p
- if p > n:
- warn('p > n - intentional?')
- self.A = A
- self._origA=A.copy()
-
- self.__calc()
-
- self._colors= np.tile(self._colors,int((p-1)/len(self._colors))+1)[:p]
- if names is not None and len(names) != p:
- raise ValueError('names must match data dimension')
- self.names = None if names is None else tuple([str(n) for n in names])
-
-
- def getCovarianceMatrix(self):
- """
- returns the covariance matrix for the dataset
- """
- return np.cov(self.N.T)
-
- def getEigensystem(self):
- """
- returns a tuple of (eigenvalues,eigenvectors) for the data set.
- """
- if self._eig is None:
- res = np.linalg.eig(self.getCovarianceMatrix())
- sorti=np.argsort(res[0])[::-1]
- res=(res[0][sorti],res[1][:,sorti])
- self._eig=res
- return self._eig
-
- def getEigenvalues(self):
- return self.getEigensystem()[0]
-
- def getEigenvectors(self):
- return self.getEigensystem()[1]
-
- def getEnergies(self):
- """
- "energies" are just normalized eigenvectors
- """
- v=self.getEigenvalues()
- return v/np.sum(v)
-
- def plot2d(self,ix=0,iy=1,clf=True):
- """
- Generates a 2-dimensional plot of the data set and principle components
- using matplotlib.
-
- ix specifies which p-dimension to put on the x-axis of the plot
- and iy specifies which to put on the y-axis (0-indexed)
- """
- import matplotlib.pyplot as plt
- x,y=self.N[:,ix],self.N[:,iy]
- if clf:
- plt.clf()
- plt.scatter(x,y)
- vals,evs=self.getEigensystem()
- #evx,evy=evs[:,ix],evs[:,iy]
- xl,xu=plt.xlim()
- yl,yu=plt.ylim()
- dx,dy=(xu-xl),(yu-yl)
- for val,vec,c in zip(vals,evs.T,self._colors):
- plt.arrow(0,0,val*vec[ix],val*vec[iy],head_width=0.05*(dx*dy/4)**0.5,fc=c,ec=c)
- #plt.arrow(0,0,vals[ix]*evs[ix,ix],vals[ix]*evs[iy,ix],head_width=0.05*(dx*dy/4)**0.5,fc='g',ec='g')
- #plt.arrow(0,0,vals[iy]*evs[ix,iy],vals[iy]*evs[iy,iy],head_width=0.05*(dx*dy/4)**0.5,fc='r',ec='r')
- if self.names is not None:
- plt.xlabel('$'+self.names[ix]+'/\\sigma$')
- plt.ylabel('$'+self.names[iy]+'/\\sigma$')
-
- def plot3d(self,ix=0,iy=1,iz=2,clf=True):
- """
- Generates a 3-dimensional plot of the data set and principle components
- using mayavi.
-
- ix, iy, and iz specify which of the input p-dimensions to place on each of
- the x,y,z axes, respectively (0-indexed).
- """
- import enthought.mayavi.mlab as M
- if clf:
- M.clf()
- z3=np.zeros(3)
- v=(self.getEigenvectors()*self.getEigenvalues())
- M.quiver3d(z3,z3,z3,v[ix],v[iy],v[iz],scale_factor=5)
- M.points3d(self.N[:,ix],self.N[:,iy],self.N[:,iz],scale_factor=0.3)
- if self.names:
- M.axes(xlabel=self.names[ix]+'/sigma',ylabel=self.names[iy]+'/sigma',zlabel=self.names[iz]+'/sigma')
- else:
- M.axes()
-
- def sigclip(self,sigs):
- """
- clips out all data points that are more than a certain number
- of standard deviations from the mean.
-
- sigs can be either a single value or a length-p sequence that
- specifies the number of standard deviations along each of the
- p dimensions.
- """
- if np.isscalar(sigs):
- sigs=sigs*np.ones(self.N.shape[1])
- sigs = sigs*np.std(self.N,axis=1)
- n = self.N.shape[0]
- m = np.all(np.abs(self.N) < sigs,axis=1)
- self.A=self.A[m]
- self.__calc()
- return n-sum(m)
-
- def reset(self):
- self.A = self._origA.copy()
- self.__calc()
-
-
- def project(self,vals=None,enthresh=None,nPCs=None,cumen=None):
- """
- projects the normalized values onto the components
-
- enthresh, nPCs, and cumen determine how many PCs to use
-
- if vals is None, the normalized data vectors are the values to project.
- Otherwise, it should be convertable to a p x N array
-
- returns n,p(>threshold) dimension array
- """
- nonnones = sum([e != None for e in (enthresh,nPCs,cumen)])
- if nonnones == 0:
- m = slice(None)
- elif nonnones > 1:
- raise ValueError("can't specify more than one threshold")
- else:
- if enthresh is not None:
- m = self.energies() > enthresh
- elif nPCs is not None:
- m = slice(None,nPCs)
- elif cumen is not None:
- m = np.cumsum(self.energies()) < cumen
- else:
- raise RuntimeError('Should be unreachable')
-
- if vals is None:
- vals = self.N.T
- else:
- vals = np.array(vals,copy=False)
- if self.N.T.shape[0] != vals.shape[0]:
- raise ValueError("shape for vals doesn't match")
- proj = np.matrix(self.getEigenvectors()).T*vals
- return proj[m].T
-
- def deproject(self,A,normed=True):
- """
- input is an n X q array, where q <= p
-
- output is p X n
- """
- A=np.atleast_2d(A)
- n,q = A.shape
- p = self.A.shape[1]
- if q > p :
- raise ValueError("q > p")
-
- evinv=np.linalg.inv(np.matrix(self.getEigenvectors()).T)
-
- zs = np.zeros((n,p))
- zs[:,:q]=A
-
- proj = evinv*zs.T
-
- if normed:
- return np.array(proj.T).T
- else:
- mns=np.mean(self.A,axis=0)
- sds=np.std(self.M,axis=0)
- return (np.array(proj.T)*sds+mns).T
-
- def subtractPC(self,pc,vals=None):
- """
- pc can be a scalar or any sequence of pc indecies
-
- if vals is None, the source data is self.A, else whatever is in vals
- (which must be p x m)
- """
- if vals is None:
- vals = self.A
- else:
- vals = vals.T
- if vals.shape[1]!= self.A.shape[1]:
- raise ValueError("vals don't have the correct number of components")
-
- pcs=self.project()
- zpcs=np.zeros_like(pcs)
- zpcs[:,pc]=pcs[:,pc]
- upc=self.deproject(zpcs,False)
-
- A = vals.T-upc
- B = A.T*np.std(self.M,axis=0)
- return B+np.mean(self.A,axis=0)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/__init__.py b/statsmodels/scikits/statsmodels/sandbox/regression/__init__.py
deleted file mode 100644
index 3ab5b3d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/__init__.py
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-#from anova_nistcertified import anova_oneway, anova_ols
-#from predstd import wls_prediction_std
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/anova_nistcertified.py b/statsmodels/scikits/statsmodels/sandbox/regression/anova_nistcertified.py
deleted file mode 100644
index 4180586..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/anova_nistcertified.py
+++ /dev/null
@@ -1,105 +0,0 @@
-'''calculating anova and verifying with NIST test data
-
-compares my implementations, stats.f_oneway and anova using statsmodels.OLS
-'''
-import os
-import numpy as np
-from scipy import stats
-
-filenameli = ['SiRstv.dat', 'SmLs01.dat', 'SmLs02.dat', 'SmLs03.dat', 'AtmWtAg.dat',
- 'SmLs04.dat', 'SmLs05.dat', 'SmLs06.dat', 'SmLs07.dat', 'SmLs08.dat',
- 'SmLs09.dat']
-##filename = 'SmLs03.dat' #'SiRstv.dat' #'SmLs09.dat'#, 'AtmWtAg.dat' #'SmLs07.dat'
-
-
-##path = __file__
-##print locals().keys()
-###print path
-
-
-def getnist(filename):
- fname = os.path.abspath(os.path.join('./data', filename))
- content = file(fname,'r').read().split('\n')
- data = [line.split() for line in content[60:]]
- certified = [line.split() for line in content[40:48] if line]
- dataf = np.loadtxt(fname, skiprows=60)
- y,x = dataf.T
- y = y.astype(int)
- caty = np.unique(y)
- f = float(certified[0][-1])
- R2 = float(certified[2][-1])
- resstd = float(certified[4][-1])
- dfbn = int(certified[0][-4])
- dfwn = int(certified[1][-3]) # dfbn->dfwn is this correct
- prob = stats.f.sf(f,dfbn,dfwn)
- return y, x, np.array([f, prob, R2, resstd]), certified, caty
-
-
-from try_catdata import groupsstats_dummy, groupstatsbin
-
-
-def anova_oneway(y, x, seq=0):
- # new version to match NIST
- # no generalization or checking of arguments, tested only for 1d
- yrvs = y[:,np.newaxis] #- min(y)
- #subracting mean increases numerical accuracy for NIST test data sets
- xrvs = x[:,np.newaxis] - x.mean() #for 1d#- 1e12 trick for 'SmLs09.dat'
-
- meang, varg, xdevmeangr, countg = groupsstats_dummy(yrvs[:,:1], xrvs[:,:1])#, seq=0)
- #the following does not work as replacement
- #gcount, gmean , meanarr, withinvar, withinvararr = groupstatsbin(y, x)#, seq=0)
- sswn = np.dot(xdevmeangr.T,xdevmeangr)
- ssbn = np.dot((meang-xrvs.mean())**2, countg.T)
- nobs = yrvs.shape[0]
- ncat = meang.shape[1]
- dfbn = ncat - 1
- dfwn = nobs - ncat
- msb = ssbn/float(dfbn)
- msw = sswn/float(dfwn)
- f = msb/msw
- prob = stats.f.sf(f,dfbn,dfwn)
- R2 = (ssbn/(sswn+ssbn)) #R-squared
- resstd = np.sqrt(msw) #residual standard deviation
- #print f, prob
- def _fix2scalar(z): # return number
- if np.shape(z) == (1, 1): return z[0,0]
- else: return z
- f, prob, R2, resstd = map(_fix2scalar, (f, prob, R2, resstd))
- return f, prob, R2, resstd
-
-import scikits.statsmodels.api as sm
-from try_ols_anova import data2dummy
-
-def anova_ols(y, x):
- X = sm.add_constant(data2dummy(x))
- res = sm.OLS(y, X).fit()
- return res.fvalue, res.f_pvalue, res.rsquared, np.sqrt(res.mse_resid)
-
-
-
-if __name__ == '__main__':
- print '\n using new ANOVA anova_oneway'
- print 'f, prob, R2, resstd'
- for fn in filenameli:
- print fn
- y, x, cert, certified, caty = getnist(fn)
- res = anova_oneway(y, x)
- print np.array(res) - cert
-
- print '\n using stats ANOVA f_oneway'
- for fn in filenameli:
- print fn
- y, x, cert, certified, caty = getnist(fn)
- xlist = [x[y==ii] for ii in caty]
- res = stats.f_oneway(*xlist)
- print np.array(res) - cert[:2]
-
- print '\n using statsmodels.OLS'
- print 'f, prob, R2, resstd'
- for fn in filenameli[:]:
- print fn
- y, x, cert, certified, caty = getnist(fn)
- res = anova_ols(x, y)
- print np.array(res) - cert
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/ar_panel.py b/statsmodels/scikits/statsmodels/sandbox/regression/ar_panel.py
deleted file mode 100644
index cd85bb7..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/ar_panel.py
+++ /dev/null
@@ -1,114 +0,0 @@
-'''Paneldata model with fixed effect (constants) and AR(1) errors
-
-checking fast evaluation of groupar1filter
-quickly written to try out grouparfilter without python loops
-
-maybe the example has MA(1) not AR(1) errors, I'm not sure and changed this.
-
-results look good, I'm also differencing the dummy variable (constants) ???
-e.g. nobs = 35
-true 0.6, 10, 20, 30 (alpha, mean_0, mean_1, mean_2)
-estimate 0.369453125 [ 10.14646929 19.87135086 30.12706505]
-
-Currently minimizes ssr but could switch to minimize llf, i.e. conditional MLE.
-This should correspond to iterative FGLS, where data are AR(1) transformed
-similar to GLSAR ?
-Result statistic from GLS return by OLS on transformed data should be
-asymptotically correct (check)
-
-Could be extended to AR(p) errors, but then requires panel with larger T
-
-'''
-
-
-
-import numpy as np
-from scipy import optimize
-
-from scikits.statsmodels.regression.linear_model import OLS
-
-
-class PanelAR1(object):
- def __init__(self, endog, exog=None, groups=None):
- #take this from a super class, no checking is done here
- nobs = endog.shape[0]
- self.endog = endog
- if not exog is None:
- self.exog = exog
-
- self.groups_start = (np.diff(groups)!=0)
- self.groups_valid = ~self.groups_start
-
- def ar1filter(self, xy, alpha):
- #print alpha,
- return (xy[1:] - alpha * xy[:-1])[self.groups_valid]
-
- def fit_conditional(self, alpha):
- y = self.ar1filter(self.endog, alpha)
- x = self.ar1filter(self.exog, alpha)
- res = OLS(y, x).fit()
- return res.ssr #res.llf
-
-
- def fit(self):
- alpha0 = 0.1 #startvalue
- func = self.fit_conditional
- fitres = optimize.fmin(func, alpha0)
-
- # fit_conditional only returns ssr for now
- alpha = fitres[0]
- y = self.ar1filter(self.endog, alpha)
- x = self.ar1filter(self.exog, alpha)
- reso = OLS(y, x).fit()
-
- return fitres, reso
-
-if __name__ == '__main__':
-
- #------------ developement code for groupar1filter and example
- groups = np.array([0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,
- 2,2,2,2,2,2,2,2])
- nobs = len(groups)
- data0 = np.arange(nobs)
-
- data = np.arange(1,nobs+1) - 0.5*np.arange(nobs) + 0.1*np.random.randn(nobs)
-
- y00 = 0.5*np.random.randn(nobs+1)
-
- # I don't think a trend is handled yet
- data = np.arange(nobs) + y00[1:] + 0.2*y00[:-1] + 0.1*np.random.randn(nobs)
- #Are these AR(1) or MA(1) errors ???
- data = y00[1:] + 0.6*y00[:-1] #+ 0.1*np.random.randn(nobs)
-
- group_codes = np.unique(groups)
- group_dummy = (groups[:,None] == group_codes).astype(int)
-
- groups_start = (np.diff(groups)!=0)
- groups_valid = (np.diff(groups)==0) #this applies to y with length for AR(1)
- #could use np.nonzero for index instead
-
- y = data + np.dot(group_dummy, np.array([10, 20, 30]))
- y0 = data0 + np.dot(group_dummy, np.array([10, 20, 30]))
-
- print groups_valid
- print np.diff(y)[groups_valid]
-
- alpha = 1 #test with 1
- print (y0[1:] - alpha*y0[:-1])[groups_valid]
- alpha = 0.2 #test with 1
- print (y0[1:] - alpha*y0[:-1] + 0.001)[groups_valid]
- #this is now AR(1) for each group separately
-
-
- #------------
-
- #fitting the example
-
- exog = np.ones(nobs)
- exog = group_dummy
- mod = PanelAR1(y, exog, groups=groups)
- #mod = PanelAR1(data, exog, groups=groups) #data doesn't contain different means
- #print mod.ar1filter(mod.endog, 1)
- resa, reso = mod.fit()
- print resa[0], reso.params
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/AtmWtAg.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/AtmWtAg.dat
deleted file mode 100644
index 9198446..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/AtmWtAg.dat
+++ /dev/null
@@ -1,108 +0,0 @@
-NIST/ITL StRD
-Dataset Name: AtmWtAg (AtmWtAg.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 108)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Powell, L.J., Murphy, T.J. and Gramlich, J.W. (1982).
- "The Absolute Isotopic Abundance & Atomic Weight
- of a Reference Sample of Silver".
- NBS Journal of Research, 87, pp. 9-19.
-
-
-Data: 1 Factor
- 2 Treatments
- 24 Replicates/Cell
- 48 Observations
- 7 Constant Leading Digits
- Average Level of Difficulty
- Observed Data
-
-
-Model: 3 Parameters (mu, tau_1, tau_2)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-
-Between Instrument 1 3.63834187500000E-09 3.63834187500000E-09 1.59467335677930E+01
-Within Instrument 46 1.04951729166667E-08 2.28155932971014E-10
-
- Certified R-Squared 2.57426544538321E-01
-
- Certified Residual
- Standard Deviation 1.51048314446410E-05
-
-
-
-
-
-
-
-
-
-
-
-Data: Instrument AgWt
- 1 107.8681568
- 1 107.8681465
- 1 107.8681572
- 1 107.8681785
- 1 107.8681446
- 1 107.8681903
- 1 107.8681526
- 1 107.8681494
- 1 107.8681616
- 1 107.8681587
- 1 107.8681519
- 1 107.8681486
- 1 107.8681419
- 1 107.8681569
- 1 107.8681508
- 1 107.8681672
- 1 107.8681385
- 1 107.8681518
- 1 107.8681662
- 1 107.8681424
- 1 107.8681360
- 1 107.8681333
- 1 107.8681610
- 1 107.8681477
- 2 107.8681079
- 2 107.8681344
- 2 107.8681513
- 2 107.8681197
- 2 107.8681604
- 2 107.8681385
- 2 107.8681642
- 2 107.8681365
- 2 107.8681151
- 2 107.8681082
- 2 107.8681517
- 2 107.8681448
- 2 107.8681198
- 2 107.8681482
- 2 107.8681334
- 2 107.8681609
- 2 107.8681101
- 2 107.8681512
- 2 107.8681469
- 2 107.8681360
- 2 107.8681254
- 2 107.8681261
- 2 107.8681450
- 2 107.8681368
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/Longley.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/Longley.dat
deleted file mode 100644
index af8e58c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/Longley.dat
+++ /dev/null
@@ -1,76 +0,0 @@
-NIST/ITL StRD
-Dataset Name: Longley (Longley.dat)
-
-File Format: ASCII
- Certified Values (lines 31 to 51)
- Data (lines 61 to 76)
-
-Procedure: Linear Least Squares Regression
-
-Reference: Longley, J. W. (1967).
- An Appraisal of Least Squares Programs for the
- Electronic Computer from the Viewpoint of the User.
- Journal of the American Statistical Association, 62, pp. 819-841.
-
-Data: 1 Response Variable (y)
- 6 Predictor Variable (x)
- 16 Observations
- Higher Level of Difficulty
- Observed Data
-
-Model: Polynomial Class
- 7 Parameters (B0,B1,...,B7)
-
- y = B0 + B1*x1 + B2*x2 + B3*x3 + B4*x4 + B5*x5 + B6*x6 + e
-
- Certified Regression Statistics
-
- Standard Deviation
- Parameter Estimate of Estimate
-
- B0 -3482258.63459582 890420.383607373
- B1 15.0618722713733 84.9149257747669
- B2 -0.358191792925910E-01 0.334910077722432E-01
- B3 -2.02022980381683 0.488399681651699
- B4 -1.03322686717359 0.214274163161675
- B5 -0.511041056535807E-01 0.226073200069370
- B6 1829.15146461355 455.478499142212
-
- Residual
- Standard Deviation 304.854073561965
-
- R-Squared 0.995479004577296
-
-
- Certified Analysis of Variance Table
-
-Source of Degrees of Sums of Mean
-Variation Freedom Squares Squares F Statistic
-
-Regression 6 184172401.944494 30695400.3240823 330.285339234588
-Residual 9 836424.055505915 92936.0061673238
-
-
-
-
-
-
-
-
-Data: y x1 x2 x3 x4 x5 x6
- 60323 83.0 234289 2356 1590 107608 1947
- 61122 88.5 259426 2325 1456 108632 1948
- 60171 88.2 258054 3682 1616 109773 1949
- 61187 89.5 284599 3351 1650 110929 1950
- 63221 96.2 328975 2099 3099 112075 1951
- 63639 98.1 346999 1932 3594 113270 1952
- 64989 99.0 365385 1870 3547 115094 1953
- 63761 100.0 363112 3578 3350 116219 1954
- 66019 101.2 397469 2904 3048 117388 1955
- 67857 104.6 419180 2822 2857 118734 1956
- 68169 108.4 442769 2936 2798 120445 1957
- 66513 110.8 444546 4681 2637 121950 1958
- 68655 112.6 482704 3813 2552 123366 1959
- 69564 114.2 502601 3931 2514 125368 1960
- 69331 115.7 518173 4806 2572 127852 1961
- 70551 116.9 554894 4007 2827 130081 1962
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SiRstv.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SiRstv.dat
deleted file mode 100644
index b824974..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SiRstv.dat
+++ /dev/null
@@ -1,85 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SiRstv (SiRstv.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 85)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Ehrstein, James and Croarkin, M. Carroll.
- Unpublished NIST dataset.
-
-
-Data: 1 Factor
- 5 Treatments
- 5 Replicates/Cell
- 25 Observations
- 3 Constant Leading Digits
- Lower Level of Difficulty
- Observed Data
-
-
-Model: 6 Parameters (mu,tau_1, ... , tau_5)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Instrument 4 5.11462616000000E-02 1.27865654000000E-02 1.18046237440255E+00
-Within Instrument 20 2.16636560000000E-01 1.08318280000000E-02
-
- Certified R-Squared 1.90999039051129E-01
-
- Certified Residual
- Standard Deviation 1.04076068334656E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Instrument Resistance
- 1 196.3052
- 1 196.1240
- 1 196.1890
- 1 196.2569
- 1 196.3403
- 2 196.3042
- 2 196.3825
- 2 196.1669
- 2 196.3257
- 2 196.0422
- 3 196.1303
- 3 196.2005
- 3 196.2889
- 3 196.0343
- 3 196.1811
- 4 196.2795
- 4 196.1748
- 4 196.1494
- 4 196.1485
- 4 195.9885
- 5 196.2119
- 5 196.1051
- 5 196.1850
- 5 196.0052
- 5 196.2090
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs01.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs01.dat
deleted file mode 100644
index 0862e8d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs01.dat
+++ /dev/null
@@ -1,249 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs01 (SmLs01.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 249)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 21 Replicates/Cell
- 189 Observations
- 1 Constant Leading Digit
- Lower Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.68000000000000E+00 2.10000000000000E-01 2.10000000000000E+01
-Within Treatment 180 1.80000000000000E+00 1.00000000000000E-02
-
- Certified R-Squared 4.82758620689655E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1.4
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 2 1.3
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 3 1.5
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 4 1.3
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 5 1.5
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 6 1.3
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 7 1.5
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 8 1.3
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 9 1.5
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs02.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs02.dat
deleted file mode 100644
index 7734e86..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs02.dat
+++ /dev/null
@@ -1,1869 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs02 (SmLs02.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 1869)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 201 Replicates/Cell
- 1809 Observations
- 1 Constant Leading Digit
- Lower Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60800000000000E+01 2.01000000000000E+00 2.01000000000000E+02
-Within Treatment 1800 1.80000000000000E+01 1.00000000000000E-02
-
- Certified R-Squared 4.71830985915493E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1.4
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 2 1.3
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 3 1.5
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 4 1.3
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 5 1.5
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 6 1.3
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 7 1.5
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 8 1.3
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 9 1.5
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs03.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs03.dat
deleted file mode 100644
index a6c89bd..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs03.dat
+++ /dev/null
@@ -1,18069 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs03 (SmLs03.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 18069)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 2001 Replicates/Cell
- 18009 Observations
- 1 Constant Leading Digit
- Lower Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60080000000000E+02 2.00100000000000E+01 2.00100000000000E+03
-Within Treatment 18000 1.80000000000000E+02 1.00000000000000E-02
-
- Certified R-Squared 4.70712773465067E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1.4
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 1 1.3
- 1 1.5
- 2 1.3
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 2 1.2
- 2 1.4
- 3 1.5
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 3 1.4
- 3 1.6
- 4 1.3
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 4 1.2
- 4 1.4
- 5 1.5
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 5 1.4
- 5 1.6
- 6 1.3
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 6 1.2
- 6 1.4
- 7 1.5
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 7 1.4
- 7 1.6
- 8 1.3
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 8 1.2
- 8 1.4
- 9 1.5
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
- 9 1.4
- 9 1.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs04.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs04.dat
deleted file mode 100644
index 85f07ae..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs04.dat
+++ /dev/null
@@ -1,249 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs04 (SmLs04.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 249)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 21 Replicates/Cell
- 189 Observations
- 7 Constant Leading Digits
- Average Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.68000000000000E+00 2.10000000000000E-01 2.10000000000000E+01
-Within Treatment 180 1.80000000000000E+00 1.00000000000000E-02
-
- Certified R-Squared 4.82758620689655E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000.4
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 2 1000000.3
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 3 1000000.5
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 4 1000000.3
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 5 1000000.5
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 6 1000000.3
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 7 1000000.5
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 8 1000000.3
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 9 1000000.5
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs05.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs05.dat
deleted file mode 100644
index abc3acb..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs05.dat
+++ /dev/null
@@ -1,1869 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs05 (SmLs05.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 1869)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 201 Replicates/Cell
- 1809 Observations
- 7 Constant Leading Digits
- Average Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60800000000000E+01 2.01000000000000E+00 2.01000000000000E+02
-Within Treatment 1800 1.80000000000000E+01 1.00000000000000E-02
-
- Certified R-Squared 4.71830985915493E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000.4
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 2 1000000.3
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 3 1000000.5
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 4 1000000.3
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 5 1000000.5
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 6 1000000.3
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 7 1000000.5
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 8 1000000.3
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 9 1000000.5
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs06.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs06.dat
deleted file mode 100644
index 874330b..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs06.dat
+++ /dev/null
@@ -1,18069 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs06 (SmLs06.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 18069)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 2001 Replicates/Cell
- 18009 Observations
- 7 Constant Leading Digits
- Average Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60080000000000E+02 2.00100000000000E+01 2.00100000000000E+03
-Within Treatment 18000 1.80000000000000E+02 1.00000000000000E-02
-
- Certified R-Squared 4.70712773465067E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000.4
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 1 1000000.3
- 1 1000000.5
- 2 1000000.3
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 2 1000000.2
- 2 1000000.4
- 3 1000000.5
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 3 1000000.4
- 3 1000000.6
- 4 1000000.3
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 4 1000000.2
- 4 1000000.4
- 5 1000000.5
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 5 1000000.4
- 5 1000000.6
- 6 1000000.3
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 6 1000000.2
- 6 1000000.4
- 7 1000000.5
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 7 1000000.4
- 7 1000000.6
- 8 1000000.3
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 8 1000000.2
- 8 1000000.4
- 9 1000000.5
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
- 9 1000000.4
- 9 1000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs07.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs07.dat
deleted file mode 100644
index bcadc4a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs07.dat
+++ /dev/null
@@ -1,249 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs07 (SmLs07.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 249)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 21 Replicates/Cell
- 189 Observations
- 13 Constant Leading Digits
- Higher Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.68000000000000E+00 2.10000000000000E-01 2.10000000000000E+01
-Within Treatment 180 1.80000000000000E+00 1.00000000000000E-02
-
- Certified R-Squared 4.82758620689655E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000000000.4
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 2 1000000000000.3
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 3 1000000000000.5
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 4 1000000000000.3
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 5 1000000000000.5
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 6 1000000000000.3
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 7 1000000000000.5
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 8 1000000000000.3
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 9 1000000000000.5
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs08.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs08.dat
deleted file mode 100644
index 0d296e5..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs08.dat
+++ /dev/null
@@ -1,1869 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs08 (SmLs08.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 1869)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 201 Replicates/Cell
- 1809 Observations
- 13 Constant Leading Digits
- Higher Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60800000000000E+01 2.01000000000000E+00 2.01000000000000E+02
-Within Treatment 1800 1.80000000000000E+01 1.00000000000000E-02
-
- Certified R-Squared 4.71830985915493E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000000000.4
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 2 1000000000000.3
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 3 1000000000000.5
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 4 1000000000000.3
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 5 1000000000000.5
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 6 1000000000000.3
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 7 1000000000000.5
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 8 1000000000000.3
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 9 1000000000000.5
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs09.dat b/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs09.dat
deleted file mode 100644
index 11e5969..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/data/SmLs09.dat
+++ /dev/null
@@ -1,18069 +0,0 @@
-NIST/ITL StRD
-Dataset Name: SmLs09 (SmLs09.dat)
-
-
-File Format: ASCII
- Certified Values (lines 41 to 47)
- Data (lines 61 to 18069)
-
-
-Procedure: Analysis of Variance
-
-
-Reference: Simon, Stephen D. and Lesage, James P. (1989).
- "Assessing the Accuracy of ANOVA Calculations in
- Statistical Software".
- Computational Statistics & Data Analysis, 8, pp. 325-332.
-
-
-Data: 1 Factor
- 9 Treatments
- 2001 Replicates/Cell
- 18009 Observations
- 13 Constant Leading Digits
- Higher Level of Difficulty
- Generated Data
-
-
-Model: 10 Parameters (mu,tau_1, ... , tau_9)
- y_{ij} = mu + tau_i + epsilon_{ij}
-
-
-
-
-
-
-Certified Values:
-
-Source of Sums of Mean
-Variation df Squares Squares F Statistic
-
-Between Treatment 8 1.60080000000000E+02 2.00100000000000E+01 2.00100000000000E+03
-Within Treatment 18000 1.80000000000000E+02 1.00000000000000E-02
-
- Certified R-Squared 4.70712773465067E-01
-
- Certified Residual
- Standard Deviation 1.00000000000000E-01
-
-
-
-
-
-
-
-
-
-
-
-
-Data: Treatment Response
- 1 1000000000000.4
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 1 1000000000000.3
- 1 1000000000000.5
- 2 1000000000000.3
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 2 1000000000000.2
- 2 1000000000000.4
- 3 1000000000000.5
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 3 1000000000000.4
- 3 1000000000000.6
- 4 1000000000000.3
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 4 1000000000000.2
- 4 1000000000000.4
- 5 1000000000000.5
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 5 1000000000000.4
- 5 1000000000000.6
- 6 1000000000000.3
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 6 1000000000000.2
- 6 1000000000000.4
- 7 1000000000000.5
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 7 1000000000000.4
- 7 1000000000000.6
- 8 1000000000000.3
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 8 1000000000000.2
- 8 1000000000000.4
- 9 1000000000000.5
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
- 9 1000000000000.4
- 9 1000000000000.6
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/example_kernridge.py b/statsmodels/scikits/statsmodels/sandbox/regression/example_kernridge.py
deleted file mode 100644
index 2476623..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/example_kernridge.py
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-import numpy as np
-import matplotlib.pyplot as plt
-from kernridgeregress_class import GaussProcess, kernel_euclid
-
-
-m,k = 50,4
-upper = 6
-scale = 10
-xs = np.linspace(1,upper,m)[:,np.newaxis]
-#xs1 = xs1a*np.ones((1,4)) + 1/(1.0+np.exp(np.random.randn(m,k)))
-#xs1 /= np.std(xs1[::k,:],0) # normalize scale, could use cov to normalize
-##y1true = np.sum(np.sin(xs1)+np.sqrt(xs1),1)[:,np.newaxis]
-xs1 = np.sin(xs)#[:,np.newaxis]
-y1true = np.sum(xs1 + 0.01*np.sqrt(np.abs(xs1)),1)[:,np.newaxis]
-y1 = y1true + 0.10 * np.random.randn(m,1)
-
-stride = 3 #use only some points as trainig points e.g 2 means every 2nd
-xstrain = xs1[::stride,:]
-ystrain = y1[::stride,:]
-xstrain = np.r_[xs1[:m/2,:], xs1[m/2+10:,:]]
-ystrain = np.r_[y1[:m/2,:], y1[m/2+10:,:]]
-index = np.hstack((np.arange(m/2), np.arange(m/2+10,m)))
-gp1 = GaussProcess(xstrain, ystrain, kernel=kernel_euclid,
- ridgecoeff=5*1e-4)
-yhatr1 = gp1.predict(xs1)
-plt.figure()
-plt.plot(y1true, y1,'bo',y1true, yhatr1,'r.')
-plt.title('euclid kernel: true y versus noisy y and estimated y')
-plt.figure()
-plt.plot(index,ystrain.ravel(),'bo-',y1true,'go-',yhatr1,'r.-')
-plt.title('euclid kernel: true (green), noisy (blue) and estimated (red) '+
- 'observations')
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/gmm.py b/statsmodels/scikits/statsmodels/sandbox/regression/gmm.py
deleted file mode 100644
index 8095b24..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/gmm.py
+++ /dev/null
@@ -1,936 +0,0 @@
-'''Generalized Method of Moments, GMM, and Two-Stage Least Squares for
-instrumental variables IV2SLS
-
-
-
-Issues
-------
-* number of parameters, nparams, and starting values for parameters
- Where to put them? start was initially taken from global scope (bug)
-* When optimal weighting matrix cannot be calculated numerically
- In DistQuantilesGMM, we only have one row of moment conditions, not a
- moment condition for each observation, calculation for cov of moments
- breaks down. iter=1 works (weights is identity matrix)
- -> need method to do one iteration with an identity matrix or an
- analytical weighting matrix given as parameter.
- -> add result statistics for this case, e.g. cov_params, I have it in the
- standalone function (and in calc_covparams which is a copy of it),
- but not tested yet.
- DONE `fitonce` in DistQuantilesGMM, params are the same as in direct call to fitgmm
- move it to GMM class (once it's clearer for which cases I need this.)
-* GMM doesn't know anything about the underlying model, e.g. y = X beta + u or panel
- data model. It would be good if we can reuse methods from regressions, e.g.
- predict, fitted values, calculating the error term, and some result statistics.
- What's the best way to do this, multiple inheritance, outsourcing the functions,
- mixins or delegation (a model creates a GMM instance just for estimation).
-
-
-Unclear
--------
-* dof in Hausman
- - based on rank
- - differs between IV2SLS method and function used with GMM or (IV2SLS)
- - with GMM, covariance matrix difference has negative eigenvalues in iv example, ???
-* jtest/jval
- - I'm not sure about the normalization (multiply or divide by nobs) in jtest.
- need a test case. Scaling of jval is irrelevant for estimation.
- jval in jtest looks to large in example, but I have no idea about the size
-* bse for fitonce look too large (no time for checking now)
- formula for calc_cov_params for the case without optimal weighting matrix
- is wrong. I don't have an estimate for omega in that case. And I'm confusing
- between weights and omega, which are *not* the same in this case.
-
-
-
-Author: josef-pktd
-License: BSD (3-clause)
-
-'''
-
-
-
-
-import numpy as np
-from scipy import optimize, stats
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime1, approx_hess
-from scikits.statsmodels.base.model import LikelihoodModel, LikelihoodModelResults
-from scikits.statsmodels.regression.linear_model import RegressionResults, OLS
-import scikits.statsmodels.tools.tools as tools
-
-
-def maxabs(x):
- '''just a shortcut to np.abs(x).max()
- '''
- return np.abs(x).max()
-
-
-class IV2SLS(LikelihoodModel):
- '''
- class for instrumental variables estimation using Two-Stage Least-Squares
-
-
- Parameters
- ----------
- endog: array 1d
- endogenous variable
- exog : array
- explanatory variables
- instruments : array
- instruments for explanatory variables, needs to contain those exog
- variables that are not instrumented out
-
- Notes
- -----
- All variables in exog are instrumented in the calculations. If variables
- in exog are not supposed to be instrumented out, then these variables
- need also to be included in the instrument array.
-
-
- '''
-
- def __init__(self, endog, exog, instrument=None):
- self.instrument = instrument
- super(IV2SLS, self).__init__(endog, exog)
- # where is this supposed to be handled
- #Note: Greene p.77/78 dof correction is not necessary (because only
- # asy results), but most packages do it anyway
- self.df_resid = exog.shape[0] - exog.shape[1] + 1
-
- def initialize(self):
- self.wendog = self.endog
- self.wexog = self.exog
-
- def whiten(self, X):
- pass
-
- def fit(self):
- '''estimate model using 2SLS IV regression
-
- Returns
- -------
- results : instance of RegressionResults
- regression result
-
- Notes
- -----
- This returns a generic RegressioResults instance as defined for the
- linear models.
-
- Parameter estimates and covariance are correct, but other results
- haven't been tested yet, to seee whether they apply without changes.
-
- '''
- #Greene 5th edt., p.78 section 5.4
- #move this maybe
- y,x,z = self.endog, self.exog, self.instrument
- ztz = np.dot(z.T, z)
- ztx = np.dot(z.T, x)
- self.xhatparams = xhatparams = np.linalg.solve(ztz, ztx)
- #print 'x.T.shape, xhatparams.shape', x.shape, xhatparams.shape
- F = xhat = np.dot(z, xhatparams)
- FtF = np.dot(F.T, F)
- self.xhatprod = FtF #store for Housman specification test
- Ftx = np.dot(F.T, x)
- Fty = np.dot(F.T, y)
- params = np.linalg.solve(FtF, Fty)
- Ftxinv = np.linalg.inv(Ftx)
- self.normalized_cov_params = np.dot(Ftxinv.T, np.dot(FtF, Ftxinv))
-
- lfit = RegressionResults(self, params,
- normalized_cov_params=self.normalized_cov_params)
- self._results = lfit
- return lfit
-
- #copied from GLS, because I subclass currently LikelihoodModel and not GLS
- def predict(self, exog, params=None):
- """
- Return linear predicted values from a design matrix.
-
- Parameters
- ----------
- exog : array-like
- Design / exogenous data
- params : array-like, optional after fit has been called
- Parameters of a linear model
-
- Returns
- -------
- An array of fitted values
-
- Notes
- -----
- If the model as not yet been fit, params is not optional.
- """
- #JP: this doesn't look correct for GLMAR
- #SS: it needs its own predict method
- if self._results is None and params is None:
- raise ValueError, "If the model has not been fit, then you must specify the params argument."
- if self._results is not None:
- return np.dot(exog, self._results.params)
- else:
- return np.dot(exog, params)
-
- def spec_hausman(self, dof=None):
- '''Hausman's specification test
-
-
- See Also
- --------
- spec_hausman : generic function for Hausman's specification test
-
- '''
- #use normalized cov_params for OLS
-
- resols = OLS(endog, exog).fit()
- normalized_cov_params_ols = resols.model.normalized_cov_params
- se2 = resols.mse_resid
-
- params_diff = self._results.params - resols.params
-
- cov_diff = np.linalg.pinv(self.xhatprod) - normalized_cov_params_ols
- #TODO: the following is very inefficient, solves problem (svd) twice
- #use linalg.lstsq or svd directly
- #cov_diff will very often be in-definite (singular)
- if not dof:
- dof = tools.rank(cov_diff)
- cov_diffpinv = np.linalg.pinv(cov_diff)
- H = np.dot(params_diff, np.dot(cov_diffpinv, params_diff))/se2
- pval = stats.chi2.sf(H, dof)
-
- return H, pval, dof
-
-
-############# classes for Generalized Method of Moments GMM
-
-class GMM(object):
- '''
- Class for estimation by Generalized Method of Moments
-
- needs to be subclassed, where the subclass defined the moment conditions
- `momcond`
-
- Parameters
- ----------
- endog : array
- endogenous variable, see notes
- exog : array
- array of exogenous variables, see notes
- instrument : array
- array of instruments, see notes
- nmoms : None or int
- number of moment conditions, if None then it is set equal to the
- number of columns of instruments. Mainly needed to determin the shape
- or size of start parameters and starting weighting matrix.
- kwds : anything
- this is mainly if additional variables need to be stored for the
- calculations of the moment conditions
-
- Returns
- -------
- *Attributes*
- results : instance of GMMResults
- currently just a storage class for params and cov_params without it's
- own methods
- bse : property
- return bse
-
-
-
- Notes
- -----
- The GMM class only uses the moment conditions and does not use any data
- directly. endog, exog, instrument and kwds in the creation of the class
- instance are only used to store them for access in the moment conditions.
- Which of this are required and how they are used depends on the moment
- conditions of the subclass.
-
- Warning:
-
- Options for various methods have not been fully implemented and
- are still missing in several methods.
-
-
-
- '''
-
- def __init__(self, endog, exog, instrument, nmoms=None, **kwds):
- '''
- maybe drop and use mixin instead
-
- GMM doesn't really care about the data, just the moment conditions
- '''
- self.endog = endog
- self.exog = exog
- self.instrument = instrument
- self.nmoms = nmoms or instrument.shape[1]
- self.results = GMMResults()
- self.__dict__.update(kwds)
- self.epsilon_iter = 1e-6
-
- def fit(self, start=None):
- '''
- Estimate the parameters using default settings.
-
- For estimation with more options use fititer method.
-
- Parameters
- ----------
- start : array (optional)
- starting value for parameters ub minimization. If None then
- fitstart method is called for the starting values
-
- Returns
- -------
- results : instance of GMMResults
- this is also attached as attribute results
-
- Notes
- -----
- This function attaches the estimated parameters, params, the
- weighting matrix of the final iteration, weights, and the value
- of the GMM objective function, jval to results. The results are
- attached to this instance and also returned.
-
- fititer is called with maxiter=10
-
-
- '''
- #bug: where does start come from ???
- if start is None:
- start = self.fitstart() #TODO: temporary hack
- params, weights = self.fititer(start, maxiter=10, start_weights=None,
- weights_method='cov', wargs=())
- self.results.params = params
- self.results.weights = weights
- self.results.jval = self.gmmobjective(params, weights)
-
- return self.results
-
-
- def fitgmm(self, start, weights=None):
- '''estimate parameters using GMM
-
- Parameters
- ----------
- start : array_like
- starting values for minimization
- weights : array
- weighting matrix for moment conditions. If weights is None, then
- the identity matrix is used
-
-
- Returns
- -------
- paramest : array
- estimated parameters
-
- Notes
- -----
- todo: add fixed parameter option, not here ???
-
- uses scipy.optimize.fmin
-
- '''
-## if not fixed is None: #fixed not defined in this version
-## raise NotImplementedError
-
- #tmp = momcond(start, *args) # forgott to delete this
- #nmoms = tmp.shape[-1]
- if weights is None:
- weights = np.eye(self.nmoms)
-
- #TODO: add other optimization options and results
- return optimize.fmin(self.gmmobjective, start, (weights,), disp=0)
-
- def gmmobjective(self, params, weights):
- '''
- objective function for GMM minimization
-
- Parameters
- ----------
- params : array
- parameter values at which objective is evaluated
- weights : array
- weighting matrix
-
- Returns
- -------
- jval : float
- value of objective function
-
- '''
- moms = self.momcond(params)
- return np.dot(np.dot(moms.mean(0),weights), moms.mean(0))
-
-
- def fititer(self, start, maxiter=2, start_weights=None,
- weights_method='cov', wargs=()):
- '''iterative estimation with updating of optimal weighting matrix
-
- stopping criteria are maxiter or change in parameter estimate less
- than self.epsilon_iter, with default 1e-6.
-
- Parameters
- ----------
- start : array
- starting value for parameters
- maxiter : int
- maximum number of iterations
- start_weights : array (nmoms, nmoms)
- initial weighting matrix; if None, then the identity matrix
- is used
- weights_method : {'cov', ...}
- method to use to estimate the optimal weighting matrix,
- see calc_weightmatrix for details
-
- Returns
- -------
- params : array
- estimated parameters
- weights : array
- optimal weighting matrix calculated with final parameter
- estimates
-
- Notes
- -----
-
-
-
-
- '''
- momcond = self.momcond
-
- if start_weights is None:
- w = np.eye(self.nmoms)
- else:
- w = start_weights
-
- #call fitgmm function
- #args = (self.endog, self.exog, self.instrument)
- #args is not used in the method version
- for it in range(maxiter):
- winv = np.linalg.inv(w)
- #this is still calling function not method
-## resgmm = fitgmm(momcond, (), start, weights=winv, fixed=None,
-## weightsoptimal=False)
- resgmm = self.fitgmm(start, weights=winv)
-
- moms = momcond(resgmm)
- w = self.calc_weightmatrix(moms, method='momcov', wargs=())
-
- if it > 2 and maxabs(resgmm - start) < self.epsilon_iter:
- #check rule for early stopping
- break
- start = resgmm
- return resgmm, w
-
-
- def calc_weightmatrix(self, moms, method='momcov', wargs=()):
- '''calculate omega or the weighting matrix
-
- Parameters
- ----------
-
- moms : array, (nobs, nmoms)
- moment conditions for all observations evaluated at a parameter
- value
- method : 'momcov', anything else
- If method='momcov' is cov then the matrix is calculated as simple
- covariance of the moment conditions. For anything else, a
- constant cutoff window of length 5 is used.
- wargs : tuple
- parameters that are required by some kernel methods to
- estimate the long-run covariance. Not used yet.
-
- Returns
- -------
- w : array (nmoms, nmoms)
- estimate for the weighting matrix or covariance of the moment
- condition
-
-
- Notes
- -----
-
- currently a constant cutoff window is used
- TODO: implement long-run cov estimators, kernel-based
-
- Newey-West
- Andrews
- Andrews-Moy????
-
- References
- ----------
- Greene
- Hansen, Bruce
-
- '''
- nobs = moms.shape[0]
- if method == 'momcov':
- w = np.cov(moms, rowvar=0)
- elif method == 'fakekernel':
- #uniform cut-off window
- moms_centered = moms - moms.mean()
- maxlag = 5
- h = np.ones(maxlag)
- w = np.dot(moms.T, moms)/nobs
- for i in range(1,maxlag+1):
- w += (h * np.dot(moms_centered[i:].T, moms_centered[:-i]) /
- (nobs-i))
- else:
- w = np.dot(moms.T, moms)/nobs
-
- return w
-
-
- def momcond_mean(self, params):
- '''
- mean of moment conditions,
-
- '''
-
- #endog, exog = args
- return self.momcond(params).mean(0)
-
- def gradient_momcond(self, params, epsilon=1e-4, method='centered'):
-
- momcond = self.momcond_mean
- if method == 'centered':
- gradmoms = (approx_fprime1(params, momcond, epsilon=epsilon) +
- approx_fprime1(params, momcond, epsilon=-epsilon))/2
- else:
- gradmoms = approx_fprime1(params, momcond, epsilon=epsilon)
-
- return gradmoms
-
-
- def cov_params(self, **kwds): #TODO add options ???
- if not hasattr(self.results, 'params'):
- raise ValueError('the model has to be fit first')
-
- if hasattr(self.results, '_cov_params'):
- #replace with decorator later
- return self.results._cov_params
-
- gradmoms = self.gradient_momcond(self.results.params)
- moms = self.momcond(self.results.params)
- covparams = self.calc_cov_params(moms, gradmoms, **kwds)
- self.results._cov_params = covparams
- return self.results._cov_params
-
-
-
- #still needs to be fully converted to method
- def calc_cov_params(self, moms, gradmoms, weights=None,
- has_optimal_weights=True,
- method='momcov', wargs=()):
- '''calculate covariance of parameter estimates
-
- not all options tried out yet
-
- If weights matrix is given, then the formula use to calculate cov_params
- depends on whether has_optimal_weights is true.
- If no weights are given, then the weight matrix is calculated with
- the given method, and has_optimal_weights is assumed to be true.
-
- (API Note: The latter assumption could be changed if we allow for
- has_optimal_weights=None.)
-
- '''
-
- nobs = moms.shape[0]
- if weights is None:
- omegahat = self.calc_weightmatrix(moms, method=method, wargs=wargs)
- has_optimal_weights = True
- #add other options, Barzen, ... longrun var estimators
- else:
- omegahat = weights #2 different names used,
- #TODO: this is wrong, I need an estimate for omega
-
- if has_optimal_weights: #has_optimal_weights:
- cov = np.linalg.inv(np.dot(gradmoms.T,
- np.dot(np.linalg.inv(omegahat), gradmoms)))
- else:
- gw = np.dot(gradmoms.T, weights)
- gwginv = np.linalg.inv(np.dot(gw, gradmoms))
- cov = np.dot(np.dot(gwginv, np.dot(np.dot(gw, omegahat), gw.T)), gwginv)
- cov = np.linalg.inv(cov)
-
- return cov/nobs
-
- @property
- def bse(self):
- '''standard error of the parameter estimates
- '''
- return self.get_bse()
-
- def get_bse(self, method=None):
- '''
-
- method option not defined yet
- '''
- return np.sqrt(np.diag(self.cov_params()))
-
- def jtest(self):
- '''overidentification test
-
- I guess this is missing a division by nobs,
- what's the normalization in jval ?
- '''
-
- jstat = self.results.jval
- nparams = self.results.params.size #self.nparams
- return jstat, stats.chi2.sf(jstat, self.nmoms - nparams)
-
-class GMMResults(object):
- '''just a storage class right now'''
- pass
-
-class IVGMM(GMM):
- '''
- Class for linear instrumental variables estimation with homoscedastic
- errors
-
- currently mainly a test case, doesn't exploit linear structure
-
- '''
-
- def fitstart(self):
- return np.zeros(self.exog.shape[1])
-
- def momcond(self, params):
- endog, exog, instrum = self.endog, self.exog, self.instrument
- return instrum * (endog - np.dot(exog, params))[:,None]
-
-#not tried out yet
-class NonlinearIVGMM(GMM):
- '''
- Class for linear instrumental variables estimation with homoscedastic
- errors
-
- currently mainly a test case, not checked yet
-
- '''
-
- def fitstart(self):
- #might not make sense for more general functions
- return np.zeros(self.exog.shape[1])
-
- def __init__(self, endog, exog, instrument, **kwds):
- self.func = func
-
- def momcond(self, params):
- endog, exog, instrum = self.endog, self.exog, self.instrument
- return instrum * (endog - self.func(params, exog))[:,None]
-
-
-def spec_hausman(params_e, params_i, cov_params_e, cov_params_i, dof=None):
- '''Hausmans specification test
-
- Parameters
- ----------
- params_e : array
- efficient and consistent under Null hypothesis,
- inconsistent under alternative hypothesis
- params_i: array
- consistent under Null hypothesis,
- consistent under alternative hypothesis
- cov_params_e : array, 2d
- covariance matrix of parameter estimates for params_e
- cov_params_i : array, 2d
- covariance matrix of parameter estimates for params_i
-
- example instrumental variables OLS estimator is `e`, IV estimator is `i`
-
-
- Notes
- -----
-
- Todos,Issues
- - check dof calculations and verify for linear case
- - check one-sided hypothesis
-
-
- References
- ----------
- Greene section 5.5 p.82/83
-
-
- '''
- params_diff = (params_i - params_e)
- cov_diff = cov_params_i - cov_params_e
- #TODO: the following is very inefficient, solves problem (svd) twice
- #use linalg.lstsq or svd directly
- #cov_diff will very often be in-definite (singular)
- if not dof:
- dof = tools.rank(cov_diff)
- cov_diffpinv = np.linalg.pinv(cov_diff)
- H = np.dot(params_diff, np.dot(cov_diffpinv, params_diff))
- pval = stats.chi2.sf(H, dof)
-
- evals = np.linalg.eigvalsh(cov_diff)
-
- return H, pval, dof, evals
-
-
-
-
-###########
-
-class DistQuantilesGMM(GMM):
- '''
- Estimate distribution parameters by GMM based on matching quantiles
-
- Currently mainly to try out different requirements for GMM when we cannot
- calculate the optimal weighting matrix.
-
- '''
-
- def __init__(self, endog, exog, instrument, **kwds):
- #TODO: something wrong with super
- #super(self.__class__).__init__(endog, exog, instrument) #, **kwds)
- #self.func = func
- self.epsilon_iter = 1e-5
-
- self.distfn = kwds['distfn']
- #done by super doesn't work yet
- #TypeError: super does not take keyword arguments
- self.endog = endog
-
- #make this optional for fit
- if not 'pquant' in kwds:
- self.pquant = pquant = np.array([0.01, 0.05,0.1,0.4,0.6,0.9,0.95,0.99])
- else:
- self.pquant = pquant = kwds['pquant']
-
- #TODO: vectorize this: use edf
- self.xquant = np.array([stats.scoreatpercentile(endog, p) for p
- in pquant*100])
- self.nmoms = len(self.pquant)
-
- #TODOcopied from GMM, make super work
- self.endog = endog
- self.exog = exog
- self.instrument = instrument
- self.results = GMMResults()
- #self.__dict__.update(kwds)
- self.epsilon_iter = 1e-6
-
- def fitstart(self):
- #todo: replace with or add call to distfn._fitstart
- # added but not used during testing, avoid Travis
- distfn = self.distfn
- if hasattr(distfn, '_fitstart'):
- start = distfn._fitstart(x)
- else:
- start = [1]*distfn.numargs + [0.,1.]
-
- return np.array([1]*self.distfn.numargs + [0,1])
-
- def momcond(self, params): #drop distfn as argument
- #, mom2, quantile=None, shape=None
- '''moment conditions for estimating distribution parameters by matching
- quantiles, defines as many moment conditions as quantiles.
-
- Returns
- -------
- difference : array
- difference between theoretical and empirical quantiles
-
- Notes
- -----
- This can be used for method of moments or for generalized method of
- moments.
-
- '''
- #this check looks redundant/unused know
- if len(params) == 2:
- loc, scale = params
- elif len(params) == 3:
- shape, loc, scale = params
- else:
- #raise NotImplementedError
- pass #see whether this might work, seems to work for beta with 2 shape args
-
- #mom2diff = np.array(distfn.stats(*params)) - mom2
- #if not quantile is None:
- pq, xq = self.pquant, self.xquant
- #ppfdiff = distfn.ppf(pq, alpha)
- cdfdiff = self.distfn.cdf(xq, *params) - pq
- #return np.concatenate([mom2diff, cdfdiff[:1]])
- return np.atleast_2d(cdfdiff)
-
- def fitonce(self, start=None, weights=None, has_optimal_weights=False):
- '''fit without estimating an optimal weighting matrix and return results
-
- This is a convenience function that calls fitgmm and covparams with
- a given weight matrix or the identity weight matrix.
- This is useful if the optimal weight matrix is know (or is analytically
- given) or if an optimal weight matrix cannot be calculated.
-
- (Developer Notes: this function could go into GMM, but is needed in this
- class, at least at the moment.)
-
- Parameters
- ----------
-
-
- Returns
- -------
- results : GMMResult instance
- result instance with params and _cov_params attached
-
- See Also
- --------
- fitgmm
- cov_params
-
- '''
- if weights is None:
- weights = np.eye(self.nmoms)
- params = self.fitgmm(start=start)
- self.results.params = params #required before call to self.cov_params
- _cov_params = self.cov_params(weights=weights,
- has_optimal_weights=has_optimal_weights)
-
-
- self.results.weights = weights
- self.results.jval = self.gmmobjective(params, weights)
- return self.results
-
-
-
-
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
- examples = ['ivols', 'distquant'][:]
-
- if 'ivols' in examples:
- exampledata = ['ols', 'iv', 'ivfake'][1]
- nobs = nsample = 500
- sige = 3
- corrfactor = 0.025
-
-
- x = np.linspace(0,10, nobs)
- X = tools.add_constant(np.column_stack((x, x**2)))
- beta = np.array([1, 0.1, 10])
-
- def sample_ols(exog):
- endog = np.dot(exog, beta) + sige*np.random.normal(size=nobs)
- return endog, exog, None
-
- def sample_iv(exog):
- print 'using iv example'
- X = exog.copy()
- e = sige * np.random.normal(size=nobs)
- endog = np.dot(X, beta) + e
- exog[:,0] = X[:,0] + corrfactor * e
- z0 = X[:,0] + np.random.normal(size=nobs)
- z1 = X.sum(1) + np.random.normal(size=nobs)
- z2 = X[:,1]
- z3 = (np.dot(X, np.array([2,1, 0])) +
- sige/2. * np.random.normal(size=nobs))
- z4 = X[:,1] + np.random.normal(size=nobs)
- instrument = np.column_stack([z0, z1, z2, z3, z4, X[:,-1]])
- return endog, exog, instrument
-
- def sample_ivfake(exog):
- X = exog
- e = sige * np.random.normal(size=nobs)
- endog = np.dot(X, beta) + e
- #X[:,0] += 0.01 * e
- #z1 = X.sum(1) + np.random.normal(size=nobs)
- #z2 = X[:,1]
- z3 = (np.dot(X, np.array([2,1, 0])) +
- sige/2. * np.random.normal(size=nobs))
- z4 = X[:,1] + np.random.normal(size=nobs)
- instrument = np.column_stack([X[:,:2], z3, z4, X[:,-1]]) #last is constant
- return endog, exog, instrument
-
-
- if exampledata == 'ols':
- endog, exog, _ = sample_ols(X)
- instrument = exog
- elif exampledata == 'iv':
- endog, exog, instrument = sample_iv(X)
- elif exampledata == 'ivfake':
- endog, exog, instrument = sample_ivfake(X)
-
-
- #using GMM and IV2SLS classes
- #----------------------------
-
- mod = IVGMM(endog, exog, instrument, nmoms=instrument.shape[1])
- res = mod.fit()
- modgmmols = IVGMM(endog, exog, exog, nmoms=exog.shape[1])
- resgmmols = modgmmols.fit()
- #the next is the same as IV2SLS, (Z'Z)^{-1} as weighting matrix
- modgmmiv = IVGMM(endog, exog, instrument, nmoms=instrument.shape[1]) #same as mod
- resgmmiv = modgmmiv.fitgmm(np.ones(exog.shape[1], float),
- weights=np.linalg.inv(np.dot(instrument.T, instrument)))
- modls = IV2SLS(endog, exog, instrument)
- resls = modls.fit()
- modols = OLS(endog, exog)
- resols = modols.fit()
-
- print '\nIV case'
- print 'params'
- print 'IV2SLS', resls.params
- print 'GMMIV ', resgmmiv # .params
- print 'GMM ', res.params
- print 'diff ', res.params - resls.params
- print 'OLS ', resols.params
- print 'GMMOLS', resgmmols.params
-
- print '\nbse'
- print 'IV2SLS', resls.bse
- print 'GMM ', mod.bse #bse currently only attached to model not results
- print 'diff ', mod.bse - resls.bse
- print '%-diff', resls.bse / mod.bse * 100 - 100
- print 'OLS ', resols.bse
- print 'GMMOLS', modgmmols.bse
- #print 'GMMiv', modgmmiv.bse
-
- print "Hausman's specification test"
- print modls.spec_hausman()
- print spec_hausman(resols.params, res.params, resols.cov_params(),
- mod.cov_params())
- print spec_hausman(resgmmols.params, res.params, modgmmols.cov_params(),
- mod.cov_params())
-
-
- if 'distquant' in examples:
-
-
- #estimating distribution parameters from quantiles
- #-------------------------------------------------
-
- #example taken from distribution_estimators.py
- gparrvs = stats.genpareto.rvs(2, size=5000)
- x0p = [1., gparrvs.min()-5, 1]
-
- moddist = DistQuantilesGMM(gparrvs, None, None, distfn=stats.genpareto)
- #produces non-sense because optimal weighting matrix calculations don't
- #apply to this case
- #resgp = moddist.fit() #now with 'cov': LinAlgError: Singular matrix
- pit1, wit1 = moddist.fititer([1.5,0,1.5], maxiter=1)
- print pit1
- p1 = moddist.fitgmm([1.5,0,1.5])
- print p1
- moddist2 = DistQuantilesGMM(gparrvs, None, None, distfn=stats.genpareto,
- pquant=np.linspace(0.01,0.99,10))
- pit1a, wit1a = moddist2.fititer([1.5,0,1.5], maxiter=1)
- print pit1a
- p1a = moddist2.fitgmm([1.5,0,1.5])
- print p1a
- #Note: pit1a and p1a are the same and almost the same (1e-5) as
- # fitquantilesgmm version (functions instead of class)
- res1b = moddist2.fitonce([1.5,0,1.5])
- print res1b.params
- print moddist2.bse #they look much too large
- print np.sqrt(np.diag(res1b._cov_params))
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/kernridgeregress_class.py b/statsmodels/scikits/statsmodels/sandbox/regression/kernridgeregress_class.py
deleted file mode 100644
index 3cddfbf..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/kernridgeregress_class.py
+++ /dev/null
@@ -1,209 +0,0 @@
-'''Kernel Ridge Regression for local non-parametric regression'''
-
-
-import numpy as np
-from scipy import spatial as ssp
-from numpy.testing import assert_equal
-import matplotlib.pylab as plt
-
-def plt_closeall(n=10):
- '''close a number of open matplotlib windows'''
- for i in range(n): plt.close()
-
-def kernel_rbf(x,y,scale=1, **kwds):
- #scale = kwds.get('scale',1)
- dist = ssp.minkowski_distance_p(x[:,np.newaxis,:],y[np.newaxis,:,:],2)
- return np.exp(-0.5/scale*(dist))
-
-def kernel_euclid(x,y,p=2, **kwds):
- return ssp.minkowski_distance(x[:,np.newaxis,:],y[np.newaxis,:,:],p)
-
-class GaussProcess(object):
- '''class to perform kernel ridge regression (gaussian process)
-
- Warning: this class is memory intensive, it creates nobs x nobs distance
- matrix and its inverse, where nobs is the number of rows (observations).
- See sparse version for larger number of observations
-
-
- Notes
- -----
-
- Todo:
- * normalize multidimensional x array on demand, either by var or cov
- * add confidence band
- * automatic selection or proposal of smoothing parameters
-
- Note: this is different from kernel smoothing regression,
- see for example http://en.wikipedia.org/wiki/Kernel_smoother
-
- In this version of the kernel ridge regression, the training points
- are fitted exactly.
- Needs a fast version for leave-one-out regression, for fitting each
- observation on all the other points.
- This version could be numerically improved for the calculation for many
- different values of the ridge coefficient. see also short summary by
- Isabelle Guyon (ETHZ) in a manuscript KernelRidge.pdf
-
- Needs verification and possibly additional statistical results or
- summary statistics for interpretation, but this is a problem with
- non-parametric, non-linear methods.
-
- Reference
- ---------
-
- Rasmussen, C.E. and C.K.I. Williams, 2006, Gaussian Processes for Machine
- Learning, the MIT Press, www.GaussianProcess.org/gpal, chapter 2
-
- a short summary of the kernel ridge regression is at
- http://www.ics.uci.edu/~welling/teaching/KernelsICS273B/Kernel-Ridge.pdf
- '''
-
- def __init__(self, x, y=None, kernel=kernel_rbf,
- scale=0.5, ridgecoeff = 1e-10, **kwds ):
- '''
- Parameters
- ----------
- x : 2d array (N,K)
- data array of explanatory variables, columns represent variables
- rows represent observations
- y : 2d array (N,1) (optional)
- endogenous variable that should be fitted or predicted
- can alternatively be specified as parameter to fit method
- kernel : function, default: kernel_rbf
- kernel: (x1,x2)->kernel matrix is a function that takes as parameter
- two column arrays and return the kernel or distance matrix
- scale : float (optional)
- smoothing parameter for the rbf kernel
- ridgecoeff : float (optional)
- coefficient that is multiplied with the identity matrix in the
- ridge regression
-
- Notes
- -----
- After initialization, kernel matrix is calculated and if y is given
- as parameter then also the linear regression parameter and the
- fitted or estimated y values, yest, are calculated. yest is available
- as an attribute in this case.
-
- Both scale and the ridge coefficient smooth the fitted curve.
-
- '''
-
- self.x = x
- self.kernel = kernel
- self.scale = scale
- self.ridgecoeff = ridgecoeff
- self.distxsample = kernel(x,x,scale=scale)
- self.Kinv = np.linalg.inv(self.distxsample +
- np.eye(*self.distxsample.shape)*ridgecoeff)
- if not y is None:
- self.y = y
- self.yest = self.fit(y)
-
-
- def fit(self,y):
- '''fit the training explanatory variables to a sample ouput variable'''
- self.parest = np.dot(self.Kinv, y) #self.kernel(y,y,scale=self.scale))
- yhat = np.dot(self.distxsample,self.parest)
- return yhat
-
-## print ds33.shape
-## ds33_2 = kernel(x,x[::k,:],scale=scale)
-## dsinv = np.linalg.inv(ds33+np.eye(*distxsample.shape)*ridgecoeff)
-## B = np.dot(dsinv,y[::k,:])
- def predict(self,x):
- '''predict new y values for a given array of explanatory variables'''
- self.xpredict = x
- distxpredict = self.kernel(x, self.x, scale=self.scale)
- self.ypredict = np.dot(distxpredict, self.parest)
- return self.ypredict
-
- def plot(self, y, plt=plt ):
- '''some basic plots'''
- #todo return proper graph handles
- plt.figure();
- plt.plot(self.x,self.y, 'bo-', self.x, self.yest, 'r.-')
- plt.title('sample (training) points')
- plt.figure()
- plt.plot(self.xpredict,y,'bo-',self.xpredict,self.ypredict,'r.-')
- plt.title('all points')
-
-
-
-def example1():
- m,k = 500,4
- upper = 6
- scale=10
- xs1a = np.linspace(1,upper,m)[:,np.newaxis]
- xs1 = xs1a*np.ones((1,4)) + 1/(1.0+np.exp(np.random.randn(m,k)))
- xs1 /= np.std(xs1[::k,:],0) # normalize scale, could use cov to normalize
- y1true = np.sum(np.sin(xs1)+np.sqrt(xs1),1)[:,np.newaxis]
- y1 = y1true + 0.250 * np.random.randn(m,1)
-
- stride = 2 #use only some points as trainig points e.g 2 means every 2nd
- gp1 = GaussProcess(xs1[::stride,:],y1[::stride,:], kernel=kernel_euclid,
- ridgecoeff=1e-10)
- yhatr1 = gp1.predict(xs1)
- plt.figure()
- plt.plot(y1true, y1,'bo',y1true, yhatr1,'r.')
- plt.title('euclid kernel: true y versus noisy y and estimated y')
- plt.figure()
- plt.plot(y1,'bo-',y1true,'go-',yhatr1,'r.-')
- plt.title('euclid kernel: true (green), noisy (blue) and estimated (red) '+
- 'observations')
-
- gp2 = GaussProcess(xs1[::stride,:],y1[::stride,:], kernel=kernel_rbf,
- scale=scale, ridgecoeff=1e-1)
- yhatr2 = gp2.predict(xs1)
- plt.figure()
- plt.plot(y1true, y1,'bo',y1true, yhatr2,'r.')
- plt.title('rbf kernel: true versus noisy (blue) and estimated (red) observations')
- plt.figure()
- plt.plot(y1,'bo-',y1true,'go-',yhatr2,'r.-')
- plt.title('rbf kernel: true (green), noisy (blue) and estimated (red) '+
- 'observations')
- #gp2.plot(y1)
-
-
-def example2(m=100, scale=0.01, stride=2):
- #m,k = 100,1
- upper = 6
- xs1 = np.linspace(1,upper,m)[:,np.newaxis]
- y1true = np.sum(np.sin(xs1**2),1)[:,np.newaxis]/xs1
- y1 = y1true + 0.05*np.random.randn(m,1)
-
- ridgecoeff = 1e-10
- #stride = 2 #use only some points as trainig points e.g 2 means every 2nd
- gp1 = GaussProcess(xs1[::stride,:],y1[::stride,:], kernel=kernel_euclid,
- ridgecoeff=1e-10)
- yhatr1 = gp1.predict(xs1)
- plt.figure()
- plt.plot(y1true, y1,'bo',y1true, yhatr1,'r.')
- plt.title('euclid kernel: true versus noisy (blue) and estimated (red) observations')
- plt.figure()
- plt.plot(y1,'bo-',y1true,'go-',yhatr1,'r.-')
- plt.title('euclid kernel: true (green), noisy (blue) and estimated (red) '+
- 'observations')
-
- gp2 = GaussProcess(xs1[::stride,:],y1[::stride,:], kernel=kernel_rbf,
- scale=scale, ridgecoeff=1e-2)
- yhatr2 = gp2.predict(xs1)
- plt.figure()
- plt.plot(y1true, y1,'bo',y1true, yhatr2,'r.')
- plt.title('rbf kernel: true versus noisy (blue) and estimated (red) observations')
- plt.figure()
- plt.plot(y1,'bo-',y1true,'go-',yhatr2,'r.-')
- plt.title('rbf kernel: true (green), noisy (blue) and estimated (red) '+
- 'observations')
- #gp2.plot(y1)
-
-if __name__ == '__main__':
- example2()
- #example2(m=1000, scale=0.01)
- #example2(m=100, scale=0.5) # oversmoothing
- #example2(m=2000, scale=0.005) # this looks good for rbf, zoom in
- #example2(m=200, scale=0.01,stride=4)
- example1()
- #plt.show()
- #plt_closeall() # use this to close the open figure windows
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/notes_runmnl.txt b/statsmodels/scikits/statsmodels/sandbox/regression/notes_runmnl.txt
deleted file mode 100644
index 309cf72..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/notes_runmnl.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-access to data and parameters by branch and leaves
---------------------------------------------------
-
-* this could be used in a similar way in other system estimators
-* dictionary access to data per equation, branch, leaf
- * alternative dictionary of individual variables used in equations
- * memory: temporary copies while using linalg, or permanent copies
-* outsource acces into call-back function or method
-* with a parser the dictionaries could be created from a formula
-* similar applies for accessing parameters from the params array in optimization (MLE, GMM)
- when there are identical parameters across equations or leaves
- * in latest version use dictionary mapping coefficient/parameter names to index into params
-
-global/outer-scope variables
-----------------------------
-
-* for nested logit I need to access params and store, change probabilites from the branch
-* need variables in a scope outside of the recursion
-* nested function or save params and probs in instance attribute
-
-
-constraint estimation as alternative and extension
---------------------------------------------------
-
-* cross-equation and within equation restrictions on parameters could also be directly
- imposed, instead of relying on the dictionary
-* no idea yet on how to encode this
-* might be easier to use constraint optimizer and keep constraints (partially) separate from
- the parameterization in the likelihood calculations
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/numdiff.py b/statsmodels/scikits/statsmodels/sandbox/regression/numdiff.py
deleted file mode 100644
index ed5c3f4..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/numdiff.py
+++ /dev/null
@@ -1,462 +0,0 @@
-'''numerical differentiation function, gradient, Jacobian, and Hessian
-
-These are simple forward differentiation, so that we have them available
-without dependencies.
-
-* Jacobian should be faster than numdifftools because it doesn't use loop over observations.
-* numerical precision will vary and depend on the choice of stepsizes
-
-Todo:
-* some cleanup
-* check numerical accuracy (and bugs) with numdifftools and analytical derivatives
- - linear least squares case: (hess - 2*X'X) is 1e-8 or so
- - gradient and Hessian agree with numdifftools when evaluated away from minimum
- - forward gradient, Jacobian evaluated at minimum is inaccurate, centered (+/- epsilon) is ok
-* dot product of Jacobian is different from Hessian, either wrong example or a bug (unlikely),
- or a real difference
-
-
-What are the conditions that Jacobian dotproduct and Hessian are the same?
-see also:
-BHHH: Greene p481 17.4.6, MLE Jacobian = d loglike / d beta , where loglike is vector for each observation
- see also example 17.4 when J'J is very different from Hessian
- also does it hold only at the minimum, what's relationship to covariance of Jacobian matrix
-http://projects.scipy.org/scipy/ticket/1157
-http://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
- objective: sum((y-f(beta,x)**2), Jacobian = d f/d beta and not d objective/d beta as in MLE Greene
- similar: http://crsouza.blogspot.com/2009/11/neural-network-learning-by-levenberg_18.html#hessian
-
-in example: if J = d x*beta / d beta then J'J == X'X
- similar to http://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
-
-Author : josef-pkt
-License : BSD
-
-'''
-
-
-
-import numpy as np
-
-EPS = 2.2204460492503131e-016
-
-#from scipy.optimize
-def approx_fprime(xk,f,epsilon=1e-8,*args):
- f0 = f(*((xk,)+args))
- grad = np.zeros((len(xk),), float)
- ei = np.zeros((len(xk),), float)
- for k in range(len(xk)):
- ei[k] = epsilon
- grad[k] = (f(*((xk+ei,)+args)) - f0)/epsilon
- ei[k] = 0.0
- return grad
-
-def approx_fprime1(xk, f, epsilon=1e-12, args=(), centered=False):
- '''
- Gradient of function, or Jacobian if function f returns 1d array
-
- Parameters
- ----------
- xk : array
- parameters at which the derivative is evaluated
- f : function
- `*((xk,)+args)` returning either one value or 1d array
- epsilon : float
- stepsize, TODO add default
- *args : tuple
- tuple of additional arguments for function f
-
- Returns
- -------
- grad : array
- gradient or Jacobian, evaluated with single step forward differencing
-
- Notes
- -----
-
- todo:
- * add scaled stepsize
- ss- should scaled stepsize be an option in the gradient or should the
- gradient be scaled in within an optimization framework?
- '''
- f0 = f(*((xk,)+args))
- nobs = len(np.atleast_1d(f0)) # it could be a scalar
- grad = np.zeros((nobs,len(xk)), float)
- ei = np.zeros((len(xk),), float)
- #centered = False
- if not centered:
- for k in range(len(xk)):
- ei[k] = epsilon
- grad[:,k] = (f(*((xk+ei,)+args)) - f0)/epsilon
- ei[k] = 0.0
- else:
- for k in range(len(xk)):
- ei[k] = epsilon/2.
- grad[:,k] = (f(*((xk+ei,)+args)) - f(*((xk-ei,)+args)))/epsilon
- ei[k] = 0.0
- return grad.squeeze()
-
-def approx_hess(xk, f, epsilon=None, args=()):#, returngrad=True):
- '''
- Calculate Hessian and Gradient by forward differentiation
-
- todo: cleanup args and options
- '''
- returngrad=True
- if epsilon is None: #check
- #eps = 1e-5
- eps = 2.2204460492503131e-016 #np.MachAr().eps
- step = None
- else:
- step = epsilon #TODO: shouldn't be here but I need to figure out args
-
- #x = xk #alias drop this
-
-
- # Compute the stepsize (h)
- if step is None: #check
- h = eps**(1/3.)*np.maximum(np.abs(xk),1e-2)
- else:
- h = step
- xh = xk + h
- h = xh - xk
- ee = np.diag(h.ravel())
-
- f0 = f(*((xk,)+args))
- # Compute forward step
- n = len(xk)
- g = np.zeros(n);
- for i in range(n):
- g[i] = f(*((xk+ee[i,:],)+args))
-
- hess = np.outer(h,h)
-## print hess.shape,
-## print 'H=', hess
-## print 'h=', hess
- # Compute "double" forward step
- for i in range(n):
- for j in range(i,n):
- hess[i,j] = (f(*((xk+ee[i,:]+ee[j,:],)+args))-g[i]-g[j]+f0)/hess[i,j]
- hess[j,i] = hess[i,j]
- if returngrad:
- grad = (g - f0)/h
- return hess, grad
- else:
- return hess
-
-def approx_hess3(x0, f, epsilon=None, args=()):
- '''calculate Hessian with finite difference derivative approximation
-
- Parameters
- ----------
- x0 : array_like
- value at which function derivative is evaluated
- f : function
- function of one array f(x)
- epsilon : float
- stepsize, if None, then stepsize is automatically chosen
-
- Returns
- -------
- hess : ndarray
- array of partial second derivatives, Hessian
-
- Notes
- -----
- based on equation 9 in
- M. S. RIDOUT: Statistical Applications of the Complex-step Method
- of Numerical Differentiation, University of Kent, Canterbury, Kent, U.K.
-
- The stepsize is the same for the complex and the finite difference part.
- '''
-
- if epsilon is None:
- h = EPS**(1/5.)*np.maximum(np.abs(x0),1e-2) # 1/4 from ...
- else:
- h = epsilon
- xh = x0 + h
- h = xh - x0
- ee = np.diag(h)
- hess = np.outer(h,h)
-
- n = dim = np.size(x0) #TODO: What's the assumption on the shape here?
-
- for i in range(n):
- for j in range(i,n):
- hess[i,j] = (f(*((x0 + ee[i,:] + ee[j,:],)+args))
- - f(*((x0 + ee[i,:] - ee[j,:],)+args))
- - (f(*((x0 - ee[i,:] + ee[j,:],)+args))
- - f(*((x0 - ee[i,:] - ee[j,:],)+args)))
- )/4./hess[i,j]
- hess[j,i] = hess[i,j]
-
- return hess
-
-def approx_fhess_p(x0,p,fprime,epsilon,*args):
- """
- Approximate the Hessian when the Jacobian is available.
-
- Parameters
- ----------
- x0 : array-like
- Point at which to evaluate the Hessian
- p : array-like
- Point
- fprime : func
- The Jacobian function
- epsilon : float
-
- """
- f2 = fprime(*((x0+epsilon*p,)+args))
- f1 = fprime(*((x0,)+args))
- return (f2 - f1)/epsilon
-
-#copied from try_gradient_complexsteps, which contains notes and some examples for testing
-#renamed from complex_step_grad to approx_fprime_cs, change order of arguments
-#from Guilherme P. de Freitas, numpy mailing list
-def approx_fprime_cs(x0, f, args=(), h=1.0e-20):
- '''calculate gradient or Jacobian with complex step derivative approximation
-
- Parameters
- ----------
- f : function
- function of one array f(x)
- x : array_like
- value at which function derivative is evaluated
-
- Returns
- -------
- partials : ndarray
- array of partial derivatives, Gradient or Jacobian
- '''
- dim = np.size(x0) #TODO: What's the assumption on the shape here?
- increments = np.identity(dim) * 1j * h
- #TODO: see if this can be vectorized, but usually dim is small
- partials = [f(x0+ih, *args).imag / h for ih in increments]
- return np.array(partials).T
-
-def approx_hess_cs(x0, func, args=(), h=1.0e-20, epsilon=1e-6):
- def grad(x0):
- return approx_fprime_cs(x0, func, args=args, h=1.0e-20)
-
- #Hessian from gradient:
- return (approx_fprime1(x0, grad, epsilon)
- + approx_fprime1(x0, grad, -epsilon))/2.
-
-
-def approx_hess_cs2(x0, f, epsilon=None, args=()):
- '''calculate Hessian with complex step (and fd) derivative approximation
-
- Parameters
- ----------
- x0 : array_like
- value at which function derivative is evaluated
- f : function
- function of one array f(x)
- epsilon : float
- stepsize, if None, then stepsize is automatically chosen
-
- Returns
- -------
- hess : ndarray
- array of partial second derivatives, Hessian
-
- Notes
- -----
- based on equation 10 in
- M. S. RIDOUT: Statistical Applications of the Complex-step Method
- of Numerical Differentiation, University of Kent, Canterbury, Kent, U.K.
-
- The stepsize is the same for the complex and the finite difference part.
- '''
-
- if epsilon is None:
- h = EPS**(1/5.)*np.maximum(np.abs(x0),1e-2) # 1/4 from ...
- else:
- h = epsilon
- xh = x0 + h
- h = xh - x0
- ee = np.diag(h)
- hess = np.outer(h,h)
-
- n = dim = np.size(x0) #TODO: What's the assumption on the shape here?
-
- for i in range(n):
- for j in range(i,n):
- hess[i,j] = (f(*((x0 + 1j*ee[i,:] + ee[j,:],)+args))
- - f(*((x0 + 1j*ee[i,:] - ee[j,:],)+args))).imag/2./hess[i,j]
- hess[j,i] = hess[i,j]
-
- return hess
-
-
-def fun(beta, x):
- return np.dot(x, beta).sum(0)
-
-def fun1(beta, y, x):
- #print beta.shape, x.shape
- xb = np.dot(x, beta)
- return (y-xb)**2 #(xb-xb.mean(0))**2
-
-def fun2(beta, y, x):
- #print beta.shape, x.shape
- return fun1(beta, y, x).sum(0)
-
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
- from scipy.optimize.optimize import approx_fhess_p
- import numpy as np
-
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- mod = sm.Probit(data.endog, data.exog)
- res = mod.fit(method="newton")
- test_params = [1,0.25,1.4,-7]
- llf = mod.loglike
- score = mod.score
- hess = mod.hessian
-
-# below is Josef's scratch work
-
- nobs = 200
- x = np.arange(nobs*3).reshape(nobs,-1)
- x = np.random.randn(nobs,3)
-
- xk = np.array([1,2,3])
- xk = np.array([1.,1.,1.])
- #xk = np.zeros(3)
- beta = xk
- y = np.dot(x, beta) + 0.1*np.random.randn(nobs)
- xk = np.dot(np.linalg.pinv(x),y)
-
-
- epsilon = 1e-6
- args = (y,x)
- from scipy import optimize
- xfmin = optimize.fmin(fun2, (0,0,0), args)
- print approx_fprime((1,2,3),fun,epsilon,x)
- jac = approx_fprime1(xk,fun1,epsilon,args)
- jacmin = approx_fprime1(xk,fun1,-epsilon,args)
- #print jac
- print jac.sum(0)
- print '\nnp.dot(jac.T, jac)'
- print np.dot(jac.T, jac)
- print '\n2*np.dot(x.T, x)'
- print 2*np.dot(x.T, x)
- jac2 = (jac+jacmin)/2.
- print np.dot(jac2.T, jac2)
-
- #he = approx_hess(xk,fun2,epsilon,*args)
- print approx_hess(xk,fun2,1e-3,args)
- he = approx_hess(xk,fun2,None,args)
- print 'hessfd'
- print he
- print 'epsilon =', None
- print he[0] - 2*np.dot(x.T, x)
-
- for eps in [1e-3,1e-4,1e-5,1e-6]:
- print 'eps =', eps
- print approx_hess(xk,fun2,eps,args)[0] - 2*np.dot(x.T, x)
-
- hcs2 = approx_hess_cs2(xk,fun2,args=args)
- print 'hcs2'
- print hcs2 - 2*np.dot(x.T, x)
-
- hfd3 = approx_hess3(xk,fun2,args=args)
- print 'hfd3'
- print hfd3 - 2*np.dot(x.T, x)
-
- import numdifftools as nd
- hnd = nd.Hessian(lambda a: fun2(a, y, x))
- hessnd = hnd(xk)
- print 'numdiff'
- print hessnd - 2*np.dot(x.T, x)
- #assert_almost_equal(hessnd, he[0])
- gnd = nd.Gradient(lambda a: fun2(a, y, x))
- gradnd = gnd(xk)
-'''
->>> hnd = nd.Hessian(lambda a: fun2(a, x))
->>> hnd(xk)
-array([[ 216.87702746, -3.41892545, 1.87887281],
- [ -3.41892545, 180.76379116, -13.74326021],
- [ 1.87887281, -13.74326021, 198.5155617 ]])
->>> he
-(array([[ 216.87702746, -3.41892545, 1.87887281],
- [ -3.41892545, 180.76379116, -13.74326021],
- [ 1.87887281, -13.74326021, 198.5155617 ]]), array([ 2.35204474, 1.92684939, 2.11920745]))
->>> hnd = nd.Gradient(lambda a: fun2(a, x))
->>> hnd(xk)
-array([ 0.00000000e+00, 1.40036521e-14, -2.59014117e-14])
->>> hnd((1.2, 1.2, 1.2))
-array([ 41.58106741, 34.51076432, 38.95952468])
->>> approx_fprime1(xk,fun1,epsilon,*args).sum(0)
-array([ 1.08438310e-04, 9.03821177e-05, 9.92578403e-05])
->>> approx_fprime1((1.2, 1.2, 1.2),fun1,epsilon,*args).sum(0)
-array([ 41.58117585, 34.5108547 , 38.95962393])
->>> approx_fprime((1.2, 1.2, 1.2),fun2,epsilon,*args).sum(0)
-115.05165448078003
->>> approx_fprime((1.2, 1.2, 1.2),fun2,epsilon,*args)
-array([ 41.58117584, 34.5108547 , 38.95962393])
->>> epsilon
-9.9999999999999995e-007
->>> approx_hess(np.array([1.2, 1.2, 1.2]),fun2,epsilon,*args)
-(3, 3) H= [[ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]]
-h= [[ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]]
-(array([[ 216.87718291, -3.41771056, 1.87938554],
- [ -3.41771056, 180.76384836, -13.74189651],
- [ 1.87938554, -13.74189651, 198.51498226]]), array([ 41.58117585, 34.51085471, 38.95962394]))
-
-
->>> hnd = nd.Hessian(lambda a: fun2(a, x))
->>> hnd((1.2, 1.2, 1.2))
-array([[ 216.87702746, -3.41892545, 1.87887281],
- [ -3.41892545, 180.76379116, -13.74326021],
- [ 1.87887281, -13.74326021, 198.5155617 ]])
->>> hnd(xk)
-array([[ 216.87702746, -3.41892545, 1.87887281],
- [ -3.41892545, 180.76379116, -13.74326021],
- [ 1.87887281, -13.74326021, 198.5155617 ]])
->>> j = approx_fprime1((1.2, 1.2, 1.2),fun1,epsilon,*args)
->>> np.dot(j.T,j)
-array([[ 90.37418663, 23.81355855, 33.2936759 ],
- [ 23.81355855, 49.01569714, 16.70507137],
- [ 33.2936759 , 16.70507137, 82.24708274]])
-
-
->>> heb = approx_hess(xk,fun2,-1e-6,*args)
-(3, 3) H= [[ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]]
-h= [[ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]
- [ 1.00000000e-12 1.00000000e-12 1.00000000e-12]]
->>> hef
-(array([[ 216.87707189, -3.41926487, 1.87860838],
- [ -3.41926487, 180.76329321, -13.74345082],
- [ 1.87860838, -13.74345082, 198.51542631]]), array([ 1.08438369e-04, 9.03821462e-05, 9.92579352e-05]))
->>> heb
-(array([[ 216.87729394, -3.41848772, 1.87905247],
- [ -3.41848772, 180.76384832, -13.7433398 ],
- [ 1.87905247, -13.7433398 , 198.51575938]]), array([ -1.08438258e-04, -9.03819242e-05, -9.92578242e-05]))
->>> (hef[1]+heb[1])/2.
-array([ 5.55111512e-11, 1.11022302e-10, 5.55111512e-11])
->>> (hef[0]+heb[0])/2.
-array([[ 216.87718291, -3.41887629, 1.87883042],
- [ -3.41887629, 180.76357077, -13.74339531],
- [ 1.87883042, -13.74339531, 198.51559284]])
->>> hnd = nd.Hessian(lambda a: fun2(a, x))
->>> hnd(xk)
-array([[ 216.87702746, -3.41892545, 1.87887281],
- [ -3.41892545, 180.76379116, -13.74326021],
- [ 1.87887281, -13.74326021, 198.5155617 ]])
->>> j = approx_fprime1((1.2, 1.2, 1.2),fun1,epsilon,*args)
->>> np.dot(j.T,j)
-array([[ 90.37418663, 23.81355855, 33.2936759 ],
- [ 23.81355855, 49.01569714, 16.70507137],
- [ 33.2936759 , 16.70507137, 82.24708274]])
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/ols_anova_original.py b/statsmodels/scikits/statsmodels/sandbox/regression/ols_anova_original.py
deleted file mode 100644
index 6b2f211..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/ols_anova_original.py
+++ /dev/null
@@ -1,333 +0,0 @@
-''' convenience functions for ANOVA type analysis with OLS
-
-Note: statistical results of ANOVA are not checked, OLS is
-checked but not whether the reported results are the ones used
-in ANOVA
-
-'''
-
-
-import numpy as np
-#from scipy import stats
-import scikits.statsmodels.api as sm
-
-
-dt_b = np.dtype([('breed', int), ('sex', int), ('litter', int),
- ('pen', int), ('pig', int), ('age', float),
- ('bage', float), ('y', float)])
-''' too much work using structured masked arrays
-dta = np.mafromtxt('dftest3.data', dtype=dt_b)
-
-dta_use = np.ma.column_stack[[dta[col] for col in 'y sex age'.split()]]
-'''
-
-
-dta = np.genfromtxt('dftest3.data')
-print dta.shape
-mask = np.isnan(dta)
-print "rows with missing values", mask.any(1).sum()
-vars = dict((v[0], (idx, v[1])) for idx, v in enumerate((
- ('breed', int), ('sex', int), ('litter', int),
- ('pen', int), ('pig', int), ('age', float),
- ('bage', float), ('y', float))))
-
-datavarnames = 'y sex age'.split()
-#possible to avoid temporary array ?
-dta_use = dta[:, [vars[col][0] for col in datavarnames]]
-keeprows = ~np.isnan(dta_use).any(1)
-print 'number of complete observations', keeprows.sum()
-dta_used = dta_use[keeprows,:]
-
-varsused = dict((k, [dta_used[:,idx], idx, vars[k][1]]) for idx, k in enumerate(datavarnames))
-
-# use function for dummy
-#sexgroups = np.unique(dta_used[:,1])
-#sexdummy = (dta_used[:,1][:, None] == sexgroups).astype(int)
-
-def data2dummy(x, returnall=False):
- '''convert array of categories to dummy variables
- by default drops dummy variable for last category
- uses ravel, 1d only'''
- x = x.ravel()
- groups = np.unique(x)
- if returnall:
- return (x[:, None] == groups).astype(int)
- else:
- return (x[:, None] == groups).astype(int)[:,:-1]
-
-def data2proddummy(x):
- '''creates product dummy variables from 2 columns of 2d array
-
- drops last dummy variable, but not from each category
- singular with simple dummy variable but not with constant
-
- quickly written, no safeguards
-
- '''
- #brute force, assumes x is 2d
- #replace with encoding if possible
- groups = np.unique(map(tuple, x.tolist()))
- #includes singularity with additive factors
- return (x==groups[:,None,:]).all(-1).T.astype(int)[:,:-1]
-
-def data2groupcont(x1,x2):
- '''create dummy continuous variable
-
- Parameters
- ----------
- x1 : 1d array
- label or group array
- x2 : 1d array (float)
- continuous variable
-
- Notes
- -----
- useful for group specific slope coefficients in regression
- '''
- if x2.ndim == 1:
- x2 = x2[:,None]
- dummy = data2dummy(x1, returnall=True)
- return dummy * x2
-
-sexdummy = data2dummy(dta_used[:,1])
-factors = ['sex']
-for k in factors:
- varsused[k][0] = data2dummy(varsused[k][0])
-
-products = [('sex', 'age')]
-for k in products:
- varsused[''.join(k)] = data2proddummy(np.c_[varsused[k[0]][0],varsused[k[1]][0]])
-
-# make dictionary of variables with dummies as one variable
-#vars_to_use = {name: data or dummy variables}
-
-X_b0 = np.c_[sexdummy, dta_used[:,2], np.ones((dta_used.shape[0],1))]
-y_b0 = dta_used[:,0]
-res_b0 = sm.OLS(y_b0, X_b0).results
-print res_b0.params
-print res_b0.ssr
-
-anova_str0 = '''
-ANOVA statistics (model sum of squares excludes constant)
-Source DF Sum Squares Mean Square F Value Pr > F
-Model %(df_model)i %(ess)f %(mse_model)f %(fvalue)f %(f_pvalue)f
-Error %(df_resid)i %(ssr)f %(mse_resid)f
-CTotal %(nobs)i %(uncentered_tss)f %(mse_total)f
-
-R squared %(rsquared)f
-'''
-
-anova_str = '''
-ANOVA statistics (model sum of squares includes constant)
-Source DF Sum Squares Mean Square F Value Pr > F
-Model %(df_model)i %(ssmwithmean)f %(mse_model)f %(fvalue)f %(f_pvalue)f
-Error %(df_resid)i %(ssr)f %(mse_resid)f
-CTotal %(nobs)i %(uncentered_tss)f %(mse_total)f
-
-R squared %(rsquared)f
-'''
-
-#print anova_str % dict([('df_model', res.df_model)])
-#anovares = ['df_model' , 'df_resid'
-
-def anovadict(res):
- '''update regression results dictionary with ANOVA specific statistics
-
- not checked for completeness
- '''
- ad = {}
- ad.update(res.__dict__)
- anova_attr = ['df_model', 'df_resid', 'ess', 'ssr','uncentered_tss',
- 'mse_model', 'mse_resid', 'mse_total', 'fvalue', 'f_pvalue',
- 'rsquared']
- for key in anova_attr:
- ad[key] = getattr(res, key)
- ad['nobs'] = res.model.nobs
- ad['ssmwithmean'] = res.uncentered_tss - res.ssr
- return ad
-
-
-print anova_str0 % anovadict(res_b0)
-#the following leaves the constant in, not with NIST regression
-#but something fishy with res.ess negative in examples
-print anova_str % anovadict(res_b0)
-
-print 'using sex only'
-X2 = np.c_[sexdummy, np.ones((dta_used.shape[0],1))]
-res2 = sm.OLS(y_b0, X2).results
-print res2.params
-print res2.ssr
-print anova_str % anovadict(res2)
-
-print 'using age only'
-X3 = np.c_[ dta_used[:,2], np.ones((dta_used.shape[0],1))]
-res3 = sm.OLS(y_b0, X3).results
-print res3.params
-print res3.ssr
-print anova_str % anovadict(res3)
-
-
-def form2design(ss, data):
- '''convert string formula to data dictionary
-
- ss : string
- * I : add constant
- * varname : for simple varnames data is used as is
- * F:varname : create dummy variables for factor varname
- * P:varname1*varname2 : create product dummy variables for
- varnames
- * G:varname1*varname2 : create product between factor and
- continuous variable
- data : dict or structured array
- data set, access of variables by name as in dictionaries
-
- Returns
- -------
- vars : dictionary
- dictionary of variables with converted dummy variables
- names : list
- list of names, product (P:) and grouped continuous
- variables (G:) have name by joining individual names
- sorted according to input
-
- Examples
- --------
- >>> xx, n = form2design('I a F:b P:c*d G:c*f', testdata)
- >>> xx.keys()
- ['a', 'b', 'const', 'cf', 'cd']
- >>> n
- ['const', 'a', 'b', 'cd', 'cf']
-
- Notes
- -----
-
- with sorted dict, separate name list wouldn't be necessary
- '''
- vars = {}
- names = []
- for item in ss.split():
- if item == 'I':
- vars['const'] = np.ones(data.shape[0])
- names.append('const')
- elif not ':' in item:
- vars[item] = data[item]
- names.append(item)
- elif item[:2] == 'F:':
- v = item.split(':')[1]
- vars[v] = data2dummy(data[v])
- names.append(v)
- elif item[:2] == 'P:':
- v = item.split(':')[1].split('*')
- vars[''.join(v)] = data2proddummy(np.c_[data[v[0]],data[v[1]]])
- names.append(''.join(v))
- elif item[:2] == 'G:':
- v = item.split(':')[1].split('*')
- vars[''.join(v)] = data2groupcont(data[v[0]], data[v[1]])
- names.append(''.join(v))
- else:
- raise ValueError, 'unknown expression in formula'
- return vars, names
-
-nobs = 1000
-testdataint = np.random.randint(3, size=(nobs,4)).view([('a',int),('b',int),('c',int),('d',int)])
-testdatacont = np.random.normal( size=(nobs,2)).view([('e',float), ('f',float)])
-import numpy.lib.recfunctions
-dt2 = numpy.lib.recfunctions.zip_descr((testdataint, testdatacont),flatten=True)
-# concatenate structured arrays
-testdata = np.empty((nobs,1), dt2)
-for name in testdataint.dtype.names:
- testdata[name] = testdataint[name]
-for name in testdatacont.dtype.names:
- testdata[name] = testdatacont[name]
-
-
-#print form2design('a',testdata)
-
-if 0:
- xx, n = form2design('F:a',testdata)
- print xx
- print form2design('P:a*b',testdata)
- print data2proddummy((np.c_[testdata['a'],testdata['b']]))
-
- xx, names = form2design('a F:b P:c*d',testdata)
-
-#xx, names = form2design('I a F:b F:c F:d P:c*d',testdata)
-xx, names = form2design('I a F:b P:c*d', testdata)
-xx, names = form2design('I a F:b P:c*d G:a*e f', testdata)
-
-
-X = np.column_stack([xx[nn] for nn in names])
-# simple test version: all coefficients equal to one
-y = X.sum(1) + 0.01*np.random.normal(size=(nobs))
-rest1 = sm.OLS(y,X).results
-print rest1.params
-print anova_str % anovadict(rest1)
-
-def dropname(ss, li):
- '''drop names from a list of strings,
- names to drop are in space delimeted list
- does not change original list
- '''
- newli = li[:]
- for item in ss.split():
- newli.remove(item)
- return newli
-
-X = np.column_stack([xx[nn] for nn in dropname('ae f', names)])
-# simple test version: all coefficients equal to one
-y = X.sum(1) + 0.01*np.random.normal(size=(nobs))
-rest1 = sm.OLS(y,X).results
-print rest1.params
-print anova_str % anovadict(rest1)
-
-
-# Example: from Bruce
-# -------------------
-
-# read data set and drop rows with missing data
-dta = np.genfromtxt('dftest3.data', dt_b,missing='.', usemask=True)
-print 'missing', [dta.mask[k].sum() for k in dta.dtype.names]
-m = dta.mask.view(bool)
-droprows = m.reshape(-1,len(dta.dtype.names)).any(1)
-# get complete data as plain structured array
-# maybe doesn't work with masked arrays
-dta_use_b1 = dta[~droprows,:].data
-print dta_use_b1.shape
-print dta_use_b1.dtype
-
-#Example b1: variables from Bruce's glm
-
-# prepare data and dummy variables
-xx_b1, names_b1 = form2design('I F:sex age', dta_use_b1)
-# create design matrix
-X_b1 = np.column_stack([xx_b1[nn] for nn in dropname('', names_b1)])
-y_b1 = dta_use_b1['y']
-# estimate using OLS
-rest_b1 = sm.OLS(y_b1, X_b1).results
-# print results
-print rest_b1.params
-print anova_str % anovadict(rest_b1)
-#compare with original version only in original version
-print anova_str % anovadict(res_b0)
-
-# Example: use all variables except pig identifier
-
-allexog = ' '.join(dta.dtype.names[:-1])
-#'breed sex litter pen pig age bage'
-
-xx_b1a, names_b1a = form2design('I F:breed F:sex F:litter F:pen age bage', dta_use_b1)
-X_b1a = np.column_stack([xx_b1a[nn] for nn in dropname('', names_b1a)])
-y_b1a = dta_use_b1['y']
-rest_b1a = sm.OLS(y_b1a, X_b1a).results
-print rest_b1a.params
-print anova_str % anovadict(rest_b1a)
-
-for dropn in names_b1a:
- print '\nResults dropping', dropn
- X_b1a_ = np.column_stack([xx_b1a[nn] for nn in dropname(dropn, names_b1a)])
- y_b1a_ = dta_use_b1['y']
- rest_b1a_ = sm.OLS(y_b1a_, X_b1a_).results
- #print rest_b1a_.params
- print anova_str % anovadict(rest_b1a_)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/onewaygls.py b/statsmodels/scikits/statsmodels/sandbox/regression/onewaygls.py
deleted file mode 100644
index 1d22677..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/onewaygls.py
+++ /dev/null
@@ -1,381 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-F test for null hypothesis that coefficients in several regressions are the same
-
-* implemented by creating groupdummies*exog and testing appropriate contrast
- matrices
-* similar to test for structural change in all variables at predefined break points
-* allows only one group variable
-* currently tests for change in all exog variables
-* allows for heterogscedasticity, error variance varies across groups
-* does not work if there is a group with only a single observation
-
-TODO
-----
-
-* generalize anova structure,
- - structural break in only some variables
- - compare structural breaks in several exog versus constant only
- - fast way to construct comparisons
-* print anova style results
-* add all pairwise comparison tests (DONE) with and without Bonferroni correction
-* add additional test, likelihood-ratio, lagrange-multiplier, wald ?
-* test for heteroscedasticity, equality of variances
- - how?
- - like lagrange-multiplier in stattools heteroscedasticity tests
-* permutation or bootstrap test statistic or pvalues
-
-
-References
-----------
-
-Greene: section 7.4 Modeling and Testing for a Structural Break
- is not the same because I use a different normalization, which looks easier
- for more than 2 groups/subperiods
-
-after looking at Greene:
-* my version assumes that all groups are large enough to estimate the coefficients
-* in sections 7.4.2 and 7.5.3, predictive tests can also be used when there are
- insufficient (nobs>> res.contrasts.keys()
- [(0, 1), 1, 'all', 3, (1, 2), 2, (1, 3), (2, 3), (0, 3), (0, 2)]
-
- The keys are based on the original names or labels of the groups.
-
- TODO: keys can be numpy scalars and then the keys cannot be sorted
-
-
-
- '''
- if not hasattr(self, 'weights'):
- self.fitbygroups()
- groupdummy = (self.groupsint[:,None] == self.uniqueint).astype(int)
- #order of dummy variables by variable - not used
- #dummyexog = self.exog[:,:,None]*groupdummy[:,None,1:]
- #order of dummy variables by grous - used
- dummyexog = self.exog[:,None,:]*groupdummy[:,1:,None]
- exog = np.c_[self.exog, dummyexog.reshape(self.exog.shape[0],-1)] #self.nobs ??
- #Notes: I changed to drop first group from dummy
- #instead I want one full set dummies
- if self.het:
- weights = self.weights
- res = WLS(self.endog, exog, weights=weights).fit()
- else:
- res = OLS(self.endog, exog).fit()
- self.lsjoint = res
- contrasts = {}
- nvars = self.exog.shape[1]
- nparams = exog.shape[1]
- ndummies = nparams - nvars
- contrasts['all'] = np.c_[np.zeros((ndummies, nvars)), np.eye(ndummies)]
- for groupind, group in enumerate(self.unique[1:]): #need enumerate if groups != groupsint
- groupind = groupind + 1
- contr = np.zeros((nvars, nparams))
- contr[:,nvars*groupind:nvars*(groupind+1)] = np.eye(nvars)
- contrasts[group] = contr
- #save also for pairs, see next
- contrasts[(self.unique[0], group)] = contr
-
- #Note: I'm keeping some duplication for testing
- pairs = np.triu_indices(len(self.unique),1)
- for ind1,ind2 in zip(*pairs): #replace with group1, group2 in sorted(keys)
- if ind1 == 0:
- continue # need comparison with benchmark/normalization group separate
- g1 = self.unique[ind1]
- g2 = self.unique[ind2]
- group = (g1, g2)
- contr = np.zeros((nvars, nparams))
- contr[:,nvars*ind1:nvars*(ind1+1)] = np.eye(nvars)
- contr[:,nvars*ind2:nvars*(ind2+1)] = -np.eye(nvars)
- contrasts[group] = contr
-
-
- self.contrasts = contrasts
-
- def fitpooled(self):
- '''fit the pooled model, which assumes there are no differences across groups
- '''
- if self.het:
- if not hasattr(self, 'weights'):
- self.fitbygroups()
- weights = self.weights
- res = WLS(self.endog, self.exog, weights=weights).fit()
- else:
- res = OLS(self.endog, self.exog).fit()
- self.lspooled = res
-
- def ftest_summary(self):
- '''run all ftests on the joint model
-
- Returns
- -------
- fres : str
- a string that lists the results of all individual f-tests
- summarytable : list of tuples
- contains (pair, (fvalue, pvalue,df_denom, df_num)) for each f-test
-
- Note
- ----
- This are the raw results and not formatted for nice printing.
-
- '''
- if not hasattr(self, 'lsjoint'):
- self.fitjoint()
- txt = []
- summarytable = []
-
- txt.append('F-test for equality of coefficients across groups')
- fres = self.lsjoint.f_test(self.contrasts['all'])
- txt.append(fres.__str__())
- summarytable.append(('all',(fres.fvalue, fres.pvalue, fres.df_denom, fres.df_num)))
-
-# for group in self.unique[1:]: #replace with group1, group2 in sorted(keys)
-# txt.append('F-test for equality of coefficients between group'
-# ' %s and group %s' % (group, '0'))
-# fres = self.lsjoint.f_test(self.contrasts[group])
-# txt.append(fres.__str__())
-# summarytable.append((group,(fres.fvalue, fres.pvalue, fres.df_denom, fres.df_num)))
- pairs = np.triu_indices(len(self.unique),1)
- for ind1,ind2 in zip(*pairs): #replace with group1, group2 in sorted(keys)
- g1 = self.unique[ind1]
- g2 = self.unique[ind2]
- txt.append('F-test for equality of coefficients between group'
- ' %s and group %s' % (g1, g2))
- group = (g1, g2)
- fres = self.lsjoint.f_test(self.contrasts[group])
- txt.append(fres.__str__())
- summarytable.append((group,(fres.fvalue, fres.pvalue, fres.df_denom, fres.df_num)))
-
- self.summarytable = summarytable
- return '\n'.join(txt), summarytable
-
-
- def print_summary(res):
- '''printable string of summary
-
- '''
- groupind = res.groups
- #res.fitjoint() #not really necessary, because called by ftest_summary
- if hasattr(res, 'self.summarytable'):
- summtable = self.summarytable
- else:
- _, summtable = res.ftest_summary()
- txt = ''
- #print ft[0] #skip because table is nicer
- templ = \
-'''Table of F-tests for overall or pairwise equality of coefficients'
-%(tab)s
-
-
-Notes: p-values are not corrected for many tests
- (no Bonferroni correction)
- * : reject at 5%% uncorrected confidence level
-Null hypothesis: all or pairwise coefficient are the same'
-Alternative hypothesis: all coefficients are different'
-
-
-Comparison with stats.f_oneway
-%(statsfow)s
-
-
-Likelihood Ratio Test
-%(lrtest)s
-Null model: pooled all coefficients are the same across groups,'
-Alternative model: all coefficients are allowed to be different'
-not verified but looks close to f-test result'
-
-
-Ols parameters by group from individual, separate ols regressions'
-%(olsbg)s
-for group in sorted(res.olsbygroup):
- r = res.olsbygroup[group]
- print group, r.params
-
-
-Check for heteroscedasticity, '
-variance and standard deviation for individual regressions'
-%(grh)s
-variance ', res.sigmabygroup
-standard dev', np.sqrt(res.sigmabygroup)
-'''
-
- from scikits.statsmodels.iolib import SimpleTable
- resvals = {}
- resvals['tab'] = str(SimpleTable([(['%r'%(row[0],)]
- + list(row[1])
- + ['*']*(row[1][1]>0.5).item() ) for row in summtable],
- headers=['pair', 'F-statistic','p-value','df_denom',
- 'df_num']))
- resvals['statsfow'] = str(stats.f_oneway(*[res.endog[groupind==gr] for gr in
- res.unique]))
- #resvals['lrtest'] = str(res.lr_test())
- resvals['lrtest'] = str(SimpleTable([res.lr_test()],
- headers=['likelihood ratio', 'p-value', 'df'] ))
-
- resvals['olsbg'] = str(SimpleTable([[group]
- + res.olsbygroup[group].params.tolist()
- for group in sorted(res.olsbygroup)]))
- resvals['grh'] = str(SimpleTable(np.vstack([res.sigmabygroup,
- np.sqrt(res.sigmabygroup)]),
- headers=res.unique.tolist()))
-
- return templ % resvals
-
-
-
- # a variation of this has been added to RegressionResults as compare_lr
- def lr_test(self):
- '''generic likelihood ration test between nested models
-
- \begin{align} D & = -2(\ln(\text{likelihood for null model}) - \ln(\text{likelihood for alternative model})) \\ & = -2\ln\left( \frac{\text{likelihood for null model}}{\text{likelihood for alternative model}} \right). \end{align}
-
- is distributed as chisquare with df equal to difference in number of parameters or equivalently
- difference in residual degrees of freedom (sign?)
-
- TODO: put into separate function
- '''
- if not hasattr(self, 'lsjoint'):
- self.fitjoint()
- if not hasattr(self, 'lspooled'):
- self.fitpooled()
- loglikejoint = self.lsjoint.llf
- loglikepooled = self.lspooled.llf
- lrstat = -2*(loglikepooled - loglikejoint) #??? check sign
- lrdf = self.lspooled.df_resid - self.lsjoint.df_resid
- lrpval = stats.chi2.sf(lrstat, lrdf)
-
- return lrstat, lrpval, lrdf
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/predstd.py b/statsmodels/scikits/statsmodels/sandbox/regression/predstd.py
deleted file mode 100644
index d7c7a92..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/predstd.py
+++ /dev/null
@@ -1,136 +0,0 @@
-'''Additional functions
-
-prediction standard errors and confidence intervals
-
-
-A: josef pktd
-'''
-
-import numpy as np
-from scipy import stats
-import scikits.statsmodels.api as sm
-
-def atleast_2dcol(x):
- ''' convert array_like to 2d from 1d or 0d
-
- not tested because not used
- '''
- x = np.asarray(x)
- if (x.ndim == 1):
- x = x[:, None]
- elif (x.ndim == 0):
- x = np.atleast_2d(x)
- elif (x.ndim > 0):
- raise ValueError('too many dimensions')
- return x
-
-
-def wls_prediction_std(res, exog=None, weights=None, alpha=0.05):
- '''calculate standard deviation and confidence interval for prediction
-
- applies to WLS and OLS, not to general GLS,
- that is independently but not identically distributed observations
-
- Parameters
- ----------
- res : regression result instance
- results of WLS or OLS regression required attributes see notes
- exog : array_like (optional)
- exogenous variables for points to predict
- weights : scalar or array_like (optional)
- weights as defined for WLS (inverse of variance of observation)
- alpha : float (default: alpha = 0.5)
- confidence level for two-sided hypothesis
-
- Returns
- -------
- predstd : array_like, 1d
- standard error of prediction
- same length as rows of exog
- interval_l, interval_u : array_like
- lower und upper confidence bounds
-
- Notes
- -----
- The result instance needs to have at least the following
- res.model.predict() : predicted values or
- res.fittedvalues : values used in estimation
- res.cov_params() : covariance matrix of parameter estimates
-
- If exog is 1d, then it is interpreted as one observation,
- i.e. a row vector.
-
- testing status: not compared with other packages
-
- References
- ----------
-
- Greene p.111 for OLS, extended to WLS by analogy
-
- '''
- # work around current bug:
- # fit doesn't attach results to model, predict broken
- #res.model.results
-
- covb = res.cov_params()
- if exog is None:
- exog = res.model.exog
- predicted = res.fittedvalues
- else:
- exog = np.atleast_2d(exog)
- if covb.shape[1] != exog.shape[1]:
- raise ValueError('wrong shape of exog')
- predicted = res.model.predict(res.params, exog)
-
- if weights is None:
- weights = res.model.weights
-
-
- # full covariance:
- #predvar = res3.mse_resid + np.diag(np.dot(X2,np.dot(covb,X2.T)))
- # predication variance only
- predvar = res.mse_resid/weights + (exog * np.dot(covb, exog.T).T).sum(1)
- predstd = np.sqrt(predvar)
- tppf = stats.t.isf(alpha/2., res.df_resid)
- interval_u = predicted + tppf * predstd
- interval_l = predicted - tppf * predstd
- return predstd, interval_l, interval_u
-
-
-if __name__ == '__main__':
-
- # generate dataset
- nsample = 50
- x1 = np.linspace(0, 20, nsample)
- X = np.c_[x1, (x1-5)**2, np.ones(nsample)]
- np.random.seed(0)#9876789) #9876543)
- beta = [0.5, -0.01, 5.]
- y_true2 = np.dot(X, beta)
- w = np.ones(nsample)
- w[nsample*6/10:] = 3
- sig = 0.5
- y2 = y_true2 + sig*w* np.random.normal(size=nsample)
- X2 = X[:,[0,2]]
-
- # estimate OLS, WLS, (OLS not used in these tests)
- res2 = sm.OLS(y2, X2).fit()
- res3 = sm.WLS(y2, X2, 1./w).fit()
-
- #direct calculation
- covb = res3.cov_params()
- predvar = res3.mse_resid*w + (X2 * np.dot(covb,X2.T).T).sum(1)
- predstd = np.sqrt(predvar)
-
-
- prstd, iv_l, iv_u = wls_prediction_std(res3)
- np.testing.assert_almost_equal(predstd, prstd, 15)
-
- # testing shapes of exog
- prstd, iv_l, iv_u = wls_prediction_std(res3, X2[-1:,:], weights=3.)
- np.testing.assert_equal( prstd[-1], prstd)
- prstd, iv_l, iv_u = wls_prediction_std(res3, X2[-1,:], weights=3.)
- np.testing.assert_equal( prstd[-1], prstd)
- #use wrong size for exog
- #prstd, iv_l, iv_u = wls_prediction_std(res3, X2[-1,0], weights=3.)
- np.testing.assert_raises(ValueError, wls_prediction_std, res3, X2[-1,0], weights=3.)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/runmnl.py b/statsmodels/scikits/statsmodels/sandbox/regression/runmnl.py
deleted file mode 100644
index c628708..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/runmnl.py
+++ /dev/null
@@ -1,373 +0,0 @@
-'''conditional logit and nested conditional logit
-
-nested conditional logit is supposed to be the random utility version
-(RU2 and maybe RU1)
-
-References:
------------
-currently based on:
-Greene, Econometric Analysis, 5th edition and draft (?)
-Hess, Florian, 2002, Structural Choice analysis with nested logit models,
- The Stats Journal 2(3) pp 227-252
-
-not yet used:
-Silberhorn Nadja, Yasemin Boztug, Lutz Hildebrandt, 2008, Estimation with the
- nested logit model: specifications and software particularities,
- OR Spectrum
-Koppelman, Frank S., and Chandra Bhat with technical support from Vaneet Sethi,
- Sriram Subramanian, Vincent Bernardin and Jian Zhang, 2006,
- A Self Instructing Course in Mode Choice Modeling: Multinomial and
- Nested Logit Models
-
-Author: josef-pktd
-License: BSD (simplified)
-'''
-
-
-import numpy as np
-import numpy.lib.recfunctions as recf
-
-class TryCLogit(object):
- '''
- Conditional Logit, data handling test
-
- Parameters
- ----------
-
- endog : array (nobs,nchoices)
- dummy encoding of realized choices
- exog_bychoices : list of arrays
- explanatory variables, one array of exog for each choice. Variables
- with common coefficients have to be first in each array
- ncommon : int
- number of explanatory variables with common coefficients
-
- Notes
- -----
-
- Utility for choice j is given by
-
- $V_j = X_j * beta + Z * gamma_j$
-
- where X_j contains generic variables (terminology Hess) that have the same
- coefficient across choices, and Z are variables, like individual-specific
- variables that have different coefficients across variables.
-
- If there are choice specific constants, then they should be contained in Z.
- For identification, the constant of one choice should be dropped.
-
-
- '''
-
- def __init__(self, endog, exog_bychoices, ncommon):
- self.endog = endog
- self.exog_bychoices = exog_bychoices
- self.ncommon = ncommon
- self.nobs, self.nchoices = endog.shape
- self.nchoices = len(exog_bychoices)
-
- #TODO: rename beta to params and include inclusive values for nested CL
- betaind = [exog_bychoices[ii].shape[1]-ncommon for ii in range(4)]
- zi = np.r_[[ncommon], ncommon + np.array(betaind).cumsum()]
- beta_indices = [np.r_[np.array([0, 1]),z[zi[ii]:zi[ii+1]]]
- for ii in range(len(zi)-1)]
- self.beta_indices = beta_indices
-
- #for testing only
- beta = np.arange(7)
- betaidx_bychoices = [beta[idx] for idx in beta_indices]
-
-
- def xbetas(self, params):
- '''these are the V_i
- '''
-
- res = np.empty((self.nobs, self.nchoices))
- for choiceind in range(self.nchoices):
- res[:,choiceind] = np.dot(self.exog_bychoices[choiceind],
- params[self.beta_indices[choiceind]])
- return res
-
- def loglike(self, params):
- #normalization ?
- xb = self.xbetas(params)
- expxb = np.exp(xb)
- sumexpxb = expxb.sum(1)#[:,None]
- probs = expxb/expxb.sum(1)[:,None] #we don't really need this for all
- loglike = (self.endog * np.log(probs)).sum(1)
- #is this the same: YES
- #self.logliketest = (self.endog * xb).sum(1) - np.log(sumexpxb)
- #if self.endog where index then xb[self.endog]
- return -loglike.sum() #return sum for now not for each observation
-
- def fit(self, start_params=None):
- if start_params is None:
- start_params = np.zeros(6) # need better np.zeros(6)
- return optimize.fmin(self.loglike, start_params, maxfun=10000)
-
-
-class TryNCLogit(object):
- '''
- Nested Conditional Logit (RUNMNL), data handling test
-
- unfinished, doesn't do anything yet
-
- '''
-
- def __init__(self, endog, exog_bychoices, ncommon):
- self.endog = endog
- self.exog_bychoices = exog_bychoices
- self.ncommon = ncommon
- self.nobs, self.nchoices = endog.shape
- self.nchoices = len(exog_bychoices)
-
-
- #TODO rename beta to params and include inclusive values for nested CL
- betaind = [exog_bychoices[ii].shape[1]-ncommon for ii in range(4)]
- zi = np.r_[[ncommon], ncommon + np.array(betaind).cumsum()]
- beta_indices = [np.r_[np.array([0, 1]),z[zi[ii]:zi[ii+1]]]
- for ii in range(len(zi)-1)]
- self.beta_indices = beta_indices
-
- #for testing only
- beta = np.arange(7)
- betaidx_bychoices = [beta[idx] for idx in beta_indices]
-
-
- def xbetas(self, params):
- '''these are the V_i
- '''
-
- res = np.empty((self.nobs, self.nchoices))
- for choiceind in range(self.nchoices):
- res[:,choiceind] = np.dot(self.exog_bychoices[choiceind],
- params[self.beta_indices[choiceind]])
- return res
-
- def loglike_leafbranch(self, params, tau):
- #normalization ?
- #check/change naming for tau
- xb = self.xbetas(params)
- expxb = np.exp(xb/tau)
- sumexpxb = expxb.sum(1)#[:,None]
- logsumexpxb = np.log(sumexpxb)
- #loglike = (self.endog * xb).sum(1) - logsumexpxb
- probs = expxb/sumexpxb[:,None]
- return probs, logsumexpxp
- #if self.endog where index then xb[self.endog]
- #return -loglike.sum() #return sum for now not for each observation
-
- def loglike_branch(self, params, tau):
- #not yet sure how to keep track of branches during walking of tree
- ivs = []
- for b in branches:
- probs, iv = loglike_leafbranch(self, params, tau)
- ivs.append(iv)
-
- #ivs = np.array(ivs) #note ivs is (nobs,nbranchchoices)
- ivs = np.column_stack(ivs) # this way ?
- exptiv = np.exp(tau*ivs)
- sumexptiv = exptiv.sum(1)
- logsumexpxb = np.log(sumexpxb)
- probs = exptiv/sumexptiv[:,None]
-
-
-####### obsolete version to try out attaching data,
-####### new in treewalkerclass.py, copy new version to replace this
-####### problem with bzr I will disconnect history when copying
-testxb = 0 #global to class
-class RU2NMNL(object):
- '''Nested Multinomial Logit with Random Utility 2 parameterization
-
- '''
-
- def __init__(self, endog, exog, tree, paramsind):
- self.endog = endog
- self.datadict = exog
- self.tree = tree
- self.paramsind = paramsind
-
- self.branchsum = ''
- self.probs = {}
-
-
- def calc_prob(self, tree, keys=None):
- '''walking a tree bottom-up based on dictionary
- '''
- endog = self.endog
- datadict = self.datadict
- paramsind = self.paramsind
- branchsum = self.branchsum
-
-
- if type(tree) == tuple: #assumes leaves are int for choice index
- name, subtree = tree
- print name, datadict[name]
- print 'subtree', subtree
- keys = []
- if testxb:
- branchsum = datadict[name]
- else:
- branchsum = name #0
- for b in subtree:
- print b
- #branchsum += branch2(b)
- branchsum = branchsum + self.calc_prob(b, keys)
- print 'branchsum', branchsum, keys
- for k in keys:
- self.probs[k] = self.probs[k] + ['*' + name + '-prob']
-
- else:
- keys.append(tree)
- self.probs[tree] = [tree + '-prob' +
- '(%s)' % ', '.join(self.paramsind[tree])]
- if testxb:
- leavessum = sum((datadict[bi] for bi in tree))
- print 'final branch with', tree, ''.join(tree), leavessum #sum(tree)
- return leavessum #sum(xb[tree])
- else:
- return ''.join(tree) #sum(tree)
-
- print 'working on branch', tree, branchsum
- return branchsum
-
-
-
-#Trying out ways to handle data
-#------------------------------
-
-#travel data from Greene
-dta = np.genfromtxt('TableF23-2.txt', skip_header=1,
- names='Mode Ttme Invc Invt GC Hinc PSize'.split())
-
-endog = dta['Mode'].reshape(-1,4).copy() #I don't want a view
-nobs, nchoices = endog.shape
-datafloat = dta.view(float).reshape(-1,7)
-exog = datafloat[:,1:].reshape(-1,6*nchoices).copy() #I don't want a view
-
-print endog.sum(0)
-varnames = dta.dtype.names
-print varnames[1:]
-modes = ['Air', 'Train', 'Bus', 'Car']
-print exog.mean(0).reshape(nchoices, -1) # Greene Table 23.23
-
-
-
-
-#try dummy encoding for individual-specific variables
-exog_choice_names = ['GC', 'Ttme']
-exog_choice = np.column_stack([dta[name] for name in exog_choice_names])
-exog_choice = exog_choice.reshape(-1,len(exog_choice_names)*nchoices)
-exog_choice = np.c_[endog, exog_choice] # add constant dummy
-
-exog_individual = dta['Hinc'][:,None]
-
-#exog2 = np.c_[exog_choice, exog_individual*endog]
-
-# we can also overwrite and select in original datafloat
-# e.g. Hinc*endog{choice)
-
-choice_index = np.arange(dta.shape[0]) % nchoices
-hinca = dta['Hinc']*(choice_index==0)
-dta2=recf.append_fields(dta, ['Hinca'],[hinca], usemask=False)
-
-
-#another version
-
-xi = []
-for ii in range(4):
- xi.append(datafloat[choice_index==ii])
-
-#one more
-dta1 = recf.append_fields(dta, ['Const'],[np.ones(dta.shape[0])], usemask=False)
-
-xivar = [['GC', 'Ttme', 'Const', 'Hinc'],
- ['GC', 'Ttme', 'Const'],
- ['GC', 'Ttme', 'Const'],
- ['GC', 'Ttme']] #need to drop one constant
-
-xi = []
-for ii in range(4):
- xi.append(dta1[xivar[ii]][choice_index==ii])
- #this doesn't change sequence of columns, bug report by Skipper I think
-
-ncommon = 2
-betaind = [len(xi[ii].dtype.names)-ncommon for ii in range(4)]
-zi=np.r_[[ncommon], ncommon+np.array(betaind).cumsum()]
-z=np.arange(7) #what is n?
-betaindices = [np.r_[np.array([0, 1]),z[zi[ii]:zi[ii+1]]]
- for ii in range(len(zi)-1)]
-
-beta = np.arange(7)
-betai = [beta[idx] for idx in betaindices]
-
-
-
-
-#examples for TryCLogit
-#----------------------
-
-
-#get exogs as float
-xifloat = [xx.view(float).reshape(nobs,-1) for xx in xi]
-clogit = TryCLogit(endog, xifloat, 2)
-from scipy import optimize
-
-debug = 0
-if debug:
- res = optimize.fmin(clogit.loglike, np.ones(6))
-#estimated parameters from Greene:
-tab2324 = [-0.15501, -0.09612, 0.01329, 5.2074, 3.8690, 3.1632]
-if debug:
- res2 = optimize.fmin(clogit.loglike, tab2324)
-
-res3 = optimize.fmin(clogit.loglike, np.zeros(6),maxfun=10000)
-#this has same numbers as Greene table 23.24, but different sequence
-#coefficient on GC is exactly 10% of Greene's
-#TODO: get better starting values
-'''
-Optimization terminated successfully.
- Current function value: 199.128369
- Iterations: 957
- Function evaluations: 1456
-array([-0.0961246 , -0.0155019 , 0.01328757, 5.20741244, 3.86905293,
- 3.16319074])
-'''
-res3corr = res3[[1, 0, 2, 3, 4, 5]]
-res3corr[0] *= 10
-print res3corr - tab2324 # diff 1e-5 to 1e-6
-#199.128369 - 199.1284 #llf same up to print precision of Greene
-
-print clogit.fit()
-
-
-tree0 = ('top',
- [('Fly',['Air']),
- ('Ground', ['Train', 'Car', 'Bus'])
- ]
- )
-
-datadict = dict(zip(['Air', 'Train', 'Bus', 'Car'],
- [xifloat[i]for i in range(4)]))
-
-#for testing only (mock that returns it's own name
-datadict = dict(zip(['Air', 'Train', 'Bus', 'Car'],
- ['Airdata', 'Traindata', 'Busdata', 'Cardata']))
-
-datadict.update({'top' : [],
- 'Fly' : [],
- 'Ground': []})
-
-paramsind = {'top' : [],
- 'Fly' : [],
- 'Ground': [],
- 'Air' : ['GC', 'Ttme', 'ConstA', 'Hinc'],
- 'Train' : ['GC', 'Ttme', 'ConstT'],
- 'Bus' : ['GC', 'Ttme', 'ConstB'],
- 'Car' : ['GC', 'Ttme']
- }
-
-modru = RU2NMNL(endog, datadict, tree0, paramsind)
-print modru.calc_prob(modru.tree)
-print '\nmodru.probs'
-print modru.probs
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/sympy_diff.py b/statsmodels/scikits/statsmodels/sandbox/regression/sympy_diff.py
deleted file mode 100644
index 95d146f..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/sympy_diff.py
+++ /dev/null
@@ -1,61 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sat Mar 13 07:56:22 2010
-
-Author: josef-pktd
-"""
-
-import sympy as sy
-
-
-def pdf(x, mu, sigma):
- """Return the probability density function as an expression in x"""
- #x = sy.sympify(x)
- return 1/(sigma*sy.sqrt(2*sy.pi)) * sy.exp(-(x-mu)**2 / (2*sigma**2))
-
-def cdf(x, mu, sigma):
- """Return the cumulative density function as an expression in x"""
- #x = sy.sympify(x)
- return (1+sy.erf((x-mu)/(sigma*sy.sqrt(2))))/2
-
-
-mu = sy.Symbol('mu')
-sigma = sy.Symbol('sigma')
-sigma2 = sy.Symbol('sigma2')
-x = sy.Symbol('x')
-y = sy.Symbol('y')
-df = sy.Symbol('df')
-s = sy.Symbol('s')
-
-dldxnorm = sy.log(pdf(x, mu,sigma)).diff(x)
-print sy.simplify(dldxnorm)
-print sy.diff(sy.log(sy.gamma((s+1)/2)),s)
-
-print sy.diff((df+1)/2. * sy.log(1+df/(df-2)), df)
-
-#standard t distribution, not verified
-tllf1 = sy.log(sy.gamma((df+1)/2.)) - sy.log(sy.gamma(df/2.)) - 0.5*sy.log((df)*sy.pi)
-tllf2 = (df+1.)/2. * sy.log(1. + (y-mu)**2/(df)/sigma2) + 0.5 * sy.log(sigma2)
-tllf2std = (df+1.)/2. * sy.log(1. + y**2/df) + 0.5
-tllf = tllf1 - tllf2
-print tllf1.diff(df)
-print tllf2.diff(y)
-dlddf = (tllf1-tllf2).diff(df)
-print dlddf
-print sy.cse(dlddf)
-print '\n derivative of loglike of t distribution wrt df'
-for k,v in sy.cse(dlddf)[0]: print k,'=',v
-print sy.cse(dlddf)[1][0]
-
-print '\nstandard t distribution, dll_df, dll_dy'
-tllfstd = tllf1 - tllf2std
-print tllfstd.diff(df)
-print tllfstd.diff(y)
-
-print '\n'
-
-print dlddf.subs(dict(y=1,mu=1,sigma2=1.5,df=10.0001))
-print dlddf.subs(dict(y=1,mu=1,sigma2=1.5,df=10.0001)).evalf()
-# Note: derivatives of nested function doesn't work in sympy
-# at least not higher order derivatives (second or larger)
-# looks like print failure
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/test_numdiff.py b/statsmodels/scikits/statsmodels/sandbox/regression/test_numdiff.py
deleted file mode 100644
index e6cbb3d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/test_numdiff.py
+++ /dev/null
@@ -1,310 +0,0 @@
-'''Testing numerical differentiation
-
-Still some problems, with API (args tuple versus *args)
-finite difference Hessian has some problems that I didn't look at yet
-
-Should Hessian also work per observation, if fun returns 2d
-
-'''
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-import scikits.statsmodels.api as sm
-import numdiff
-from numdiff import approx_fprime, approx_fprime_cs, approx_hess_cs
-
-DEC3 = 3
-DEC4 = 4
-DEC5 = 5
-DEC6 = 6
-DEC8 = 8
-DEC13 = 13
-DEC14 = 14
-
-def maxabs(x,y):
- return np.abs(x-y).max()
-
-def fun(beta, x):
- return np.dot(x, beta).sum(0)
-
-def fun1(beta, y, x):
- #print beta.shape, x.shape
- xb = np.dot(x, beta)
- return (y-xb)**2 #(xb-xb.mean(0))**2
-
-def fun2(beta, y, x):
- #print beta.shape, x.shape
- return fun1(beta, y, x).sum(0)
-
-
-#ravel() added because of MNLogit 2d params
-class CheckGradLoglike(object):
- def test_score(self):
- pass
- #assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_4)
-
- for test_params in self.params:
- sc = self.mod.score(test_params)
- scfd = numdiff.approx_fprime1(test_params.ravel(), self.mod.loglike)
- assert_almost_equal(sc, scfd, decimal=1)
-
- sccs = numdiff.approx_fprime_cs(test_params.ravel(), self.mod.loglike)
- assert_almost_equal(sc, sccs, decimal=13)
-
- def test_hess(self):
- pass
- #assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_4)
-
- for test_params in self.params:
- he = self.mod.hessian(test_params)
- #TODO: bug
-## hefd = numdiff.approx_hess(test_params, self.mod.score)
-## assert_almost_equal(he, hefd, decimal=DEC8)
-
- hescs = numdiff.approx_fprime_cs(test_params.ravel(), self.mod.score)
- assert_almost_equal(he, hescs, decimal=DEC8)
-
- hecs = numdiff.approx_hess_cs(test_params.ravel(), self.mod.loglike)
- assert_almost_equal(he, hecs, decimal=DEC6)
-
-
-class estGradMNLogit(CheckGradLoglike):
- #doesn't work yet because params is 2d and loglike doesn't take raveled
- def __init__(self):
- #from results.results_discrete import Anes
- data = sm.datasets.anes96.load()
- exog = data.exog
- exog[:,0] = np.log(exog[:,0] + .1)
- exog = np.column_stack((exog[:,0],exog[:,2],
- exog[:,5:8]))
- exog = sm.add_constant(exog)
- self.mod = sm.MNLogit(data.endog, exog)
-
- def loglikeflat(self, params):
- #reshapes flattened params
- return self.loglike(params.reshape(6,6))
- self.mod.loglike = loglikeflat #need instance method
- self.params = [np.ones((6,6))]
-
-
-class TestGradLogit(CheckGradLoglike):
- def __init__(self):
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- #mod = sm.Probit(data.endog, data.exog)
- self.mod = sm.Logit(data.endog, data.exog)
- #res = mod.fit(method="newton")
- self.params = [np.array([1,0.25,1.4,-7])]
-## loglike = mod.loglike
-## score = mod.score
-## hess = mod.hessian
-
-
-class CheckDerivative(object):
- def __init__(self):
- nobs = 200
- #x = np.arange(nobs*3).reshape(nobs,-1)
- np.random.seed(187678)
- x = np.random.randn(nobs,3)
-
- xk = np.array([1,2,3])
- xk = np.array([1.,1.,1.])
- #xk = np.zeros(3)
- beta = xk
- y = np.dot(x, beta) + 0.1*np.random.randn(nobs)
- xkols = np.dot(np.linalg.pinv(x),y)
-
- self.x = x
- self.y = y
- self.params = [np.array([1.,1.,1.]), xkols]
- self.init()
-
- def init(self):
- pass
-
- def test_grad_fun1_fd(self):
- for test_params in self.params:
- #gtrue = self.x.sum(0)
- gtrue = self.gradtrue(test_params)
- fun = self.fun()
- epsilon = 1e-6
- gfd = numdiff.approx_fprime1(test_params, fun, epsilon=epsilon,
- args=self.args)
- gfd += numdiff.approx_fprime1(test_params, fun, epsilon=-epsilon,
- args=self.args)
- gfd /= 2.
- assert_almost_equal(gtrue, gfd, decimal=DEC6)
-
- def test_grad_fun1_fdc(self):
- for test_params in self.params:
- #gtrue = self.x.sum(0)
- gtrue = self.gradtrue(test_params)
- fun = self.fun()
-
- epsilon = 1e-6 #default epsilon 1e-6 is not precise enough
- gfd = numdiff.approx_fprime1(test_params, fun, epsilon=1e-8,
- args=self.args, centered=True)
- assert_almost_equal(gtrue, gfd, decimal=DEC5)
-
- def test_grad_fun1_cs(self):
- for test_params in self.params:
- #gtrue = self.x.sum(0)
- gtrue = self.gradtrue(test_params)
- fun = self.fun()
-
- gcs = numdiff.approx_fprime_cs(test_params, fun, args=self.args)
- assert_almost_equal(gtrue, gcs, decimal=DEC13)
-
- def test_hess_fun1_fd(self):
- for test_params in self.params:
- #hetrue = 0
- hetrue = self.hesstrue(test_params)
- if not hetrue is None: #Hessian doesn't work for 2d return of fun
- fun = self.fun()
- #default works, epsilon 1e-6 or 1e-8 is not precise enough
- hefd = numdiff.approx_hess(test_params, fun, #epsilon=1e-8,
- args=self.args)[0] #TODO:should be kwds
- assert_almost_equal(hetrue, hefd, decimal=DEC3)
- #TODO: I reduced precision to DEC3 from DEC4 because of
- # TestDerivativeFun
-
- def test_hess_fun1_cs(self):
- for test_params in self.params:
- #hetrue = 0
- hetrue = self.hesstrue(test_params)
- if not hetrue is None: #Hessian doesn't work for 2d return of fun
- fun = self.fun()
- hecs = numdiff.approx_hess_cs(test_params, fun, args=self.args)
- assert_almost_equal(hetrue, hecs, decimal=DEC6)
-
-
-class TestDerivativeFun(CheckDerivative):
- def init(self):
- xkols = np.dot(np.linalg.pinv(self.x), self.y)
- self.params = [np.array([1.,1.,1.]), xkols]
- self.args = (self.x,)
-
- def fun(self):
- return fun
- def gradtrue(self, params):
- return self.x.sum(0)
- def hesstrue(self, params):
- return np.zeros((3,3)) #make it (3,3), because test fails with scalar 0
- #why is precision only DEC3
-
-class TestDerivativeFun2(CheckDerivative):
- def init(self):
- xkols = np.dot(np.linalg.pinv(self.x), self.y)
- self.params = [np.array([1.,1.,1.]), xkols]
- self.args = (self.y, self.x)
-
- def fun(self):
- return fun2
-
- def gradtrue(self, params):
- y, x = self.y, self.x
- return (-x*2*(y-np.dot(x, params))[:,None]).sum(0)
- #2*(y-np.dot(x, params)).sum(0)
-
- def hesstrue(self, params):
- x = self.x
- return 2*np.dot(x.T, x)
-
-class TestDerivativeFun1(CheckDerivative):
- def init(self):
- xkols = np.dot(np.linalg.pinv(self.x), self.y)
- self.params = [np.array([1.,1.,1.]), xkols]
- self.args = (self.y, self.x)
-
- def fun(self):
- return fun1
- def gradtrue(self, params):
- y, x = self.y, self.x
- return (-x*2*(y-np.dot(x, params))[:,None])
- def hesstrue(self, params):
- return None
- y, x = self.y, self.x
- return (-x*2*(y-np.dot(x, parms))[:,None]) #TODO: check shape
-
-
-if __name__ == '__main__':
-
- epsilon = 1e-6
- nobs = 200
- x = np.arange(nobs*3).reshape(nobs,-1)
- x = np.random.randn(nobs,3)
-
- xk = np.array([1,2,3])
- xk = np.array([1.,1.,1.])
- #xk = np.zeros(3)
- beta = xk
- y = np.dot(x, beta) + 0.1*np.random.randn(nobs)
- xkols = np.dot(np.linalg.pinv(x),y)
-
- print approx_fprime((1,2,3),fun,epsilon,x)
- gradtrue = x.sum(0)
- print x.sum(0)
- gradcs = approx_fprime_cs((1,2,3), fun, (x,), h=1.0e-20)
- print gradcs, maxabs(gradcs, gradtrue)
- print approx_hess_cs((1,2,3), fun, (x,), h=1.0e-20) #this is correctly zero
-
- print approx_hess_cs((1,2,3), fun2, (y,x), h=1.0e-20)-2*np.dot(x.T, x)
- print numdiff.approx_hess(xk,fun2,1e-3, (y,x))[0] - 2*np.dot(x.T, x)
-
- gt = (-x*2*(y-np.dot(x, [1,2,3]))[:,None])
- g = approx_fprime_cs((1,2,3), fun1, (y,x), h=1.0e-20)#.T #this shouldn't be transposed
- gd = numdiff.approx_fprime1((1,2,3),fun1,epsilon,(y,x))
- print maxabs(g, gt)
- print maxabs(gd, gt)
-
-
- import scikits.statsmodels.api as sm
-
- data = sm.datasets.spector.load()
- data.exog = sm.add_constant(data.exog)
- #mod = sm.Probit(data.endog, data.exog)
- mod = sm.Logit(data.endog, data.exog)
- #res = mod.fit(method="newton")
- test_params = [1,0.25,1.4,-7]
- loglike = mod.loglike
- score = mod.score
- hess = mod.hessian
-
- #cs doesn't work for Probit because special.ndtr doesn't support complex
- #maybe calculating ndtr for real and imag parts separately, if we need it
- #and if it still works in this case
- print 'sm', score(test_params)
- print 'fd', numdiff.approx_fprime1(test_params,loglike,epsilon)
- print 'cs', numdiff.approx_fprime_cs(test_params,loglike)
- print 'sm', hess(test_params)
- print 'fd', numdiff.approx_fprime1(test_params,score,epsilon)
- print 'cs', numdiff.approx_fprime_cs(test_params, score)
-
- #print 'fd', numdiff.approx_hess(test_params, loglike, epsilon) #TODO: bug
- '''
- Traceback (most recent call last):
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\regression\test_numdiff.py", line 74, in
- print 'fd', numdiff.approx_hess(test_params, loglike, epsilon)
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\regression\numdiff.py", line 118, in approx_hess
- xh = x + h
- TypeError: can only concatenate list (not "float") to list
- '''
- hesscs = numdiff.approx_hess_cs(test_params, loglike)
- print 'cs', hesscs
- print maxabs(hess(test_params), hesscs)
-
- data = sm.datasets.anes96.load()
- exog = data.exog
- exog[:,0] = np.log(exog[:,0] + .1)
- exog = np.column_stack((exog[:,0],exog[:,2],
- exog[:,5:8]))
- exog = sm.add_constant(exog)
- res1 = sm.MNLogit(data.endog, exog).fit(method="newton", disp=0)
-
- datap = sm.datasets.randhie.load()
- nobs = len(datap.endog)
- exogp = sm.add_constant(datap.exog.view(float).reshape(nobs,-1))
- modp = sm.Poisson(datap.endog, exogp)
- resp = modp.fit(method='newton', disp=0)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/tools.py b/statsmodels/scikits/statsmodels/sandbox/regression/tools.py
deleted file mode 100644
index 7285079..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/tools.py
+++ /dev/null
@@ -1,401 +0,0 @@
-'''gradient/Jacobian of normal and t loglikelihood
-
-use chain rule
-
-normal derivative wrt mu, sigma and beta
-
-new version: loc-scale distributions, derivative wrt loc, scale
-
-also includes "standardized" t distribution (for use in GARCH)
-
-TODO:
-* use sympy for derivative of loglike wrt shape parameters
- it works for df of t distribution dlog(gamma(a))da = polygamma(0,a) check
- polygamma is available in scipy.special
-* get loc-scale example to work with mean = X*b
-* write some full unit test examples
-
-A: josef-pktd
-
-'''
-
-
-import numpy as np
-from scipy import special
-from scipy.special import gammaln
-
-
-def norm_lls(y, params):
- '''normal loglikelihood given observations and mean mu and variance sigma2
-
- Parameters
- ----------
- y : array, 1d
- normally distributed random variable
- params: array, (nobs, 2)
- array of mean, variance (mu, sigma2) with observations in rows
-
- Returns
- -------
- lls : array
- contribution to loglikelihood for each observation
- '''
-
- mu, sigma2 = params.T
- lls = -0.5*(np.log(2*np.pi) + np.log(sigma2) + (y-mu)**2/sigma2)
- return lls
-
-def norm_lls_grad(y, params):
- '''Jacobian of normal loglikelihood wrt mean mu and variance sigma2
-
- Parameters
- ----------
- y : array, 1d
- normally distributed random variable
- params: array, (nobs, 2)
- array of mean, variance (mu, sigma2) with observations in rows
-
- Returns
- -------
- grad : array (nobs, 2)
- derivative of loglikelihood for each observation wrt mean in first
- column, and wrt variance in second column
-
- Notes
- -----
- this is actually the derivative wrt sigma not sigma**2, but evaluated
- with parameter sigma2 = sigma**2
-
- '''
- mu, sigma2 = params.T
- dllsdmu = (y-mu)/sigma2
- dllsdsigma2 = ((y-mu)**2/sigma2 - 1)/np.sqrt(sigma2)
- return np.column_stack((dllsdmu, dllsdsigma2))
-
-
-def mean_grad(x, beta):
- '''gradient/Jacobian for d (x*beta)/ d beta
- '''
- return x
-
-def normgrad(y, x, params):
- '''Jacobian of normal loglikelihood wrt mean mu and variance sigma2
-
- Parameters
- ----------
- y : array, 1d
- normally distributed random variable with mean x*beta, and variance sigma2
- x : array, 2d
- explanatory variables, observation in rows, variables in columns
- params: array_like, (nvars + 1)
- array of coefficients and variance (beta, sigma2)
-
- Returns
- -------
- grad : array (nobs, 2)
- derivative of loglikelihood for each observation wrt mean in first
- column, and wrt scale (sigma) in second column
- assume params = (beta, sigma2)
-
- Notes
- -----
- TODO: for heteroscedasticity need sigma to be a 1d array
-
- '''
- beta = params[:-1]
- sigma2 = params[-1]*np.ones((len(y),1))
- dmudbeta = mean_grad(x, beta)
- mu = np.dot(x, beta)
- #print beta, sigma2
- params2 = np.column_stack((mu,sigma2))
- dllsdms = norm_lls_grad(y,params2)
- grad = np.column_stack((dllsdms[:,:1]*dmudbeta, dllsdms[:,:1]))
- return grad
-
-
-
-def tstd_lls(y, params, df):
- '''t loglikelihood given observations and mean mu and variance sigma2 = 1
-
- Parameters
- ----------
- y : array, 1d
- normally distributed random variable
- params: array, (nobs, 2)
- array of mean, variance (mu, sigma2) with observations in rows
- df : integer
- degrees of freedom of the t distribution
-
- Returns
- -------
- lls : array
- contribution to loglikelihood for each observation
-
- Notes
- -----
- parameterized for garch
- '''
-
- mu, sigma2 = params.T
- df = df*1.0
- #lls = gammaln((df+1)/2.) - gammaln(df/2.) - 0.5*np.log((df-2)*np.pi)
- #lls -= (df+1)/2. * np.log(1. + (y-mu)**2/(df-2.)/sigma2) + 0.5 * np.log(sigma2)
- lls = gammaln((df+1)/2.) - gammaln(df/2.) - 0.5*np.log((df-2)*np.pi)
- lls -= (df+1)/2. * np.log(1. + (y-mu)**2/(df-2)/sigma2) + 0.5 * np.log(sigma2)
-
- return lls
-
-def norm_dlldy(y):
- '''derivative of log pdf of standard normal with respect to y
- '''
- return -y
-
-def ts_dlldy(y, df):
- '''derivative of log pdf of standardized (?) t with respect to y
-
- Notes
- -----
- parameterized for garch, with mean 0 and variance 1
- '''
- #(df+1)/2. / (1 + y**2/(df-2.)) * 2.*y/(df-2.)
- #return -(df+1)/(df-2.) / (1 + y**2/(df-2.)) * y
- return -(df+1)/(df) / (1 + y**2/(df)) * y
-
-def tstd_pdf(x, df):
- '''pdf for standardized (not standard) t distribution, variance is one
-
- '''
-
- r = np.array(df*1.0)
- Px = np.exp(special.gammaln((r+1)/2.)-special.gammaln(r/2.))/np.sqrt((r-2)*pi)
- Px /= (1+(x**2)/(r-2))**((r+1)/2.)
- return Px
-
-def ts_lls(y, params, df):
- '''t loglikelihood given observations and mean mu and variance sigma2 = 1
-
- Parameters
- ----------
- y : array, 1d
- normally distributed random variable
- params: array, (nobs, 2)
- array of mean, variance (mu, sigma2) with observations in rows
- df : integer
- degrees of freedom of the t distribution
-
- Returns
- -------
- lls : array
- contribution to loglikelihood for each observation
-
- Notes
- -----
- parameterized for garch
- normalized/rescaled so that sigma2 is the variance
-
- >>> df = 10; sigma = 1.
- >>> stats.t.stats(df, loc=0., scale=sigma.*np.sqrt((df-2.)/df))
- (array(0.0), array(1.0))
- >>> sigma = np.sqrt(2.)
- >>> stats.t.stats(df, loc=0., scale=sigma*np.sqrt((df-2.)/df))
- (array(0.0), array(2.0))
- '''
- print y, params, df
- mu, sigma2 = params.T
- df = df*1.0
- #lls = gammaln((df+1)/2.) - gammaln(df/2.) - 0.5*np.log((df-2)*np.pi)
- #lls -= (df+1)/2. * np.log(1. + (y-mu)**2/(df-2.)/sigma2) + 0.5 * np.log(sigma2)
- lls = gammaln((df+1)/2.) - gammaln(df/2.) - 0.5*np.log((df)*np.pi)
- lls -= (df+1.)/2. * np.log(1. + (y-mu)**2/(df)/sigma2) + 0.5 * np.log(sigma2)
- return lls
-
-
-def ts_dlldy(y, df):
- '''derivative of log pdf of standard t with respect to y
-
- Parameters
- ----------
- y : array_like
- data points of random variable at which loglike is evaluated
- df : array_like
- degrees of freedom,shape parameters of log-likelihood function
- of t distribution
-
- Returns
- -------
- dlldy : array
- derivative of loglikelihood wrt random variable y evaluated at the
- points given in y
-
- Notes
- -----
- with mean 0 and scale 1, but variance is df/(df-2)
-
- '''
- df = df*1.
- #(df+1)/2. / (1 + y**2/(df-2.)) * 2.*y/(df-2.)
- #return -(df+1)/(df-2.) / (1 + y**2/(df-2.)) * y
- return -(df+1)/(df) / (1 + y**2/(df)) * y
-
-def tstd_dlldy(y, df):
- '''derivative of log pdf of standardized t with respect to y
-
- Parameters
- ----------
- y : array_like
- data points of random variable at which loglike is evaluated
- df : array_like
- degrees of freedom,shape parameters of log-likelihood function
- of t distribution
-
- Returns
- -------
- dlldy : array
- derivative of loglikelihood wrt random variable y evaluated at the
- points given in y
-
-
- Notes
- -----
- parameterized for garch, standardized to variance=1
- '''
- #(df+1)/2. / (1 + y**2/(df-2.)) * 2.*y/(df-2.)
- return -(df+1)/(df-2.) / (1 + y**2/(df-2.)) * y
- #return (df+1)/(df) / (1 + y**2/(df)) * y
-
-def locscale_grad(y, loc, scale, dlldy, *args):
- '''derivative of log-likelihood with respect to location and scale
-
- Parameters
- ----------
- y : array_like
- data points of random variable at which loglike is evaluated
- loc : float
- location parameter of distribution
- scale : float
- scale parameter of distribution
- dlldy : function
- derivative of loglikelihood fuction wrt. random variable x
- args : array_like
- shape parameters of log-likelihood function
-
- Returns
- -------
- dlldloc : array
- derivative of loglikelihood wrt location evaluated at the
- points given in y
- dlldscale : array
- derivative of loglikelihood wrt scale evaluated at the
- points given in y
-
- '''
- yst = (y-loc)/scale #ystandardized
- dlldloc = -dlldy(yst, *args) / scale
- dlldscale = -1./scale - dlldy(yst, *args) * (y-loc)/scale**2
- return dlldloc, dlldscale
-
-if __name__ == '__main__':
- verbose = 0
- if verbose:
- sig = 0.1
- beta = np.ones(2)
- rvs = np.random.randn(10,3)
- x = rvs[:,1:]
- y = np.dot(x,beta) + sig*rvs[:,0]
-
- params = [1,1,1]
- print normgrad(y, x, params)
-
- dllfdbeta = (y-np.dot(x, beta))[:,None]*x #for sigma = 1
- print dllfdbeta
-
- print locscale_grad(y, np.dot(x, beta), 1, norm_dlldy)
- print (y-np.dot(x, beta))
-
- from scipy import stats, misc
-
- def llt(y,loc,scale,df):
- return np.log(stats.t.pdf(y, df, loc=loc, scale=scale))
- def lltloc(loc,y,scale,df):
- return np.log(stats.t.pdf(y, df, loc=loc, scale=scale))
- def lltscale(scale,y,loc,df):
- return np.log(stats.t.pdf(y, df, loc=loc, scale=scale))
-
- def llnorm(y,loc,scale):
- return np.log(stats.norm.pdf(y, loc=loc, scale=scale))
- def llnormloc(loc,y,scale):
- return np.log(stats.norm.pdf(y, loc=loc, scale=scale))
- def llnormscale(scale,y,loc):
- return np.log(stats.norm.pdf(y, loc=loc, scale=scale))
-
- if verbose:
- print '\ngradient of t'
- print misc.derivative(llt, 1, dx=1e-6, n=1, args=(0,1,10), order=3)
- print 't ', locscale_grad(1, 0, 1, tstd_dlldy, 10)
- print 'ts', locscale_grad(1, 0, 1, ts_dlldy, 10)
- print misc.derivative(llt, 1.5, dx=1e-10, n=1, args=(0,1,20), order=3),
- print 'ts', locscale_grad(1.5, 0, 1, ts_dlldy, 20)
- print misc.derivative(llt, 1.5, dx=1e-10, n=1, args=(0,2,20), order=3),
- print 'ts', locscale_grad(1.5, 0, 2, ts_dlldy, 20)
- print misc.derivative(llt, 1.5, dx=1e-10, n=1, args=(1,2,20), order=3),
- print 'ts', locscale_grad(1.5, 1, 2, ts_dlldy, 20)
- print misc.derivative(lltloc, 1, dx=1e-10, n=1, args=(1.5,2,20), order=3),
- print misc.derivative(lltscale, 2, dx=1e-10, n=1, args=(1.5,1,20), order=3)
- y,loc,scale,df = 1.5, 1, 2, 20
- print 'ts', locscale_grad(y,loc,scale, ts_dlldy, 20)
- print misc.derivative(lltloc, loc, dx=1e-10, n=1, args=(y,scale,df), order=3),
- print misc.derivative(lltscale, scale, dx=1e-10, n=1, args=(y,loc,df), order=3)
-
- print '\ngradient of norm'
- print misc.derivative(llnorm, 1, dx=1e-6, n=1, args=(0,1), order=3)
- print locscale_grad(1, 0, 1, norm_dlldy)
- y,loc,scale = 1.5, 1, 2
- print 'ts', locscale_grad(y,loc,scale, norm_dlldy)
- print misc.derivative(llnormloc, loc, dx=1e-10, n=1, args=(y,scale), order=3),
- print misc.derivative(llnormscale, scale, dx=1e-10, n=1, args=(y,loc), order=3)
- y,loc,scale = 1.5, 0, 1
- print 'ts', locscale_grad(y,loc,scale, norm_dlldy)
- print misc.derivative(llnormloc, loc, dx=1e-10, n=1, args=(y,scale), order=3),
- print misc.derivative(llnormscale, scale, dx=1e-10, n=1, args=(y,loc), order=3)
- #print 'still something wrong with handling of scale and variance'
- #looks ok now
- print '\nloglike of t'
- print tstd_lls(1, np.array([0,1]), 100), llt(1,0,1,100), 'differently standardized'
- print tstd_lls(1, np.array([0,1]), 10), llt(1,0,1,10), 'differently standardized'
- print ts_lls(1, np.array([0,1]), 10), llt(1,0,1,10)
- print tstd_lls(1, np.array([0,1.*10./8.]), 10), llt(1.,0,1.,10)
- print ts_lls(1, np.array([0,1]), 100), llt(1,0,1,100)
-
- print tstd_lls(1, np.array([0,1]), 10), llt(1,0,1.*np.sqrt(8/10.),10)
-
-
- from numpy.testing import assert_almost_equal
- params =[(0, 1), (1.,1.), (0.,2.), ( 1., 2.)]
- yt = np.linspace(-2.,2.,11)
- for loc,scale in params:
- dlldlo = misc.derivative(llnormloc, loc, dx=1e-10, n=1, args=(yt,scale), order=3)
- dlldsc = misc.derivative(llnormscale, scale, dx=1e-10, n=1, args=(yt,loc), order=3)
- gr = locscale_grad(yt, loc, scale, norm_dlldy)
- assert_almost_equal(dlldlo, gr[0], 5, err_msg='deriv loc')
- assert_almost_equal(dlldsc, gr[1], 5, err_msg='deriv scale')
- for df in [3, 10, 100]:
- for loc,scale in params:
- dlldlo = misc.derivative(lltloc, loc, dx=1e-10, n=1, args=(yt,scale,df), order=3)
- dlldsc = misc.derivative(lltscale, scale, dx=1e-10, n=1, args=(yt,loc,df), order=3)
- gr = locscale_grad(yt, loc, scale, ts_dlldy, df)
- assert_almost_equal(dlldlo, gr[0], 4, err_msg='deriv loc')
- assert_almost_equal(dlldsc, gr[1], 4, err_msg='deriv scale')
- assert_almost_equal(ts_lls(yt, np.array([loc, scale**2]), df),
- llt(yt,loc,scale,df), 5,
- err_msg='loglike')
- assert_almost_equal(tstd_lls(yt, np.array([loc, scale**2]), df),
- llt(yt,loc,scale*np.sqrt((df-2.)/df),df), 5,
- err_msg='loglike')
-
-
-
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/treewalkerclass.py b/statsmodels/scikits/statsmodels/sandbox/regression/treewalkerclass.py
deleted file mode 100644
index b610b3d..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/treewalkerclass.py
+++ /dev/null
@@ -1,616 +0,0 @@
-'''
-
-Formulas
---------
-
-This follows mostly Greene notation (in slides)
-partially ignoring factors tau or mu for now, ADDED
-(if all tau==1, then runmnl==clogit)
-
-leaf k probability :
-
-Prob(k|j) = exp(b_k * X_k / mu_j)/ sum_{i in L(j)} (exp(b_i * X_i / mu_j)
-
-branch j probabilities :
-
-Prob(j) = exp(b_j * X_j + mu*IV_j )/ sum_{i in NB(j)} (exp(b_i * X_i + mu_i*IV_i)
-
-inclusive value of branch j :
-
-IV_j = log( sum_{i in L(j)} (exp(b_i * X_i / mu_j) )
-
-this is the log of the denominator of the leaf probabilities
-
-L(j) : leaves at branch j, where k is child of j
-NB(j) : set of j and it's siblings
-
-Design
-------
-
-* splitting calculation transmission between returns and changes to
- instance.probs
- - probability for each leaf is in instance.probs
- - inclusive values and contribution of exog on branch level need to be
- added separately. handed up the tree through returns
-* question: should params array be accessed directly through
- `self.recursionparams[self.parinddict[name]]` or should the dictionary
- return the values of the params, e.g. `self.params_node_dict[name]`.
- The second would be easier for fixing tau=1 for degenerate branches.
- The easiest might be to do the latter only for the taus and default to 1 if
- the key ('tau_'+branchname) is not found. I also need to exclude tau for
- degenerate branches from params, but then I cannot change them from the
- outside for testing and experimentation. (?)
-* SAS manual describes restrictions on tau (though their model is a bit
- different), e.g. equal tau across sibling branches, fixed tau. The also
- allow linear and non-linear (? not sure) restriction on params, the
- regression coefficients. Related to previous issue, callback without access
- to the underlying array, where params_node_dict returns the actual params
- value would provide more flexibility to impose different kinds of restrictions.
-
-
-
-bugs/problems
--------------
-
-* singleton branches return zero to `top`, not a value
- I'm not sure what they are supposed to return, given the split between returns
- and instance.probs DONE
-* Why does 'Air' (singleton branch) get probability exactly 0.5 ? DONE
-
-TODO
-----
-* add tau, normalization for nested logit, currently tau is 1 (clogit)
- taus also needs to become part of params MOSTLY DONE
-* add effect of branch level explanatory variables DONE
-* write a generic multinomial logit that takes arbitrary probabilities, this
- would be the same for MNL, clogit and runmnl,
- delegate calculation of probabilities
-* test on actual data,
- - tau=1 replicate clogit numbers,
- - transport example from Greene tests 1-level tree and degenerate sub-trees
- - test example for multi-level trees ???
-* starting values: Greene mentiones that the starting values for the nested
- version come from the (non-nested) MNL version. SPSS uses constant equal
- (? check transformation) to sample frequencies and zeros for slope
- coefficient as starting values for (non-nested) MNL
-* associated test statistics
- - (I don't think I will fight with the gradient or hessian of the log-like.)
- - basic MLE statistics can be generic
- - tests specific to the model (?)
-* nice printouts since I'm currently collecting a lot of information in the tree
- recursion and everything has names
-
-The only parts that are really necessary to get a functional nested logit are
-adding the taus (DONE) and the MLE wrapper class. The rest are enhancements.
-
-I added fake tau, one fixed tau for all branches. (OBSOLETE)
-It's not clear where the tau for leaf should be added either at
-original assignment of self.probs, or as part of the one-step-down
-probability correction in the bottom branches. The second would be
-cleaner (would make treatment of leaves and branches more symmetric,
-but requires that initial assignment in the leaf only does
-initialization. e.g self.probs = 1. ???
-
-DONE added taus
-
-still todo:
-- tau for degenerate branches are not identified, set to 1 for MLE
-- rename parinddict to paramsinddict
-
-
-Author: Josef Perktold
-License : BSD (3-clause)
-'''
-
-import numpy as np
-from pprint import pprint
-
-def randintw(w, size=1):
- '''generate integer random variables given probabilties
-
- useful because it can be used as index into any array or sequence type
-
- Parameters
- ----------
- w : 1d array_like
- sequence of weights, probabilites. The weights are normalized to add
- to one.
- size : int or tuple of ints
- shape of output array
-
- Returns
- -------
- rvs : array of shape given by size
- random variables each distributed according to the same discrete
- distribution defined by (normalized) w.
-
- Examples
- --------
- >>> np.random.seed(0)
- >>> randintw([0.4, 0.4, 0.2], size=(2,6))
- array([[1, 1, 1, 1, 1, 1],
- [1, 2, 2, 0, 1, 1]])
-
- >>> np.bincount(randintw([0.6, 0.4, 0.0], size=3000))/3000.
- array([ 0.59566667, 0.40433333])
-
- '''
- #from Charles Harris, numpy mailing list
- from numpy.random import random
- p = np.cumsum(w)/np.sum(w)
- rvs = p.searchsorted(random(np.prod(size))).reshape(size)
- return rvs
-
-def getbranches(tree):
- '''
- walk tree to get list of branches
-
- Parameters
- ----------
- tree : list of tuples
- tree as defined for RU2NMNL
-
- Returns
- -------
- branch : list
- list of all branch names
-
- '''
- if type(tree) == tuple:
- name, subtree = tree
- a = [name]
- for st in subtree:
- a.extend(getbranches(st))
- return a
- return []
-
-def getnodes(tree):
- '''
- walk tree to get list of branches and list of leaves
-
- Parameters
- ----------
- tree : list of tuples
- tree as defined for RU2NMNL
-
- Returns
- -------
- branch : list
- list of all branch names
- leaves : list
- list of all leaves names
-
- '''
- if type(tree) == tuple:
- name, subtree = tree
- ab = [name]
- al = []
- #degenerate branches
- if len(subtree) == 1:
- adeg = [name]
- else:
- adeg = []
-
- for st in subtree:
- b, l, d = getnodes(st)
- ab.extend(b)
- al.extend(l)
- adeg.extend(d)
- return ab, al, adeg
- return [], [tree], []
-
-
-testxb = 2 #global to class to return strings instead of numbers
-
-class RU2NMNL(object):
- '''Nested Multinomial Logit with Random Utility 2 parameterization
-
-
- Parameters
- ----------
- endog : array
- not used in this part
- exog : dict_like
- dictionary access to data where keys correspond to branch and leaf
- names. The values are the data arrays for the exog in that node.
- tree : nested tuples and lists
- each branch, tree or subtree, is defined by a tuple
- (branch_name, [subtree1, subtree2, ..., subtreek])
- Bottom branches have as subtrees the list of leaf names.
- paramsind : dictionary
- dictionary that maps branch and leaf names to the names of parameters,
- the coefficients for exogs)
-
- Methods
- -------
- get_probs
-
- Attributes
- ----------
- branches
- leaves
- paramsnames
- parinddict
-
- Notes
- -----
- endog needs to be encoded so it is consistent with self.leaves, which
- defines the columns for the probability array. The ordering in leaves is
- determined by the ordering of the tree.
- In the dummy encoding of endog, the columns of endog need to have the
- same order as self.leaves. In the integer encoding, the integer for a
- choice has to correspond to the index in self.leaves.
- (This could be made more robust, by handling the endog encoding internally
- by leaf names, if endog is defined as categorical variable with
- associated category level names.)
-
- '''
-
- def __init__(self, endog, exog, tree, paramsind):
- self.endog = endog
- self.datadict = exog
- self.tree = tree
- self.paramsind = paramsind
-
- self.branchsum = ''
- self.probs = {}
- self.probstxt = {}
- self.branchleaves = {}
- self.branchvalues = {} #just to keep track of returns by branches
- self.branchsums = {}
- self.bprobs = {}
- self.branches, self.leaves, self.branches_degenerate = getnodes(tree)
- self.nbranches = len(self.branches)
-
- #copied over but not quite sure yet
- #unique, parameter array names,
- #sorted alphabetically, order is/should be only internal
- self.paramsnames = (sorted(set([i for j in paramsind.values()
- for i in j])) +
- ['tau_%s' % bname for bname in self.branches])
-
- self.nparams = len(self.paramsnames)
-
- #mapping coefficient names to indices to unique/parameter array
- self.paramsidx = dict((name, idx) for (idx,name) in
- enumerate(self.paramsnames))
-
- #mapping branch and leaf names to index in parameter array
- self.parinddict = dict((k, [self.paramsidx[j] for j in v])
- for k,v in self.paramsind.items())
-
- self.recursionparams = 1. + np.arange(len(self.paramsnames))
- #for testing that individual parameters are used in the right place
- self.recursionparams = np.zeros(len(self.paramsnames))
- #self.recursionparams[2] = 1
- self.recursionparams[-self.nbranches:] = 1 #values for tau's
- #self.recursionparams[-2] = 2
-
-
- def get_probs(self, params):
- '''
- obtain the probability array given an array of parameters
-
- This is the function that can be called by loglike or other methods
- that need the probabilities as function of the params.
-
- Parameters
- ----------
- params : 1d array, (nparams,)
- coefficients and tau that parameterize the model. The required
- length can be obtained by nparams. (and will depend on the number
- of degenerate leaves - not yet)
-
- Returns
- -------
- probs : array, (nobs, nchoices)
- probabilites for all choices for each observation. The order
- is available by attribute leaves. See note in docstring of class
-
-
-
- '''
- self.recursionparams = params
- self.calc_prob(self.tree)
- probs_array = np.array([self.probs[leaf] for leaf in self.leaves])
- return probs_array
- #what's the ordering? Should be the same as sequence in tree.
- #TODO: need a check/assert that this sequence is the same as the
- # encoding in endog
-
-
- def calc_prob(self, tree, parent=None):
- '''walking a tree bottom-up based on dictionary
- '''
-
- #0.5#2 #placeholder for now
- #should be tau=self.taus[name] but as part of params for optimization
- endog = self.endog
- datadict = self.datadict
- paramsind = self.paramsind
- branchsum = self.branchsum
-
-
- if type(tree) == tuple: #assumes leaves are int for choice index
-
- name, subtree = tree
- self.branchleaves[name] = [] #register branch in dictionary
-
- tau = self.recursionparams[self.paramsidx['tau_'+name]]
- if DEBUG:
- print '----------- starting next branch-----------'
- print name, datadict[name], 'tau=', tau
- print 'subtree', subtree
- branchvalue = []
- if testxb == 2:
- branchsum = 0
- elif testxb == 1:
- branchsum = datadict[name]
- else:
- branchsum = name
- for b in subtree:
- if DEBUG:
- print b
- bv = self.calc_prob(b, name)
- bv = np.exp(bv/tau) #this shouldn't be here, when adding branch data
- branchvalue.append(bv)
- branchsum = branchsum + bv
- self.branchvalues[name] = branchvalue #keep track what was returned
-
- if DEBUG:
- print '----------- returning to branch-----------',
- print name
- print 'branchsum in branch', name, branchsum
-
- if parent:
- if DEBUG:
- print 'parent', parent
- self.branchleaves[parent].extend(self.branchleaves[name])
- if 0: #not name == 'top': # not used anymore !!! ???
- #if not name == 'top':
- #TODO: do I need this only on the lowest branches ?
- tmpsum = 0
- for k in self.branchleaves[name]:
- #similar to this is now also in return branch values
- #depends on what will be returned
- tmpsum += self.probs[k]
- iv = np.log(tmpsum)
-
- for k in self.branchleaves[name]:
- self.probstxt[k] = self.probstxt[k] + ['*' + name + '-prob' +
- '(%s)' % ', '.join(self.paramsind[name])]
-
- #TODO: does this use the denominator twice now
- self.probs[k] = self.probs[k] / tmpsum
- if np.size(self.datadict[name])>0:
- #not used yet, might have to move one indentation level
- #self.probs[k] = self.probs[k] / tmpsum
-## np.exp(-self.datadict[name] *
-## np.sum(self.recursionparams[self.parinddict[name]]))
- if DEBUG:
- print 'self.datadict[name], self.probs[k]',
- print self.datadict[name], self.probs[k]
- #if not name == 'top':
- # self.probs[k] = self.probs[k] * np.exp( iv)
-
- #walk one level down again to add branch probs to instance.probs
- self.bprobs[name] = []
- for bidx, b in enumerate(subtree):
- if DEBUG:
- print 'repr(b)', repr(b), bidx
- #if len(b) == 1: #TODO: skip leaves, check this
- if not type(b) == tuple: # isinstance(b, str):
- #TODO: replace this with a check for branch (tuple) instead
- #this implies name is a bottom branch,
- #possible to add special things here
- self.bprobs[name].append(self.probs[b])
- #TODO: need tau possibly here
- self.probs[b] = self.probs[b] / branchsum
- if DEBUG:
- print '*********** branchsum at bottom branch', branchsum
- #self.bprobs[name].append(self.probs[b])
- else:
- bname = b[0]
- branchsum2 = sum(self.branchvalues[name])
- assert np.abs(branchsum - branchsum2).sum() < 1e-8
- bprob = branchvalue[bidx]/branchsum
- self.bprobs[name].append(bprob)
-
- for k in self.branchleaves[bname]:
-
- if DEBUG:
- print 'branchprob', bname, k, bprob, branchsum
- #temporary hack with maximum to avoid zeros
- self.probs[k] = self.probs[k] * np.maximum(bprob, 1e-4)
-
-
- if DEBUG:
- print 'working on branch', tree, branchsum
- if testxb<2:
- return branchsum
- else: #this is the relevant part
- self.branchsums[name] = branchsum
- if np.size(self.datadict[name])>0:
- branchxb = np.sum(self.datadict[name] *
- self.recursionparams[self.parinddict[name]])
- else:
- branchxb = 0
- if not name=='top':
- tau = self.recursionparams[self.paramsidx['tau_'+name]]
- else:
- tau = 1
- iv = branchxb + tau * branchsum #which tau: name or parent???
- return branchxb + tau * np.log(branchsum) #iv
- #branchsum is now IV, TODO: add effect of branch variables
-
- else:
- tau = self.recursionparams[self.paramsidx['tau_'+parent]]
- if DEBUG:
- print 'parent', parent
- self.branchleaves[parent].append(tree) # register leave with parent
- self.probstxt[tree] = [tree + '-prob' +
- '(%s)' % ', '.join(self.paramsind[tree])]
- #this is not yet a prob, not normalized to 1, it is exp(x*b)
- leafprob = np.exp(np.sum(self.datadict[tree] *
- self.recursionparams[self.parinddict[tree]])
- / tau) # fake tau for now, wrong spot ???
- #it seems I get the same answer with and without tau here
- self.probs[tree] = leafprob #= 1 #try initialization only
- #TODO: where should I add tau in the leaves
-
- if testxb == 2:
- return np.log(leafprob)
- elif testxb == 1:
- leavessum = np.array(datadict[tree]) # sum((datadict[bi] for bi in datadict[tree]))
- if DEBUG:
- print 'final branch with', tree, ''.join(tree), leavessum #sum(tree)
- return leavessum #sum(xb[tree])
- elif testxb == 0:
- return ''.join(tree) #sum(tree)
-
-
-
-if __name__ == '__main__':
- DEBUG = 0
-
- endog = 5 # dummy place holder
-
-
- ############## Example similar to Greene
-
- #get pickled data
- #endog3, xifloat3 = pickle.load(open('xifloat2.pickle','rb'))
-
-
- tree0 = ('top',
- [('Fly',['Air']),
- ('Ground', ['Train', 'Car', 'Bus'])
- ]
- )
-
- ''' this is with real data from Greene's clogit example
- datadict = dict(zip(['Air', 'Train', 'Bus', 'Car'],
- [xifloat[i]for i in range(4)]))
- '''
-
- #for testing only (mock that returns it's own name
- datadict = dict(zip(['Air', 'Train', 'Bus', 'Car'],
- ['Airdata', 'Traindata', 'Busdata', 'Cardata']))
-
- if testxb:
- datadict = dict(zip(['Air', 'Train', 'Bus', 'Car'],
- np.arange(4)))
-
- datadict.update({'top' : [],
- 'Fly' : [],
- 'Ground': []})
-
- paramsind = {'top' : [],
- 'Fly' : [],
- 'Ground': [],
- 'Air' : ['GC', 'Ttme', 'ConstA', 'Hinc'],
- 'Train' : ['GC', 'Ttme', 'ConstT'],
- 'Bus' : ['GC', 'Ttme', 'ConstB'],
- 'Car' : ['GC', 'Ttme']
- }
-
- modru = RU2NMNL(endog, datadict, tree0, paramsind)
- modru.recursionparams[-1] = 2
- modru.recursionparams[1] = 1
-
- print 'Example 1'
- print '---------\n'
- print modru.calc_prob(modru.tree)
-
- print 'Tree'
- pprint(modru.tree)
- print '\nmodru.probs'
- pprint(modru.probs)
-
-
-
- ############## example with many layers
-
- tree2 = ('top',
- [('B1',['a','b']),
- ('B2',
- [('B21',['c', 'd']),
- ('B22',['e', 'f', 'g'])
- ]
- ),
- ('B3',['h'])
- ]
- )
-
- #Note: dict looses ordering
- paramsind2 = {
- 'B1': [],
- 'a': ['consta', 'p'],
- 'b': ['constb', 'p'],
- 'B2': ['const2', 'x2'],
- 'B21': [],
- 'c': ['constc', 'p', 'time'],
- 'd': ['constd', 'p', 'time'],
- 'B22': ['x22'],
- 'e': ['conste', 'p', 'hince'],
- 'f': ['constf', 'p', 'hincf'],
- 'g': [ 'p', 'hincg'],
- 'B3': [],
- 'h': ['consth', 'p', 'h'],
- 'top': []}
-
- datadict2 = dict([i for i in zip('abcdefgh',range(8))])
- datadict2.update({'top':1000, 'B1':100, 'B2':200, 'B21':21,'B22':22, 'B3':300})
- '''
- >>> pprint(datadict2)
- {'B1': 100,
- 'B2': 200,
- 'B21': 21,
- 'B22': 22,
- 'B3': 300,
- 'a': 0.5,
- 'b': 1,
- 'c': 2,
- 'd': 3,
- 'e': 4,
- 'f': 5,
- 'g': 6,
- 'h': 7,
- 'top': 1000}
- '''
-
-
- modru2 = RU2NMNL(endog, datadict2, tree2, paramsind2)
- modru2.recursionparams[-3] = 2
- modru2.recursionparams[3] = 1
- print '\n\nExample 2'
- print '---------\n'
- print modru2.calc_prob(modru2.tree)
- print 'Tree'
- pprint(modru2.tree)
- print '\nmodru.probs'
- pprint(modru2.probs)
-
- print 'sum of probs', sum(modru2.probs.values())
- print 'branchvalues'
- print modru2.branchvalues
- print modru.branchvalues
-
- print 'branch probabilities'
- print modru.bprobs
-
- print 'degenerate branches'
- print modru.branches_degenerate
-
- '''
- >>> modru.bprobs
- {'Fly': [], 'top': [0.0016714179077931082, 0.99832858209220687], 'Ground': []}
- >>> modru2.bprobs
- {'top': [0.25000000000000006, 0.62499999999999989, 0.12500000000000003], 'B22': [], 'B21': [], 'B1': [], 'B2': [0.40000000000000008, 0.59999999999999998], 'B3': []}
- '''
-
- params1 = np.array([ 0., 1., 0., 0., 0., 0., 1., 1., 2.])
- print modru.get_probs(params1)
- params2 = np.array([ 0., 0., 0., 1., 0., 0., 0., 0., 0., 0., 0.,
- 0., 0., 0., 0., 0., 1., 1., 1., 2., 1., 1.])
- print modru2.get_probs(params2) #raises IndexError
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/try_catdata.py b/statsmodels/scikits/statsmodels/sandbox/regression/try_catdata.py
deleted file mode 100644
index 00c5b7c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/try_catdata.py
+++ /dev/null
@@ -1,132 +0,0 @@
-
-import numpy as np
-#from numpy import linalg as npla
-from scipy import stats, optimize
-
-'''
-Working with categorical data
-=============================
-
-use of dummy variables, group statistics, within and between statistics
-examples for efficient matrix algebra
-
-dummy versions require that the number of unique groups or categories is not too large
-group statistics with scipy.ndimage can handle large number of observations and groups
-scipy.ndimage stats is missing count
-
-new: np.bincount can also be used for calculating values per label
-'''
-
-from scipy import ndimage
-
-#problem: ndimage does not allow axis argument,
-# calculates mean or var corresponding to axis=None in np.mean, np.var
-# useless for multivariate application
-
-def labelmeanfilter(y, x):
- # requires integer labels
- # from mailing list scipy-user 2009-02-11
- labelsunique = np.arange(np.max(y)+1)
- labelmeans = np.array(ndimage.mean(x, labels=y, index=labelsunique))
- # returns label means for each original observation
- return labelmeans[y]
-
-#groupcount: i.e. number of observation by group/label
-#np.array(ndimage.histogram(yrvs[:,0],0,10,1,labels=yrvs[:,0],index=np.unique(yrvs[:,0])))
-
-def labelmeanfilter_nd(y, x):
- # requires integer labels
- # from mailing list scipy-user 2009-02-11
- # adjusted for 2d x with column variables
-
- labelsunique = np.arange(np.max(y)+1)
- labmeansdata = []
- labmeans = []
-
- for xx in x.T:
- labelmeans = np.array(ndimage.mean(xx, labels=y, index=labelsunique))
- labmeansdata.append(labelmeans[y])
- labmeans.append(labelmeans)
- # group count:
- labelcount = np.array(ndimage.histogram(y, labelsunique[0], labelsunique[-1]+1,
- 1, labels=y, index=labelsunique))
-
- # returns array of lable/group counts and of label/group means
- # and label/group means for each original observation
- return labelcount, np.array(labmeans), np.array(labmeansdata).T
-
-def labelmeanfilter_str(ys, x):
- # works also for string labels in ys, but requires 1D
- # from mailing list scipy-user 2009-02-11
- unil, unilinv = np.unique1d(ys, return_index=False, return_inverse=True)
- labelmeans = np.array(ndimage.mean(x, labels=unilinv, index=np.arange(np.max(unil)+1)))
- arr3 = labelmeans[unilinv]
- return arr3
-
-def groupstatsbin(factors, values):
- '''uses np.bincount, assumes factors/labels are integers
- '''
- n = len(factors)
- ix,rind = np.unique1d(factors, return_inverse=1)
- gcount = np.bincount(rind)
- gmean = np.bincount(rind, weights=values)/ (1.0*gcount)
- meanarr = gmean[rind]
- withinvar = np.bincount(rind, weights=(values-meanarr)**2) / (1.0*gcount)
- withinvararr = withinvar[rind]
- return gcount, gmean , meanarr, withinvar, withinvararr
-
-
-def convertlabels(ys, indices=None):
- '''convert labels based on multiple variables or string labels to unique
- index labels 0,1,2,...,nk-1 where nk is the number of distinct labels
- '''
- if indices == None:
- ylabel = ys
- else:
- idx = np.array(indices)
- if idx.size > 1 and ys.ndim == 2:
- ylabel = np.array(['@%s@'%ii[:2].tostring() for ii in ys])[:,np.newaxis]
- #alternative
- ## if ys[:,idx].dtype.kind == 'S':
- ## ylabel = nd.array([' '.join(ii[:2]) for ii in ys])[:,np.newaxis]
- else:
- # there might be a problem here
- ylabel = ys
-
- unil, unilinv = np.unique1d(ylabel, return_index=False, return_inverse=True)
- return unilinv, np.arange(len(unil)), unil
-
-def groupsstats_1d(y, x, labelsunique):
- '''use ndimage to get fast mean and variance'''
- labelmeans = np.array(ndimage.mean(x, labels=y, index=labelsunique))
- labelvars = np.array(ndimage.var(x, labels=y, index=labelsunique))
- return labelmeans, labelvars
-
-def cat2dummy(y, nonseq=0):
- if nonseq or (y.ndim == 2 and y.shape[1] > 1):
- ycat, uniques, unitransl = convertlabels(y, range(y.shape[1]))
- else:
- ycat = y.copy()
- ymin = y.min()
- uniques = np.arange(ymin,y.max()+1)
- if ycat.ndim == 1:
- ycat = ycat[:,np.newaxis]
- # this builds matrix nobs*ncat
- dummy = (ycat == uniques).astype(int)
- return dummy
-
-def groupsstats_dummy(y, x, nonseq=0):
- if x.ndim == 1:
- # use groupsstats_1d
- x = x[:,np.newaxis]
- dummy = cat2dummy(y, nonseq=nonseq)
- countgr = dummy.sum(0, dtype=float)
- meangr = np.dot(x.T,dummy)/countgr
- meandata = np.dot(dummy,meangr.T) # category/group means as array in shape of x
- xdevmeangr = x - meandata # deviation from category/group mean
- vargr = np.dot((xdevmeangr * xdevmeangr).T, dummy) / countgr
- return meangr, vargr, xdevmeangr, countgr
-
-
-if __name__ == '__main__':
- pass
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/try_ols_anova.py b/statsmodels/scikits/statsmodels/sandbox/regression/try_ols_anova.py
deleted file mode 100644
index 129d9dc..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/try_ols_anova.py
+++ /dev/null
@@ -1,287 +0,0 @@
-''' convenience functions for ANOVA type analysis with OLS
-
-Note: statistical results of ANOVA are not checked, OLS is
-checked but not whether the reported results are the ones used
-in ANOVA
-
-includes form2design for creating dummy variables
-
-TODO:
- * ...
- *
-
-'''
-
-
-import numpy as np
-#from scipy import stats
-import scikits.statsmodels.api as sm
-
-def data2dummy(x, returnall=False):
- '''convert array of categories to dummy variables
- by default drops dummy variable for last category
- uses ravel, 1d only'''
- x = x.ravel()
- groups = np.unique(x)
- if returnall:
- return (x[:, None] == groups).astype(int)
- else:
- return (x[:, None] == groups).astype(int)[:,:-1]
-
-def data2proddummy(x):
- '''creates product dummy variables from 2 columns of 2d array
-
- drops last dummy variable, but not from each category
- singular with simple dummy variable but not with constant
-
- quickly written, no safeguards
-
- '''
- #brute force, assumes x is 2d
- #replace with encoding if possible
- groups = np.unique(map(tuple, x.tolist()))
- #includes singularity with additive factors
- return (x==groups[:,None,:]).all(-1).T.astype(int)[:,:-1]
-
-def data2groupcont(x1,x2):
- '''create dummy continuous variable
-
- Parameters
- ----------
- x1 : 1d array
- label or group array
- x2 : 1d array (float)
- continuous variable
-
- Notes
- -----
- useful for group specific slope coefficients in regression
- '''
- if x2.ndim == 1:
- x2 = x2[:,None]
- dummy = data2dummy(x1, returnall=True)
- return dummy * x2
-
-# Result strings
-#the second leaves the constant in, not with NIST regression
-#but something fishy with res.ess negative in examples ?
-#not checked if these are all the right ones
-
-anova_str0 = '''
-ANOVA statistics (model sum of squares excludes constant)
-Source DF Sum Squares Mean Square F Value Pr > F
-Model %(df_model)i %(ess)f %(mse_model)f %(fvalue)f %(f_pvalue)f
-Error %(df_resid)i %(ssr)f %(mse_resid)f
-CTotal %(nobs)i %(uncentered_tss)f %(mse_total)f
-
-R squared %(rsquared)f
-'''
-
-anova_str = '''
-ANOVA statistics (model sum of squares includes constant)
-Source DF Sum Squares Mean Square F Value Pr > F
-Model %(df_model)i %(ssmwithmean)f %(mse_model)f %(fvalue)f %(f_pvalue)f
-Error %(df_resid)i %(ssr)f %(mse_resid)f
-CTotal %(nobs)i %(uncentered_tss)f %(mse_total)f
-
-R squared %(rsquared)f
-'''
-
-
-def anovadict(res):
- '''update regression results dictionary with ANOVA specific statistics
-
- not checked for completeness
- '''
- ad = {}
- ad.update(res.__dict__) #dict doesn't work with cached attributes
- anova_attr = ['df_model', 'df_resid', 'ess', 'ssr','uncentered_tss',
- 'mse_model', 'mse_resid', 'mse_total', 'fvalue', 'f_pvalue',
- 'rsquared']
- for key in anova_attr:
- ad[key] = getattr(res, key)
- ad['nobs'] = res.model.nobs
- ad['ssmwithmean'] = res.uncentered_tss - res.ssr
- return ad
-
-
-def form2design(ss, data):
- '''convert string formula to data dictionary
-
- ss : string
- * I : add constant
- * varname : for simple varnames data is used as is
- * F:varname : create dummy variables for factor varname
- * P:varname1*varname2 : create product dummy variables for
- varnames
- * G:varname1*varname2 : create product between factor and
- continuous variable
- data : dict or structured array
- data set, access of variables by name as in dictionaries
-
- Returns
- -------
- vars : dictionary
- dictionary of variables with converted dummy variables
- names : list
- list of names, product (P:) and grouped continuous
- variables (G:) have name by joining individual names
- sorted according to input
-
- Examples
- --------
- >>> xx, n = form2design('I a F:b P:c*d G:c*f', testdata)
- >>> xx.keys()
- ['a', 'b', 'const', 'cf', 'cd']
- >>> n
- ['const', 'a', 'b', 'cd', 'cf']
-
- Notes
- -----
-
- with sorted dict, separate name list wouldn't be necessary
- '''
- vars = {}
- names = []
- for item in ss.split():
- if item == 'I':
- vars['const'] = np.ones(data.shape[0])
- names.append('const')
- elif not ':' in item:
- vars[item] = data[item]
- names.append(item)
- elif item[:2] == 'F:':
- v = item.split(':')[1]
- vars[v] = data2dummy(data[v])
- names.append(v)
- elif item[:2] == 'P:':
- v = item.split(':')[1].split('*')
- vars[''.join(v)] = data2proddummy(np.c_[data[v[0]],data[v[1]]])
- names.append(''.join(v))
- elif item[:2] == 'G:':
- v = item.split(':')[1].split('*')
- vars[''.join(v)] = data2groupcont(data[v[0]], data[v[1]])
- names.append(''.join(v))
- else:
- raise ValueError('unknown expression in formula')
- return vars, names
-
-def dropname(ss, li):
- '''drop names from a list of strings,
- names to drop are in space delimeted list
- does not change original list
- '''
- newli = li[:]
- for item in ss.split():
- newli.remove(item)
- return newli
-
-if __name__ == '__main__':
-
- # Test Example with created data
- # ------------------------------
-
- nobs = 1000
- testdataint = np.random.randint(3, size=(nobs,4)).view([('a',int),('b',int),('c',int),('d',int)])
- testdatacont = np.random.normal( size=(nobs,2)).view([('e',float), ('f',float)])
- import numpy.lib.recfunctions
- dt2 = numpy.lib.recfunctions.zip_descr((testdataint, testdatacont),flatten=True)
- # concatenate structured arrays
- testdata = np.empty((nobs,1), dt2)
- for name in testdataint.dtype.names:
- testdata[name] = testdataint[name]
- for name in testdatacont.dtype.names:
- testdata[name] = testdatacont[name]
-
-
- #print form2design('a',testdata)
-
- if 0: # print only when nobs is small, e.g. nobs=10
- xx, n = form2design('F:a',testdata)
- print xx
- print form2design('P:a*b',testdata)
- print data2proddummy((np.c_[testdata['a'],testdata['b']]))
-
- xx, names = form2design('a F:b P:c*d',testdata)
-
- #xx, names = form2design('I a F:b F:c F:d P:c*d',testdata)
- xx, names = form2design('I a F:b P:c*d', testdata)
- xx, names = form2design('I a F:b P:c*d G:a*e f', testdata)
-
-
- X = np.column_stack([xx[nn] for nn in names])
- # simple test version: all coefficients equal to one
- y = X.sum(1) + 0.01*np.random.normal(size=(nobs))
- rest1 = sm.OLS(y,X).fit() #results
- print rest1.params
- print anova_str % anovadict(rest1)
-
-
- X = np.column_stack([xx[nn] for nn in dropname('ae f', names)])
- # simple test version: all coefficients equal to one
- y = X.sum(1) + 0.01*np.random.normal(size=(nobs))
- rest1 = sm.OLS(y,X).fit()
- print rest1.params
- print anova_str % anovadict(rest1)
-
-
- # Example: from Bruce
- # -------------------
-
- #get data and clean it
- #^^^^^^^^^^^^^^^^^^^^^
-
- # requires file 'dftest3.data' posted by Bruce
-
- # read data set and drop rows with missing data
- dt_b = np.dtype([('breed', int), ('sex', int), ('litter', int),
- ('pen', int), ('pig', int), ('age', float),
- ('bage', float), ('y', float)])
- dta = np.genfromtxt('dftest3.data', dt_b,missing='.', usemask=True)
- print 'missing', [dta.mask[k].sum() for k in dta.dtype.names]
- m = dta.mask.view(bool)
- droprows = m.reshape(-1,len(dta.dtype.names)).any(1)
- # get complete data as plain structured array
- # maybe doesn't work with masked arrays
- dta_use_b1 = dta[~droprows,:].data
- print dta_use_b1.shape
- print dta_use_b1.dtype
-
- #Example b1: variables from Bruce's glm
- #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
- # prepare data and dummy variables
- xx_b1, names_b1 = form2design('I F:sex age', dta_use_b1)
- # create design matrix
- X_b1 = np.column_stack([xx_b1[nn] for nn in dropname('', names_b1)])
- y_b1 = dta_use_b1['y']
- # estimate using OLS
- rest_b1 = sm.OLS(y_b1, X_b1).fit()
- # print results
- print rest_b1.params
- print anova_str % anovadict(rest_b1)
- #compare with original version only in original version
- #print anova_str % anovadict(res_b0)
-
- # Example: use all variables except pig identifier
- #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
- allexog = ' '.join(dta.dtype.names[:-1])
- #'breed sex litter pen pig age bage'
-
- xx_b1a, names_b1a = form2design('I F:breed F:sex F:litter F:pen age bage', dta_use_b1)
- X_b1a = np.column_stack([xx_b1a[nn] for nn in dropname('', names_b1a)])
- y_b1a = dta_use_b1['y']
- rest_b1a = sm.OLS(y_b1a, X_b1a).fit()
- print rest_b1a.params
- print anova_str % anovadict(rest_b1a)
-
- for dropn in names_b1a:
- print '\nResults dropping', dropn
- X_b1a_ = np.column_stack([xx_b1a[nn] for nn in dropname(dropn, names_b1a)])
- y_b1a_ = dta_use_b1['y']
- rest_b1a_ = sm.OLS(y_b1a_, X_b1a_).fit()
- #print rest_b1a_.params
- print anova_str % anovadict(rest_b1a_)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/regression/try_treewalker.py b/statsmodels/scikits/statsmodels/sandbox/regression/try_treewalker.py
deleted file mode 100644
index bcf4d67..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/regression/try_treewalker.py
+++ /dev/null
@@ -1,145 +0,0 @@
-'''Trying out tree structure for nested logit
-
-sum is standing for likelihood calculations
-
-should collect and aggregate likelihood contributions bottom up
-
-'''
-
-import numpy as np
-
-tree = [[0,1],[[2,3],[4,5,6]],[7]]
-#singleton/degenerate branch needs to be list
-
-xb = 2*np.arange(8)
-testxb = 1 #0
-
-def branch(tree):
- '''walking a tree bottom-up
- '''
-
- if not type(tree[0]) == int: #assumes leaves are int for choice index
- branchsum = 0
- for b in tree:
- branchsum += branch(b)
- else:
- print tree
- print 'final branch with', tree, sum(tree)
- if testxb:
- return sum(xb[tree])
- else:
- return sum(tree)
-
- print 'working on branch', tree, branchsum
- return branchsum
-
-print branch(tree)
-
-
-
-#new version that also keeps track of branch name and allows V_j for a branch
-# as in Greene, V_j + lamda * IV doesn't look the same as including the
-# explanatory variables in leaf X_j, V_j is linear in X, IV is logsumexp of X,
-
-
-testxb = 0#1#0
-def branch2(tree):
- '''walking a tree bottom-up based on dictionary
- '''
-
-
- if type(tree) == tuple: #assumes leaves are int for choice index
- name, subtree = tree
- print name, data2[name]
- print 'subtree', subtree
- if testxb:
- branchsum = data2[name]
- else:
- branchsum = name #0
- for b in subtree:
- #branchsum += branch2(b)
- branchsum = branchsum + branch2(b)
- else:
- leavessum = sum((data2[bi] for bi in tree))
- print 'final branch with', tree, ''.join(tree), leavessum #sum(tree)
- if testxb:
- return leavessum #sum(xb[tree])
- else:
- return ''.join(tree) #sum(tree)
-
- print 'working on branch', tree, branchsum
- return branchsum
-
-tree = [[0,1],[[2,3],[4,5,6]],[7]]
-tree2 = ('top',
- [('B1',['a','b']),
- ('B2',
- [('B21',['c', 'd']),
- ('B22',['e', 'f', 'g'])
- ]
- ),
- ('B3',['h'])
- ]
- )
-
-data2 = dict([i for i in zip('abcdefgh',range(8))])
-#data2.update({'top':1000, 'B1':100, 'B2':200, 'B21':300,'B22':400, 'B3':400})
-data2.update({'top':1000, 'B1':100, 'B2':200, 'B21':21,'B22':22, 'B3':300})
-
-#data2
-#{'a': 0, 'c': 2, 'b': 1, 'e': 4, 'd': 3, 'g': 6, 'f': 5, 'h': 7,
-#'top': 1000, 'B22': 22, 'B21': 21, 'B1': 100, 'B2': 200, 'B3': 300}
-
-print '\n tree with dictionary data'
-print branch2(tree2) # results look correct for testxb=0 and 1
-
-
-#parameters/coefficients map coefficient names to indices, list of indices into
-#a 1d params one for each leave and branch
-
-#Note: dict looses ordering
-paramsind = {
- 'B1': [],
- 'a': ['consta', 'p'],
- 'b': ['constb', 'p'],
- 'B2': ['const2', 'x2'],
- 'B21': [],
- 'c': ['consta', 'p', 'time'],
- 'd': ['consta', 'p', 'time'],
- 'B22': ['x22'],
- 'e': ['conste', 'p', 'hince'],
- 'f': ['constt', 'p', 'hincf'],
- 'g': [ 'p', 'hincg'],
- 'B3': [],
- 'h': ['consth', 'p', 'h'],
- 'top': []}
-
-#unique, parameter array names,
-#sorted alphabetically, order is/should be only internal
-paramsnames = sorted(set([i for j in paramsind.values() for i in j]))
-
-#mapping coefficient names to indices to unique/parameter array
-paramsidx = dict((name, idx) for (idx,name) in enumerate(paramsnames))
-
-#mapping branch and leaf names to index in parameter array
-inddict = dict((k,[paramsidx[j] for j in v]) for k,v in paramsind.items())
-
-'''
->>> paramsnames
-['const2', 'consta', 'constb', 'conste', 'consth', 'constt', 'h', 'hince',
- 'hincf', 'hincg', 'p', 'time', 'x2', 'x22']
->>> parmasidx
-{'conste': 3, 'consta': 1, 'constb': 2, 'h': 6, 'time': 11, 'consth': 4,
- 'p': 10, 'constt': 5, 'const2': 0, 'x2': 12, 'x22': 13, 'hince': 7,
- 'hincg': 9, 'hincf': 8}
->>> inddict
-{'a': [1, 10], 'c': [1, 10, 11], 'b': [2, 10], 'e': [3, 10, 7],
- 'd': [1, 10, 11], 'g': [10, 9], 'f': [5, 10, 8], 'h': [4, 10, 6],
- 'top': [], 'B22': [13], 'B21': [], 'B1': [], 'B2': [0, 12], 'B3': []}
->>> paramsind
-{'a': ['consta', 'p'], 'c': ['consta', 'p', 'time'], 'b': ['constb', 'p'],
- 'e': ['conste', 'p', 'hince'], 'd': ['consta', 'p', 'time'],
- 'g': ['p', 'hincg'], 'f': ['constt', 'p', 'hincf'], 'h': ['consth', 'p', 'h'],
- 'top': [], 'B22': ['x22'], 'B21': [], 'B1': [], 'B2': ['const2', 'x2'],
- 'B3': []}
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/rls.py b/statsmodels/scikits/statsmodels/sandbox/rls.py
deleted file mode 100644
index 3e2b364..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/rls.py
+++ /dev/null
@@ -1,152 +0,0 @@
-"""Restricted least squares
-
-from pandas
-License: Simplified BSD
-"""
-
-import numpy as np
-from scikits.statsmodels.regression.linear_model import WLS, GLS, RegressionResults
-
-class RLS(GLS):
- """
- Restricted general least squares model that handles linear constraints
-
- Parameters
- ----------
- endog: array-like
- n length array containing the dependent variable
- exog: array-like
- n-by-p array of independent variables
- constr: array-like
- k-by-p array of linear constraints
- param (0.): array-like or scalar
- p-by-1 array (or scalar) of constraint parameters
- sigma (None): scalar or array-like
- The weighting matrix of the covariance. No scaling by default (OLS).
- If sigma is a scalar, then it is converted into an n-by-n diagonal
- matrix with sigma as each diagonal element.
- If sigma is an n-length array, then it is assumed to be a diagonal
- matrix with the given sigma on the diagonal (WLS).
-
- Notes
- -----
- endog = exog * beta + epsilon
- weights' * constr * beta = param
-
- See Greene and Seaks, "The Restricted Least Squares Estimator:
- A Pedagogical Note", The Review of Economics and Statistics, 1991.
- """
-
- def __init__(self, endog, exog, constr, param=0., sigma=None):
- N, Q = exog.shape
- constr = np.asarray(constr)
- if constr.ndim == 1:
- K, P = 1, constr.shape[0]
- else:
- K, P = constr.shape
- if Q != P:
- raise Exception('Constraints and design do not align')
- self.ncoeffs = Q
- self.nconstraint = K
- self.constraint = constr
- if np.isscalar(param) and K > 1:
- param = np.ones((K,)) * param
- self.param = param
- if sigma is None:
- sigma = 1.
- if np.isscalar(sigma):
- sigma = np.ones(N) * sigma
- sigma = np.squeeze(sigma)
- if sigma.ndim == 1:
- self.sigma = np.diag(sigma)
- self.cholsigmainv = np.diag(np.sqrt(sigma))
- else:
- self.sigma = sigma
- self.cholsigmainv = np.linalg.cholesky(np.linalg.pinv(self.sigma)).T
- super(GLS, self).__init__(endog, exog)
-
- _rwexog = None
- @property
- def rwexog(self):
- """Whitened exogenous variables augmented with restrictions"""
- if self._rwexog is None:
- P = self.ncoeffs
- K = self.nconstraint
- design = np.zeros((P + K, P + K))
- design[:P, :P] = np.dot(self.wexog.T, self.wexog) #top left
- constr = np.reshape(self.constraint, (K, P))
- design[:P, P:] = constr.T #top right partition
- design[P:, :P] = constr #bottom left partition
- design[P:, P:] = np.zeros((K, K)) #bottom right partition
- self._rwexog = design
- return self._rwexog
-
- _inv_rwexog = None
- @property
- def inv_rwexog(self):
- """Inverse of self.rwexog"""
- if self._inv_rwexog is None:
- self._inv_rwexog = np.linalg.inv(self.rwexog)
- return self._inv_rwexog
-
- _rwendog = None
- @property
- def rwendog(self):
- """Whitened endogenous variable augmented with restriction parameters"""
- if self._rwendog is None:
- P = self.ncoeffs
- K = self.nconstraint
- response = np.zeros((P + K,))
- response[:P] = np.dot(self.wexog.T, self.wendog)
- response[P:] = self.param
- self._rwendog = response
- return self._rwendog
-
- _ncp = None
- @property
- def rnorm_cov_params(self):
- """Parameter covariance under restrictions"""
- if self._ncp is None:
- P = self.ncoeffs
- self._ncp = self.inv_rwexog[:P, :P]
- return self._ncp
-
- _wncp = None
- @property
- def wrnorm_cov_params(self):
- """
- Heteroskedasticity-consistent parameter covariance
- Used to calculate White standard errors.
- """
- if self._wncp is None:
- df = self.df_resid
- pred = np.dot(self.wexog, self.coeffs)
- eps = np.diag((self.wendog - pred) ** 2)
- sigmaSq = np.sum(eps)
- pinvX = np.dot(self.rnorm_cov_params, self.wexog.T)
- self._wncp = np.dot(np.dot(pinvX, eps), pinvX.T) * df / sigmaSq
- return self._wncp
-
- _coeffs = None
- @property
- def coeffs(self):
- """Estimated parameters"""
- if self._coeffs is None:
- betaLambda = np.dot(self.inv_rwexog, self.rwendog)
- self._coeffs = betaLambda[:self.ncoeffs]
- return self._coeffs
-
- def fit(self):
- rncp = self.wrnorm_cov_params
- lfit = RegressionResults(self, self.coeffs, normalized_cov_params=rncp)
- return lfit
-
-if __name__=="__main__":
- import scikits.statsmodels.api as sm
- dta = np.genfromtxt('./rlsdata.txt', names=True)
- design = np.column_stack((dta['Y'],dta['Y']**2,dta[['NE','NC','W','S']].view(float).reshape(dta.shape[0],-1)))
- design = sm.add_constant(design, prepend=True)
- rls_mod = RLS(dta['G'],design, constr=[0,0,0,1,1,1,1])
- rls_fit = rls_mod.fit()
- print rls_fit.params
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/rlsdata.txt b/statsmodels/scikits/statsmodels/sandbox/rlsdata.txt
deleted file mode 100644
index 00691db..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/rlsdata.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-G Y NE NC S W
-1.62 1550 1 0 0 0
-2.09 3474 1 0 0 0
-2.96 4424 1 0 0 0
-3.5 5444 1 0 0 0
-4.94 6404 1 0 0 0
-6.14 7464 1 0 0 0
-6.43 8919 1 0 0 0
-7 10817 1 0 0 0
-8.24 13287 1 0 0 0
-9.16 17043 1 0 0 0
-10.87 21862 1 0 0 0
-12.17 33892 1 0 0 0
-1.81 1644 0 1 0 0
-2.96 3434 0 1 0 0
-3.81 4474 0 1 0 0
-4.75 5399 0 1 0 0
-5.84 6440 0 1 0 0
-6.38 7401 0 1 0 0
-7.28 8897 0 1 0 0
-8.51 10807 0 1 0 0
-8.44 13213 0 1 0 0
-10.68 17156 0 1 0 0
-10.93 22058 0 1 0 0
-12.76 33926 0 1 0 0
-2.17 1621 0 0 1 0
-3.89 3449 0 0 1 0
-5.09 4436 0 0 1 0
-5.08 5402 0 0 1 0
-6.03 6403 0 0 1 0
-6.73 7406 0 0 1 0
-7.86 8887 0 0 1 0
-9.32 10811 0 0 1 0
-9.4 13238 0 0 1 0
-10.48 16970 0 0 1 0
-11.12 21909 0 0 1 0
-11.81 37702 0 0 1 0
-2.12 1596 0 0 0 1
-3.93 3463 0 0 0 1
-5.02 4478 0 0 0 1
-6.49 5375 0 0 0 1
-5.5 6408 0 0 0 1
-6.67 7390 0 0 0 1
-7.29 8917 0 0 0 1
-8.92 10804 0 0 0 1
-9.52 13268 0 0 0 1
-10.4 17094 0 0 0 1
-11.41 21914 0 0 0 1
-11.61 36618 0 0 0 1
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/__init__.py b/statsmodels/scikits/statsmodels/sandbox/stats/__init__.py
deleted file mode 100644
index 72a6b33..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-'''temporary location for enhancements to scipy.stats
-
-includes
-^^^^^^^^
-
-* Per Brodtkorb's estimation enhancements to scipy.stats.distributions
- - distributions_per.py is copy of scipy.stats.distributions.py with changes
- - distributions_profile.py partially extracted classes and functions to
- separate code into more managable pieces
-* josef's extra distribution and helper functions
- - moment helpers
- - goodness of fit test
- - fitting distributions with some fixed parameters
- - find best distribution that fits data: working script
-* example and test folders to keep all together
-
-status
-^^^^^^
-
-mixed status : from not-working to well-tested
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/contrast_tools.py b/statsmodels/scikits/statsmodels/sandbox/stats/contrast_tools.py
deleted file mode 100644
index def71fd..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/contrast_tools.py
+++ /dev/null
@@ -1,964 +0,0 @@
-'''functions to work with contrasts for multiple tests
-
-contrast matrices for comparing all pairs, all levels to reference level, ...
-extension to 2-way groups in progress
-
-TwoWay: class for bringing two-way analysis together and try out
-various helper functions
-
-
-Idea for second part
-- get all transformation matrices to move in between different full rank
- parameterizations
-- standardize to one parameterization to get all interesting effects.
-
-- multivariate normal distribution
- - exploit or expand what we have in LikelihoodResults, cov_params, f_test,
- t_test, example: resols_dropf_full.cov_params(C2)
- - connect to new multiple comparison for contrast matrices, based on
- multivariate normal or t distribution (Hothorn, Bretz, Westfall)
-
-'''
-
-
-
-
-import numpy as np
-
-#next 3 functions copied from multicomp.py
-
-def contrast_allpairs(nm):
- '''contrast or restriction matrix for all pairs of nm variables
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm*(nm-1)/2, nm)
- contrast matrix for all pairwise comparisons
-
- '''
- contr = []
- for i in range(nm):
- for j in range(i+1, nm):
- contr_row = np.zeros(nm)
- contr_row[i] = 1
- contr_row[j] = -1
- contr.append(contr_row)
- return np.array(contr)
-
-def contrast_all_one(nm):
- '''contrast or restriction matrix for all against first comparison
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm-1, nm)
- contrast matrix for all against first comparisons
-
- '''
- contr = np.column_stack((np.ones(nm-1), -np.eye(nm-1)))
- return contr
-
-def contrast_diff_mean(nm):
- '''contrast or restriction matrix for all against mean comparison
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm-1, nm)
- contrast matrix for all against mean comparisons
-
- '''
- return np.eye(nm) - np.ones((nm,nm))/nm
-
-def signstr(x, noplus=False):
- if x in [-1,0,1]:
- if not noplus:
- return '+' if np.sign(x)>=0 else '-'
- else:
- return '' if np.sign(x)>=0 else '-'
- else:
- return str(x)
-
-
-def contrast_labels(contrasts, names, reverse=False):
- if reverse:
- sl = slice(None, None, -1)
- else:
- sl = slice(None)
- labels = [''.join(['%s%s' % (signstr(c, noplus=True),v)
- for c,v in zip(row, names)[sl] if c != 0])
- for row in contrasts]
- return labels
-
-def contrast_product(names1, names2, intgroup1=None, intgroup2=None, pairs=False):
- '''build contrast matrices for products of two categorical variables
-
- this is an experimental script and should be converted to a class
-
- Parameters
- ----------
- names1, names2 : lists of strings
- contains the list of level labels for each categorical variable
- intgroup1, intgroup2 : ndarrays TODO: this part not tested, finished yet
- categorical variable
-
-
- Notes
- -----
- This creates a full rank matrix. It does not do all pairwise comparisons,
- parameterization is using contrast_all_one to get differences with first
- level.
-
- ? does contrast_all_pairs work as a plugin to get all pairs ?
-
- '''
-
- n1 = len(names1)
- n2 = len(names2)
- names_prod = ['%s_%s' % (i,j) for i in names1 for j in names2]
- ee1 = np.zeros((1,n1))
- ee1[0,0] = 1
- if not pairs:
- dd = np.r_[ee1, -contrast_all_one(n1)]
- else:
- dd = np.r_[ee1, -contrast_allpairs(n1)]
-
- contrast_prod = np.kron(dd[1:], np.eye(n2))
- names_contrast_prod0 = contrast_labels(contrast_prod, names_prod, reverse=True)
- names_contrast_prod = [''.join(['%s%s' % (signstr(c, noplus=True),v)
- for c,v in zip(row, names_prod)[::-1] if c != 0])
- for row in contrast_prod]
-
- ee2 = np.zeros((1,n2))
- ee2[0,0] = 1
- #dd2 = np.r_[ee2, -contrast_all_one(n2)]
- if not pairs:
- dd2 = np.r_[ee2, -contrast_all_one(n2)]
- else:
- dd2 = np.r_[ee2, -contrast_allpairs(n2)]
-
- contrast_prod2 = np.kron(np.eye(n1), dd2[1:])
- names_contrast_prod2 = [''.join(['%s%s' % (signstr(c, noplus=True),v)
- for c,v in zip(row, names_prod)[::-1] if c != 0])
- for row in contrast_prod2]
-
- if (not intgroup1 is None) and (not intgroup1 is None):
- d1, _ = dummy_1d(intgroup1)
- d2, _ = dummy_1d(intgroup2)
- dummy = dummy_product(d1, d2)
- else:
- dummy = None
-
- return (names_prod, contrast_prod, names_contrast_prod,
- contrast_prod2, names_contrast_prod2, dummy)
-
-
-
-
-
-def dummy_1d(x, varname=None):
- '''dummy variable for id integer groups
-
- Paramters
- ---------
- x : ndarray, 1d
- categorical variable, requires integers if varname is None
- varname : string
- name of the variable used in labels for category levels
-
- Returns
- -------
- dummy : ndarray, 2d
- array of dummy variables, one column for each level of the
- category (full set)
- labels : list of strings
- labels for the columns, i.e. levels of each category
-
-
- Notes
- -----
- use tools.categorical instead for more more options
-
- See Also
- --------
- scikits.statsmodels.tools.categorical
-
- Examples
- --------
- >>> x = np.array(['F', 'F', 'M', 'M', 'F', 'F', 'M', 'M', 'F', 'F', 'M', 'M'],
- dtype='|S1')
- >>> dummy_1d(x, varname='gender')
- (array([[1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1]]), ['gender_F', 'gender_M'])
-
- '''
- if varname is None: #assumes integer
- labels = ['level_%d' % i for i in range(x.max() + 1)]
- return (x[:,None]==np.arange(x.max()+1)).astype(int), labels
- else:
- grouplabels = np.unique(x)
- labels = [varname + '_%s' % str(i) for i in grouplabels]
- return (x[:,None]==grouplabels).astype(int), labels
-
-
-def dummy_product(d1, d2, method='full'):
- '''dummy variable from product of two dummy variables
-
- Parameters
- ----------
- d1, d2 : ndarray
- two dummy variables, assumes full set for methods 'drop-last'
- and 'drop-first'
- method : {'full', 'drop-last', 'drop-first'}
- 'full' returns the full product, encoding of intersection of
- categories.
- The drop methods provide a difference dummy encoding:
- (constant, main effects, interaction effects). The first or last columns
- of the dummy variable (i.e. levels) are dropped to get full rank
- dummy matrix.
-
- Returns
- -------
- dummy : ndarray
- dummy variable for product, see method
-
- '''
-
- if method == 'full':
- dd = (d1[:,:,None]*d2[:,None,:]).reshape(d1.shape[0],-1)
- elif method == 'drop-last': #same as SAS transreg
- d12rl = dummy_product(d1[:,:-1], d2[:,:-1])
- dd = np.column_stack((np.ones(d1.shape[0], int), d1[:,:-1], d2[:,:-1],d12rl))
- #Note: dtype int should preserve dtype of d1 and d2
- elif method == 'drop-first':
- d12r = dummy_product(d1[:,1:], d2[:,1:])
- dd = np.column_stack((np.ones(d1.shape[0], int), d1[:,1:], d2[:,1:],d12r))
- else:
- raise ValueError('method not recognized')
-
- return dd
-
-def dummy_limits(d):
- '''start and endpoints of groups in a sorted dummy variable array
-
- helper function for nested categories
-
- Examples
- --------
- >>> d1 = np.array([[1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1]])
- >>> dummy_limits(d1)
- (array([0, 4, 8]), array([ 4, 8, 12]))
-
- get group slices from an array
-
- >>> [np.arange(d1.shape[0])[b:e] for b,e in zip(*dummy_limits(d1))]
- [array([0, 1, 2, 3]), array([4, 5, 6, 7]), array([ 8, 9, 10, 11])]
- >>> [np.arange(d1.shape[0])[b:e] for b,e in zip(*dummy_limits(d1))]
- [array([0, 1, 2, 3]), array([4, 5, 6, 7]), array([ 8, 9, 10, 11])]
- '''
- nobs, nvars = d.shape
- start1, col1 = np.nonzero(np.diff(d,axis=0)==1)
- end1, col1_ = np.nonzero(np.diff(d,axis=0)==-1)
- cc = np.arange(nvars)
- #print cc, np.r_[[0], col1], np.r_[col1_, [nvars-1]]
- if ((not (np.r_[[0], col1] == cc).all())
- or (not (np.r_[col1_, [nvars-1]] == cc).all())):
- raise ValueError('dummy variable is not sorted')
-
- start = np.r_[[0], start1+1]
- end = np.r_[end1+1, [nobs]]
- return start, end
-
-
-
-def dummy_nested(d1, d2, method='full'):
- '''unfinished and incomplete mainly copy past dummy_product
- dummy variable from product of two dummy variables
-
- Parameters
- ----------
- d1, d2 : ndarray
- two dummy variables, d2 is assumed to be nested in d1
- Assumes full set for methods 'drop-last' and 'drop-first'.
- method : {'full', 'drop-last', 'drop-first'}
- 'full' returns the full product, which in this case is d2.
- The drop methods provide an effects encoding:
- (constant, main effects, subgroup effects). The first or last columns
- of the dummy variable (i.e. levels) are dropped to get full rank
- encoding.
-
- Returns
- -------
- dummy : ndarray
- dummy variable for product, see method
-
- '''
- if method == 'full':
- return d2
-
- start1, end1 = dummy_limits(d1)
- start2, end2 = dummy_limits(d2)
- first = np.in1d(start2, start1)
- last = np.in1d(end2, end1)
- equal = (first == last)
- col_dropf = ~first*~equal
- col_dropl = ~last*~equal
-
-
- if method == 'drop-last':
- d12rl = dummy_product(d1[:,:-1], d2[:,:-1])
- dd = np.column_stack((np.ones(d1.shape[0], int), d1[:,:-1], d2[:,col_dropl]))
- #Note: dtype int should preserve dtype of d1 and d2
- elif method == 'drop-first':
- d12r = dummy_product(d1[:,1:], d2[:,1:])
- dd = np.column_stack((np.ones(d1.shape[0], int), d1[:,1:], d2[:,col_dropf]))
- else:
- raise ValueError('method not recognized')
-
- return dd, col_dropf, col_dropl
-
-
-class DummyTransform(object):
- '''Conversion between full rank dummy encodings
-
-
- y = X b + u
- b = C a
- a = C^{-1} b
-
- y = X C a + u
-
- define Z = X C, then
-
- y = Z a + u
-
- contrasts:
-
- R_b b = r
-
- R_a a = R_b C a = r
-
- where R_a = R_b C
-
- Here C is the transform matrix, with dot_left and dot_right as the main
- methods, and the same for the inverse transform matrix, C^{-1}
-
- Note:
- - The class was mainly written to keep left and right straight.
- - No checking is done.
- - not sure yet if method names make sense
-
-
- '''
-
- def __init__(self, d1, d2):
- '''C such that d1 C = d2, with d1 = X, d2 = Z
-
- should be (x, z) in arguments ?
- '''
- self.transf_matrix = np.linalg.lstsq(d1, d2)[0]
- self.invtransf_matrix = np.linalg.lstsq(d2, d1)[0]
-
- def dot_left(self, a):
- ''' b = C a
- '''
- return np.dot(self.transf_matrix, a)
-
- def dot_right(self, x):
- ''' z = x C
- '''
- return np.dot(x, self.transf_matrix)
-
- def inv_dot_left(self, b):
- ''' a = C^{-1} b
- '''
- return np.dot(self.invtransf_matrix, b)
-
- def inv_dot_right(self, z):
- ''' x = z C^{-1}
- '''
- return np.dot(z, self.invtransf_matrix)
-
-
-
-
-
-def groupmean_d(x, d):
- '''groupmeans using dummy variables
-
- Parameter
- ---------
- x : array_like, ndim
- data array, tested for 1,2 and 3 dimensions
- d : ndarray, 1d
- dummy variable, needs to have the same length
- as x in axis 0.
-
- Returns
- -------
- groupmeans : ndarray, ndim-1
- means for each group along axis 0, the levels
- of the groups are the last axis
-
- Notes
- -----
- This will be memory intensive if there are many levels
- in the categorical variable, i.e. many columns in the
- dummy variable. In this case it is recommended to use
- a more efficient version.
-
- '''
- x = np.asarray(x)
-## if x.ndim == 1:
-## nvars = 1
-## else:
- nvars = x.ndim + 1
- sli = [slice(None)] + [None]*(nvars-2) + [slice(None)]
- return (x[...,None] * d[sli]).sum(0)*1./d.sum(0)
-
-
-
-class TwoWay(object):
- '''a wrapper class for two way anova type of analysis with OLS
-
-
- currently mainly to bring things together
-
- Notes
- -----
- unclear: adding multiple test might assume block design or orthogonality
-
- This estimates the full dummy version with OLS.
- The drop first dummy representation can be recovered through the
- transform method.
-
- TODO: add more methods, tests, pairwise, multiple, marginal effects
- try out what can be added for userfriendly access.
-
- missing: ANOVA table
-
- '''
- def __init__(self, endog, factor1, factor2, varnames=None):
- self.nobs = factor1.shape[0]
- if varnames is None:
- vname1 = 'a'
- vname2 = 'b'
- else:
- vname1, vname1 = varnames
-
- self.d1, self.d1_labels = d1, d1_labels = dummy_1d(factor1, vname1)
- self.d2, self.d2_labels = d2, d2_labels = dummy_1d(factor2, vname2)
- self.nlevel1 = nlevel1 = d1.shape[1]
- self.nlevel2 = nlevel2 = d2.shape[1]
-
-
- #get product dummies
- res = contrast_product(d1_labels, d2_labels)
- prodlab, C1, C1lab, C2, C2lab, _ = res
- self.prod_label, self.C1, self.C1_label, self.C2, self.C2_label, _ = res
- dp_full = dummy_product(d1, d2, method='full')
- dp_dropf = dummy_product(d1, d2, method='drop-first')
- self.transform = DummyTransform(dp_full, dp_dropf)
-
- #estimate the model
- self.nvars = dp_full.shape[1]
- self.exog = dp_full
- self.resols = sm.OLS(endog, dp_full).fit()
- self.params = self.resols.params
-
- #get transformed parameters, (constant, main, interaction effect)
- self.params_dropf = self.transform.inv_dot_left(self.params)
- self.start_interaction = 1 + (nlevel1 - 1) + (nlevel2 - 1)
- self.n_interaction = self.nvars - self.start_interaction
-
- #convert to cached property
- def r_nointer(self):
- '''contrast/restriction matrix for no interaction
- '''
- nia = self.n_interaction
- R_nointer = np.hstack((np.zeros((nia, self.nvars-nia)), np.eye(nia)))
- #inter_direct = resols_full_dropf.tval[-nia:]
- R_nointer_transf = self.transform.inv_dot_right(R_nointer)
- self.R_nointer_transf = R_nointer_transf
- return R_nointer_transf
-
- def ttest_interaction(self):
- '''ttests for no-interaction terms are zero
- '''
- #use self.r_nointer instead
- nia = self.n_interaction
- R_nointer = np.hstack((np.zeros((nia, self.nvars-nia)), np.eye(nia)))
- #inter_direct = resols_full_dropf.tval[-nia:]
- R_nointer_transf = self.transform.inv_dot_right(R_nointer)
- self.R_nointer_transf = R_nointer_transf
- t_res = self.resols.t_test(R_nointer_transf)
- return t_res
-
- def ftest_interaction(self):
- '''ttests for no-interaction terms are zero
- '''
- R_nointer_transf = self.r_nointer()
- return self.resols.f_test(R_nointer_transf)
-
- def ttest_conditional_effect(self, factorind):
- if factorind == 1:
- return self.resols.t_test(self.C1), self.C1_label
- else:
- return self.resols.t_test(self.C2), self.C2_label
-
- def summary_coeff(self):
- from scikits.statsmodels.iolib import SimpleTable
- params_arr = self.params.reshape(self.nlevel1, self.nlevel2)
- stubs = self.d1_labels
- headers = self.d2_labels
- title = 'Estimated Coefficients by factors'
- table_fmt = dict(
- data_fmts = ["%#10.4g"]*self.nlevel2)
- return SimpleTable(params_arr, headers, stubs, title=title,
- txt_fmt=table_fmt)
-
-
-
-
-
-
-
-#--------------- tests
-
-from numpy.testing import assert_equal
-
-#TODO: several tests still missing, several are in the example with print
-
-class TestContrastTools(object):
-
- def __init__(self):
- self.v1name = ['a0', 'a1', 'a2']
- self.v2name = ['b0', 'b1']
- self.d1 = np.array([[1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1]])
-
- def test_dummy_1d(self):
- x = np.array(['F', 'F', 'M', 'M', 'F', 'F', 'M', 'M', 'F', 'F', 'M', 'M'],
- dtype='|S1')
- d, labels = (np.array([[1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1]]), ['gender_F', 'gender_M'])
- res_d, res_label = dummy_1d(x, varname='gender')
- assert_equal(res_d, d)
- assert_equal(res_labels, labels)
-
- def test_contrast_product(self):
- res_cp = contrast_product(self.v1name, self.v2name)
- res_t = [0]*6
- res_t[0] = ['a0_b0', 'a0_b1', 'a1_b0', 'a1_b1', 'a2_b0', 'a2_b1']
- res_t[1] = np.array([[-1., 0., 1., 0., 0., 0.],
- [ 0., -1., 0., 1., 0., 0.],
- [-1., 0., 0., 0., 1., 0.],
- [ 0., -1., 0., 0., 0., 1.]])
- res_t[2] = ['a1_b0-a0_b0', 'a1_b1-a0_b1', 'a2_b0-a0_b0', 'a2_b1-a0_b1']
- res_t[3] = np.array([[-1., 1., 0., 0., 0., 0.],
- [ 0., 0., -1., 1., 0., 0.],
- [ 0., 0., 0., 0., -1., 1.]])
- res_t[4] = ['a0_b1-a0_b0', 'a1_b1-a1_b0', 'a2_b1-a2_b0']
- for ii in range(5):
- np.testing.assert_equal(res_cp[ii], res_t[ii], err_msg=str(ii))
-
- def test_dummy_limits():
- b,e = dummy_limits(self.d1)
- assert_equal(b, np.array([0, 4, 8]))
- assert_equal(e, np.array([ 4, 8, 12]))
-
-
-
-
-if __name__ == '__main__':
- tt = TestContrastTools()
- tt.test_contrast_product()
-
- import scikits.statsmodels.api as sm
-
- examples = ['small', 'large', None][1]
-
- v1name = ['a0', 'a1', 'a2']
- v2name = ['b0', 'b1']
- res_cp = contrast_product(v1name, v2name)
- print res_cp
-
- y = np.arange(12)
- x1 = np.arange(12)//4
- x2 = np.arange(12)//2%2
-
- if 'small' in examples:
- d1, d1_labels = dummy_1d(x1)
- d2, d2_labels = dummy_1d(x2)
-
-
- if 'large' in examples:
- x1 = np.repeat(x1, 5, axis=0)
- x2 = np.repeat(x2, 5, axis=0)
-
- nobs = x1.shape[0]
- d1, d1_labels = dummy_1d(x1)
- d2, d2_labels = dummy_1d(x2)
-
- dd_full = dummy_product(d1, d2, method='full')
- dd_dropl = dummy_product(d1, d2, method='drop-last')
- dd_dropf = dummy_product(d1, d2, method='drop-first')
-
- #Note: full parameterization of dummies is orthogonal
- #np.eye(6)*10 in "large" example
- print (np.dot(dd_full.T, dd_full) == np.diag(dd_full.sum(0))).all()
-
- #check that transforms work
- #generate 3 data sets with the 3 different parameterizations
-
- effect_size = [1., 0.01][1]
- noise_scale = [0.001, 0.1][0]
- noise = noise_scale * np.random.randn(nobs)
- beta = effect_size * np.arange(1,7)
- ydata_full = (dd_full * beta).sum(1) + noise
- ydata_dropl = (dd_dropl * beta).sum(1) + noise
- ydata_dropf = (dd_dropf * beta).sum(1) + noise
-
- resols_full_full = sm.OLS(ydata_full, dd_full).fit()
- resols_full_dropf = sm.OLS(ydata_full, dd_dropf).fit()
- params_f_f = resols_full_full.params
- params_f_df = resols_full_dropf.params
-
- resols_dropf_full = sm.OLS(ydata_dropf, dd_full).fit()
- resols_dropf_dropf = sm.OLS(ydata_dropf, dd_dropf).fit()
- params_df_f = resols_dropf_full.params
- params_df_df = resols_dropf_dropf.params
-
-
- tr_of = np.linalg.lstsq(dd_dropf, dd_full)[0]
- tr_fo = np.linalg.lstsq(dd_full, dd_dropf)[0]
- print np.dot(tr_fo, params_df_df) - params_df_f
- print np.dot(tr_of, params_f_f) - params_f_df
-
- transf_f_df = DummyTransform(dd_full, dd_dropf)
- print np.max(np.abs((dd_full - transf_f_df.inv_dot_right(dd_dropf))))
- print np.max(np.abs((dd_dropf - transf_f_df.dot_right(dd_full))))
- print np.max(np.abs((params_df_df
- - transf_f_df.inv_dot_left(params_df_f))))
- np.max(np.abs((params_f_df
- - transf_f_df.inv_dot_left(params_f_f))))
-
- prodlab, C1, C1lab, C2, C2lab,_ = contrast_product(v1name, v2name)
-
- print '\ntvalues for no effect of factor 1'
- print 'each test is conditional on a level of factor 2'
- print C1lab
- print resols_dropf_full.t_test(C1).tvalue
-
- print '\ntvalues for no effect of factor 2'
- print 'each test is conditional on a level of factor 1'
- print C2lab
- print resols_dropf_full.t_test(C2).tvalue
-
- #covariance matrix of restrictions C2, note: orthogonal
- resols_dropf_full.cov_params(C2)
-
- #testing for no interaction effect
- R_noint = np.hstack((np.zeros((2,4)), np.eye(2)))
- inter_direct = resols_full_dropf.tval[-2:]
- inter_transf = resols_full_full.t_test(transf_f_df.inv_dot_right(R_noint)).tvalue
- print np.max(np.abs((inter_direct - inter_transf)))
-
- #now with class version
- tw = TwoWay(ydata_dropf, x1, x2)
- print tw.ttest_interaction().tvalue
- print tw.ttest_interaction().pvalue
- print tw.ftest_interaction().fvalue
- print tw.ftest_interaction().pvalue
- print tw.ttest_conditional_effect(1)[0].tvalue
- print tw.ttest_conditional_effect(2)[0].tvalue
- print tw.summary_coeff()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-''' documentation for early examples while developing - some have changed already
->>> y = np.arange(12)
->>> y
-array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11])
->>> x1 = np.arange(12)//4
->>> x1
-array([0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2])
->>> x2 = np.arange(12)//2%2
->>> x2
-array([0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1])
-
->>> d1 = dummy_1d(x1)
->>> d1
-array([[1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [1, 0, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 1, 0],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1],
- [0, 0, 1]])
-
->>> d2 = dummy_1d(x2)
->>> d2
-array([[1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1],
- [1, 0],
- [1, 0],
- [0, 1],
- [0, 1]])
-
->>> d12 = dummy_product(d1, d2)
->>> d12
-array([[1, 0, 0, 0, 0, 0],
- [1, 0, 0, 0, 0, 0],
- [0, 1, 0, 0, 0, 0],
- [0, 1, 0, 0, 0, 0],
- [0, 0, 1, 0, 0, 0],
- [0, 0, 1, 0, 0, 0],
- [0, 0, 0, 1, 0, 0],
- [0, 0, 0, 1, 0, 0],
- [0, 0, 0, 0, 1, 0],
- [0, 0, 0, 0, 1, 0],
- [0, 0, 0, 0, 0, 1],
- [0, 0, 0, 0, 0, 1]])
-
-
->>> d12rl = dummy_product(d1[:,:-1], d2[:,:-1])
->>> np.column_stack((np.ones(d1.shape[0]), d1[:,:-1], d2[:,:-1],d12rl))
-array([[ 1., 1., 0., 1., 1., 0.],
- [ 1., 1., 0., 1., 1., 0.],
- [ 1., 1., 0., 0., 0., 0.],
- [ 1., 1., 0., 0., 0., 0.],
- [ 1., 0., 1., 1., 0., 1.],
- [ 1., 0., 1., 1., 0., 1.],
- [ 1., 0., 1., 0., 0., 0.],
- [ 1., 0., 1., 0., 0., 0.],
- [ 1., 0., 0., 1., 0., 0.],
- [ 1., 0., 0., 1., 0., 0.],
- [ 1., 0., 0., 0., 0., 0.],
- [ 1., 0., 0., 0., 0., 0.]])
-'''
-
-
-
-
-#nprod = ['%s_%s' % (i,j) for i in ['a0', 'a1', 'a2'] for j in ['b0', 'b1']]
-#>>> [''.join(['%s%s' % (signstr(c),v) for c,v in zip(row, nprod) if c != 0])
-# for row in np.kron(dd[1:], np.eye(2))]
-
-
-
-'''
->>> nprod = ['%s_%s' % (i,j) for i in ['a0', 'a1', 'a2'] for j in ['b0', 'b1']]
->>> nprod
-['a0_b0', 'a0_b1', 'a1_b0', 'a1_b1', 'a2_b0', 'a2_b1']
->>> [''.join(['%s%s' % (signstr(c),v) for c,v in zip(row, nprod) if c != 0]) for row in np.kron(dd[1:], np.eye(2))]
-['-a0b0+a1b0', '-a0b1+a1b1', '-a0b0+a2b0', '-a0b1+a2b1']
->>> [''.join(['%s%s' % (signstr(c),v) for c,v in zip(row, nprod)[::-1] if c != 0]) for row in np.kron(dd[1:], np.eye(2))]
-['+a1_b0-a0_b0', '+a1_b1-a0_b1', '+a2_b0-a0_b0', '+a2_b1-a0_b1']
-
->>> np.r_[[[1,0,0,0,0]],contrast_all_one(5)]
-array([[ 1., 0., 0., 0., 0.],
- [ 1., -1., 0., 0., 0.],
- [ 1., 0., -1., 0., 0.],
- [ 1., 0., 0., -1., 0.],
- [ 1., 0., 0., 0., -1.]])
-
->>> idxprod = [(i,j) for i in range(3) for j in range(2)]
->>> idxprod
-[(0, 0), (0, 1), (1, 0), (1, 1), (2, 0), (2, 1)]
->>> np.array(idxprod).reshape(2,3,2,order='F')[:,:,0]
-array([[0, 1, 2],
- [0, 1, 2]])
->>> np.array(idxprod).reshape(2,3,2,order='F')[:,:,1]
-array([[0, 0, 0],
- [1, 1, 1]])
->>> dd3_ = np.r_[[[0,0,0]],contrast_all_one(3)]
-
-
-
-pairwise contrasts and reparameterization
-
-dd = np.r_[[[1,0,0,0,0]],-contrast_all_one(5)]
->>> dd
-array([[ 1., 0., 0., 0., 0.],
- [-1., 1., 0., 0., 0.],
- [-1., 0., 1., 0., 0.],
- [-1., 0., 0., 1., 0.],
- [-1., 0., 0., 0., 1.]])
->>> np.dot(dd.T, np.arange(5))
-array([-10., 1., 2., 3., 4.])
->>> np.round(np.linalg.inv(dd.T)).astype(int)
-array([[1, 1, 1, 1, 1],
- [0, 1, 0, 0, 0],
- [0, 0, 1, 0, 0],
- [0, 0, 0, 1, 0],
- [0, 0, 0, 0, 1]])
->>> np.round(np.linalg.inv(dd)).astype(int)
-array([[1, 0, 0, 0, 0],
- [1, 1, 0, 0, 0],
- [1, 0, 1, 0, 0],
- [1, 0, 0, 1, 0],
- [1, 0, 0, 0, 1]])
->>> dd
-array([[ 1., 0., 0., 0., 0.],
- [-1., 1., 0., 0., 0.],
- [-1., 0., 1., 0., 0.],
- [-1., 0., 0., 1., 0.],
- [-1., 0., 0., 0., 1.]])
->>> ddinv=np.round(np.linalg.inv(dd.T)).astype(int)
->>> np.dot(ddinv, np.arange(5))
-array([10, 1, 2, 3, 4])
->>> np.dot(dd, np.arange(5))
-array([ 0., 1., 2., 3., 4.])
->>> np.dot(dd, 5+np.arange(5))
-array([ 5., 1., 2., 3., 4.])
->>> ddinv2 = np.round(np.linalg.inv(dd)).astype(int)
->>> np.dot(ddinv2, np.arange(5))
-array([0, 1, 2, 3, 4])
->>> np.dot(ddinv2, 5+np.arange(5))
-array([ 5, 11, 12, 13, 14])
->>> np.dot(ddinv2, [5, 0, 0 , 1, 2])
-array([5, 5, 5, 6, 7])
->>> np.dot(ddinv2, dd)
-array([[ 1., 0., 0., 0., 0.],
- [ 0., 1., 0., 0., 0.],
- [ 0., 0., 1., 0., 0.],
- [ 0., 0., 0., 1., 0.],
- [ 0., 0., 0., 0., 1.]])
-
-
-
->>> dd3 = -np.r_[[[1,0,0]],contrast_all_one(3)]
->>> dd2 = -np.r_[[[1,0]],contrast_all_one(2)]
->>> np.kron(np.eye(3), dd2)
-array([[-1., 0., 0., 0., 0., 0.],
- [-1., 1., 0., 0., 0., 0.],
- [ 0., 0., -1., 0., 0., 0.],
- [ 0., 0., -1., 1., 0., 0.],
- [ 0., 0., 0., 0., -1., 0.],
- [ 0., 0., 0., 0., -1., 1.]])
->>> dd2
-array([[-1., 0.],
- [-1., 1.]])
->>> np.kron(np.eye(3), dd2[1:])
-array([[-1., 1., 0., 0., 0., 0.],
- [ 0., 0., -1., 1., 0., 0.],
- [ 0., 0., 0., 0., -1., 1.]])
->>> np.kron(dd[1:], np.eye(2))
-array([[-1., 0., 1., 0., 0., 0.],
- [ 0., -1., 0., 1., 0., 0.],
- [-1., 0., 0., 0., 1., 0.],
- [ 0., -1., 0., 0., 0., 1.]])
-
-
-
-d_ = np.r_[[[1,0,0,0,0]],contrast_all_one(5)]
->>> d_
-array([[ 1., 0., 0., 0., 0.],
- [ 1., -1., 0., 0., 0.],
- [ 1., 0., -1., 0., 0.],
- [ 1., 0., 0., -1., 0.],
- [ 1., 0., 0., 0., -1.]])
->>> np.round(np.linalg.pinv(d_)).astype(int)
-array([[ 1, 0, 0, 0, 0],
- [ 1, -1, 0, 0, 0],
- [ 1, 0, -1, 0, 0],
- [ 1, 0, 0, -1, 0],
- [ 1, 0, 0, 0, -1]])
->>> np.linalg.inv(d_).astype(int)
-array([[ 1, 0, 0, 0, 0],
- [ 1, -1, 0, 0, 0],
- [ 1, 0, -1, 0, 0],
- [ 1, 0, 0, -1, 0],
- [ 1, 0, 0, 0, -1]])
-
-
-group means
-
->>> sli = [slice(None)] + [None]*(3-2) + [slice(None)]
->>> (np.column_stack((y, x1, x2))[...,None] * d1[sli]).sum(0)*1./d1.sum(0)
-array([[ 1.5, 5.5, 9.5],
- [ 0. , 1. , 2. ],
- [ 0.5, 0.5, 0.5]])
-
->>> [(z[:,None] * d1).sum(0)*1./d1.sum(0) for z in np.column_stack((y, x1, x2)).T]
-[array([ 1.5, 5.5, 9.5]), array([ 0., 1., 2.]), array([ 0.5, 0.5, 0.5])]
->>>
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/diagnostic.py b/statsmodels/scikits/statsmodels/sandbox/stats/diagnostic.py
deleted file mode 100644
index 9fc8ec5..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/diagnostic.py
+++ /dev/null
@@ -1,1205 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Various Statistical Tests
-
-
-Warning: Work in progress
-
-TODO
-* how easy is it to attach a test that is a class to a result instance,
- for example CompareCox as a method compare_cox(self, other) ?
-
-Author: josef-pktd
-License: BSD
-"""
-
-import numpy as np
-from scipy import stats
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.tsa.stattools import acf, adfuller
-from scikits.statsmodels.tsa.tsatools import lagmat
-
-#get the old signature back so the examples work
-def unitroot_adf(x, maxlag=None, trendorder=0, autolag='AIC', store=False):
- return adfuller(x, maxlag=maxlag, regression=trendorder, autolag=autolag,
- store=store, regresults=False)
-
-
-#TODO: I like the bunch pattern for this too.
-class ResultsStore(object):
- def __str__(self):
- return self._str
-
-
-
-class CompareCox(object):
- '''Cox Test for non-nested models
-
- Parameters
- ----------
- results_x : Result instance
- result instance of first model
- results_z : Result instance
- result instance of second model
- attach : bool
-
-
- Formulas from Greene, section 8.3.4 translated to code
-
- produces correct results for Example 8.3, Greene
-
-
- '''
-
-
- def run(self, results_x, results_z, attach=True):
- '''
-
- see class docstring (for now)
- '''
- if not np.allclose(results_x.model.endog, results_z.model.endog):
- raise ValueError('endogenous variables in models are not the same')
- nobs = results_x.model.endog.shape[0]
- x = results_x.model.exog
- z = results_z.model.exog
- sigma2_x = results_x.ssr/nobs
- sigma2_z = results_z.ssr/nobs
- yhat_x = results_x.fittedvalues
- yhat_z = results_z.fittedvalues
- res_dx = sm.OLS(yhat_x, z).fit()
- err_zx = res_dx.resid
- res_xzx = sm.OLS(err_zx, x).fit()
- err_xzx = res_xzx.resid
-
- sigma2_zx = sigma2_x + np.dot(err_zx.T, err_zx)/nobs
- c01 = nobs/2. * (np.log(sigma2_z) - np.log(sigma2_zx))
- v01 = sigma2_x * np.dot(err_xzx.T, err_xzx) / sigma2_zx**2
- q = c01 / np.sqrt(v01)
- pval = 2*stats.norm.sf(np.abs(q))
-
- if attach:
- self.res_dx = res_dx
- self.res_xzx = res_xzx
- self.c01 = c01
- self.v01 = v01
- self.q = q
- self.pvalue = pval
- self.dist = stats.norm
-
- return q, pval
-
- def __call__(self, results_x, results_z):
- return self.run(results_x, results_z, attach=False)
-
-
-compare_cox = CompareCox()
-compare_cox.__doc__ = CompareCox.__doc__
-
-
-class CompareJ(object):
- '''J-Test for comparing non-nested models
-
- Parameters
- ----------
- results_x : Result instance
- result instance of first model
- results_z : Result instance
- result instance of second model
- attach : bool
-
-
- From description in Greene, section 8.3.3
-
- produces correct results for Example 8.3, Greene - not checked yet
- #currently an exception, but I don't have clean reload in python session
-
- check what results should be attached
-
- '''
-
-
- def run(self, results_x, results_z, attach=True):
- '''
-
- see class docstring (for now)
- '''
- if not np.allclose(results_x.model.endog, results_z.model.endog):
- raise ValueError('endogenous variables in models are not the same')
- nobs = results_x.model.endog.shape[0]
- y = results_x.model.exog
- x = results_x.model.exog
- z = results_z.model.exog
- #sigma2_x = results_x.ssr/nobs
- #sigma2_z = results_z.ssr/nobs
- yhat_x = results_x.fittedvalues
- #yhat_z = results_z.fittedvalues
- res_zx = sm.OLS(y, np.column_stack((yhat_x, z))).fit()
- self.res_zx = res_zx #for testing
- tstat = res_zx.tvalues[0]
- pval = res_zx.pvalues[0]
- if attach:
- self.res_zx = res_zx
- self.dist = stats.t(res_zx.model.df_resid)
- self.teststat = tstat
- self.pvalue = pval
-
- return tsta, pval
-
- def __call__(self, results_x, results_z):
- return self.run(results_x, results_z, attach=False)
-
-
-compare_j = CompareJ()
-compare_j.__doc__ = CompareJ.__doc__
-
-
-def acorr_ljungbox(x, lags=None, boxpierce=False):
- '''Ljung-Box test for no autocorrelation
-
-
- Parameters
- ----------
- x : array_like, 1d
- data series, regression residuals when used as diagnostic test
- lags : None, int or array_like
- If lags is an integer then this is taken to be the largest lag
- that is included, the test result is reported for all smaller lag length.
- If lags is a list or array, then all lags are included up to the largest
- lag in the list, however only the tests for the lags in the list are
- reported.
- If lags is None, then the default maxlag is 12*(nobs/100)^{1/4}
- boxpierce : {False, True}
- If true, then additional to the results of the Ljung-Box test also the
- Box-Pierce test results are returned
-
- Returns
- -------
- lbvalue : float or array
- test statistic
- pvalue : float or array
- p-value based on chi-square distribution
- bpvalue : (optionsal), float or array
- test statistic for Box-Pierce test
- bppvalue : (optional), float or array
- p-value based for Box-Pierce test on chi-square distribution
-
- Notes
- -----
- Ljung-Box and Box-Pierce statistic differ in their scaling of the
- autocorrelation function. Ljung-Box test is reported to have better
- small sample properties.
-
- could be extended to work with more than one series
- 1d or nd ? axis ? ravel ?
- needs more testing
-
- ''Verification''
-
- Looks correctly sized in Monte Carlo studies.
- not yet compared to verified values
-
- Examples
- --------
- see example script
-
- References
- ----------
- Greene
- Wikipedia
-
- '''
- x = np.asarray(x)
- nobs = x.shape[0]
- if lags is None:
- lags = range(1,41) #TODO: check default; SS: changed to 40
- elif isinstance(lags, int):
- lags = range(1,lags+1)
- maxlag = max(lags)
- lags = np.asarray(lags)
-
- acfx = acf(x, nlags=maxlag) # normalize by nobs not (nobs-nlags)
- # SS: unbiased=False is default now
-# acf2norm = acfx[1:maxlag+1]**2 / (nobs - np.arange(1,maxlag+1))
- acf2norm = acfx[1:maxlag+1]**2 / (nobs - np.arange(1,maxlag+1))
-
- qljungbox = nobs * (nobs+2) * np.cumsum(acf2norm)[lags-1]
- pval = stats.chi2.sf(qljungbox, lags)
- if not boxpierce:
- return qljungbox, pval
- else:
- qboxpierce = nobs * np.cumsum(acfx[1:maxlag+1]**2)[lags]
- pvalbp = stats.chi2.sf(qboxpierce, lags)
- return qljungbox, pval, qboxpierce, pvalbp
-
-def acorr_lm(x, maxlag=None, autolag='AIC', store=False):
- '''Lagrange Multiplier tests for autocorrelation
-
- not checked yet, copied from unitrood_adf with adjustments
- check array shapes because of the addition of the constant.
- written/copied without reference
- This is not Breush-Godfrey. BG adds lags of residual to exog in the
- design matrix for the auxiliary regression with residuals as endog,
- see Greene 12.7.1.
-
- Notes
- -----
- If x is calculated as y^2 for a time series y, then this test corresponds
- to the Engel test for autoregressive conditional heteroscedasticity (ARCH).
- TODO: get details and verify
-
- '''
-
- x = np.asarray(x)
- nobs = x.shape[0]
- if maxlag is None:
- #for adf from Greene referencing Schwert 1989
- maxlag = 12. * np.power(nobs/100., 1/4.)#nobs//4 #TODO: check default, or do AIC/BIC
-
-
- xdiff = np.diff(x)
- #
- xdall = lagmat(x[:-1,None], maxlag, trim='both')
- nobs = xdall.shape[0]
- xdall = np.c_[np.ones((nobs,1)), xdall]
- xshort = x[-nobs:]
-
- if store: resstore = ResultsStore()
-
- if autolag:
- #search for lag length with highest information criteria
- #Note: I use the same number of observations to have comparable IC
- results = {}
- for mlag in range(1,maxlag):
- results[mlag] = sm.OLS(xshort, xdall[:,:mlag+1]).fit()
-
- if autolag.lower() == 'aic':
- bestic, icbestlag = max((v.aic,k) for k,v in results.iteritems())
- elif autolag.lower() == 'bic':
- icbest, icbestlag = max((v.bic,k) for k,v in results.iteritems())
- else:
- raise ValueError("autolag can only be None, 'AIC' or 'BIC'")
-
- #rerun ols with best ic
- xdall = lagmat(x[:,None], icbestlag, trim='forward')
- nobs = xdall.shape[0]
- xdall = np.c_[np.ones((nobs,1)), xdall]
- xshort = x[-nobs:]
- usedlag = icbestlag
- else:
- usedlag = maxlag
-
- resols = sm.OLS(xshort, xdall[:,:usedlag+1]).fit()
- fval = resols.fvalue
- fpval = resols.f_pvalue
- lm = nobs * resols.rsquared
- lmpval = stats.chi2.sf(lm, usedlag)
- # Note: degrees of freedom for LM test is nvars minus constant = usedlags
- return fval, fpval, lm, lmpval
-
- if store:
- resstore.resols = resols
- resstore.usedlag = usedlag
- return fval, fpval, lm, lmpval, resstore
- else:
- return fval, fpval, lm, lmpval
-
-
-def het_breushpagan(resid, x, exog=None):
- '''Lagrange Multiplier Heteroscedasticity Test by Breush-Pagan
-
- The tests the hypothesis that the residual variance does not depend on
- the variables in x in the form
-
- :math: \sigma_i = \\sigma * f(\\alpha_0 + \\alpha z_i)
-
- Homoscedasticity implies that $\\alpha=0$
-
-
- Parameters
- ----------
- resid : arraylike, (nobs,)
- For the Breush-Pagan test, this should be the residual of a regression.
- If an array is given in exog, then the residuals are calculated by
- the an OLS regression or resid on exog. In this case resid should
- contain the dependent variable. Exog can be the same as x.
- x : array_like, (nobs, nvars)
- This contains variables that might create data dependent
- heteroscedasticity.
-
- Returns
- -------
- lm : float
- lagrange multiplier statistic
- lm_pvalue :float
- p-value of lagrange multiplier test
- fvalue : float
- f-statistic of the hypothesis that the error variance does not depend
- on x
- f_pvalue : float
- p-value for the f-statistic
-
- Notes
- -----
- Assumes x contains constant (for counting dof and calculation of R^2).
- In the general description of LM test, Greene mentions that this test
- exaggerates the significance of results in small or moderately large
- samples. In this case the F-statistic is preferrable.
-
- *Verification*
-
- Chisquare test statistic is exactly (<1e-13) the same result as bptest
- in R-stats with defaults (studentize=True).
-
- Implementation
- This is calculated using the generic formula for LM test using $R^2$
- (Greene, section 17.6) and not with the explicit formula
- (Greene, section 11.4.3).
-
- References
- ----------
- http://en.wikipedia.org/wiki/Breusch%E2%80%93Pagan_test
- Greene 5th edition
- Breush, Pagan article
-
- '''
- if not exog is None:
- resid = sm.OLS(y, exog).fit()
-
- x = np.asarray(x)
- y = np.asarray(resid)**2
- nobs, nvars = x.shape
- resols = sm.OLS(y, x).fit()
- fval = resols.fvalue
- fpval = resols.f_pvalue
- lm = nobs * resols.rsquared
- # Note: degrees of freedom for LM test is nvars minus constant
- return lm, stats.chi2.sf(lm, nvars-1), fval, fpval
-
-def het_white(y, x, retres=False):
- '''Lagrange Multiplier Heteroscedasticity Test by White
-
- Notes
- -----
- assumes x contains constant (for counting dof)
-
- question: does f-statistic make sense? constant ?
-
- References
- ----------
-
- Greene section 11.4.1 5th edition p. 222
- '''
- x = np.asarray(x)
- y = np.asarray(y)**2
- if x.ndim == 1:
- raise ValueError('x should have constant and at least one more variable')
- nobs, nvars0 = x.shape
- i0,i1 = np.triu_indices(nvars0)
- exog = x[:,i0]*x[:,i1]
- nobs, nvars = exog.shape
- assert nvars == nvars0*(nvars0-1)/2. + nvars0
- resols = sm.OLS(y**2, exog).fit()
- fval = resols.fvalue
- fpval = resols.f_pvalue
- lm = nobs * resols.rsquared
- # Note: degrees of freedom for LM test is nvars minus constant
- lmpval = stats.chi2.sf(lm, nvars-1)
- return lm, lmpval, fval, fpval
-
-def het_goldfeldquandt2(y, x, idx, split=None, retres=False):
- '''test whether variance is the same in 2 subsamples
-
- Parameters
- ----------
- y : array_like
- endogenous variable
- x : array_like
- exogenous variable, regressors
- idx : integer
- column index of variable according to which observations are
- sorted for the split
- split : None or integer or float in intervall (0,1)
- index at which sample is split.
- If 01:
- fpval = stats.f.sf(fval, resols1.df_resid, resols2.df_resid)
- ordering = 'larger'
- else:
- fval = 1./fval;
- fpval = stats.f.sf(fval, resols2.df_resid, resols1.df_resid)
- ordering = 'smaller'
-
- if retres:
- res = ResultsStore()
- res.__doc__ = 'Test Results for Goldfeld-Quandt test of heterogeneity'
- res.fval = fval
- res.fpval = fpval
- res.df_fval = (resols2.df_resid, resols1.df_resid)
- res.resols1 = resols1
- res.resols2 = resols2
- res.ordering = ordering
- res.split = split
- #res.__str__
- res._str = '''The Goldfeld-Quandt test for null hypothesis that the
-variance in the second subsample is %s than in the first subsample:
- F-statistic =%8.4f and p-value =%8.4f''' % (ordering, fval, fpval)
-
- return res
- else:
- return fval, fpval
-
-
-class HetGoldfeldQuandt(object):
- '''test whether variance is the same in 2 subsamples
-
- Parameters
- ----------
- y : array_like
- endogenous variable
- x : array_like
- exogenous variable, regressors
- idx : integer
- column index of variable according to which observations are
- sorted for the split
- split : None or integer or float in intervall (0,1)
- index at which sample is split.
- If 01:
- if alternative.lower() in ['i', 'inc', 'increasing']:
- fpval = stats.f.sf(fval, resols1.df_resid, resols2.df_resid)
- ordering = 'increasing'
- elif alternative.lower() in ['d', 'dec', 'decreasing']:
- fval = 1./fval;
- fpval = stats.f.sf(fval, resols2.df_resid, resols1.df_resid)
- ordering = 'decreasing'
- elif alternative.lower() in ['2', '2-sided', 'two-sided']:
- fpval_sm = stats.f.cdf(fval, resols2.df_resid, resols1.df_resid)
- fpval_la = stats.f.sf(fval, resols2.df_resid, resols1.df_resid)
- fpval = 2*min(fpval_sm, fpval_la)
- ordering = 'two-sided'
- else:
- raise ValueError('invalid alternative')
-
-
-
- if attach:
- res = self
- res.__doc__ = 'Test Results for Goldfeld-Quandt test of heterogeneity'
- res.fval = fval
- res.fpval = fpval
- res.df_fval = (resols2.df_resid, resols1.df_resid)
- res.resols1 = resols1
- res.resols2 = resols2
- res.ordering = ordering
- res.split = split
- #res.__str__
- #TODO: check if string works
- res._str = '''The Goldfeld-Quandt test for null hypothesis that the
- variance in the second subsample is %s than in the first subsample:
- F-statistic =%8.4f and p-value =%8.4f''' % (ordering, fval, fpval)
-
- return fval, fpval, ordering
- #return self
-
- def __str__(self):
- try:
- return self._str
- except AttributeError:
- return repr(self)
-
- def __call__(self, y, x, idx=None, split=None):
- return self.run(y, x, idx=idx, split=split, attach=False)
-
-het_goldfeldquandt = HetGoldfeldQuandt()
-het_goldfeldquandt.__doc__ = het_goldfeldquandt.run.__doc__
-
-
-
-
-def neweywestcov(resid, x):
- '''
- Did not run yet
-
- from regstats2 ::
-
- if idx(29) % HAC (Newey West)
- L = round(4*(nobs/100)^(2/9));
- % L = nobs^.25; % as an alternative
- hhat = repmat(residuals',p,1).*X';
- xuux = hhat*hhat';
- for l = 1:L;
- za = hhat(:,(l+1):nobs)*hhat(:,1:nobs-l)';
- w = 1 - l/(L+1);
- xuux = xuux + w*(za+za');
- end
- d = struct;
- d.covb = xtxi*xuux*xtxi;
- '''
- nobs = resid.shape[0] #TODO: check this can only be 1d
- nlags = int(round(4*(nobs/100.)**(2/9.)))
- hhat = resid * x.T
- xuux = np.dot(hhat, hhat.T)
- for lag in range(nlags):
- za = np.dot(hhat[:,lag:nobs], hhat[:,:nobs-lag].T)
- w = 1 - lag/(nobs + 1.)
- xuux = xuux + np.dot(w, za+za.T)
- xtxi = np.linalg.inv(np.dot(x.T, x)) #QR instead?
- covbNW = np.dot(xtxi, np.dot(xuux, xtxi))
-
- return covbNW
-
-
-
-def recursive_olsresiduals2(olsresults, skip):
- '''this is my original version based on Greene and references
-
- keep for now for comparison and benchmarking
- '''
- y = olsresults.model.endog
- x = olsresults.model.exog
- nobs, nvars = x.shape
- rparams = np.nan * np.zeros((nobs,nvars))
- rresid = np.nan * np.zeros((nobs))
- rypred = np.nan * np.zeros((nobs))
- rvarraw = np.nan * np.zeros((nobs))
-
- #XTX = np.zeros((nvars,nvars))
- #XTY = np.zeros((nvars))
-
- x0 = x[:skip]
- y0 = y[:skip]
- XTX = np.dot(x0.T, x0)
- XTY = np.dot(x0.T, y0) #xi * y #np.dot(xi, y)
- beta = np.linalg.solve(XTX, XTY)
- rparams[skip-1] = beta
- yipred = np.dot(x[skip-1], beta)
- rypred[skip-1] = yipred
- rresid[skip-1] = y[skip-1] - yipred
- rvarraw[skip-1] = 1+np.dot(x[skip-1],np.dot(np.linalg.inv(XTX),x[skip-1]))
- for i in range(skip,nobs):
- xi = x[i:i+1,:]
- yi = y[i]
- xxT = np.dot(xi.T, xi) #xi is 2d 1 row
- xy = (xi*yi).ravel() # XTY is 1d #np.dot(xi, yi) #np.dot(xi, y)
- print xy.shape, XTY.shape
- print XTX
- print XTY
- beta = np.linalg.solve(XTX, XTY)
- rparams[i-1] = beta #this is beta based on info up to t-1
- yipred = np.dot(xi, beta)
- rypred[i] = yipred
- rresid[i] = yi - yipred
- rvarraw[i] = 1 + np.dot(xi,np.dot(np.linalg.inv(XTX),xi.T))
- XTX += xxT
- XTY += xy
-
- i = nobs
- beta = np.linalg.solve(XTX, XTY)
- rparams[i-1] = beta
-
- rresid_scaled = rresid/np.sqrt(rvarraw) #this is N(0,sigma2) distributed
- nrr = nobs-skip
- sigma2 = rresid_scaled[skip-1:].var(ddof=1)
- rresid_standardized = rresid_scaled/np.sqrt(sigma2) #N(0,1) distributed
- rcusum = rresid_standardized[skip-1:].cumsum()
- #confidence interval points in Greene p136 looks strange?
- #this assumes sum of independent standard normal
- #rcusumci = np.sqrt(np.arange(skip,nobs+1))*np.array([[-1.],[+1.]])*stats.norm.sf(0.025)
- a = 1.143 #for alpha=0.99 =0.948 for alpha=0.95
- #following taken from Ploberger,
- crit = a*np.sqrt(nrr)
- rcusumci = (a*np.sqrt(nrr) + a*np.arange(0,nobs-skip)/np.sqrt(nrr)) * np.array([[-1.],[+1.]])
- return rresid, rparams, rypred, rresid_standardized, rresid_scaled, rcusum, rcusumci
-
-
-def recursive_olsresiduals(olsresults, skip=None, lamda=0.0, alpha=0.95):
- '''calculate recursive ols with residuals and cusum test statistic
-
- Parameters
- ----------
- olsresults : instance of RegressionResults
- uses only endog and exog
- skip : int or None
- number of observations to use for initial OLS, if None then skip is
- set equal to the number of regressors (columns in exog)
- lamda : float
- weight for Ridge correction to initial (X'X)^{-1}
- alpha : {0.95, 0.99}
- confidence level of test, currently only two values supported,
- used for confidence interval in cusum graph
-
- Returns
- -------
- rresid : array
- recursive ols residuals
- rparams : array
- recursive ols parameter estimates
- rypred : array
- recursive prediction of endogenous variable
- rresid_standardized : array
- recursive residuals standardized so that N(0,sigma2) distributed, where
- sigma2 is the error variance
- rresid_scaled : array
- recursive residuals normalize so that N(0,1) distributed
- rcusum : array
- cumulative residuals for cusum test
- rcusumci : array
- confidence interval for cusum test, currently hard coded for alpha=0.95
-
-
- Notes
- -----
- It produces same recursive residuals as other version. This version updates
- the inverse of the X'X matrix and does not require matrix inversion during
- updating. looks efficient but no timing
-
- Confidence interval in Greene and Brown, Durbin and Evans is the same as
- in Ploberger after a little bit of algebra.
-
- References
- ----------
- jplv to check formulas, follows Harvey
- BigJudge 5.5.2b for formula for inverse(X'X) updating
- Greene section 7.5.2
-
- Brown, R. L., J. Durbin, and J. M. Evans. “Techniques for Testing the Constancy of Regression Relationships over Time.†Journal of the Royal Statistical Society. Series B (Methodological) 37, no. 2 (1975): 149-192.
-
- '''
-
- y = olsresults.model.endog
- x = olsresults.model.exog
- nobs, nvars = x.shape
- if skip is None:
- skip = nvars
- rparams = np.nan * np.zeros((nobs,nvars))
- rresid = np.nan * np.zeros((nobs))
- rypred = np.nan * np.zeros((nobs))
- rvarraw = np.nan * np.zeros((nobs))
-
-
- #intialize with skip observations
- x0 = x[:skip]
- y0 = y[:skip]
- #add Ridge to start (not in jplv
- XTXi = np.linalg.inv(np.dot(x0.T, x0)+lamda*np.eye(nvars))
- XTY = np.dot(x0.T, y0) #xi * y #np.dot(xi, y)
- #beta = np.linalg.solve(XTX, XTY)
- beta = np.dot(XTXi, XTY)
- #print 'beta', beta
- rparams[skip-1] = beta
- yipred = np.dot(x[skip-1], beta)
- rypred[skip-1] = yipred
- rresid[skip-1] = y[skip-1] - yipred
- rvarraw[skip-1] = 1 + np.dot(x[skip-1],np.dot(XTXi, x[skip-1]))
- for i in range(skip,nobs):
- xi = x[i:i+1,:]
- yi = y[i]
- #xxT = np.dot(xi.T, xi) #xi is 2d 1 row
- xy = (xi*yi).ravel() # XTY is 1d #np.dot(xi, yi) #np.dot(xi, y)
- #print xy.shape, XTY.shape
- #print XTX
- #print XTY
-
- # get prediction error with previous beta
- yipred = np.dot(xi, beta)
- rypred[i] = yipred
- residi = yi - yipred
- rresid[i] = residi
-
- #update beta and inverse(X'X)
- tmp = np.dot(XTXi, xi.T)
- ft = 1 + np.dot(xi, tmp)
-
- XTXi = XTXi - np.dot(tmp,tmp.T) / ft #BigJudge equ 5.5.15
-
- #print 'beta', beta
- beta = beta + (tmp*residi / ft).ravel() #BigJudge equ 5.5.14
-# #version for testing
-# XTY += xy
-# beta = np.dot(XTXi, XTY)
-# print (tmp*yipred / ft).shape
-# print 'tmp.shape, ft.shape, beta.shape', tmp.shape, ft.shape, beta.shape
- rparams[i] = beta
- rvarraw[i] = ft
-
-
-
- i = nobs
- #beta = np.linalg.solve(XTX, XTY)
- #rparams[i] = beta
-
- rresid_scaled = rresid/np.sqrt(rvarraw) #this is N(0,sigma2) distributed
- nrr = nobs-skip
- sigma2 = rresid_scaled[skip-1:].var(ddof=1) #var or sum of squares ?
- #Greene has var, jplv and Ploberger have sum of squares (Ass.:mean=0)
- rresid_standardized = rresid_scaled/np.sqrt(sigma2) #N(0,1) distributed
- rcusum = rresid_standardized[skip-1:].cumsum()
- #confidence interval points in Greene p136 looks strange. Cleared up
- #this assumes sum of independent standard normal, which does not take into
- #account that we make many tests at the same time
- #rcusumci = np.sqrt(np.arange(skip,nobs+1))*np.array([[-1.],[+1.]])*stats.norm.sf(0.025)
- if alpha == 0.95:
- a = 0.948 #for alpha=0.95
- else:
- a = 1.143 #for alpha=0.99
-
- #following taken from Ploberger,
- crit = a*np.sqrt(nrr)
- rcusumci = (a*np.sqrt(nrr) + a*np.arange(0,nobs-skip)/np.sqrt(nrr)) * np.array([[-1.],[+1.]])
- return rresid, rparams, rypred, rresid_standardized, rresid_scaled, rcusum, rcusumci
-
-
-def breaks_hansen(olsresults):
- '''test for model stability, breaks in parameters for ols, Hansen 1992
-
- Parameters
- ----------
- olsresults : instance of RegressionResults
- uses only endog and exog
- skip : int or None
- number of observations to use for initial OLS, if None then skip is
- set equal to the number of regressors (columns in exog)
-
- Returns
- -------
- teststat : float
- Hansen's test statistic
- crit : structured array
- critical values at alpha=0.95 for different nvars
- pvalue Not yet
- ft, s : arrays
- temporary return for debugging, will be removed
-
- Notes
- -----
- looks good in example, maybe not very powerful for small changes in
- parameters
-
- According to Greene, distribution of test statistics depends on nvar but
- not on nobs.
-
- References
- ----------
- Greene section 7.5.1, notation follows Greene
-
- '''
- y = olsresults.model.endog
- x = olsresults.model.exog
- resid = olsresults.resid
- nobs, nvars = x.shape
- resid2 = resid**2
- ft = np.c_[x*resid[:,None], (resid2 - resid2.mean())]
- s = ft.cumsum(0)
- assert (np.abs(s[-1]) < 1e10).all() #can be optimized away
- F = nobs*(ft[:,:,None]*ft[:,None,:]).sum(0)
- S = (s[:,:,None]*s[:,None,:]).sum(0)
- H = np.trace(np.dot(np.linalg.inv(F), S))
- crit95 = np.array([(2,1.9),(6,3.75),(15,3.75),(19,4.52)],
- dtype = [('nobs',int), ('crit', float)])
- #TODO: get critical values from Bruce Hansens' 1992 paper
- return H, crit95, ft, s
-
-def breaks_cusumolsresid(olsresidual):
- '''cusum test for parameter stability based on ols residuals
-
-
- Notes
- -----
-
- Not clear: Assumption 2 in Ploberger, Kramer assumes that exog x have
- asymptotically zero mean, x.mean(0) = [1, 0, 0, ..., 0]
- Is this really necessary? I don't see how it can affect the test statistic
- under the null. It does make a difference under the alternative.
- Also, the asymptotic distribution of test statistic depends on this.
-
- From examples it looks like there is little power for standard cusum if
- exog (other than constant) have mean zero.
-
- References
- ----------
- Ploberger, Werner, and Walter Kramer. “The Cusum Test with Ols Residuals.â€
- Econometrica 60, no. 2 (March 1992): 271-285.
-
- '''
- resid = olsresidual.ravel()
- nobssigma2 = (resid**2).sum()
- #B is asymptotically a Brownian Bridge
- B = resid.cumsum()/np.sqrt(nobssigma2) # use T*sigma directly
- sup_b = np.abs(B).max() #asymptotically distributed as standard Brownian Bridge
- crit = [(1,1.63), (5, 1.36), (10, 1.22)]
- #Note stats.kstwobign.isf(0.1) is distribution of sup.abs of Brownian Bridge
- #>>> stats.kstwobign.isf([0.01,0.05,0.1])
- #array([ 1.62762361, 1.35809864, 1.22384787])
- pval = stats.kstwobign.sf(sup_b)
- return sup_b, pval, crit
-
-#def breaks_cusum(recolsresid):
-# '''renormalized cusum test for parameter stability based on recursive residuals
-#
-#
-# still incorrect: in PK, the normalization for sigma is by T not T-K
-# also the test statistic is asymptotically a Wiener Process, Brownian motion
-# not Brownian Bridge
-# for testing: result reject should be identical as in standard cusum version
-#
-# References
-# ----------
-# Ploberger, Werner, and Walter Kramer. “The Cusum Test with Ols Residuals.â€
-# Econometrica 60, no. 2 (March 1992): 271-285.
-#
-# '''
-# resid = recolsresid.ravel()
-# nobssigma2 = (resid**2).sum()
-# #B is asymptotically a Brownian Bridge
-# B = resid.cumsum()/np.sqrt(nobssigma2) # use T*sigma directly
-# nobs = len(resid)
-# denom = 1. + 2. * np.arange(nobs)/(nobs-1.) #not sure about limits
-# sup_b = np.abs(B/denom).max() #asymptotically distributed as standard Brownian Bridge
-# crit = [(1,1.63), (5, 1.36), (10, 1.22)]
-# #Note stats.kstwobign.isf(0.1) is distribution of sup.abs of Brownian Bridge
-# #>>> stats.kstwobign.isf([0.01,0.05,0.1])
-# #array([ 1.62762361, 1.35809864, 1.22384787])
-# pval = stats.kstwobign.sf(sup_b)
-# return sup_b, pval, crit
-
-
-def breaks_AP(endog, exog, skip):
- '''supLM, expLM and aveLM by Andrews, and Andrews,Ploberger
-
- p-values by B Hansen
-
- just idea for computation of sequence of tests with given change point
- (Chow tests)
- run recursive ols both forward and backward, match the two so they form a
- split of the data, calculate sum of squares for residuals and get test
- statistic for each breakpoint between skip and nobs-skip
- need to put recursive ols (residuals) into separate function
-
- alternative: B Hansen loops over breakpoints only once and updates
- x'x and xe'xe
- update: Andrews is based on GMM estimation not OLS, LM test statistic is easy
- to compute because it only requires full sample GMM estimate (p.837)
- with GMM the test has much wider applicability than just OLS
-
-
-
- for testing loop over single breakpoint Chow test function
-
- '''
- pass
-
-
-#delete when testing is finished
-class StatTestMC(object):
- """class to run Monte Carlo study on a statistical test'''
-
- TODO
- print summary, for quantiles and for histogram
- draft in trying out script log
-
-
- this has been copied to tools/mctools.py, with improvements
-
- """
-
- def __init__(self, dgp, statistic):
- self.dgp = dgp #staticmethod(dgp) #no self
- self.statistic = statistic # staticmethod(statistic) #no self
-
- def run(self, nrepl, statindices=None, dgpargs=[], statsargs=[]):
- '''run the actual Monte Carlo and save results
-
-
- '''
- self.nrepl = nrepl
- self.statindices = statindices
- self.dgpargs = dgpargs
- self.statsargs = statsargs
-
- dgp = self.dgp
- statfun = self.statistic # name ?
-
- #single return statistic
- if statindices is None:
- self.nreturn = nreturns = 1
- mcres = np.zeros(nrepl)
- for ii in range(nrepl-1):
- x = dgp(*dgpargs) #(1e-4+np.random.randn(nobs)).cumsum()
- mcres[ii] = statfun(x, *statsargs) #unitroot_adf(x, 2,trendorder=0, autolag=None)
- #more than one return statistic
- else:
- self.nreturn = nreturns = len(statindices)
- self.mcres = mcres = np.zeros((nrepl, nreturns))
- for ii in range(nrepl-1):
- x = dgp(*dgpargs) #(1e-4+np.random.randn(nobs)).cumsum()
- ret = statfun(x, *statsargs)
- mcres[ii] = [ret[i] for i in statindices]
-
- self.mcres = mcres
-
- def histogram(self, idx=None, critval=None):
- '''calculate histogram values
-
- does not do any plotting
- '''
- if self.mcres.ndim == 2:
- if not idx is None:
- mcres = self.mcres[:,idx]
- else:
- raise ValueError('currently only 1 statistic at a time')
- else:
- mcres = self.mcres
-
- if critval is None:
- histo = np.histogram(mcres, bins=10)
- else:
- if not critval[0] == -np.inf:
- bins=np.r_[-np.inf, critval, np.inf]
- if not critval[0] == -np.inf:
- bins=np.r_[bins, np.inf]
- histo = np.histogram(mcres,
- bins=np.r_[-np.inf, critval, np.inf])
-
- self.histo = histo
- self.cumhisto = np.cumsum(histo[0])*1./self.nrepl
- self.cumhistoreversed = np.cumsum(histo[0][::-1])[::-1]*1./self.nrepl
- return histo, self.cumhisto, self.cumhistoreversed
-
- def quantiles(self, idx=None, frac=[0.01, 0.025, 0.05, 0.1, 0.975]):
- '''calculate quantiles of Monte Carlo results
-
- '''
-
- if self.mcres.ndim == 2:
- if not idx is None:
- mcres = self.mcres[:,idx]
- else:
- raise ValueError('currently only 1 statistic at a time')
- else:
- mcres = self.mcres
-
- self.frac = frac = np.asarray(frac)
- self.mcressort = mcressort = np.sort(self.mcres)
- return frac, mcressort[(self.nrepl*frac).astype(int)]
-
-if __name__ == '__main__':
-
- examples = ['adf']
- if 'adf' in examples:
-
- x = np.random.randn(20)
- print acorr_ljungbox(x,4)
- print unitroot_adf(x)
-
- nrepl = 100
- nobs = 100
- mcres = np.zeros(nrepl)
- for ii in range(nrepl-1):
- x = (1e-4+np.random.randn(nobs)).cumsum()
- mcres[ii] = unitroot_adf(x, 2,trendorder=0, autolag=None)[0]
-
- print (mcres<-2.57).sum()
- print np.histogram(mcres)
- mcressort = np.sort(mcres)
- for ratio in [0.01, 0.025, 0.05, 0.1]:
- print ratio, mcressort[int(nrepl*ratio)]
-
- print 'critical values in Green table 20.5'
- print 'sample size = 100'
- print 'with constant'
- print '0.01: -19.8, 0.025: -16.3, 0.05: -13.7, 0.01: -11.0, 0.975: 0.47'
-
- print '0.01: -3.50, 0.025: -3.17, 0.05: -2.90, 0.01: -2.58, 0.975: 0.26'
- crvdg = dict([map(float,s.split(':')) for s in ('0.01: -19.8, 0.025: -16.3, 0.05: -13.7, 0.01: -11.0, 0.975: 0.47'.split(','))])
- crvd = dict([map(float,s.split(':')) for s in ('0.01: -3.50, 0.025: -3.17, 0.05: -2.90, 0.01: -2.58, 0.975: 0.26'.split(','))])
- '''
- >>> crvd
- {0.050000000000000003: -13.699999999999999, 0.97499999999999998: 0.46999999999999997, 0.025000000000000001: -16.300000000000001, 0.01: -11.0}
- >>> sorted(crvd.values())
- [-16.300000000000001, -13.699999999999999, -11.0, 0.46999999999999997]
- '''
-
- #for trend = 0
- crit_5lags0p05 =-4.41519 + (-14.0406)/nobs + (-12.575)/nobs**2
- print crit_5lags0p05
-
-
- adfstat, _,_,resstore = unitroot_adf(x, 2,trendorder=0, autolag=None, store=1)
-
- print (mcres>crit_5lags0p05).sum()
-
- print resstore.resols.model.exog[-5:]
- print x[-5:]
-
- print np.histogram(mcres, bins=[-np.inf, -3.5, -3.17, -2.9 , -2.58, 0.26, np.inf])
-
- print mcressort[(nrepl*(np.array([0.01, 0.025, 0.05, 0.1, 0.975]))).astype(int)]
-
-
- def randwalksim(nobs=100, drift=0.0):
- return (drift+np.random.randn(nobs)).cumsum()
-
- def normalnoisesim(nobs=500, loc=0.0):
- return (loc+np.random.randn(nobs))
-
- def adf20(x):
- return unitroot_adf(x, 2,trendorder=0, autolag=None)[:2]
-
- print '\nResults with MC class'
- mc1 = StatTestMC(randwalksim, adf20)
- mc1.run(1000, statindices=[0,1])
- print mc1.histogram(0, critval=[-3.5, -3.17, -2.9 , -2.58, 0.26])
- print mc1.quantiles(0)
-
- print '\nLjung Box'
-
- def lb4(x):
- s,p = acorr_ljungbox(x, lags=4)
- return s[-1], p[-1]
-
- def lb4(x):
- s,p = acorr_ljungbox(x, lags=1)
- return s[0], p[0]
-
- print 'Results with MC class'
- mc1 = StatTestMC(normalnoisesim, lb4)
- mc1.run(1000, statindices=[0,1])
- print mc1.histogram(1, critval=[0.01, 0.025, 0.05, 0.1, 0.975])
- print mc1.quantiles(1)
- print mc1.quantiles(0)
- print mc1.histogram(0)
-
- nobs = 100
- x = np.ones((nobs,2))
- x[:,1] = np.arange(nobs)/20.
- y = x.sum(1) + 1.01*(1+1.5*(x[:,1]>10))*np.random.rand(nobs)
- print het_goldfeldquandt(y,x, 1)
-
- y = x.sum(1) + 1.01*(1+0.5*(x[:,1]>10))*np.random.rand(nobs)
- print het_goldfeldquandt(y,x, 1)
-
- y = x.sum(1) + 1.01*(1-0.5*(x[:,1]>10))*np.random.rand(nobs)
- print het_goldfeldquandt(y,x, 1)
-
- print het_breushpagan(y,x)
- print het_white(y,x)
-
- f,p = het_goldfeldquandt(y,x, 1)
- print f, p
- resgq = het_goldfeldquandt(y,x, 1, retres=True)
- print resgq
-
- #this is just a syntax check:
- print neweywestcov(y, x)
-
- resols1 = sm.OLS(y, x).fit()
- print neweywestcov(resols1.resid, x)
- print resols1.cov_params()
- print resols1.HC0_se
- print resols1.cov_HC0
-
- y = x.sum(1) + 10.*(1-0.5*(x[:,1]>10))*np.random.rand(nobs)
- print HetGoldfeldQuandt().run(y,x, 1, alternative='dec')
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/ex_newtests.py b/statsmodels/scikits/statsmodels/sandbox/stats/ex_newtests.py
deleted file mode 100644
index a5c5af0..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/ex_newtests.py
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-from diagnostic import unitroot_adf
-
-import scikits.statsmodels.datasets.macrodata.data as macro
-
-macrod = macro.load().data
-
-print macro.NOTE
-
-print macrod.dtype.names
-
-datatrendli = [
- ('realgdp', 1),
- ('realcons', 1),
- ('realinv', 1),
- ('realgovt', 1),
- ('realdpi', 1),
- ('cpi', 1),
- ('m1', 1),
- ('tbilrate', 0),
- ('unemp',0),
- ('pop', 1),
- ('infl',0),
- ('realint', 0)
- ]
-
-print '%-10s %5s %-8s' % ('variable', 'trend', ' adf')
-for name, torder in datatrendli:
- adf_, pval = unitroot_adf(macrod[name], trendorder=torder)[:2]
- print '%-10s %5d %8.4f %8.4f' % (name, torder, adf_, pval)
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/multicomp.py b/statsmodels/scikits/statsmodels/sandbox/stats/multicomp.py
deleted file mode 100644
index 8e534d8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/multicomp.py
+++ /dev/null
@@ -1,1937 +0,0 @@
-'''
-
-from pystatsmodels mailinglist 20100524
-
-Notes:
- - unfinished, unverified, but most parts seem to work in MonteCarlo
- - one example taken from lecture notes looks ok
- - needs cases with non-monotonic inequality for test to see difference between
- one-step, step-up and step-down procedures
- - FDR doesn't look really better then Bonferoni in the MC examples that I tried
-update:
- - now tested against R, stats and multtest,
- I have all of their methods for p-value correction
- - getting Hommel was impossible until I found reference for pvalue correction
- - now, since I have p-values correction, some of the original tests (rej/norej)
- implementation is not really needed anymore. I think I keep it for reference.
- Test procedure for Hommel in development session log
- - I haven't updated other functions and classes in here.
- - multtest has some good helper function according to docs
- - still need to update references, the real papers
- - fdr with estimated true hypothesis still missing
- - multiple comparison procedures incomplete or missing
- - I will get multiple comparison for now only for independent case, which might
- be conservative in correlated case (?).
-
-
-some References:
-
-Gibbons, Jean Dickinson and Chakraborti Subhabrata, 2003, Nonparametric Statistical
-Inference, Fourth Edition, Marcel Dekker
- p.363: 10.4 THE KRUSKAL-WALLIS ONE-WAY ANOVA TEST AND MULTIPLE COMPARISONS
- p.367: multiple comparison for kruskal formula used in multicomp.kruskal
-
-Sheskin, David J., 2004, Handbook of Parametric and Nonparametric Statistical
-Procedures, 3rd ed., Chapman&Hall/CRC
- Test 21: The Single-Factor Between-Subjects Analysis of Variance
- Test 22: The Kruskal-Wallis One-Way Analysis of Variance by Ranks Test
-
-Zwillinger, Daniel and Stephen Kokoska, 2000, CRC standard probability and
-statistics tables and formulae, Chapman&Hall/CRC
- 14.9 WILCOXON RANKSUM (MANN WHITNEY) TEST
-
-
-S. Paul Wright, Adjusted P-Values for Simultaneous Inference, Biometrics
- Vol. 48, No. 4 (Dec., 1992), pp. 1005-1013, International Biometric Society
- Stable URL: http://www.jstor.org/stable/2532694
- (p-value correction for Hommel in appendix)
-
-for multicomparison
-
-new book "multiple comparison in R"
-Hsu is a good reference but I don't have it.
-
-
-Author: Josef Pktd and example from H Raja and rewrite from Vincent Davis
-
-
-TODO
-----
-
-* handle exception if empty, shows up only sometimes when running this
-- DONE I think
-
-Traceback (most recent call last):
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\stats\multicomp.py", line 711, in
- print 'sh', multipletests(tpval, alpha=0.05, method='sh')
- File "C:\Josef\eclipsegworkspace\statsmodels-josef-experimental-gsoc\scikits\statsmodels\sandbox\stats\multicomp.py", line 241, in multipletests
- rejectmax = np.max(np.nonzero(reject))
- File "C:\Programs\Python25\lib\site-packages\numpy\core\fromnumeric.py", line 1765, in amax
- return _wrapit(a, 'max', axis, out)
- File "C:\Programs\Python25\lib\site-packages\numpy\core\fromnumeric.py", line 37, in _wrapit
- result = getattr(asarray(obj),method)(*args, **kwds)
-ValueError: zero-size array to ufunc.reduce without identity
-
-* name of function multipletests, rename to something like pvalue_correction?
-
-
-'''
-
-
-#import xlrd
-#import xlwt
-import scipy.stats
-import numpy
-import numpy as np
-import math
-import copy
-from scipy import stats
-from scikits.statsmodels.iolib.table import SimpleTable
-from numpy.testing import assert_almost_equal, assert_equal
-
-
-qcrit = '''
- 2 3 4 5 6 7 8 9 10
-5 3.64 5.70 4.60 6.98 5.22 7.80 5.67 8.42 6.03 8.91 6.33 9.32 6.58 9.67 6.80 9.97 6.99 10.24
-6 3.46 5.24 4.34 6.33 4.90 7.03 5.30 7.56 5.63 7.97 5.90 8.32 6.12 8.61 6.32 8.87 6.49 9.10
-7 3.34 4.95 4.16 5.92 4.68 6.54 5.06 7.01 5.36 7.37 5.61 7.68 5.82 7.94 6.00 8.17 6.16 8.37
-8 3.26 4.75 4.04 5.64 4.53 6.20 4.89 6.62 5.17 6.96 5.40 7.24 5.60 7.47 5.77 7.68 5.92 7.86
-9 3.20 4.60 3.95 5.43 4.41 5.96 4.76 6.35 5.02 6.66 5.24 6.91 5.43 7.13 5.59 7.33 5.74 7.49
-10 3.15 4.48 3.88 5.27 4.33 5.77 4.65 6.14 4.91 6.43 5.12 6.67 5.30 6.87 5.46 7.05 5.60 7.21
-11 3.11 4.39 3.82 5.15 4.26 5.62 4.57 5.97 4.82 6.25 5.03 6.48 5.20 6.67 5.35 6.84 5.49 6.99
-12 3.08 4.32 3.77 5.05 4.20 5.50 4.51 5.84 4.75 6.10 4.95 6.32 5.12 6.51 5.27 6.67 5.39 6.81
-13 3.06 4.26 3.73 4.96 4.15 5.40 4.45 5.73 4.69 5.98 4.88 6.19 5.05 6.37 5.19 6.53 5.32 6.67
-14 3.03 4.21 3.70 4.89 4.11 5.32 4.41 5.63 4.64 5.88 4.83 6.08 4.99 6.26 5.13 6.41 5.25 6.54
-15 3.01 4.17 3.67 4.84 4.08 5.25 4.37 5.56 4.59 5.80 4.78 5.99 4.94 6.16 5.08 6.31 5.20 6.44
-16 3.00 4.13 3.65 4.79 4.05 5.19 4.33 5.49 4.56 5.72 4.74 5.92 4.90 6.08 5.03 6.22 5.15 6.35
-17 2.98 4.10 3.63 4.74 4.02 5.14 4.30 5.43 4.52 5.66 4.70 5.85 4.86 6.01 4.99 6.15 5.11 6.27
-18 2.97 4.07 3.61 4.70 4.00 5.09 4.28 5.38 4.49 5.60 4.67 5.79 4.82 5.94 4.96 6.08 5.07 6.20
-19 2.96 4.05 3.59 4.67 3.98 5.05 4.25 5.33 4.47 5.55 4.65 5.73 4.79 5.89 4.92 6.02 5.04 6.14
-20 2.95 4.02 3.58 4.64 3.96 5.02 4.23 5.29 4.45 5.51 4.62 5.69 4.77 5.84 4.90 5.97 5.01 6.09
-24 2.92 3.96 3.53 4.55 3.90 4.91 4.17 5.17 4.37 5.37 4.54 5.54 4.68 5.69 4.81 5.81 4.92 5.92
-30 2.89 3.89 3.49 4.45 3.85 4.80 4.10 5.05 4.30 5.24 4.46 5.40 4.60 5.54 4.72 5.65 4.82 5.76
-40 2.86 3.82 3.44 4.37 3.79 4.70 4.04 4.93 4.23 5.11 4.39 5.26 4.52 5.39 4.63 5.50 4.73 5.60
-60 2.83 3.76 3.40 4.28 3.74 4.59 3.98 4.82 4.16 4.99 4.31 5.13 4.44 5.25 4.55 5.36 4.65 5.45
-120 2.80 3.70 3.36 4.20 3.68 4.50 3.92 4.71 4.10 4.87 4.24 5.01 4.36 5.12 4.47 5.21 4.56 5.30
-infinity 2.77 3.64 3.31 4.12 3.63 4.40 3.86 4.60 4.03 4.76 4.17 4.88 4.29 4.99 4.39 5.08 4.47 5.16
-'''
-
-res = [line.split() for line in qcrit.replace('infinity','9999').split('\n')]
-c=np.array(res[2:-1]).astype(float)
-#c[c==9999] = np.inf
-ccols = np.arange(2,11)
-crows = c[:,0]
-cv005 = c[:, 1::2]
-cv001 = c[:, 2::2]
-
-from scipy import interpolate
-def get_tukeyQcrit(k, df, alpha=0.05):
- '''
- return critical values for Tukey's HSD (Q)
-
- Parameters
- ----------
- k : int in {2, ..., 10}
- number of tests
- df : int
- degrees of freedom of error term
- alpha : {0.05, 0.01}
- type 1 error, 1-confidence level
-
-
-
- not enough error checking for limitations
- '''
- if alpha == 0.05:
- intp = interpolate.interp1d(crows, cv005[:,k-2])
- elif alpha == 0.01:
- intp = interpolate.interp1d(crows, cv001[:,k-2])
- return intp(df)
-
-
-def Tukeythreegene(first,second,third):
- #Performing the Tukey HSD post-hoc test for three genes
-## qwb = xlrd.open_workbook('F:/Lab/bioinformatics/qcrittable.xls')
-## #opening the workbook containing the q crit table
-## qwb.sheet_names()
-## qcrittable = qwb.sheet_by_name(u'Sheet1')
-
- firstmean = numpy.mean(first) #means of the three arrays
- secondmean = numpy.mean(second)
- thirdmean = numpy.mean(third)
-
- firststd = numpy.std(first) #standard deviations of the threearrays
- secondstd = numpy.std(second)
- thirdstd = numpy.std(third)
-
- firsts2 = math.pow(firststd,2) #standard deviation squared of the three arrays
- seconds2 = math.pow(secondstd,2)
- thirds2 = math.pow(thirdstd,2)
-
- mserrornum = firsts2*2+seconds2*2+thirds2*2 #numerator for mean square error
- mserrorden = (len(first)+len(second)+len(third))-3 #denominator for mean square error
- mserror = mserrornum/mserrorden #mean square error
-
- standarderror = math.sqrt(mserror/len(first))
- #standard error, which is square root of mserror and the number of samples in a group
-
- dftotal = len(first)+len(second)+len(third)-1 #various degrees of freedom
- dfgroups = 2
- dferror = dftotal-dfgroups
-
- qcrit = 0.5 # fix arbitrary#qcrittable.cell(dftotal, 3).value
- qcrit = get_tukeyQcrit(3, dftotal, alpha=0.05)
- #getting the q critical value, for degrees of freedom total and 3 groups
-
- qtest3to1 = (math.fabs(thirdmean-firstmean))/standarderror
- #calculating q test statistic values
- qtest3to2 = (math.fabs(thirdmean-secondmean))/standarderror
- qtest2to1 = (math.fabs(secondmean-firstmean))/standarderror
-
- conclusion = []
-
-## print qcrit
- print qtest3to1
- print qtest3to2
- print qtest2to1
-
- if(qtest3to1>qcrit): #testing all q test statistic values to q critical values
- conclusion.append('3to1null')
- else:
- conclusion.append('3to1alt')
- if(qtest3to2>qcrit):
- conclusion.append('3to2null')
- else:
- conclusion.append('3to2alt')
- if(qtest2to1>qcrit):
- conclusion.append('2to1null')
- else:
- conclusion.append('2to1alt')
-
- return conclusion
-
-
-#rewrite by Vincent
-def Tukeythreegene2(genes): #Performing the Tukey HSD post-hoc test for three genes
- """gend is a list, ie [first, second, third]"""
-# qwb = xlrd.open_workbook('F:/Lab/bioinformatics/qcrittable.xls')
- #opening the workbook containing the q crit table
-# qwb.sheet_names()
-# qcrittable = qwb.sheet_by_name(u'Sheet1')
-
- means = []
- stds = []
- for gene in genes:
- means.append(numpy.mean(gene))
- std.append(numpy.std(gene))
-
- #firstmean = numpy.mean(first) #means of the three arrays
- #secondmean = numpy.mean(second)
- #thirdmean = numpy.mean(third)
-
- #firststd = numpy.std(first) #standard deviations of the three arrays
- #secondstd = numpy.std(second)
- #thirdstd = numpy.std(third)
-
- stds2 = []
- for std in stds:
- stds2.append(math.pow(std,2))
-
-
- #firsts2 = math.pow(firststd,2) #standard deviation squared of the three arrays
- #seconds2 = math.pow(secondstd,2)
- #thirds2 = math.pow(thirdstd,2)
-
- #mserrornum = firsts2*2+seconds2*2+thirds2*2 #numerator for mean square error
- mserrornum = sum(stds2)*2
- mserrorden = (len(genes[0])+len(genes[1])+len(genes[2]))-3 #denominator for mean square error
- mserror = mserrornum/mserrorden #mean square error
-
-
-def catstack(args):
- x = np.hstack(args)
- labels = np.hstack([k*np.ones(len(arr)) for k,arr in enumerate(args)])
- return x, labels
-
-#==============================================
-#
-# Part 1: Multiple Tests and P-Value Correction
-#
-#==============================================
-
-
-def multipletests(pvals, alpha=0.05, method='hs', returnsorted=False):
- '''test results and p-value correction for multiple tests
-
-
- Parameters
- ----------
- pvals : array_like
- uncorrected p-values
- alpha : float
- FWER, family-wise error rate, e.g. 0.1
- method : string
- Method used for testing and adjustment of pvalues. Can be either the
- full name or initial letters. Available methods are ::
-
- `bonferroni` : one-step correction
- `sidak` : on-step correction
- `holm-sidak` :
- `holm` :
- `simes-hochberg` :
- `hommel` :
- `fdr_bh` : Benjamini/Hochberg
- `fdr_by` : Benjamini/Yekutieli
-
- returnsorted : bool
- not tested, return sorted p-values instead of original sequence
-
- Returns
- -------
- reject : array, boolean
- true for hypothesis that can be rejected for given alpha
- pvals_corrected : array
- p-values corrected for multiple tests
- alphacSidak: float
- corrected pvalue with Sidak method
- alphacBonf: float
- corrected pvalue with Sidak method
-
-
- Notes
- -----
- all corrected pvalues now tested against R.
- insufficient "cosmetic" tests yet
- new procedure 'fdr_gbs' not verified yet, p-values derived from scratch not
- reference
-
- All procedures that are included, control FWER or FDR in the independent
- case, and most are robust in the positively correlated case.
-
- fdr_gbs: high power, fdr control for independent case and only small
- violation in positively correlated case
-
-
- there will be API changes.
-
-
- References
- ----------
-
- '''
- pvals = np.asarray(pvals)
- alphaf = alpha # Notation ?
- sortind = np.argsort(pvals)
- pvals = pvals[sortind]
- sortrevind = sortind.argsort()
- ntests = len(pvals)
- alphacSidak = 1 - np.power((1. - alphaf), 1./ntests)
- alphacBonf = alphaf / float(ntests)
- if method.lower() in ['b', 'bonf', 'bonferroni']:
- reject = pvals < alphacBonf
- pvals_corrected = pvals * float(ntests) # not sure
-
- elif method.lower() in ['s', 'sidak']:
- reject = pvals < alphacSidak
- pvals_corrected = 1 - np.power((1. - pvals), ntests) # not sure
-
- elif method.lower() in ['hs', 'holm-sidak']:
- notreject = pvals > alphacSidak
- notrejectmin = np.min(np.nonzero(notreject))
- notreject[notrejectmin:] = True
- reject = ~notreject
- pvals_corrected = None # not yet implemented
- #TODO: new not tested, mainly guessing by analogy
- pvals_corrected_raw = 1 - np.power((1. - pvals), np.arange(ntests, 0, -1))#ntests) # from "sidak" #pvals / alphacSidak * alphaf
- pvals_corrected = np.maximum.accumulate(pvals_corrected_raw)
-
- elif method.lower() in ['h', 'holm']:
- notreject = pvals > alphaf / np.arange(ntests, 0, -1) #alphacSidak
- notrejectmin = np.min(np.nonzero(notreject))
- notreject[notrejectmin:] = True
- reject = ~notreject
- pvals_corrected = None # not yet implemented
- #TODO: new not tested, mainly guessing by analogy
- pvals_corrected_raw = pvals * np.arange(ntests, 0, -1) #ntests) # from "sidak" #pvals / alphacSidak * alphaf
- pvals_corrected = np.maximum.accumulate(pvals_corrected_raw)
-
- elif method.lower() in ['sh', 'simes-hochberg']:
- alphash = alphaf / np.arange(ntests, 0, -1)
- reject = pvals < alphash
- rejind = np.nonzero(reject)
- if rejind[0].size > 0:
- rejectmax = np.max(np.nonzero(reject))
- reject[:rejectmax] = True
- #check else
- pvals_corrected = None # not yet implemented
- #TODO: new not tested, mainly guessing by analogy, looks ok in 1 example
- pvals_corrected_raw = np.arange(ntests, 0, -1) * pvals
- pvals_corrected = np.minimum.accumulate(pvals_corrected_raw[::-1])[::-1]
-
- elif method.lower() in ['ho', 'hommel']:
- a=pvals.copy()
- for m in range(ntests, 1, -1):
- cim = np.min(m * pvals[-m:] / np.arange(1,m+1.))
- a[-m:] = np.maximum(a[-m:], cim)
- a[:-m] = np.maximum(a[:-m], np.minimum(m * pvals[:-m], cim))
- pvals_corrected = a
- reject = a < alphaf
-
- elif method.lower() in ['fdr_bh', 'fdr_i', 'fdr_p', 'fdri', 'fdrp']:
- #delegate, call with sorted pvals
- reject, pvals_corrected = fdrcorrection0(pvals, alpha=alpha,
- method='indep')
- elif method.lower() in ['fdr_by', 'fdr_n', 'fdr_c', 'fdrn', 'fdrcorr']:
- #delegate, call with sorted pvals
- reject, pvals_corrected = fdrcorrection0(pvals, alpha=alpha,
- method='n')
-
- elif method.lower() in ['fdr_gbs']:
- #adaptive stepdown in Favrilov, Benjamini, Sarkar, Annals of Statistics 2009
-## notreject = pvals > alphaf / np.arange(ntests, 0, -1) #alphacSidak
-## notrejectmin = np.min(np.nonzero(notreject))
-## notreject[notrejectmin:] = True
-## reject = ~notreject
-
- ii = np.arange(1, ntests + 1)
- q = (ntests + 1. - ii)/ii * pvals / (1. - pvals)
- pvals_corrected_raw = np.maximum.accumulate(q) #up requirementd
-
- pvals_corrected = np.minimum.accumulate(pvals_corrected_raw[::-1])[::-1]
- reject = pvals_corrected < alpha
-
- else:
- raise ValueError('method not recognized')
-
-
- if not pvals_corrected is None: #not necessary anymore
- pvals_corrected[pvals_corrected>1] = 1
- if returnsorted:
- return reject, pvals_corrected, alphacSidak, alphacBonf
- else:
- if pvals_corrected is None:
- return reject[sortrevind], pvals_corrected, alphacSidak, alphacBonf
- else:
- return reject[sortrevind], pvals_corrected[sortrevind], alphacSidak, alphacBonf
-
-
-
-def maxzero(x):
- '''find all up zero crossings and return the index of the highest
-
- Not used anymore
-
-
- >>> np.random.seed(12345)
- >>> x = np.random.randn(8)
- >>> x
- array([-0.20470766, 0.47894334, -0.51943872, -0.5557303 , 1.96578057,
- 1.39340583, 0.09290788, 0.28174615])
- >>> maxzero(x)
- (4, array([1, 4]))
-
-
- no up-zero-crossing at end
-
- >>> np.random.seed(0)
- >>> x = np.random.randn(8)
- >>> x
- array([ 1.76405235, 0.40015721, 0.97873798, 2.2408932 , 1.86755799,
- -0.97727788, 0.95008842, -0.15135721])
- >>> maxzero(x)
- (None, array([6]))
- '''
- x = np.asarray(x)
- cond1 = x[:-1] < 0
- cond2 = x[1:] > 0
- #allzeros = np.nonzero(np.sign(x[:-1])*np.sign(x[1:]) <= 0)[0] + 1
- allzeros = np.nonzero((cond1 & cond2) | (x[1:]==0))[0] + 1
- if x[-1] >=0:
- maxz = max(allzeros)
- else:
- maxz = None
- return maxz, allzeros
-
-def maxzerodown(x):
- '''find all up zero crossings and return the index of the highest
-
- Not used anymore
-
- >>> np.random.seed(12345)
- >>> x = np.random.randn(8)
- >>> x
- array([-0.20470766, 0.47894334, -0.51943872, -0.5557303 , 1.96578057,
- 1.39340583, 0.09290788, 0.28174615])
- >>> maxzero(x)
- (4, array([1, 4]))
-
-
- no up-zero-crossing at end
-
- >>> np.random.seed(0)
- >>> x = np.random.randn(8)
- >>> x
- array([ 1.76405235, 0.40015721, 0.97873798, 2.2408932 , 1.86755799,
- -0.97727788, 0.95008842, -0.15135721])
- >>> maxzero(x)
- (None, array([6]))
-'''
- x = np.asarray(x)
- cond1 = x[:-1] > 0
- cond2 = x[1:] < 0
- #allzeros = np.nonzero(np.sign(x[:-1])*np.sign(x[1:]) <= 0)[0] + 1
- allzeros = np.nonzero((cond1 & cond2) | (x[1:]==0))[0] + 1
- if x[-1] <=0:
- maxz = max(allzeros)
- else:
- maxz = None
- return maxz, allzeros
-
-def ecdf(x):
- '''no frills empirical cdf used in fdrcorrection
- '''
- nobs = len(x)
- return np.arange(1,nobs+1)/float(nobs)
-
-def rejectionline(n, alpha=0.5):
- '''reference line for rejection in multiple tests
-
- Not used anymore
-
- from: section 3.2, page 60
- '''
- t = np.arange(n)/float(n)
- frej = t/( t * (1-alpha) + alpha)
- return frej
-
-#TODO: rename drop 0 at end
-def fdrcorrection0(pvals, alpha=0.05, method='indep'):
- '''pvalue correction for false discovery rate
-
- This covers Benjamini/Hochberg for independent or positively correlated and
- Benjamini/Yekutieli for general or negatively correlated tests. Both are
- available in the function multipletests, as method=`fdr_bh`, resp. `fdr_by`.
-
- Parameters
- ----------
- pvals : array_like
- set of p-values of the individual tests.
- alpha : float
- error rate
- method : {'indep', 'negcorr')
-
- Returns
- -------
- rejected : array, bool
- True if a hypothesis is rejected, False if not
- pvalue-corrected : array
- pvalues adjusted for multiple hypothesis testing to limit FDR
-
- Notes
- -----
-
- If there is prior information on the fraction of true hypothesis, then alpha
- should be set to alpha * m/m_0 where m is the number of tests,
- given by the p-values, and m_0 is an estimate of the true hypothesis.
- (see Benjamini, Krieger and Yekuteli)
-
- The two-step method of Benjamini, Krieger and Yekutiel that estimates the number
- of false hypotheses will be available (soon).
-
- Method names can be abbreviated to first letter, 'i' or 'p' for fdr_bh and 'n' for
- fdr_by.
-
-
-
- '''
- pvals = np.asarray(pvals)
-
- pvals_sortind = np.argsort(pvals)
- pvals_sorted = pvals[pvals_sortind]
- sortrevind = pvals_sortind.argsort()
-
- if method in ['i', 'indep', 'p', 'poscorr']:
- ecdffactor = ecdf(pvals_sorted)
- elif method in ['n', 'negcorr']:
- cm = np.sum(1./np.arange(1, len(pvals_sorted)+1)) #corrected this
- ecdffactor = ecdf(pvals_sorted) / cm
-## elif method in ['n', 'negcorr']:
-## cm = np.sum(np.arange(len(pvals)))
-## ecdffactor = ecdf(pvals_sorted)/cm
- else:
- raise ValueError('only indep and necorr implemented')
- reject = pvals_sorted < ecdffactor*alpha
- if reject.any():
- rejectmax = max(np.nonzero(reject)[0])
- else:
- rejectmax = 0
- reject[:rejectmax] = True
-
- pvals_corrected_raw = pvals_sorted / ecdffactor
- pvals_corrected = np.minimum.accumulate(pvals_corrected_raw[::-1])[::-1]
- pvals_corrected[pvals_corrected>1] = 1
- return reject[sortrevind], pvals_corrected[sortrevind]
- #return reject[pvals_sortind.argsort()]
-
-def fdrcorrection_twostage(pvals, alpha=0.05, iter=False):
- '''(iterated) two stage linear step-up procedure with estimation of number of true
- hypotheses
-
- Benjamini, Krieger and Yekuteli, procedure in Definition 6
-
- Parameters
- ----------
- pvals : array_like
- set of p-values of the individual tests.
- alpha : float
- error rate
- method : {'indep', 'negcorr')
-
- Returns
- -------
- rejected : array, bool
- True if a hypothesis is rejected, False if not
- pvalue-corrected : array
- pvalues adjusted for multiple hypotheses testing to limit FDR
- m0 : int
- ntest - rej, estimated number of true hypotheses
- alpha_stages : list of floats
- A list of alphas that have been used at each stage
-
- Notes
- -----
- The returned corrected p-values, are from the last stage of the fdr_bh linear step-up
- procedure (fdrcorrection0 with method='indep')
-
- BKY described several other multi-stage methods, which would be easy to implement.
- However, in their simulation the simple two-stage method (with iter=False) was the
- most robust to the presence of positive correlation
-
- TODO: What should be returned?
-
- '''
- ntests = len(pvals)
- alpha_prime = alpha/(1+alpha)
- rej, pvalscorr = fdrcorrection0(pvals, alpha=alpha_prime, method='indep')
- r1 = rej.sum()
- if (r1 == 0) or (r1 == ntests):
- return rej, pvalscorr, ntests - r1
- ri_old = r1
- alpha_stages = [alpha_prime]
- while 1:
- ntests0 = ntests - ri_old
- alpha_star = alpha_prime * ntests / ntests0
- alpha_stages.append(alpha_star)
- #print ntests0, alpha_star
- rej, pvalscorr = fdrcorrection0(pvals, alpha=alpha_star, method='indep')
- ri = rej.sum()
- if (not iter) or ri == ri_old:
- break
- elif ri < ri_old:
- raise RuntimeError(" oops - shouldn't be here")
- ri_old = ri
-
- return rej, pvalscorr, ntests - ri, alpha_stages
-
-
-
-
-
-#I don't remember what I changed or why 2 versions,
-#this follows german diss ??? with rline
-#this might be useful if the null hypothesis is not "all effects are zero"
-#rename to _bak and working again on fdrcorrection0
-def fdrcorrection_bak(pvals, alpha=0.05, method='indep'):
- '''Reject False discovery rate correction for pvalues
-
- Old version, to be deleted
-
-
- missing: methods that estimate fraction of true hypotheses
-
- '''
- pvals = np.asarray(pvals)
-
-
- pvals_sortind = np.argsort(pvals)
- pvals_sorted = pvals[pvals_sortind]
- pecdf = ecdf(pvals_sorted)
- if method in ['i', 'indep', 'p', 'poscorr']:
- rline = pvals_sorted / alpha
- elif method in ['n', 'negcorr']:
- cm = np.sum(1./np.arange(1, len(pvals)))
- rline = pvals_sorted / alpha * cm
- elif method in ['g', 'onegcorr']: #what's this ? german diss
- rline = pvals_sorted / (pvals_sorted*(1-alpha) + alpha)
- elif method in ['oth', 'o2negcorr']: # other invalid, cut-paste
- cm = np.sum(np.arange(len(pvals)))
- rline = pvals_sorted / alpha /cm
- else:
- raise ValueError('method not available')
-
- reject = pecdf >= rline
- if reject.any():
- rejectmax = max(np.nonzero(reject)[0])
- else:
- rejectmax = 0
- reject[:rejectmax] = True
- return reject[pvals_sortind.argsort()]
-
-def mcfdr(nrepl=100, nobs=50, ntests=10, ntrue=6, mu=0.5, alpha=0.05, rho=0.):
- '''MonteCarlo to test fdrcorrection
- '''
- nfalse = ntests - ntrue
- locs = np.array([0.]*ntrue + [mu]*(ntests - ntrue))
- results = []
- for i in xrange(nrepl):
- #rvs = locs + stats.norm.rvs(size=(nobs, ntests))
- rvs = locs + randmvn(rho, size=(nobs, ntests))
- tt, tpval = stats.ttest_1samp(rvs, 0)
- res = fdrcorrection_bak(np.abs(tpval), alpha=alpha, method='i')
- res0 = fdrcorrection0(np.abs(tpval), alpha=alpha)
- #res and res0 give the same results
- results.append([np.sum(res[:ntrue]), np.sum(res[ntrue:])] +
- [np.sum(res0[:ntrue]), np.sum(res0[ntrue:])] +
- res.tolist() +
- np.sort(tpval).tolist() +
- [np.sum(tpval[:ntrue] 1]
- ntot = float(len(xranks));
- tiecorrection = 1 - (nties**3 - nties).sum()/(ntot**3 - ntot)
- return tiecorrection
-
-
-class GroupsStats(object):
- '''
- statistics by groups (another version)
-
- groupstats as a class with lazy evaluation (not yet - decorators are still
- missing)
-
- written this time as equivalent of scipy.stats.rankdata
- gs = GroupsStats(X, useranks=True)
- assert_almost_equal(gs.groupmeanfilter, stats.rankdata(X[:,0]), 15)
-
- TODO: incomplete doc strings
-
- '''
-
- def __init__(self, x, useranks=False, uni=None, intlab=None):
- '''descriptive statistics by groups
-
- Parameters
- ----------
- x : array, 2d
- first column data, second column group labels
- useranks : boolean
- if true, then use ranks as data corresponding to the
- scipy.stats.rankdata definition (start at 1, ties get mean)
- uni, intlab : arrays (optional)
- to avoid call to unique, these can be given as inputs
-
-
- '''
- self.x = np.asarray(x)
- if intlab is None:
- uni, intlab = np.unique(x[:,1], return_inverse=True)
- elif uni is None:
- uni = np.unique(x[:,1])
-
- self.useranks = useranks
-
-
- self.uni = uni
- self.intlab = intlab
- self.groupnobs = groupnobs = np.bincount(intlab)
-
- #temporary until separated and made all lazy
- self.runbasic(useranks=useranks)
-
-
-
- def runbasic_old(self, useranks=False):
- #check: refactoring screwed up case useranks=True
-
- #groupxsum = np.bincount(intlab, weights=X[:,0])
- #groupxmean = groupxsum * 1.0 / groupnobs
- x = self.x
- if useranks:
- self.xx = x[:,1].argsort().argsort() + 1 #rankraw
- else:
- self.xx = x[:,0]
- self.groupsum = groupranksum = np.bincount(self.intlab, weights=self.xx)
- #print 'groupranksum', groupranksum, groupranksum.shape, self.groupnobs.shape
- # start at 1 for stats.rankdata :
- self.groupmean = grouprankmean = groupranksum * 1.0 / self.groupnobs # + 1
- self.groupmeanfilter = grouprankmean[self.intlab]
- #return grouprankmean[intlab]
-
- def runbasic(self, useranks=False):
- #check: refactoring screwed up case useranks=True
-
- #groupxsum = np.bincount(intlab, weights=X[:,0])
- #groupxmean = groupxsum * 1.0 / groupnobs
- x = self.x
- if useranks:
- xuni, xintlab = np.unique(x[:,0], return_inverse=True)
- ranksraw = x[:,0].argsort().argsort() + 1 #rankraw
- self.xx = GroupsStats(np.column_stack([ranksraw, xintlab]),
- useranks=False).groupmeanfilter
- else:
- self.xx = x[:,0]
- self.groupsum = groupranksum = np.bincount(self.intlab, weights=self.xx)
- #print 'groupranksum', groupranksum, groupranksum.shape, self.groupnobs.shape
- # start at 1 for stats.rankdata :
- self.groupmean = grouprankmean = groupranksum * 1.0 / self.groupnobs # + 1
- self.groupmeanfilter = grouprankmean[self.intlab]
- #return grouprankmean[intlab]
-
- def groupdemean(self):
- return self.xx - self.groupmeanfilter
-
- def groupsswithin(self):
- xtmp = self.groupdemean()
- return np.bincount(self.intlab, weights=xtmp**2)
-
- def groupvarwithin(self):
- return self.groupsswithin()/(self.groupnobs-1).sum()
-
-
-class MultiComparison(object):
- '''Tests for multiple comparisons
-
-
- '''
-
- def __init__(self, x, groups):
- self.data = x
- self.groups = groups
- self.groupsunique, self.groupintlab = np.unique(groups, return_inverse=True)
- self.datali = [x[groups == k] for k in self.groupsunique]
- self.pairindices = np.triu_indices(len(self.groupsunique),1) #tuple
- self.nobs = x.shape[0]
-
- def getranks(self):
- '''convert data to rankdata and attach
-
-
- This creates rankdata as it is used for non-parametric tests, where
- in the case of ties the average rank is assigned.
-
-
- '''
- #bug: the next should use self.groupintlab instead of self.groups
- #update: looks fixed
- #self.ranks = GroupsStats(np.column_stack([self.data, self.groups]),
- self.ranks = GroupsStats(np.column_stack([self.data, self.groupintlab]),
- useranks=True)
- self.rankdata = self.ranks.groupmeanfilter
-
-
-
- def kruskal(self, pairs=None, multimethod='T'):
- '''
- pairwise comparison for kruskal-wallis test
-
- This is just a reimplementation of scipy.stats.kruskal and does
- not yet use a multiple comparison correction.
-
- '''
- self.getranks()
- tot = self.nobs
- meanranks = self.ranks.groupmean
- groupnobs = self.ranks.groupnobs
-
-
- # simultaneous/separate treatment of multiple tests
- f=(tot*(tot+1.)/12.)/stats.tiecorrect(self.rankdata) #(xranks)
- print 'MultiComparison.kruskal'
- for i,j in zip(*self.pairindices):
- #pdiff = np.abs(mrs[i] - mrs[j])
- pdiff = np.abs(meanranks[i] - meanranks[j])
- se = np.sqrt(f * np.sum(1./groupnobs[[i,j]] )) #np.array([8,8]))) #Fixme groupnobs[[i,j]] ))
- Q = pdiff/se
-
- print i,j, pdiff, se, pdiff/se, pdiff/se>2.6310,
- print stats.norm.sf(Q)*2
- return stats.norm.sf(Q)*2
-
-
- def allpairtest(self, testfunc, alpha=0.05, method='bonf', pvalidx=1):
- '''run a pairwise test on all pairs with multiple test correction
-
- The statistical test given in testfunc is calculated for all pairs
- and the p-values are adjusted by methods in multipletests. The p-value
- correction is generic and based only on the p-values, and does not
- take any special structure of the hypotheses into account.
-
- Parameters
- ----------
- testfunc : function
- A test function for two (independent) samples. It is assumed that
- the return value on position pvalidx is the p-value.
- alpha : float
- familywise error rate
- method : string
- This specifies the method for the p-value correction. Any method
- of multipletests is possible.
- pvalidx : int (default: 1)
- position of the p-value in the return of testfunc
-
- Returns
- -------
- sumtab : SimpleTable instance
- summary table for printing
-
- errors: TODO: check if this is still wrong, I think it's fixed.
- results from multipletests are in different order
- pval_corrected can be larger than 1 ???
- '''
- res = []
- for i,j in zip(*self.pairindices):
- res.append(testfunc(self.datali[i], self.datali[j]))
- res = np.array(res)
- reject, pvals_corrected, alphacSidak, alphacBonf = \
- multipletests(res[:,pvalidx], alpha=0.05, method=method)
- #print np.column_stack([res[:,0],res[:,1], reject, pvals_corrected])
-
- i1, i2 = self.pairindices
- if pvals_corrected is None:
- resarr = np.array(zip(i1, i2,
- np.round(res[:,0],4),
- np.round(res[:,1],4),
- reject),
- dtype=[('group1', int),
- ('group2', int),
- ('stat',float),
- ('pval',float),
- ('reject', np.bool8)])
- else:
- resarr = np.array(zip(i1, i2,
- np.round(res[:,0],4),
- np.round(res[:,1],4),
- np.round(pvals_corrected,4),
- reject),
- dtype=[('group1', int),
- ('group2', int),
- ('stat',float),
- ('pval',float),
- ('pval_corr',float),
- ('reject', np.bool8)])
- from scikits.statsmodels.iolib.table import SimpleTable
- summtab = SimpleTable(resarr, headers=resarr.dtype.names)
- summtab.title = 'Test Multiple Comparison %s \n%s%4.2f method=%s' % (testfunc.__name__,
- 'FWER=', alpha, method) + \
- '\nalphacSidak=%4.2f, alphacBonf=%5.3f' % (alphacSidak, alphacBonf)
- return summtab, (res, reject, pvals_corrected, alphacSidak, alphacBonf), resarr
-
-
- def tukeyhsd(self, alpha=0.05):
- #unfinished
- self.groupstats = GroupsStats(
- np.column_stack([self.data, self.groupintlab]),
- useranks=False)
-
- means = self.groupstats.groupmean
- nobs = self.groupstats.groupnobs
- #var_ = self.groupstats.groupvarwithin() #possibly an error in varcorrection in this case
- var_ = np.var(self.groupstats.groupdemean())
- res = tukeyhsd(means, nobs, var_, df=None, alpha=0.05, q_crit=None)
-
- resarr = np.array(zip(res[0][0], res[0][1],
- np.round(res[2],4),
- np.round(res[4][:,0],4),
- np.round(res[4][:,1],4),
- res[1]),
- dtype=[('group1', int),
- ('group2', int),
- ('meandiff',float),
- ('lower',float),
- ('upper',float),
- ('reject', np.bool8)])
- summtab = sm.iolib.SimpleTable(resarr, headers=resarr.dtype.names)
- summtab.title = 'Multiple Comparison of Means - Tukey HSD, FWER=%4.2f' % alpha
-
- return summtab, res
-
-
-
-
-
-
-
-
-
-def rankdata(x):
- '''rankdata, equivalent to scipy.stats.rankdata
-
- just a different implementation, I have not yet compared speed
-
- '''
- uni, intlab = np.unique(x[:,0], return_inverse=True)
- groupnobs = np.bincount(intlab)
- groupxsum = np.bincount(intlab, weights=X[:,0])
- groupxmean = groupxsum * 1.0 / groupnobs
-
- rankraw = x[:,0].argsort().argsort()
- groupranksum = np.bincount(intlab, weights=rankraw)
- # start at 1 for stats.rankdata :
- grouprankmean = groupranksum * 1.0 / groupnobs + 1
- return grouprankmean[intlab]
-
-
-#new
-
-def compare_ordered(vals, alpha):
- '''simple ordered sequential comparison of means
-
- vals : array_like
- means or rankmeans for independent groups
-
- incomplete, no return, not used yet
- '''
- vals = np.asarray(vals)
- alphaf = alpha # Notation ?
- sortind = np.argsort(vals)
- pvals = vals[sortind]
- sortrevind = sortind.argsort()
- ntests = len(vals)
- #alphacSidak = 1 - np.power((1. - alphaf), 1./ntests)
- #alphacBonf = alphaf / float(ntests)
- v1, v2 = np.triu_indices(ntests, 1)
- #v1,v2 have wrong sequence
- for i in range(4):
- for j in range(4,i, -1):
- print i,j
-
-
-
-def varcorrection_unbalanced(nobs_all, srange=False):
- '''correction factor for variance with unequal sample sizes
-
- this is just a harmonic mean
-
- Parameters
- ----------
- nobs_all : array_like
- The number of observations for each sample
- srange : bool
- if true, then the correction is divided by the number of samples
- for the variance of the studentized range statistic
-
- Returns
- -------
- correction : float
- Correction factor for variance.
-
-
- Notes
- -----
-
- variance correction factor is
-
- 1/k * sum_i 1/n_i
-
- where k is the number of samples and summation is over i=0,...,k-1.
- If all n_i are the same, then the correction factor is 1.
-
- This needs to be multiplied by the joint variance estimate, means square
- error, MSE. To obtain the correction factor for the standard deviation,
- square root needs to be taken.
-
- '''
- nobs_all = np.asarray(nobs_all)
- if not srange:
- return (1./nobs_all).sum()
- else:
- return (1./nobs_all).sum()/len(nobs_all)
-
-def varcorrection_pairs_unbalanced(nobs_all, srange=False):
- '''correction factor for variance with unequal sample sizes for all pairs
-
- this is just a harmonic mean
-
- Parameters
- ----------
- nobs_all : array_like
- The number of observations for each sample
- srange : bool
- if true, then the correction is divided by 2 for the variance of
- the studentized range statistic
-
- Returns
- -------
- correction : array
- Correction factor for variance.
-
-
- Notes
- -----
-
- variance correction factor is
-
- 1/k * sum_i 1/n_i
-
- where k is the number of samples and summation is over i=0,...,k-1.
- If all n_i are the same, then the correction factor is 1.
-
- This needs to be multiplies by the joint variance estimate, means square
- error, MSE. To obtain the correction factor for the standard deviation,
- square root needs to be taken.
-
- For the studentized range statistic, the resulting factor has to be
- divided by 2.
-
- '''
- #TODO: test and replace with broadcasting
- n1, n2 = np.meshgrid(nobs_all, nobs_all)
- if not srange:
- return (1./n1 + 1./n2)
- else:
- return (1./n1 + 1./n2) / 2.
-
-def varcorrection_unequal(var_all, nobs_all, df_all):
- '''return joint variance from samples with unequal variances and unequal
- sample sizes
-
- something is wrong
-
- Parameters
- ----------
- var_all : array_like
- The variance for each sample
- nobs_all : array_like
- The number of observations for each sample
- df_all : array_like
- degrees of freedom for each sample
-
- Returns
- -------
- varjoint : float
- joint variance.
- dfjoint : float
- joint Satterthwait's degrees of freedom
-
-
- Notes
- -----
- (copy, paste not correct)
- variance is
-
- 1/k * sum_i 1/n_i
-
- where k is the number of samples and summation is over i=0,...,k-1.
- If all n_i are the same, then the correction factor is 1/n.
-
- This needs to be multiplies by the joint variance estimate, means square
- error, MSE. To obtain the correction factor for the standard deviation,
- square root needs to be taken.
-
- This is for variance of mean difference not of studentized range.
- '''
-
- var_all = np.asarray(var_all)
- var_over_n = var_all *1./ nobs_all #avoid integer division
- varjoint = var_over_n.sum()
-
- dfjoint = varjoint**2 / (var_over_n**2 * df_all).sum()
-
- return varjoint, dfjoint
-
-def varcorrection_pairs_unequal(var_all, nobs_all, df_all):
- '''return joint variance from samples with unequal variances and unequal
- sample sizes for all pairs
-
- something is wrong
-
- Parameters
- ----------
- var_all : array_like
- The variance for each sample
- nobs_all : array_like
- The number of observations for each sample
- df_all : array_like
- degrees of freedom for each sample
-
- Returns
- -------
- varjoint : array
- joint variance.
- dfjoint : array
- joint Satterthwait's degrees of freedom
-
-
- Notes
- -----
-
- (copy, paste not correct)
- variance is
-
- 1/k * sum_i 1/n_i
-
- where k is the number of samples and summation is over i=0,...,k-1.
- If all n_i are the same, then the correction factor is 1.
-
- This needs to be multiplies by the joint variance estimate, means square
- error, MSE. To obtain the correction factor for the standard deviation,
- square root needs to be taken.
-
- TODO: something looks wrong with dfjoint, is formula from SPSS
- '''
- #TODO: test and replace with broadcasting
- v1, v2 = np.meshgrid(var_all, var_all)
- n1, n2 = np.meshgrid(nobs_all, nobs_all)
- df1, df2 = np.meshgrid(df_all, df_all)
-
- varjoint = v1/n1 + v2/n2
-
- dfjoint = varjoint**2 / (df1 * (v1/n1)**2 + df2 * (v2/n2)**2)
-
- return varjoint, dfjoint
-
-def tukeyhsd(mean_all, nobs_all, var_all, df=None, alpha=0.05, q_crit=None):
- '''simultaneous Tukey HSD
-
-
- check: instead of sorting, I use absolute value of pairwise differences
- in means. That's irrelevant for the test, but maybe reporting actual
- differences would be better.
- CHANGED: meandiffs are with sign, studentized range uses abs
-
- q_crit added for testing
-
- TODO: error in variance calculation when nobs_all is scalar, missing 1/n
-
- '''
- mean_all = np.asarray(mean_all)
- #check if or when other ones need to be arrays
-
- n_means = len(mean_all)
-
- if df is None:
- df = nobs_all - 1
-
- if np.size(df) == 1: # assumes balanced samples with df = n - 1, n_i = n
- df_total = n_means * df
- df = np.ones(n_means) * df
- else:
- df_total = np.sum(df)
-
- if (np.size(nobs_all) == 1) and (np.size(var_all) == 1):
- #balanced sample sizes and homogenous variance
- var_pairs = 1. * var_all / nobs_all * np.ones((n_means, n_means))
-
- elif np.size(var_all) == 1:
- #unequal sample sizes and homogenous variance
- var_pairs = var_all * varcorrection_pairs_unbalanced(nobs_all,
- srange=True)
- elif np.size(var_all) > 1:
- var_pairs, df_sum = varcorrection_pairs_unequal(nobs_all, var_all, df)
- var_pairs /= 2.
- #check division by two for studentized range
-
- else:
- raise ValueError('not supposed to be here')
-
- #meandiffs_ = mean_all[:,None] - mean_all
- meandiffs_ = mean_all - mean_all[:,None] #reverse sign, check with R example
- std_pairs_ = np.sqrt(var_pairs)
-
- #select all pairs from upper triangle of matrix
- idx1, idx2 = np.triu_indices(n_means, 1)
- meandiffs = meandiffs_[idx1, idx2]
- std_pairs = std_pairs_[idx1, idx2]
-
- st_range = np.abs(meandiffs) / std_pairs #studentized range statistic
-
- df_total_ = max(df_total, 5) #TODO: smallest df in table
- if q_crit is None:
- q_crit = get_tukeyQcrit(n_means, df_total, alpha=alpha)
-
- reject = st_range > q_crit
- crit_int = std_pairs * q_crit
- reject2 = meandiffs > crit_int
-
- confint = np.column_stack((meandiffs - crit_int, meandiffs + crit_int))
-
- return (idx1, idx2), reject, meandiffs, std_pairs, confint, q_crit, \
- df_total, reject2
-
-def distance_st_range(mean_all, nobs_all, var_all, df=None, triu=False):
- '''pairwise distance matrix, outsourced from tukeyhsd
-
-
-
- CHANGED: meandiffs are with sign, studentized range uses abs
-
- q_crit added for testing
-
- TODO: error in variance calculation when nobs_all is scalar, missing 1/n
-
- '''
- mean_all = np.asarray(mean_all)
- #check if or when other ones need to be arrays
-
- n_means = len(mean_all)
-
- if df is None:
- df = nobs_all - 1
-
- if np.size(df) == 1: # assumes balanced samples with df = n - 1, n_i = n
- df_total = n_means * df
- else:
- df_total = np.sum(df)
-
- if (np.size(nobs_all) == 1) and (np.size(var_all) == 1):
- #balanced sample sizes and homogenous variance
- var_pairs = 1. * var_all / nobs_all * np.ones((n_means, n_means))
-
- elif np.size(var_all) == 1:
- #unequal sample sizes and homogenous variance
- var_pairs = var_all * varcorrection_pairs_unbalanced(nobs_all,
- srange=True)
- elif np.size(var_all) > 1:
- var_pairs, df_sum = varcorrection_pairs_unequal(nobs_all, var_all, df)
- var_pairs /= 2.
- #check division by two for studentized range
-
- else:
- raise ValueError('not supposed to be here')
-
- #meandiffs_ = mean_all[:,None] - mean_all
- meandiffs = mean_all - mean_all[:,None] #reverse sign, check with R example
- std_pairs = np.sqrt(var_pairs)
-
- idx1, idx2 = np.triu_indices(n_means, 1)
- if triu:
- #select all pairs from upper triangle of matrix
- meandiffs = meandiffs_[idx1, idx2]
- std_pairs = std_pairs_[idx1, idx2]
-
- st_range = np.abs(meandiffs) / std_pairs #studentized range statistic
-
- return st_range, meandiffs, std_pairs, (idx1,idx2) #return square arrays
-
-
-def contrast_allpairs(nm):
- '''contrast or restriction matrix for all pairs of nm variables
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm*(nm-1)/2, nm)
- contrast matrix for all pairwise comparisons
-
- '''
- contr = []
- for i in range(nm):
- for j in range(i+1, nm):
- contr_row = np.zeros(nm)
- contr_row[i] = 1
- contr_row[j] = -1
- contr.append(contr_row)
- return np.array(contr)
-
-def contrast_all_one(nm):
- '''contrast or restriction matrix for all against first comparison
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm-1, nm)
- contrast matrix for all against first comparisons
-
- '''
- contr = np.column_stack((np.ones(nm-1), -np.eye(nm-1)))
- return contr
-
-def contrast_diff_mean(nm):
- '''contrast or restriction matrix for all against mean comparison
-
- Parameters
- ----------
- nm : int
-
- Returns
- -------
- contr : ndarray, 2d, (nm-1, nm)
- contrast matrix for all against mean comparisons
-
- '''
- return np.eye(nm) - np.ones((nm,nm))/nm
-
-def tukey_pvalues(std_range, nm, df):
- #corrected but very slow with warnings about integration
- from scikits.statsmodels.sandbox.distributions.multivariate import mvstdtprob
- #nm = len(std_range)
- contr = contrast_allpairs(nm)
- corr = np.dot(contr, contr.T)/2.
- tstat = std_range / np.sqrt(2) * np.ones(corr.shape[0]) #need len of all pairs
- return multicontrast_pvalues(tstat, corr, df=df)
-
-def test_tukey_pvalues():
- #testcase with 3 is not good because all pairs has also 3*(3-1)/2=3 elements
- res = tukey_pvalues(3.649, 3, 16) #3.649*np.ones(3), 16)
- assert_almost_equal(0.05, res[0], 3)
- assert_almost_equal(0.05*np.ones(3), res[1], 3)
-
-
-def multicontrast_pvalues(tstat, tcorr, df=None, dist='t', alternative='two-sided'):
- '''pvalues for simultaneous tests
-
- '''
- from scikits.statsmodels.sandbox.distributions.multivariate import mvstdtprob
- if (df is None) and (dist == 't'):
- raise ValueError('df has to be specified for the t-distribution')
- tstat = np.asarray(tstat)
- ntests = len(tstat)
- cc = np.abs(tstat)
- pval_global = 1 - mvstdtprob(-cc,cc, tcorr, df)
- pvals = []
- for ti in cc:
- limits = ti*np.ones(ntests)
- pvals.append(1 - mvstdtprob(-cc,cc, tcorr, df))
-
- return pval_global, np.asarray(pvals)
-
-
-
-
-
-class StepDown(object):
- '''a class for step down methods
-
- This is currently for simple tree subset descend, similar to homogeneous_subsets,
- but checks all leave-one-out subsets instead of assuming an ordered set.
- Comment in SAS manual:
- SAS only uses interval subsets of the sorted list, which is sufficient for range
- tests (maybe also equal variance and balanced sample sizes are required).
- For F-test based critical distances, the restriction to intervals is not sufficient.
-
- This version uses a single critical value of the studentized range distribution
- for all comparisons, and is therefore a step-down version of Tukey HSD.
- The class is written so it can be subclassed, where the get_distance_matrix and
- get_crit are overwritten to obtain other step-down procedures such as REGW.
-
- iter_subsets can be overwritten, to get a recursion as in the many to one comparison
- with a control such as in Dunnet's test.
-
-
- A one-sided right tail test is not covered because the direction of the inequality
- is hard coded in check_set. Also Peritz's check of partitions is not possible, but
- I have not seen it mentioned in any more recent references.
- I have only partially read the step-down procedure for closed tests by Westfall.
-
- One change to make it more flexible, is to separate out the decision on a subset,
- also because the F-based tests, FREGW in SPSS, take information from all elements of
- a set and not just pairwise comparisons. I haven't looked at the details of
- the F-based tests such as Sheffe yet. It looks like running an F-test on equality
- of means in each subset. This would also outsource how pairwise conditions are
- combined, any larger or max. This would also imply that the distance matrix cannot
- be calculated in advance for tests like the F-based ones.
-
-
- '''
-
- def __init__(self, vals, nobs_all, var_all, df=None):
- self.vals = vals
- self.n_vals = len(vals)
- self.nobs_all = nobs_all
- self.var_all = var_all
- self.df = df
- # the following has been moved to run
- #self.cache_result = {}
- #self.crit = self.getcrit(0.5) #decide where to set alpha, moved to run
- #self.accepted = [] #store accepted sets, not unique
-
- def get_crit(self, alpha):
- #currently tukey Q, add others
- q_crit = get_tukeyQcrit(self.n_vals, self.df, alpha=alpha)
- return q_crit * np.ones(self.n_vals)
-
-
-
- def get_distance_matrix(self):
- '''studentized range statistic'''
- #make into property, decorate
- dres = distance_st_range(self.vals, self.nobs_all, self.var_all, df=self.df)
- self.distance_matrix = dres[0]
-
- def iter_subsets(self, indices):
- for ii in range(len(indices)):
- idxsub = copy.copy(indices)
- idxsub.pop(ii)
- yield idxsub
-
-
- def check_set(self, indices):
- '''check whether pairwise distances of indices satisfy condition
-
- '''
- indtup = tuple(indices)
- if indtup in self.cache_result:
- return self.cache_result[indtup]
- else:
- set_distance_matrix = self.distance_matrix[np.asarray(indices)[:,None], indices]
- n_elements = len(indices)
- if np.any(set_distance_matrix > self.crit[n_elements-1]):
- res = True
- else:
- res = False
- self.cache_result[indtup] = res
- return res
-
- def stepdown(self, indices):
- print indices
- if self.check_set(indices): # larger than critical distance
- if (len(indices) > 2): # step down into subsets if more than 2 elements
- for subs in self.iter_subsets(indices):
- self.stepdown(subs)
- else:
- self.rejected.append(tuple(indices))
- else:
- self.accepted.append(tuple(indices))
- return indices
-
- def run(self, alpha):
- '''main function to run the test,
-
- could be done in __call__ instead
- this could have all the initialization code
-
- '''
- self.cache_result = {}
- self.crit = self.get_crit(alpha) #decide where to set alpha, moved to run
- self.accepted = [] #store accepted sets, not unique
- self.rejected = []
- self.get_distance_matrix()
- self.stepdown(range(self.n_vals))
-
- return list(set(self.accepted)), list(set(sd.rejected))
-
-
-
-
-
-
-def homogeneous_subsets(vals, dcrit):
- '''recursively check all pairs of vals for minimum distance
-
- step down method as in Newman-Keuls and Ryan procedures. This is not a
- closed procedure since not all partitions are checked.
-
- Parameters
- ----------
- vals : array_like
- values that are pairwise compared
- dcrit : array_like or float
- critical distance for rejecting, either float, or 2-dimensional array
- with distances on the upper triangle.
-
- Returns
- -------
- rejs : list of pairs
- list of pair-indices with (strictly) larger than critical difference
- nrejs : list of pairs
- list of pair-indices with smaller than critical difference
- lli : list of tuples
- list of subsets with smaller than critical difference
- res : tree
- result of all comparisons (for checking)
-
-
- this follows description in SPSS notes on Post-Hoc Tests
-
- Because of the recursive structure, some comparisons are made several
- times, but only unique pairs or sets are returned.
-
- Examples
- --------
- >>> m = [0, 2, 2.5, 3, 6, 8, 9, 9.5,10 ]
- >>> rej, nrej, ssli, res = homogeneous_subsets(m, 2)
- >>> set_partition(ssli)
- ([(5, 6, 7, 8), (1, 2, 3), (4,)], [0])
- >>> [np.array(m)[list(pp)] for pp in set_partition(ssli)[0]]
- [array([ 8. , 9. , 9.5, 10. ]), array([ 2. , 2.5, 3. ]), array([ 6.])]
-
-
- '''
-
- nvals = len(vals)
- indices_ = range(nvals)
- rejected = []
- subsetsli = []
- if np.size(dcrit) == 1:
- dcrit = dcrit*np.ones((nvals, nvals)) #example numbers for experimenting
- def subsets(vals, indices_):
- '''recursive function for constructing homogeneous subset
-
- registers rejected and subsetli in outer scope
- '''
- i, j = (indices_[0], indices_[-1])
- if vals[-1] - vals[0] > dcrit[i,j]:
- rejected.append((indices_[0], indices_[-1]))
- return [subsets(vals[:-1], indices_[:-1]),
- subsets(vals[1:], indices_[1:]),
- (indices_[0], indices_[-1])]
- else:
- subsetsli.append(tuple(indices_))
- return indices_
- res = subsets(vals, indices_)
-
- all_pairs = [(i,j) for i in range(nvals) for j in range(nvals-1,i,-1)]
- rejs = set(rejected)
- not_rejected = list(set(all_pairs) - rejs)
-
- return list(rejs), not_rejected, list(set(subsetsli)), res
-
-def set_partition(ssli):
- '''extract a partition from a list of tuples
-
- this should be correctly called select largest disjoint sets.
- Begun and Gabriel 1981 don't seem to be bothered by sets of accepted
- hypothesis with joint elements,
- e.g. maximal_accepted_sets = { {1,2,3}, {2,3,4} }
-
- This creates a set partition from a list of sets given as tuples.
- It tries to find the partition with the largest sets. That is, sets are
- included after being sorted by length.
-
- If the list doesn't include the singletons, then it will be only a
- partial partition. Missing items are singletons (I think).
-
- Examples
- --------
- >>> li
- [(5, 6, 7, 8), (1, 2, 3), (4, 5), (0, 1)]
- >>> set_partition(li)
- ([(5, 6, 7, 8), (1, 2, 3)], [0, 4])
-
- '''
- part = []
- for s in sorted(list(set(ssli)), key=len)[::-1]:
- #print s,
- s_ = set(s).copy()
- if not any(set(s_).intersection(set(t)) for t in part):
- #print 'inside:', s
- part.append(s)
- #else: print part
-
- missing = list(set(i for ll in ssli for i in ll)
- - set(i for ll in part for i in ll))
- return part, missing
-
-
-def set_remove_subs(ssli):
- '''remove sets that are subsets of another set from a list of tuples
-
- Parameters
- ----------
- ssli : list of tuples
- each tuple is considered as a set
-
- Returns
- -------
- part : list of tuples
- new list with subset tuples removed, it is sorted by set-length of tuples. The
- list contains original tuples, duplicate elements are not removed.
-
- Examples
- --------
- >>> set_remove_subs([(0, 1), (1, 2), (1, 2, 3), (0,)])
- [(1, 2, 3), (0, 1)]
- >>> set_remove_subs([(0, 1), (1, 2), (1,1, 1, 2, 3), (0,)])
- [(1, 1, 1, 2, 3), (0, 1)]
-
- '''
- #TODO: maybe convert all tuples to sets immediately, but I don't need the extra efficiency
- part = []
- for s in sorted(list(set(ssli)), key=lambda x: len(set(x)))[::-1]:
- #print s,
- #s_ = set(s).copy()
- if not any(set(s).issubset(set(t)) for t in part):
- #print 'inside:', s
- part.append(s)
- #else: print part
-
-## missing = list(set(i for ll in ssli for i in ll)
-## - set(i for ll in part for i in ll))
- return part
-
-
-
-
-if __name__ == '__main__':
-
- examples = ['tukey', 'tukeycrit', 'fdr', 'fdrmc', 'bonf', 'randmvn',
- 'multicompdev', 'None']#[-1]
-
- if 'tukey' in examples:
- #Example Tukey
- x = np.array([[0,0,1]]).T + np.random.randn(3, 20)
- print Tukeythreegene(*x)
-
- #Example FDR
- #------------
-
- if ('fdr' in examples) or ('bonf' in examples):
- x1 = [1,1,1,0,-1,-1,-1,0,1,1,-1,1]
- print zip(np.arange(len(x1)), x1)
- print maxzero(x1)
- #[(0, 1), (1, 1), (2, 1), (3, 0), (4, -1), (5, -1), (6, -1), (7, 0), (8, 1), (9, 1), (10, -1), (11, 1)]
- #(11, array([ 3, 7, 11]))
-
- print maxzerodown(-np.array(x1))
-
- locs = np.linspace(0,1,10)
- locs = np.array([0.]*6 + [0.75]*4)
- rvs = locs + stats.norm.rvs(size=(20,10))
- tt, tpval = stats.ttest_1samp(rvs, 0)
- tpval_sortind = np.argsort(tpval)
- tpval_sorted = tpval[tpval_sortind]
-
- reject = tpval_sorted < ecdf(tpval_sorted)*0.05
- reject2 = max(np.nonzero(reject))
- print reject
-
- res = np.array(zip(np.round(rvs.mean(0),4),np.round(tpval,4),
- reject[tpval_sortind.argsort()]),
- dtype=[('mean',float),
- ('pval',float),
- ('reject', np.bool8)])
- #from scikits.statsmodels.iolib import SimpleTable
- print SimpleTable(res, headers=res.dtype.names)
- print fdrcorrection_bak(tpval, alpha=0.05)
- print reject
-
- print '\nrandom example'
- print 'bonf', multipletests(tpval, alpha=0.05, method='bonf')
- print 'sidak', multipletests(tpval, alpha=0.05, method='sidak')
- print 'hs', multipletests(tpval, alpha=0.05, method='hs')
- print 'sh', multipletests(tpval, alpha=0.05, method='sh')
- pvals = np.array('0.0020 0.0045 0.0060 0.0080 0.0085 0.0090 0.0175 0.0250 '
- '0.1055 0.5350'.split(), float)
- print '\nexample from lecturnotes'
- for meth in ['bonf', 'sidak', 'hs', 'sh']:
- print meth, multipletests(pvals, alpha=0.05, method=meth)
-
- if 'fdrmc' in examples:
- mcres = mcfdr(nobs=100, nrepl=1000, ntests=30, ntrue=30, mu=0.1, alpha=0.05, rho=0.3)
- mcmeans = np.array(mcres).mean(0)
- print mcmeans
- print mcmeans[0]/6., 1-mcmeans[1]/4.
- print mcmeans[:4], mcmeans[-4:]
-
-
- if 'randmvn' in examples:
- rvsmvn = randmvn(0.8, (5000,5))
- print np.corrcoef(rvsmvn, rowvar=0)
- print rvsmvn.var(0)
-
-
- if 'tukeycrit' in examples:
- print get_tukeyQcrit(8, 8, alpha=0.05), 5.60
- print get_tukeyQcrit(8, 8, alpha=0.01), 7.47
-
-
- if 'multicompdev' in examples:
- #development of kruskal-wallis multiple-comparison
- #example from matlab file exchange
-
- X = np.array([[7.68, 1], [7.69, 1], [7.70, 1], [7.70, 1], [7.72, 1],
- [7.73, 1], [7.73, 1], [7.76, 1], [7.71, 2], [7.73, 2],
- [7.74, 2], [7.74, 2], [7.78, 2], [7.78, 2], [7.80, 2],
- [7.81, 2], [7.74, 3], [7.75, 3], [7.77, 3], [7.78, 3],
- [7.80, 3], [7.81, 3], [7.84, 3], [7.71, 4], [7.71, 4],
- [7.74, 4], [7.79, 4], [7.81, 4], [7.85, 4], [7.87, 4],
- [7.91, 4]])
- xli = [X[X[:,1]==k,0] for k in range(1,5)]
- xranks = stats.rankdata(X[:,0])
- xranksli = [xranks[X[:,1]==k] for k in range(1,5)]
- xnobs = np.array([len(x) for x in xli])
- meanranks = [item.mean() for item in xranksli]
- sumranks = [item.sum() for item in xranksli]
- # equivalent function
- #from scipy import special
- #-np.sqrt(2.)*special.erfcinv(2-0.5) == stats.norm.isf(0.25)
- stats.norm.sf(0.67448975019608171)
- stats.norm.isf(0.25)
-
- mrs = np.sort(meanranks)
- v1, v2 = np.triu_indices(4,1)
- print '\nsorted rank differences'
- print mrs[v2] - mrs[v1]
- diffidx = np.argsort(mrs[v2] - mrs[v1])[::-1]
- mrs[v2[diffidx]] - mrs[v1[diffidx]]
-
- print '\nkruskal for all pairs'
- for i,j in zip(v2[diffidx], v1[diffidx]):
- print i,j, stats.kruskal(xli[i], xli[j]),
- mwu, mwupval = stats.mannwhitneyu(xli[i], xli[j], use_continuity=False)
- print mwu, mwupval*2, mwupval*2<0.05/6., mwupval*2<0.1/6.
-
-
-
-
-
- uni, intlab = np.unique(X[:,0], return_inverse=True)
- groupnobs = np.bincount(intlab)
- groupxsum = np.bincount(intlab, weights=X[:,0])
- groupxmean = groupxsum * 1.0 / groupnobs
-
- rankraw = X[:,0].argsort().argsort()
- groupranksum = np.bincount(intlab, weights=rankraw)
- # start at 1 for stats.rankdata :
- grouprankmean = groupranksum * 1.0 / groupnobs + 1
- assert_almost_equal(grouprankmean[intlab], stats.rankdata(X[:,0]), 15)
- gs = GroupsStats(X, useranks=True)
- print '\ngroupmeanfilter and grouprankmeans'
- print gs.groupmeanfilter
- print grouprankmean[intlab]
- #the following has changed
- #assert_almost_equal(gs.groupmeanfilter, stats.rankdata(X[:,0]), 15)
-
- xuni, xintlab = np.unique(X[:,0], return_inverse=True)
- gs2 = GroupsStats(np.column_stack([X[:,0], xintlab]), useranks=True)
- #assert_almost_equal(gs2.groupmeanfilter, stats.rankdata(X[:,0]), 15)
-
- rankbincount = np.bincount(xranks.astype(int))
- nties = rankbincount[rankbincount > 1]
- ntot = float(len(xranks));
- tiecorrection = 1 - (nties**3 - nties).sum()/(ntot**3 - ntot)
- assert_almost_equal(tiecorrection, stats.tiecorrect(xranks),15)
- print '\ntiecorrection for data and ranks'
- print tiecorrection
- print tiecorrect(xranks)
-
- tot = X.shape[0]
- t=500 #168
- f=(tot*(tot+1.)/12.)-(t/(6.*(tot-1.)))
- f=(tot*(tot+1.)/12.)/stats.tiecorrect(xranks)
- print '\npairs of mean rank differences'
- for i,j in zip(v2[diffidx], v1[diffidx]):
- #pdiff = np.abs(mrs[i] - mrs[j])
- pdiff = np.abs(meanranks[i] - meanranks[j])
- se = np.sqrt(f * np.sum(1./xnobs[[i,j]] )) #np.array([8,8]))) #Fixme groupnobs[[i,j]] ))
- print i,j, pdiff, se, pdiff/se, pdiff/se>2.6310
-
- multicomp = MultiComparison(*X.T)
- multicomp.kruskal()
- gsr = GroupsStats(X, useranks=True)
-
- print '\nexamples for kruskal multicomparison'
- for i in range(10):
- x1, x2 = (np.random.randn(30,2) + np.array([0, 0.5])).T
- skw = stats.kruskal(x1, x2)
- mc2=MultiComparison(np.r_[x1, x2], np.r_[np.zeros(len(x1)), np.ones(len(x2))])
- newskw = mc2.kruskal()
- print skw, np.sqrt(skw[0]), skw[1]-newskw, (newskw/skw[1]-1)*100
-
- tablett, restt, arrtt = multicomp.allpairtest(stats.ttest_ind)
- tablemw, resmw, arrmw = multicomp.allpairtest(stats.mannwhitneyu)
- print
- print tablett
- print
- print tablemw
- tablemwhs, resmw, arrmw = multicomp.allpairtest(stats.mannwhitneyu, method='hs')
- print
- print tablemwhs
-
- if 'last' in examples:
- xli = (np.random.randn(60,4) + np.array([0, 0, 0.5, 0.5])).T
- #Xrvs = np.array(catstack(xli))
- xrvs, xrvsgr = catstack(xli)
- multicompr = MultiComparison(xrvs, xrvsgr)
- tablett, restt, arrtt = multicompr.allpairtest(stats.ttest_ind)
- print tablett
-
-
- xli=[[8,10,9,10,9],[7,8,5,8,5],[4,8,7,5,7]]
- x,l = catstack(xli)
- gs4 = GroupsStats(np.column_stack([x,l]))
- print gs4.groupvarwithin()
-
-
- #test_tukeyhsd() #moved to test_multi.py
-
- gmeans = np.array([ 7.71375, 7.76125, 7.78428571, 7.79875])
- gnobs = np.array([8, 8, 7, 8])
- sd = StepDown(gmeans, gnobs, 0.001, [27])
-
- #example from BKY
- pvals = [0.0001, 0.0004, 0.0019, 0.0095, 0.0201, 0.0278, 0.0298, 0.0344, 0.0459,
- 0.3240, 0.4262, 0.5719, 0.6528, 0.7590, 1.000 ]
-
- #same number of rejection as in BKY paper:
- #single step-up:4, two-stage:8, iterated two-step:9
- #also alpha_star is the same as theirs for TST
- print fdrcorrection0(pvals, alpha=0.05, method='indep')
- print fdrcorrection_twostage(pvals, alpha=0.05, iter=False)
- res_tst = fdrcorrection_twostage(pvals, alpha=0.05, iter=False)
- assert_almost_equal([0.047619, 0.0649], res_tst[-1][:2],3) #alpha_star for stage 2
- assert_equal(8, res_tst[0].sum())
- print fdrcorrection_twostage(pvals, alpha=0.05, iter=True)
- print 'fdr_gbs', multipletests(pvals, alpha=0.05, method='fdr_gbs')
- #multicontrast_pvalues(tstat, tcorr, df)
- test_tukey_pvalues()
- tukey_pvalues(3.649, 3, 16)
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/notes_fdr.txt b/statsmodels/scikits/statsmodels/sandbox/stats/notes_fdr.txt
deleted file mode 100644
index 57d4bfc..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/notes_fdr.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-
-Multiple Tests and Multiple Comparisons
-=======================================
-
-Introduction
-------------
-
-generic multiple testing procedures, p-value corrections and fdr don't use
-any additional information, only information contained in p-values.
-I don't know if there are any underlying assumption, except that the raw
-pvalues are uniformly on [0,1] distributed under the null hypothesis.
-
-fdr for microarray or fmri can use special structure
-A special case in general statistical literature is the comparison of means
-with specific methods to correct for multiple tests, e.g. Tukey
-
-(survey by Shaffer
-
-
-General Methods
----------------
-
-pvalue correction
-~~~~~~~~~~~~~~~~~
-
-implemented,
-
-basic fdr, BH, BY
-
-multiple testing procedures
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
-pvalue correction is not available/implemented, return reject is True/False
-for a given confidence level.
-(pvalue correction were initially written this way)
-
-
-fdr bky 2-step procedure with estimation of fraction of false hypothesis.
-
-
-Multiple Comparisons
---------------------
-
-Tukey, Dunnet, ...
-see Hothorn, Bretz, Westfall, University of Munich 2008, working paper,
-published in ...
-
-The general theory in Bretz, Genz and Hothorn, Bretz, Westfall, multcomp,
-is based on the distribution of the maximum of the statistics when the
-statistics are distributed according to a joint t or normal distribution
-distribution. pvalues, whether to reject a hypothesis and joint confidence
-intervalls can be obtained directly from integration of the joint t or
-normal distribution.
-
-Scipy does not have the cdf of a multivariate t distribution, but according
-to Bretz and Gentz it can be obtained by a univariate integration from
-the cdf of the multivariate normal distribution.
-
-The distribution for Tukey's range statistic is half (?) of the distribution
-of the maximum of t-distributed random variables if the underlying means
-are assumed to be independently distributed. (my interpretation so far, but
-I have not verified the details yet, see ... )
-
-Bretz and Genz also have a table with the summary of the contrast matrices
-for different tests, like Tukey and Dunnet. These contrast matrices are
-implemented in R, but for some of them they are not immediately obvious.
-
-As an aside, this seems to be related to getting simultaneous confidence
-bands for forecasting. But it is not clear to me yet how to define the
-confidence bands, I have the articles but have not read them yet.
-
-The older tests, Tukey, Dunnet and similar assume that the means are
-independently normally distributed, and critical values are tabulated for this
-case. Newer methods allow for arbitrary correlation (Bretz, Hothorn,...) or
-assume a specific structure for simplicity, for example factor structure for
-the covariance as in Hsu. The latter is the default approach in SAS.
-The tests based on independence are often categorized as post-hoc tests, a good
-overview of the formulas is in the SPSS description.
-
-It is also mentioned in the literature (?) that these multiple comparison tests
-loose power if they are only used conditional on the rejection of an overall
-F-test
-
-
-TODO:
-* finish Tukey, Dunnet because they will be familiar
-* add multivariate normal cdf to statsmodels
-* try Bretz/Gentz cdf of t distribution form the cdf of the multivariate normal
-
-
-
-special cases
--------------
-
-
-nipy.neurospin
-
-follows
-
-Schwartzman, A. et al., 2009. Empirical null and false discovery rate
-analysis in neuroimaging. NeuroImage, 44(1), pp.71-82.
-
-test defined for point-wise test on a 2 component mixture distribution.
-The probability of an observation to be in the null distribution can be
-estimated from the mixture distribution (not sure)
-fdr defined on observations not a sample mean
-alternative literature: use topological properties of the picture to
-correct fdr.
-
-
-TODO
-====
-
-* fdr_bky and check whether prior q can be used with current pvalue-correction
-* multi-comparison: Tukey, convenience classes/methods expand on current
-* Monte Carlo
-* maybe some resampling, bootstrap, permutation, later
-* for the rest I'm not really interested in doing the work: k-FWER, k-FDR,
- other estimators for fraction of true or false hypothesis
-
-
-
-
-multtest (R)
-check bootstrap references
-
-multcomp (R)
-contrMat has the contrast matrices for various standard test
-function parm parm(coef, vcov, df = 0) can work with only the estimates given
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/runs.py b/statsmodels/scikits/statsmodels/sandbox/stats/runs.py
deleted file mode 100644
index 2996194..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/runs.py
+++ /dev/null
@@ -1,596 +0,0 @@
-'''runstest
-
-formulas for mean and var of runs taken from SAS manual NPAR tests, also idea
-for runstest_1samp and runstest_2samp
-
-Description in NIST handbook and dataplot doesn't explain their expected
-values, or variance
-
-Note:
-There are (at least) two definitions of runs used in literature. The classical
-definition which is also used here, is that runs are sequences of identical
-observations separated by observations with different realizations.
-The second definition allows for overlapping runs, or runs where counting a
-run is also started after a run of a fixed length of the same kind.
-
-
-TODO
-* add one-sided tests where possible or where it makes sense
-
-'''
-
-import numpy as np
-from scipy import stats
-
-class Runs(object):
- '''class for runs in a binary sequence
-
-
- Parameters
- ----------
- x : array_like, 1d
- data array,
-
-
- Notes
- -----
- This was written as a more general class for runs. This has some redundant
- calculations when only the runs_test is used.
-
- TODO: make it lazy
-
- The runs test could be generalized to more than 1d if there is a use case
- for it.
-
- This should be extended once I figure out what the distribution of runs
- of any length k is.
-
- The exact distribution for the runs test is also available but not yet
- verified.
-
- '''
-
- def __init__(self, x):
- self.x = np.asarray(x)
-
- self.runstart = runstart = np.nonzero(np.diff(np.r_[[-np.inf], x, [np.inf]]))[0]
- self.runs = runs = np.diff(runstart)
- self.runs_sign = runs_sign = x[runstart[:-1]]
- self.runs_pos = runs[runs_sign==1]
- self.runs_neg = runs[runs_sign==0]
- self.runs_freqs = np.bincount(runs)
- self.n_runs = len(self.runs)
- self.n_pos = (x==1).sum()
-
- def runs_test(self, correction=True):
- '''basic version of runs test
-
- Parameters
- ----------
- correction: bool
- Following the SAS manual, for samplesize below 50, the test
- statistic is corrected by 0.5. This can be turned off with
- correction=False, and was included to match R, tseries, which
- does not use any correction.
-
- pvalue based on normal distribution, with integer correction
-
- '''
- npo = len(self.runs_pos)
- nne = len(self.runs_neg)
- self.npo = npo = (self.runs_pos).sum()
- self.nne = nne = (self.runs_neg).sum()
-
- #n_r = self.n_runs
- n = npo + nne
- npn = npo * nne
- rmean = 2. * npn / n + 1
- rvar = 2. * npn * (2.*npn - n) / n**2. / (n-1.)
- rstd = np.sqrt(rvar)
- rdemean = self.n_runs - rmean
- if n >= 50 or not correction:
- z = rdemean
- else:
- if rdemean > 0.5:
- z = rdemean - 0.5
- elif rdemean < 0.5:
- z = rdemean + 0.5
- else:
- z = 0.
-
- z /= rstd
- from scipy import stats
- pval = 2 * stats.norm.sf(np.abs(z))
- return z, pval
-
-def runstest_1samp(x, cutoff='mean'):
- '''use runs test on binary discretized data above/below cutoff
-
- Parameters
- ----------
- x : array_like
- data, numeric
- cutoff : {'mean', 'median'} or number
- This specifies the cutoff to split the data into large and small
- values. This
-
- Returns
- -------
- z_stat : float
- test statistic, asymptotically normally distributed
- p-value : float
- p-value, reject the null hypothesis if it is below an type 1 error
- level, alpha .
-
- '''
-
- if cutoff == 'mean':
- cutoff = np.mean(x)
- elif cutoff == 'median':
- cutoff = np.median(x)
- xindicator = (x >= cutoff).astype(int)
- return Runs(xindicator).runs_test()
-
-def runstest_2samp(x, y=None, groups=None):
- '''Wald-Wolfowitz runstest for two samples
-
- This tests whether two samples come from the same distribution.
-
-
-
- Parameters
- ----------
- x : array_like
- data, numeric, contains either one group, if y is also given, or
- both groups, if additionally a group indicator is provided
- y : array_like (optional)
- data, numeric
- groups : array_like
- group labels or indicator the data for both groups is given in a
- single 1-dimensional array, x. If group labels are not [0,1], then
-
-
- groups : {'mean', 'median'} or number
- This specifies the cutoff to split the data into large and small
- values. This
-
- Returns
- -------
- z_stat : float
- test statistic, asymptotically normally distributed
- p-value : float
- p-value, reject the null hypothesis if it is below an type 1 error
- level, alpha .
-
-
- Notes
- -----
- Wald-Wolfowitz runs test.
-
- If there are ties, then then the test statistic and p-value that is
- reported, is based on the higher p-value between sorting all tied
- observations of the same group
-
-
- This test is intended for continuous distributions
- SAS has treatment for ties, but not clear, and sounds more complicated
- (minimum and maximum possible runs prvent use of argsort)
- (maybe it's not so difficult, idea: add small positive noise to first
- one, run test, then to the other, run test, take max(?) p-value - DONE
- This gives not the minimum and maximum of the number of runs, but should
- be close. Not true, this is close to minimum but far away from maximum.
- maximum number of runs would use alternating groups in the ties.)
- Maybe adding random noise would be the better approach.
-
- SAS has exact distribution for sample size <=30, doesn't look standard
- but should be easy to add.
-
- currently two-sided test only
-
- See Also
- --------
- runs_test_1samp
- Runs
- RunsProb
-
-
- '''
- x = np.asarray(x)
- if not y is None:
- y = np.asarray(y)
- x = np.concatenate((x, y))
- groups = np.concatenate((np.zeros(len(x)), np.ones(len(y))))
- gruni = np.arange(1)
- elif not groups is None:
- gruni = np.unique(groups)
- if gruni.size != 2:
- raise ValueError('not exactly two groups specified')
- #require groups to be numeric ???
- else:
- raise ValueError('either y or groups is necessary')
-
- xargsort = np.argsort(x)
- #check for ties
- x_sorted = x[xargsort]
- x_diff = np.diff(x)
- if x_diff.min() == 0:
- print 'ties detected' #replace with warning
- x_mindiff = x_diff[x_diff > 0].min()
- eps = x_mindiff/2.
- xx = x.copy() #don't change original, just in case
-
- xx[groups==gruni[0]] += eps
- xargsort = np.argsort(xx)
- xindicator = groups[xargsort]
- z0, p0 = Runs(xindicator).runs_test()
-
- xx[groups==gruni[0]] -= eps #restore xx = x
- xx[groups==gruni[1]] += eps
- xargsort = np.argsort(xx)
- xindicator = groups[xargsort]
- z1, p1 = Runs(xindicator).runs_test()
-
- idx = np.argmax([p0,p1])
- return [z0, z1][idx], [p0, p1][idx]
-
- else:
- xindicator = groups[xargsort]
- return Runs(xindicator).runs_test()
-
-from scipy import comb
-
-class TotalRunsProb(object):
- '''class for the probability distribution of total runs
-
- This is the exact probability distribution for the (Wald-Wolfowitz)
- runs test. The random variable is the total number of runs if the
- sample has (n0, n1) observations of groups 0 and 1.
-
-
- Notes
- -----
- Written as a class so I can store temporary calculations, but I don't
- think it matters much.
-
- Formulas taken from SAS manual for one-sided significance level.
-
- Could be converted to a full univariate distribution, subclassing
- scipy.stats.distributions.
-
- *Status*
- Not verified yet except for mean.
-
-
-
- '''
-
- def __init__(self, n0, n1):
- self.n0 = n0
- self.n1 = n1
- self.n = n = n0 + n1
- self.comball = comb(n, n1)
-
- def runs_prob_even(self, r):
- n0, n1 = self.n0, self.n1
- tmp0 = comb(n0-1, r//2-1)
- tmp1 = comb(n1-1, r//2-1)
- return tmp0 * tmp1 * 2. / self.comball
-
- def runs_prob_odd(self, r):
- n0, n1 = self.n0, self.n1
- k = (r+1)//2
- tmp0 = comb(n0-1, k-1)
- tmp1 = comb(n1-1, k-2)
- tmp3 = comb(n0-1, k-2)
- tmp4 = comb(n1-1, k-1)
- return (tmp0 * tmp1 + tmp3 * tmp4) / self.comball
-
- def pdf(self, r):
- r = np.asarray(r)
- r_isodd = np.mod(r, 2) > 0
- r_odd = r[r_isodd]
- r_even = r[~r_isodd]
- runs_pdf = np.zeros(r.shape)
- runs_pdf[r_isodd] = self.runs_prob_odd(r_odd)
- runs_pdf[~r_isodd] = self.runs_prob_even(r_even)
- return runs_pdf
-
-
- def cdf(self, r):
- r_ = np.arange(2,r+1)
- cdfval = self.runs_prob_even(r_[::2]).sum()
- cdfval += self.runs_prob_odd(r_[1::2]).sum()
- return cdfval
-
-
-class RunsProb(object):
- '''distribution of success runs of length k or more (classical definition)
-
- The underlying process is assumed to be a sequence of Bernoulli trials
- of a given length n.
-
- not sure yet, how to interpret or use the distribution for runs
- of length k or more.
-
- Musseli also has longest success run, and waiting time distribution
- negative binomial of order k and geometric of order k
-
- need to compare with Godpole
-
- need a MonteCarlo function to do some quick tests before doing more
-
-
- '''
-
-
-
- def pdf(self, x, k, n, p):
- '''distribution of success runs of length k or more
-
- Parameters
- ----------
- x : float
- count of runs of length n
- k : int
- length of runs
- n : int
- total number of observations or trials
- p : float
- probability of success in each Bernoulli trial
-
- Returns
- -------
- pdf : float
- probability that x runs of length of k are observed
-
- Notes
- -----
- not yet vectorized
-
- References
- ----------
- Muselli 1996, theorem 3
- '''
-
- q = 1-p
- m = np.arange(x, (n+1)//(k+1)+1)[:,None]
- terms = (-1)**(m-x) * comb(m, x) * p**(m*k) * q**(m-1) \
- * (comb(n - m*k, m - 1) + q * comb(n - m*k, m))
- return terms.sum(0)
-
- def pdf_nb(self, x, k, n, p):
- pass
- #y = np.arange(m-1, n-mk+1
-
-'''
->>> [np.sum([RunsProb().pdf(xi, k, 16, 10/16.) for xi in range(0,16)]) for k in range(16)]
-[0.99999332193894064, 0.99999999999999367, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
->>> [(np.arange(0,16) * [RunsProb().pdf(xi, k, 16, 10/16.) for xi in range(0,16)]).sum() for k in range(16)]
-[6.9998931510341809, 4.1406249999999929, 2.4414062500000075, 1.4343261718749996, 0.83923339843749856, 0.48875808715820324, 0.28312206268310569, 0.1629814505577086, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
->>> np.array([(np.arange(0,16) * [RunsProb().pdf(xi, k, 16, 10/16.) for xi in range(0,16)]).sum() for k in range(16)])/11
-array([ 0.63635392, 0.37642045, 0.22194602, 0.13039329, 0.07629395,
- 0.04443255, 0.02573837, 0.0148165 , 0. , 0. ,
- 0. , 0. , 0. , 0. , 0. , 0. ])
->>> np.diff([(np.arange(0,16) * [RunsProb().pdf(xi, k, 16, 10/16.) for xi in range(0,16)]).sum() for k in range(16)][::-1])
-array([ 0. , 0. , 0. , 0. , 0. ,
- 0. , 0. , 0.16298145, 0.12014061, 0.20563602,
- 0.35047531, 0.59509277, 1.00708008, 1.69921875, 2.85926815])
-'''
-
-
-
-def median_test_ksample(x, groups):
- '''chisquare test for equality of median/location
-
- This tests whether all groups have the same fraction of observations
- above the median.
-
- Parameters
- ----------
- x : array_like
- data values stacked for all groups
- groups : array_like
- group labels or indicator
-
- Returns
- -------
- stat : float
- test statistic
- pvalue : float
- pvalue from the chisquare distribution
- others ????
- currently some test output, table and expected
-
- '''
- x = np.asarray(x)
- gruni = np.unique(groups)
- xli = [x[groups==group] for group in gruni]
- xmedian = np.median(x)
- counts_larger = np.array([(xg > xmedian).sum() for xg in xli])
- counts = np.array([len(xg) for xg in xli])
- counts_smaller = counts - counts_larger
- nobs = counts.sum()
- n_larger = (x > xmedian).sum()
- n_smaller = nobs - n_larger
- table = np.vstack((counts_smaller, counts_larger))
-
- #the following should be replaced by chisquare_contingency table
- expected = np.vstack((counts * 1. / nobs * n_smaller,
- counts * 1. / nobs * n_larger))
-
- if (expected < 5).any():
- print('Warning: There are cells with less than 5 expected' \
- 'observations. The chisquare distribution might not be a good' \
- 'approximation for the true distribution.')
-
- #check ddof
- return stats.chisquare(table.ravel(), expected.ravel(), ddof=1), table, expected
-
-
-
-def cochran_q(x):
- '''Cochran's Q test for identical effect of k treatments
-
- Cochran's Q is a k-sample extension of the McNemar test. If there are only
- two treatments, then Cochran's Q test and McNemar test are equivalent.
-
- what's this ? Test that the number of successes is the same for each case.
- The alternative is that at least two treatements come from different
- populations.
-
- Parameters
- ----------
- x : array_like, 2d (N,k)
- data with N cases and k variables
-
-
- Returns
- -------
- q_stat : float
- test statistic
- pvalue : float
- pvalue from the chisquare distribution
- others ????
- currently some test output, table and expected
-
- Notes
- -----
- not verified,
-
- In Wikipedia terminology, rows are blocks and N should be large for
- the chisquare distribution to be a good approximation; columns are
- treatments.
- The Null hypothesis of the test is that all treatments have the
- same effect.
-
-
- References
- ----------
- http://en.wikipedia.org/wiki/Cochran_test
- SAS Manual for NPAR TESTS
-
- '''
- x = np.asarray(x)
- gruni = np.unique(x)
- N,k = x.shape
- count_row_success = (x==gruni[-1]).sum(1, float)
- count_col_success = (x==gruni[-1]).sum(0, float)
- count_row_ss = count_row_success.sum()
- count_col_ss = count_col_success.sum()
- assert count_row_ss == count_col_ss #just a calculation check
-
-
- #this is SAS manual
- q_stat = (k-1) * (k * np.sum(count_col_success**2) - count_col_ss**2) \
- / (k * count_row_ss - np.sum(count_row_success**2))
-
- #Note: the denominator looks just like k times the variance of the
- #columns
-
- #Wikipedia uses a different, but equivalent expression
-## q_stat = (k-1) * (k * np.sum(count_row_success**2) - count_row_ss**2) \
-## / (k * count_col_ss - np.sum(count_col_success**2))
-
- return q_stat, stats.chi2.sf(q_stat, k-1)
-
-def mcnemar(x, y, exact='auto', correction=True):
- '''McNemar test
-
- Parameters
- ----------
- x, y : array_like
- two paired data samples
- exact : bool or 'auto'
- correction : bool
- If true then a continuity corection is used for the approximate
- chisquare distribution.
-
- Returns
- -------
- stat : float or int
- The test statistic is the chisquare statistic in the case of large
- samples or if exact is false. If the exact binomial distribution is
- used, then this contains the min(n1, n2), where n1, n2 are cases
- that are zero in one sample but one in the other sample.
-
- pvalue : float
- p-value of the null hypothesis of equal effects.
-
- Notes
- -----
- This is a special case of Cochran's Q test. The results when the chisquare
- distribution is used are identical, except for the continuity correction.
-
- '''
-
- n1 = np.sum(x < y)
- n2 = np.sum(x > y)
-
- if exact or (exact=='auto' and n1+n2<25):
- stat = min(n1,n2)
- pval = stats.binom.sf(min(n1,n2), n1+n2, 0.5)
- else:
- corr = int(correction)
- stat = (np.abs(n1-n2)-corr)**2 / (1. * (n1+n2))
- df = 1
- pval = stats.chi2.sf(stat,1)
- return stat, pval
-
-from numpy.testing import assert_almost_equal, assert_array_almost_equal
-def test_cochransq():
- #example from dataplot docs, Conovover p. 253
- #http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/cochran.htm
- x = np.array([[1, 1, 1],
- [1, 1, 1],
- [0, 1, 0],
- [1, 1, 0],
- [0, 0, 0],
- [1, 1, 1],
- [1, 1, 1],
- [1, 1, 0],
- [0, 0, 1],
- [0, 1, 0],
- [1, 1, 1],
- [1, 1, 1]])
- res_qstat = 2.8
- res_pvalue = 0.246597
- assert_almost_equal(cochran_q(x), [res_qstat, res_pvalue])
-
- #equivalence of mcnemar and cochranq for 2 samples
- a,b = x[:,:2].T
- assert_almost_equal(mcnemar(a,b, exact=False, correction=False),
- cochran_q(x[:,:2]))
-
-
-def test_runstest():
- #comparison numbers from R, tseries, runs.test
- #currently only 2-sided used
- x = np.array([1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1])
-
- z_twosided = 1.386750
- pvalue_twosided = 0.1655179
-
- z_greater = 1.386750
- pvalue_greater = 0.08275893
-
- z_less = 1.386750
- pvalue_less = 0.917241
-
- print Runs(x).runs_test(correction=False)
- assert_array_almost_equal(np.array(Runs(x).runs_test(correction=False)),
- [z_twosided, pvalue_twosided], decimal=6)
-
-
-if __name__ == '__main__':
-
- x = np.array([1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1])
-
- print Runs(x).runs_test()
- print runstest_1samp(x, cutoff='mean')
- print runstest_2samp(np.arange(16,0,-1), groups=x)
- print TotalRunsProb(7,9).cdf(11)
- print median_test_ksample(np.random.randn(100), np.random.randint(0,2,100))
- print cochran_q(np.random.randint(0,2,(100,8)))
-
- test_runstest()
- test_cochransq()
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/stats_dhuard.py b/statsmodels/scikits/statsmodels/sandbox/stats/stats_dhuard.py
deleted file mode 100644
index 9139dd3..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/stats_dhuard.py
+++ /dev/null
@@ -1,334 +0,0 @@
-'''
-from David Huard's scipy sandbox, also attached to a ticket and
-in the matplotlib-user mailinglist (links ???)
-
-
-Notes
-=====
-
-out of bounds interpolation raises exception and wouldn't be completely
-defined ::
-
->>> scoreatpercentile(x, [0,25,50,100])
-Traceback (most recent call last):
-...
- raise ValueError("A value in x_new is below the interpolation "
-ValueError: A value in x_new is below the interpolation range.
->>> percentileofscore(x, [-50, 50])
-Traceback (most recent call last):
-...
- raise ValueError("A value in x_new is below the interpolation "
-ValueError: A value in x_new is below the interpolation range.
-
-
-idea
-====
-
-histogram and empirical interpolated distribution
--------------------------------------------------
-
-dual constructor
-* empirical cdf : cdf on all observations through linear interpolation
-* binned cdf : based on histogram
-both should work essentially the same, although pdf of empirical has
-many spikes, fluctuates a lot
-- alternative: binning based on interpolated cdf : example in script
-* ppf: quantileatscore based on interpolated cdf
-* rvs : generic from ppf
-* stats, expectation ? how does integration wrt cdf work - theory?
-
-Problems
-* limits, lower and upper bound of support
- does not work or is undefined with empirical cdf and interpolation
-* extending bounds ?
- matlab has pareto tails for empirical distribution, breaks linearity
-
-empirical distribution with higher order interpolation
-------------------------------------------------------
-
-* should work easily enough with interpolating splines
-* not piecewise linear
-* can use pareto (or other) tails
-* ppf how do I get the inverse function of a higher order spline?
- Chuck: resample and fit spline to inverse function
- this will have an approximation error in the inverse function
-* -> doesn't work: higher order spline doesn't preserve monotonicity
- see mailing list for response to my question
-* pmf from derivative available in spline
-
--> forget this and use kernel density estimator instead
-
-
-bootstrap/empirical distribution:
----------------------------------
-
-discrete distribution on real line given observations
-what's defined?
-* cdf : step function
-* pmf : points with equal weight 1/nobs
-* rvs : resampling
-* ppf : quantileatscore on sample?
-* moments : from data ?
-* expectation ? sum_{all observations x} [func(x) * pmf(x)]
-* similar for discrete distribution on real line
-* References : ?
-* what's the point? most of it is trivial, just for the record ?
-
-
-Created on Monday, May 03, 2010, 11:47:03 AM
-Author: josef-pktd, parts based on David Huard
-License: BSD
-
-'''
-
-import scipy.interpolate as interpolate
-import numpy as np
-
-def scoreatpercentile(data, percentile):
- """Return the score at the given percentile of the data.
-
- Example:
- >>> data = randn(100)
- >>> scoreatpercentile(data, 50)
-
- will return the median of sample `data`.
- """
- per = np.array(percentile)
- cdf = empiricalcdf(data)
- interpolator = interpolate.interp1d(np.sort(cdf), np.sort(data))
- return interpolator(per/100.)
-
-def percentileofscore(data, score):
- """Return the percentile-position of score relative to data.
-
- score: Array of scores at which the percentile is computed.
-
- Return percentiles (0-100).
-
- Example
- r = randn(50)
- x = linspace(-2,2,100)
- percentileofscore(r,x)
-
- Raise an error if the score is outside the range of data.
- """
- cdf = empiricalcdf(data)
- interpolator = interpolate.interp1d(np.sort(data), np.sort(cdf))
- return interpolator(score)*100.
-
-def empiricalcdf(data, method='Hazen'):
- """Return the empirical cdf.
-
- Methods available:
- Hazen: (i-0.5)/N
- Weibull: i/(N+1)
- Chegodayev: (i-.3)/(N+.4)
- Cunnane: (i-.4)/(N+.2)
- Gringorten: (i-.44)/(N+.12)
- California: (i-1)/N
-
- Where i goes from 1 to N.
- """
-
- i = np.argsort(np.argsort(data)) + 1.
- N = len(data)
- method = method.lower()
- if method == 'hazen':
- cdf = (i-0.5)/N
- elif method == 'weibull':
- cdf = i/(N+1.)
- elif method == 'california':
- cdf = (i-1.)/N
- elif method == 'chegodayev':
- cdf = (i-.3)/(N+.4)
- elif method == 'cunnane':
- cdf = (i-.4)/(N+.2)
- elif method == 'gringorten':
- cdf = (i-.44)/(N+.12)
- else:
- raise ValueError('Unknown method. Choose among Weibull, Hazen,'
- 'Chegodayev, Cunnane, Gringorten and California.')
-
- return cdf
-
-
-class HistDist(object):
- '''Distribution with piecewise linear cdf, pdf is step function
-
- can be created from empiricial distribution or from a histogram (not done yet)
-
- work in progress, not finished
-
-
- '''
-
- def __init__(self, data):
- self.data = np.atleast_1d(data)
- self.binlimit = np.array([self.data.min(), self.data.max()])
- sortind = np.argsort(data)
- self._datasorted = data[sortind]
- self.ranking = np.argsort(sortind)
-
- cdf = self.empiricalcdf()
- self._empcdfsorted = np.sort(cdf)
- self.cdfintp = interpolate.interp1d(self._datasorted, self._empcdfsorted)
- self.ppfintp = interpolate.interp1d(self._empcdfsorted, self._datasorted)
-
- def empiricalcdf(self, data=None, method='Hazen'):
- """Return the empirical cdf.
-
- Methods available:
- Hazen: (i-0.5)/N
- Weibull: i/(N+1)
- Chegodayev: (i-.3)/(N+.4)
- Cunnane: (i-.4)/(N+.2)
- Gringorten: (i-.44)/(N+.12)
- California: (i-1)/N
-
- Where i goes from 1 to N.
- """
-
- if data is None:
- data = self.data
- i = self.ranking
- else:
- i = np.argsort(np.argsort(data)) + 1.
-
- N = len(data)
- method = method.lower()
- if method == 'hazen':
- cdf = (i-0.5)/N
- elif method == 'weibull':
- cdf = i/(N+1.)
- elif method == 'california':
- cdf = (i-1.)/N
- elif method == 'chegodayev':
- cdf = (i-.3)/(N+.4)
- elif method == 'cunnane':
- cdf = (i-.4)/(N+.2)
- elif method == 'gringorten':
- cdf = (i-.44)/(N+.12)
- else:
- raise ValueError('Unknown method. Choose among Weibull, Hazen,'
- 'Chegodayev, Cunnane, Gringorten and California.')
-
- return cdf
-
-
- def cdf_emp(self, score):
- '''
- this is score in dh
-
- '''
- return self.cdfintp(score)
- #return percentileofscore(self.data, score)
-
- def ppf_emp(self, quantile):
- '''
- this is score in dh
-
- '''
- return self.ppfintp(quantile)
- #return scoreatpercentile(self.data, quantile*100)
-
-
- #from DHuard http://old.nabble.com/matplotlib-f2903.html
- def optimize_binning(self, method='Freedman'):
- """Find the optimal number of bins and update the bin countaccordingly.
- Available methods : Freedman
- Scott
- """
-
- nobs = len(self.data)
- if method=='Freedman':
- IQR = self.ppf_emp(0.75) - self.ppf_emp(0.25) # Interquantile range(75% -25%)
- width = 2* IQR* nobs**(-1./3)
-
- elif method=='Scott':
- width = 3.49 * np.std(self.data) * nobs**(-1./3)
-
- self.nbin = (self.binlimit.ptp()/width)
- return self.nbin
-
-
-#changes: josef-pktd
-if __name__ == '__main__':
- import matplotlib.pyplot as plt
-
- nobs = 100
- x = np.random.randn(nobs)
-
- examples = [2]
- if 1 in examples:
- empiricalcdf(x)
- print percentileofscore(x, 0.5)
- print scoreatpercentile(x, 50)
- import matplotlib.pyplot as plt
- xsupp = np.linspace(x.min(), x.max())
- pos = percentileofscore(x, xsupp)
- plt.plot(xsupp, pos)
- #perc = np.linspace(2.5, 97.5)
- #plt.plot(scoreatpercentile(x, perc), perc)
- plt.plot(scoreatpercentile(x, pos), pos+1)
-
-
- #emp = interpolate.PiecewisePolynomial(np.sort(empiricalcdf(x)), np.sort(x))
- emp=interpolate.InterpolatedUnivariateSpline(np.sort(x),np.sort(empiricalcdf(x)),k=1)
- pdfemp = np.array([emp.derivatives(xi)[1] for xi in xsupp])
- plt.figure()
- plt.plot(xsupp,pdfemp)
- cdf_ongrid = emp(xsupp)
- plt.figure()
- plt.plot(xsupp, cdf_ongrid)
-
- #get pdf from interpolated cdf on a regular grid
- plt.figure()
- plt.step(xsupp[:-1],np.diff(cdf_ongrid)/np.diff(xsupp))
-
- #reduce number of bins/steps
- xsupp2 = np.linspace(x.min(), x.max(), 25)
- plt.figure()
- plt.step(xsupp2[:-1],np.diff(emp(xsupp2))/np.diff(xsupp2))
-
- #pdf using 25 original observations, every (nobs/25)th
- xso = np.sort(x)
- xs = xso[::nobs/25]
- plt.figure()
- plt.step(xs[:-1],np.diff(emp(xs))/np.diff(xs))
- #lower end looks strange
-
-
- histd = HistDist(x)
- print histd.optimize_binning()
- print histd.cdf_emp(histd.binlimit)
- print histd.ppf_emp([0.25, 0.5, 0.75])
- print histd.cdf_emp([-0.5, -0.25, 0, 0.25, 0.5])
-
-
- xsupp = np.linspace(x.min(), x.max(), 500)
- emp=interpolate.InterpolatedUnivariateSpline(np.sort(x),np.sort(empiricalcdf(x)),k=1)
- #pdfemp = np.array([emp.derivatives(xi)[1] for xi in xsupp])
- #plt.figure()
- #plt.plot(xsupp,pdfemp)
- cdf_ongrid = emp(xsupp)
- plt.figure()
- plt.plot(xsupp, cdf_ongrid)
- ppfintp = interpolate.InterpolatedUnivariateSpline(cdf_ongrid,xsupp,k=3)
-
- ppfs = ppfintp(cdf_ongrid)
- plt.plot(ppfs, cdf_ongrid)
- ppfemp=interpolate.InterpolatedUnivariateSpline(np.sort(empiricalcdf(x)),np.sort(x),k=3)
- ppfe = ppfemp(cdf_ongrid)
- plt.plot(ppfe, cdf_ongrid)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/stats_mstats_short.py b/statsmodels/scikits/statsmodels/sandbox/stats/stats_mstats_short.py
deleted file mode 100644
index f35b013..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/stats_mstats_short.py
+++ /dev/null
@@ -1,383 +0,0 @@
-'''get versions of mstats percentile functions that also work with non-masked arrays
-
-uses dispatch to mstats version for difficult cases:
- - data is masked array
- - data requires nan handling (masknan=True)
- - data should be trimmed (limit is non-empty)
-handle simple cases directly, which doesn't require apply_along_axis
-changes compared to mstats: plotting_positions for n-dim with axis argument
-addition: plotting_positions_w1d: with weights, 1d ndarray only
-
-TODO:
-consistency with scipy.stats versions not checked
-docstrings from mstats not updated yet
-code duplication, better solutions (?)
-convert examples to tests
-rename alphap, betap for consistency
-timing question: one additional argsort versus apply_along_axis
-weighted plotting_positions
-- I haven't figured out nd version of weighted plotting_positions
-- add weighted quantiles
-
-
-'''
-
-import numpy as np
-from numpy import ma
-from scipy import stats
-
-#from numpy.ma import nomask
-
-
-
-
-#####--------------------------------------------------------------------------
-#---- --- Percentiles ---
-#####--------------------------------------------------------------------------
-
-
-def quantiles(a, prob=list([.25,.5,.75]), alphap=.4, betap=.4, axis=None,
- limit=(), masknan=False):
- """
- Computes empirical quantiles for a data array.
-
- Samples quantile are defined by :math:`Q(p) = (1-g).x[i] +g.x[i+1]`,
- where :math:`x[j]` is the *j*th order statistic, and
- `i = (floor(n*p+m))`, `m=alpha+p*(1-alpha-beta)` and `g = n*p + m - i`.
-
- Typical values of (alpha,beta) are:
- - (0,1) : *p(k) = k/n* : linear interpolation of cdf (R, type 4)
- - (.5,.5) : *p(k) = (k+1/2.)/n* : piecewise linear
- function (R, type 5)
- - (0,0) : *p(k) = k/(n+1)* : (R type 6)
- - (1,1) : *p(k) = (k-1)/(n-1)*. In this case, p(k) = mode[F(x[k])].
- That's R default (R type 7)
- - (1/3,1/3): *p(k) = (k-1/3)/(n+1/3)*. Then p(k) ~ median[F(x[k])].
- The resulting quantile estimates are approximately median-unbiased
- regardless of the distribution of x. (R type 8)
- - (3/8,3/8): *p(k) = (k-3/8)/(n+1/4)*. Blom.
- The resulting quantile estimates are approximately unbiased
- if x is normally distributed (R type 9)
- - (.4,.4) : approximately quantile unbiased (Cunnane)
- - (.35,.35): APL, used with PWM ?? JP
- - (0.35, 0.65): PWM ?? JP p(k) = (k-0.35)/n
-
- Parameters
- ----------
- a : array-like
- Input data, as a sequence or array of dimension at most 2.
- prob : array-like, optional
- List of quantiles to compute.
- alpha : float, optional
- Plotting positions parameter, default is 0.4.
- beta : float, optional
- Plotting positions parameter, default is 0.4.
- axis : int, optional
- Axis along which to perform the trimming.
- If None (default), the input array is first flattened.
- limit : tuple
- Tuple of (lower, upper) values.
- Values of `a` outside this closed interval are ignored.
-
- Returns
- -------
- quants : MaskedArray
- An array containing the calculated quantiles.
-
- Examples
- --------
- >>> from scipy.stats.mstats import mquantiles
- >>> a = np.array([6., 47., 49., 15., 42., 41., 7., 39., 43., 40., 36.])
- >>> mquantiles(a)
- array([ 19.2, 40. , 42.8])
-
- Using a 2D array, specifying axis and limit.
-
- >>> data = np.array([[ 6., 7., 1.],
- [ 47., 15., 2.],
- [ 49., 36., 3.],
- [ 15., 39., 4.],
- [ 42., 40., -999.],
- [ 41., 41., -999.],
- [ 7., -999., -999.],
- [ 39., -999., -999.],
- [ 43., -999., -999.],
- [ 40., -999., -999.],
- [ 36., -999., -999.]])
- >>> mquantiles(data, axis=0, limit=(0, 50))
- array([[ 19.2 , 14.6 , 1.45],
- [ 40. , 37.5 , 2.5 ],
- [ 42.8 , 40.05, 3.55]])
-
- >>> data[:, 2] = -999.
- >>> mquantiles(data, axis=0, limit=(0, 50))
- masked_array(data =
- [[19.2 14.6 --]
- [40.0 37.5 --]
- [42.8 40.05 --]],
- mask =
- [[False False True]
- [False False True]
- [False False True]],
- fill_value = 1e+20)
-
- """
-
- if isinstance(a, np.ma.MaskedArray):
- return stats.mstats.mquantiles(a, prob=prob, alphap=alphap, betap=alphap, axis=axis,
- limit=limit)
- if limit:
- marr = stats.mstats.mquantiles(a, prob=prob, alphap=alphap, betap=alphap, axis=axis,
- limit=limit)
- return ma.filled(marr, fill_value=np.nan)
- if masknan:
- nanmask = np.isnan(a)
- if nanmask.any():
- marr = ma.array(a, mask=nanmask)
- marr = stats.mstats.mquantiles(marr, prob=prob, alphap=alphap, betap=alphap,
- axis=axis, limit=limit)
- return ma.filled(marr, fill_value=np.nan)
-
- # Initialization & checks ---------
- data = np.asarray(a)
-
- p = np.array(prob, copy=False, ndmin=1)
- m = alphap + p*(1.-alphap-betap)
-
- isrolled = False
- #from _quantiles1d
- if (axis is None):
- data = data.ravel() #reshape(-1,1)
- axis = 0
- else:
- axis = np.arange(data.ndim)[axis]
- data = np.rollaxis(data, axis)
- isrolled = True # keep track, maybe can be removed
-
- x = np.sort(data, axis=0)
- n = x.shape[0]
- returnshape = list(data.shape)
- returnshape[axis] = p
-
- #TODO: check these
- if n == 0:
- return np.empty(len(p), dtype=float)
- elif n == 1:
- return np.resize(x, p.shape)
- aleph = (n*p + m)
- k = np.floor(aleph.clip(1, n-1)).astype(int)
- ind = [None]*x.ndim
- ind[0] = slice(None)
- gamma = (aleph-k).clip(0,1)[ind]
- q = (1.-gamma)*x[k-1] + gamma*x[k]
- if isrolled:
- return np.rollaxis(q, 0, axis+1)
- else:
- return q
-
-def scoreatpercentile(data, per, limit=(), alphap=.4, betap=.4, axis=0, masknan=None):
- """Calculate the score at the given 'per' percentile of the
- sequence a. For example, the score at per=50 is the median.
-
- This function is a shortcut to mquantile
-
- """
- per = np.asarray(per, float)
- if (per < 0).any() or (per > 100.).any():
- raise ValueError("The percentile should be between 0. and 100. !"\
- " (got %s)" % per)
- return quantiles(data, prob=[per/100.], alphap=alphap, betap=betap,
- limit=limit, axis=axis, masknan=masknan).squeeze()
-
-
-def plotting_positions(data, alpha=0.4, beta=0.4, axis=0, masknan=False):
- """Returns the plotting positions (or empirical percentile points) for the
- data.
- Plotting positions are defined as (i-alpha)/(n+1-alpha-beta), where:
- - i is the rank order statistics (starting at 1)
- - n is the number of unmasked values along the given axis
- - alpha and beta are two parameters.
-
- Typical values for alpha and beta are:
- - (0,1) : *p(k) = k/n* : linear interpolation of cdf (R, type 4)
- - (.5,.5) : *p(k) = (k-1/2.)/n* : piecewise linear function (R, type 5)
- (Bliss 1967: "Rankit")
- - (0,0) : *p(k) = k/(n+1)* : Weibull (R type 6), (Van der Waerden 1952)
- - (1,1) : *p(k) = (k-1)/(n-1)*. In this case, p(k) = mode[F(x[k])].
- That's R default (R type 7)
- - (1/3,1/3): *p(k) = (k-1/3)/(n+1/3)*. Then p(k) ~ median[F(x[k])].
- The resulting quantile estimates are approximately median-unbiased
- regardless of the distribution of x. (R type 8), (Tukey 1962)
- - (3/8,3/8): *p(k) = (k-3/8)/(n+1/4)*.
- The resulting quantile estimates are approximately unbiased
- if x is normally distributed (R type 9) (Blom 1958)
- - (.4,.4) : approximately quantile unbiased (Cunnane)
- - (.35,.35): APL, used with PWM
-
- Parameters
- ----------
- x : sequence
- Input data, as a sequence or array of dimension at most 2.
- prob : sequence
- List of quantiles to compute.
- alpha : {0.4, float} optional
- Plotting positions parameter.
- beta : {0.4, float} optional
- Plotting positions parameter.
-
- Notes
- -----
- I think the adjustments assume that there are no ties in order to be a reasonable
- approximation to a continuous density function. TODO: check this
-
- References
- ----------
- unknown,
- dates to original papers from Beasley, Erickson, Allison 2009 Behav Genet
- """
- if isinstance(data, np.ma.MaskedArray):
- if axis is None or data.ndim == 1:
- return stats.mstats.plotting_positions(data, alpha=alpha, beta=beta)
- else:
- return ma.apply_along_axis(stats.mstats.plotting_positions, axis, data, alpha=alpha, beta=beta)
- if masknan:
- nanmask = np.isnan(data)
- if nanmask.any():
- marr = ma.array(data, mask=nanmask)
- #code duplication:
- if axis is None or data.ndim == 1:
- marr = stats.mstats.plotting_positions(marr, alpha=alpha, beta=beta)
- else:
- marr = ma.apply_along_axis(stats.mstats.plotting_positions, axis, marr, alpha=alpha, beta=beta)
- return ma.filled(marr, fill_value=np.nan)
-
- data = np.asarray(data)
- if data.size == 1: # use helper function instead
- data = np.atleast_1d(data)
- axis = 0
- if axis is None:
- data = data.ravel()
- axis = 0
- n = data.shape[axis]
- if data.ndim == 1:
- plpos = np.empty(data.shape, dtype=float)
- plpos[data.argsort()] = (np.arange(1,n+1) - alpha)/(n+1.-alpha-beta)
- else:
- #nd assignment instead of second argsort doesn't look easy
- plpos = (data.argsort(axis).argsort(axis) + 1. - alpha)/(n+1.-alpha-beta)
- return plpos
-
-meppf = plotting_positions
-
-def plotting_positions_w1d(data, weights=None, alpha=0.4, beta=0.4,
- method='notnormed'):
- '''Weighted plotting positions (or empirical percentile points) for the data.
-
- observations are weighted and the plotting positions are defined as
- (ws-alpha)/(n-alpha-beta), where:
- - ws is the weighted rank order statistics or cumulative weighted sum,
- normalized to n if method is "normed"
- - n is the number of values along the given axis if method is "normed"
- and total weight otherwise
- - alpha and beta are two parameters.
-
- wtd.quantile in R package Hmisc seems to use the "notnormed" version.
- notnormed coincides with unweighted segment in example, drop "normed" version ?
-
-
- See Also
- --------
- plotting_positions : unweighted version that works also with more than one
- dimension and has other options
- '''
-
- x = np.atleast_1d(data)
- if x.ndim > 1:
- raise ValueError('currently implemented only for 1d')
- if weights is None:
- weights = np.ones(x.shape)
- else:
- weights = np.array(weights, float, copy=False, ndmin=1) #atleast_1d(weights)
- if weights.shape != x.shape:
- raise ValueError('if weights is given, it needs to be the same'
- 'shape as data')
- n = len(x)
- xargsort = x.argsort()
- ws = weights[xargsort].cumsum()
- res = np.empty(x.shape)
- if method == 'normed':
- res[xargsort] = (1.*ws/ws[-1]*n-alpha)/(n+1.-alpha-beta)
- else:
- res[xargsort] = (1.*ws-alpha)/(ws[-1]+1.-alpha-beta)
- return res
-
-def edf_normal_inverse_transformed(x, alpha=3./8, beta=3./8, axis=0):
- '''rank based normal inverse transformed cdf
- '''
- from scipy import stats
- ranks = plotting_positions(data, alpha=alpha, beta=alpha, axis=0, masknan=False)
- ranks_transf = stats.norm.ppf(ranks)
- return ranks_transf
-
-if __name__ == '__main__':
-
- x = np.arange(5)
- print plotting_positions(x)
- x = np.arange(10).reshape(-1,2)
- print plotting_positions(x)
- print quantiles(x, axis=0)
- print quantiles(x, axis=None)
- print quantiles(x, axis=1)
- xm = ma.array(x)
- x2 = x.astype(float)
- x2[1,0] = np.nan
- print plotting_positions(xm, axis=0)
-
- # test 0d, 1d
- for sl1 in [slice(None), 0]:
- print (plotting_positions(xm[sl1,0]) == plotting_positions(x[sl1,0])).all(),
- print (quantiles(xm[sl1,0]) == quantiles(x[sl1,0])).all(),
- print (stats.mstats.mquantiles(ma.fix_invalid(x2[sl1,0])) == quantiles(x2[sl1,0], masknan=1)).all(),
-
- #test 2d
- for ax in [0, 1, None, -1]:
- print (plotting_positions(xm, axis=ax) == plotting_positions(x, axis=ax)).all(),
- print (quantiles(xm, axis=ax) == quantiles(x, axis=ax)).all(),
- print (stats.mstats.mquantiles(ma.fix_invalid(x2), axis=ax) == quantiles(x2, axis=ax, masknan=1)).all(),
-
- #stats version doesn't have axis
- print (stats.mstats.plotting_positions(ma.fix_invalid(x2)) == plotting_positions(x2, axis=None, masknan=1)).all(),
-
- #test 3d
- x3 = np.dstack((x,x)).T
- for ax in [1,2]:
- print (plotting_positions(x3, axis=ax)[0] == plotting_positions(x.T, axis=ax-1)).all(),
-
- np.testing.assert_equal(plotting_positions(np.arange(10), alpha=0.35, beta=1-0.35), (1+np.arange(10)-0.35)/10)
- np.testing.assert_equal(plotting_positions(np.arange(10), alpha=0.4, beta=0.4), (1+np.arange(10)-0.4)/(10+0.2))
- np.testing.assert_equal(plotting_positions(np.arange(10)), (1+np.arange(10)-0.4)/(10+0.2))
- print
- print scoreatpercentile(x, [10,90])
- print plotting_positions_w1d(x[:,0])
- print (plotting_positions_w1d(x[:,0]) == plotting_positions(x[:,0])).all()
-
-
- #weights versus replicating multiple occurencies of same x value
- w1 = [1, 1, 2, 1, 1]
- plotexample = 1
- if plotexample:
- import matplotlib.pyplot as plt
- plt.figure()
- plt.title('ppf, cdf values on horizontal axis')
- plt.step(plotting_positions_w1d(x[:,0], weights=w1, method='0'), x[:,0], where='post')
- plt.step(stats.mstats.plotting_positions(np.repeat(x[:,0],w1,axis=0)),np.repeat(x[:,0],w1,axis=0),where='post')
- plt.plot(plotting_positions_w1d(x[:,0], weights=w1, method='0'), x[:,0], '-o')
- plt.plot(stats.mstats.plotting_positions(np.repeat(x[:,0],w1,axis=0)),np.repeat(x[:,0],w1,axis=0), '-o')
-
- plt.figure()
- plt.title('cdf, cdf values on vertical axis')
- plt.step(x[:,0], plotting_positions_w1d(x[:,0], weights=w1, method='0'),where='post')
- plt.step(np.repeat(x[:,0],w1,axis=0), stats.mstats.plotting_positions(np.repeat(x[:,0],w1,axis=0)),where='post')
- plt.plot(x[:,0], plotting_positions_w1d(x[:,0], weights=w1, method='0'), '-o')
- plt.plot(np.repeat(x[:,0],w1,axis=0), stats.mstats.plotting_positions(np.repeat(x[:,0],w1,axis=0)), '-o')
- plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/tests/__init__.py b/statsmodels/scikits/statsmodels/sandbox/stats/tests/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/tests/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/stats/tests/test_multi.py b/statsmodels/scikits/statsmodels/sandbox/stats/tests/test_multi.py
deleted file mode 100644
index 9dd648e..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/stats/tests/test_multi.py
+++ /dev/null
@@ -1,162 +0,0 @@
-
-import numpy as np
-from numpy.testing import assert_almost_equal, assert_equal
-
-from scikits.statsmodels.sandbox.stats.multicomp import \
- multipletests, fdrcorrection0, fdrcorrection_twostage, tukeyhsd
-
-pval0 = np.array([0.838541367553 , 0.642193923795 , 0.680845947633 ,
- 0.967833824309 , 0.71626938238 , 0.177096952723 , 5.23656777208e-005 ,
- 0.0202732688798 , 0.00028140506198 , 0.0149877310796])
-
-res_multtest = np.array([[ 5.2365677720800003e-05, 5.2365677720800005e-04,
- 5.2365677720800005e-04, 5.2365677720800005e-04,
- 5.2353339704891422e-04, 5.2353339704891422e-04,
- 5.2365677720800005e-04, 1.5337740764175588e-03],
- [ 2.8140506198000000e-04, 2.8140506197999998e-03,
- 2.5326455578199999e-03, 2.5326455578199999e-03,
- 2.8104897961789277e-03, 2.5297966317768816e-03,
- 1.4070253098999999e-03, 4.1211324652269442e-03],
- [ 1.4987731079600001e-02, 1.4987731079600000e-01,
- 1.1990184863680001e-01, 1.1990184863680001e-01,
- 1.4016246580579017e-01, 1.1379719679449507e-01,
- 4.9959103598666670e-02, 1.4632862843720582e-01],
- [ 2.0273268879800001e-02, 2.0273268879799999e-01,
- 1.4191288215860001e-01, 1.4191288215860001e-01,
- 1.8520270949069695e-01, 1.3356756197485375e-01,
- 5.0683172199499998e-02, 1.4844940238274187e-01],
- [ 1.7709695272300000e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 8.5760763426056130e-01, 6.8947825122356643e-01,
- 3.5419390544599999e-01, 1.0000000000000000e+00],
- [ 6.4219392379499995e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 9.9996560644133570e-01, 9.9413539782557070e-01,
- 8.9533672797500008e-01, 1.0000000000000000e+00],
- [ 6.8084594763299999e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 9.9998903512635740e-01, 9.9413539782557070e-01,
- 8.9533672797500008e-01, 1.0000000000000000e+00],
- [ 7.1626938238000004e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 9.9999661886871472e-01, 9.9413539782557070e-01,
- 8.9533672797500008e-01, 1.0000000000000000e+00],
- [ 8.3854136755300002e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 9.9999998796038225e-01, 9.9413539782557070e-01,
- 9.3171263061444454e-01, 1.0000000000000000e+00],
- [ 9.6783382430900000e-01, 1.0000000000000000e+00,
- 1.0000000000000000e+00, 9.6783382430900000e-01,
- 9.9999999999999878e-01, 9.9413539782557070e-01,
- 9.6783382430900000e-01, 1.0000000000000000e+00]])
-
-
-def test_multi_pvalcorrection():
- #test against R package multtest mt.rawp2adjp
- #because of sort this doesn't check correct sequence - TODO: rewrite DONE
- rmethods = {'rawp':(0,'pval'), 'Bonferroni':(1,'b'), 'Holm':(2,'h'),
- 'Hochberg':(3,'sh'), 'SidakSS':(4,'s'), 'SidakSD':(5,'hs'),
- 'BH':(6,'fdr_i'), 'BY':(7,'fdr_n')}
-
- for k,v in rmethods.items():
- if v[1] in ['b', 's', 'sh', 'hs', 'h', 'fdr_i', 'fdr_n']:
- #pvalscorr = np.sort(multipletests(pval0, alpha=0.1, method=v[1])[1])
- r_sortindex = [6, 8, 9, 7, 5, 1, 2, 4, 0, 3]
- pvalscorr = multipletests(pval0, alpha=0.1, method=v[1])[1][r_sortindex]
- assert_almost_equal(pvalscorr, res_multtest[:,v[0]], 15)
-
- pvalscorr = np.sort(fdrcorrection0(pval0, method='n')[1])
- assert_almost_equal(pvalscorr, res_multtest[:,7], 15)
- pvalscorr = np.sort(fdrcorrection0(pval0, method='i')[1])
- assert_almost_equal(pvalscorr, res_multtest[:,6], 15)
-
-def test_hommel():
- #tested agains R stats p_adjust(pval0, method='hommel')
- pval0 = np.array(
- [ 0.00116, 0.00924, 0.01075, 0.01437, 0.01784, 0.01918,
- 0.02751, 0.02871, 0.03054, 0.03246, 0.04259, 0.06879,
- 0.0691 , 0.08081, 0.08593, 0.08993, 0.09386, 0.09412,
- 0.09718, 0.09758, 0.09781, 0.09788, 0.13282, 0.20191,
- 0.21757, 0.24031, 0.26061, 0.26762, 0.29474, 0.32901,
- 0.41386, 0.51479, 0.52461, 0.53389, 0.56276, 0.62967,
- 0.72178, 0.73403, 0.87182, 0.95384])
-
- result_ho = np.array(
- [ 0.0464 , 0.25872 , 0.29025 ,
- 0.3495714285714286, 0.41032 , 0.44114 ,
- 0.57771 , 0.60291 , 0.618954 ,
- 0.6492 , 0.7402725000000001, 0.86749 ,
- 0.86749 , 0.8889100000000001, 0.8971477777777778,
- 0.8993 , 0.9175374999999999, 0.9175374999999999,
- 0.9175374999999999, 0.9175374999999999, 0.9175374999999999,
- 0.9175374999999999, 0.95384 , 0.9538400000000001,
- 0.9538400000000001, 0.9538400000000001, 0.9538400000000001,
- 0.9538400000000001, 0.9538400000000001, 0.9538400000000001,
- 0.9538400000000001, 0.9538400000000001, 0.9538400000000001,
- 0.9538400000000001, 0.9538400000000001, 0.9538400000000001,
- 0.9538400000000001, 0.9538400000000001, 0.9538400000000001,
- 0.9538400000000001])
-
- rej, pvalscorr, _, _ = multipletests(pval0, alpha=0.1, method='ho')
- assert_almost_equal(pvalscorr, result_ho, 15)
- assert_equal(rej, result_ho < 0.1) #booleans
-
-def test_fdr_bky():
- #test for fdrcorrection_twostage
- #example from BKY
- pvals = [0.0001, 0.0004, 0.0019, 0.0095, 0.0201, 0.0278, 0.0298, 0.0344, 0.0459,
- 0.3240, 0.4262, 0.5719, 0.6528, 0.7590, 1.000 ]
-
- #no test for corrected p-values, but they are inherited
- #same number of rejection as in BKY paper:
- #single step-up:4, two-stage:8, iterated two-step:9
- #also alpha_star is the same as theirs for TST
- #print fdrcorrection0(pvals, alpha=0.05, method='indep')
- #print fdrcorrection_twostage(pvals, alpha=0.05, iter=False)
- res_tst = fdrcorrection_twostage(pvals, alpha=0.05, iter=False)
- assert_almost_equal([0.047619, 0.0649], res_tst[-1][:2],3) #alpha_star for stage 2
- assert_equal(8, res_tst[0].sum())
- #print fdrcorrection_twostage(pvals, alpha=0.05, iter=True)
-
-def test_tukeyhsd():
- #example multicomp in R p 83
-
- res = '''\
- pair diff lwr upr p adj
- P-M 8.150000 -10.037586 26.3375861 0.670063958
- S-M -3.258333 -21.445919 14.9292527 0.982419709
- T-M 23.808333 5.620747 41.9959194 0.006783701
- V-M 4.791667 -13.395919 22.9792527 0.931020848
- S-P -11.408333 -29.595919 6.7792527 0.360680099
- T-P 15.658333 -2.529253 33.8459194 0.113221634
- V-P -3.358333 -21.545919 14.8292527 0.980350080
- T-S 27.066667 8.879081 45.2542527 0.002027122
- V-S 8.050000 -10.137586 26.2375861 0.679824487
- V-T -19.016667 -37.204253 -0.8290806 0.037710044
- '''
-
- res = np.array([[ 8.150000, -10.037586, 26.3375861, 0.670063958],
- [-3.258333, -21.445919, 14.9292527, 0.982419709],
- [23.808333, 5.620747, 41.9959194, 0.006783701],
- [ 4.791667, -13.395919, 22.9792527, 0.931020848],
- [-11.408333, -29.595919, 6.7792527, 0.360680099],
- [15.658333, -2.529253, 33.8459194, 0.113221634],
- [-3.358333, -21.545919, 14.8292527, 0.980350080],
- [27.066667, 8.879081, 45.2542527, 0.002027122],
- [ 8.050000, -10.137586, 26.2375861, 0.679824487],
- [-19.016667, -37.204253, -0.8290806, 0.037710044]])
-
- m_r = [94.39167, 102.54167, 91.13333, 118.20000, 99.18333]
- myres = tukeyhsd(m_r, 6, 110.8, alpha=0.05, df=4)
- from numpy.testing import assert_almost_equal, assert_equal
- pairs, reject, meandiffs, std_pairs, confint, q_crit = myres[:6]
- assert_almost_equal(meandiffs, res[:, 0], decimal=5)
- assert_almost_equal(confint, res[:, 1:3], decimal=2)
- assert_equal(reject, res[:, 3]<0.05)
-
-
-if __name__ == '__main__':
- test_multi_pvalcorrection()
- test_hommel()
- test_fdr_bky()
- test_tukeyhsd()
diff --git a/statsmodels/scikits/statsmodels/sandbox/survival.py b/statsmodels/scikits/statsmodels/sandbox/survival.py
deleted file mode 100644
index f9eb979..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/survival.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import numpy as np
-
-class SurvivalTime(object):
- def __init__(self, time, delta):
- self.time, self.delta = time, delta
-
- def atrisk(self, time):
- raise NotImplementedError
-
-class RightCensored(SurvivalTime):
-
- def atrisk(self, time):
- return np.less_equal.outer(time, self.time)
-
-class LeftCensored(SurvivalTime):
-
- def atrisk(self, time):
- return np.greater_equal.outer(time, self.time)
diff --git a/statsmodels/scikits/statsmodels/sandbox/survival2.py b/statsmodels/scikits/statsmodels/sandbox/survival2.py
deleted file mode 100644
index 9d12374..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/survival2.py
+++ /dev/null
@@ -1,499 +0,0 @@
-#Kaplan-Meier Estimator
-
-import numpy as np
-import numpy.linalg as la
-import matplotlib.pyplot as plt
-from scipy import stats
-from scikits.statsmodels.iolib.table import SimpleTable
-
-class KaplanMeier(object):
-
- """
- KaplanMeier(...)
- KaplanMeier(data, endog, exog=None, censoring=None)
-
- Create an object of class KaplanMeier for estimating
- Kaplan-Meier survival curves.
-
- Parameters
- ----------
- data: array_like
- An array, with observations in each row, and
- variables in the columns
-
- endog: index (starting at zero) of the column
- containing the endogenous variable (time)
-
- exog: index of the column containing the exogenous
- variable (must be catagorical). If exog = None, this
- is equivalent to a single survival curve
-
- censoring: index of the column containing an indicator
- of whether an observation is an event, or a censored
- observation, with 0 for censored, and 1 for an event
-
- Attributes
- -----------
- censorings: List of censorings associated with each unique
- time, at each value of exog
-
- events: List of the number of events at each unique time
- for each value of exog
-
- results: List of arrays containing estimates of the value
- value of the survival function and its standard error
- at each unique time, for each value of exog
-
- ts: List of unique times for each value of exog
-
- Methods
- -------
- fit: Calcuate the Kaplan-Meier estimates of the survival
- function and its standard error at each time, for each
- value of exog
-
- plot: Plot the survival curves using matplotlib.plyplot
-
- summary: Display the results of fit in a table. Gives results
- for all (including censored) times
-
- test_diff: Test for difference between survival curves
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> import matplotlib.pyplot as plt
- >>> import numpy as np
- >>> from scikits.statsmodels.sandbox.survival2 import KaplanMeier
- >>> dta = sm.datasets.strikes.load()
- >>> dta = dta.values()[-1]
- >>> dta[range(5),:]
- array([[ 7.00000000e+00, 1.13800000e-02],
- [ 9.00000000e+00, 1.13800000e-02],
- [ 1.30000000e+01, 1.13800000e-02],
- [ 1.40000000e+01, 1.13800000e-02],
- [ 2.60000000e+01, 1.13800000e-02]])
- >>> km = KaplanMeier(dta,0)
- >>> km.fit()
- >>> km.plot()
-
- Doing
-
- >>> km.summary()
-
- will display a table of the estimated survival and standard errors
- for each time. The first few lines are
-
- Kaplan-Meier Curve
- =====================================
- Time Survival Std. Err
- -------------------------------------
- 1.0 0.983870967742 0.0159984306572
- 2.0 0.91935483871 0.0345807888235
- 3.0 0.854838709677 0.0447374942184
- 4.0 0.838709677419 0.0467104592871
- 5.0 0.822580645161 0.0485169952543
-
- Doing
-
- >>> plt.show()
-
- will plot the survival curve
-
- Mutliple survival curves:
-
- >>> km2 = KaplanMeier(dta,0,exog=1)
- >>> km2.fit()
-
- km2 will estimate a survival curve for each value of industrial
- production, the column of dta with index one (1).
-
- With censoring:
-
- >>> censoring = np.ones_like(dta[:,0])
- >>> censoring[dta[:,0] > 80] = 0
- >>> dta = np.c_[dta,censoring]
- >>> dta[range(5),:]
- array([[ 7.00000000e+00, 1.13800000e-02, 1.00000000e+00],
- [ 9.00000000e+00, 1.13800000e-02, 1.00000000e+00],
- [ 1.30000000e+01, 1.13800000e-02, 1.00000000e+00],
- [ 1.40000000e+01, 1.13800000e-02, 1.00000000e+00],
- [ 2.60000000e+01, 1.13800000e-02, 1.00000000e+00]])
-
- >>> km3 = KaplanMeier(dta,0,exog=1,censoring=2)
- >>> km3.fit()
-
- Test for difference of survival curves
-
- >>> log_rank = km3.test_diff([0.0645,-0.03957])
-
- The zeroth element of log_rank is the chi-square test statistic
- for the difference between the survival curves for exog = 0.0645
- and exog = -0.03957, the index one element is the degrees of freedom for
- the test, and the index two element is the p-value for the test
-
- Groups with nan names
-
- >>> groups = np.ones_like(dta[:,1])
- >>> groups = groups.astype('S4')
- >>> groups[dta[:,1] > 0] = 'high'
- >>> groups[dta[:,1] <= 0] = 'low'
- >>> dta = dta.astype('S4')
- >>> dta[:,1] = groups
- >>> dta[range(5),:]
- array([['7.0', 'high', '1.0'],
- ['9.0', 'high', '1.0'],
- ['13.0', 'high', '1.0'],
- ['14.0', 'high', '1.0'],
- ['26.0', 'high', '1.0']],
- dtype='|S4')
- >>> km4 = KaplanMeier(dta,0,exog=1,censoring=2)
- >>> km4.fit()
-
- """
-
- def __init__(self, data, endog, exog=None, censoring=None):
- self.exog = exog
- self.censoring = censoring
- cols = [endog]
- self.endog = 0
- if exog != None:
- cols.append(exog)
- self.exog = 1
- if censoring != None:
- cols.append(censoring)
- if exog != None:
- self.censoring = 2
- else:
- self.censoring = 1
- data = data[:,cols]
- if data.dtype == float or data.dtype == int:
- self.data = data[~np.isnan(data).any(1)]
- else:
- t = (data[:,self.endog]).astype(float)
- if exog != None:
- evec = data[:,self.exog]
- evec = evec[~np.isnan(t)]
- if censoring != None:
- cvec = (data[:,self.censoring]).astype(float)
- cvec = cvec[~np.isnan(t)]
- t = t[~np.isnan(t)]
- if censoring != None:
- t = t[~np.isnan(cvec)]
- if exog != None:
- evec = evec[~np.isnan(cvec)]
- cvec = cvec[~np.isnan(cvec)]
- cols = [t]
- if exog != None:
- cols.append(evec)
- if censoring != None:
- cols.append(cvec)
- data = (np.array(cols)).transpose()
- self.data = data
-
- def fit(self):
- """
- Calculate the Kaplan-Meier estimator of the survival function
- """
- self.results = []
- self.ts = []
- self.censorings = []
- self.event = []
- if self.exog == None:
- self.fitting_proc(self.data)
- else:
- groups = np.unique(self.data[:,self.exog])
- self.groups = groups
- for g in groups:
- group = self.data[self.data[:,self.exog] == g]
- self.fitting_proc(group)
-
- def plot(self):
- """
- Plot the estimated survival curves. After using this method
- do
-
- plt.show()
-
- to display the plot
- """
- plt.figure()
- if self.exog == None:
- self.plotting_proc(0)
- else:
- for g in range(len(self.groups)):
- self.plotting_proc(g)
- plt.ylim(ymax=1.05)
- plt.ylabel('Survival')
- plt.xlabel('Time')
-
- def summary(self):
- """
- Print a set of tables containing the estimates of the survival
- function, and its standard errors
- """
- if self.exog == None:
- self.summary_proc(0)
- else:
- for g in range(len(self.groups)):
- self.summary_proc(g)
-
- def fitting_proc(self, group):
- """
- For internal use
- """
- t = ((group[:,self.endog]).astype(float)).astype(int)
- if self.censoring == None:
- events = np.bincount(t)
- t = np.unique(t)
- events = events[:,list(t)]
- events = events.astype(float)
- eventsSum = np.cumsum(events)
- eventsSum = np.r_[0,eventsSum]
- n = len(group) - eventsSum[:-1]
- else:
- censoring = ((group[:,self.censoring]).astype(float)).astype(int)
- reverseCensoring = -1*(censoring - 1)
- events = np.bincount(t,censoring)
- censored = np.bincount(t,reverseCensoring)
- t = np.unique(t)
- censored = censored[:,list(t)]
- censored = censored.astype(float)
- censoredSum = np.cumsum(censored)
- censoredSum = np.r_[0,censoredSum]
- events = events[:,list(t)]
- events = events.astype(float)
- eventsSum = np.cumsum(events)
- eventsSum = np.r_[0,eventsSum]
- n = len(group) - eventsSum[:-1] - censoredSum[:-1]
- (self.censorings).append(censored)
- survival = np.cumprod(1-events/n)
- var = ((survival*survival) *
- np.cumsum(events/(n*(n-events))))
- se = np.sqrt(var)
- (self.results).append(np.array([survival,se]))
- (self.ts).append(t)
- (self.event).append(events)
-
- def plotting_proc(self, g):
- """
- For internal use
- """
- survival = self.results[g][0]
- t = self.ts[g]
- e = (self.event)[g]
- if self.censoring != None:
- c = self.censorings[g]
- csurvival = survival[c != 0]
- ct = t[c != 0]
- if len(ct) != 0:
- plt.vlines(ct,csurvival+0.02,csurvival-0.02)
- x = np.repeat(t[e != 0], 2)
- y = np.repeat(survival[e != 0], 2)
- if self.ts[g][-1] in t[e != 0]:
- x = np.r_[0,x]
- y = np.r_[1,1,y[:-1]]
- else:
- x = np.r_[0,x,self.ts[g][-1]]
- y = np.r_[1,1,y]
- plt.plot(x,y)
-
- def summary_proc(self, g):
- """
- For internal use
- """
- if self.exog != None:
- myTitle = ('exog = ' + str(self.groups[g]) + '\n')
- else:
- myTitle = "Kaplan-Meier Curve"
- table = np.transpose(self.results[g])
- table = np.c_[np.transpose(self.ts[g]),table]
- table = SimpleTable(table, headers=['Time','Survival','Std. Err'],
- title = myTitle)
- print(table)
-
- def test_diff(self, groups, rho=None, weight=None):
-
- """
- test_diff(groups, rho=0)
-
- Test for difference between survival curves
-
- Parameters
- ----------
- groups: A list of the values for exog to test for difference.
- tests the null hypothesis that the survival curves for all
- values of exog in groups are equal
-
- rho: compute the test statistic with weight S(t)^rho, where
- S(t) is the pooled estimate for the Kaplan-Meier survival function.
- If rho = 0, this is the logrank test, if rho = 0, this is the
- Peto and Peto modification to the Gehan-Wilcoxon test.
-
- weight: User specified function that accepts as its sole arguement
- an array of times, and returns an array of weights for each time
- to be used in the test
-
- Returns
- -------
- An array whose zeroth element is the chi-square test statistic for
- the global null hypothesis, that all survival curves are equal,
- the index one element is degrees of freedom for the test, and the
- index two element is the p-value for the test.
-
- Examples
- --------
-
- >>> import scikits.statsmodels.api as sm
- >>> import matplotlib.pyplot as plt
- >>> import numpy as np
- >>> from scikits.statsmodels.sandbox.survival2 import KaplanMeier
- >>> dta = sm.datasets.strikes.load()
- >>> dta = dta.values()[-1]
- >>> censoring = np.ones_like(dta[:,0])
- >>> censoring[dta[:,0] > 80] = 0
- >>> dta = np.c_[dta,censoring]
- >>> km = KaplanMeier(dta,0,exog=1,censoring=2)
- >>> km.fit()
-
- Test for difference of survival curves
-
- >>> log_rank = km3.test_diff([0.0645,-0.03957])
-
- The zeroth element of log_rank is the chi-square test statistic
- for the difference between the survival curves using the log rank test
- for exog = 0.0645 and exog = -0.03957, the index one element
- is the degrees of freedom for the test, and the index two element
- is the p-value for the test
-
- >>> wilcoxon = km.test_diff([0.0645,-0.03957], rho=1)
-
- wilcoxon is the equivalent information as log_rank, but for the
- Peto and Peto modification to the Gehan-Wilcoxon test.
-
- User specified weight functions
-
- >>> log_rank = km3.test_diff([0.0645,-0.03957], weight=np.ones_like)
-
- This is equivalent to the log rank test
-
- More than two groups
-
- >>> log_rank = km.test_diff([0.0645,-0.03957,0.01138])
-
- The test can be performed with arbitrarily many groups, so long as
- they are all in the column exog
- """
- groups = np.asarray(groups)
- if self.exog == None:
- raise ValueError("Need an exogenous variable for logrank test")
-
- elif (np.in1d(groups,self.groups)).all():
- data = self.data[np.in1d(self.data[:,self.exog],groups)]
- t = ((data[:,self.endog]).astype(float)).astype(int)
- tind = np.unique(t)
- NK = []
- N = []
- D = []
- Z = []
- if rho != None and weight != None:
- raise ValueError("Must use either rho or weights, not both")
-
- elif rho != None:
- s = KaplanMeier(data,self.endog,censoring=self.censoring)
- s.fit()
- s = (s.results[0][0]) ** (rho)
- s = np.r_[1,s[:-1]]
-
- elif weight != None:
- s = weight(tind)
-
- else:
- s = np.ones_like(tind)
-
- if self.censoring == None:
- for g in groups:
- dk = np.bincount((t[data[:,self.exog] == g]))
- d = np.bincount(t)
- if np.max(tind) != len(dk):
- dif = np.max(tind) - len(dk) + 1
- dk = np.r_[dk,[0]*dif]
- dk = dk[:,list(tind)]
- d = d[:,list(tind)]
- dk = dk.astype(float)
- d = d.astype(float)
- dkSum = np.cumsum(dk)
- dSum = np.cumsum(d)
- dkSum = np.r_[0,dkSum]
- dSum = np.r_[0,dSum]
- nk = len(data[data[:,self.exog] == g]) - dkSum[:-1]
- n = len(data) - dSum[:-1]
- d = d[n>1]
- dk = dk[n>1]
- nk = nk[n>1]
- n = n[n>1]
- s = s[n>1]
- ek = (nk * d)/(n)
- Z.append(np.sum(s * (dk - ek)))
- NK.append(nk)
- N.append(n)
- D.append(d)
- else:
- for g in groups:
- censoring = ((data[:,self.censoring]).astype(float)).astype(int)
- reverseCensoring = -1*(censoring - 1)
- censored = np.bincount(t,reverseCensoring)
- ck = np.bincount((t[data[:,self.exog] == g]),
- reverseCensoring[data[:,self.exog] == g])
- dk = np.bincount((t[data[:,self.exog] == g]),
- censoring[data[:,self.exog] == g])
- d = np.bincount(t,censoring)
- if np.max(tind) != len(dk):
- dif = np.max(tind) - len(dk) + 1
- dk = np.r_[dk,[0]*dif]
- ck = np.r_[ck,[0]*dif]
- dk = dk[:,list(tind)]
- ck = ck[:,list(tind)]
- d = d[:,list(tind)]
- dk = dk.astype(float)
- d = d.astype(float)
- ck = ck.astype(float)
- dkSum = np.cumsum(dk)
- dSum = np.cumsum(d)
- ck = np.cumsum(ck)
- ck = np.r_[0,ck]
- dkSum = np.r_[0,dkSum]
- dSum = np.r_[0,dSum]
- censored = censored[:,list(tind)]
- censored = censored.astype(float)
- censoredSum = np.cumsum(censored)
- censoredSum = np.r_[0,censoredSum]
- nk = (len(data[data[:,self.exog] == g]) - dkSum[:-1]
- - ck[:-1])
- n = len(data) - dSum[:-1] - censoredSum[:-1]
- d = d[n>1]
- dk = dk[n>1]
- nk = nk[n>1]
- n = n[n>1]
- s = s[n>1]
- ek = (nk * d)/(n)
- Z.append(np.sum(s * (dk - ek)))
- NK.append(nk)
- N.append(n)
- D.append(d)
- Z = np.array(Z)
- N = np.array(N)
- D = np.array(D)
- NK = np.array(NK)
- sigma = -1 * np.dot((NK/N) * ((N - D)/(N - 1)) * D
- * np.array([(s ** 2)]*len(D))
- ,np.transpose(NK/N))
- np.fill_diagonal(sigma, np.diagonal(np.dot((NK/N)
- * ((N - D)/(N - 1)) * D
- * np.array([(s ** 2)]*len(D))
- ,np.transpose(1 - (NK/N)))))
- chisq = np.dot(np.transpose(Z),np.dot(la.pinv(sigma), Z))
- df = len(groups) - 1
- return np.array([chisq, df, stats.chi2.sf(chisq,df)])
- else:
- raise ValueError("groups must be in column exog")
diff --git a/statsmodels/scikits/statsmodels/sandbox/sysreg.py b/statsmodels/scikits/statsmodels/sandbox/sysreg.py
deleted file mode 100644
index aa9049a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/sysreg.py
+++ /dev/null
@@ -1,377 +0,0 @@
-from scikits.statsmodels.regression.linear_model import GLS
-import numpy as np
-import scikits.statsmodels.tools.tools as tools
-from scikits.statsmodels.base.model import LikelihoodModelResults
-from scipy import sparse
-
-#http://www.irisa.fr/aladin/wg-statlin/WORKSHOPS/RENNES02/SLIDES/Foschi.pdf
-
-__all__ = ['SUR', 'Sem2SLS']
-
-#probably should have a SystemModel superclass
-# TODO: does it make sense of SUR equations to have
-# independent endogenous regressors? If so, then
-# change docs to LHS = RHS
-#TODO: make a dictionary that holds equation specific information
-#rather than these cryptic lists? Slower to get a dict value?
-#TODO: refine sigma definition
-class SUR(object):
- """
- Seemingly Unrelated Regression
-
- Parameters
- ----------
- sys : list
- [endog1, exog1, endog2, exog2,...] It will be of length 2 x M,
- where M is the number of equations endog = exog.
- sigma : array-like
- M x M array where sigma[i,j] is the covariance between equation i and j
- dfk : None, 'dfk1', or 'dfk2'
- Default is None. Correction for the degrees of freedom
- should be specified for small samples. See the notes for more
- information.
-
- Attributes
- ----------
- cholsigmainv : array
- The transpose of the Cholesky decomposition of `pinv_wexog`
- df_model : array
- Model degrees of freedom of each equation. p_{m} - 1 where p is
- the number of regressors for each equation m and one is subtracted
- for the constant.
- df_resid : array
- Residual degrees of freedom of each equation. Number of observations
- less the number of parameters.
- endog : array
- The LHS variables for each equation in the system.
- It is a M x nobs array where M is the number of equations.
- exog : array
- The RHS variable for each equation in the system.
- It is a nobs x sum(p_{m}) array. Which is just each
- RHS array stacked next to each other in columns.
- history : dict
- Contains the history of fitting the model. Probably not of interest
- if the model is fit with `igls` = False.
- iterations : int
- The number of iterations until convergence if the model is fit
- iteratively.
- nobs : float
- The number of observations of the equations.
- normalized_cov_params : array
- sum(p_{m}) x sum(p_{m}) array
- :math:`\\left[X^{T}\\left(\\Sigma^{-1}\\otimes\\boldsymbol{I}\\right)X\\right]^{-1}`
- pinv_wexog : array
- The pseudo-inverse of the `wexog`
- sigma : array
- M x M covariance matrix of the cross-equation disturbances. See notes.
- sp_exog : CSR sparse matrix
- Contains a block diagonal sparse matrix of the design so that
- exog1 ... exogM are on the diagonal.
- wendog : array
- M * nobs x 1 array of the endogenous variables whitened by
- `cholsigmainv` and stacked into a single column.
- wexog : array
- M*nobs x sum(p_{m}) array of the whitened exogenous variables.
-
- Notes
- -----
- All individual equations are assumed to be well-behaved, homoeskedastic
- iid errors. This is basically an extension of GLS, using sparse matrices.
-
- .. math:: \\Sigma=\\left[\\begin{array}{cccc}
- \\sigma_{11} & \\sigma_{12} & \\cdots & \\sigma_{1M}\\\\
- \\sigma_{21} & \\sigma_{22} & \\cdots & \\sigma_{2M}\\\\
- \\vdots & \\vdots & \\ddots & \\vdots\\\\
- \\sigma_{M1} & \\sigma_{M2} & \\cdots & \\sigma_{MM}\\end{array}\\right]
-
- References
- ----------
- Zellner (1962), Greene (2003)
- """
-#TODO: Does each equation need nobs to be the same?
- def __init__(self, sys, sigma=None, dfk=None):
- if len(sys) % 2 != 0:
- raise ValueError("sys must be a list of pairs of endogenous and \
-exogenous variables. Got length %s" % len(sys))
- if dfk:
- if not dfk.lower() in ['dfk1','dfk2']:
- raise ValueError("dfk option %s not understood" % (dfk))
- self._dfk = dfk
- M = len(sys[1::2])
- self._M = M
-# exog = np.zeros((M,M), dtype=object)
-# for i,eq in enumerate(sys[1::2]):
-# exog[i,i] = np.asarray(eq) # not sure this exog is needed
- # used to compute resids for now
- exog = np.column_stack(np.asarray(sys[1::2][i]) for i in range(M))
-# exog = np.vstack(np.asarray(sys[1::2][i]) for i in range(M))
- self.exog = exog # 2d ndarray exog is better
-# Endog, might just go ahead and reshape this?
- endog = np.asarray(sys[::2])
- self.endog = endog
- self.nobs = float(self.endog[0].shape[0]) # assumes all the same length
-
-# Degrees of Freedom
- df_resid = []
- df_model = []
- [df_resid.append(self.nobs - tools.rank(_)) \
- for _ in sys[1::2]]
- [df_model.append(tools.rank(_) - 1) for _ in sys[1::2]]
- self.df_resid = np.asarray(df_resid)
- self.df_model = np.asarray(df_model)
-
-# "Block-diagonal" sparse matrix of exog
- sp_exog = sparse.lil_matrix((int(self.nobs*M),
- int(np.sum(self.df_model+1)))) # linked lists to build
- self._cols = np.cumsum(np.hstack((0, self.df_model+1)))
- for i in range(M):
- sp_exog[i*self.nobs:(i+1)*self.nobs,
- self._cols[i]:self._cols[i+1]] = sys[1::2][i]
- self.sp_exog = sp_exog.tocsr() # cast to compressed for efficiency
-# Deal with sigma, check shape earlier if given
- if np.any(sigma):
- sigma = np.asarray(sigma) # check shape
- elif sigma == None:
- resids = []
- for i in range(M):
- resids.append(GLS(endog[i],exog[:,
- self._cols[i]:self._cols[i+1]]).fit().resid)
- resids = np.asarray(resids).reshape(M,-1)
- sigma = self._compute_sigma(resids)
- self.sigma = sigma
- self.cholsigmainv = np.linalg.cholesky(np.linalg.pinv(\
- self.sigma)).T
- self.initialize()
-
- def initialize(self):
- self.wendog = self.whiten(self.endog)
- self.wexog = self.whiten(self.sp_exog)
- self.pinv_wexog = np.linalg.pinv(self.wexog)
- self.normalized_cov_params = np.dot(self.pinv_wexog,
- np.transpose(self.pinv_wexog))
- self.history = {'params' : [np.inf]}
- self.iterations = 0
-
- def _update_history(self, params):
- self.history['params'].append(params)
-
- def _compute_sigma(self, resids):
- """
- Computes the sigma matrix and update the cholesky decomposition.
- """
- M = self._M
- nobs = self.nobs
- sig = np.dot(resids, resids.T) # faster way to do this?
- if not self._dfk:
- div = nobs
- elif self._dfk.lower() == 'dfk1':
- div = np.zeros(M**2)
- for i in range(M):
- for j in range(M):
- div[i+j] = ((self.df_model[i]+1) *\
- (self.df_model[j]+1))**(1/2)
- div.reshape(M,M)
- else: # 'dfk2' error checking is done earlier
- div = np.zeros(M**2)
- for i in range(M):
- for j in range(M):
- div[i+j] = nobs - np.max(self.df_model[i]+1,
- self.df_model[j]+1)
- div.reshape(M,M)
-# doesn't handle (#,)
- self.cholsigmainv = np.linalg.cholesky(np.linalg.pinv(sig/div)).T
- return sig/div
-
- def whiten(self, X):
- """
- SUR whiten method.
-
- Parameters
- -----------
- X : list of arrays
- Data to be whitened.
-
- Returns
- -------
- If X is the exogenous RHS of the system.
- ``np.dot(np.kron(cholsigmainv,np.eye(M)),np.diag(X))``
-
- If X is the endogenous LHS of the system.
-
- """
- nobs = self.nobs
- if X is self.endog: # definitely not a robust check
- return np.dot(np.kron(self.cholsigmainv,np.eye(nobs)),
- X.reshape(-1,1))
- elif X is self.sp_exog:
- return (sparse.kron(self.cholsigmainv,
- sparse.eye(nobs,nobs))*X).toarray()#*=dot until cast to array
-
- def fit(self, igls=False, tol=1e-5, maxiter=100):
- """
- igls : bool
- Iterate until estimates converge if sigma is None instead of
- two-step GLS, which is the default is sigma is None.
-
- tol : float
-
- maxiter : int
-
- Notes
- -----
- This ia naive implementation that does not exploit the block
- diagonal structure. It should work for ill-conditioned `sigma`
- but this is untested.
- """
-
- if not np.any(self.sigma):
- self.sigma = self._compute_sigma(self.endog, self.exog)
- M = self._M
- beta = np.dot(self.pinv_wexog, self.wendog)
- self._update_history(beta)
- self.iterations += 1
- if not igls:
- sur_fit = SysResults(self, beta, self.normalized_cov_params)
- return sur_fit
-
- conv = self.history['params']
- while igls and (np.any(np.abs(conv[-2] - conv[-1]) > tol)) and \
- (self.iterations < maxiter):
- fittedvalues = (self.sp_exog*beta).reshape(M,-1)
- resids = self.endog - fittedvalues # don't attach results yet
- self.sigma = self._compute_sigma(resids) # need to attach for compute?
- self.wendog = self.whiten(self.endog)
- self.wexog = self.whiten(self.sp_exog)
- self.pinv_wexog = np.linalg.pinv(self.wexog)
- self.normalized_cov_params = np.dot(self.pinv_wexog,
- np.transpose(self.pinv_wexog))
- beta = np.dot(self.pinv_wexog, self.wendog)
- self._update_history(beta)
- self.iterations += 1
- sur_fit = SysResults(self, beta, self.normalized_cov_params)
- return sur_fit
-
- def predict(self, design):
- pass
-
-#TODO: Should just have a general 2SLS estimator to subclass
-# for IV, FGLS, etc.
-# Also should probably have SEM class and estimators as subclasses
-class Sem2SLS(object):
- """
- Two-Stage Least Squares for Simultaneous equations
-
- Parameters
- ----------
- sys : list
- [endog1, exog1, endog2, exog2,...] It will be of length 2 x M,
- where M is the number of equations endog = exog.
- indep_endog : dict
- A dictionary mapping the equation to the column numbers of the
- the independent endogenous regressors in each equation.
- It is assumed that the system is inputed as broken up into
- LHS and RHS. For now, the values of the dict have to be sequences.
- Note that the keys for the equations should be zero-indexed.
- instruments : array
- Array of the exogenous independent variables.
-
- Notes
- -----
- This is unfinished, and the design should be refactored.
- Estimation is done by brute force and there is no exploitation of
- the structure of the system.
- """
- def __init__(self, sys, indep_endog=None, instruments=None):
- if len(sys) % 2 != 0:
- raise ValueError("sys must be a list of pairs of endogenous and \
-exogenous variables. Got length %s" % len(sys))
- M = len(sys[1::2])
- self._M = M
-# The lists are probably a bad idea
- self.endog = sys[::2] # these are just list containers
- self.exog = sys[1::2]
- self._K = [tools.rank(_) for _ in sys[1::2]]
-# fullexog = np.column_stack((_ for _ in self.exog))
-
- self.instruments = instruments
-
- # Keep the Y_j's in a container to get IVs
- instr_endog = {}
- [instr_endog.setdefault(_,[]) for _ in indep_endog.keys()]
-
- for eq_key in indep_endog:
- for varcol in indep_endog[eq_key]:
- instr_endog[eq_key].append(self.exog[eq_key][:,varcol])
- # ^ copy needed?
-# self._instr_endog = instr_endog
-
- self._indep_endog = indep_endog
- _col_map = np.cumsum(np.hstack((0,self._K))) # starting col no.s
-# move this check to whiten since we're not going to build a full exog?
- for eq_key in indep_endog:
- try:
- iter(indep_endog[eq_key])
- except:
-# eq_key = [eq_key]
- raise TypeError("The values of the indep_exog dict must be\
- iterable. Got type %s for converter %s" % (type(del_col)))
-# for del_col in indep_endog[eq_key]:
-# fullexog = np.delete(fullexog, _col_map[eq_key]+del_col, 1)
-# _col_map[eq_key+1:] -= 1
-
-# Josef's example for deleting reoccuring "rows"
-# fullexog = np.unique(fullexog.T.view([('',fullexog.dtype)]*\
-# fullexog.shape[0])).view(fullexog.dtype).reshape(\
-# fullexog.shape[0],-1)
-# From http://article.gmane.org/gmane.comp.python.numeric.general/32276/
-# Or Jouni' suggetsion of taking a hash:
-# http://www.mail-archive.com/numpy-discussion@scipy.org/msg04209.html
-# not clear to me how this would work though, only if they are the *same*
-# elements?
-# self.fullexog = fullexog
- self.wexog = self.whiten(instr_endog)
-
-
- def whiten(self, Y):
- """
- Runs the first stage of the 2SLS.
-
- Returns the RHS variables that include the instruments.
- """
- wexog = []
- indep_endog = self._indep_endog # this has the col mapping
-# fullexog = self.fullexog
- instruments = self.instruments
- for eq in range(self._M): # need to go through all equations regardless
- instr_eq = Y.get(eq, None) # Y has the eq to ind endog array map
- newRHS = self.exog[eq].copy()
- if instr_eq:
- for i,LHS in enumerate(instr_eq):
- yhat = GLS(LHS, self.instruments).fit().fittedvalues
- newRHS[:,indep_endog[eq][i]] = yhat
- # this might fail if there is a one variable column (nobs,)
- # in exog
- wexog.append(newRHS)
- return wexog
-
- def fit(self):
- """
- """
- delta = []
- wexog = self.wexog
- endog = self.endog
- for j in range(self._M):
- delta.append(GLS(endog[j], wexog[j]).fit().params)
- return delta
-
-class SysResults(LikelihoodModelResults):
- """
- Not implemented yet.
- """
- def __init__(self, model, params, normalized_cov_params=None, scale=1.):
- super(SysResults, self).__init__(model, params,
- normalized_cov_params, scale)
- self._get_results()
-
- def _get_results(self):
- pass
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/GreeneEx15_1.s b/statsmodels/scikits/statsmodels/sandbox/tests/GreeneEx15_1.s
deleted file mode 100644
index 29ac679..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/GreeneEx15_1.s
+++ /dev/null
@@ -1,35 +0,0 @@
-dta <- read.table('/home/skipper/school/MetricsII/Greene\ TableF5-1.txt', header = TRUE)
-attach(dta)
-library(systemfit)
-
-demand <- realcons + realinvs + realgovt
-c.1 <- realcons[-204]
-y.1 <- demand[-204]
-yd <- demand[-1] - y.1
-eqConsump <- realcons[-1] ~ demand[-1] + c.1
-eqInvest <- realinvs[-1] ~ tbilrate[-1] + yd
-system <- list( Consumption = eqConsump, Investment = eqInvest)
-instruments <- ~ realgovt[-1] + tbilrate[-1] + c.1 + y.1
-# 2SLS
-greene2sls <- systemfit( system, "2SLS", inst = instruments, methodResidCov = "noDfCor" )
-print(summary(greene2sls))
-
-greene3sls <- systemfit( system, "3SLS", inst = instruments, methodResidCov = "noDfCor" )
-print(summary(greene3sls))
-
-
-# Python code for finding the dynamics
-#
-# Could have done this in R
-#
-#gamma = np.array([[1,0,1],[0,1,1],[-.058438620413,-16.5359646223,1]])
-#phi = np.array([[-.99200661799,0,0],[0,0,0],[0,-16.5359646223,0]])
-#Delta = np.dot(-phi,np.linalg.inv(gamma))
-#delta = np.zeros((2,2))
-#delta[0,0]=Delta[0,0]
-#delta[0,1]=Delta[0,-1]
-#delta[1,0]=Delta[-1,0]
-#delta[1,1]=Delta[-1,-1]
-#np.eigvals(delta)
-#np.max(_)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/__init__.py b/statsmodels/scikits/statsmodels/sandbox/tests/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/datamlw.py b/statsmodels/scikits/statsmodels/sandbox/tests/datamlw.py
deleted file mode 100644
index 7ff3ba4..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/datamlw.py
+++ /dev/null
@@ -1,288 +0,0 @@
-import numpy as np
-from numpy import array
-
-
-class Holder(object):
- pass
-
-
-data = Holder()
-data.comment = 'generated data, divide by 1000'
-data.name = 'data'
-data.xo = array([[ -419, -731, -1306, -1294],
- [ 6, 529, -200, -437],
- [ -27, -833, -6, -564],
- [ -304, -273, -502, -739],
- [ 1377, -912, 927, 280],
- [ -375, -517, -514, 49],
- [ 247, -504, 123, -259],
- [ 712, 534, -773, 286],
- [ 195, -1080, 3256, -178],
- [ -854, 75, -706, -1084],
- [-1219, -612, -15, -203],
- [ 550, -628, -483, -2686],
- [ -365, 1376, -1266, 317],
- [ -489, 544, -195, 431],
- [ -656, 854, 840, -723],
- [ 16, -1385, -880, -460],
- [ 258, -2252, 96, 54],
- [ 2049, -750, -1115, 381],
- [ -65, 280, -777, 416],
- [ 755, 82, -806, 1027],
- [ -39, -170, -2134, 743],
- [ -859, 780, 746, -133],
- [ 762, 252, -450, -459],
- [ -941, -202, 49, -202],
- [ -54, 115, 455, 388],
- [-1348, 1246, 1430, -480],
- [ 229, -535, -1831, 1524],
- [ -651, -167, 2116, 483],
- [-1249, -1373, 888, -1092],
- [ -75, -2162, 486, -496],
- [ 2436, -1627, -1069, 162],
- [ -63, 560, -601, 587],
- [ -60, 1051, -277, 1323],
- [ 1329, -1294, 68, 5],
- [ 1532, -633, -923, 696],
- [ 669, 895, -1762, -375],
- [ 1129, -548, 2064, 609],
- [ 1320, 573, 2119, 270],
- [ -213, -412, -2517, 1685],
- [ 73, -979, 1312, -1220],
- [-1360, -2107, -237, 1522],
- [ -645, 205, -543, -169],
- [ -212, 1072, 543, -128],
- [ -352, -129, -605, -904],
- [ 511, 85, 167, -1914],
- [ 1515, 1862, 942, 1622],
- [ -465, 623, -495, -89],
- [-1396, -979, 1758, 128],
- [ -255, -47, 980, 501],
- [-1282, -58, -49, -610],
- [ -889, -1177, -492, 494],
- [ 1415, 1146, 696, -722],
- [ 1237, -224, -1609, -64],
- [ -528, -1625, 231, 883],
- [ -327, 1636, -476, -361],
- [ -781, 793, 1882, 234],
- [ -506, -561, 1988, -810],
- [-1233, 1467, -261, 2164],
- [ 53, 1069, 824, 2123],
- [-1200, -441, -321, 339],
- [ 1606, 298, -995, 1292],
- [-1740, -672, -1628, -129],
- [-1450, -354, 224, -657],
- [-2556, 1006, -706, -1453],
- [ -717, -463, 345, -1821],
- [ 1056, -38, -420, -455],
- [ -523, 565, 425, 1138],
- [-1030, -187, 683, 78],
- [ -214, -312, -1171, -528],
- [ 819, 736, -265, 423],
- [ 1339, 351, 1142, 579],
- [ -387, -126, -1573, 2346],
- [ 969, 2, 327, -134],
- [ 163, 227, 90, 2021],
- [ 1022, -1076, 174, 304],
- [ 1042, 1317, 311, 880],
- [ 2018, -840, 295, 2651],
- [ -277, 566, 1147, -189],
- [ 20, 467, 1262, 263],
- [ -663, 1061, -1552, -1159],
- [ 1830, 391, 2534, -199],
- [ -487, 752, -1061, 351],
- [-2138, -556, -367, -457],
- [ -868, -411, -559, 726],
- [ 1770, 819, -892, -363],
- [ 553, -736, -169, -490],
- [ 388, -503, 809, -821],
- [ -516, -1452, -192, 483],
- [ 493, 2904, 1318, 2591],
- [ 175, 584, -1001, 1675],
- [ 1316, -1596, -460, 1500],
- [ 1212, 214, -644, -696],
- [ -501, 338, 1197, -841],
- [ -587, -469, -1101, 24],
- [-1205, 1910, 659, 1232],
- [ -150, 398, 594, 394],
- [ 34, -663, 235, -334],
- [-1580, 647, 239, -351],
- [-2177, -345, 1215, -1494],
- [ 1923, 329, -152, 1128]])
-
-princomp1 = Holder()
-princomp1.comment = 'mlab.princomp(x, nout=3)'
-princomp1.factors = array([[-0.83487832815382, -1.75681522344645, -0.50882660928949, -0.59661466511045],
- [-0.18695786699253, -0.10732909330422, 0.23971799542554, -0.75468286946853],
- [-0.57403949255604, -0.39667006607544, -0.7927838094217 , 0.02652621881328],
- [-0.60828125251513, -0.75979035898754, -0.20148864200404, -0.40278856050237],
- [ 0.55997928601548, 0.88869370546643, -1.55474410845786, 0.23033958281961],
- [-0.18023239851961, -0.72398923145328, -0.07056264751117, 0.29292391015376],
- [-0.189029743271 , -0.05888596186903, -0.63882208368513, -0.05682951829677],
- [ 0.94694345324739, -0.33448036234864, 0.16665867708366, -0.67190948646953],
- [-1.355171899399 , 2.58899695901774, -1.53157119606928, 0.93743278678908],
- [-1.06797676403358, -1.01894055566289, 0.29181722134698, -0.65261957826524],
- [-1.08919199915725, -0.5395876105009 , 0.18846579824378, 0.61935728909742],
- [-1.36598849770841, -1.00986627679465, -1.6090477073157 , -1.82708847399443],
- [ 0.561511276285 , -0.74919011595195, 1.49872898209738, -0.80588545345232],
- [ 0.04805787176428, -0.05522267212748, 0.82943784435024, 0.01537039050312],
- [-1.12006939155398, 0.73462770352006, 0.58868274831601, -0.67786987413505],
- [-0.26087838474316, -1.33362289066951, -1.02932517860259, 0.24865839951801],
- [-0.24666198784909, -0.58247196399204, -1.78971960966265, 1.18908143657302],
- [ 1.80675592845666, -0.73341258204636, -1.45012544705912, -0.44875329121288],
- [ 0.4794281391435 , -0.57169295903913, 0.48557628591056, -0.11638075289238],
- [ 1.39425263398653, -0.3665732682294 , 0.06937942447187, 0.06683559082703],
- [ 1.11015707065101, -1.87631329249852, 0.48914958604867, 0.11096926802212],
- [-0.85159530389901, 0.68543874135386, 0.86736021483251, -0.17641002537865],
- [ 0.34109015314112, -0.25431311542374, -0.36804227540019, -0.95824474920131],
- [-0.86253950274987, -0.28796613689709, 0.30820634958709, 0.27228599921917],
- [ 0.01266190412089, 0.48559962017667, 0.14020630700546, 0.18517398749337],
- [-1.56345869427724, 1.27917754070516, 1.25640847929385, -0.36055181722313],
- [ 1.62834293379132, -1.51923809467869, 0.27754976407182, 0.79362967384835],
- [-0.94400458067084, 1.77733054371289, 0.03595731772774, 0.96570688640992],
- [-2.11906234438329, -0.13226430948321, -0.78992396115366, 0.66362103473975],
- [-0.94372331181891, -0.37502966791165, -1.77907324401749, 0.97801542954941],
- [ 1.76575198740032, -0.92309597844861, -2.3872195277998 , -0.21817018301121],
- [ 0.57418226616373, -0.2925257318724 , 0.71180507312941, -0.13937750314467],
- [ 1.01654397566275, 0.28855305878842, 1.25119859389106, 0.11257524396004],
- [ 0.58979013567212, -0.06866577243092, -1.74447546690995, 0.13917953157575],
- [ 1.62072087150051, -0.5835145063711 , -0.99029357957459, -0.06334029436682],
- [ 0.893493925425 , -1.23995040005948, 0.40058503790479, -1.49029669097391],
- [ 0.26990527585623, 2.03399854143898, -1.2335089890881 , 0.54010061879979],
- [ 0.33504096277444, 2.42394994177782, -0.6643863358332 , -0.42471161848557],
- [ 1.69952476943058, -2.1707037237448 , 0.79694026483866, 0.88177267205969],
- [-1.41498253257895, 0.65248089992094, -1.40045976465378, -0.12045332880702],
- [-0.22640706265253, -0.94114558124915, -0.18868114063537, 2.67652245892778],
- [-0.37493712386529, -0.61985213642068, 0.5383582946365 , -0.17931524703276],
- [-0.30437796317839, 0.74252786648649, 0.73255373596822, -0.64993745548429],
- [-0.68788283675831, -0.84714762684627, -0.10721753874211, -0.59777382822281],
- [-1.00667616522842, -0.06670525233919, -0.92973707141688, -1.60742284256649],
- [ 1.95220512266515, 2.05751265066695, 0.79640648143073, -0.59608004229343],
- [-0.15504464969388, -0.3882079443045 , 0.75049869361395, -0.44163703260023],
- [-1.6686863460652 , 0.96325894557423, -0.16453379247258, 1.4560996746313 ],
- [-0.25573631707529, 0.88265554068571, 0.08984550855664, 0.53561910563178],
- [-1.29430028690793, -0.48042359291447, 0.49318558750269, 0.03689178852848],
- [-0.34391235307349, -0.95154811896716, -0.09714022474353, 1.19792361047367],
- [ 0.34367523316975, 1.16641214447854, -0.39528838072965, -1.72565643987406],
- [ 1.23887392116229, -1.27474554996132, -0.65859544264097, -0.81757560038832],
- [-0.17739006831099, -0.29057501559843, -0.62533324788504, 1.7092669546224 ],
- [-0.08610919021307, -0.06524996994257, 1.3018284944661 , -1.28219607271255],
- [-0.95717735853496, 1.79841555744597, 0.75799149339397, 0.23542916575208],
- [-1.70175078442029, 1.33831900642462, -0.73979048943944, 0.26157699746442],
- [ 0.84631686421106, 0.32029666775009, 2.51638540556813, 0.90367536744335],
- [ 1.22693220256582, 1.45665385966518, 1.27480662666555, 0.78786331120259],
- [-0.59251239046609, -0.660398245535 , 0.53258334042042, 0.81248748854679],
- [ 2.22723057510913, -0.22856960444805, -0.15586801032885, -0.26957090658609],
- [-0.83192612439183, -2.11983096548132, 0.75319973501664, 0.62196293266702],
- [-1.577627210601 , -0.3747136286972 , 0.31736538266249, 0.30187577548949],
- [-2.28230005998543, -1.17283119424281, 1.83780755209602, -0.75928026219594],
- [-1.90574204329052, -0.34197417196464, -0.59978910354131, -0.68240235236779],
- [ 0.48132729275936, -0.2524965456322 , -0.75271273075 , -0.89651237903089],
- [ 0.26961427953002, 0.62968227134995, 0.99324664633985, 0.59917742452108],
- [-0.95910506784013, 0.31907970712369, 0.35568397653203, 0.60155535679072],
- [-0.18528259973205, -1.31831013869974, -0.09749195643548, -0.39885348684496],
- [ 0.9608404103702 , 0.23727553971573, 0.20695289013955, -0.65281918968052],
- [ 0.85302395609555, 1.5303724004181 , -0.56440186223081, -0.27348033453255],
- [ 1.72786301913767, -1.14859994931789, 1.16222121440674, 1.39284961909257],
- [ 0.37711527308989, 0.47231886947072, -0.69423676772182, -0.53515102147655],
- [ 1.35642227654922, 0.53204130038923, 0.69844068787197, 1.04544871561741],
- [ 0.57797880484094, 0.08044525072063, -1.32634695941334, 0.35179408060132],
- [ 1.29437232500619, 1.07461562326311, 0.54545226737269, -0.6836610122092 ],
- [ 2.74736726573105, 0.90881277479338, -0.98342785084735, 1.38171127911719],
- [-0.67749479829901, 1.10093727650063, 0.28416704607992, -0.24984509303044],
- [-0.24513961858774, 1.32098977907584, 0.16904762754153, 0.00886790270539],
- [-0.5392290825383 , -1.43851802284774, 1.0064737206577 , -1.52649870396689],
- [ 0.19486366400459, 2.77236000318994, -1.32201258472682, -0.75922390642504],
- [ 0.33271229220962, -0.78464273816827, 1.09930224781861, -0.32184679755027],
- [-1.72814706427698, -1.09275114767838, 0.7451569579997 , 0.72871211772761],
- [-0.035506207751 , -0.72161367235521, 0.52828318684787, 0.87177739169758],
- [ 1.31224955134141, -0.22742530984642, -0.44682270809773, -1.72769462581607],
- [-0.07125058353119, -0.36850925227739, -1.01188688859296, -0.24962251325969],
- [-0.69840680770104, 0.4925285516285 , -1.0255829922787 , -0.36214090052941],
- [-0.2530614593082 , -0.68595709316063, -0.56882710610856, 1.25787365685572],
- [ 1.93782484285419, 2.67095706598253, 2.4023579082791 , -0.09112046819432],
- [ 1.57782156817208, -0.39819017512275, 1.01938038947667, 0.39718992194809],
- [ 1.6839282738726 , -0.37808442385434, -1.36566197748227, 1.22029200163339],
- [ 0.54652714502605, -0.38206797548206, -0.70554510441189, -1.31224358889695],
- [-1.30026063006148, 0.90642495630747, 0.02711437433058, -0.44482098905042],
- [-0.1239033493518 , -1.29112252171673, 0.18092802221218, 0.22673242779457],
- [ 0.01152882540055, 1.13242883415094, 2.34980443084773, 0.17712319903618],
- [-0.0505195424414 , 0.6807219067402 , 0.37771832345982, 0.0842510459176 ],
- [-0.44230076745505, -0.07002728477811, -0.6716520563439 , 0.09637247949641],
- [-1.31245480585229, -0.01674966464909, 1.21063252882651, -0.03927111631335],
- [-2.94268586886381, 0.20925236551048, 0.30321714445262, 0.22027672852006],
- [ 2.04121905977187, 0.58496246543101, -0.5192457175416 , -0.37212298770116]])
-princomp1.values = array([[ 1.29489288337888],
- [ 1.12722515391348],
- [ 0.94682423958163],
- [ 0.65890241090379]])
-princomp1.name = 'princomp1'
-princomp1.coef = array([[ 0.65989917631713, 0.22621848650964, -0.5882833472413 , -0.40899997165748],
- [ 0.15824945056105, 0.3189419948895 , 0.71689623797385, -0.5994104597619 ],
- [-0.3488766362785 , 0.90294049788532, -0.17151017930575, 0.1832151967827 ],
- [ 0.64635538301471, 0.17832458477678, 0.33251578268108, 0.66321815082225]])
-
-princomp2 = Holder()
-princomp2.comment = 'mlab.princomp(x[:20,], nout=3)'
-princomp2.factors = array([[ 0.74592631465403, -0.92093638563647, 1.10020213969681, -0.20234362115983],
- [ 0.40379773814409, -0.23694214086306, -0.53526599590626, 0.48048423978257],
- [-0.43826559396565, -0.26267383420164, 0.35939862515391, -0.15176605914773],
- [ 0.29427656853499, -0.56363285386285, 0.19525662206552, -0.0384830001072 ],
- [-1.4327917748351 , 1.18414191887856, 0.05435949672922, 0.46861687286613],
- [ 0.23033214569426, -0.00452237842477, 0.00346120473054, -0.61483888402985],
- [-0.40976419499281, 0.10137131352284, 0.02570805136468, 0.06798926306103],
- [ 0.83201287149759, 0.82736894861103, -0.35298970920805, 0.49344802383821],
- [-3.36634598435507, -0.18324521714611, -1.12118215528184, 0.2057949493723 ],
- [ 0.70198992281665, -1.1856449495675 , 0.02465727900177, -0.08333428418838],
- [-0.13789069679894, -0.79430992968357, -0.33106496391047, -1.01808298459082],
- [-0.10779840884825, -1.41970796854378, 1.55590290358904, 1.34014813517248],
- [ 1.8229340670437 , 0.13065838030104, -1.06152350166072, 0.11456488463131],
- [ 0.51650051521229, 0.07999783864926, -1.08601194413786, -0.28255247881905],
- [-0.24654203558433, -1.02895891025197, -1.34475655787845, 0.52240852619949],
- [ 0.03542169335227, -0.01198903021187, 1.12649412049726, -0.60518306798831],
- [-1.23945075955452, 0.48778599927278, 1.11522465483282, -0.994827967694 ],
- [ 0.30661562766349, 1.91993049714024, 1.08834307939522, 0.61608892787963],
- [ 0.8241280516035 , 0.43533554216801, -0.48261931874702, -0.22391158066897],
- [ 0.6649139327178 , 1.44597315984982, -0.33359403032613, -0.094219894409 ]])
-princomp2.values = array([[ 1.16965204468073],
- [ 0.77687367815155],
- [ 0.72297937656591],
- [ 0.32548581375971]])
-princomp2.name = 'princomp2'
-princomp2.coef = array([[-0.13957162231397, 0.6561182967648 , 0.32256106777669, 0.66781951188167],
- [ 0.49534264552989, -0.08241251099014, -0.6919444767593 , 0.51870674049413],
- [-0.85614372781797, -0.11427402995055, -0.47665923729502, 0.16357058078438],
- [ 0.04661912785591, 0.74138950947638, -0.43584764555793, -0.50813884128056]])
-
-princomp3 = Holder()
-princomp3.comment = 'mlab.princomp(x[:20,]-x[:20,].mean(0), nout=3)'
-princomp3.factors = array([[ 0.74592631465403, -0.92093638563647, 1.10020213969681, -0.20234362115983],
- [ 0.40379773814409, -0.23694214086306, -0.53526599590626, 0.48048423978257],
- [-0.43826559396565, -0.26267383420164, 0.35939862515391, -0.15176605914773],
- [ 0.29427656853499, -0.56363285386285, 0.19525662206552, -0.0384830001072 ],
- [-1.4327917748351 , 1.18414191887856, 0.05435949672922, 0.46861687286613],
- [ 0.23033214569426, -0.00452237842477, 0.00346120473054, -0.61483888402985],
- [-0.40976419499281, 0.10137131352284, 0.02570805136468, 0.06798926306103],
- [ 0.83201287149759, 0.82736894861103, -0.35298970920805, 0.49344802383821],
- [-3.36634598435507, -0.18324521714611, -1.12118215528184, 0.2057949493723 ],
- [ 0.70198992281665, -1.1856449495675 , 0.02465727900177, -0.08333428418838],
- [-0.13789069679894, -0.79430992968357, -0.33106496391047, -1.01808298459082],
- [-0.10779840884825, -1.41970796854378, 1.55590290358904, 1.34014813517248],
- [ 1.8229340670437 , 0.13065838030104, -1.06152350166072, 0.11456488463131],
- [ 0.51650051521229, 0.07999783864926, -1.08601194413786, -0.28255247881905],
- [-0.24654203558433, -1.02895891025197, -1.34475655787845, 0.52240852619949],
- [ 0.03542169335227, -0.01198903021187, 1.12649412049726, -0.60518306798831],
- [-1.23945075955452, 0.48778599927278, 1.11522465483282, -0.994827967694 ],
- [ 0.30661562766349, 1.91993049714024, 1.08834307939522, 0.61608892787963],
- [ 0.8241280516035 , 0.43533554216801, -0.48261931874702, -0.22391158066897],
- [ 0.6649139327178 , 1.44597315984982, -0.33359403032613, -0.094219894409 ]])
-princomp3.values = array([[ 1.16965204468073],
- [ 0.77687367815155],
- [ 0.72297937656591],
- [ 0.32548581375971]])
-princomp3.name = 'princomp3'
-princomp3.coef = array([[-0.13957162231397, 0.6561182967648 , 0.32256106777669, 0.66781951188167],
- [ 0.49534264552989, -0.08241251099014, -0.6919444767593 , 0.51870674049413],
- [-0.85614372781797, -0.11427402995055, -0.47665923729502, 0.16357058078438],
- [ 0.04661912785591, 0.74138950947638, -0.43584764555793, -0.50813884128056]])
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/macrodata.s b/statsmodels/scikits/statsmodels/sandbox/tests/macrodata.s
deleted file mode 100644
index 60c58b5..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/macrodata.s
+++ /dev/null
@@ -1,35 +0,0 @@
-dta <- read.csv('../../datasets/macrodata/macrodata.csv', header = TRUE)
-attach(dta)
-library(systemfit)
-
-demand <- realcons + realinv + realgovt
-c.1 <- realcons[-203]
-y.1 <- demand[-203]
-yd <- demand[-1] - y.1
-eqConsump <- realcons[-1] ~ demand[-1] + c.1
-eqInvest <- realinv[-1] ~ tbilrate[-1] + yd
-system <- list( Consumption = eqConsump, Investment = eqInvest)
-instruments <- ~ realgovt[-1] + tbilrate[-1] + c.1 + y.1
-# 2SLS
-greene2sls <- systemfit( system, "2SLS", inst = instruments, methodResidCov = "noDfCor" )
-print(summary(greene2sls))
-
-greene3sls <- systemfit( system, "3SLS", inst = instruments, methodResidCov = "noDfCor" )
-print(summary(greene3sls))
-
-
-# Python code for finding the dynamics
-#
-# Could have done this in R
-#
-#gamma = np.array([[1,0,1],[0,1,1],[-.058438620413,-16.5359646223,1]])
-#phi = np.array([[-.99200661799,0,0],[0,0,0],[0,-16.5359646223,0]])
-#Delta = np.dot(-phi,np.linalg.inv(gamma))
-#delta = np.zeros((2,2))
-#delta[0,0]=Delta[0,0]
-#delta[0,1]=Delta[0,-1]
-#delta[1,0]=Delta[-1,0]
-#delta[1,1]=Delta[-1,-1]
-#np.eigvals(delta)
-#np.max(_)
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/maketests_mlabwrap.py b/statsmodels/scikits/statsmodels/sandbox/tests/maketests_mlabwrap.py
deleted file mode 100644
index 52e42ce..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/maketests_mlabwrap.py
+++ /dev/null
@@ -1,246 +0,0 @@
-'''generate py modules with test cases and results from mlabwrap
-
-currently matlab: princomp, garchar, garchma
-'''
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal
-from numpy import array
-
-
-
-xo = array([[ -419, -731, -1306, -1294],
- [ 6, 529, -200, -437],
- [ -27, -833, -6, -564],
- [ -304, -273, -502, -739],
- [ 1377, -912, 927, 280],
- [ -375, -517, -514, 49],
- [ 247, -504, 123, -259],
- [ 712, 534, -773, 286],
- [ 195, -1080, 3256, -178],
- [ -854, 75, -706, -1084],
- [-1219, -612, -15, -203],
- [ 550, -628, -483, -2686],
- [ -365, 1376, -1266, 317],
- [ -489, 544, -195, 431],
- [ -656, 854, 840, -723],
- [ 16, -1385, -880, -460],
- [ 258, -2252, 96, 54],
- [ 2049, -750, -1115, 381],
- [ -65, 280, -777, 416],
- [ 755, 82, -806, 1027],
- [ -39, -170, -2134, 743],
- [ -859, 780, 746, -133],
- [ 762, 252, -450, -459],
- [ -941, -202, 49, -202],
- [ -54, 115, 455, 388],
- [-1348, 1246, 1430, -480],
- [ 229, -535, -1831, 1524],
- [ -651, -167, 2116, 483],
- [-1249, -1373, 888, -1092],
- [ -75, -2162, 486, -496],
- [ 2436, -1627, -1069, 162],
- [ -63, 560, -601, 587],
- [ -60, 1051, -277, 1323],
- [ 1329, -1294, 68, 5],
- [ 1532, -633, -923, 696],
- [ 669, 895, -1762, -375],
- [ 1129, -548, 2064, 609],
- [ 1320, 573, 2119, 270],
- [ -213, -412, -2517, 1685],
- [ 73, -979, 1312, -1220],
- [-1360, -2107, -237, 1522],
- [ -645, 205, -543, -169],
- [ -212, 1072, 543, -128],
- [ -352, -129, -605, -904],
- [ 511, 85, 167, -1914],
- [ 1515, 1862, 942, 1622],
- [ -465, 623, -495, -89],
- [-1396, -979, 1758, 128],
- [ -255, -47, 980, 501],
- [-1282, -58, -49, -610],
- [ -889, -1177, -492, 494],
- [ 1415, 1146, 696, -722],
- [ 1237, -224, -1609, -64],
- [ -528, -1625, 231, 883],
- [ -327, 1636, -476, -361],
- [ -781, 793, 1882, 234],
- [ -506, -561, 1988, -810],
- [-1233, 1467, -261, 2164],
- [ 53, 1069, 824, 2123],
- [-1200, -441, -321, 339],
- [ 1606, 298, -995, 1292],
- [-1740, -672, -1628, -129],
- [-1450, -354, 224, -657],
- [-2556, 1006, -706, -1453],
- [ -717, -463, 345, -1821],
- [ 1056, -38, -420, -455],
- [ -523, 565, 425, 1138],
- [-1030, -187, 683, 78],
- [ -214, -312, -1171, -528],
- [ 819, 736, -265, 423],
- [ 1339, 351, 1142, 579],
- [ -387, -126, -1573, 2346],
- [ 969, 2, 327, -134],
- [ 163, 227, 90, 2021],
- [ 1022, -1076, 174, 304],
- [ 1042, 1317, 311, 880],
- [ 2018, -840, 295, 2651],
- [ -277, 566, 1147, -189],
- [ 20, 467, 1262, 263],
- [ -663, 1061, -1552, -1159],
- [ 1830, 391, 2534, -199],
- [ -487, 752, -1061, 351],
- [-2138, -556, -367, -457],
- [ -868, -411, -559, 726],
- [ 1770, 819, -892, -363],
- [ 553, -736, -169, -490],
- [ 388, -503, 809, -821],
- [ -516, -1452, -192, 483],
- [ 493, 2904, 1318, 2591],
- [ 175, 584, -1001, 1675],
- [ 1316, -1596, -460, 1500],
- [ 1212, 214, -644, -696],
- [ -501, 338, 1197, -841],
- [ -587, -469, -1101, 24],
- [-1205, 1910, 659, 1232],
- [ -150, 398, 594, 394],
- [ 34, -663, 235, -334],
- [-1580, 647, 239, -351],
- [-2177, -345, 1215, -1494],
- [ 1923, 329, -152, 1128]])
-
-x = xo/1000.
-
-class HoldIt(object):
- def __init__(self, name):
- self.name = name
- def save(self, what=None, filename=None, header=True, useinstant=True,
- comment=None):
- if what is None:
- what = (i for i in self.__dict__ if i[0] != '_')
- if header:
- txt = ['import numpy as np\nfrom numpy import array\n\n']
- if useinstant:
- txt.append('class Holder(object):\n pass\n\n')
- else:
- txt = []
-
- if useinstant:
- txt.append('%s = Holder()' % self.name)
- prefix = '%s.' % self.name
- else:
- prefix = ''
-
- if not comment is None:
- txt.append("%scomment = '%s'" % (prefix, comment))
-
- for x in what:
- txt.append('%s%s = %s' % (prefix, x, repr(getattr(self,x))))
- txt.extend(['','']) #add empty lines at end
- if not filename is None:
- file(filename, 'a+').write('\n'.join(txt))
- return txt
-
-def generate_princomp(xo, filen='testsave.py'):
- # import mlabwrap only when run as script
- import mlabwrap
- from mlabwrap import mlab
- np.set_printoptions(precision=14, linewidth=100)
- data = HoldIt('data')
- data.xo = xo
- data.save(filename='testsave.py', comment='generated data, divide by 1000')
-
- res_princomp = HoldIt('princomp1')
- res_princomp.coef, res_princomp.factors, res_princomp.values = \
- mlab.princomp(x, nout=3)
- res_princomp.save(filename=filen, header=False,
- comment='mlab.princomp(x, nout=3)')
-
- res_princomp = HoldIt('princomp2')
- res_princomp.coef, res_princomp.factors, res_princomp.values = \
- mlab.princomp(x[:20,], nout=3)
- np.set_printoptions(precision=14, linewidth=100)
- res_princomp.save(filename=filen, header=False,
- comment='mlab.princomp(x[:20,], nout=3)')
-
- res_princomp = HoldIt('princomp3')
- res_princomp.coef, res_princomp.factors, res_princomp.values = \
- mlab.princomp(x[:20,]-x[:20,].mean(0), nout=3)
- np.set_printoptions(precision=14, linewidth=100)
- res_princomp.save(filename=filen, header=False,
- comment='mlab.princomp(x[:20,]-x[:20,].mean(0), nout=3)')
-
-def generate_armarep(filen='testsave.py'):
- # import mlabwrap only when run as script
- import mlabwrap
- from mlabwrap import mlab
- res_armarep = HoldIt('armarep')
- res_armarep.ar = np.array([1., -0.5, +0.8])
- res_armarep.ma = np.array([1., -0.6, 0.08])
-
- res_armarep.marep = mlab.garchma(-res_armarep.ar[1:], res_armarep.ma[1:], 20)
- res_armarep.arrep = mlab.garchar(-res_armarep.ar[1:], res_armarep.ma[1:], 20)
- res_armarep.save(filename=filen, header=False,
- comment=("''mlab.garchma(-res_armarep.ar[1:], res_armarep.ma[1:], 20)\n" +
- "mlab.garchar(-res_armarep.ar[1:], res_armarep.ma[1:], 20)''"))
-
-
-
-
-
-def exampletest():
- from scikits.statsmodels.sandbox import tsa
- arrep = tsa.arma_impulse_response(res_armarep.ma, res_armarep.ar, nobs=21)[1:]
- marep = tsa.arma_impulse_response(res_armarep.ar, res_armarep.ma, nobs=21)[1:]
- assert_array_almost_equal(res_armarep.marep.ravel(), marep, 14)
- #difference in sign convention to matlab for AR term
- assert_array_almost_equal(-res_armarep.arrep.ravel(), arrep, 14)
-
-
-if __name__ == '__main__':
- import mlabwrap
- from mlabwrap import mlab
-
- import savedrvs
- xo = savedrvs.rvsdata.xar2
- x100 = xo[-100:]/1000.
- x1000 = xo/1000.
-
- filen = 'testsavetls.py'
- res_pacf = HoldIt('mlpacf')
- res_pacf.comment = 'mlab.parcorr(x, [], 2, nout=3)'
- res_pacf.pacf100, res_pacf.lags100, res_pacf.bounds100 = \
- mlab.parcorr(x100, [], 2, nout=3)
- res_pacf.pacf1000, res_pacf.lags1000, res_pacf.bounds1000 = \
- mlab.parcorr(x1000, [], 2, nout=3)
- res_pacf.save(filename=filen, header=True)
-
- res_acf = HoldIt('mlacf')
- res_acf.comment = 'mlab.autocorr(x, [], 2, nout=3)'
- res_acf.acf100, res_acf.lags100, res_acf.bounds100 = \
- mlab.autocorr(x100, [], 2, nout=3)
- res_acf.acf1000, res_acf.lags1000, res_acf.bounds1000 = \
- mlab.autocorr(x1000, [], 2, nout=3)
- res_acf.save(filename=filen, header=False)
-
-
- res_ccf = HoldIt('mlccf')
- res_ccf.comment = 'mlab.crosscorr(x[4:], x[:-4], [], 2, nout=3)'
- res_ccf.ccf100, res_ccf.lags100, res_ccf.bounds100 = \
- mlab.crosscorr(x100[4:], x100[:-4], [], 2, nout=3)
- res_ccf.ccf1000, res_ccf.lags1000, res_ccf.bounds1000 = \
- mlab.crosscorr(x1000[4:], x1000[:-4], [], 2, nout=3)
- res_ccf.save(filename=filen, header=False)
-
-
- res_ywar = HoldIt('mlywar')
- res_ywar.comment = "mlab.ar(x100-x100.mean(), 10, 'yw').a.ravel()"
- mbaryw = mlab.ar(x100-x100.mean(), 10, 'yw')
- res_ywar.arcoef100 = np.array(mbaryw.a.ravel())
- mbaryw = mlab.ar(x1000-x1000.mean(), 20, 'yw')
- res_ywar.arcoef1000 = np.array(mbaryw.a.ravel())
- res_ywar.save(filename=filen, header=False)
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/model_results.py b/statsmodels/scikits/statsmodels/sandbox/tests/model_results.py
deleted file mode 100644
index 06583f6..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/model_results.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""
-This should be merged into statsmodels/tests/model_results.py when things
-move out of the sandbox.
-"""
-import numpy as np
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/savervs.py b/statsmodels/scikits/statsmodels/sandbox/tests/savervs.py
deleted file mode 100644
index 31d0754..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/savervs.py
+++ /dev/null
@@ -1,37 +0,0 @@
-'''generates some ARMA random samples and saves to python module file
-
-'''
-
-import numpy as np
-from scikits.statsmodels.sandbox import tsa
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-from maketests_mlabwrap import HoldIt
-
-if __name__ == '__main__':
- filen = 'savedrvs_tmp.py'
- np.set_printoptions(precision=14, linewidth=100)
-
-
- # check arma to return same as random.normal
- np.random.seed(10000)
- xo = arma_generate_sample([1], [1], nsample=100)
- xo2 = np.round(xo*1000).astype(int)
- np.random.seed(10000)
- rvs = np.random.normal(size=100)
- rvs2 = np.round(xo*1000).astype(int)
- assert (xo2==rvs2).all()
-
- nsample = 1000
- data = HoldIt('rvsdata')
-
- np.random.seed(10000)
- xo = arma_generate_sample([1, -0.8, 0.5], [1], nsample=nsample)
- data.xar2 = np.round(xo*1000).astype(int)
- np.random.seed(10000)
- xo = np.random.normal(size=nsample)
- data.xnormal = np.round(xo*1000).astype(int)
- np.random.seed(10000)
- xo = arma_generate_sample([1, -0.8, 0.5, -0.3], [1, 0.3, 0.2], nsample=nsample)
- data.xarma32 = np.round(xo*1000).astype(int)
-
- data.save(filename=filen, comment='generated data, divide by 1000, see savervs')
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/sysreg.s b/statsmodels/scikits/statsmodels/sandbox/tests/sysreg.s
deleted file mode 100644
index 57a1530..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/sysreg.s
+++ /dev/null
@@ -1,56 +0,0 @@
-# from the systemfit docs and sem docs
-# depends systemfit and its dependencies
-# depends sem
-# depends on plm
-# depends on R >= 2.9.0 (working on 2.9.2 but not on 2.8.1 at least)
-
-library( systemfit )
-data( "Kmenta" )
-eqDemand <- consump ~ price + income
-eqSupply <- consump ~ price + farmPrice + trend
-system <- list( demand = eqDemand, supply = eqSupply )
-
-## performs OLS on each of the equations in the system
-fitols <- systemfit( system, data = Kmenta )
-
-# all coefficients
-coef( fitols )
-coef( summary ( fitols ) )
-
-modReg <- matrix(0,7,6)
-colnames( modReg ) <- c( "demIntercept", "demPrice", "demIncome",
- "supIntercept", "supPrice2", "supTrend" )
-
-# a lot of typing for a model
-modReg[ 1, "demIntercept" ] <- 1
-modReg[ 2, "demPrice" ] <- 1
-modReg[ 3, "demIncome" ] <- 1
-modReg[ 4, "supIntercept" ] <- 1
-modReg[ 5, "supPrice2" ] <- 1
-modReg[ 6, "supPrice2" ] <- 1
-modReg[ 7, "supTrend" ] <- 1
-fitols3 <- systemfit( system, data = Kmenta, restrict.regMat = modReg )
-print(coef( fitols3, modified.regMat = TRUE ))
-# it seems to me like regMat does the opposite of what it says it does
-# in python
-# coef1 = np.array([99.8954229, -0.3162988, 0.3346356, 51.9296460, 0.2361566, 0.2361566, 0.2409308])
-# i = np.eye(7,6)
-# i[-1,-1] = 1
-# i[-2,-1] = 0
-# i[-2,-2] = 1
-# np.dot(coef,i) # regMat = TRUE?
-print(coef( fitols3 ))
-
-### SUR ###
-data("GrunfeldGreene")
-library(plm)
-GGPanel <- plm.data( GrunfeldGreene, c("firm","year") )
-formulaGrunfeld <- invest ~ value + capital
-greeneSUR <- systemfit( formulaGrunfeld, "SUR", data = GGPanel,
- methodResidCov = "noDfCor" )
-
-#usinvest <- as.matrix(invest[81:100])
-#usvalue <- as.matrix(value
-col5tbl14_2 <- lm(invest[81:100] ~ value[81:100] + capital[81:100])
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/test_bspline.py.txt b/statsmodels/scikits/statsmodels/sandbox/tests/test_bspline.py.txt
deleted file mode 100644
index c37714a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/test_bspline.py.txt
+++ /dev/null
@@ -1,55 +0,0 @@
-import warnings
-
-import numpy as np
-from nipy.testing import *
-
-bsp = None
-
-def setup():
- # Suppress warnings during tests to reduce noise
- warnings.simplefilter("ignore")
- # import bspline module after suppressing UserWarnings
- global bsp
- import nipy.fixes.scipy.stats.models.bspline as bsp
-
-def teardown():
- # Clear list of warning filters
- warnings.resetwarnings()
-
-
-class TestBSpline(TestCase):
-
- def test1(self):
- b = bsp.BSpline(np.linspace(0,10,11), x=np.linspace(0,10,101))
- old = b._basisx.shape
- b.x = np.linspace(0,10,51)
- new = b._basisx.shape
- self.assertEqual((old[0], 51), new)
-
- # FIXME: Have no idea what this test does. It's here to simply verify the
- # C extension is working (in a technical sense, not functional).
- def test_basis(self):
- b = bsp.BSpline(np.linspace(0,1,11))
- x = np.array([0.4, 0.5])
- v = b.basis(x, lower=0, upper=13)
- t = np.array([[ 0. , 0. ],
- [ 0. , 0. ],
- [ 0. , 0. ],
- [ 0. , 0. ],
- [ 0.16666667, 0. ],
- [ 0.66666667, 0.16666667],
- [ 0.16666667, 0.66666667],
- [ 0. , 0.16666667],
- [ 0. , 0. ],
- [ 0. , 0. ],
- [ 0. , 0. ],
- [ 0. , 0. ],
- [ 0. , 0. ]])
- assert_array_almost_equal(v, t, decimal=6)
-
- # FIXME: Have no idea what this test does. It's here to simply verify the
- # C extension is working (in a technical sense, not functional).
- def test_gram(self):
- b = bsp.BSpline(np.linspace(0,1,11))
- grm = b.gram()
- assert grm.shape == (4, 13)
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/test_formula.py b/statsmodels/scikits/statsmodels/sandbox/tests/test_formula.py
deleted file mode 100644
index 3ef0251..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/test_formula.py
+++ /dev/null
@@ -1,323 +0,0 @@
-"""
-Test functions for models.formula
-"""
-
-import string
-
-import numpy as np
-import numpy.random as R
-import numpy.linalg as L
-from numpy.testing import *
-
-import sys, nose
-
-#automatic conversion with 2to3 makes mistakes in formula, changes
-#"if type(self.name) is types.StringType" to "if type(self.name) is bytes"
-try:
- from scikits.statsmodels.sandbox import formula #, contrast #, utils
- from scikits.statsmodels.sandbox import contrast_old as contrast
-except:
- if sys.version_info[0] >= 3:
- raise nose.SkipTest('No tests here')
- else:
- raise
-
-def setup():
- if sys.version_info[0] >= 3:
- raise nose.SkipTest('No tests here')
-
-class TestTerm(TestCase):
-
- def test_init(self):
- t1 = formula.Term("trivial")
- sqr = lambda x: x*x
-
- t2 = formula.Term("not_so_trivial", sqr, "sqr")
-
- self.assertRaises(ValueError, formula.Term, "name", termname=0)
-
-
- def test_str(self):
- t = formula.Term("name")
- s = str(t)
-
- def test_add(self):
- t1 = formula.Term("t1")
- t2 = formula.Term("t2")
- f = t1 + t2
- self.assert_(isinstance(f, formula.Formula))
- self.assert_(f.hasterm(t1))
- self.assert_(f.hasterm(t2))
-
- def test_mul(self):
- t1 = formula.Term("t1")
- t2 = formula.Term("t2")
- f = t1 * t2
- self.assert_(isinstance(f, formula.Formula))
-
- intercept = formula.Term("intercept")
- f = t1 * intercept
- self.assertEqual(str(f), str(formula.Formula(t1)))
-
- f = intercept * t1
- self.assertEqual(str(f), str(formula.Formula(t1)))
-
-class TestFormula(TestCase):
-
- def setUp(self):
- self.X = R.standard_normal((40,10))
- self.namespace = {}
- self.terms = []
- for i in range(10):
- name = '%s' % string.uppercase[i]
- self.namespace[name] = self.X[:,i]
- self.terms.append(formula.Term(name))
-
- self.formula = self.terms[0]
- for i in range(1, 10):
- self.formula += self.terms[i]
- self.formula.namespace = self.namespace
-
- def test_namespace(self):
- space1 = {'X':np.arange(50), 'Y':np.arange(50)*2}
- space2 = {'X':np.arange(20), 'Y':np.arange(20)*2}
- space3 = {'X':np.arange(30), 'Y':np.arange(30)*2}
- X = formula.Term('X')
- Y = formula.Term('Y')
-
- X.namespace = space1
- assert_almost_equal(X(), np.arange(50))
-
- Y.namespace = space2
- assert_almost_equal(Y(), np.arange(20)*2)
-
- f = X + Y
-
- f.namespace = space1
- self.assertEqual(f().shape, (2,50))
- assert_almost_equal(Y(), np.arange(20)*2)
- assert_almost_equal(X(), np.arange(50))
-
- f.namespace = space2
- self.assertEqual(f().shape, (2,20))
- assert_almost_equal(Y(), np.arange(20)*2)
- assert_almost_equal(X(), np.arange(50))
-
- f.namespace = space3
- self.assertEqual(f().shape, (2,30))
- assert_almost_equal(Y(), np.arange(20)*2)
- assert_almost_equal(X(), np.arange(50))
-
- xx = X**2
- self.assertEqual(xx().shape, (50,))
-
- xx.namespace = space3
- self.assertEqual(xx().shape, (30,))
-
- xx = X * formula.I
- self.assertEqual(xx().shape, (50,))
- xx.namespace = space3
- self.assertEqual(xx().shape, (30,))
-
- xx = X * X
- self.assertEqual(xx.namespace, X.namespace)
-
- xx = X + Y
- self.assertEqual(xx.namespace, {})
-
- Y.namespace = {'X':np.arange(50), 'Y':np.arange(50)*2}
- xx = X + Y
- self.assertEqual(xx.namespace, {})
-
- Y.namespace = X.namespace
- xx = X+Y
- self.assertEqual(xx.namespace, Y.namespace)
-
- def test_termcolumns(self):
- t1 = formula.Term("A")
- t2 = formula.Term("B")
- f = t1 + t2 + t1 * t2
- def other(val):
- return np.array([3.2*val,4.342*val**2, 5.234*val**3])
- q = formula.Quantitative(['other%d' % i for i in range(1,4)], termname='other', func=t1, transform=other)
- f += q
- q.namespace = f.namespace = self.formula.namespace
- assert_almost_equal(q(), f()[f.termcolumns(q)])
-
-
- def test_str(self):
- s = str(self.formula)
-
- def test_call(self):
- x = self.formula()
- self.assertEquals(np.array(x).shape, (10, 40))
-
- def test_design(self):
- x = self.formula.design()
- self.assertEquals(x.shape, (40, 10))
-
- def test_product(self):
- prod = self.formula['A'] * self.formula['C']
- f = self.formula + prod
- f.namespace = self.namespace
- x = f.design()
- p = f['A*C']
- p.namespace = self.namespace
- col = f.termcolumns(prod, dict=False)
- assert_almost_equal(np.squeeze(x[:,col]), self.X[:,0] * self.X[:,2])
- assert_almost_equal(np.squeeze(p()), self.X[:,0] * self.X[:,2])
-
- def test_intercept1(self):
- prod = self.terms[0] * self.terms[2]
- f = self.formula + formula.I
- icol = f.names().index('intercept')
- f.namespace = self.namespace
- assert_almost_equal(f()[icol], np.ones((40,)))
-
- def test_intercept3(self):
- t = self.formula['A']
- t.namespace = self.namespace
- prod = t * formula.I
- prod.namespace = self.formula.namespace
- assert_almost_equal(np.squeeze(prod()), t())
-
- def test_contrast1(self):
- term = self.terms[0] + self.terms[2]
- c = contrast.Contrast(term, self.formula)
- col1 = self.formula.termcolumns(self.terms[0], dict=False)
- col2 = self.formula.termcolumns(self.terms[1], dict=False)
- test = [[1] + [0]*9, [0]*2 + [1] + [0]*7]
- assert_almost_equal(c.matrix, test)
-
- def test_contrast2(self):
- dummy = formula.Term('zero')
- self.namespace['zero'] = np.zeros((40,), np.float64)
- term = dummy + self.terms[2]
- c = contrast.Contrast(term, self.formula)
- test = [0]*2 + [1] + [0]*7
- assert_almost_equal(c.matrix, test)
-
- def test_contrast3(self):
- X = self.formula.design()
- P = np.dot(X, L.pinv(X))
-
- dummy = formula.Term('noise')
- resid = np.identity(40) - P
- self.namespace['noise'] = np.transpose(np.dot(resid, R.standard_normal((40,5))))
- terms = dummy + self.terms[2]
- terms.namespace = self.formula.namespace
- c = contrast.Contrast(terms, self.formula)
- self.assertEquals(c.matrix.shape, (10,))
-
- def test_power(self):
-
- t = self.terms[2]
- t2 = t**2
- t.namespace = t2.namespace = self.formula.namespace
- assert_almost_equal(t()**2, t2())
-
- def test_quantitative(self):
- t = self.terms[2]
- sint = formula.Quantitative('t', func=t, transform=np.sin)
- t.namespace = sint.namespace = self.formula.namespace
- assert_almost_equal(np.sin(t()), sint())
-
- def test_factor1(self):
- f = ['a','b','c']*10
- fac = formula.Factor('ff', f)
- fac.namespace = {'ff':f}
- self.assertEquals(list(fac.values()), f)
-
- def test_factor2(self):
- f = ['a','b','c']*10
- fac = formula.Factor('ff', f)
- fac.namespace = {'ff':f}
- self.assertEquals(fac().shape, (3,30))
-
- def test_factor3(self):
- f = ['a','b','c']*10
- fac = formula.Factor('ff', f)
- fac.namespace = {'ff':f}
- m = fac.main_effect(reference=1)
- m.namespace = fac.namespace
- self.assertEquals(m().shape, (2,30))
-
- def test_factor4(self):
- f = ['a','b','c']*10
- fac = formula.Factor('ff', f)
- fac.namespace = {'ff':f}
- m = fac.main_effect(reference=2)
- m.namespace = fac.namespace
- r = np.array([np.identity(3)]*10)
- r.shape = (30,3)
- r = r.T
- _m = np.array([r[0]-r[2],r[1]-r[2]])
- assert_almost_equal(_m, m())
-
- def test_factor5(self):
- f = ['a','b','c']*3
- fac = formula.Factor('ff', f)
- fac.namespace = {'ff':f}
-
- assert_equal(fac(), [[1,0,0]*3,
- [0,1,0]*3,
- [0,0,1]*3])
- assert_equal(fac['a'], [1,0,0]*3)
- assert_equal(fac['b'], [0,1,0]*3)
- assert_equal(fac['c'], [0,0,1]*3)
-
-
- def test_ordinal_factor(self):
- f = ['a','b','c']*3
- fac = formula.Factor('ff', ['a','b','c'], ordinal=True)
- fac.namespace = {'ff':f}
-
- assert_equal(fac(), [0,1,2]*3)
- assert_equal(fac['a'], [1,0,0]*3)
- assert_equal(fac['b'], [0,1,0]*3)
- assert_equal(fac['c'], [0,0,1]*3)
-
- def test_ordinal_factor2(self):
- f = ['b','c', 'a']*3
- fac = formula.Factor('ff', ['a','b','c'], ordinal=True)
- fac.namespace = {'ff':f}
-
- assert_equal(fac(), [1,2,0]*3)
- assert_equal(fac['a'], [0,0,1]*3)
- assert_equal(fac['b'], [1,0,0]*3)
- assert_equal(fac['c'], [0,1,0]*3)
-
- def test_contrast4(self):
-
- f = self.formula + self.terms[5] + self.terms[5]
- f.namespace = self.namespace
- estimable = False
-
- c = contrast.Contrast(self.terms[5], f)
-
- self.assertEquals(estimable, False)
-
- def test_interactions(self):
-
- f = formula.interactions([formula.Term(l) for l in ['a', 'b', 'c']])
- assert_equal(set(f.termnames()), set(['a', 'b', 'c', 'a*b', 'a*c', 'b*c']))
-
- f = formula.interactions([formula.Term(l) for l in ['a', 'b', 'c', 'd']], order=3)
- assert_equal(set(f.termnames()), set(['a', 'b', 'c', 'd', 'a*b', 'a*c', 'a*d', 'b*c', 'b*d', 'c*d', 'a*b*c', 'a*c*d', 'a*b*d', 'b*c*d']))
-
- f = formula.interactions([formula.Term(l) for l in ['a', 'b', 'c', 'd']], order=[1,2,3])
- assert_equal(set(f.termnames()), set(['a', 'b', 'c', 'd', 'a*b', 'a*c', 'a*d', 'b*c', 'b*d', 'c*d', 'a*b*c', 'a*c*d', 'a*b*d', 'b*c*d']))
-
- f = formula.interactions([formula.Term(l) for l in ['a', 'b', 'c', 'd']], order=[3])
- assert_equal(set(f.termnames()), set(['a*b*c', 'a*c*d', 'a*b*d', 'b*c*d']))
-
- def test_subtract(self):
- f = formula.interactions([formula.Term(l) for l in ['a', 'b', 'c']])
- ff = f - f['a*b']
- assert_equal(set(ff.termnames()), set(['a', 'b', 'c', 'a*c', 'b*c']))
-
- ff = f - f['a*b'] - f['a*c']
- assert_equal(set(ff.termnames()), set(['a', 'b', 'c', 'b*c']))
-
- ff = f - (f['a*b'] + f['a*c'])
- assert_equal(set(ff.termnames()), set(['a', 'b', 'c', 'b*c']))
diff --git a/statsmodels/scikits/statsmodels/sandbox/tests/test_pca.py b/statsmodels/scikits/statsmodels/sandbox/tests/test_pca.py
deleted file mode 100644
index 5e0b4ae..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tests/test_pca.py
+++ /dev/null
@@ -1,72 +0,0 @@
-'''tests for pca and arma to ar and ma representation
-
-compared with matlab princomp, and garchar, garchma
-
-TODO:
-* convert to generators with yield to have individual tests
-* incomplete: test relationship of pca-evecs and pinv (adding constant)
-'''
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal
-from scikits.statsmodels.sandbox import tools
-from scikits.statsmodels.sandbox.tools import pca, pcasvd
-from scikits.statsmodels.tsa.arima_process import arma_impulse_response
-
-from datamlw import *
-
-
-def check_pca_princomp(pcares, princomp):
- factors, evals, evecs = pcares[1:]
- #res_princomp.coef, res_princomp.factors, res_princomp.values
- msign = (evecs/princomp.coef)[0]
- assert_array_almost_equal(msign*evecs, princomp.coef, 13)
- assert_array_almost_equal(msign*factors, princomp.factors, 13)
- assert_array_almost_equal(evals, princomp.values.ravel(), 13)
-
-def check_pca_svd(pcares, pcasvdres):
- xreduced, factors, evals, evecs = pcares
- xred_svd, factors_svd, evals_svd, evecs_svd = pcasvdres
- assert_array_almost_equal(evals_svd, evals, 14)
- msign = (evecs/evecs_svd)[0]
- assert_array_almost_equal(msign*evecs_svd, evecs, 14)
- assert_array_almost_equal(msign*factors_svd, factors, 13)
- assert_array_almost_equal(xred_svd, xreduced, 14)
-
-
-xf = data.xo/1000.
-
-def test_pca_princomp():
- pcares = pca(xf)
- check_pca_princomp(pcares, princomp1)
- pcares = pca(xf[:20,:])
- check_pca_princomp(pcares, princomp2)
- pcares = pca(xf[:20,:]-xf[:20,:].mean(0))
- check_pca_princomp(pcares, princomp3)
- pcares = pca(xf[:20,:]-xf[:20,:].mean(0), demean=0)
- check_pca_princomp(pcares, princomp3)
-
-
-def test_pca_svd():
- xreduced, factors, evals, evecs = pca(xf)
- factors_wconst = np.c_[factors, np.ones((factors.shape[0],1))]
- beta = np.dot(np.linalg.pinv(factors_wconst), xf)
- #np.dot(np.linalg.pinv(factors_wconst),x2/1000.).T[:,:4] - evecs
- assert_array_almost_equal(beta.T[:,:4], evecs, 14)
-
- xred_svd, factors_svd, evals_svd, evecs_svd = pcasvd(xf, keepdim=0)
- assert_array_almost_equal(evals_svd, evals, 14)
- msign = (evecs/evecs_svd)[0]
- assert_array_almost_equal(msign*evecs_svd, evecs, 14)
- assert_array_almost_equal(msign*factors_svd, factors, 13)
- assert_array_almost_equal(xred_svd, xreduced, 14)
-
- pcares = pca(xf, keepdim=2)
- pcasvdres = pcasvd(xf, keepdim=2)
- check_pca_svd(pcares, pcasvdres)
-
-#print np.dot(factors[:,:3], evecs.T[:3,:])[:5]
-
-
-if __name__ == '__main__':
- test_pca_svd()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tools/TODO.txt b/statsmodels/scikits/statsmodels/sandbox/tools/TODO.txt
deleted file mode 100644
index a8e9692..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tools/TODO.txt
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-* make groupstats into a class with additional functions for easy access
- use bincount but loop over 2d, or maybe two versions 1d,2d (or nd?)
- similar to groupbys
- class GroupStats
- init with label data
- attributes/properties on demand: mean, var, callback, devfrommean, meanarr, vararr
- does var need bias option ? yes?
- def groupmean(label, data)
- def groupvar(label, data)
- def groupnormalize(label, data, reweight = True)
-
-
-* ANOVA wrapper usage example
- discussed on mailing list and proposed by Skipper
- create design matrix
- create restriction matrices for F tests, t tests
- ? normalization redundant ?
- reports ANOVA style
-
-* maybe: quick helpers for structured arrays and masked arrays
- formula for selection of variables
- specification for which variable are factors
- Anova(y, use='x1;x2;x3', factors='x2', data = dataarray)
- or
- Anova(y, use='x1; x2:F; x3', data = dataarray)
-
- masked arrays need row compression
-
-
-* meta object
- for variable names, and .... ?
-
-* OLSR, OLS with linear restriction -> design changes ?
- need to overwrite params_cov calculation - move it back to models
-
-* regression: OLS, WLS
- - add prediction
-
-
-* Granger causality test: which test statistic, F test is easiest, LR, Wald ? -> easy
- in R: example in Wikipedia
-
-* get lag matrix helper function to use lagged dependent and lagged independent regressors
-
-* nonlinear hypothesis tests for the estimate parameters, delta method ? -> easy, but derivatives by hand w/o sympy
-
-* minimal PCA, PCR, or PLS (NIPALS): interesting also for finance but not urgent -> messy multiplicity of definitions ?
-
-* non-linear least squares:
- use/imitate scipy.interpolate curvefit + full set of results statistics
-
-* tests -> needed
- - GLSAR: check, R's gls
- - ARMA: check R for arma, e.g. dynamo, also look more closely at GARCH_UCSD (BSD) and offspring (license ?)
-
-* other models in draft stage -> requires cleaning
- - gaussian process -> might fit in
- - multinomial logit -> requires ML, result statistics don't fit into current classes ?
-
-* stochastic processes, time series -> first step is relatively easy
- more simulators, random process generators, for fun and Monte Carlo and testing
- estimators to follow
- first group GARCH,
- continuous time: not until I need them
-
-* other multivariate analysis
- discriminance, factor analysis, more anova: not my business
-
-* MLE, GMM: big open question -> needs to wait until we have more code that uses it
- difference of approaches
- - parametric assumptions, distributions fully specified - problem misspecification
- - efficient estimation with full information MLE
- -> example panel data, yogurt paper
diff --git a/statsmodels/scikits/statsmodels/sandbox/tools/__init__.py b/statsmodels/scikits/statsmodels/sandbox/tools/__init__.py
deleted file mode 100644
index 89d0f38..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tools/__init__.py
+++ /dev/null
@@ -1,10 +0,0 @@
-'''some helper function for principal component and time series analysis
-
-
-Status
-------
-pca : tested against matlab
-pcasvd : tested against matlab
-'''
-
-from tools_pca import * #pca, pcasvd
diff --git a/statsmodels/scikits/statsmodels/sandbox/tools/cross_val.py b/statsmodels/scikits/statsmodels/sandbox/tools/cross_val.py
deleted file mode 100644
index 09d45db..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tools/cross_val.py
+++ /dev/null
@@ -1,442 +0,0 @@
-"""
-Utilities for cross validation.
-
-taken from scikits.learn
-
-# Author: Alexandre Gramfort ,
-# Gael Varoquaux
-# License: BSD Style.
-# $Id$
-
-changes to code by josef-pktd:
- - docstring formatting: underlines of headers
-
-"""
-
-
-
-import numpy as np
-
-try:
- from itertools import combinations
-except: # Using Python < 2.6
- def combinations(seq, r=None):
- """Generator returning combinations of items from sequence
- taken at a time. Order is not significant. If is not given,
- the entire sequence is returned.
- """
- if r == None:
- r = len(seq)
- if r <= 0:
- yield []
- else:
- for i in xrange(len(seq)):
- for cc in combinations(seq[i+1:], r-1):
- yield [seq[i]]+cc
-
-
-################################################################################
-class LeaveOneOut(object):
- """
- Leave-One-Out cross validation iterator:
- Provides train/test indexes to split data in train test sets
- """
-
- def __init__(self, n):
- """
- Leave-One-Out cross validation iterator:
- Provides train/test indexes to split data in train test sets
-
- Parameters
- ----------
- n: int
- Total number of elements
-
- Examples
- --------
- >>> from scikits.learn import cross_val
- >>> X = [[1, 2], [3, 4]]
- >>> y = [1, 2]
- >>> loo = cross_val.LeaveOneOut(2)
- >>> for train_index, test_index in loo:
- ... print "TRAIN:", train_index, "TEST:", test_index
- ... X_train, X_test, y_train, y_test = cross_val.split(train_index, test_index, X, y)
- ... print X_train, X_test, y_train, y_test
- TRAIN: [False True] TEST: [ True False]
- [[3 4]] [[1 2]] [2] [1]
- TRAIN: [ True False] TEST: [False True]
- [[1 2]] [[3 4]] [1] [2]
- """
- self.n = n
-
-
- def __iter__(self):
- n = self.n
- for i in xrange(n):
- test_index = np.zeros(n, dtype=np.bool)
- test_index[i] = True
- train_index = np.logical_not(test_index)
- yield train_index, test_index
-
-
- def __repr__(self):
- return '%s.%s(n=%i)' % (self.__class__.__module__,
- self.__class__.__name__,
- self.n,
- )
-
-
-
-################################################################################
-class LeavePOut(object):
- """
- Leave-P-Out cross validation iterator:
- Provides train/test indexes to split data in train test sets
-
- """
-
- def __init__(self, n, p):
- """
- Leave-P-Out cross validation iterator:
- Provides train/test indexes to split data in train test sets
-
- Parameters
- ----------
- n: int
- Total number of elements
- p: int
- Size test sets
-
- Examples
- --------
- >>> from scikits.learn import cross_val
- >>> X = [[1, 2], [3, 4], [5, 6], [7, 8]]
- >>> y = [1, 2, 3, 4]
- >>> lpo = cross_val.LeavePOut(4, 2)
- >>> for train_index, test_index in lpo:
- ... print "TRAIN:", train_index, "TEST:", test_index
- ... X_train, X_test, y_train, y_test = cross_val.split(train_index, test_index, X, y)
- TRAIN: [False False True True] TEST: [ True True False False]
- TRAIN: [False True False True] TEST: [ True False True False]
- TRAIN: [False True True False] TEST: [ True False False True]
- TRAIN: [ True False False True] TEST: [False True True False]
- TRAIN: [ True False True False] TEST: [False True False True]
- TRAIN: [ True True False False] TEST: [False False True True]
- """
- self.n = n
- self.p = p
-
-
- def __iter__(self):
- n = self.n
- p = self.p
- comb = combinations(range(n), p)
- for idx in comb:
- test_index = np.zeros(n, dtype=np.bool)
- test_index[np.array(idx)] = True
- train_index = np.logical_not(test_index)
- yield train_index, test_index
-
-
- def __repr__(self):
- return '%s.%s(n=%i, p=%i)' % (
- self.__class__.__module__,
- self.__class__.__name__,
- self.n,
- self.p,
- )
-
-
-################################################################################
-class KFold(object):
- """
- K-Folds cross validation iterator:
- Provides train/test indexes to split data in train test sets
- """
-
- def __init__(self, n, k):
- """
- K-Folds cross validation iterator:
- Provides train/test indexes to split data in train test sets
-
- Parameters
- ----------
- n: int
- Total number of elements
- k: int
- number of folds
-
- Examples
- --------
- >>> from scikits.learn import cross_val
- >>> X = [[1, 2], [3, 4], [1, 2], [3, 4]]
- >>> y = [1, 2, 3, 4]
- >>> kf = cross_val.KFold(4, k=2)
- >>> for train_index, test_index in kf:
- ... print "TRAIN:", train_index, "TEST:", test_index
- ... X_train, X_test, y_train, y_test = cross_val.split(train_index, test_index, X, y)
- TRAIN: [False False True True] TEST: [ True True False False]
- TRAIN: [ True True False False] TEST: [False False True True]
-
- Notes
- -----
- All the folds have size trunc(n/k), the last one has the complementary
- """
- assert k>0, ValueError('cannot have k below 1')
- assert k>> from scikits.learn import cross_val
- >>> X = [[1, 2], [3, 4], [5, 6], [7, 8]]
- >>> y = [1, 2, 1, 2]
- >>> labels = [1, 1, 2, 2]
- >>> lol = cross_val.LeaveOneLabelOut(labels)
- >>> for train_index, test_index in lol:
- ... print "TRAIN:", train_index, "TEST:", test_index
- ... X_train, X_test, y_train, y_test = cross_val.split(train_index, \
- test_index, X, y)
- ... print X_train, X_test, y_train, y_test
- TRAIN: [False False True True] TEST: [ True True False False]
- [[5 6]
- [7 8]] [[1 2]
- [3 4]] [1 2] [1 2]
- TRAIN: [ True True False False] TEST: [False False True True]
- [[1 2]
- [3 4]] [[5 6]
- [7 8]] [1 2] [1 2]
-
- """
- self.labels = labels
-
-
- def __iter__(self):
- # We make a copy here to avoid side-effects during iteration
- labels = np.array(self.labels, copy=True)
- for i in np.unique(labels):
- test_index = np.zeros(len(labels), dtype=np.bool)
- test_index[labels==i] = True
- train_index = np.logical_not(test_index)
- yield train_index, test_index
-
-
- def __repr__(self):
- return '%s.%s(labels=%s)' % (
- self.__class__.__module__,
- self.__class__.__name__,
- self.labels,
- )
-
-
-def split(train_indexes, test_indexes, *args):
- """
- For each arg return a train and test subsets defined by indexes provided
- in train_indexes and test_indexes
- """
- ret = []
- for arg in args:
- arg = np.asanyarray(arg)
- arg_train = arg[train_indexes]
- arg_test = arg[test_indexes]
- ret.append(arg_train)
- ret.append(arg_test)
- return ret
-
-'''
- >>> cv = cross_val.LeaveOneLabelOut(X, y) # y making y optional and
-possible to add other arrays of the same shape[0] too
- >>> for X_train, y_train, X_test, y_test in cv:
- ... print np.sqrt((model.fit(X_train, y_train).predict(X_test)
-- y_test) ** 2).mean())
-'''
-
-
-################################################################################
-#below: Author: josef-pktd
-
-class KStepAhead(object):
- """
- KStepAhead cross validation iterator:
- Provides fit/test indexes to split data in sequential sets
- """
-
- def __init__(self, n, k=1, start=None, kall=True, return_slice=True):
- """
- KStepAhead cross validation iterator:
- Provides train/test indexes to split data in train test sets
-
- Parameters
- ----------
- n: int
- Total number of elements
- k : int
- number of steps ahead
- start : int
- initial size of data for fitting
- kall : boolean
- if true. all values for up to k-step ahead are included in the test index.
- If false, then only the k-th step ahead value is returnd
-
-
- Notes
- -----
- I don't think this is really useful, because it can be done with
- a very simple loop instead.
- Useful as a plugin, but it could return slices instead for faster array access.
-
- Examples
- --------
- >>> from scikits.learn import cross_val
- >>> X = [[1, 2], [3, 4]]
- >>> y = [1, 2]
- >>> loo = cross_val.LeaveOneOut(2)
- >>> for train_index, test_index in loo:
- ... print "TRAIN:", train_index, "TEST:", test_index
- ... X_train, X_test, y_train, y_test = cross_val.split(train_index, test_index, X, y)
- ... print X_train, X_test, y_train, y_test
- TRAIN: [False True] TEST: [ True False]
- [[3 4]] [[1 2]] [2] [1]
- TRAIN: [ True False] TEST: [False True]
- [[1 2]] [[3 4]] [1] [2]
- """
- self.n = n
- self.k = k
- if start is None:
- start = np.trunc(n*0.25) # pick something arbitrary
- self.start = start
- self.kall = kall
- self.return_slice = return_slice
-
-
- def __iter__(self):
- n = self.n
- k = self.k
- start = self.start
- if self.return_slice:
- for i in xrange(start, n-k):
- train_slice = slice(None, i, None)
- if self.kall:
- test_slice = slice(i, i+k)
- else:
- test_slice = slice(i+k-1, i+k)
- yield train_slice, test_slice
-
- else: #for compatibility with other iterators
- for i in xrange(start, n-k):
- train_index = np.zeros(n, dtype=np.bool)
- train_index[:i] = True
- test_index = np.zeros(n, dtype=np.bool)
- if self.kall:
- test_index[i:i+k] = True # np.logical_not(test_index)
- else:
- test_index[i+k-1:i+k] = True
- #or faster to return np.arange(i,i+k) ?
- #returning slice should be faster in this case
- yield train_index, test_index
-
-
- def __repr__(self):
- return '%s.%s(n=%i)' % (self.__class__.__module__,
- self.__class__.__name__,
- self.n,
- )
-
-
-
-if __name__ == '__main__':
- #A: josef-pktd
-
- import scikits.statsmodels.api as sm
- from scikits.statsmodels.api import OLS
- from scikits.statsmodels.datasets.longley import load
- from scikits.statsmodels.iolib.table import (SimpleTable, default_txt_fmt,
- default_latex_fmt, default_html_fmt)
- import numpy as np
-
- data = load()
- data.exog = sm.tools.add_constant(data.exog)
-
- for inidx, outidx in LeaveOneOut(len(data.endog)):
- res = sm.OLS(data.endog[inidx], data.exog[inidx,:]).fit()
- print data.endog[outidx], res.model.predict(data.exog[outidx,:]),
- print data.endog[outidx] - res.model.predict(data.exog[outidx,:])
-
- resparams = []
- for inidx, outidx in LeavePOut(len(data.endog), 2):
- res = sm.OLS(data.endog[inidx], data.exog[inidx,:]).fit()
- #print data.endog[outidx], res.model.predict(data.exog[outidx,:]),
- #print ((data.endog[outidx] - res.model.predict(data.exog[outidx,:]))**2).sum()
- resparams.append(res.params)
-
- resparams = np.array(resparams)
- doplots = 1
- if doplots:
- import matplotlib.pyplot as plt
- from matplotlib.font_manager import FontProperties
-
- plt.figure()
- figtitle = 'Leave2out parameter estimates'
-
- t = plt.gcf().text(0.5,
- 0.95, figtitle,
- horizontalalignment='center',
- fontproperties=FontProperties(size=16))
-
- for i in range(resparams.shape[1]):
- plt.subplot(4, 2, i+1)
- plt.hist(resparams[:,i], bins = 10)
- #plt.title("Leave2out parameter estimates")
-
-
-
-
- for inidx, outidx in KStepAhead(20,2):
- #note the following were broken because KStepAhead returns now a slice by default
- print inidx
- print np.ones(20)[inidx].sum(), np.arange(20)[inidx][-4:]
- print outidx
- print np.nonzero(np.ones(20)[outidx])[0][()]
diff --git a/statsmodels/scikits/statsmodels/sandbox/tools/mctools.py b/statsmodels/scikits/statsmodels/sandbox/tools/mctools.py
deleted file mode 100644
index 0da8814..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tools/mctools.py
+++ /dev/null
@@ -1,197 +0,0 @@
-'''Helper class for Monte Carlo Studies for (currently) statistical tests
-
-Most of it should also be usable for Bootstrap, and for MC for estimators.
-Takes the sample generator, dgb, and the statistical results, statistic,
-as functions in the argument.
-
-
-Author: Josef Perktold (josef-pktd)
-
-'''
-
-
-import numpy as np
-
-#copied from stattools
-class StatTestMC(object):
- """class to run Monte Carlo study on a statistical test'''
-
- TODO
- print summary, for quantiles and for histogram
- draft in trying out script log
-
- """
-
- def __init__(self, dgp, statistic):
- self.dgp = dgp #staticmethod(dgp) #no self
- self.statistic = statistic # staticmethod(statistic) #no self
-
- def run(self, nrepl, statindices=None, dgpargs=[], statsargs=[]):
- '''run the actual Monte Carlo and save results
-
-
- '''
- self.nrepl = nrepl
- self.statindices = statindices
- self.dgpargs = dgpargs
- self.statsargs = statsargs
-
- dgp = self.dgp
- statfun = self.statistic # name ?
-
- #single return statistic #TODO: introspect len of return of statfun
- if statindices is None:
- self.nreturn = nreturns = 1
- mcres = np.zeros(nrepl)
- for ii in range(nrepl-1):
- x = dgp(*dgpargs) #(1e-4+np.random.randn(nobs)).cumsum()
- mcres[ii] = statfun(x, *statsargs) #unitroot_adf(x, 2,trendorder=0, autolag=None)
- #more than one return statistic
- else:
- self.nreturn = nreturns = len(statindices)
- self.mcres = mcres = np.zeros((nrepl, nreturns))
- for ii in range(nrepl-1):
- x = dgp(*dgpargs) #(1e-4+np.random.randn(nobs)).cumsum()
- ret = statfun(x, *statsargs)
- mcres[ii] = [ret[i] for i in statindices]
-
- self.mcres = mcres
-
- def histogram(self, idx=None, critval=None):
- '''calculate histogram values
-
- does not do any plotting
- '''
- if self.mcres.ndim == 2:
- if not idx is None:
- mcres = self.mcres[:,idx]
- else:
- raise ValueError('currently only 1 statistic at a time')
- else:
- mcres = self.mcres
-
- if critval is None:
- histo = np.histogram(mcres, bins=10)
- else:
- if not critval[0] == -np.inf:
- bins=np.r_[-np.inf, critval, np.inf]
- if not critval[0] == -np.inf:
- bins=np.r_[bins, np.inf]
- histo = np.histogram(mcres,
- bins=np.r_[-np.inf, critval, np.inf])
-
- self.histo = histo
- self.cumhisto = np.cumsum(histo[0])*1./self.nrepl
- self.cumhistoreversed = np.cumsum(histo[0][::-1])[::-1]*1./self.nrepl
- return histo, self.cumhisto, self.cumhistoreversed
-
- def quantiles(self, idx=None, frac=[0.01, 0.025, 0.05, 0.1, 0.975]):
- '''calculate quantiles of Monte Carlo results
-
-
- changes:
- does all sort at once, but reports only one at a time
-
- '''
-
- if self.mcres.ndim == 2:
- if not idx is None:
- mcres = self.mcres[:,idx]
- else:
- raise ValueError('currently only 1 statistic at a time')
- else:
- mcres = self.mcres
-
- self.frac = frac = np.asarray(frac)
-
- if not hasattr(self, 'mcressort'):
- self.mcressort = np.sort(self.mcres, axis=0)
-
- mcressort = self.mcressort[:,idx]
- return frac, mcressort[(self.nrepl*frac).astype(int)]
-
- def plot_hist(self, idx, distpdf, bins=50, ax=None):
- if self.mcres.ndim == 2:
- if not idx is None:
- mcres = self.mcres[:,idx]
- else:
- raise ValueError('currently only 1 statistic at a time')
- else:
- mcres = self.mcres
-
- lsp = np.linspace(mcres.min(), mcres.max(), 100)
-
-
- import matplotlib.pyplot as plt
- #I don't want to figure this out now
-# if ax=None:
-# fig = plt.figure()
-# ax = fig.addaxis()
- fig = plt.figure()
- plt.hist(mcres, bins=bins, normed=True)
- plt.plot(lsp, distpdf(lsp), 'r')
-
- def summary_quantiles(self, idx, distpdf, bins=50, ax=None):
- '''summary table for quantiles
-
- currently just a partial copy from python session, for ljung-box example
-
- add also
- >>> lb_dist.ppf([0.01, 0.025, 0.05, 0.1, 0.975])
- array([ 0.29710948, 0.48441856, 0.71072302, 1.06362322, 11.14328678])
- >>> stats.kstest(mc1.mcres[:,3], stats.chi2(4).cdf)
- (0.052009265258216836, 0.0086211970272969118)
- '''
- mcq = self.quantiles([1,3])[1]
- perc = stats.chi2([2,4]).ppf(np.array([[0.01, 0.025, 0.05, 0.1, 0.975]]).T)
- mml=[]
- for i in range(2):
- mml.extend([mcq[:,i],perc[:,i]])
- print SimpleTable(np.column_stack(mml),txt_fmt={'data_fmts': ["%#6.3f"]+["%#10.4f"]*(mm.shape[1]-1)},headers=['quantile']+['mc','dist']*2)
-
-
-
-
-
-
-
-
-
-if __name__ == '__main__':
- def randwalksim(nobs=100, drift=0.0):
- return (drift+np.random.randn(nobs)).cumsum()
-
- def normalnoisesim(nobs=500, loc=0.0):
- return (loc+np.random.randn(nobs))
-
- def adf20(x):
- return unitroot_adf(x, 2,trendorder=0, autolag=None)
-
-# print '\nResults with MC class'
-# mc1 = StatTestMC(randwalksim, adf20)
-# mc1.run(1000)
-# print mc1.histogram(critval=[-3.5, -3.17, -2.9 , -2.58, 0.26])
-# print mc1.quantiles()
-
- print '\nLjung Box'
- from scikits.statsmodels.sandbox.stats.diagnostic import acorr_ljungbox
-
- def lb4(x):
- s,p = acorr_ljungbox(x, lags=4)
- return s[-1], p[-1]
-
- def lb1(x):
- s,p = acorr_ljungbox(x, lags=1)
- return s[0], p[0]
-
- def lb(x):
- s,p = acorr_ljungbox(x, lags=4)
- return np.r_[s, p]
-
- print 'Results with MC class'
- mc1 = StatTestMC(normalnoisesim, lb)
- mc1.run(1000, statindices=range(8))
- print mc1.histogram(1, critval=[0.01, 0.025, 0.05, 0.1, 0.975])
- print mc1.quantiles(1)
- print mc1.quantiles(0)
- print mc1.histogram(0)
diff --git a/statsmodels/scikits/statsmodels/sandbox/tools/tools_pca.py b/statsmodels/scikits/statsmodels/sandbox/tools/tools_pca.py
deleted file mode 100644
index d0bc87c..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tools/tools_pca.py
+++ /dev/null
@@ -1,148 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Principal Component Analysis
-
-
-Created on Tue Sep 29 20:11:23 2009
-Author: josef-pktd
-
-TODO : add class for better reuse of results
-"""
-
-import numpy as np
-
-
-def pca(data, keepdim=0, normalize=0, demean=True):
- '''principal components with eigenvector decomposition
- similar to princomp in matlab
-
- Parameters
- ----------
- data : ndarray, 2d
- data with observations by rows and variables in columns
- keepdim : integer
- number of eigenvectors to keep
- if keepdim is zero, then all eigenvectors are included
- normalize : boolean
- if true, then eigenvectors are normalized by sqrt of eigenvalues
- demean : boolean
- if true, then the column mean is subtracted from the data
-
- Returns
- -------
- xreduced : ndarray, 2d, (nobs, nvars)
- projection of the data x on the kept eigenvectors
- factors : ndarray, 2d, (nobs, nfactors)
- factor matrix, given by np.dot(x, evecs)
- evals : ndarray, 2d, (nobs, nfactors)
- eigenvalues
- evecs : ndarray, 2d, (nobs, nfactors)
- eigenvectors, normalized if normalize is true
-
- Notes
- -----
-
- See Also
- --------
- pcasvd : principal component analysis using svd
-
- '''
- x = np.array(data)
- #make copy so original doesn't change, maybe not necessary anymore
- if demean:
- m = x.mean(0)
- else:
- m = np.zeros(x.shape[1])
- x -= m
-
- # Covariance matrix
- xcov = np.cov(x, rowvar=0)
-
- # Compute eigenvalues and sort into descending order
- evals, evecs = np.linalg.eig(xcov)
- indices = np.argsort(evals)
- indices = indices[::-1]
- evecs = evecs[:,indices]
- evals = evals[indices]
-
- if keepdim > 0 and keepdim < x.shape[1]:
- evecs = evecs[:,:keepdim]
- evals = evals[:keepdim]
-
- if normalize:
- #for i in range(shape(evecs)[1]):
- # evecs[:,i] / linalg.norm(evecs[:,i]) * sqrt(evals[i])
- evecs = evecs/np.sqrt(evals) #np.sqrt(np.dot(evecs.T, evecs) * evals)
-
- # get factor matrix
- #x = np.dot(evecs.T, x.T)
- factors = np.dot(x, evecs)
- # get original data from reduced number of components
- #xreduced = np.dot(evecs.T, factors) + m
- #print x.shape, factors.shape, evecs.shape, m.shape
- xreduced = np.dot(factors, evecs.T) + m
- return xreduced, factors, evals, evecs
-
-
-
-def pcasvd(data, keepdim=0, demean=True):
- '''principal components with svd
-
- Parameters
- ----------
- data : ndarray, 2d
- data with observations by rows and variables in columns
- keepdim : integer
- number of eigenvectors to keep
- if keepdim is zero, then all eigenvectors are included
- demean : boolean
- if true, then the column mean is subtracted from the data
-
- Returns
- -------
- xreduced : ndarray, 2d, (nobs, nvars)
- projection of the data x on the kept eigenvectors
- factors : ndarray, 2d, (nobs, nfactors)
- factor matrix, given by np.dot(x, evecs)
- evals : ndarray, 2d, (nobs, nfactors)
- eigenvalues
- evecs : ndarray, 2d, (nobs, nfactors)
- eigenvectors, normalized if normalize is true
-
- See Also
- -------
- pca : principal component analysis using eigenvector decomposition
-
- Notes
- -----
- This doesn't have yet the normalize option of pca.
-
- '''
- nobs, nvars = data.shape
- #print nobs, nvars, keepdim
- x = np.array(data)
- #make copy so original doesn't change
- if demean:
- m = x.mean(0)
- else:
- m = 0
-## if keepdim == 0:
-## keepdim = nvars
-## "print reassigning keepdim to max", keepdim
- x -= m
- U, s, v = np.linalg.svd(x.T, full_matrices=1)
- factors = np.dot(U.T, x.T).T #princomps
- if keepdim:
- xreduced = np.dot(factors[:,:keepdim], U[:,:keepdim].T) + m
- else:
- xreduced = data
- keepdim = nvars
- "print reassigning keepdim to max", keepdim
-
- # s = evals, U = evecs
- # no idea why denominator for s is with minus 1
- evals = s**2/(x.shape[0]-1)
- #print keepdim
- return xreduced, factors[:,:keepdim], evals[:keepdim], U[:,:keepdim] #, v
-
-
-__all__ = ['pca', 'pcasvd']
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/__init__.py b/statsmodels/scikits/statsmodels/sandbox/tsa/__init__.py
deleted file mode 100644
index 107de4a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/__init__.py
+++ /dev/null
@@ -1,52 +0,0 @@
-'''functions and classes time series analysis
-
-
-Status
-------
-work in progress
-
-arima.py
-^^^^^^^^
-
-ARIMA : initial class, uses conditional least squares, needs merging with new class
-arma2ar
-arma2ma
-arma_acf
-arma_acovf
-arma_generate_sample
-arma_impulse_response
-deconvolve
-index2lpol
-lpol2index
-mcarma22
-
-movstat.py
-^^^^^^^^^^
-
-I had tested the next group against matlab, but where are the tests ?
-acf
-acovf
-ccf
-ccovf
-pacf_ols
-pacf_yw
-
-These hat incorrect array size, were my first implementation, slow compared
-to cumsum version in la and cython version in pandas.
-These need checking, and merging/comparing with new class MovStats
-check_movorder
-expandarr
-movmean :
-movmoment : corrected cutoff
-movorder
-movvar
-
-
-
-
-'''
-
-
-#from arima import *
-from movstat import *
-#from stattools import *
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion.py b/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion.py
deleted file mode 100644
index a1b5476..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion.py
+++ /dev/null
@@ -1,591 +0,0 @@
-'''getting started with diffusions, continuous time stochastic processes
-
-Author: josef-pktd
-License: BSD
-
-
-References
-----------
-
-An Algorithmic Introduction to Numerical Simulation of Stochastic Differential
-Equations
-Author(s): Desmond J. Higham
-Source: SIAM Review, Vol. 43, No. 3 (Sep., 2001), pp. 525-546
-Published by: Society for Industrial and Applied Mathematics
-Stable URL: http://www.jstor.org/stable/3649798
-
-http://www.sitmo.com/ especially the formula collection
-
-
-Notes
------
-
-OU process: use same trick for ARMA with constant (non-zero mean) and drift
-some of the processes have easy multivariate extensions
-
-*Open Issues*
-
-include xzero in returned sample or not? currently not
-
-*TODOS*
-
-* Milstein from Higham paper, for which processes does it apply
-* Maximum Likelihood estimation
-* more statistical properties (useful for tests)
-* helper functions for display and MonteCarlo summaries (also for testing/checking)
-* more processes for the menagerie (e.g. from empirical papers)
-* characteristic functions
-* transformations, non-linear e.g. log
-* special estimators, e.g. Ait Sahalia, empirical characteristic functions
-* fft examples
-* check naming of methods, "simulate", "sample", "simexact", ... ?
-
-
-
-stochastic volatility models: estimation unclear
-
-finance applications ? option pricing, interest rate models
-
-
-'''
-
-import numpy as np
-from scipy import stats, signal
-import matplotlib.pyplot as plt
-
-#np.random.seed(987656789)
-
-class Diffusion(object):
- '''Wiener Process, Brownian Motion with mu=0 and sigma=1
- '''
- def __init__(self):
- pass
-
- def simulateW(self, nobs=100, T=1, dt=None, nrepl=1):
- '''generate sample of Wiener Process
- '''
- dt = T*1.0/nobs
- t = np.linspace(dt, 1, nobs)
- dW = np.sqrt(dt)*np.random.normal(size=(nrepl, nobs))
- W = np.cumsum(dW,1)
- self.dW = dW
- return W, t
-
- def expectedsim(self, func, nobs=100, T=1, dt=None, nrepl=1):
- '''get expectation of a function of a Wiener Process by simulation
-
- initially test example from
- '''
- W, t = self.simulateW(nobs=nobs, T=T, dt=dt, nrepl=nrepl)
- U = func(t, W)
- Umean = U.mean(0)
- return U, Umean, t
-
-class AffineDiffusion(Diffusion):
- '''
-
- differential equation:
-
- :math::
- dx_t = f(t,x)dt + \sigma(t,x)dW_t
-
- integral:
-
- :math::
- x_T = x_0 + \\int_{0}^{T}f(t,S)dt + \\int_0^T \\sigma(t,S)dW_t
-
- TODO: check definition, affine, what about jump diffusion?
-
- '''
-
- def __init__(self):
- pass
-
- def sim(self, nobs=100, T=1, dt=None, nrepl=1):
- # this doesn't look correct if drift or sig depend on x
- # see arithmetic BM
- W, t = self.simulateW(nobs=nobs, T=T, dt=dt, nrepl=nrepl)
- dx = self._drift() + self._sig() * W
- x = np.cumsum(dx,1)
- xmean = x.mean(0)
- return x, xmean, t
-
- def simEM(self, xzero=None, nobs=100, T=1, dt=None, nrepl=1, Tratio=4):
- '''
-
- from Higham 2001
-
- TODO: reverse parameterization to start with final nobs and DT
- TODO: check if I can skip the loop using my way from exactprocess
- problem might be Winc (reshape into 3d and sum)
- TODO: (later) check memory efficiency for large simulations
- '''
- #TODO: reverse parameterization to start with final nobs and DT
- nobs = nobs * Tratio # simple way to change parameter
- # maybe wrong parameterization,
- # drift too large, variance too small ? which dt/Dt
- # _drift, _sig independent of dt is wrong
- if xzero is None:
- xzero = self.xzero
- if dt is None:
- dt = T*1.0/nobs
- W, t = self.simulateW(nobs=nobs, T=T, dt=dt, nrepl=nrepl)
- dW = self.dW
- t = np.linspace(dt, 1, nobs)
- Dt = Tratio*dt;
- L = nobs/Tratio; # L EM steps of size Dt = R*dt
- Xem = np.zeros((nrepl,L)); # preallocate for efficiency
- Xtemp = xzero
- Xem[:,0] = xzero
- for j in np.arange(1,L):
- #Winc = np.sum(dW[:,Tratio*(j-1)+1:Tratio*j],1)
- Winc = np.sum(dW[:,np.arange(Tratio*(j-1)+1,Tratio*j)],1)
- #Xtemp = Xtemp + Dt*lamda*Xtemp + mu*Xtemp*Winc;
- Xtemp = Xtemp + self._drift(x=Xtemp) + self._sig(x=Xtemp) * Winc
- #Dt*lamda*Xtemp + mu*Xtemp*Winc;
- Xem[:,j] = Xtemp
- return Xem
-
-'''
- R = 4; Dt = R*dt; L = N/R; % L EM steps of size Dt = R*dt
- Xem = zeros(1,L); % preallocate for efficiency
- Xtemp = Xzero;
- for j = 1:L
- Winc = sum(dW(R*(j-1)+1:R*j));
- Xtemp = Xtemp + Dt*lambda*Xtemp + mu*Xtemp*Winc;
- Xem(j) = Xtemp;
- end
-'''
-
-class ExactDiffusion(AffineDiffusion):
- '''Diffusion that has an exact integral representation
-
- this is currently mainly for geometric, log processes
-
- '''
-
- def __init__(self):
- pass
-
- def exactprocess(self, xzero, nobs, ddt=1., nrepl=2):
- '''ddt : discrete delta t
-
-
-
- should be the same as an AR(1)
- not tested yet
- '''
- t = np.linspace(ddt, nobs*ddt, nobs)
- #expnt = np.exp(-self.lambd * t)
- expddt = np.exp(-self.lambd * ddt)
- normrvs = np.random.normal(size=(nrepl,nobs))
- #do I need lfilter here AR(1) ? if mean reverting lag-coeff<1
- #lfilter doesn't handle 2d arrays, it does?
- inc = self._exactconst(expddt) + self._exactstd(expddt) * normrvs
- return signal.lfilter([1.], [1.,-expddt], inc)
-
- def exactdist(self, xzero, t):
- expnt = np.exp(-self.lambd * t)
- meant = xzero * expnt + self._exactconst(expnt)
- stdt = self._exactstd(expnt)
- return stats.norm(loc=meant, scale=stdt)
-
-class ArithmeticBrownian(AffineDiffusion):
- '''
- :math::
- dx_t &= \\mu dt + \\sigma dW_t
- '''
-
- def __init__(self, xzero, mu, sigma):
- self.xzero = xzero
- self.mu = mu
- self.sigma = sigma
-
- def _drift(self, *args, **kwds):
- return self.mu
- def _sig(self, *args, **kwds):
- return self.sigma
- def exactprocess(self, nobs, xzero=None, ddt=1., nrepl=2):
- '''ddt : discrete delta t
-
- not tested yet
- '''
- if xzero is None:
- xzero = self.xzero
- t = np.linspace(ddt, nobs*ddt, nobs)
- normrvs = np.random.normal(size=(nrepl,nobs))
- inc = self._drift + self._sigma * np.sqrt(ddt) * normrvs
- #return signal.lfilter([1.], [1.,-1], inc)
- return xzero + np.cumsum(inc,1)
-
- def exactdist(self, xzero, t):
- expnt = np.exp(-self.lambd * t)
- meant = self._drift * t
- stdt = self._sigma * np.sqrt(t)
- return stats.norm(loc=meant, scale=stdt)
-
-
-class GeometricBrownian(AffineDiffusion):
- '''Geometric Brownian Motion
-
- :math::
- dx_t &= \\mu x_t dt + \\sigma x_t dW_t
-
- $x_t $ stochastic process of Geometric Brownian motion,
- $\mu $ is the drift,
- $\sigma $ is the Volatility,
- $W$ is the Wiener process (Brownian motion).
-
- '''
- def __init__(self, xzero, mu, sigma):
- self.xzero = xzero
- self.mu = mu
- self.sigma = sigma
-
- def _drift(self, *args, **kwds):
- x = kwds['x']
- return self.mu * x
- def _sig(self, *args, **kwds):
- x = kwds['x']
- return self.sigma * x
-
-
-class OUprocess(AffineDiffusion):
- '''Ornstein-Uhlenbeck
-
- :math::
- dx_t&=\\lambda(\\mu - x_t)dt+\\sigma dW_t
-
- mean reverting process
-
-
-
- TODO: move exact higher up in class hierarchy
- '''
- def __init__(self, xzero, mu, lambd, sigma):
- self.xzero = xzero
- self.lambd = lambd
- self.mu = mu
- self.sigma = sigma
-
- def _drift(self, *args, **kwds):
- x = kwds['x']
- return self.lambd * (self.mu - x)
- def _sig(self, *args, **kwds):
- x = kwds['x']
- return self.sigma * x
- def exact(self, xzero, t, normrvs):
- #TODO: aggregate over time for process with observations for all t
- # i.e. exact conditional distribution for discrete time increment
- # -> exactprocess
- #TODO: for single t, return stats.norm -> exactdist
- expnt = np.exp(-self.lambd * t)
- return (xzero * expnt + self.mu * (1-expnt) +
- self.sigma * np.sqrt((1-expnt*expnt)/2./self.lambd) * normrvs)
-
- def exactprocess(self, xzero, nobs, ddt=1., nrepl=2):
- '''ddt : discrete delta t
-
- should be the same as an AR(1)
- not tested yet
- # after writing this I saw the same use of lfilter in sitmo
- '''
- t = np.linspace(ddt, nobs*ddt, nobs)
- expnt = np.exp(-self.lambd * t)
- expddt = np.exp(-self.lambd * ddt)
- normrvs = np.random.normal(size=(nrepl,nobs))
- #do I need lfilter here AR(1) ? lfilter doesn't handle 2d arrays, it does?
- from scipy import signal
- #xzero * expnt
- inc = ( self.mu * (1-expddt) +
- self.sigma * np.sqrt((1-expddt*expddt)/2./self.lambd) * normrvs )
-
- return signal.lfilter([1.], [1.,-expddt], inc)
-
-
- def exactdist(self, xzero, t):
- #TODO: aggregate over time for process with observations for all t
- #TODO: for single t, return stats.norm
- expnt = np.exp(-self.lambd * t)
- meant = xzero * expnt + self.mu * (1-expnt)
- stdt = self.sigma * np.sqrt((1-expnt*expnt)/2./self.lambd)
- from scipy import stats
- return stats.norm(loc=meant, scale=stdt)
-
- def fitls(self, data, dt):
- '''assumes data is 1d, univariate time series
- formula from sitmo
- '''
- # brute force, no parameter estimation errors
- nobs = len(data)-1
- exog = np.column_stack((np.ones(nobs), data[:-1]))
- parest, res, rank, sing = np.linalg.lstsq(exog, data[1:])
- const, slope = parest
- errvar = res/(nobs-2.)
- lambd = -np.log(slope)/dt
- sigma = np.sqrt(-errvar * 2.*np.log(slope)/ (1-slope**2)/dt)
- mu = const / (1-slope)
- return mu, lambd, sigma
-
-
-class SchwartzOne(ExactDiffusion):
- '''the Schwartz type 1 stochastic process
-
- :math::
- dx_t = \\kappa (\\mu - \\ln x_t) x_t dt + \\sigma x_tdW \\
-
- The Schwartz type 1 process is a log of the Ornstein-Uhlenbeck stochastic
- process.
-
- '''
-
- def __init__(self, xzero, mu, kappa, sigma):
- self.xzero = xzero
- self.mu = mu
- self.kappa = kappa
- self.lambd = kappa #alias until I fix exact
- self.sigma = sigma
-
- def _exactconst(self, expnt):
- return (1-expnt) * (self.mu - self.sigma**2 / 2. /self.kappa)
-
- def _exactstd(self, expnt):
- return self.sigma * np.sqrt((1-expnt*expnt)/2./self.kappa)
-
- def exactprocess(self, xzero, nobs, ddt=1., nrepl=2):
- '''uses exact solution for log of process
- '''
- lnxzero = np.log(xzero)
- lnx = super(self.__class__, self).exactprocess(xzero, nobs, ddt=ddt, nrepl=nrepl)
- return np.exp(lnx)
-
- def exactdist(self, xzero, t):
- expnt = np.exp(-self.lambd * t)
- #TODO: check this is still wrong, just guessing
- meant = np.log(xzero) * expnt + self._exactconst(expnt)
- stdt = self._exactstd(expnt)
- return stats.lognorm(loc=meant, scale=stdt)
-
- def fitls(self, data, dt):
- '''assumes data is 1d, univariate time series
- formula from sitmo
- '''
- # brute force, no parameter estimation errors
- nobs = len(data)-1
- exog = np.column_stack((np.ones(nobs),np.log(data[:-1])))
- parest, res, rank, sing = np.linalg.lstsq(exog, np.log(data[1:]))
- const, slope = parest
- errvar = res/(nobs-2.) #check denominator estimate, of sigma too low
- kappa = -np.log(slope)/dt
- sigma = np.sqrt(errvar * kappa / (1-np.exp(-2*kappa*dt)))
- mu = const / (1-np.exp(-kappa*dt)) + sigma**2/2./kappa
- if np.shape(mu)== (1,): mu = mu[0] # how to remove scalar array ?
- if np.shape(sigma)== (1,): sigma = sigma[0]
- #mu, kappa are good, sigma too small
- return mu, kappa, sigma
-
-
-
-class BrownianBridge(object):
- def __init__(self):
- pass
-
- def simulate(self, x0, x1, nobs, nrepl=1, ddt=1., sigma=1.):
- nobs=nobs+1
- dt = ddt*1./nobs
- t = np.linspace(dt, ddt-dt, nobs)
- t = np.linspace(dt, ddt, nobs)
- wm = [t/ddt, 1-t/ddt]
- #wmi = wm[1]
- #wm1 = x1*wm[0]
- wmi = 1-dt/(ddt-t)
- wm1 = x1*(dt/(ddt-t))
- su = sigma* np.sqrt(t*(1-t)/ddt)
- s = sigma* np.sqrt(dt*(ddt-t-dt)/(ddt-t))
- x = np.zeros((nrepl, nobs))
- x[:,0] = x0
- rvs = s*np.random.normal(size=(nrepl,nobs))
- for i in range(1,nobs):
- x[:,i] = x[:,i-1]*wmi[i] + wm1[i] + rvs[:,i]
- return x, t, su
-
-
-class CompoundPoisson(object):
- '''nobs iid compound poisson distributions, not a process in time
- '''
- def __init__(self, lambd, randfn=np.random.normal):
- if len(lambd) != len(randfn):
- raise ValueError('lambd and randfn need to have the same number of elements')
-
- self.nobj = len(lambd)
- self.randfn = randfn
- self.lambd = np.asarray(lambd)
-
- def simulate(self, nobs, nrepl=1):
- nobj = self.nobj
- x = np.zeros((nrepl, nobs, nobj))
- N = np.random.poisson(self.lambd[None,None,:], size=(nrepl,nobs,nobj))
- for io in range(nobj):
- randfnc = self.randfn[io]
-
- nc = N[:,:,io]
- #print nrepl,nobs,nc
- #xio = randfnc(size=(nrepl,nobs,np.max(nc))).cumsum(-1)[np.arange(nrepl)[:,None],np.arange(nobs),nc-1]
- rvs = randfnc(size=(nrepl,nobs,np.max(nc)))
- print 'rvs.sum()', rvs.sum(), rvs.shape
- xio = rvs.cumsum(-1)[np.arange(nrepl)[:,None],np.arange(nobs),nc-1]
- #print xio.shape
- x[:,:,io] = xio
- x[N==0] = 0
- return x, N
-
-
-
-
-
-
-
-
-
-'''
-randn('state',100) % set the state of randn
-T = 1; N = 500; dt = T/N; t = [dt:dt:1];
-
-M = 1000; % M paths simultaneously
-dW = sqrt(dt)*randn(M,N); % increments
-W = cumsum(dW,2); % cumulative sum
-U = exp(repmat(t,[M 1]) + 0.5*W);
-Umean = mean(U);
-plot([0,t],[1,Umean],'b-'), hold on % plot mean over M paths
-plot([0,t],[ones(5,1),U(1:5,:)],'r--'), hold off % plot 5 individual paths
-xlabel('t','FontSize',16)
-ylabel('U(t)','FontSize',16,'Rotation',0,'HorizontalAlignment','right')
-legend('mean of 1000 paths','5 individual paths',2)
-
-averr = norm((Umean - exp(9*t/8)),'inf') % sample error
-'''
-
-if __name__ == '__main__':
- doplot = 1
- nrepl = 1000
- examples = []#['all']
-
- if 'all' in examples:
- w = Diffusion()
-
- # Wiener Process
- # ^^^^^^^^^^^^^^
-
- ws = w.simulateW(1000, nrepl=nrepl)
- if doplot:
- plt.figure()
- tmp = plt.plot(ws[0].T)
- tmp = plt.plot(ws[0].mean(0), linewidth=2)
- plt.title('Standard Brownian Motion (Wiener Process)')
-
- func = lambda t, W: np.exp(t + 0.5*W)
- us = w.expectedsim(func, nobs=500, nrepl=nrepl)
- if doplot:
- plt.figure()
- tmp = plt.plot(us[0].T)
- tmp = plt.plot(us[1], linewidth=2)
- plt.title('Brownian Motion - exp')
- #plt.show()
- averr = np.linalg.norm(us[1] - np.exp(9*us[2]/8.), np.inf)
- print averr
- #print us[1][:10]
- #print np.exp(9.*us[2][:10]/8.)
-
- # Geometric Brownian
- # ^^^^^^^^^^^^^^^^^^
-
- gb = GeometricBrownian(xzero=1., mu=0.01, sigma=0.5)
- gbs = gb.simEM(nobs=100, nrepl=100)
- if doplot:
- plt.figure()
- tmp = plt.plot(gbs.T)
- tmp = plt.plot(gbs.mean(0), linewidth=2)
- plt.title('Geometric Brownian')
- plt.figure()
- tmp = plt.plot(np.log(gbs).T)
- tmp = plt.plot(np.log(gbs.mean(0)), linewidth=2)
- plt.title('Geometric Brownian - log-transformed')
-
- ab = ArithmeticBrownian(xzero=1, mu=0.05, sigma=1)
- abs = ab.simEM(nobs=100, nrepl=100)
- if doplot:
- plt.figure()
- tmp = plt.plot(abs.T)
- tmp = plt.plot(abs.mean(0), linewidth=2)
- plt.title('Arithmetic Brownian')
-
- # Ornstein-Uhlenbeck
- # ^^^^^^^^^^^^^^^^^^
-
- ou = OUprocess(xzero=2, mu=1, lambd=0.5, sigma=0.1)
- ous = ou.simEM()
- oue = ou.exact(1, 1, np.random.normal(size=(5,10)))
- ou.exact(0, np.linspace(0,10,10/0.1), 0)
- ou.exactprocess(0,10)
- print ou.exactprocess(0,10, ddt=0.1,nrepl=10).mean(0)
- #the following looks good, approaches mu
- oues = ou.exactprocess(0,100, ddt=0.1,nrepl=100)
- if doplot:
- plt.figure()
- tmp = plt.plot(oues.T)
- tmp = plt.plot(oues.mean(0), linewidth=2)
- plt.title('Ornstein-Uhlenbeck')
-
- # SchwartsOne
- # ^^^^^^^^^^^
-
- so = SchwartzOne(xzero=0, mu=1, kappa=0.5, sigma=0.1)
- sos = so.exactprocess(0,50, ddt=0.1,nrepl=100)
- print sos.mean(0)
- print np.log(sos.mean(0))
- doplot = 1
- if doplot:
- plt.figure()
- tmp = plt.plot(sos.T)
- tmp = plt.plot(sos.mean(0), linewidth=2)
- plt.title('Schwartz One')
- print so.fitls(sos[0,:],dt=0.1)
- sos2 = so.exactprocess(0,500, ddt=0.1,nrepl=5)
- print 'true: mu=1, kappa=0.5, sigma=0.1'
- for i in range(5):
- print so.fitls(sos2[i],dt=0.1)
-
-
-
- # Brownian Bridge
- # ^^^^^^^^^^^^^^^
-
- bb = BrownianBridge()
- #bbs = bb.sample(x0, x1, nobs, nrepl=1, ddt=1., sigma=1.)
- bbs, t, wm = bb.simulate(0, 0.5, 99, nrepl=500, ddt=1., sigma=0.1)
- if doplot:
- plt.figure()
- tmp = plt.plot(bbs.T)
- tmp = plt.plot(bbs.mean(0), linewidth=2)
- plt.title('Brownian Bridge')
- plt.figure()
- plt.plot(wm,'r', label='theoretical')
- plt.plot(bbs.std(0), label='simulated')
- plt.title('Brownian Bridge - Variance')
- plt.legend()
-
- # Compound Poisson
- # ^^^^^^^^^^^^^^^^
- cp = CompoundPoisson([1,1], [np.random.normal,np.random.normal])
- cps = cp.simulate(nobs=20000,nrepl=3)
- print cps[0].sum(-1).sum(-1)
- print cps[0].sum()
- print cps[0].mean(-1).mean(-1)
- print cps[0].mean()
- print cps[1].size
- print cps[1].sum()
- #Note Y = sum^{N} X is compound poisson of iid x, then
- #E(Y) = E(N)*E(X) eg. eq. (6.37) page 385 in http://ee.stanford.edu/~gray/sp.html
-
-
- #plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion2.py b/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion2.py
deleted file mode 100644
index 7c8a4e8..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/diffusion2.py
+++ /dev/null
@@ -1,505 +0,0 @@
-""" Diffusion 2: jump diffusion, stochastic volatility, stochastic time
-
-Created on Tue Dec 08 15:03:49 2009
-
-Author: josef-pktd following Meucci
-License: BSD
-
-contains:
-
-CIRSubordinatedBrownian
-Heston
-IG
-JumpDiffusionKou
-JumpDiffusionMerton
-NIG
-VG
-
-References
-----------
-
-Attilio Meucci, Review of Discrete and Continuous Processes in Finance: Theory and Applications
-Bloomberg Portfolio Research Paper No. 2009-02-CLASSROOM July 1, 2009
-http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1373102
-
-
-
-
-this is currently mostly a translation from matlab of
-http://www.mathworks.com/matlabcentral/fileexchange/23554-review-of-discrete-and-continuous-processes-in-finance
-license BSD:
-
-Copyright (c) 2008, Attilio Meucci
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the distribution
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-
-
-TODO:
-
-* vectorize where possible
-* which processes are exactly simulated by finite differences ?
-* include or exclude (now) the initial observation ?
-* convert to and merge with diffusion.py (part 1 of diffusions)
-* which processes can be easily estimated ?
- loglike or characteristic function ?
-* tests ? check for possible index errors (random indices), graphs look ok
-* adjust notation, variable names, more consistent, more pythonic
-* delete a few unused lines, cleanup
-* docstrings
-
-
-random bug (showed up only once, need fuzz-testing to replicate)
- File "...\diffusion2.py", line 375, in
- x = jd.simulate(mu,sigma,lambd,a,D,ts,nrepl)
- File "...\diffusion2.py", line 129, in simulate
- jumps_ts[n] = CumS[Events]
-IndexError: index out of bounds
-
-CumS is empty array, Events == -1
-
-
-"""
-
-
-import numpy as np
-#from scipy import stats # currently only uses np.random
-import matplotlib.pyplot as plt
-
-class JumpDiffusionMerton(object):
- '''
-
- Example
- -------
- mu=.00 # deterministic drift
- sig=.20 # Gaussian component
- l=3.45 # Poisson process arrival rate
- a=0 # drift of log-jump
- D=.2 # st.dev of log-jump
-
- X = JumpDiffusionMerton().simulate(mu,sig,lambd,a,D,ts,nrepl)
-
- plt.figure()
- plt.plot(X.T)
- plt.title('Merton jump-diffusion')
-
-
- '''
-
- def __init__(self):
- pass
-
-
- def simulate(self, m,s,lambd,a,D,ts,nrepl):
-
- T = ts[-1] # time points
- # simulate number of jumps
- n_jumps = np.random.poisson(lambd*T, size=(nrepl, 1))
-
- jumps=[]
- nobs=len(ts)
- jumps=np.zeros((nrepl,nobs))
- for j in range(nrepl):
- # simulate jump arrival time
- t = T*np.random.rand(n_jumps[j])#,1) #uniform
- t = np.sort(t,0)
-
- # simulate jump size
- S = a + D*np.random.randn(n_jumps[j],1)
-
- # put things together
- CumS = np.cumsum(S)
- jumps_ts = np.zeros(nobs)
- for n in range(nobs):
- Events = np.sum(t<=ts[n])-1
- #print n, Events, CumS.shape, jumps_ts.shape
- jumps_ts[n]=0
- if Events > 0:
- jumps_ts[n] = CumS[Events] #TODO: out of bounds see top
-
- #jumps = np.column_stack((jumps, jumps_ts)) #maybe wrong transl
- jumps[j,:] = jumps_ts
-
-
- D_Diff = np.zeros((nrepl,nobs))
- for k in range(nobs):
- Dt=ts[k]
- if k>1:
- Dt=ts[k]-ts[k-1]
- D_Diff[:,k]=m*Dt + s*np.sqrt(Dt)*np.random.randn(nrepl)
-
- x = np.hstack((np.zeros((nrepl,1)),np.cumsum(D_Diff,1)+jumps))
-
- return x
-
-class JumpDiffusionKou(object):
-
- def __init__(self):
- pass
-
- def simulate(self, m,s,lambd,p,e1,e2,ts,nrepl):
-
- T=ts[-1]
- # simulate number of jumps
- N = np.random.poisson(lambd*T,size =(nrepl,1))
-
- jumps=[]
- nobs=len(ts)
- jumps=np.zeros((nrepl,nobs))
- for j in range(nrepl):
- # simulate jump arrival time
- t=T*np.random.rand(N[j])
- t=np.sort(t)
-
- # simulate jump size
- ww = np.random.binomial(1, p, size=(N[j]))
- S = ww * np.random.exponential(e1, size=(N[j])) - \
- (1-ww) * np.random.exponential(e2, N[j])
-
- # put things together
- CumS = np.cumsum(S)
- jumps_ts = np.zeros(nobs)
- for n in range(nobs):
- Events = sum(t<=ts[n])-1
- jumps_ts[n]=0
- if Events:
- jumps_ts[n]=CumS[Events]
-
- jumps[j,:] = jumps_ts
-
- D_Diff = np.zeros((nrepl,nobs))
- for k in range(nobs):
- Dt=ts[k]
- if k>1:
- Dt=ts[k]-ts[k-1]
-
- D_Diff[:,k]=m*Dt + s*np.sqrt(Dt)*np.random.normal(size=nrepl)
-
- x = np.hstack((np.zeros((nrepl,1)),np.cumsum(D_Diff,1)+jumps))
- return x
-
-
-class VG(object):
- '''variance gamma process
- '''
-
- def __init__(self):
- pass
-
- def simulate(self, m,s,kappa,ts,nrepl):
-
- T=len(ts)
- dXs = np.zeros((nrepl,T))
- for t in range(T):
- dt=ts[1]-0
- if t>1:
- dt = ts[t]-ts[t-1]
-
- #print dt/kappa
- #TODO: check parameterization of gamrnd, checked looks same as np
-
- d_tau = kappa * np.random.gamma(dt/kappa,1.,size=(nrepl))
- #print s*np.sqrt(d_tau)
- # this raises exception:
- #dX = stats.norm.rvs(m*d_tau,(s*np.sqrt(d_tau)))
- # np.random.normal requires scale >0
- dX = np.random.normal(loc=m*d_tau, scale=1e-6+s*np.sqrt(d_tau))
-
- dXs[:,t] = dX
-
- x = np.cumsum(dXs,1)
- return x
-
-class IG(object):
- '''inverse-Gaussian ??? used by NIG
- '''
-
- def __init__(self):
- pass
-
- def simulate(self, l,m,nrepl):
-
- N = np.random.randn(nrepl,1)
- Y = N**2
- X = m + (.5*m*m/l)*Y - (.5*m/l)*np.sqrt(4*m*l*Y+m*m*(Y**2))
- U = np.random.rand(nrepl,1)
-
- ind = U>m/(X+m)
- X[ind] = m*m/X[ind]
- return X.ravel()
-
-
-class NIG(object):
- '''normal-inverse-Gaussian
- '''
-
- def __init__(self):
- pass
-
- def simulate(self, th,k,s,ts,nrepl):
-
- T = len(ts)
- DXs = np.zeros((nrepl,T))
- for t in range(T):
- Dt=ts[1]-0
- if t>1:
- Dt=ts[t]-ts[t-1]
-
- l = 1/k*(Dt**2)
- m = Dt
- DS = IG().simulate(l,m,nrepl)
- N = np.random.randn(nrepl)
-
- DX = s*N*np.sqrt(DS) + th*DS
- #print DS.shape, DX.shape, DXs.shape
- DXs[:,t] = DX
-
- x = np.cumsum(DXs,1)
- return x
-
-class Heston(object):
- '''Heston Stochastic Volatility
- '''
-
- def __init__(self):
- pass
-
- def simulate(self, m, kappa, eta,lambd,r, ts, nrepl,tratio=1.):
- T = ts[-1]
- nobs = len(ts)
- dt = np.zeros(nobs) #/tratio
- dt[0] = ts[0]-0
- dt[1:] = np.diff(ts)
-
- DXs = np.zeros((nrepl,nobs))
-
- dB_1 = np.sqrt(dt) * np.random.randn(nrepl,nobs)
- dB_2u = np.sqrt(dt) * np.random.randn(nrepl,nobs)
- dB_2 = r*dB_1 + np.sqrt(1-r**2)*dB_2u
-
- vt = eta*np.ones(nrepl)
- v=[]
- dXs = np.zeros((nrepl,nobs))
- vts = np.zeros((nrepl,nobs))
- for t in range(nobs):
- dv = kappa*(eta-vt)*dt[t]+ lambd*np.sqrt(vt)*dB_2[:,t]
- dX = m*dt[t] + np.sqrt(vt*dt[t]) * dB_1[:,t]
- vt = vt + dv
-
- vts[:,t] = vt
- dXs[:,t] = dX
-
- x = np.cumsum(dXs,1)
- return x, vts
-
-class CIRSubordinatedBrownian(object):
- '''CIR subordinated Brownian Motion
- '''
-
- def __init__(self):
- pass
-
- def simulate(self, m, kappa, T_dot,lambd,sigma, ts, nrepl):
- T = ts[-1]
- nobs = len(ts)
- dtarr = np.zeros(nobs) #/tratio
- dtarr[0] = ts[0]-0
- dtarr[1:] = np.diff(ts)
-
- DXs = np.zeros((nrepl,nobs))
-
- dB = np.sqrt(dtarr) * np.random.randn(nrepl,nobs)
-
- yt = 1.
- dXs = np.zeros((nrepl,nobs))
- dtaus = np.zeros((nrepl,nobs))
- y = np.zeros((nrepl,nobs))
- for t in range(nobs):
- dt = dtarr[t]
- dy = kappa*(T_dot-yt)*dt + lambd*np.sqrt(yt)*dB[:,t]
- yt = np.maximum(yt+dy,1e-10) # keep away from zero ?
-
- dtau = np.maximum(yt*dt, 1e-6)
- dX = np.random.normal(loc=m*dtau, scale=sigma*np.sqrt(dtau))
-
- y[:,t] = yt
- dtaus[:,t] = dtau
- dXs[:,t] = dX
-
- tau = np.cumsum(dtaus,1)
- x = np.cumsum(dXs,1)
- return x, tau, y
-
-def schout2contank(a,b,d):
-
- th = d*b/np.sqrt(a**2-b**2)
- k = 1/(d*np.sqrt(a**2-b**2))
- s = np.sqrt(d/np.sqrt(a**2-b**2))
- return th,k,s
-
-
-if __name__ == '__main__':
-
- #Merton Jump Diffusion
- #^^^^^^^^^^^^^^^^^^^^^
-
- # grid of time values at which the process is evaluated
- #("0" will be added, too)
- nobs = 252.#1000 #252.
- ts = np.linspace(1./nobs, 1., nobs)
- nrepl=5 # number of simulations
- mu=.010 # deterministic drift
- sigma = .020 # Gaussian component
- lambd = 3.45 *10 # Poisson process arrival rate
- a=0 # drift of log-jump
- D=.2 # st.dev of log-jump
- jd = JumpDiffusionMerton()
- x = jd.simulate(mu,sigma,lambd,a,D,ts,nrepl)
- plt.figure()
- plt.plot(x.T) #Todo
- plt.title('Merton jump-diffusion')
-
- sigma = 0.2
- lambd = 3.45
- x = jd.simulate(mu,sigma,lambd,a,D,ts,nrepl)
- plt.figure()
- plt.plot(x.T) #Todo
- plt.title('Merton jump-diffusion')
-
- #Kou jump diffusion
- #^^^^^^^^^^^^^^^^^^
-
- mu=.0 # deterministic drift
- lambd=4.25 # Poisson process arrival rate
- p=.5 # prob. of up-jump
- e1=.2 # parameter of up-jump
- e2=.3 # parameter of down-jump
- sig=.2 # Gaussian component
-
- x = JumpDiffusionKou().simulate(mu,sig,lambd,p,e1,e2,ts,nrepl)
-
- plt.figure()
- plt.plot(x.T) #Todo
- plt.title('double exponential (Kou jump diffusion)')
-
- #variance-gamma
- #^^^^^^^^^^^^^^
- mu = .1 # deterministic drift in subordinated Brownian motion
- kappa = 1. #10. #1 # inverse for gamma shape parameter
- sig = 0.5 #.2 # s.dev in subordinated Brownian motion
-
- x = VG().simulate(mu,sig,kappa,ts,nrepl)
- plt.figure()
- plt.plot(x.T) #Todo
- plt.title('variance gamma')
-
-
- #normal-inverse-Gaussian
- #^^^^^^^^^^^^^^^^^^^^^^^
-
- # (Schoutens notation)
- al = 2.1
- be = 0
- de = 1
- # convert parameters to Cont-Tankov notation
- th,k,s = schout2contank(al,be,de)
-
- x = NIG().simulate(th,k,s,ts,nrepl)
-
- plt.figure()
- plt.plot(x.T) #Todo x-axis
- plt.title('normal-inverse-Gaussian')
-
- #Heston Stochastic Volatility
- #^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
- m=.0
- kappa = .6 # 2*Kappa*Eta>Lambda^2
- eta = .3**2
- lambd =.25
- r = -.7
- T = 20.
- nobs = 252.*T#1000 #252.
- tsh = np.linspace(T/nobs, T, nobs)
- x, vts = Heston().simulate(m,kappa, eta,lambd,r, tsh, nrepl, tratio=20.)
-
- plt.figure()
- plt.plot(x.T)
- plt.title('Heston Stochastic Volatility')
-
- plt.figure()
- plt.plot(np.sqrt(vts).T)
- plt.title('Heston Stochastic Volatility - CIR Vol.')
-
- plt.figure()
- plt.subplot(2,1,1)
- plt.plot(x[0])
- plt.title('Heston Stochastic Volatility process')
- plt.subplot(2,1,2)
- plt.plot(np.sqrt(vts[0]))
- plt.title('CIR Volatility')
-
-
- #CIR subordinated Brownian
- #^^^^^^^^^^^^^^^^^^^^^^^^^
- m=.1
- sigma=.4
-
- kappa=.6 # 2*Kappa*T_dot>Lambda^2
- T_dot=1
- lambd=1
- #T=252*10
- #dt=1/252
- #nrepl=2
- T = 10.
- nobs = 252.*T#1000 #252.
- tsh = np.linspace(T/nobs, T, nobs)
- x, tau, y = CIRSubordinatedBrownian().simulate(m, kappa, T_dot,lambd,sigma, tsh, nrepl)
-
- plt.figure()
- plt.plot(tsh, x.T)
- plt.title('CIRSubordinatedBrownian process')
-
- plt.figure()
- plt.plot(tsh, y.T)
- plt.title('CIRSubordinatedBrownian - CIR')
-
- plt.figure()
- plt.plot(tsh, tau.T)
- plt.title('CIRSubordinatedBrownian - stochastic time ')
-
- plt.figure()
- plt.subplot(2,1,1)
- plt.plot(tsh, x[0])
- plt.title('CIRSubordinatedBrownian process')
- plt.subplot(2,1,2)
- plt.plot(tsh, y[0], label='CIR')
- plt.plot(tsh, tau[0], label='stoch. time')
- plt.legend(loc='upper left')
- plt.title('CIRSubordinatedBrownian')
-
- #plt.show()
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/example_arma.py b/statsmodels/scikits/statsmodels/sandbox/tsa/example_arma.py
deleted file mode 100644
index 52d60f4..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/example_arma.py
+++ /dev/null
@@ -1,492 +0,0 @@
-'''trying to verify theoretical acf of arma
-
-explicit functions for autocovariance functions of ARIMA(1,1), MA(1), MA(2)
-plus 3 functions from nitime.utils
-
-'''
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal
-
-import matplotlib.mlab as mlab
-
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample, arma_impulse_response
-from scikits.statsmodels.tsa.arima_process import arma_acovf, arma_acf, ARIMA
-#from movstat import acf, acovf
-#from scikits.statsmodels.sandbox.tsa import acf, acovf, pacf
-from scikits.statsmodels.tsa.stattools import acf, acovf, pacf
-
-ar = [1., -0.6]
-#ar = [1., 0.]
-ma = [1., 0.4]
-#ma = [1., 0.4, 0.6]
-#ma = [1., 0.]
-mod = ''#'ma2'
-x = arma_generate_sample(ar, ma, 5000)
-x_acf = acf(x)[:10]
-x_ir = arma_impulse_response(ar, ma)
-
-#print x_acf[:10]
-#print x_ir[:10]
-#irc2 = np.correlate(x_ir,x_ir,'full')[len(x_ir)-1:]
-#print irc2[:10]
-#print irc2[:10]/irc2[0]
-#print irc2[:10-1] / irc2[1:10]
-#print x_acf[:10-1] / x_acf[1:10]
-
-# detrend helper from matplotlib.mlab
-def detrend(x, key=None):
- if key is None or key=='constant':
- return detrend_mean(x)
- elif key=='linear':
- return detrend_linear(x)
-
-def demean(x, axis=0):
- "Return x minus its mean along the specified axis"
- x = np.asarray(x)
- if axis:
- ind = [slice(None)] * axis
- ind.append(np.newaxis)
- return x - x.mean(axis)[ind]
- return x - x.mean(axis)
-
-def detrend_mean(x):
- "Return x minus the mean(x)"
- return x - x.mean()
-
-def detrend_none(x):
- "Return x: no detrending"
- return x
-
-def detrend_linear(y):
- "Return y minus best fit line; 'linear' detrending "
- # This is faster than an algorithm based on linalg.lstsq.
- x = np.arange(len(y), dtype=np.float_)
- C = np.cov(x, y, bias=1)
- b = C[0,1]/C[0,0]
- a = y.mean() - b*x.mean()
- return y - (b*x + a)
-
-def acovf_explicit(ar, ma, nobs):
- '''add correlation of MA representation explicitely
-
- '''
- ir = arma_impulse_response(ar, ma)
- acovfexpl = [np.dot(ir[:nobs-t], ir[t:nobs]) for t in range(10)]
- return acovfexpl
-
-def acovf_arma11(ar, ma):
- # ARMA(1,1)
- # Florens et al page 278
- # wrong result ?
- # new calculation bigJudge p 311, now the same
- a = -ar[1]
- b = ma[1]
- #rho = [1.]
- #rho.append((1-a*b)*(a-b)/(1.+a**2-2*a*b))
- rho = [(1.+b**2+2*a*b)/(1.-a**2)]
- rho.append((1+a*b)*(a+b)/(1.-a**2))
- for _ in range(8):
- last = rho[-1]
- rho.append(a*last)
- return np.array(rho)
-
-# print acf11[:10]
-# print acf11[:10] /acf11[0]
-
-def acovf_ma2(ma):
- # MA(2)
- # from Greene p616 (with typo), Florens p280
- b1 = -ma[1]
- b2 = -ma[2]
- rho = np.zeros(10)
- rho[0] = (1 + b1**2 + b2**2)
- rho[1] = (-b1 + b1*b2)
- rho[2] = -b2
- return rho
-
-# rho2 = rho/rho[0]
-# print rho2
-# print irc2[:10]/irc2[0]
-
-def acovf_ma1(ma):
- # MA(1)
- # from Greene p616 (with typo), Florens p280
- b = -ma[1]
- rho = np.zeros(10)
- rho[0] = (1 + b**2)
- rho[1] = -b
- return rho
-
-# rho2 = rho/rho[0]
-# print rho2
-# print irc2[:10]/irc2[0]
-
-
-ar1 = [1., -0.8]
-ar0 = [1., 0.]
-ma1 = [1., 0.4]
-ma2 = [1., 0.4, 0.6]
-ma0 = [1., 0.]
-
-comparefn = dict(
- [('ma1', acovf_ma1),
- ('ma2', acovf_ma2),
- ('arma11', acovf_arma11),
- ('ar1', acovf_arma11)])
-
-cases = [('ma1', (ar0, ma1)),
- ('ma2', (ar0, ma2)),
- ('arma11', (ar1, ma1)),
- ('ar1', (ar1, ma0))]
-
-for c, args in cases:
-
- ar, ma = args
- print
- print c, ar, ma
- myacovf = arma_acovf(ar, ma, nobs=10)
- myacf = arma_acf(ar, ma, nobs=10)
- if c[:2]=='ma':
- othacovf = comparefn[c](ma)
- else:
- othacovf = comparefn[c](ar, ma)
- print myacovf[:5]
- print othacovf[:5]
- #something broke again,
- #for high persistence case eg ar=0.99, nobs of IR has to be large
- #made changes to arma_acovf
- assert_array_almost_equal(myacovf, othacovf,10)
- assert_array_almost_equal(myacf, othacovf/othacovf[0],10)
-
-
-#from nitime.utils
-def ar_generator(N=512, sigma=1.):
- # this generates a signal u(n) = a1*u(n-1) + a2*u(n-2) + ... + v(n)
- # where v(n) is a stationary stochastic process with zero mean
- # and variance = sigma
- # this sequence is shown to be estimated well by an order 8 AR system
- taps = np.array([2.7607, -3.8106, 2.6535, -0.9238])
- v = np.random.normal(size=N, scale=sigma**0.5)
- u = np.zeros(N)
- P = len(taps)
- for l in xrange(P):
- u[l] = v[l] + np.dot(u[:l][::-1], taps[:l])
- for l in xrange(P,N):
- u[l] = v[l] + np.dot(u[l-P:l][::-1], taps)
- return u, v, taps
-
-#JP: small differences to using np.correlate, because assumes mean(s)=0
-# denominator is N, not N-k, biased estimator
-# misnomer: (biased) autocovariance not autocorrelation
-#from nitime.utils
-def autocorr(s, axis=-1):
- """Returns the autocorrelation of signal s at all lags. Adheres to the
-definition r(k) = E{s(n)s*(n-k)} where E{} is the expectation operator.
-"""
- N = s.shape[axis]
- S = np.fft.fft(s, n=2*N-1, axis=axis)
- sxx = np.fft.ifft(S*S.conjugate(), axis=axis).real[:N]
- return sxx/N
-
-#JP: with valid this returns a single value, if x and y have same length
-# e.g. norm_corr(x, x)
-# using std subtracts mean, but correlate doesn't, requires means are exactly 0
-# biased, no n-k correction for laglength
-#from nitime.utils
-def norm_corr(x,y,mode = 'valid'):
- """Returns the correlation between two ndarrays, by calling np.correlate in
-'same' mode and normalizing the result by the std of the arrays and by
-their lengths. This results in a correlation = 1 for an auto-correlation"""
-
- return ( np.correlate(x,y,mode) /
- (np.std(x)*np.std(y)*(x.shape[-1])) )
-
-
-
-# from matplotlib axes.py
-# note: self is axis
-def pltacorr(self, x, **kwargs):
- """
- call signature::
-
- acorr(x, normed=True, detrend=detrend_none, usevlines=True,
- maxlags=10, **kwargs)
-
- Plot the autocorrelation of *x*. If *normed* = *True*,
- normalize the data by the autocorrelation at 0-th lag. *x* is
- detrended by the *detrend* callable (default no normalization).
-
- Data are plotted as ``plot(lags, c, **kwargs)``
-
- Return value is a tuple (*lags*, *c*, *line*) where:
-
- - *lags* are a length 2*maxlags+1 lag vector
-
- - *c* is the 2*maxlags+1 auto correlation vector
-
- - *line* is a :class:`~matplotlib.lines.Line2D` instance
- returned by :meth:`plot`
-
- The default *linestyle* is None and the default *marker* is
- ``'o'``, though these can be overridden with keyword args.
- The cross correlation is performed with
- :func:`numpy.correlate` with *mode* = 2.
-
- If *usevlines* is *True*, :meth:`~matplotlib.axes.Axes.vlines`
- rather than :meth:`~matplotlib.axes.Axes.plot` is used to draw
- vertical lines from the origin to the acorr. Otherwise, the
- plot style is determined by the kwargs, which are
- :class:`~matplotlib.lines.Line2D` properties.
-
- *maxlags* is a positive integer detailing the number of lags
- to show. The default value of *None* will return all
- :math:`2 \mathrm{len}(x) - 1` lags.
-
- The return value is a tuple (*lags*, *c*, *linecol*, *b*)
- where
-
- - *linecol* is the
- :class:`~matplotlib.collections.LineCollection`
-
- - *b* is the *x*-axis.
-
- .. seealso::
-
- :meth:`~matplotlib.axes.Axes.plot` or
- :meth:`~matplotlib.axes.Axes.vlines`
- For documentation on valid kwargs.
-
- **Example:**
-
- :func:`~matplotlib.pyplot.xcorr` above, and
- :func:`~matplotlib.pyplot.acorr` below.
-
- **Example:**
-
- .. plot:: mpl_examples/pylab_examples/xcorr_demo.py
- """
- return self.xcorr(x, x, **kwargs)
-
-def pltxcorr(self, x, y, normed=True, detrend=detrend_none,
- usevlines=True, maxlags=10, **kwargs):
- """
- call signature::
-
- def xcorr(self, x, y, normed=True, detrend=detrend_none,
- usevlines=True, maxlags=10, **kwargs):
-
- Plot the cross correlation between *x* and *y*. If *normed* =
- *True*, normalize the data by the cross correlation at 0-th
- lag. *x* and y are detrended by the *detrend* callable
- (default no normalization). *x* and *y* must be equal length.
-
- Data are plotted as ``plot(lags, c, **kwargs)``
-
- Return value is a tuple (*lags*, *c*, *line*) where:
-
- - *lags* are a length ``2*maxlags+1`` lag vector
-
- - *c* is the ``2*maxlags+1`` auto correlation vector
-
- - *line* is a :class:`~matplotlib.lines.Line2D` instance
- returned by :func:`~matplotlib.pyplot.plot`.
-
- The default *linestyle* is *None* and the default *marker* is
- 'o', though these can be overridden with keyword args. The
- cross correlation is performed with :func:`numpy.correlate`
- with *mode* = 2.
-
- If *usevlines* is *True*:
-
- :func:`~matplotlib.pyplot.vlines`
- rather than :func:`~matplotlib.pyplot.plot` is used to draw
- vertical lines from the origin to the xcorr. Otherwise the
- plotstyle is determined by the kwargs, which are
- :class:`~matplotlib.lines.Line2D` properties.
-
- The return value is a tuple (*lags*, *c*, *linecol*, *b*)
- where *linecol* is the
- :class:`matplotlib.collections.LineCollection` instance and
- *b* is the *x*-axis.
-
- *maxlags* is a positive integer detailing the number of lags to show.
- The default value of *None* will return all ``(2*len(x)-1)`` lags.
-
- **Example:**
-
- :func:`~matplotlib.pyplot.xcorr` above, and
- :func:`~matplotlib.pyplot.acorr` below.
-
- **Example:**
-
- .. plot:: mpl_examples/pylab_examples/xcorr_demo.py
- """
-
-
- Nx = len(x)
- if Nx!=len(y):
- raise ValueError('x and y must be equal length')
-
- x = detrend(np.asarray(x))
- y = detrend(np.asarray(y))
-
- c = np.correlate(x, y, mode=2)
-
- if normed: c/= np.sqrt(np.dot(x,x) * np.dot(y,y))
-
- if maxlags is None: maxlags = Nx - 1
-
- if maxlags >= Nx or maxlags < 1:
- raise ValueError('maglags must be None or strictly '
- 'positive < %d'%Nx)
-
- lags = np.arange(-maxlags,maxlags+1)
- c = c[Nx-1-maxlags:Nx+maxlags]
-
-
- if usevlines:
- a = self.vlines(lags, [0], c, **kwargs)
- b = self.axhline(**kwargs)
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- d = self.plot(lags, c, **kwargs)
- else:
-
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a, = self.plot(lags, c, **kwargs)
- b = None
- return lags, c, a, b
-
-
-def plotacf(ax, corr, lags=None, usevlines=True, **kwargs):
- """
- Plot the auto or cross correlation.
- lags on horizontal and correlations on vertical axis
-
- Note: adjusted from matplotlib's pltxcorr
-
- Parameters
- ----------
- ax : matplotlib axis or plt
- ax can be matplotlib.pyplot or an axis of a figure
- lags : array or None
- array of lags used on horizontal axis,
- if None, then np.arange(len(corr)) is used
- corr : array
- array of values used on vertical axis
- usevlines : boolean
- If true, then vertical lines and markers are plotted. If false,
- only 'o' markers are plotted
- **kwargs : optional parameters for plot and axhline
- these are directly passed on to the matplotlib functions
-
- Returns
- -------
- a : matplotlib.pyplot.plot
- contains markers
- b : matplotlib.collections.LineCollection
- returned only if vlines is true, contains vlines
- c : instance of matplotlib.lines.Line2D
- returned only if vlines is true, contains axhline ???
-
- Data are plotted as ``plot(lags, c, **kwargs)``
-
- The default *linestyle* is *None* and the default *marker* is
- 'o', though these can be overridden with keyword args.
-
- If *usevlines* is *True*:
-
- :func:`~matplotlib.pyplot.vlines`
- rather than :func:`~matplotlib.pyplot.plot` is used to draw
- vertical lines from the origin to the xcorr. Otherwise the
- plotstyle is determined by the kwargs, which are
- :class:`~matplotlib.lines.Line2D` properties.
-
- See Also
- --------
-
- :func:`~matplotlib.pyplot.xcorr`
- :func:`~matplotlib.pyplot.acorr`
- mpl_examples/pylab_examples/xcorr_demo.py
-
- """
-
- if lags is None:
- lags = np.arange(len(corr))
- else:
- if len(lags) != len(corr):
- raise ValueError('lags and corr must be equal length')
-
- if usevlines:
- b = ax.vlines(lags, [0], corr, **kwargs)
- c = ax.axhline(**kwargs)
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a = ax.plot(lags, corr, **kwargs)
- else:
- kwargs.setdefault('marker', 'o')
- kwargs.setdefault('linestyle', 'None')
- a, = ax.plot(lags, corr, **kwargs)
- b = c = None
- return a, b, c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-arrvs = ar_generator()
-##arma = ARIMA()
-##res = arma.fit(arrvs[0], 4, 0)
-arma = ARIMA(arrvs[0])
-res = arma.fit((4,0, 0))
-
-print res[0]
-
-acf1 = acf(arrvs[0])
-acovf1b = acovf(arrvs[0], unbiased=False)
-acf2 = autocorr(arrvs[0])
-acf2m = autocorr(arrvs[0]-arrvs[0].mean())
-print acf1[:10]
-print acovf1b[:10]
-print acf2[:10]
-print acf2m[:10]
-
-
-x = arma_generate_sample([1.0, -0.8], [1.0], 500)
-print acf(x)[:20]
-import scikits.statsmodels.api as sm
-print sm.regression.yule_walker(x, 10)
-
-import matplotlib.pyplot as plt
-#ax = plt.axes()
-plt.plot(x)
-#plt.show()
-
-plt.figure()
-pltxcorr(plt,x,x)
-plt.figure()
-pltxcorr(plt,x,x, usevlines=False)
-plt.figure()
-plotacf(plt, acf1[:20], np.arange(len(acf1[:20])), usevlines=True)
-plt.figure()
-ax = plt.subplot(211)
-plotacf(ax, acf1[:20], usevlines=True)
-ax = plt.subplot(212)
-plotacf(ax, acf1[:20], np.arange(len(acf1[:20])), usevlines=False)
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_arma.py b/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_arma.py
deleted file mode 100644
index bfe210e..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_arma.py
+++ /dev/null
@@ -1,146 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-TODO: broken because of changes to arguments and import paths
-fixing this needs a closer look
-
-Created on Thu Feb 11 23:41:53 2010
-Author: josef-pktd
-copyright: Simplified BSD see license.txt
-"""
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-
-import matplotlib.pyplot as plt
-
-import numdifftools as ndt
-
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox import tsa
-from scikits.statsmodels.tsa.arma_mle import Arma # local import
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-
-examples = ['arma']
-if 'arma' in examples:
-
- print "\nExample 1"
- print '----------'
- ar = [1.0, -0.8]
- ma = [1.0, 0.5]
- y1 = arma_generate_sample(ar,ma,1000,0.1)
- y1 -= y1.mean() #no mean correction/constant in estimation so far
-
- arma1 = Arma(y1)
- arma1.nar = 1
- arma1.nma = 1
- arma1res = arma1.fit_mle(order=(1,1), method='fmin')
- print arma1res.params
-
- #Warning need new instance otherwise results carry over
- arma2 = Arma(y1)
- arma2.nar = 1
- arma2.nma = 1
- res2 = arma2.fit(method='bfgs')
- print res2.params
- print res2.model.hessian(res2.params)
- print ndt.Hessian(arma1.loglike, stepMax=1e-2)(res2.params)
- arest = tsa.arima.ARIMA(y1)
- resls = arest.fit((1,0,1))
- print resls[0]
- print resls[1]
-
-
-
- print '\nparameter estimate - comparing methods'
- print '---------------------------------------'
- print 'parameter of DGP ar(1), ma(1), sigma_error'
- print [-0.8, 0.5, 0.1]
- print 'mle with fmin'
- print arma1res.params
- print 'mle with bfgs'
- print res2.params
- print 'cond. least squares uses optim.leastsq ?'
- errls = arest.error_estimate
- print resls[0], np.sqrt(np.dot(errls,errls)/errls.shape[0])
-
- err = arma1.geterrors(res2.params)
- print 'cond least squares parameter cov'
- #print np.dot(err,err)/err.shape[0] * resls[1]
- #errls = arest.error_estimate
- print np.dot(errls,errls)/errls.shape[0] * resls[1]
-# print 'fmin hessian'
-# print arma1res.model.optimresults['Hopt'][:2,:2]
- print 'bfgs hessian'
- print res2.model.optimresults['Hopt'][:2,:2]
- print 'numdifftools inverse hessian'
- print -np.linalg.inv(ndt.Hessian(arma1.loglike, stepMax=1e-2)(res2.params))[:2,:2]
-
- print '\nFitting Arma(1,1) to squared data'
- arma3 = Arma(y1**2)
- res3 = arma3.fit(method='bfgs')
- print res3.params
-
- print '\nFitting Arma(3,3) to data from DGP Arma(1,1)'
- arma4 = Arma(y1)
- arma4.nar = 3
- arma4.nma = 3
- #res4 = arma4.fit(method='bfgs')
- res4 = arma4.fit(start_params=[-0.5, -0.1,-0.1,0.2,0.1,0.1,0.5])
- print res4.params
- print 'numdifftools inverse hessian'
- pcov = -np.linalg.inv(ndt.Hessian(arma4.loglike, stepMax=1e-2)(res4.params))
- #print pcov
- print 'standard error of parameter estimate from Hessian'
- pstd = np.sqrt(np.diag(pcov))
- print pstd
- print 't-values'
- print res4.params/pstd
- print 'eigenvalues of pcov:'
- print np.linalg.eigh(pcov)[0]
- print 'sometimes they are negative'
-
-
- print "\nExample 2 - DGP is Arma(3,3)"
- print '-----------------------------'
- ar = [1.0, -0.6, -0.2, -0.1]
- ma = [1.0, 0.5, 0.1, 0.1]
- y2 = arest.generate_sample(ar,ma,1000,0.1)
- y2 -= y2.mean() #no mean correction/constant in estimation so far
-
-
- print '\nFitting Arma(3,3) to data from DGP Arma(3,3)'
- arma4 = Arma(y2)
- arma4.nar = 3
- arma4.nma = 3
- #res4 = arma4.fit(method='bfgs')
- print '\ntrue parameters'
- print 'ar', ar[1:]
- print 'ma', ma[1:]
- res4 = arma4.fit(start_params=[-0.5, -0.1,-0.1,0.2,0.1,0.1,0.5])
- print res4.params
- print 'numdifftools inverse hessian'
- pcov = -np.linalg.inv(ndt.Hessian(arma4.loglike, stepMax=1e-2)(res4.params))
- #print pcov
- print 'standard error of parameter estimate from Hessian'
- pstd = np.sqrt(np.diag(pcov))
- print pstd
- print 't-values'
- print res4.params/pstd
- print 'eigenvalues of pcov:'
- print np.linalg.eigh(pcov)[0]
- print 'sometimes they are negative'
-
- arma6 = Arma(y2)
- arma6.nar = 3
- arma6.nma = 3
- res6 = arma6.fit(start_params=[-0.5, -0.1,-0.1,0.2,0.1,0.1,0.5],
- method='bfgs')
- print '\nmle with bfgs'
- print res6.params
- print 'pstd with bfgs hessian'
- hopt = res6.model.optimresults['Hopt']
- print np.sqrt(np.diag(hopt))
-
- #fmin estimates for coefficients in ARMA(3,3) look good
- #but not inverse Hessian, sometimes negative values for variance
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_garch.py b/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_garch.py
deleted file mode 100644
index f3dda81..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/ex_mle_garch.py
+++ /dev/null
@@ -1,330 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Fri Feb 12 01:01:50 2010
-
-Author: josef-pktd
-
-latest result
--------------
-all are very close
-garch0 has different parameterization of constant
-ordering of parameters is different
-
-
-seed 2780185
-h.shape (2000,)
-Optimization terminated successfully.
- Current function value: 2093.813397
- Iterations: 387
- Function evaluations: 676
-ggres.params [-0.6146253 0.1914537 0.01039355 0.78802188]
-Optimization terminated successfully.
- Current function value: 2093.972953
- Iterations: 201
- Function evaluations: 372
-ggres0.params [-0.61537527 0.19635128 4.00706058]
-Warning: Desired error not necessarily achieveddue to precision loss
- Current function value: 2093.972953
- Iterations: 51
- Function evaluations: 551
- Gradient evaluations: 110
-ggres0.params [-0.61537855 0.19635265 4.00694669]
-Optimization terminated successfully.
- Current function value: 2093.751420
- Iterations: 103
- Function evaluations: 187
-[ 0.78671519 0.19692222 0.61457171]
--2093.75141963
-
-Final Estimate:
- LLH: 2093.750 norm LLH: 2.093750
- omega alpha1 beta1
-0.7867438 0.1970437 0.6145467
-
-long run variance comparison
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-R
->>> 0.7867438/(1- 0.1970437- 0.6145467)
-4.1757097302897526
-Garch (gjr) asymetric, longrun var ?
->>> 1/(1-0.6146253 - 0.1914537 - 0.01039355) * 0.78802188
-4.2937548579245242
->>> 1/(1-0.6146253 - 0.1914537 + 0.01039355) * 0.78802188
-3.8569053452140345
-Garch0
->>> (1-0.61537855 - 0.19635265) * 4.00694669
-0.7543830449902722
->>> errgjr4.var() #for different random seed
-4.0924199964716106
-
-todo: add code and verify, check for longer lagpolys
-
-"""
-
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-
-import matplotlib.pyplot as plt
-import numdifftools as ndt
-
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.sandbox import tsa
-from scikits.statsmodels.sandbox.tsa.garch import * # local import
-
-
-nobs = 1000
-examples = ['garch', 'rpyfit']
-if 'garch' in examples:
- err,h = generate_kindofgarch(nobs, [1.0, -0.95], [1.0, 0.1], mu=0.5)
- plt.figure()
- plt.subplot(211)
- plt.plot(err)
- plt.subplot(212)
- plt.plot(h)
- #plt.show()
-
- seed = 3842774 #91234 #8837708
- seed = np.random.randint(9999999)
- print 'seed', seed
- np.random.seed(seed)
- ar1 = -0.9
- err,h = generate_garch(nobs, [1.0, ar1], [1.0, 0.50], mu=0.0,scale=0.1)
-# plt.figure()
-# plt.subplot(211)
-# plt.plot(err)
-# plt.subplot(212)
-# plt.plot(h)
-# plt.figure()
-# plt.subplot(211)
-# plt.plot(err[-400:])
-# plt.subplot(212)
-# plt.plot(h[-400:])
- #plt.show()
- garchplot(err, h)
- garchplot(err[-400:], h[-400:])
-
-
- np.random.seed(seed)
- errgjr,hgjr, etax = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.5,0]], mu=0.0,scale=0.1)
- garchplot(errgjr[:nobs], hgjr[:nobs], 'GJR-GARCH(1,1) Simulation - symmetric')
- garchplot(errgjr[-400:nobs], hgjr[-400:nobs], 'GJR-GARCH(1,1) Simulation - symmetric')
-
- np.random.seed(seed)
- errgjr2,hgjr2, etax = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.1,0.9]], mu=0.0,scale=0.1)
- garchplot(errgjr2[:nobs], hgjr2[:nobs], 'GJR-GARCH(1,1) Simulation')
- garchplot(errgjr2[-400:nobs], hgjr2[-400:nobs], 'GJR-GARCH(1,1) Simulation')
-
- np.random.seed(seed)
- errgjr3,hgjr3, etax3 = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.1,0.9],[0.1,0.9],[0.1,0.9]], mu=0.0,scale=0.1)
- garchplot(errgjr3[:nobs], hgjr3[:nobs], 'GJR-GARCH(1,3) Simulation')
- garchplot(errgjr3[-400:nobs], hgjr3[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
- np.random.seed(seed)
- errgjr4,hgjr4, etax4 = generate_gjrgarch(nobs, [1.0, ar1],
- [[1., 1,0],[0, 0.1,0.9],[0, 0.1,0.9],[0, 0.1,0.9]],
- mu=0.0,scale=0.1)
- garchplot(errgjr4[:nobs], hgjr4[:nobs], 'GJR-GARCH(1,3) Simulation')
- garchplot(errgjr4[-400:nobs], hgjr4[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
- varinno = np.zeros(100)
- varinno[0] = 1.
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, -0.],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- garchplot(errgjr5[:20], hgjr5[:20], 'GJR-GARCH(1,3) Simulation')
- #garchplot(errgjr4[-400:nobs], hgjr4[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
-
-#plt.show()
-seed = np.random.randint(9999999) # 9188410
-print 'seed', seed
-
-x = np.arange(20).reshape(10,2)
-x3 = np.column_stack((np.ones((x.shape[0],1)),x))
-y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[0.0,0.0,0]]),x3)
-
-nobs = 1000
-warmup = 1000
-np.random.seed(seed)
-ar = [1.0, -0.7]#7, -0.16, -0.1]
-#ma = [[1., 1, 0],[0, 0.6,0.1],[0, 0.1,0.1],[0, 0.1,0.1]]
-ma = [[1., 0, 0],[0, 0.8,0.0]] #,[0, 0.9,0.0]]
-# errgjr4,hgjr4, etax4 = generate_gjrgarch(warmup+nobs, [1.0, -0.99],
-# [[1., 1, 0],[0, 0.6,0.1],[0, 0.1,0.1],[0, 0.1,0.1]],
-# mu=0.2, scale=0.25)
-
-errgjr4,hgjr4, etax4 = generate_gjrgarch(warmup+nobs, ar, ma,
- mu=0.4, scale=1.01)
-errgjr4,hgjr4, etax4 = errgjr4[warmup:], hgjr4[warmup:], etax4[warmup:]
-garchplot(errgjr4[:nobs], hgjr4[:nobs], 'GJR-GARCH(1,3) Simulation - DGP')
-ggmod = Garch(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod.nar = 1
-ggmod.nma = 1
-ggmod._start_params = np.array([-0.6, 0.1, 0.2, 0.0])
-ggres = ggmod.fit(start_params=np.array([-0.6, 0.1, 0.2, 0.0]), maxiter=1000)
-print 'ggres.params', ggres.params
-garchplot(ggmod.errorsest, ggmod.h, title='Garch estimated')
-
-ggmod0 = Garch0(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod0.nar = 1
-ggmod.nma = 1
-start_params = np.array([-0.6, 0.2, 0.1])
-ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
-ggres0 = ggmod0.fit(start_params=start_params, maxiter=2000)
-print 'ggres0.params', ggres0.params
-
-ggmod0 = Garch0(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
-ggmod0.nar = 1
-ggmod.nma = 1
-start_params = np.array([-0.6, 0.2, 0.1])
-ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
-ggres0 = ggmod0.fit(start_params=start_params, method='bfgs', maxiter=2000)
-print 'ggres0.params', ggres0.params
-
-
-g11res = optimize.fmin(lambda params: -loglike_GARCH11(params, errgjr4-errgjr4.mean())[0], [0.93, 0.9, 0.2])
-print g11res
-llf = loglike_GARCH11(g11res, errgjr4-errgjr4.mean())
-print llf[0]
-
-if 'rpyfit' in examples:
- from rpy import r
- r.library('fGarch')
- f = r.formula('~garch(1, 1)')
- fit = r.garchFit(f, data = errgjr4-errgjr4.mean(), include_mean=False)
-
-if 'rpysim' in examples:
- from rpy import r
- f = r.formula('~garch(1, 1)')
- #fit = r.garchFit(f, data = errgjr4)
- x = r.garchSim( n = 500)
- print 'R acf', tsa.acf(np.power(x,2))[:15]
- arma3 = Arma(np.power(x,2))
- arma3res = arma3.fit(start_params=[-0.2,0.1,0.5],maxiter=5000)
- print arma3res.params
- arma3b = Arma(np.power(x,2))
- arma3bres = arma3b.fit(start_params=[-0.2,0.1,0.5],maxiter=5000, method='bfgs')
- print arma3bres.params
-
- xr = r.garchSim( n = 100)
-
- x = np.asarray(xr)
- ggmod = Garch(x-x.mean())
- ggmod.nar = 1
- ggmod.nma = 1
- ggmod._start_params = np.array([-0.6, 0.1, 0.2, 0.0])
- ggres = ggmod.fit(start_params=np.array([-0.6, 0.1, 0.2, 0.0]), maxiter=1000)
- print 'ggres.params', ggres.params
-
- g11res = optimize.fmin(lambda params: -loglike_GARCH11(params, x-x.mean())[0], [0.6, 0.6, 0.2])
- print g11res
- llf = loglike_GARCH11(g11res, x-x.mean())
- print llf[0]
-
- garchplot(ggmod.errorsest, ggmod.h, title='Garch estimated')
- fit = r.garchFit(f, data = x-x.mean(), include_mean=False, trace=False)
- print r.summary(fit)
-
-'''based on R default simulation
-model = list(omega = 1e-06, alpha = 0.1, beta = 0.8)
-nobs = 1000
-(with nobs=500, gjrgarch doesn't do well
-
->>> ggres = ggmod.fit(start_params=np.array([-0.6, 0.1, 0.2, 0.0]), maxiter=1000)
-Optimization terminated successfully.
- Current function value: -448.861335
- Iterations: 385
- Function evaluations: 690
->>> print 'ggres.params', ggres.params
-ggres.params [ -7.75090330e-01 1.57714749e-01 -9.60223930e-02 8.76021411e-07]
-rearranged
-8.76021411e-07 1.57714749e-01(-9.60223930e-02) 7.75090330e-01
-
->>> print g11res
-[ 2.97459808e-06 7.83128600e-01 2.41110860e-01]
->>> llf = loglike_GARCH11(g11res, x-x.mean())
->>> print llf[0]
-442.603541936
-
-Log Likelihood:
- -448.9376 normalized: -4.489376
- omega alpha1 beta1
-1.01632e-06 1.02802e-01 7.57537e-01
-'''
-
-
-''' the following is for errgjr4-errgjr4.mean()
-ggres.params [-0.54510407 0.22723132 0.06482633 0.82325803]
-Final Estimate:
- LLH: 2065.56 norm LLH: 2.06556
- mu omega alpha1 beta1
-0.07229732 0.83069480 0.26313883 0.53986167
-
-ggres.params [-0.50779163 0.2236606 0.00700036 1.154832
-Final Estimate:
- LLH: 2116.084 norm LLH: 2.116084
- mu omega alpha1 beta1
--4.759227e-17 1.145404e+00 2.288348e-01 5.085949e-01
-
-run3
-DGP
-0.4/?? 0.8 0.7
-gjrgarch:
-ggres.params [-0.45196579 0.2569641 0.02201904 1.11942636]
-rearranged
-const/omega ma1/alpha1 ar1/beta1
-1.11942636 0.2569641(+0.02201904) 0.45196579
-g11:
-[ 1.10262688 0.26680468 0.45724957]
--2055.73912687
-R:
-Final Estimate:
- LLH: 2055.738 norm LLH: 2.055738
- mu omega alpha1 beta1
--1.665226e-17 1.102396e+00 2.668712e-01 4.573224e-01
-fit = r.garchFit(f, data = errgjr4-errgjr4.mean())
-rpy.RPy_RException: Error in solve.default(fit$hessian) :
- Lapack routine dgesv: system is exactly singular
-
-run4
-DGP:
-mu=0.4, scale=1.01
-ma = [[1., 0, 0],[0, 0.8,0.0]], ar = [1.0, -0.7]
-maybe something wrong with simulation
-
-gjrgarch
-ggres.params [-0.50554663 0.24449867 -0.00521004 1.00796791]
-rearranged
-1.00796791 0.24449867(-0.00521004) 0.50554663
-garch11:
-[ 1.01258264 0.24149155 0.50479994]
--2056.3877404
-R include_constant=False
-Final Estimate:
- LLH: 2056.397 norm LLH: 2.056397
- omega alpha1 beta1
-1.0123560 0.2409589 0.5049154
-'''
-
-
-erro,ho, etaxo = generate_gjrgarch(20, ar, ma, mu=0.04, scale=0.01,
- varinnovation = np.ones(20))
-
-if 'sp500' in examples:
- import tabular as tb
- import scikits.timeseries as ts
-
- a = tb.loadSV(r'C:\Josef\work-oth\gspc_table.csv')
-
- s = ts.time_series(a[0]['Close'][::-1],
- dates=ts.date_array(a[0]['Date'][::-1],freq="D"))
-
- sp500 = a[0]['Close'][::-1]
- sp500r = np.diff(np.log(sp500))
-
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/example_var.py b/statsmodels/scikits/statsmodels/sandbox/tsa/examples/example_var.py
deleted file mode 100644
index 92541b2..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/example_var.py
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-Look at some macro plots, then do some VARs and IRFs.
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-import scikits.timeseries as ts
-import scikits.timeseries.lib.plotlib as tplt
-from matplotlib import pyplot as plt
-
-data = sm.datasets.macrodata.load()
-data = data.data
-
-
-### Create Timeseries Representations of a few vars
-
-dates = ts.date_array(start_date=ts.Date('Q', year=1959, quarter=1),
- end_date=ts.Date('Q', year=2009, quarter=3))
-
-ts_data = data[['realgdp','realcons','cpi']].view(float).reshape(-1,3)
-ts_data = np.column_stack((ts_data, (1 - data['unemp']/100) * data['pop']))
-ts_series = ts.time_series(ts_data, dates)
-
-
-fig = tplt.tsfigure()
-fsp = fig.add_tsplot(221)
-fsp.tsplot(ts_series[:,0],'-')
-fsp.set_title("Real GDP")
-fsp = fig.add_tsplot(222)
-fsp.tsplot(ts_series[:,1],'r-')
-fsp.set_title("Real Consumption")
-fsp = fig.add_tsplot(223)
-fsp.tsplot(ts_series[:,2],'g-')
-fsp.set_title("CPI")
-fsp = fig.add_tsplot(224)
-fsp.tsplot(ts_series[:,3],'y-')
-fsp.set_title("Employment")
-
-
-
-# Plot real GDP
-#plt.subplot(221)
-#plt.plot(data['realgdp'])
-#plt.title("Real GDP")
-
-# Plot employment
-#plt.subplot(222)
-
-# Plot cpi
-#plt.subplot(223)
-
-# Plot real consumption
-#plt.subplot(224)
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/try_ld_nitime.py b/statsmodels/scikits/statsmodels/sandbox/tsa/examples/try_ld_nitime.py
deleted file mode 100644
index b41e6a9..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/examples/try_ld_nitime.py
+++ /dev/null
@@ -1,55 +0,0 @@
-'''Levinson Durbin recursion adjusted from nitime
-
-'''
-
-import numpy as np
-
-from scikits.statsmodels.tsa.stattools import acovf
-
-def levinson_durbin_nitime(s, order=10, isacov=False):
- '''Levinson-Durbin recursion for autoregressive processes
-
- '''
- #from nitime
-
-## if sxx is not None and type(sxx) == np.ndarray:
-## sxx_m = sxx[:order+1]
-## else:
-## sxx_m = ut.autocov(s)[:order+1]
- if isacov:
- sxx_m = s
- else:
- sxx_m = acovf(s)[:order+1] #not tested
-
- phi = np.zeros((order+1, order+1), 'd')
- sig = np.zeros(order+1)
- # initial points for the recursion
- phi[1,1] = sxx_m[1]/sxx_m[0]
- sig[1] = sxx_m[0] - phi[1,1]*sxx_m[1]
- for k in xrange(2,order+1):
- phi[k,k] = (sxx_m[k]-np.dot(phi[1:k,k-1], sxx_m[1:k][::-1]))/sig[k-1]
- for j in xrange(1,k):
- phi[j,k] = phi[j,k-1] - phi[k,k]*phi[k-j,k-1]
- sig[k] = sig[k-1]*(1 - phi[k,k]**2)
-
- sigma_v = sig[-1]; arcoefs = phi[1:,-1]
- return sigma_v, arcoefs, pacf, phi #return everything
-
-import nitime.utils as ut
-
-
-sxx=None
-order = 10
-
-npts = 2048*10
-sigma = 1
-drop_transients = 1024
-coefs = np.array([0.9, -0.5])
-
-# Generate AR(2) time series
-X, v, _ = ut.ar_generator(npts, sigma, coefs, drop_transients)
-
-s = X
-
-import scikits.statsmodels.api as sm
-sm.tsa.stattools.pacf(X)
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/fftarma.py b/statsmodels/scikits/statsmodels/sandbox/tsa/fftarma.py
deleted file mode 100644
index 74a941f..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/fftarma.py
+++ /dev/null
@@ -1,548 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Mon Dec 14 19:53:25 2009
-
-Author: josef-pktd
-
-generate arma sample using fft with all the lfilter it looks slow
-to get the ma representation first
-
-apply arma filter (in ar representation) to time series to get white noise
-but seems slow to be useful for fast estimation for nobs=10000
-
-change/check: instead of using marep, use fft-transform of ar and ma
- separately, use ratio check theory is correct and example works
- DONE : feels much faster than lfilter
- -> use for estimation of ARMA
- -> use pade (scipy.misc) approximation to get starting polynomial
- from autocorrelation (is autocorrelation of AR(p) related to marep?)
- check if pade is fast, not for larger arrays ?
- maybe pade doesn't do the right thing for this, not tried yet
- scipy.pade([ 1. , 0.6, 0.25, 0.125, 0.0625, 0.1],2)
- raises LinAlgError: singular matrix
- also doesn't have roots inside unit circle ??
- -> even without initialization, it might be fast for estimation
- -> how do I enforce stationarity and invertibility,
- need helper function
-
-get function drop imag if close to zero from numpy/scipy source, where?
-
-"""
-
-import numpy as np
-import numpy.fft as fft
-#import scipy.fftpack as fft
-from scipy import signal
-#from try_var_convolve import maxabs
-from scikits.statsmodels.sandbox.archive.linalg_decomp_1 import OneTimeProperty
-from scikits.statsmodels.tsa.arima_process import ArmaProcess
-
-
-#trying to convert old experiments to a class
-
-
-class ArmaFft(ArmaProcess):
- '''fft tools for arma processes
-
- This class contains several methods that are providing the same or similar
- returns to try out and test different implementations.
-
- Notes
- -----
- TODO:
- check whether we don't want to fix maxlags, and create new instance if
- maxlag changes. usage for different lengths of timeseries ?
- or fix frequency and length for fft
-
- check default frequencies w, terminology norw n_or_w
-
- some ffts are currently done without padding with zeros
-
- returns for spectral density methods needs checking, is it always the power
- spectrum hw*hw.conj()
-
- normalization of the power spectrum, spectral density: not checked yet, for
- example no variance of underlying process is used
-
- '''
-
- def __init__(self, ar, ma, n):
- #duplicates now that are subclassing ArmaProcess
- super(ArmaFft, self).__init__(ar, ma)
-
- self.ar = np.asarray(ar)
- self.ma = np.asarray(ma)
- self.nobs = n
- #could make the polynomials into cached attributes
- self.arpoly = np.polynomial.Polynomial(ar)
- self.mapoly = np.polynomial.Polynomial(ma)
- self.nar = len(ar) #1d only currently
- self.nma = len(ma)
- if self.nar > 1:
- self.arroots = self.arpoly.roots()
- else:
- self.arroots = np.array([])
- if self.nma > 1:
- self.maroots = self.mapoly.roots()
- else:
- self.maroots = np.array([])
-
- def padarr(self, arr, maxlag, atend=True):
- '''pad 1d array with zeros at end to have length maxlag
- function that is a method, no self used
-
- Parameters
- ----------
- arr : array_like, 1d
- array that will be padded with zeros
- maxlag : int
- length of array after padding
- atend : boolean
- If True (default), then the zeros are added to the end, otherwise
- to the front of the array
-
- Returns
- -------
- arrp : ndarray
- zero-padded array
-
- Notes
- -----
- This is mainly written to extend coefficient arrays for the lag-polynomials.
- It returns a copy.
-
- '''
- if atend:
- return np.r_[arr, np.zeros(maxlag-len(arr))]
- else:
- return np.r_[np.zeros(maxlag-len(arr)), arr]
-
-
- def pad(self, maxlag):
- '''construct AR and MA polynomials that are zero-padded to a common length
-
- Parameters
- ----------
- maxlag : int
- new length of lag-polynomials
-
- Returns
- -------
- ar : ndarray
- extended AR polynomial coefficients
- ma : ndarray
- extended AR polynomial coefficients
-
- '''
- arpad = np.r_[self.ar, np.zeros(maxlag-self.nar)]
- mapad = np.r_[self.ma, np.zeros(maxlag-self.nma)]
- return arpad, mapad
-
- def fftar(self, n=None):
- '''Fourier transform of AR polynomial, zero-padded at end to n
-
- Parameters
- ----------
- n : int
- length of array after zero-padding
-
- Returns
- -------
- fftar : ndarray
- fft of zero-padded ar polynomial
- '''
- if n is None:
- n = len(self.ar)
- return fft.fft(self.padarr(self.ar, n))
-
- def fftma(self, n):
- '''Fourier transform of MA polynomial, zero-padded at end to n
-
- Parameters
- ----------
- n : int
- length of array after zero-padding
-
- Returns
- -------
- fftar : ndarray
- fft of zero-padded ar polynomial
- '''
- if n is None:
- n = len(self.ar)
- return fft.fft(self.padarr(self.ma, n))
-
- #@OneTimeProperty # not while still debugging things
- def fftarma(self, n=None):
- '''Fourier transform of ARMA polynomial, zero-padded at end to n
-
- The Fourier transform of the ARMA process is calculated as the ratio
- of the fft of the MA polynomial divided by the fft of the AR polynomial.
-
- Parameters
- ----------
- n : int
- length of array after zero-padding
-
- Returns
- -------
- fftarma : ndarray
- fft of zero-padded arma polynomial
- '''
- if n is None:
- n = self.nobs
- return (self.fftma(n) / self.fftar(n))
-
- def spd(self, npos):
- '''raw spectral density, returns Fourier transform
-
- n is number of points in positive spectrum, the actual number of points
- is twice as large. different from other spd methods with fft
- '''
- n = npos
- w = fft.fftfreq(2*n) * 2 * np.pi
- hw = self.fftarma(2*n) #not sure, need to check normalization
- #return (hw*hw.conj()).real[n//2-1:] * 0.5 / np.pi #doesn't show in plot
- return (hw*hw.conj()).real * 0.5 / np.pi, w
-
- def spdshift(self, n):
- '''power spectral density using fftshift
-
- currently returns two-sided according to fft frequencies, use first half
- '''
- #size = s1+s2-1
- mapadded = self.padarr(self.ma, n)
- arpadded = self.padarr(self.ar, n)
- hw = fft.fft(fft.fftshift(mapadded)) / fft.fft(fft.fftshift(arpadded))
- #return np.abs(spd)[n//2-1:]
- w = fft.fftfreq(n) * 2 * np.pi
- wslice = slice(n//2-1, None, None)
- #return (hw*hw.conj()).real[wslice], w[wslice]
- return (hw*hw.conj()).real, w
-
- def spddirect(self, n):
- '''power spectral density using padding to length n done by fft
-
- currently returns two-sided according to fft frequencies, use first half
- '''
- #size = s1+s2-1
- #abs looks wrong
- hw = fft.fft(self.ma, n) / fft.fft(self.ar, n)
- w = fft.fftfreq(n) * 2 * np.pi
- wslice = slice(None, n//2, None)
- #return (np.abs(hw)**2)[wslice], w[wslice]
- return (np.abs(hw)**2) * 0.5/np.pi, w
-
- def _spddirect2(self, n):
- '''this looks bad, maybe with an fftshift
- '''
- #size = s1+s2-1
- hw = (fft.fft(np.r_[self.ma[::-1],self.ma], n)
- / fft.fft(np.r_[self.ar[::-1],self.ar], n))
- return (hw*hw.conj()) #.real[n//2-1:]
-
- def spdroots(self, w):
- '''spectral density for frequency using polynomial roots
-
- builds two arrays (number of roots, number of frequencies)
- '''
- return self.spdroots_(self.arroots, self.maroots, w)
-
- def spdroots_(self, arroots, maroots, w):
- '''spectral density for frequency using polynomial roots
-
- builds two arrays (number of roots, number of frequencies)
-
- Parameters
- ----------
- arroots : ndarray
- roots of ar (denominator) lag-polynomial
- maroots : ndarray
- roots of ma (numerator) lag-polynomial
- w : array_like
- frequencies for which spd is calculated
-
- Notes
- -----
- this should go into a function
- '''
- w = np.atleast_2d(w).T
- cosw = np.cos(w)
- #Greene 5th edt. p626, section 20.2.7.a.
- maroots = 1./maroots
- arroots = 1./arroots
- num = 1 + maroots**2 - 2* maroots * cosw
- den = 1 + arroots**2 - 2* arroots * cosw
- #print 'num.shape, den.shape', num.shape, den.shape
- hw = 0.5 / np.pi * num.prod(-1) / den.prod(-1) #or use expsumlog
- return np.squeeze(hw), w.squeeze()
-
- def spdpoly(self, w, nma=50):
- '''spectral density from MA polynomial representation for ARMA process
-
- References
- ----------
- Cochrane, section 8.3.3
- '''
- mpoly = np.polynomial.Polynomial(self.arma2ma(nma))
- hw = mpoly(np.exp(1j * w))
- spd = np.real_if_close(hw * hw.conj() * 0.5/np.pi)
- return spd, w
-
- def filter(self, x):
- '''
- filter a timeseries with the ARMA filter
-
- padding with zero is missing, in example I needed the padding to get
- initial conditions identical to direct filter
-
- Initial filtered observations differ from filter2 and signal.lfilter, but
- at end they are the same.
-
- See Also
- --------
- tsa.filters.fftconvolve
-
- '''
- n = x.shape[0]
- if n == self.fftarma:
- fftarma = self.fftarma
- else:
- fftarma = self.fftma(n) / self.fftar(n)
- tmpfft = fftarma * fft.fft(x)
- return fft.ifft(tmpfft)
-
- def filter2(self, x, pad=0):
- '''filter a time series using fftconvolve3 with ARMA filter
-
- padding of x currently works only if x is 1d
- in example it produces same observations at beginning as lfilter even
- without padding.
-
- TODO: this returns 1 additional observation at the end
- '''
- from scikits.statsmodels.tsa.filters import fftconvolve3
- if not pad:
- pass
- elif pad == 'auto':
- #just guessing how much padding
- x = self.padarr(x, x.shape[0] + 2*(self.nma+self.nar), atend=False)
- else:
- x = self.padarr(x, x.shape[0] + int(pad), atend=False)
-
- return fftconvolve3(x, self.ma, self.ar)
-
-
- def acf2spdfreq(self, acovf, nfreq=100, w=None):
- '''
- not really a method
- just for comparison, not efficient for large n or long acf
-
- this is also similarly use in tsa.stattools.periodogram with window
- '''
- if w is None:
- w = np.linspace(0, np.pi, nfreq)[:, None]
- nac = len(acovf)
- hw = 0.5 / np.pi * (acovf[0] +
- 2 * (acovf[1:] * np.cos(w*np.arange(1,nac))).sum(1))
- return hw
-
- def invpowerspd(self, n):
- '''autocovariance from spectral density
-
- scaling is correct, but n needs to be large for numerical accuracy
- maybe padding with zero in fft would be faster
- without slicing it returns 2-sided autocovariance with fftshift
-
- >>> ArmaFft([1, -0.5], [1., 0.4], 40).invpowerspd(2**8)[:10]
- array([ 2.08 , 1.44 , 0.72 , 0.36 , 0.18 , 0.09 ,
- 0.045 , 0.0225 , 0.01125 , 0.005625])
- >>> ArmaFft([1, -0.5], [1., 0.4], 40).acovf(10)
- array([ 2.08 , 1.44 , 0.72 , 0.36 , 0.18 , 0.09 ,
- 0.045 , 0.0225 , 0.01125 , 0.005625])
- '''
- hw = self.fftarma(n)
- return np.real_if_close(fft.ifft(hw*hw.conj()), tol=200)[:n]
-
- def spdmapoly(self, w, twosided=False):
- '''ma only, need division for ar, use LagPolynomial
- '''
- if w is None:
- w = np.linspace(0, np.pi, nfreq)
- return 0.5 / np.pi * self.mapoly(np.exp(w*1j))
-
-
- def plot4(self, fig=None, nobs=100, nacf=20, nfreq=100):
- rvs = self.generate_sample(size=100, burnin=500)
- acf = self.acf(nacf)[:nacf] #TODO: check return length
- pacf = self.pacf(nacf)
- w = np.linspace(0, np.pi, nfreq)
- spdr, wr = self.spdroots(w)
-
- if fig is None:
- import matplotlib.pyplot as plt
- fig = plt.figure()
- ax = fig.add_subplot(2,2,1)
- ax.plot(rvs)
- ax.set_title('Random Sample \nar=%s, ma=%s' % (self.ar, self.ma))
-
- ax = fig.add_subplot(2,2,2)
- ax.plot(acf)
- ax.set_title('Autocorrelation \nar=%s, ma=%rs' % (self.ar, self.ma))
-
- ax = fig.add_subplot(2,2,3)
- ax.plot(wr, spdr)
- ax.set_title('Power Spectrum \nar=%s, ma=%s' % (self.ar, self.ma))
-
- ax = fig.add_subplot(2,2,4)
- ax.plot(pacf)
- ax.set_title('Partial Autocorrelation \nar=%s, ma=%s' % (self.ar, self.ma))
-
- return fig
-
-
-
-
-
-
-
-def spdar1(ar, w):
- if np.ndim(ar) == 0:
- rho = ar
- else:
- rho = -ar[1]
- return 0.5 / np.pi /(1 + rho*rho - 2 * rho * np.cos(w))
-
-if __name__ == '__main__':
- def maxabs(x,y):
- return np.max(np.abs(x-y))
- nobs = 200 #10000
- ar = [1, 0.0]
- ma = [1, 0.0]
- ar2 = np.zeros(nobs)
- ar2[:2] = [1, -0.9]
-
-
-
- uni = np.zeros(nobs)
- uni[0]=1.
- #arrep = signal.lfilter(ma, ar, ar2)
- #marep = signal.lfilter([1],arrep, uni)
- # same faster:
- arcomb = np.convolve(ar, ar2, mode='same')
- marep = signal.lfilter(ma,arcomb, uni) #[len(ma):]
- print marep[:10]
- mafr = fft.fft(marep)
-
- rvs = np.random.normal(size=nobs)
- datafr = fft.fft(rvs)
- y = fft.ifft(mafr*datafr)
- print np.corrcoef(np.c_[y[2:], y[1:-1], y[:-2]],rowvar=0)
-
- arrep = signal.lfilter([1],marep, uni)
- print arrep[:20] # roundtrip to ar
- arfr = fft.fft(arrep)
- yfr = fft.fft(y)
- x = fft.ifft(arfr*yfr).real #imag part is e-15
- # the next two are equal, roundtrip works
- print x[:5]
- print rvs[:5]
- print np.corrcoef(np.c_[x[2:], x[1:-1], x[:-2]],rowvar=0)
-
-
- # ARMA filter using fft with ratio of fft of ma/ar lag polynomial
- # seems much faster than using lfilter
-
- #padding, note arcomb is already full length
- arcombp = np.zeros(nobs)
- arcombp[:len(arcomb)] = arcomb
- map_ = np.zeros(nobs) #rename: map was shadowing builtin
- map_[:len(ma)] = ma
- ar0fr = fft.fft(arcombp)
- ma0fr = fft.fft(map_)
- y2 = fft.ifft(ma0fr/ar0fr*datafr)
- #the next two are (almost) equal in real part, almost zero but different in imag
- print y2[:10]
- print y[:10]
- print maxabs(y, y2) # from chfdiscrete
- #1.1282071239631782e-014
-
- ar = [1, -0.4]
- ma = [1, 0.2]
-
- arma1 = ArmaFft([1, -0.5,0,0,0,00, -0.7, 0.3], [1, 0.8], nobs)
-
- nfreq = nobs
- w = np.linspace(0, np.pi, nfreq)
- w2 = np.linspace(0, 2*np.pi, nfreq)
-
- import matplotlib.pyplot as plt
- plt.close('all')
-
- plt.figure()
- spd1, w1 = arma1.spd(2**10)
- print spd1.shape
- _ = plt.plot(spd1)
- plt.title('spd fft complex')
-
- plt.figure()
- spd2, w2 = arma1.spdshift(2**10)
- print spd2.shape
- _ = plt.plot(w2, spd2)
- plt.title('spd fft shift')
-
- plt.figure()
- spd3, w3 = arma1.spddirect(2**10)
- print spd3.shape
- _ = plt.plot(w3, spd3)
- plt.title('spd fft direct')
-
- plt.figure()
- spd3b = arma1._spddirect2(2**10)
- print spd3b.shape
- _ = plt.plot(spd3b)
- plt.title('spd fft direct mirrored')
-
- plt.figure()
- spdr, wr = arma1.spdroots(w)
- print spdr.shape
- plt.plot(w, spdr)
- plt.title('spd from roots')
-
- plt.figure()
- spdar1_ = spdar1(arma1.ar, w)
- print spdar1_.shape
- _ = plt.plot(w, spdar1_)
- plt.title('spd ar1')
-
-
- plt.figure()
- wper, spdper = arma1.periodogram(nfreq)
- print spdper.shape
- _ = plt.plot(w, spdper)
- plt.title('periodogram')
-
- startup = 1000
- rvs = arma1.generate_sample(startup+10000)[startup:]
- import matplotlib.mlab as mlb
- plt.figure()
- sdm, wm = mlb.psd(x)
- print 'sdm.shape', sdm.shape
- sdm = sdm.ravel()
- plt.plot(wm, sdm)
- plt.title('matplotlib')
-
- from nitime.algorithms import LD_AR_est
- #yule_AR_est(s, order, Nfreqs)
- wnt, spdnt = LD_AR_est(rvs, 10, 512)
- plt.figure()
- print 'spdnt.shape', spdnt.shape
- _ = plt.plot(spdnt.ravel())
- print spdnt[:10]
- plt.title('nitime')
-
- fig = plt.figure()
- arma1.plot4(fig)
-
-
- #plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/garch.py b/statsmodels/scikits/statsmodels/sandbox/tsa/garch.py
deleted file mode 100644
index a44e67a..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/garch.py
+++ /dev/null
@@ -1,1550 +0,0 @@
-'''general non-linear MLE for time series analysis
-
-idea for general version
-------------------------
-
-subclass defines geterrors(parameters) besides loglike,...
-and covariance matrix of parameter estimates (e.g. from hessian
-or outerproduct of jacobian)
-update: I don't really need geterrors directly, but get_h the conditional
- variance process
-
-new version Garch0 looks ok, time to clean up and test
-no constraints yet
-in some cases: "Warning: Maximum number of function evaluations has been exceeded."
-
-Notes
------
-
-idea: cache intermediate design matrix for geterrors so it doesn't need
- to be build at each function call
-
-superclass or result class calculates result statistic based
-on errors, loglike, jacobian and cov/hessian
- -> aic, bic, ...
- -> test statistics, tvalue, fvalue, ...
- -> new to add: distribution (mean, cov) of non-linear transformation
- -> parameter restrictions or transformation with corrected covparams (?)
- -> sse, rss, rsquared ??? are they defined from this in general
- -> robust parameter cov ???
- -> additional residual based tests, NW, ... likelihood ratio, lagrange
- multiplier tests ???
-
-how much can be reused from linear model result classes where
- `errorsest = y - X*beta` ?
-
-for tsa: what's the division of labor between model, result instance
- and process
-
-examples:
- * arma: ls and mle look good
- * arimax: add exog, especially mean, trend, prefilter, e.g. (1-L)
- * arma_t: arma with t distributed errors (just a change in loglike)
- * garch: need loglike and (recursive) errorest
- * regime switching model without unobserved state, e.g. threshold
-
-
-roadmap for garch:
- * simple case
- * starting values: garch11 explicit formulas
- * arma-garch, assumed separable, blockdiagonal Hessian
- * empirical example: DJI, S&P500, MSFT, ???
- * other standard garch: egarch, pgarch,
- * non-normal distributions
- * other methods: forecast, news impact curves (impulse response)
- * analytical gradient, Hessian for basic garch
- * cleaner simulation of garch
- * result statistics, AIC, ...
- * parameter constraints
- * try penalization for higher lags
- * other garch: regime-switching
-
-for pgarch (power garch) need transformation of etax given
- the parameters, but then misofilter should work
- general class aparch (see garch glossary)
-
-References
-----------
-
-see notes_references.txt
-
-
-Created on Feb 6, 2010
-@author: "josef pktd"
-'''
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-
-#from scipy.stats import t, norm
-from scipy import optimize, signal, derivative
-from scipy.stats import ss as sumofsq
-
-import matplotlib.pyplot as plt
-
-import numdifftools as ndt
-
-from scikits.statsmodels.base.model import Model, LikelihoodModelResults
-from scikits.statsmodels.sandbox import tsa
-
-def normloglike(x, mu=0, sigma2=1, returnlls=False, axis=0):
-
- x = np.asarray(x)
- x = np.atleast_1d(x)
- if axis is None:
- x = x.ravel()
- #T,K = x.shape
- if x.ndim > 1:
- nobs = x.shape[axis]
- else:
- nobs = len(x)
-
- x = x - mu # assume can be broadcasted
- if returnlls:
- #Compute the individual log likelihoods if needed
- lls = -0.5*(np.log(2*np.pi) + np.log(sigma2) + x**2/sigma2)
- # Use these to comput the LL
- LL = np.sum(lls,axis)
- return LL, lls
- else:
- #Compute the log likelihood
- #print np.sum(np.log(sigma2),axis)
- LL = -0.5 * (np.sum(np.log(sigma2),axis) + np.sum((x**2)/sigma2, axis) + nobs*np.log(2*np.pi))
- return LL
-
-# copied from model.py
-class LikelihoodModel(Model):
- """
- Likelihood model is a subclass of Model.
- """
-
- def __init__(self, endog, exog=None):
- super(LikelihoodModel, self).__init__(endog, exog)
- self.initialize()
-
- def initialize(self):
- """
- Initialize (possibly re-initialize) a Model instance. For
- instance, the design matrix of a linear model may change
- and some things must be recomputed.
- """
- pass
-#TODO: if the intent is to re-initialize the model with new data then
-# this method needs to take inputs...
-
- def loglike(self, params):
- """
- Log-likelihood of model.
- """
- raise NotImplementedError
-
- def score(self, params):
- """
- Score vector of model.
-
- The gradient of logL with respect to each parameter.
- """
- raise NotImplementedError
-
- def information(self, params):
- """
- Fisher information matrix of model
-
- Returns -Hessian of loglike evaluated at params.
- """
- raise NotImplementedError
-
- def hessian(self, params):
- """
- The Hessian matrix of the model
- """
- raise NotImplementedError
-
- def fit(self, start_params=None, method='newton', maxiter=35, tol=1e-08):
- """
- Fit method for likelihood based models
-
- Parameters
- ----------
- start_params : array-like, optional
- An optional
-
- method : str
- Method can be 'newton', 'bfgs', 'powell', 'cg', or 'ncg'.
- The default is newton. See scipy.optimze for more information.
- """
- methods = ['newton', 'bfgs', 'powell', 'cg', 'ncg', 'fmin']
- if start_params is None:
- start_params = [0]*self.exog.shape[1] # will fail for shape (K,)
- if not method in methods:
- raise ValueError("Unknown fit method %s" % method)
- f = lambda params: -self.loglike(params)
- score = lambda params: -self.score(params)
-# hess = lambda params: -self.hessian(params)
- hess = None
-#TODO: can we have a unified framework so that we can just do func = method
-# and write one call for each solver?
-
- if method.lower() == 'newton':
- iteration = 0
- start = np.array(start_params)
- history = [np.inf, start]
- while (iteration < maxiter and np.all(np.abs(history[-1] - \
- history[-2])>tol)):
- H = self.hessian(history[-1])
- newparams = history[-1] - np.dot(np.linalg.inv(H),
- self.score(history[-1]))
- history.append(newparams)
- iteration += 1
- mlefit = LikelihoodModelResults(self, newparams)
- mlefit.iteration = iteration
- elif method == 'bfgs':
- score=None
- xopt, fopt, gopt, Hopt, func_calls, grad_calls, warnflag = \
- optimize.fmin_bfgs(f, start_params, score, full_output=1,
- maxiter=maxiter, gtol=tol)
- converge = not warnflag
- mlefit = LikelihoodModelResults(self, xopt)
- optres = 'xopt, fopt, gopt, Hopt, func_calls, grad_calls, warnflag'
- self.optimresults = dict(zip(optres.split(', '),[
- xopt, fopt, gopt, Hopt, func_calls, grad_calls, warnflag]))
- elif method == 'ncg':
- xopt, fopt, fcalls, gcalls, hcalls, warnflag = \
- optimize.fmin_ncg(f, start_params, score, fhess=hess,
- full_output=1, maxiter=maxiter, avextol=tol)
- mlefit = LikelihoodModelResults(self, xopt)
- converge = not warnflag
- elif method == 'fmin':
- #fmin(func, x0, args=(), xtol=0.0001, ftol=0.0001, maxiter=None, maxfun=None, full_output=0, disp=1, retall=0, callback=None)
- xopt, fopt, niter, funcalls, warnflag = \
- optimize.fmin(f, start_params,
- full_output=1, maxiter=maxiter, xtol=tol)
- mlefit = LikelihoodModelResults(self, xopt)
- converge = not warnflag
- self._results = mlefit
- return mlefit
-
-
-#TODO: I take it this is only a stub and should be included in another
-# model class?
-class TSMLEModel(LikelihoodModel):
- """
- univariate time series model for estimation with maximum likelihood
-
- Note: This is not working yet
- """
-
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(TSMLEModel, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
-
- def geterrors(self, params):
- raise NotImplementedError
-
- def loglike(self, params):
- """
- Loglikelihood for timeseries model
-
- Notes
- -----
- needs to be overwritten by subclass
- """
- raise NotImplementedError
-
-
- def score(self, params):
- """
- Score vector for Arma model
- """
- #return None
- #print params
- jac = ndt.Jacobian(self.loglike, stepMax=1e-4)
- return jac(params)[-1]
-
- def hessian(self, params):
- """
- Hessian of arma model. Currently uses numdifftools
- """
- #return None
- Hfun = ndt.Jacobian(self.score, stepMax=1e-4)
- return Hfun(params)[-1]
-
-
- def fit(self, start_params=None, maxiter=5000, method='fmin', tol=1e-08):
- '''estimate model by minimizing negative loglikelihood
-
- does this need to be overwritten ?
- '''
- if start_params is None and hasattr(self, '_start_params'):
- start_params = self._start_params
- #start_params = np.concatenate((0.05*np.ones(self.nar + self.nma), [1]))
- mlefit = super(TSMLEModel, self).fit(start_params=start_params,
- maxiter=maxiter, method=method, tol=tol)
- return mlefit
-
-class Garch0(TSMLEModel):
- '''Garch model,
-
- still experimentation stage:
- simplified structure, plain garch, no constraints
- still looking for the design of the base class
-
- serious bug:
- ar estimate looks ok, ma estimate awful
- -> check parameterization of lagpolys and constant
- looks ok after adding missing constant
- but still difference to garch11 function
- corrected initial condition
- -> only small differences left between the 3 versions
- ar estimate is close to true/DGP model
- note constant has different parameterization
- but design looks better
-
- '''
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(Garch0, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
- # put this in fit (?) or in initialize instead
- self._etax = endog**2
- self._icetax = np.atleast_1d(self._etax.mean())
-
- def initialize(self):
- pass
-
- def geth(self, params):
- '''
-
- Parameters
- ----------
- params : tuple, (ar, ma)
- try to keep the params conversion in loglike
-
- copied from generate_gjrgarch
- needs to be extracted to separate function
- '''
- #mu, ar, ma = params
- ar, ma, mu = params
-
- #etax = self.endog #this would be enough for basic garch version
- etax = self._etax + mu
- icetax = self._icetax #read ic-eta-x, initial condition
-
- #TODO: where does my go with lfilter ?????????????
- # shouldn't matter except for interpretation
-
- nobs = etax.shape[0]
-
- #check arguments of lfilter
- zi = signal.lfiltic(ma,ar, icetax)
- #h = signal.lfilter(ar, ma, etax, zi=zi) #np.atleast_1d(etax[:,1].mean()))
- #just guessing: b/c ValueError: BUG: filter coefficient a[0] == 0 not supported yet
- h = signal.lfilter(ma, ar, etax, zi=zi)[0]
- return h
-
-
- def loglike(self, params):
- """
- Loglikelihood for timeseries model
-
- Notes
- -----
- needs to be overwritten by subclass
-
- make more generic with using function _convertparams
- which could also include parameter transformation
- _convertparams_in, _convertparams_out
-
- allow for different distributions t, ged,...
- """
- p, q = self.nar, self.nma
- ar = np.concatenate(([1], params[:p]))
-
- # check where constant goes
-
- #ma = np.zeros((q+1,3))
- #ma[0,0] = params[-1]
- #lag coefficients for ma innovation
- ma = np.concatenate(([0], params[p:p+q]))
-
- mu = params[-1]
- params = (ar, ma, mu) #(ar, ma)
-
- h = self.geth(params)
-
- #temporary safe for debugging:
- self.params_converted = params
- self.h = h #for testing
-
- sigma2 = np.maximum(h, 1e-6)
- axis = 0
- nobs = len(h)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
- axis=0 #no choice of axis
-
- # same as with y = self.endog, ht = sigma2
- # np.log(stats.norm.pdf(y,scale=np.sqrt(ht))).sum()
- llike = -0.5 * (np.sum(np.log(sigma2),axis)
- + np.sum(((self.endog)**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- return llike
-
-class GarchX(TSMLEModel):
- '''Garch model,
-
- still experimentation stage:
- another version, this time with exog and miso_filter
- still looking for the design of the base class
-
- not done yet, just a design idea
- * use misofilter as in garch (gjr)
- * but take etax = exog
- this can include constant, asymetric effect (gjr) and
- other explanatory variables (e.g. high-low spread)
-
- todo: renames
- eta -> varprocess
- etax -> varprocessx
- icetax -> varprocessic (is actually ic of eta/sigma^2)
- '''
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(Garch0, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
- # put this in fit (?) or in initialize instead
- #nobs defined in super - verify
- #self.nobs = nobs = endog.shape[0]
- #add nexog to super
- #self.nexog = nexog = exog.shape[1]
- self._etax = np.column_stack(np.ones((nobs,1)), endog**2, exog)
- self._icetax = np.atleast_1d(self._etax.mean())
-
- def initialize(self):
- pass
-
- def convert_mod2params(ar, ma, mu):
- pass
-
- def geth(self, params):
- '''
-
- Parameters
- ----------
- params : tuple, (ar, ma)
- try to keep the params conversion in loglike
-
- copied from generate_gjrgarch
- needs to be extracted to separate function
- '''
- #mu, ar, ma = params
- ar, ma, mu = params
-
- #etax = self.endog #this would be enough for basic garch version
- etax = self._etax + mu
- icetax = self._icetax #read ic-eta-x, initial condition
-
- #TODO: where does my go with lfilter ?????????????
- # shouldn't matter except for interpretation
-
- nobs = self.nobs
-
-## #check arguments of lfilter
-## zi = signal.lfiltic(ma,ar, icetax)
-## #h = signal.lfilter(ar, ma, etax, zi=zi) #np.atleast_1d(etax[:,1].mean()))
-## #just guessing: b/c ValueError: BUG: filter coefficient a[0] == 0 not supported yet
-## h = signal.lfilter(ma, ar, etax, zi=zi)[0]
-##
- h = miso_lfilter(ar, ma, etax, useic=self._icetax)[0]
- #print 'h.shape', h.shape
- hneg = h<0
- if hneg.any():
- #h[hneg] = 1e-6
- h = np.abs(h)
- #todo: raise warning, maybe not during optimization calls
-
- return h
-
-
- def loglike(self, params):
- """
- Loglikelihood for timeseries model
-
- Notes
- -----
- needs to be overwritten by subclass
-
- make more generic with using function _convertparams
- which could also include parameter transformation
- _convertparams_in, _convertparams_out
-
- allow for different distributions t, ged,...
- """
- p, q = self.nar, self.nma
- ar = np.concatenate(([1], params[:p]))
-
- # check where constant goes
-
- #ma = np.zeros((q+1,3))
- #ma[0,0] = params[-1]
- #lag coefficients for ma innovation
- ma = np.concatenate(([0], params[p:p+q]))
-
- mu = params[-1]
- params = (ar, ma, mu) #(ar, ma)
-
- h = self.geth(params)
-
- #temporary safe for debugging:
- self.params_converted = params
- self.h = h #for testing
-
- sigma2 = np.maximum(h, 1e-6)
- axis = 0
- nobs = len(h)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
- axis=0 #no choice of axis
-
- # same as with y = self.endog, ht = sigma2
- # np.log(stats.norm.pdf(y,scale=np.sqrt(ht))).sum()
- llike = -0.5 * (np.sum(np.log(sigma2),axis)
- + np.sum(((self.endog)**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- return llike
-
-
-class Garch(TSMLEModel):
- '''Garch model gjrgarch (t-garch)
-
- still experimentation stage, try with
-
- '''
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(Garch, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
-
- def initialize(self):
- pass
-
- def geterrors(self, params):
- '''
-
- Parameters
- ----------
- params : tuple, (mu, ar, ma)
- try to keep the params conversion in loglike
-
- copied from generate_gjrgarch
- needs to be extracted to separate function
- '''
- #mu, ar, ma = params
- ar, ma = params
- eta = self.endog
- nobs = eta.shape[0]
-
- etax = np.empty((nobs,3))
- etax[:,0] = 1
- etax[:,1:] = (eta**2)[:,None]
- etax[eta>0,2] = 0
- #print 'etax.shape', etax.shape
- h = miso_lfilter(ar, ma, etax, useic=np.atleast_1d(etax[:,1].mean()))[0]
- #print 'h.shape', h.shape
- hneg = h<0
- if hneg.any():
- #h[hneg] = 1e-6
- h = np.abs(h)
-
- #print 'Warning negative variance found'
-
- #check timing, starting time for h and eta, do they match
- #err = np.sqrt(h[:len(eta)])*eta #np.random.standard_t(8, size=len(h))
- # let it break if there is a len/shape mismatch
- err = np.sqrt(h)*eta
- return err, h, etax
-
- def loglike(self, params):
- """
- Loglikelihood for timeseries model
-
- Notes
- -----
- needs to be overwritten by subclass
- """
- p, q = self.nar, self.nma
- ar = np.concatenate(([1], params[:p]))
- #ar = np.concatenate(([1], -np.abs(params[:p]))) #???
- #better safe than fast and sorry
- #
- ma = np.zeros((q+1,3))
- ma[0,0] = params[-1]
- #lag coefficients for ma innovation
- ma[:,1] = np.concatenate(([0], params[p:p+q]))
- #delta lag coefficients for negative ma innovation
- ma[:,2] = np.concatenate(([0], params[p+q:p+2*q]))
-
- mu = params[-1]
- params = (ar, ma) #(mu, ar, ma)
-
- errorsest, h, etax = self.geterrors(params)
- #temporary safe for debugging
- self.params_converted = params
- self.errorsest, self.h, self.etax = errorsest, h, etax
- #h = h[:-1] #correct this in geterrors
- #print 'shapes errorsest, h, etax', errorsest.shape, h.shape, etax.shape
- sigma2 = np.maximum(h, 1e-6)
- axis = 0
- nobs = len(errorsest)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
- axis=0 #not used
-# muy = errorsest.mean()
-# # llike is verified, see below
-# # same as with y = errorsest, ht = sigma2
-# # np.log(stats.norm.pdf(y,scale=np.sqrt(ht))).sum()
-# llike = -0.5 * (np.sum(np.log(sigma2),axis)
-# + np.sum(((errorsest)**2)/sigma2, axis)
-# + nobs*np.log(2*np.pi))
-# return llike
- muy = errorsest.mean()
- # llike is verified, see below
- # same as with y = errorsest, ht = sigma2
- # np.log(stats.norm.pdf(y,scale=np.sqrt(ht))).sum()
- llike = -0.5 * (np.sum(np.log(sigma2),axis)
- + np.sum(((self.endog)**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- return llike
-
-
-def gjrconvertparams(self, params, nar, nma):
- """
- flat to matrix
-
- Notes
- -----
- needs to be overwritten by subclass
- """
- p, q = nar, nma
- ar = np.concatenate(([1], params[:p]))
- #ar = np.concatenate(([1], -np.abs(params[:p]))) #???
- #better safe than fast and sorry
- #
- ma = np.zeros((q+1,3))
- ma[0,0] = params[-1]
- #lag coefficients for ma innovation
- ma[:,1] = np.concatenate(([0], params[p:p+q]))
- #delta lag coefficients for negative ma innovation
- ma[:,2] = np.concatenate(([0], params[p+q:p+2*q]))
-
- mu = params[-1]
- params2 = (ar, ma) #(mu, ar, ma)
- return paramsclass
-
-#TODO: this should be generalized to ARMA?
-#can possibly also leverage TSME above
-# also note that this is NOT yet general
-# it was written for my homework, assumes constant is zero
-# and that process is AR(1)
-# examples at the end of run as main below
-class AR(LikelihoodModel):
- """
- Notes
- -----
- This is not general, only written for the AR(1) case.
-
- Fit methods that use super and broyden do not yet work.
- """
- def __init__(self, endog, exog=None, nlags=1):
- if exog is None: # extend to handle ADL(p,q) model? or subclass?
- exog = endog[:-nlags]
- endog = endog[nlags:]
- super(AR, self).__init__(endog, exog)
- self.nobs += nlags # add lags back to nobs for real T
-
-#TODO: need to fix underscore in Model class.
-#Done?
- def initialize(self):
- pass
-
- def loglike(self, params):
- """
- The unconditional loglikelihood of an AR(p) process
-
- Notes
- -----
- Contains constant term.
- """
- nobs = self.nobs
- y = self.endog
- ylag = self.exog
- penalty = self.penalty
- if isinstance(params,tuple):
- # broyden (all optimize.nonlin return a tuple until rewrite commit)
- params = np.asarray(params)
- usepenalty=False
- if not np.all(np.abs(params)<1) and penalty:
- oldparams = params
- params = np.array([.9999]) # make it the edge
- usepenalty=True
- diffsumsq = sumofsq(y-np.dot(ylag,params))
- # concentrating the likelihood means that sigma2 is given by
- sigma2 = 1/nobs*(diffsumsq-ylag[0]**2*(1-params**2))
- loglike = -nobs/2 * np.log(2*np.pi) - nobs/2*np.log(sigma2) + \
- .5 * np.log(1-params**2) - .5*diffsumsq/sigma2 -\
- ylag[0]**2 * (1-params**2)/(2*sigma2)
- if usepenalty:
- # subtract a quadratic penalty since we min the negative of loglike
- loglike -= 1000 *(oldparams-.9999)**2
- return loglike
-
- def score(self, params):
- """
- Notes
- -----
- Need to generalize for AR(p) and for a constant.
- Not correct yet. Returns numerical gradient. Depends on package
- numdifftools.
- """
- y = self.endog
- ylag = self.exog
- nobs = self.nobs
- diffsumsq = sumofsq(y-np.dot(ylag,params))
- dsdr = 1/nobs * -2 *np.sum(ylag*(y-np.dot(ylag,params))[:,None])+\
- 2*params*ylag[0]**2
- sigma2 = 1/nobs*(diffsumsq-ylag[0]**2*(1-params**2))
- gradient = -nobs/(2*sigma2)*dsdr + params/(1-params**2) + \
- 1/sigma2*np.sum(ylag*(y-np.dot(ylag, params))[:,None])+\
- .5*sigma2**-2*diffsumsq*dsdr+\
- ylag[0]**2*params/sigma2 +\
- ylag[0]**2*(1-params**2)/(2*sigma2**2)*dsdr
- if self.penalty:
- pass
- j = Jacobian(self.loglike)
- return j(params)
-# return gradient
-
-
- def information(self, params):
- """
- Not Implemented Yet
- """
- return
-
- def hessian(self, params):
- """
- Returns numerical hessian for now. Depends on numdifftools.
- """
-
- h = Hessian(self.loglike)
- return h(params)
-
- def fit(self, start_params=None, method='bfgs', maxiter=35, tol=1e-08,
- penalty=False):
- """
- Fit the unconditional maximum likelihood of an AR(p) process.
-
- Parameters
- ----------
- start_params : array-like, optional
- A first guess on the parameters. Defaults is a vector of zeros.
- method : str, optional
- Unconstrained solvers:
- Default is 'bfgs', 'newton' (newton-raphson), 'ncg'
- (Note that previous 3 are not recommended at the moment.)
- and 'powell'
- Constrained solvers:
- 'bfgs-b', 'tnc'
- See notes.
- maxiter : int, optional
- The maximum number of function evaluations. Default is 35.
- tol = float
- The convergence tolerance. Default is 1e-08.
- penalty : bool
- Whether or not to use a penalty function. Default is False,
- though this is ignored at the moment and the penalty is always
- used if appropriate. See notes.
-
- Notes
- -----
- The unconstrained solvers use a quadratic penalty (regardless if
- penalty kwd is True or False) in order to ensure that the solution
- stays within (-1,1). The constrained solvers default to using a bound
- of (-.999,.999).
- """
- self.penalty = penalty
- method = method.lower()
-#TODO: allow user-specified penalty function
-# if penalty and method not in ['bfgs_b','tnc','cobyla','slsqp']:
-# minfunc = lambda params : -self.loglike(params) - \
-# self.penfunc(params)
-# else:
- minfunc = lambda params: -self.loglike(params)
- if method in ['newton', 'bfgs', 'ncg']:
- super(AR, self).fit(start_params=start_params, method=method,
- maxiter=maxiter, tol=tol)
- else:
- bounds = [(-.999,.999)] # assume stationarity
- if start_params == None:
- start_params = np.array([0]) #TODO: assumes AR(1)
- if method == 'bfgs-b':
- retval = optimize.fmin_l_bfgs_b(minfunc, start_params,
- approx_grad=True, bounds=bounds)
- self.params, self.llf = retval[0:2]
- if method == 'tnc':
- retval = optimize.fmin_tnc(minfunc, start_params,
- approx_grad=True, bounds = bounds)
- self.params = retval[0]
- if method == 'powell':
- retval = optimize.fmin_powell(minfunc,start_params)
- self.params = retval[None]
-#TODO: write regression tests for Pauli's branch so that
-# new line_search and optimize.nonlin can get put in.
-#http://projects.scipy.org/scipy/ticket/791
-# if method == 'broyden':
-# retval = optimize.broyden2(minfunc, [.5], verbose=True)
-# self.results = retval
-
-
-class Arma(LikelihoodModel):
- """
- univariate Autoregressive Moving Average model
-
- Note: This is not working yet, or does it
- this can subclass TSMLEModel
- """
-
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(Arma, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
-
- def initialize(self):
- pass
-
- def geterrors(self, params):
- #copied from sandbox.tsa.arima.ARIMA
- p, q = self.nar, self.nma
- rhoy = np.concatenate(([1], params[:p]))
- rhoe = np.concatenate(([1], params[p:p+q]))
- errorsest = signal.lfilter(rhoy, rhoe, self.endog)
- return errorsest
-
- def loglike(self, params):
- """
- Loglikelihood for arma model
-
- Notes
- -----
- The ancillary parameter is assumed to be the last element of
- the params vector
- """
-
-# #copied from sandbox.tsa.arima.ARIMA
-# p = self.nar
-# rhoy = np.concatenate(([1], params[:p]))
-# rhoe = np.concatenate(([1], params[p:-1]))
-# errorsest = signal.lfilter(rhoy, rhoe, self.endog)
- errorsest = self.geterrors(params)
- sigma2 = np.maximum(params[-1]**2, 1e-6)
- axis = 0
- nobs = len(errorsest)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
-# llike = -0.5 * (np.sum(np.log(sigma2),axis)
-# + np.sum((errorsest**2)/sigma2, axis)
-# + nobs*np.log(2*np.pi))
- llike = -0.5 * (nobs*np.log(sigma2)
- + np.sum((errorsest**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- return llike
-
- def score(self, params):
- """
- Score vector for Arma model
- """
- #return None
- #print params
- jac = ndt.Jacobian(self.loglike, stepMax=1e-4)
- return jac(params)[-1]
-
-
-
- def hessian(self, params):
- """
- Hessian of arma model. Currently uses numdifftools
- """
- #return None
- Hfun = ndt.Jacobian(self.score, stepMax=1e-4)
- return Hfun(params)[-1]
-
-
- def fit(self, start_params=None, maxiter=5000, method='fmin', tol=1e-08):
- if start_params is None:
- start_params = np.concatenate((0.05*np.ones(self.nar + self.nma), [1]))
- mlefit = super(Arma, self).fit(start_params=start_params,
- maxiter=maxiter, method=method, tol=tol)
- return mlefit
-
-def generate_kindofgarch(nobs, ar, ma, mu=1.):
- '''simulate garch like process but not squared errors in arma
- used for initial trial but produces nice graph
- '''
- #garm1, gmam1 = [0.4], [0.2]
- #pqmax = 1
-# res = np.zeros(nobs+pqmax)
-# rvs = np.random.randn(nobs+pqmax,2)
-# for t in range(pqmax,nobs+pqmax):
-# res[i] =
- #ar = [1.0, -0.99]
- #ma = [1.0, 0.5]
- #this has the wrong distribution, should be eps**2
- #TODO: use new version tsa.arima.??? instead, has distr option
- #arest = tsa.arima.ARIMA()
- #arest = tsa.arima.ARIMA #try class method, ARIMA needs data in constructor
- from scikits.statsmodels.tsa.arima_process import arma_generate_sample
- h = arma_generate_sample(ar,ma,nobs,0.1)
- #h = np.abs(h)
- h = (mu+h)**2
- h = np.exp(h)
- err = np.sqrt(h)*np.random.randn(nobs)
- return err, h
-
-def generate_garch(nobs, ar, ma, mu=1., scale=0.1):
- '''simulate standard garch
-
- scale : float
- scale/standard deviation of innovation process in GARCH process
- '''
-
- eta = scale*np.random.randn(nobs)
- # copied from armageneratesample
- h = signal.lfilter(ma, ar, eta**2)
-
- #
- #h = (mu+h)**2
- #h = np.abs(h)
- #h = np.exp(h)
- #err = np.sqrt(h)*np.random.randn(nobs)
- err = np.sqrt(h)*eta #np.random.standard_t(8, size=nobs)
- return err, h
-
-
-
-def generate_gjrgarch(nobs, ar, ma, mu=1., scale=0.1, varinnovation=None):
- '''simulate gjr garch process
-
- Parameter
- ---------
- ar : array_like, 1d
- autoregressive term for variance
- ma : array_like, 2d
- moving average term for variance, with coefficients for negative
- shocks in second column
- mu : float
- constant in variance law of motion
- scale : float
- scale/standard deviation of innovation process in GARCH process
-
- Returns
- -------
- err : array 1d, (nobs+?,)
- simulated gjr-garch process,
- h : array 1d, (nobs+?,)
- simulated variance
- etax : array 1d, (nobs+?,)
- data matrix for constant and ma terms in variance equation
-
- Notes
- -----
-
- References
- ----------
-
-
-
- '''
-
- if varinnovation is None: # rename ?
- eta = scale*np.random.randn(nobs)
- else:
- eta = varinnovation
- # copied from armageneratesample
- etax = np.empty((nobs,3))
- etax[:,0] = mu
- etax[:,1:] = (eta**2)[:,None]
- etax[eta>0,2] = 0
- h = miso_lfilter(ar, ma, etax)[0]
-
- #
- #h = (mu+h)**2
- #h = np.abs(h)
- #h = np.exp(h)
- #err = np.sqrt(h)*np.random.randn(nobs)
- print 'h.shape', h.shape
- err = np.sqrt(h[:len(eta)])*eta #np.random.standard_t(8, size=len(h))
- return err, h, etax
-
-def loglike_GARCH11(params, y):
- # Computes the likelihood vector of a GARCH11
- # assumes y is centered
-
- w = params[0] # constant (1);
- alpha = params[1] # coefficient of lagged squared error
- beta = params[2] # coefficient of lagged variance
-
- y2 = y**2;
- nobs = y2.shape[0]
- ht = np.zeros(nobs);
- ht[0] = y2.mean() #sum(y2)/T;
-
- for i in range(1,nobs):
- ht[i] = w + alpha*y2[i-1] + beta * ht[i-1]
-
- sqrtht = np.sqrt(ht)
- x = y/sqrtht
-
- llvalues = -0.5*np.log(2*np.pi) - np.log(sqrtht) - 0.5*(x**2);
- return llvalues.sum(), llvalues, ht
-
-from scikits.statsmodels.tsa.filters import miso_lfilter
-#copied to statsmodels.tsa.filters.filtertools
-def miso_lfilter_old(ar, ma, x, useic=False): #[0.1,0.1]):
- '''
- use nd convolution to merge inputs,
- then use lfilter to produce output
-
- arguments for column variables
- return currently 1d
-
- Parameters
- ----------
- ar : array_like, 1d, float
- autoregressive lag polynomial including lag zero, ar(L)y_t
- ma : array_like, same ndim as x, currently 2d
- moving average lag polynomial ma(L)x_t
- x : array_like, 2d
- input data series, time in rows, variables in columns
-
- Returns
- -------
- y : array, 1d
- filtered output series
- inp : array, 1d
- combined input series
-
- Notes
- -----
- currently for 2d inputs only, no choice of axis
- Use of signal.lfilter requires that ar lag polynomial contains
- floating point numbers
- does not cut off invalid starting and final values
-
- miso_lfilter find array y such that::
-
- ar(L)y_t = ma(L)x_t
-
- with shapes y (nobs,), x (nobs,nvars), ar (narlags,), ma (narlags,nvars)
-
- '''
- ma = np.asarray(ma)
- ar = np.asarray(ar)
- #inp = signal.convolve(x, ma, mode='valid')
- #inp = signal.convolve(x, ma)[:, (x.shape[1]+1)//2]
- #Note: convolve mixes up the variable left-right flip
- #I only want the flip in time direction
- #this might also be a mistake or problem in other code where I
- #switched from correlate to convolve
- # correct convolve version, for use with fftconvolve in other cases
- inp2 = signal.convolve(x, ma[:,::-1])[:, (x.shape[1]+1)//2]
- inp = signal.correlate(x, ma[::-1,:])[:, (x.shape[1]+1)//2]
- assert_almost_equal(inp2, inp)
- nobs = x.shape[0]
- # cut of extra values at end
-
- #todo initialize also x for correlate
- if useic:
- return signal.lfilter([1], ar, inp,
- #zi=signal.lfilter_ic(np.array([1.,0.]),ar, ic))[0][:nobs], inp[:nobs]
- zi=signal.lfiltic(np.array([1.,0.]),ar, useic))[0][:nobs], inp[:nobs]
- else:
- return signal.lfilter([1], ar, inp)[:nobs], inp[:nobs]
- #return signal.lfilter([1], ar, inp), inp
-
-
-def test_misofilter():
- x = np.arange(20).reshape(10,2)
- y, inp = miso_lfilter([1., -1],[[1,1],[0,0]], x)
- assert_almost_equal(y[:-1], x.sum(1).cumsum(), decimal=15)
- inp2 = signal.convolve(np.arange(20),np.ones(2))[1::2]
- assert_almost_equal(inp[:-1], inp2, decimal=15)
-
- inp2 = signal.convolve(np.arange(20),np.ones(4))[1::2]
- y, inp = miso_lfilter([1., -1],[[1,1],[1,1]], x)
- assert_almost_equal(y, inp2.cumsum(), decimal=15)
- assert_almost_equal(inp, inp2, decimal=15)
- y, inp = miso_lfilter([1., 0],[[1,1],[1,1]], x)
- assert_almost_equal(y, inp2, decimal=15)
- assert_almost_equal(inp, inp2, decimal=15)
-
- x3 = np.column_stack((np.ones((x.shape[0],1)),x))
- y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[0.0,0.0,0]]),x3)
- y3 = (x3*np.array([-2,3,1])).sum(1)
- assert_almost_equal(y[:-1], y3, decimal=15)
- assert_almost_equal(y, inp, decimal=15)
- y4 = y3.copy()
- y4[1:] += x3[:-1,1]
- y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[0.0,1.0,0]]),x3)
- assert_almost_equal(y[:-1], y4, decimal=15)
- assert_almost_equal(y, inp, decimal=15)
- y4 = y3.copy()
- y4[1:] += x3[:-1,0]
- y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[1.0,0.0,0]]),x3)
- assert_almost_equal(y[:-1], y4, decimal=15)
- assert_almost_equal(y, inp, decimal=15)
- y, inp = miso_lfilter([1., -1],np.array([[-2.0,3,1],[1.0,0.0,0]]),x3)
- assert_almost_equal(y[:-1], y4.cumsum(), decimal=15)
- y4 = y3.copy()
- y4[1:] += x3[:-1,2]
- y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[0.0,0.0,1.0]]),x3)
- assert_almost_equal(y[:-1], y4, decimal=15)
- assert_almost_equal(y, inp, decimal=15)
- y, inp = miso_lfilter([1., -1],np.array([[-2.0,3,1],[0.0,0.0,1.0]]),x3)
- assert_almost_equal(y[:-1], y4.cumsum(), decimal=15)
-
- y, inp = miso_lfilter([1., 0],[[1,0],[1,0],[1,0]], x)
- yt = np.convolve(x[:,0], [1,1,1])
- assert_almost_equal(y, yt, decimal=15)
- assert_almost_equal(inp, yt, decimal=15)
- y, inp = miso_lfilter([1., 0],[[0,1],[0,1],[0,1]], x)
- yt = np.convolve(x[:,1], [1,1,1])
- assert_almost_equal(y, yt, decimal=15)
- assert_almost_equal(inp, yt, decimal=15)
-
- y, inp = miso_lfilter([1., 0],[[0,1],[0,1],[1,1]], x)
- yt = np.convolve(x[:,1], [1,1,1])
- yt[2:] += x[:,0]
- assert_almost_equal(y, yt, decimal=15)
- assert_almost_equal(inp, yt, decimal=15)
-
-def test_gjrgarch():
- # test impulse response of gjr simulator
- varinno = np.zeros(100)
- varinno[0] = 1.
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, 0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- ht = np.array([ 1., 0.1, 0.05, 0.01, 0., 0. ])
- assert_almost_equal(hgjr5[:6], ht, decimal=15)
-
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, -1.0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- assert_almost_equal(hgjr5[:6], ht.cumsum(), decimal=15)
-
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, 1.0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- ht1 = [0]
- for h in ht: ht1.append(h-ht1[-1])
- assert_almost_equal(hgjr5[:6], ht1[1:], decimal=15)
-
- # negative shock
- varinno = np.zeros(100)
- varinno[0] = -1.
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, 0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- ht = np.array([ 1. , 0.9 , 0.75, 0.61, 0. , 0. ])
- assert_almost_equal(hgjr5[:6], ht, decimal=15)
-
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, -1.0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- assert_almost_equal(hgjr5[:6], ht.cumsum(), decimal=15)
-
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, 1.0],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- ht1 = [0]
- for h in ht: ht1.append(h-ht1[-1])
- assert_almost_equal(hgjr5[:6], ht1[1:], decimal=15)
-
-
-'''
->>> print signal.correlate(x3, np.array([[-2.0,3,1],[0.0,0.0,0]])[::-1,:],mode='full')[:-1, (x3.shape[1]+1)//2]
-[ -1. 7. 15. 23. 31. 39. 47. 55. 63. 71.]
->>> (x3*np.array([-2,3,1])).sum(1)
-array([ -1., 7., 15., 23., 31., 39., 47., 55., 63., 71.])
-'''
-
-def garchplot(err, h, title='Garch simulation'):
- plt.figure()
- plt.subplot(311)
- plt.plot(err)
- plt.title(title)
- plt.ylabel('y')
- plt.subplot(312)
- plt.plot(err**2)
- plt.ylabel('$y^2$')
- plt.subplot(313)
- plt.plot(h)
- plt.ylabel('conditional variance')
-
-if __name__ == '__main__':
-
- #test_misofilter()
- #test_gjrgarch()
-
- examples = ['garch']
- if 'arma' in examples:
- arest = tsa.arima.ARIMA()
- print "\nExample 1"
- ar = [1.0, -0.8]
- ma = [1.0, 0.5]
- y1 = arest.generate_sample(ar,ma,1000,0.1)
- y1 -= y1.mean() #no mean correction/constant in estimation so far
-
- arma1 = Arma(y1)
- arma1.nar = 1
- arma1.nma = 1
- arma1res = arma1.fit(method='fmin')
- print arma1res.params
-
- #Warning need new instance otherwise results carry over
- arma2 = Arma(y1)
- res2 = arma2.fit(method='bfgs')
- print res2.params
- print res2.model.hessian(res2.params)
- print ndt.Hessian(arma1.loglike, stepMax=1e-2)(res2.params)
- resls = arest.fit(y1,1,1)
- print resls[0]
- print resls[1]
-
-
-
- print '\nparameter estimate'
- print 'parameter of DGP ar(1), ma(1), sigma_error'
- print [-0.8, 0.5, 0.1]
- print 'mle with fmin'
- print arma1res.params
- print 'mle with bfgs'
- print res2.params
- print 'cond. least squares uses optim.leastsq ?'
- errls = arest.error_estimate
- print resls[0], np.sqrt(np.dot(errls,errls)/errls.shape[0])
-
- err = arma1.geterrors(res2.params)
- print 'cond least squares parameter cov'
- #print np.dot(err,err)/err.shape[0] * resls[1]
- #errls = arest.error_estimate
- print np.dot(errls,errls)/errls.shape[0] * resls[1]
- # print 'fmin hessian'
- # print arma1res.model.optimresults['Hopt'][:2,:2]
- print 'bfgs hessian'
- print res2.model.optimresults['Hopt'][:2,:2]
- print 'numdifftools inverse hessian'
- print -np.linalg.inv(ndt.Hessian(arma1.loglike, stepMax=1e-2)(res2.params))[:2,:2]
-
- arma3 = Arma(y1**2)
- res3 = arma3.fit(method='bfgs')
- print res3.params
-
- nobs = 1000
-
- if 'garch' in examples:
- err,h = generate_kindofgarch(nobs, [1.0, -0.95], [1.0, 0.1], mu=0.5)
- import matplotlib.pyplot as plt
- plt.figure()
- plt.subplot(211)
- plt.plot(err)
- plt.subplot(212)
- plt.plot(h)
- #plt.show()
-
- seed = 3842774 #91234 #8837708
- seed = np.random.randint(9999999)
- print 'seed', seed
- np.random.seed(seed)
- ar1 = -0.9
- err,h = generate_garch(nobs, [1.0, ar1], [1.0, 0.50], mu=0.0,scale=0.1)
- # plt.figure()
- # plt.subplot(211)
- # plt.plot(err)
- # plt.subplot(212)
- # plt.plot(h)
- # plt.figure()
- # plt.subplot(211)
- # plt.plot(err[-400:])
- # plt.subplot(212)
- # plt.plot(h[-400:])
- #plt.show()
- garchplot(err, h)
- garchplot(err[-400:], h[-400:])
-
-
- np.random.seed(seed)
- errgjr,hgjr, etax = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.5,0]], mu=0.0,scale=0.1)
- garchplot(errgjr[:nobs], hgjr[:nobs], 'GJR-GARCH(1,1) Simulation - symmetric')
- garchplot(errgjr[-400:nobs], hgjr[-400:nobs], 'GJR-GARCH(1,1) Simulation - symmetric')
-
- np.random.seed(seed)
- errgjr2,hgjr2, etax = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.1,0.9]], mu=0.0,scale=0.1)
- garchplot(errgjr2[:nobs], hgjr2[:nobs], 'GJR-GARCH(1,1) Simulation')
- garchplot(errgjr2[-400:nobs], hgjr2[-400:nobs], 'GJR-GARCH(1,1) Simulation')
-
- np.random.seed(seed)
- errgjr3,hgjr3, etax3 = generate_gjrgarch(nobs, [1.0, ar1],
- [[1,0],[0.1,0.9],[0.1,0.9],[0.1,0.9]], mu=0.0,scale=0.1)
- garchplot(errgjr3[:nobs], hgjr3[:nobs], 'GJR-GARCH(1,3) Simulation')
- garchplot(errgjr3[-400:nobs], hgjr3[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
- np.random.seed(seed)
- errgjr4,hgjr4, etax4 = generate_gjrgarch(nobs, [1.0, ar1],
- [[1., 1,0],[0, 0.1,0.9],[0, 0.1,0.9],[0, 0.1,0.9]],
- mu=0.0,scale=0.1)
- garchplot(errgjr4[:nobs], hgjr4[:nobs], 'GJR-GARCH(1,3) Simulation')
- garchplot(errgjr4[-400:nobs], hgjr4[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
- varinno = np.zeros(100)
- varinno[0] = 1.
- errgjr5,hgjr5, etax5 = generate_gjrgarch(100, [1.0, -0.],
- [[1., 1,0],[0, 0.1,0.8],[0, 0.05,0.7],[0, 0.01,0.6]],
- mu=0.0,scale=0.1, varinnovation=varinno)
- garchplot(errgjr5[:20], hgjr5[:20], 'GJR-GARCH(1,3) Simulation')
- #garchplot(errgjr4[-400:nobs], hgjr4[-400:nobs], 'GJR-GARCH(1,3) Simulation')
-
-
- #plt.show()
- seed = np.random.randint(9999999) # 9188410
- print 'seed', seed
-
- x = np.arange(20).reshape(10,2)
- x3 = np.column_stack((np.ones((x.shape[0],1)),x))
- y, inp = miso_lfilter([1., 0],np.array([[-2.0,3,1],[0.0,0.0,0]]),x3)
-
- nobs = 1000
- warmup = 1000
- np.random.seed(seed)
- ar = [1.0, -0.7]#7, -0.16, -0.1]
- #ma = [[1., 1, 0],[0, 0.6,0.1],[0, 0.1,0.1],[0, 0.1,0.1]]
- ma = [[1., 0, 0],[0, 0.4,0.0]] #,[0, 0.9,0.0]]
-# errgjr4,hgjr4, etax4 = generate_gjrgarch(warmup+nobs, [1.0, -0.99],
-# [[1., 1, 0],[0, 0.6,0.1],[0, 0.1,0.1],[0, 0.1,0.1]],
-# mu=0.2, scale=0.25)
-
- errgjr4,hgjr4, etax4 = generate_gjrgarch(warmup+nobs, ar, ma,
- mu=0.4, scale=1.01)
- errgjr4,hgjr4, etax4 = errgjr4[warmup:], hgjr4[warmup:], etax4[warmup:]
- garchplot(errgjr4[:nobs], hgjr4[:nobs], 'GJR-GARCH(1,3) Simulation')
- ggmod = Garch(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
- ggmod.nar = 1
- ggmod.nma = 1
- ggmod._start_params = np.array([-0.6, 0.1, 0.2, 0.0])
- ggres = ggmod.fit(start_params=np.array([-0.6, 0.1, 0.2, 0.0]), maxiter=1000)
- print 'ggres.params', ggres.params
- garchplot(ggmod.errorsest, ggmod.h)
- #plt.show()
-
- print 'Garch11'
- print optimize.fmin(lambda params: -loglike_GARCH11(params, errgjr4-errgjr4.mean())[0], [0.93, 0.9, 0.2])
-
- ggmod0 = Garch0(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
- ggmod0.nar = 1
- ggmod.nma = 1
- start_params = np.array([-0.6, 0.2, 0.1])
- ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
- ggres0 = ggmod0.fit(start_params=start_params, maxiter=2000)
- print 'ggres0.params', ggres0.params
-
- ggmod0 = Garch0(errgjr4-errgjr4.mean())#hgjr4[:nobs])#-hgjr4.mean()) #errgjr4)
- ggmod0.nar = 1
- ggmod.nma = 1
- start_params = np.array([-0.6, 0.2, 0.1])
- ggmod0._start_params = start_params #np.array([-0.6, 0.1, 0.2, 0.0])
- ggres0 = ggmod0.fit(start_params=start_params, method='bfgs', maxiter=2000)
- print 'ggres0.params', ggres0.params
-
-
- if 'rpy' in examples:
- from rpy import r
- f = r.formula('~garch(1, 1)')
- #fit = r.garchFit(f, data = errgjr4)
- x = r.garchSim( n = 500)
- print 'R acf', tsa.acf(np.power(x,2))[:15]
- arma3 = Arma(np.power(x,2))
- arma3res = arma3.fit(start_params=[-0.2,0.1,0.5],maxiter=5000)
- print arma3res.params
- arma3b = Arma(np.power(x,2))
- arma3bres = arma3b.fit(start_params=[-0.2,0.1,0.5],maxiter=5000, method='bfgs')
- print arma3bres.params
-
- llf = loglike_GARCH11([0.93, 0.9, 0.2], errgjr4)
- print llf[0]
-
- erro,ho, etaxo = generate_gjrgarch(20, ar, ma, mu=0.04, scale=0.01,
- varinnovation = np.ones(20))
-
-
- ''' this looks relatively good
-
- >>> Arma.initialize = lambda x: x
- >>> arma3 = Arma(errgjr4**2)
- >>> arma3res = arma3.fit()
- Warning: Maximum number of function evaluations has been exceeded.
- >>> arma3res.params
- array([-0.775, -0.583, -0.001])
- >>> arma2.nar
- 1
- >>> arma2.nma
- 1
-
- unit root ?
- >>> arma3 = Arma(hgjr4)
- >>> arma3res = arma3.fit()
- Optimization terminated successfully.
- Current function value: -3641.529780
- Iterations: 250
- Function evaluations: 458
- >>> arma3res.params
- array([ -1.000e+00, -3.096e-04, 6.343e-03])
-
- or maybe not great
- >>> arma3res = arma3.fit(start_params=[-0.8,0.1,0.5],maxiter=5000)
- Warning: Maximum number of function evaluations has been exceeded.
- >>> arma3res.params
- array([-0.086, 0.186, -0.001])
- >>> arma3res = arma3.fit(start_params=[-0.8,0.1,0.5],maxiter=5000,method='bfgs')
- Divide-by-zero encountered: rhok assumed large
- Optimization terminated successfully.
- Current function value: -5988.332952
- Iterations: 16
- Function evaluations: 245
- Gradient evaluations: 49
- >>> arma3res.params
- array([ -9.995e-01, -9.715e-01, 6.501e-04])
- '''
-
- '''
- current problems
- persistence in errgjr looks too low, small tsa.acf(errgjr4**2)[:15]
- as a consequence the ML estimate has also very little persistence,
- estimated ar term is much too small
- -> need to compare with R or matlab
-
- help.search("garch") : ccgarch, garchSim(fGarch), garch(tseries)
- HestonNandiGarchFit(fOptions)
-
- > library('fGarch')
- > spec = garchSpec()
- > x = garchSim(model = spec@model, n = 500)
- > acf(x**2) # has low correlation
- but fit has high parameters:
- > fit = garchFit(~garch(1, 1), data = x)
-
- with rpy:
-
- from rpy import r
- r.library('fGarch')
- f = r.formula('~garch(1, 1)')
- fit = r.garchFit(f, data = errgjr4)
- Final Estimate:
- LLH: -3198.2 norm LLH: -3.1982
- mu omega alpha1 beta1
- 1.870485e-04 9.437557e-05 3.457349e-02 1.000000e-08
-
- second run with ar = [1.0, -0.8] ma = [[1., 0, 0],[0, 1.0,0.0]]
- Final Estimate:
- LLH: -3979.555 norm LLH: -3.979555
- mu omega alpha1 beta1
- 1.465050e-05 1.641482e-05 1.092600e-01 9.654438e-02
- mine:
- >>> ggres.params
- array([ -2.000e-06, 3.283e-03, 3.769e-01, -1.000e-06])
-
- another rain, same ar, ma
- Final Estimate:
- LLH: -3956.197 norm LLH: -3.956197
- mu omega alpha1 beta1
- 7.487278e-05 1.171238e-06 1.511080e-03 9.440843e-01
-
- every step needs to be compared and tested
-
- something looks wrong with likelihood function, either a silly
- mistake or still some conceptional problems
-
- * found the silly mistake, I was normalizing the errors before
- plugging into espression for likelihood function
-
- * now gjr garch estimation works and produces results that are very
- close to the explicit garch11 estimation
-
- initial conditions for miso_filter need to be cleaned up
-
- lots of clean up to to after the bug hunting
-
- '''
- y = np.random.randn(20)
- params = [0.93, 0.9, 0.2]
- lls, llt, ht = loglike_GARCH11(params, y)
- sigma2 = ht
- axis=0
- nobs = len(ht)
- llike = -0.5 * (np.sum(np.log(sigma2),axis)
- + np.sum((y**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- print lls, llike
- #print np.log(stats.norm.pdf(y,scale=np.sqrt(ht))).sum()
-
-
-
- '''
- >>> optimize.fmin(lambda params: -loglike_GARCH11(params, errgjr4)[0], [0.93, 0.9, 0.2])
- Optimization terminated successfully.
- Current function value: 7312.393886
- Iterations: 95
- Function evaluations: 175
- array([ 3.691, 0.072, 0.932])
- >>> ar
- [1.0, -0.93000000000000005]
- >>> ma
- [[1.0, 0, 0], [0, 0.90000000000000002, 0.0]]
- '''
-
-
- np.random.seed(1)
- tseries = np.zeros(200) # set first observation
- for i in range(1,200): # get 99 more observations based on the given process
- error = np.random.randn()
- tseries[i] = .9 * tseries[i-1] + .01 * error
-
- tseries = tseries[100:]
-
- armodel = AR(tseries)
- #armodel.fit(method='bfgs-b')
- #armodel.fit(method='tnc')
- #powell should be the most robust, see Hamilton 5.7
- armodel.fit(method='powell', penalty=True)
- # The below don't work yet
- #armodel.fit(method='newton', penalty=True)
- #armodel.fit(method='broyden', penalty=True)
- print "Unconditional MLE for AR(1) y_t = .9*y_t-1 +.01 * err"
- print armodel.params
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/movstat.py b/statsmodels/scikits/statsmodels/sandbox/tsa/movstat.py
deleted file mode 100644
index be76159..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/movstat.py
+++ /dev/null
@@ -1,415 +0,0 @@
-'''using scipy signal and numpy correlate to calculate some time series
-statistics
-
-original developer notes
-
-see also scikits.timeseries (movstat is partially inspired by it)
-added 2009-08-29
-timeseries moving stats are in c, autocorrelation similar to here
-I thought I saw moving stats somewhere in python, maybe not)
-
-
-TODO
-
-moving statistics
-- filters don't handle boundary conditions nicely (correctly ?)
-e.g. minimum order filter uses 0 for out of bounds value
--> append and prepend with last resp. first value
-- enhance for nd arrays, with axis = 0
-
-
-
-Note: Equivalence for 1D signals
->>> np.all(signal.correlate(x,[1,1,1],'valid')==np.correlate(x,[1,1,1]))
-True
->>> np.all(ndimage.filters.correlate(x,[1,1,1], origin = -1)[:-3+1]==np.correlate(x,[1,1,1]))
-True
-
-# multidimensional, but, it looks like it uses common filter across time series, no VAR
-ndimage.filters.correlate(np.vstack([x,x]),np.array([[1,1,1],[0,0,0]]), origin = 1)
-ndimage.filters.correlate(x,[1,1,1],origin = 1))
-ndimage.filters.correlate(np.vstack([x,x]),np.array([[0.5,0.5,0.5],[0.5,0.5,0.5]]), \
-origin = 1)
-
->>> np.all(ndimage.filters.correlate(np.vstack([x,x]),np.array([[1,1,1],[0,0,0]]), origin = 1)[0]==\
-ndimage.filters.correlate(x,[1,1,1],origin = 1))
-True
->>> np.all(ndimage.filters.correlate(np.vstack([x,x]),np.array([[0.5,0.5,0.5],[0.5,0.5,0.5]]), \
-origin = 1)[0]==ndimage.filters.correlate(x,[1,1,1],origin = 1))
-
-
-update
-2009-09-06: cosmetic changes, rearrangements
-'''
-
-
-import numpy as np
-from scipy import signal
-
-from numpy.testing import assert_array_equal, assert_array_almost_equal
-
-import scikits.statsmodels.api as sm
-
-
-def expandarr(x,k):
- #make it work for 2D or nD with axis
- kadd = k
- if np.ndim(x) == 2:
- kadd = (kadd, np.shape(x)[1])
- return np.r_[np.ones(kadd)*x[0],x,np.ones(kadd)*x[-1]]
-
-def movorder(x, order = 'med', windsize=3, lag='lagged'):
- '''moving order statistics
-
- Parameters
- ----------
- x : array
- time series data
- order : float or 'med', 'min', 'max'
- which order statistic to calculate
- windsize : int
- window size
- lag : 'lagged', 'centered', or 'leading'
- location of window relative to current position
-
- Returns
- -------
- filtered array
-
-
- '''
-
- #if windsize is even should it raise ValueError
- if lag == 'lagged':
- lead = windsize//2
- elif lag == 'centered':
- lead = 0
- elif lag == 'leading':
- lead = -windsize//2 +1
- else:
- raise ValueError
- if np.isfinite(order) == True: #if np.isnumber(order):
- ord = order # note: ord is a builtin function
- elif order == 'med':
- ord = (windsize - 1)/2
- elif order == 'min':
- ord = 0
- elif order == 'max':
- ord = windsize - 1
- else:
- raise ValueError
-
- #return signal.order_filter(x,np.ones(windsize),ord)[:-lead]
- xext = expandarr(x, windsize)
- #np.r_[np.ones(windsize)*x[0],x,np.ones(windsize)*x[-1]]
- return signal.order_filter(xext,np.ones(windsize),ord)[windsize-lead:-(windsize+lead)]
-
-def check_movorder():
- '''graphical test for movorder'''
- import matplotlib.pylab as plt
- x = np.arange(1,10)
- xo = movorder(x, order='max')
- assert_array_equal(xo, x)
- x = np.arange(10,1,-1)
- xo = movorder(x, order='min')
- assert_array_equal(xo, x)
- assert_array_equal(movorder(x, order='min', lag='centered')[:-1], x[1:])
-
- tt = np.linspace(0,2*np.pi,15)
- x = np.sin(tt) + 1
- xo = movorder(x, order='max')
- plt.figure()
- plt.plot(tt,x,'.-',tt,xo,'.-')
- plt.title('moving max lagged')
- xo = movorder(x, order='max', lag='centered')
- plt.figure()
- plt.plot(tt,x,'.-',tt,xo,'.-')
- plt.title('moving max centered')
- xo = movorder(x, order='max', lag='leading')
- plt.figure()
- plt.plot(tt,x,'.-',tt,xo,'.-')
- plt.title('moving max leading')
-
-# identity filter
-##>>> signal.order_filter(x,np.ones(1),0)
-##array([ 1., 2., 3., 4., 5., 6., 7., 8., 9.])
-# median filter
-##signal.medfilt(np.sin(x), kernel_size=3)
-##>>> plt.figure()
-##
-##>>> x=np.linspace(0,3,100);plt.plot(x,np.sin(x),x,signal.medfilt(np.sin(x), kernel_size=3))
-
-# remove old version
-##def movmeanvar(x, windowsize=3, valid='same'):
-## '''
-## this should also work along axis or at least for columns
-## '''
-## n = x.shape[0]
-## x = expandarr(x, windowsize - 1)
-## takeslice = slice(windowsize-1, n + windowsize-1)
-## avgkern = (np.ones(windowsize)/float(windowsize))
-## m = np.correlate(x, avgkern, 'same')#[takeslice]
-## print m.shape
-## print x.shape
-## xm = x - m
-## v = np.correlate(x*x, avgkern, 'same') - m**2
-## v1 = np.correlate(xm*xm, avgkern, valid) #not correct for var of window
-###>>> np.correlate(xm*xm,np.array([1,1,1])/3.0,'valid')-np.correlate(xm*xm,np.array([1,1,1])/3.0,'valid')**2
-## return m[takeslice], v[takeslice], v1
-
-def movmean(x, windowsize=3, lag='lagged'):
- '''moving window mean
-
-
- Parameters
- ----------
- x : array
- time series data
- windsize : int
- window size
- lag : 'lagged', 'centered', or 'leading'
- location of window relative to current position
-
- Returns
- -------
- mk : array
- moving mean, with same shape as x
-
-
- Notes
- -----
- for leading and lagging the data array x is extended by the closest value of the array
-
-
- '''
- return movmoment(x, 1, windowsize=windowsize, lag=lag)
-
-def movvar(x, windowsize=3, lag='lagged'):
- '''moving window variance
-
-
- Parameters
- ----------
- x : array
- time series data
- windsize : int
- window size
- lag : 'lagged', 'centered', or 'leading'
- location of window relative to current position
-
- Returns
- -------
- mk : array
- moving variance, with same shape as x
-
-
- '''
- m1 = movmoment(x, 1, windowsize=windowsize, lag=lag)
- m2 = movmoment(x, 2, windowsize=windowsize, lag=lag)
- return m2 - m1*m1
-
-def movmoment(x, k, windowsize=3, lag='lagged'):
- '''non-central moment
-
-
- Parameters
- ----------
- x : array
- time series data
- windsize : int
- window size
- lag : 'lagged', 'centered', or 'leading'
- location of window relative to current position
-
- Returns
- -------
- mk : array
- k-th moving non-central moment, with same shape as x
-
-
- Notes
- -----
- If data x is 2d, then moving moment is calculated for each
- column.
-
- '''
-
- windsize = windowsize
- #if windsize is even should it raise ValueError
- if lag == 'lagged':
- #lead = -0 + windsize #windsize//2
- lead = -0# + (windsize-1) + windsize//2
- sl = slice((windsize-1) or None, -2*(windsize-1) or None)
- elif lag == 'centered':
- lead = -windsize//2 #0#-1 #+ #(windsize-1)
- sl = slice((windsize-1)+windsize//2 or None, -(windsize-1)-windsize//2 or None)
- elif lag == 'leading':
- #lead = -windsize +1#+1 #+ (windsize-1)#//2 +1
- lead = -windsize +2 #-windsize//2 +1
- sl = slice(2*(windsize-1)+1+lead or None, -(2*(windsize-1)+lead)+1 or None)
- else:
- raise ValueError
-
- avgkern = (np.ones(windowsize)/float(windowsize))
- xext = expandarr(x, windsize-1)
- #Note: expandarr increases the array size by 2*(windsize-1)
-
- #sl = slice(2*(windsize-1)+1+lead or None, -(2*(windsize-1)+lead)+1 or None)
- print sl
-
- if xext.ndim == 1:
- return np.correlate(xext**k, avgkern, 'full')[sl]
- #return np.correlate(xext**k, avgkern, 'same')[windsize-lead:-(windsize+lead)]
- else:
- print xext.shape
- print avgkern[:,None].shape
-
- # try first with 2d along columns, possibly ndim with axis
- return signal.correlate(xext**k, avgkern[:,None], 'full')[sl,:]
-
-
-
-
-
-
-
-#x=0.5**np.arange(10);xm=x-x.mean();a=np.correlate(xm,[1],'full')
-#x=0.5**np.arange(3);np.correlate(x,x,'same')
-##>>> x=0.5**np.arange(10);xm=x-x.mean();a=np.correlate(xm,xo,'full')
-##
-##>>> xo=np.ones(10);d=np.correlate(xo,xo,'full')
-##>>> xo
-##xo=np.ones(10);d=np.correlate(xo,xo,'full')
-##>>> x=np.ones(10);xo=x-x.mean();a=np.correlate(xo,xo,'full')
-##>>> xo=np.ones(10);d=np.correlate(xo,xo,'full')
-##>>> d
-##array([ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 9.,
-## 8., 7., 6., 5., 4., 3., 2., 1.])
-
-
-##def ccovf():
-## pass
-## #x=0.5**np.arange(10);xm=x-x.mean();a=np.correlate(xm,xo,'full')
-
-__all__ = ['movorder', 'movmean', 'movvar', 'movmoment']
-
-if __name__ == '__main__':
-
- print '\ncheckin moving mean and variance'
- nobs = 10
- x = np.arange(nobs)
- ws = 3
- ave = np.array([ 0., 1/3., 1., 2., 3., 4., 5., 6., 7., 8.,
- 26/3., 9])
- va = np.array([[ 0. , 0. ],
- [ 0.22222222, 0.88888889],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.66666667, 2.66666667],
- [ 0.22222222, 0.88888889],
- [ 0. , 0. ]])
- ave2d = np.c_[ave, 2*ave]
- print movmean(x, windowsize=ws, lag='lagged')
- print movvar(x, windowsize=ws, lag='lagged')
- print [np.var(x[i-ws:i]) for i in range(ws, nobs)]
- m1 = movmoment(x, 1, windowsize=3, lag='lagged')
- m2 = movmoment(x, 2, windowsize=3, lag='lagged')
- print m1
- print m2
- print m2 - m1*m1
-
- # this implicitly also tests moment
- assert_array_almost_equal(va[ws-1:,0],
- movvar(x, windowsize=3, lag='leading'))
- assert_array_almost_equal(va[ws//2:-ws//2+1,0],
- movvar(x, windowsize=3, lag='centered'))
- assert_array_almost_equal(va[:-ws+1,0],
- movvar(x, windowsize=ws, lag='lagged'))
-
-
-
- print '\nchecking moving moment for 2d (columns only)'
- x2d = np.c_[x, 2*x]
- print movmoment(x2d, 1, windowsize=3, lag='centered')
- print movmean(x2d, windowsize=ws, lag='lagged')
- print movvar(x2d, windowsize=ws, lag='lagged')
- assert_array_almost_equal(va[ws-1:,:],
- movvar(x2d, windowsize=3, lag='leading'))
- assert_array_almost_equal(va[ws//2:-ws//2+1,:],
- movvar(x2d, windowsize=3, lag='centered'))
- assert_array_almost_equal(va[:-ws+1,:],
- movvar(x2d, windowsize=ws, lag='lagged'))
-
- assert_array_almost_equal(ave2d[ws-1:],
- movmoment(x2d, 1, windowsize=3, lag='leading'))
- assert_array_almost_equal(ave2d[ws//2:-ws//2+1],
- movmoment(x2d, 1, windowsize=3, lag='centered'))
- assert_array_almost_equal(ave2d[:-ws+1],
- movmean(x2d, windowsize=ws, lag='lagged'))
-
- from scipy import ndimage
- print ndimage.filters.correlate1d(x2d, np.array([1,1,1])/3., axis=0)
-
-
- #regression test check
-
- xg = np.array([ 0. , 0.1, 0.3, 0.6, 1. , 1.5, 2.1, 2.8, 3.6,
- 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5,
- 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5,
- 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5,
- 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5,
- 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5,
- 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5,
- 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5,
- 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5,
- 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5,
- 85.5, 86.5, 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5,
- 94.5])
-
- assert_array_almost_equal(xg, movmean(np.arange(100), 10,'lagged'))
-
- xd = np.array([ 0.3, 0.6, 1. , 1.5, 2.1, 2.8, 3.6, 4.5, 5.5,
- 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5,
- 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5,
- 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5,
- 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5,
- 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5,
- 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5,
- 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5,
- 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5,
- 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5,
- 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5, 94.5, 95.4,
- 96.2, 96.9, 97.5, 98. , 98.4, 98.7, 98.9, 99. ])
- assert_array_almost_equal(xd, movmean(np.arange(100), 10,'leading'))
-
- xc = np.array([ 1.36363636, 1.90909091, 2.54545455, 3.27272727,
- 4.09090909, 5. , 6. , 7. ,
- 8. , 9. , 10. , 11. ,
- 12. , 13. , 14. , 15. ,
- 16. , 17. , 18. , 19. ,
- 20. , 21. , 22. , 23. ,
- 24. , 25. , 26. , 27. ,
- 28. , 29. , 30. , 31. ,
- 32. , 33. , 34. , 35. ,
- 36. , 37. , 38. , 39. ,
- 40. , 41. , 42. , 43. ,
- 44. , 45. , 46. , 47. ,
- 48. , 49. , 50. , 51. ,
- 52. , 53. , 54. , 55. ,
- 56. , 57. , 58. , 59. ,
- 60. , 61. , 62. , 63. ,
- 64. , 65. , 66. , 67. ,
- 68. , 69. , 70. , 71. ,
- 72. , 73. , 74. , 75. ,
- 76. , 77. , 78. , 79. ,
- 80. , 81. , 82. , 83. ,
- 84. , 85. , 86. , 87. ,
- 88. , 89. , 90. , 91. ,
- 92. , 93. , 94. , 94.90909091,
- 95.72727273, 96.45454545, 97.09090909, 97.63636364])
- assert_array_almost_equal(xc, movmean(np.arange(100), 11,'centered'))
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/notes_organize.txt b/statsmodels/scikits/statsmodels/sandbox/tsa/notes_organize.txt
deleted file mode 100644
index 9f57b29..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/notes_organize.txt
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
-scikits.statsmodels.sandbox.tsa.kalmanf
----------------------------------------
-ARMA : ARMA model using the exact Kalman Filter
-StateSpaceModel :
-kalmanfilter : Returns the negative log-likelihood of y
-conditional on the information set
-kalmansmooth :
-updatematrices : TODO: change API, update names
-
-
-scikits.statsmodels.sandbox.tsa.arima
--------------------------------------
-
-runs ok, no refactoring bugs
-has examples and monte carlo that can be split up into example files
-
-ARIMA : currently ARMA only, no differencing used - no I
-arma2ar : get the AR representation of an ARMA process
-arma2ma : get the impulse response function (MA representation) for
-ARMA process
-arma_acf : theoretical autocovariance function of ARMA process
-arma_acovf : theoretical autocovariance function of ARMA process
-arma_generate_sample : generate an random sample of an ARMA process
-arma_impulse_response : get the impulse response function (MA
-representation) for ARMA process
-arma_pacf : partial autocorrelation function of an ARMA process
-deconvolve : Deconvolves divisor out of signal, division of
-polynomials for n terms
-index2lpol : expand coefficients to lag poly
-lpol2index : remove zeros from lagpolynomial, squeezed
-representation with index
-mcarma22 : run Monte Carlo for ARMA(2,2)
-
-
-scikits.statsmodels.sandbox.tsa.varma
--------------------------------------
-
-just filter experiments
-needed to fix import for acf example
-
-VAR : multivariate linear filter
-VARMA : multivariate linear filter
-
-scikits.statsmodels.sandbox.tsa.varma_tools
--------------------------------------------
-
-Helper and filter functions for VAR and VARMA, and basic VAR class
-needed import fix in top of module
-maybe rename to varma_process
-in "main" example for VarmaPoly, and some Var fit
-Var could be used for Granger Causality tests, otherwise it's pretty limited
-
-Var :
- simultaneous OLS estimation
-VarmaPoly : class to keep track of Varma polynomial format
- working with and transforming VARMA Lag-Polynomials (3d)
-ar2full : make reduced lagpolynomial into a right side lagpoly array
-ar2lhs : convert full (rhs) lagpolynomial into a reduced, left side
-lagpoly array
-padone : pad with zeros along one axis, currently only axis=0
-trimone : trim number of array elements along one axis
-varfilter : apply an autoregressive filter to a series x
-vargenerate : generate an VAR process with errors u
-varinversefilter : creates inverse ar filter (MA representation) recursively
-
-
-scikits.statsmodels.sandbox.tsa.try_fi
---------------------------------------
-
-(not included by script that generates this list)
-various functions to build lag-polynomials for fractional and seasonal integration
-and function ar2arma minimizes distance in terms of impulse response function
-
-move these to a module or rename
-
-scikits.statsmodels.sandbox.tsa.try_var_convolve.py
----------------------------------------------------
-
-(not included by script that generates this list)
-two functions:
-arfilter : autoregressive filter for 1d, 2d and 3d
-fftconvolve : multidimensional filtering using fft
-
-many examples, but I'm not sure this (fft) is correct
-incompletely copied for interpreter session
-currently raises exception because a variable (imp) is not defined
-
-scikits.statsmodels.sandbox.tsa.try_var_convolve.py
----------------------------------------------------
-
-(not included by script that generates this list)
-includes functions for
-detrending,
-(theoretical) acovf and similar for special cases
-acf plot functions
-
-(partially copied from matplotlib.mlab)
-
-currently exception: FIXED
-uses arima.ARIMA class without data in constructor, and order now has 3 values and
-is keyword with tuple as value
-
-move plot function to new graphics directory ?
-
-
-scikits.statsmodels.sandbox.regression.mle
-------------------------------------------
-
-one refactoring bug fixed, because arima.ARIMA needs data, use class method instead
-runs without exception, but I didn't look at any results
-"main" has quite a lot
-
-AR : Notes
-Arma : univariate Autoregressive Moving Average model
-Garch : Garch model gjrgarch (t-garch)
-Garch0 : Garch model,
-GarchX : Garch model,
-LikelihoodModel : Likelihood model is a subclass of Model.
-TSMLEModel : univariate time series model for estimation with
-maximum likelihood
-garchplot :
-generate_garch : simulate standard garch
-generate_gjrgarch : simulate gjr garch process
-generate_kindofgarch : simulate garch like process but not squared
-errors in arma
-gjrconvertparams : flat to matrix
-loglike_GARCH11 :
-miso_lfilter : use nd convolution to merge inputs,
-normloglike :
-test_gjrgarch :
-test_misofilter :
-
-Other
------
-diffusion: continuous time processes, produce nice graphs but parameterization is
-a bit inconsistent.
-
-
-script files
-============
-
-sandbox/tsa/try_arma_more.py
-----------------------------
-
-imports scikits.talkbox which is not compiled against my current numpy and doesn't
-run
-contains
-arma_periodogram : theoretical periodogram
-
-
-Proposed Structure (preliminary)
-================================
-
-arima_estimation
-----------------
-ARIMA class for estimation, wrapper or containing different estimators
-other wrappers: here or in separate ???
- - support for choosing lag-length
-
-
-arma_process
-------------
-all theoretical properties for given parameters
-simulation method with options: initial conditions, errors, (?) not sure what else
-
-varma_process
--------------
-including VarmaPoly and impulse response functions
-
-filters
--------
-miso_filter (should be in cython eventually)
-ar_filter : fast VAR filter with convolution or fft convolution
-(not sure what's the relationship between the two)
-others ???
-
-stattools
----------
-empirical properties
-acf, ...
-
-tsatools
---------
-helper functions
-lagmat
-detrend ???
-
-others, unclear
----------------
-???
-
-open questions
-==============
-
-support for exog
-----------------
-is incomplete or missing from some implementations
-not clear parameterization
-- ARMAX A(L)y_t = C(L)x_t + B(L)e_t
-- ARMAX-simple A(L)y_t = beta x_t + B(L)e_t
- Note: covers previous version by extending x_t
-
-- ARMA residuals y_t = beta x_t + u_t, and A(L)u_t = B(L)e_t
-- ARMAX 2-step A(L)(y_t - beta x_t) = B(L)e_t
- Note: looks the same as ARMA residuals, implies
- A(L)y_t = A(L)x_t + B(L)e_t
-
-- ARMAX A(L)(y_t - A^{-1}(L) C(L) x_t) = B(L)e_t
- this doesn't look useful, unless we cutoff A^{-1}(L)
-
-problem: signal.lfilter can only handle ARMAX residuals model (I think)
-deterministic trend have ARMAX-simple model, e.g. in unit root tests
-
-
-support for seasonal and "sparse" lag-polynomials
--------------------------------------------------
-- fit functions need support for different lag structures,
- e.g. zeros, multiplicative
-- support for pre-filters, e.g. (seasonal) differencing
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/try_arma_more.py b/statsmodels/scikits/statsmodels/sandbox/tsa/try_arma_more.py
deleted file mode 100644
index 8e2a41e..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/try_arma_more.py
+++ /dev/null
@@ -1,165 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Periodograms for ARMA and time series
-
-theoretical periodogram of ARMA process and different version
-of periodogram estimation
-
-uses scikits.talkbox and matplotlib
-
-
-Created on Wed Oct 14 23:02:19 2009
-
-Author: josef-pktd
-"""
-
-import numpy as np
-from scipy import signal, ndimage
-import matplotlib.mlab as mlb
-import matplotlib.pyplot as plt
-
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample, arma_periodogram
-from scikits.statsmodels.tsa.stattools import acovf
-hastalkbox = False
-try:
- import scikits.talkbox as stb
- import scikits.talkbox.spectral.basic as stbs
-except:
- hastalkbox = False
-
-ar = [1., -0.7]#[1,0,0,0,0,0,0,-0.7]
-ma = [1., 0.3]
-
-ar = np.convolve([1.]+[0]*50 +[-0.6], ar)
-ar = np.convolve([1., -0.5]+[0]*49 +[-0.3], ar)
-
-n_startup = 1000
-nobs = 1000
-# throwing away samples at beginning makes sample more "stationary"
-
-xo = arma_generate_sample(ar,ma,n_startup+nobs)
-x = xo[n_startup:]
-
-#moved to tsa.arima_process
-#def arma_periodogram(ar, ma, **kwds):
-# '''periodogram for ARMA process given by lag-polynomials ar and ma
-#
-# Parameters
-# ----------
-# ar : array_like
-# autoregressive lag-polynomial with leading 1 and lhs sign
-# ma : array_like
-# moving average lag-polynomial with leading 1
-# kwds : options
-# options for scipy.signal.freqz
-# default: worN=None, whole=0
-#
-# Returns
-# -------
-# w : array
-# frequencies
-# sd : array
-# periodogram, spectral density
-#
-# Notes
-# -----
-# Normalization ?
-#
-# '''
-# w, h = signal.freqz(ma, ar, **kwds)
-# sd = np.abs(h)**2/np.sqrt(2*np.pi)
-# if np.sum(np.isnan(h)) > 0:
-# # this happens with unit root or seasonal unit root'
-# print 'Warning: nan in frequency response h'
-# return w, sd
-
-plt.figure()
-plt.plot(x)
-
-rescale = 0
-
-w, h = signal.freqz(ma, ar)
-sd = np.abs(h)**2/np.sqrt(2*np.pi)
-
-if np.sum(np.isnan(h)) > 0:
- # this happens with unit root or seasonal unit root'
- print 'Warning: nan in frequency response h'
- h[np.isnan(h)] = 1.
- rescale = 0
-
-
-
-#replace with signal.order_filter ?
-pm = ndimage.filters.maximum_filter(sd, footprint=np.ones(5))
-maxind = np.nonzero(pm == sd)
-print 'local maxima frequencies'
-wmax = w[maxind]
-sdmax = sd[maxind]
-
-
-plt.figure()
-plt.subplot(2,3,1)
-if rescale:
- plt.plot(w, sd/sd[0], '-', wmax, sdmax/sd[0], 'o')
-# plt.plot(w, sd/sd[0], '-')
-# plt.hold()
-# plt.plot(wmax, sdmax/sd[0], 'o')
-else:
- plt.plot(w, sd, '-', wmax, sdmax, 'o')
-# plt.hold()
-# plt.plot(wmax, sdmax, 'o')
-
-plt.title('DGP')
-
-sdm, wm = mlb.psd(x)
-sdm = sdm.ravel()
-pm = ndimage.filters.maximum_filter(sdm, footprint=np.ones(5))
-maxind = np.nonzero(pm == sdm)
-
-plt.subplot(2,3,2)
-if rescale:
- plt.plot(wm,sdm/sdm[0], '-', wm[maxind], sdm[maxind]/sdm[0], 'o')
-else:
- plt.plot(wm, sdm, '-', wm[maxind], sdm[maxind], 'o')
-plt.title('matplotlib')
-
-if hastalkbox:
- sdp, wp = stbs.periodogram(x)
- plt.subplot(2,3,3)
-
- if rescale:
- plt.plot(wp,sdp/sdp[0])
- else:
- plt.plot(wp, sdp)
- plt.title('stbs.periodogram')
-
-xacov = acovf(x, unbiased=False)
-plt.subplot(2,3,4)
-plt.plot(xacov)
-plt.title('autocovariance')
-
-nr = len(x)#*2/3
-#xacovfft = np.fft.fft(xacov[:nr], 2*nr-1)
-xacovfft = np.fft.fft(np.correlate(x,x,'full'))
-#abs(xacovfft)**2 or equivalently
-xacovfft = xacovfft * xacovfft.conj()
-
-plt.subplot(2,3,5)
-if rescale:
- plt.plot(xacovfft[:nr]/xacovfft[0])
-else:
- plt.plot(xacovfft[:nr])
-
-plt.title('fft')
-
-if hastalkbox:
- sdpa, wpa = stbs.arspec(x, 50)
- plt.subplot(2,3,6)
-
- if rescale:
- plt.plot(wpa,sdpa/sdpa[0])
- else:
- plt.plot(wpa, sdpa)
- plt.title('stbs.arspec')
-
-
-#plt.show()
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/try_fi.py b/statsmodels/scikits/statsmodels/sandbox/tsa/try_fi.py
deleted file mode 100644
index e8dd167..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/try_fi.py
+++ /dev/null
@@ -1,80 +0,0 @@
-
-'''
-using lfilter to get fractional integration polynomial (1-L)^d, d<1
-`ri` is (1-L)^(-d), d<1
-
-second part in here is ar2arma
-
-only examples left
-
-'''
-
-import numpy as np
-#from numpy.testing import assert_array_almost_equal
-from scipy.special import gamma, gammaln
-from scipy import signal
-
-#from scikits.statsmodels.sandbox import tsa
-from scikits.statsmodels.tsa.arima_process import arma_impulse_response
-
-#--------------------
-# functions have been moved to arima_process
-from scikits.statsmodels.tsa.arima_process import (lpol_fiar, lpol_fima, lpol_sdiff,
- ar2arma)
-#-----------------------------------
-
-
-
-if __name__ == '__main__':
- d = 0.4
- n = 1000
- j = np.arange(n*10)
- ri0 = gamma(d+j)/(gamma(j+1)*gamma(d))
- #ri = np.exp(gammaln(d+j) - gammaln(j+1) - gammaln(d)) (d not -d)
- ri = lpol_fima(d, n=n) # get_ficoefs(d, n=n) old naming?
- riinv = signal.lfilter([1], ri, [1]+[0]*(n-1))#[[5,10,20,25]]
- '''
- array([-0.029952 , -0.01100641, -0.00410998, -0.00299859])
- >>> d=0.4; j=np.arange(1000);ri=gamma(d+j)/(gamma(j+1)*gamma(d))
- >>> # (1-L)^d, d<1 is
- >>> lfilter([1], ri, [1]+[0]*30)
- array([ 1. , -0.4 , -0.12 , -0.064 , -0.0416 ,
- -0.029952 , -0.0229632 , -0.01837056, -0.01515571, -0.01279816,
- -0.01100641, -0.0096056 , -0.00848495, -0.00757118, -0.00681406,
- -0.00617808, -0.0056375 , -0.00517324, -0.00477087, -0.00441934,
- -0.00410998, -0.00383598, -0.00359188, -0.00337324, -0.00317647,
- -0.00299859, -0.00283712, -0.00269001, -0.00255551, -0.00243214,
- -0.00231864])
- >>> # verified for points [[5,10,20,25]] at 4 decimals with Bhardwaj, Swanson, Journal of Eonometrics 2006
- '''
- print lpol_fiar(0.4, n=20)
- print lpol_fima(-0.4, n=20)
- print np.sum((lpol_fima(-0.4, n=n)[1:] + riinv[1:])**2) #different signs
- print np.sum((lpol_fiar(0.4, n=n)[1:] - riinv[1:])**2) #corrected signs
-
- #test is now in statsmodels.tsa.tests.test_arima_process
- from scikits.statsmodels.tsa.tests.test_arima_process import test_fi
- test_fi()
-
- ar_true = [1, -0.4]
- ma_true = [1, 0.5]
-
-
- ar_desired = arma_impulse_response(ma_true, ar_true)
- ar_app, ma_app, res = ar2arma(ar_desired, 2,1, n=100, mse='ar', start=[0.1])
- print ar_app, ma_app
- ar_app, ma_app, res = ar2arma(ar_desired, 2,2, n=100, mse='ar', start=[-0.1, 0.1])
- print ar_app, ma_app
- ar_app, ma_app, res = ar2arma(ar_desired, 2,3, n=100, mse='ar')#, start = [-0.1, 0.1])
- print ar_app, ma_app
-
- slow = 1
- if slow:
- ar_desired = lpol_fiar(0.4, n=100)
- ar_app, ma_app, res = ar2arma(ar_desired, 3, 1, n=100, mse='ar')#, start = [-0.1, 0.1])
- print ar_app, ma_app
- ar_app, ma_app, res = ar2arma(ar_desired, 10, 10, n=100, mse='ar')#, start = [-0.1, 0.1])
- print ar_app, ma_app
-
-
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/try_var_convolve.py b/statsmodels/scikits/statsmodels/sandbox/tsa/try_var_convolve.py
deleted file mode 100644
index 8440379..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/try_var_convolve.py
+++ /dev/null
@@ -1,360 +0,0 @@
-# -*- coding: utf-8 -*-
-"""trying out VAR filtering and multidimensional fft
-
-Note: second half is copy and paste and doesn't run as script
-incomplete definitions of variables, some I created in shell
-
-Created on Thu Jan 07 12:23:40 2010
-
-Author: josef-pktd
-
-update 2010-10-22
-2 arrays were not defined, copied from fft_filter.log.py but I didn't check
-what the results are.
-Runs now without raising exception
-"""
-
-import numpy as np
-from numpy.testing import assert_equal
-from scipy import signal
-from scipy.signal.signaltools import _centered as trim_centered
-_centered = trim_centered
-
-
-x = np.arange(40).reshape((2,20)).T
-x = np.arange(60).reshape((3,20)).T
-a3f = np.array([[[0.5, 1.], [1., 0.5]],
- [[0.5, 1.], [1., 0.5]]])
-a3f = np.ones((2,3,3))
-
-
-nlags = a3f.shape[0]
-ntrim = nlags//2
-
-y0 = signal.convolve(x,a3f[:,:,0], mode='valid')
-y1 = signal.convolve(x,a3f[:,:,1], mode='valid')
-yf = signal.convolve(x[:,:,None],a3f)
-y = yf[:,1,:] #
-yvalid = yf[ntrim:-ntrim,yf.shape[1]//2,:]
-#same result with fftconvolve
-#signal.fftconvolve(x[:,:,None],a3f).shape
-#signal.fftconvolve(x[:,:,None],a3f)[:,1,:]
-print trim_centered(y, x.shape)
-# this raises an exception:
-#print trim_centered(yf, (x.shape).shape)
-assert_equal(yvalid[:,0], y0.ravel())
-assert_equal(yvalid[:,1], y1.ravel())
-
-from scikits.statsmodels.tsa.filters import arfilter
-#copied/moved to statsmodels.tsa.filters
-def arfilter_old(x, a):
- '''apply an autoregressive filter to a series x
-
- x can be 2d, a can be 1d, 2d, or 3d
-
- Parameters
- ----------
- x : array_like
- data array, 1d or 2d, if 2d then observations in rows
- a : array_like
- autoregressive filter coefficients, ar lag polynomial
- see Notes
-
- Returns
- -------
- y : ndarray, 2d
- filtered array, number of columns determined by x and a
-
- Notes
- -----
-
- In general form this uses the linear filter ::
-
- y = a(L)x
-
- where
- x : nobs, nvars
- a : nlags, nvars, npoly
-
- Depending on the shape and dimension of a this uses different
- Lag polynomial arrays
-
- case 1 : a is 1d or (nlags,1)
- one lag polynomial is applied to all variables (columns of x)
- case 2 : a is 2d, (nlags, nvars)
- each series is independently filtered with its own
- lag polynomial, uses loop over nvar
- case 3 : a is 3d, (nlags, nvars, npoly)
- the ith column of the output array is given by the linear filter
- defined by the 2d array a[:,:,i], i.e. ::
-
- y[:,i] = a(.,.,i)(L) * x
- y[t,i] = sum_p sum_j a(p,j,i)*x(t-p,j)
- for p = 0,...nlags-1, j = 0,...nvars-1,
- for all t >= nlags
-
-
- Note: maybe convert to axis=1, Not
-
- TODO: initial conditions
-
- '''
- x = np.asarray(x)
- a = np.asarray(a)
- if x.ndim == 1:
- x = x[:,None]
- if x.ndim > 2:
- raise ValueError('x array has to be 1d or 2d')
- nvar = x.shape[1]
- nlags = a.shape[0]
- ntrim = nlags//2
- # for x is 2d with ncols >1
-
- if a.ndim == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a[:,None], mode='valid')
- # alternative:
- #return signal.lfilter(a,[1],x.astype(float),axis=0)
- elif a.ndim == 2:
- if min(a.shape) == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a, mode='valid')
-
- # case: independent ar
- #(a bit like recserar in gauss, but no x yet)
- result = np.zeros((x.shape[0]-nlags+1, nvar))
- for i in range(nvar):
- # could also use np.convolve, but easier for swiching to fft
- result[:,i] = signal.convolve(x[:,i], a[:,i], mode='valid')
- return result
-
- elif a.ndim == 3:
- # case: vector autoregressive with lag matrices
-# #not necessary:
-# if np.any(a.shape[1:] != nvar):
-# raise ValueError('if 3d shape of a has to be (nobs,nvar,nvar)')
- yf = signal.convolve(x[:,:,None], a)
- yvalid = yf[ntrim:-ntrim, yf.shape[1]//2,:]
- return yvalid
-
-a3f = np.ones((2,3,3))
-y0ar = arfilter(x,a3f[:,:,0])
-print y0ar, x[1:] + x[:-1]
-yres = arfilter(x,a3f[:,:,:2])
-print np.all(yres == (x[1:,:].sum(1) + x[:-1].sum(1))[:,None])
-
-# don't do these imports, here just for copied fftconvolve
-from scipy.fftpack import fft, ifft, ifftshift, fft2, ifft2, fftn, \
- ifftn, fftfreq
-from numpy import product,array
-
-from scikits.statsmodels.tsa.filters.filtertools import fftconvolveinv as fftconvolve
-#copied/moved to statsmodels.tsa.filters
-def fftconvolve_old(in1, in2, in3=None, mode="full"):
- """Convolve two N-dimensional arrays using FFT. See convolve.
-
- copied from scipy.signal.signaltools, but here used to try out inverse filter
- doesn't work or I can't get it to work
-
- 2010-10-23:
- looks ok to me for 1d,
- from results below with padded data array (fftp)
- but it doesn't work for multidimensional inverse filter (fftn)
- original signal.fftconvolve also uses fftn
-
- """
- s1 = array(in1.shape)
- s2 = array(in2.shape)
- complex_result = (np.issubdtype(in1.dtype, np.complex) or
- np.issubdtype(in2.dtype, np.complex))
- size = s1+s2-1
-
- # Always use 2**n-sized FFT
- fsize = 2**np.ceil(np.log2(size))
- IN1 = fftn(in1,fsize)
- #IN1 *= fftn(in2,fsize) #JP: this looks like the only change I made
- IN1 /= fftn(in2,fsize) # use inverse filter
- # note the inverse is elementwise not matrix inverse
- # is this correct, NO doesn't seem to work for VARMA
- fslice = tuple([slice(0, int(sz)) for sz in size])
- ret = ifftn(IN1)[fslice].copy()
- del IN1
- if not complex_result:
- ret = ret.real
- if mode == "full":
- return ret
- elif mode == "same":
- if product(s1,axis=0) > product(s2,axis=0):
- osize = s1
- else:
- osize = s2
- return _centered(ret,osize)
- elif mode == "valid":
- return _centered(ret,abs(s2-s1)+1)
-
-yff = fftconvolve(x.astype(float)[:,:,None],a3f)
-
-rvs = np.random.randn(500)
-ar1fft = fftconvolve(rvs,np.array([1,-0.8]))
-#ar1fftp = fftconvolve(np.r_[np.zeros(100),rvs,np.zeros(100)],np.array([1,-0.8]))
-ar1fftp = fftconvolve(np.r_[np.zeros(100),rvs],np.array([1,-0.8]))
-ar1lf = signal.lfilter([1], [1,-0.8], rvs)
-
-ar1 = np.zeros(501)
-for i in range(1,501):
- ar1[i] = 0.8*ar1[i-1] + rvs[i-1]
-
-#the previous looks wrong, is for generating ar with delayed error,
-#or maybe for an ma(1) filter, (generating ar and applying ma filter are the same)
-#maybe not since it replicates lfilter and fftp
-#still strange explanation for convolution
-#ok. because this is my fftconvolve, which is an inverse filter (read the namespace!)
-
-#This is an AR filter
-errar1 = np.zeros(501)
-for i in range(1,500):
- errar1[i] = rvs[i] - 0.8*rvs[i-1]
-
-#print ar1[-10:]
-#print ar1fft[-11:-1]
-#print ar1lf[-10:]
-#print ar1[:10]
-#print ar1fft[1:11]
-#print ar1lf[:10]
-#print ar1[100:110]
-#print ar1fft[100:110]
-#print ar1lf[100:110]
-#
-#arloop - lfilter - fftp (padded) are the same
-print '\n compare: \nerrloop - arloop - fft - lfilter - fftp (padded)'
-#print np.column_stack((ar1[1:31],ar1fft[:30], ar1lf[:30]))
-print np.column_stack((errar1[1:31], ar1[1:31],ar1fft[:30], ar1lf[:30],
- ar1fftp[100:130]))
-
-def maxabs(x,y):
- return np.max(np.abs(x-y))
-
-print maxabs(ar1[1:], ar1lf) #0
-print maxabs(ar1[1:], ar1fftp[100:-1]) # around 1e-15
-
-rvs3 = np.random.randn(500,3)
-a3n = np.array([[1,1,1],[-0.8,0.5,0.1]])
-a3n = np.array([[1,1,1],[-0.8,0.0,0.0]])
-a3n = np.array([[1,-1,-1],[-0.8,0.0,0.0]])
-a3n = np.array([[1,0,0],[-0.8,0.0,0.0]])
-a3ne = np.r_[np.ones((1,3)),-0.8*np.eye(3)]
-a3ne = np.r_[np.ones((1,3)),-0.8*np.eye(3)]
-ar13fft = fftconvolve(rvs3,a3n)
-
-ar13 = np.zeros((501,3))
-for i in range(1,501):
- ar13[i] = np.sum(a3n[1,:]*ar13[i-1]) + rvs[i-1]
-
-#changes imp was not defined, not sure what it is supposed to be
-#copied from a .log file
-imp = np.zeros((10,3))
-imp[0]=1
-
-a3n = np.array([[1,0,0],[-0.8,0.0,0.0]])
-fftconvolve(np.r_[np.zeros((100,3)),imp],a3n)[100:]
-a3n = np.array([[1,0,0],[-0.8,-0.50,0.0]])
-fftconvolve(np.r_[np.zeros((100,3)),imp],a3n)[100:]
-
-a3n3 = np.array([[[ 1. , 0. , 0. ],
- [ 0. , 1. , 0. ],
- [ 0. , 0. , 1. ]],
-
- [[-0.8, 0. , 0. ],
- [ 0. , -0.8, 0. ],
- [ 0. , 0. , -0.8]]])
-
-a3n3 = np.array([[[ 1. , 0.5 , 0. ],
- [ 0. , 1. , 0. ],
- [ 0. , 0. , 1. ]],
-
- [[-0.8, 0. , 0. ],
- [ 0. , -0.8, 0. ],
- [ 0. , 0. , -0.8]]])
-ttt = fftconvolve(np.r_[np.zeros((100,3)),imp][:,:,None],a3n3.T)[100:]
-gftt = ttt/ttt[0,:,:]
-
-a3n3 = np.array([[[ 1. , 0 , 0. ],
- [ 0. , 1. , 0. ],
- [ 0. , 0. , 1. ]],
-
- [[-0.8, 0.2 , 0. ],
- [ 0 , 0.0, 0. ],
- [ 0. , 0. , 0.8]]])
-ttt = fftconvolve(np.r_[np.zeros((100,3)),imp][:,:,None],a3n3)[100:]
-gftt = ttt/ttt[0,:,:]
-signal.fftconvolve(np.dstack((imp,imp,imp)),a3n3)[1,:,:]
-
-nobs = 10
-imp = np.zeros((nobs,3))
-imp[1] = 1.
-ar13 = np.zeros((nobs+1,3))
-for i in range(1,nobs+1):
- ar13[i] = np.dot(a3n3[1,:,:],ar13[i-1]) + imp[i-1]
-
-a3n3inv = np.zeros((nobs+1,3,3))
-a3n3inv[0,:,:] = a3n3[0]
-a3n3inv[1,:,:] = -a3n3[1]
-for i in range(2,nobs+1):
- a3n3inv[i,:,:] = np.dot(-a3n3[1],a3n3inv[i-1,:,:])
-
-
-a3n3sy = np.array([[[ 1. , 0 , 0. ],
- [ 0. , 1. , 0. ],
- [ 0. , 0. , 1. ]],
-
- [[-0.8, 0.2 , 0. ],
- [ 0 , 0.0, 0. ],
- [ 0. , 0. , 0.8]]])
-
-nobs = 10
-a = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0.0 ],
- [ -0.1 , -0.8]]])
-
-
-a2n3inv = np.zeros((nobs+1,2,2))
-a2n3inv[0,:,:] = a[0]
-a2n3inv[1,:,:] = -a[1]
-for i in range(2,nobs+1):
- a2n3inv[i,:,:] = np.dot(-a[1],a2n3inv[i-1,:,:])
-
-nobs = 10
-imp = np.zeros((nobs,2))
-imp[0,0] = 1.
-
-#a2 was missing, copied from .log file, not sure if correct
-a2 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0. ],
- [0.1, -0.8]]])
-
-ar12 = np.zeros((nobs+1,2))
-for i in range(1,nobs+1):
- ar12[i] = np.dot(-a2[1,:,:],ar12[i-1]) + imp[i-1]
-
-u = np.random.randn(10,2)
-ar12r = np.zeros((nobs+1,2))
-for i in range(1,nobs+1):
- ar12r[i] = np.dot(-a2[1,:,:],ar12r[i-1]) + u[i-1]
-
-a2inv = np.zeros((nobs+1,2,2))
-a2inv[0,:,:] = a2[0]
-a2inv[1,:,:] = -a2[1]
-for i in range(2,nobs+1):
- a2inv[i,:,:] = np.dot(-a2[1],a2inv[i-1,:,:])
-
-import scipy.stats as stats
-import numpy as np
-nbins = 12
-binProb = np.zeros(nbins) + 1.0/nbins
-binSumProb = np.add.accumulate(binProb)
-print binSumProb
-print stats.gamma.ppf(binSumProb,0.6379,loc=1.6,scale=39.555)
diff --git a/statsmodels/scikits/statsmodels/sandbox/tsa/varma.py b/statsmodels/scikits/statsmodels/sandbox/tsa/varma.py
deleted file mode 100644
index c8c5a93..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/tsa/varma.py
+++ /dev/null
@@ -1,176 +0,0 @@
-'''VAR and VARMA process
-
-this doesn't actually do much, trying out a version for a time loop
-
-alternative representation:
-* textbook, different blocks in matrices
-* Kalman filter
-* VAR, VARX and ARX could be calculated with signal.lfilter
- only tried some examples, not implemented
-
-TODO: try minimizing sum of squares of (Y-Yhat)
-
-Note: filter has smallest lag at end of array and largest lag at beginning,
- be careful for asymmetric lags coefficients
- check this again if it is consistently used
-
-
-changes
-2009-09-08 : separated from movstat.py
-
-Author : josefpkt
-License : BSD
-'''
-
-
-import numpy as np
-from scipy import signal
-#import matplotlib.pylab as plt
-from numpy.testing import assert_array_equal, assert_array_almost_equal
-
-
-#NOTE: this just returns that predicted values given the
-#B matrix in polynomial form.
-#TODO: make sure VAR class returns B/params in this form.
-def VAR(x,B, const=0):
- ''' multivariate linear filter
-
- Parameters
- ----------
- x: (TxK) array
- columns are variables, rows are observations for time period
- B: (PxKxK) array
- b_t-1 is bottom "row", b_t-P is top "row" when printing
- B(:,:,0) is lag polynomial matrix for variable 1
- B(:,:,k) is lag polynomial matrix for variable k
- B(p,:,k) is pth lag for variable k
- B[p,:,:].T corresponds to A_p in Wikipedia
- const: float or array (not tested)
- constant added to autoregression
-
- Returns
- -------
- xhat: (TxK) array
- filtered, predicted values of x array
-
- Notes
- -----
- xhat(t,i) = sum{_p}sum{_k} { x(t-P:t,:) .* B(:,:,i) } for all i = 0,K-1, for all t=p..T
-
- xhat does not include the forecasting observation, xhat(T+1),
- xhat is 1 row shorter than signal.correlate
-
- References
- ----------
- http://en.wikipedia.org/wiki/Vector_Autoregression
- http://en.wikipedia.org/wiki/General_matrix_notation_of_a_VAR(p)
- '''
- p = B.shape[0]
- T = x.shape[0]
- xhat = np.zeros(x.shape)
- for t in range(p,T): #[p+2]:#
-## print p,T
-## print x[t-p:t,:,np.newaxis].shape
-## print B.shape
- #print x[t-p:t,:,np.newaxis]
- xhat[t,:] = const + (x[t-p:t,:,np.newaxis]*B).sum(axis=1).sum(axis=0)
- return xhat
-
-
-def VARMA(x,B,C, const=0):
- ''' multivariate linear filter
-
- x (TxK)
- B (PxKxK)
-
- xhat(t,i) = sum{_p}sum{_k} { x(t-P:t,:) .* B(:,:,i) } +
- sum{_q}sum{_k} { e(t-Q:t,:) .* C(:,:,i) }for all i = 0,K-1
-
- '''
- P = B.shape[0]
- Q = C.shape[0]
- T = x.shape[0]
- xhat = np.zeros(x.shape)
- e = np.zeros(x.shape)
- start = max(P,Q)
- for t in range(start,T): #[p+2]:#
-## print p,T
-## print x[t-p:t,:,np.newaxis].shape
-## print B.shape
- #print x[t-p:t,:,np.newaxis]
- xhat[t,:] = const + (x[t-P:t,:,np.newaxis]*B).sum(axis=1).sum(axis=0) + \
- (e[t-Q:t,:,np.newaxis]*C).sum(axis=1).sum(axis=0)
- e[t,:] = x[t,:] - xhat[t,:]
- return xhat, e
-
-
-if __name__ == '__main__':
-
-
- T = 20
- K = 2
- P = 3
- #x = np.arange(10).reshape(5,2)
- x = np.column_stack([np.arange(T)]*K)
- B = np.ones((P,K,K))
- #B[:,:,1] = 2
- B[:,:,1] = [[0,0],[0,0],[0,1]]
- xhat = VAR(x,B)
- print np.all(xhat[P:,0]==np.correlate(x[:-1,0],np.ones(P))*2)
- #print xhat
-
-
- T = 20
- K = 2
- Q = 2
- P = 3
- const = 1
- #x = np.arange(10).reshape(5,2)
- x = np.column_stack([np.arange(T)]*K)
- B = np.ones((P,K,K))
- #B[:,:,1] = 2
- B[:,:,1] = [[0,0],[0,0],[0,1]]
- C = np.zeros((Q,K,K))
- xhat1 = VAR(x,B, const=const)
- xhat2, err2 = VARMA(x,B,C, const=const)
- print np.all(xhat2 == xhat1)
- print np.all(xhat2[P:,0] == np.correlate(x[:-1,0],np.ones(P))*2+const)
-
- C[1,1,1] = 0.5
- xhat3, err3 = VARMA(x,B,C)
-
- x = np.r_[np.zeros((P,K)),x] #prepend inital conditions
- xhat4, err4 = VARMA(x,B,C)
-
- C[1,1,1] = 1
- B[:,:,1] = [[0,0],[0,0],[0,1]]
- xhat5, err5 = VARMA(x,B,C)
- #print err5
-
- #in differences
- #VARMA(np.diff(x,axis=0),B,C)
-
-
- #Note:
- # * signal correlate applies same filter to all columns if kernel.shape[1] possible to run signal.correlate K times with different filters,
- # see the following example, which replicates VAR filter
- x0 = np.column_stack([np.arange(T), 2*np.arange(T)])
- B[:,:,0] = np.ones((P,K))
- B[:,:,1] = np.ones((P,K))
- B[1,1,1] = 0
- xhat0 = VAR(x0,B)
- xcorr00 = signal.correlate(x0,B[:,:,0])#[:,0]
- xcorr01 = signal.correlate(x0,B[:,:,1])
- print np.all(signal.correlate(x0,B[:,:,0],'valid')[:-1,0]==xhat0[P:,0])
- print np.all(signal.correlate(x0,B[:,:,1],'valid')[:-1,0]==xhat0[P:,1])
-
- #import error
- #from movstat import acovf, acf
- from scikits.statsmodels.tsa.stattools import acovf, acf
- aav = acovf(x[:,0])
- print aav[0] == np.var(x[:,0])
- aac = acf(x[:,0])
-
diff --git a/statsmodels/scikits/statsmodels/sandbox/utils_old.py b/statsmodels/scikits/statsmodels/sandbox/utils_old.py
deleted file mode 100644
index 5cf0373..0000000
--- a/statsmodels/scikits/statsmodels/sandbox/utils_old.py
+++ /dev/null
@@ -1,155 +0,0 @@
-import numpy as np
-import numpy.linalg as L
-import scipy.interpolate
-import scipy.linalg
-
-__docformat__ = 'restructuredtext'
-
-def recipr(X):
- """
- Return the reciprocal of an array, setting all entries less than or
- equal to 0 to 0. Therefore, it presumes that X should be positive in
- general.
- """
- x = np.maximum(np.asarray(X).astype(np.float64), 0)
- return np.greater(x, 0.) / (x + np.less_equal(x, 0.))
-
-def mad(a, c=0.6745, axis=0):
- """
- Median Absolute Deviation:
-
- median(abs(a - median(a))) / c
-
- """
-
- _shape = a.shape
- a.shape = np.product(a.shape,axis=0)
- m = np.median(np.fabs(a - np.median(a))) / c
- a.shape = _shape
- return m
-
-def recipr0(X):
- """
- Return the reciprocal of an array, setting all entries equal to 0
- as 0. It does not assume that X should be positive in
- general.
- """
- test = np.equal(np.asarray(X), 0)
- return np.where(test, 0, 1. / X)
-
-def clean0(matrix):
- """
- Erase columns of zeros: can save some time in pseudoinverse.
- """
- colsum = np.add.reduce(matrix**2, 0)
- val = [matrix[:,i] for i in np.flatnonzero(colsum)]
- return np.array(np.transpose(val))
-
-def rank(X, cond=1.0e-12):
- """
- Return the rank of a matrix X based on its generalized inverse,
- not the SVD.
- """
- X = np.asarray(X)
- if len(X.shape) == 2:
- D = scipy.linalg.svdvals(X)
- return int(np.add.reduce(np.greater(D / D.max(), cond).astype(np.int32)))
- else:
- return int(not np.alltrue(np.equal(X, 0.)))
-
-def fullrank(X, r=None):
- """
- Return a matrix whose column span is the same as X.
-
- If the rank of X is known it can be specified as r -- no check
- is made to ensure that this really is the rank of X.
-
- """
-
- if r is None:
- r = rank(X)
-
- V, D, U = L.svd(X, full_matrices=0)
- order = np.argsort(D)
- order = order[::-1]
- value = []
- for i in range(r):
- value.append(V[:,order[i]])
- return np.asarray(np.transpose(value)).astype(np.float64)
-
-class StepFunction:
- """
- A basic step function: values at the ends are handled in the simplest
- way possible: everything to the left of x[0] is set to ival; everything
- to the right of x[-1] is set to y[-1].
-
- Examples
- --------
- >>> from numpy import arange
- >>> from nipy.fixes.scipy.stats.models.utils import StepFunction
- >>>
- >>> x = arange(20)
- >>> y = arange(20)
- >>> f = StepFunction(x, y)
- >>>
- >>> print f(3.2)
- 3.0
- >>> print f([[3.2,4.5],[24,-3.1]])
- [[ 3. 4.]
- [ 19. 0.]]
- """
-
- def __init__(self, x, y, ival=0., sorted=False):
-
- _x = np.asarray(x)
- _y = np.asarray(y)
-
- if _x.shape != _y.shape:
- raise ValueError, 'in StepFunction: x and y do not have the same shape'
- if len(_x.shape) != 1:
- raise ValueError, 'in StepFunction: x and y must be 1-dimensional'
-
- self.x = np.hstack([[-np.inf], _x])
- self.y = np.hstack([[ival], _y])
-
- if not sorted:
- asort = np.argsort(self.x)
- self.x = np.take(self.x, asort, 0)
- self.y = np.take(self.y, asort, 0)
- self.n = self.x.shape[0]
-
- def __call__(self, time):
-
- tind = np.searchsorted(self.x, time) - 1
- _shape = tind.shape
- return self.y[tind]
-
-def ECDF(values):
- """
- Return the ECDF of an array as a step function.
- """
- x = np.array(values, copy=True)
- x.sort()
- x.shape = np.product(x.shape,axis=0)
- n = x.shape[0]
- y = (np.arange(n) + 1.) / n
- return StepFunction(x, y)
-
-def monotone_fn_inverter(fn, x, vectorized=True, **keywords):
- """
- Given a monotone function x (no checking is done to verify monotonicity)
- and a set of x values, return an linearly interpolated approximation
- to its inverse from its values on x.
- """
-
- if vectorized:
- y = fn(x, **keywords)
- else:
- y = []
- for _x in x:
- y.append(fn(_x, **keywords))
- y = np.array(y)
-
- a = np.argsort(y)
-
- return scipy.interpolate.interp1d(y[a], x[a])
diff --git a/statsmodels/scikits/statsmodels/src/bspline_ext.c b/statsmodels/scikits/statsmodels/src/bspline_ext.c
deleted file mode 100644
index 7ffc2a9..0000000
--- a/statsmodels/scikits/statsmodels/src/bspline_ext.c
+++ /dev/null
@@ -1,134 +0,0 @@
-#include "Python.h"
-#include "numpy/arrayobject.h"
-
-/* function prototypes */
-
-double *bspline(double*, double*, int, double *, int, int, int, int, int);
-void bspline_gram(double*, double *, int, int, int, int);
-void invband_compute(double*, double *, int, int);
-
-
-static PyObject *BSpline_Invband(PyObject *self, PyObject *args)
-{
-
- double *data;
- double *L_data;
- npy_intp *dims_invband;
- npy_intp *dims_L;
- PyArrayObject *L = NULL;
- PyArrayObject *invband = NULL;
-
- if(!PyArg_ParseTuple(args, "O", &L))
- goto exit;
-
- dims_L = PyArray_DIMS(L);
- L_data = (double *)PyArray_DATA(L);
-
- dims_invband = calloc(2, sizeof(npy_intp));
- dims_invband[0] = dims_L[0];
- dims_invband[1] = dims_L[1];
-
- invband = (PyArrayObject*)PyArray_SimpleNew(2, dims_invband, PyArray_DOUBLE);
- data = (double *)PyArray_DATA(invband);
- free(dims_invband);
-
- invband_compute(data, L_data, (int)dims_L[0], (int)dims_L[1]);
-
-exit:
-
- return PyErr_Occurred() ? NULL : (PyObject*)Py_BuildValue("O", invband);
-
-}
-
-
-
-static PyObject *BSpline_Gram(PyObject *self, PyObject *args)
-{
-
- int m;
- int dl;
- int dr;
- double *knots;
- double *data;
- npy_intp *nknots;
- npy_intp *dims_gram;
- PyArrayObject *knots_array = NULL;
- PyArrayObject *gram_array = NULL;
-
- if(!PyArg_ParseTuple(args, "Oiii", &knots_array, &m, &dl, &dr))
- goto exit;
-
- nknots = PyArray_DIMS(knots_array);
- knots = (double *)PyArray_DATA(knots_array);
-
- dims_gram = calloc(2, sizeof(npy_intp));
- dims_gram[0] = (int)nknots[0] - m;
- dims_gram[1] = m;
-
- gram_array = (PyArrayObject*)PyArray_SimpleNew(2, dims_gram, PyArray_DOUBLE);
- data = (double *)PyArray_DATA(gram_array);
- free(dims_gram);
-
- bspline_gram(data, knots, (int)nknots[0], m, dl, dr);
-
-exit:
-
- return PyErr_Occurred() ? NULL : (PyObject*)Py_BuildValue("O", gram_array);
-
-}
-
-
-static PyObject *BSpline_Evaluate(PyObject *self, PyObject *args)
-{
-
- int i;
- int upper;
- int lower;
- int m;
- int d;
- double *knots;
- double *x;
- double *data;
- npy_intp *nknots;
- npy_intp *nx;
- npy_intp dims_basis[2];
- PyArrayObject *knots_array = NULL;
- PyArrayObject *x_array = NULL;
- PyArrayObject *basis_array = NULL;
-
- if(!PyArg_ParseTuple(args, "OOiiii", &x_array, &knots_array, &m, &d, &lower, &upper))
- goto exit;
-
- nknots = PyArray_DIMS(knots_array);
- nx = PyArray_DIMS(x_array);
-
- knots = (double *)PyArray_DATA(knots_array);
- x = (double *)PyArray_DATA(x_array);
-
- dims_basis[0] = upper-lower;
- dims_basis[1] = (int)nx[0];
- basis_array = (PyArrayObject*)PyArray_SimpleNew(2, dims_basis, PyArray_DOUBLE);
- data = (double *)PyArray_DATA(basis_array);
-
- bspline(data, x, (int)nx[0], knots, (int)nknots[0], m, d, lower, upper);
-
-exit:
-
- return PyErr_Occurred() ? NULL : (PyObject*)Py_BuildValue("O", basis_array);
-
-}
-
-
-static PyMethodDef BSplineMethods[] =
-{
- { "evaluate", BSpline_Evaluate, METH_VARARGS, NULL },
- { "gram", BSpline_Gram, METH_VARARGS, NULL },
- { "invband", BSpline_Invband, METH_VARARGS, NULL },
- { NULL, NULL, 0, NULL},
-};
-
-PyMODINIT_FUNC init_hbspline(void)
-{
- Py_InitModule("_hbspline", BSplineMethods);
- import_array();
-}
diff --git a/statsmodels/scikits/statsmodels/src/bspline_impl.c b/statsmodels/scikits/statsmodels/src/bspline_impl.c
deleted file mode 100644
index 7ee8a0e..0000000
--- a/statsmodels/scikits/statsmodels/src/bspline_impl.c
+++ /dev/null
@@ -1,271 +0,0 @@
-
-#include
-
-/* function prototypes */
-
-double *bspline(double *, double *, int, double *, int, int, int, int, int);
-double bspline_quad(double *, int, int, int, int, int, int);
-double *bspline_prod(double *, int, double *, int, int, int, int, int, int);
-void bspline_gram(double *, double *, int, int, int, int);
-void invband_compute(double *, double *, int, int);
-
-
-double *bspline(double *output, double *x, int nx,
- double *knots, int nknots,
- int m, int d, int lower, int upper){
-
- int nbasis;
- int index, i, j, k;
- double *result, *b, *b0, *b1;
- double *f0, *f1;
- double denom;
-
- nbasis = upper - lower;
-
- result = output;
- f0 = (double *) malloc(sizeof(double) * nx);
- f1 = (double *) malloc(sizeof(double) * nx);
-
- if (m == 1) {
- for(i=0; i= knots[index]) * (x[k] < knots[index+1]);
- result++;
- }
- }
- else {
- for (k=0; k nknots - 1) { upper = nknots-1; }
-
- for (k=lower; k 0) { data[j*n+i] = 0;}
- }
- }
-
- for (i=n-1; i>=0; i--) {
- for (j=1; j <= (m= 0.00 and ad2a < 0.200):
- pval = 1 - np.exp(-13.436 + 101.14 * ad2a - 223.73 * ad2a**2)
- elif ad2a < 0.340:
- pval = 1 - np.exp(-8.318 + 42.796 * ad2a - 59.938 * ad2a**2)
- elif ad2a < 0.600:
- pval = np.exp(0.9177 - 4.279 * ad2a - 1.38 * ad2a**2)
- elif ad2a <= 13:
- pval = np.exp(1.2937 - 5.709 * ad2a + 0.0186 * ad2a**2)
- else:
- pval = 0.0 # is < 4.9542108058458799e-31
-
- else:
- bounds = np.array([0.0, 0.200, 0.340, 0.600])
-
- pval0 = lambda ad2a: np.nan*np.ones_like(ad2a)
- pval1 = lambda ad2a: 1 - np.exp(-13.436 + 101.14 * ad2a - 223.73 * ad2a**2)
- pval2 = lambda ad2a: 1 - np.exp(-8.318 + 42.796 * ad2a - 59.938 * ad2a**2)
- pval3 = lambda ad2a: np.exp(0.9177 - 4.279 * ad2a - 1.38 * ad2a**2)
- pval4 = lambda ad2a: np.exp(1.2937 - 5.709 * ad2a + 0.0186 * ad2a**2)
-
- pvalli = [pval0, pval1, pval2, pval3, pval4]
-
- idx = np.searchsorted(bounds, ad2a, side='right')
- pval = np.nan*np.ones_like(ad2a)
- for i in range(5):
- mask = (idx == i)
- pval[mask] = pvalli[i](ad2a[mask])
-
- return ad2, pval
-
-
-if __name__ == '__main__':
- x = np.array([-0.1184, -1.3403, 0.0063, -0.612 , -0.3869, -0.2313, -2.8485,
- -0.2167, 0.4153, 1.8492, -0.3706, 0.9726, -0.1501, -0.0337,
- -1.4423, 1.2489, 0.9182, -0.2331, -0.6182, 0.183 ])
- r_res = np.array([0.58672353588821502, 0.1115380760041617])
- ad2, pval = ad_normal(x)
- print ad2, pval
- print r_res - [ad2, pval]
-
- print anderson_statistic((x-x.mean())/x.std(), dist=stats.norm, fit=0)
- print anderson_statistic(x, dist=stats.norm, fit=True)
diff --git a/statsmodels/scikits/statsmodels/stats/api.py b/statsmodels/scikits/statsmodels/stats/api.py
deleted file mode 100644
index 7017a70..0000000
--- a/statsmodels/scikits/statsmodels/stats/api.py
+++ /dev/null
@@ -1,16 +0,0 @@
-
-import diagnostic
-from .diagnostic import (acorr_ljungbox, breaks_cusumolsresid, breaks_hansen,
- CompareCox, CompareJ, compare_cox, compare_j, het_breushpagan,
- HetGoldfeldQuandt, het_goldfeldquandt, het_white,
- recursive_olsresiduals)
-import multicomp
-from .multicomp import (multipletests, fdrcorrection0, fdrcorrection_twostage, tukeyhsd)
-import gof
-from .gof import powerdiscrepancy, gof_chisquare_discrete
-import stattools
-from .stattools import durbin_watson, omni_normtest, jarque_bera
-
-from weightstats import DescrStatsW
-
-from descriptivestats import Describe
diff --git a/statsmodels/scikits/statsmodels/stats/contrast.py b/statsmodels/scikits/statsmodels/stats/contrast.py
deleted file mode 100644
index b044676..0000000
--- a/statsmodels/scikits/statsmodels/stats/contrast.py
+++ /dev/null
@@ -1,204 +0,0 @@
-import numpy as np
-from scipy.stats import f as fdist
-from scipy.stats import t as student_t
-from scikits.statsmodels.tools.tools import clean0, rank, fullrank
-
-
-#TODO: should this be public if it's just a container?
-class ContrastResults(object):
- """
- Container class for looking at contrasts of coefficients in a model.
-
- The class does nothing, it is a container for the results from T and F.
- """
-
- def __init__(self, t=None, F=None, sd=None, effect=None, df_denom=None,
- df_num=None):
- if F is not None:
- self.fvalue = F
- self.df_denom = df_denom
- self.df_num = df_num
- self.pvalue = fdist.sf(F, df_num, df_denom)
- else:
- self.tvalue = t
- self.sd = sd
- self.effect = effect
- self.df_denom = df_denom
- self.pvalue = student_t.sf(np.abs(t), df_denom)
-
- def __array__(self):
- if hasattr(self, "fvalue"):
- return self.fvalue
- else:
- return self.tvalue
-
- def __str__(self):
- if hasattr(self, 'fvalue'):
- return '' % \
- (`self.fvalue`, self.pvalue, self.df_denom, self.df_num)
- else:
- return '' % \
- (`self.effect`, `self.sd`, `self.tvalue`, `self.pvalue`,
- self.df_denom)
-
-class Contrast(object):
- """
- This class is used to construct contrast matrices in regression models.
-
- They are specified by a (term, design) pair. The term, T, is a linear
- combination of columns of the design matrix. The matrix attribute of
- Contrast is a contrast matrix C so that
-
- colspan(dot(D, C)) = colspan(dot(D, dot(pinv(D), T)))
-
- where pinv(D) is the generalized inverse of D. Further, the matrix
-
- Tnew = dot(C, D)
-
- is full rank. The rank attribute is the rank of
-
- dot(D, dot(pinv(D), T))
-
- In a regression model, the contrast tests that E(dot(Tnew, Y)) = 0
- for each column of Tnew.
-
- Parameters
- ----------
- term ; array-like
- design : array-like
-
- Attributes
- ----------
- contrast_matrix
-
- Examples
- ---------
- >>>import numpy.random as R
- >>>import scikits.statsmodels.api as sm
- >>>import numpy as np
- >>>R.seed(54321)
- >>>X = R.standard_normal((40,10))
-
- Get a contrast
-
- >>>new_term = np.column_stack((X[:,0], X[:,2]))
- >>>c = sm.contrast.Contrast(new_term, X)
- >>>test = [[1] + [0]*9, [0]*2 + [1] + [0]*7]
- >>>np.allclose(c.contrast_matrix, test)
- True
-
- Get another contrast
-
- >>>P = np.dot(X, np.linalg.pinv(X))
- >>>resid = np.identity(40) - P
- >>>noise = np.dot(resid,R.standard_normal((40,5)))
- >>>new_term2 = np.column_stack((noise,X[:,2]))
- >>>c2 = Contrast(new_term2, X)
- >>>print c2.contrast_matrix
- [ -1.26424750e-16 8.59467391e-17 1.56384718e-01 -2.60875560e-17
- -7.77260726e-17 -8.41929574e-18 -7.36359622e-17 -1.39760860e-16
- 1.82976904e-16 -3.75277947e-18]
-
- Get another contrast
-
- >>>zero = np.zeros((40,))
- >>>new_term3 = np.column_stack((zero,X[:,2]))
- >>>c3 = sm.contrast.Contrast(new_term3, X)
- >>>test2 = [0]*2 + [1] + [0]*7
- >>>np.allclose(c3.contrast_matrix, test2)
- True
-
- """
- def _get_matrix(self):
- """
- Gets the contrast_matrix property
- """
- if not hasattr(self, "_contrast_matrix"):
- self.compute_matrix()
- return self._contrast_matrix
-
- contrast_matrix = property(_get_matrix)
-
- def __init__(self, term, design):
- self.term = np.asarray(term)
- self.design = np.asarray(design)
-
- def compute_matrix(self):
- """
- Construct a contrast matrix C so that
-
- colspan(dot(D, C)) = colspan(dot(D, dot(pinv(D), T)))
-
- where pinv(D) is the generalized inverse of D=design.
- """
-
- T = self.term
- if T.ndim == 1:
- T = T[:,None]
-
- self.T = clean0(T)
- self.D = self.design
- self._contrast_matrix = contrastfromcols(self.T, self.D)
- try:
- self.rank = self.matrix.shape[1]
- except:
- self.rank = 1
-
-#TODO: fix docstring after usage is settled
-def contrastfromcols(L, D, pseudo=None):
- """
- From an n x p design matrix D and a matrix L, tries
- to determine a p x q contrast matrix C which
- determines a contrast of full rank, i.e. the
- n x q matrix
-
- dot(transpose(C), pinv(D))
-
- is full rank.
-
- L must satisfy either L.shape[0] == n or L.shape[1] == p.
-
- If L.shape[0] == n, then L is thought of as representing
- columns in the column space of D.
-
- If L.shape[1] == p, then L is thought of as what is known
- as a contrast matrix. In this case, this function returns an estimable
- contrast corresponding to the dot(D, L.T)
-
- Note that this always produces a meaningful contrast, not always
- with the intended properties because q is always non-zero unless
- L is identically 0. That is, it produces a contrast that spans
- the column space of L (after projection onto the column space of D).
-
- Parameters
- ----------
- L : array-like
- D : array-like
- """
- L = np.asarray(L)
- D = np.asarray(D)
-
- n, p = D.shape
-
- if L.shape[0] != n and L.shape[1] != p:
- raise ValueError("shape of L and D mismatched")
-
- if pseudo is None:
- pseudo = np.linalg.pinv(D) # D^+ \approx= ((dot(D.T,D))^(-1),D.T)
-
- if L.shape[0] == n:
- C = np.dot(pseudo, L).T
- else:
- C = L
- C = np.dot(pseudo, np.dot(D, C.T)).T
-
- Lp = np.dot(D, C.T)
-
- if len(Lp.shape) == 1:
- Lp.shape = (n, 1)
-
- if rank(Lp) != Lp.shape[1]:
- Lp = fullrank(Lp)
- C = np.dot(pseudo, Lp).T
-
- return np.squeeze(C)
diff --git a/statsmodels/scikits/statsmodels/stats/descriptivestats.py b/statsmodels/scikits/statsmodels/stats/descriptivestats.py
deleted file mode 100644
index e904ad6..0000000
--- a/statsmodels/scikits/statsmodels/stats/descriptivestats.py
+++ /dev/null
@@ -1,365 +0,0 @@
-import sys
-import numpy as np
-from scipy import stats
-#from scikits.statsmodels.iolib.table import SimpleTable
-from scikits.statsmodels.iolib.table import SimpleTable
-
-
-def _kurtosis(a):
- '''wrapper for scipy.stats.kurtosis that returns nan instead of raising Error
-
- missing options
- '''
- try:
- res = stats.kurtosis(a)
- except ValueError:
- res = np.nan
- return res
-
-def _skew(a):
- '''wrapper for scipy.stats.skew that returns nan instead of raising Error
-
- missing options
- '''
- try:
- res = stats.skew(a)
- except ValueError:
- res = np.nan
- return res
-
-class Describe(object):
- '''
- Calculates descriptive statistics for data.
- Defaults to a basic set of statistics, "all" can be specified, or a list can
- be given.
-
- dataset : can be either a structured or ndarray (Larry?), observations in
- rows, variables in columns.
-
-
- '''
- def __init__(self, dataset):
- self.dataset = dataset
-
- #better if this is initially a list to define order, or use an ordered dict
- # First position is the function
- # Second position is the tuple/list of column names/numbers
- # third is are the results in order of the columns
- self.univariate = dict(
- obs = [len, None, None],
- mean = [np.mean, None, None],
- std = [np.std, None, None],
- min = [np.min, None, None],
- max = [np.max, None, None],
- ptp = [np.ptp, None, None],
- var = [np.var, None, None],
- mode_val = [self._mode_val, None, None],
- mode_bin = [self._mode_bin, None, None],
- median = [np.median, None, None],
- skew = [stats.skew, None, None],
- uss = [stats.ss, None, None],
- kurtosis = [stats.kurtosis, None, None],
- percentiles = [self._percentiles, None, None], #BUG: not single value
- #sign_test_M = [self.sign_test_m, None, None],
- #sign_test_P = [self.sign_test_p, None, None]
- )
-#TODO: Basic stats for strings
- #self.strings = dict(
- #unique = [np.unique, None, None],
- #number_uniq = [len(
- #most = [
- #least = [
-
-#TODO: Multivariate
- #self.multivariate = dict(
- #corrcoef(x[, y, rowvar, bias]),
- #cov(m[, y, rowvar, bias]),
- #histogram2d(x, y[, bins, range, normed, weights])
- #)
- self._arraytype = None
- self._columns_list = None
-
- def _percentiles(self,x):
- p = [stats.scoreatpercentile(x,per) for per in
- (1,5,10,25,50,75,90,95,99)]
- return p
- def _mode_val(self,x):
- return stats.mode(x)[0][0]
- def _mode_bin(self,x):
- return stats.mode(x)[1][0]
-
- def _array_typer(self):
- """if not a sctructured array"""
- if not(self.dataset.dtype.names):
- """homogeneous dtype array"""
- self._arraytype = 'homog'
- elif self.dataset.dtype.names:
- """structured or rec array"""
- self._arraytype = 'sctruct'
- else:
- assert self._arraytype == 'sctruct' or self._arraytype == 'homog'
-
- def _is_dtype_like(self, col):
- """
- Check whether self.dataset.[col][0] behaves like a string, numbern unknown.
- `numpy.lib._iotools._is_string_like`
- """
- def string_like():
-#TODO: not sure what the result is if the first item is some type of missing value
- try:
- self.dataset[col][0] + ''
- except (TypeError, ValueError):
- return False
- return True
- def number_like():
- try:
- self.dataset[col][0] + 1.0
- except (TypeError, ValueError):
- return False
- return True
- if number_like()==True and string_like()==False:
- return 'number'
- elif number_like()==False and string_like()==True:
- return 'string'
- else:
- assert (number_like()==True or string_like()==True), '\
- Not sure of dtype'+str(self.dataset[col][0])
-
- #@property
- def summary(self, stats='basic', columns='all', orientation='auto'):
- """
- prints a table of summary statistics and stores the stats.
- stats: The desired statistics, A list[] or 'basic' or 'all' are options
- 'basic' = ('obs', 'mean', 'std', 'min', 'max')
- 'all' = ('obs', 'mean', 'std', 'min', 'max', 'ptp', 'var', 'mode',
- 'meadian', 'skew', 'uss', 'kurtosis', 'percentiles')
- Columns: The columns/variables to report the statistics, default is 'all'
- structured array: specify the column names
- summary(stats='basic', columns=['alpha', 'beta'])
- standard array: Specifiy column numbers (NEED TO TEST)
-
- percentiles currently broken
- mode requires mode_val and mode_bin separately
- """
- if self._arraytype == None:
- self._array_typer()
-
-
- if stats == 'basic':
- stats = ('obs', 'mean', 'std', 'min', 'max')
- elif stats == 'all':
- #stats = self.univariate.keys()
- #dict doesn't keep an order, use full list instead
- stats = ['obs', 'mean', 'std', 'min', 'max', 'ptp', 'var', 'mode_val', 'mode_bin',
- 'median', 'uss', 'skew', 'kurtosis', 'percentiles']
- else:
- for astat in stats:
- pass
- #assert astat in self.univariate
-
- #hack around percentiles multiple output
-
- #bad naming
- import scipy.stats
- #BUG: the following has all per the same per=99
-## perdict = dict(('perc_%2d'%per, [lambda x: scipy.stats.scoreatpercentile(x, per),
-## None, None])
-## for per in (1,5,10,25,50,75,90,95,99))
-
- def _fun(per):
- return lambda x: scipy.stats.scoreatpercentile(x, per)
-
- perdict = dict(('perc_%02d'%per, [_fun(per), None, None])
- for per in (1,5,10,25,50,75,90,95,99))
-
- if 'percentiles' in stats:
- self.univariate.update(perdict)
- idx = stats.index('percentiles')
- stats[idx:idx+1] = sorted(perdict.keys())
-
-
-
- #JP: this doesn't allow a change in sequence, sequence in stats is ignored
- #this is just an if condition
- if any([aitem[1] for aitem in self.univariate.items() if aitem[0] in stats]):
- if columns == 'all':
- self._columns_list = []
- if self._arraytype == 'sctruct':
- self._columns_list = self.dataset.dtype.names
- #self._columns_list = [col for col in self.dataset.dtype.names if
- #(self._is_dtype_like(col)=='number')]
- else:
- self._columns_list = range(self.dataset.shape[1])
- else:
- self._columns_list = columns
- if self._arraytype == 'sctruct':
- for col in self._columns_list:
- assert (col in self.dataset.dtype.names)
- else:
- assert self._is_dtype_like(self.dataset) == 'number'
-
- columstypes = self.dataset.dtype
-#TODO: do we need to make sure they dtype is float64 ?
- for astat in stats:
- calc = self.univariate[astat]
- if self._arraytype == 'sctruct':
- calc[1] = self._columns_list
- calc[2] = [calc[0](self.dataset[col]) for col in
- self._columns_list if (self._is_dtype_like(col) ==
- 'number')]
- #calc[2].append([len(np.unique(self.dataset[col])) for col
- #in self._columns_list if
- #self._is_dtype_like(col)=='string']
- else:
- calc[1] = ['Col '+str(col) for col in self._columns_list]
- calc[2] = [calc[0](self.dataset[:,col]) for col in self._columns_list]
- return self.print_summary(stats, orientation=orientation)
- else:
- return self.print_summary(stats, orientation=orientation)
-
- def print_summary(self, stats, orientation='auto'):
-#TODO: need to specify a table formating for the numbers, using defualt
- title = 'Summary Statistics'
- header = stats
- stubs = self.univariate['obs'][1]
- data = [[self.univariate[astat][2][col] for astat in stats] for col in
- range(len(self.univariate['obs'][2]))]
-
- if (orientation == 'varcols') or \
- (orientation == 'auto' and len(stubs) < len(header)):
- #swap rows and columns
- data = map(lambda *row: list(row), *data)
- header, stubs = stubs, header
-
- part_fmt = dict(data_fmts = ["%#8.4g"]*(len(header)-1))
- table = SimpleTable(data,
- header,
- stubs,
- title=title,
- txt_fmt = part_fmt)
-
- return table
-
-
- def sign_test(samp,mu0=0):
- '''
- Signs test with mu0=0 by default (though
- the median is often used in practice)
-
- Parameters
- ----------
- samp
-
- mu0
-
- Returns
- ---------
- M, p-value
-
- where
-
- M=(N(+) - N(-))/2, N(+) is the number of values above Mu0,
- N(-) is the number of values below. Values equal to Mu0
- are discarded.
-
- The p-value for M is calculated using the binomial distrubution
- and can be intrepreted the same as for a t-test.
-
- See Also
- ---------
- scipy.stats.wilcoxon
- '''
- pos=np.sum(samp>mu0)
- neg=np.sum(samp>> observed = np.array([ 2., 4., 2., 1., 1.])
- >>> expected = np.array([ 0.2, 0.2, 0.2, 0.2, 0.2])
-
- for checking correct dimension with multiple series
-
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, 10*expected, lambd='freeman_tukey',axis=1)
- (array([[ 2.745166, 2.745166]]), array([[ 0.6013346, 0.6013346]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, 10*expected,axis=1)
- (array([[ 2.77258872, 2.77258872]]), array([[ 0.59657359, 0.59657359]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, 10*expected, lambd=0,axis=1)
- (array([[ 2.77258872, 2.77258872]]), array([[ 0.59657359, 0.59657359]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, 10*expected, lambd=1,axis=1)
- (array([[ 3., 3.]]), array([[ 0.5578254, 0.5578254]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, 10*expected, lambd=2/3.0,axis=1)
- (array([[ 2.89714546, 2.89714546]]), array([[ 0.57518277, 0.57518277]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)).T, expected, lambd=2/3.0,axis=1)
- (array([[ 2.89714546, 2.89714546]]), array([[ 0.57518277, 0.57518277]]))
- >>> powerdiscrepancy(np.column_stack((observed,observed)), expected, lambd=2/3.0, axis=0)
- (array([[ 2.89714546, 2.89714546]]), array([[ 0.57518277, 0.57518277]]))
-
- each random variable can have different total count/sum
-
- >>> powerdiscrepancy(np.column_stack((observed,2*observed)), expected, lambd=2/3.0, axis=0)
- (array([[ 2.89714546, 5.79429093]]), array([[ 0.57518277, 0.21504648]]))
- >>> powerdiscrepancy(np.column_stack((observed,2*observed)), expected, lambd=2/3.0, axis=0)
- (array([[ 2.89714546, 5.79429093]]), array([[ 0.57518277, 0.21504648]]))
- >>> powerdiscrepancy(np.column_stack((2*observed,2*observed)), expected, lambd=2/3.0, axis=0)
- (array([[ 5.79429093, 5.79429093]]), array([[ 0.21504648, 0.21504648]]))
- >>> powerdiscrepancy(np.column_stack((2*observed,2*observed)), 20*expected, lambd=2/3.0, axis=0)
- (array([[ 5.79429093, 5.79429093]]), array([[ 0.21504648, 0.21504648]]))
- >>> powerdiscrepancy(np.column_stack((observed,2*observed)), np.column_stack((10*expected,20*expected)), lambd=2/3.0, axis=0)
- (array([[ 2.89714546, 5.79429093]]), array([[ 0.57518277, 0.21504648]]))
- >>> powerdiscrepancy(np.column_stack((observed,2*observed)), np.column_stack((10*expected,20*expected)), lambd=-1, axis=0)
- (array([[ 2.77258872, 5.54517744]]), array([[ 0.59657359, 0.2357868 ]]))
-
-
- """
- o = np.array(observed)
- e = np.array(expected)
-
- if np.isfinite(lambd) == True: # check whether lambd is a number
- a = lambd
- else:
- if lambd == 'loglikeratio': a = 0
- elif lambd == 'freeman_tukey': a = -0.5
- elif lambd == 'pearson': a = 1
- elif lambd == 'modified_loglikeratio': a = -1
- elif lambd == 'cressie_read': a = 2/3.0
- else:
- raise ValueError('lambd has to be a number or one of ' + \
- 'loglikeratio, freeman_tukey, pearson, ' +\
- 'modified_loglikeratio or cressie_read')
-
- n = np.sum(o, axis=axis)
- nt = n
- if n.size>1:
- n = np.atleast_2d(n)
- if axis == 1:
- nt = n.T # need both for 2d, n and nt for broadcasting
- if e.ndim == 1:
- e = np.atleast_2d(e)
- if axis == 0:
- e = e.T
-
- if np.all(np.sum(e, axis=axis) == n):
- p = e/(1.0*nt)
- elif np.all(np.sum(e, axis=axis) == 1):
- p = e
- e = nt * e
- else:
- raise ValueError('observed and expected need to have the same ' +\
- 'number of observations, or e needs to add to 1')
- k = o.shape[axis]
- if e.shape[axis] != k:
- raise ValueError('observed and expected need to have the same ' +\
- 'number of bins')
-
- # Note: taken from formulas, to simplify cancel n
- if a == 0: # log likelihood ratio
- D_obs = 2*n * np.sum(o/(1.0*nt) * np.log(o/e), axis=axis)
- elif a == -1: # modified log likelihood ratio
- D_obs = 2*n * np.sum(e/(1.0*nt) * np.log(e/o), axis=axis)
- else:
- D_obs = 2*n/a/(a+1) * np.sum(o/(1.0*nt) * ((o/e)**a - 1), axis=axis)
-
- return D_obs, stats.chi2.sf(D_obs,k-1-ddof)
-
-
-
-#todo: need also binning for continuous distribution
-# and separated binning function to be used for powerdiscrepancy
-
-def gof_chisquare_discrete(distfn, arg, rvs, alpha, msg):
- '''perform chisquare test for random sample of a discrete distribution
-
- Parameters
- ----------
- distname : string
- name of distribution function
- arg : sequence
- parameters of distribution
- alpha : float
- significance level, threshold for p-value
-
- Returns
- -------
- result : bool
- 0 if test passes, 1 if test fails
-
- Notes
- -----
- originally written for scipy.stats test suite,
- still needs to be checked for standalone usage, insufficient input checking
- may not run yet (after copy/paste)
-
- refactor: maybe a class, check returns, or separate binning from
- test results
- '''
-
- # define parameters for test
-## n=2000
- n = len(rvs)
- nsupp = 20
- wsupp = 1.0/nsupp
-
-## distfn = getattr(stats, distname)
-## np.random.seed(9765456)
-## rvs = distfn.rvs(size=n,*arg)
-
- # construct intervals with minimum mass 1/nsupp
- # intervalls are left-half-open as in a cdf difference
- distsupport = xrange(max(distfn.a, -1000), min(distfn.b, 1000) + 1)
- last = 0
- distsupp = [max(distfn.a, -1000)]
- distmass = []
- for ii in distsupport:
- current = distfn.cdf(ii,*arg)
- if current - last >= wsupp-1e-14:
- distsupp.append(ii)
- distmass.append(current - last)
- last = current
- if current > (1-wsupp):
- break
- if distsupp[-1] < distfn.b:
- distsupp.append(distfn.b)
- distmass.append(1-last)
- distsupp = np.array(distsupp)
- distmass = np.array(distmass)
-
- # convert intervals to right-half-open as required by histogram
- histsupp = distsupp+1e-8
- histsupp[0] = distfn.a
-
- # find sample frequencies and perform chisquare test
- #TODO: move to compatibility.py
- if np.__version__ < '1.5':
- freq,hsupp = np.histogram(rvs, histsupp, new=True)
- else:
- freq,hsupp = np.histogram(rvs,histsupp)
- cdfs = distfn.cdf(distsupp,*arg)
- (chis,pval) = stats.chisquare(np.array(freq),n*distmass)
-
- return chis, pval, (pval > alpha), 'chisquare - test for %s' \
- 'at arg = %s with pval = %s' % (msg,str(arg),str(pval))
-
-# copy/paste, remove code duplication when it works
-def gof_binning_discrete(rvs, distfn, arg, nsupp=20):
- '''get bins for chisquare type gof tests for a discrete distribution
-
- Parameters
- ----------
- rvs : array
- sample data
- distname : string
- name of distribution function
- arg : sequence
- parameters of distribution
- nsupp : integer
- number of bins. The algorithm tries to find bins with equal weights.
- depending on the distribution, the actual number of bins can be smaller.
-
- Returns
- -------
- freq : array
- empirical frequencies for sample; not normalized, adds up to sample size
- expfreq : array
- theoretical frequencies according to distribution
- histsupp : array
- bin boundaries for histogram, (added 1e-8 for numerical robustness)
-
- Notes
- -----
- The results can be used for a chisquare test ::
-
- (chis,pval) = stats.chisquare(freq, expfreq)
-
- originally written for scipy.stats test suite,
- still needs to be checked for standalone usage, insufficient input checking
- may not run yet (after copy/paste)
-
- refactor: maybe a class, check returns, or separate binning from
- test results
- todo :
- optimal number of bins ? (check easyfit),
- recommendation in literature at least 5 expected observations in each bin
-
- '''
-
- # define parameters for test
-## n=2000
- n = len(rvs)
-
- wsupp = 1.0/nsupp
-
-## distfn = getattr(stats, distname)
-## np.random.seed(9765456)
-## rvs = distfn.rvs(size=n,*arg)
-
- # construct intervals with minimum mass 1/nsupp
- # intervalls are left-half-open as in a cdf difference
- distsupport = xrange(max(distfn.a, -1000), min(distfn.b, 1000) + 1)
- last = 0
- distsupp = [max(distfn.a, -1000)]
- distmass = []
- for ii in distsupport:
- current = distfn.cdf(ii,*arg)
- if current - last >= wsupp-1e-14:
- distsupp.append(ii)
- distmass.append(current - last)
- last = current
- if current > (1-wsupp):
- break
- if distsupp[-1] < distfn.b:
- distsupp.append(distfn.b)
- distmass.append(1-last)
- distsupp = np.array(distsupp)
- distmass = np.array(distmass)
-
- # convert intervals to right-half-open as required by histogram
- histsupp = distsupp+1e-8
- histsupp[0] = distfn.a
-
- # find sample frequencies and perform chisquare test
- if np.__version__ < '1.5':
- freq,hsupp = np.histogram(rvs, histsupp, new=True)
- else:
- freq,hsupp = np.histogram(rvs,histsupp)
- #freq,hsupp = np.histogram(rvs,histsupp,new=True)
- cdfs = distfn.cdf(distsupp,*arg)
- return np.array(freq), n*distmass, histsupp
diff --git a/statsmodels/scikits/statsmodels/stats/moment_helpers.py b/statsmodels/scikits/statsmodels/stats/moment_helpers.py
deleted file mode 100644
index c95ade7..0000000
--- a/statsmodels/scikits/statsmodels/stats/moment_helpers.py
+++ /dev/null
@@ -1,183 +0,0 @@
-'''helper functions conversion between moments
-
-contains:
-
-* conversion between central and non-central moments, skew, kurtosis and
- cummulants
-* cov2corr : convert covariance matrix to correlation matrix
-
-
-Author: Josef Perktold
-License: BSD-3
-
-'''
-
-import numpy as np
-#fix these imports
-import scipy
-#from scipy import stats #not used here
-
-## start moment helpers
-
-def mc2mnc(mc):
- '''convert central to non-central moments, uses recursive formula
- optionally adjusts first moment to return mean
-
- '''
- n = len(mc)
- mean = mc[0]
- mc = [1] + list(mc) # add zero moment = 1
- mc[1] = 0 # define central mean as zero for formula
- mnc = [1, mean] # zero and first raw moments
- for nn,m in enumerate(mc[2:]):
- n=nn+2
- mnc.append(0)
- for k in range(n+1):
- mnc[n] += scipy.comb(n,k,exact=1) * mc[k] * mean**(n-k)
-
- return mnc[1:]
-
-
-def mnc2mc(mnc, wmean = True):
- '''convert non-central to central moments, uses recursive formula
- optionally adjusts first moment to return mean
-
- '''
- n = len(mnc)
- mean = mnc[0]
- mnc = [1] + list(mnc) # add zero moment = 1
- mu = [] #np.zeros(n+1)
- for n,m in enumerate(mnc):
- mu.append(0)
- #[scipy.comb(n-1,k,exact=1) for k in range(n)]
- for k in range(n+1):
- mu[n] += (-1)**(n-k) * scipy.comb(n,k,exact=1) * mnc[k] * mean**(n-k)
- if wmean:
- mu[1] = mean
- return mu[1:]
-
-
-def cum2mc(kappa):
- '''convert non-central moments to cumulants
- recursive formula produces as many cumulants as moments
-
- References
- ----------
- Kenneth Lange: Numerical Analysis for Statisticians, page 40
- (http://books.google.ca/books?id=gm7kwttyRT0C&pg=PA40&lpg=PA40&dq=convert+cumulants+to+moments&source=web&ots=qyIaY6oaWH&sig=cShTDWl-YrWAzV7NlcMTRQV6y0A&hl=en&sa=X&oi=book_result&resnum=1&ct=result)
-
-
- '''
- mc = [1,0.0] #_kappa[0]] #insert 0-moment and mean
- kappa0 = kappa[0]
- kappa = [1] + list(kappa)
- for nn,m in enumerate(kappa[2:]):
- n = nn+2
- mc.append(0)
- for k in range(n-1):
- mc[n] += scipy.comb(n-1,k,exact=1) * kappa[n-k]*mc[k]
-
- mc[1] = kappa0 # insert mean as first moments by convention
- return mc[1:]
-
-
-def mnc2cum(mnc):
- '''convert non-central moments to cumulants
- recursive formula produces as many cumulants as moments
-
- http://en.wikipedia.org/wiki/Cumulant#Cumulants_and_moments
- '''
- mnc = [1] + list(mnc)
- kappa = [1]
- for nn,m in enumerate(mnc[1:]):
- n = nn+1
- kappa.append(m)
- for k in range(1,n):
- kappa[n] -= scipy.comb(n-1,k-1,exact=1) * kappa[k]*mnc[n-k]
-
- return kappa[1:]
-
-
-def mc2cum(mc):
- '''just chained because I have still the test case
- '''
- return mnc2cum(mc2mnc(mc))
-
-
-def mvsk2mc(args):
- '''convert mean, variance, skew, kurtosis to central moments'''
- mu,sig2,sk,kur = args
-
- cnt = [None]*4
- cnt[0] = mu
- cnt[1] = sig2
- cnt[2] = sk * sig2**1.5
- cnt[3] = (kur+3.0) * sig2**2.0
- return tuple(cnt)
-
-def mvsk2mnc(args):
- '''convert mean, variance, skew, kurtosis to non-central moments'''
- mc, mc2, skew, kurt = args
- mnc = mc
- mnc2 = mc2 + mc*mc
- mc3 = skew*(mc2**1.5) # 3rd central moment
- mnc3 = mc3+3*mc*mc2+mc**3 # 3rd non-central moment
- mc4 = (kurt+3.0)*(mc2**2.0) # 4th central moment
- mnc4 = mc4+4*mc*mc3+6*mc*mc*mc2+mc**4
- return (mnc, mnc2, mnc3, mnc4)
-
-def mc2mvsk(args):
- '''convert central moments to mean, variance, skew, kurtosis
- '''
- mc, mc2, mc3, mc4 = args
- skew = np.divide(mc3, mc2**1.5)
- kurt = np.divide(mc4, mc2**2.0) - 3.0
- return (mc, mc2, skew, kurt)
-
-def mnc2mvsk(args):
- '''convert central moments to mean, variance, skew, kurtosis
- '''
- #convert four non-central moments to central moments
- mnc, mnc2, mnc3, mnc4 = args
- mc = mnc
- mc2 = mnc2 - mnc*mnc
- mc3 = mnc3 - (3*mc*mc2+mc**3) # 3rd central moment
- mc4 = mnc4 - (4*mc*mc3+6*mc*mc*mc2+mc**4)
-
- return mc2mvsk((mc, mc2, mc3, mc4))
-
-#def mnc2mc(args):
-# '''convert four non-central moments to central moments
-# '''
-# mnc, mnc2, mnc3, mnc4 = args
-# mc = mnc
-# mc2 = mnc2 - mnc*mnc
-# mc3 = mnc3 - (3*mc*mc2+mc**3) # 3rd central moment
-# mc4 = mnc4 - (4*mc*mc3+6*mc*mc*mc2+mc**4)
-# return mc, mc2, mc
-
- #TODO: no return, did it get lost in cut-paste?
-
-def cov2corr(cov):
- '''convert covariance matrix to correlation matrix
-
- Parameter
- ---------
- cov : array_like, 2d
- covariance matrix, see Notes
-
- Returns
- -------
- corr : ndarray (subclass)
- correlation matrix
-
- Notes
- -----
- This function does not convert subclasses of ndarrays. This requires
- that division is defined elementwise. np.ma.array and np.matrix are allowed.
-
- '''
- cov = np.asanyarray(cov)
- std_ = np.sqrt(np.diag(cov))
- corr = cov / np.outer(std_, std_)
- return corr
diff --git a/statsmodels/scikits/statsmodels/stats/multicomp.py b/statsmodels/scikits/statsmodels/stats/multicomp.py
deleted file mode 100644
index 33f0de7..0000000
--- a/statsmodels/scikits/statsmodels/stats/multicomp.py
+++ /dev/null
@@ -1,3 +0,0 @@
-#collect some imports of verified (at least one example) functions
-from scikits.statsmodels.sandbox.stats.multicomp import \
- multipletests, fdrcorrection0, fdrcorrection_twostage, tukeyhsd
diff --git a/statsmodels/scikits/statsmodels/stats/stattools.py b/statsmodels/scikits/statsmodels/stats/stattools.py
deleted file mode 100644
index ab0f157..0000000
--- a/statsmodels/scikits/statsmodels/stats/stattools.py
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-Statistical tests to be used in conjunction with the models
-
-Notes
------
-These functions haven't been formally tested.
-"""
-
-from scipy import stats
-import numpy as np
-from numpy.testing.decorators import setastest # doesn't work for some reason
-from numpy.testing import dec
-
-#TODO: these are pretty straightforward but they should be tested
-def durbin_watson(resids):
- """
- Calculates the Durbin-Watson statistic
-
- Parameters
- -----------
- resids : array-like
-
- Returns
- --------
- Durbin Watson statistic. This is defined as
- sum_(t=2)^(T)((e_t - e_(t-1))^(2))/sum_(t=1)^(T)e_t^(2)
- """
- diff_resids = np.diff(resids,1)
- dw = np.dot(diff_resids,diff_resids) / \
- np.dot(resids,resids);
- return dw
-
-def omni_normtest(resids, axis=0):
- """
- Omnibus test for normality
-
- Parameters
- -----------
- resid : array-like
- axis : int, optional
- Default is 0
-
- Returns
- -------
- Chi^2 score, two-tail probability
- """
- #TODO: change to exception in summary branch and catch in summary()
- #behavior changed between scipy 0.9 and 0.10
- resids = np.asarray(resids)
- n = resids.shape[axis]
- if n < 8:
- return np.nan, np.nan
- raise ValueError(
- "skewtest is not valid with less than 8 observations; %i samples"
- " were given." % int(n))
-
- return stats.normaltest(resids, axis=0)
-
-def jarque_bera(resids):
- """
- Calculate residual skewness, kurtosis, and do the JB test for normality
-
- Parameters
- -----------
- resids : array-like
-
- Returns
- -------
- JB, JBpv, skew, kurtosis
-
- JB = n/6*(S^2 + (K-3)^2/4)
-
- JBpv is the Chi^2 two-tail probability value
-
- skew is the measure of skewness
-
- kurtosis is the measure of kurtosis
-
- """
- resids = np.asarray(resids)
- # Calculate residual skewness and kurtosis
- skew = stats.skew(resids)
- kurtosis = 3 + stats.kurtosis(resids)
-
- # Calculate the Jarque-Bera test for normality
- JB = (resids.shape[0]/6.) * (skew**2 + (1/4.)*(kurtosis-3)**2)
- JBpv = stats.chi2.sf(JB,2);
-
- return JB, JBpv, skew, kurtosis
-
diff --git a/statsmodels/scikits/statsmodels/stats/tests/__init__.py b/statsmodels/scikits/statsmodels/stats/tests/__init__.py
deleted file mode 100644
index 7a7db26..0000000
--- a/statsmodels/scikits/statsmodels/stats/tests/__init__.py
+++ /dev/null
@@ -1,165 +0,0 @@
-'''
-
-Econometrics for a Datarich Environment
-=======================================
-
-Introduction
-------------
-In many cases we are performing statistical analysis when many observed variables are
-available, when we are in a data rich environment. Machine learning has a wide variety
-of tools for dimension reduction and penalization when there are many varibles compared
-to the number of observation. Chemometrics has a long tradition of using Partial Least
-Squares, NIPALS and similar in these cases. In econometrics the same problem shows up
-when there are either many possible regressors, many (weak) instruments or when there are
-a large number of moment conditions in GMM.
-
-This section is intended to collect some models and tools in this area that are relevant
-for the statical analysis and econometrics.
-
-Covariance Matrices
-===================
-Several methods are available to reduce the small sample noise in estimated covariance
-matrices with many variable.
-Some applications:
-weighting matrix with many moments,
-covariance matrix for portfolio choice
-
-Dimension Reduction
-===================
-Principal Component and Partial Least Squares try to extract the important low dimensional
-factors from the data with many variables.
-
-Regression with many regressors
-===============================
-Factor models, selection of regressors and shrinkage and penalization are used to improve
-the statistical properties, when the presence of too many regressors leads to over-fitting
-and too noisy small sample estimators and statistics.
-
-Regression with many moments or many instruments
-================================================
-The same tools apply and can be used in these two cases.
-e.g. Tychonov regularization of weighting matrix in GMM, similar to Ridge regression, the
-weighting matrix can be shrunk towards the identity matrix.
-Simplest case will be part of GMM. I don't know how much will be standalone
-functions.
-
-
-Intended Content
-================
-
-PLS
----
-what should be available in class?
-
-Factormodel and supporting helper functions
--------------------------------------------
-
-PCA based
-~~~~~~~~~
-First version based PCA on Stock/Watson and Bai/Ng, and recent papers on the
-selection of the number of factors. Not sure about Forni et al. in approach.
-Basic support of this needs additional results for PCA, error covariance matrix
-of data on reduced factors, required for criteria in Bai/Ng.
-Selection criteria based on eigenvalue cutoffs.
-
-Paper on PCA and structural breaks. Could add additional results during
-find_nfact to test for parameter stability. I haven't read the paper yet.
-
-Idea: for forecasting, use up to h-step ahead endogenous variables to directly
-get the forecasts.
-
-Asymptotic results and distribution: not too much idea yet.
-Standard OLS results are conditional on factors, paper by Haerdle (abstract
-seems to suggest that this is ok, Park 2009).
-
-Simulation: add function to simulate DGP of Bai/Ng and recent extension.
-Sensitivity of selection criteria to heteroscedasticity and autocorrelation.
-
-Bai, J. & Ng, S., 2002. Determining the Number of Factors in
- Approximate Factor Models. Econometrica, 70(1), pp.191-221.
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Alessi, L., Barigozzi, M. & Capasso, M., 2010. Improved penalization
- for determining the number of factors in approximate factor models.
- Statistics & Probability Letters, 80(23-24), pp.1806-1813.
-
-Breitung, J. & Eickmeier, S., Testing for structural breaks in dynamic
- factor models. Journal of Econometrics, In Press, Accepted Manuscript.
- Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51G3W92-1/2/f45ce2332443374fd770e42e5a68ddb4
- [Accessed November 15, 2010].
-
-Croux, C., Renault, E. & Werker, B., 2004. Dynamic factor models.
- Journal of Econometrics, 119(2), pp.223-230.
-
-Forni, M. et al., 2009. Opening the Black Box: Structural Factor
- Models with Large Cross Sections. Econometric Theory, 25(05),
- pp.1319-1347.
-
-Forni, M. et al., 2000. The Generalized Dynamic-Factor Model:
- Identification and Estimation. Review of Economics and Statistics,
- 82(4), pp.540-554.
-
-Forni, M. & Lippi, M., The general dynamic factor model: One-sided
- representation results. Journal of Econometrics, In Press, Accepted
- Manuscript. Available at:
- http://www.sciencedirect.com/science/article/B6VC0-51FNPJN-1/2/4fcdd0cfb66e3050ff5d19bf2752ed19
- [Accessed November 15, 2010].
-
-Kapetanios, G., 2010. A Testing Procedure for Determining the Number
- of Factors in Approximate Factor Models With Large Datasets. Journal
- of Business and Economic Statistics, 28(3), pp.397-409.
-
-Onatski, A., 2010. Determining the Number of Factors from Empirical
- Distribution of Eigenvalues. Review of Economics and Statistics,
- 92(4), pp.1004-1016.
-
-Park, B.U. et al., 2009. Time Series Modelling With Semiparametric
- Factor Dynamics. Journal of the American Statistical Association,
- 104(485), pp.284-298.
-
-
-
-other factor algorithm
-~~~~~~~~~~~~~~~~~~~~~~
-PLS should fit in reasonably well.
-
-Bai/Ng have a recent paper, where they compare LASSO, PCA, and similar, individual
-and in combination.
-Check how much we can use scikits.learn for this.
-
-
-miscellaneous
-~~~~~~~~~~~~~
-Time series modeling of factors for prediction, ARMA, VARMA.
-SUR and correlation structure
-What about sandwich estimation, robust covariance matrices?
-Similarity to Factor-Garch and Go-Garch
-Updating: incremental PCA, ...?
-
-
-TODO next
-=========
-MVOLS : OLS with multivariate endogenous and identical exogenous variables.
- rewrite and expand current varma_process.VAR
-PCA : write a class after all, and/or adjust the current donated class
- and keep adding required statistics, e.g.
- residual variance, projection of X on k-factors, ... updating ?
-FactorModelUnivariate : started, does basic principal component regression,
- based on standard information criteria, not Bai/Ng adjusted
-FactorModelMultivariate : follow pattern for univariate version and use
- MVOLS
-
-
-
-
-
-
-'''
diff --git a/statsmodels/scikits/statsmodels/stats/tests/test_contrast.py b/statsmodels/scikits/statsmodels/stats/tests/test_contrast.py
deleted file mode 100644
index dfbfd49..0000000
--- a/statsmodels/scikits/statsmodels/stats/tests/test_contrast.py
+++ /dev/null
@@ -1,41 +0,0 @@
-import numpy as np
-import numpy.random as R
-from numpy.testing import *
-from scikits.statsmodels.stats.contrast import Contrast
-
-class TestContrast(object):
- @classmethod
- def setupClass(cls):
- R.seed(54321)
- cls.X = R.standard_normal((40,10))
-
- def test_contrast1(self):
- term = np.column_stack((self.X[:,0], self.X[:,2]))
- c = Contrast(term, self.X)
- test_contrast = [[1] + [0]*9, [0]*2 + [1] + [0]*7]
- assert_almost_equal(test_contrast, c.contrast_matrix)
-
- def test_contrast2(self):
- zero = np.zeros((40,))
- term = np.column_stack((zero, self.X[:,2]))
- c = Contrast(term, self.X)
- test_contrast = [0]*2 + [1] + [0]*7
- assert_almost_equal(test_contrast, c.contrast_matrix)
-
- def test_contrast3(self):
- P = np.dot(self.X, np.linalg.pinv(self.X))
- resid = np.identity(40) - P
- noise = np.dot(resid,R.standard_normal((40,5)))
- term = np.column_stack((noise, self.X[:,2]))
- c = Contrast(term, self.X)
- assert_equal(c.contrast_matrix.shape, (10,))
-#TODO: this should actually test the value of the contrast, not only its dimension
-
- def test_estimable(self):
- X2 = np.column_stack((self.X, self.X[:,5]))
- c = Contrast(self.X[:,5],X2)
- #TODO: I don't think this should be estimable? isestimable correct?
-
-if __name__=="__main__":
- run_module_suite()
-
diff --git a/statsmodels/scikits/statsmodels/stats/tests/test_moment_helpers.py b/statsmodels/scikits/statsmodels/stats/tests/test_moment_helpers.py
deleted file mode 100644
index 14d18e1..0000000
--- a/statsmodels/scikits/statsmodels/stats/tests/test_moment_helpers.py
+++ /dev/null
@@ -1,107 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Sun Oct 16 17:33:56 2011
-
-Author: Josef Perktold
-"""
-
-from scikits.statsmodels.stats import moment_helpers
-from scikits.statsmodels.stats.moment_helpers import (cov2corr,
- mvsk2mc, mc2mvsk, mnc2mc, mc2mnc, cum2mc, mc2cum,
- mnc2cum)
-
-import numpy as np
-from numpy.testing import assert_almost_equal, assert_, assert_equal
-
-def test_cov2corr():
- cov_a = np.ones((3,3))+np.diag(np.arange(1,4)**2 - 1)
- corr_a = np.array([[1, 1/2., 1/3.],[1/2., 1, 1/2./3.],[1/3., 1/2./3., 1]])
-
- corr = cov2corr(cov_a)
- assert_almost_equal(corr, corr_a, decimal=15)
-
- cov_mat = np.matrix(cov_a)
- corr_mat = cov2corr(cov_mat)
- assert_(isinstance(corr_mat, np.matrixlib.defmatrix.matrix))
- assert_equal(corr_mat, corr)
-
- cov_ma = np.ma.array(cov_a)
- corr_ma = cov2corr(cov_ma)
- assert_equal(corr_mat, corr)
-
- assert_(isinstance(corr_ma, np.ma.core.MaskedArray))
-
- cov_ma2 = np.ma.array(cov_a, mask = [[False, True, False],
- [True, False, False],
- [False, False, False]])
-
- corr_ma2 = cov2corr(cov_ma2)
- assert_(np.ma.allclose(corr_ma, corr, atol=1e-15))
- assert_equal(corr_ma2.mask, cov_ma2.mask)
-
-
-def test_moment_conversion():
- #this was initially written for an old version of moment_helpers
- #I'm not sure whether there are not redundant cases after moving functions
- ms = [( [0.0, 1, 0, 3], [0.0, 1.0, 0.0, 0.0], [0.0, 1.0, 0.0, 0.0] ),
- ( [1.0, 1, 0, 3], [1.0, 1.0, 0.0, 0.0], [1.0, 0.0, -1.0, 6.0] ),
- ( [0.0, 1, 1, 3], [0.0, 1.0, 1.0, 0.0], [0.0, 1.0, 1.0, 0.0] ),
- ( [1.0, 1, 1, 3], [1.0, 1.0, 1.0, 0.0], [1.0, 0.0, 0.0, 2.0] ),
- ( [1.0, 1, 1, 4], [1.0, 1.0, 1.0, 1.0], [1.0, 0.0, 0.0, 3.0] ),
- ( [1.0, 2, 0, 3], [1.0, 2.0, 0.0, -9.0], [1.0, 1.0, -4.0, 9.0] ),
- ( [0.0, 2, 1, 3], [0.0, 2.0, 1.0, -9.0], [0.0, 2.0, 1.0, -9.0] ),
- ( [1.0, 0.5, 0, 3], [1.0, 0.5, 0.0, 2.25], [1.0, -0.5, 0.5, 2.25] ), #neg.variance if mnc2 cumulant
- assert_equal(mnc2cum(mc2mnc(mom[0])),mom[1])
- assert_equal(mnc2cum(mom[0]),mom[2])
- if len(mom) <= 4:
- assert_equal(mc2cum(mom[0]),mom[1])
-
- for mom in ms:
- # test cumulant -> moment
- assert_equal(cum2mc(mom[1]),mom[0])
- assert_equal(mc2mnc(cum2mc(mom[2])),mom[0])
- if len(mom) <= 4:
- assert_equal(cum2mc(mom[1]),mom[0])
-
- for mom in ms:
- #round trip: mnc -> cum -> mc == mnc -> mc,
- assert_equal(cum2mc(mnc2cum(mom[0])),mnc2mc(mom[0]))
-
-
- for mom in ms:
- #round trip: mc -> mnc -> mc == mc,
- assert_equal(mc2mnc(mnc2mc(mom[0])), mom[0])
-
- for mom in (m for m in ms if len(m) == 4):
- #round trip: mc -> mvsk -> mc == mc
- assert_equal(mvsk2mc(mc2mvsk(mom[0])), mom[0])
- #round trip: mc -> mvsk -> mnc == mc -> mnc
- assert_equal(mvsk2mnc(mc2mvsk(mom[0])), mc2mnc(mom[0]))
-
-
-def test_moment_conversion_types():
- # written in 2009
- #why did I use list as return type
- all_f = ['cum2mc', 'cum2mc', 'mc2cum', 'mc2mnc',
- 'mc2mvsk', 'mnc2cum', 'mnc2mc', 'mnc2mc',
- 'mvsk2mc', 'mvsk2mnc']
- assert np.all([isinstance(getattr(moment_helpers,f)([1.0, 1, 0, 3]),list) or
- isinstance(getattr(moment_helpers,f)(np.array([1.0, 1, 0, 3])),tuple)
- for f in all_f])
- assert np.all([isinstance(getattr(moment_helpers,f)(np.array([1.0, 1, 0, 3])),list) or
- isinstance(getattr(moment_helpers,f)(np.array([1.0, 1, 0, 3])),tuple)
- for f in all_f])
- assert np.all([isinstance(getattr(moment_helpers,f)(tuple([1.0, 1, 0, 3])),list) or
- isinstance(getattr(moment_helpers,f)(np.array([1.0, 1, 0, 3])),tuple)
- for f in all_f])
-
-if __name__ == '__main__':
- test_cov2corr()
- test_moment_conversion()
- test_moment_conversion_types()
diff --git a/statsmodels/scikits/statsmodels/stats/tests/test_statstools.py b/statsmodels/scikits/statsmodels/stats/tests/test_statstools.py
deleted file mode 100644
index 68471b7..0000000
--- a/statsmodels/scikits/statsmodels/stats/tests/test_statstools.py
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-from scikits.statsmodels.stats.stattools import (omni_normtest, jarque_bera,
- durbin_watson)
-from scikits.statsmodels.stats.adnorm import ad_normal
-
-
-#a random array, rounded to 4 decimals
-x = np.array([-0.1184, -1.3403, 0.0063, -0.612 , -0.3869, -0.2313, -2.8485,
- -0.2167, 0.4153, 1.8492, -0.3706, 0.9726, -0.1501, -0.0337,
- -1.4423, 1.2489, 0.9182, -0.2331, -0.6182, 0.183 ])
-
-
-def test_durbin_watson():
- #benchmark values from R car::durbinWatsonTest(x)
- #library("car")
- #> durbinWatsonTest(x)
- #[1] 1.95298958377419
- #> durbinWatsonTest(x**2)
- #[1] 1.848802400319998
- #> durbinWatsonTest(x[2:20]+0.5*x[1:19])
- #[1] 1.09897993228779
- #> durbinWatsonTest(x[2:20]+0.8*x[1:19])
- #[1] 0.937241876707273
- #> durbinWatsonTest(x[2:20]+0.9*x[1:19])
- #[1] 0.921488912587806
- st_R = 1.95298958377419
- assert_almost_equal(durbin_watson(x), st_R, 14)
-
- st_R = 1.848802400319998
- assert_almost_equal(durbin_watson(x**2), st_R, 14)
-
- st_R = 1.09897993228779
- assert_almost_equal(durbin_watson(x[1:]+0.5*x[:-1]), st_R, 14)
-
- st_R = 0.937241876707273
- assert_almost_equal(durbin_watson(x[1:]+0.8*x[:-1]), st_R, 14)
-
- st_R = 0.921488912587806
- assert_almost_equal(durbin_watson(x[1:]+0.9*x[:-1]), st_R, 14)
-
-
-def test_omni_normtest():
- #tests against R fBasics
- from scipy import stats
- st_pv_R = np.array(
- [[3.994138321207883, -1.129304302161460, 1.648881473704978],
- [0.1357325110375005, 0.2587694866795507, 0.0991719192710234]])
-
- nt = omni_normtest(x)
- assert_almost_equal(nt, st_pv_R[:,0], 14)
-
- st = stats.skewtest(x)
- assert_almost_equal(st, st_pv_R[:,1], 14)
-
- kt = stats.kurtosistest(x)
- assert_almost_equal(kt, st_pv_R[:,2], 14)
-
- st_pv_R = np.array(
- [[34.523210399523926, 4.429509162503833, 3.860396220444025],
- [3.186985686465249e-08, 9.444780064482572e-06, 1.132033129378485e-04]])
-
- x2 = x**2
- nt = omni_normtest(x2)
- assert_almost_equal(nt, st_pv_R[:,0], 14)
-
- st = stats.skewtest(x2)
- assert_almost_equal(st, st_pv_R[:,1], 14)
-
- kt = stats.kurtosistest(x2)
- assert_almost_equal(kt, st_pv_R[:,2], 14)
-
-def test_jarque_bera():
- #tests against R fBasics
- st_pv_R = np.array([1.9662677226861689, 0.3741367669648314])
- jb = jarque_bera(x)[:2]
- assert_almost_equal(jb, st_pv_R, 14)
-
- st_pv_R = np.array([78.329987305556, 0.000000000000])
- jb = jarque_bera(x**2)[:2]
- assert_almost_equal(jb, st_pv_R, 13)
-
- st_pv_R = np.array([5.7135750796706670, 0.0574530296971343])
- jb = jarque_bera(np.log(x**2))[:2]
- assert_almost_equal(jb, st_pv_R, 14)
-
- st_pv_R = np.array([2.6489315748495761, 0.2659449923067881])
- jb = jarque_bera(np.exp(-x**2))[:2]
- assert_almost_equal(jb, st_pv_R, 14)
-
-def test_shapiro():
- #tests against R fBasics
- #testing scipy.stats
- from scipy.stats import shapiro
-
- st_pv_R = np.array([0.939984787255526, 0.239621898000460])
- sh = shapiro(x)
- assert_almost_equal(sh, st_pv_R, 6)
-
- #st is ok -7.15e-06, pval agrees at -3.05e-10
- st_pv_R = np.array([5.799574255943298e-01, 1.838456834681376e-06 * 1e4])
- sh = shapiro(x**2)*np.array([1,1e4])
- assert_almost_equal(sh, st_pv_R, 6)
-
- st_pv_R = np.array([0.91730442643165588, 0.08793704167882448 ])
- sh = shapiro(np.log(x**2))
- assert_almost_equal(sh, st_pv_R, 6)
-
- #diff is [ 9.38773155e-07, 5.48221246e-08]
- st_pv_R = np.array([0.818361863493919373, 0.001644620895206969 ])
- sh = shapiro(np.exp(-x**2))
- assert_almost_equal(sh, st_pv_R, 6)
-
-def test_adnorm():
- #tests against R fBasics
- st_pv = []
- st_pv_R = np.array([0.5867235358882148, 0.1115380760041617])
- ad = ad_normal(x)
- assert_almost_equal(ad, st_pv_R, 14)
- st_pv.append(st_pv_R)
-
- st_pv_R = np.array([2.976266267594575e+00, 8.753003709960645e-08])
- ad = ad_normal(x**2)
- assert_almost_equal(ad, st_pv_R, 13)
- st_pv.append(st_pv_R)
-
- st_pv_R = np.array([0.4892557856308528, 0.1968040759316307])
- ad = ad_normal(np.log(x**2))
- assert_almost_equal(ad, st_pv_R, 14)
- st_pv.append(st_pv_R)
-
- st_pv_R = np.array([1.4599014654282669312, 0.0006380009232897535])
- ad = ad_normal(np.exp(-x**2))
- assert_almost_equal(ad, st_pv_R, 14)
- st_pv.append(st_pv_R)
-
- ad = ad_normal(np.column_stack((x,x**2, np.log(x**2),np.exp(-x**2))).T,
- axis=1)
- assert_almost_equal(ad, np.column_stack(st_pv), 14)
-
-
-if __name__ == '__main__':
- test_durbin_watson()
- test_omni_normtest()
- test_jarque_bera()
- test_shapiro()
- test_adnorm()
diff --git a/statsmodels/scikits/statsmodels/stats/tests/test_weightstats.py b/statsmodels/scikits/statsmodels/stats/tests/test_weightstats.py
deleted file mode 100644
index fa90111..0000000
--- a/statsmodels/scikits/statsmodels/stats/tests/test_weightstats.py
+++ /dev/null
@@ -1,100 +0,0 @@
-'''tests for weightstats, compares with replication
-
-no failures but needs cleanup
-
-Author: Josef Perktod (josef-pktd)
-License: BSD (3-clause)
-
-'''
-
-
-import numpy as np
-from scipy import stats
-from numpy.testing import assert_almost_equal, assert_equal
-from scikits.statsmodels.stats.weightstats import \
- DescrStatsW, CompareMeans, ttest_ind
-
-class TestWeightstats(object):
-
- def __init__(self):
- np.random.seed(9876789)
- n1, n2 = 20,20
- m1, m2 = 1, 1.2
- x1 = m1 + np.random.randn(n1)
- x2 = m2 + np.random.randn(n2)
- x1_2d = m1 + np.random.randn(n1, 3)
- x2_2d = m2 + np.random.randn(n2, 3)
- w1_ = 2. * np.ones(n1)
- w2_ = 2. * np.ones(n2)
- w1 = np.random.randint(1,4, n1)
- w2 = np.random.randint(1,4, n2)
- self.x1, self.x2 = x1, x2
- self.w1, self.w2 = w1, w2
- self.x1_2d, self.x2_2d = x1_2d, x2_2d
-
- def test_weightstats_1(self):
- x1, x2 = self.x1, self.x2
- w1, w2 = self.w1, self.w2
- w1_ = 2. * np.ones(len(x1))
- w2_ = 2. * np.ones(len(x2))
-
- d1 = DescrStatsW(x1)
-# print ttest_ind(x1, x2)
-# print ttest_ind(x1, x2, usevar='separate')
-# #print ttest_ind(x1, x2, usevar='separate')
-# print stats.ttest_ind(x1, x2)
-# print ttest_ind(x1, x2, usevar='separate', alternative='larger')
-# print ttest_ind(x1, x2, usevar='separate', alternative='smaller')
-# print ttest_ind(x1, x2, usevar='separate', weights=(w1_, w2_))
-# print stats.ttest_ind(np.r_[x1, x1], np.r_[x2,x2])
- assert_almost_equal(ttest_ind(x1, x2, weights=(w1_, w2_))[:2],
- stats.ttest_ind(np.r_[x1, x1], np.r_[x2,x2]))
-
- def test_weightstats_2(self):
- x1, x2 = self.x1, self.x2
- w1, w2 = self.w1, self.w2
-
- d1 = DescrStatsW(x1)
- d1w = DescrStatsW(x1, weights=w1)
- d2w = DescrStatsW(x2, weights=w2)
- x1r = d1w.asrepeats()
- x2r = d2w.asrepeats()
-# print 'random weights'
-# print ttest_ind(x1, x2, weights=(w1, w2))
-# print stats.ttest_ind(x1r, x2r)
- assert_almost_equal(ttest_ind(x1, x2, weights=(w1, w2))[:2],
- stats.ttest_ind(x1r, x2r), 14)
- #not the same as new version with random weights/replication
-# assert x1r.shape[0] == d1w.sum_weights
-# assert x2r.shape[0] == d2w.sum_weights
- assert_almost_equal(x2r.var(), d2w.var, 14)
- assert_almost_equal(x2r.std(), d2w.std, 14)
-
-
- #one-sample tests
-# print d1.ttest_mean(3)
-# print stats.ttest_1samp(x1, 3)
-# print d1w.ttest_mean(3)
-# print stats.ttest_1samp(x1r, 3)
- assert_almost_equal(d1.ttest_mean(3)[:2], stats.ttest_1samp(x1, 3), 11)
- assert_almost_equal(d1w.ttest_mean(3)[:2], stats.ttest_1samp(x1r, 3), 11)
-
- def test_weightstats_3(self):
- x1_2d, x2_2d = self.x1_2d, self.x2_2d
- w1, w2 = self.w1, self.w2
-
- d1w_2d = DescrStatsW(x1_2d, weights=w1)
- d2w_2d = DescrStatsW(x2_2d, weights=w2)
- x1r_2d = d1w_2d.asrepeats()
- x2r_2d = d2w_2d.asrepeats()
-# print d1w_2d.ttest_mean(3)
-# #scipy.stats.ttest is also vectorized
-# print stats.ttest_1samp(x1r_2d, 3)
- t,p,d = d1w_2d.ttest_mean(3)
- assert_almost_equal([t, p], stats.ttest_1samp(x1r_2d, 3), 11)
- #print [stats.ttest_1samp(xi, 3) for xi in x1r_2d.T]
- ressm = CompareMeans(d1w_2d, d2w_2d).ttest_ind()
- resss = stats.ttest_ind(x1r_2d, x2r_2d)
- assert_almost_equal(ressm[:2], resss, 14)
-# print ressm
-# print resss
diff --git a/statsmodels/scikits/statsmodels/stats/weightstats.py b/statsmodels/scikits/statsmodels/stats/weightstats.py
deleted file mode 100644
index 92d8568..0000000
--- a/statsmodels/scikits/statsmodels/stats/weightstats.py
+++ /dev/null
@@ -1,397 +0,0 @@
-'''Ttests and descriptive statistics with weights
-
-
-Created on 2010-09-18
-
-Author: josef-pktd
-License: BSD (3-clause)
-
-This follows in large parts the SPSS manual, which is largely the same as
-the SAS manual with different, simpler notation.
-
-Freq, Weight in SAS seems redundant since they always show up as product, SPSS
-has only weights.
-
-References
-----------
-SPSS manual
-SAS manual
-
-This has potential problems with ddof, I started to follow numpy with ddof=0
-by default and users can change it, but this might still mess up the t-tests,
-since the estimates for the standard deviation will be based on the ddof that
-the user chooses.
-- fixed ddof for the meandiff ttest, now matches scipy.stats.ttest_ind
-
-'''
-
-
-import numpy as np
-from scipy import stats
-
-from scikits.statsmodels.tools.decorators import OneTimeProperty
-
-
-class DescrStatsW(object):
- '''descriptive statistics with weights for simple case
-
- assumes that the data is 1d or 2d with (nobs,nvars) ovservations in rows,
- variables in columns, and that the same weight apply to each column.
-
- If degrees of freedom correction is used than weights should add up to the
- number of observations. ttest also assumes that the sum of weights
- corresponds to the sample size.
-
- This is essentially the same as replicating each observations by it's weight,
- if the weights are integers.
-
-
- Examples
- --------
-
- Note: I don't know the seed for the following, so the numbers will
- differ
-
- >>> x1_2d = 1.0 + np.random.randn(20, 3)
- >>> w1 = np.random.randint(1,4, 20)
- >>> d1 = DescrStatsW(x1_2d, weights=w1)
- >>> d1.mean
- array([ 1.42739844, 1.23174284, 1.083753 ])
- >>> d1.var
- array([ 0.94855633, 0.52074626, 1.12309325])
- >>> d1.std_mean
- array([ 0.14682676, 0.10878944, 0.15976497])
-
- >>> tstat, pval, df = d1.ttest_mean(0)
- >>> tstat; pval; df
- array([ 9.72165021, 11.32226471, 6.78342055])
- array([ 1.58414212e-12, 1.26536887e-14, 2.37623126e-08])
- 44.0
-
- >>> tstat, pval, df = d1.ttest_mean([0, 1, 1])
- >>> tstat; pval; df
- array([ 9.72165021, 2.13019609, 0.52422632])
- array([ 1.58414212e-12, 3.87842808e-02, 6.02752170e-01])
- 44.0
-
- #if weithts are integers, then asrepeats can be used
-
- >>> x1r = d1.asrepeats()
- >>> x1r.shape
- ...
- >>> stats.ttest_1samp(x1r, [0, 1, 1])
- ...
-
-
- '''
- def __init__(self, data, weights=None, ddof=0):
-
- self.data = np.asarray(data)
- if weights is None:
- self.weights = np.ones(self.data.shape[0])
- else:
- self.weights = np.asarray(weights).squeeze().astype(float)
- self.ddof = ddof
-
-
- @OneTimeProperty
- def sum_weights(self):
- return self.weights.sum(0)
-
- @OneTimeProperty
- def nobs(self):
- '''alias for number of observations/cases, equal to sum of weights
- '''
- return self.sum_weights
-
- @OneTimeProperty
- def sum(self):
- return np.dot(self.data.T, self.weights)
-
- @OneTimeProperty
- def mean(self):
- return self.sum / self.sum_weights
-
- @OneTimeProperty
- def demeaned(self):
- return self.data - self.mean
-
- @OneTimeProperty
- def sumsquares(self):
- return np.dot((self.demeaned**2).T, self.weights)
-
- #need memoize instead of cache decorator
- def var_ddof(self, ddof=0):
- return sumsquares(self) / (self.sum_weights - ddof)
-
- def std_ddof(self, ddof=0):
- return np.sqrt(self.var(ddof=ddof))
-
- @OneTimeProperty
- def var(self):
- '''variance with default degrees of freedom correction
- '''
- return self.sumsquares / (self.sum_weights - self.ddof)
-
- @OneTimeProperty
- def std(self):
- return np.sqrt(self.var)
-
- @OneTimeProperty
- def cov(self):
- '''covariance
- '''
- return np.dot(self.demeaned.T, self.demeaned) / self.sum_weights
-
- @OneTimeProperty
- def corrcoef(self):
- '''correlation coefficient with default ddof for standard deviation
- '''
- return self.cov / self.std() / self.std()[:,None]
-
- @OneTimeProperty
- def std_mean(self):
- '''standard deviation of mean
-
- '''
- return self.std / np.sqrt(self.sum_weights - 1)
-
-
- def std_var(self):
- pass
-
- def confint_mean(self, alpha=0.05):
- dof = self.sum_weights - 1
- tcrit = stats.t.ppf((1+alpha)/2, dof)
- lower = self.mean - tcrit * self.std_mean
- upper = self.mean + tcrit * self.std_mean
- return lower, upper
-
-
-
- def ttest_mean(self, value, alternative='two-sided'):
- '''ttest of Null hypothesis that mean is equal to value.
-
- The alternative hypothesis H1 is defined by the following
- 'two-sided': H1: mean different than value
- 'larger' : H1: mean larger than value
- 'smaller' : H1: mean smaller than value
-
- '''
- tstat = (self.mean - value) / self.std_mean
- dof = self.sum_weights - 1
- from scipy import stats
- if alternative == 'two-sided':
- pvalue = stats.t.sf(np.abs(tstat), dof)*2
- elif alternative == 'larger':
- pvalue = stats.t.sf(tstat, dof)
- elif alternative == 'smaller':
- pvalue = stats.t.cdf(tstat, dof)
-
- return tstat, pvalue, dof
-
- def ttest_meandiff(self, other):
- pass
-
- def asrepeats(self):
- '''get array that has repeats given by floor(weights)
-
- observations with weight=0 are dropped
-
- '''
- w_int = np.floor(self.weights).astype(int)
- return np.repeat(self.data, w_int, axis=0)
-
-
-
-def tstat_generic(value, value2, std_diff, dof, alternative):
- '''generic ttest to save typing'''
- tstat = (value - value2) / std_diff
- from scipy import stats
- if alternative in ['two-sided', '2-sided', '2']:
- pvalue = stats.t.sf(np.abs(tstat), dof)*2
- elif alternative in ['larger', 'l']:
- pvalue = stats.t.sf(tstat, dof)
- elif alternative in ['smaller', 's']:
- pvalue = stats.t.cdf(tstat, dof)
- return tstat, pvalue
-
-
-class CompareMeans(object):
- '''temporary just to hold formulas
-
- formulas should also be correct for unweighted means
-
- not sure what happens if we have several variables.
- everything should go through vectorized but not checked yet.
-
-
- extend to any number of groups or write a version that works in that
- case, like in SAS and SPSS.
-
- Parameters
- ----------
-
- '''
-
- def __init__(self, d1, d2):
- '''assume d1, d2 hold the relevant attributes
-
- '''
- self.d1 = d1
- self.d2 = d2
- #assume nobs is available
- ## if not hasattr(self.d1, 'nobs'):
- ## d1.nobs1 = d1.sum_weights.astype(float) #float just to make sure
- ## self.nobs2 = d2.sum_weights.astype(float)
-
- @OneTimeProperty
- def std_meandiff_separatevar(self):
- #note I have too little control so far over ddof since it's an option
- #formula assumes var has ddof=0, so we subtract ddof=1 now
- d1 = self.d1
- d2 = self.d2
- return np.sqrt(d1.var / (d1.nobs-1) + d2.var / (d2.nobs-1))
-
- @OneTimeProperty
- def std_meandiff_pooledvar(self):
- '''
- uses d1.ddof, d2.ddof which should be one for the ttest
- hardcoding ddof=1 for varpooled
- '''
- d1 = self.d1
- d2 = self.d2
- #could make var_pooled into attribute
- var_pooled = ((d1.sumsquares + d2.sumsquares) /
- #(d1.nobs - d1.ddof + d2.nobs - d2.ddof))
- (d1.nobs - 1 + d2.nobs - 1))
- return np.sqrt(var_pooled * (1. / d1.nobs + 1. /d2.nobs))
-
- def ttest_ind(self, alternative='two-sided', usevar='pooled'):
- '''ttest for the null hypothesis of identical means
-
- note: I was looking for `usevar` option for the multiple comparison
- tests correction
-
- this should also be the same as onewaygls, except for ddof differences
- '''
- d1 = self.d1
- d2 = self.d2
-
- if usevar == 'pooled':
- stdm = self.std_meandiff_pooledvar
- dof = (d1.nobs - 1 + d2.nobs - 1)
- elif usevar == 'separate':
- stdm = self.std_meandiff_separatevar
- #this follows blindly the SPSS manual
- #except I assume var has ddof=0
- #I should check d1.ddof, d2.ddof
- sem1 = d1.var / (d1.nobs-1)
- sem2 = d2.var / (d2.nobs-1)
- semsum = sem1 + sem2
- z1 = (sem1 / semsum)**2 / (d1.nobs - 1)
- z2 = (sem2 / semsum)**2 / (d2.nobs - 1)
- dof = 1. / (z1 + z2)
-
- tstat, pval = tstat_generic(d1.mean, d2.mean, stdm, dof, alternative)
-
- return tstat, pval, dof
-
-
- def test_equal_var():
- '''Levene test for independence
-
- '''
- d1 = self.d1
- d2 = self.d2
- #rewrite this, for now just use scipy.stats
- return stats.levene(d1.data, d2.data)
-
-
-def ttest_ind(x1, x2, alternative='two-sided',
- usevar='pooled',
- weights=(None, None)):
- '''ttest independent sample
-
- convenience function that uses the classes and throws away the intermediate
- results,
- compared to scipy stats: drops axis option, adds alternative, usevar, and
- weights option
- '''
- cm = CompareMeans(DescrStatsW(x1, weights=weights[0], ddof=0),
- DescrStatsW(x2, weights=weights[1], ddof=0))
- tstat, pval, dof = cm.ttest_ind(alternative=alternative, usevar=usevar)
- return tstat, pval, dof
-
-
-
-if __name__ == '__main__':
-
- from numpy.testing import assert_almost_equal, assert_equal
-
- n1, n2 = 20,20
- m1, m2 = 1, 1.2
- x1 = m1 + np.random.randn(n1)
- x2 = m2 + np.random.randn(n2)
- x1_2d = m1 + np.random.randn(n1, 3)
- x2_2d = m2 + np.random.randn(n2, 3)
- w1_ = 2. * np.ones(n1)
- w2_ = 2. * np.ones(n2)
- w1 = np.random.randint(1,4, n1)
- w2 = np.random.randint(1,4, n2)
-
- d1 = DescrStatsW(x1)
- print ttest_ind(x1, x2)
- print ttest_ind(x1, x2, usevar='separate')
- #print ttest_ind(x1, x2, usevar='separate')
- print stats.ttest_ind(x1, x2)
- print ttest_ind(x1, x2, usevar='separate', alternative='larger')
- print ttest_ind(x1, x2, usevar='separate', alternative='smaller')
- print ttest_ind(x1, x2, usevar='separate', weights=(w1_, w2_))
- print stats.ttest_ind(np.r_[x1, x1], np.r_[x2,x2])
- assert_almost_equal(ttest_ind(x1, x2, weights=(w1_, w2_))[:2],
- stats.ttest_ind(np.r_[x1, x1], np.r_[x2,x2]))
-
-
- d1w = DescrStatsW(x1, weights=w1)
- d2w = DescrStatsW(x2, weights=w2)
- x1r = d1w.asrepeats()
- x2r = d2w.asrepeats()
- print 'random weights'
- print ttest_ind(x1, x2, weights=(w1, w2))
- print stats.ttest_ind(x1r, x2r)
- assert_almost_equal(ttest_ind(x1, x2, weights=(w1, w2))[:2],
- stats.ttest_ind(x1r, x2r), 14)
- #not the same as new version with random weights/replication
- assert x1r.shape[0] == d1w.sum_weights
- assert x2r.shape[0] == d2w.sum_weights
- assert_almost_equal(x2r.var(), d2w.var, 14)
- assert_almost_equal(x2r.std(), d2w.std, 14)
-
- #one-sample tests
- print d1.ttest_mean(3)
- print stats.ttest_1samp(x1, 3)
- print d1w.ttest_mean(3)
- print stats.ttest_1samp(x1r, 3)
- assert_almost_equal(d1.ttest_mean(3)[:2], stats.ttest_1samp(x1, 3), 11)
- assert_almost_equal(d1w.ttest_mean(3)[:2], stats.ttest_1samp(x1r, 3), 11)
-
-
- d1w_2d = DescrStatsW(x1_2d, weights=w1)
- d2w_2d = DescrStatsW(x2_2d, weights=w2)
- x1r_2d = d1w_2d.asrepeats()
- x2r_2d = d2w_2d.asrepeats()
- print d1w_2d.ttest_mean(3)
- #scipy.stats.ttest is also vectorized
- print stats.ttest_1samp(x1r_2d, 3)
- t,p,d = d1w_2d.ttest_mean(3)
- assert_almost_equal([t, p], stats.ttest_1samp(x1r_2d, 3), 11)
- #print [stats.ttest_1samp(xi, 3) for xi in x1r_2d.T]
- ressm = CompareMeans(d1w_2d, d2w_2d).ttest_ind()
- resss = stats.ttest_ind(x1r_2d, x2r_2d)
- assert_almost_equal(ressm[:2], resss, 14)
- print ressm
- print resss
-
-
-
diff --git a/statsmodels/scikits/statsmodels/tests/R_ig.s b/statsmodels/scikits/statsmodels/tests/R_ig.s
deleted file mode 100644
index d8029d8..0000000
--- a/statsmodels/scikits/statsmodels/tests/R_ig.s
+++ /dev/null
@@ -1,10 +0,0 @@
-### SETUP ###
-d <- read.table("./inv_gaussian.csv",sep=",", header=T, nrows=5000)
-attach(d)
-
-### MODEL ###
-library(nlme)
-m1 <- glm(xig ~ x1 + x2, family=inverse.gaussian)
-results <- summary.glm(m1)
-results
-results['coefficients']
diff --git a/statsmodels/scikits/statsmodels/tests/R_lbw.s b/statsmodels/scikits/statsmodels/tests/R_lbw.s
deleted file mode 100644
index f016244..0000000
--- a/statsmodels/scikits/statsmodels/tests/R_lbw.s
+++ /dev/null
@@ -1,16 +0,0 @@
-### SETUP ###
-d <- read.table("./stata_lbw_glm.csv",sep=",", header=T)
-attach(d)
-race.f <- factor(race)
-contrasts(race.f) <- contr.treatment(3, base = 3) # make white the intercept
-
-### MODEL ###
-m1 <- glm(low ~ age + lwt + race.f + smoke + ptl + ht + ui,
- family=binomial)
-results <- summary.glm(m1)
-results
-results['coefficients']
-
-library(boot)
-m1.diag <- glm.diag(m1)
-# note that this returns standardized residuals for diagnostics)
diff --git a/statsmodels/scikits/statsmodels/tests/__init__.py b/statsmodels/scikits/statsmodels/tests/__init__.py
deleted file mode 100644
index 79a33b9..0000000
--- a/statsmodels/scikits/statsmodels/tests/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-#adding test directory to python path
diff --git a/statsmodels/scikits/statsmodels/tests/check_for_rpy.py b/statsmodels/scikits/statsmodels/tests/check_for_rpy.py
deleted file mode 100644
index 325bdac..0000000
--- a/statsmodels/scikits/statsmodels/tests/check_for_rpy.py
+++ /dev/null
@@ -1,6 +0,0 @@
-def skip_rpy():
- try:
- import rpy
- return False
- except:
- return True
diff --git a/statsmodels/scikits/statsmodels/tests/coverage_sm.py b/statsmodels/scikits/statsmodels/tests/coverage_sm.py
deleted file mode 100644
index 62858f2..0000000
--- a/statsmodels/scikits/statsmodels/tests/coverage_sm.py
+++ /dev/null
@@ -1,27 +0,0 @@
-'''
-create html coverage report using coverage
-
-Note that this will work on the *installed* version of statsmodels; however,
-the script should be run from the source tree's test directory.
-'''
-
-import sys
-import scikits.statsmodels as sm
-from coverage import coverage
-
-# the generated html report will be placed in the tests directory
-report_directory = 'coverage_report_html'
-
-cov = coverage()
-cov.start() # start logging coverage
-sm.test()
-cov.stop() # stop the logging coverage
-cov.save() # save the logging coverage to ./.coverage
-modpath = sm.__file__.strip('__init__.pyc') # get install directory
-# set the module names to scikits.statsmodels.path.to.module
-modnames = ['scikits.statsmodels.'+f.replace(modpath,'').replace('/',
- '.').replace('.py','') for f in cov.data.executed_files() if
- 'statsmodels' in f]
-# save only the use modules to the html report
-cov.html_report([sys.modules[mn] for mn in modnames if mn in sys.modules],
- directory=report_directory)
diff --git a/statsmodels/scikits/statsmodels/tests/results/__init__.py b/statsmodels/scikits/statsmodels/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tests/results/cancer_resids.csv b/statsmodels/scikits/statsmodels/tests/results/cancer_resids.csv
deleted file mode 100644
index 119a6c9..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/cancer_resids.csv
+++ /dev/null
@@ -1,48 +0,0 @@
--.8525981,-1.457391,-39.24081,-1.415269,-5.784172
--.8236838,-1.350402,-26.49575,-1.31777,-4.671629
--.7304504,-1.077546,-40.21364,-1.062088,-5.419785
--.7044716,-1.014415,-72.59515,-1.001729,-7.151309
--.528668,-.6686173,-38.07581,-.6653046,-4.486587
--.2286585,-.2488597,-6.149136,-.2487072,-1.185771
--.1939394,-.2081199,-7.462265,-.2080317,-1.203008
--.3556357,-.409525,-21.41325,-.4088151,-2.759586
--.057336,-.05847,-4.129462,-.0584681,-.4865869
-.0309828,.0306685,1.865511,.0306682,.2404138
--.2119243,-.2290713,-21.83861,-.228953,-2.151309
--.310989,-.3507393,-41.92495,-.3503004,-3.610845
--.0092225,-.009251,-1.136797,-.009251,-.1023921
-.2394025,.2225897,18.85773,.2224935,2.124756
-.0335166,.0331493,4.518424,.0331489,.3891554
-.8498294,.6851802,35.76275,.6826899,5.512915
-.4129342,.3667852,46.53926,.3663704,4.383795
-.4641484,.4071232,62.57265,.4065619,5.389155
-1.711046,1.194748,112.6765,1.183119,13.88505
-1.265718,.946389,130.431,.9402446,12.84869
--.3485326,-.3999883,-29.56381,-.3993286,-3.209977
--.4043403,-.4769601,-41.02543,-.475818,-4.072865
--.4920579,-.6088183,-93.45096,-.6063572,-6.781097
--.4028764,-.4748784,-91.52262,-.4737519,-6.072257
--.5150567,-.6460133,-219.0146,-.6430435,-10.62097
--.0870423,-.0897043,-12.63614,-.0896975,-1.048751
-.1283623,.1232478,17.03833,.123231,1.478878
--.2392719,-.2615621,-93.02833,-.2613844,-4.717951
-.7372465,.608186,62.53596,.6064097,6.790023
--.036411,-.0368626,-14.15653,-.0368621,-.7179512
-.268833,.2479331,66.79341,.247801,4.237484
-.5963896,.5072377,113.2655,.5061801,8.218903
-.0198218,.0196923,10.08209,.0196923,.4470407
-.774936,.6343053,251.8839,.6323037,13.97118
--.7639251,-1.165917,-493.4617,-1.14588,-19.41566
--.6237717,-.8411748,-440.6796,-.8342663,-16.57961
--.1632729,-.1731151,-67.39759,-.1730648,-3.317258
--.4285625,-.5119329,-473.7878,-.5105074,-14.24948
-.0800693,.0780269,39.53534,.0780226,1.779205
--.2136744,-.2311274,-215.987,-.2310057,-6.793446
--.0163544,-.0164444,-10.56421,-.0164444,-.4156576
-.2049005,.1923721,110.6513,.1923094,4.761566
--.1947589,-.2090677,-235.4841,-.2089782,-6.772194
-.3167274,.2883678,187.0656,.2881621,7.697324
-.6242349,.5276325,257.6785,.5264484,12.68274
-.8302411,.6720021,286.5137,.6696448,15.42321
-.0065514,.0065371,7.921307,.0065371,.2278058
-.3415952,.308985,288.6676,.3087333,9.930129
diff --git a/statsmodels/scikits/statsmodels/tests/results/cancerdata.csv b/statsmodels/scikits/statsmodels/tests/results/cancerdata.csv
deleted file mode 100644
index efbfe3f..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/cancerdata.csv
+++ /dev/null
@@ -1,48 +0,0 @@
-1.000000000000000000e+00,6.100000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.000000000000000000e+00,6.500000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-2.000000000000000000e+00,5.900000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-3.000000000000000000e+00,5.200000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-4.000000000000000000e+00,5.600000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-4.000000000000000000e+00,6.700000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-5.000000000000000000e+00,6.300000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-5.000000000000000000e+00,5.800000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-8.000000000000000000e+00,5.600000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-8.000000000000000000e+00,5.800000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-8.000000000000000000e+00,5.200000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-8.000000000000000000e+00,4.900000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.100000000000000000e+01,5.000000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.100000000000000000e+01,5.500000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.200000000000000000e+01,4.900000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.200000000000000000e+01,6.200000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.500000000000000000e+01,5.100000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-1.700000000000000000e+01,4.900000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-2.200000000000000000e+01,5.700000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-2.300000000000000000e+01,5.200000000000000000e+01,0.000000000000000000e+00,0.000000000000000000e+00
-6.000000000000000000e+00,6.700000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-6.000000000000000000e+00,6.500000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-7.000000000000000000e+00,5.800000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-9.000000000000000000e+00,5.600000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.000000000000000000e+01,4.900000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.100000000000000000e+01,6.100000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.300000000000000000e+01,6.200000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.500000000000000000e+01,5.000000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.600000000000000000e+01,6.700000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-1.900000000000000000e+01,5.000000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-2.000000000000000000e+01,5.500000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-2.200000000000000000e+01,5.800000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-2.300000000000000000e+01,4.700000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-3.200000000000000000e+01,5.200000000000000000e+01,1.000000000000000000e+00,0.000000000000000000e+00
-6.000000000000000000e+00,5.500000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-1.000000000000000000e+01,5.400000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-1.700000000000000000e+01,6.000000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-1.900000000000000000e+01,4.900000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-2.400000000000000000e+01,5.800000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-2.500000000000000000e+01,5.000000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-2.500000000000000000e+01,5.500000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-2.800000000000000000e+01,5.700000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-2.800000000000000000e+01,4.800000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-3.200000000000000000e+01,5.600000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-3.300000000000000000e+01,6.000000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-3.400000000000000000e+01,6.200000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-3.500000000000000000e+01,4.800000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
-3.900000000000000000e+01,5.200000000000000000e+01,0.000000000000000000e+00,1.000000000000000000e+00
diff --git a/statsmodels/scikits/statsmodels/tests/results/cancerident_resids.csv b/statsmodels/scikits/statsmodels/tests/results/cancerident_resids.csv
deleted file mode 100644
index 81c5e76..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/cancerident_resids.csv
+++ /dev/null
@@ -1,3676 +0,0 @@
-.0518537,.0486185,6.801633,.0485849,.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.8561043,.4734012,112.2948,.4468011,15.96712
-.0518537,.0486185,6.801633,.0485849,.967119
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.723793,.430515,74.07391,.4117416,11.63175
-.1054704,.0932344,13.83451,.0929985,1.967119
-.6416374,.3903728,84.16332,.374758,11.96712
-.2663205,.2038828,34.93316,.2014776,4.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.5880207,.3675556,77.13044,.3543704,10.96712
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
-.2127038,.170077,27.90028,.1686674,3.967119
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.6416374,.3903728,84.16332,.374758,11.96712
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.3626258,-.7884961,-17.62636,-.7144532,-3.728045
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.534404,.3437256,70.09756,.3328171,9.967119
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
-.534404,.3437256,70.09756,.3328171,9.967119
-.194028,.1638978,7.358447,.1631224,1.718769
-.4807873,.318757,63.06468,.3099568,8.967119
-.6952541,.4122828,91.19621,.3940997,12.96712
-.1054704,.0932344,13.83451,.0929985,1.967119
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.6416374,.3903728,84.16332,.374758,11.96712
-1.326297,.6979186,39.24464,.6521791,10.12336
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.3704109,-.7664223,-14.04771,-.7028326,-3.281231
-.4807873,.318757,63.06468,.3099568,8.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-6.835332,1.716208,332.249,1.27114,70.27196
-.9633377,.5109462,126.3606,.4782426,17.96712
-.2127038,.170077,27.90028,.1686674,3.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
-.568123,.3747564,35.39392,.3641587,6.778509
-.2882135,.2192947,29.49614,.2165886,4.631746
-.1637621,.1377534,16.75963,.1370691,2.631746
-.5326914,.3673997,20.20214,.3590832,4.718769
-.6100712,.3999678,29.65409,.3883282,6.271955
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-1.070571,.5463869,140.4264,.5072631,19.96712
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-1.553121,.6864688,203.7223,.6157422,28.96712
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.4092022,.3045208,12.10814,.3001345,3.123357
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.4807873,.318757,63.06468,.3099568,8.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1490611,.1287397,9.286469,.12828,1.778509
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.6100712,.3999678,29.65409,.3883282,6.271955
--.3340431,-.8429711,-34.1864,-.7336224,-5.368254
-.0161615,.0159103,.4782124,.0159097,.1233574
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
-.0518537,.0486185,6.801633,.0485849,.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0890842,.0808547,7.11327,.0807283,1.233564
--.3704109,-.7664223,-14.04771,-.7028326,-3.281231
-.0890842,.0808547,7.11327,.0807283,1.233564
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.7488708,.4333751,98.22909,.4124975,13.96712
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.026453,.0257235,1.285815,.0257202,.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.5326914,.3673997,20.20214,.3590832,4.718769
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.568123,.3747564,35.39392,.3641587,6.778509
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.0811402,.0750819,3.077215,.0750066,.7187688
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.4807873,.318757,63.06468,.3099568,8.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1490611,.1287397,9.286469,.12828,1.778509
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.0518537,.0486185,6.801633,.0485849,.967119
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.4198036,.307104,15.92091,.3021588,3.718769
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0168673,.0165357,1.346835,.0165347,.2335645
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.2127038,.170077,27.90028,.1686674,3.967119
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.4807873,.318757,63.06468,.3099568,8.967119
-1.713971,.7278433,224.8209,.6459247,31.96712
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0393108,.037495,4.023121,.037481,.6317464
-.5880207,.3675556,77.13044,.3543704,10.96712
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.2781887,.2236103,8.231498,.2218425,2.123357
-.3199372,.2353205,41.96604,.2316601,5.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.2127038,.170077,27.90028,.1686674,3.967119
-.4843107,.333676,30.17243,.3260802,5.778509
-.568123,.3747564,35.39392,.3641587,6.778509
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.1490611,.1287397,9.286469,.12828,1.778509
-.1637621,.1377534,16.75963,.1370691,2.631746
-.2127038,.170077,27.90028,.1686674,3.967119
-.0161615,.0159103,.4782124,.0159097,.1233574
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
-.2127038,.170077,27.90028,.1686674,3.967119
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.0518537,.0486185,6.801633,.0485849,.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.2127038,.170077,27.90028,.1686674,3.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.0518537,.0486185,6.801633,.0485849,.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.534404,.3437256,70.09756,.3328171,9.967119
-.1471751,.1295917,4.354855,.1292427,1.123357
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.3199372,.2353205,41.96604,.2316601,5.967119
-.6952541,.4122828,91.19621,.3940997,12.96712
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.3199372,.2353205,41.96604,.2316601,5.967119
-.7488708,.4333751,98.22909,.4124975,13.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.5371161,.3499715,54.96915,.3394933,8.631746
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.4748904,.3202872,48.60089,.3121536,7.631746
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.0518537,.0486185,6.801633,.0485849,.967119
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.2781887,.2236103,8.231498,.2218425,2.123357
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2259878,.1803413,23.12788,.1788202,3.631746
-.0890842,.0808547,7.11327,.0807283,1.233564
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0161615,.0159103,.4782124,.0159097,.1233574
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.1237227,.1098284,6.01386,.109569,1.271955
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.534404,.3437256,70.09756,.3328171,9.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
-.6416374,.3903728,84.16332,.374758,11.96712
-.534404,.3437256,70.09756,.3328171,9.967119
-.1471751,.1295917,4.354855,.1292427,1.123357
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
-.9633377,.5109462,126.3606,.4782426,17.96712
-.1590871,.1334141,20.8674,.1327278,2.967119
-.026453,.0257235,1.285815,.0257202,.271955
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.6416374,.3903728,84.16332,.374758,11.96712
-.0168673,.0165357,1.346835,.0165347,.2335645
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.5993417,.3781157,61.3374,.3650679,9.631746
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.0168673,.0165357,1.346835,.0165347,.2335645
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.5128015,.3526063,24.92604,.3444955,5.271955
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.4807873,.318757,63.06468,.3099568,8.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.5371161,.3499715,54.96915,.3394933,8.631746
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1637621,.1377534,16.75963,.1370691,2.631746
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.0518537,.0486185,6.801633,.0485849,.967119
-.2127038,.170077,27.90028,.1686674,3.967119
-.6455792,.4224097,24.48337,.4100038,5.718769
-.1015365,.0905915,10.39137,.0903953,1.631746
-.5402158,.376054,15.98478,.3679542,4.123357
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0775893,-.0839291,-1.791261,-.0838429,-.5102888
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.534404,.3437256,70.09756,.3328171,9.967119
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.0518537,.0486185,6.801633,.0485849,.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.8195602,.4835401,51.0584,.461812,9.778509
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-1.485499,.7222674,72.20649,.6632708,15.27195
-1.231421,.5962284,161.525,.5469924,22.96712
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
-.4271706,.2924977,56.0318,.2856206,7.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1637621,.1377534,16.75963,.1370691,2.631746
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-4.287573,1.219042,562.3992,.9484735,79.96712
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.0518537,.0486185,6.801633,.0485849,.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.2663205,.2038828,34.93316,.2014776,4.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2259878,.1803413,23.12788,.1788202,3.631746
-.4271706,.2924977,56.0318,.2856206,7.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0652487,.0608686,4.064979,.0608197,.7785092
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.0518537,.0486185,6.801633,.0485849,.967119
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.2127038,.170077,27.90028,.1686674,3.967119
-.3779518,.2736489,30.17901,.2689503,5.233564
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1237227,.1098284,6.01386,.109569,1.271955
-.1490611,.1287397,9.286469,.12828,1.778509
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.4092022,.3045208,12.10814,.3001345,3.123357
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-2.035672,.8047632,267.0182,.6998852,37.96712
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.534404,.3437256,70.09756,.3328171,9.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.3069158,.2400239,11.63968,.2376232,2.718769
-.0518537,.0486185,6.801633,.0485849,.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.1237227,.1098284,6.01386,.109569,1.271955
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.3069158,.2400239,11.63968,.2376232,2.718769
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3768793,-.7420448,-11.15172,-.6881793,-2.876643
-.0518537,.0486185,6.801633,.0485849,.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0161615,.0159103,.4782124,.0159097,.1233574
-.2127038,.170077,27.90028,.1686674,3.967119
-.2209924,.1816223,10.74191,.1804623,2.271955
-.3166859,.2412152,19.72945,.2382616,3.778509
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.2127038,.170077,27.90028,.1686674,3.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0652487,.0608686,4.064979,.0608197,.7785092
-.1490611,.1287397,9.286469,.12828,1.778509
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.0393108,.037495,4.023121,.037481,.6317464
-.5223856,.3479151,41.71188,.3385173,7.233564
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.0393108,.037495,4.023121,.037481,.6317464
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.6416374,.3903728,84.16332,.374758,11.96712
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0393108,.037495,4.023121,.037481,.6317464
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1237227,.1098284,6.01386,.109569,1.271955
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.5128015,.3526063,24.92604,.3444955,5.271955
-.6455792,.4224097,24.48337,.4100038,5.718769
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.534404,.3437256,70.09756,.3328171,9.967119
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.0393108,.037495,4.023121,.037481,.6317464
-.2127038,.170077,27.90028,.1686674,3.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.1015365,.0905915,10.39137,.0903953,1.631746
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.1237227,.1098284,6.01386,.109569,1.271955
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-1.548681,.7552838,58.73322,.6940804,13.71877
-.1613011,.136945,12.87971,.1363353,2.233565
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1471751,.1295917,4.354855,.1292427,1.123357
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.0744605,.0697537,1.719028,.0697041,.4897112
-.534404,.3437256,70.09756,.3328171,9.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-1.285038,.6120709,168.5579,.5593568,23.96712
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.7488708,.4333751,98.22909,.4124975,13.96712
-.5223856,.3479151,41.71188,.3385173,7.233564
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.0518537,.0486185,6.801633,.0485849,.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
-.0393108,.037495,4.023121,.037481,.6317464
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.3166859,.2412152,19.72945,.2382616,3.778509
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-1.177804,.5800171,154.4921,.5342088,21.96712
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.2663205,.2038828,34.93316,.2014776,4.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3340431,-.8429711,-34.1864,-.7336224,-5.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3057349,.2321661,24.41258,.2292599,4.233564
-.2127038,.170077,27.90028,.1686674,3.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3504391,.255289,35.86439,.2510685,5.631746
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-1.177804,.5800171,154.4921,.5342088,21.96712
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.0744605,.0697537,1.719028,.0697041,.4897112
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1637621,.1377534,16.75963,.1370691,2.631746
-.1237227,.1098284,6.01386,.109569,1.271955
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
-1.499505,.672172,196.6894,.6051196,27.96712
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-1.338655,.6275671,175.5908,.5713286,24.96712
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.534404,.3437256,70.09756,.3328171,9.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.0652487,.0608686,4.064979,.0608197,.7785092
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.2663205,.2038828,34.93316,.2014776,4.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2328735,.1881362,14.50796,.1867167,2.778509
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1637621,.1377534,16.75963,.1370691,2.631746
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.9633377,.5109462,126.3606,.4782426,17.96712
-.3199372,.2353205,41.96604,.2316601,5.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.2265102,.1897904,5.229317,.1888045,1.489711
-.2663205,.2038828,34.93316,.2014776,4.967119
-.2328735,.1881362,14.50796,.1867167,2.778509
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.0518537,.0486185,6.801633,.0485849,.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3182621,.24467,15.46995,.2418727,3.271955
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
-.5880207,.3675556,77.13044,.3543704,10.96712
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.0161615,.0159103,.4782124,.0159097,.1233574
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.1613011,.136945,12.87971,.1363353,2.233565
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.758467,.4731781,28.7646,.4560671,6.718769
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0518537,.0486185,6.801633,.0485849,.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.5880207,.3675556,77.13044,.3543704,10.96712
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0775893,-.0839291,-1.791261,-.0838429,-.5102888
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-1.124188,.5634125,147.4593,.5209766,20.96712
-.0811402,.0750819,3.077215,.0750066,.7187688
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.026453,.0257235,1.285815,.0257202,.271955
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
-.1015365,.0905915,10.39137,.0903953,1.631746
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1490611,.1287397,9.286469,.12828,1.778509
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
-.4807873,.318757,63.06468,.3099568,8.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.4126647,.2888257,42.23264,.2827869,6.631746
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.4198036,.307104,15.92091,.3021588,3.718769
--.3626258,-.7884961,-17.62636,-.7144532,-3.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.4807873,.318757,63.06468,.3099568,8.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.7860187,.4550575,80.44216,.4331668,12.63175
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.0168673,.0165357,1.346835,.0165347,.2335645
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.1637621,.1377534,16.75963,.1370691,2.631746
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.0168673,.0165357,1.346835,.0165347,.2335645
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.0890842,.0808547,7.11327,.0807283,1.233564
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0890842,.0808547,7.11327,.0807283,1.233564
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.3182621,.24467,15.46995,.2418727,3.271955
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.5993417,.3781157,61.3374,.3650679,9.631746
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.4807873,.318757,63.06468,.3099568,8.967119
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-1.406247,.6850898,87.60883,.6294192,16.77851
-.4807873,.318757,63.06468,.3099568,8.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.8024876,.4537259,105.262,.4300393,14.96712
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
-.0811402,.0750819,3.077215,.0750066,.7187688
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-1.09713,.6067064,41.6083,.5726204,9.718769
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3504391,.255289,35.86439,.2510685,5.631746
-.3199372,.2353205,41.96604,.2316601,5.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.4126647,.2888257,42.23264,.2827869,6.631746
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
-.0744605,.0697537,1.719028,.0697041,.4897112
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.5880207,.3675556,77.13044,.3543704,10.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.2127038,.170077,27.90028,.1686674,3.967119
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.0890842,.0808547,7.11327,.0807283,1.233564
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
-.5880207,.3675556,77.13044,.3543704,10.96712
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.194028,.1638978,7.358447,.1631224,1.718769
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.0518537,.0486185,6.801633,.0485849,.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.3442172,-.8265827,-27.48534,-.7296151,-4.766436
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.3779518,.2736489,30.17901,.2689503,5.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3704109,-.7664223,-14.04771,-.7028326,-3.281231
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.233518,.1869187,18.64614,.1853842,3.233565
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.194028,.1638978,7.358447,.1631224,1.718769
-.0518537,.0486185,6.801633,.0485849,.967119
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.026453,.0257235,1.285815,.0257202,.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.2259878,.1803413,23.12788,.1788202,3.631746
-.1015365,.0905915,10.39137,.0903953,1.631746
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0775893,-.0839291,-1.791261,-.0838429,-.5102888
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.7488708,.4333751,98.22909,.4124975,13.96712
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0518537,.0486185,6.801633,.0485849,.967119
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.0393108,.037495,4.023121,.037481,.6317464
-.3199372,.2353205,41.96604,.2316601,5.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.026453,.0257235,1.285815,.0257202,.271955
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.1237227,.1098284,6.01386,.109569,1.271955
-.5128015,.3526063,24.92604,.3444955,5.271955
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.233518,.1869187,18.64614,.1853842,3.233565
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-1.594952,.711513,163.2295,.6397405,25.63175
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1237227,.1098284,6.01386,.109569,1.271955
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.6416374,.3903728,84.16332,.374758,11.96712
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
-.3182621,.24467,15.46995,.2418727,3.271955
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.6416374,.3903728,84.16332,.374758,11.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.8561043,.4734012,112.2948,.4468011,15.96712
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1490611,.1287397,9.286469,.12828,1.778509
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.534404,.3437256,70.09756,.3328171,9.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.3735539,.2647622,48.99892,.2596048,6.967119
-.0161615,.0159103,.4782124,.0159097,.1233574
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-1.388229,.6925085,67.47845,.6396812,14.27195
-.0652487,.0608686,4.064979,.0608197,.7785092
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.6416374,.3903728,84.16332,.374758,11.96712
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1471751,.1295917,4.354855,.1292427,1.123357
-.4807873,.318757,63.06468,.3099568,8.967119
-.9633377,.5109462,126.3606,.4782426,17.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.4807873,.318757,63.06468,.3099568,8.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.6416374,.3903728,84.16332,.374758,11.96712
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.3057349,.2321661,24.41258,.2292599,4.233564
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2328735,.1881362,14.50796,.1867167,2.778509
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
-.0393108,.037495,4.023121,.037481,.6317464
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.2127038,.170077,27.90028,.1686674,3.967119
-.5946025,.3816071,47.47832,.3693784,8.233564
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0811402,.0750819,3.077215,.0750066,.7187688
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
-.2127038,.170077,27.90028,.1686674,3.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.4807873,.318757,63.06468,.3099568,8.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.7390363,.4436694,59.01119,.4249854,10.23356
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2781887,.2236103,8.231498,.2218425,2.123357
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.5946025,.3816071,47.47832,.3693784,8.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3069158,.2400239,11.63968,.2376232,2.718769
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.6952541,.4122828,91.19621,.3940997,12.96712
-.0518537,.0486185,6.801633,.0485849,.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.7488708,.4333751,98.22909,.4124975,13.96712
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0744605,.0697537,1.719028,.0697041,.4897112
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.194028,.1638978,7.358447,.1631224,1.718769
-.026453,.0257235,1.285815,.0257202,.271955
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1590871,.1334141,20.8674,.1327278,2.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0393108,.037495,4.023121,.037481,.6317464
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0744605,.0697537,1.719028,.0697041,.4897112
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.5880207,.3675556,77.13044,.3543704,10.96712
--.3340431,-.8429711,-34.1864,-.7336224,-5.368254
-1.285038,.6120709,168.5579,.5593568,23.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3340431,-.8429711,-34.1864,-.7336224,-5.368254
-.1237227,.1098284,6.01386,.109569,1.271955
-.2127038,.170077,27.90028,.1686674,3.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.3504391,.255289,35.86439,.2510685,5.631746
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
-.2209924,.1816223,10.74191,.1804623,2.271955
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.5993417,.3781157,61.3374,.3650679,9.631746
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.1490611,.1287397,9.286469,.12828,1.778509
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
-.0161615,.0159103,.4782124,.0159097,.1233574
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0744605,.0697537,1.719028,.0697041,.4897112
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1490611,.1287397,9.286469,.12828,1.778509
-.1590871,.1334141,20.8674,.1327278,2.967119
-.2259878,.1803413,23.12788,.1788202,3.631746
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0393108,.037495,4.023121,.037481,.6317464
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.0518537,.0486185,6.801633,.0485849,.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.8046106,.4852381,39.11018,.4651556,8.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3069158,.2400239,11.63968,.2376232,2.718769
-.0518537,.0486185,6.801633,.0485849,.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0811402,.0750819,3.077215,.0750066,.7187688
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.2781887,.2236103,8.231498,.2218425,2.123357
-.6416374,.3903728,84.16332,.374758,11.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.7488708,.4333751,98.22909,.4124975,13.96712
-.1637621,.1377534,16.75963,.1370691,2.631746
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.2127038,.170077,27.90028,.1686674,3.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.026453,.0257235,1.285815,.0257202,.271955
-.2127038,.170077,27.90028,.1686674,3.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2265102,.1897904,5.229317,.1888045,1.489711
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.4271706,.2924977,56.0318,.2856206,7.967119
-.4843107,.333676,30.17243,.3260802,5.778509
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0168673,.0165357,1.346835,.0165347,.2335645
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2209924,.1816223,10.74191,.1804623,2.271955
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.3057349,.2321661,24.41258,.2292599,4.233564
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.4198036,.307104,15.92091,.3021588,3.718769
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.8347092,.5212972,19.27047,.5025288,5.489711
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.6615674,.4049112,67.70566,.3890916,10.63175
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.0518537,.0486185,6.801633,.0485849,.967119
-.2209924,.1816223,10.74191,.1804623,2.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
-.2209924,.1816223,10.74191,.1804623,2.271955
-.2265102,.1897904,5.229317,.1888045,1.489711
--.0315087,-.0324328,-.5675519,-.0324283,-.1785565
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.0518537,.0486185,6.801633,.0485849,.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.5880207,.3675556,77.13044,.3543704,10.96712
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.909721,.492458,119.3277,.4628495,16.96712
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.5306097,.3757488,12.24989,.3683927,3.489711
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-1.457311,.7408572,43.12128,.68722,11.12336
--.3626258,-.7884961,-17.62636,-.7144532,-3.728045
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0161615,.0159103,.4782124,.0159097,.1233574
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.3735539,.2647622,48.99892,.2596048,6.967119
-1.285038,.6120709,168.5579,.5593568,23.96712
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.4198036,.307104,15.92091,.3021588,3.718769
-.0518537,.0486185,6.801633,.0485849,.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.6100712,.3999678,29.65409,.3883282,6.271955
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-2.464605,.8977927,323.2813,.7615865,45.96712
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2882135,.2192947,29.49614,.2165886,4.631746
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.2882135,.2192947,29.49614,.2165886,4.631746
-.1054704,.0932344,13.83451,.0929985,1.967119
-.2328735,.1881362,14.50796,.1867167,2.778509
-1.016954,.5289096,133.3935,.493032,18.96712
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
-.8561043,.4734012,112.2948,.4468011,15.96712
-.3199372,.2353205,41.96604,.2316601,5.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.3069158,.2400239,11.63968,.2376232,2.718769
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.3735539,.2647622,48.99892,.2596048,6.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-2.360926,.9532881,114.7589,.8341512,24.27196
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2209924,.1816223,10.74191,.1804623,2.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.7488708,.4333751,98.22909,.4124975,13.96712
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.194028,.1638978,7.358447,.1631224,1.718769
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0393108,.037495,4.023121,.037481,.6317464
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0393108,.037495,4.023121,.037481,.6317464
-.1590871,.1334141,20.8674,.1327278,2.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
-.7357478,.4493267,45.83691,.4316189,8.778509
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-1.285038,.6120709,168.5579,.5593568,23.96712
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.6416374,.3903728,84.16332,.374758,11.96712
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.194028,.1638978,7.358447,.1631224,1.718769
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.4807873,.318757,63.06468,.3099568,8.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.2127038,.170077,27.90028,.1686674,3.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.9633377,.5109462,126.3606,.4782426,17.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
-.1637621,.1377534,16.75963,.1370691,2.631746
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.955687,.526493,76.31049,.4965497,13.23356
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.2127038,.170077,27.90028,.1686674,3.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
-.2259878,.1803413,23.12788,.1788202,3.631746
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3166859,.2412152,19.72945,.2382616,3.778509
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.194028,.1638978,7.358447,.1631224,1.718769
-.1054704,.0932344,13.83451,.0929985,1.967119
-.1471751,.1295917,4.354855,.1292427,1.123357
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.233518,.1869187,18.64614,.1853842,3.233565
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1015365,.0905915,10.39137,.0903953,1.631746
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.4843107,.333676,30.17243,.3260802,5.778509
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.0518537,.0486185,6.801633,.0485849,.967119
-.0811402,.0750819,3.077215,.0750066,.7187688
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.1015365,.0905915,10.39137,.0903953,1.631746
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.5993417,.3781157,61.3374,.3650679,9.631746
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.2127038,.170077,27.90028,.1686674,3.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.2209924,.1816223,10.74191,.1804623,2.271955
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.1613011,.136945,12.87971,.1363353,2.233565
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.5128015,.3526063,24.92604,.3444955,5.271955
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.026453,.0257235,1.285815,.0257202,.271955
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.37856,.2895546,8.739605,.2861165,2.489711
-.1637621,.1377534,16.75963,.1370691,2.631746
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.026453,.0257235,1.285815,.0257202,.271955
-.2663205,.2038828,34.93316,.2014776,4.967119
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0393108,.037495,4.023121,.037481,.6317464
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
-.0518537,.0486185,6.801633,.0485849,.967119
-.6952541,.4122828,91.19621,.3940997,12.96712
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.233518,.1869187,18.64614,.1853842,3.233565
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.3538132,-.8084838,-22.04247,-.7233002,-4.221491
-.1237227,.1098284,6.01386,.109569,1.271955
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.6416374,.3903728,84.16332,.374758,11.96712
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
-.4807873,.318757,63.06468,.3099568,8.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0775893,-.0839291,-1.791261,-.0838429,-.5102888
-.0518537,.0486185,6.801633,.0485849,.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.3735539,.2647622,48.99892,.2596048,6.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1237227,.1098284,6.01386,.109569,1.271955
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2575231,-.3767781,-9.766479,-.3678355,-2.281231
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.1237227,.1098284,6.01386,.109569,1.271955
-.0518537,.0486185,6.801633,.0485849,.967119
-.2209924,.1816223,10.74191,.1804623,2.271955
-.2259878,.1803413,23.12788,.1788202,3.631746
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.2259878,.1803413,23.12788,.1788202,3.631746
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
-.0652487,.0608686,4.064979,.0608197,.7785092
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.4748904,.3202872,48.60089,.3121536,7.631746
--.3704109,-.7664223,-14.04771,-.7028326,-3.281231
-.2663205,.2038828,34.93316,.2014776,4.967119
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-1.338655,.6275671,175.5908,.5713286,24.96712
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.2127038,.170077,27.90028,.1686674,3.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.4843107,.333676,30.17243,.3260802,5.778509
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.4155318,.3011784,20.198,.2960406,4.271955
-.1471751,.1295917,4.354855,.1292427,1.123357
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.233518,.1869187,18.64614,.1853842,3.233565
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.026453,.0257235,1.285815,.0257202,.271955
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2209924,.1816223,10.74191,.1804623,2.271955
-.2127038,.170077,27.90028,.1686674,3.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.3735539,.2647622,48.99892,.2596048,6.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0775893,-.0839291,-1.791261,-.0838429,-.5102888
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
-.0518537,.0486185,6.801633,.0485849,.967119
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
-.0652487,.0608686,4.064979,.0608197,.7785092
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0168673,.0165357,1.346835,.0165347,.2335645
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2127038,.170077,27.90028,.1686674,3.967119
-.534404,.3437256,70.09756,.3328171,9.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
-.0518537,.0486185,6.801633,.0485849,.967119
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.2720003,-.4618576,-21.71891,-.440965,-3.766435
-.6416374,.3903728,84.16332,.374758,11.96712
-.3069158,.2400239,11.63968,.2376232,2.718769
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.1613011,.136945,12.87971,.1363353,2.233565
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
-.2328735,.1881362,14.50796,.1867167,2.778509
-.4807873,.318757,63.06468,.3099568,8.967119
--.0708167,-.0769922,-3.44223,-.0769026,-.728045
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.0652487,.0608686,4.064979,.0608197,.7785092
-.3166859,.2412152,19.72945,.2382616,3.778509
-.1590871,.1334141,20.8674,.1327278,2.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.3166859,.2412152,19.72945,.2382616,3.778509
-.2127038,.170077,27.90028,.1686674,3.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-1.588325,.7818207,46.99792,.7199987,12.12336
-.1590871,.1334141,20.8674,.1327278,2.967119
-.4271706,.2924977,56.0318,.2856206,7.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
-.0518537,.0486185,6.801633,.0485849,.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.9633377,.5109462,126.3606,.4782426,17.96712
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3735539,.2647622,48.99892,.2596048,6.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-1.231421,.5962284,161.525,.5469924,22.96712
-1.750073,.7672718,139.7413,.6867595,24.23356
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.0393108,.037495,4.023121,.037481,.6317464
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.4271706,.2924977,56.0318,.2856206,7.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.534404,.3437256,70.09756,.3328171,9.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.6826595,.4522,15.76018,.4396635,4.489711
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
--.3704109,-.7664223,-14.04771,-.7028326,-3.281231
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.0518537,.0486185,6.801633,.0485849,.967119
-.1590871,.1334141,20.8674,.1327278,2.967119
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.0393108,.037495,4.023121,.037481,.6317464
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
-.0652487,.0608686,4.064979,.0608197,.7785092
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1023761,-.1169676,-6.378003,-.1166222,-1.221491
-.1637621,.1377534,16.75963,.1370691,2.631746
-.2663205,.2038828,34.93316,.2014776,4.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.4126647,.2888257,42.23264,.2827869,6.631746
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
-.8024876,.4537259,105.262,.4300393,14.96712
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.0652487,.0608686,4.064979,.0608197,.7785092
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
-.1590871,.1334141,20.8674,.1327278,2.967119
-.2127038,.170077,27.90028,.1686674,3.967119
--.1997834,-.2769826,-15.95247,-.2721155,-2.766435
-.2259878,.1803413,23.12788,.1788202,3.631746
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.8024876,.4537259,105.262,.4300393,14.96712
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.026453,.0257235,1.285815,.0257202,.271955
--.1148521,-.1305588,-3.39843,-.130202,-.8766426
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
-.4807873,.318757,63.06468,.3099568,8.967119
-.3199372,.2353205,41.96604,.2316601,5.967119
-.0393108,.037495,4.023121,.037481,.6317464
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.1054704,.0932344,13.83451,.0929985,1.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.2458657,-.3423031,-7.275073,-.3361348,-1.876643
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
-.1054704,.0932344,13.83451,.0929985,1.967119
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.3199372,.2353205,41.96604,.2316601,5.967119
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.4807873,.318757,63.06468,.3099568,8.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.0890842,.0808547,7.11327,.0807283,1.233564
--.0553496,-.0594406,-4.4196,-.0593903,-.7664354
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
-.1471751,.1295917,4.354855,.1292427,1.123357
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.2095918,-.3053682,-21.44989,-.2982766,-3.368254
--.1275665,-.1531653,-10.18604,-.1523148,-1.766436
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0851405,-.0960863,-8.713387,-.0958524,-1.368254
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.2127038,.170077,27.90028,.1686674,3.967119
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.2700008,-.436262,-16.82098,-.4199612,-3.221491
-.0393108,.037495,4.023121,.037481,.6317464
-.7488708,.4333751,98.22909,.4124975,13.96712
--.001763,-.0017671,-.2312482,-.0017671,-.032881
-.3214185,.2562718,5.789561,.2540935,1.821444
-.1613011,.136945,12.87971,.1363353,2.233565
-.1590871,.1334141,20.8674,.1327278,2.967119
-.0744605,.0697537,1.719028,.0697041,.4897112
-.0518537,.0486185,6.801633,.0485849,.967119
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.6712294,.4405322,19.86143,.4277754,5.123357
-.3735539,.2647622,48.99892,.2596048,6.967119
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.0185637,-.0189704,-1.156512,-.0189689,-.2214908
-.7488708,.4333751,98.22909,.4124975,13.96712
-.1054704,.0932344,13.83451,.0929985,1.967119
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
-.1590871,.1334141,20.8674,.1327278,2.967119
-.2663205,.2038828,34.93316,.2014776,4.967119
-1.392271,.6427373,182.6237,.582932,25.96712
--.0317476,-.0328447,-1.204016,-.0328384,-.2812312
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.2698465,-.5060208,-35.39565,-.4741588,-5.032881
--.2718174,-.4850343,-27.81815,-.4589498,-4.368254
--.1680864,-.2110147,-8.170275,-.2092063,-1.728045
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
--.1626131,-.2156215,-21.32989,-.212787,-3.032881
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
--.1446354,-.1727819,-5.485247,-.1718747,-1.281231
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
-.1054704,.0932344,13.83451,.0929985,1.967119
--.2653561,-.4079951,-12.89832,-.3956779,-2.728045
-.0168673,.0165357,1.346835,.0165347,.2335645
--.0229148,-.0236076,-2.345133,-.0236041,-.3682536
--.1861885,-.2456345,-11.59949,-.2425193,-2.221491
-.0518537,.0486185,6.801633,.0485849,.967119
--.3234632,-.8578107,-42.42854,-.7355307,-6.032881
-.0518537,.0486185,6.801633,.0485849,.967119
--.1473661,-.1859422,-15.08164,-.1842772,-2.368254
--.0553797,-.0599572,-7.264129,-.0598942,-1.032881
--.1089964,-.1292688,-14.29701,-.128644,-2.032881
-.0161615,.0159103,.4782124,.0159097,.1233574
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
-.026453,.0257235,1.285815,.0257202,.271955
--.2162298,-.3310713,-28.36277,-.3212661,-4.032881
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.2997171,.228385,24.34961,.2255969,4.19353
-1.300315,.6395863,105.6402,.588913,18.19353
-.6570736,.4088128,53.38195,.3938634,9.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.0138319,.013607,1.123727,.0136063,.1935302
-.728545,.4388867,59.18843,.4206466,10.19353
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.1445152,.1252461,9.160344,.1248196,1.742258
-.0769818,.0714808,2.970444,.0714154,.6890457
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1445152,.1252461,9.160344,.1248196,1.742258
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.6286911,.4369408,8.989628,.4274471,3.101844
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.3104094,.2372538,19.67583,.2344215,3.742258
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0206421,.0202887,.2951599,.0202876,.101844
-.3711884,.2696834,30.15608,.2651503,5.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.0700244,.0658254,1.64482,.0657834,.4653405
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1192854,.1062563,5.899336,.1060198,1.23913
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0230199,.0224627,1.138466,.0224605,.2391298
-.1421659,.1256147,4.280028,.1252946,1.096443
-.2282458,.1833317,18.54314,.1818727,3.19353
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0883813,.0826617,.9860126,.0826,.3757281
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.4888878,.357068,8.95975,.3512596,2.799376
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0206421,.0202887,.2951599,.0202876,.101844
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0125049,.0123532,.3764715,.0123529,.0964432
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.6570736,.4088128,53.38195,.3938634,9.19353
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.0853032,.0776913,6.930197,.0775783,1.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.8313742,.5349441,11.88778,.5179964,4.101844
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0138319,.013607,1.123727,.0136063,.1935302
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0230199,.0224627,1.138466,.0224605,.2391298
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.3933565,.2852239,24.93357,.2803707,4.742258
-.1445152,.1252461,9.160344,.1248196,1.742258
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.0138319,.013607,1.123727,.0136063,.1935302
-.0700244,.0658254,1.64482,.0657834,.4653405
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0138319,.013607,1.123727,.0136063,.1935302
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.1396044,.1248781,2.558502,.1246199,.7993759
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.0700244,.0658254,1.64482,.0657834,.4653405
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.0853032,.0776913,6.930197,.0775783,1.19353
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
-.1567745,.1335631,12.73667,.1329933,2.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
-.0138319,.013607,1.123727,.0136063,.1935302
-.1396044,.1248781,2.558502,.1246199,.7993759
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0769818,.0714808,2.970444,.0714154,.6890457
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0138319,.013607,1.123727,.0136063,.1935302
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.1887041,.159953,7.281399,.1592269,1.689046
-.0138319,.013607,1.123727,.0136063,.1935302
-.1192854,.1062563,5.899336,.1060198,1.23913
-.0125049,.0123532,.3764715,.0123529,.0964432
-.0125049,.0123532,.3764715,.0123529,.0964432
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
-.4014878,.2998151,12.08714,.2955963,3.096443
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.2997171,.228385,24.34961,.2255969,4.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.384724,-.654953,-5.501152,-.6250449,-1.898156
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.514131,.343604,41.76902,.3344771,7.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0138319,.013607,1.123727,.0136063,.1935302
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
-.728545,.4388867,59.18843,.4206466,10.19353
--.384724,-.654953,-5.501152,-.6250449,-1.898156
-.3711884,.2696834,30.15608,.2651503,5.19353
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.0138319,.013607,1.123727,.0136063,.1935302
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.3711884,.2696834,30.15608,.2651503,5.19353
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.4260081,.3243349,6.091472,.3203502,2.101844
-.4260081,.3243349,6.091472,.3203502,2.101844
-.4763036,.3292965,30.19131,.3219368,5.742258
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.3711884,.2696834,30.15608,.2651503,5.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1421659,.1256147,4.280028,.1252946,1.096443
-.6570736,.4088128,53.38195,.3938634,9.19353
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.1567745,.1335631,12.73667,.1329933,2.19353
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.2997171,.228385,24.34961,.2255969,4.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.728545,.4388867,59.18843,.4206466,10.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.182041,-.2191366,-2.602996,-.2178854,-.898156
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.2997171,.228385,24.34961,.2255969,4.19353
-.1396044,.1248781,2.558502,.1246199,.7993759
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0769818,.0714808,2.970444,.0714154,.6890457
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.2205043,.1853984,5.17948,.1844724,1.46534
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.0853032,.0776913,6.930197,.0775783,1.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.5311488,.3710235,15.9907,.3631817,4.096443
-.1567745,.1335631,12.73667,.1329933,2.19353
-.4888878,.357068,8.95975,.3512596,2.799376
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.5214642,.3705521,12.2488,.3634405,3.46534
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.2997171,.228385,24.34961,.2255969,4.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0230199,.0224627,1.138466,.0224605,.2391298
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0769818,.0714808,2.970444,.0714154,.6890457
-.1445152,.1252461,9.160344,.1248196,1.742258
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.1887041,.159953,7.281399,.1592269,1.689046
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.6719442,.4466445,15.78346,.4344652,4.465341
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.3118163,.2405454,15.42108,.2378666,3.23913
-.3004264,.235763,11.59235,.2334704,2.689046
-.0138319,.013607,1.123727,.0136063,.1935302
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0138319,.013607,1.123727,.0136063,.1935302
-.514131,.343604,41.76902,.3344771,7.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0125049,.0123532,.3764715,.0123529,.0964432
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.0700244,.0658254,1.64482,.0657834,.4653405
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.3709843,.2847434,8.714139,.2814484,2.46534
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.2205043,.1853984,5.17948,.1844724,1.46534
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.384724,-.654953,-5.501152,-.6250449,-1.898156
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0125049,.0123532,.3764715,.0123529,.0964432
-.2274623,.1844013,14.41809,.1830546,2.742258
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0230199,.0224627,1.138466,.0224605,.2391298
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
-.1567745,.1335631,12.73667,.1329933,2.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-1.157373,.5945906,94.02724,.5528036,16.19353
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0125049,.0123532,.3764715,.0123529,.0964432
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-1.657672,.7417468,134.6725,.6674476,23.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.5214642,.3705521,12.2488,.3634405,3.46534
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.4260081,.3243349,6.091472,.3203502,2.101844
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.3709843,.2847434,8.714139,.2814484,2.46534
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
-.0138319,.013607,1.123727,.0136063,.1935302
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.9429589,.5212812,76.60783,.4919637,13.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.4014878,.2998151,12.08714,.2955963,3.096443
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.1887041,.159953,7.281399,.1592269,1.689046
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.514131,.343604,41.76902,.3344771,7.19353
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.5214642,.3705521,12.2488,.3634405,3.46534
-.6286911,.4369408,8.989628,.4274471,3.101844
-.2997171,.228385,24.34961,.2255969,4.19353
-.0138319,.013607,1.123727,.0136063,.1935302
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
-.6570736,.4088128,53.38195,.3938634,9.19353
-.3711884,.2696834,30.15608,.2651503,5.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0125049,.0123532,.3764715,.0123529,.0964432
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0853032,.0776913,6.930197,.0775783,1.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.1396044,.1248781,2.558502,.1246199,.7993759
-.5238709,.3625683,20.21426,.3545109,4.689046
-.2282458,.1833317,18.54314,.1818727,3.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.728545,.4388867,59.18843,.4206466,10.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.4426597,.3079183,35.96255,.3012597,6.19353
-.2997171,.228385,24.34961,.2255969,4.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.1421659,.1256147,4.280028,.1252946,1.096443
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-1.085901,.571001,88.22077,.533498,15.19353
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2997171,.228385,24.34961,.2255969,4.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.5856023,.3771333,47.57549,.3652316,8.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.8714876,.4949725,70.80136,.4695261,12.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
-.4426597,.3079183,35.96255,.3012597,6.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.3711884,.2696834,30.15608,.2651503,5.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0125049,.0123532,.3764715,.0123529,.0964432
-1.872086,.7974563,152.0919,.7082999,26.19353
-.2997171,.228385,24.34961,.2255969,4.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.728545,.4388867,59.18843,.4206466,10.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0138319,.013607,1.123727,.0136063,.1935302
-.5856023,.3771333,47.57549,.3652316,8.19353
-1.872086,.7974563,152.0919,.7082999,26.19353
-1.443258,.6820456,117.2531,.6221304,20.19353
-.0700244,.0658254,1.64482,.0657834,.4653405
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
-.728545,.4388867,59.18843,.4206466,10.19353
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.4014878,.2998151,12.08714,.2955963,3.096443
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.2997171,.228385,24.34961,.2255969,4.19353
-.0769818,.0714808,2.970444,.0714154,.6890457
-.0206421,.0202887,.2951599,.0202876,.101844
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0700244,.0658254,1.64482,.0657834,.4653405
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0230199,.0224627,1.138466,.0224605,.2391298
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.1396044,.1248781,2.558502,.1246199,.7993759
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0230199,.0224627,1.138466,.0224605,.2391298
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0853032,.0776913,6.930197,.0775783,1.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.514131,.343604,41.76902,.3344771,7.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0125049,.0123532,.3764715,.0123529,.0964432
-.0230199,.0224627,1.138466,.0224605,.2391298
-.5238709,.3625683,20.21426,.3545109,4.689046
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.1421659,.1256147,4.280028,.1252946,1.096443
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.0138319,.013607,1.123727,.0136063,.1935302
-.0853032,.0776913,6.930197,.0775783,1.19353
-1.01443,.546592,82.41431,.5132502,14.19353
-1.01443,.546592,82.41431,.5132502,14.19353
-.2997171,.228385,24.34961,.2255969,4.19353
-.0125049,.0123532,.3764715,.0123529,.0964432
-.2155509,.177764,10.66021,.1766682,2.23913
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
-.4888878,.357068,8.95975,.3512596,2.799376
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.2282458,.1833317,18.54314,.1818727,3.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0138319,.013607,1.123727,.0136063,.1935302
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0138319,.013607,1.123727,.0136063,.1935302
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.1445152,.1252461,9.160344,.1248196,1.742258
-.0206421,.0202887,.2951599,.0202876,.101844
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0853032,.0776913,6.930197,.0775783,1.19353
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.0700244,.0658254,1.64482,.0657834,.4653405
--.384724,-.654953,-5.501152,-.6250449,-1.898156
-.5856023,.3771333,47.57549,.3652316,8.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.0125049,.0123532,.3764715,.0123529,.0964432
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.3711884,.2696834,30.15608,.2651503,5.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.0615682,.0576342,3.902602,.0575923,.7422582
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.3118163,.2405454,15.42108,.2378666,3.23913
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.3531673,-.8098043,-22.38611,-.7238197,-4.257742
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.3004264,.235763,11.59235,.2334704,2.689046
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.3711884,.2696834,30.15608,.2651503,5.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
-.5592507,.3701822,35.44905,.3598838,6.742258
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2718268,.2192537,8.183585,.2175746,2.096443
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.3711884,.2696834,30.15608,.2651503,5.19353
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.3711884,.2696834,30.15608,.2651503,5.19353
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.0138319,.013607,1.123727,.0136063,.1935302
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.4121487,.3025489,15.90331,.2977831,3.689046
-.8000163,.4675526,64.9949,.4458055,11.19353
-.9429589,.5212812,76.60783,.4919637,13.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
-.1567745,.1335631,12.73667,.1329933,2.19353
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.1567745,.1335631,12.73667,.1329933,2.19353
-.3709843,.2847434,8.714139,.2814484,2.46534
-.0853032,.0776913,6.930197,.0775783,1.19353
-.4426597,.3079183,35.96255,.3012597,6.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.5043473,.3479949,24.94282,.3401349,5.23913
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.1468455,-.1682093,-1.638259,-.1676932,-.6242719
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.0853032,.0776913,6.930197,.0775783,1.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
-.6635295,.4486716,12.16037,.4374241,3.799376
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-1.872086,.7974563,152.0919,.7082999,26.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0125049,.0123532,.3764715,.0123529,.0964432
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.4763036,.3292965,30.19131,.3219368,5.742258
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
-.0615682,.0576342,3.902602,.0575923,.7422582
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
-.0138319,.013607,1.123727,.0136063,.1935302
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
-.4426597,.3079183,35.96255,.3012597,6.19353
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.5856023,.3771333,47.57549,.3652316,8.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.6006127,.3951312,29.70369,.3838163,6.23913
-.1567745,.1335631,12.73667,.1329933,2.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.2997171,.228385,24.34961,.2255969,4.19353
-.0138319,.013607,1.123727,.0136063,.1935302
-.3711884,.2696834,30.15608,.2651503,5.19353
-.2997171,.228385,24.34961,.2255969,4.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.1445152,.1252461,9.160344,.1248196,1.742258
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
-2.0865,.8498464,169.5114,.7454886,29.19353
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
-.1445152,.1252461,9.160344,.1248196,1.742258
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.1567745,.1335631,12.73667,.1329933,2.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.3843208,-.6875609,-7.043371,-.6502666,-2.200624
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1421659,.1256147,4.280028,.1252946,1.096443
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0615682,.0576342,3.902602,.0575923,.7422582
-.2282458,.1833317,18.54314,.1818727,3.19353
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
-.0138319,.013607,1.123727,.0136063,.1935302
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.0138319,.013607,1.123727,.0136063,.1935302
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.4014878,.2998151,12.08714,.2955963,3.096443
-.3711884,.2696834,30.15608,.2651503,5.19353
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0769818,.0714808,2.970444,.0714154,.6890457
-.3933565,.2852239,24.93357,.2803707,4.742258
-.1567745,.1335631,12.73667,.1329933,2.19353
-.514131,.343604,41.76902,.3344771,7.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
-.0615682,.0576342,3.902602,.0575923,.7422582
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.7251448,.444386,45.96453,.4271111,8.742258
-.2233251,.190094,3.193316,.1892741,1.101844
-.2718268,.2192537,8.183585,.2175746,2.096443
-.0138319,.013607,1.123727,.0136063,.1935302
-.2205043,.1853984,5.17948,.1844724,1.46534
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0615682,.0576342,3.902602,.0575923,.7422582
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.182041,-.2191366,-2.602996,-.2178854,-.898156
-.2997171,.228385,24.34961,.2255969,4.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.0230199,.0224627,1.138466,.0224605,.2391298
-.1421659,.1256147,4.280028,.1252946,1.096443
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.5856023,.3771333,47.57549,.3652316,8.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.1192854,.1062563,5.899336,.1060198,1.23913
-.0769818,.0714808,2.970444,.0714154,.6890457
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.514131,.343604,41.76902,.3344771,7.19353
-1.800615,.7792844,146.2855,.6951243,25.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.2282458,.1833317,18.54314,.1818727,3.19353
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0138319,.013607,1.123727,.0136063,.1935302
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
-.1445152,.1252461,9.160344,.1248196,1.742258
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.2282458,.1833317,18.54314,.1818727,3.19353
--.3843208,-.6875609,-7.043371,-.6502666,-2.200624
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.182041,-.2191366,-2.602996,-.2178854,-.898156
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.2233251,.190094,3.193316,.1892741,1.101844
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0206421,.0202887,.2951599,.0202876,.101844
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.3004264,.235763,11.59235,.2334704,2.689046
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.3435247,-.8277783,-27.90862,-.7299667,-4.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.0138319,.013607,1.123727,.0136063,.1935302
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.1887041,.159953,7.281399,.1592269,1.689046
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2274623,.1844013,14.41809,.1830546,2.742258
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.2997171,.228385,24.34961,.2255969,4.19353
-.6286911,.4369408,8.989628,.4274471,3.101844
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.1567745,.1335631,12.73667,.1329933,2.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.6286911,.4369408,8.989628,.4274471,3.101844
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.0138319,.013607,1.123727,.0136063,.1935302
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-1.157373,.5945906,94.02724,.5528036,16.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1421659,.1256147,4.280028,.1252946,1.096443
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.0769818,.0714808,2.970444,.0714154,.6890457
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
-.3709843,.2847434,8.714139,.2814484,2.46534
--.3814154,-.7170873,-8.959159,-.6715801,-2.53466
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.3711884,.2696834,30.15608,.2651503,5.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.2718268,.2192537,8.183585,.2175746,2.096443
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.0138319,.013607,1.123727,.0136063,.1935302
-.0853032,.0776913,6.930197,.0775783,1.19353
--.182041,-.2191366,-2.602996,-.2178854,-.898156
-.0125049,.0123532,.3764715,.0123529,.0964432
-.1567745,.1335631,12.73667,.1329933,2.19353
--.384724,-.654953,-5.501152,-.6250449,-1.898156
-.0700244,.0658254,1.64482,.0657834,.4653405
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.3711884,.2696834,30.15608,.2651503,5.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
-.8000163,.4675526,64.9949,.4458055,11.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.8714876,.4949725,70.80136,.4695261,12.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.0138319,.013607,1.123727,.0136063,.1935302
-.0138319,.013607,1.123727,.0136063,.1935302
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
-.2997171,.228385,24.34961,.2255969,4.19353
-.0230199,.0224627,1.138466,.0224605,.2391298
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.2282458,.1833317,18.54314,.1818727,3.19353
-.6286911,.4369408,8.989628,.4274471,3.101844
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.728545,.4388867,59.18843,.4206466,10.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.3711884,.2696834,30.15608,.2651503,5.19353
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-1.157373,.5945906,94.02724,.5528036,16.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
-.1887041,.159953,7.281399,.1592269,1.689046
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-1.085901,.571001,88.22077,.533498,15.19353
-.0125049,.0123532,.3764715,.0123529,.0964432
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.1396044,.1248781,2.558502,.1246199,.7993759
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.4121487,.3025489,15.90331,.2977831,3.689046
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.1567745,.1335631,12.73667,.1329933,2.19353
-.1887041,.159953,7.281399,.1592269,1.689046
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
-.4260081,.3243349,6.091472,.3203502,2.101844
-1.157373,.5945906,94.02724,.5528036,16.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.1567745,.1335631,12.73667,.1329933,2.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.2282458,.1833317,18.54314,.1818727,3.19353
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
-.1445152,.1252461,9.160344,.1248196,1.742258
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
-.0138319,.013607,1.123727,.0136063,.1935302
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.0853032,.0776913,6.930197,.0775783,1.19353
-.1445152,.1252461,9.160344,.1248196,1.742258
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.1567745,.1335631,12.73667,.1329933,2.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.0883813,.0826617,.9860126,.0826,.3757281
-.3711884,.2696834,30.15608,.2651503,5.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0853032,.0776913,6.930197,.0775783,1.19353
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.1567745,.1335631,12.73667,.1329933,2.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
-.0206421,.0202887,.2951599,.0202876,.101844
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1192854,.1062563,5.899336,.1060198,1.23913
-.3004264,.235763,11.59235,.2334704,2.689046
-.2997171,.228385,24.34961,.2255969,4.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0125049,.0123532,.3764715,.0123529,.0964432
-.0230199,.0224627,1.138466,.0224605,.2391298
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
-.0138319,.013607,1.123727,.0136063,.1935302
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2997171,.228385,24.34961,.2255969,4.19353
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.2282458,.1833317,18.54314,.1818727,3.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.5856023,.3771333,47.57549,.3652316,8.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
-.5856023,.3771333,47.57549,.3652316,8.19353
-.0138319,.013607,1.123727,.0136063,.1935302
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0700244,.0658254,1.64482,.0657834,.4653405
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.1421659,.1256147,4.280028,.1252946,1.096443
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.2282458,.1833317,18.54314,.1818727,3.19353
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.1421659,.1256147,4.280028,.1252946,1.096443
-1.228844,.6174318,99.83372,.5712509,17.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2997171,.228385,24.34961,.2255969,4.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2997171,.228385,24.34961,.2255969,4.19353
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.0769818,.0714808,2.970444,.0714154,.6890457
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.5238709,.3625683,20.21426,.3545109,4.689046
-.6355933,.4173169,24.52522,.4052557,5.689046
--.2657764,-.4100574,-13.14414,-.3974823,-2.76087
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.3620419,-.7899544,-17.90501,-.7151567,-3.76087
-.3004264,.235763,11.59235,.2334704,2.689046
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.3933565,.2852239,24.93357,.2803707,4.742258
-.1567745,.1335631,12.73667,.1329933,2.19353
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-2.052298,.8591707,130.0884,.7594913,24.74226
-.0769818,.0714808,2.970444,.0714154,.6890457
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2309355,-.3070078,-5.424499,-.3028983,-1.53466
-.6570736,.4088128,53.38195,.3938634,9.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
-1.187455,.6717913,21.76225,.636792,6.799376
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
-.4426597,.3079183,35.96255,.3012597,6.19353
-.1567745,.1335631,12.73667,.1329933,2.19353
-.0615682,.0576342,3.902602,.0575923,.7422582
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.0769818,.0714808,2.970444,.0714154,.6890457
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.0700244,.0658254,1.64482,.0657834,.4653405
-.2282458,.1833317,18.54314,.1818727,3.19353
-.728545,.4388867,59.18843,.4206466,10.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2997171,.228385,24.34961,.2255969,4.19353
-.0700244,.0658254,1.64482,.0657834,.4653405
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.514131,.343604,41.76902,.3344771,7.19353
-.0138319,.013607,1.123727,.0136063,.1935302
-.1887041,.159953,7.281399,.1592269,1.689046
-.0853032,.0776913,6.930197,.0775783,1.19353
-.4080818,.2968036,20.18195,.2918474,4.23913
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0125049,.0123532,.3764715,.0123529,.0964432
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0700244,.0658254,1.64482,.0657834,.4653405
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
-.0853032,.0776913,6.930197,.0775783,1.19353
-.3104094,.2372538,19.67583,.2344215,3.742258
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
-.4260081,.3243349,6.091472,.3203502,2.101844
-.0853032,.0776913,6.930197,.0775783,1.19353
-.2282458,.1833317,18.54314,.1818727,3.19353
-.3711884,.2696834,30.15608,.2651503,5.19353
-.0853032,.0776913,6.930197,.0775783,1.19353
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.0138319,.013607,1.123727,.0136063,.1935302
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0853032,.0776913,6.930197,.0775783,1.19353
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0350373,-.0361899,-.6421223,-.0361836,-.2006241
-.2718268,.2192537,8.183585,.2175746,2.096443
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.2997171,.228385,24.34961,.2255969,4.19353
--.3531673,-.8098043,-22.38611,-.7238197,-4.257742
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-2.229442,.8831846,181.1243,.7685498,31.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.3711884,.2696834,30.15608,.2651503,5.19353
-.728545,.4388867,59.18843,.4206466,10.19353
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
--.3820722,-.6189419,-4.262531,-.5955722,-1.624272
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.2702202,-.4381294,-17.12836,-.4215282,-3.257742
--.0732455,-.0799087,-3.622404,-.0798079,-.7608702
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
-.0138319,.013607,1.123727,.0136063,.1935302
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.8313742,.5349441,11.88778,.5179964,4.101844
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.2205043,.1853984,5.17948,.1844724,1.46534
-.0206421,.0202887,.2951599,.0202876,.101844
--.169511,-.2135406,-8.383274,-.2116547,-1.76087
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
-.514131,.343604,41.76902,.3344771,7.19353
-.4426597,.3079183,35.96255,.3012597,6.19353
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
-.4426597,.3079183,35.96255,.3012597,6.19353
-.2155509,.177764,10.66021,.1766682,2.23913
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.182041,-.2191366,-2.602996,-.2178854,-.898156
-.2155509,.177764,10.66021,.1766682,2.23913
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1468455,-.1682093,-1.638259,-.1676932,-.6242719
--.0804555,-.0873311,-1.889839,-.0872333,-.5346595
-.1887041,.159953,7.281399,.1592269,1.689046
--.0213789,-.021923,-1.35514,-.0219207,-.2577418
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
-.0769818,.0714808,2.970444,.0714154,.6890457
--.1464628,-.1755713,-5.651464,-.1746134,-1.310954
--.2096791,-.2652512,-3.842746,-.2628234,-1.200624
--.3699074,-.7680328,-14.27337,-.7037377,-3.310954
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
--.376478,-.7438233,-11.3342,-.6893046,-2.903557
--.2581851,-.3790556,-9.962419,-.3698975,-2.310954
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
-.0138319,.013607,1.123727,.0136063,.1935302
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0347405,-.0360656,-1.34051,-.0360572,-.3109543
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.2997171,.228385,24.34961,.2255969,4.19353
--.117156,-.1336394,-3.527085,-.1332542,-.9035568
--.3531673,-.8098043,-22.38611,-.7238197,-4.257742
--.246817,-.3448183,-7.430642,-.3384758,-1.903557
-.1887041,.159953,7.281399,.1592269,1.689046
-.1192854,.1062563,5.899336,.1060198,1.23913
-.0125049,.0123532,.3764715,.0123529,.0964432
-.2282458,.1833317,18.54314,.1818727,3.19353
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.0138319,.013607,1.123727,.0136063,.1935302
--.182041,-.2191366,-2.602996,-.2178854,-.898156
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.2720534,-.4635485,-22.10215,-.4423134,-3.80647
-.4426597,.3079183,35.96255,.3012597,6.19353
--.2005821,-.2790536,-16.29568,-.274047,-2.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.1291108,-.1555566,-10.48921,-.1546601,-1.80647
--.0576395,-.0621142,-4.682743,-.0620564,-.8064698
-.5311488,.3710235,15.9907,.3631817,4.096443
-.1396044,.1248781,2.558502,.1246199,.7993759
--.104326,-.1196086,-6.612882,-.1192368,-1.257742
-.2155509,.177764,10.66021,.1766682,2.23913
--.1872731,-.2479216,-11.87062,-.2446991,-2.257742
diff --git a/statsmodels/scikits/statsmodels/tests/results/gaussinvlink_resids.csv.xxx b/statsmodels/scikits/statsmodels/tests/results/gaussinvlink_resids.csv.xxx
deleted file mode 100644
index 92ca337..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/gaussinvlink_resids.csv.xxx
+++ /dev/null
@@ -1,100 +0,0 @@
--.0005153,-.0005153,.0005148,-.0005153,-.0005153
--.0002125,-.0002125,.0002037,-.0002125,-.0002125
--.0001714,-.0001714,.0001572,-.0001714,-.0001714
-.0019402,.0019402,-.0016971,.0019402,.0019402
--.0006811,-.0006811,.0005669,-.0006811,-.0006811
-.0012137,.0012137,-.0009588,.0012137,.0012137
--.0015109,-.0015109,.0011307,-.0015109,-.0015109
-.0003215,.0003215,-.0002274,.0003215,.0003215
--.0003185,-.0003185,.0002126,-.0003185,-.0003185
-.0003756,.0003756,-.0002363,.0003756,.0003756
-.0004823,.0004823,-.0002855,.0004823,.0004823
--.0014187,-.0014187,.0007893,-.0014187,-.0014187
-.0000675,.0000675,-.0000352,.0000675,.0000675
-.0004063,.0004063,-.0001991,.0004063,.0004063
--.0003615,-.0003615,.000166,-.0003615,-.0003615
--.0002974,-.0002974,.000128,-.0002974,-.0002974
--.0009327,-.0009327,.0003758,-.0009327,-.0009327
-.0011627,.0011627,-.0004385,.0011627,.0011627
-.0006779,.0006779,-.0002392,.0006779,.0006779
--.0012933,-.0012933,.000427,-.0012933,-.0012933
-.0002245,.0002245,-.0000694,.0002245,.0002245
-.0010551,.0010551,-.0003049,.0010551,.0010551
-.0002504,.0002504,-.0000677,.0002504,.0002504
-.0004086,.0004086,-.0001034,.0004086,.0004086
--.0016761,-.0016761,.0003968,-.0016761,-.0016761
-.0007476,.0007476,-.0001657,.0007476,.0007476
-.0002082,.0002082,-.0000432,.0002082,.0002082
--.0008008,-.0008008,.0001557,-.0008008,-.0008008
-.0005812,.0005812,-.0001059,.0005812,.0005812
-.0010098,.0010098,-.0001724,.0010098,.0010098
-.0002774,.0002774,-.0000444,.0002774,.0002774
--.0005028,-.0005028,.0000755,-.0005028,-.0005028
-.0002698,.0002698,-.000038,.0002698,.0002698
-.0002013,.0002013,-.0000267,.0002013,.0002013
--.0011969,-.0011969,.0001489,-.0011969,-.0011969
--.0006942,-.0006942,.0000812,-.0006942,-.0006942
-.0005655,.0005655,-.0000622,.0005655,.0005655
-.0004931,.0004931,-.000051,.0004931,.0004931
-.000325,.000325,-.0000317,.000325,.000325
--.0007702,-.0007702,.0000707,-.0007702,-.0007702
-.0000258,.0000258,-2.23e-06,.0000258,.0000258
--.0001528,-.0001528,.0000125,-.0001528,-.0001528
-.0000452,.0000452,-3.48e-06,.0000452,.0000452
--.0006839,-.0006839,.0000497,-.0006839,-.0006839
--.0007776,-.0007776,.0000534,-.0007776,-.0007776
-.0010317,.0010317,-.000067,.0010317,.0010317
-.0012,.0012,-.0000737,.0012,.0012
--.0007716,-.0007716,.0000448,-.0007716,-.0007716
--.000337,-.000337,.0000185,-.000337,-.000337
-.0011988,.0011988,-.0000625,.0011988,.0011988
--.0015461,-.0015461,.0000764,-.0015461,-.0015461
-.0009116,.0009116,-.0000427,.0009116,.0009116
--.0004708,-.0004708,.0000209,-.0004708,-.0004708
--.0012155,-.0012155,.0000513,-.0012155,-.0012155
-.0010916,.0010916,-.0000437,.0010916,.0010916
--.000272,-.000272,.0000104,-.000272,-.000272
--.0007845,-.0007845,.0000284,-.0007845,-.0007845
-.0015333,.0015333,-.0000528,.0015333,.0015333
--.0018445,-.0018445,.0000605,-.0018445,-.0018445
-.0016855,.0016855,-.0000526,.0016855,.0016855
--.0003061,-.0003061,9.10e-06,-.0003061,-.0003061
-.0010095,.0010095,-.0000286,.0010095,.0010095
-.000522,.000522,-.0000141,.000522,.000522
--.0000218,-.0000218,5.62e-07,-.0000218,-.0000218
--.0007806,-.0007806,.0000192,-.0007806,-.0007806
-.0006814,.0006814,-.000016,.0006814,.0006814
--.0001438,-.0001438,3.23e-06,-.0001438,-.0001438
-.000776,.000776,-.0000166,.000776,.000776
-.0002549,.0002549,-5.22e-06,.0002549,.0002549
-.0005775,.0005775,-.0000113,.0005775,.0005775
-.0007581,.0007581,-.0000142,.0007581,.0007581
--.000831,-.000831,.0000149,-.000831,-.000831
--.0021034,-.0021034,.0000362,-.0021034,-.0021034
--.0008899,-.0008899,.0000147,-.0008899,-.0008899
-.0010857,.0010857,-.0000171,.0010857,.0010857
--.0001886,-.0001886,2.86e-06,-.0001886,-.0001886
-.000091,.000091,-1.32e-06,.000091,.000091
-.001077,.001077,-.000015,.001077,.001077
-.0009041,.0009041,-.0000121,.0009041,.0009041
--.00022,-.00022,2.83e-06,-.00022,-.00022
--.0016403,-.0016403,.0000202,-.0016403,-.0016403
-.0002206,.0002206,-2.62e-06,.0002206,.0002206
--.0002783,-.0002783,3.17e-06,-.0002783,-.0002783
--.000493,-.000493,5.40e-06,-.000493,-.000493
--.000185,-.000185,1.95e-06,-.000185,-.000185
--.000764,-.000764,7.75e-06,-.000764,-.000764
-.0007796,.0007796,-7.61e-06,.0007796,.0007796
-.0002884,.0002884,-2.71e-06,.0002884,.0002884
-.0010937,.0010937,-9.91e-06,.0010937,.0010937
-.000307,.000307,-2.68e-06,.000307,.000307
--.000876,-.000876,7.37e-06,-.000876,-.000876
--.0001853,-.0001853,1.50e-06,-.0001853,-.0001853
-.0003247,.0003247,-2.54e-06,.0003247,.0003247
-.0004596,.0004596,-3.47e-06,.0004596,.0004596
--.0002733,-.0002733,1.99e-06,-.0002733,-.0002733
-.0013218,.0013218,-9.29e-06,.0013218,.0013218
--.0013262,-.0013262,9.00e-06,-.0013262,-.0013262
-.0000962,.0000962,-6.31e-07,.0000962,.0000962
--.0006044,-.0006044,3.83e-06,-.0006044,-.0006044
--.0006663,-.0006663,4.08e-06,-.0006663,-.0006663
diff --git a/statsmodels/scikits/statsmodels/tests/results/gaussinvlinkdata.csv.xxx b/statsmodels/scikits/statsmodels/tests/results/gaussinvlinkdata.csv.xxx
deleted file mode 100644
index 92cca5a..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/gaussinvlinkdata.csv.xxx
+++ /dev/null
@@ -1,100 +0,0 @@
-9.990249339481301893e-01,0.000000000000000000e+00,0.000000000000000000e+00
-9.788570325165041330e-01,1.000000000000000000e+00,1.000000000000000000e+00
-9.574093479488277048e-01,2.000000000000000000e+00,4.000000000000000000e+00
-9.372002657580141838e-01,3.000000000000000000e+00,9.000000000000000000e+00
-9.116054312828769657e-01,4.000000000000000000e+00,1.600000000000000000e+01
-8.900434312766939415e-01,5.000000000000000000e+00,2.500000000000000000e+01
-8.635369701824423538e-01,6.000000000000000000e+00,3.600000000000000000e+01
-8.414079537424512534e-01,7.000000000000000000e+00,4.900000000000000000e+01
-8.167590565934885749e-01,8.000000000000000000e+00,6.400000000000000000e+01
-7.935151797916807359e-01,9.000000000000000000e+00,8.100000000000000000e+01
-7.698593880290823810e-01,1.000000000000000000e+01,1.000000000000000000e+02
-7.444625216698605996e-01,1.100000000000000000e+01,1.210000000000000000e+02
-7.227980032463341420e-01,1.200000000000000000e+01,1.440000000000000000e+02
-7.003973127984955971e-01,1.300000000000000000e+01,1.690000000000000000e+02
-6.773562387721525635e-01,1.400000000000000000e+01,1.960000000000000000e+02
-6.556580138391840951e-01,1.500000000000000000e+01,2.250000000000000000e+02
-6.338067194743310928e-01,1.600000000000000000e+01,2.560000000000000000e+02
-6.152594174470387145e-01,1.700000000000000000e+01,2.890000000000000000e+02
-5.947247617010223975e-01,1.800000000000000000e+01,3.240000000000000000e+02
-5.733096511022877095e-01,1.900000000000000000e+01,3.610000000000000000e+02
-5.559968308912458523e-01,2.000000000000000000e+01,4.000000000000000000e+02
-5.386124913466926456e-01,2.100000000000000000e+01,4.410000000000000000e+02
-5.202070605780656498e-01,2.200000000000000000e+01,4.840000000000000000e+02
-5.033733568163835104e-01,2.300000000000000000e+01,5.290000000000000000e+02
-4.848977391530143177e-01,2.400000000000000000e+01,5.760000000000000000e+02
-4.715208084008154499e-01,2.500000000000000000e+01,6.250000000000000000e+02
-4.557586946437883757e-01,2.600000000000000000e+01,6.760000000000000000e+02
-4.400910298321091263e-01,2.700000000000000000e+01,7.290000000000000000e+02
-4.273633553519129435e-01,2.800000000000000000e+01,7.840000000000000000e+02
-4.142151271211392261e-01,2.900000000000000000e+01,8.410000000000000000e+02
-4.004221393694890052e-01,3.000000000000000000e+01,9.000000000000000000e+02
-3.870807008268121185e-01,3.100000000000000000e+01,9.610000000000000000e+02
-3.757740770106868800e-01,3.200000000000000000e+01,1.024000000000000000e+03
-3.640911871604200489e-01,3.300000000000000000e+01,1.089000000000000000e+03
-3.515261636251627575e-01,3.400000000000000000e+01,1.156000000000000000e+03
-3.412926246824091736e-01,3.500000000000000000e+01,1.225000000000000000e+03
-3.322299768097078942e-01,3.600000000000000000e+01,1.296000000000000000e+03
-3.222326169287403896e-01,3.700000000000000000e+01,1.369000000000000000e+03
-3.125210285041158387e-01,3.800000000000000000e+01,1.444000000000000000e+03
-3.022481761364523845e-01,3.900000000000000000e+01,1.521000000000000000e+03
-2.942173331248836288e-01,4.000000000000000000e+01,1.600000000000000000e+03
-2.855480195038926361e-01,4.100000000000000000e+01,1.681000000000000000e+03
-2.775773615799370653e-01,4.200000000000000000e+01,1.764000000000000000e+03
-2.689880189987039483e-01,4.300000000000000000e+01,1.849000000000000000e+03
-2.613293481787759553e-01,4.400000000000000000e+01,1.936000000000000000e+03
-2.558564870285819914e-01,4.500000000000000000e+01,2.025000000000000000e+03
-2.490132564067788212e-01,4.600000000000000000e+01,2.116000000000000000e+03
-2.402892192749258582e-01,4.700000000000000000e+01,2.209000000000000000e+03
-2.342193591357977778e-01,4.800000000000000000e+01,2.304000000000000000e+03
-2.294880912283328855e-01,4.900000000000000000e+01,2.401000000000000000e+03
-2.207033670695684735e-01,5.000000000000000000e+01,2.500000000000000000e+03
-2.173387383058504596e-01,5.100000000000000000e+01,2.601000000000000000e+03
-2.103422349163473759e-01,5.200000000000000000e+01,2.704000000000000000e+03
-2.041828319187995178e-01,5.300000000000000000e+01,2.809000000000000000e+03
-2.012661100453559393e-01,5.400000000000000000e+01,2.916000000000000000e+03
-1.948615508291260123e-01,5.500000000000000000e+01,3.025000000000000000e+03
-1.894832554908563171e-01,5.600000000000000000e+01,3.136000000000000000e+03
-1.871029815687349496e-01,5.700000000000000000e+01,3.249000000000000000e+03
-1.791879121900162297e-01,5.800000000000000000e+01,3.364000000000000000e+03
-1.783346845438451289e-01,5.900000000000000000e+01,3.481000000000000000e+03
-1.721075631609500500e-01,6.000000000000000000e+01,3.600000000000000000e+03
-1.693292320082958879e-01,6.100000000000000000e+01,3.721000000000000000e+03
-1.648836926185452412e-01,6.200000000000000000e+01,3.844000000000000000e+03
-1.605119588510684203e-01,6.300000000000000000e+01,3.969000000000000000e+03
-1.560503117810157214e-01,6.400000000000000000e+01,4.096000000000000000e+03
-1.539292764114401912e-01,6.500000000000000000e+01,4.225000000000000000e+03
-1.496362062185473685e-01,6.600000000000000000e+01,4.356000000000000000e+03
-1.471987550479245677e-01,6.700000000000000000e+01,4.489000000000000000e+03
-1.434263820143593382e-01,6.800000000000000000e+01,4.624000000000000000e+03
-1.405998514706517655e-01,6.900000000000000000e+01,4.761000000000000000e+03
-1.377292165297502591e-01,7.000000000000000000e+01,4.900000000000000000e+03
-1.331829885571519656e-01,7.100000000000000000e+01,5.041000000000000000e+03
-1.290440622241687540e-01,7.200000000000000000e+01,5.184000000000000000e+03
-1.274780913776027147e-01,7.300000000000000000e+01,5.329000000000000000e+03
-1.267579561764744234e-01,7.400000000000000000e+01,5.476000000000000000e+03
-1.228685288284812605e-01,7.500000000000000000e+01,5.625000000000000000e+03
-1.206104598731980310e-01,7.600000000000000000e+01,5.776000000000000000e+03
-1.191333779715975649e-01,7.700000000000000000e+01,5.929000000000000000e+03
-1.165693743238448016e-01,7.800000000000000000e+01,6.084000000000000000e+03
-1.131233075542753264e-01,7.900000000000000000e+01,6.241000000000000000e+03
-1.094477090358059179e-01,8.000000000000000000e+01,6.400000000000000000e+03
-1.091176000381445105e-01,8.100000000000000000e+01,6.561000000000000000e+03
-1.064895535043010877e-01,8.200000000000000000e+01,6.724000000000000000e+03
-1.042054768540757598e-01,8.300000000000000000e+01,6.889000000000000000e+03
-1.025016031358343266e-01,8.400000000000000000e+01,7.056000000000000000e+03
-9.996632745658354247e-02,8.500000000000000000e+01,7.225000000000000000e+03
-9.960722159045513890e-02,8.600000000000000000e+01,7.396000000000000000e+03
-9.726506168050569334e-02,8.700000000000000000e+01,7.569000000000000000e+03
-9.626924414505422245e-02,8.800000000000000000e+01,7.744000000000000000e+03
-9.372963235104618540e-02,8.900000000000000000e+01,7.921000000000000000e+03
-9.084030473570772757e-02,9.000000000000000000e+01,8.100000000000000000e+03
-8.986970059124181620e-02,9.100000000000000000e+01,8.281000000000000000e+03
-8.876179581388053685e-02,9.200000000000000000e+01,8.464000000000000000e+03
-8.732071322540591041e-02,9.300000000000000000e+01,8.649000000000000000e+03
-8.505258413549544871e-02,9.400000000000000000e+01,8.836000000000000000e+03
-8.515154414865563903e-02,9.500000000000000000e+01,9.025000000000000000e+03
-8.104553812920033129e-02,9.600000000000000000e+01,9.216000000000000000e+03
-8.104656715168412351e-02,9.700000000000000000e+01,9.409000000000000000e+03
-7.896008091952998187e-02,9.800000000000000000e+01,9.604000000000000000e+03
-7.754685917796816375e-02,9.900000000000000000e+01,9.801000000000000000e+03
diff --git a/statsmodels/scikits/statsmodels/tests/results/glm_gaussian_log_resid.csv.xxx b/statsmodels/scikits/statsmodels/tests/results/glm_gaussian_log_resid.csv.xxx
deleted file mode 100644
index 76ff668..0000000
--- a/statsmodels/scikits/statsmodels/tests/results/glm_gaussian_log_resid.csv.xxx
+++ /dev/null
@@ -1,100 +0,0 @@
-.0003208,.0003208,.0008721,.0003208,.0003208
-.0008121,.0008121,.0021635,.0008121,.0008121
--.0002948,-.0002948,-.0007697,-.0002948,-.0002948
-.0014019,.0014019,.0035856,.0014019,.0014019
--.0023091,-.0023091,-.0057849,-.0023091,-.0023091
-.0011038,.0011038,.0027082,.0011038,.0011038
--5.14e-06,-5.14e-06,-.0000123,-5.14e-06,-5.14e-06
--.0001655,-.0001655,-.0003892,-.0001655,-.0001655
--.0007554,-.0007554,-.0017387,-.0007554,-.0007554
--.0001398,-.0001398,-.0003148,-.0001398,-.0001398
--.000717,-.000717,-.00158,-.000717,-.000717
--.0001122,-.0001122,-.0002419,-.0001122,-.0001122
-.0003221,.0003221,.000679,.0003221,.0003221
--.0000378,-.0000378,-.0000779,-.0000378,-.0000378
-.0005545,.0005545,.0011173,.0005545,.0005545
-.0003384,.0003384,.0006663,.0003384,.0003384
-.0000972,.0000972,.000187,.0000972,.0000972
--.0007929,-.0007929,-.0014907,-.0007929,-.0007929
-.000333,.000333,.0006115,.000333,.000333
--.0008353,-.0008353,-.0014979,-.0008353,-.0008353
--.0003997,-.0003997,-.0006998,-.0003997,-.0003997
-.0001413,.0001413,.0002415,.0001413,.0001413
--.0008507,-.0008507,-.0014192,-.0008507,-.0008507
-1.43e-06,1.43e-06,2.33e-06,1.43e-06,1.43e-06
--.0000912,-.0000912,-.0001449,-.0000912,-.0000912
-.0006755,.0006755,.0010465,.0006755,.0006755
-.0003979,.0003979,.0006011,.0003979,.0003979
-.0000107,.0000107,.0000157,.0000107,.0000107
--.0008152,-.0008152,-.0011706,-.0008152,-.0008152
--.0008464,-.0008464,-.0011846,-.0008464,-.0008464
-.0009912,.0009912,.0013518,.0009912,.0009912
--.0005074,-.0005074,-.0006742,-.0005074,-.0005074
-.0010852,.0010852,.0014045,.0010852,.0010852
-.0009561,.0009561,.001205,.0009561,.0009561
-.001875,.001875,.0023009,.001875,.001875
--.0019392,-.0019392,-.0023165,-.0019392,-.0019392
-.000816,.000816,.0009487,.000816,.000816
-.0010152,.0010152,.0011486,.0010152,.0010152
-.0010415,.0010415,.0011464,.0010415,.0010415
--.0003882,-.0003882,-.0004156,-.0003882,-.0003882
-.0009959,.0009959,.0010369,.0009959,.0009959
--.0006828,-.0006828,-.0006912,-.0006828,-.0006828
--.0008114,-.0008114,-.0007985,-.0008114,-.0008114
--.0017905,-.0017905,-.0017125,-.0017905,-.0017905
-.00061,.00061,.0005669,.00061,.00061
-.0002526,.0002526,.0002281,.0002526,.0002526
--.0008625,-.0008625,-.0007564,-.0008625,-.0008625
--.0003473,-.0003473,-.0002958,-.0003473,-.0003473
--.0000779,-.0000779,-.0000644,-.0000779,-.0000779
-.000672,.000672,.0005394,.000672,.000672
--.0003721,-.0003721,-.0002899,-.0003721,-.0003721
--.0001229,-.0001229,-.0000929,-.0001229,-.0001229
--.0016347,-.0016347,-.001199,-.0016347,-.0016347
-.0002644,.0002644,.0001881,.0002644,.0002644
-.0017923,.0017923,.0012365,.0017923,.0017923
--.0001405,-.0001405,-.000094,-.0001405,-.0001405
--.0002985,-.0002985,-.0001936,-.0002985,-.0002985
--.0009331,-.0009331,-.0005864,-.0009331,-.0009331
-.0009112,.0009112,.0005549,.0009112,.0009112
--.0013184,-.0013184,-.0007779,-.0013184,-.0013184
--.0001302,-.0001302,-.0000744,-.0001302,-.0001302
-.0009093,.0009093,.0005032,.0009093,.0009093
--.0002395,-.0002395,-.0001283,-.0002395,-.0002395
-.0007153,.0007153,.000371,.0007153,.0007153
-.0000545,.0000545,.0000273,.0000545,.0000545
-.0028531,.0028531,.001386,.0028531,.0028531
-.0004634,.0004634,.0002178,.0004634,.0004634
-.0002809,.0002809,.0001277,.0002809,.0002809
-.0000542,.0000542,.0000238,.0000542,.0000542
--.0003623,-.0003623,-.000154,-.0003623,-.0003623
--.001119,-.001119,-.0004598,-.001119,-.001119
-.001289,.001289,.0005119,.001289,.001289
--.0014082,-.0014082,-.0005404,-.0014082,-.0014082
--.0001693,-.0001693,-.0000628,-.0001693,-.0001693
--.0010362,-.0010362,-.000371,-.0010362,-.0010362
-.0014915,.0014915,.0005158,.0014915,.0014915
--.0000722,-.0000722,-.0000241,-.0000722,-.0000722
-.000549,.000549,.0001769,.000549,.000549
--.0021232,-.0021232,-.0006604,-.0021232,-.0021232
-7.84e-06,7.84e-06,2.35e-06,7.84e-06,7.84e-06
-.0011558,.0011558,.0003347,.0011558,.0011558
-.0004834,.0004834,.000135,.0004834,.0004834
--.0005261,-.0005261,-.0001417,-.0005261,-.0005261
--.0001751,-.0001751,-.0000455,-.0001751,-.0001751
--.001846,-.001846,-.0004621,-.001846,-.001846
-.0002072,.0002072,.00005,.0002072,.0002072
--.0008547,-.0008547,-.0001987,-.0008547,-.0008547
--.000092,-.000092,-.0000206,-.000092,-.000092
-.0005357,.0005357,.0001156,.0005357,.0005357
--.0007673,-.0007673,-.0001594,-.0007673,-.0007673
--.0017971,-.0017971,-.0003595,-.0017971,-.0017971
-.0011091,.0011091,.0002135,.0011091,.0011091
--.0005538,-.0005538,-.0001026,-.0005538,-.0005538
-.000748,.000748,.0001334,.000748,.000748
-.000423,.000423,.0000726,.000423,.000423
--.0003164,-.0003164,-.0000522,-.0003164,-.0003164
--.0006632,-.0006632,-.0001052,-.0006632,-.0006632
-.0013354,.0013354,.0002037,.0013354,.0013354
--.0007812,-.0007812,-.0001146,-.0007812,-.0007812
-.0016788,.0016788,.0002366,.0016788,.0016788
diff --git a/statsmodels/scikits/statsmodels/tests/rmodelwrap.py b/statsmodels/scikits/statsmodels/tests/rmodelwrap.py
deleted file mode 100644
index 8b561a5..0000000
--- a/statsmodels/scikits/statsmodels/tests/rmodelwrap.py
+++ /dev/null
@@ -1,128 +0,0 @@
-''' Wrapper for R models to allow comparison to scipy models '''
-
-import numpy as np
-
-import rpy
-from check_for_rpy import skip_rpy
-skipR = skip_rpy()
-if not skipR:
- from rpy import r
-
-# MASS contains
-# negative binomial family for GLM
-# rlm
-
-#TODO: write a check_key wrapper for these
-
-class RModel(object):
- ''' Class gives R models scipy.models -like interface '''
- def __init__(self, y, design, model_type=r.lm, **kwds):
- ''' Set up and estimate R model with data and design '''
- r.library('MASS') # still needs to be in test, but also here for
- # logical tests at the end not to show an error
- self.y = np.array(y)
- self.design = np.array(design)
- self.model_type = model_type
- self._design_cols = ['x.%d' % (i+1) for i in range(
- self.design.shape[1])]
- # Note the '-1' for no intercept - this is included in the design
- self.formula = r('y ~ %s-1' % '+'.join(self._design_cols))
- self.frame = r.data_frame(y=y, x=self.design)
- rpy.set_default_mode(rpy.NO_CONVERSION)
- results = self.model_type(self.formula,
- data = self.frame, **kwds)
- self.robj = results # keep the Robj model so it can be
- # used in the tests
- rpy.set_default_mode(rpy.BASIC_CONVERSION)
- rsum = r.summary(results)
- self.rsum = rsum
- # Provide compatible interface with scipy models
- self.results = results.as_py()
-
-# coeffs = self.results['coefficients']
-# self.beta0 = np.array([coeffs[c] for c in self._design_cols])
- self.nobs = len(self.results['residuals'])
- if isinstance(self.results['residuals'], dict):
- self.resid = np.zeros((len(self.results['residuals'].keys())))
- for i in self.results['residuals'].keys():
- self.resid[int(i)-1] = self.results['residuals'][i]
- else:
- self.resid = self.results['residuals']
- self.fittedvalues = self.results['fitted.values']
- self.df_resid = self.results['df.residual']
- self.params = rsum['coefficients'][:,0]
- self.bse = rsum['coefficients'][:,1]
- self.bt = rsum['coefficients'][:,2]
- try:
- self.pvalues = rsum['coefficients'][:,3]
- except: pass
- self.rsquared = rsum.setdefault('r.squared', None)
- self.rsquared_adj = rsum.setdefault('adj.r.squared', None)
- self.aic_R = rsum.setdefault('aic', None)
- self.fvalue = rsum.setdefault('fstatistic', None)
- if self.fvalue and isinstance(self.fvalue, dict):
- self.fvalue = self.fvalue.setdefault('value', None) # for wls
- df = rsum.setdefault('df', None)
- if df: # for RLM, works for other models?
- self.df_model = df[0]-1 # R counts intercept
- self.df_resid = df[1]
- self.bcov_unscaled = rsum.setdefault('cov.unscaled', None)
- self.bcov = rsum.setdefault('cov.scaled', None)
- if 'sigma' in rsum:
- self.scale = rsum['sigma']
- elif 'dispersion' in rsum:
- self.scale = rsum['dispersion']
- else:
- self.scale = None
- self.llf = r.logLik(results)
-
- if model_type == r.glm:
- self.getglm()
- if model_type == r.rlm:
- self.getrlm()
-
- def getglm(self):
- self.deviance = self.rsum['deviance']
- self.resid = [self.results['residuals'][str(k)] \
- for k in range(1, 1+self.nobs)]
- if isinstance(self.resid, dict):
- tmp = np.zeros(len(self.resid))
- for i in self.resid.keys():
- tmp[int(i)-1] = self.resid[i]
- self.resid = tmp
- self.predict = [self.results['linear.predictors'][str(k)] \
- for k in range(1, 1+self.nobs)]
- self.fittedvalues = [self.results['fitted.values'][str(k)] \
- for k in range(1, 1+self.nobs)]
- self.weights = [self.results['weights'][str(k)] \
- for k in range(1, 1+self.nobs)]
- self.resid_deviance = self.rsum['deviance.resid']
- if isinstance(self.resid_deviance, dict):
- tmp = np.zeros(len(self.resid_deviance))
- for i in self.resid_deviance.keys():
- tmp[int(i)-1] = self.resid_deviance[i]
- self.resid_deviance = tmp
- self.null_deviance = self.rsum['null.deviance']
-
- def getrlm(self):
- self.k2 = self.results['k2']
- if isinstance(self.results['w'], dict):
- tmp = np.zeros((len(self.results['w'].keys())))
- for i in self.results['w'].keys():
- tmp[int(i)-1] = self.results['w'][i]
- self.weights = tmp
- else: self.weights = self.results['w']
- self.stddev = self.rsum['stddev'] # Don't know what this is yet
- self.wresid = None # these equal resids always?
-
-#TODO:
-# function to write Rresults to results file, so this is a developers tool
-# and not a test dependency?
-def RModelConvert(model, sec_title=None, results_title=None):
- import os
- if not results_title:
- raise AttributeError("You need to specify a results title")
- outfile = open('./model_results.py', 'a')
- outfile.write('class '+results_title)
- outfile.write(' '*4) # handle indents
-
diff --git a/statsmodels/scikits/statsmodels/tools/__init__.py b/statsmodels/scikits/statsmodels/tools/__init__.py
deleted file mode 100644
index 74f0ac2..0000000
--- a/statsmodels/scikits/statsmodels/tools/__init__.py
+++ /dev/null
@@ -1,5 +0,0 @@
-from tools import add_constant, categorical
-from datautils import Dataset
-
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/tools/catadd.py b/statsmodels/scikits/statsmodels/tools/catadd.py
deleted file mode 100644
index e1b8a53..0000000
--- a/statsmodels/scikits/statsmodels/tools/catadd.py
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-import numpy as np
-from scikits.statsmodels.tools.tools import rank as smrank
-
-
-def add_indep(x, varnames, dtype=None):
- '''
- construct array with independent columns
-
- x is either iterable (list, tuple) or instance of ndarray or a subclass of it.
- If x is an ndarray, then each column is assumed to represent a variable with
- observations in rows.
- '''
- #TODO: this needs tests for subclasses
-
- if isinstance(x, np.ndarray) and x.ndim == 2:
- x = x.T
-
- nvars_orig = len(x)
- nobs = len(x[0])
- #print 'nobs, nvars_orig', nobs, nvars_orig
- if not dtype:
- dtype = np.asarray(x[0]).dtype
- xout = np.zeros((nobs, nvars_orig), dtype=dtype)
- count = 0
- rank_old = 0
- varnames_new = []
- varnames_dropped = []
- keepindx = []
- for (xi, ni) in zip(x, varnames):
- #print xi.shape, xout.shape
- xout[:,count] = xi
- rank_new = smrank(xout)
- #print rank_new
- if rank_new > rank_old:
- varnames_new.append(ni)
- rank_old = rank_new
- count += 1
- else:
- varnames_dropped.append(ni)
-
- return xout[:,:count], varnames_new
-
-if __name__ == '__main__':
- x1 = np.array([0,0,0,0,0,1,1,1,2,2,2])
- x2 = np.array([0,0,0,0,0,1,1,1,1,1,1])
- x0 = np.ones(len(x2))
- x = np.column_stack([x0, x1[:,None]*np.arange(3), x2[:,None]*np.arange(2)])
- varnames = ['const'] + ['var1_%d' %i for i in np.arange(3)] \
- + ['var2_%d' %i for i in np.arange(2)]
- xo,vo = add_indep(x, varnames)
- print xo.shape
-
-
-
-
-
diff --git a/statsmodels/scikits/statsmodels/tools/compatibility.py b/statsmodels/scikits/statsmodels/tools/compatibility.py
deleted file mode 100644
index 67904af..0000000
--- a/statsmodels/scikits/statsmodels/tools/compatibility.py
+++ /dev/null
@@ -1,36 +0,0 @@
-
-import numpy as np
-
-try:
- from numpy.linalg import slogdet as np_slogdet
-except:
- def np_slogdet(x):
- return 1, np.log(np.linalg.det(x))
-
-
-
-def getZipFile():
- '''return ZipFile class with open method for python < 2.6
-
- for python < 2.6, the open method returns a StringIO.StringIO file_like
-
- Examples
- --------
- ZipFile = getZipFile()
- ...
-
- not fully tested yet
- written for pyecon
-
- '''
- import sys, zipfile
- if sys.version >= '2.6':
- return zipfile.ZipFile
- else:
- class ZipFile(zipfile.ZipFile):
-
- def open(self, filename):
- fullfilename = [f for f in self.namelist() if filename in f][0]
- import StringIO
- return StringIO.StringIO(self.read(fullfilename))
- return ZipFile
diff --git a/statsmodels/scikits/statsmodels/tools/data.py b/statsmodels/scikits/statsmodels/tools/data.py
deleted file mode 100644
index 76dcf5f..0000000
--- a/statsmodels/scikits/statsmodels/tools/data.py
+++ /dev/null
@@ -1,82 +0,0 @@
-"""
-Compatibility tools for various data structure inputs
-"""
-
-#TODO: question: interpret_data
-# looks good and could/should be merged with other check convertion functions we also have
-# similar also to what Nathaniel mentioned for Formula
-# good: if ndarray check passes then loading pandas is not triggered,
-
-
-import numpy as np
-
-def have_pandas():
- try:
- import pandas
- return True
- except ImportError:
- return False
- except Exception:
- return False
-
-def is_data_frame(obj):
- if not have_pandas():
- return False
-
- import pandas as pn
-
- return isinstance(obj, pn.DataFrame)
-
-def is_structured_ndarray(obj):
- return isinstance(obj, np.ndarray) and obj.dtype.names is not None
-
-def interpret_data(data, colnames=None, rownames=None):
- """
- Convert passed data structure to form required by estimation classes
-
- Parameters
- ----------
- data : ndarray-like
- colnames : sequence or None
- May be part of data structure
- rownames : sequence or None
-
- Returns
- -------
- (values, colnames, rownames) : (homogeneous ndarray, list)
- """
- if isinstance(data, np.ndarray):
- if is_structured_ndarray(data):
- if colnames is None:
- colnames = data.dtype.names
- values = struct_to_ndarray(data)
- else:
- values = data
-
- if colnames is None:
- colnames = ['Y_%d' % i for i in range(values.shape[1])]
- elif is_data_frame(data):
- # XXX: hack
- data = data.dropIncompleteRows()
- values = data.values
- colnames = data.columns
- rownames = data.index
- else: # pragma: no cover
- raise Exception('cannot handle other input types at the moment')
-
- if not isinstance(colnames, list):
- colnames = list(colnames)
-
- # sanity check
- if len(colnames) != values.shape[1]:
- raise ValueError('length of colnames does not match number '
- 'of columns in data')
-
- if rownames is not None and len(rownames) != len(values):
- raise ValueError('length of rownames does not match number '
- 'of rows in data')
-
- return values, colnames, rownames
-
-def struct_to_ndarray(arr):
- return arr.view((float, len(arr.dtype.names)))
diff --git a/statsmodels/scikits/statsmodels/tools/datautils.py b/statsmodels/scikits/statsmodels/tools/datautils.py
deleted file mode 100644
index 256eb26..0000000
--- a/statsmodels/scikits/statsmodels/tools/datautils.py
+++ /dev/null
@@ -1,70 +0,0 @@
-import os
-import time
-import numpy as np
-from numpy import genfromtxt, array
-
-class Dataset(dict):
- def __init__(self, **kw):
- dict.__init__(self,kw)
- self.__dict__ = self
-# Some datasets have string variables. If you want a raw_data attribute you
-# must create this in the dataset's load function.
- try: # some datasets have string variables
- self.raw_data = self.data.view((float, len(self.names)))
- except:
- pass
-
- def __repr__(self):
- return str(self.__class__)
-
-def process_recarray(data, endog_idx=0, stack=True, dtype=None):
- names = list(data.dtype.names)
-
- if isinstance(endog_idx, int):
- endog = array(data[names[endog_idx]], dtype=dtype)
- endog_name = names[endog_idx]
- endog_idx = [endog_idx]
- else:
- endog_name = [names[i] for i in endog_idx]
-
- if stack:
- endog = np.column_stack(data[field] for field in endog_name)
- else:
- endog = data[endog_name]
-
- exog_name = [names[i] for i in xrange(len(names))
- if i not in endog_idx]
-
- if stack:
- exog = np.column_stack(data[field] for field in exog_name)
- else:
- exog = data[exog_name]
-
- if dtype:
- endog = endog.astype(dtype)
- exog = exog.astype(dtype)
-
- dataset = Dataset(data=data, names=names, endog=endog, exog=exog,
- endog_name=endog_name, exog_name=exog_name)
-
- return dataset
-
-def process_recarray_pandas(data, endog_idx=0, dtype=None):
- from pandas import DataFrame
-
- data = DataFrame(data, dtype=dtype)
- names = list(data.columns)
-
- if isinstance(endog_idx, int):
- endog_name = names[endog_idx]
- endog = data[endog_name]
- exog = data.drop([endog_name], axis=1)
- else:
- endog = data.ix[:, endog_idx]
- endog_name = list(endog.columns)
- exog = data.drop(endog_name, axis=1)
-
- exog_name = list(exog.columns)
- dataset = Dataset(data=data, names=names, endog=endog, exog=exog,
- endog_name=endog_name, exog_name=exog_name)
- return dataset
diff --git a/statsmodels/scikits/statsmodels/tools/decorators.py b/statsmodels/scikits/statsmodels/tools/decorators.py
deleted file mode 100644
index 79fc045..0000000
--- a/statsmodels/scikits/statsmodels/tools/decorators.py
+++ /dev/null
@@ -1,254 +0,0 @@
-from numpy.testing import *
-import warnings
-
-__all__ = ['resettable_cache','cache_readonly', 'cache_writable']
-
-class CacheWriteWarning(UserWarning):
- pass
-
-
-class ResettableCache(dict):
- """
- Dictionary whose elements mey depend one from another.
-
- If entry `B` depends on entry `A`, changing the values of entry `A` will
- reset the value of entry `B` to a default (None); deleteing entry `A` will
- delete entry `B`. The connections between entries are stored in a
- `_resetdict` private attribute.
-
- Parameters
- ----------
- reset : dictionary, optional
- An optional dictionary, associated a sequence of entries to any key
- of the object.
- items : var, optional
- An optional dictionary used to initialize the dictionary
-
- Examples
- --------
- >>> reset = dict(a=('b',), b=('c',))
- >>> cache = resettable_cache(a=0, b=1, c=2, reset=reset)
- >>> assert_equal(cache, dict(a=0, b=1, c=2))
-
- >>> print "Try resetting a"
- >>> cache['a'] = 1
- >>> assert_equal(cache, dict(a=1, b=None, c=None))
- >>> cache['c'] = 2
- >>> assert_equal(cache, dict(a=1, b=None, c=2))
- >>> cache['b'] = 0
- >>> assert_equal(cache, dict(a=1, b=0, c=None))
-
- >>> print "Try deleting b"
- >>> del(cache['a'])
- >>> assert_equal(cache, {})
- """
-
- def __init__(self, reset=None, **items):
- self._resetdict = reset or {}
- dict.__init__(self, **items)
-
- def __setitem__(self, key, value):
- dict.__setitem__(self, key, value)
- for mustreset in self._resetdict.get(key, []):
- self[mustreset] = None
-
- def __delitem__(self, key):
- dict.__delitem__(self, key)
- for mustreset in self._resetdict.get(key, []):
- del(self[mustreset])
-
-resettable_cache = ResettableCache
-
-class CachedAttribute(object):
-
- def __init__(self, func, cachename=None, resetlist=None):
- self.fget = func
- self.name = func.__name__
- self.cachename = cachename or '_cache'
- self.resetlist = resetlist or ()
-
- def __get__(self, obj, type=None):
- if obj is None:
- return self.fget
- # Get the cache or set a default one if needed
- _cachename = self.cachename
- _cache = getattr(obj, _cachename, None)
- if _cache is None:
- setattr(obj, _cachename, resettable_cache())
- _cache = getattr(obj, _cachename)
- # Get the name of the attribute to set and cache
- name = self.name
- _cachedval = _cache.get(name, None)
-# print "[_cachedval=%s]" % _cachedval
- if _cachedval is None:
- # Call the "fget" function
- _cachedval = self.fget(obj)
- # Set the attribute in obj
-# print "Setting %s in cache to %s" % (name, _cachedval)
- try:
- _cache[name] = _cachedval
- except KeyError:
- setattr(_cache, name, _cachedval)
- # Update the reset list if needed (and possible)
- resetlist = self.resetlist
- if resetlist is not ():
- try:
- _cache._resetdict[name] = self.resetlist
- except AttributeError:
- pass
-# else:
-# print "Reading %s from cache (%s)" % (name, _cachedval)
- return _cachedval
-
- def __set__(self, obj, value):
- errmsg = "The attribute '%s' cannot be overwritten" % self.name
- warnings.warn(errmsg, CacheWriteWarning)
-
-class CachedWritableAttribute(CachedAttribute):
- #
- def __set__(self, obj, value):
- _cache = getattr(obj, self.cachename)
- name = self.name
- try:
- _cache[name] = value
- except KeyError:
- setattr(_cache, name, value)
-
-class _cache_readonly(object):
- """
- Decorator for CachedAttribute
- """
-
- def __init__(self, cachename=None, resetlist=None):
- self.func = None
- self.cachename = cachename
- self.resetlist = resetlist or None
-
- def __call__(self, func):
- return CachedAttribute(func,
- cachename=self.cachename,
- resetlist=self.resetlist)
-cache_readonly = _cache_readonly()
-
-class cache_writable(_cache_readonly):
- """
- Decorator for CachedWritableAttribute
- """
- def __call__(self, func):
- return CachedWritableAttribute(func,
- cachename=self.cachename,
- resetlist=self.resetlist)
-
-
-#this has been copied from nitime a long time ago
-#TODO: ceck whether class has change in nitime
-class OneTimeProperty(object):
-
-
- """A descriptor to make special properties that become normal attributes.
-
- This is meant to be used mostly by the auto_attr decorator in this module.
- Author: Fernando Perez, copied from nitime
- """
- def __init__(self,func):
-
- """Create a OneTimeProperty instance.
-
- Parameters
- ----------
- func : method
-
- The method that will be called the first time to compute a value.
- Afterwards, the method's name will be a standard attribute holding
- the value of this computation.
- """
- self.getter = func
- self.name = func.func_name
-
- def __get__(self,obj,type=None):
- """This will be called on attribute access on the class or instance. """
-
- if obj is None:
- # Being called on the class, return the original function. This way,
- # introspection works on the class.
- #return func
- #print 'class access'
- return self.getter
-
- val = self.getter(obj)
- #print "** auto_attr - loading '%s'" % self.name # dbg
- setattr(obj, self.name, val)
- return val
-
-
-if __name__ == "__main__":
-### Tests resettable_cache ----------------------------------------------------
- reset = dict(a=('b',), b=('c',))
- cache = resettable_cache(a=0, b=1, c=2, reset=reset)
- assert_equal(cache, dict(a=0, b=1, c=2))
- #
- print "Try resetting a"
- cache['a'] = 1
- assert_equal(cache, dict(a=1, b=None, c=None))
- cache['c'] = 2
- assert_equal(cache, dict(a=1, b=None, c=2))
- cache['b'] = 0
- assert_equal(cache, dict(a=1, b=0, c=None))
- #
- print "Try deleting b"
- del(cache['a'])
- assert_equal(cache, {})
-### ---------------------------------------------------------------------------
-
-
- class Example(object):
- #
- def __init__(self):
- self._cache = resettable_cache()
- self.a = 0
- #
- @cache_readonly
- def b(self):
- return 1
- @cache_writable(resetlist='d')
- def c(self):
- return 2
- @cache_writable(resetlist=('e', 'f'))
- def d(self):
- return self.c + 1
- #
- @cache_readonly
- def e(self):
- return 4
- @cache_readonly
- def f(self):
- return self.e + 1
-
- ex = Example()
- print "(attrs : %s)" % str(ex.__dict__)
- print "(cached : %s)" % str(ex._cache)
- print "Try a :", ex.a
- print "Try accessing/setting a readonly attribute"
- assert_equal(ex.__dict__, dict(a=0, _cache={}))
- print "Try b #1:", ex.b
- b = ex.b
- assert_equal(b, 1)
- assert_equal(ex.__dict__, dict(a=0, _cache=dict(b=1,)))
-# assert_equal(ex.__dict__, dict(a=0, b=1, _cache=dict(b=1)))
- ex.b = -1
- print "Try dict", ex.__dict__
- assert_equal(ex._cache, dict(b=1,))
- #
- print "Try accessing/resetting a cachewritable attribute"
- c = ex.c
- assert_equal(c, 2)
- assert_equal(ex._cache, dict(b=1, c=2))
- d = ex.d
- assert_equal(d, 3)
- assert_equal(ex._cache, dict(b=1, c=2, d=3))
- ex.c = 0
- assert_equal(ex._cache, dict(b=1, c=0, d=None, e=None, f=None))
- d = ex.d
- assert_equal(ex._cache, dict(b=1, c=0, d=1, e=None, f=None))
- ex.d = 5
- assert_equal(ex._cache, dict(b=1, c=0, d=5, e=None, f=None))
diff --git a/statsmodels/scikits/statsmodels/tools/dump2module.py b/statsmodels/scikits/statsmodels/tools/dump2module.py
deleted file mode 100644
index d200604..0000000
--- a/statsmodels/scikits/statsmodels/tools/dump2module.py
+++ /dev/null
@@ -1,174 +0,0 @@
-'''Save a set of numpy arrays to a python module file that can be imported
-
-Author : Josef Perktold
-'''
-
-import numpy as np
-
-class HoldIt(object):
- '''Class to write numpy arrays into a python module
-
- Calling save on the instance of this class write all attributes of the
- instance into a module file. For details see the save method.
-
- '''
-
- def __init__(self, name):
- self.name = name
- def save(self, what=None, filename=None, header=True, useinstance=True,
- comment=None, print_options=None):
- '''write attributes of this instance to python module given by filename
-
- Parameters
- ----------
- what : list or None
- list of attributes that are added to the module. If None (default)
- then all attributes in __dict__ that do not start with an underline
- will be saved.
- filename : string
- specifies filename with path. If the file does not exist, it will be
- created. If the file is already exists, then the new data will be
- appended to the file.
- header : bool
- If true, then the imports of the module and the class definition are
- written before writing the data.
- useinstance : bool
- If true, then the data in the module are attached to an instance of a
- holder class. If false, then each array will be saved as separate
- variable.
- comment : string
- If comment is not empty then this string will be attached as a
- description comment to the data instance in the saved module.
- print_options : dict or None
- The print_options for the numpy arrays will be updated with this.
- see notes
-
- Notes
- -----
- The content of an numpy array are written using repr, which can be
- controlled with the np.set_printoptions. The numpy default is updated
- with: precision=20, linewidth=100, nanstr='nan', infstr='inf'
-
- This should provide enough precision for double floating point numbers.
- If one array has more than 1000 elements, then threshold should be
- overwritten by the user, see keyword argument print_options.
- '''
-
- print_opt_old = np.get_printoptions()
- print_opt = dict(precision=20, linewidth=100, nanstr='nan',
- infstr='inf')
- if print_options:
- print_opt.update(print_options)
- np.set_printoptions(**print_opt)
- #precision corrects for non-scientific notation
- if what is None:
- what = (i for i in self.__dict__ if i[0] != '_')
- if header:
- txt = ['import numpy as np\n'
- 'from numpy import array, rec, inf, nan\n\n']
- if useinstance:
- txt.append('class Holder(object):\n pass\n\n')
- else:
- txt = []
-
- if useinstance:
- txt.append('%s = Holder()' % self.name)
- prefix = '%s.' % self.name
- else:
- prefix = ''
-
- if not comment is None:
- txt.append("%scomment = '%s'" % (prefix, comment))
-
- for x in what:
- txt.append('%s%s = %s' % (prefix, x, repr(getattr(self,x))))
- txt.extend(['','']) #add empty lines at end
- if not filename is None:
- file(filename, 'a+').write('\n'.join(txt))
- np.set_printoptions(**print_opt_old)
- self._filename = filename
- self._useinstance = useinstance
- self._what = what
- return txt
-
- def verify(self):
- '''load the saved module and verify the data
-
- This tries several ways of comparing the saved and the attached data,
- but might not work for all possible data structures.
-
- Returns
- -------
- all_correct : bool
- true if no differences are found, for floating point numbers
- rtol=1e-16, atol=1e-16 is used to determine equality (allclose)
- correctli : list
- list of attribute names that compare as equal
- incorrectli : list
- list of attribute names that did not compare as equal, either
- because they differ or because the comparison does not handle the
- data structure correctly
-
- '''
- module = __import__(self._filename.replace('.py',''))
- if not self._useinstance:
- raise NotImplementedError('currently only implemented when'
- 'useinstance is true')
- data = getattr(module, self.name)
- correctli = []
- incorrectli = []
-
- for d in self._what:
- self_item = getattr(data, d)
- saved_item = getattr(data, d)
- #print d,
- #try simple equality
- correct = np.all(self.item == saved_item)
- #try allclose
- if not correct and not self.item.dtype == np.dtype('object'):
- correct = np.allclose(self_item, saved_item,
- rtol=1e-16, atol=1e-16)
- if not correct:
- import warnings
- warnings.warm("inexact precision in "+d)
- #try iterating, if object array
- if not correct:
- correlem =[np.all(data[d].item()[k] ==
- getattr(testsave.var_results, d).item()[k])
- for k in data[d].item().keys()]
- if not correlem:
- #print d, "wrong"
- incorrectli.append(d)
- correctli.append(d)
-
- return len(incorrectli)==0, correctli, incorrectli
-
-
-
-if __name__ == '__main__':
- data = np.load(r"E:\Josef\eclipsegworkspace\statsmodels-josef-experimental-030\dist\scikits.statsmodels-0.3.0dev_with_Winhelp_a2\scikits.statsmodels-0.3.0dev\scikits\statsmodels\tsa\vector_ar\tests\results\vars_results.npz")
- res_var = HoldIt('var_results')
- for d in data:
- setattr(res_var, d, data[d])
- np.set_printoptions(precision=120, linewidth=100)
- res_var.save(filename='testsave.py', header=True,
- comment='VAR test data converted from vars_results.npz')
-
- import testsave
-
- for d in data:
- print d,
- correct = np.all(data[d] == getattr(testsave.var_results, d))
- if not correct and not data[d].dtype == np.dtype('object'):
- correct = np.allclose(data[d], getattr(testsave.var_results, d),
- rtol=1e-16, atol=1e-16)
- if not correct: print "inexact precision"
- if not correct:
- correlem =[np.all(data[d].item()[k] ==
- getattr(testsave.var_results, d).item()[k])
- for k in data[d].item().keys()]
- if not correlem:
- print d, "wrong"
-
- print res_var.verify()
-
diff --git a/statsmodels/scikits/statsmodels/tools/linalg.py b/statsmodels/scikits/statsmodels/tools/linalg.py
deleted file mode 100644
index 25c46c9..0000000
--- a/statsmodels/scikits/statsmodels/tools/linalg.py
+++ /dev/null
@@ -1,209 +0,0 @@
-'''local, adjusted version from scipy.linalg.basic.py
-
-
-changes:
-The only changes are that additional results are returned
-
-'''
-
-import numpy as np
-from scipy.linalg import svd as decomp_svd
-#decomp_svd
-
-#check which imports we need here:
-from scipy.linalg.flinalg import get_flinalg_funcs
-from scipy.linalg.lapack import get_lapack_funcs
-from numpy import asarray,zeros,sum,newaxis,greater_equal,subtract,arange,\
- conjugate,ravel,r_,mgrid,take,ones,dot,transpose,sqrt,add,real
-import numpy
-from numpy import asarray_chkfinite, outer, concatenate, reshape, single
-#from numpy import matrix as Matrix
-from numpy.linalg import LinAlgError
-from scipy.linalg import calc_lwork
-
-
-### Linear Least Squares
-
-def lstsq(a, b, cond=None, overwrite_a=0, overwrite_b=0):
- """Compute least-squares solution to equation :m:`a x = b`
-
- Compute a vector x such that the 2-norm :m:`|b - a x|` is minimised.
-
- Parameters
- ----------
- a : array, shape (M, N)
- b : array, shape (M,) or (M, K)
- cond : float
- Cutoff for 'small' singular values; used to determine effective
- rank of a. Singular values smaller than rcond*largest_singular_value
- are considered zero.
- overwrite_a : boolean
- Discard data in a (may enhance performance)
- overwrite_b : boolean
- Discard data in b (may enhance performance)
-
- Returns
- -------
- x : array, shape (N,) or (N, K) depending on shape of b
- Least-squares solution
- residues : array, shape () or (1,) or (K,)
- Sums of residues, squared 2-norm for each column in :m:`b - a x`
- If rank of matrix a is < N or > M this is an empty array.
- If b was 1-d, this is an (1,) shape array, otherwise the shape is (K,)
- rank : integer
- Effective rank of matrix a
- s : array, shape (min(M,N),)
- Singular values of a. The condition number of a is abs(s[0]/s[-1]).
-
- Raises LinAlgError if computation does not converge
-
- """
- a1, b1 = map(asarray_chkfinite,(a,b))
- if len(a1.shape) != 2:
- raise ValueError('expected matrix')
- m,n = a1.shape
- if len(b1.shape)==2: nrhs = b1.shape[1]
- else: nrhs = 1
- if m != b1.shape[0]:
- raise ValueError('incompatible dimensions')
- gelss, = get_lapack_funcs(('gelss',),(a1,b1))
- if n>m:
- # need to extend b matrix as it will be filled with
- # a larger solution matrix
- b2 = zeros((n,nrhs), dtype=gelss.dtype)
- if len(b1.shape)==2: b2[:m,:] = b1
- else: b2[:m,0] = b1
- b1 = b2
- overwrite_a = overwrite_a or (a1 is not a and not hasattr(a,'__array__'))
- overwrite_b = overwrite_b or (b1 is not b and not hasattr(b,'__array__'))
- if gelss.module_name[:7] == 'flapack':
- lwork = calc_lwork.gelss(gelss.prefix,m,n,nrhs)[1]
- v,x,s,rank,info = gelss(a1,b1,cond = cond,
- lwork = lwork,
- overwrite_a = overwrite_a,
- overwrite_b = overwrite_b)
- else:
- raise NotImplementedError('calling gelss from %s' % (gelss.module_name))
- if info>0: raise LinAlgError("SVD did not converge in Linear Least Squares")
- if info<0: raise ValueError(\
- 'illegal value in %-th argument of internal gelss'%(-info))
- resids = asarray([], dtype=x.dtype)
- if n>> from numpy import *
- >>> a = random.randn(9, 6)
- >>> B = linalg.pinv(a)
- >>> allclose(a, dot(a, dot(B, a)))
- True
- >>> allclose(B, dot(B, dot(a, B)))
- True
-
- """
- a = asarray_chkfinite(a)
- b = numpy.identity(a.shape[0], dtype=a.dtype)
- if rcond is not None:
- cond = rcond
- return lstsq(a, b, cond=cond)[0]
-
-
-eps = numpy.finfo(float).eps
-feps = numpy.finfo(single).eps
-
-_array_precision = {'f': 0, 'd': 1, 'F': 0, 'D': 1}
-
-def pinv2(a, cond=None, rcond=None):
- """Compute the (Moore-Penrose) pseudo-inverse of a matrix.
-
- Calculate a generalized inverse of a matrix using its
- singular-value decomposition and including all 'large' singular
- values.
-
- Parameters
- ----------
- a : array, shape (M, N)
- Matrix to be pseudo-inverted
- cond, rcond : float or None
- Cutoff for 'small' singular values.
- Singular values smaller than rcond*largest_singular_value are
- considered zero.
-
- If None or -1, suitable machine precision is used.
-
- Returns
- -------
- B : array, shape (N, M)
-
- Raises LinAlgError if SVD computation does not converge
-
- Examples
- --------
- >>> from numpy import *
- >>> a = random.randn(9, 6)
- >>> B = linalg.pinv2(a)
- >>> allclose(a, dot(a, dot(B, a)))
- True
- >>> allclose(B, dot(B, dot(a, B)))
- True
-
- """
- a = asarray_chkfinite(a)
- u, s, vh = decomp_svd(a)
- t = u.dtype.char
- if rcond is not None:
- cond = rcond
- if cond in [None,-1]:
- cond = {0: feps*1e3, 1: eps*1e6}[_array_precision[t]]
- m,n = a.shape
- cutoff = cond*numpy.maximum.reduce(s)
- psigma = zeros((m,n),t)
- for i in range(len(s)):
- if s[i] > cutoff:
- psigma[i,i] = 1.0/conjugate(s[i])
- #XXX: use lapack/blas routines for dot
- return transpose(conjugate(dot(dot(u,psigma),vh)))
-
-
-if __name__ == '__main__':
- #for checking only,
- #Note on Windows32:
- # linalg doesn't always produce the same results in each call
- a0 = np.random.randn(100,10)
- b0 = a0.sum(1)[:,None] + np.random.randn(100,3)
- lstsq(a0,b0)
- pinv(a0)
- pinv2(a0)
- x = pinv(a0)
- x2=scipy.linalg.pinv(a0)
- print np.max(np.abs(x-x2))
- x = pinv2(a0)
- x2 = scipy.linalg.pinv2(a0)
- print np.max(np.abs(x-x2))
-
diff --git a/statsmodels/scikits/statsmodels/tools/sm_exceptions.py b/statsmodels/scikits/statsmodels/tools/sm_exceptions.py
deleted file mode 100644
index b93d066..0000000
--- a/statsmodels/scikits/statsmodels/tools/sm_exceptions.py
+++ /dev/null
@@ -1 +0,0 @@
-class PerfectSeparationError(Exception): pass
diff --git a/statsmodels/scikits/statsmodels/tools/tests/__init__.py b/statsmodels/scikits/statsmodels/tools/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tools/tests/test_catadd.py b/statsmodels/scikits/statsmodels/tools/tests/test_catadd.py
deleted file mode 100644
index 55eacb4..0000000
--- a/statsmodels/scikits/statsmodels/tools/tests/test_catadd.py
+++ /dev/null
@@ -1,23 +0,0 @@
-
-import numpy as np
-from numpy.testing import assert_equal
-from scikits.statsmodels.tools.catadd import add_indep
-
-from scipy import linalg
-
-def test_add_indep():
- x1 = np.array([0,0,0,0,0,1,1,1,2,2,2])
- x2 = np.array([0,0,0,0,0,1,1,1,1,1,1])
- x0 = np.ones(len(x2))
- x = np.column_stack([x0, x1[:,None]*np.arange(3), x2[:,None]*np.arange(2)])
- varnames = ['const'] + ['var1_%d' %i for i in np.arange(3)] \
- + ['var2_%d' %i for i in np.arange(2)]
- xo, vo = add_indep(x, varnames)
-
- assert_equal(xo, np.column_stack((x0, x1, x2)))
- assert_equal((linalg.svdvals(x) > 1e-12).sum(), 3)
- assert_equal(vo, ['const', 'var1_1', 'var2_1'])
-
-if __name__ == '__main__':
- test_add_indep()
-
diff --git a/statsmodels/scikits/statsmodels/tools/tests/test_tools.py b/statsmodels/scikits/statsmodels/tools/tests/test_tools.py
deleted file mode 100644
index f09816f..0000000
--- a/statsmodels/scikits/statsmodels/tools/tests/test_tools.py
+++ /dev/null
@@ -1,313 +0,0 @@
-"""
-Test functions for models.tools
-"""
-
-import numpy as np
-from numpy.random import standard_normal
-from numpy.testing import *
-
-from scikits.statsmodels.tools import tools
-
-class TestTools(TestCase):
-
- def test_add_constant_list(self):
- x = range(1,5)
- x = tools.add_constant(x, prepend=True)
- y = np.asarray([[1,1,1,1],[1,2,3,4.]]).T
- assert_equal(x, y)
-
- def test_add_constant_1d(self):
- x = np.arange(1,5)
- x = tools.add_constant(x, prepend=True)
- y = np.asarray([[1,1,1,1],[1,2,3,4.]]).T
- assert_equal(x, y)
-
- def test_add_constant_has_constant1d(self):
- x = np.ones(5)
- x = tools.add_constant(x)
- assert_equal(x, np.ones(5))
-
- def test_add_constant_has_constant2d(self):
- x = np.asarray([[1,1,1,1],[1,2,3,4.]])
- y = tools.add_constant(x)
- assert_equal(x,y)
-
- def test_recipr(self):
- X = np.array([[2,1],[-1,0]])
- Y = tools.recipr(X)
- assert_almost_equal(Y, np.array([[0.5,1],[0,0]]))
-
- def test_recipr0(self):
- X = np.array([[2,1],[-4,0]])
- Y = tools.recipr0(X)
- assert_almost_equal(Y, np.array([[0.5,1],[-0.25,0]]))
-
- def test_rank(self):
- X = standard_normal((40,10))
- self.assertEquals(tools.rank(X), 10)
-
- X[:,0] = X[:,1] + X[:,2]
- self.assertEquals(tools.rank(X), 9)
-
- def test_fullrank(self):
- X = standard_normal((40,10))
- X[:,0] = X[:,1] + X[:,2]
-
- Y = tools.fullrank(X)
- self.assertEquals(Y.shape, (40,9))
- self.assertEquals(tools.rank(Y), 9)
-
- X[:,5] = X[:,3] + X[:,4]
- Y = tools.fullrank(X)
- self.assertEquals(Y.shape, (40,8))
- self.assertEquals(tools.rank(Y), 8)
-
-class TestCategoricalNumerical(object):
- #TODO: use assert_raises to check that bad inputs are taken care of
- def __init__(self):
- #import string
- stringabc = 'abcdefghijklmnopqrstuvwxy'
- self.des = np.random.randn(25,2)
- self.instr = np.floor(np.arange(10,60, step=2)/10)
- x=np.zeros((25,5))
- x[:5,0]=1
- x[5:10,1]=1
- x[10:15,2]=1
- x[15:20,3]=1
- x[20:25,4]=1
- self.dummy = x
- structdes = np.zeros((25,1),dtype=[('var1', 'f4'),('var2', 'f4'),
- ('instrument','f4'),('str_instr','a10')])
- structdes['var1'] = self.des[:,0][:,None]
- structdes['var2'] = self.des[:,1][:,None]
- structdes['instrument'] = self.instr[:,None]
- string_var = [stringabc[0:5], stringabc[5:10],
- stringabc[10:15], stringabc[15:20],
- stringabc[20:25]]
- string_var *= 5
- self.string_var = np.array(sorted(string_var))
- structdes['str_instr'] = self.string_var[:,None]
- self.structdes = structdes
- self.recdes = structdes.view(np.recarray)
-
- def test_array2d(self):
- des = np.column_stack((self.des, self.instr, self.des))
- des = tools.categorical(des, col=2)
- assert_array_equal(des[:,-5:], self.dummy)
- assert_equal(des.shape[1],10)
-
- def test_array1d(self):
- des = tools.categorical(self.instr)
- assert_array_equal(des[:,-5:], self.dummy)
- assert_equal(des.shape[1],6)
-
- def test_array2d_drop(self):
- des = np.column_stack((self.des, self.instr, self.des))
- des = tools.categorical(des, col=2, drop=True)
- assert_array_equal(des[:,-5:], self.dummy)
- assert_equal(des.shape[1],9)
-
- def test_array1d_drop(self):
- des = tools.categorical(self.instr, drop=True)
- assert_array_equal(des, self.dummy)
- assert_equal(des.shape[1],5)
-
- def test_recarray2d(self):
- des = tools.categorical(self.recdes, col='instrument')
- # better way to do this?
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_recarray2dint(self):
- des = tools.categorical(self.recdes, col=2)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_recarray1d(self):
- instr = self.structdes['instrument'].view(np.recarray)
- dum = tools.categorical(instr)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names[-5:]]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 6)
-
- def test_recarray1d_drop(self):
- instr = self.structdes['instrument'].view(np.recarray)
- dum = tools.categorical(instr, drop=True)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 5)
-
- def test_recarray2d_drop(self):
- des = tools.categorical(self.recdes, col='instrument', drop=True)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 8)
-
- def test_structarray2d(self):
- des = tools.categorical(self.structdes, col='instrument')
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_structarray2dint(self):
- des = tools.categorical(self.structdes, col=2)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_structarray1d(self):
- instr = self.structdes['instrument'].view(dtype=[('var1', 'f4')])
- dum = tools.categorical(instr)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names[-5:]]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 6)
-
- def test_structarray2d_drop(self):
- des = tools.categorical(self.structdes, col='instrument', drop=True)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 8)
-
- def test_structarray1d_drop(self):
- instr = self.structdes['instrument'].view(dtype=[('var1', 'f4')])
- dum = tools.categorical(instr, drop=True)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 5)
-
-# def test_arraylike2d(self):
-# des = tools.categorical(self.structdes.tolist(), col=2)
-# test_des = des[:,-5:]
-# assert_array_equal(test_des, self.dummy)
-# assert_equal(des.shape[1], 9)
-
-# def test_arraylike1d(self):
-# instr = self.structdes['instrument'].tolist()
-# dum = tools.categorical(instr)
-# test_dum = dum[:,-5:]
-# assert_array_equal(test_dum, self.dummy)
-# assert_equal(dum.shape[1], 6)
-
-# def test_arraylike2d_drop(self):
-# des = tools.categorical(self.structdes.tolist(), col=2, drop=True)
-# test_des = des[:,-5:]
-# assert_array_equal(test__des, self.dummy)
-# assert_equal(des.shape[1], 8)
-
-# def test_arraylike1d_drop(self):
-# instr = self.structdes['instrument'].tolist()
-# dum = tools.categorical(instr, drop=True)
-# assert_array_equal(dum, self.dummy)
-# assert_equal(dum.shape[1], 5)
-
-
-class TestCategoricalString(TestCategoricalNumerical):
-
-# comment out until we have type coercion
-# def test_array2d(self):
-# des = np.column_stack((self.des, self.instr, self.des))
-# des = tools.categorical(des, col=2)
-# assert_array_equal(des[:,-5:], self.dummy)
-# assert_equal(des.shape[1],10)
-
-# def test_array1d(self):
-# des = tools.categorical(self.instr)
-# assert_array_equal(des[:,-5:], self.dummy)
-# assert_equal(des.shape[1],6)
-
-# def test_array2d_drop(self):
-# des = np.column_stack((self.des, self.instr, self.des))
-# des = tools.categorical(des, col=2, drop=True)
-# assert_array_equal(des[:,-5:], self.dummy)
-# assert_equal(des.shape[1],9)
-
- def test_array1d_drop(self):
- des = tools.categorical(self.string_var, drop=True)
- assert_array_equal(des, self.dummy)
- assert_equal(des.shape[1],5)
-
- def test_recarray2d(self):
- des = tools.categorical(self.recdes, col='str_instr')
- # better way to do this?
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_recarray2dint(self):
- des = tools.categorical(self.recdes, col=3)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_recarray1d(self):
- instr = self.structdes['str_instr'].view(np.recarray)
- dum = tools.categorical(instr)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names[-5:]]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 6)
-
- def test_recarray1d_drop(self):
- instr = self.structdes['str_instr'].view(np.recarray)
- dum = tools.categorical(instr, drop=True)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 5)
-
- def test_recarray2d_drop(self):
- des = tools.categorical(self.recdes, col='str_instr', drop=True)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 8)
-
- def test_structarray2d(self):
- des = tools.categorical(self.structdes, col='str_instr')
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_structarray2dint(self):
- des = tools.categorical(self.structdes, col=3)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 9)
-
- def test_structarray1d(self):
- instr = self.structdes['str_instr'].view(dtype=[('var1', 'a10')])
- dum = tools.categorical(instr)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names[-5:]]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 6)
-
- def test_structarray2d_drop(self):
- des = tools.categorical(self.structdes, col='str_instr', drop=True)
- test_des = np.column_stack(([des[_] for _ in des.dtype.names[-5:]]))
- assert_array_equal(test_des, self.dummy)
- assert_equal(len(des.dtype.names), 8)
-
- def test_structarray1d_drop(self):
- instr = self.structdes['str_instr'].view(dtype=[('var1', 'a10')])
- dum = tools.categorical(instr, drop=True)
- test_dum = np.column_stack(([dum[_] for _ in dum.dtype.names]))
- assert_array_equal(test_dum, self.dummy)
- assert_equal(len(dum.dtype.names), 5)
-
- def test_arraylike2d(self):
- pass
-
- def test_arraylike1d(self):
- pass
-
- def test_arraylike2d_drop(self):
- pass
-
- def test_arraylike1d_drop(self):
- pass
-
-
-def test_chain_dot():
- A = np.arange(1,13).reshape(3,4)
- B = np.arange(3,15).reshape(4,3)
- C = np.arange(5,8).reshape(3,1)
- assert_equal(tools.chain_dot(A,B,C), np.array([[1820],[4300],[6780]]))
diff --git a/statsmodels/scikits/statsmodels/tools/tools.py b/statsmodels/scikits/statsmodels/tools/tools.py
deleted file mode 100644
index db4674c..0000000
--- a/statsmodels/scikits/statsmodels/tools/tools.py
+++ /dev/null
@@ -1,405 +0,0 @@
-'''
-Utility functions models code
-'''
-
-import numpy as np
-import numpy.lib.recfunctions as nprf
-import numpy.linalg as L
-from scipy.interpolate import interp1d
-from scipy.linalg import svdvals
-from scikits.statsmodels.distributions import (ECDF, monotone_fn_inverter,
- StepFunction)
-
-def _make_dictnames(tmp_arr, offset=0):
- """
- Helper function to create a dictionary mapping a column number
- to the name in tmp_arr.
- """
- col_map = {}
- for i,col_name in enumerate(tmp_arr):
- col_map.update({i+offset : col_name})
- return col_map
-
-def drop_missing(Y,X=None, axis=1):
- """
- Returns views on the arrays Y and X where missing observations are dropped.
-
- Y : array-like
- X : array-like, optional
- axis : int
- Axis along which to look for missing observations. Default is 1, ie.,
- observations in rows.
-
- Returns
- -------
- Y : array
- All Y where the
- X : array
-
- Notes
- -----
- If either Y or X is 1d, it is reshaped to be 2d.
- """
- Y = np.asarray(Y)
- if Y.ndim == 1:
- Y = Y[:,None]
- if X is not None:
- X = np.array(X)
- if X.ndim == 1:
- X = X[:,None]
- keepidx = np.logical_and(~np.isnan(Y).any(axis),~np.isnan(X).any(axis))
- return Y[keepidx], X[keepidx]
- else:
- keepidx = ~np.isnan(Y).any(axis)
- return Y[keepidx]
-
-#TODO: needs to better preserve dtype and be more flexible
-# ie., if you still have a string variable in your array you don't
-# want to cast it to float
-#TODO: add name validator (ie., bad names for datasets.grunfeld)
-def categorical(data, col=None, dictnames=False, drop=False, ):
- '''
- Returns a dummy matrix given an array of categorical variables.
-
- Parameters
- ----------
- data : array
- A structured array, recarray, or array. This can be either
- a 1d vector of the categorical variable or a 2d array with
- the column specifying the categorical variable specified by the col
- argument.
- col : 'string', int, or None
- If data is a structured array or a recarray, `col` can be a string
- that is the name of the column that contains the variable. For all
- arrays `col` can be an int that is the (zero-based) column index
- number. `col` can only be None for a 1d array. The default is None.
- dictnames : bool, optional
- If True, a dictionary mapping the column number to the categorical
- name is returned. Used to have information about plain arrays.
- drop : bool
- Whether or not keep the categorical variable in the returned matrix.
-
- Returns
- --------
- dummy_matrix, [dictnames, optional]
- A matrix of dummy (indicator/binary) float variables for the
- categorical data. If dictnames is True, then the dictionary
- is returned as well.
-
- Notes
- -----
- This returns a dummy variable for EVERY distinct variable. If a
- a structured or recarray is provided, the names for the new variable is the
- old variable name - underscore - category name. So if the a variable
- 'vote' had answers as 'yes' or 'no' then the returned array would have to
- new variables-- 'vote_yes' and 'vote_no'. There is currently
- no name checking.
-
- Examples
- --------
- >>> import numpy as np
- >>> import scikits.statsmodels.api as sm
-
- Univariate examples
-
- >>> import string
- >>> string_var = [string.lowercase[0:5], string.lowercase[5:10], \
- string.lowercase[10:15], string.lowercase[15:20], \
- string.lowercase[20:25]]
- >>> string_var *= 5
- >>> string_var = np.asarray(sorted(string_var))
- >>> design = sm.tools.categorical(string_var, drop=True)
-
- Or for a numerical categorical variable
-
- >>> instr = np.floor(np.arange(10,60, step=2)/10)
- >>> design = sm.tools.categorical(instr, drop=True)
-
- With a structured array
-
- >>> num = np.random.randn(25,2)
- >>> struct_ar = np.zeros((25,1), dtype=[('var1', 'f4'),('var2', 'f4'), \
- ('instrument','f4'),('str_instr','a5')])
- >>> struct_ar['var1'] = num[:,0][:,None]
- >>> struct_ar['var2'] = num[:,1][:,None]
- >>> struct_ar['instrument'] = instr[:,None]
- >>> struct_ar['str_instr'] = string_var[:,None]
- >>> design = sm.tools.categorical(struct_ar, col='instrument', drop=True)
-
- Or
-
- >>> design2 = sm.tools.categorical(struct_ar, col='str_instr', drop=True)
- '''
-
-#TODO: add a NameValidator function
- # catch recarrays and structured arrays
- if data.dtype.names or data.__class__ is np.recarray:
- if not col and np.squeeze(data).ndim > 1:
- raise IndexError("col is None and the input array is not 1d")
- if isinstance(col, int):
- col = data.dtype.names[col]
- if col is None and data.dtype.names and len(data.dtype.names) == 1:
- col = data.dtype.names[0]
-
- tmp_arr = np.unique(data[col])
-
- # if the cols are shape (#,) vs (#,1) need to add an axis and flip
- _swap = True
- if data[col].ndim == 1:
- tmp_arr = tmp_arr[:,None]
- _swap = False
- tmp_dummy = (tmp_arr==data[col]).astype(float)
- if _swap:
- tmp_dummy = np.squeeze(tmp_dummy).swapaxes(1,0)
-
- if not tmp_arr.dtype.names:
- tmp_arr = np.squeeze(tmp_arr).astype('str').tolist()
- elif tmp_arr.dtype.names:
- tmp_arr = np.squeeze(tmp_arr.tolist()).astype('str').tolist()
-
-# prepend the varname and underscore, if col is numeric attribute lookup
-# is lost for recarrays...
- if col is None:
- try:
- col = data.dtype.names[0]
- except:
- col = 'var'
-#TODO: the above needs to be made robust because there could be many
-# var_yes, var_no varaibles for instance.
- tmp_arr = [col + '_'+ item for item in tmp_arr]
-#TODO: test this for rec and structured arrays!!!
-
- if drop is True:
- # if len(data.dtype) is 1 then we have a 1 column array
-# if len(data.dtype) == 1:
- if len(data.dtype) <= 1:
- if tmp_dummy.shape[0] < tmp_dummy.shape[1]:
- tmp_dummy = np.squeeze(tmp_dummy).swapaxes(1,0)
- dt = zip(tmp_arr, [tmp_dummy.dtype.str]*len(tmp_arr))
- # preserve array type
- return np.array(map(tuple, tmp_dummy.tolist()),
- dtype=dt).view(type(data))
-
- data=nprf.drop_fields(data, col, usemask=False,
- asrecarray=type(data) is np.recarray)
- data=nprf.append_fields(data, tmp_arr, data=tmp_dummy,
- usemask=False, asrecarray=type(data) is np.recarray)
- return data
-
- # handle ndarrays and catch array-like for an error
- elif data.__class__ is np.ndarray or not isinstance(data,np.ndarray):
- if not isinstance(data, np.ndarray):
- raise NotImplementedError("Array-like objects are not supported")
-
- if isinstance(col, int):
- offset = data.shape[1] # need error catching here?
- tmp_arr = np.unique(data[:,col])
- tmp_dummy = (tmp_arr[:,np.newaxis]==data[:,col]).astype(float)
- tmp_dummy = tmp_dummy.swapaxes(1,0)
- if drop is True:
- offset -= 1
- data = np.delete(data, col, axis=1).astype(float)
- data = np.column_stack((data,tmp_dummy))
- if dictnames is True:
- col_map = _make_dictnames(tmp_arr, offset)
- return data, col_map
- return data
- elif col is None and np.squeeze(data).ndim == 1:
- tmp_arr = np.unique(data)
- tmp_dummy = (tmp_arr[:,None]==data).astype(float)
- tmp_dummy = tmp_dummy.swapaxes(1,0)
- if drop is True:
- if dictnames is True:
- col_map = _make_dictnames(tmp_arr)
- return tmp_dummy, col_map
- return tmp_dummy
- else:
- data = np.column_stack((data, tmp_dummy))
- if dictnames is True:
- col_map = _make_dictnames(tmp_arr, offset=1)
- return data, col_map
- return data
- else:
- raise IndexError("The index %s is not understood" % col)
-
-#TODO: add an axis argument to this for sysreg
-def add_constant(data, prepend=False):
- '''
- This appends a column of ones to an array if prepend==False.
-
- For ndarrays it checks to make sure a constant is not already included.
- If there is at least one column of ones then the original array is
- returned. Does not check for a constant if a structured or recarray is
- given.
-
- Parameters
- ----------
- data : array-like
- `data` is the column-ordered design matrix
- prepend : bool
- True and the constant is prepended rather than appended.
-
- Returns
- -------
- data : array
- The original array with a constant (column of ones) as the first or
- last column.
-
- Notes
- -----
-
- .. WARNING::
- The default of prepend will be changed to True in the next release of
- statsmodels. We recommend to use an explicit prepend in any permanent
- code.
- '''
- data = np.asarray(data)
- if not prepend:
- import warnings
- warnings.warn("The default of `prepend` will be changed to True in the "
- "next release, use explicit prepend", FutureWarning)
- if not data.dtype.names:
- var0 = data.var(0) == 0
- if np.any(var0):
- return data
- data = np.column_stack((data, np.ones((data.shape[0], 1))))
- if prepend:
- return np.roll(data, 1, 1)
- else:
- return_rec = data.__class__ is np.recarray
- if prepend:
- ones = np.ones((data.shape[0], 1), dtype=[('const', float)])
- data = nprf.append_fields(ones, data.dtype.names, [data[i] for
- i in data.dtype.names], usemask=False, asrecarray=return_rec)
- else:
- data = nprf.append_fields(data, 'const', np.ones(data.shape[0]),
- usemask=False, asrecarray = return_rec)
- return data
-
-def isestimable(C, D):
- """
- From an q x p contrast matrix C and an n x p design matrix D, checks
- if the contrast C is estimable by looking at the rank of vstack([C,D]) and
- verifying it is the same as the rank of D.
- """
- if C.ndim == 1:
- C.shape = (C.shape[0], 1)
- new = np.vstack([C, D])
- if rank(new) != rank(D):
- return False
- return True
-
-def recipr(X):
- """
- Return the reciprocal of an array, setting all entries less than or
- equal to 0 to 0. Therefore, it presumes that X should be positive in
- general.
- """
- x = np.maximum(np.asarray(X).astype(np.float64), 0)
- return np.greater(x, 0.) / (x + np.less_equal(x, 0.))
-
-def recipr0(X):
- """
- Return the reciprocal of an array, setting all entries equal to 0
- as 0. It does not assume that X should be positive in
- general.
- """
- test = np.equal(np.asarray(X), 0)
- return np.where(test, 0, 1. / X)
-
-def clean0(matrix):
- """
- Erase columns of zeros: can save some time in pseudoinverse.
- """
- colsum = np.add.reduce(matrix**2, 0)
- val = [matrix[:,i] for i in np.flatnonzero(colsum)]
- return np.array(np.transpose(val))
-
-def rank(X, cond=1.0e-12):
- """
- Return the rank of a matrix X based on its generalized inverse,
- not the SVD.
- """
- X = np.asarray(X)
- if len(X.shape) == 2:
- D = svdvals(X)
- return int(np.add.reduce(np.greater(D / D.max(), cond).astype(np.int32)))
- else:
- return int(not np.alltrue(np.equal(X, 0.)))
-
-def fullrank(X, r=None):
- """
- Return a matrix whose column span is the same as X.
-
- If the rank of X is known it can be specified as r -- no check
- is made to ensure that this really is the rank of X.
-
- """
-
- if r is None:
- r = rank(X)
-
- V, D, U = L.svd(X, full_matrices=0)
- order = np.argsort(D)
- order = order[::-1]
- value = []
- for i in range(r):
- value.append(V[:,order[i]])
- return np.asarray(np.transpose(value)).astype(np.float64)
-
-StepFunction = np.deprecate(StepFunction,
- old_name = 'scikits.statsmodels.tools.tools.StepFunction',
- new_name = 'scikits.statsmodels.distributions.StepFunction')
-monotone_fn_inverter = np.deprecate(monotone_fn_inverter,
- old_name = 'scikits.statsmodels.tools.tools.monotone_fn_inverter',
- new_name = 'scikits.statsmodels.distributions.monotone_fn_inverter')
-ECDF = np.deprecate(ECDF,
- old_name = 'scikits.statsmodels.tools.tools.ECDF',
- new_name = 'scikits.statsmodels.distributions.ECDF')
-
-
-def unsqueeze(data, axis, oldshape):
- """
- Unsqueeze a collapsed array
-
- >>> from numpy import mean
- >>> from numpy.random import standard_normal
- >>> x = standard_normal((3,4,5))
- >>> m = mean(x, axis=1)
- >>> m.shape
- (3, 5)
- >>> m = unsqueeze(m, 1, x.shape)
- >>> m.shape
- (3, 1, 5)
- >>>
- """
- newshape = list(oldshape)
- newshape[axis] = 1
- return data.reshape(newshape)
-
-def chain_dot(*arrs):
- """
- Returns the dot product of the given matrices.
-
- Parameters
- ----------
- arrs: argument list of ndarray
-
- Returns
- -------
- Dot product of all arguments.
-
- Example
- -------
- >>> import numpy as np
- >>> from scikits.statsmodels.tools import chain_dot
- >>> A = np.arange(1,13).reshape(3,4)
- >>> B = np.arange(3,15).reshape(4,3)
- >>> C = np.arange(5,8).reshape(3,1)
- >>> chain_dot(A,B,C)
- array([[1820],
- [4300],
- [6780]])
- """
- return reduce(lambda x, y: np.dot(y, x), arrs[::-1])
-
diff --git a/statsmodels/scikits/statsmodels/tools/wrappers.py b/statsmodels/scikits/statsmodels/tools/wrappers.py
deleted file mode 100644
index 93c95e7..0000000
--- a/statsmodels/scikits/statsmodels/tools/wrappers.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Convenience Wrappers
-
-Created on Sat Oct 30 14:56:35 2010
-
-Author: josef-pktd
-License: BSD
-"""
-
-import numpy as np
-import scikits.statsmodels.api as sm
-from scikits.statsmodels import GLS, WLS, OLS
-
-def remove_nanrows(y, x):
- '''remove common rows in [y,x] that contain at least one nan
-
- TODO: this should be made more flexible,
- arbitrary number of arrays and 1d or 2d arrays
-
- duplicate: Skipper added sm.tools.drop_missing
-
- '''
- mask = ~np.isnan(y)
- mask *= ~(np.isnan(x).any(-1)) #* or &
- y = y[mask]
- x = x[mask]
- return y, x
-
-
-def linmod(y, x, weights=None, sigma=None, add_const=True, filter_missing=True,
- **kwds):
- '''get linear model with extra options for entry
-
- dispatches to regular model class and does not wrap the output
-
- If several options are exclusive, for example sigma and weights, then the
- chosen class depends on the implementation sequence.
- '''
-
- if filter_missing:
- y, x = remove_nanrows(y, x)
- #do the same for masked arrays
-
- if add_const:
- x = sm.add_constant(x, prepend=True)
-
- if not sigma is None:
- return GLS(y, x, sigma=sigma, **kwds)
- elif not weights is None:
- return WLS(y, x, weights=weights, **kwds)
- else:
- return OLS(y, x, **kwds)
-
diff --git a/statsmodels/scikits/statsmodels/tsa/__init__.py b/statsmodels/scikits/statsmodels/tsa/__init__.py
deleted file mode 100644
index 8ec6816..0000000
--- a/statsmodels/scikits/statsmodels/tsa/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/tsa/adfvalues.py b/statsmodels/scikits/statsmodels/tsa/adfvalues.py
deleted file mode 100644
index 68020fc..0000000
--- a/statsmodels/scikits/statsmodels/tsa/adfvalues.py
+++ /dev/null
@@ -1,387 +0,0 @@
-from scipy.stats import norm
-from numpy import array, polyval, inf, asarray
-
-__all__ = ['mackinnonp','mackinnoncrit']
-
-# These are the cut-off values for the left-tail vs. the rest of the
-# tau distribution, for getting the p-values
-
-tau_star_nc = [-1.04, -1.53, -2.68, -3.09, -3.07, -3.77]
-tau_min_nc = [-19.04,-19.62,-21.21,-23.25,-21.63,-25.74]
-tau_max_nc = [inf,1.51,0.86,0.88,1.05,1.24]
-tau_star_c = [-1.61, -2.62, -3.13, -3.47, -3.78, -3.93]
-tau_min_c = [-18.83,-18.86,-23.48,-28.07,-25.96,-23.27]
-tau_max_c = [2.74,0.92,0.55,0.61,0.79,1]
-tau_star_ct = [-2.89, -3.19, -3.50, -3.65, -3.80, -4.36]
-tau_min_ct = [-16.18,-21.15,-25.37,-26.63,-26.53,-26.18]
-tau_max_ct = [0.7,0.63,0.71,0.93,1.19,1.42]
-tau_star_ctt = [-3.21,-3.51,-3.81,-3.83,-4.12,-4.63]
-tau_min_ctt = [-17.17,-21.1,-24.33,-24.03,-24.33,-28.22]
-tau_max_ctt = [0.54,0.79,1.08,1.43,3.49,1.92]
-
-small_scaling = array([1,1,1e-2])
-tau_nc_smallp = [ [0.6344,1.2378,3.2496],
- [1.9129,1.3857,3.5322],
- [2.7648,1.4502,3.4186],
- [3.4336,1.4835,3.19],
- [4.0999,1.5533,3.59],
- [4.5388,1.5344,2.9807]]
-tau_nc_smallp = asarray(tau_nc_smallp)*small_scaling
-
-tau_c_smallp = [ [2.1659,1.4412,3.8269],
- [2.92,1.5012,3.9796],
- [3.4699,1.4856,3.164],
- [3.9673,1.4777,2.6315],
- [4.5509,1.5338,2.9545],
- [5.1399,1.6036,3.4445]]
-tau_c_smallp = asarray(tau_c_smallp)*small_scaling
-
-tau_ct_smallp = [ [3.2512,1.6047,4.9588],
- [3.6646,1.5419,3.6448],
- [4.0983,1.5173,2.9898],
- [4.5844,1.5338,2.8796],
- [5.0722,1.5634,2.9472],
- [5.53,1.5914,3.0392]]
-tau_ct_smallp = asarray(tau_ct_smallp)*small_scaling
-
-tau_ctt_smallp = [ [4.0003,1.658,4.8288],
- [4.3534,1.6016,3.7947],
- [4.7343,1.5768,3.2396],
- [5.214,1.6077,3.3449],
- [5.6481,1.6274,3.3455],
- [5.9296,1.5929,2.8223]]
-tau_ctt_smallp = asarray(tau_ctt_smallp)*small_scaling
-
-large_scaling = array([1,1e-1,1e-1,1e-2])
-tau_nc_largep = [ [0.4797,9.3557,-0.6999,3.3066],
- [1.5578,8.558,-2.083,-3.3549],
- [2.2268,6.8093,-3.2362,-5.4448],
- [2.7654,6.4502,-3.0811,-4.4946],
- [3.2684,6.8051,-2.6778,-3.4972],
- [3.7268,7.167,-2.3648,-2.8288]]
-tau_nc_largep = asarray(tau_nc_largep)*large_scaling
-
-tau_c_largep = [ [1.7339,9.3202,-1.2745,-1.0368],
- [2.1945,6.4695,-2.9198,-4.2377],
- [2.5893,4.5168,-3.6529,-5.0074],
- [3.0387,4.5452,-3.3666,-4.1921],
- [3.5049,5.2098,-2.9158,-3.3468],
- [3.9489,5.8933,-2.5359,-2.721]]
-tau_c_largep = asarray(tau_c_largep)*large_scaling
-
-tau_ct_largep = [ [2.5261,6.1654,-3.7956,-6.0285],
- [2.85,5.272,-3.6622,-5.1695],
- [3.221,5.255,-3.2685,-4.1501],
- [3.652,5.9758,-2.7483,-3.2081],
- [4.0712,6.6428,-2.3464,-2.546],
- [4.4735,7.1757,-2.0681,-2.1196] ]
-tau_ct_largep = asarray(tau_ct_largep)*large_scaling
-
-tau_ctt_largep = [ [3.0778,4.9529,-4.1477,-5.9359],
- [3.4713,5.967,-3.2507,-4.2286],
- [3.8637,6.7852,-2.6286,-3.1381],
- [4.2736,7.6199,-2.1534,-2.4026],
- [4.6679,8.2618,-1.822,-1.9147],
- [5.0009,8.3735,-1.6994,-1.6928]]
-tau_ctt_largep = asarray(tau_ctt_largep)*large_scaling
-
-
-#NOTE: The Z-statistic is used when lags are included to account for
-# serial correlation in the error term
-
-z_star_nc = [-2.9,-8.7,-14.8,-20.9,-25.7,-30.5]
-z_star_c = [-8.9,-14.3,-19.5,-25.1,-29.6,-34.4]
-z_star_ct = [-15.0,-19.6,-25.3,-29.6,-31.8,-38.4]
-z_star_ctt = [-20.7,-25.3,-29.9,-34.4,-38.5,-44.2]
-
-
-# These are Table 5 from MacKinnon (1994)
-# small p is defined as p in .005 to .150 ie p = .005 up to z_star
-# Z* is the largest value for which it is appropriate to use these
-# approximations
-# the left tail approximation is
-# p = norm.cdf(d_0 + d_1*log(abs(z)) + d_2*log(abs(z))**2 + d_3*log(abs(z))**3
-# there is no Z-min, ie., it is well-behaved in the left tail
-
-z_nc_smallp = array([[.0342, -.6376,0,-.03872],
- [1.3426,-.7680,0,-.04104],
- [3.8607,-2.4159,.51293,-.09835],
- [6.1072,-3.7250,.85887,-.13102],
- [7.7800,-4.4579,1.00056,-.14014],
- [4.0253, -.8815,0,-.04887]])
-
-z_c_smallp = array([[2.2142,-1.7863,.32828,-.07727],
- [1.1662,.1814,-.36707,0],
- [6.6584,-4.3486,1.04705,-.15011],
- [3.3249,-.8456,0,-.04818],
- [4.0356,-.9306,0,-.04776],
- [13.9959,-8.4314,1.97411,-.22234]])
-
-z_ct_smallp = array([ [4.6476,-2.8932,0.5832,-0.0999],
- [7.2453,-4.7021,1.127,-.15665],
- [3.4893,-0.8914,0,-.04755],
- [1.6604,1.0375,-0.53377,0],
- [2.006,1.1197,-0.55315,0],
- [11.1626,-5.6858,1.21479,-.15428]])
-
-z_ctt_smallp = array([ [3.6739,-1.1549,0,-0.03947],
- [3.9783,-1.0619,0,-0.04394],
- [2.0062,0.8907,-0.51708,0],
- [4.9218,-1.0663,0,-0.04691],
- [5.1433,-0.9877,0,-0.04993],
- [23.6812,-14.6485,3.42909,-.33794]])
-# These are Table 6 from MacKinnon (1994).
-# These are well-behaved in the right tail.
-# the approximation function is
-# p = norm.cdf(d_0 + d_1 * z + d_2*z**2 + d_3*z**3 + d_4*z**4)
-z_large_scaling = array([1,1e-1,1e-2,1e-3,1e-5])
-z_nc_largep = array([ [0.4927,6.906,13.2331,12.099,0],
- [1.5167,4.6859,4.2401,2.7939,7.9601],
- [2.2347,3.9465,2.2406,0.8746,1.4239],
- [2.8239,3.6265,1.6738,0.5408,0.7449],
- [3.3174,3.3492,1.2792,0.3416,0.3894],
- [3.729,3.0611,0.9579,0.2087,0.1943]])
-z_nc_largep *= z_large_scaling
-
-z_c_largep = array([ [1.717,5.5243,4.3463,1.6671,0],
- [2.2394,4.2377,2.432,0.9241,0.4364],
- [2.743,3.626,1.5703,0.4612,0.567],
- [3.228,3.3399,1.2319,0.3162,0.3482],
- [3.6583,3.0934,0.9681,0.2111,0.1979],
- [4.0379,2.8735,0.7694,0.1433,0.1146]])
-z_c_largep *= z_large_scaling
-
-z_ct_largep = array([ [2.7117,4.5731,2.2868,0.6362,0.5],
- [3.0972,4.0873,1.8982,0.5796,0.7384],
- [3.4594,3.6326,1.4284,0.3813,0.4325],
- [3.806,3.2634,1.0689,0.2402,0.2304],
- [4.1402,2.9867,0.8323,0.16,0.1315],
- [4.4497,2.7534,0.6582,0.1089,0.0773]])
-z_ct_largep *= z_large_scaling
-
-z_ctt_largep = array([ [3.4671,4.3476,1.9231,0.5381,0.6216],
- [3.7827,3.9421,1.5699,0.4093,0.4485],
- [4.052,3.4947,1.1772,0.2642,0.2502],
- [4.3311,3.1625,0.9126,0.1775,0.1462],
- [4.594,2.8739,0.707,0.1181,0.0838],
- [4.8479,2.6447,0.5647,0.0827,0.0518]])
-z_ctt_largep *= z_large_scaling
-
-#TODO: finish this and then integrate them into adf function
-def mackinnonp(teststat, regression="c", N=1, lags=None):
- """
- Returns MacKinnon's approximate p-value for teststat.
-
- Parameters
- ----------
- teststat : float
- "T-value" from an Augmented Dickey-Fuller regression.
- regression : str {"c", "nc", "ct", "ctt"}
- This is the method of regression that was used. Following MacKinnon's
- notation, this can be "c" for constant, "nc" for no constant, "ct" for
- constant and trend, and "ctt" for constant, trend, and trend-squared.
- N : int
- The number of series believed to be I(1). For (Augmented) Dickey-
- Fuller N = 1.
-
- Returns
- -------
- p-value : float
- The p-value for the ADF statistic estimated using MacKinnon 1994.
-
- References
- ----------
- MacKinnon, J.G. 1994 "Approximate Asymptotic Distribution Functions for
- Unit-Root and Cointegration Tests." Journal of Business & Economics
- Statistics, 12.2, 167-76.
-
- Notes
- -----
- For (A)DF
- H_0: AR coefficient = 1
- H_a: AR coefficient < 1
- """
- maxstat = eval("tau_max_"+regression)
- minstat = eval("tau_min_"+regression)
- starstat = eval("tau_star_"+regression)
- if teststat > maxstat[N-1]:
- return 1.0
- elif teststat < minstat[N-1]:
- return 0.0
- if teststat <= starstat[N-1]:
- tau_coef = eval("tau_" + regression + "_smallp["+str(N-1)+"]")
-# teststat = np.log(np.abs(teststat))
-#above is only for z stats
- else:
- tau_coef = eval("tau_" + regression + "_largep["+str(N-1)+"]")
- return norm.cdf(polyval(tau_coef[::-1], teststat))
-
-# These are the new estimates from MacKinnon 2010
-# the first axis is N -1
-# the second axis is 1 %, 5 %, 10 %
-# the last axis is the coefficients
-
-tau_nc_2010 = [[ [-2.56574,-2.2358,-3.627,0], # N = 1
- [-1.94100,-0.2686,-3.365,31.223],
- [-1.61682, 0.2656, -2.714, 25.364]]]
-tau_nc_2010 = asarray(tau_nc_2010)
-
-tau_c_2010 = [[ [-3.43035,-6.5393,-16.786,-79.433], # N = 1, 1%
- [-2.86154,-2.8903,-4.234,-40.040], # 5 %
- [-2.56677,-1.5384,-2.809,0]], # 10 %
- [ [-3.89644,-10.9519,-33.527,0], # N = 2
- [-3.33613,-6.1101,-6.823,0],
- [-3.04445,-4.2412,-2.720,0]],
- [ [-4.29374,-14.4354,-33.195,47.433], # N = 3
- [-3.74066,-8.5632,-10.852,27.982],
- [-3.45218,-6.2143,-3.718,0]],
- [ [-4.64332,-18.1031,-37.972,0], # N = 4
- [-4.09600,-11.2349,-11.175,0],
- [-3.81020,-8.3931,-4.137,0]],
- [ [-4.95756,-21.8883,-45.142,0], # N = 5
- [-4.41519,-14.0405,-12.575,0],
- [-4.13157,-10.7417,-3.784,0]],
- [ [-5.24568,-25.6688,-57.737,88.639], # N = 6
- [-4.70693,-16.9178,-17.492,60.007],
- [-4.42501,-13.1875,-5.104,27.877]],
- [ [-5.51233,-29.5760,-69.398,164.295],# N = 7
- [-4.97684,-19.9021,-22.045,110.761],
- [-4.69648,-15.7315,-5.104,27.877]],
- [ [-5.76202,-33.5258,-82.189,256.289], # N = 8
- [-5.22924,-23.0023,-24.646,144.479],
- [-4.95007,-18.3959,-7.344,94.872]],
- [ [-5.99742,-37.6572,-87.365,248.316],# N = 9
- [-5.46697,-26.2057,-26.627,176.382],
- [-5.18897,-21.1377,-9.484,172.704]],
- [ [-6.22103,-41.7154,-102.680,389.33],# N = 10
- [-5.69244,-29.4521,-30.994,251.016],
- [-5.41533,-24.0006,-7.514,163.049]],
- [ [-6.43377,-46.0084,-106.809,352.752],# N = 11
- [-5.90714,-32.8336,-30.275,249.994],
- [-5.63086,-26.9693,-4.083,151.427]],
- [ [-6.63790,-50.2095,-124.156,579.622],# N = 12
- [-6.11279,-36.2681,-32.505,314.802],
- [-5.83724,-29.9864,-2.686,184.116]]]
-tau_c_2010 = asarray(tau_c_2010)
-
-tau_ct_2010 = [[ [-3.95877,-9.0531,-28.428,-134.155], # N = 1
- [-3.41049,-4.3904,-9.036,-45.374],
- [-3.12705,-2.5856,-3.925,-22.380]],
- [ [-4.32762,-15.4387,-35.679,0], # N = 2
- [-3.78057,-9.5106,-12.074,0],
- [-3.49631,-7.0815,-7.538,21.892]],
- [ [-4.66305,-18.7688,-49.793,104.244], # N = 3
- [-4.11890,-11.8922,-19.031,77.332],
- [-3.83511,-9.0723,-8.504,35.403]],
- [ [-4.96940,-22.4694,-52.599,51.314], # N = 4
- [-4.42871,-14.5876,-18.228,39.647],
- [-4.14633,-11.2500,-9.873,54.109]],
- [ [-5.25276,-26.2183,-59.631,50.646], # N = 5
- [-4.71537,-17.3569,-22.660,91.359],
- [-4.43422,-13.6078,-10.238,76.781]],
- [ [-5.51727,-29.9760,-75.222,202.253], # N = 6
- [-4.98228,-20.3050,-25.224,132.03],
- [-4.70233,-16.1253,-9.836,94.272]],
- [ [-5.76537,-33.9165,-84.312,245.394], # N = 7
- [-5.23299,-23.3328,-28.955,182.342],
- [-4.95405,-18.7352,-10.168,120.575]],
- [ [-6.00003,-37.8892,-96.428,335.92], # N = 8
- [-5.46971,-26.4771,-31.034,220.165],
- [-5.19183,-21.4328,-10.726,157.955]],
- [ [-6.22288,-41.9496,-109.881,466.068], # N = 9
- [-5.69447,-29.7152,-33.784,273.002],
- [-5.41738,-24.2882,-8.584,169.891]],
- [ [-6.43551,-46.1151,-120.814,566.823], # N = 10
- [-5.90887,-33.0251,-37.208,346.189],
- [-5.63255,-27.2042,-6.792,177.666]],
- [ [-6.63894,-50.4287,-128.997,642.781], # N = 11
- [-6.11404,-36.4610,-36.246,348.554],
- [-5.83850,-30.1995,-5.163,210.338]],
- [ [-6.83488,-54.7119,-139.800,736.376], # N = 12
- [-6.31127,-39.9676,-37.021,406.051],
- [-6.03650,-33.2381,-6.606,317.776]]]
-tau_ct_2010 = asarray(tau_ct_2010)
-
-tau_ctt_2010 = [[ [-4.37113,-11.5882,-35.819,-334.047], # N = 1
- [-3.83239,-5.9057,-12.490,-118.284],
- [-3.55326,-3.6596,-5.293,-63.559]],
- [ [-4.69276,-20.2284,-64.919,88.884], # N =2
- [-4.15387,-13.3114,-28.402,72.741],
- [-3.87346,-10.4637,-17.408,66.313]],
- [ [-4.99071,-23.5873,-76.924,184.782], # N = 3
- [-4.45311,-15.7732,-32.316,122.705],
- [-4.17280,-12.4909,-17.912,83.285]],
- [ [-5.26780,-27.2836,-78.971,137.871], # N = 4
- [-4.73244,-18.4833,-31.875,111.817],
- [-4.45268,-14.7199,-17.969,101.92]],
- [ [-5.52826,-30.9051,-92.490,248.096], # N = 5
- [-4.99491,-21.2360,-37.685,194.208],
- [-4.71587,-17.0820,-18.631,136.672]],
- [ [-5.77379,-34.7010,-105.937,393.991], # N = 6
- [-5.24217,-24.2177,-39.153,232.528],
- [-4.96397,-19.6064,-18.858,174.919]],
- [ [-6.00609,-38.7383,-108.605,365.208], # N = 7
- [-5.47664,-27.3005,-39.498,246.918],
- [-5.19921,-22.2617,-17.910,208.494]],
- [ [-6.22758,-42.7154,-119.622,421.395], # N = 8
- [-5.69983,-30.4365,-44.300,345.48],
- [-5.42320,-24.9686,-19.688,274.462]],
- [ [-6.43933,-46.7581,-136.691,651.38], # N = 9
- [-5.91298,-33.7584,-42.686,346.629],
- [-5.63704,-27.8965,-13.880,236.975]],
- [ [-6.64235,-50.9783,-145.462,752.228], # N = 10
- [-6.11753,-37.056,-48.719,473.905],
- [-5.84215,-30.8119,-14.938,316.006]],
- [ [-6.83743,-55.2861,-152.651,792.577], # N = 11
- [-6.31396,-40.5507,-46.771,487.185],
- [-6.03921,-33.8950,-9.122,285.164]],
- [ [-7.02582,-59.6037,-166.368,989.879], # N = 12
- [-6.50353,-44.0797,-47.242,543.889],
- [-6.22941,-36.9673,-10.868,418.414]]]
-tau_ctt_2010 = asarray(tau_ctt_2010)
-
-def mackinnoncrit(N=1, regression ="c", nobs=inf):
- """
- Returns the critical values for cointegrating and the ADF test.
-
- In 2010 MacKinnon updated the values of his 1994 paper with critical values
- for the augmented Dickey-Fuller tests. These new values are to be
- preferred and are used here.
-
- Parameters
- ----------
- N : int
- The number of series of I(1) series for which the null of
- non-cointegration is being tested. For N > 12, the critical values
- are linearly interpolated (not yet implemented). For the ADF test,
- N = 1.
- reg : str {'c', 'tc', 'ctt', 'nc'}
- Following MacKinnon (1996), these stand for the type of regression run.
- 'c' for constant and no trend, 'tc' for constant with a linear trend,
- 'ctt' for constant with a linear and quadratic trend, and 'nc' for
- no constant. The values for the no constant case are taken from the
- 1996 paper, as they were not updated for 2010 due to the unrealistic
- assumptions that would underlie such a case.
- nobs : int or np.inf
- This is the sample size. If the sample size is numpy.inf, then the
- asymptotic critical values are returned.
-
- References
- ----------
- MacKinnon, J.G. 1994 "Approximate Asymptotic Distribution Functions for
- Unit-Root and Cointegration Tests." Journal of Business & Economics
- Statistics, 12.2, 167-76.
- MacKinnon, J.G. 2010. "Critical Values for Cointegration Tests."
- Queen's University, Dept of Economics Working Papers 1227.
- http://ideas.repec.org/p/qed/wpaper/1227.html
- """
- reg = regression
- if reg not in ['c','ct','nc','ctt']:
- raise ValueError("regression keyword %s not understood") % reg
- if nobs is inf:
- return eval("tau_"+reg+"_2010["+str(N-1)+",:,0]")
- else:
- return polyval(eval("tau_"+reg+"_2010["+str(N-1)+",:,::-1].T"),1./nobs)
-
-if __name__=="__main__":
- pass
diff --git a/statsmodels/scikits/statsmodels/tsa/api.py b/statsmodels/scikits/statsmodels/tsa/api.py
deleted file mode 100644
index 6f83501..0000000
--- a/statsmodels/scikits/statsmodels/tsa/api.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from .ar_model import AR
-from .arima_model import ARMA
-import vector_ar as var
-from .vector_ar.var_model import VAR
-from .vector_ar.dynamic import DynamicVAR
-import filters
-import tsatools
-from .tsatools import (add_trend, detrend, lagmat, lagmat2ds, add_lag)
-import interp
-import stattools
-from .stattools import (adfuller, acovf, q_stat, acf, pacf_yw, pacf_ols, pacf,
- ccovf, ccf, periodogram, grangercausalitytests)
-from .base import datetools
diff --git a/statsmodels/scikits/statsmodels/tsa/ar_model.py b/statsmodels/scikits/statsmodels/tsa/ar_model.py
deleted file mode 100644
index fa2e654..0000000
--- a/statsmodels/scikits/statsmodels/tsa/ar_model.py
+++ /dev/null
@@ -1,889 +0,0 @@
-"""
-This is the VAR class refactored from pymaclab.
-"""
-from __future__ import division
-import numpy as np
-from numpy import (dot, identity, atleast_2d, atleast_1d, zeros)
-from numpy.linalg import inv
-from scipy import optimize
-from scipy.stats import t, norm, ss as sumofsq
-from scikits.statsmodels.regression.linear_model import OLS
-from scikits.statsmodels.tsa.tsatools import (lagmat, add_trend,
- _ar_transparams, _ar_invtransparams)
-import scikits.statsmodels.tsa.base.tsa_model as tsbase
-import scikits.statsmodels.base.model as base
-from scikits.statsmodels.tools.decorators import (resettable_cache,
- cache_readonly, cache_writable)
-from scikits.statsmodels.tools.compatibility import np_slogdet
-from scikits.statsmodels.sandbox.regression.numdiff import approx_fprime
-from scikits.statsmodels.sandbox.regression.numdiff import (approx_hess,
- approx_hess_cs)
-from scikits.statsmodels.tsa.kalmanf.kalmanfilter import KalmanFilter
-import scikits.statsmodels.base.wrapper as wrap
-from scikits.statsmodels.tsa.vector_ar import util
-
-
-__all__ = ['AR']
-
-
-
-class AR(tsbase.TimeSeriesModel):
- """
- Autoregressive AR(p) Model
-
- Parameters
- ----------
- endog : array-like
- Endogenous response variable.
- date : array-like
- Dates of the endogenous variable.
- """
- def __init__(self, endog, dates=None, freq=None):
- super(AR, self).__init__(endog, None, dates, freq)
- endog = self.endog # original might not have been an ndarray
- if endog.ndim == 1:
- endog = endog[:,None]
- self.endog = endog # to get shapes right
- elif endog.ndim > 1 and endog.shape[1] != 1:
- raise ValueError("Only the univariate case is implemented")
-
- def initialize(self):
- pass
-
- def _transparams(self, params):
- """
- Transforms params to induce stationarity/invertability.
-
- Reference
- ---------
- Jones(1980)
- """
- p = self.k_ar
- k = self.k_trend
- newparams = params.copy()
- newparams[k:k+p] = _ar_transparams(params[k:k+p].copy())
- return newparams
-
- def _invtransparams(self, start_params):
- """
- Inverse of the Jones reparameterization
- """
- p = self.k_ar
- k = self.k_trend
- newparams = start_params.copy()
- newparams[k:k+p] = _ar_invtransparams(start_params[k:k+p].copy())
- return newparams
-
- def _presample_fit(self, params, start, p, end, y, predictedvalues):
- """
- Return the pre-sample predicted values using the Kalman Filter
-
- Notes
- -----
- See predict method for how to use start and p.
- """
- k = self.k_trend
-
- # build system matrices
- T_mat = KalmanFilter.T(params, p, k, p)
- R_mat = KalmanFilter.R(params, p, k, 0, p)
-
- # Initial State mean and variance
- alpha = np.zeros((p,1))
- Q_0 = dot(inv(identity(p**2)-np.kron(T_mat,T_mat)),dot(R_mat,
- R_mat.T).ravel('F'))
-
- Q_0 = Q_0.reshape(p,p, order='F') #TODO: order might need to be p+k
- P = Q_0
- Z_mat = KalmanFilter.Z(p)
- for i in xrange(end): #iterate p-1 times to fit presample
- v_mat = y[i] - dot(Z_mat,alpha)
- F_mat = dot(dot(Z_mat, P), Z_mat.T)
- Finv = 1./F_mat # inv. always scalar
- K = dot(dot(dot(T_mat,P),Z_mat.T),Finv)
- # update state
- alpha = dot(T_mat, alpha) + dot(K,v_mat)
- L = T_mat - dot(K,Z_mat)
- P = dot(dot(T_mat, P), L.T) + dot(R_mat, R_mat.T)
- # P[0,0] += 1 # for MA part, R_mat.R_mat.T above
- if i >= start-1: #only record if we ask for it
- predictedvalues[i+1-start] = dot(Z_mat,alpha)
-
- def _get_predict_start(self, start):
- if start is None:
- if self.method == 'mle':
- start = 0
- else: # can't do presample fit for cmle
- start = self.k_ar
-
- if self.method == 'cmle':
- if start < self.k_ar:
- raise ValueError("Start must be >= k_ar")
-
- return super(AR, self)._get_predict_start(start)
-
-
- def predict(self, params, start=None, end=None, method='static'):
- """
- Returns in-sample prediction or forecasts.
-
- Parameters
- ----------
- params : array
- The fitted model parameters.
- start : int, str, or datetime
- Zero-indexed observation number at which to start forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- end : int, str, or datetime
- Zero-indexed observation number at which to end forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- method : string {'dynamic', 'static'}
- If method is 'dynamic', then fitted values are used in place of
- observed 'endog' to make forecasts. If 'static', observed 'endog'
- are used. Only 'static' is currently implemented.
-
- Returns
- -------
- predicted values : array
-
- Notes
- -----
- The linear Gaussian Kalman filter is used to return pre-sample fitted
- values. The exact initial Kalman Filter is used. See Durbin and Koopman
- in the references for more information.
- """
- start = self._get_predict_start(start) # will be an index of a date
- end, out_of_sample = self._get_predict_end(end)
-
- if end < start:
- raise ValueError("end is before start")
- if end == start + out_of_sample:
- return np.array([])
-
- k_ar = self.k_ar
- y = self.endog[:k_ar]
- nobs = int(self.endog.shape[0])
- k_trend = self.k_trend
- method = self.method
-
-
- predictedvalues = np.zeros(end+1-start + out_of_sample)
-
- # fit pre-sample
- if method == 'mle': # use Kalman Filter to get initial values
- if k_trend:
- mu = params[0]/(1-np.sum(params[k_trend:]))
-
- # modifies predictedvalues in place
- if start < k_ar:
- self._presample_fit(params, start, k_ar, min(k_ar-1, end),
- y-mu, predictedvalues)
- predictedvalues[:k_ar-start] += mu
-
- if end < k_ar:
- return predictedvalues
-
- # fit in-sample
- # just do the whole thing and then truncate
- fittedvalues = dot(self.X, params)
-
- pv_start = max(k_ar - start, 0)
- fv_start = max(start - k_ar, 0)
- pv_end = min(len(predictedvalues), len(fittedvalues) - fv_start)
- #fv_end = min(len(fittedvalues), len(fittedvalues) - end)
- fv_end = min(len(fittedvalues), end-k_ar+1)
- predictedvalues[pv_start:pv_end+pv_start] = fittedvalues[fv_start:fv_end]
-
- if not out_of_sample:
- return predictedvalues
-
- # fit out of sample
- endog = np.r_[self.endog[-k_ar:], [[0]]*out_of_sample]
- params = params.copy()
- mu = params[:k_trend] or 0
- params = params[k_trend:][::-1]
-
-
- for i in range(out_of_sample):
- fcast = mu + np.dot(params, endog[i:i+k_ar])
- predictedvalues[-out_of_sample+i] = fcast
- endog[i+k_ar] = fcast
-
- return predictedvalues
-
- def _presample_varcov(self, params):
- """
- Returns the inverse of the presample variance-covariance.
-
- Notes
- -----
- See Hamilton p. 125
- """
- k = self.k_trend
- p = self.k_ar
- p1 = p+1
-
- # get inv(Vp) Hamilton 5.3.7
- params0 = np.r_[-1, params[k:]]
-
- Vpinv = np.zeros((p,p), dtype=params.dtype)
- for i in range(1,p1):
- Vpinv[i-1,i-1:] = np.correlate(params0, params0[:i])[:-1]
- Vpinv[i-1,i-1:] -= np.correlate(params0[-i:], params0)[:-1]
-
- Vpinv = Vpinv + Vpinv.T - np.diag(Vpinv.diagonal())
- return Vpinv
-
- def _loglike_css(self, params):
- """
- Loglikelihood of AR(p) process using conditional sum of squares
- """
- nobs = self.nobs
- Y = self.Y
- X = self.X
- ssr = sumofsq(Y.squeeze()-np.dot(X,params))
- sigma2 = ssr/nobs
- return -nobs/2 * (np.log(2*np.pi) + np.log(sigma2)) -\
- ssr/(2*sigma2)
-
- def _loglike_mle(self, params):
- """
- Loglikelihood of AR(p) process using exact maximum likelihood
- """
- nobs = self.nobs
- Y = self.Y
- X = self.X
- endog = self.endog
- k_ar = self.k_ar
- k_trend = self.k_trend
-
- # reparameterize according to Jones (1980) like in ARMA/Kalman Filter
- if self.transparams:
- params = self._transparams(params)
-
- # get mean and variance for pre-sample lags
- yp = endog[:k_ar].copy()
- if k_trend:
- c = [params[0]] * k_ar
- else:
- c = [0]
- mup = np.asarray(c/(1-np.sum(params[k_trend:])))
- diffp = yp-mup[:,None]
-
- # get inv(Vp) Hamilton 5.3.7
- Vpinv = self._presample_varcov(params)
-
- diffpVpinv = np.dot(np.dot(diffp.T,Vpinv),diffp).item()
- ssr = sumofsq(endog[k_ar:].squeeze() -np.dot(X,params))
-
- # concentrating the likelihood means that sigma2 is given by
- sigma2 = 1./nobs * (diffpVpinv + ssr)
- self.sigma2 = sigma2
- logdet = np_slogdet(Vpinv)[1] #TODO: add check for singularity
- loglike = -1/2.*(nobs*(np.log(2*np.pi) + np.log(sigma2)) - \
- logdet + diffpVpinv/sigma2 + ssr/sigma2)
- return loglike
-
-
- def loglike(self, params):
- """
- The loglikelihood of an AR(p) process
-
- Parameters
- ----------
- params : array
- The fitted parameters of the AR model
-
- Returns
- -------
- llf : float
- The loglikelihood evaluated at `params`
-
- Notes
- -----
- Contains constant term. If the model is fit by OLS then this returns
- the conditonal maximum likelihood.
-
- .. math:: \\frac{\\left(n-p\\right)}{2}\\left(\\log\\left(2\\pi\\right)+\\log\\left(\\sigma^{2}\\right)\\right)-\\frac{1}{\\sigma^{2}}\\sum_{i}\\epsilon_{i}^{2}
-
- If it is fit by MLE then the (exact) unconditional maximum likelihood
- is returned.
-
- .. math:: -\\frac{n}{2}log\\left(2\\pi\\right)-\\frac{n}{2}\\log\\left(\\sigma^{2}\\right)+\\frac{1}{2}\\left|V_{p}^{-1}\\right|-\\frac{1}{2\\sigma^{2}}\\left(y_{p}-\\mu_{p}\\right)^{\\prime}V_{p}^{-1}\\left(y_{p}-\\mu_{p}\\right)-\\frac{1}{2\\sigma^{2}}\\sum_{t=p+1}^{n}\\epsilon_{i}^{2}
-
- where
-
- :math:`\\mu_{p}` is a (`p` x 1) vector with each element equal to the
- mean of the AR process and :math:`\\sigma^{2}V_{p}` is the (`p` x `p`)
- variance-covariance matrix of the first `p` observations.
- """
- #TODO: Math is on Hamilton ~pp 124-5
- if self.method == "cmle":
- return self._loglike_css(params)
-
- else:
- return self._loglike_mle(params)
-
- def score(self, params):
- """
- Return the gradient of the loglikelihood at params.
-
- Parameters
- ----------
- params : array-like
- The parameter values at which to evaluate the score function.
-
- Notes
- -----
- Returns numerical gradient.
- """
- loglike = self.loglike
- return approx_fprime(params, loglike, epsilon=1e-8)
-
-
- def information(self, params):
- """
- Not Implemented Yet
- """
- return
-
- def hessian(self, params):
- """
- Returns numerical hessian for now.
- """
- loglike = self.loglike
- return approx_hess(params, loglike)[0]
-
- def _stackX(self, k_ar, trend):
- """
- Private method to build the RHS matrix for estimation.
-
- Columns are trend terms then lags.
- """
- endog = self.endog
- X = lagmat(endog, maxlag=k_ar, trim='both')
- k_trend = util.get_trendorder(trend)
- if k_trend:
- X = add_trend(X, prepend=True, trend=trend)
- self.k_trend = k_trend
- return X
-
- def select_order(self, maxlag, ic):
- """
- Select the lag order according to the information criterion.
-
- Parameters
- ----------
- maxlag : int
- The highest lag length tried. See `AR.fit`.
- ic : str {'aic','bic','hic','t-stat'}
- Criterion used for selecting the optimal lag length.
- See `AR.fit`.
-
- Returns
- -------
- bestlag : int
- Best lag according to IC.
- """
- endog = self.endog
- trend = self.trend
-
- # make Y and X with same nobs to compare ICs
- Y = endog[maxlag:]
- self.Y = Y # attach to get correct fit stats
- X = self._stackX(maxlag, trend) # sets k_trend
- self.X = X
- method = self.method
- k = self.k_trend # k_trend set in _stackX
- k = max(1,k) # handle if startlag is 0
- results = {}
-
- if ic != 't-stat':
- for lag in range(k,maxlag+1):
- # have to reinstantiate the model to keep comparable models
- endog_tmp = endog[maxlag-lag:]
- fit = AR(endog_tmp).fit(maxlag=lag, method=method,
- full_output=0, trend=trend,
- maxiter=100, disp=0)
- results[lag] = eval('fit.'+ic)
- bestic, bestlag = min((res, k) for k,res in results.iteritems())
-
- else: # choose by last t-stat.
- stop = 1.6448536269514722 # for t-stat, norm.ppf(.95)
- for lag in range(maxlag,k-1,-1):
- # have to reinstantiate the model to keep comparable models
- endog_tmp = endog[maxlag-lag:]
- fit = AR(endog_tmp).fit(maxlag=lag, method=method,
- full_output=full_output, trend=trend,
- maxiter=maxiter, disp=disp)
-
- if np.abs(fit.tvalues[-1]) >= stop:
- bestlag = lag
- break
- return bestlag
-
- def fit(self, maxlag=None, method='cmle', ic=None, trend='c',
- transparams=True, start_params=None, solver=None, maxiter=35,
- full_output=1, disp=1, callback=None, **kwargs):
- """
- Fit the unconditional maximum likelihood of an AR(p) process.
-
- Parameters
- ----------
- maxlag : int
- If `ic` is None, then maxlag is the lag length used in fit. If
- `ic` is specified then maxlag is the highest lag order used to
- select the correct lag order. If maxlag is None, the default is
- round(12*(nobs/100.)**(1/4.))
- method : str {'cmle', 'mle'}, optional
- cmle - Conditional maximum likelihood using OLS
- mle - Unconditional (exact) maximum likelihood. See `solver`
- and the Notes.
- ic : str {'aic','bic','hic','t-stat'}
- Criterion used for selecting the optimal lag length.
- aic - Akaike Information Criterion
- bic - Bayes Information Criterion
- t-stat - Based on last lag
- hq - Hannan-Quinn Information Criterion
- If any of the information criteria are selected, the lag length
- which results in the lowest value is selected. If t-stat, the
- model starts with maxlag and drops a lag until the highest lag
- has a t-stat that is significant at the 95 % level.
- trend : str {'c','nc'}
- Whether to include a constant or not. 'c' - include constant.
- 'nc' - no constant.
-
- The below can be specified if method is 'mle'
-
- transparams : bool, optional
- Whether or not to transform the parameters to ensure stationarity.
- Uses the transformation suggested in Jones (1980).
- start_params : array-like, optional
- A first guess on the parameters. Default is cmle estimates.
- solver : str or None, optional
- Solver to be used. The default is 'l_bfgs' (limited memory Broyden-
- Fletcher-Goldfarb-Shanno). Other choices are 'bfgs', 'newton'
- (Newton-Raphson), 'nm' (Nelder-Mead), 'cg' - (conjugate gradient),
- 'ncg' (non-conjugate gradient), and 'powell'.
- The limited memory BFGS uses m=30 to approximate the Hessian,
- projected gradient tolerance of 1e-7 and factr = 1e3. These
- cannot currently be changed for l_bfgs. See notes for more
- information.
- maxiter : int, optional
- The maximum number of function evaluations. Default is 35.
- tol : float
- The convergence tolerance. Default is 1e-08.
- full_output : bool, optional
- If True, all output from solver will be available in
- the Results object's mle_retvals attribute. Output is dependent
- on the solver. See Notes for more information.
- disp : bool, optional
- If True, convergence information is output.
- callback : function, optional
- Called after each iteration as callback(xk) where xk is the current
- parameter vector.
- kwargs
- See Notes for keyword arguments that can be passed to fit.
-
- References
- ----------
- Jones, R.H. 1980 "Maximum likelihood fitting of ARMA models to time
- series with missing observations." `Technometrics`. 22.3.
- 389-95.
-
- See also
- --------
- scikits.statsmodels.model.LikelihoodModel.fit for more information
- on using the solvers.
-
- Notes
- ------
- The below is the docstring from
- scikits.statsmodels.LikelihoodModel.fit
- """
- method = method.lower()
- if method not in ['cmle','yw','mle']:
- raise ValueError("Method %s not recognized" % method)
- self.method = method
- self.trend = trend
- self.transparams = transparams
- nobs = len(self.endog) # overwritten if method is 'cmle'
- endog = self.endog
-
- if maxlag is None:
- maxlag = int(round(12*(nobs/100.)**(1/4.)))
- k_ar = maxlag # stays this if ic is None
-
- # select lag length
- if ic is not None:
- ic = ic.lower()
- if ic not in ['aic','bic','hqic','t-stat']:
- raise ValueError("ic option %s not understood" % ic)
- k_ar = self.select_order(k_ar, ic)
-
- self.k_ar = k_ar # change to what was chosen by ic
-
- # redo estimation for best lag
- # make LHS
- Y = endog[k_ar:,:]
- # make lagged RHS
- X = self._stackX(k_ar, trend) # sets self.k_trend
- k_trend = self.k_trend
- k = k_trend
- self.exog_names = util.make_lag_names(self.endog_names, k_ar, k_trend)
- self.Y = Y
- self.X = X
-
- if solver:
- solver = solver.lower()
- if method == "cmle": # do OLS
- arfit = OLS(Y,X).fit()
- params = arfit.params
- self.nobs = nobs - k_ar
- self.sigma2 = arfit.ssr/arfit.nobs #needed for predict fcasterr
- if method == "mle":
- self.nobs = nobs
- if not start_params:
- start_params = OLS(Y,X).fit().params
- start_params = self._invtransparams(start_params)
- loglike = lambda params : -self.loglike(params)
- if solver == None: # use limited memory bfgs
- bounds = [(None,)*2]*(k_ar+k)
- mlefit = optimize.fmin_l_bfgs_b(loglike, start_params,
- approx_grad=True, m=12, pgtol=1e-8, factr=1e2,
- bounds=bounds, iprint=disp)
- self.mlefit = mlefit
- params = mlefit[0]
- else:
- mlefit = super(AR, self).fit(start_params=start_params,
- method=solver, maxiter=maxiter,
- full_output=full_output, disp=disp,
- callback = callback, **kwargs)
- self.mlefit = mlefit
- params = mlefit.params
- if self.transparams:
- params = self._transparams(params)
- self.transparams = False # turn off now for other results
-
- # don't use yw, because we can't estimate the constant
- #elif method == "yw":
- # params, omega = yule_walker(endog, order=maxlag,
- # method="mle", demean=False)
- # how to handle inference after Yule-Walker?
- # self.params = params #TODO: don't attach here
- # self.omega = omega
-
- pinv_exog = np.linalg.pinv(X)
- normalized_cov_params = np.dot(pinv_exog, pinv_exog.T)
- arfit = ARResults(self, params, normalized_cov_params)
- return ARResultsWrapper(arfit)
-
- fit.__doc__ += base.LikelihoodModel.fit.__doc__
-
-class ARResults(tsbase.TimeSeriesModelResults):
- """
- Class to hold results from fitting an AR model.
-
- Parameters
- ----------
- model : AR Model instance
- Reference to the model that is fit.
- params : array
- The fitted parameters from the AR Model.
- normalized_cov_params : array
- inv(dot(X.T,X)) where X is the lagged values.
- scale : float, optional
- An estimate of the scale of the model.
-
- Returns
- -------
- **Attributes**
-
- aic : float
- Akaike Information Criterion using Lutkephol's definition.
- :math:`log(sigma) + 2*(1+k_ar)/nobs`
- bic : float
- Bayes Information Criterion
- :math:`\\log(\\sigma) + (1+k_ar)*\\log(nobs)/nobs`
- bse : array
- The standard errors of the estimated parameters. If `method` is 'cmle',
- then the standard errors that are returned are the OLS standard errors
- of the coefficients. If the `method` is 'mle' then they are computed
- using the numerical Hessian.
- fittedvalues : array
- The in-sample predicted values of the fitted AR model. The `k_ar`
- initial values are computed via the Kalman Filter if the model is
- fit by `mle`.
- fpe : float
- Final prediction error using Lutkepohl's definition
- ((n_totobs+k_trend)/(n_totobs-k_ar-k_trend))*sigma
- hqic : float
- Hannan-Quinn Information Criterion.
- k_ar : float
- Lag length. Sometimes used as `p` in the docs.
- k_trend : float
- The number of trend terms included. 'nc'=0, 'c'=1.
- llf : float
- The loglikelihood of the model evaluated at `params`. See `AR.loglike`
- model : AR model instance
- A reference to the fitted AR model.
- nobs : float
- The number of available observations `nobs` - `k_ar`
- n_totobs : float
- The number of total observations in `endog`. Sometimes `n` in the docs.
- params : array
- The fitted parameters of the model.
- pvalues : array
- The p values associated with the standard errors.
- resid : array
- The residuals of the model. If the model is fit by 'mle' then the pre-sample
- residuals are calculated using fittedvalues from the Kalman Filter.
- roots : array
- The roots of the AR process are the solution to
- (1 - arparams[0]*z - arparams[1]*z**2 -...- arparams[p-1]*z**k_ar) = 0
- Stability requires that the roots in modulus lie outside the unit
- circle.
- scale : float
- Same as sigma2
- sigma2 : float
- The variance of the innovations (residuals).
- trendorder : int
- The polynomial order of the trend. 'nc' = None, 'c' or 't' = 0, 'ct' = 1,
- etc.
- tvalues : array
- The t-values associated with `params`.
- """
-
- _cache = {} # for scale setter
-
- def __init__(self, model, params, normalized_cov_params=None, scale=1.):
- super(ARResults, self).__init__(model, params, normalized_cov_params,
- scale)
- self._cache = resettable_cache()
- self.nobs = model.nobs
- n_totobs = len(model.endog)
- self.n_totobs = n_totobs
- self.X = model.X # copy?
- self.Y = model.Y
- k_ar = model.k_ar
- self.k_ar = k_ar
- k_trend = model.k_trend
- self.k_trend = k_trend
- trendorder = None
- if k_trend > 0:
- trendorder = k_trend - 1
- self.trendorder = 1
- #TODO: cmle vs mle?
- self.df_resid = self.model.df_resid = n_totobs - k_ar - k_trend
-
- @cache_writable()
- def sigma2(self):
- model = self.model
- if model.method == "cmle": # do DOF correction
- return 1./self.nobs * sumofsq(self.resid)
- else:
- return self.model.sigma2
-
- @cache_writable() # for compatability with RegressionResults
- def scale(self):
- return self.sigma2
-
- @cache_readonly
- def bse(self): # allow user to specify?
- if self.model.method == "cmle": # uses different scale/sigma definition
- resid = self.resid
- ssr = np.dot(resid,resid)
- ols_scale = ssr/(self.nobs - self.k_ar - self.k_trend)
- return np.sqrt(np.diag(self.cov_params(scale=ols_scale)))
- else:
- hess = approx_hess(self.params, self.model.loglike)
- return np.sqrt(np.diag(-np.linalg.inv(hess[0])))
-
- @cache_readonly
- def pvalues(self):
- return norm.sf(np.abs(self.tvalues))*2
-
- @cache_readonly
- def aic(self):
- #JP: this is based on loglike with dropped constant terms ?
- # Lutkepohl
- #return np.log(self.sigma2) + 1./self.model.nobs * self.k_ar
- # Include constant as estimated free parameter and double the loss
- return np.log(self.sigma2) + 2 * (1 + self.k_ar)/self.nobs
- # Stata defintion
- #nobs = self.nobs
- #return -2 * self.llf/nobs + 2 * (self.k_ar+self.k_trend)/nobs
-
- @cache_readonly
- def hqic(self):
- nobs = self.nobs
- # Lutkepohl
- # return np.log(self.sigma2)+ 2 * np.log(np.log(nobs))/nobs * self.k_ar
- # R uses all estimated parameters rather than just lags
- return np.log(self.sigma2) + 2 * np.log(np.log(nobs))/nobs * \
- (1 + self.k_ar)
- # Stata
- #nobs = self.nobs
- #return -2 * self.llf/nobs + 2 * np.log(np.log(nobs))/nobs * \
- # (self.k_ar + self.k_trend)
-
- @cache_readonly
- def fpe(self):
- nobs = self.nobs
- k_ar = self.k_ar
- k_trend = self.k_trend
- #Lutkepohl
- return ((nobs+k_ar+k_trend)/(nobs-k_ar-k_trend))*self.sigma2
-
- @cache_readonly
- def bic(self):
- nobs = self.nobs
- # Lutkepohl
- #return np.log(self.sigma2) + np.log(nobs)/nobs * self.k_ar
- # Include constant as est. free parameter
- return np.log(self.sigma2) + (1 + self.k_ar) * np.log(nobs)/nobs
- # Stata
- # return -2 * self.llf/nobs + np.log(nobs)/nobs * (self.k_ar + \
- # self.k_trend)
-
- @cache_readonly
- def resid(self):
- #NOTE: uses fittedvalues because it calculate presample values for mle
- model = self.model
- endog = model.endog.squeeze()
- if model.method == "cmle": # elimate pre-sample
- return endog[self.k_ar:] - self.fittedvalues
- else:
- return model.endog.squeeze() - self.fittedvalues
-
- #def ssr(self):
- # resid = self.resid
- # return np.dot(resid, resid)
-
- @cache_readonly
- def roots(self):
- k = self.k_trend
- return np.roots(np.r_[1, -self.params[k:]]) ** -1
-
- @cache_readonly
- def fittedvalues(self):
- return self.model.predict(self.params)
-
- def predict(self, start=None, end=None, method='static'):
- params = self.params
- predictedvalues = self.model.predict(params, start, end, method)
- return predictedvalues
-
- #start = self.model._get_predict_start(start)
- #end, out_of_sample = self.model._get_predict_end(end)
-
- ##TODO: return forecast errors and confidence intervals
- #from scikits.statsmodels.tsa.arima_process import arma2ma
- #ma_rep = arma2ma(np.r_[1,-params[::-1]], [1], out_of_sample)
- #fcasterr = np.sqrt(self.sigma2 * np.cumsum(ma_rep**2))
-
-
- preddoc = AR.predict.__doc__.split('\n')
- extra_doc = """ confint : bool, float
- Whether to return confidence intervals. If `confint` == True,
- 95 % confidence intervals are returned. Else if `confint` is a
- float, then it is assumed to be the alpha value of the confidence
- interval. That is confint == .05 returns a 95% confidence
- interval, and .10 would return a 90% confidence interval.""".split('\n')
- #ret_doc = """
- # fcasterr : array-like
- # confint : array-like
- #"""
- predict.__doc__ = '\n'.join(preddoc[:5] + preddoc[7:20] + extra_doc +
- preddoc[20:])
-
-class ARResultsWrapper(wrap.ResultsWrapper):
- _attrs = {}
- _wrap_attrs = wrap.union_dicts(tsbase.TimeSeriesResultsWrapper._wrap_attrs,
- _attrs)
- _methods = {}
- _wrap_methods = wrap.union_dicts(tsbase.TimeSeriesResultsWrapper._wrap_methods,
- _methods)
-wrap.populate_wrapper(ARResultsWrapper, ARResults)
-
-
-if __name__ == "__main__":
- import scikits.statsmodels.api as sm
- sunspots = sm.datasets.sunspots.load()
-# Why does R demean the data by defaut?
- ar_ols = AR(sunspots.endog)
- res_ols = ar_ols.fit(maxlag=9)
- ar_mle = AR(sunspots.endog)
- res_mle_bfgs = ar_mle.fit(maxlag=9, method="mle", solver="bfgs",
- maxiter=500, gtol=1e-10)
-# res_mle2 = ar_mle.fit(maxlag=1, method="mle", maxiter=500, penalty=True,
-# tol=1e-13)
-
-# ar_yw = AR(sunspots.endog)
-# res_yw = ar_yw.fit(maxlag=4, method="yw")
-
-# # Timings versus talkbox
-# from timeit import default_timer as timer
-# print "Time AR fit vs. talkbox"
-# # generate a long series of AR(2) data
-#
-# nobs = 1000000
-# y = np.empty(nobs)
-# y[0:2] = 0
-# for i in range(2,nobs):
-# y[i] = .25 * y[i-1] - .75 * y[i-2] + np.random.rand()
-#
-# mod_sm = AR(y)
-# t = timer()
-# res_sm = mod_sm.fit(method="yw", trend="nc", demean=False, maxlag=2)
-# t_end = timer()
-# print str(t_end - t) + " seconds for sm.AR with yule-walker, 2 lags"
-# try:
-# import scikits.talkbox as tb
-# except:
-# raise ImportError("You need scikits.talkbox installed for timings")
-# t = timer()
-# mod_tb = tb.lpc(y, 2)
-# t_end = timer()
-# print str(t_end - t) + " seconds for talkbox.lpc"
-# print """For higher lag lengths ours quickly fills up memory and starts
-#thrashing the swap. Should we include talkbox C code or Cythonize the
-#Levinson recursion algorithm?"""
-
- ## Try with a pandas series
- import pandas
- import scikits.timeseries as ts
- d1 = ts.Date(year=1700, freq='A')
- #NOTE: have to have yearBegin offset for annual data until parser rewrite
- #should this be up to the user, or should it be done in TSM init?
- #NOTE: not anymore, it's end of year now
- ts_dr = ts.date_array(start_date=d1, length=len(sunspots.endog))
- pandas_dr = pandas.DateRange(start=d1.datetime,
- periods=len(sunspots.endog), timeRule='A@DEC')
- #pandas_dr = pandas_dr.shift(-1, pandas.datetools.yearBegin)
-
-
-
- dates = np.arange(1700,1700+len(sunspots.endog))
- dates = ts.date_array(dates, freq='A')
- #sunspots = pandas.TimeSeries(sunspots.endog, index=dates)
-
- #NOTE: pandas only does business days for dates it looks like
- import datetime
- dt_dates = np.asarray(map(datetime.datetime.fromordinal,
- ts_dr.toordinal().astype(int)))
- sunspots = pandas.TimeSeries(sunspots.endog, index=dt_dates)
-
- #NOTE: pandas can't handle pre-1900 dates
- mod = AR(sunspots, freq='A')
- #NOTE: If you use timeseries, predict is buggy
- #mod = AR(sunspots.values, dates=ts_dr, freq='A')
- res = mod.fit(method='mle', maxlag=9)
-
-
-# some data for an example in Box Jenkins
- IBM = np.asarray([460,457,452,459,462,459,463,479,493,490.])
- w = np.diff(IBM)
- theta = .5
diff --git a/statsmodels/scikits/statsmodels/tsa/arima_model.py b/statsmodels/scikits/statsmodels/tsa/arima_model.py
deleted file mode 100644
index f639fff..0000000
--- a/statsmodels/scikits/statsmodels/tsa/arima_model.py
+++ /dev/null
@@ -1,929 +0,0 @@
-import numpy as np
-from scikits.statsmodels.tools.decorators import (cache_readonly,
- cache_writable, resettable_cache)
-from scipy import optimize
-from numpy import dot, identity, kron, log, zeros, pi, exp, eye, abs, empty
-from numpy.linalg import inv, pinv
-import scikits.statsmodels.base.model as base
-import scikits.statsmodels.tsa.base.tsa_model as tsbase
-import scikits.statsmodels.base.wrapper as wrap
-from scikits.statsmodels.regression.linear_model import yule_walker, GLS
-from scikits.statsmodels.tsa.tsatools import (lagmat, add_trend,
- _ar_transparams, _ar_invtransparams, _ma_transparams,
- _ma_invtransparams)
-from scikits.statsmodels.tsa.vector_ar import util
-from scikits.statsmodels.tsa.ar_model import AR
-from scikits.statsmodels.tsa.arima_process import arma2ma
-from scikits.statsmodels.sandbox.regression.numdiff import (approx_fprime,
- approx_fprime_cs, approx_hess, approx_hess_cs)
-from scikits.statsmodels.tsa.kalmanf import KalmanFilter
-from scipy.stats import t, norm
-from scipy.signal import lfilter
-try:
- from kalmanf import kalman_loglike
- fast_kalman = 1
-except:
- fast_kalman = 0
-
-def _unpack_params(params, order, k_trend, k_exog, reverse=False):
- p, q = order
- k = k_trend + k_exog
- maparams = params[k+p:]
- arparams = params[k:k+p]
- trend = params[:k_trend]
- exparams = params[k_trend:k]
- if reverse:
- return trend, exparams, arparams[::-1], maparams[::-1]
- return trend, exparams, arparams, maparams
-
-def _unpack_order(order):
- k_ar, k_ma, k = order
- k_lags = max(k_ar, k_ma+1)
- return k_ar, k_ma, order, k_lags
-
-def _make_arma_names(data, k_trend, order):
- k_ar, k_ma = order
- exog = data.exog
- if exog is not None:
- exog_names = data._get_names(data._orig_exog) or []
- else:
- exog_names = []
- ar_lag_names = util.make_lag_names(data.ynames, k_ar, 0)
- ar_lag_names = [''.join(('ar.', i))
- for i in ar_lag_names]
- ma_lag_names = util.make_lag_names(data.ynames, k_ma, 0)
- ma_lag_names = [''.join(('ma.', i)) for i in ma_lag_names]
- trend_name = util.make_lag_names('', 0, k_trend)
- exog_names = trend_name + exog_names + ar_lag_names + ma_lag_names
- return exog_names
-
-def _make_arma_exog(endog, exog, trend):
- k_trend = 1 # overwritten if no constant
- if exog is None and trend == 'c': # constant only
- exog = np.ones((len(endog),1))
- elif exog is not None and trend == 'c': # constant plus exogenous
- exog = add_trend(exog, trend='c', prepend=True)
- elif exog is not None and trend == 'nc':
- # make sure it's not holding constant from last run
- if exog.var() == 0:
- exog = None
- k_trend = 0
- if trend == 'nc':
- k_trend = 0
- return k_trend, exog
-
-
-class ARMA(tsbase.TimeSeriesModel):
- """
- Autoregressive Moving Average ARMA(p,q) Model
-
- Parameters
- ----------
- endog : array-like
- The endogenous variable.
- exog : array-like, optional
- An optional arry of exogenous variables. This should *not* include a
- constant or trend. You can specify this in the `fit` method.
- """
- def __init__(self, endog, exog=None, dates=None, freq=None):
- super(ARMA, self).__init__(endog, exog, dates, freq)
- if exog is not None:
- k_exog = exog.shape[1] # number of exog. variables excl. const
- else:
- k_exog = 0
- self.k_exog = k_exog
-
- def _fit_start_params_hr(self, order):
- """
- Get starting parameters for fit.
-
- Parameters
- ----------
- order : iterable
- (p,q,k) - AR lags, MA lags, and number of exogenous variables
- including the constant.
-
- Returns
- -------
- start_params : array
- A first guess at the starting parameters.
-
- Notes
- -----
- If necessary, fits an AR process with the laglength selected according
- to best BIC. Obtain the residuals. Then fit an ARMA(p,q) model via
- OLS using these residuals for a first approximation. Uses a separate
- OLS regression to find the coefficients of exogenous variables.
-
- References
- ----------
- Hannan, E.J. and Rissanen, J. 1982. "Recursive estimation of mixed
- autoregressive-moving average order." `Biometrika`. 69.1.
- """
- p,q,k = order
- start_params = zeros((p+q+k))
- endog = self.endog.copy() # copy because overwritten
- exog = self.exog
- if k != 0:
- ols_params = GLS(endog, exog).fit().params
- start_params[:k] = ols_params
- endog -= np.dot(exog, ols_params).squeeze()
- if q != 0:
- if p != 0:
- armod = AR(endog).fit(ic='bic', trend='nc')
- arcoefs_tmp = armod.params
- p_tmp = armod.k_ar
- resid = endog[p_tmp:] - np.dot(lagmat(endog, p_tmp,
- trim='both'), arcoefs_tmp)
- X = np.column_stack((lagmat(endog,p,'both')[p_tmp+(q-p):],
- lagmat(resid,q,'both'))) # stack ar lags and resids
- coefs = GLS(endog[p_tmp+q:], X).fit().params
- start_params[k:k+p+q] = coefs
- else:
- start_params[k+p:k+p+q] = yule_walker(endog, order=q)[0]
- if q==0 and p != 0:
- arcoefs = yule_walker(endog, order=p)[0]
- start_params[k:k+p] = arcoefs
- return start_params
-
- def _fit_start_params(self, order, method):
- if method != 'css-mle': # use Hannan-Rissanen to get start params
- start_params = self._fit_start_params_hr(order)
- else: # use CSS to get start params
- func = lambda params: -self.loglike_css(params)
- #start_params = [.1]*(k_ar+k_ma+k_exog) # different one for k?
- start_params = self._fit_start_params_hr(order)
- if self.transparams:
- start_params = self._invtransparams(start_params)
- bounds = [(None,)*2]*sum(order)
- mlefit = optimize.fmin_l_bfgs_b(func, start_params,
- approx_grad=True, m=12, pgtol=1e-7, factr=1e3,
- bounds = bounds, iprint=-1)
- start_params = self._transparams(mlefit[0])
- return start_params
-
-
- def score(self, params):
- """
- Compute the score function at params.
-
- Notes
- -----
- This is a numerical approximation.
- """
- loglike = self.loglike
- #if self.transparams:
- # params = self._invtransparams(params)
- #return approx_fprime(params, loglike, epsilon=1e-5)
- return approx_fprime_cs(params, loglike)
-
- def hessian(self, params):
- """
- Compute the Hessian at params,
-
- Notes
- -----
- This is a numerical approximation.
- """
- loglike = self.loglike
- #if self.transparams:
- # params = self._invtransparams(params)
- if not fast_kalman or self.method == "css":
- return approx_hess_cs(params, loglike, epsilon=1e-5)
- else:
- return approx_hess(params, self.loglike, epsilon=1e-3)[0]
-
-
- def _transparams(self, params):
- """
- Transforms params to induce stationarity/invertability.
-
- Reference
- ---------
- Jones(1980)
- """
- k_ar, k_ma = self.k_ar, self.k_ma
- k = self.k_exog + self.k_trend
- newparams = np.zeros_like(params)
-
- # just copy exogenous parameters
- if k != 0:
- newparams[:k] = params[:k]
-
- # AR Coeffs
- if k_ar != 0:
- newparams[k:k+k_ar] = _ar_transparams(params[k:k+k_ar].copy())
-
- # MA Coeffs
- if k_ma != 0:
- newparams[k+k_ar:] = _ma_transparams(params[k+k_ar:].copy())
- return newparams
-
- def _invtransparams(self, start_params):
- """
- Inverse of the Jones reparameterization
- """
- k_ar, k_ma = self.k_ar, self.k_ma
- k = self.k_exog + self.k_trend
- newparams = start_params.copy()
- arcoefs = newparams[k:k+k_ar]
- macoefs = newparams[k+k_ar:]
- # AR coeffs
- if k_ar != 0:
- newparams[k:k+k_ar] = _ar_invtransparams(arcoefs)
-
- # MA coeffs
- if k_ma != 0:
- newparams[k+k_ar:k+k_ar+k_ma] = _ma_invtransparams(macoefs)
- return newparams
-
- def _get_predict_start(self, start):
- # do some defaults
- if start is None:
- if 'mle' in self.method:
- start = 0
- else:
- start = self.k_ar
-
- if 'mle' not in self.method:
- if start < self.k_ar:
- raise ValueError("Start must be >= k_ar")
-
- return super(ARMA, self)._get_predict_start(start)
-
- def geterrors(self, params):
- """
- Get the errors of the ARMA process.
-
- Parameters
- ----------
- params : array-like
- The fitted ARMA parameters
- order : array-like
- 3 item iterable, with the number of AR, MA, and exogenous
- parameters, including the trend
- """
-
- #start = self._get_predict_start(start) # will be an index of a date
- #end, out_of_sample = self._get_predict_end(end)
- params = np.asarray(params)
- k_ar, k_ma = self.k_ar, self.k_ma
- k = self.k_exog + self.k_trend
-
-
- if 'mle' in self.method: # use KalmanFilter to get errors
- (y, k, nobs, k_ar, k_ma, k_lags, newparams, Z_mat, m, R_mat,
- T_mat, paramsdtype) = KalmanFilter._init_kalman_state(params, self)
- errors = KalmanFilter.geterrors(y,k,k_ar,k_ma, k_lags, nobs,
- Z_mat, m, R_mat, T_mat, paramsdtype)
- if isinstance(errors, tuple):
- errors = errors[0] # non-cython version returns a tuple
- else: # use scipy.signal.lfilter
- y = self.endog.copy()
- k = self.k_exog + self.k_trend
- if k > 0:
- y -= dot(self.exog, params[:k])
-
- k_ar = self.k_ar
- k_ma = self.k_ma
-
-
- (trendparams, exparams,
- arparams, maparams) = _unpack_params(params, (k_ar, k_ma),
- self.k_trend, self.k_exog,
- reverse=False)
- b,a = np.r_[1,-arparams], np.r_[1,maparams]
- zi = zeros((max(k_ar, k_ma)))
- for i in range(k_ar):
- zi[i] = sum(-b[:i+1][::-1]*y[:i+1])
- e = lfilter(b,a,y,zi=zi)
- errors = e[0][k_ar:]
- return errors.squeeze()
-
- def _predict_out_of_sample(self, params, steps, errors, exog=None):
- p = self.k_ar
- q = self.k_ma
- k_exog = self.k_exog
- k_trend = self.k_trend
- (trendparam, exparams,
- arparams, maparams) = _unpack_params(params, (p,q), k_trend,
- k_exog, reverse=True)
-
- if exog is None and k_exog > 0:
- raise ValueError("You must provide exog for ARMAX")
-
- if q:
- i = 0 # in case q == steps == 1
- resid = np.zeros(2*q)
- resid[:q] = errors[-q:] #only need last q
- else:
- i = -1 # since we don't run first loop below
-
- y = self.endog
- if k_trend == 1:
- mu = trendparam * (1-arparams.sum()) # use expectation
- # not constant
- mu = np.array([mu]*steps) # repeat it so you can slice if exog
- else:
- mu = np.zeros(steps)
-
- if k_exog > 0: # add exogenous process to constant
- mu += np.dot(exparams, exog)
-
- endog = np.zeros(p+steps-1)
- if p:
- endog[:p] = y[-p:] #only need p
-
- forecast = np.zeros(steps)
- for i in range(min(q,steps-1)):
- fcast = mu[i] + np.dot(arparams,endog[i:i+p]) + \
- np.dot(maparams,resid[i:i+q])
- forecast[i] = fcast
- endog[i+p] = fcast
-
- for i in range(i+1,steps-1):
- fcast = mu[i] + np.dot(arparams,endog[i:i+p])
- forecast[i] = fcast
- endog[i+p] = fcast
-
- #need to do one more without updating endog
- forecast[-1] = mu[-1] + np.dot(arparams,endog[steps-1:])
- return forecast
-
- def predict(self, params, start=None, end=None, exog=None):
- """
- In-sample and out-of-sample prediction.
-
- Parameters
- ----------
- params : array-like
- The fitted parameters of the model.
- start : int, str, or datetime
- Zero-indexed observation number at which to start forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- end : int, str, or datetime
- Zero-indexed observation number at which to end forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- exog : array-like, optional
- If the model is an ARMAX and out-of-sample forecasting is
- requestion, exog must be given.
-
- Notes
- ------
- Consider using the results prediction.
- """
- method = self.method
- #params = np.asarray(params)
-
- start = self._get_predict_start(start) # will be an index of a date
- end, out_of_sample = self._get_predict_end(end)
-
- if end < start:
- raise ValueError("end is before start")
- if end == start + out_of_sample:
- return np.array([])
-
- k_ar = self.k_ar
-
- predictedvalues = np.zeros(end+1-start + out_of_sample)
- endog = self.endog
- resid = self.geterrors(params)
- # this does pre- and in-sample fitting
- fittedvalues = endog - resid #get them all then trim
-
- fv_start = start
- if 'mle' not in method:
- fv_start -= k_ar # start is in terms of endog index
- pv_end = min(len(predictedvalues), len(fittedvalues) - fv_start)
- fv_end = min(len(fittedvalues), end+1)
-
- predictedvalues[:pv_end] = fittedvalues[fv_start:fv_end]
- if out_of_sample == 0:
- return predictedvalues
-
- # do out of sample fitting
- predictedvalues[pv_end:] = self._predict_out_of_sample(params,
- out_of_sample, resid, exog)
- return predictedvalues
-
-
- def loglike_kalman(self, params):
- """
- Compute exact loglikelihood for ARMA(p,q) model using the Kalman Filter.
- """
- return KalmanFilter.loglike(params, self)
-
- def loglike_css(self, params):
- """
- Conditional Sum of Squares likelihood function.
- """
- k_ar = self.k_ar
- k_ma = self.k_ma
- k = self.k_exog + self.k_trend
- y = self.endog.copy().astype(params.dtype)
- nobs = self.nobs
- # how to handle if empty?
- if self.transparams:
- newparams = self._transparams(params)
- else:
- newparams = params
- if k > 0:
- y -= dot(self.exog, newparams[:k])
- # the order of p determines how many zeros errors to set for lfilter
- b,a = np.r_[1,-newparams[k:k+k_ar]], np.r_[1,newparams[k+k_ar:]]
- zi = np.zeros((max(k_ar,k_ma)), dtype=params.dtype)
- for i in range(k_ar):
- zi[i] = sum(-b[:i+1][::-1] * y[:i+1])
- errors = lfilter(b,a, y, zi=zi)[0][k_ar:]
-
- ssr = np.dot(errors,errors)
- sigma2 = ssr/nobs
- self.sigma2 = sigma2
- llf = -nobs/2.*(log(2*pi) + log(sigma2)) - ssr/(2*sigma2)
- return llf
-
- def _set_loglike(self, method):
- if method in ['mle','css-mle']:
- loglike = lambda params: -self.loglike_kalman(params)
- self.loglike = self.loglike_kalman
- if method == 'css':
- loglike = lambda params: -self.loglike_css(params)
- self.loglike = self.loglike_css
- self.nobs = len(self.endog) - self.k_ar #excludes pre-sample
- return loglike
-
-
- def fit(self, order, start_params=None, trend='c', method = "css-mle",
- transparams=True, solver=None, maxiter=35, full_output=1,
- disp=5, callback=None, **kwargs):
- """
- Fits ARMA(p,q) model using exact maximum likelihood via Kalman filter.
-
- Parameters
- ----------
- start_params : array-like, optional
- Starting parameters for ARMA(p,q). If None, the default is given
- by ARMA._fit_start_params. See there for more information.
- transparams : bool, optional
- Whehter or not to transform the parameters to ensure stationarity.
- Uses the transformation suggested in Jones (1980). If False,
- no checking for stationarity or invertibility is done.
- method : str {'css-mle','mle','css'}
- This is the loglikelihood to maximize. If "css-mle", the
- conditional sum of squares likelihood is maximized and its values
- are used as starting values for the computation of the exact
- likelihood via the Kalman filter. If "mle", the exact likelihood
- is maximized via the Kalman Filter. If "css" the conditional sum
- of squares likelihood is maximized. All three methods use
- `start_params` as starting parameters. See above for more
- information.
- trend : str {'c','nc'}
- Whehter to include a constant or not. 'c' includes constant,
- 'nc' no constant.
- solver : str or None, optional
- Solver to be used. The default is 'l_bfgs' (limited memory Broyden-
- Fletcher-Goldfarb-Shanno). Other choices are 'bfgs', 'newton'
- (Newton-Raphson), 'nm' (Nelder-Mead), 'cg' - (conjugate gradient),
- 'ncg' (non-conjugate gradient), and 'powell'.
- The limited memory BFGS uses m=30 to approximate the Hessian,
- projected gradient tolerance of 1e-7 and factr = 1e3. These
- cannot currently be changed for l_bfgs. See notes for more
- information.
- maxiter : int, optional
- The maximum number of function evaluations. Default is 35.
- tol : float
- The convergence tolerance. Default is 1e-08.
- full_output : bool, optional
- If True, all output from solver will be available in
- the Results object's mle_retvals attribute. Output is dependent
- on the solver. See Notes for more information.
- disp : bool, optional
- If True, convergence information is printed. For the default
- l_bfgs_b solver, disp controls the frequency of the output during
- the iterations. disp < 0 means no output in this case.
- callback : function, optional
- Called after each iteration as callback(xk) where xk is the current
- parameter vector.
- kwargs
- See Notes for keyword arguments that can be passed to fit.
-
- Returns
- -------
- `scikits.statsmodels.tsa.arima.ARMAResults` class
-
- See also
- --------
- scikits.statsmodels.model.LikelihoodModel.fit for more information
- on using the solvers.
-
- Notes
- ------
- If fit by 'mle', it is assumed for the Kalman Filter that the initial
- unkown state is zero, and that the inital variance is
- P = dot(inv(identity(m**2)-kron(T,T)),dot(R,R.T).ravel('F')).reshape(r,
- r, order = 'F')
-
- The below is the docstring from
- `scikits.statsmodels.LikelihoodModel.fit`
- """
- # enforce invertibility
- self.transparams = transparams
-
- self.method = method.lower()
-
- # get model order and constants
- self.k_ar = k_ar = int(order[0])
- self.k_ma = k_ma = int(order[1])
- self.k_lags = k_lags = max(k_ar,k_ma+1)
- endog, exog = self.endog, self.exog
- k_exog = self.k_exog
- self.nobs = len(endog) # this is overwritten if method is 'css'
-
- # (re)set trend and handle exogenous variables
- # always pass original exog
- k_trend, exog = _make_arma_exog(endog, self._data.exog, trend)
-
- self.k_trend = k_trend
- self.exog = exog # overwrites original exog from __init__
-
- # (re)set names for this model
- self.exog_names = _make_arma_names(self._data, k_trend, order)
-
- k = k_trend + k_exog
-
-
- # choose objective function
- method = method.lower()
- # this sets self.loglike based on method, and adjusts self.nobs for css
- loglike = self._set_loglike(method)
-
- if start_params is not None:
- start_params = np.asarray(start_params)
-
- else: # estimate starting parameters
- start_params = self._fit_start_params((k_ar,k_ma,k), method)
-
- if transparams: # transform initial parameters to ensure invertibility
- start_params = self._invtransparams(start_params)
-
- if solver is None: # use default limited memory bfgs
- bounds = [(None,)*2]*(k_ar+k_ma+k)
- mlefit = optimize.fmin_l_bfgs_b(loglike, start_params,
- approx_grad=True, m=12, pgtol=1e-8, factr=1e2,
- bounds=bounds, iprint=disp)
- self.mlefit = mlefit
- params = mlefit[0]
-
- else: # call the solver from LikelihoodModel
- mlefit = super(ARMA, self).fit(start_params, method=solver,
- maxiter=maxiter, full_output=full_output, disp=disp,
- callback = callback, **kwargs)
- self.mlefit = mlefit
- params = mlefit.params
-
- if transparams: # transform parameters back
- params = self._transparams(params)
-
- self.transparams = False # set to false so methods don't expect transf.
-
- normalized_cov_params = None #TODO: fix this
- armafit = ARMAResults(self, params, normalized_cov_params)
- return ARMAResultsWrapper(armafit)
-
- fit.__doc__ += base.LikelihoodModel.fit.__doc__
-
-class ARMAResults(tsbase.TimeSeriesModelResults):
- """
- Class to hold results from fitting an ARMA model.
-
- Parameters
- ----------
- model : ARMA instance
- The fitted model instance
- params : array
- Fitted parameters
- normalized_cov_params : array, optional
- The normalized variance covariance matrix
- scale : float, optional
- Optional argument to scale the variance covariance matrix.
-
- Returns
- --------
- **Attributes**
-
- aic : float
- Akaikie Information Criterion
- :math:`-2*llf+2*(df_model+1)`
- arparams : array
- The parameters associated with the AR coefficients in the model.
- arroots : array
- The roots of the AR coefficients are the solution to
- (1 - arparams[0]*z - arparams[1]*z**2 -...- arparams[p-1]*z**k_ar) = 0
- Stability requires that the roots in modulus lie outside the unit
- circle.
- bic : float
- Bayes Information Criterion
- -2*llf + log(nobs)*(df_model+1)
- Where if the model is fit using conditional sum of squares, the
- number of observations `nobs` does not include the `p` pre-sample
- observations.
- bse : array
- The standard errors of the parameters. These are computed using the
- numerical Hessian.
- df_model : array
- The model degrees of freedom = `k_exog` + `k_trend` + `k_ar` + `k_ma`
- df_resid : array
- The residual degrees of freedom = `nobs` - `df_model`
- fittedvalues : array
- The predicted values of the model.
- hqic : float
- Hannan-Quinn Information Criterion
- -2*llf + 2*(`df_model`)*log(log(nobs))
- Like `bic` if the model is fit using conditional sum of squares then
- the `k_ar` pre-sample observations are not counted in `nobs`.
- k_ar : int
- The number of AR coefficients in the model.
- k_exog : int
- The number of exogenous variables included in the model. Does not
- include the constant.
- k_ma : int
- The number of MA coefficients.
- k_trend : int
- This is 0 for no constant or 1 if a constant is included.
- llf : float
- The value of the log-likelihood function evaluated at `params`.
- maparams : array
- The value of the moving average coefficients.
- maroots : array
- The roots of the MA coefficients are the solution to
- (1 + maparams[0]*z + maparams[1]*z**2 + ... + maparams[q-1]*z**q) = 0
- Stability requires that the roots in modules lie outside the unit
- circle.
- model : ARMA instance
- A reference to the model that was fit.
- nobs : float
- The number of observations used to fit the model. If the model is fit
- using exact maximum likelihood this is equal to the total number of
- observations, `n_totobs`. If the model is fit using conditional
- maximum likelihood this is equal to `n_totobs` - `k_ar`.
- n_totobs : float
- The total number of observations for `endog`. This includes all
- observations, even pre-sample values if the model is fit using `css`.
- params : array
- The parameters of the model. The order of variables is the trend
- coefficients and the `k_exog` exognous coefficients, then the
- `k_ar` AR coefficients, and finally the `k_ma` MA coefficients.
- pvalues : array
- The p-values associated with the t-values of the coefficients. Note
- that the coefficients are assumed to have a Student's T distribution.
- resid : array
- The model residuals. If the model is fit using 'mle' then the
- residuals are created via the Kalman Filter. If the model is fit
- using 'css' then the residuals are obtained via `scipy.signal.lfilter`
- adjusted such that the first `k_ma` residuals are zero. These zero
- residuals are not returned.
- scale : float
- This is currently set to 1.0 and not used by the model or its results.
- sigma2 : float
- The variance of the residuals. If the model is fit by 'css',
- sigma2 = ssr/nobs, where ssr is the sum of squared residuals. If
- the model is fit by 'mle', then sigma2 = 1/nobs * sum(v**2 / F)
- where v is the one-step forecast error and F is the forecast error
- variance. See `nobs` for the difference in definitions depending on the
- fit.
- """
- _cache = {}
-
- #TODO: use this for docstring when we fix nobs issue
-
-
- def __init__(self, model, params, normalized_cov_params=None, scale=1.):
- super(ARMAResults, self).__init__(model, params, normalized_cov_params,
- scale)
- self.sigma2 = model.sigma2
- nobs = model.nobs
- self.nobs = nobs
- k_exog = model.k_exog
- self.k_exog = k_exog
- k_trend = model.k_trend
- self.k_trend = k_trend
- k_ar = model.k_ar
- self.k_ar = k_ar
- self.n_totobs = len(model.endog)
- k_ma = model.k_ma
- self.k_ma = k_ma
- df_model = k_exog + k_trend + k_ar + k_ma
- self.df_model = df_model
- self.df_resid = self.nobs - df_model
- self._cache = resettable_cache()
-
- @cache_readonly
- def arroots(self):
- return np.roots(np.r_[1,-self.arparams])**-1
-
- @cache_readonly
- def maroots(self):
- return np.roots(np.r_[1,self.maparams])**-1
-
- #@cache_readonly
- #def arfreq(self):
- # return (np.log(arroots/abs(arroots))/(2j*pi)).real
-
- #NOTE: why don't root finding functions work well?
- #@cache_readonly
- #def mafreq(eslf):
- # return
-
-
- @cache_readonly
- def arparams(self):
- k = self.k_exog + self.k_trend
- return self.params[k:k+self.k_ar]
-
- @cache_readonly
- def maparams(self):
- k = self.k_exog + self.k_trend
- k_ar = self.k_ar
- return self.params[k+k_ar:]
-
- @cache_readonly
- def llf(self):
- return self.model.loglike(self.params)
-
- @cache_readonly
- def bse(self):
- params = self.params
- hess = self.model.hessian(params)
- if len(params) == 1: # can't take an inverse
- return np.sqrt(-1./hess)
- return np.sqrt(np.diag(-inv(hess)))
-
- def cov_params(self): # add scale argument?
- params = self.params
- hess = self.model.hessian(params)
- return -inv(hess)
-
- @cache_readonly
- def aic(self):
- return -2*self.llf + 2*(self.df_model+1)
-
- @cache_readonly
- def bic(self):
- nobs = self.nobs
- return -2*self.llf + np.log(nobs)*(self.df_model+1)
-
- @cache_readonly
- def hqic(self):
- nobs = self.nobs
- return -2*self.llf + 2*(self.df_model+1)*np.log(np.log(nobs))
-
- @cache_readonly
- def fittedvalues(self):
- model = self.model
- endog = model.endog.copy()
- k_ar = self.k_ar
- exog = model.exog # this is a copy
- if exog is not None:
- if model.method == "css" and k_ar > 0:
- exog = exog[k_ar:]
- if model.method == "css" and k_ar > 0:
- endog = endog[k_ar:]
- fv = endog - self.resid
- # add deterministic part back in
- k = self.k_exog + self.k_trend
- #TODO: this needs to be commented out for MLE with constant
-
- # if k != 0:
- # fv += dot(exog, self.params[:k])
- return fv
-
- @cache_readonly
- def resid(self):
- return self.model.geterrors(self.params)
-
- @cache_readonly
- def pvalues(self):
- #TODO: same for conditional and unconditional?
- df_resid = self.df_resid
- return t.sf(np.abs(self.tvalues), df_resid) * 2
-
- def predict(self, start=None, end=None, exog=None):
- """
- In-sample and out-of-sample prediction.
-
- Parameters
- ----------
- start : int, str, or datetime
- Zero-indexed observation number at which to start forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- end : int, str, or datetime
- Zero-indexed observation number at which to end forecasting, ie.,
- the first forecast is start. Can also be a date string to
- parse or a datetime type.
- exog : array-like, optional
- If the model is an ARMAX and out-of-sample forecasting is
- requestion, exog must be given.
- """
- self.model.predict(self.params, start, end, exog)
-
- def forecast(self, steps=1, exog=None, alpha=.05):
- """
- Out-of-sample forecasts
-
- Parameters
- ----------
- steps : int
- The number of out of sample forecasts from the end of the
- sample.
- exog : array
- If the model is an ARMAX, you must provide out of sample
- values for the exogenous variables. This should not include
- the constant.
- alpha : float
- The confidence intervals for the forecasts are (1 - alpha) %
-
- Returns
- -------
- forecast : array
- Array of out of sample forecasts
- stderr : array
- Array of the standard error of the forecasts.
- conf_int : array
- 2d array of the confidence interval for the forecast
- """
-
- arparams = self.arparams
- maparams = self.maparams
- forecast = self.model._predict_out_of_sample(self.params,
- steps, self.resid, exog)
- # compute the standard errors
- sigma2 = self.sigma2
- ma_rep = arma2ma(np.r_[1,-arparams],
- np.r_[1, maparams], nobs=steps)
-
-
- fcasterr = np.sqrt(sigma2 * np.cumsum(ma_rep**2))
-
- const = norm.ppf(1 - alpha/2.)
- conf_int = np.c_[forecast - const*fcasterr, forecast + const*fcasterr]
-
- return forecast, fcasterr, conf_int
-
-class ARMAResultsWrapper(wrap.ResultsWrapper):
- _attrs = {}
- _wrap_attrs = wrap.union_dicts(tsbase.TimeSeriesResultsWrapper._wrap_attrs,
- _attrs)
- _methods = {}
- _wrap_methods = wrap.union_dicts(
- tsbase.TimeSeriesResultsWrapper._wrap_methods,
- _methods)
-wrap.populate_wrapper(ARMAResultsWrapper, ARMAResults)
-
-if __name__ == "__main__":
- import numpy as np
- import scikits.statsmodels.api as sm
-
- # simulate arma process
- from scikits.statsmodels.tsa.arima_process import arma_generate_sample
- y = arma_generate_sample([1., -.75],[1.,.25], nsample=1000)
- arma = ARMA(y)
- res = arma.fit(trend='nc', order=(1,1))
-
- np.random.seed(12345)
- y_arma22 = arma_generate_sample([1.,-.85,.35],[1,.25,-.9], nsample=1000)
- arma22 = ARMA(y_arma22)
- res22 = arma22.fit(trend = 'nc', order=(2,2))
-
- # test CSS
- arma22_css = ARMA(y_arma22)
- res22css = arma22_css.fit(trend='nc', order=(2,2), method='css')
-
-
- data = sm.datasets.sunspots.load()
- ar = ARMA(data.endog)
- resar = ar.fit(trend='nc', order=(9,0))
-
- y_arma31 = arma_generate_sample([1,-.75,-.35,.25],[.1], nsample=1000)
-
- arma31css = ARMA(y_arma31)
- res31css = arma31css.fit(order=(3,1), method="css", trend="nc",
- transparams=True)
-
- y_arma13 = arma_generate_sample([1., -.75],[1,.25,-.5,.8], nsample=1000)
- arma13css = ARMA(y_arma13)
- res13css = arma13css.fit(order=(1,3), method='css', trend='nc')
-
-
-# check css for p < q and q < p
- y_arma41 = arma_generate_sample([1., -.75, .35, .25, -.3],[1,-.35],
- nsample=1000)
- arma41css = ARMA(y_arma41)
- res41css = arma41css.fit(order=(4,1), trend='nc', method='css')
-
- y_arma14 = arma_generate_sample([1, -.25], [1., -.75, .35, .25, -.3],
- nsample=1000)
- arma14css = ARMA(y_arma14)
- res14css = arma14css.fit(order=(4,1), trend='nc', method='css')
diff --git a/statsmodels/scikits/statsmodels/tsa/arima_process.py b/statsmodels/scikits/statsmodels/tsa/arima_process.py
deleted file mode 100644
index 5aef039..0000000
--- a/statsmodels/scikits/statsmodels/tsa/arima_process.py
+++ /dev/null
@@ -1,1049 +0,0 @@
-'''ARMA process and estimation with scipy.signal.lfilter
-
-2009-09-06: copied from try_signal.py
- reparameterized same as signal.lfilter (positive coefficients)
-
-
-Notes
------
-* pretty fast
-* checked with Monte Carlo and cross comparison with statsmodels yule_walker
- for AR numbers are close but not identical to yule_walker
- not compared to other statistics packages, no degrees of freedom correction
-* ARMA(2,2) estimation (in Monte Carlo) requires longer time series to estimate parameters
- without large variance. There might be different ARMA parameters
- with similar impulse response function that cannot be well
- distinguished with small samples (e.g. 100 observations)
-* good for one time calculations for entire time series, not for recursive
- prediction
-* class structure not very clean yet
-* many one-liners with scipy.signal, but takes time to figure out usage
-* missing result statistics, e.g. t-values, but standard errors in examples
-* no criteria for choice of number of lags
-* no constant term in ARMA process
-* no integration, differencing for ARIMA
-* written without textbook, works but not sure about everything
- briefly checked and it looks to be standard least squares, see below
-
-* theoretical autocorrelation function of general ARMA
- Done, relatively easy to guess solution, time consuming to get
- theoretical test cases,
- example file contains explicit formulas for acovf of MA(1), MA(2) and ARMA(1,1)
-
-* two names for lag polynomials ar = rhoy, ma = rhoe ?
-
-
-Properties:
-Judge, ... (1985): The Theory and Practise of Econometrics
-
-BigJudge p. 237ff:
-If the time series process is a stationary ARMA(p,q), then
-minimizing the sum of squares is asymptoticaly (as T-> inf)
-equivalent to the exact Maximum Likelihood Estimator
-
-Because Least Squares conditional on the initial information
-does not use all information, in small samples exact MLE can
-be better.
-
-Without the normality assumption, the least squares estimator
-is still consistent under suitable conditions, however not
-efficient
-
-Author: josefpktd
-License: BSD
-'''
-
-import numpy as np
-from scipy import signal, optimize, linalg
-from scikits.statsmodels.base.model import LikelihoodModel
-
-#this has been copied to new arma_mle.py - keep temporarily for easier lookup
-class ARIMA(LikelihoodModel):
- '''currently ARMA only, no differencing used - no I
-
- parameterized as
- rhoy(L) y_t = rhoe(L) eta_t
-
- A instance of this class preserves state, so new class instances should
- be created for different examples
- '''
- def __init__(self, endog, exog=None):
- super(ARIMA, self).__init__(endog, exog)
- if endog.ndim == 1:
- endog = endog[:,None]
- elif endog.ndim > 1 and endog.shape[1] != 1:
- raise ValueError("Only the univariate case is implemented")
- self.endog = endog # overwrite endog
- if exog is not None:
- raise ValueError("Exogenous variables are not yet supported.")
-
- def fit(self, order=(0,0,0), method="ls", rhoy0=None, rhoe0=None):
- '''
- Estimate lag coefficients of an ARIMA process.
-
- Parameters
- ----------
- order : sequence
- p,d,q where p is the number of AR lags, d is the number of
- differences to induce stationarity, and q is the number of
- MA lags to estimate.
- method : str {"ls", "ssm"}
- Method of estimation. LS is conditional least squares.
- SSM is state-space model and the Kalman filter is used to
- maximize the exact likelihood.
- rhoy0, rhoe0 : array_like (optional)
- starting values for estimation
-
- Returns
- -------
- rh, cov_x, infodict, mesg, ier : output of scipy.optimize.leastsq
- rh :
- estimate of lag parameters, concatenated [rhoy, rhoe]
- cov_x :
- unscaled (!) covariance matrix of coefficient estimates
- '''
- if not hasattr(order, '__iter__'):
- raise ValueError("order must be an iterable sequence. Got type \
-%s instead" % type(order))
-
- p,d,q = order
-
- if d > 0:
- raise ValueError("Differencing not implemented yet")
- # assume no constant, ie mu = 0
- # unless overwritten then use w_bar for mu
- Y = np.diff(endog, d, axis=0) #TODO: handle lags?
-
- x = self.endog.squeeze() # remove the squeeze might be needed later
- def errfn( rho):
- #rhoy, rhoe = rho
- rhoy = np.concatenate(([1], rho[:p]))
- rhoe = np.concatenate(([1], rho[p:]))
- etahatr = signal.lfilter(rhoy, rhoe, x)
- #print rho,np.sum(etahatr*etahatr)
- return etahatr
-
- if rhoy0 is None:
- rhoy0 = 0.5 * np.ones(p)
- if rhoe0 is None:
- rhoe0 = 0.5 * np.ones(q)
-
- method = method.lower()
-
- if method == "ls":
- rh, cov_x, infodict, mesg, ier = \
- optimize.leastsq(errfn, np.r_[rhoy0, rhoe0],ftol=1e-10,full_output=True)
-#TODO: integrate this into the MLE.fit framework?
- elif method == "ssm":
- pass
- else:
- # fmin_bfgs is slow or doesn't work yet
- errfnsum = lambda rho : np.sum(errfn(rho)**2)
- #xopt, {fopt, gopt, Hopt, func_calls, grad_calls
- rh,fopt, gopt, cov_x, _,_, ier = \
- optimize.fmin_bfgs(errfnsum, np.r_[rhoy0, rhoe0], maxiter=2, full_output=True)
- infodict, mesg = None, None
- self.rh = rh
- self.rhoy = np.concatenate(([1], rh[:p]))
- self.rhoe = np.concatenate(([1], rh[p:])) #rh[-q:])) doesnt work for q=0
- self.error_estimate = errfn(rh)
- return rh, cov_x, infodict, mesg, ier
-
- def errfn(self, rho=None, p=None, x=None):
- ''' duplicate -> remove one
- '''
- #rhoy, rhoe = rho
- if not rho is None:
- rhoy = np.concatenate(([1], rho[:p]))
- rhoe = np.concatenate(([1], rho[p:]))
- else:
- rhoy = self.rhoy
- rhoe = self.rhoe
- etahatr = signal.lfilter(rhoy, rhoe, x)
- #print rho,np.sum(etahatr*etahatr)
- return etahatr
-
- def predicted(self, rhoy=None, rhoe=None):
- '''past predicted values of time series
- just added, not checked yet
- '''
- if rhoy is None:
- rhoy = self.rhoy
- if rhoe is None:
- rhoe = self.rhoe
- return self.x + self.error_estimate
-
- def forecast(self, ar=None, ma=None, nperiod=10):
- eta = np.r_[self.error_estimate, np.zeros(nperiod)]
- if ar is None:
- ar = self.rhoy
- if ma is None:
- ma = self.rhoe
- return signal.lfilter(ma, ar, eta)
-
-#TODO: is this needed as a method at all?
- @classmethod
- def generate_sample(cls, ar, ma, nsample, std=1):
- eta = std * np.random.randn(nsample)
- return signal.lfilter(ma, ar, eta)
-
-
-
-def arma_generate_sample(ar, ma, nsample, sigma=1, distrvs=np.random.randn, burnin=0):
- '''generate an random sample of an ARMA process
-
- Parameters
- ----------
- ar : array_like, 1d
- coefficient for autoregressive lag polynomial, including zero lag
- ma : array_like, 1d
- coefficient for moving-average lag polynomial, including zero lag
- nsample : int
- length of simulated time series
- sigma : float
- standard deviation of noise
- distrvs : function, random number generator
- function that generates the random numbers, and takes sample size
- as argument
- default: np.random.randn
- TODO: change to size argument
- burnin : integer (default: 0)
- to reduce the effect of initial conditions, burnin observations at the
- beginning of the sample are dropped
-
-
- Returns
- -------
- acovf : array
- autocovariance of ARMA process given by ar, ma
-
-
- '''
- #TODO: unify with ArmaProcess method
- eta = sigma * distrvs(nsample+burnin)
- return signal.lfilter(ma, ar, eta)[burnin:]
-
-def arma_acovf(ar, ma, nobs=10):
- '''theoretical autocovariance function of ARMA process
-
- Parameters
- ----------
- ar : array_like, 1d
- coefficient for autoregressive lag polynomial, including zero lag
- ma : array_like, 1d
- coefficient for moving-average lag polynomial, including zero lag
-
- Returns
- -------
- acovf : array
- autocovariance of ARMA process given by ar, ma
-
- See Also
- --------
- arma_acf
- acovf
-
-
- Notes
- -----
- Tries to do some crude numerical speed improvements for cases
- with high persistance. However, this algorithm is slow if the process is
- highly persistent and only a few autocovariances are desired.
- '''
- #increase length of impulse response for AR closer to 1
- #maybe cheap/fast enough to always keep nobs for ir large
- if np.abs(np.sum(ar)-1) > 0.9:
- nobs_ir = max(1000, 2* nobs) #no idea right now how large it is needed
- else:
- nobs_ir = max(100, 2* nobs) #no idea right now
- ir = arma_impulse_response(ar, ma, nobs=nobs_ir)
- #better save than sorry (?), I have no idea about the required precision
- #only checked for AR(1)
- while ir[-1] > 5*1e-5:
- nobs_ir *= 10
- ir = arma_impulse_response(ar, ma, nobs=nobs_ir)
- #again no idea where the speed break points are:
- if nobs_ir > 50000 and nobs < 1001:
- acovf = np.array([np.dot(ir[:nobs-t], ir[t:nobs]) for t in range(nobs)])
- else:
- acovf = np.correlate(ir,ir,'full')[len(ir)-1:]
- return acovf[:nobs]
-
-def arma_acf(ar, ma, nobs=10):
- '''theoretical autocovariance function of ARMA process
-
- Parameters
- ----------
- ar : array_like, 1d
- coefficient for autoregressive lag polynomial, including zero lag
- ma : array_like, 1d
- coefficient for moving-average lag polynomial, including zero lag
-
- Returns
- -------
- acovf : array
- autocovariance of ARMA process given by ar, ma
-
-
- See Also
- --------
- arma_acovf
- acf
- acovf
-
- '''
- acovf = arma_acovf(ar, ma, nobs)
- return acovf/acovf[0]
-
-def arma_pacf(ar, ma, nobs=10):
- '''partial autocorrelation function of an ARMA process
-
- Notes
- -----
- solves yule-walker equation for each lag order up to nobs lags
-
- not tested/checked yet
- '''
- apacf = np.zeros(nobs)
- acov = arma_acf(ar,ma, nobs=nobs+1)
-
- apacf[0] = 1.
- for k in range(2,nobs+1):
- r = acov[:k];
- apacf[k-1] = linalg.solve(linalg.toeplitz(r[:-1]), r[1:])[-1]
- return apacf
-
-def arma_periodogram(ar, ma, worN=None, whole=0):
- '''periodogram for ARMA process given by lag-polynomials ar and ma
-
- Parameters
- ----------
- ar : array_like
- autoregressive lag-polynomial with leading 1 and lhs sign
- ma : array_like
- moving average lag-polynomial with leading 1
- worN : {None, int}, optional
- option for scipy.signal.freqz (read "w or N")
- If None, then compute at 512 frequencies around the unit circle.
- If a single integer, the compute at that many frequencies.
- Otherwise, compute the response at frequencies given in worN
- whole : {0,1}, optional
- options for scipy.signal.freqz
- Normally, frequencies are computed from 0 to pi (upper-half of
- unit-circle. If whole is non-zero compute frequencies from 0 to 2*pi.
-
- Returns
- -------
- w : array
- frequencies
- sd : array
- periodogram, spectral density
-
- Notes
- -----
- Normalization ?
-
- This uses signal.freqz, which does not use fft. There is a fft version
- somewhere.
-
- '''
- w, h = signal.freqz(ma, ar, worN=worN, whole=whole)
- sd = np.abs(h)**2/np.sqrt(2*np.pi)
- if np.sum(np.isnan(h)) > 0:
- # this happens with unit root or seasonal unit root'
- print 'Warning: nan in frequency response h, maybe a unit root'
- return w, sd
-
-
-def arma_impulse_response(ar, ma, nobs=100):
- '''get the impulse response function (MA representation) for ARMA process
-
- Parameters
- ----------
- ma : array_like, 1d
- moving average lag polynomial
- ar : array_like, 1d
- auto regressive lag polynomial
- nobs : int
- number of observations to calculate
-
- Returns
- -------
- ir : array, 1d
- impulse response function with nobs elements
-
- Notes
- -----
- This is the same as finding the MA representation of an ARMA(p,q).
- By reversing the role of ar and ma in the function arguments, the
- returned result is the AR representation of an ARMA(p,q), i.e
-
- ma_representation = arma_impulse_response(ar, ma, nobs=100)
- ar_representation = arma_impulse_response(ma, ar, nobs=100)
-
- fully tested against matlab
-
- Examples
- --------
- AR(1)
-
- >>> arma_impulse_response([1.0, -0.8], [1.], nobs=10)
- array([ 1. , 0.8 , 0.64 , 0.512 , 0.4096 ,
- 0.32768 , 0.262144 , 0.2097152 , 0.16777216, 0.13421773])
-
- this is the same as
-
- >>> 0.8**np.arange(10)
- array([ 1. , 0.8 , 0.64 , 0.512 , 0.4096 ,
- 0.32768 , 0.262144 , 0.2097152 , 0.16777216, 0.13421773])
-
- MA(2)
-
- >>> arma_impulse_response([1.0], [1., 0.5, 0.2], nobs=10)
- array([ 1. , 0.5, 0.2, 0. , 0. , 0. , 0. , 0. , 0. , 0. ])
-
- ARMA(1,2)
-
- >>> arma_impulse_response([1.0, -0.8], [1., 0.5, 0.2], nobs=10)
- array([ 1. , 1.3 , 1.24 , 0.992 , 0.7936 ,
- 0.63488 , 0.507904 , 0.4063232 , 0.32505856, 0.26004685])
- '''
- impulse = np.zeros(nobs)
- impulse[0] = 1.
- return signal.lfilter(ma, ar, impulse)
-
-#alias, easier to remember
-arma2ma = arma_impulse_response
-
-#alias, easier to remember
-def arma2ar(ar, ma, nobs=100):
- '''get the AR representation of an ARMA process
-
- Parameters
- ----------
- ar : array_like, 1d
- auto regressive lag polynomial
- ma : array_like, 1d
- moving average lag polynomial
- nobs : int
- number of observations to calculate
-
- Returns
- -------
- ar : array, 1d
- coefficients of AR lag polynomial with nobs elements
- `
-
- Notes
- -----
- This is just an alias for
-
- ``ar_representation = arma_impulse_response(ma, ar, nobs=100)``
-
- fully tested against matlab
-
- Examples
- --------
-
- '''
- return arma_impulse_response(ma, ar, nobs=100)
-
-
-#moved from sandbox.tsa.try_fi
-def ar2arma(ar_des, p, q, n=20, mse='ar', start=None):
- '''find arma approximation to ar process
-
- This finds the ARMA(p,q) coefficients that minimize the integrated
- squared difference between the impulse_response functions
- (MA representation) of the AR and the ARMA process. This does
- currently not check whether the MA lagpolynomial of the ARMA
- process is invertible, neither does it check the roots of the AR
- lagpolynomial.
-
- Parameters
- ----------
- ar_des : array_like
- coefficients of original AR lag polynomial, including lag zero
- p, q : int
- length of desired ARMA lag polynomials
- n : int
- number of terms of the impuls_response function to include in the
- objective function for the approximation
- mse : string, 'ar'
- not used yet,
-
- Returns
- -------
- ar_app, ma_app : arrays
- coefficients of the AR and MA lag polynomials of the approximation
- res : tuple
- result of optimize.leastsq
-
- Notes
- -----
- Extension is possible if we want to match autocovariance instead
- of impulse response function.
-
- TODO: convert MA lag polynomial, ma_app, to be invertible, by mirroring
- roots outside the unit intervall to ones that are inside. How do we do
- this?
-
- '''
- #p,q = pq
- def msear_err(arma, ar_des):
- ar, ma = np.r_[1, arma[:p-1]], np.r_[1, arma[p-1:]]
- ar_approx = arma_impulse_response(ma, ar, n)
-## print ar,ma
-## print ar_des.shape, ar_approx.shape
-## print ar_des
-## print ar_approx
- return (ar_des - ar_approx) #((ar - ar_approx)**2).sum()
- if start is None:
- arma0 = np.r_[-0.9* np.ones(p-1), np.zeros(q-1)]
- else:
- arma0 = start
- res = optimize.leastsq(msear_err, arma0, ar_des, maxfev=5000)#, full_output=True)
- #print res
- arma_app = np.atleast_1d(res[0])
- ar_app = np.r_[1, arma_app[:p-1]],
- ma_app = np.r_[1, arma_app[p-1:]]
- return ar_app, ma_app, res
-
-
-
-def lpol2index(ar):
- '''remove zeros from lagpolynomial, squeezed representation with index
-
- Parameters
- ----------
- ar : array_like
- coefficients of lag polynomial
-
- Returns
- -------
- coeffs : array
- non-zero coefficients of lag polynomial
- index : array
- index (lags) of lagpolynomial with non-zero elements
- '''
- ar = np.asarray(ar)
- index = np.nonzero(ar)[0]
- coeffs = ar[index]
- return coeffs, index
-
-def index2lpol(coeffs, index):
- '''expand coefficients to lag poly
-
- Parameters
- ----------
- coeffs : array
- non-zero coefficients of lag polynomial
- index : array
- index (lags) of lagpolynomial with non-zero elements
- ar : array_like
- coefficients of lag polynomial
-
- Returns
- -------
- ar : array_like
- coefficients of lag polynomial
-
- '''
- n = max(index)
- ar = np.zeros(n)
- ar[index] = coeffs
- return ar
-
-#moved from sandbox.tsa.try_fi
-def lpol_fima(d, n=20):
- '''MA representation of fractional integration
-
- .. math:: (1-L)^{-d} for |d|<0.5 or |d|<1 (?)
-
- Parameters
- ----------
- d : float
- fractional power
- n : int
- number of terms to calculate, including lag zero
-
- Returns
- -------
- ma : array
- coefficients of lag polynomial
-
- '''
- #hide import inside function until we use this heavily
- from scipy.special import gamma, gammaln
- j = np.arange(n)
- return np.exp(gammaln(d+j) - gammaln(j+1) - gammaln(d))
-
-#moved from sandbox.tsa.try_fi
-def lpol_fiar(d, n=20):
- '''AR representation of fractional integration
-
- .. math:: (1-L)^{d} for |d|<0.5 or |d|<1 (?)
-
- Parameters
- ----------
- d : float
- fractional power
- n : int
- number of terms to calculate, including lag zero
-
- Returns
- -------
- ar : array
- coefficients of lag polynomial
-
- Notes:
- first coefficient is 1, negative signs except for first term,
- ar(L)*x_t
- '''
- #hide import inside function until we use this heavily
- from scipy.special import gamma, gammaln
- j = np.arange(n)
- ar = - np.exp(gammaln(-d+j) - gammaln(j+1) - gammaln(-d))
- ar[0] = 1
- return ar
-
-#moved from sandbox.tsa.try_fi
-def lpol_sdiff(s):
- '''return coefficients for seasonal difference (1-L^s)
-
- just a trivial convenience function
-
- Parameters
- ----------
- s : int
- number of periods in season
-
- Returns
- -------
- sdiff : list, length s+1
-
- '''
- return [1] + [0]*(s-1) + [-1]
-
-
-
-def deconvolve(num, den, n=None):
- """Deconvolves divisor out of signal, division of polynomials for n terms
-
- calculates den^{-1} * num
-
- Parameters
- ----------
- num : array_like
- signal or lag polynomial
- denom : array_like
- coefficients of lag polynomial (linear filter)
- n : None or int
- number of terms of quotient
-
- Returns
- -------
- quot : array
- quotient or filtered series
- rem : array
- remainder
-
- Notes
- -----
- If num is a time series, then this applies the linear filter den^{-1}.
- If both num and den are both lagpolynomials, then this calculates the
- quotient polynomial for n terms and also returns the remainder.
-
- This is copied from scipy.signal.signaltools and added n as optional
- parameter.
-
- """
- num = np.atleast_1d(num)
- den = np.atleast_1d(den)
- N = len(num)
- D = len(den)
- if D > N and n is None:
- quot = [];
- rem = num;
- else:
- if n is None:
- n = N-D+1
- input = np.zeros(n, float)
- input[0] = 1
- quot = signal.lfilter(num, den, input)
- num_approx = signal.convolve(den, quot, mode='full')
- if len(num) < len(num_approx): # 1d only ?
- num = np.concatenate((num, np.zeros(len(num_approx)-len(num))))
- rem = num - num_approx
- return quot, rem
-
-
-class ArmaProcess(object):
- '''represents an ARMA process for given lag-polynomials
-
- This is a class to bring together properties of the process.
- It does not do any estimation or statistical analysis.
-
- maybe needs special handling for unit roots
-
- '''
- def __init__(self, ar, ma, nobs=None):
- self.ar = np.asarray(ar)
- self.ma = np.asarray(ma)
- self.arcoefs = -self.ar[1:]
- self.macoefs = self.ma[1:]
- self.arpoly = np.polynomial.Polynomial(self.ar)
- self.mapoly = np.polynomial.Polynomial(self.ma)
- self.nobs = nobs
-
- @classmethod
- def from_coeffs(cls, arcoefs, macoefs, nobs=None):
- '''create ArmaProcess instance from coefficients of the lag-polynomials
- '''
- return cls(np.r_[1, -arcoefs], np.r_[1, macoefs], nobs=nobs)
-
- @classmethod
- def from_estimation(cls, model_results, nobs=None):
- '''create ArmaProcess instance from estimation results
- '''
- arcoefs = model_results.params[:model_results.nar]
- macoefs = model_results.params[model_results.nar:
- model_results.nar+model_results.nma]
- return cls(np.r_[1, -arcoefs], np.r_[1, macoefs], nobs=nobs)
-
- def __mul__(self, oth):
- if isinstance(oth, self.__class__):
- ar = (self.arpoly * oth.arpoly).coef
- ma = (self.mapoly * oth.mapoly).coef
- else:
- try:
- aroth, maoth = oth
- arpolyoth = np.polynomial.Polynomial(aroth)
- mapolyoth = np.polynomial.Polynomial(maoth)
- ar = (self.arpoly * arpolyoth).coef
- ma = (self.mapoly * mapolyoth).coef
- except:
- print('other is not a valid type')
- raise
- return self.__class__(ar, ma, nobs=self.nobs)
-
- def __repr__(self):
- return 'ArmaProcess(%r, %r, nobs=%d)' % (self.ar.tolist(), self.ma.tolist(),
- self.nobs)
- def __str__(self):
- return 'ArmaProcess\nAR: %r\nMA: %r' % (self.ar.tolist(), self.ma.tolist())
-
-
- def acovf(self, nobs=None):
- nobs = nobs or self.nobs
- return arma_acovf(self.ar, self.ma, nobs=nobs)
-
- acovf.__doc__ = arma_acovf.__doc__
-
- def acf(self, nobs=None):
- nobs = nobs or self.nobs
- return arma_acf(self.ar, self.ma, nobs=nobs)
-
- acf.__doc__ = arma_acf.__doc__
-
- def pacf(self, nobs=None):
- nobs = nobs or self.nobs
- return arma_pacf(self.ar, self.ma, nobs=nobs)
-
- pacf.__doc__ = arma_pacf.__doc__
-
- def periodogram(self, nobs=None):
- nobs = nobs or self.nobs
- return arma_periodogram(self.ar, self.ma, worN=nobs)
-
- periodogram.__doc__ = arma_periodogram.__doc__
-
- def impulse_response(self, nobs=None):
- nobs = nobs or self.nobs
- return arma_impulse_response(self.ar, self.ma, worN=nobs)
-
- impulse_response.__doc__ = arma_impulse_response.__doc__
-
- def arma2ma(self, nobs=None):
- nobs = nobs or self.nobs
- return arma2ma(self.ar, self.ma, nobs=nobs)
-
- arma2ma.__doc__ = arma2ma.__doc__
-
- def arma2ar(self, nobs=None):
- nobs = nobs or self.nobs
- return arma2ar(self.ar, self.ma, nobs=nobs)
-
- arma2ar.__doc__ = arma2ar.__doc__
-
- def ar_roots(self):
- '''roots of autoregressive lag-polynomial
- '''
- return self.arpoly.roots()
-
- def ma_roots(self):
- '''roots of moving average lag-polynomial
- '''
- return self.mapoly.roots()
-
- def isstationary(self):
- '''Arma process is stationary if AR roots are outside unit circle
-
- Returns
- -------
- isstationary : boolean
- True if autoregressive roots are outside unit circle
-
- '''
- if np.all(np.abs(self.ar_roots())) > 1:
- return True
- else:
- return False
-
- def isinvertible(self):
- '''Arma process is invertible if MA roots are outside unit circle
-
- Returns
- -------
- isinvertible : boolean
- True if moving average roots are outside unit circle
-
- '''
- if np.all(np.abs(self.ma_roots())) > 1:
- return True
- else:
- return False
-
- def invertroots(self, retnew=False):
- '''make MA polynomial invertible by inverting roots inside unit circle
-
- Parameters
- ----------
- retnew : boolean
- If False (default), then return the lag-polynomial as array.
- If True, then return a new instance with invertible MA-polynomial
-
- Returns
- -------
- manew : array
- new invertible MA lag-polynomial, returned if retnew is false.
- wasinvertible : boolean
- True if the MA lag-polynomial was already invertible, returned if
- retnew is false.
-
- armaprocess : new instance of class
- If retnew is true, then return a new instance with invertible
- MA-polynomial
-
-
- '''
- pr = self.ma_roots()
- insideroots = np.abs(pr)<1
- if insideroots.any():
- pr[np.abs(pr)<1] = 1./pr[np.abs(pr)<1]
- pnew = poly.Polynomial.fromroots(pr)
- mainv = pn.coef/pnew.coef[0]
- wasinvertible = False
- else:
- mainv = self.ma
- wasinvertible = True
- if retnew:
- return self.__class__(self.ar, mainv, nobs=self.nobs)
- else:
- return mainv, wasinvertible
-
- def generate_sample(self, size=100, scale=1, distrvs=None, axis=0, burnin=0):
- '''generate ARMA samples
-
- Parameters
- ----------
- size : int or tuple of ints
- If size is an integer, then this creates a 1d timeseries of length size.
- If size is a tuple, then the timeseries is along axis. All other axis
- have independent arma samples.
-
- Returns
- -------
- rvs : ndarray
- random sample(s) of arma process
-
- Notes
- -----
- Should work for n-dimensional with time series along axis, but not tested
- yet. Processes are sampled independently.
-
- '''
- if distrvs is None:
- distrvs = np.random.normal
- if np.ndim(size) == 0:
- size = [size]
- if burnin:
- #handle burin time for nd arrays
- #maybe there is a better trick in scipy.fft code
- newsize = list(size)
- newsize[axis] += burnin
- newsize = tuple(newsize)
- fslice = [slice(None)]*len(newsize)
- fslice[axis] = slice(burnin, None, None)
- fslice = tuple(fslice)
- else:
- newsize = tuple(size)
- fslice = tuple([slice(None)]*np.ndim(newsize))
-
- eta = scale * distrvs(size=newsize)
- return signal.lfilter(self.ma, self.ar, eta, axis=axis)[fslice]
-
-
-
-
-
-
-
-__all__ = ['arma_acf', 'arma_acovf', 'arma_generate_sample',
- 'arma_impulse_response', 'arma2ar', 'arma2ma', 'deconvolve',
- 'lpol2index', 'index2lpol']
-
-
-if __name__ == '__main__':
-
-
- # Simulate AR(1)
- #--------------
- # ar * y = ma * eta
- ar = [1, -0.8]
- ma = [1.0]
-
- # generate AR data
- eta = 0.1 * np.random.randn(1000)
- yar1 = signal.lfilter(ar, ma, eta)
-
- print "\nExample 0"
- arest = ARIMA(yar1)
- rhohat, cov_x, infodict, mesg, ier = arest.fit((1,0,1))
- print rhohat
- print cov_x
-
- print "\nExample 1"
- ar = [1.0, -0.8]
- ma = [1.0, 0.5]
- y1 = arest.generate_sample(ar,ma,1000,0.1)
- arest = ARIMA(y1)
- rhohat1, cov_x1, infodict, mesg, ier = arest.fit((1,0,1))
- print rhohat1
- print cov_x1
- err1 = arest.errfn(x=y1)
- print np.var(err1)
- import scikits.statsmodels.api as sm
- print sm.regression.yule_walker(y1, order=2, inv=True)
-
- print "\nExample 2"
- nsample = 1000
- ar = [1.0, -0.6, -0.1]
- ma = [1.0, 0.3, 0.2]
- y2 = ARIMA.generate_sample(ar,ma,nsample,0.1)
- arest2 = ARIMA(y2)
- rhohat2, cov_x2, infodict, mesg, ier = arest2.fit((1,0,2))
- print rhohat2
- print cov_x2
- err2 = arest.errfn(x=y2)
- print np.var(err2)
- print arest2.rhoy
- print arest2.rhoe
- print "true"
- print ar
- print ma
- rhohat2a, cov_x2a, infodict, mesg, ier = arest2.fit((2,0,2))
- print rhohat2a
- print cov_x2a
- err2a = arest.errfn(x=y2)
- print np.var(err2a)
- print arest2.rhoy
- print arest2.rhoe
- print "true"
- print ar
- print ma
-
- print sm.regression.yule_walker(y2, order=2, inv=True)
-
- print "\nExample 20"
- nsample = 1000
- ar = [1.0]#, -0.8, -0.4]
- ma = [1.0, 0.5, 0.2]
- y3 = ARIMA.generate_sample(ar,ma,nsample,0.01)
- arest20 = ARIMA(y3)
- rhohat3, cov_x3, infodict, mesg, ier = arest20.fit((2,0,0))
- print rhohat3
- print cov_x3
- err3 = arest20.errfn(x=y3)
- print np.var(err3)
- print np.sqrt(np.dot(err3,err3)/nsample)
- print arest20.rhoy
- print arest20.rhoe
- print "true"
- print ar
- print ma
-
- rhohat3a, cov_x3a, infodict, mesg, ier = arest20.fit((0,0,2))
- print rhohat3a
- print cov_x3a
- err3a = arest20.errfn(x=y3)
- print np.var(err3a)
- print np.sqrt(np.dot(err3a,err3a)/nsample)
- print arest20.rhoy
- print arest20.rhoe
- print "true"
- print ar
- print ma
-
- print sm.regression.yule_walker(y3, order=2, inv=True)
-
- print "\nExample 02"
- nsample = 1000
- ar = [1.0, -0.8, 0.4] #-0.8, -0.4]
- ma = [1.0]#, 0.8, 0.4]
- y4 = ARIMA.generate_sample(ar,ma,nsample)
- arest02 = ARIMA(y4)
- rhohat4, cov_x4, infodict, mesg, ier = arest02.fit((2,0,0))
- print rhohat4
- print cov_x4
- err4 = arest02.errfn(x=y4)
- print np.var(err4)
- sige = np.sqrt(np.dot(err4,err4)/nsample)
- print sige
- print sige * np.sqrt(np.diag(cov_x4))
- print np.sqrt(np.diag(cov_x4))
- print arest02.rhoy
- print arest02.rhoe
- print "true"
- print ar
- print ma
-
- rhohat4a, cov_x4a, infodict, mesg, ier = arest02.fit((0,0,2))
- print rhohat4a
- print cov_x4a
- err4a = arest02.errfn(x=y4)
- print np.var(err4a)
- sige = np.sqrt(np.dot(err4a,err4a)/nsample)
- print sige
- print sige * np.sqrt(np.diag(cov_x4a))
- print np.sqrt(np.diag(cov_x4a))
- print arest02.rhoy
- print arest02.rhoe
- print "true"
- print ar
- print ma
- import scikits.statsmodels.api as sm
- print sm.regression.yule_walker(y4, order=2, method='mle', inv=True)
-
-
- import matplotlib.pyplot as plt
- plt.plot(arest2.forecast()[-100:])
- #plt.show()
-
- ar1, ar2 = ([1, -0.4], [1, 0.5])
- ar2 = [1, -1]
- lagpolyproduct = np.convolve(ar1, ar2)
- print deconvolve(lagpolyproduct, ar2, n=None)
- print signal.deconvolve(lagpolyproduct, ar2)
- print deconvolve(lagpolyproduct, ar2, n=10)
-
diff --git a/statsmodels/scikits/statsmodels/tsa/arma_mle.py b/statsmodels/scikits/statsmodels/tsa/arma_mle.py
deleted file mode 100644
index b0306de..0000000
--- a/statsmodels/scikits/statsmodels/tsa/arma_mle.py
+++ /dev/null
@@ -1,376 +0,0 @@
-"""
-Created on Sun Oct 10 14:57:50 2010
-
-Author: josef-pktd, Skipper Seabold
-License: BSD
-
-TODO: check everywhere initialization of signal.lfilter
-
-"""
-
-import numpy as np
-from scipy import signal, optimize
-from scikits.statsmodels.base.model import (LikelihoodModel,
- GenericLikelihoodModel)
-
-
-#copied from sandbox/regression/mle.py
-#rename until merge of classes is complete
-class Arma(GenericLikelihoodModel): #switch to generic mle
- """
- univariate Autoregressive Moving Average model, conditional on initial values
-
- The ARMA model is estimated either with conditional Least Squares or with
- conditional Maximum Likelihood. The implementation is
- using scipy.filter.lfilter which makes it faster than the Kalman Filter
- Implementation. The Kalman Filter Implementation however uses the exact
- Maximum Likelihood and will be more accurate, statistically more efficent
- in small samples.
-
- In large samples conditional LS, conditional MLE and exact MLE should be very
- close to each other, they are equivalent asymptotically.
-
- Notes
- -----
- this can subclass TSMLEModel
-
- TODO:
-
- - CondLS return raw estimation results
- - needs checking that there is no wrong state retained, when running fit
- several times with different options
- - still needs consistent order options.
- - Currently assumes that the mean is zero, no mean or effect of exogenous
- variables are included in the estimation.
-
- """
-
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(Arma, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
-
-
- def initialize(self):
- pass
-
- def geterrors(self, params):
- #copied from sandbox.tsa.arima.ARIMA
- p, q = self.nar, self.nma
- ar = np.concatenate(([1], -params[:p]))
- ma = np.concatenate(([1], params[p:p+q]))
-
- #lfilter_zi requires same length for ar and ma
- maxlag = 1+max(p,q)
- armax = np.zeros(maxlag)
- armax[:p+1] = ar
- mamax = np.zeros(maxlag)
- mamax[:q+1] = ma
- #remove zi again to match better with Skipper's version
- #zi = signal.lfilter_zi(armax, mamax)
- #errorsest = signal.lfilter(rhoy, rhoe, self.endog, zi=zi)[0] #zi is also returned
- errorsest = signal.lfilter(ar, ma, self.endog)
- return errorsest
-
- def loglike(self, params):
- """
- Loglikelihood for arma model
-
- Notes
- -----
- The ancillary parameter is assumed to be the last element of
- the params vector
- """
-
-# #copied from sandbox.tsa.arima.ARIMA
-# p = self.nar
-# rhoy = np.concatenate(([1], params[:p]))
-# rhoe = np.concatenate(([1], params[p:-1]))
-# errorsest = signal.lfilter(rhoy, rhoe, self.endog)
- errorsest = self.geterrors(params)
- sigma2 = np.maximum(params[-1]**2, 1e-6)
- axis = 0
- nobs = len(errorsest)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
-# llike = -0.5 * (np.sum(np.log(sigma2),axis)
-# + np.sum((errorsest**2)/sigma2, axis)
-# + nobs*np.log(2*np.pi))
- llike = -0.5 * (nobs*np.log(sigma2)
- + np.sum((errorsest**2)/sigma2, axis)
- + nobs*np.log(2*np.pi))
- return llike
-
- #add for Jacobian calculation bsejac in GenericMLE, copied from loglike
- def nloglikeobs(self, params):
- """
- Loglikelihood for arma model
-
- Notes
- -----
- The ancillary parameter is assumed to be the last element of
- the params vector
- """
-
-# #copied from sandbox.tsa.arima.ARIMA
-# p = self.nar
-# rhoy = np.concatenate(([1], params[:p]))
-# rhoe = np.concatenate(([1], params[p:-1]))
-# errorsest = signal.lfilter(rhoy, rhoe, self.endog)
- errorsest = self.geterrors(params)
- sigma2 = np.maximum(params[-1]**2, 1e-6)
- axis = 0
- nobs = len(errorsest)
- #this doesn't help for exploding paths
- #errorsest[np.isnan(errorsest)] = 100
-# llike = -0.5 * (np.sum(np.log(sigma2),axis)
-# + np.sum((errorsest**2)/sigma2, axis)
-# + nobs*np.log(2*np.pi))
- llike = 0.5 * (np.log(sigma2)
- + (errorsest**2)/sigma2
- + np.log(2*np.pi))
- return llike
-
-#use generic instead
-# def score(self, params):
-# """
-# Score vector for Arma model
-# """
-# #return None
-# #print params
-# jac = ndt.Jacobian(self.loglike, stepMax=1e-4)
-# return jac(params)[-1]
-
-
-#use generic instead
-# def hessian(self, params):
-# """
-# Hessian of arma model. Currently uses numdifftools
-# """
-# #return None
-# Hfun = ndt.Jacobian(self.score, stepMax=1e-4)
-# return Hfun(params)[-1]
-
- #copied from arima.ARIMA, needs splitting out of method specific code
- def fit(self, order=(0,0), start_params=None, method="ls", **optkwds):
- '''
- Estimate lag coefficients of an ARIMA process.
-
- Parameters
- ----------
- order : sequence
- p,d,q where p is the number of AR lags, d is the number of
- differences to induce stationarity, and q is the number of
- MA lags to estimate.
- method : str {"ls", "ssm"}
- Method of estimation. LS is conditional least squares.
- SSM is state-space model and the Kalman filter is used to
- maximize the exact likelihood.
- rhoy0, rhoe0 : array_like (optional)
- starting values for estimation
-
- Returns
- -------
- (rh, cov_x, infodict, mesg, ier) : output of scipy.optimize.leastsq
-
- rh :
- estimate of lag parameters, concatenated [rhoy, rhoe]
- cov_x :
- unscaled (!) covariance matrix of coefficient estimates
- '''
- if not hasattr(order, '__iter__'):
- raise ValueError("order must be an iterable sequence. Got type \
-%s instead" % type(order))
-
- p,q = order
- self.nar = p # needed for geterrors, needs cleanup
- self.nma = q
-
-## if d > 0:
-## raise ValueError("Differencing not implemented yet")
-## # assume no constant, ie mu = 0
-## # unless overwritten then use w_bar for mu
-## Y = np.diff(endog, d, axis=0) #TODO: handle lags?
-
- x = self.endog.squeeze() # remove the squeeze might be needed later
-# def errfn( rho):
-# #rhoy, rhoe = rho
-# rhoy = np.concatenate(([1], rho[:p]))
-# rhoe = np.concatenate(([1], rho[p:]))
-# etahatr = signal.lfilter(rhoy, rhoe, x)
-# #print rho,np.sum(etahatr*etahatr)
-# return etahatr
-
- #replace with start_params
- if start_params is None:
- arcoefs0 = 0.5 * np.ones(p)
- macoefs0 = 0.5 * np.ones(q)
- start_params = np.r_[arcoefs0, macoefs0]
-
- method = method.lower()
-
- if method == "ls":
- #update
- optim_kwds = dict(ftol=1e-10, full_output=True)
- optim_kwds.update(optkwds)
- #changes: use self.geterrors (nobs,):
-# rh, cov_x, infodict, mesg, ier = \
-# optimize.leastsq(errfn, np.r_[rhoy0, rhoe0],ftol=1e-10,full_output=True)
- rh, cov_x, infodict, mesg, ier = \
- optimize.leastsq(self.geterrors, start_params, **optim_kwds)
- #TODO: need missing parameter estimates for LS, scale, residual-sdt
- #TODO: integrate this into the MLE.fit framework?
- elif method == "ssm":
- pass
- else: #this is also conditional least squares
- # fmin_bfgs is slow or doesn't work yet
- errfnsum = lambda rho : np.sum(self.geterrors(rho)**2)
- #xopt, {fopt, gopt, Hopt, func_calls, grad_calls
- optim_kwds = dict(maxiter=2, full_output=True)
- optim_kwds.update(optkwds)
-
- rh, fopt, gopt, cov_x, _,_, ier = \
- optimize.fmin_bfgs(errfnsum, start_params, **optim_kwds)
- infodict, mesg = None, None
- self.params = rh
- self.ar_est = np.concatenate(([1], -rh[:p]))
- self.ma_est = np.concatenate(([1], rh[p:p+q]))
- #rh[-q:])) doesnt work for q=0, added p+q as endpoint for safety if var is included
- self.error_estimate = self.geterrors(rh)
- return rh, cov_x, infodict, mesg, ier
-
-
- #renamed and needs check with other fit
- def fit_mle(self, order=(0,0), start_params=None, method='nm', maxiter=5000, tol=1e-08,
- **kwds):
- '''Estimate an ARMA model with given order using Conditional Maximum Likelihood
-
- Parameters
- ----------
- order : tuple, 2 elements
- specifies the number of lags(nar, nma) to include, not including lag 0
- start_params : array_like, 1d, (nar+nma+1,)
- start parameters for the optimization, the length needs to be equal to the
- number of ar plus ma coefficients plus 1 for the residual variance
- method : str
- optimization method, as described in LikelihoodModel
- maxiter : int
- maximum number of iteration in the optimization
- tol : float
- tolerance (?) for the optimization
-
- Returns
- -------
- mlefit : instance of (GenericLikelihood ?)Result class
- contains estimation results and additional statistics
-
- '''
- nar, nma = p, q = order
- self.nar, self.nma = nar, nma
- if start_params is None:
- start_params = np.concatenate((0.05*np.ones(nar + nma), [1]))
- mlefit = super(Arma, self).fit(start_params=start_params,
- maxiter=maxiter, method=method, tol=tol, **kwds)
- #bug fix: running ls and then mle didn't overwrite this
- rh = mlefit.params
- self.params = rh
- self.ar_est = np.concatenate(([1], -rh[:p]))
- self.ma_est = np.concatenate(([1], rh[p:p+q]))
- self.error_estimate = self.geterrors(rh)
- return mlefit
-
- #copied from arima.ARIMA
- def predicted(self, ar=None, ma=None):
- '''past predicted values of time series
- just added, not checked yet
- '''
-
-# #ar, ma not used, not useful as arguments for predicted pattern
-# #need it for prediction for other time series, endog
-# if ar is None:
-# ar = self.ar_est
-# if ma is None:
-# ma = self.ma_est
- return self.endog - self.error_estimate
-
- #copied from arima.ARIMA
- def forecast(self, ar=None, ma=None, nperiod=10):
- '''nperiod ahead forecast at the end of the data period
-
- forecast is based on the error estimates
- '''
- eta = np.r_[self.error_estimate, np.zeros(nperiod)]
- if ar is None:
- ar = self.ar_est
- if ma is None:
- ma = self.ma_est
- return signal.lfilter(ma, ar, eta)
-
- def forecast2(self, step_ahead=1, start=None, end=None, endog=None):
- '''rolling h-period ahead forecast without reestimation, 1 period ahead only
-
- in construction: uses loop to go over data and
- not sure how to get (finite) forecast polynomial for h-step
-
- Notes
- -----
- just the idea:
- To improve performance with expanding arrays, specify total period by endog
- and the conditional forecast period by step_ahead
-
- This should be used by/with results which should contain predicted error or
- noise. Could be either a recursive loop or lfilter with a h-step ahead
- forecast filter, but then I need to calculate that one. ???
-
- further extension: allow reestimation option
-
- question: return h-step ahead or range(h)-step ahead ?
- '''
- if step_ahead != 1:
- raise NotImplementedError
-
- p,q = self.nar, self.nma
- k = 0
- errors = self.error_estimate
- y = self.endog
-
- #this is for 1step ahead only, still need h-step predictive polynomial
- arcoefs_rev = self.params[k:k+p][::-1]
- macoefs_rev = self.params[k+p:k+p+q][::-1]
-
-
- predicted = []
- # create error vector iteratively
- for i in range(start, end):
- predicted.append(sum(arcoefs_rev*y[i-p:i]) + sum(macoefs_rev * errors[i-p:i]))
-
- return np.asarray(predicted)
-
- def forecast3(self, step_ahead=1, start=None): #, end=None):
- '''another try for h-step ahead forecasting
- '''
-
- from arima_process import arma2ma, ArmaProcess
- p,q = self.nar, self.nma
- k=0
- ar = self.params[k:k+p]
- ma = self.params[k+p:k+p+q]
- marep = arma2ma(ar,ma, start)[step_ahead+1:] #truncated ma representation
- errors = self.error_estimate
- forecasts = np.convolve(errors, marep)
- return forecasts#[-(errors.shape[0] - start-5):] #get 5 overlapping for testing
-
-
-
-
- #copied from arima.ARIMA
- #TODO: is this needed as a method at all?
- #JP: not needed in this form, but can be replace with using the parameters
- @classmethod
- def generate_sample(cls, ar, ma, nsample, std=1):
- eta = std * np.random.randn(nsample)
- return signal.lfilter(ma, ar, eta)
-
diff --git a/statsmodels/scikits/statsmodels/tsa/base/__init__.py b/statsmodels/scikits/statsmodels/tsa/base/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tsa/base/datetools.py b/statsmodels/scikits/statsmodels/tsa/base/datetools.py
deleted file mode 100644
index 29d6782..0000000
--- a/statsmodels/scikits/statsmodels/tsa/base/datetools.py
+++ /dev/null
@@ -1,206 +0,0 @@
-import re
-import datetime
-from pandas import datetools as pandas_datetools
-import numpy as np
-
-#TODO: unify all the frequency information
-def _date_from_idx(d1, idx, freq):
- """
- Returns the date from an index beyond the end of a date series.
- d1 is the datetime of the last date in the series. idx is the
- index distance of how far the next date should be from d1. Ie., 1 gives
- the next date from d1 at freq.
- """
- from scikits.timeseries import Date
- tsd1 = Date(freq, datetime=d1)
- tsd2 = datetime.datetime.fromordinal((tsd1 + idx).toordinal())
- return tsd2
-
-
-def _idx_from_dates(d1, d2, freq):
- """
- Returns an index offset from datetimes d1 and d2. d1 is expected to be the
- last date in a date series and d2 is the out of sample date.
-
- Note that it rounds down the index if the date is before the next date at
- freq.
- """
- from scikits.timeseries import Date
- d1 = Date(freq, datetime=d1)
- d2 = Date(freq, datetime=d2)
- return d2 - d1
-
-_quarter_to_day = {
- "1" : (3, 31),
- "2" : (6, 30),
- "3" : (9, 30),
- "4" : (12, 31),
- "I" : (3, 31),
- "II" : (6, 30),
- "III" : (9, 30),
- "IV" : (12, 31)
- }
-
-_mdays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
-_months_with_days = zip(range(1,13), _mdays)
-_month_to_day = dict(zip(map(str,range(1,13)), _months_with_days))
-_month_to_day.update(dict(zip(["I", "II", "III", "IV", "V", "VI",
- "VII", "VIII", "IX", "X", "XI", "XII"],
- _months_with_days)))
-
-# regex patterns
-_y_pattern = '^\d?\d?\d?\d$'
-
-_q_pattern = '''
-^ # beginning of string
-\d?\d?\d?\d # match any number 1-9999, includes leading zeros
-
-(:?q) # use q or a : as a separator
-
-([1-4]|(I{1,3}V?)) # match 1-4 or I-IV roman numerals
-
-$ # end of string
-'''
-
-_m_pattern = '''
-^ # beginning of string
-\d?\d?\d?\d # match any number 1-9999, includes leading zeros
-
-(:?m) # use m or a : as a separator
-
-(([1-9][0-2]?)|(I?XI{0,2}|I?VI{0,3}|I{1,3})) # match 1-12 or
- # I-XII roman numerals
-
-$ # end of string
-'''
-
-#NOTE: see also ts.extras.isleapyear, which accepts a sequence
-def _is_leap(year):
- year = int(year)
- return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)
-
-def date_parser(timestr, parserinfo=None, **kwargs):
- """
- Uses dateutils.parser.parse, but also handles monthly dates of the form
- 1999m4, 1999:m4, 1999:mIV, 1999mIV and the same for quarterly data
- with q instead of m. It is not case sensitive. The default for annual
- data is the end of the year, which also differs from dateutils.
- """
- flags = re.IGNORECASE | re.VERBOSE
- if re.search(_q_pattern, timestr, flags):
- y,q = timestr.replace(":","").lower().split('q')
- month, day = _quarter_to_day[q.upper()]
- year = int(y)
- elif re.search(_m_pattern, timestr, flags):
- y,m = timestr.replace(":","").lower().split('m')
- month, day = _month_to_day[m.upper()]
- year = int(y)
- if _is_leap(y) and month == 2:
- day += 1
- elif re.search(_y_pattern, timestr, flags):
- month, day = 12, 31
- year = int(timestr)
- else:
- return pandas_datetools.parser.parse(timestr, parserinfo, **kwargs)
-
- return datetime.datetime(year, month, day)
-
-def date_range_str(start, end=None, length=None):
- """
- Returns a list of abbreviated date strings.
-
- Parameters
- ----------
- start : str
- The first abbreviated date, for instance, '1965q1' or '1965m1'
- end : str, optional
- The last abbreviated date if length is None.
- length : int, optional
- The length of the returned array of end is None.
-
- Returns
- -------
- date_range : list
- List of strings
- """
- flags = re.IGNORECASE | re.VERBOSE
- #_check_range_inputs(end, length, freq)
- start = start.lower()
- if re.search(_m_pattern, start, flags):
- annual_freq = 12
- split = 'm'
- elif re.search(_q_pattern, start, flags):
- annual_freq = 4
- split = 'q'
- elif re.search(_y_pattern, start, flags):
- annual_freq = 1
- start += 'a1' # hack
- if end:
- end += 'a1'
- split = 'a'
- else:
- raise ValueError("Date %s not understood" % start)
- yr1, offset1 = map(int, start.replace(":","").split(split))
- if end is not None:
- end = end.lower()
- yr2, offset2 = map(int, end.replace(":","").split(split))
- length = (yr2 - yr1) * annual_freq + offset2
- elif length:
- yr2 = yr1 + length // annual_freq
- offset2 = length % annual_freq
- years = np.repeat(range(yr1+1, yr2), annual_freq).tolist()
- years = np.r_[[str(yr1)]*(annual_freq+1-offset1), years] # tack on first year
- years = np.r_[years, [str(yr2)]*offset2] # tack on last year
- if split != 'a':
- offset = np.tile(np.arange(1, annual_freq+1), yr2-yr1-1)
- offset = np.r_[np.arange(offset1, annual_freq+1).astype('a2'), offset]
- offset = np.r_[offset, np.arange(1,offset2+1).astype('a2')]
- date_arr_range = [''.join([i,split,j]) for i,j in zip(years, offset)]
- else:
- date_arr_range = years.tolist()
- return date_arr_range
-
-def dates_from_str(dates):
- """
- Turns a sequence of date strings and returns a list of datetime.
-
- Parameters
- ----------
- dates : array-like
- A sequence of abbreviated dates as string. For instance,
- '1996m1' or '1996Q1'. The datetime dates are at the end of the
- period.
-
- Returns
- -------
- date_list : array
- A list of datetime types.
- """
- return map(date_parser, dates)
-
-def dates_from_range(start, end=None, length=None):
- """
- Turns a sequence of date strings and returns a list of datetime.
-
- Parameters
- ----------
- start : str
- The first abbreviated date, for instance, '1965q1' or '1965m1'
- end : str, optional
- The last abbreviated date if length is None.
- length : int, optional
- The length of the returned array of end is None.
-
- Example
- -------
- >>> import scikits.statsmodels.api as sm
- >>> dates = sm.tsa.datetools.date_range('1960m1', length=nobs)
-
-
- Returns
- -------
- date_list : array
- A list of datetime types.
- """
- dates = date_range_str(start, end, length)
- return dates_from_str(dates)
diff --git a/statsmodels/scikits/statsmodels/tsa/base/tsa_model.py b/statsmodels/scikits/statsmodels/tsa/base/tsa_model.py
deleted file mode 100644
index a9cce73..0000000
--- a/statsmodels/scikits/statsmodels/tsa/base/tsa_model.py
+++ /dev/null
@@ -1,230 +0,0 @@
-import scikits.statsmodels.base.model as base
-from scikits.statsmodels.base import data
-import scikits.statsmodels.base.wrapper as wrap
-from scikits.statsmodels.tsa.base import datetools
-from numpy import arange, asarray
-from pandas import Index
-import datetime
-
-_freqs = ['B','D','W','M','A', 'Q']
-
-_freq_to_pandas = {'B' : 'WEEKDAY',
- 'D' : None,
- 'W' : None,
- 'M' : None,
- 'A' : 'A@DEC',
- 'Q' : 'Q@MAR'}
-
-def _check_freq(freq):
- if freq and freq not in _freqs:
- raise ValueError("freq %s not understood" % freq)
- return freq
-
-#REPLACE frequencies with either timeseries or pandas conventions
-class TimeSeriesModel(base.LikelihoodModel):
- """
- Timeseries model base class
-
- Parameters
- ----------
- endog
- exog
- dates
- freq : str {'B','D','W','M','A', 'Q'}
- 'B' - business day, ie., Mon. - Fri.
- 'D' - daily
- 'W' - weekly
- 'M' - monthly
- 'A' - annual
- 'Q' - quarterly
-
- """
- def __init__(self, endog, exog=None, dates=None, freq=None):
- super(TimeSeriesModel, self).__init__(endog, exog)
- self._init_dates(dates, freq)
-
- def _init_dates(self, dates, freq):
- if dates is None:
- dates = self._data.row_labels
-
- if dates is not None:
- try:
- from scikits.timeseries import Date
- except ImportError:
- Date = None
- if not isinstance(dates[0], (datetime.datetime,Date)):
- raise ValueError("dates must be of type datetime or "
- "scikits.timeseries.Date")
- if not freq:
- #if isinstance(dates, DateRange):
- # freq = datetools.inferTimeRule(dates)
- #elif isinstance(dates, TimeSeries):
- # freq = dates.freqstr
- raise ValueError("Currently, you need to give freq if dates "
- "are used.")
- dates = Index(dates)
- self._data.dates = dates
- self._data.freq = _check_freq(freq) #TODO: drop if can get info from dates
- #TODO: still gonna need some more sophisticated handling here
-
-
- def _get_exog_names(self):
- return self._data.xnames
-
- def _set_exog_names(self, vals):
- if not isinstance(vals, list):
- vals = [vals]
- self._data.xnames = vals
-
- #overwrite with writable property for (V)AR models
- exog_names = property(_get_exog_names, _set_exog_names)
-
- def _str_to_date(self, date):
- """
- Takes a string and returns a datetime object
-
- Uses scikits.timeseries.parsers.DateTimeFromString
- """
- return datetools.date_parser(date)
-
- def _get_predict_start(self, start):
- """
- Returns the index of the given start date. Subclasses should define
- default behavior for start = None. That isn't handled here.
-
- Start can be a string, see scikits.timeseries.parser.DateTimeFromString
- or an integer if dates is None.
- """
- dates = self._data.dates
- if isinstance(start, str):
- if dates is None:
- raise ValueError("Got a string for start and dates is None")
- try:
- dtstart = self._str_to_date(start)
- self._data.predict_start = dtstart
- start = dates.indexMap[dtstart] # NOTE: are these consistent?
- except ImportError as err: # make sure timeseries isn't the prob
- #TODO: can remove eventually
- raise ImportError(err)
- except:
- raise ValueError("Start must be in dates. Got %s | %s" %
- (str(start), str(dtstart)))
-
- if isinstance(start, int) and dates is not None:
- if start >= len(dates):
- raise ValueError("Start must be <= len(endog)")
- self._data.predict_start = dates[start]
-
- if start >= len(self.endog):
- raise ValueError("Start must be <= len(endog)")
-
- return start
-
-
- def _get_predict_end(self, end):
- """
- See _get_predict_start for more information. Subclasses do not
- need to define anything for this.
- """
-
- out_of_sample = 0 # will be overwritten if needed
- if end is None:
- end = len(self.endog) - 1
-
- dates = self._data.dates
- if isinstance(end, str):
- if dates is None:
- raise ValueError("Got a string for end and dates is None")
- try:
- dtend = self._str_to_date(end)
- self._data.predict_end = dtend
- end = dates.indexMap[dtend]
- except ImportError as err: # make sure timeseries isn't the prob
- raise ImportError(err)
- except KeyError as err: # end is greater than dates[-1]...probably
- if dtend > self._data.dates[-1]:
- end = len(self.endog) - 1
- freq = self._data.freq
- out_of_sample = datetools._idx_from_dates(dates[-1], dtend,
- freq)
- else:
- raise err
- self._make_predict_dates() # attaches self._data.predict_dates
-
- elif isinstance(end, int) and dates is not None:
- try:
- self._data.predict_end = dates[end]
- except IndexError as err:
- nobs = len(self.endog) - 1 # as an index
- out_of_sample = end - nobs
- end = nobs
- freq = self._data.freq
- self._data.predict_end = datetools._date_from_idx(dates[-1],
- out_of_sample, freq)
- self._make_predict_dates()
-
- elif isinstance(end, int):
- nobs = len(self.endog) - 1 # is an index
- if end > nobs:
- out_of_sample = end - nobs
- end = nobs
-
- return end, out_of_sample
-
- def _make_predict_dates(self):
- try:
- from scikits.timeseries import date_array
- except ImportError:
- self._data.predict_dates = None
- data = self._data
- dtstart = data.predict_start
- dtend = data.predict_end
- freq = data.freq
- #pandas_freq = _freq_to_pandas[freq]
- dates = date_array(start_date=dtstart, end_date=dtend,
- freq=freq).toordinal().astype(int)
- self._data.predict_dates = asarray(
- [datetime.datetime.fromordinal(i) for i in dates])
- #pandas.DateRange(dtstart, dtend,
- #might be able to use pandas, but might have to make some more offsets?
-
-class TimeSeriesModelResults(base.LikelihoodModelResults):
- def __init__(self, model, params, normalized_cov_params, scale=1.):
- self._data = model._data
- super(TimeSeriesModelResults,
- self).__init__(model, params, normalized_cov_params, scale)
-
-class TimeSeriesResultsWrapper(wrap.ResultsWrapper):
- _attrs = {}
- _wrap_attrs = wrap.union_dicts(base.LikelihoodResultsWrapper._wrap_attrs,
- _attrs)
- _methods = {'predict' : 'dates'}
- _wrap_methods = wrap.union_dicts(base.LikelihoodResultsWrapper._wrap_methods,
- _methods)
-wrap.populate_wrapper(TimeSeriesResultsWrapper,
- TimeSeriesModelResults)
-
-if __name__ == "__main__":
- import scikits.statsmodels.api as sm
- import datetime
- import pandas
-
- data = sm.datasets.macrodata.load()
-
- #make a DataFrame
- #TODO: attach a DataFrame to some of the datasets, for quicker use
- dates = [str(int(x[0])) +':'+ str(int(x[1])) \
- for x in data.data[['year','quarter']]]
- try:
- import scikits.timeseries as ts
- ts_dates = date_array(start_date = Date(year=1959,quarter=1,freq='Q'),
- length=len(data.data))
- except:
- pass
-
-
- df = pandas.DataFrame(data.data[['realgdp','realinv','realcons']], index=dates)
- ex_mod = TimeSeriesModel(df)
- #ts_series = pandas.TimeSeries()
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/descriptivestats.py b/statsmodels/scikits/statsmodels/tsa/descriptivestats.py
deleted file mode 100644
index 4fef094..0000000
--- a/statsmodels/scikits/statsmodels/tsa/descriptivestats.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Descriptive Statistics for Time Series
-
-Created on Sat Oct 30 14:24:08 2010
-
-Author: josef-pktd
-License: BSD(3clause)
-"""
-
-import numpy as np
-import stattools as stt
-
-
-#todo: check subclassing for descriptive stats classes
-class TsaDescriptive(object):
- '''collection of descriptive statistical methods for time series
-
- '''
-
- def __init__(self, data, label=None, name=''):
- self.data = data
- self.label = label
- self.name = name
-
- def filter(self, num, den):
- from scipy.signal import lfilter
- xfiltered = lfilter(num, den, self.data)
- return self.__class__(xfiltered, self.label, self.name + '_filtered')
-
- def detrend(self, order=1):
- import tsatools
- xdetrended = tsatools.detrend(self.data, order=order)
- return self.__class__(xdetrended, self.label, self.name + '_detrended')
-
- def fit(self, order=(1,0,1), **kwds):
- from arima_model import ARMA
- self.mod = ARMA(self.data)
- self.res = self.mod.fit(order=order, **kwds)
- #self.estimated_process =
- return self.res
-
- def acf(self, nlags=40):
- return stt.acf(self.data, nlags=nlags)
-
- def pacf(self, nlags=40):
- return stt.pacf(self.data, nlags=nlags)
-
- def periodogram(self):
- #doesn't return frequesncies
- return stt.periodogram(self.data)
-
- # copied from fftarma.py
- def plot4(self, fig=None, nobs=100, nacf=20, nfreq=100):
- data = self.data
- acf = self.acf(nacf)
- pacf = self.pacf(nacf)
- w = np.linspace(0, np.pi, nfreq, endpoint=False)
- spdr = self.periodogram()[:nfreq] #(w)
-
- if fig is None:
- import matplotlib.pyplot as plt
- fig = plt.figure()
- ax = fig.add_subplot(2,2,1)
- namestr = ' for %s' % self.name if self.name else ''
- ax.plot(data)
- ax.set_title('Time series' + namestr)
-
- ax = fig.add_subplot(2,2,2)
- ax.plot(acf)
- ax.set_title('Autocorrelation' + namestr)
-
- ax = fig.add_subplot(2,2,3)
- ax.plot(spdr) # (wr, spdr)
- ax.set_title('Power Spectrum' + namestr)
-
- ax = fig.add_subplot(2,2,4)
- ax.plot(pacf)
- ax.set_title('Partial Autocorrelation' + namestr)
-
- return fig
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/__init__.py b/statsmodels/scikits/statsmodels/tsa/filters/__init__.py
deleted file mode 100644
index 44f6021..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/__init__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from .bk_filter import bkfilter
-from .hp_filter import hpfilter
-from .cf_filter import cffilter
-from .filtertools import miso_lfilter, arfilter
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/bk_filter.py b/statsmodels/scikits/statsmodels/tsa/filters/bk_filter.py
deleted file mode 100644
index 8bc6a80..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/bk_filter.py
+++ /dev/null
@@ -1,73 +0,0 @@
-import numpy as np
-from scipy.signal import fftconvolve
-
-def bkfilter(X, low=6, high=32, K=12):
- """
- Baxter-King bandpass filter
-
- Parameters
- ----------
- X : array-like
- A 1 or 2d ndarray. If 2d, variables are assumed to be in columns.
- low : float
- Minimum period for oscillations, ie., Baxter and King suggest that
- the Burns-Mitchell U.S. business cycle has 6 for quarterly data and
- 1.5 for annual data.
- high : float
- Maximum period for oscillations BK suggest that the U.S.
- business cycle has 32 for quarterly data and 8 for annual data.
- K : int
- Lead-lag length of the filter. Baxter and King propose a truncation
- length of 12 for quarterly data and 3 for annual data.
-
- Returns
- -------
- Y : array
- Cyclical component of X
-
- References
- ---------- ::
- Baxter, M. and R. G. King. "Measuring Business Cycles: Approximate
- Band-Pass Filters for Economic Time Series." *Review of Economics and
- Statistics*, 1999, 81(4), 575-593.
-
- Notes
- -----
- Returns a centered weighted moving average of the original series. Where
- the weights a[j] are computed ::
-
- a[j] = b[j] + theta, for j = 0, +/-1, +/-2, ... +/- K
- b[0] = (omega_2 - omega_1)/pi
- b[j] = 1/(pi*j)(sin(omega_2*j)-sin(omega_1*j), for j = +/-1, +/-2,...
-
- and theta is a normalizing constant ::
-
- theta = -sum(b)/(2K+1)
-
- Examples
- --------
- >>> import scikits.statsmodels.api as sm
- >>> dta = sm.datasets.macrodata.load()
- >>> X = dta.data['realinv']
- >>> Y = sm.tsa.filters.baxter_king(X, 6, 24, 12)
- """
-#TODO: change the docstring to ..math::?
-#TODO: allow windowing functions to correct for Gibb's Phenomenon?
-# adjust bweights (symmetrically) by below before demeaning
-# Lancosz Sigma Factors np.sinc(2*j/(2.*K+1))
- if low < 2:
- raise ValueError("low cannot be less than 2")
- X = np.asarray(X)
- omega_1 = 2.*np.pi/high # convert from freq. to periodicity
- omega_2 = 2.*np.pi/low
- bweights = np.zeros(2*K+1)
- bweights[K] = (omega_2 - omega_1)/np.pi # weight at zero freq.
- j = np.arange(1,int(K)+1)
- weights = 1/(np.pi*j)*(np.sin(omega_2*j)-np.sin(omega_1*j))
- bweights[K+j] = weights # j is an idx
- bweights[:K] = weights[::-1] # make symmetric weights
- bweights -= bweights.mean() # make sure weights sum to zero
- if X.ndim == 2:
- bweights = bweights[:,None]
- return fftconvolve(bweights, X, mode='valid') # get a centered moving avg/
- # convolution
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/cf_filter.py b/statsmodels/scikits/statsmodels/tsa/filters/cf_filter.py
deleted file mode 100644
index d9d5392..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/cf_filter.py
+++ /dev/null
@@ -1,74 +0,0 @@
-import numpy as np
-
-# the data is sampled quarterly, so cut-off frequency of 18
-
-# Wn is normalized cut-off freq
-#Cutoff frequency is that frequency where the magnitude response of the filter
-# is sqrt(1/2.). For butter, the normalized cutoff frequency Wn must be a
-# number between 0 and 1, where 1 corresponds to the Nyquist frequency, p
-# radians per sample.
-
-#NOTE: uses a loop, could probably be sped-up for very large datasets
-def cffilter(X, low=6, high=32, drift=True):
- """
- Christiano Fitzgerald asymmetric, random walk filter
-
- Parameters
- ----------
- X : array-like
- 1 or 2d array to filter. If 2d, variables are assumed to be in columns.
- low : float
- Minimum period of oscillations. Features below low periodicity are
- filtered out. Default is 6 for quarterly data, giving a 1.5 year
- periodicity.
- high : float
- Maximum period of oscillations. Features above high periodicity are
- filtered out. Default is 32 for quarterly data, giving an 8 year
- periodicity.
- drift : bool
- Whether or not to remove a trend from the data. The trend is estimated
- as np.arange(nobs)*(X[-1] - X[0])/(len(X)-1)
-
- Returns
- -------
- cycle : array
- The features of `X` between periodicities given by low and high
- trend : array
- The trend in the data with the cycles removed.
- """
-#TODO: cythonize/vectorize loop?, add ability for symmetric filter,
-# and estimates of theta other than random walk.
- if low < 2:
- raise ValueError("low must be >= 2")
- X = np.asanyarray(X)
- if X.ndim == 1:
- X = X[:,None]
- nobs, nseries = X.shape
- a = 2*np.pi/high
- b = 2*np.pi/low
-
- if drift: # get drift adjusted series
- X = X - np.arange(nobs)[:,None]*(X[-1] - X[0])/(nobs-1)
-
- J = np.arange(1,nobs+1)
- Bj = (np.sin(b*J)-np.sin(a*J))/(np.pi*J)
- B0 = (b-a)/np.pi
- Bj = np.r_[B0,Bj][:,None]
- y = np.zeros((nobs,nseries))
-
- for i in xrange(nobs):
-
- B = -.5*Bj[0] -np.sum(Bj[1:-i-2])
- A = -Bj[0] - np.sum(Bj[1:-i-2]) - np.sum(Bj[1:i]) - B
- y[i] = Bj[0] * X[i] + np.dot(Bj[1:-i-2].T,X[i+1:-1]) + B*X[-1] + \
- np.dot(Bj[1:i].T, X[1:i][::-1]) + A*X[0]
- y = y.squeeze()
- return y, X.squeeze()-y
-
-if __name__ == "__main__":
- import scikits.statsmodels as sm
- dta = sm.datasets.macrodata.load().data[['infl','tbilrate']].view((float,2))[1:]
- cycle, trend = cffilter(dta, 6, 32, drift=True)
- dta = sm.datasets.macrodata.load().data['tbilrate'][1:]
- cycle2, trend2 = cffilter(dta, 6, 32, drift=True)
-
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/filtertools.py b/statsmodels/scikits/statsmodels/tsa/filters/filtertools.py
deleted file mode 100644
index 69c9d1e..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/filtertools.py
+++ /dev/null
@@ -1,293 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Linear Filters for time series analysis and testing
-
-
-TODO:
-* check common sequence in signature of filter functions (ar,ma,x) or (x,ar,ma)
-
-Created on Sat Oct 23 17:18:03 2010
-
-Author: Josef-pktd
-"""
-#not original copied from various experimental scripts
-#version control history is there
-
-import numpy as np
-import scipy.fftpack as fft
-from scipy import signal
-from scipy.signal.signaltools import _centered as trim_centered
-
-#original changes and examples in sandbox.tsa.try_var_convolve
-
-# don't do these imports, here just for copied fftconvolve
-#get rid of these imports
-#from scipy.fftpack import fft, ifft, ifftshift, fft2, ifft2, fftn, \
-# ifftn, fftfreq
-#from numpy import product,array
-
-def fftconvolveinv(in1, in2, mode="full"):
- """Convolve two N-dimensional arrays using FFT. See convolve.
-
- copied from scipy.signal.signaltools, but here used to try out inverse filter
- doesn't work or I can't get it to work
-
- 2010-10-23:
- looks ok to me for 1d,
- from results below with padded data array (fftp)
- but it doesn't work for multidimensional inverse filter (fftn)
- original signal.fftconvolve also uses fftn
-
- """
- s1 = np.array(in1.shape)
- s2 = np.array(in2.shape)
- complex_result = (np.issubdtype(in1.dtype, np.complex) or
- np.issubdtype(in2.dtype, np.complex))
- size = s1+s2-1
-
- # Always use 2**n-sized FFT
- fsize = 2**np.ceil(np.log2(size))
- IN1 = fft.fftn(in1,fsize)
- #IN1 *= fftn(in2,fsize) #JP: this looks like the only change I made
- IN1 /= fft.fftn(in2,fsize) # use inverse filter
- # note the inverse is elementwise not matrix inverse
- # is this correct, NO doesn't seem to work for VARMA
- fslice = tuple([slice(0, int(sz)) for sz in size])
- ret = fft.ifftn(IN1)[fslice].copy()
- del IN1
- if not complex_result:
- ret = ret.real
- if mode == "full":
- return ret
- elif mode == "same":
- if np.product(s1,axis=0) > np.product(s2,axis=0):
- osize = s1
- else:
- osize = s2
- return trim_centered(ret,osize)
- elif mode == "valid":
- return trim_centered(ret,abs(s2-s1)+1)
-
-#code duplication with fftconvolveinv
-def fftconvolve3(in1, in2=None, in3=None, mode="full"):
- """Convolve two N-dimensional arrays using FFT. See convolve.
-
- for use with arma (old version: in1=num in2=den in3=data
-
- * better for consistency with other functions in1=data in2=num in3=den
- * note in2 and in3 need to have consistent dimension/shape
- since I'm using max of in2, in3 shapes and not the sum
-
- copied from scipy.signal.signaltools, but here used to try out inverse
- filter doesn't work or I can't get it to work
-
- 2010-10-23
- looks ok to me for 1d,
- from results below with padded data array (fftp)
- but it doesn't work for multidimensional inverse filter (fftn)
- original signal.fftconvolve also uses fftn
- """
- if (in2 is None) and (in3 is None):
- raise ValueError('at least one of in2 and in3 needs to be given')
- s1 = np.array(in1.shape)
- if not in2 is None:
- s2 = np.array(in2.shape)
- else:
- s2 = 0
- if not in3 is None:
- s3 = np.array(in3.shape)
- s2 = max(s2, s3) # try this looks reasonable for ARMA
- #s2 = s3
-
-
- complex_result = (np.issubdtype(in1.dtype, np.complex) or
- np.issubdtype(in2.dtype, np.complex))
- size = s1+s2-1
-
- # Always use 2**n-sized FFT
- fsize = 2**np.ceil(np.log2(size))
- #convolve shorter ones first, not sure if it matters
- if not in2 is None:
- IN1 = fft.fftn(in2, fsize)
- if not in3 is None:
- IN1 /= fft.fftn(in3, fsize) # use inverse filter
- # note the inverse is elementwise not matrix inverse
- # is this correct, NO doesn't seem to work for VARMA
- IN1 *= fft.fftn(in1, fsize)
- fslice = tuple([slice(0, int(sz)) for sz in size])
- ret = fft.ifftn(IN1)[fslice].copy()
- del IN1
- if not complex_result:
- ret = ret.real
- if mode == "full":
- return ret
- elif mode == "same":
- if np.product(s1,axis=0) > np.product(s2,axis=0):
- osize = s1
- else:
- osize = s2
- return trim_centered(ret,osize)
- elif mode == "valid":
- return trim_centered(ret,abs(s2-s1)+1)
-
-#original changes and examples in sandbox.tsa.try_var_convolve
-#examples and tests are there
-def arfilter(x, a):
- '''apply an autoregressive filter to a series x
-
- x can be 2d, a can be 1d, 2d, or 3d
-
- Parameters
- ----------
- x : array_like
- data array, 1d or 2d, if 2d then observations in rows
- a : array_like
- autoregressive filter coefficients, ar lag polynomial
- see Notes
-
- Returns
- -------
- y : ndarray, 2d
- filtered array, number of columns determined by x and a
-
- Notes
- -----
-
- In general form this uses the linear filter ::
-
- y = a(L)x
-
- where
- x : nobs, nvars
- a : nlags, nvars, npoly
-
- Depending on the shape and dimension of a this uses different
- Lag polynomial arrays
-
- case 1 : a is 1d or (nlags,1)
- one lag polynomial is applied to all variables (columns of x)
- case 2 : a is 2d, (nlags, nvars)
- each series is independently filtered with its own
- lag polynomial, uses loop over nvar
- case 3 : a is 3d, (nlags, nvars, npoly)
- the ith column of the output array is given by the linear filter
- defined by the 2d array a[:,:,i], i.e. ::
-
- y[:,i] = a(.,.,i)(L) * x
- y[t,i] = sum_p sum_j a(p,j,i)*x(t-p,j)
- for p = 0,...nlags-1, j = 0,...nvars-1,
- for all t >= nlags
-
- All filtering is done with scipy.signal.convolve, so it will be reasonably
- fast for medium sized arrays. For large arrays fft convolution would be
- faster.
-
- Note: maybe convert to axis=1, Not
-
- TODO:
- initial conditions,
- make sure tests for 3d case are done, I don't remember how much I
- tested the 3d case
-
- '''
- x = np.asarray(x)
- a = np.asarray(a)
- if x.ndim == 1:
- x = x[:,None]
- if x.ndim > 2:
- raise ValueError('x array has to be 1d or 2d')
- nvar = x.shape[1]
- nlags = a.shape[0]
- ntrim = nlags//2
- # for x is 2d with ncols >1
-
- if a.ndim == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a[:,None], mode='valid')
- # alternative:
- #return signal.lfilter(a,[1],x.astype(float),axis=0)
- elif a.ndim == 2:
- if min(a.shape) == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a, mode='valid')
-
- # case: independent ar
- #(a bit like recserar in gauss, but no x yet)
- result = np.zeros((x.shape[0]-nlags+1, nvar))
- for i in range(nvar):
- # could also use np.convolve, but easier for swiching to fft
- result[:,i] = signal.convolve(x[:,i], a[:,i], mode='valid')
- return result
-
- elif a.ndim == 3:
- # case: vector autoregressive with lag matrices
-# #not necessary:
-# if np.any(a.shape[1:] != nvar):
-# raise ValueError('if 3d shape of a has to be (nobs,nvar,nvar)')
- yf = signal.convolve(x[:,:,None], a)
- yvalid = yf[ntrim:-ntrim, yf.shape[1]//2,:]
- return yvalid
-
-
-#copied from sandbox.tsa.garch
-def miso_lfilter(ar, ma, x, useic=False): #[0.1,0.1]):
- '''
- use nd convolution to merge inputs,
- then use lfilter to produce output
-
- arguments for column variables
- return currently 1d
-
- Parameters
- ----------
- ar : array_like, 1d, float
- autoregressive lag polynomial including lag zero, ar(L)y_t
- ma : array_like, same ndim as x, currently 2d
- moving average lag polynomial ma(L)x_t
- x : array_like, 2d
- input data series, time in rows, variables in columns
-
- Returns
- -------
- y : array, 1d
- filtered output series
- inp : array, 1d
- combined input series
-
- Notes
- -----
- currently for 2d inputs only, no choice of axis
- Use of signal.lfilter requires that ar lag polynomial contains
- floating point numbers
- does not cut off invalid starting and final values
-
- miso_lfilter find array y such that::
-
- ar(L)y_t = ma(L)x_t
-
- with shapes y (nobs,), x (nobs,nvars), ar (narlags,), ma (narlags,nvars)
-
- '''
- ma = np.asarray(ma)
- ar = np.asarray(ar)
- #inp = signal.convolve(x, ma, mode='valid')
- #inp = signal.convolve(x, ma)[:, (x.shape[1]+1)//2]
- #Note: convolve mixes up the variable left-right flip
- #I only want the flip in time direction
- #this might also be a mistake or problem in other code where I
- #switched from correlate to convolve
- # correct convolve version, for use with fftconvolve in other cases
- #inp2 = signal.convolve(x, ma[:,::-1])[:, (x.shape[1]+1)//2]
- inp = signal.correlate(x, ma[::-1,:])[:, (x.shape[1]+1)//2]
- #for testing 2d equivalence between convolve and correlate
- #np.testing.assert_almost_equal(inp2, inp)
- nobs = x.shape[0]
- # cut of extra values at end
-
- #todo initialize also x for correlate
- if useic:
- return signal.lfilter([1], ar, inp,
- #zi=signal.lfilter_ic(np.array([1.,0.]),ar, ic))[0][:nobs], inp[:nobs]
- zi=signal.lfiltic(np.array([1.,0.]),ar, useic))[0][:nobs], inp[:nobs]
- else:
- return signal.lfilter([1], ar, inp)[:nobs], inp[:nobs]
- #return signal.lfilter([1], ar, inp), inp
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/hp_filter.py b/statsmodels/scikits/statsmodels/tsa/filters/hp_filter.py
deleted file mode 100644
index fa0c8bc..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/hp_filter.py
+++ /dev/null
@@ -1,72 +0,0 @@
-from scipy import sparse
-from scipy.sparse import dia_matrix, eye as speye
-from scipy.sparse.linalg import spsolve
-import numpy as np
-
-def hpfilter(X, lamb=1600):
- """
- Hodrick-Prescott filter
-
- Parameters
- ----------
- X : array-like
- The 1d ndarray timeseries to filter of length (nobs,) or (nobs,1)
- lamb : float
- The Hodrick-Prescott smoothing parameter. A value of 1600 is
- suggested for quarterly data. Ravn and Uhlig suggest using a value
- of 6.25 (1600/4**4) for annual data and 129600 (1600*3**4) for monthly
- data.
-
- Returns
- -------
- cycle : array
- The estimated cycle in the data given lamb.
- trend : array
- The estimated trend in the data given lamb.
-
- Examples
- ---------
- >>> import scikits.statsmodels.api as sm
- >>> dta = sm.datasets.macrodata.load()
- >>> X = dta.data['realgdp']
- >>> cycle, trend = sm.tsa.filters.hpfilter(X,1600)
-
- Notes
- -----
- The HP filter removes a smooth trend, `T`, from the data `X`. by solving
-
- min sum((X[t] - T[t])**2 + lamb*((T[t+1] - T[t]) - (T[t] - T[t-1]))**2)
- T t
-
- Here we implemented the HP filter as a ridge-regression rule using
- scipy.sparse. In this sense, the solution can be written as
-
- T = inv(I - lamb*K'K)X
-
- where I is a nobs x nobs identity matrix, and K is a (nobs-2) x nobs matrix
- such that
-
- K[i,j] = 1 if i == j or i == j + 2
- K[i,j] = -2 if i == j + 1
- K[i,j] = 0 otherwise
-
- References
- ----------
- Hodrick, R.J, and E. C. Prescott. 1980. "Postwar U.S. Business Cycles: An
- Empricial Investigation." `Carnegie Mellon University discussion
- paper no. 451`.
- Ravn, M.O and H. Uhlig. 2002. "Notes On Adjusted the Hodrick-Prescott
- Filter for the Frequency of Observations." `The Review of Economics and
- Statistics`, 84(2), 371-80.
- """
- X = np.asarray(X)
- if X.ndim > 1:
- X = X.squeeze()
- nobs = len(X)
- I = speye(nobs,nobs)
- offsets = np.array([0,1,2])
- data = np.repeat([[1],[-2],[1]], nobs, axis=1)
- K = dia_matrix((data, offsets), shape=(nobs-2,nobs))
- trend = spsolve(I+lamb*K.T.dot(K), X)
- cycle = X-trend
- return cycle, trend
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/tests/__init__.py b/statsmodels/scikits/statsmodels/tsa/filters/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tsa/filters/tests/test_filters.py b/statsmodels/scikits/statsmodels/tsa/filters/tests/test_filters.py
deleted file mode 100644
index d644182..0000000
--- a/statsmodels/scikits/statsmodels/tsa/filters/tests/test_filters.py
+++ /dev/null
@@ -1,546 +0,0 @@
-from numpy.testing import assert_almost_equal
-from numpy import array, column_stack
-from scikits.statsmodels.datasets import macrodata
-from scikits.statsmodels.tsa.filters import bkfilter, hpfilter, cffilter
-
-def test_bking1d():
- """
- Test Baxter King band-pass filter. Results are taken from Stata
- """
- bking_results = array([7.320813, 2.886914, -6.818976, -13.49436,
- -13.27936, -9.405913, -5.691091, -5.133076, -7.273468,
- -9.243364, -8.482916, -4.447764, 2.406559, 10.68433,
- 19.46414, 28.09749, 34.11066, 33.48468, 24.64598, 9.952399,
- -4.265528, -12.59471, -13.46714, -9.049501, -3.011248,
- .5655082, 2.897976, 7.406077, 14.67959, 18.651, 13.05891,
- -2.945415, -24.08659, -41.86147, -48.68383, -43.32689,
- -31.66654, -20.38356, -13.76411, -9.978693, -3.7704, 10.27108,
- 31.02847, 51.87613, 66.93117, 73.51951, 73.4053, 69.17468,
- 59.8543, 38.23899, -.2604809, -49.0107, -91.1128, -112.1574,
- -108.3227, -86.51453, -59.91258, -40.01185, -29.70265,
- -22.76396, -13.08037, 1.913622, 20.44045, 37.32873, 46.79802,
- 51.95937, 59.67393, 70.50803, 81.27311, 83.53191, 67.72536,
- 33.78039, -6.509092, -37.31579, -46.05207, -29.81496, 1.416417,
- 28.31503,
- 32.90134, 8.949259, -35.41895, -84.65775, -124.4288, -144.6036,
- -140.2204, -109.2624, -53.6901, 15.07415, 74.44268, 104.0403,
- 101.0725, 76.58291, 49.27925, 36.15751, 36.48799, 37.60897,
- 27.75998, 4.216643, -23.20579, -39.33292, -36.6134, -20.90161,
- -4.143123, 5.48432, 9.270075, 13.69573, 22.16675, 33.01987,
- 41.93186, 47.12222, 48.62164, 47.30701, 40.20537, 22.37898,
- -7.133002, -43.3339, -78.51229, -101.3684, -105.2179,
- -90.97147,
- -68.30824, -48.10113, -35.60709, -31.15775, -31.82346,
- -32.49278, -28.22499, -14.42852, 10.1827, 36.64189, 49.43468,
- 38.75517, 6.447761, -33.15883, -62.60446, -72.87829, -66.54629,
- -52.61205, -38.06676, -26.19963, -16.51492, -7.007577,
- .6125674,
- 7.866972, 14.8123, 22.52388, 30.65265, 39.47801, 49.05027,
- 59.02925,
- 72.88999, 95.08865, 125.8983, 154.4283, 160.7638, 130.6092,
- 67.84406, -7.070272, -68.08128, -99.39944, -104.911,
- -100.2372, -98.11596, -104.2051, -114.0125, -113.3475,
- -92.98669, -51.91707, -.7313812, 43.22938, 64.62762, 64.07226,
- 59.35707, 67.06026, 91.87247, 124.4591, 151.2402, 163.0648,
- 154.6432])
- X = macrodata.load().data['realinv']
- Y = bkfilter(X, 6, 32, 12)
- assert_almost_equal(Y,bking_results,4)
-
-def test_bking2d():
- """
- Test Baxter-King band-pass filter with 2d input
- """
- bking_results = array([[7.320813,-.0374475], [2.886914,-.0430094],
- [-6.818976,-.053456], [-13.49436,-.0620739], [-13.27936,-.0626929],
- [-9.405913,-.0603022], [-5.691091,-.0630016], [-5.133076,-.0832268],
- [-7.273468,-.1186448], [-9.243364,-.1619868], [-8.482916,-.2116604],
- [-4.447764,-.2670747], [2.406559,-.3209931], [10.68433,-.3583075],
- [19.46414,-.3626742], [28.09749,-.3294618], [34.11066,-.2773388],
- [33.48468,-.2436127], [24.64598,-.2605531], [9.952399,-.3305166],
- [-4.265528,-.4275561], [-12.59471,-.5076068], [-13.46714,-.537573],
- [-9.049501,-.5205845], [-3.011248,-.481673], [.5655082,-.4403994],
- [2.897976,-.4039957], [7.406077,-.3537394], [14.67959,-.2687359],
- [18.651,-.1459743], [13.05891,.0014926], [-2.945415,.1424277],
- [-24.08659,.2451936], [-41.86147,.288541], [-48.68383,.2727282],
- [-43.32689,.1959127], [-31.66654,.0644874], [-20.38356,-.1158372],
- [-13.76411,-.3518627], [-9.978693,-.6557535], [-3.7704,-1.003754],
- [10.27108,-1.341632], [31.02847,-1.614486], [51.87613,-1.779089],
- [66.93117,-1.807459], [73.51951,-1.679688], [73.4053,-1.401012],
- [69.17468,-.9954996], [59.8543,-.511261], [38.23899,-.0146745],
- [-.2604809,.4261311], [-49.0107,.7452514], [-91.1128,.8879492],
- [-112.1574,.8282748], [-108.3227,.5851508], [-86.51453,.2351699],
- [-59.91258,-.1208998], [-40.01185,-.4297895], [-29.70265,-.6821963],
- [-22.76396,-.9234254], [-13.08037,-1.217539], [1.913622,-1.57367],
- [20.44045,-1.927008], [37.32873,-2.229565], [46.79802,-2.463154],
- [51.95937,-2.614697], [59.67393,-2.681357], [70.50803,-2.609654],
- [81.27311,-2.301618], [83.53191,-1.720974], [67.72536,-.9837123],
- [33.78039,-.2261613], [-6.509092,.4546985], [-37.31579,1.005751],
- [-46.05207,1.457224], [-29.81496,1.870815], [1.416417,2.263313],
- [28.31503,2.599906], [32.90134,2.812282], [8.949259,2.83358],
- [-35.41895,2.632667], [-84.65775,2.201077], [-124.4288,1.598951],
- [-144.6036,.9504762], [-140.2204,.4187932], [-109.2624,.1646726],
- [-53.6901,.2034265], [15.07415,.398165], [74.44268,.5427476],
- [104.0403,.5454975], [101.0725,.4723354], [76.58291,.4626823],
- [49.27925,.5840143], [36.15751,.7187981], [36.48799,.6058422],
- [37.60897,.1221227], [27.75998,-.5891272], [4.216643,-1.249841],
- [-23.20579,-1.594972], [-39.33292,-1.545968], [-36.6134,-1.275494],
- [-20.90161,-1.035783], [-4.143123,-.9971732], [5.48432,-1.154264],
- [9.270075,-1.29987], [13.69573,-1.240559], [22.16675,-.9662656],
- [33.01987,-.6420301], [41.93186,-.4698712], [47.12222,-.4527797],
- [48.62164,-.4407153], [47.30701,-.2416076], [40.20537,.2317583],
- [22.37898,.8710276], [-7.133002,1.426177], [-43.3339,1.652785],
- [-78.51229,1.488021], [-101.3684,1.072096], [-105.2179,.6496446],
- [-90.97147,.4193682], [-68.30824,.41847], [-48.10113,.5253419],
- [-35.60709,.595076], [-31.15775,.5509905], [-31.82346,.3755519],
- [-32.49278,.1297979], [-28.22499,-.0916165], [-14.42852,-.2531037],
- [10.1827,-.3220784], [36.64189,-.2660561], [49.43468,-.1358522],
- [38.75517,-.0279508], [6.447761,.0168735], [-33.15883,.0315687],
- [-62.60446,.0819507], [-72.87829,.2274033], [-66.54629,.4641401],
- [-52.61205,.7211093], [-38.06676,.907773], [-26.19963,.9387103],
- [-16.51492,.7940786], [-7.007577,.5026631], [.6125674,.1224996],
- [7.866972,-.2714422], [14.8123,-.6273921], [22.52388,-.9124271],
- [30.65265,-1.108861], [39.47801,-1.199206], [49.05027,-1.19908],
- [59.02925,-1.139046], [72.88999,-.9775021], [95.08865,-.6592603],
- [125.8983,-.1609712], [154.4283,.4796201], [160.7638,1.100565],
- [130.6092,1.447148], [67.84406,1.359608], [-7.070272,.8931825],
- [-68.08128,.2619787], [-99.39944,-.252208], [-104.911,-.4703874],
- [-100.2372,-.4430657], [-98.11596,-.390683], [-104.2051,-.5647846],
- [-114.0125,-.9397582], [-113.3475,-1.341633], [-92.98669,-1.567337],
- [-51.91707,-1.504943], [-.7313812,-1.30576], [43.22938,-1.17151],
- [64.62762,-1.136151], [64.07226,-1.050555], [59.35707,-.7308369],
- [67.06026,-.1766731], [91.87247,.3898467], [124.4591,.8135461],
- [151.2402,.9644226], [163.0648,.6865934], [154.6432,.0115685]])
-
- X = macrodata.load().data[['realinv','cpi']].view((float,2))
- Y = bkfilter(X, 6, 32, 12)
- assert_almost_equal(Y,bking_results,4)
-
-def test_hpfilter():
- """
- Test Hodrick-Prescott Filter. Results taken from Stata.
- """
- hpfilt_res = array([[3.951191484487844718e+01,2.670837085155121713e+03],
- [8.008853245681075350e+01,2.698712467543189177e+03],
- [4.887545512195401898e+01,2.726612544878045810e+03],
- [3.059193256079834100e+01,2.754612067439201837e+03],
- [6.488266733421960453e+01,2.782816332665780465e+03],
- [2.304024204546703913e+01,2.811349757954532834e+03],
- [-1.355312369487364776e+00,2.840377312369487299e+03],
- [-6.746236512580753697e+01,2.870078365125807522e+03],
- [-8.136743836853429457e+01,2.900631438368534418e+03],
- [-6.016789026443257171e+01,2.932172890264432681e+03],
- [-4.636922433138215638e+01,2.964788224331382025e+03],
- [-2.069533915570400495e+01,2.998525339155703932e+03],
- [-2.162152558595607843e+00,3.033403152558595593e+03],
- [-4.718647774311648391e+00,3.069427647774311481e+03],
- [-1.355645669169007306e+01,3.106603456691690099e+03],
- [-4.436926204475639679e+01,3.144932262044756499e+03],
- [-4.332027378211660107e+01,3.184407273782116590e+03],
- [-4.454697106352068658e+01,3.224993971063520803e+03],
- [-2.629875787765286077e+01,3.266630757877652741e+03],
- [-4.426119635629265758e+01,3.309228196356292756e+03],
- [-1.443441190762496262e+01,3.352680411907625057e+03],
- [-2.026686669186437939e+01,3.396853866691864368e+03],
- [-1.913700136208899494e+01,3.441606001362089046e+03],
- [-5.482458977940950717e+01,3.486781589779409387e+03],
- [-1.596244517937793717e+01,3.532213445179378141e+03],
- [-1.374011542874541192e+01,3.577700115428745448e+03],
- [1.325482813403914406e+01,3.623030171865960710e+03],
- [5.603040174253828809e+01,3.667983598257461836e+03],
- [1.030743373627105939e+02,3.712348662637289181e+03],
- [7.217534795943993231e+01,3.755948652040559864e+03],
- [5.462972503693208637e+01,3.798671274963067845e+03],
- [4.407065050666142270e+01,3.840449349493338559e+03],
- [3.749016270204992907e+01,3.881249837297949853e+03],
- [-1.511244199923112319e+00,3.921067244199923152e+03],
- [-9.093507374079763395e+00,3.959919507374079785e+03],
- [-1.685361946760258434e+01,3.997823619467602384e+03],
- [2.822211031434289907e+01,4.034790889685657021e+03],
- [6.117590627896424849e+01,4.070822093721035344e+03],
- [5.433135391434370831e+01,4.105935646085656117e+03],
- [3.810480376716623141e+01,4.140188196232833434e+03],
- [7.042964928802848590e+01,4.173670350711971878e+03],
- [4.996346842507591646e+01,4.206496531574924120e+03],
- [4.455282059571254649e+01,4.238825179404287155e+03],
- [-7.584961950576143863e+00,4.270845961950576566e+03],
- [-4.620339247697120300e+01,4.302776392476971523e+03],
- [-7.054024364552969928e+01,4.334829243645529459e+03],
- [-6.492941099801464588e+01,4.367188410998014660e+03],
- [-1.433567024239555394e+02,4.399993702423955256e+03],
- [-5.932834493089012540e+01,4.433344344930889747e+03],
- [-6.842096758743628016e+01,4.467249967587436004e+03],
- [-6.774011924654860195e+01,4.501683119246548813e+03],
- [-9.030958565658056614e+01,4.536573585656580690e+03],
- [-4.603981499136807543e+01,4.571808814991368308e+03],
- [2.588118806672991923e+01,4.607219811933269739e+03],
- [3.489419371912299539e+01,4.642608806280876706e+03],
- [7.675179642495095322e+01,4.677794203575049323e+03],
- [1.635497817724171910e+02,4.712616218227582976e+03],
- [1.856079654765617306e+02,4.746963034523438182e+03],
- [1.254269446392718237e+02,4.780825055360728584e+03],
- [1.387413113837174024e+02,4.814308688616282780e+03],
- [6.201826599282230745e+01,4.847598734007177882e+03],
- [4.122129542972197669e+01,4.880966704570278125e+03],
- [-4.120287475842360436e+01,4.914722874758424041e+03],
- [-9.486328233441963675e+01,4.949203282334419782e+03],
- [-1.894232132641573116e+02,4.984718213264157384e+03],
- [-1.895766639620087517e+02,5.021518663962008759e+03],
- [-1.464092413342650616e+02,5.059737241334265491e+03],
- [-1.218770668721217589e+02,5.099388066872122181e+03],
- [-4.973075629078175552e+01,5.140393756290781312e+03],
- [-5.365375213897277717e+01,5.182600752138972894e+03],
- [-7.175241524251214287e+01,5.225824415242512259e+03],
- [-7.834757283225462743e+01,5.269846572832254424e+03],
- [-6.264220687943907251e+01,5.314404206879438789e+03],
- [-3.054332122210325906e+00,5.359185332122210639e+03],
- [4.808218808024685131e+01,5.403838811919753425e+03],
- [2.781399326736391231e+00,5.448011600673263274e+03],
- [-2.197570415173231595e+01,5.491380704151732061e+03],
- [1.509441335012807031e+02,5.533624866498719712e+03],
- [1.658909029574851957e+02,5.574409097042514986e+03],
- [2.027292548049981633e+02,5.613492745195001589e+03],
- [1.752101578176061594e+02,5.650738842182393455e+03],
- [1.452808749847536092e+02,5.686137125015246056e+03],
- [1.535481629475025329e+02,5.719786837052497503e+03],
- [1.376169777998875361e+02,5.751878022200112355e+03],
- [1.257703080340770612e+02,5.782696691965922582e+03],
- [-2.524186846895645431e+01,5.812614868468956047e+03],
- [-6.546618027042404719e+01,5.842083180270424236e+03],
- [1.192352023580315290e+01,5.871536479764196883e+03],
- [1.043482970188742911e+02,5.901368702981125352e+03],
- [2.581376184768396342e+01,5.931981238152316109e+03],
- [6.634330880534071184e+01,5.963840691194659485e+03],
- [-4.236780162594641297e+01,5.997429801625946311e+03],
- [-1.759397735321817891e+02,6.033272773532181418e+03],
- [-1.827933311233055065e+02,6.071867331123305121e+03],
- [-2.472312362505917918e+02,6.113601236250591683e+03],
- [-2.877470049336488955e+02,6.158748004933649099e+03],
- [-2.634066336693540507e+02,6.207426633669354487e+03],
- [-1.819572770763625158e+02,6.259576277076362203e+03],
- [-1.175034606274621183e+02,6.314971460627461965e+03],
- [-4.769898649718379602e+01,6.373272986497183410e+03],
- [1.419578280287896632e+01,6.434068217197121157e+03],
- [6.267929662760798237e+01,6.496914703372392069e+03],
- [6.196413196753746888e+01,6.561378868032462378e+03],
- [5.019769125317907310e+01,6.627066308746821051e+03],
- [4.665364933213822951e+01,6.693621350667861407e+03],
- [3.662430749527266016e+01,6.760719692504727391e+03],
- [7.545680850246480986e+01,6.828066191497535328e+03],
- [6.052940492147536133e+01,6.895388595078524304e+03],
- [6.029518881462354329e+01,6.962461811185376064e+03],
- [2.187042136652689805e+01,7.029098578633473153e+03],
- [2.380067926824722235e+01,7.095149320731752596e+03],
- [-7.119129802169481991e+00,7.160478129802169860e+03],
- [-3.194497359120850888e+01,7.224963973591208742e+03],
- [-1.897137038934124575e+01,7.288481370389341464e+03],
- [-1.832687287845146784e+01,7.350884872878451461e+03],
- [4.600482336597542599e+01,7.412017176634024509e+03],
- [2.489047706403016491e+01,7.471709522935970199e+03],
- [6.305909392127250612e+01,7.529821906078727807e+03],
- [4.585212309498183458e+01,7.586229876905018500e+03],
- [9.314260180878318351e+01,7.640848398191216802e+03],
- [1.129819097095369216e+02,7.693621090290463144e+03],
- [1.204662123176703972e+02,7.744549787682329224e+03],
- [1.336860614601246198e+02,7.793706938539875409e+03],
- [1.034567175813735957e+02,7.841240282418626521e+03],
- [1.403118873372050075e+02,7.887381112662795204e+03],
- [1.271726169351004501e+02,7.932425383064899506e+03],
- [8.271925765282139764e+01,7.976756742347178260e+03],
- [-3.197432211752584408e+01,8.020838322117525422e+03],
- [-1.150209535194062482e+02,8.065184953519406008e+03],
- [-1.064694837456772802e+02,8.110291483745677397e+03],
- [-1.190428718925368230e+02,8.156580871892536379e+03],
- [-1.353635336292991269e+02,8.204409533629299403e+03],
- [-9.644348283027102298e+01,8.254059482830271008e+03],
- [-6.143413116116607853e+01,8.305728131161165948e+03],
- [-3.019161311097923317e+01,8.359552613110980019e+03],
- [1.384333163552582846e+00,8.415631666836447039e+03],
- [-4.156016073666614830e+01,8.474045160736666730e+03],
- [-4.843882841860977351e+01,8.534873828418609264e+03],
- [-6.706442838867042155e+01,8.598172428388670596e+03],
- [-2.019644488579979225e+01,8.663965444885800025e+03],
- [-4.316446881084630149e+00,8.732235446881084499e+03],
- [4.435061943264736328e+01,8.802952380567352520e+03],
- [2.820550564155564643e+01,8.876083494358445023e+03],
- [5.155624419490777655e+01,8.951623755805092514e+03],
- [-4.318760899315748247e+00,9.029585760899315574e+03],
- [-6.534632828542271454e+01,9.110014328285422380e+03],
- [-7.226757738268497633e+01,9.192951577382684263e+03],
- [-9.412378615444868046e+01,9.278398786154448317e+03],
- [-1.191240653288368776e+02,9.366312065328836979e+03],
- [-4.953669826751865912e+01,9.456588698267518339e+03],
- [-6.017251579067487910e+01,9.549051515790675694e+03],
- [-5.103438828313483100e+01,9.643492388283135369e+03],
- [-7.343057830678117170e+01,9.739665578306781754e+03],
- [-2.774245193054957781e+01,9.837293451930549054e+03],
- [-3.380481112519191811e+00,9.936052481112519672e+03],
- [-2.672779877794346248e+01,1.003560179877794326e+04],
- [-3.217342505148371856e+01,1.013559842505148299e+04],
- [-4.140567518359966925e+01,1.023568267518359971e+04],
- [-6.687756033938057953e+00,1.033547475603393832e+04],
- [7.300600408459467872e+01,1.043456899591540605e+04],
- [6.862345670680042531e+01,1.053255554329319966e+04],
- [5.497882461487461114e+01,1.062907017538512628e+04],
- [9.612244093055960548e+01,1.072379155906944106e+04],
- [1.978212770103891671e+02,1.081643272298961165e+04],
- [1.362772276848754700e+02,1.090676677231512440e+04],
- [2.637635494867263333e+02,1.099469045051327339e+04],
- [1.876813256815166824e+02,1.108018567431848351e+04],
- [1.711447873158413131e+02,1.116339921268415856e+04],
- [5.257586460826678376e+01,1.124459513539173349e+04],
- [4.710652228531762375e+01,1.132414447771468258e+04],
- [-6.237613484241046535e+01,1.140245113484241119e+04],
- [-9.982044354035315337e+01,1.147994844354035376e+04],
- [-7.916275548997509759e+01,1.155703075548997549e+04],
- [-9.526003459472303803e+01,1.163403003459472347e+04],
- [-1.147987680369169539e+02,1.171122876803691724e+04],
- [-1.900259054765901965e+02,1.178884990547659072e+04],
- [-2.212256473439556430e+02,1.186704464734395515e+04],
- [-2.071394278781845060e+02,1.194584542787818464e+04],
- [-8.968541528904825100e+01,1.202514641528904758e+04],
- [-6.189531564415665343e+01,1.210471231564415575e+04],
- [-5.662878162551714922e+01,1.218425178162551674e+04],
- [-4.961678134413705266e+01,1.226343478134413635e+04],
- [-3.836288992144181975e+01,1.234189588992144127e+04],
- [-8.956671991456460091e+00,1.241923867199145570e+04],
- [3.907028461866866564e+01,1.249504271538133071e+04],
- [1.865299000184495526e+01,1.256888200999815490e+04],
- [4.279803532226833340e+01,1.264035496467773191e+04],
- [3.962735362631610769e+01,1.270907164637368442e+04],
- [1.412691291877854383e+02,1.277466887081221466e+04],
- [1.256537791844366438e+02,1.283680822081556289e+04],
- [7.067642758858892194e+01,1.289523957241141034e+04],
- [1.108876647603192396e+02,1.294979133523968085e+04],
- [9.956490829291760747e+01,1.300033609170708223e+04],
- [1.571612709880937473e+02,1.304681572901190702e+04],
- [2.318746375812715996e+02,1.308923436241872878e+04],
- [2.635546670125277160e+02,1.312769433298747208e+04],
- [2.044220965739259555e+02,1.316244290342607383e+04],
- [2.213739418903714977e+02,1.319389205810962812e+04],
- [1.020184547767112235e+02,1.322258154522328914e+04],
- [-1.072694716663390864e+02,1.324918947166633916e+04],
- [-3.490477058718843182e+02,1.327445770587188417e+04],
- [-3.975570728533530200e+02,1.329906107285335383e+04],
- [-3.331152428080622485e+02,1.332345624280806260e+04]])
- dta = macrodata.load().data['realgdp']
- res = column_stack((hpfilter(dta,1600)))
- assert_almost_equal(res,hpfilt_res,6)
-
-def test_cfitz_filter():
- """
- Test Christiano-Fitzgerald Filter. Results taken from R.
- """
- #NOTE: The Stata mata code and the matlab code it's based on are wrong.
- cfilt_res = array([[0.712599537179426,0.439563468233128],
- [1.06824041304411,0.352886666575907],
- [1.19422467791128,0.257297004260607],
- [0.970845473140327,0.114504692143872],
- [0.467026976628563,-0.070734782329146],
- [-0.089153511514031,-0.238609685132605],
- [-0.452339254128573,-0.32376584042956],
- [-0.513231214461187,-0.314288554228112],
- [-0.352372578720063,-0.258815055101336],
- [-0.160282602521333,-0.215076844089567],
- [-0.0918782593827686,-0.194120745417214],
- [-0.168083823205437,-0.158327420072693],
- [-0.291595204965808,-0.0742727139742986],
- [-0.348638756841307,0.037008291163602],
- [-0.304328040874631,0.108196527328748],
- [-0.215933150969686,0.0869231107437175],
- [-0.165632621390694,-0.0130556619786275],
- [-0.182326839507151,-0.126570926191824],
- [-0.223737786804725,-0.205535321806185],
- [-0.228939291453403,-0.269110078201836],
- [-0.185518327227038,-0.375976507132174],
- [-0.143900152461529,-0.53760115656157],
- [-0.162749541550174,-0.660065018626038],
- [-0.236263634756884,-0.588542352053736],
- [-0.275785854309211,-0.236867929421996],
- [-0.173666515108109,0.303436335579219],
- [0.0963135720251639,0.779772338801993],
- [0.427070069032285,0.929108075350647],
- [0.629034743259998,0.658330841002647],
- [0.557941248993624,0.118500049361018],
- [0.227866624051603,-0.385048321099911],
- [-0.179878859883227,-0.582223992561493],
- [-0.428263000051965,-0.394053702908091],
- [-0.381640684645912,0.0445437406977307],
- [-0.0942745548364887,0.493997792757968],
- [0.238132391504895,0.764519811304315],
- [0.431293754256291,0.814755206427316],
- [0.455010435813661,0.745567043101108],
- [0.452800768971269,0.709401694610443],
- [0.615754619329312,0.798293251119636],
- [1.00256335412457,0.975856845059388],
- [1.44841039351691,1.09097252730799],
- [1.64651971120370,0.967823457118036],
- [1.35534532901802,0.522397724737059],
- [0.580492790312048,-0.16941343361609],
- [-0.410746188031773,-0.90760401289056],
- [-1.26148406066881,-1.49592867122591],
- [-1.75784179124566,-1.87404167409849],
- [-1.94478553960064,-2.14586210891112],
- [-2.03751202708559,-2.465855239868],
- [-2.20376059354166,-2.86294187189049],
- [-2.39722338315852,-3.15004697654831],
- [-2.38032366161537,-3.01390466643222],
- [-1.91798022532025,-2.23395210271226],
- [-0.982318490353716,-0.861346053067472],
- [0.199047030343412,0.790266582335616],
- [1.28582776574786,2.33731327460104],
- [2.03565905376430,3.54085486821911],
- [2.41201557412526,4.36519456268955],
- [2.52011070482927,4.84810517685452],
- [2.45618479815452,4.92906708807477],
- [2.22272146945388,4.42591058990048],
- [1.78307567169034,3.20962906108388],
- [1.18234431860844,1.42568060336985],
- [0.590069172333348,-0.461896808688991],
- [0.19662302949837,-1.89020992539465],
- [0.048307034171166,-2.53490571941987],
- [-0.0141956981899000,-2.50020338531674],
- [-0.230505187108187,-2.20625973569823],
- [-0.700947410386801,-2.06643697511048],
- [-1.27085123163060,-2.21536883679783],
- [-1.64082547897928,-2.49016921117735],
- [-1.62286182971254,-2.63948740221362],
- [-1.31609762181362,-2.54685250637904],
- [-1.03085567704873,-2.27157435428923],
- [-1.01100120380112,-1.90404507430561],
- [-1.19823958399826,-1.4123209792214],
- [-1.26398933608383,-0.654000086153317],
- [-0.904710628949692,0.447960016248203],
- [-0.151340093679588,1.73970411237156],
- [0.592926881165989,2.85741581650685],
- [0.851660587507523,3.4410446351716],
- [0.480324393352127,3.36870271362297],
- [-0.165153230782417,2.82003806696544],
- [-0.459235919375844,2.12858991660866],
- [0.0271158842479935,1.55840980891556],
- [1.18759188180671,1.17980298478623],
- [2.43238266962309,0.904011534980672],
- [3.08277213720132,0.595286911949837],
- [2.79953663720953,0.148014782859571],
- [1.73694442845833,-0.496297332023011],
- [0.357638079951977,-1.33108149877570],
- [-0.891418825216945,-2.22650083183366],
- [-1.77646467793627,-2.89359299718574],
- [-2.24614790863088,-2.97921619243347],
- [-2.29048879096607,-2.30003092779280],
- [-1.87929656465888,-1.05298381273274],
- [-1.04510101454788,0.215837488618531],
- [0.00413338508394524,0.937866257924888],
- [0.906870625251025,0.92664365343019],
- [1.33869057593416,0.518564571494679],
- [1.22659678454440,0.288096869652890],
- [0.79380139656044,0.541053084632774],
- [0.38029431865832,1.01905199983437],
- [0.183929413600038,1.10529586616777],
- [0.140045425897033,0.393618564826736],
- [0.0337313182352219,-0.86431819007665],
- [-0.269208622829813,-1.85638085246792],
- [-0.687276639992166,-1.82275359004533],
- [-1.00161592325614,-0.692695765071617],
- [-1.06320089194036,0.803577361347341],
- [-0.927152307196776,1.67366338751788],
- [-0.786802101366614,1.42564362251793],
- [-0.772970884572502,0.426446388877964],
- [-0.81275662801789,-0.437721213831647],
- [-0.686831250382476,-0.504255468075149],
- [-0.237936463020255,0.148656301898438],
- [0.459631879129522,0.832925905720478],
- [1.12717379822508,0.889455302576383],
- [1.48640453200855,0.268042676202216],
- [1.46515245776211,-0.446505038539178],
- [1.22993484959115,-0.563868578181134],
- [1.0272100765927,0.0996849952196907],
- [0.979191212438404,1.05053652824665],
- [1.00733490030391,1.51658415000556],
- [0.932192535457706,1.06262774912638],
- [0.643374300839414,-0.0865180803476065],
- [0.186885168954461,-1.24799408923277],
- [-0.290842337365465,-1.80035611156538],
- [-0.669446735516495,-1.58847333561510],
- [-0.928915624595538,-0.932116966867929],
- [-1.11758635926997,-0.307879396807850],
- [-1.26832454569756,-0.00856199983957032],
- [-1.35755577149251,-0.0303537516690989],
- [-1.34244112665546,-0.196807620887435],
- [-1.22227976023299,-0.342062643495923],
- [-1.04601473486818,-0.390474392372016],
- [-0.85158508717846,-0.322164402093596],
- [-0.605033439160543,-0.126930141915954],
- [-0.218304303942818,0.179551077808122],
- [0.352173017779006,0.512327303000081],
- [1.01389600097229,0.733397490572755],
- [1.55149778750607,0.748740387440165],
- [1.75499674757591,0.601759717901009],
- [1.56636057468633,0.457705308377562],
- [1.12239792537274,0.470849913286519],
- [0.655802600286141,0.646142040378738],
- [0.335285115340180,0.824103600255079],
- [0.173454596506888,0.808068498175582],
- [0.0666753011315252,0.521488214487996],
- [-0.0842367474816212,0.0583493276173476],
- [-0.285604762631464,-0.405958418332253],
- [-0.465735422869919,-0.747800086512926],
- [-0.563586691231348,-0.94982272350799],
- [-0.598110322024572,-1.04736894794361],
- [-0.65216025756061,-1.04858365218822],
- [-0.789663117801624,-0.924145633093637],
- [-0.984704045337959,-0.670740724179446],
- [-1.12449565589348,-0.359476803003931],
- [-1.07878318723543,-0.092290938944355],
- [-0.775555435407062,0.102132527529259],
- [-0.231610677329856,0.314409560305622],
- [0.463192794235131,0.663523546243286],
- [1.17416973448423,1.13156902460931],
- [1.74112278814906,1.48967153067024],
- [2.00320855757084,1.42571085941843],
- [1.8529912317336,0.802460519079555],
- [1.30747261947211,-0.169219078629572],
- [0.540237070403222,-1.01621539672694],
- [-0.177136817092375,-1.3130784867977],
- [-0.611981468823591,-0.982477824460773],
- [-0.700240028737747,-0.344919609255406],
- [-0.572396497740112,0.125083535035390],
- [-0.450934466600975,0.142553112732280],
- [-0.494020014254326,-0.211429053871656],
- [-0.701707589094918,-0.599602868825992],
- [-0.94721339346157,-0.710669870591623],
- [-1.09297139748946,-0.47846194092245],
- [-1.08850658866583,-0.082258450179988],
- [-0.976082880696692,0.235758921309309],
- [-0.81885695346771,0.365298185204303],
- [-0.63165529525553,0.384725179378064],
- [-0.37983149226421,0.460240196164378],
- [-0.0375551354277652,0.68580913832794],
- [0.361996927427804,0.984470835955107],
- [0.739920615366072,1.13195975020298],
- [1.03583478061534,0.88812510421667],
- [1.25614938962160,0.172561520611839],
- [1.45295030231799,-0.804979390544485],
- [1.64887158748426,-1.55662011197859],
- [1.78022721495313,-1.52921975346218],
- [1.71945683859668,-0.462240366424548],
- [1.36728880239190,1.31213774341268],
- [0.740173894315912,2.88362740582926],
- [-0.0205364331835904,3.20319080963167],
- [-0.725643970956428,1.75222466531151],
- [-1.23900506689782,-0.998432917440275],
- [-1.52651897508678,-3.72752870885448],
- [-1.62857516631435,-5.00551707196292],
- [-1.59657420180451,-4.18499132634584],
- [-1.45489013276495,-1.81759097305637],
- [-1.21309542313047,0.722029457352468]])
- dta = macrodata.load().data[['tbilrate','infl']].view((float,2))[1:]
- cyc, trend = cffilter(dta)
- assert_almost_equal(cyc, cfilt_res, 8)
- #do 1d
- cyc, trend = cffilter(dta[:,1])
- assert_almost_equal(cyc, cfilt_res[:,1], 8)
-
-if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb'], exit=False)
diff --git a/statsmodels/scikits/statsmodels/tsa/interp/__init__.py b/statsmodels/scikits/statsmodels/tsa/interp/__init__.py
deleted file mode 100644
index e56cf91..0000000
--- a/statsmodels/scikits/statsmodels/tsa/interp/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from denton import dentonm
diff --git a/statsmodels/scikits/statsmodels/tsa/interp/denton.py b/statsmodels/scikits/statsmodels/tsa/interp/denton.py
deleted file mode 100644
index b3d6a02..0000000
--- a/statsmodels/scikits/statsmodels/tsa/interp/denton.py
+++ /dev/null
@@ -1,313 +0,0 @@
-
-import numpy as np
-from numpy import (dot, eye, diag_indices, zeros, column_stack, ones, diag,
- asarray, r_)
-from numpy.linalg import inv, solve
-#from scipy.linalg import block_diag
-from scipy import linalg
-
-#def denton(indicator, benchmark, freq="aq", **kwarg):
-# """
-# Denton's method to convert low-frequency to high frequency data.
-#
-# Parameters
-# ----------
-# benchmark : array-like
-# The higher frequency benchmark. A 1d or 2d data series in columns.
-# If 2d, then M series are assumed.
-# indicator
-# A low-frequency indicator series. It is assumed that there are no
-# pre-sample indicators. Ie., the first indicators line up with
-# the first benchmark.
-# freq : str {"aq","qm", "other"}
-# "aq" - Benchmarking an annual series to quarterly.
-# "mq" - Benchmarking a quarterly series to monthly.
-# "other" - Custom stride. A kwarg, k, must be supplied.
-# kwargs :
-# k : int
-# The number of high-frequency observations that sum to make an
-# aggregate low-frequency observation. `k` is used with
-# `freq` == "other".
-# Returns
-# -------
-# benchmarked series : array
-#
-# Notes
-# -----
-# Denton's method minimizes the distance given by the penalty function, in
-# a least squares sense, between the unknown benchmarked series and the
-# indicator series subject to the condition that the sum of the benchmarked
-# series is equal to the benchmark.
-#
-#
-# References
-# ----------
-# Bloem, A.M, Dippelsman, R.J. and Maehle, N.O. 2001 Quarterly National
-# Accounts Manual--Concepts, Data Sources, and Compilation. IMF.
-# http://www.imf.org/external/pubs/ft/qna/2000/Textbook/index.htm
-# Denton, F.T. 1971. "Adjustment of monthly or quarterly series to annual
-# totals: an approach based on quadratic minimization." Journal of the
-# American Statistical Association. 99-102.
-#
-# """
-# # check arrays and make 2d
-# indicator = np.asarray(indicator)
-# if indicator.ndim == 1:
-# indicator = indicator[:,None]
-# benchmark = np.asarray(benchmark)
-# if benchmark.ndim == 1:
-# benchmark = benchmark[:,None]
-#
-# # get dimensions
-# N = len(indicator) # total number of high-freq
-# m = len(benchmark) # total number of low-freq
-#
-# # number of low-freq observations for aggregate measure
-# # 4 for annual to quarter and 3 for quarter to monthly
-# if freq == "aq":
-# k = 4
-# elif freq == "qm":
-# k = 3
-# elif freq == "other":
-# k = kwargs.get("k")
-# if not k:
-# raise ValueError("k must be supplied with freq=\"other\"")
-# else:
-# raise ValueError("freq %s not understood" % freq)
-#
-# n = k*m # number of indicator series with a benchmark for back-series
-# # if k*m != n, then we are going to extrapolate q observations
-#
-# B = block_diag(*(np.ones((k,1)),)*m)
-#
-# r = benchmark - B.T.dot(indicator)
-#TODO: take code in the string at the end and implement Denton's original
-# method with a few of the penalty functions.
-
-
-def dentonm(indicator, benchmark, freq="aq", **kwargs):
- """
- Modified Denton's method to convert low-frequency to high-frequency data.
-
- Uses proportionate first-differences as the penalty function. See notes.
-
- Parameters
- ----------
- indicator
- A low-frequency indicator series. It is assumed that there are no
- pre-sample indicators. Ie., the first indicators line up with
- the first benchmark.
- benchmark : array-like
- The higher frequency benchmark. A 1d or 2d data series in columns.
- If 2d, then M series are assumed.
- freq : str {"aq","qm", "other"}
- "aq" - Benchmarking an annual series to quarterly.
- "mq" - Benchmarking a quarterly series to monthly.
- "other" - Custom stride. A kwarg, k, must be supplied.
- kwargs :
- k : int
- The number of high-frequency observations that sum to make an
- aggregate low-frequency observation. `k` is used with
- `freq` == "other".
- Returns
- -------
- benchmarked series : array
-
- Examples
- --------
- >>> indicator = [50,100,150,100] * 5
- >>> benchmark = [500,400,300,400,500]
- >>> benchmarked = dentonm(indicator, benchmark, freq="aq")
-
-
-
-
- Notes
- -----
- Denton's method minimizes the distance given by the penalty function, in
- a least squares sense, between the unknown benchmarked series and the
- indicator series subject to the condition that the sum of the benchmarked
- series is equal to the benchmark. The modification allows that the first
- value not be pre-determined as is the case with Denton's original method.
- If the there is no benchmark provided for the last few indicator
- observations, then extrapolation is performed using the last
- benchmark-indicator ratio of the previous period.
-
- Minimizes sum((X[t]/I[t] - X[t-1]/I[t-1])**2)
-
- s.t.
-
- sum(X) = A, for each period. Where X is the benchmarked series, I is
- the indicator, and A is the benchmark.
-
-
- References
- ----------
- Bloem, A.M, Dippelsman, R.J. and Maehle, N.O. 2001 Quarterly National
- Accounts Manual--Concepts, Data Sources, and Compilation. IMF.
- http://www.imf.org/external/pubs/ft/qna/2000/Textbook/index.htm
- Cholette, P. 1988. "Benchmarking systems of socio-economic time series."
- Statistics Canada, Time Series Research and Analysis Division,
- Working Paper No TSRA-88-017E.
- Denton, F.T. 1971. "Adjustment of monthly or quarterly series to annual
- totals: an approach based on quadratic minimization." Journal of the
- American Statistical Association. 99-102.
- """
-# penalty : str
-# Penalty function. Can be "D1", "D2", "D3", "D4", "D5".
-# X is the benchmarked series and I is the indicator.
-# D1 - sum((X[t] - X[t-1]) - (I[t] - I[ti-1])**2)
-# D2 - sum((ln(X[t]/X[t-1]) - ln(I[t]/I[t-1]))**2)
-# D3 - sum((X[t]/X[t-1] / I[t]/I[t-1])**2)
-# D4 - sum((X[t]/I[t] - X[t-1]/I[t-1])**2)
-# D5 - sum((X[t]/I[t] / X[t-1]/I[t-1] - 1)**2)
-#NOTE: only D4 is the only one implemented, see IMF chapter 6.
-
-
- # check arrays and make 2d
- indicator = asarray(indicator)
- if indicator.ndim == 1:
- indicator = indicator[:,None]
- benchmark = asarray(benchmark)
- if benchmark.ndim == 1:
- benchmark = benchmark[:,None]
-
- # get dimensions
- N = len(indicator) # total number of high-freq
- m = len(benchmark) # total number of low-freq
-
- # number of low-freq observations for aggregate measure
- # 4 for annual to quarter and 3 for quarter to monthly
- if freq == "aq":
- k = 4
- elif freq == "qm":
- k = 3
- elif freq == "other":
- k = kwargs.get("k")
- if not k:
- raise ValueError("k must be supplied with freq=\"other\"")
- else:
- raise ValueError("freq %s not understood" % freq)
-
- n = k*m # number of indicator series with a benchmark for back-series
- # if k*m != n, then we are going to extrapolate q observations
- if N > n:
- q = N - n
- else:
- q = 0
-
- # make the aggregator matrix
- #B = block_diag(*(ones((k,1)),)*m)
- B = np.kron(np.eye(m), ones((k,1)))
-
- # following the IMF paper, we can do
- Zinv = diag(1./indicator.squeeze()[:n])
- # this is D in Denton's notation (not using initial value correction)
-# D = eye(n)
- # make off-diagonal = -1
-# D[((np.diag_indices(n)[0])[:-1]+1,(np.diag_indices(n)[1])[:-1])] = -1
- # account for starting conditions
-# H = D[1:,:]
-# HTH = dot(H.T,H)
- # just make HTH
- HTH = eye(n)
- diag_idx0, diag_idx1 = diag_indices(n)
- HTH[diag_idx0[1:-1], diag_idx1[1:-1]] += 1
- HTH[diag_idx0[:-1]+1, diag_idx1[:-1]] = -1
- HTH[diag_idx0[:-1], diag_idx1[:-1]+1] = -1
-
- W = dot(dot(Zinv,HTH),Zinv)
-
- # make partitioned matrices
- #TODO: break this out so that we can simplify the linalg?
- I = zeros((n+m,n+m))
- I[:n,:n] = W
- I[:n,n:] = B
- I[n:,:n] = B.T
-
- A = zeros((m+n,1)) # zero first-order constraints
- A[-m:] = benchmark # adding up constraints
- X = solve(I,A)
- X = X[:-m] # drop the lagrange multipliers
-
- # handle extrapolation
- if q > 0:
- # get last Benchmark-Indicator ratio
- bi = X[n-1]/indicator[n-1]
- extrapolated = bi * indicator[n:]
- X = r_[X,extrapolated]
-
- return X.squeeze()
-
-if __name__ == "__main__":
- import numpy as np
- #these will be the tests
- # from IMF paper
-
- # quarterly data
- indicator = np.array([98.2, 100.8, 102.2, 100.8, 99.0, 101.6,
- 102.7, 101.5, 100.5, 103.0, 103.5, 101.5])
- # two annual observations
- benchmark = np.array([4000.,4161.4])
- x_imf = dentonm(indicator, benchmark, freq="aq")
-
- imf_stata = np.array([969.8, 998.4, 1018.3, 1013.4, 1007.2, 1042.9,
- 1060.3, 1051.0, 1040.6, 1066.5, 1071.7, 1051.0])
- np.testing.assert_almost_equal(imf_stata, x_imf, 1)
-
- # Denton example
- zQ = np.array([50,100,150,100] * 5)
- Y = np.array([500,400,300,400,500])
- x_denton = dentonm(zQ, Y, freq="aq")
- x_stata = np.array([64.334796,127.80616,187.82379,120.03526,56.563894,
- 105.97568,147.50144,89.958987,40.547201,74.445963,
- 108.34473,76.66211,42.763347,94.14664,153.41596,
- 109.67405,58.290761,122.62556,190.41409,128.66959])
-
-
-"""
-# Examples from the Denton 1971 paper
-k = 4
-m = 5
-n = m*k
-
-zQ = [50,100,150,100] * m
-Y = [500,400,300,400,500]
-
-A = np.eye(n)
-B = block_diag(*(np.ones((k,1)),)*m)
-
-r = Y - B.T.dot(zQ)
-#Ainv = inv(A)
-Ainv = A # shortcut for identity
-C = Ainv.dot(B).dot(inv(B.T.dot(Ainv).dot(B)))
-x = zQ + C.dot(r)
-
-# minimize first difference d(x-z)
-R = linalg.tri(n, dtype=float) # R is tril so actually R.T in paper
-Ainv = R.dot(R.T)
-C = Ainv.dot(B).dot(inv(B.T.dot(Ainv).dot(B)))
-x1 = zQ + C.dot(r)
-
-# minimize the second difference d**2(x-z)
-Ainv = R.dot(Ainv).dot(R.T)
-C = Ainv.dot(B).dot(inv(B.T.dot(Ainv).dot(B)))
-x12 = zQ + C.dot(r)
-
-
-# # do it proportionately (x-z)/z
-Z = np.diag(zQ)
-Ainv = np.eye(n)
-C = Z.dot(Ainv).dot(Z).dot(B).dot(inv(B.T.dot(Z).dot(Ainv).dot(Z).dot(B)))
-x11 = zQ + C.dot(r)
-
-# do it proportionately with differencing d((x-z)/z)
-Ainv = R.dot(R.T)
-C = Z.dot(Ainv).dot(Z).dot(B).dot(inv(B.T.dot(Z).dot(Ainv).dot(Z).dot(B)))
-x111 = zQ + C.dot(r)
-
-x_stata = np.array([64.334796,127.80616,187.82379,120.03526,56.563894,
- 105.97568,147.50144,89.958987,40.547201,74.445963,
- 108.34473,76.66211,42.763347,94.14664,153.41596,
- 109.67405,58.290761,122.62556,190.41409,128.66959])
-"""
diff --git a/statsmodels/scikits/statsmodels/tsa/interp/tests/test_denton.py b/statsmodels/scikits/statsmodels/tsa/interp/tests/test_denton.py
deleted file mode 100644
index aef0c13..0000000
--- a/statsmodels/scikits/statsmodels/tsa/interp/tests/test_denton.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import numpy as np
-from scikits.statsmodels.tsa.interp import dentonm
-
-def test_denton_quarterly():
- # Data and results taken from IMF paper
- indicator = np.array([98.2, 100.8, 102.2, 100.8, 99.0, 101.6,
- 102.7, 101.5, 100.5, 103.0, 103.5, 101.5])
- benchmark = np.array([4000.,4161.4])
- x_imf = dentonm(indicator, benchmark, freq="aq")
- imf_stata = np.array([969.8, 998.4, 1018.3, 1013.4, 1007.2, 1042.9,
- 1060.3, 1051.0, 1040.6, 1066.5, 1071.7, 1051.0])
- np.testing.assert_almost_equal(imf_stata, x_imf, 1)
-
-def test_denton_quarterly2():
- # Test denton vs stata. Higher precision than other test.
- zQ = np.array([50,100,150,100] * 5)
- Y = np.array([500,400,300,400,500])
- x_denton = dentonm(zQ, Y, freq="aq")
- x_stata = np.array([64.334796,127.80616,187.82379,120.03526,56.563894,
- 105.97568,147.50144,89.958987,40.547201,74.445963,
- 108.34473,76.66211,42.763347,94.14664,153.41596,
- 109.67405,58.290761,122.62556,190.41409,128.66959])
- np.testing.assert_almost_equal(x_denton, x_stata, 5)
-
-if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__,'-vvs','-x', '--pdb'], exit=False)
diff --git a/statsmodels/scikits/statsmodels/tsa/kalmanf/__init__.py b/statsmodels/scikits/statsmodels/tsa/kalmanf/__init__.py
deleted file mode 100644
index 7d91abc..0000000
--- a/statsmodels/scikits/statsmodels/tsa/kalmanf/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from kalmanfilter import KalmanFilter
diff --git a/statsmodels/scikits/statsmodels/tsa/kalmanf/kalman_loglike.pyx b/statsmodels/scikits/statsmodels/tsa/kalmanf/kalman_loglike.pyx
deleted file mode 100644
index c1e1350..0000000
--- a/statsmodels/scikits/statsmodels/tsa/kalmanf/kalman_loglike.pyx
+++ /dev/null
@@ -1,141 +0,0 @@
-# cython: profile=True
-from numpy cimport float64_t, ndarray, complex128_t, complex64_t
-from numpy import log as nplog
-from numpy import identity, dot, kron, zeros, pi, exp, eye, sum, empty, ones
-from numpy.linalg import pinv
-cimport cython
-
-ctypedef float64_t DOUBLE
-ctypedef complex128_t COMPLEX128
-ctypedef complex64_t COMPLEX64
-
-cdef extern from "math.h":
- double log(double x)
-
-@cython.boundscheck(False)
-@cython.wraparound(False)
-@cython.cdivision(True)
-def kalman_filter_double(ndarray[DOUBLE, ndim=1] y,
- unsigned int k, unsigned int p, unsigned int q,
- unsigned int r, unsigned int nobs,
- ndarray[DOUBLE, ndim=2] Z_mat,
- ndarray[DOUBLE, ndim=2] R_mat,
- ndarray[DOUBLE, ndim=2] T_mat):
- """
- Cython version of the Kalman filter recursions for an ARMA process.
- """
- m = Z_mat.shape[1]
- # store forecast-errors
- v = zeros((nobs,1))
- # store variance of forecast errors
- F = ones((nobs,1))
- loglikelihood = zeros((1,1))
- cdef int i = 0
- # initial state
-# cdef np.ndarray[DOUBLE, ndim=2] alpha = zeros((m,1))
- alpha = zeros((m,1))
- # initial variance
- P = dot(pinv(identity(m**2)-kron(T_mat, T_mat)),dot(R_mat,
- R_mat.T).ravel('F')).reshape(r,r, order='F')
- F_mat = 0
- while not F_mat == 1 and i < nobs:
- # Predict
- v_mat = y[i] - dot(Z_mat,alpha) # one-step forecast error
- v[i] = v_mat
- F_mat = dot(dot(Z_mat, P), Z_mat.T)
- F[i] = F_mat
- Finv = 1./F_mat # always scalar for univariate series
- K = dot(dot(dot(T_mat,P),Z_mat.T),Finv) # Kalman Gain Matrix
- # update state
- alpha = dot(T_mat, alpha) + dot(K,v_mat)
- L = T_mat - dot(K,Z_mat)
- P = dot(dot(T_mat, P), L.T) + dot(R_mat, R_mat.T)
- loglikelihood += log(F_mat)
- i+=1
- for i in xrange(i,nobs):
- v_mat = y[i] - dot(Z_mat,alpha)
- v[i] = v_mat
- alpha = dot(T_mat, alpha) + dot(K, v_mat)
- return v, F, loglikelihood
-
-@cython.boundscheck(False)
-@cython.wraparound(False)
-@cython.cdivision(True)
-def kalman_filter_complex(ndarray[COMPLEX128, ndim=1] y,
- unsigned int k, unsigned int p, unsigned int q,
- unsigned int r, unsigned int nobs,
- ndarray[DOUBLE, ndim=2] Z_mat,
- ndarray[COMPLEX128, ndim=2] R_mat,
- ndarray[COMPLEX128, ndim=2] T_mat):
- """
- Cython version of the Kalman filter recursions for an ARMA process.
- """
- m = Z_mat.shape[1]
- # store forecast-errors
- v = zeros((nobs,1), dtype=complex)
- # store variance of forecast errors
- F = ones((nobs,1), dtype=complex)
- loglikelihood = zeros((1,1), dtype=complex)
- cdef int i = 0
- # initial state
-# cdef np.ndarray[DOUBLE, ndim=2] alpha = zeros((m,1))
- alpha = zeros((m,1))
- # initial variance
- P = dot(pinv(identity(m**2)-kron(T_mat, T_mat)),dot(R_mat,
- R_mat.T).ravel('F')).reshape(r,r, order='F')
- F_mat = 0
- while not F_mat == 1 and i < nobs:
- # Predict
- v_mat = y[i] - dot(Z_mat,alpha) # one-step forecast error
- v[i] = v_mat
- F_mat = dot(dot(Z_mat, P), Z_mat.T)
- F[i] = F_mat
- Finv = 1./F_mat # always scalar for univariate series
- K = dot(dot(dot(T_mat,P),Z_mat.T),Finv) # Kalman Gain Matrix
- # update state
- alpha = dot(T_mat, alpha) + dot(K,v_mat)
- L = T_mat - dot(K,Z_mat)
- P = dot(dot(T_mat, P), L.T) + dot(R_mat, R_mat.T)
- loglikelihood += nplog(F_mat)
- i+=1
- for i in xrange(i,nobs):
- v_mat = y[i] - dot(Z_mat,alpha)
- v[i] = v_mat
- alpha = dot(T_mat, alpha) + dot(K, v_mat)
- return v,F,loglikelihood
-
-@cython.boundscheck(False)
-@cython.wraparound(False)
-@cython.cdivision(True)
-def kalman_loglike_double(ndarray[DOUBLE, ndim=1] y,
- unsigned int k, unsigned int p, unsigned int q,
- unsigned int r, unsigned int nobs,
- ndarray[DOUBLE, ndim=2] Z_mat,
- ndarray[DOUBLE, ndim=2] R_mat,
- ndarray[DOUBLE, ndim=2] T_mat):
- """
- Cython version of the Kalman filter recursions for an ARMA process.
- """
- v, F, loglikelihood = kalman_filter_double(y,k,p,q,r,nobs,Z_mat,R_mat,T_mat)
- sigma2 = 1./nobs * sum(v**2 / F)
- loglike = -.5 *(loglikelihood + nobs*log(sigma2))
- loglike -= nobs/2. * (log(2*pi) + 1)
- return loglike, sigma2
-
-@cython.boundscheck(False)
-@cython.wraparound(False)
-@cython.cdivision(True)
-def kalman_loglike_complex(ndarray[COMPLEX128, ndim=1] y,
- unsigned int k, unsigned int p, unsigned int q,
- unsigned int r, unsigned int nobs,
- ndarray[DOUBLE, ndim=2] Z_mat,
- ndarray[COMPLEX128, ndim=2] R_mat,
- ndarray[COMPLEX128, ndim=2] T_mat):
- """
- Cython version of the Kalman filter recursions for an ARMA process.
- """
- v,F,loglikelihood = kalman_filter_complex(y,k,p,q,r,nobs,Z_mat,R_mat,T_mat)
- sigma2 = 1./nobs * sum(v**2 / F)
- loglike = -.5 *(loglikelihood + nobs*log(sigma2))
- loglike -= nobs/2. * (log(2*pi) + 1)
- return loglike, sigma2
diff --git a/statsmodels/scikits/statsmodels/tsa/kalmanf/kalmanfilter.py b/statsmodels/scikits/statsmodels/tsa/kalmanf/kalmanfilter.py
deleted file mode 100644
index e3fd911..0000000
--- a/statsmodels/scikits/statsmodels/tsa/kalmanf/kalmanfilter.py
+++ /dev/null
@@ -1,920 +0,0 @@
-"""
-State Space Analysis using the Kalman Filter
-
-References
------------
-Durbin., J and Koopman, S.J. `Time Series Analysis by State Space Methods`.
- Oxford, 2001.
-
-Hamilton, J.D. `Time Series Analysis`. Princeton, 1994.
-
-Harvey, A.C. `Forecasting, Structural Time Series Models and the Kalman Filter`.
- Cambridge, 1989.
-
-Notes
------
-This file follows Hamilton's notation pretty closely.
-The ARMA Model class follows Durbin and Koopman notation.
-Harvey uses Durbin and Koopman notation.
-"""
-#Anderson and Moore `Optimal Filtering` provides a more efficient algorithm
-# namely the information filter
-# if the number of series is much greater than the number of states
-# e.g., with a DSGE model. See also
-# http://www.federalreserve.gov/pubs/oss/oss4/aimindex.html
-# Harvey notes that the square root filter will keep P_t pos. def. but
-# is not strictly needed outside of the engineering (long series)
-
-import numpy as np
-from numpy import dot, identity, kron, log, zeros, pi, exp, eye, issubdtype, ones
-from numpy.linalg import inv, pinv
-from scikits.statsmodels.tools.tools import chain_dot
-try:
- from . import kalman_loglike
- fast_kalman = 1
-except:
- fast_kalman = 0
-#TODO: change to use only Cython when we switch
-
-#Fast filtering and smoothing for multivariate state space models
-# and The Riksbank -- Strid and Walentin (2008)
-# Block Kalman filtering for large-scale DSGE models
-# but this is obviously macro model specific
-
-def _init_diffuse(T,R):
- m = T.shape[1] # number of states
- r = R.shape[1] # should also be the number of states?
- Q_0 = dot(inv(identity(m**2)-kron(T,T)),dot(R,R.T).ravel('F'))
- return zeros((m,1)), Q_0.reshape(r,r,order='F')
-
-
-def kalmansmooth(F, A, H, Q, R, y, X, xi10):
- pass
-
-def kalmanfilter(F, A, H, Q, R, y, X, xi10, ntrain, history=False):
- """
- Returns the negative log-likelihood of y conditional on the information set
-
- Assumes that the initial state and all innovations are multivariate
- Gaussian.
-
- Parameters
- -----------
- F : array-like
- The (r x r) array holding the transition matrix for the hidden state.
- A : array-like
- The (nobs x k) array relating the predetermined variables to the
- observed data.
- H : array-like
- The (nobs x r) array relating the hidden state vector to the
- observed data.
- Q : array-like
- (r x r) variance/covariance matrix on the error term in the hidden
- state transition.
- R : array-like
- (nobs x nobs) variance/covariance of the noise in the observation
- equation.
- y : array-like
- The (nobs x 1) array holding the observed data.
- X : array-like
- The (nobs x k) array holding the predetermined variables data.
- xi10 : array-like
- Is the (r x 1) initial prior on the initial state vector.
- ntrain : int
- The number of training periods for the filter. This is the number of
- observations that do not affect the likelihood.
-
-
- Returns
- -------
- likelihood
- The negative of the log likelihood
- history or priors, history of posterior
- If history is True.
-
- Notes
- -----
- No input checking is done.
- """
-# uses log of Hamilton 13.4.1
- F = np.asarray(F)
- H = np.atleast_2d(np.asarray(H))
- n = H.shape[1] # remember that H gets transposed
- y = np.asarray(y)
- A = np.asarray(A)
- X = np.asarray(X)
- if y.ndim == 1: # note that Y is in rows for now
- y = y[:,None]
- nobs = y.shape[0]
- xi10 = np.atleast_2d(np.asarray(xi10))
-# if xi10.ndim == 1:
-# xi10[:,None]
- if history:
- state_vector = [xi10]
- Q = np.asarray(Q)
- r = xi10.shape[0]
-# Eq. 12.2.21, other version says P0 = Q
-# p10 = np.dot(np.linalg.inv(np.eye(r**2)-np.kron(F,F)),Q.ravel('F'))
-# p10 = np.reshape(P0, (r,r), order='F')
-# Assume a fixed, known intial point and set P0 = Q
-#TODO: this looks *slightly * different than Durbin-Koopman exact likelihood
-# initialization p 112 unless I've misunderstood the notational translation.
- p10 = Q
-
- loglikelihood = 0
- for i in range(nobs):
- HTPHR = np.atleast_1d(np.squeeze(chain_dot(H.T,p10,H)+R))
-# print HTPHR
-# print HTPHR.ndim
-# print HTPHR.shape
- if HTPHR.ndim == 1:
- HTPHRinv = 1./HTPHR
- else:
- HTPHRinv = np.linalg.inv(HTPHR) # correct
-# print A.T
-# print X
-# print H.T
-# print xi10
-# print y[i]
- part1 = y[i] - np.dot(A.T,X) - np.dot(H.T,xi10) # correct
- if i >= ntrain: # zero-index, but ntrain isn't
- HTPHRdet = np.linalg.det(np.atleast_2d(HTPHR)) # correct
- part2 = -.5*chain_dot(part1.T,HTPHRinv,part1) # correct
-#TODO: Need to test with ill-conditioned problem.
- loglike_interm = (-n/2.) * np.log(2*np.pi) - .5*\
- np.log(HTPHRdet) + part2
- loglikelihood += loglike_interm
-
- # 13.2.15 Update current state xi_t based on y
- xi11 = xi10 + chain_dot(p10, H, HTPHRinv, part1)
- # 13.2.16 MSE of that state
- p11 = p10 - chain_dot(p10, H, HTPHRinv, H.T, p10)
- # 13.2.17 Update forecast about xi_{t+1} based on our F
- xi10 = np.dot(F,xi11)
- if history:
- state_vector.append(xi10)
- # 13.2.21 Update the MSE of the forecast
- p10 = chain_dot(F,p11,F.T) + Q
- if not history:
- return -loglikelihood
- else:
- return -loglikelihood, np.asarray(state_vector[:-1])
-
-#TODO: this works if it gets refactored, but it's not quite as accurate
-# as KalmanFilter
-# def loglike_exact(self, params):
-# """
-# Exact likelihood for ARMA process.
-#
-# Notes
-# -----
-# Computes the exact likelihood for an ARMA process by modifying the
-# conditional sum of squares likelihood as suggested by Shephard (1997)
-# "The relationship between the conditional sum of squares and the exact
-# likelihood for autoregressive moving average models."
-# """
-# p = self.p
-# q = self.q
-# k = self.k
-# y = self.endog.copy()
-# nobs = self.nobs
-# if self.transparams:
-# newparams = self._transparams(params)
-# else:
-# newparams = params
-# if k > 0:
-# y -= dot(self.exog, newparams[:k])
-# if p != 0:
-# arcoefs = newparams[k:k+p][::-1]
-# T = KalmanFilter.T(arcoefs)
-# else:
-# arcoefs = 0
-# if q != 0:
-# macoefs = newparams[k+p:k+p+q][::-1]
-# else:
-# macoefs = 0
-# errors = [0] * q # psuedo-errors
-# rerrors = [1] * q # error correction term
-# # create pseudo-error and error correction series iteratively
-# for i in range(p,len(y)):
-# errors.append(y[i]-sum(arcoefs*y[i-p:i])-\
-# sum(macoefs*errors[i-q:i]))
-# rerrors.append(-sum(macoefs*rerrors[i-q:i]))
-# errors = np.asarray(errors)
-# rerrors = np.asarray(rerrors)
-#
-# # compute bayesian expected mean and variance of initial errors
-# one_sumrt2 = 1 + np.sum(rerrors**2)
-# sum_errors2 = np.sum(errors**2)
-# mup = -np.sum(errors * rerrors)/one_sumrt2
-#
-# # concentrating out the ML estimator of "true" sigma2 gives
-# sigma2 = 1./(2*nobs) * (sum_errors2 - mup**2*(one_sumrt2))
-#
-# # which gives a variance of the initial errors of
-# sigma2p = sigma2/one_sumrt2
-#
-# llf = -(nobs-p)/2. * np.log(2*pi*sigma2) - 1./(2*sigma2)*sum_errors2 \
-# + 1./2*log(one_sumrt2) + 1./(2*sigma2) * mup**2*one_sumrt2
-# Z_mat = KalmanFilter.Z(r)
-# R_mat = KalmanFilter.R(newparams, r, k, q, p)
-# T_mat = KalmanFilter.T(newparams, r, k, p)
-# # initial state and its variance
-# alpha = zeros((m,1))
-# Q_0 = dot(inv(identity(m**2)-kron(T_mat,T_mat)),
-# dot(R_mat,R_mat.T).ravel('F'))
-# Q_0 = Q_0.reshape(r,r,order='F')
-# P = Q_0
-# v = zeros((nobs,1))
-# F = zeros((nobs,1))
-# B = array([T_mat, 0], dtype=object)
-#
-#
-# for i in xrange(int(nobs)):
-# v_mat = (y[i],0) - dot(z_mat,B)
-#
-# B_0 = (T,0)
-# v_t = (y_t,0) - z*B_t
-# llf = -nobs/2.*np.log(2*pi*sigma2) - 1/(2.*sigma2)*se_n - \
-# 1/2.*logdet(Sigma_a) + 1/(2*sigma2)*s_n_prime*sigma_a*s_n
-# return llf
-#
-
-
-class StateSpaceModel(object):
- """
- Generic StateSpaceModel class. Meant to be a base class.
-
- This class lays out the methods that are to be defined by any child
- class.
-
- Parameters
- ----------
- endog : array-like
- An `nobs` x `p` array of observations
- exog : array-like, optional
- An `nobs` x `k` array of exogenous variables.
- **kwargs
- Anything provided to the constructor will be attached as an
- attribute.
-
- Notes
- -----
- The state space model is assumed to be of the form
-
- y[t] = Z[t].dot(alpha[t]) + epsilon[t]
- alpha[t+1] = T[t].dot(alpha[t]) + R[t].dot(eta[t])
-
- where
-
- epsilon[t] ~ N(0, H[t])
- eta[t] ~ N(0, Q[t])
- alpha[0] ~ N(a[0], P[0])
-
- Where y is the `p` x 1 observations vector, and alpha is the `m` x 1
- state vector.
-
- References
- -----------
- Durbin, J. and S.J. Koopman. 2001. `Time Series Analysis by State Space
- Methods.` Oxford.
- """
- def __init__(self, endog, exog=None, **kwargs):
- dict.__init__(self, kwargs)
- self.__dict__ = self
-
- endog = np.asarray(endog)
- if endog.ndim == 1:
- endog = endog[:,None]
- self.endog = endog
- p = endog.shape[1]
- self.p = nobs
- self.nobs = endog.shape[0]
- if exog:
- self.exog = exog
-
- def T(self, params):
- pass
-
- def R(self, params):
- pass
-
- def Z(self, params):
- pass
-
- def H(self, params):
- pass
-
- def Q(self, params):
- pass
-
- def _univariatefilter(self, params, init_state, init_var):
- """
- Implements the Kalman Filter recursions. Optimized for univariate case.
- """
- y = self.endog
- nobs = self.nobs
-
- R = self.R
- T = self.T
- Z = self.Z
- H = self.H
- Q = self.Q
- if not init_state and not init_var:
- alpha, P = _init_diffuse(T,R)
- #NOTE: stopped here
-
- def _univariatefilter_update(self):
- pass
- # does the KF but calls _update after each loop to update the matrices
- # for time-varying coefficients
-
- def kalmanfilter(self, params, init_state=None, init_var=None):
- """
- Runs the Kalman Filter
- """
- # determine if
- if self.p == 1:
- return _univariatefilter(init_state, init_var)
- else:
- raise ValueError("No multivariate filter written yet")
-
-
- def _updateloglike(self, params, xi10, ntrain, penalty, upperbounds, lowerbounds,
- F,A,H,Q,R, history):
- """
- """
- paramsorig = params
- # are the bounds binding?
- if penalty:
- params = np.min((np.max((lowerbounds, params), axis=0),upperbounds),
- axis=0)
- #TODO: does it make sense for all of these to be allowed to be None?
- if F != None and callable(F):
- F = F(params)
- elif F == None:
- F = 0
- if A != None and callable(A):
- A = A(params)
- elif A == None:
- A = 0
- if H != None and callable(H):
- H = H(params)
- elif H == None:
- H = 0
- print callable(Q)
- if Q != None and callable(Q):
- Q = Q(params)
- elif Q == None:
- Q = 0
- if R != None and callable(R):
- R = R(params)
- elif R == None:
- R = 0
- X = self.exog
- if X == None:
- X = 0
- y = self.endog
- loglike = kalmanfilter(F,A,H,Q,R,y,X, xi10, ntrain, history)
- # use a quadratic penalty function to move away from bounds
- if penalty:
- loglike += penalty * np.sum((paramsorig-params)**2)
- return loglike
-
-# r = self.r
-# n = self.n
-# F = np.diagonal(np.ones(r-1), k=-1) # think this will be wrong for VAR
- # cf. 13.1.22 but think VAR
-# F[0] = params[:p] # assumes first p start_params are coeffs
- # of obs. vector, needs to be nxp for VAR?
-# self.F = F
-# cholQ = np.diag(start_params[p:]) # fails for bivariate
- # MA(1) section
- # 13.4.2
-# Q = np.dot(cholQ,cholQ.T)
-# self.Q = Q
-# HT = np.zeros((n,r))
-# xi10 = self.xi10
-# y = self.endog
-# ntrain = self.ntrain
- # loglike = kalmanfilter(F,H,y,xi10,Q,ntrain)
-
- def fit_kalman(self, start_params, xi10, ntrain=1, F=None, A=None, H=None,
- Q=None,
- R=None, method="bfgs", penalty=True, upperbounds=None,
- lowerbounds=None):
- """
- Parameters
- ----------
- method : str
- Only "bfgs" is currently accepted.
- start_params : array-like
- The first guess on all parameters to be estimated. This can
- be in any order as long as the F,A,H,Q, and R functions handle
- the parameters appropriately.
- xi10 : arry-like
- The (r x 1) vector of initial states. See notes.
- F,A,H,Q,R : functions or array-like, optional
- If functions, they should take start_params (or the current
- value of params during iteration and return the F,A,H,Q,R matrices).
- See notes. If they are constant then can be given as array-like
- objects. If not included in the state-space representation then
- can be left as None. See example in class docstring.
- penalty : bool,
- Whether or not to include a penalty for solutions that violate
- the bounds given by `lowerbounds` and `upperbounds`.
- lowerbounds : array-like
- Lower bounds on the parameter solutions. Expected to be in the
- same order as `start_params`.
- upperbounds : array-like
- Upper bounds on the parameter solutions. Expected to be in the
- same order as `start_params`
- """
- y = self.endog
- ntrain = ntrain
- _updateloglike = self._updateloglike
- params = start_params
- if method.lower() == 'bfgs':
- (params, llf, score, cov_params, func_calls, grad_calls,
- warnflag) = optimize.fmin_bfgs(_updateloglike, params,
- args = (xi10, ntrain, penalty, upperbounds, lowerbounds,
- F,A,H,Q,R, False), gtol= 1e-8, epsilon=1e-5,
- full_output=1)
- #TODO: provide more options to user for optimize
- # Getting history would require one more call to _updatelikelihood
- self.params = params
- self.llf = llf
- self.gradient = score
- self.cov_params = cov_params # how to interpret this?
- self.warnflag = warnflag
-
-def updatematrices(params, y, xi10, ntrain, penalty, upperbound, lowerbound):
- """
- TODO: change API, update names
-
- This isn't general. Copy of Luca's matlab example.
- """
- paramsorig = params
- # are the bounds binding?
- params = np.min((np.max((lowerbound,params),axis=0),upperbound), axis=0)
- rho = params[0]
- sigma1 = params[1]
- sigma2 = params[2]
-
- F = np.array([[rho, 0],[0,0]])
- cholQ = np.array([[sigma1,0],[0,sigma2]])
- H = np.ones((2,1))
- q = np.dot(cholQ,cholQ.T)
- loglike = kalmanfilter(F,0,H,q,0, y, 0, xi10, ntrain)
- loglike = loglike + penalty*np.sum((paramsorig-params)**2)
- return loglike
-
-class KalmanFilter(object):
- """
- Kalman Filter code intended for use with the ARMA model.
-
- Notes
- -----
- The notation for the state-space form follows Durbin and Koopman (2001).
-
- The observation equations is
-
- .. math:: y_{t} = Z_{t}\\alpha_{t} + \\epsilon_{t}
-
- The state equation is
-
- .. math:: \\alpha_{t+1} = T_{t}\\alpha_{t} + R_{t}\\eta_{t}
-
- For the present purposed \epsilon_{t} is assumed to always be zero.
- """
-
- @classmethod
- def T(cls, params, r, k, p): # F in Hamilton
- """
- The coefficient matrix for the state vector in the state equation.
-
- Its dimension is r+k x r+k.
-
- Parameters
- ----------
- r : int
- In the context of the ARMA model r is max(p,q+1) where p is the
- AR order and q is the MA order.
- k : int
- The number of exogenous variables in the ARMA model, including
- the constant if appropriate.
- p : int
- The AR coefficient in an ARMA model.
-
- References
- ----------
- Durbin and Koopman Section 3.7.
- """
- arr = zeros((r,r), dtype=params.dtype) # allows for complex-step
- # derivative
- params_padded = zeros(r, dtype=params.dtype) # handle zero coefficients if necessary
- #NOTE: squeeze added for cg optimizer
- params_padded[:p] = params[k:p+k]
- arr[:,0] = params_padded # first p params are AR coeffs w/ short params
- arr[:-1,1:] = eye(r-1)
- return arr
-
- @classmethod
- def R(cls, params, r, k, q, p): # R is H in Hamilton
- """
- The coefficient matrix for the state vector in the observation equation.
-
- Its dimension is r+k x 1.
-
- Parameters
- ----------
- r : int
- In the context of the ARMA model r is max(p,q+1) where p is the
- AR order and q is the MA order.
- k : int
- The number of exogenous variables in the ARMA model, including
- the constant if appropriate.
- q : int
- The MA order in an ARMA model.
- p : int
- The AR order in an ARMA model.
-
- References
- ----------
- Durbin and Koopman Section 3.7.
- """
- arr = zeros((r,1), dtype=params.dtype) # this allows zero coefficients
- # dtype allows for compl. der.
- arr[1:q+1,:] = params[p+k:p+k+q][:,None]
- arr[0] = 1.0
- return arr
-
- @classmethod
- def Z(cls, r):
- """
- Returns the Z selector matrix in the observation equation.
-
- Parameters
- ----------
- r : int
- In the context of the ARMA model r is max(p,q+1) where p is the
- AR order and q is the MA order.
-
- Notes
- -----
- Currently only returns a 1 x r vector [1,0,0,...0]. Will need to
- be generalized when the Kalman Filter becomes more flexible.
- """
- arr = zeros((1,r))
- arr[:,0] = 1.
- return arr
-
- @classmethod
- def geterrors(cls, y, k, k_ar, k_ma, k_lags, nobs, Z_mat, m, R_mat, T_mat,
- paramsdtype):
- """
- Returns just the errors of the Kalman Filter
-
- Note that if fast_kalman isn't available this returns the errors,
- F, and loglikelihood for use in loglike.
- """
- if fast_kalman:
- if issubdtype(paramsdtype, float):
- return kalman_loglike.kalman_filter_double(y, k, k_ar, k_ma,
- k_lags, int(nobs), Z_mat, R_mat, T_mat)[0]
- elif issubdtype(paramsdtype, complex):
- return kalman_loglike.kalman_filter_complex(y, k, k_ar, k_ma,
- k_lags, int(nobs), Z_mat, R_mat, T_mat)[0]
- else:
- raise TypeError("dtype %s is not supported "
- "Please file a bug report" % paramsdtype)
- else:
- # initial state and its variance
- alpha = zeros((m,1)) # if constant (I-T)**-1 * c
- Q_0 = dot(inv(identity(m**2)-kron(T_mat,T_mat)),
- dot(R_mat,R_mat.T).ravel('F'))
- #TODO: above is only valid if Eigenvalues of T_mat are inside the
- # unit circle, if not then Q_0 = kappa * eye(m**2)
- # w/ kappa some large value say 1e7, but DK recommends not doing this
- # for a diffuse prior
- # Note that we enforce stationarity
- Q_0 = Q_0.reshape(k_lags,k_lags,order='F')
- P = Q_0
- sigma2 = 0
- loglikelihood = 0
- v = zeros((nobs,1), dtype=paramsdtype)
- F = ones((nobs,1), dtype=paramsdtype)
- #NOTE: can only do quick recursions if Z is time-invariant
- #so could have recursions for pure ARMA vs ARMAX
-# for i in xrange(int(nobs)):
- F_mat = 0
- i = 0
- while not F_mat == 1 and i < nobs:
- # Predict
- v_mat = y[i] - dot(Z_mat,alpha) # one-step forecast error
- v[i] = v_mat
- F_mat = dot(dot(Z_mat, P), Z_mat.T)
- F[i] = F_mat
- Finv = 1./F_mat # always scalar for univariate series
- K = dot(dot(dot(T_mat,P),Z_mat.T),Finv) # Kalman Gain Matrix
- # update state
- alpha = dot(T_mat, alpha) + dot(K,v_mat)
- L = T_mat - dot(K,Z_mat)
- P = dot(dot(T_mat, P), L.T) + dot(R_mat, R_mat.T)
- loglikelihood += log(F_mat)
- i += 1
- for i in xrange(i,int(nobs)):
- v_mat = y[i] - dot(Z_mat, alpha)
- v[i] = v_mat
- alpha = dot(T_mat, alpha) + dot(K, v_mat)
- return v, F, loglikelihood
-
- @classmethod
- def _init_kalman_state(cls, params, arma_model):
- """
- Returns the system matrices and other info needed for the
- Kalman Filter recursions
- """
- paramsdtype = params.dtype
- y = arma_model.endog.copy().astype(paramsdtype)
- k = arma_model.k_exog + arma_model.k_trend
- nobs = arma_model.nobs
- k_ar = arma_model.k_ar
- k_ma = arma_model.k_ma
- k_lags = arma_model.k_lags
-
- if arma_model.transparams:
- newparams = arma_model._transparams(params)
- else:
- newparams = params # don't need a copy if not modified.
-
- if k > 0:
- y -= dot(arma_model.exog, newparams[:k])
-
- # system matrices
- Z_mat = cls.Z(k_lags)
- m = Z_mat.shape[1] # r
- R_mat = cls.R(newparams, k_lags, k, k_ma, k_ar)
- T_mat = cls.T(newparams, k_lags, k, k_ar)
- return (y, k, nobs, k_ar, k_ma, k_lags,
- newparams, Z_mat, m, R_mat, T_mat, paramsdtype)
-
- @classmethod
- def loglike(cls, params, arma_model):
- """
- The loglikelihood for an ARMA model using the Kalman Filter recursions.
-
- Parameters
- ----------
- params : array
- The coefficients of the ARMA model, assumed to be in the order of
- trend variables and `k` exogenous coefficients, the `p` AR
- coefficients, then the `q` MA coefficients.
- arma_model : `scikits.statsmodels.tsa.arima.ARMA` instance
- A reference to the ARMA model instance.
-
- Notes
- -----
- This works for both real valued and complex valued parameters. The
- complex values being used to compute the numerical derivative. If
- available will use a Cython version of the Kalman Filter.
- """
- #TODO: see section 3.4.6 in Harvey for computing the derivatives in the
- # recursion itself.
- #TODO: this won't work for time-varying parameters
- (y, k, nobs, k_ar, k_ma, k_lags, newparams, Z_mat, m, R_mat, T_mat,
- paramsdtype) = cls._init_kalman_state(params, arma_model)
-
- if fast_kalman:
- if issubdtype(paramsdtype, float):
- loglike, sigma2 = kalman_loglike.kalman_loglike_double(y, k,
- k_ar, k_ma, k_lags, int(nobs), Z_mat,
- R_mat, T_mat)
- elif issubdtype(paramsdtype, complex):
- loglike, sigma2 = kalman_loglike.kalman_loglike_complex(y, k,
- k_ar, k_ma, k_lags, int(nobs), Z_mat,
- R_mat, T_mat)
- else:
- raise TypeError("This dtype %s is not supported "
- " Please files a bug report." % paramsdtype)
- else:
- v,F, loglikelihood = cls.geterrors(y, k, k_ar, k_ma, k_lags, nobs,
- Z_mat, m, R_mat, T_mat, paramsdtype)
- sigma2 = 1./nobs * np.sum(v**2 / F)
- loglike = -.5 *(loglikelihood + nobs*log(sigma2))
- loglike -= nobs/2. * (log(2*pi) + 1)
- arma_model.sigma2 = sigma2
- return loglike.item() # return a scalar not a 0d array
-
-
-if __name__ == "__main__":
- import numpy as np
- from scipy.linalg import block_diag
- import numpy as np
- # Make our observations as in 13.1.13
- np.random.seed(54321)
- nobs = 600
- y = np.zeros(nobs)
- rho = [.5, -.25, .35, .25]
- sigma = 2.0 # std dev. or noise
- for i in range(4,nobs):
- y[i] = np.dot(rho,y[i-4:i][::-1]) + np.random.normal(scale=sigma)
- y = y[100:]
-
- # make an MA(2) observation equation as in example 13.3
- # y = mu + [1 theta][e_t e_t-1]'
- mu = 2.
- theta = .8
- rho = np.array([1, theta])
- np.random.randn(54321)
- e = np.random.randn(101)
- y = mu + rho[0]*e[1:]+rho[1]*e[:-1]
- # might need to add an axis
- r = len(rho)
- x = np.ones_like(y)
-
- # For now, assume that F,Q,A,H, and R are known
- F = np.array([[0,0],[1,0]])
- Q = np.array([[1,0],[0,0]])
- A = np.array([mu])
- H = rho[:,None]
- R = 0
-
- # remember that the goal is to solve recursively for the
- # state vector, xi, given the data, y (in this case)
- # we can also get a MSE matrix, P, associated with *each* observation
-
- # given that our errors are ~ NID(0,variance)
- # the starting E[e(1),e(0)] = [0,0]
- xi0 = np.array([[0],[0]])
- # with variance = 1 we know that
-# P0 = np.eye(2) # really P_{1|0}
-
-# Using the note below
- P0 = np.dot(np.linalg.inv(np.eye(r**2)-np.kron(F,F)),Q.ravel('F'))
- P0 = np.reshape(P0, (r,r), order='F')
-
- # more generally, if the eigenvalues for F are in the unit circle
- # (watch out for rounding error in LAPACK!) then
- # the DGP of the state vector is var/cov stationary, we know that
- # xi0 = 0
- # Furthermore, we could start with
- # vec(P0) = np.dot(np.linalg.inv(np.eye(r**2) - np.kron(F,F)),vec(Q))
- # where vec(X) = np.ravel(X, order='F') with a possible [:,np.newaxis]
- # if you really want a "2-d" array
- # a fortran (row-) ordered raveled array
- # If instead, some eigenvalues are on or outside the unit circle
- # xi0 can be replaced with a best guess and then
- # P0 is a positive definite matrix repr the confidence in the guess
- # larger diagonal elements signify less confidence
-
-
- # we also know that y1 = mu
- # and MSE(y1) = variance*(1+theta**2) = np.dot(np.dot(H.T,P0),H)
-
- state_vector = [xi0]
- forecast_vector = [mu]
- MSE_state = [P0] # will be a list of matrices
- MSE_forecast = []
- # must be numerical shortcuts for some of this...
- # this should be general enough to be reused
- for i in range(len(y)-1):
- # update the state vector
- sv = state_vector[i]
- P = MSE_state[i]
- HTPHR = np.dot(np.dot(H.T,P),H)+R
- if np.ndim(HTPHR) < 2: # we have a scalar
- HTPHRinv = 1./HTPHR
- else:
- HTPHRinv = np.linalg.inv(HTPHR)
- FPH = np.dot(np.dot(F,P),H)
- gain_matrix = np.dot(FPH,HTPHRinv) # correct
- new_sv = np.dot(F,sv)
- new_sv += np.dot(gain_matrix,y[i] - np.dot(A.T,x[i]) -
- np.dot(H.T,sv))
- state_vector.append(new_sv)
- # update the MSE of the state vector forecast using 13.2.28
- new_MSEf = np.dot(np.dot(F - np.dot(gain_matrix,H.T),P),F.T - np.dot(H,
- gain_matrix.T)) + np.dot(np.dot(gain_matrix,R),gain_matrix.T) + Q
- MSE_state.append(new_MSEf)
- # update the in sample forecast of y
- forecast_vector.append(np.dot(A.T,x[i+1]) + np.dot(H.T,new_sv))
- # update the MSE of the forecast
- MSE_forecast.append(np.dot(np.dot(H.T,new_MSEf),H) + R)
- MSE_forecast = np.array(MSE_forecast).squeeze()
- MSE_state = np.array(MSE_state)
- forecast_vector = np.array(forecast_vector)
- state_vector = np.array(state_vector).squeeze()
-
-##########
-# Luca's example
- # choose parameters governing the signal extraction problem
- rho = .9
- sigma1 = 1
- sigma2 = 1
- nobs = 100
-
-# get the state space representation (Hamilton's notation)\
- F = np.array([[rho, 0],[0, 0]])
- cholQ = np.array([[sigma1, 0],[0,sigma2]])
- H = np.ones((2,1))
-
-# generate random data
- np.random.seed(12345)
- xihistory = np.zeros((2,nobs))
- for i in range(1,nobs):
- xihistory[:,i] = np.dot(F,xihistory[:,i-1]) + \
- np.dot(cholQ,np.random.randn(2,1)).squeeze()
- # this makes an ARMA process?
- # check notes, do the math
- y = np.dot(H.T, xihistory)
- y = y.T
-
- params = np.array([rho, sigma1, sigma2])
- penalty = 1e5
- upperbounds = np.array([.999, 100, 100])
- lowerbounds = np.array([-.999, .001, .001])
- xi10 = xihistory[:,0]
- ntrain = 1
- bounds = zip(lowerbounds,upperbounds) # if you use fmin_l_bfgs_b
-# results = optimize.fmin_bfgs(updatematrices, params,
-# args=(y,xi10,ntrain,penalty,upperbounds,lowerbounds),
-# gtol = 1e-8, epsilon=1e-10)
-# array([ 0.83111567, 1.2695249 , 0.61436685])
-
-
- F = lambda x : np.array([[x[0],0],[0,0]])
- def Q(x):
- cholQ = np.array([[x[1],0],[0,x[2]]])
- return np.dot(cholQ,cholQ.T)
- H = np.ones((2,1))
-# ssm_model = StateSpaceModel(y) # need to pass in Xi10!
-# ssm_model.fit_kalman(start_params=params, xi10=xi10, F=F, Q=Q, H=H,
-# upperbounds=upperbounds, lowerbounds=lowerbounds)
-# why does the above take 3 times as many iterations than direct max?
-
- # compare directly to matlab output
- from scipy import io
-# y_matlab = io.loadmat('./kalman_y.mat')['y'].reshape(-1,1)
-# ssm_model2 = StateSpaceModel(y_matlab)
-# ssm_model2.fit_kalman(start_params=params, xi10=xi10, F=F, Q=Q, H=H,
-# upperbounds=upperbounds, lowerbounds=lowerbounds)
-
-# matlab output
-# thetaunc = np.array([0.7833, 1.1688, 0.5584])
-# np.testing.assert_almost_equal(ssm_model2.params, thetaunc, 4)
- # maybe add a line search check to make sure we didn't get stuck in a local
- # max for more complicated ssm?
-
-
-
-# Examples from Durbin and Koopman
- import zipfile
- try:
- dk = zipfile.ZipFile('/home/skipper/statsmodels/statsmodels-skipper/scikits/statsmodels/sandbox/tsa/DK-data.zip')
- except:
- raise IOError("Install DK-data.zip from http://www.ssfpack.com/DKbook.html or specify its correct local path.")
- nile = dk.open('Nile.dat').readlines()
- nile = [float(_.strip()) for _ in nile[1:]]
- nile = np.asarray(nile)
-# v = np.zeros_like(nile)
-# a = np.zeros_like(nile)
-# F = np.zeros_like(nile)
-# P = np.zeros_like(nile)
-# P[0] = 10.**7
-# sigma2e = 15099.
-# sigma2n = 1469.1
-# for i in range(len(nile)):
-# v[i] = nile[i] - a[i] # Kalman filter residual
-# F[i] = P[i] + sigma2e # the variance of the Kalman filter residual
-# K = P[i]/F[i]
-# a[i+1] = a[i] + K*v[i]
-# P[i+1] = P[i]*(1.-K) + sigma2n
-
- nile_ssm = StateSpaceModel(nile)
- R = lambda params : np.array(params[0])
- Q = lambda params : np.array(params[1])
-# nile_ssm.fit_kalman(start_params=[1.0,1.0], xi10=0, F=[1.], H=[1.],
-# Q=Q, R=R, penalty=False, ntrain=0)
-
-# p. 162 univariate structural time series example
- seatbelt = dk.open('Seatbelt.dat').readlines()
- seatbelt = [map(float,_.split()) for _ in seatbelt[2:]]
- sb_ssm = StateSpaceModel(seatbelt)
- s = 12 # monthly data
-# s p.
- H = np.zeros((s+1,1)) # Z in DK, H' in Hamilton
- H[::2] = 1.
- lambdaj = np.r_[1:6:6j]
- lambdaj *= 2*np.pi/s
- T = np.zeros((s+1,s+1))
- C = lambda j : np.array([[np.cos(j), np.sin(j)],[-np.sin(j), np.cos(j)]])
- Cj = [C(j) for j in lambdaj] + [-1]
-#NOTE: the above is for handling seasonality
-#TODO: it is just a rotation matrix. See if Robert's link has a better way
-#http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=5F5145BE25D61F87478B25AD1493C8F4?doi=10.1.1.110.5134&rep=rep1&type=pdf&ei=QcetSefqF4GEsQPnx4jSBA&sig2=HjJILSBPFgJTfuifbvKrxw&usg=AFQjCNFbABIxusr-NEbgrinhtR6buvjaYA
- from scipy import linalg
- F = linalg.block_diag(*Cj) # T in DK, F in Hamilton
- R = np.eye(s-1)
- sigma2_omega = 1.
- Q = np.eye(s-1) * sigma2_omega
diff --git a/statsmodels/scikits/statsmodels/tsa/mlemodel.py b/statsmodels/scikits/statsmodels/tsa/mlemodel.py
deleted file mode 100644
index 82f788c..0000000
--- a/statsmodels/scikits/statsmodels/tsa/mlemodel.py
+++ /dev/null
@@ -1,80 +0,0 @@
-"""Base Classes for Likelihood Models in time series analysis
-
-Warning: imports numdifftools
-
-
-
-Created on Sun Oct 10 15:00:47 2010
-
-Author: josef-pktd
-License: BSD
-
-"""
-
-import numpy as np
-
-import numdifftools as ndt
-
-from scikits.statsmodels.base.model import LikelihoodModel
-
-#copied from sandbox/regression/mle.py
-#TODO: I take it this is only a stub and should be included in another
-# model class?
-class TSMLEModel(LikelihoodModel):
- """
- univariate time series model for estimation with maximum likelihood
-
- Note: This is not working yet
- """
-
- def __init__(self, endog, exog=None):
- #need to override p,q (nar,nma) correctly
- super(TSMLEModel, self).__init__(endog, exog)
- #set default arma(1,1)
- self.nar = 1
- self.nma = 1
- #self.initialize()
-
- def geterrors(self, params):
- raise NotImplementedError
-
- def loglike(self, params):
- """
- Loglikelihood for timeseries model
-
- Notes
- -----
- needs to be overwritten by subclass
- """
- raise NotImplementedError
-
-
- def score(self, params):
- """
- Score vector for Arma model
- """
- #return None
- #print params
- jac = ndt.Jacobian(self.loglike, stepMax=1e-4)
- return jac(params)[-1]
-
- def hessian(self, params):
- """
- Hessian of arma model. Currently uses numdifftools
- """
- #return None
- Hfun = ndt.Jacobian(self.score, stepMax=1e-4)
- return Hfun(params)[-1]
-
-
- def fit(self, start_params=None, maxiter=5000, method='fmin', tol=1e-08):
- '''estimate model by minimizing negative loglikelihood
-
- does this need to be overwritten ?
- '''
- if start_params is None and hasattr(self, '_start_params'):
- start_params = self._start_params
- #start_params = np.concatenate((0.05*np.ones(self.nar + self.nma), [1]))
- mlefit = super(TSMLEModel, self).fit(start_params=start_params,
- maxiter=maxiter, method=method, tol=tol)
- return mlefit
diff --git a/statsmodels/scikits/statsmodels/tsa/stattools.py b/statsmodels/scikits/statsmodels/tsa/stattools.py
deleted file mode 100644
index fb210b3..0000000
--- a/statsmodels/scikits/statsmodels/tsa/stattools.py
+++ /dev/null
@@ -1,870 +0,0 @@
-"""
-Statistical tools for time series analysis
-"""
-
-import numpy as np
-from scipy import stats, signal
-from scikits.statsmodels.regression.linear_model import OLS, yule_walker
-from scikits.statsmodels.tools.tools import add_constant
-from tsatools import lagmat, lagmat2ds, add_trend
-#from scikits.statsmodels.sandbox.tsa import var
-from adfvalues import *
-#from scikits.statsmodels.sandbox.rls import RLS
-
-#NOTE: now in two places to avoid circular import
-#TODO: I like the bunch pattern for this too.
-class ResultsStore(object):
- def __str__(self):
- return self._str
-
-def _autolag(mod, endog, exog, startlag, maxlag, method, modargs=(),
- fitargs=()):
- """
- Returns the results for the lag length that maximimizes the info criterion.
-
- Parameters
- ----------
- mod : Model class
- Model estimator class.
- modargs : tuple
- args to pass to model. See notes.
- fitargs : tuple
- args to pass to fit. See notes.
- lagstart : int
- The first zero-indexed column to hold a lag. See Notes.
- maxlag : int
- The highest lag order for lag length selection.
- method : str {"aic","bic","t-stat"}
- aic - Akaike Information Criterion
- bic - Bayes Information Criterion
- t-stat - Based on last lag
-
- Returns
- -------
- icbest : float
- Best information criteria.
- bestlag : int
- The lag length that maximizes the information criterion.
-
-
- Notes
- -----
- Does estimation like mod(endog, exog[:,:i], *modargs).fit(*fitargs)
- where i goes from lagstart to lagstart+maxlag+1. Therefore, lags are
- assumed to be in contiguous columns from low to high lag length with
- the highest lag in the last column.
- """
-#TODO: can tcol be replaced by maxlag + 2?
-#TODO: This could be changed to laggedRHS and exog keyword arguments if this
-# will be more general.
-
- results = {}
- method = method.lower()
- for lag in range(startlag,maxlag+1):
- mod_instance = mod(endog, exog[:,:lag], *modargs)
- results[lag] = mod_instance.fit()
-
- if method == "aic":
- icbest, bestlag = max((v.aic,k) for k,v in results.iteritems())
- elif method == "bic":
- icbest, bestlag = max((v.bic,k) for k,v in results.iteritems())
- elif method == "t-stat":
- lags = sorted(results.keys())[::-1]
-# stop = stats.norm.ppf(.95)
- stop = 1.6448536269514722
- for lag in range(maxlag,startlag-1,-1):
- icbest = np.abs(results[lag].tvalues[-1])
- if np.abs(icbest) >= stop:
- bestlag = lag
- icbest = icbest
- break
- else:
- raise ValueError("Information Criterion %s not understood.") % method
- return icbest, bestlag
-
-#this needs to be converted to a class like HetGoldfeldQuandt, 3 different returns are a mess
-# See:
-#Ng and Perron(2001), Lag length selection and the construction of unit root
-#tests with good size and power, Econometrica, Vol 69 (6) pp 1519-1554
-#TODO: include drift keyword, only valid with regression == "c"
-# just changes the distribution of the test statistic to a t distribution
-#TODO: autolag is untested
-def adfuller(x, maxlag=None, regression="c", autolag='AIC',
- store=False, regresults=False):
- '''Augmented Dickey-Fuller unit root test
-
- The Augmented Dickey-Fuller test can be used to test for a unit root in a
- univariate process in the presence of serial correlation.
-
- Parameters
- ----------
- x : array_like, 1d
- data series
- maxlag : int
- Maximum lag which is included in test, default 12*(nobs/100)^{1/4}
- regression : str {'c','ct','ctt','nc'}
- Constant and trend order to include in regression
- * 'c' : constant only
- * 'ct' : constant and trend
- * 'ctt' : constant, and linear and quadratic trend
- * 'nc' : no constant, no trend
- autolag : {'AIC', 'BIC', 't-stat', None}
- * if None, then maxlag lags are used
- * if 'AIC' or 'BIC', then the number of lags is chosen to minimize the
- corresponding information criterium
- * 't-stat' based choice of maxlag. Starts with maxlag and drops a
- lag until the t-statistic on the last lag length is significant at
- the 95 % level.
- store : bool
- If True, then a result instance is returned additionally to
- the adf statistic
- regresults : bool
- If True, the full regression results are returned.
-
- Returns
- -------
- adf : float
- Test statistic
- pvalue : float
- MacKinnon's approximate p-value based on MacKinnon (1994)
- usedlag : int
- Number of lags used.
- nobs : int
- Number of observations used for the ADF regression and calculation of
- the critical values.
- critical values : dict
- Critical values for the test statistic at the 1 %, 5 %, and 10 % levels.
- Based on MacKinnon (2010)
- icbest : float
- The maximized information criterion if autolag is not None.
- regresults : RegressionResults instance
- The
- resstore : (optional) instance of ResultStore
- an instance of a dummy class with results attached as attributes
-
- Notes
- -----
- The null hypothesis of the Augmented Dickey-Fuller is that there is a unit
- root, with the alternative that there is no unit root. If the pvalue is
- above a critical size, then we cannot reject that there is a unit root.
-
- The p-values are obtained through regression surface approximation from
- MacKinnon 1994, but using the updated 2010 tables.
- If the p-value is close to significant, then the critical values should be
- used to judge whether to accept or reject the null.
-
- Examples
- --------
- see example script
-
- References
- ----------
- Greene
- Hamilton
-
-
- P-Values (regression surface approximation)
- MacKinnon, J.G. 1994. "Approximate asymptotic distribution functions for
- unit-root and cointegration tests. `Journal of Business and Economic
- Statistics` 12, 167-76.
-
- Critical values
- MacKinnon, J.G. 2010. "Critical Values for Cointegration Tests." Queen's
- University, Dept of Economics, Working Papers. Available at
- http://ideas.repec.org/p/qed/wpaper/1227.html
- '''
- trenddict = {None:'nc', 0:'c', 1:'ct', 2:'ctt'}
- if regression is None or isinstance(regression, int):
- regression = trenddict[regression]
- regression = regression.lower()
- if regression not in ['c','nc','ct','ctt']:
- raise ValueError("regression option %s not understood") % regression
- x = np.asarray(x)
- nobs = x.shape[0]
-
- if maxlag is None:
- #from Greene referencing Schwert 1989
- maxlag = int(round(12. * np.power(nobs/100., 1/4.)))
-
- xdiff = np.diff(x)
- xdall = lagmat(xdiff[:,None], maxlag, trim='both', original='in')
- nobs = xdall.shape[0]
-
- xdall[:,0] = x[-nobs-1:-1] # replace 0 xdiff with level of x
- xdshort = xdiff[-nobs:]
-
- if store:
- resstore = ResultsStore()
- if autolag:
- if regression != 'nc':
- fullRHS = add_trend(xdall, regression, prepend=True)
- else:
- fullRHS = xdall
- startlag = fullRHS.shape[1] - xdall.shape[1] + 1 # 1 for level
-
- #search for lag length with highest information criteria
- #Note: use the same number of observations to have comparable IC
- icbest, bestlag = _autolag(OLS, xdshort, fullRHS, startlag,
- maxlag, autolag)
-
- #rerun ols with best autolag
- xdall = lagmat(xdiff[:,None], bestlag, trim='both', original='in')
- nobs = xdall.shape[0]
- xdall[:,0] = x[-nobs-1:-1] # replace 0 xdiff with level of x
- xdshort = xdiff[-nobs:]
- usedlag = bestlag
- else:
- usedlag = maxlag
- icbest = None
- if regression != 'nc':
- resols = OLS(xdshort, add_trend(xdall[:,:usedlag+1], regression)).fit()
- else:
- resols = OLS(xdshort, xdall[:,:usedlag+1]).fit()
- adfstat = resols.tvalues[0]
-# adfstat = (resols.params[0]-1.0)/resols.bse[0]
- # the "asymptotically correct" z statistic is obtained as
- # nobs/(1-np.sum(resols.params[1:-(trendorder+1)])) (resols.params[0] - 1)
- # I think this is the statistic that is used for series that are integrated
- # for orders higher than I(1), ie., not ADF but cointegration tests.
-
- # Get approx p-value and critical values
- pvalue = mackinnonp(adfstat, regression=regression, N=1)
- critvalues = mackinnoncrit(N=1, regression=regression, nobs=nobs)
- critvalues = {"1%" : critvalues[0], "5%" : critvalues[1],
- "10%" : critvalues[2]}
- if store:
- resstore.resols = resols
- resstore.usedlag = usedlag
- resstore.adfstat = adfstat
- resstore.critvalues = critvalues
- resstore.nobs = nobs
- resstore.H0 = "The coefficient on the lagged level equals 1"
- resstore.HA = "The coefficient on the lagged level < 1"
- resstore.icbest = icbest
- return adfstat, pvalue, critvalues, resstore
- else:
- if not autolag:
- return adfstat, pvalue, usedlag, nobs, critvalues
- else:
- return adfstat, pvalue, usedlag, nobs, critvalues, icbest
-
-def acovf(x, unbiased=False, demean=True, fft=False):
- '''
- Autocovariance for 1D
-
- Parameters
- ----------
- x : array
- time series data
- unbiased : bool
- if True, then denominators is n-k, otherwise n
- fft : bool
- If True, use FFT convolution. This method should be preferred
- for long time series.
-
- Returns
- -------
- acovf : array
- autocovariance function
- '''
- n = len(x)
- if demean:
- xo = x - x.mean();
- else:
- xo = x
- if unbiased:
-# xi = np.ones(n);
-# d = np.correlate(xi, xi, 'full')
- xi = np.arange(1,n+1)
- d = np.hstack((xi,xi[:-1][::-1])) # faster, is correlate more general?
- else:
- d = n
- if fft:
- nobs = len(xo)
- Frf = np.fft.fft(xo, n=nobs*2)
- acov = np.fft.ifft(Frf*np.conjugate(Frf))[:nobs]/d
- return acov.real
- else:
- return (np.correlate(xo, xo, 'full')/d)[n-1:]
-
-def q_stat(x,nobs, type="ljungbox"):
- """
- Return's Ljung-Box Q Statistic
-
- x : array-like
- Array of autocorrelation coefficients. Can be obtained from acf.
- nobs : int
- Number of observations in the entire sample (ie., not just the length
- of the autocorrelation function results.
-
- Returns
- -------
- q-stat : array
- Ljung-Box Q-statistic for autocorrelation parameters
- p-value : array
- P-value of the Q statistic
-
- Notes
- ------
- Written to be used with acf.
- """
- x = np.asarray(x)
- if type=="ljungbox":
- ret = nobs*(nobs+2)*np.cumsum((1./(nobs-np.arange(1,
- len(x)+1)))*x**2)
- chi2 = stats.chi2.sf(ret,np.arange(1,len(x)+1))
- return ret,chi2
-
-#NOTE: Changed unbiased to False
-#see for example
-# http://www.itl.nist.gov/div898/handbook/eda/section3/autocopl.htm
-def acf(x, unbiased=False, nlags=40, confint=None, qstat=False, fft=False):
- '''
- Autocorrelation function for 1d arrays.
-
- Parameters
- ----------
- x : array
- Time series data
- unbiased : bool
- If True, then denominators for autocovariance are n-k, otherwise n
- nlags: int, optional
- Number of lags to return autocorrelation for.
- confint : float or None, optional
- If True, the confidence intervals for the given level are returned.
- For instance if confint=95, 95 % confidence intervals are returned.
- qstat : bool, optional
- If True, returns the Ljung-Box q statistic for each autocorrelation
- coefficient. See q_stat for more information.
- fft : bool, optional
- If True, computes the ACF via FFT.
-
- Returns
- -------
- acf : array
- autocorrelation function
- confint : array, optional
- Confidence intervals for the ACF. Returned if confint is not None.
- qstat : array, optional
- The Ljung-Box Q-Statistic. Returned if q_stat is True.
- pvalues : array, optional
- The p-values associated with the Q-statistics. Returned if q_stat is
- True.
-
- Notes
- -----
- The acf at lag 0 (ie., 1) is *not* returned.
-
- This is based np.correlate which does full convolution. For very long time
- series it is recommended to use fft convolution instead.
-
- If unbiased is true, the denominator for the autocovariance is adjusted
- but the autocorrelation is not an unbiased estimtor.
- '''
- nobs = len(x)
- d = nobs # changes if unbiased
- if not fft:
- avf = acovf(x, unbiased=unbiased, demean=True)
- #acf = np.take(avf/avf[0], range(1,nlags+1))
- acf = avf[:nlags+1]/avf[0]
- else:
- #JP: move to acovf
- x0 = x - x.mean()
- Frf = np.fft.fft(x0, n=nobs*2) # zero-pad for separability
- if unbiased:
- d = nobs - np.arange(nobs)
- acf = np.fft.ifft(Frf * np.conjugate(Frf))[:nobs]/d
- acf /= acf[0]
- #acf = np.take(np.real(acf), range(1,nlags+1))
- acf = np.real(acf[:nlags+1]) #keep lag 0
- if not (confint or qstat):
- return acf
-# Based on Bartlett's formula for MA(q) processes
-#NOTE: not sure if this is correct, or needs to be centered or what.
-
- if not confint is None:
- varacf = np.ones(nlags+1)/nobs
- #varacf[1:] *= 1 + 2*np.cumsum(acf[1:-1]**2)
- #TODO: test this, are my changes correct
- varacf[0] = 0
- varacf[1:] *= 1 + 2*np.cumsum(acf[1:]**2)
- interval = stats.norm.ppf(1-(100-confint)/200.)*np.sqrt(varacf)
- confint = np.array(zip(acf-interval, acf+interval))
- if not qstat:
- return acf, confint
- if qstat:
- qstat, pvalue = q_stat(acf[1:], nobs=nobs) #drop lag 0
- if confint is not None:
- return acf, confint, qstat, pvalue
- else:
- return acf, qstat
-
-def pacf_yw(x, nlags=40, method='unbiased'):
- '''Partial autocorrelation estimated with non-recursive yule_walker
-
- Parameters
- ----------
- x : 1d array
- observations of time series for which pacf is calculated
- maxlag : int
- largest lag for which pacf is returned
- method : 'unbiased' (default) or 'mle'
- method for the autocovariance calculations in yule walker
-
- Returns
- -------
- pacf : 1d array
- partial autocorrelations, maxlag+1 elements
-
- Notes
- -----
- This solves yule_walker for each desired lag and contains
- currently duplicate calculations.
- '''
- xm = x - x.mean()
- pacf = [1.]
- for k in range(1, nlags+1):
- pacf.append(yule_walker(x, k, method=method)[0][-1])
- return np.array(pacf)
-
-#NOTE: this is incorrect.
-def pacf_ols(x, nlags=40):
- '''Calculate partial autocorrelations
-
- Parameters
- ----------
- x : 1d array
- observations of time series for which pacf is calculated
- nlags : int
- Number of lags for which pacf is returned. Lag 0 is not returned.
-
- Returns
- -------
- pacf : 1d array
- partial autocorrelations, maxlag+1 elements
-
- Notes
- -----
- This solves a separate OLS estimation for each desired lag.
- '''
- #TODO: add warnings for Yule-Walker
- #NOTE: demeaning and not using a constant gave incorrect answers?
- #JP: demeaning should have a better estimate of the constant
- #maybe we can compare small sample properties with a MonteCarlo
- xlags, x0 = lagmat(x, nlags, original='sep')
- #xlags = sm.add_constant(lagmat(x, nlags), prepend=True)
- xlags = add_constant(xlags, prepend=True)
- pacf = [1.]
- for k in range(1, nlags+1):
- res = OLS(x0[k:], xlags[k:,:k+1]).fit()
- #np.take(xlags[k:], range(1,k+1)+[-1],
-
- pacf.append(res.params[-1])
- return np.array(pacf)
-
-def pacf(x, nlags=40, method='ywunbiased'):
- '''Partial autocorrelation estimated
-
- Parameters
- ----------
- x : 1d array
- observations of time series for which pacf is calculated
- maxlag : int
- largest lag for which pacf is returned
- method : 'ywunbiased' (default) or 'ywmle' or 'ols'
- specifies which method for the calculations to use,
- - yw or ywunbiased : yule walker with bias correction in denominator for acovf
- - ywm or ywmle : yule walker without bias correction
- - ols - regression of time series on lags of it and on constant
- - ld or ldunbiased : Levinson-Durbin recursion with bias correction
- - ldb or ldbiased : Levinson-Durbin recursion without bias correction
-
- Returns
- -------
- pacf : 1d array
- partial autocorrelations, nlags elements, including lag zero
-
- Notes
- -----
- This solves yule_walker equations or ols for each desired lag
- and contains currently duplicate calculations.
- '''
-
- if method == 'ols':
- return pacf_ols(x, nlags=nlags)
- elif method in ['yw', 'ywu', 'ywunbiased', 'yw_unbiased']:
- return pacf_yw(x, nlags=nlags, method='unbiased')
- elif method in ['ywm', 'ywmle', 'yw_mle']:
- return pacf_yw(x, nlags=nlags, method='mle')
- elif method in ['ld', 'ldu', 'ldunbiase', 'ld_unbiased']:
- acv = acovf(x, unbiased=True)
- ld_ = levinson_durbin(acv, nlags=nlags, isacov=True)
- #print 'ld', ld_
- return ld_[2]
- elif method in ['ldb', 'ldbiased', 'ld_biased']: #inconsistent naming with ywmle
- acv = acovf(x, unbiased=False)
- ld_ = levinson_durbin(acv, nlags=nlags, isacov=True)
- return ld_[2]
- else:
- raise ValueError('method not available')
-
-
-
-def ccovf(x, y, unbiased=True, demean=True):
- ''' crosscovariance for 1D
-
- Parameters
- ----------
- x, y : arrays
- time series data
- unbiased : boolean
- if True, then denominators is n-k, otherwise n
-
- Returns
- -------
- ccovf : array
- autocovariance function
-
- Notes
- -----
- This uses np.correlate which does full convolution. For very long time
- series it is recommended to use fft convolution instead.
- '''
- n = len(x)
- if demean:
- xo = x - x.mean();
- yo = y - y.mean();
- else:
- xo = x
- yo = y
- if unbiased:
- xi = np.ones(n);
- d = np.correlate(xi, xi, 'full')
- else:
- d = n
- return (np.correlate(xo,yo,'full') / d)[n-1:]
-
-def ccf(x, y, unbiased=True):
- '''cross-correlation function for 1d
-
- Parameters
- ----------
- x, y : arrays
- time series data
- unbiased : boolean
- if True, then denominators for autocovariance is n-k, otherwise n
-
- Returns
- -------
- ccf : array
- cross-correlation function of x and y
-
- Notes
- -----
- This is based np.correlate which does full convolution. For very long time
- series it is recommended to use fft convolution instead.
-
- If unbiased is true, the denominator for the autocovariance is adjusted
- but the autocorrelation is not an unbiased estimtor.
-
- '''
- cvf = ccovf(x, y, unbiased=unbiased, demean=True)
- return cvf / (np.std(x) * np.std(y))
-
-
-def periodogram(X):
- """
- Returns the periodogram for the natural frequency of X
-
- Parameters
- ----------
- X : array-like
- Array for which the periodogram is desired.
-
- Returns
- -------
- pgram : array
- 1./len(X) * np.abs(np.fft.fft(X))**2
-
-
- References
- ----------
- Brockwell and Davis.
- """
- X = np.asarray(X)
-# if kernel == "bartlett":
-# w = 1 - np.arange(M+1.)/M #JP removed integer division
-
- pergr = 1./len(X) * np.abs(np.fft.fft(X))**2
- pergr[0] = 0. # what are the implications of this?
- return pergr
-
-#copied from nitime and scikits\statsmodels\sandbox\tsa\examples\try_ld_nitime.py
-#TODO: check what to return, for testing and trying out returns everything
-def levinson_durbin(s, nlags=10, isacov=False):
- '''Levinson-Durbin recursion for autoregressive processes
-
- Parameters
- ----------
- s : array_like
- If isacov is False, then this is the time series. If iasacov is true
- then this is interpreted as autocovariance starting with lag 0
- nlags : integer
- largest lag to include in recursion or order of the autoregressive
- process
- isacov : boolean
- flag to indicate whether the first argument, s, contains the autocovariances
- or the data series.
-
- Returns
- -------
- sigma_v : float
- estimate of the error variance ?
- arcoefs : ndarray
- estimate of the autoregressive coefficients
- pacf : ndarray
- partial autocorrelation function
- sigma : ndarray
- entire sigma array from intermediate result, last value is sigma_v
- phi : ndarray
- entire phi array from intermediate result, last column contains
- autoregressive coefficients for AR(nlags) with a leading 1
-
- Notes
- -----
- This function returns currently all results, but maybe we drop sigma and
- phi from the returns.
-
- If this function is called with the time series (isacov=False), then the sample
- autocovariance function is calculated with the default options (biased, no fft).
-
- '''
- s = np.asarray(s)
- order = nlags #rename compared to nitime
- #from nitime
-
-## if sxx is not None and type(sxx) == np.ndarray:
-## sxx_m = sxx[:order+1]
-## else:
-## sxx_m = ut.autocov(s)[:order+1]
- if isacov:
- sxx_m = s
- else:
- sxx_m = acovf(s)[:order+1] #not tested
-
- phi = np.zeros((order+1, order+1), 'd')
- sig = np.zeros(order+1)
- # initial points for the recursion
- phi[1,1] = sxx_m[1]/sxx_m[0]
- sig[1] = sxx_m[0] - phi[1,1]*sxx_m[1]
- for k in xrange(2,order+1):
- phi[k,k] = (sxx_m[k] - np.dot(phi[1:k,k-1], sxx_m[1:k][::-1]))/sig[k-1]
- for j in xrange(1,k):
- phi[j,k] = phi[j,k-1] - phi[k,k]*phi[k-j,k-1]
- sig[k] = sig[k-1]*(1 - phi[k,k]**2)
-
- sigma_v = sig[-1]
- arcoefs = phi[1:,-1]
- pacf_ = np.diag(phi)
- pacf_[0] = 1.
- return sigma_v, arcoefs, pacf_, sig, phi #return everything
-
-
-
-def grangercausalitytests(x, maxlag, addconst=True, verbose=True):
- '''four tests for granger causality of 2 timeseries
-
- all four tests give similar results
- `params_ftest` and `ssr_ftest` are equivalent based of F test which is
- identical to lmtest:grangertest in R
-
- Parameters
- ----------
- x : array, 2d, (nobs,2)
- data for test whether the time series in the second column Granger
- causes the time series in the first column
- maxlag : integer
- the Granger causality test results are calculated for all lags up to
- maxlag
- verbose : bool
- print results if true
-
- Returns
- -------
- results : dictionary
- all test results, dictionary keys are the number of lags. For each
- lag the values are a tuple, with the first element a dictionary with
- teststatistic, pvalues, degrees of freedom, the second element are
- the OLS estimation results for the restricted model, the unrestricted
- model and the restriction (contrast) matrix for the parameter f_test.
-
- Notes
- -----
- TODO: convert to class and attach results properly
-
- The Null hypothesis for grangercausalitytests is that the time series in
- the second column, x2, Granger causes the time series in the first column,
- x1. This means that past values of x2 have a statistically significant
- effect on the current value of x1, taking also past values of x1 into
- account, as regressors. We reject the null hypothesis of x2 Granger
- causing x1 if the pvalues are below a desired size of the test.
-
- 'params_ftest', 'ssr_ftest' are based on F test
-
- 'ssr_chi2test', 'lrtest' are based on chi-square test
-
- '''
- from scipy import stats # lazy import
-
- resli = {}
-
- for mlg in range(1, maxlag+1):
- result = {}
- if verbose:
- print '\nGranger Causality'
- print 'number of lags (no zero)', mlg
- mxlg = mlg #+ 1 # Note number of lags starting at zero in lagmat
-
- # create lagmat of both time series
- dta = lagmat2ds(x, mxlg, trim='both', dropex=1)
-
- #add constant
- if addconst:
- dtaown = add_constant(dta[:,1:mxlg+1])
- dtajoint = add_constant(dta[:,1:])
- else:
- raise ValueError('Not Implemented')
- dtaown = dta[:,1:mxlg]
- dtajoint = dta[:,1:]
-
- #run ols on both models without and with lags of second variable
- res2down = OLS(dta[:,0], dtaown).fit()
- res2djoint = OLS(dta[:,0], dtajoint).fit()
-
- #print results
- #for ssr based tests see: http://support.sas.com/rnd/app/examples/ets/granger/index.htm
- #the other tests are made-up
-
- # Granger Causality test using ssr (F statistic)
- fgc1 = (res2down.ssr-res2djoint.ssr)/res2djoint.ssr/(mxlg)*res2djoint.df_resid
- if verbose:
- print 'ssr based F test: F=%-8.4f, p=%-8.4f, df_denom=%d, df_num=%d' % \
- (fgc1, stats.f.sf(fgc1, mxlg, res2djoint.df_resid), res2djoint.df_resid, mxlg)
- result['ssr_ftest'] = (fgc1, stats.f.sf(fgc1, mxlg, res2djoint.df_resid), res2djoint.df_resid, mxlg)
-
- # Granger Causality test using ssr (ch2 statistic)
- fgc2 = res2down.nobs*(res2down.ssr-res2djoint.ssr)/res2djoint.ssr
- if verbose:
- print 'ssr based chi2 test: chi2=%-8.4f, p=%-8.4f, df=%d' % \
- (fgc2, stats.chi2.sf(fgc2, mxlg), mxlg)
- result['ssr_chi2test'] = (fgc2, stats.chi2.sf(fgc2, mxlg), mxlg)
-
- #likelihood ratio test pvalue:
- lr = -2*(res2down.llf-res2djoint.llf)
- if verbose:
- print 'likelihood ratio test: chi2=%-8.4f, p=%-8.4f, df=%d' % \
- (lr, stats.chi2.sf(lr, mxlg), mxlg)
- result['lrtest'] = (lr, stats.chi2.sf(lr, mxlg), mxlg)
-
- # F test that all lag coefficients of exog are zero
- rconstr = np.column_stack((np.zeros((mxlg-1,mxlg-1)), np.eye(mxlg-1, mxlg-1),\
- np.zeros((mxlg-1, 1))))
- rconstr = np.column_stack((np.zeros((mxlg,mxlg)), np.eye(mxlg, mxlg),\
- np.zeros((mxlg, 1))))
- ftres = res2djoint.f_test(rconstr)
- if verbose:
- print 'parameter F test: F=%-8.4f, p=%-8.4f, df_denom=%d, df_num=%d' % \
- (ftres.fvalue, ftres.pvalue, ftres.df_denom, ftres.df_num)
- result['params_ftest'] = (np.squeeze(ftres.fvalue)[()],
- np.squeeze(ftres.pvalue)[()],
- ftres.df_denom, ftres.df_num)
-
- resli[mxlg] = (result, [res2down, res2djoint, rconstr])
-
- return resli
-
-def coint(y1, y2, regression="c"):
- """
- This is a simple cointegration test. Uses unit-root test on residuals to
- test for cointegrated relationship
-
- See Hamilton (1994) 19.2
-
- Parameters
- ----------
- y1 : array_like, 1d
- first element in cointegrating vector
- y2 : array_like
- remaining elements in cointegrating vector
- c : str {'c'}
- Included in regression
- * 'c' : Constant
-
- Returns
- -------
- coint_t : float
- t-statistic of unit-root test on residuals
- pvalue : float
- MacKinnon's approximate p-value based on MacKinnon (1994)
- crit_value : dict
- Critical values for the test statistic at the 1 %, 5 %, and 10 % levels.
-
- Notes
- -----
- The Null hypothesis is that there is no cointegration, the alternative
- hypothesis is that there is cointegrating relationship. If the pvalue is
- small, below a critical size, then we can reject the hypothesis that there
- is no cointegrating relationship.
-
- P-values are obtained through regression surface approximation from
- MacKinnon 1994.
-
- References
- ----------
- MacKinnon, J.G. 1994. "Approximate asymptotic distribution functions for
- unit-root and cointegration tests. `Journal of Business and Economic
- Statistics` 12, 167-76.
-
- """
- regression = regression.lower()
- if regression not in ['c','nc','ct','ctt']:
- raise ValueError("regression option %s not understood") % regression
- y1 = np.asarray(y1)
- y2 = np.asarray(y2)
- if regression == 'c':
- y2 = add_constant(y2)
- st1_resid = OLS(y1, y2).fit().resid #stage one residuals
- lgresid_cons = add_constant(st1_resid[0:-1])
- uroot_reg = OLS(st1_resid[1:], lgresid_cons).fit()
- coint_t = (uroot_reg.params[0]-1)/uroot_reg.bse[0]
- pvalue = mackinnonp(coint_t, regression="c", N=2, lags=None)
- crit_value = mackinnoncrit(N=1, regression="c", nobs=len(y1))
- return coint_t, pvalue, crit_value
-
-__all__ = ['acovf', 'acf', 'pacf', 'pacf_yw', 'pacf_ols', 'ccovf', 'ccf',
- 'periodogram', 'q_stat', 'coint']
-
-if __name__=="__main__":
- import scikits.statsmodels.api as sm
- data = sm.datasets.macrodata.load().data
- x = data['realgdp']
-# adf is tested now.
- adf = adfuller(x,4, autolag=None)
- adfbic = adfuller(x, autolag="bic")
- adfaic = adfuller(x, autolag="aic")
- adftstat = adfuller(x, autolag="t-stat")
-
-# acf is tested now
- acf1,ci1,Q,pvalue = acf(x, nlags=40, confint=95, qstat=True)
- acf2, ci2,Q2,pvalue2 = acf(x, nlags=40, confint=95, fft=True, qstat=True)
- acf3,ci3,Q3,pvalue3 = acf(x, nlags=40, confint=95, qstat=True, unbiased=True)
- acf4, ci4,Q4,pvalue4 = acf(x, nlags=40, confint=95, fft=True, qstat=True,
- unbiased=True)
-
-# pacf is tested now
-# pacf1 = pacorr(x)
-# pacfols = pacf_ols(x, nlags=40)
-# pacfyw = pacf_yw(x, nlags=40, method="mle")
- y = np.random.normal(size=(100,2))
- grangercausalitytests(y,2)
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/__init__.py b/statsmodels/scikits/statsmodels/tsa/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/ARMLEConstantPredict.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/ARMLEConstantPredict.csv
deleted file mode 100644
index 442434b..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/ARMLEConstantPredict.csv
+++ /dev/null
@@ -1,334 +0,0 @@
-1700, 48.3243
-1701, 12.6633
-1702, 26.1958
-1703, 30.7430
-1704, 35.6854
-1705, 48.6206
-1706, 67.6159
-1707, 16.0018
-1708, 13.3760
-1709, 11.2305
-1710, 9.4877
-1711, 9.0588
-1712, 8.7644
-1713, 11.2268
-1714, 20.9667
-1715, 23.5576
-1716, 36.9585
-1717, 50.0107
-1718, 58.9465
-1719, 46.3827
-1720, 21.4597
-1721, 18.4550
-1722, 22.7606
-1723, 19.9462
-1724, 12.5469
-1725, 33.2339
-1726, 55.8533
-1727, 89.9622
-1728, 120.8949
-1729, 74.1257
-1730, 42.7777
-1731, 31.2814
-1732, 23.3099
-1733, 5.0720
-1734, 12.1647
-1735, 36.4987
-1736, 62.5014
-1737, 93.0209
-1738, 84.6001
-1739, 103.9179
-1740, 81.1555
-1741, 41.0694
-1742, 17.7797
-1743, 11.1391
-1744, 18.9217
-1745, 18.3533
-1746, 29.8649
-1747, 50.0499
-1748, 62.2988
-1749, 73.1959
-1750, 80.7216
-1751, 68.4801
-1752, 24.2343
-1753, 36.7505
-1754, 22.8928
-1755, 5.0187
-1756, 19.4815
-1757, 24.7614
-1758, 52.7583
-1759, 66.4247
-1760, 54.4097
-1761, 63.4711
-1762, 82.9175
-1763, 38.9882
-1764, 27.5613
-1765, 29.6525
-1766, 16.6044
-1767, 17.0212
-1768, 56.0339
-1769, 81.6483
-1770, 113.7808
-1771, 87.3770
-1772, 59.2614
-1773, 51.5278
-1774, 18.2411
-1775, 23.3538
-1776, 8.1929
-1777, 34.2464
-1778, 128.3357
-1779, 165.3934
-1780, 94.6616
-1781, 56.1351
-1782, 51.4397
-1783, 22.6825
-1784, 12.7374
-1785, 10.5643
-1786, 42.5939
-1787, 123.6546
-1788, 149.8687
-1789, 112.0556
-1790, 94.3949
-1791, 62.0904
-1792, 41.9001
-1793, 45.4531
-1794, 34.7052
-1795, 43.7433
-1796, 38.1605
-1797, 38.5734
-1798, 31.0695
-1799, 25.0907
-1800, 25.7435
-1801, 32.0251
-1802, 47.8522
-1803, 52.0917
-1804, 38.1594
-1805, 43.7860
-1806, 34.0097
-1807, 17.4484
-1808, 4.9886
-1809, 11.7416
-1810, 11.3238
-1811, 12.7122
-1812, 16.3944
-1813, 20.4500
-1814, 26.2209
-1815, 23.0268
-1816, 41.8362
-1817, 45.7260
-1818, 31.0652
-1819, 21.0013
-1820, 18.9056
-1821, 12.4379
-1822, 7.9779
-1823, 9.0869
-1824, 12.5842
-1825, 23.4923
-1826, 30.4295
-1827, 46.1351
-1828, 52.3075
-1829, 59.8270
-1830, 55.1892
-1831, 56.2765
-1832, 27.8672
-1833, 13.9741
-1834, 5.2897
-1835, 22.4063
-1836, 75.8426
-1837, 135.2604
-1838, 123.4356
-1839, 73.1759
-1840, 64.5067
-1841, 46.3514
-1842, 16.0159
-1843, 17.6781
-1844, 16.1095
-1845, 39.1884
-1846, 75.7718
-1847, 80.4127
-1848, 108.4728
-1849, 120.3614
-1850, 65.1015
-1851, 39.5009
-1852, 51.7036
-1853, 39.0369
-1854, 30.8453
-1855, 23.0074
-1856, 20.6358
-1857, 32.6021
-1858, 51.0554
-1859, 73.0901
-1860, 102.9663
-1861, 85.1107
-1862, 56.3590
-1863, 41.8000
-1864, 29.0897
-1865, 38.4049
-1866, 23.5480
-1867, 17.2169
-1868, 25.5456
-1869, 64.8925
-1870, 92.1810
-1871, 144.9161
-1872, 81.2455
-1873, 74.2512
-1874, 44.7857
-1875, 24.2016
-1876, 5.2302
-1877, 16.3772
-1878, 26.6953
-1879, 32.5956
-1880, 32.5162
-1881, 63.4612
-1882, 68.1254
-1883, 59.2254
-1884, 55.2588
-1885, 51.3962
-1886, 37.8536
-1887, 10.4133
-1888, 7.7974
-1889, 13.1916
-1890, 19.4783
-1891, 23.2385
-1892, 56.4945
-1893, 88.4361
-1894, 81.8715
-1895, 60.7967
-1896, 45.6953
-1897, 23.6868
-1898, 16.1033
-1899, 24.9201
-1900, 12.9006
-1901, 23.2250
-1902, 23.0700
-1903, 24.7299
-1904, 46.0211
-1905, 53.2488
-1906, 64.2425
-1907, 45.4394
-1908, 52.2379
-1909, 36.7360
-1910, 31.1373
-1911, 8.0110
-1912, 5.4179
-1913, 15.0374
-1914, 18.6514
-1915, 25.9393
-1916, 70.5995
-1917, 60.9699
-1918, 106.9299
-1919, 59.2734
-1920, 35.7445
-1921, 22.7168
-1922, 15.3497
-1923, 9.8045
-1924, 15.2983
-1925, 31.0386
-1926, 72.1485
-1927, 76.1533
-1928, 69.4000
-1929, 71.1905
-1930, 50.0137
-1931, 17.2099
-1932, 13.4715
-1933, 11.0154
-1934, 13.6062
-1935, 26.3285
-1936, 57.2889
-1937, 98.3814
-1938, 116.2272
-1939, 86.8228
-1940, 59.7324
-1941, 43.8037
-1942, 28.2076
-1943, 18.4238
-1944, 15.6238
-1945, 22.8275
-1946, 62.5187
-1947, 121.9892
-1948, 158.7448
-1949, 107.3938
-1950, 104.0028
-1951, 48.3130
-1952, 42.6960
-1953, 14.0014
-1954, 7.2680
-1955, 21.2344
-1956, 78.2456
-1957, 181.3364
-1958, 194.1315
-1959, 143.6808
-1960, 118.8232
-1961, 64.9805
-1962, 13.6226
-1963, 22.7451
-1964, 25.1087
-1965, 28.2275
-1966, 56.5253
-1967, 92.5299
-1968, 125.9856
-1969, 110.9182
-1970, 88.2160
-1971, 85.0722
-1972, 38.5614
-1973, 52.3767
-1974, 22.8371
-1975, 29.6618
-1976, 28.7989
-1977, 31.3542
-1978, 53.3789
-1979, 123.7290
-1980, 158.5133
-1981, 127.2971
-1982, 100.5273
-1983, 81.8967
-1984, 27.4831
-1985, 26.9057
-1986, 9.8930
-1987, 24.9149
-1988, 66.4453
-1989, 140.0824
-1990, 173.7841
-1991, 121.4507
-1992, 118.4088
-1993, 59.0602
-1994, 19.9059
-1995, 19.0615
-1996, 13.8253
-1997, 23.5746
-1998, 59.6311
-1999, 99.0682
-2000, 116.3966
-2001, 120.1556
-2002, 91.5468
-2003, 77.2543
-2004, 34.5889
-2005, 20.0033
-2006, 24.7040
-2007, 20.0261
-2008, 23.4736
-2009, 30.8586
-2010, 61.3354
-2011, 87.0247
-2012, 91.3212
-2013, 79.9216
-2014, 60.7995
-2015, 40.3749
-2016, 24.5290
-2017, 13.5305
-2018, 14.4426
-2019, 26.8251
-2020, 47.5587
-2021, 67.3004
-2022, 78.6904
-2023, 78.4359
-2024, 67.9448
-2025, 52.0910
-2026, 35.7081
-2027, 24.0176
-2028, 20.4849
-2029, 26.4658
-2030, 39.6776
-2031, 55.2300
-2032, 67.4980
-2033, 72.3783
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSConstantPredict.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSConstantPredict.csv
deleted file mode 100644
index 4b4e91f..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSConstantPredict.csv
+++ /dev/null
@@ -1,416 +0,0 @@
-11.9759400 0.0000000 0.0000000 0.0000000 0.0000000
-10.2786500 0.0000000 0.0000000 0.0000000 0.0000000
-9.7529560 0.0000000 0.0000000 0.0000000 0.0000000
-9.5912670 0.0000000 0.0000000 0.0000000 0.0000000
-12.1745500 0.0000000 0.0000000 0.0000000 0.0000000
-22.0220200 0.0000000 0.0000000 0.0000000 0.0000000
-24.6309500 0.0000000 0.0000000 0.0000000 0.0000000
-38.0292300 0.0000000 0.0000000 0.0000000 0.0000000
-51.0138500 0.0000000 0.0000000 0.0000000 0.0000000
-59.8135400 0.0000000 0.0000000 0.0000000 0.0000000
-47.0489200 0.0000000 0.0000000 0.0000000 0.0000000
-22.0033600 0.0000000 0.0000000 0.0000000 0.0000000
-19.0655900 0.0000000 0.0000000 0.0000000 0.0000000
-23.3640300 0.0000000 0.0000000 0.0000000 0.0000000
-20.4725000 0.0000000 0.0000000 0.0000000 0.0000000
-13.0734100 0.0000000 0.0000000 0.0000000 0.0000000
-34.0228200 0.0000000 0.0000000 0.0000000 0.0000000
-56.7262200 0.0000000 0.0000000 0.0000000 0.0000000
-90.8454600 0.0000000 0.0000000 0.0000000 0.0000000
-121.5800000 0.0000000 0.0000000 0.0000000 0.0000000
-74.3104000 0.0000000 0.0000000 0.0000000 0.0000000
-42.9633800 0.0000000 0.0000000 0.0000000 0.0000000
-31.5294900 0.0000000 0.0000000 0.0000000 0.0000000
-23.5693800 0.0000000 0.0000000 0.0000000 0.0000000
-5.1367160 0.0000000 0.0000000 0.0000000 0.0000000
-12.4800100 0.0000000 0.0000000 0.0000000 0.0000000
-37.1129600 0.0000000 0.0000000 0.0000000 0.0000000
-63.3150300 0.0000000 0.0000000 0.0000000 0.0000000
-93.8999400 0.0000000 0.0000000 0.0000000 0.0000000
-85.2563600 0.0000000 0.0000000 0.0000000 0.0000000
-104.6107000 0.0000000 0.0000000 0.0000000 0.0000000
-81.4402600 0.0000000 0.0000000 0.0000000 0.0000000
-41.1985200 0.0000000 0.0000000 0.0000000 0.0000000
-17.8384800 0.0000000 0.0000000 0.0000000 0.0000000
-11.3475900 0.0000000 0.0000000 0.0000000 0.0000000
-19.1989800 0.0000000 0.0000000 0.0000000 0.0000000
-18.6833900 0.0000000 0.0000000 0.0000000 0.0000000
-30.4802500 0.0000000 0.0000000 0.0000000 0.0000000
-50.8808300 0.0000000 0.0000000 0.0000000 0.0000000
-63.2416400 0.0000000 0.0000000 0.0000000 0.0000000
-74.0747700 0.0000000 0.0000000 0.0000000 0.0000000
-81.5033200 0.0000000 0.0000000 0.0000000 0.0000000
-69.0184900 0.0000000 0.0000000 0.0000000 0.0000000
-24.5216100 0.0000000 0.0000000 0.0000000 0.0000000
-37.2684700 0.0000000 0.0000000 0.0000000 0.0000000
-23.2274100 0.0000000 0.0000000 0.0000000 0.0000000
-5.3522780 0.0000000 0.0000000 0.0000000 0.0000000
-19.9662200 0.0000000 0.0000000 0.0000000 0.0000000
-25.4448600 0.0000000 0.0000000 0.0000000 0.0000000
-53.6239300 0.0000000 0.0000000 0.0000000 0.0000000
-67.2308800 0.0000000 0.0000000 0.0000000 0.0000000
-55.1517300 0.0000000 0.0000000 0.0000000 0.0000000
-64.2185500 0.0000000 0.0000000 0.0000000 0.0000000
-83.6496600 0.0000000 0.0000000 0.0000000 0.0000000
-39.2648600 0.0000000 0.0000000 0.0000000 0.0000000
-27.9030000 0.0000000 0.0000000 0.0000000 0.0000000
-30.0447300 0.0000000 0.0000000 0.0000000 0.0000000
-17.0010600 0.0000000 0.0000000 0.0000000 0.0000000
-17.4538600 0.0000000 0.0000000 0.0000000 0.0000000
-56.7539700 0.0000000 0.0000000 0.0000000 0.0000000
-82.3584100 0.0000000 0.0000000 0.0000000 0.0000000
-114.4292000 0.0000000 0.0000000 0.0000000 0.0000000
-87.6790300 0.0000000 0.0000000 0.0000000 0.0000000
-59.5520700 0.0000000 0.0000000 0.0000000 0.0000000
-51.8202600 0.0000000 0.0000000 0.0000000 0.0000000
-18.3619000 0.0000000 0.0000000 0.0000000 0.0000000
-23.5642100 0.0000000 0.0000000 0.0000000 0.0000000
-8.3428510 0.0000000 0.0000000 0.0000000 0.0000000
-34.8153100 0.0000000 0.0000000 0.0000000 0.0000000
-129.2351000 0.0000000 0.0000000 0.0000000 0.0000000
-166.0026000 0.0000000 0.0000000 0.0000000 0.0000000
-94.5698400 0.0000000 0.0000000 0.0000000 0.0000000
-56.1962000 0.0000000 0.0000000 0.0000000 0.0000000
-51.7409200 0.0000000 0.0000000 0.0000000 0.0000000
-22.7223600 0.0000000 0.0000000 0.0000000 0.0000000
-12.6374400 0.0000000 0.0000000 0.0000000 0.0000000
-10.5908700 0.0000000 0.0000000 0.0000000 0.0000000
-43.0951100 0.0000000 0.0000000 0.0000000 0.0000000
-124.5025000 0.0000000 0.0000000 0.0000000 0.0000000
-150.4858000 0.0000000 0.0000000 0.0000000 0.0000000
-112.2361000 0.0000000 0.0000000 0.0000000 0.0000000
-94.5556000 0.0000000 0.0000000 0.0000000 0.0000000
-62.1523700 0.0000000 0.0000000 0.0000000 0.0000000
-41.8596000 0.0000000 0.0000000 0.0000000 0.0000000
-45.3130000 0.0000000 0.0000000 0.0000000 0.0000000
-34.5130900 0.0000000 0.0000000 0.0000000 0.0000000
-43.7741400 0.0000000 0.0000000 0.0000000 0.0000000
-38.3710400 0.0000000 0.0000000 0.0000000 0.0000000
-39.1159500 0.0000000 0.0000000 0.0000000 0.0000000
-31.6996500 0.0000000 0.0000000 0.0000000 0.0000000
-25.8676600 0.0000000 0.0000000 0.0000000 0.0000000
-26.5877400 0.0000000 0.0000000 0.0000000 0.0000000
-32.9734400 0.0000000 0.0000000 0.0000000 0.0000000
-48.8512800 0.0000000 0.0000000 0.0000000 0.0000000
-52.9919000 0.0000000 0.0000000 0.0000000 0.0000000
-38.9382100 0.0000000 0.0000000 0.0000000 0.0000000
-44.5774900 0.0000000 0.0000000 0.0000000 0.0000000
-34.6780100 0.0000000 0.0000000 0.0000000 0.0000000
-18.0106100 0.0000000 0.0000000 0.0000000 0.0000000
-5.5363910 0.0000000 0.0000000 0.0000000 0.0000000
-12.4546200 0.0000000 0.0000000 0.0000000 0.0000000
-12.0475100 0.0000000 0.0000000 0.0000000 0.0000000
-13.5244200 0.0000000 0.0000000 0.0000000 0.0000000
-17.3066800 0.0000000 0.0000000 0.0000000 0.0000000
-21.4727300 0.0000000 0.0000000 0.0000000 0.0000000
-27.2791200 0.0000000 0.0000000 0.0000000 0.0000000
-24.0394000 0.0000000 0.0000000 0.0000000 0.0000000
-42.9192800 0.0000000 0.0000000 0.0000000 0.0000000
-46.6316400 0.0000000 0.0000000 0.0000000 0.0000000
-31.8181400 0.0000000 0.0000000 0.0000000 0.0000000
-21.6993300 0.0000000 0.0000000 0.0000000 0.0000000
-19.6576400 0.0000000 0.0000000 0.0000000 0.0000000
-13.1277700 0.0000000 0.0000000 0.0000000 0.0000000
-8.6515950 0.0000000 0.0000000 0.0000000 0.0000000
-9.8414150 0.0000000 0.0000000 0.0000000 0.0000000
-13.4353800 0.0000000 0.0000000 0.0000000 0.0000000
-24.4590000 0.0000000 0.0000000 0.0000000 0.0000000
-31.4124800 0.0000000 0.0000000 0.0000000 0.0000000
-47.1630100 0.0000000 0.0000000 0.0000000 0.0000000
-53.2122300 0.0000000 0.0000000 0.0000000 0.0000000
-60.6589500 0.0000000 0.0000000 0.0000000 0.0000000
-55.8372900 0.0000000 0.0000000 0.0000000 0.0000000
-56.8512200 0.0000000 0.0000000 0.0000000 0.0000000
-28.1917800 0.0000000 0.0000000 0.0000000 0.0000000
-14.3540700 0.0000000 0.0000000 0.0000000 0.0000000
-5.7102850 0.0000000 0.0000000 0.0000000 0.0000000
-23.0343200 0.0000000 0.0000000 0.0000000 0.0000000
-76.6172400 0.0000000 0.0000000 0.0000000 0.0000000
-135.9928000 0.0000000 0.0000000 0.0000000 0.0000000
-123.7094000 0.0000000 0.0000000 0.0000000 0.0000000
-73.2189500 0.0000000 0.0000000 0.0000000 0.0000000
-64.7666000 0.0000000 0.0000000 0.0000000 0.0000000
-46.4762400 0.0000000 0.0000000 0.0000000 0.0000000
-15.8943300 0.0000000 0.0000000 0.0000000 0.0000000
-17.6160900 0.0000000 0.0000000 0.0000000 0.0000000
-16.2724200 0.0000000 0.0000000 0.0000000 0.0000000
-39.7201900 0.0000000 0.0000000 0.0000000 0.0000000
-76.5358100 0.0000000 0.0000000 0.0000000 0.0000000
-81.1472200 0.0000000 0.0000000 0.0000000 0.0000000
-109.2335000 0.0000000 0.0000000 0.0000000 0.0000000
-120.9095000 0.0000000 0.0000000 0.0000000 0.0000000
-65.2204600 0.0000000 0.0000000 0.0000000 0.0000000
-39.6257500 0.0000000 0.0000000 0.0000000 0.0000000
-51.9503700 0.0000000 0.0000000 0.0000000 0.0000000
-39.0829800 0.0000000 0.0000000 0.0000000 0.0000000
-30.8064600 0.0000000 0.0000000 0.0000000 0.0000000
-23.1325800 0.0000000 0.0000000 0.0000000 0.0000000
-21.0915600 0.0000000 0.0000000 0.0000000 0.0000000
-33.3012400 0.0000000 0.0000000 0.0000000 0.0000000
-51.9048300 0.0000000 0.0000000 0.0000000 0.0000000
-73.9530300 0.0000000 0.0000000 0.0000000 0.0000000
-103.7786000 0.0000000 0.0000000 0.0000000 0.0000000
-85.6079400 0.0000000 0.0000000 0.0000000 0.0000000
-56.7498800 0.0000000 0.0000000 0.0000000 0.0000000
-42.1813100 0.0000000 0.0000000 0.0000000 0.0000000
-29.4044800 0.0000000 0.0000000 0.0000000 0.0000000
-38.6731000 0.0000000 0.0000000 0.0000000 0.0000000
-23.6690500 0.0000000 0.0000000 0.0000000 0.0000000
-17.5451500 0.0000000 0.0000000 0.0000000 0.0000000
-26.1287800 0.0000000 0.0000000 0.0000000 0.0000000
-65.8095000 0.0000000 0.0000000 0.0000000 0.0000000
-92.9647200 0.0000000 0.0000000 0.0000000 0.0000000
-145.6664000 0.0000000 0.0000000 0.0000000 0.0000000
-81.2722500 0.0000000 0.0000000 0.0000000 0.0000000
-74.5430100 0.0000000 0.0000000 0.0000000 0.0000000
-44.8565600 0.0000000 0.0000000 0.0000000 0.0000000
-24.3290200 0.0000000 0.0000000 0.0000000 0.0000000
-5.1214140 0.0000000 0.0000000 0.0000000 0.0000000
-16.5768300 0.0000000 0.0000000 0.0000000 0.0000000
-27.0747900 0.0000000 0.0000000 0.0000000 0.0000000
-33.1977300 0.0000000 0.0000000 0.0000000 0.0000000
-33.3486600 0.0000000 0.0000000 0.0000000 0.0000000
-64.5380700 0.0000000 0.0000000 0.0000000 0.0000000
-69.0776600 0.0000000 0.0000000 0.0000000 0.0000000
-59.9712900 0.0000000 0.0000000 0.0000000 0.0000000
-55.9539800 0.0000000 0.0000000 0.0000000 0.0000000
-52.0260500 0.0000000 0.0000000 0.0000000 0.0000000
-38.3207100 0.0000000 0.0000000 0.0000000 0.0000000
-10.7317100 0.0000000 0.0000000 0.0000000 0.0000000
-8.2646960 0.0000000 0.0000000 0.0000000 0.0000000
-13.7600200 0.0000000 0.0000000 0.0000000 0.0000000
-20.1455600 0.0000000 0.0000000 0.0000000 0.0000000
-23.9805600 0.0000000 0.0000000 0.0000000 0.0000000
-57.4898700 0.0000000 0.0000000 0.0000000 0.0000000
-89.4062200 0.0000000 0.0000000 0.0000000 0.0000000
-82.5605900 0.0000000 0.0000000 0.0000000 0.0000000
-61.2980800 0.0000000 0.0000000 0.0000000 0.0000000
-46.1625400 0.0000000 0.0000000 0.0000000 0.0000000
-24.0584700 0.0000000 0.0000000 0.0000000 0.0000000
-16.4333800 0.0000000 0.0000000 0.0000000 0.0000000
-25.2997200 0.0000000 0.0000000 0.0000000 0.0000000
-13.2566000 0.0000000 0.0000000 0.0000000 0.0000000
-23.8350100 0.0000000 0.0000000 0.0000000 0.0000000
-23.8146600 0.0000000 0.0000000 0.0000000 0.0000000
-25.6611900 0.0000000 0.0000000 0.0000000 0.0000000
-47.0365800 0.0000000 0.0000000 0.0000000 0.0000000
-54.1930900 0.0000000 0.0000000 0.0000000 0.0000000
-65.1149700 0.0000000 0.0000000 0.0000000 0.0000000
-46.0802700 0.0000000 0.0000000 0.0000000 0.0000000
-52.9767200 0.0000000 0.0000000 0.0000000 0.0000000
-37.2364000 0.0000000 0.0000000 0.0000000 0.0000000
-31.6399500 0.0000000 0.0000000 0.0000000 0.0000000
-8.3276520 0.0000000 0.0000000 0.0000000 0.0000000
-5.9585280 0.0000000 0.0000000 0.0000000 0.0000000
-15.6986000 0.0000000 0.0000000 0.0000000 0.0000000
-19.4157400 0.0000000 0.0000000 0.0000000 0.0000000
-26.8004200 0.0000000 0.0000000 0.0000000 0.0000000
-71.6717800 0.0000000 0.0000000 0.0000000 0.0000000
-61.7876800 0.0000000 0.0000000 0.0000000 0.0000000
-107.8738000 0.0000000 0.0000000 0.0000000 0.0000000
-59.6150600 0.0000000 0.0000000 0.0000000 0.0000000
-36.1787000 0.0000000 0.0000000 0.0000000 0.0000000
-23.0118000 0.0000000 0.0000000 0.0000000 0.0000000
-15.7560100 0.0000000 0.0000000 0.0000000 0.0000000
-10.0766500 0.0000000 0.0000000 0.0000000 0.0000000
-15.7355000 0.0000000 0.0000000 0.0000000 0.0000000
-31.7158300 0.0000000 0.0000000 0.0000000 0.0000000
-73.0440800 0.0000000 0.0000000 0.0000000 0.0000000
-76.9345200 0.0000000 0.0000000 0.0000000 0.0000000
-70.0590100 0.0000000 0.0000000 0.0000000 0.0000000
-71.8427700 0.0000000 0.0000000 0.0000000 0.0000000
-50.4651500 0.0000000 0.0000000 0.0000000 0.0000000
-17.5162100 0.0000000 0.0000000 0.0000000 0.0000000
-13.8635900 0.0000000 0.0000000 0.0000000 0.0000000
-11.4670000 0.0000000 0.0000000 0.0000000 0.0000000
-14.1359600 0.0000000 0.0000000 0.0000000 0.0000000
-27.0013800 0.0000000 0.0000000 0.0000000 0.0000000
-58.2015500 0.0000000 0.0000000 0.0000000 0.0000000
-99.3332300 0.0000000 0.0000000 0.0000000 0.0000000
-116.9505000 0.0000000 0.0000000 0.0000000 0.0000000
-87.1665200 0.0000000 0.0000000 0.0000000 0.0000000
-59.9801400 0.0000000 0.0000000 0.0000000 0.0000000
-44.0118200 0.0000000 0.0000000 0.0000000 0.0000000
-28.3064400 0.0000000 0.0000000 0.0000000 0.0000000
-18.4483300 0.0000000 0.0000000 0.0000000 0.0000000
-15.7514600 0.0000000 0.0000000 0.0000000 0.0000000
-23.2148900 0.0000000 0.0000000 0.0000000 0.0000000
-63.2519000 0.0000000 0.0000000 0.0000000 0.0000000
-122.8757000 0.0000000 0.0000000 0.0000000 0.0000000
-159.3815000 0.0000000 0.0000000 0.0000000 0.0000000
-107.4253000 0.0000000 0.0000000 0.0000000 0.0000000
-104.1619000 0.0000000 0.0000000 0.0000000 0.0000000
-48.1259400 0.0000000 0.0000000 0.0000000 0.0000000
-42.6543500 0.0000000 0.0000000 0.0000000 0.0000000
-13.6000500 0.0000000 0.0000000 0.0000000 0.0000000
-7.1715720 0.0000000 0.0000000 0.0000000 0.0000000
-21.3679900 0.0000000 0.0000000 0.0000000 0.0000000
-78.9334300 0.0000000 0.0000000 0.0000000 0.0000000
-182.2746000 0.0000000 0.0000000 0.0000000 0.0000000
-194.4485000 0.0000000 0.0000000 0.0000000 0.0000000
-143.5360000 0.0000000 0.0000000 0.0000000 0.0000000
-118.6101000 0.0000000 0.0000000 0.0000000 0.0000000
-64.6159600 0.0000000 0.0000000 0.0000000 0.0000000
-12.9757800 0.0000000 0.0000000 0.0000000 0.0000000
-22.2453300 0.0000000 0.0000000 0.0000000 0.0000000
-24.7075200 0.0000000 0.0000000 0.0000000 0.0000000
-28.1045400 0.0000000 0.0000000 0.0000000 0.0000000
-56.9165100 0.0000000 0.0000000 0.0000000 0.0000000
-93.3444500 0.0000000 0.0000000 0.0000000 0.0000000
-126.8484000 0.0000000 0.0000000 0.0000000 0.0000000
-111.4046000 0.0000000 0.0000000 0.0000000 0.0000000
-88.5821600 0.0000000 0.0000000 0.0000000 0.0000000
-85.3931800 0.0000000 0.0000000 0.0000000 0.0000000
-38.5716000 0.0000000 0.0000000 0.0000000 0.0000000
-52.5054300 0.0000000 0.0000000 0.0000000 0.0000000
-22.6849600 0.0000000 0.0000000 0.0000000 0.0000000
-29.8208300 0.0000000 0.0000000 0.0000000 0.0000000
-28.9759600 0.0000000 0.0000000 0.0000000 0.0000000
-31.9008800 0.0000000 0.0000000 0.0000000 0.0000000
-54.0814400 0.0000000 0.0000000 0.0000000 0.0000000
-124.7143000 0.0000000 0.0000000 0.0000000 0.0000000
-159.1404000 0.0000000 0.0000000 0.0000000 0.0000000
-127.3744000 0.0000000 0.0000000 0.0000000 0.0000000
-100.5049000 0.0000000 0.0000000 0.0000000 0.0000000
-81.8057200 0.0000000 0.0000000 0.0000000 0.0000000
-27.1036800 0.0000000 0.0000000 0.0000000 0.0000000
-26.5695300 0.0000000 0.0000000 0.0000000 0.0000000
-9.5603100 0.0000000 0.0000000 0.0000000 0.0000000
-24.9834700 0.0000000 0.0000000 0.0000000 0.0000000
-66.8504900 0.0000000 0.0000000 0.0000000 0.0000000
-140.9012000 0.0000000 0.0000000 0.0000000 0.0000000
-174.3067000 0.0000000 0.0000000 0.0000000 0.0000000
-121.4614000 0.0000000 0.0000000 0.0000000 0.0000000
-118.5412000 0.0000000 0.0000000 0.0000000 0.0000000
-58.8262600 0.0000000 0.0000000 0.0000000 0.0000000
-19.6645700 0.0000000 0.0000000 0.0000000 0.0000000
-18.7595800 0.0000000 0.0000000 0.0000000 0.0000000
-13.7100200 0.0000000 0.0000000 0.0000000 0.0000000
-23.6470600 0.0000000 0.0000000 0.0000000 0.0000000
-60.1537000 0.0000000 0.0000000 0.0000000 0.0000000
-99.8869600 0.0000000 0.0000000 0.0000000 0.0000000
-117.1123000 0.0000000 0.0000000 0.0000000 0.0000000
-120.7331000 0.0000000 0.0000000 0.0000000 0.0000000
-91.8149300 0.0000000 0.0000000 0.0000000 0.0000000
-77.4846300 0.0000000 0.0000000 0.0000000 0.0000000
-34.4894300 0.0000000 0.0000000 0.0000000 0.0000000
-20.0033400 0.0000000 0.0000000 0.0000000 0.0000000
-24.7432000 0.0000000 0.0000000 0.0000000 0.0000000
-20.1675900 0.0000000 0.0000000 0.0000000 0.0000000
-23.8157000 0.0000000 0.0000000 0.0000000 0.0000000
-0.0000000 31.4848020 1.8510816 61.1185220 15.1195230
-0.0000000 63.0235290 17.3997540 108.6473000 23.2778640
-0.0000000 89.6490390 35.8613520 143.4367200 27.4432010
-0.0000000 94.3504790 40.4874460 148.2135100 27.4816440
-0.0000000 82.7339400 28.7053700 136.7625100 27.5661030
-0.0000000 63.0438490 8.7092070 117.3784900 27.7222650
-0.0000000 41.9084070 -13.3325960 97.1494110 28.1847030
-0.0000000 25.4306420 -29.9790530 80.8403370 28.2707720
-0.0000000 13.9844080 -41.3907610 69.3595760 28.2531560
-0.0000000 14.8882740 -40.4364050 70.2129520 28.2273950
-0.0000000 27.8979810 -27.3766250 83.1725870 28.2018480
-0.0000000 49.7852650 -5.4406619 105.0111900 28.1770110
-0.0000000 70.8004860 15.6194050 125.9815700 28.1541300
-0.0000000 83.0697780 27.9220460 138.2175100 28.1371150
-0.0000000 83.0085130 27.8770030 138.1400200 28.1288380
-0.0000000 72.0037060 16.8884570 127.1189500 28.1205410
-0.0000000 55.1633520 0.0639279 110.2627800 28.1124680
-0.0000000 37.6503180 -17.4333340 92.7339700 28.1044210
-0.0000000 25.0510430 -30.0174780 80.1195630 28.0967000
-0.0000000 21.1630520 -33.8908540 76.2169590 28.0892440
-0.0000000 27.5284980 -27.5107620 82.5677570 28.0817710
-0.0000000 41.7986650 -13.2259040 96.8232330 28.0742750
-0.0000000 58.7368970 3.7266508 113.7471400 28.0669680
-0.0000000 72.2330030 17.2341670 127.2318400 28.0611460
-0.0000000 77.7530030 22.7623210 132.7436900 28.0569860
-0.0000000 74.0157920 19.0318910 128.9996900 28.0535260
-0.0000000 62.8477370 7.8705108 117.8249600 28.0501210
-0.0000000 48.3854910 -6.5850171 103.3560000 28.0466930
-0.0000000 35.5052140 -19.4585680 90.4689960 28.0432610
-0.0000000 28.4429380 -26.5141250 83.4000000 28.0398330
-0.0000000 29.3889180 -25.5614090 84.3392450 28.0363960
-0.0000000 37.7774620 -17.1660830 92.7210060 28.0329360
-0.0000000 50.4822790 -4.4546141 105.4191700 28.0295420
-0.0000000 62.9729370 8.0419878 117.9038900 28.0265090
-0.0000000 71.0107400 16.0845720 125.9369100 28.0240700
-0.0000000 72.0955920 17.1733080 127.0178800 28.0220880
-0.0000000 66.2249580 11.3062430 121.1436700 28.0202670
-0.0000000 55.7103870 0.7952491 110.6255300 28.0184430
-0.0000000 44.2965600 -10.6149740 99.2080950 28.0166040
-0.0000000 35.8598250 -19.0481480 90.7677980 28.0147870
-0.0000000 33.1263160 -21.7781480 88.0307800 28.0129960
-0.0000000 36.7959480 -18.1049950 91.6968900 28.0112000
-0.0000000 45.3671240 -9.5302849 100.2645300 28.0093970
-0.0000000 55.7318540 0.8377923 110.6259200 28.0076890
-0.0000000 64.3047330 9.4135662 119.1959000 28.0062120
-0.0000000 68.2735480 13.3847730 123.1623200 28.0049920
-0.0000000 66.5136330 11.6269550 121.4003100 28.0039220
-0.0000000 59.8838900 4.9992620 114.7685200 28.0028760
-0.0000000 50.8412620 -4.0412819 105.7238000 28.0018120
-0.0000000 42.5446270 -12.3358520 97.4251060 28.0007590
-0.0000000 37.7651790 -17.1133090 92.6436660 27.9997430
-0.0000000 37.9696230 -16.9069130 92.8461590 27.9987470
-0.0000000 42.8783010 -11.9962670 97.7528690 27.9977430
-0.0000000 50.6315400 -4.2410809 105.5041600 27.9967500
-0.0000000 58.4879240 3.6170904 113.3587600 27.9958380
-0.0000000 63.7920060 8.9226977 118.6613100 27.9950590
-0.0000000 64.8692090 10.0012080 119.7372100 27.9943930
-0.0000000 61.5466670 6.6798941 116.4134400 27.9937660
-0.0000000 55.1434170 0.2778918 110.0089400 27.9931300
-0.0000000 47.9591940 -6.9050753 102.8234600 27.9924890
-0.0000000 42.4562040 -12.4068580 97.3192650 27.9918720
-0.0000000 40.4217560 -14.4401560 95.2836670 27.9912860
-0.0000000 42.3939400 -12.4668360 97.2547170 27.9907070
-0.0000000 47.5337700 -7.3258617 102.3934000 27.9901220
-0.0000000 53.9685690 -0.8899571 108.8271000 27.9895580
-0.0000000 59.4703160 4.6127767 114.3278500 27.9890550
-0.0000000 62.2242340 7.3675403 117.0809300 27.9886230
-0.0000000 61.4234410 6.5675102 116.2793700 27.9882340
-0.0000000 57.4966850 2.6415116 112.3518600 27.9878480
-0.0000000 51.9090100 -2.9453876 106.7634100 27.9874520
-0.0000000 46.6217160 -8.2319210 101.4753500 27.9870640
-0.0000000 43.4085840 -11.4443400 98.2615070 27.9867000
-0.0000000 43.2652130 -11.5870300 98.1174550 27.9863520
-0.0000000 46.1068180 -8.7447447 100.9583800 27.9860050
-0.0000000 50.8441520 -4.0067320 105.6950400 27.9856590
-0.0000000 55.7954810 0.9452331 110.6457300 27.9853340
-0.0000000 59.2806460 4.4309549 114.1303400 27.9850510
-0.0000000 60.1884180 5.3392149 115.0376200 27.9848020
-0.0000000 58.3266800 3.4779434 113.1754200 27.9845640
-0.0000000 54.4468480 -0.4014103 109.2951100 27.9843200
-0.0000000 49.9486890 -4.8990877 104.7964700 27.9840740
-0.0000000 46.3792360 -8.4680827 101.2265600 27.9838400
-0.0000000 44.9039650 -9.9429285 99.7508580 27.9836230
-0.0000000 45.9299740 -8.9165071 100.7764600 27.9834130
-0.0000000 49.0017880 -5.8442793 103.8478600 27.9832020
-0.0000000 52.9930360 -1.8526281 107.8387000 27.9829960
-0.0000000 56.5162980 1.6710007 111.3615900 27.9828090
-0.0000000 58.4031040 3.5581266 113.2480800 27.9826460
-0.0000000 58.0888840 3.2441985 112.9335700 27.9824960
-0.0000000 55.7770660 0.9326740 110.6214600 27.9823470
-0.0000000 52.3366470 -2.5074431 107.1807400 27.9821930
-0.0000000 48.9795230 -5.8642710 103.8233200 27.9820420
-0.0000000 46.8362120 -8.0073067 101.6797300 27.9819010
-0.0000000 46.5776780 -8.2655840 101.4209400 27.9817700
-0.0000000 48.2089350 -6.6340737 103.0519400 27.9816410
-0.0000000 51.0966030 -3.7461536 105.9393600 27.9815120
-0.0000000 54.2108270 -0.6316910 109.0533400 27.9813910
-0.0000000 56.4904620 1.6481558 111.3327700 27.9812830
-0.0000000 57.2027790 2.3606596 112.0449000 27.9811870
-0.0000000 56.1764620 1.3345231 111.0184000 27.9810950
-0.0000000 53.8348010 -1.0069512 108.6765500 27.9810000
-0.0000000 51.0266380 -3.8149243 105.8682000 27.9809030
-0.0000000 48.7210450 -6.1203380 103.5624300 27.9808120
-0.0000000 47.6748050 -7.1664125 102.5160200 27.9807270
-0.0000000 48.1861910 -6.6548697 103.0272500 27.9806470
-0.0000000 50.0143780 -4.8265260 104.8552800 27.9805670
-0.0000000 52.4844480 -2.3563031 107.3252000 27.9804890
-0.0000000 54.7343620 -0.1062499 109.5749700 27.9804180
-0.0000000 56.0142720 1.1737832 110.8547600 27.9803550
-0.0000000 55.9348080 1.0944315 110.7751800 27.9802980
-0.0000000 54.5827200 -0.2575423 109.4229800 27.9802400
-0.0000000 52.4706790 -2.3694654 107.3108200 27.9801790
-0.0000000 50.3454460 -4.4945815 105.1854700 27.9801200
-0.0000000 48.9254290 -5.9144895 103.7653500 27.9800640
-0.0000000 48.6593370 -6.1804815 103.4991600 27.9800130
-0.0000000 49.5865020 -5.2532189 104.4262200 27.9799640
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSNoConstantPredict.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSNoConstantPredict.csv
deleted file mode 100644
index df8b312..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/AROLSNoConstantPredict.csv
+++ /dev/null
@@ -1,416 +0,0 @@
- 7.689620 0.000000 0.000000 0.000000 0.000000
- 6.004791 0.000000 0.000000 0.000000 0.000000
- 5.425601 0.000000 0.000000 0.000000 0.000000
- 4.957486 0.000000 0.000000 0.000000 0.000000
- 7.321750 0.000000 0.000000 0.000000 0.000000
-17.401620 0.000000 0.000000 0.000000 0.000000
-19.274520 0.000000 0.000000 0.000000 0.000000
-32.805440 0.000000 0.000000 0.000000 0.000000
-46.143310 0.000000 0.000000 0.000000 0.000000
-55.631590 0.000000 0.000000 0.000000 0.000000
-43.166180 0.000000 0.000000 0.000000 0.000000
-18.145830 0.000000 0.000000 0.000000 0.000000
-15.618330 0.000000 0.000000 0.000000 0.000000
-20.297310 0.000000 0.000000 0.000000 0.000000
-17.524220 0.000000 0.000000 0.000000 0.000000
- 9.993097 0.000000 0.000000 0.000000 0.000000
-31.326560 0.000000 0.000000 0.000000 0.000000
-54.473470 0.000000 0.000000 0.000000 0.000000
-89.360760 0.000000 0.000000 0.000000 0.000000
-121.006400 0.000000 0.000000 0.000000 0.000000
-73.355040 0.000000 0.000000 0.000000 0.000000
-42.213860 0.000000 0.000000 0.000000 0.000000
-31.141240 0.000000 0.000000 0.000000 0.000000
-23.112790 0.000000 0.000000 0.000000 0.000000
- 4.384809 0.000000 0.000000 0.000000 0.000000
-11.543890 0.000000 0.000000 0.000000 0.000000
-36.350050 0.000000 0.000000 0.000000 0.000000
-62.996840 0.000000 0.000000 0.000000 0.000000
-93.460470 0.000000 0.000000 0.000000 0.000000
-84.112950 0.000000 0.000000 0.000000 0.000000
-104.031300 0.000000 0.000000 0.000000 0.000000
-81.106540 0.000000 0.000000 0.000000 0.000000
-40.482380 0.000000 0.000000 0.000000 0.000000
-17.179010 0.000000 0.000000 0.000000 0.000000
-10.822290 0.000000 0.000000 0.000000 0.000000
-18.809490 0.000000 0.000000 0.000000 0.000000
-18.155790 0.000000 0.000000 0.000000 0.000000
-29.335160 0.000000 0.000000 0.000000 0.000000
-49.751500 0.000000 0.000000 0.000000 0.000000
-61.548490 0.000000 0.000000 0.000000 0.000000
-72.011430 0.000000 0.000000 0.000000 0.000000
-79.355620 0.000000 0.000000 0.000000 0.000000
-66.925320 0.000000 0.000000 0.000000 0.000000
-22.081080 0.000000 0.000000 0.000000 0.000000
-35.481060 0.000000 0.000000 0.000000 0.000000
-21.489370 0.000000 0.000000 0.000000 0.000000
- 3.318968 0.000000 0.000000 0.000000 0.000000
-18.174590 0.000000 0.000000 0.000000 0.000000
-23.336400 0.000000 0.000000 0.000000 0.000000
-51.894910 0.000000 0.000000 0.000000 0.000000
-65.524450 0.000000 0.000000 0.000000 0.000000
-52.421560 0.000000 0.000000 0.000000 0.000000
-61.993100 0.000000 0.000000 0.000000 0.000000
-82.126050 0.000000 0.000000 0.000000 0.000000
-37.100900 0.000000 0.000000 0.000000 0.000000
-26.035300 0.000000 0.000000 0.000000 0.000000
-28.474180 0.000000 0.000000 0.000000 0.000000
-15.428200 0.000000 0.000000 0.000000 0.000000
-15.867260 0.000000 0.000000 0.000000 0.000000
-55.663350 0.000000 0.000000 0.000000 0.000000
-81.614450 0.000000 0.000000 0.000000 0.000000
-114.986800 0.000000 0.000000 0.000000 0.000000
-87.678880 0.000000 0.000000 0.000000 0.000000
-59.286430 0.000000 0.000000 0.000000 0.000000
-51.940800 0.000000 0.000000 0.000000 0.000000
-17.890350 0.000000 0.000000 0.000000 0.000000
-23.135940 0.000000 0.000000 0.000000 0.000000
- 7.577013 0.000000 0.000000 0.000000 0.000000
-34.354690 0.000000 0.000000 0.000000 0.000000
-130.996500 0.000000 0.000000 0.000000 0.000000
-168.541600 0.000000 0.000000 0.000000 0.000000
-95.868110 0.000000 0.000000 0.000000 0.000000
-57.240250 0.000000 0.000000 0.000000 0.000000
-52.791830 0.000000 0.000000 0.000000 0.000000
-23.601930 0.000000 0.000000 0.000000 0.000000
-13.023410 0.000000 0.000000 0.000000 0.000000
-10.448340 0.000000 0.000000 0.000000 0.000000
-43.775790 0.000000 0.000000 0.000000 0.000000
-127.275600 0.000000 0.000000 0.000000 0.000000
-153.095800 0.000000 0.000000 0.000000 0.000000
-113.739300 0.000000 0.000000 0.000000 0.000000
-96.326570 0.000000 0.000000 0.000000 0.000000
-63.625530 0.000000 0.000000 0.000000 0.000000
-43.469390 0.000000 0.000000 0.000000 0.000000
-47.283540 0.000000 0.000000 0.000000 0.000000
-36.297290 0.000000 0.000000 0.000000 0.000000
-46.146390 0.000000 0.000000 0.000000 0.000000
-40.480000 0.000000 0.000000 0.000000 0.000000
-40.069370 0.000000 0.000000 0.000000 0.000000
-31.248850 0.000000 0.000000 0.000000 0.000000
-23.891420 0.000000 0.000000 0.000000 0.000000
-23.501190 0.000000 0.000000 0.000000 0.000000
-29.364930 0.000000 0.000000 0.000000 0.000000
-45.096210 0.000000 0.000000 0.000000 0.000000
-49.273240 0.000000 0.000000 0.000000 0.000000
-34.802510 0.000000 0.000000 0.000000 0.000000
-40.915100 0.000000 0.000000 0.000000 0.000000
-31.065760 0.000000 0.000000 0.000000 0.000000
-14.367250 0.000000 0.000000 0.000000 0.000000
- 1.804234 0.000000 0.000000 0.000000 0.000000
- 8.835206 0.000000 0.000000 0.000000 0.000000
- 8.402061 0.000000 0.000000 0.000000 0.000000
- 9.629216 0.000000 0.000000 0.000000 0.000000
-12.920300 0.000000 0.000000 0.000000 0.000000
-16.771150 0.000000 0.000000 0.000000 0.000000
-22.331190 0.000000 0.000000 0.000000 0.000000
-18.667200 0.000000 0.000000 0.000000 0.000000
-37.767020 0.000000 0.000000 0.000000 0.000000
-41.882580 0.000000 0.000000 0.000000 0.000000
-27.103370 0.000000 0.000000 0.000000 0.000000
-17.177550 0.000000 0.000000 0.000000 0.000000
-15.418280 0.000000 0.000000 0.000000 0.000000
- 8.982916 0.000000 0.000000 0.000000 0.000000
- 4.529599 0.000000 0.000000 0.000000 0.000000
- 5.504591 0.000000 0.000000 0.000000 0.000000
- 9.148726 0.000000 0.000000 0.000000 0.000000
-20.198970 0.000000 0.000000 0.000000 0.000000
-26.931780 0.000000 0.000000 0.000000 0.000000
-42.766720 0.000000 0.000000 0.000000 0.000000
-49.061860 0.000000 0.000000 0.000000 0.000000
-57.016170 0.000000 0.000000 0.000000 0.000000
-52.606090 0.000000 0.000000 0.000000 0.000000
-54.367550 0.000000 0.000000 0.000000 0.000000
-25.688210 0.000000 0.000000 0.000000 0.000000
-12.034550 0.000000 0.000000 0.000000 0.000000
- 3.305187 0.000000 0.000000 0.000000 0.000000
-21.011930 0.000000 0.000000 0.000000 0.000000
-75.704860 0.000000 0.000000 0.000000 0.000000
-136.711200 0.000000 0.000000 0.000000 0.000000
-124.734400 0.000000 0.000000 0.000000 0.000000
-74.031550 0.000000 0.000000 0.000000 0.000000
-65.861300 0.000000 0.000000 0.000000 0.000000
-47.572200 0.000000 0.000000 0.000000 0.000000
-16.441790 0.000000 0.000000 0.000000 0.000000
-18.148870 0.000000 0.000000 0.000000 0.000000
-16.623240 0.000000 0.000000 0.000000 0.000000
-40.576450 0.000000 0.000000 0.000000 0.000000
-77.499090 0.000000 0.000000 0.000000 0.000000
-80.886280 0.000000 0.000000 0.000000 0.000000
-109.288900 0.000000 0.000000 0.000000 0.000000
-121.453700 0.000000 0.000000 0.000000 0.000000
-64.911840 0.000000 0.000000 0.000000 0.000000
-39.473610 0.000000 0.000000 0.000000 0.000000
-52.489780 0.000000 0.000000 0.000000 0.000000
-39.722890 0.000000 0.000000 0.000000 0.000000
-31.693130 0.000000 0.000000 0.000000 0.000000
-23.593740 0.000000 0.000000 0.000000 0.000000
-21.123080 0.000000 0.000000 0.000000 0.000000
-33.064480 0.000000 0.000000 0.000000 0.000000
-50.714550 0.000000 0.000000 0.000000 0.000000
-72.220150 0.000000 0.000000 0.000000 0.000000
-102.731100 0.000000 0.000000 0.000000 0.000000
-84.456970 0.000000 0.000000 0.000000 0.000000
-55.426090 0.000000 0.000000 0.000000 0.000000
-40.969440 0.000000 0.000000 0.000000 0.000000
-28.233020 0.000000 0.000000 0.000000 0.000000
-38.020170 0.000000 0.000000 0.000000 0.000000
-22.908290 0.000000 0.000000 0.000000 0.000000
-16.652440 0.000000 0.000000 0.000000 0.000000
-25.325070 0.000000 0.000000 0.000000 0.000000
-65.198790 0.000000 0.000000 0.000000 0.000000
-92.359810 0.000000 0.000000 0.000000 0.000000
-146.327400 0.000000 0.000000 0.000000 0.000000
-80.990780 0.000000 0.000000 0.000000 0.000000
-75.166020 0.000000 0.000000 0.000000 0.000000
-45.409550 0.000000 0.000000 0.000000 0.000000
-24.722610 0.000000 0.000000 0.000000 0.000000
- 5.078195 0.000000 0.000000 0.000000 0.000000
-16.710680 0.000000 0.000000 0.000000 0.000000
-26.986680 0.000000 0.000000 0.000000 0.000000
-33.214370 0.000000 0.000000 0.000000 0.000000
-31.685590 0.000000 0.000000 0.000000 0.000000
-62.645050 0.000000 0.000000 0.000000 0.000000
-66.380240 0.000000 0.000000 0.000000 0.000000
-56.948010 0.000000 0.000000 0.000000 0.000000
-52.834800 0.000000 0.000000 0.000000 0.000000
-49.328740 0.000000 0.000000 0.000000 0.000000
-35.998940 0.000000 0.000000 0.000000 0.000000
- 8.056849 0.000000 0.000000 0.000000 0.000000
- 5.590196 0.000000 0.000000 0.000000 0.000000
-11.333730 0.000000 0.000000 0.000000 0.000000
-17.695900 0.000000 0.000000 0.000000 0.000000
-21.053320 0.000000 0.000000 0.000000 0.000000
-54.836870 0.000000 0.000000 0.000000 0.000000
-87.348810 0.000000 0.000000 0.000000 0.000000
-80.537830 0.000000 0.000000 0.000000 0.000000
-59.032170 0.000000 0.000000 0.000000 0.000000
-44.106630 0.000000 0.000000 0.000000 0.000000
-22.033150 0.000000 0.000000 0.000000 0.000000
-14.627780 0.000000 0.000000 0.000000 0.000000
-23.682510 0.000000 0.000000 0.000000 0.000000
-11.420180 0.000000 0.000000 0.000000 0.000000
-22.216620 0.000000 0.000000 0.000000 0.000000
-21.582670 0.000000 0.000000 0.000000 0.000000
-22.578440 0.000000 0.000000 0.000000 0.000000
-43.750480 0.000000 0.000000 0.000000 0.000000
-50.512910 0.000000 0.000000 0.000000 0.000000
-61.622790 0.000000 0.000000 0.000000 0.000000
-42.628390 0.000000 0.000000 0.000000 0.000000
-49.993120 0.000000 0.000000 0.000000 0.000000
-34.472370 0.000000 0.000000 0.000000 0.000000
-29.121220 0.000000 0.000000 0.000000 0.000000
- 5.547792 0.000000 0.000000 0.000000 0.000000
- 3.250177 0.000000 0.000000 0.000000 0.000000
-13.035770 0.000000 0.000000 0.000000 0.000000
-16.575800 0.000000 0.000000 0.000000 0.000000
-23.307680 0.000000 0.000000 0.000000 0.000000
-68.966940 0.000000 0.000000 0.000000 0.000000
-58.557240 0.000000 0.000000 0.000000 0.000000
-106.181000 0.000000 0.000000 0.000000 0.000000
-57.205740 0.000000 0.000000 0.000000 0.000000
-33.891700 0.000000 0.000000 0.000000 0.000000
-21.142570 0.000000 0.000000 0.000000 0.000000
-13.938960 0.000000 0.000000 0.000000 0.000000
- 8.229635 0.000000 0.000000 0.000000 0.000000
-14.162580 0.000000 0.000000 0.000000 0.000000
-29.813780 0.000000 0.000000 0.000000 0.000000
-72.273410 0.000000 0.000000 0.000000 0.000000
-75.514260 0.000000 0.000000 0.000000 0.000000
-68.336410 0.000000 0.000000 0.000000 0.000000
-70.150220 0.000000 0.000000 0.000000 0.000000
-48.714730 0.000000 0.000000 0.000000 0.000000
-15.374670 0.000000 0.000000 0.000000 0.000000
-11.739300 0.000000 0.000000 0.000000 0.000000
- 9.280053 0.000000 0.000000 0.000000 0.000000
-12.013810 0.000000 0.000000 0.000000 0.000000
-24.835940 0.000000 0.000000 0.000000 0.000000
-56.146220 0.000000 0.000000 0.000000 0.000000
-98.148690 0.000000 0.000000 0.000000 0.000000
-116.355200 0.000000 0.000000 0.000000 0.000000
-86.263710 0.000000 0.000000 0.000000 0.000000
-59.270300 0.000000 0.000000 0.000000 0.000000
-43.718150 0.000000 0.000000 0.000000 0.000000
-28.217010 0.000000 0.000000 0.000000 0.000000
-18.368270 0.000000 0.000000 0.000000 0.000000
-15.649150 0.000000 0.000000 0.000000 0.000000
-23.125350 0.000000 0.000000 0.000000 0.000000
-63.710110 0.000000 0.000000 0.000000 0.000000
-124.041600 0.000000 0.000000 0.000000 0.000000
-161.256000 0.000000 0.000000 0.000000 0.000000
-108.648300 0.000000 0.000000 0.000000 0.000000
-106.209800 0.000000 0.000000 0.000000 0.000000
-49.756980 0.000000 0.000000 0.000000 0.000000
-44.816780 0.000000 0.000000 0.000000 0.000000
-15.335370 0.000000 0.000000 0.000000 0.000000
- 8.570750 0.000000 0.000000 0.000000 0.000000
-22.960610 0.000000 0.000000 0.000000 0.000000
-81.483880 0.000000 0.000000 0.000000 0.000000
-186.143200 0.000000 0.000000 0.000000 0.000000
-198.913500 0.000000 0.000000 0.000000 0.000000
-147.120400 0.000000 0.000000 0.000000 0.000000
-123.036300 0.000000 0.000000 0.000000 0.000000
-68.618580 0.000000 0.000000 0.000000 0.000000
-16.646950 0.000000 0.000000 0.000000 0.000000
-26.184930 0.000000 0.000000 0.000000 0.000000
-28.390300 0.000000 0.000000 0.000000 0.000000
-32.147380 0.000000 0.000000 0.000000 0.000000
-60.598240 0.000000 0.000000 0.000000 0.000000
-96.052630 0.000000 0.000000 0.000000 0.000000
-129.026000 0.000000 0.000000 0.000000 0.000000
-112.471800 0.000000 0.000000 0.000000 0.000000
-88.666210 0.000000 0.000000 0.000000 0.000000
-86.028050 0.000000 0.000000 0.000000 0.000000
-38.856760 0.000000 0.000000 0.000000 0.000000
-53.510020 0.000000 0.000000 0.000000 0.000000
-23.255470 0.000000 0.000000 0.000000 0.000000
-30.740630 0.000000 0.000000 0.000000 0.000000
-29.992090 0.000000 0.000000 0.000000 0.000000
-32.106240 0.000000 0.000000 0.000000 0.000000
-53.864730 0.000000 0.000000 0.000000 0.000000
-125.634000 0.000000 0.000000 0.000000 0.000000
-160.492100 0.000000 0.000000 0.000000 0.000000
-129.136600 0.000000 0.000000 0.000000 0.000000
-102.486400 0.000000 0.000000 0.000000 0.000000
-84.692280 0.000000 0.000000 0.000000 0.000000
-29.464410 0.000000 0.000000 0.000000 0.000000
-29.397720 0.000000 0.000000 0.000000 0.000000
-11.770590 0.000000 0.000000 0.000000 0.000000
-27.493590 0.000000 0.000000 0.000000 0.000000
-70.012430 0.000000 0.000000 0.000000 0.000000
-144.564800 0.000000 0.000000 0.000000 0.000000
-178.274800 0.000000 0.000000 0.000000 0.000000
-124.404800 0.000000 0.000000 0.000000 0.000000
-121.668400 0.000000 0.000000 0.000000 0.000000
-61.387560 0.000000 0.000000 0.000000 0.000000
-21.726410 0.000000 0.000000 0.000000 0.000000
-21.037120 0.000000 0.000000 0.000000 0.000000
-15.430530 0.000000 0.000000 0.000000 0.000000
-25.636250 0.000000 0.000000 0.000000 0.000000
-62.497190 0.000000 0.000000 0.000000 0.000000
-101.548100 0.000000 0.000000 0.000000 0.000000
-118.717200 0.000000 0.000000 0.000000 0.000000
-121.757000 0.000000 0.000000 0.000000 0.000000
-92.267960 0.000000 0.000000 0.000000 0.000000
-78.211730 0.000000 0.000000 0.000000 0.000000
-34.982700 0.000000 0.000000 0.000000 0.000000
-20.486940 0.000000 0.000000 0.000000 0.000000
-25.476760 0.000000 0.000000 0.000000 0.000000
-20.886050 0.000000 0.000000 0.000000 0.000000
-24.096840 2.900000 0.000000 0.000000 0.000000
- 0.000000 31.170699 1.202378 61.139021 15.290241
- 0.000000 61.821348 15.044909 108.597790 23.865969
- 0.000000 87.520577 31.517249 143.523910 28.573652
- 0.000000 91.001156 34.509773 147.492540 28.822663
- 0.000000 78.311920 21.856670 134.767170 28.804228
- 0.000000 58.041846 1.624501 114.459190 28.784889
- 0.000000 36.859904 -22.344434 96.064243 30.206850
- 0.000000 20.682433 -39.923716 81.288582 30.922073
- 0.000000 9.414619 -51.607721 70.436958 31.134419
- 0.000000 10.536909 -50.551192 71.625010 31.167971
- 0.000000 23.609196 -37.460546 84.678937 31.158604
- 0.000000 45.436093 -15.608040 106.480230 31.145538
- 0.000000 65.975242 4.957875 126.992610 31.131881
- 0.000000 77.322243 16.326538 138.317950 31.120830
- 0.000000 76.093381 15.109016 137.077750 31.115043
- 0.000000 64.046504 3.073681 125.019330 31.109155
- 0.000000 46.626604 -14.336095 107.589300 31.103989
- 0.000000 28.966982 -31.985799 89.919764 31.098930
- 0.000000 16.580093 -44.362994 77.523181 31.093983
- 0.000000 13.078490 -47.855234 74.012214 31.089206
- 0.000000 19.894224 -41.030085 80.818534 31.084403
- 0.000000 34.471178 -26.443709 95.386066 31.079595
- 0.000000 51.359743 -9.545609 112.265090 31.074730
- 0.000000 64.316329 3.419463 125.213200 31.070401
- 0.000000 68.868920 7.978960 129.758880 31.066877
- 0.000000 64.014070 3.130481 124.897660 31.063627
- 0.000000 51.886756 -8.990393 112.763900 31.060341
- 0.000000 36.861263 -24.009398 97.731924 31.057030
- 0.000000 23.883580 -36.980563 84.747722 31.053705
- 0.000000 17.137469 -43.720129 77.995066 31.050365
- 0.000000 18.646278 -42.204727 79.497282 31.047001
- 0.000000 27.602904 -33.241431 88.447240 31.043599
- 0.000000 40.615462 -20.222167 101.453090 31.040177
- 0.000000 52.952878 -7.878302 113.784060 31.036886
- 0.000000 60.339198 -0.486117 121.164510 31.033894
- 0.000000 60.419661 -0.400270 121.239590 31.031147
- 0.000000 53.468188 -7.346521 114.282900 31.028483
- 0.000000 42.088274 -18.721200 102.897750 31.025812
- 0.000000 30.236143 -30.568057 91.040344 31.023121
- 0.000000 21.855750 -38.943150 82.654650 31.020417
- 0.000000 19.583887 -41.209679 80.377453 31.017696
- 0.000000 23.900820 -36.887359 84.689000 31.014947
- 0.000000 33.019388 -27.763374 93.802149 31.012183
- 0.000000 43.574795 -17.202652 104.352240 31.009471
- 0.000000 51.844501 -8.927918 112.616920 31.006906
- 0.000000 55.052211 -5.715525 115.819950 31.004517
- 0.000000 52.268265 -8.495018 113.031550 31.002245
- 0.000000 44.634994 -16.123911 105.393900 31.000011
- 0.000000 34.881416 -25.873096 95.635928 30.997770
- 0.000000 26.336729 -34.413360 87.086819 30.995513
- 0.000000 21.786647 -38.958992 82.532286 30.993243
- 0.000000 22.553079 -38.188072 83.294230 30.990952
- 0.000000 28.100589 -32.636040 88.837218 30.988645
- 0.000000 36.288440 -24.443699 97.020578 30.986354
- 0.000000 44.165322 -16.562476 104.893120 30.984140
- 0.000000 49.009433 -11.714260 109.733130 30.982045
- 0.000000 49.245451 -11.474354 109.965260 30.980062
- 0.000000 44.929072 -15.786966 105.645110 30.978140
- 0.000000 37.657015 -23.055283 98.369313 30.976232
- 0.000000 29.960771 -30.747769 90.669312 30.974314
- 0.000000 24.410826 -36.293932 85.115583 30.972384
- 0.000000 22.744463 -37.956483 83.445408 30.970439
- 0.000000 25.310054 -35.387049 86.007157 30.968479
- 0.000000 31.004958 -29.688302 91.698218 30.966518
- 0.000000 37.709426 -22.980063 98.398914 30.964594
- 0.000000 43.049204 -17.636662 103.735070 30.962745
- 0.000000 45.212829 -15.469590 105.895250 30.960987
- 0.000000 43.542931 -17.136176 104.222040 30.959297
- 0.000000 38.710600 -21.965256 99.386455 30.957638
- 0.000000 32.431979 -28.240629 93.104588 30.955981
- 0.000000 26.842745 -33.826599 87.512089 30.954316
- 0.000000 23.756374 -36.909683 84.422430 30.952638
- 0.000000 24.062184 -36.600561 84.724929 30.950949
- 0.000000 27.461590 -33.197831 88.121011 30.949253
- 0.000000 32.618538 -28.037588 93.274663 30.947571
- 0.000000 37.656119 -22.996798 98.309035 30.945934
- 0.000000 40.816274 -19.833563 101.466110 30.944363
- 0.000000 41.051592 -19.595288 101.698470 30.942854
- 0.000000 38.351113 -22.292889 98.995115 30.941386
- 0.000000 33.700816 -26.940336 94.341968 30.939932
- 0.000000 28.707573 -31.930725 89.345871 30.938476
- 0.000000 25.028123 -35.607306 85.663551 30.937012
- 0.000000 23.804815 -36.827725 84.437355 30.935538
- 0.000000 25.299261 -35.330376 85.928899 30.934057
- 0.000000 28.840073 -31.786670 89.466816 30.932580
- 0.000000 33.089470 -27.534424 93.713364 30.931126
- 0.000000 36.525031 -24.096100 97.146163 30.929717
- 0.000000 37.964081 -22.654389 98.582551 30.928359
- 0.000000 36.950931 -23.664960 97.566821 30.927043
- 0.000000 33.881273 -26.732082 94.494628 30.925749
- 0.000000 29.832497 -30.778334 90.443328 30.924462
- 0.000000 26.169729 -34.438571 86.778029 30.923170
- 0.000000 24.070613 -36.535144 84.676370 30.921873
- 0.000000 24.133438 -36.469764 84.736639 30.920569
- 0.000000 26.198151 -34.402493 86.798796 30.919264
- 0.000000 29.432186 -31.165925 90.030296 30.917971
- 0.000000 32.640961 -27.954669 93.236591 30.916706
- 0.000000 34.688352 -25.904873 95.281576 30.915479
- 0.000000 34.879833 -25.711062 95.470727 30.914290
- 0.000000 33.179822 -27.408793 93.768438 30.913127
- 0.000000 30.196365 -30.389996 90.782726 30.911977
- 0.000000 26.948026 -33.636084 87.532136 30.910828
- 0.000000 24.501160 -36.080693 85.083013 30.909677
- 0.000000 23.606034 -36.973553 84.185621 30.908521
- 0.000000 24.455337 -36.121981 85.032655 30.907363
- 0.000000 26.641956 -33.933101 87.217014 30.906210
- 0.000000 29.322066 -31.250764 89.894895 30.905073
- 0.000000 31.519650 -29.051004 92.090305 30.903963
- 0.000000 32.463237 -28.105303 93.031777 30.902884
- 0.000000 31.839208 -28.727270 92.405686 30.901832
- 0.000000 29.879206 -30.685242 90.443654 30.900796
- 0.000000 27.258857 -33.303574 87.821288 30.899767
- 0.000000 24.850028 -35.710387 85.410443 30.898739
- 0.000000 23.416781 -37.141614 83.975175 30.897708
- 0.000000 23.360550 -37.195821 83.916920 30.896675
- 0.000000 24.598973 -35.955377 85.153324 30.895644
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/__init__.py b/statsmodels/scikits/statsmodels/tsa/tests/results/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/arma_forecast.inp b/statsmodels/scikits/statsmodels/tsa/tests/results/arma_forecast.inp
deleted file mode 100644
index ff1a598..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/arma_forecast.inp
+++ /dev/null
@@ -1,32 +0,0 @@
-open \
- /home/skipper/statsmodels/statsmodels-git/scikits/statsmodels/tsa/tests/results/y_arma_data.csv
-setobs 12 1980:01 --time-series
-dataset addobs 10
-
-# (0,0)
-arima 1 0 1 ; 1 --nc
-fcast 2000:11 2001:08
-
-# (4,1)
-arima 4 0 1 ; 3 --nc
-fcast 2000:11 2001:08
-
-# (5,0)
-arima 5 0 0 ; 5 --nc
-fcast 2000:11 2001:08
-
-# (1,1) c
-arima 1 0 1 ; 7
-fcast 2000:11 2001:08
-
-# (4,1) c
-arima 4 0 1 ; 9
-fcast 2000:11 2001:08
-
-# (5,0) c
-arima 5 0 0 ; 11
-fcast 2000:11 2001:08
-
-smpl 2000:11 2001:08
-#store '/home/skipper/statsmodels/statsmodels-git/scikits/statsmodels/tsa/tests/results/results_arma_forecasts.csv' fc11 fe11 fc41 fe41 fc50 fe50 fc11c fe11c fc41c fe41c fc50c fe50c --omit-obs
-# no way to capture errors as far as I can tell
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/corrgram.do b/statsmodels/scikits/statsmodels/tsa/tests/results/corrgram.do
deleted file mode 100644
index cd168ee..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/corrgram.do
+++ /dev/null
@@ -1,16 +0,0 @@
-* Stata do file for getting test results
-insheet using "/home/skipper/statsmodels/statsmodels-skipper/scikits/statsmodels/datasets/macrodata/macrodata.csv", double clear
-gen qtrdate=yq(year,quarter)
-format qtrdate %tq
-tsset qtrdate
-ac realgdp, gen(acvar)
-ac realgdp, gen(acvarfft) fft
-corrgram realgdp
-matrix Q = r(Q)'
-svmat Q, names(Q)
-matrix PAC = r(PAC)'
-svmat PAC, names(PAC)
-rename PAC1 PACOLS
-pac realgdp, yw gen(PACYW)
-outsheet acvar acvarfft Q1 PACOLS PACYW using "/home/skipper/statsmodels/statsmodels-skipper/scikits/statsmodels/sandbox/tsa/tests/results/results_corrgram.csv", comma replace
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/datamlw_tls.py b/statsmodels/scikits/statsmodels/tsa/tests/results/datamlw_tls.py
deleted file mode 100644
index db8907b..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/datamlw_tls.py
+++ /dev/null
@@ -1,376 +0,0 @@
-import numpy as np
-from numpy import array
-
-
-class Holder(object):
- pass
-
-
-mlpacf = Holder()
-mlpacf.comment = 'mlab.parcorr(x, [], 2, nout=3)'
-mlpacf.name = 'mlpacf'
-mlpacf.lags1000 = array([[ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlpacf.bounds1000 = array([[ 0.06334064],
- [-0.06334064]])
-mlpacf.lags100 = array([[ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlpacf.pacf100 = array([[ 1. ],
- [ 0.47253777],
- [-0.49466966],
- [-0.02689319],
- [-0.00122204],
- [ 0.08419183],
- [ 0.03220774],
- [ 0.10404012],
- [ 0.05304617],
- [-0.04129564],
- [-0.04049451],
- [ 0.11727754],
- [ 0.11804158],
- [-0.05864957],
- [-0.15681802],
- [ 0.11828684],
- [ 0.05156002],
- [ 0.00694629],
- [ 0.01668964],
- [ 0.02236851],
- [-0.0909443 ]])
-mlpacf.pacf1000 = array([[ 1.00000000e+00],
- [ 5.29288262e-01],
- [ -5.31849027e-01],
- [ 1.17440051e-02],
- [ -5.37941905e-02],
- [ -4.11119348e-02],
- [ -2.40367432e-02],
- [ 2.24289891e-02],
- [ 3.33007235e-02],
- [ 4.59658302e-02],
- [ 6.65850553e-03],
- [ -3.76714278e-02],
- [ 5.27229738e-02],
- [ 2.50796558e-02],
- [ -4.42597301e-02],
- [ -1.95819186e-02],
- [ 4.70451394e-02],
- [ -1.70963705e-03],
- [ 3.04262524e-04],
- [ -6.22001614e-03],
- [ -1.16694989e-02]])
-mlpacf.bounds100 = array([[ 0.20306923],
- [-0.20306923]])
-
-mlacf = Holder()
-mlacf.comment = 'mlab.autocorr(x, [], 2, nout=3)'
-mlacf.name = 'mlacf'
-mlacf.acf1000 = array([[ 1. ],
- [ 0.5291635 ],
- [-0.10186759],
- [-0.35798372],
- [-0.25894203],
- [-0.06398397],
- [ 0.0513664 ],
- [ 0.08222289],
- [ 0.08115406],
- [ 0.07674254],
- [ 0.04540619],
- [-0.03024699],
- [-0.05886634],
- [-0.01422948],
- [ 0.01277825],
- [-0.01013384],
- [-0.00765693],
- [ 0.02183677],
- [ 0.03618889],
- [ 0.01622553],
- [-0.02073507]])
-mlacf.lags1000 = array([[ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlacf.bounds1000 = array([[ 0.0795181],
- [-0.0795181]])
-mlacf.lags100 = array([[ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlacf.bounds100 = array([[ 0.24319646],
- [-0.24319646]])
-mlacf.acf100 = array([[ 1. ],
- [ 0.47024791],
- [-0.1348087 ],
- [-0.32905777],
- [-0.18632437],
- [ 0.06223404],
- [ 0.16645194],
- [ 0.12589966],
- [ 0.04805397],
- [-0.03785273],
- [-0.0956997 ],
- [ 0.00644021],
- [ 0.17157144],
- [ 0.12370327],
- [-0.07597526],
- [-0.13865131],
- [ 0.02730275],
- [ 0.13624193],
- [ 0.10417949],
- [ 0.01114516],
- [-0.09727938]])
-
-mlccf = Holder()
-mlccf.comment = 'mlab.crosscorr(x[4:], x[:-4], [], 2, nout=3)'
-mlccf.name = 'mlccf'
-mlccf.ccf100 = array([[ 0.20745123],
- [ 0.12351939],
- [-0.03436893],
- [-0.14550879],
- [-0.10570855],
- [ 0.0108839 ],
- [ 0.1108941 ],
- [ 0.14562415],
- [ 0.02872607],
- [-0.14976649],
- [-0.08274954],
- [ 0.13158485],
- [ 0.18350343],
- [ 0.00633845],
- [-0.10359988],
- [-0.0416147 ],
- [ 0.05056298],
- [ 0.13438945],
- [ 0.17832125],
- [ 0.06665153],
- [-0.19999538],
- [-0.31700548],
- [-0.09727956],
- [ 0.46547234],
- [ 0.92934645],
- [ 0.44480271],
- [-0.09228691],
- [-0.21627289],
- [-0.05447732],
- [ 0.13786254],
- [ 0.15409039],
- [ 0.07466298],
- [-0.01000896],
- [-0.06744264],
- [-0.0607185 ],
- [ 0.04338471],
- [ 0.12336618],
- [ 0.07712367],
- [-0.08739259],
- [-0.09319212],
- [ 0.04426167]])
-mlccf.lags1000 = array([[-20.],
- [-19.],
- [-18.],
- [-17.],
- [-16.],
- [-15.],
- [-14.],
- [-13.],
- [-12.],
- [-11.],
- [-10.],
- [ -9.],
- [ -8.],
- [ -7.],
- [ -6.],
- [ -5.],
- [ -4.],
- [ -3.],
- [ -2.],
- [ -1.],
- [ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlccf.bounds1000 = array([[ 0.06337243],
- [-0.06337243]])
-mlccf.ccf1000 = array([[ 0.02733339],
- [ 0.04372407],
- [ 0.01082335],
- [-0.02755073],
- [-0.02076039],
- [ 0.01624263],
- [ 0.03622844],
- [ 0.02186092],
- [-0.00766506],
- [-0.0101448 ],
- [ 0.01279167],
- [-0.01424596],
- [-0.05893064],
- [-0.03028013],
- [ 0.04545462],
- [ 0.076825 ],
- [ 0.08124118],
- [ 0.08231121],
- [ 0.05142144],
- [-0.06405412],
- [-0.25922346],
- [-0.35806674],
- [-0.1017256 ],
- [ 0.5293535 ],
- [ 0.99891094],
- [ 0.52941977],
- [-0.10127572],
- [-0.35691466],
- [-0.25943369],
- [-0.06458511],
- [ 0.05026194],
- [ 0.08196501],
- [ 0.08242852],
- [ 0.07775845],
- [ 0.04590431],
- [-0.03195209],
- [-0.06162966],
- [-0.01395345],
- [ 0.01448736],
- [-0.00952503],
- [-0.00927344]])
-mlccf.lags100 = array([[-20.],
- [-19.],
- [-18.],
- [-17.],
- [-16.],
- [-15.],
- [-14.],
- [-13.],
- [-12.],
- [-11.],
- [-10.],
- [ -9.],
- [ -8.],
- [ -7.],
- [ -6.],
- [ -5.],
- [ -4.],
- [ -3.],
- [ -2.],
- [ -1.],
- [ 0.],
- [ 1.],
- [ 2.],
- [ 3.],
- [ 4.],
- [ 5.],
- [ 6.],
- [ 7.],
- [ 8.],
- [ 9.],
- [ 10.],
- [ 11.],
- [ 12.],
- [ 13.],
- [ 14.],
- [ 15.],
- [ 16.],
- [ 17.],
- [ 18.],
- [ 19.],
- [ 20.]])
-mlccf.bounds100 = array([[ 0.20412415],
- [-0.20412415]])
-
-mlywar = Holder()
-mlywar.comment = "mlab.ar(x100-x100.mean(), 10, 'yw').a.ravel()"
-mlywar.arcoef100 = array([ 1. , -0.66685531, 0.43519425, -0.00399862, 0.05521524,
- -0.09366752, 0.01093454, -0.00688404, -0.04739089, 0.00127931,
- 0.03946846])
-mlywar.arcoef1000 = array([ 1. , -0.81230253, 0.55766432, -0.02370962, 0.02688963,
- 0.01110911, 0.02239171, -0.01891209, -0.00240527, -0.01752532,
- -0.06348611, 0.0609686 , -0.00717163, -0.0467326 , -0.00122755,
- 0.06004768, -0.04893984, 0.00575949, 0.00249315, -0.00560358,
- 0.01248498])
-mlywar.name = 'mlywar'
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/make_arma.py b/statsmodels/scikits/statsmodels/tsa/tests/results/make_arma.py
deleted file mode 100644
index a6173d9..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/make_arma.py
+++ /dev/null
@@ -1,41 +0,0 @@
-import numpy as np
-from scikits.statsmodels.tsa.arima_process import arma_generate_sample
-from scikits.statsmodels.iolib import savetxt
-
-np.random.seed(12345)
-
-# no constant
-y_arma11 = arma_generate_sample([1., -.75],[1., .35], nsample=250)
-y_arma14 = arma_generate_sample([1., -.75],[1., .35, -.75, .1, .35],
- nsample=250)
-y_arma41 = arma_generate_sample([1., -.75, .25, .25, -.75], [1., .35],
- nsample=250)
-y_arma22 = arma_generate_sample([1., -.75, .45],[1., .35, -.9], nsample=250)
-
-y_arma50 = arma_generate_sample([1., -.75, .35, -.3, -.2, .1], [1.],
- nsample=250)
-
-y_arma02 = arma_generate_sample([1.], [1., .35, -.75], nsample=250)
-
-
-# constant
-constant = 4.5
-y_arma11c = arma_generate_sample([1., -.75],[1., .35], nsample=250) + constant
-y_arma14c = arma_generate_sample([1., -.75],[1., .35, -.75, .1, .35],
- nsample=250) + constant
-y_arma41c = arma_generate_sample([1., -.75, .25, .25, -.75], [1., .35],
- nsample=250) + constant
-y_arma22c = arma_generate_sample([1., -.75, .45],[1., .35, -.9], nsample=250) + \
- constant
-
-y_arma50c = arma_generate_sample([1., -.75, .35, -.3, -.2, .1], [1.],
- nsample=250) + constant
-
-y_arma02c = arma_generate_sample([1.], [1., .35, -.75], nsample=250) + constant
-
-savetxt('y_arma_data.csv', np.column_stack((y_arma11, y_arma14, y_arma41,
- y_arma22,y_arma50, y_arma02,y_arma11c,y_arma14c,y_arma41c,y_arma22c,
- y_arma50c,y_arma02c)), names=['y_arma11','y_arma14','y_arma41',
- 'y_arma22','y_arma50', 'y_arma02','y_arma11c','y_arma14c',
- 'y_arma41c','y_arma22c', 'y_arma50c','y_arma02c'], delimiter=",")
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_c.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_c.csv
deleted file mode 100644
index bb0e67f..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_c.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-uhat1,uhat2,uhat3,uhat4,uhat5,uhat6
-NA,NA,NA,NA,NA,0.5003943106
--0.0654604069,1.2630851631,NA,NA,NA,-0.3492146815
--0.6354860870,-0.3745540861,NA,-0.0568351332,NA,-0.4057551504
-0.2946689399,1.9320851419,NA,0.4708046227,NA,1.1354217062
-0.3069409327,-2.9442407231,1.6018525285,-0.1746956878,NA,0.1874478049
-1.1046618847,-0.4539618378,1.6539689425,-0.2014228655,0.6393283864,1.6055802746
--0.3828416754,0.1344632210,-1.3129222016,-0.8717798107,-0.7314782509,1.0374903213
-1.4702204261,0.7281252447,-0.5567108484,-2.4315672313,0.4423561929,1.2018542806
-2.0170637341,-1.8582439824,0.6931923024,0.8150557324,0.3026666954,0.7287917939
--1.6277579917,-0.5102464069,1.5277277726,1.7373173964,1.9681770810,-1.2197099602
--0.2761238205,0.3649873042,-0.7775647134,0.3466448635,0.3055073018,-1.2953001238
--0.3025647947,-0.6468237174,0.3357278371,-0.2376379568,-1.2295923846,-1.1459649338
--1.2846849045,-0.5316460028,2.0697089917,-0.7639490470,1.9033793640,0.2259331476
--0.1937165378,0.2289905496,-0.2433095548,0.5100208566,0.8134690690,-1.3873492495
-0.0437732898,1.5823375139,-0.0499872936,-0.4584357209,-1.0403646437,0.2258502046
--0.7085965149,-1.4132676403,-1.6807513582,3.4008022670,-0.8489945586,0.3993469203
-0.6869217259,-0.8486358552,-0.5557220610,-1.6785999705,-0.6749476366,2.1521772635
--0.9110442088,1.8023461442,0.0422997113,-0.3896198162,-0.7624594802,-1.1114694077
--1.4100657105,-0.1330189711,-1.9596491770,-1.4344442835,1.8246740205,-1.3731040469
--0.4980648446,-0.3659419910,0.3192900090,-0.7646484888,-0.6212539753,-0.5343918278
--0.1963182905,0.3120634472,2.3004050792,-1.0411878963,1.0091729618,-0.3550571047
-0.9418004197,0.7849270531,1.7775243710,2.7319295571,-0.5710783910,0.1157782614
--0.5088996273,-0.1913695163,-0.7966402442,-0.5348961666,1.8482032661,1.0534313649
--0.0715461735,-0.5835327992,0.7947619524,0.1219312550,-0.5767933872,0.2132220913
-0.1520909081,0.1397022507,0.9603641674,1.5019044258,-1.1616291842,-1.4513944228
--0.6864736829,0.1319559890,-0.6002966471,-1.7473751920,0.0078164587,1.3180340915
-0.4828560247,-1.1836012446,1.0716925599,0.1608575427,-1.4868931749,0.3316003442
--0.3129862942,0.0715293754,0.7365955341,3.2417094068,-0.4098987226,-0.3929225342
-0.1403851586,0.1897035123,-0.0596476798,-1.5798681153,-1.3985600700,1.1626778095
--0.6032097207,-1.5082408448,0.7000377494,-1.8776160639,1.6758350985,1.2323721377
-2.8737695679,0.7407781954,-0.5782723408,-0.5920917220,0.2527059509,0.1034785314
--2.6850104137,-1.1661391527,0.7303536686,0.7237072817,-0.0080868097,-0.5095558943
--0.2719886602,-3.3895763252,-1.6277304594,-1.3923154766,-0.4279533651,-0.8344555187
--0.7011477493,-0.0298714445,-0.1198199634,0.3133301638,0.3116693135,-0.1733047241
-0.0416515294,0.9737200196,-0.3917202686,-1.0825585473,-0.7950165162,0.5819410626
-1.5149337326,0.2416624934,-1.1947318956,-0.4628348494,1.9146927090,-0.0084117176
-0.7481441984,-0.4375977941,-0.1342210487,0.1968247746,-0.6319537359,-1.0020328996
--0.6319203993,2.0267610475,0.3996607915,0.5544329061,-1.1313993936,1.3364436916
-0.4715056582,-1.5235522088,-1.7283193075,-0.0819206410,-1.3303897737,0.5075005597
-0.9091893668,-1.0134393903,-1.3735762171,0.9860332103,0.6522772947,2.5312190410
-0.5287709867,-0.6950810352,0.4319451587,-0.3790023987,-0.2159343530,-2.6736528549
--0.0807173107,-0.6688791267,1.5511740149,0.7564309588,0.3980649655,-2.6144539804
-0.0536032633,-0.8824599745,-0.3967729837,-0.4797359756,-0.4979607052,-0.7626375288
--0.2460397963,-0.3461595374,-0.2351990573,-2.4095477741,1.1221816621,-0.9082062341
-0.0709363800,-1.0466628618,0.3294003679,0.1844875977,-0.7110086691,-1.1623096473
-0.2399373116,0.6941539535,0.3145399145,-0.2363560438,0.0210786490,-0.1754088571
--0.2438563526,1.5030015748,-0.4042708849,-0.6632463501,-0.0946388559,-0.8122142899
-0.7157352693,0.0543236131,-0.1575747665,-0.7529692090,0.8677700083,0.5276833203
--0.5084592767,0.6610466284,0.6077484386,-0.5243826928,0.0024699075,-0.2810590594
-1.0176896459,-0.3607767040,-1.9293078296,-0.7515491068,0.9555308508,0.1584558649
-1.5089485007,1.5219576739,-0.6992680036,1.2154852847,-1.1463576156,-0.4597511790
-1.3383277508,2.2028700891,0.8097337365,1.0794697807,-2.1389688647,-1.5859320795
-0.3962442881,-0.4305160737,-1.3210614991,0.7161741695,0.4642007939,0.0246124486
--0.7652338955,-0.5166895756,0.2962352092,0.3247205142,-0.8670442336,-0.4772492318
-0.5643576383,0.3956401450,1.4860288420,-0.2779957266,0.3116651464,-1.1239150443
--0.0374705391,1.0901994506,0.9060165422,0.7509412729,-0.1020081479,0.3405360107
--1.6275106422,1.1118352132,-0.0734528602,1.5776415179,-1.2972874027,0.8119571278
-1.3248479401,-0.3348267959,0.1975626501,0.5934869165,-1.0050772391,-0.0761280584
-1.6176183007,1.2976915734,-0.6419622802,0.5957844486,-1.4706520720,-1.5533444578
-0.6723751875,0.5086092958,-0.5091309911,-0.9939298251,-1.8872368640,0.5298484455
--0.3382029836,-2.0506220303,0.2674136308,-0.6903485064,0.4214283863,0.8624606065
-0.8374334442,-0.1375622562,0.9276882431,-0.6083805360,0.2344020489,0.7971587010
-0.9367567624,0.0509525973,-2.0189241276,-0.0578032026,-1.2671869073,0.2221199506
--2.1890137857,0.5172743480,-0.4207972910,-1.3312228275,-0.9893612183,-0.7007866945
--1.7673535236,0.5468202195,-0.1092700241,0.5994251816,-0.6039924264,-1.5787524848
--1.1150896719,-1.6594138211,0.2844613717,1.0520409822,0.9630107978,-0.3000528315
-0.4208490095,1.8080909225,0.9202916640,0.7772313848,0.7211254678,0.7037872606
--0.1989320555,-0.3298732880,1.2297305855,0.6461123409,0.6427656563,0.3165638628
--0.0519355019,0.7657112511,-1.2619116037,-0.2808796329,0.7789272390,0.6909305105
--0.1925658016,1.5984022911,1.6236000333,-0.9923169322,-0.2860970877,0.9115270207
-0.8091183807,0.3246702273,0.7048713981,2.2152386269,-0.2811969367,-0.7492420302
-0.3851042457,-0.3386875670,0.2304304233,-0.3979151000,0.3160027414,0.0304899261
--0.8874014278,1.1943808482,-0.5023952244,-0.5514781203,-1.0536831017,-0.2179694459
-0.4407832279,0.0523743421,-1.4662354110,0.1411648842,-1.4636188905,-0.8327519395
--0.2629532039,1.0475402671,0.8756413946,-0.4510054148,-0.7295765080,0.6424046832
-1.3460795119,0.0884779627,-0.5682036973,0.4253867348,-0.2645342719,1.2328297716
-1.4477374179,-1.4880389199,-1.3159218241,-0.5333782667,0.6446414445,-0.6831638605
--1.1068354262,-0.2210533536,0.6107236387,-0.5849566916,1.0150747633,-1.3747400756
-0.5015683891,-0.6886112105,-0.2150892146,0.2976803070,-1.4526679511,0.9676734086
-1.3303310164,-0.7866728621,-0.0604242534,0.3166514200,1.0591768704,1.9287588832
--0.4986333991,-2.1896107532,-0.4594879074,0.0076093532,-1.5864349617,-0.2443816202
-0.8371757402,1.0122881194,0.9747158848,2.0868453261,0.8553441826,0.4177749515
-0.2241215687,-1.7957236597,-1.8297964730,-0.3358237607,-0.6192435325,-0.4930144584
-0.7832548194,-0.6043240087,0.1031166441,-0.2043217762,0.6811283663,-0.5666896262
-1.2790309147,-0.8330944969,0.4691860996,1.7424509046,-0.7443373341,-0.7566423659
-1.3729576844,0.2668869648,-0.9865774811,-1.6793688171,0.7530405621,0.7053387848
--0.1506368009,0.4545469482,-0.2636504852,-0.5801568263,-1.2985993625,-0.0966889466
-0.0701519818,0.0006587644,0.5464727713,-1.1967004895,-1.4686272056,1.6624993654
--0.4413901802,-0.1794993701,1.2716732496,-0.9997354861,0.3795552275,-1.6629825610
--1.0406023856,-1.4710415052,0.8852373182,-1.7821439728,0.0616569205,0.5607366268
-0.3438836253,0.3019562062,0.3113134230,-1.1049500709,-0.0472231498,0.6794404966
-0.1872210447,-0.2181383487,0.4269897736,-1.2584207049,0.6435582496,1.8568318491
--1.1758410195,0.7338825612,-3.2192240590,-0.9539135555,-1.2833358213,0.6347810269
-1.1403879504,0.3664986261,-0.4578789352,-0.0892428031,-0.0676864665,1.1622940267
--2.0272931103,-0.4575022623,-0.3082829339,0.3606002438,0.0595655194,-1.0267142580
--1.7216043582,0.8278561949,-1.1425141481,1.1321203795,-0.8611531373,0.7095997481
--0.2781180874,-0.2103503117,-0.3093247345,-3.0544011602,-0.2876661294,-0.2268230452
-0.8369744273,-0.2404263132,1.1564831203,-0.0204020379,-0.9819839107,1.6852656521
-0.8345610422,0.6952275350,-0.9586613496,0.4466599706,-1.2264246294,-0.9723111255
-2.2012414392,0.5503974375,-0.0033846456,-1.4676175521,0.3063842593,1.0976378745
-0.1668948003,1.1488857035,0.0560980353,-0.5435875677,0.5057279675,-0.3895431008
-0.6347841284,0.0938644735,0.5673224629,-1.7699237338,0.3263993448,0.9743186850
--0.1553431061,1.3592644799,0.7198606550,1.9037264893,-1.9048706490,-1.4754925348
--3.6906716246,-0.0173961930,0.9820098802,-2.1575453441,-1.8474039236,1.6980093185
--1.6246441930,-0.2034884257,-0.6856603162,-0.0524264832,0.2962762330,1.1438618632
--0.7101009285,-0.3798257888,-1.5237184924,-1.0660490256,-0.8312812097,-2.0446815930
--1.0044535394,-0.9868949244,1.4125136525,-0.2300446183,-1.4878644354,-0.5410528581
-1.0175707931,-0.2276451208,-1.3301590091,-0.8503675641,-0.3930718284,-0.2417342172
--0.9277975098,-0.3605600386,-1.4308176138,-0.2850780766,0.8941345586,0.1257221936
-0.9749441738,-0.6689985336,-1.5172439837,-1.1002819723,0.8468866650,-1.4438006595
--0.5485514540,-1.6122356618,0.3708045184,0.2031677006,0.1980891877,2.7186226492
-1.1328001994,-0.7563402849,0.7085118554,-0.6834515929,1.3106114910,-0.6703471634
-1.6915186471,-0.0293767965,0.0724622141,-0.6891689152,0.6448055491,-0.1027222370
-1.3461835508,1.3628752311,0.0054879873,1.6731019129,1.7467605358,-0.3669118960
-0.9356320892,-0.1014139773,-1.6104735239,0.2973422359,-0.5141566716,-1.1264365217
--0.1947487268,-1.4536928002,0.0937448813,-0.6403606739,1.8000610462,0.7810284504
--1.4600276800,0.1380387687,-1.8061353374,1.6649005367,1.1112660846,0.7174777506
-1.4083043461,2.0328868017,0.9597472085,1.2076275681,1.1637810337,-0.5750451086
-0.7555856746,0.3936792347,-0.1533108942,2.0388822750,0.0995127861,2.3014747244
--1.4173315178,-0.2466246965,0.7282808133,0.5961877815,-1.3592278754,-0.7304096992
-0.8334998949,0.8578275484,0.1959441967,-0.8039929081,0.3348472051,1.1997789442
--0.4433274388,0.5608159863,0.3833817279,0.5317121769,1.7059099873,0.8695640197
-0.8830003293,-0.0287544451,-1.1798348578,0.0283990325,-0.0075607086,-1.1080249303
-0.2288748073,0.3025092041,-0.0790254304,-0.3743985815,0.4439976621,1.1846266000
--1.4376024339,-0.0528851411,0.3922379103,-0.6310919354,1.1381526167,-0.9312452941
-0.4263198719,-0.5093831586,-1.8331149527,-1.7010601475,-0.1439891226,-1.1648722060
-0.4095303549,0.2623855068,1.1397336548,0.1345112002,-1.5436360159,0.6243403941
-0.6026472890,1.9744450068,0.2496865676,2.2346628441,0.1908724773,-0.2745090893
--1.7818182491,-0.4120434810,-0.2632536437,-2.3177995648,-1.6257680004,-0.8080546491
-0.7838696230,-1.5494786851,0.2273804696,1.6270819525,1.0276553113,-0.5285699168
--0.6802372762,0.2845480423,0.0218113495,-2.1326401865,0.5376776939,-1.5610155178
--0.2171863926,2.0258778118,-1.2960151431,-2.2676025399,0.8583011420,-2.3088488812
-1.0207864367,1.3306582178,0.2938591851,-1.5721565438,-0.8357929085,0.4556781999
--0.7537789514,1.6352212305,-0.0151489874,0.6774464253,-1.0391462020,-2.1399472985
-1.4265268043,-0.7758918334,-0.2241536881,-1.0647999645,0.8538391522,-1.4091344475
-2.2954869649,1.4166329867,-0.4534667558,2.3606061022,1.6965210132,-1.6893625294
--0.8547395145,-1.5696538424,0.4724321463,0.4203755037,1.3122125061,-0.0111738785
--0.1367933840,-0.1437980542,2.6690983696,-0.5117225562,0.0932130899,2.4842538924
--0.6437664574,-1.0827215584,-0.8820582782,1.0030601055,0.8981908845,-0.6605924663
--0.3061163905,-0.8027612404,-0.8063910385,-0.8769579218,1.2042560809,0.4215805113
-0.0898401154,1.0913334529,-0.2899997592,1.9281192377,-1.5271857033,0.3893754154
-0.7661303152,1.3296704729,0.1318332281,2.1268395595,0.6773196461,-0.7394571904
--0.3234495650,-0.1236231664,1.0164713042,0.6573325551,-1.3279555489,1.9150854662
-1.1182164690,0.4383504719,-1.0796268540,-0.0693358055,-0.3636827717,-0.9618402341
--0.1513082848,0.4762530971,0.1453786217,1.8459833668,0.8801830575,-1.3358260664
--0.0497375924,-0.0839629046,0.6457138991,-0.1724376838,-0.6898710128,1.1842964072
-0.0744097740,-0.6911241866,-0.9541048800,-0.1929226937,-0.2993801569,-1.0245419517
-1.0352650335,1.3563860484,0.9459148918,-0.5944905866,0.9041552321,0.8422034007
-0.4096924544,-0.0193972911,-0.7736506866,2.0775471935,-1.4162727891,-1.6497863991
-0.0943655963,0.7782222971,0.6406129989,1.6974461277,-0.8155135681,-0.4469365773
--0.3711037957,-0.7343844893,0.5458146747,0.1547696934,-0.1926832462,1.5957685199
-0.0261208823,-0.4144498838,-0.9485555425,1.8328896061,1.7245510545,-1.3262079835
-0.2787288490,0.8999609407,-0.1776797926,0.3362813903,0.9277695949,-0.2225264142
-1.5205548430,-1.1618375994,-1.6120446862,1.1679127561,-1.4281646449,2.1441838498
--0.0510788534,0.8073317833,1.0622504320,-0.4387705333,1.0814239193,0.4906556109
--0.7538796863,0.8484047828,-0.2981417016,0.2898703199,-0.3453311846,1.7531928586
--0.2116339647,-0.7586766732,0.0915136072,-1.1960087361,-0.2911666849,0.3717487687
--0.2529102806,0.3520178510,-0.0858901827,-0.7485222907,1.1877326047,1.0031234877
-0.2456163867,-1.2331999073,-0.4936481908,-1.0632268281,-0.8856496098,1.9105127386
--0.6362641616,0.2723267435,-0.5629413518,-0.5390147091,-0.1324894073,-0.5131208903
--0.7312974423,-0.1926411998,0.1681884875,1.9451770347,-0.7387367989,-1.1006053414
--2.4526678075,0.0513672029,0.1822806980,0.6833954150,0.8251340581,0.8228679401
-1.4051374740,1.0446826442,-0.2343841721,-0.5818054063,1.6449567394,0.4710870876
--1.0836177088,0.4992480100,0.3298423085,-1.6869269931,0.0116119423,-0.3902740912
-0.4686052927,-0.6594991408,-1.3061028174,0.3413835964,-0.1731830236,-2.0176219748
-0.3875135737,-0.8648295543,0.2051480936,-0.3899822309,0.8137999120,-0.0941055758
--1.2746838020,-0.2171508047,-0.0934703122,1.0085311455,0.6930428563,0.9398196585
--0.0732828643,0.0096089247,1.4103248996,-2.4407270503,-1.4791166112,0.3878380761
-0.3280445563,1.3564670299,0.6229334320,0.7072729048,-0.1066012409,-0.8036829693
-1.4361077011,0.4566854308,1.0582892665,1.0822395896,-0.5189104901,0.6797001295
-0.8407963506,-0.1186809136,-0.7886762650,2.8261774623,-1.8358786915,-1.3298562472
--1.9879799605,-0.2476081815,0.0929762393,1.2413076648,0.2795249959,0.7343187697
--0.8193344766,0.5881408298,-0.6017948595,0.9095424639,-1.5971009727,1.0674294135
--0.6236560689,-0.1757291483,-0.1717646416,0.7228680478,0.7349997314,-0.3428481578
-2.0163357996,0.3859701321,0.4797367005,-0.3933024202,0.7150443195,-1.0087617215
--1.2041036981,-0.7997791706,-0.4380503808,1.4002704867,1.4330761465,0.4402664946
-2.2231380577,-0.1069122017,-0.3061325445,-0.3665506679,0.3548754899,0.5785003847
-0.3545537254,-1.0268623015,-0.6444060136,0.3495957995,0.4699941479,-0.0067370226
-0.0153298725,-0.0019101897,-0.6683476722,0.9242195907,-1.0527221996,-0.0475782924
--0.5637642729,0.7930434873,-0.3750645923,0.5612822995,-0.4182684221,-0.9368562228
-1.7143352150,0.6172668521,-1.6983834875,1.2822210611,-0.4389647946,0.2394125068
--0.3849048729,0.7189072487,-0.1193580560,-1.2379096204,-0.0121740577,-0.9745265765
-0.6865256314,0.5271347883,-0.5011161131,0.1015727708,0.2201019568,-0.9346709968
--0.2185375628,0.0623869353,-0.3592402594,-2.2471186648,-0.8258440844,0.7590790118
--0.9578096837,-1.3913099180,-0.2973806343,0.0668261193,1.1452412220,-0.2668327880
--1.8011619760,0.1013152150,0.3188201337,-0.0875343518,1.1524747435,-0.3980427036
-0.0215642213,0.2089892016,1.4141705489,0.4501225865,0.7361446011,-0.7309605209
--0.6159836505,-0.3177102339,0.1678750570,-0.8061177067,-0.0548224654,-1.0096396327
--1.3615542033,0.3003290595,-0.8704822622,-1.0720425982,-1.7793666047,-1.1183970178
--2.1327575451,1.0676916960,-0.2409317675,0.3507073637,-1.6832214282,-1.8839357120
--0.2660102650,-0.3255397539,1.0651413953,-0.2443446728,1.2697583939,1.0715113773
--1.6852921588,-0.5377157475,-0.6277614222,0.0273446362,0.4240717497,-0.8115531844
-0.1468537864,0.4572329231,0.8253765423,0.9983826272,0.2546886228,-2.5861107320
-1.2789495728,-0.2613763277,-1.3265492969,0.2360406776,1.0221022437,-0.7281644082
-1.7588458136,-0.4606637459,0.7637610888,0.5932506079,0.5240683251,0.8856090722
-1.7403226649,-1.2725596905,-0.7232641418,0.0722711195,0.0017105943,1.3992283795
--0.1707061145,-1.0966955901,0.0078381641,-1.1925246733,0.2416447698,-1.0102024683
-1.4119679434,-1.0265466945,-0.6309443484,-0.1982717907,0.1344589218,0.1773641652
--0.1797045059,-0.4415532095,0.0804869513,-0.0038552510,1.0558303731,1.2832350509
-0.5427117643,0.5693680070,-1.8709898073,0.1610728561,-0.3157664508,1.0618101522
--0.7059583103,0.6405858962,-0.5007106010,-0.4467612137,-0.2620082547,1.2401043587
-0.4147176075,0.4467494785,0.8512633516,-1.4272053776,1.0126535175,-1.1318362493
-1.5980478335,0.7423948627,1.0389932867,1.6118869843,-1.4641160743,-0.8936642947
-0.8981412825,-0.9305497719,-0.6123093640,-0.5272377006,-0.2440362414,-1.8215769182
--1.0782329366,1.3536855397,-0.1069587517,2.3963940878,0.2994018406,-0.1564801406
--0.1616361225,2.5782180361,-1.2840332009,0.7221887541,-2.0211529966,-0.8863623682
--0.6255630087,-0.6677447735,0.3934055106,0.2604219299,-0.5008685213,0.0373925974
--1.3239428478,0.6670161896,1.3216434591,-1.2743184119,2.3178510969,-0.2730434154
--1.4261324736,-1.1271361575,1.2242692550,-1.6065459332,-0.2116766988,0.4732656829
-1.6540626572,0.6450305367,0.5288357410,1.8783805371,0.8678333165,2.1505020661
-0.9049648556,0.5619457083,0.9317900076,1.0307770838,0.6036072437,-0.2931417859
--1.7562740941,1.0077397180,0.5572208923,-0.7450342693,0.1342637226,-0.9215272221
--1.0291638066,0.3140716710,-0.5899114804,-0.8691474315,0.7962944337,0.3521567527
-0.7046067471,1.0321860618,0.2477562594,0.9809344431,-0.0250012989,1.1074512127
--0.6768199736,-1.2747742125,0.0702791394,-0.7424183896,0.3512420108,-1.4669965816
--1.1193259631,0.1163775893,-0.2649532490,-0.1593216828,0.6020811962,0.0166198364
--0.5897555426,-0.2642248997,0.3122903511,0.2500378842,0.4154695343,0.1766798048
--1.2795458214,-2.1263289933,-1.1084389251,0.4863877182,1.2666850897,0.0388239570
--0.8136131755,0.2395440102,-0.7007470239,0.4879033573,0.2067022807,0.4404893336
--0.0383409132,-0.1937701299,-0.6008381517,-1.1762107313,0.5602320688,2.1835274973
-0.7253457303,1.2566728107,0.2776813927,-0.0693420804,-0.0852937498,0.3946150533
-0.5561471080,1.2049092997,-0.2609609025,-2.9393301859,1.4466879591,0.1990217008
--1.4220929761,-0.4796023936,1.8609072882,0.4238918393,0.1673453300,0.8485272457
-1.0697474658,0.5753437966,0.4204402637,3.6302207300,-0.8358716426,0.9278824003
--0.3118632307,-1.8069977265,0.4128007572,-0.2111010990,-0.0967003696,0.4497190487
--0.6527555972,-0.4761800670,-0.7078466691,-3.0018017049,2.0046344326,-1.2567268926
-0.5047860564,1.1915399615,1.2194542667,-0.4251351724,-1.1944683161,2.0860574488
--1.5577543599,-0.0316626042,0.2805415642,0.5266392264,-0.6476576263,0.3398337961
-0.9190848738,-0.3551749010,1.2823032027,-1.8394312099,0.9796230447,-1.1835378154
--0.7782842766,-2.0497930182,1.1415529071,1.1973102176,-0.7121047526,0.8664399743
-0.8029587753,-2.2914889648,1.3454029705,-0.8112348706,-0.3665337856,-1.7836847897
-1.5320676166,0.0769229836,0.3966975408,0.5868781129,-0.7529574842,1.8896157767
--0.8404819720,-1.7176799415,0.6591061328,-1.6235239418,-0.9436094661,1.8712553671
-0.2427053048,1.1740067811,-0.2468064529,-2.9586336045,-0.0519853295,1.1167315137
--0.2010842298,0.4758586357,-0.7467708616,0.2852232976,0.4075181463,-1.3119547353
-0.2462702723,1.8997551045,0.9010785346,-1.0067839544,1.7476702894,0.0069475102
-0.6510138128,-0.2559507584,1.0942588957,1.9007609071,-0.0657134857,-0.8223423084
--0.5578904074,0.7925319614,1.0371590315,1.4380492818,0.3574715739,-0.2837037645
--0.9007578168,-0.5965810887,-0.3189386320,1.5790522192,1.7548857902,-0.4445433584
--0.4834894883,1.2449488088,-0.7235127959,0.6435496262,-2.2060223619,0.3443714891
--1.3054655211,-1.4375008361,-0.0215691319,0.5327443300,-0.6442383611,1.0888978669
--0.2954992841,-0.7276140637,1.4175328783,0.7519479231,-0.6154464369,-0.7637871219
--1.6250918561,-0.1283502017,0.4798477130,0.0476190104,1.3202647421,0.0608765468
-2.2224850491,0.2972667070,-1.0202362204,-0.5128809376,1.2262508621,-0.6891269634
--2.1695647843,1.2949904167,-0.0271718883,0.1143977269,-0.4436678999,-1.4214801423
--0.9311508951,-1.2138091101,-0.4685996489,0.1566856410,0.0994080222,0.5991675552
-0.7152955803,-0.5545528668,-0.2558170386,-1.1619941881,0.4434246441,0.7315839124
-0.9191579829,-0.2698486423,0.8089940968,-0.4599040078,-0.6154554160,0.1761666501
-0.3782062673,-3.3114976390,0.2446530955,1.3051330784,-1.0901333002,0.9564792848
--1.0377224436,1.1560092370,1.1880239505,1.6850164101,-0.2085718088,1.8716570648
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_nc.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_nc.csv
deleted file mode 100644
index 19524f2..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_css_nc.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-uhat1,uhat2,uhat3,uhat4,uhat5,uhat6
-NA,NA,NA,NA,NA,0.6143504692
-0.4157942138,-0.6195877298,NA,NA,NA,0.5351037528
--0.5216253830,-1.4490222073,NA,0.4543486899,NA,-0.2539693936
--0.5310064793,-0.0692668747,NA,0.7313844554,NA,0.7355751135
-2.0103391427,-0.4308022634,0.2395313804,1.2285867572,NA,-0.3495442772
-1.2645121536,-0.2447600015,-1.2361455315,-0.7044357534,0.4055978842,1.1511468868
--0.0253187182,-0.7878130240,-0.8799097019,2.1939759323,0.6278271493,0.8445474524
-0.2087251811,0.1303879633,-0.0141094894,-0.3012801705,-0.0529147298,0.3869796588
-0.6882005063,-1.6834900862,1.6110952249,-0.6027865943,2.1732810594,0.5728797365
-1.1413314243,0.8768146120,-0.7405577296,0.1795173867,0.1558140991,0.2464764059
-0.8603317648,-1.4085517297,-0.7927594239,-0.8555922440,0.8898454599,1.6407965009
--1.4426224067,1.1233860935,-0.9476274074,-0.9731251937,-0.6363588731,0.5722289416
-0.2861221702,-0.3454575869,1.0870118537,-0.0726147893,-0.1788253738,0.7045477318
-0.1570992704,2.2971488587,0.5001821798,0.5052604801,0.4731307016,-0.7749604074
-1.3155156901,-0.8939871308,-1.2956895347,-0.3161253858,0.2963180845,-1.2093904969
-0.7535071809,-0.7992689415,-0.1627551445,0.5862161004,-1.7250120434,-0.7164589324
--2.1133716190,-0.4822938588,0.6561719141,-0.5612764185,0.4069028257,1.8876953474
--0.2926097774,0.3892803055,0.5855102713,3.2532235289,1.8389113887,-0.6930901555
-1.6731594024,-0.4547401237,0.1904184139,-0.8309528381,-0.4898013799,-0.3998662500
--0.5426090918,0.4522366476,0.0900916861,-0.7140912682,-0.3355850526,0.3977104258
--0.5268591042,0.4592368221,-1.1959142179,-1.6565224102,-0.1275482235,0.7329020712
-0.4875740446,-0.0807612913,-3.1647350558,-1.2117724685,-0.3538307198,-0.7343233853
-3.2154029184,-2.4784397712,-0.1328122448,3.0213060693,0.0692774349,-0.6014944010
--1.2679401714,0.0087974496,-0.0956003141,1.3145051551,0.5104114423,2.3273722799
--0.5676781908,-0.0240708846,1.2305243836,0.6114237075,0.5531441543,-0.3212501750
-0.0892418042,-0.2651283193,-1.5611202854,-0.2366295554,-1.7826025243,0.1943275388
-0.2773288242,-1.1998937638,0.9195354063,0.6210411382,1.0387225515,0.1393420028
-0.4831760574,-0.8718151800,1.9553635427,2.1075071830,1.5819834792,-0.2045096604
--0.0571795827,-0.1631261522,0.1384356318,-1.0009927582,-0.3064255195,-0.7804604475
-1.3161339989,-0.4656285123,-1.2059144190,0.3320299818,-0.0774840282,2.4246929913
--0.8406271653,-0.0040910916,0.5970898003,1.5100848420,-0.0514862871,0.6476585082
--0.8186970009,-0.2947348700,-0.5634325824,1.1868024728,-0.1185819614,-0.2264012754
--2.3475082672,0.1556172006,-0.8288155833,-0.2136267078,-1.7396707899,0.3127889039
--1.6805826890,-0.8611425572,0.0471578622,-0.1045372043,-0.4547230696,0.2851109915
--0.6736780239,0.9312160822,0.4005308901,2.5571575147,1.1030849448,0.0641439758
-0.7256374819,-1.1446932742,0.2570001601,-1.5646383687,2.2585901718,-0.9867862852
--1.2020924892,-2.5648720017,0.9506695505,0.0567893472,-1.0953282935,-0.3822991006
-0.2909873539,0.9617755778,-0.0247771556,-0.9889880386,0.2327830284,2.4577087649
--1.0043173816,-0.8921606420,-0.8419210731,-0.5968042239,-1.1202527679,1.6100799411
-0.4843413326,0.5191072345,-0.3612931035,0.6773849018,-0.2417953391,1.1960287410
--2.3225998778,-0.3545972820,-1.1309574468,-0.2312251876,-0.9973435759,1.2713502671
-0.0369010936,0.5154048391,-0.7706022337,-0.6328224077,-1.5535761341,0.9269641532
--1.4540263113,-1.1628549131,-0.7174874552,0.1588377569,-1.0920451480,1.4221901743
--0.7575535521,0.6025957960,-0.7476491922,1.7575299394,-1.0270507496,-1.3023774228
--1.1469727084,0.0247266427,-0.1197079648,-0.3212578512,0.5449189085,2.0437325273
-0.4938463089,-0.1777957650,0.1414292075,-1.1172004706,-0.0238223989,-0.7595875866
-0.4653114083,1.3437866191,0.3848296626,0.2686400822,-1.2749111020,0.0472791487
--0.6874807780,1.3950683185,0.0290685352,-1.5792589142,-1.3037309983,2.0508963291
-0.4408613491,-0.2398587783,0.1106466959,-0.9583542893,-0.9761505140,3.5781009407
-1.3765665694,0.8506361157,-0.9881610058,0.8596824341,0.4297714772,1.4244983751
-0.0139239751,1.6952752728,0.8062255633,-1.5571730736,-0.1769185746,1.3061661282
-0.2425111146,-1.4228515277,-0.5031101420,-0.4849495553,0.5768200492,-1.4027688362
--0.0471469074,-0.4747861914,-1.0762528648,1.2397938111,-0.0212676954,2.0031995217
-0.9940887123,-0.6053235226,1.3736678477,-0.1481125712,-0.2513441425,1.7550806977
-1.2380479220,0.2769191768,-0.6082866490,1.2619270554,-1.0835304315,-1.1890095217
--1.0437249341,0.1292259583,0.5206296911,1.0316346364,1.3104057417,-2.4658050069
--1.5381753017,1.4118678566,-0.9492130633,-2.0683610161,-0.3959986113,-2.1653441459
-0.0965413060,-2.1377176586,2.0854283830,-0.5739261536,-0.6381490195,-1.2185073460
-0.7712101752,-0.8847044894,-0.6685720410,0.4166991981,0.9008435423,1.7316468225
--0.6907882006,-0.6446452654,0.5249226679,1.1142537082,-0.4485779015,0.6200811364
-0.9122321000,1.0027764723,0.4787421578,-0.0903198584,0.4470625528,-2.3510943190
--0.0716404683,0.9860838940,1.7707933014,1.1877535341,0.9719198675,0.6875588049
-0.0512832622,0.0653292617,1.9577185289,0.2481909653,-0.9155610686,-1.2543860658
-0.6491488628,0.5321889709,1.0469731140,-1.6772296290,0.4757697162,1.4915607850
-0.7961213744,0.2968081952,0.6232777685,0.3527983615,-2.1368293713,-1.1210162648
--1.0395159143,-0.4185801987,1.9543000415,0.5424269915,0.7729490960,1.9392865848
-0.0095516514,0.2402152236,-0.8568935692,0.0283939308,0.6881152063,-0.9207673336
--2.3242135235,-0.4635276495,-0.0547833919,0.4325860657,0.4784927247,-0.4970964661
--0.4786659971,2.0434580744,-0.6522255420,0.3026920742,-0.5934427056,-0.1298033631
--1.1352833247,1.4598550503,-1.3233228849,0.8671510388,-0.7981516793,-0.4858807852
--1.1680418631,0.0535361606,-0.1510985420,-1.0553886364,-0.3042178543,-2.0903747983
-1.2457405937,0.7252034022,-0.4013221743,0.3585980598,2.4924374591,-0.6841405366
-0.7398534717,2.0070958748,-0.7003296673,0.0192982834,-1.1914865625,0.5418412291
-0.7021800345,-0.1398060981,-0.2322597214,0.9736402062,-0.6744690208,-1.1973945881
-0.9666376285,-1.0167503113,0.3294955694,1.8082091733,0.7593258832,0.4549699458
--0.5800130680,0.0971966655,0.6953199463,1.5922986207,-0.3287105231,-0.0008918183
--0.6127076114,1.0982542550,-1.4143888478,-1.3220668513,-0.1175894156,1.3122947467
--0.8985128937,-1.4240587646,-0.4360067827,0.3112539428,1.3654879932,1.1850975414
--0.6528345212,-0.1889142190,0.1095509006,0.1112939852,-0.3666711292,-0.5246544546
-0.3010321297,-0.7926768373,-0.4633518394,0.2850055244,0.3281977015,0.6120110095
-0.0769778566,0.0992458041,-0.4341722868,-0.5689767373,-0.7289513676,-1.0815313859
--1.1273912108,-1.4775473244,0.1353846794,-1.5574049268,0.0977693100,-0.6788213497
-0.9220938134,-1.1592971620,0.0840834801,-1.5854129909,-0.7175730519,0.7539322781
-0.4081716467,2.5707138630,1.0588659200,1.6267786932,1.9261789318,-1.8907594121
-1.0077314227,-0.5338729734,-0.0913980559,0.7117109820,-0.2367312802,2.1647607203
-1.7455260132,-0.5129501252,-0.5249116074,-0.5845899294,-1.8920416117,1.3816985457
--1.1532323495,0.5868615366,-0.5047622935,1.1139874489,-0.5228791416,0.3518951335
-0.8638232192,-1.1229705602,-0.2472085616,0.5260240271,-0.0220303434,-1.1998282747
--0.2451617014,0.5423810558,-1.2152722772,0.0745001739,-1.6350285922,-0.3357604080
-0.8930966584,0.9603142232,0.4770856241,-0.3820829458,0.0562404256,0.3468167569
-0.0790763322,0.7468377100,1.5405700393,0.1170898366,0.9180660926,-2.5051450455
-2.1192061264,-0.7331086584,0.6253647376,1.4143309787,-0.3404500982,0.0657873320
--0.3246167772,-0.9194914951,-0.6598997505,1.0273002467,1.9393289707,-1.5157229234
-1.9431900774,1.3804629177,-1.0516154954,1.3336454390,1.7818353451,0.5613193313
--0.2034809263,0.0713772473,0.1693137853,0.5338065620,0.5148412507,1.3189550515
-0.7107281188,1.2554269303,-0.1330393484,-0.6750731146,-0.2362306917,1.1530885411
--0.0388898821,0.6664360533,0.3046965852,-0.7402870956,-1.0886815140,1.1609143529
--0.8310594768,-0.4543478187,0.1491373183,0.8185342235,-0.4204032228,-0.6676708069
-0.5666307245,-0.1287171280,-0.1661858769,1.2881687319,-0.6365129989,-1.6446687927
-0.0709081140,-1.2610826529,-0.5334431683,0.2984631805,-0.0458527287,-1.1691359414
--1.6063052192,-0.3162105944,0.6129340037,-0.0160538847,-0.0342874857,0.0268354771
--0.4825902901,-1.2936069066,-0.4981277884,0.4985880974,1.2040809017,0.9552718462
-0.0108626857,1.0742780674,-0.6656186768,-2.8443530111,-1.0477419070,-1.7851569526
--0.8934102686,0.6852966951,0.7194576366,-1.7259883995,-0.6701781794,1.1020176596
--0.3880438644,1.4889147056,-0.7788506077,1.0360036543,0.7736130415,-0.2183442777
-0.0350962910,1.1391632506,1.5796360596,0.5445093906,-0.0174664553,1.0047395756
-1.1464777133,-0.2834902354,0.3567673669,-1.6427470580,-0.1177955114,-0.2592197216
-0.9380941874,-0.9233563055,-0.0999640650,0.3800754077,0.9219001297,0.4377293142
--0.6524391093,-0.9177900805,-1.8955303544,-1.3706263794,1.9716795402,-0.3163755052
-1.6003492787,0.9969811775,0.7282055030,-1.5732492358,0.4177304846,0.0116805841
--0.6640220782,0.3563577308,-0.9517422419,0.4150735300,0.2043118061,0.1768480054
-0.4684171889,0.2047487516,-1.1400420396,0.0243611707,-1.2630795440,-0.4676636143
-0.8557642915,1.0555263456,-0.8369330201,-0.2899885540,0.3530703009,-0.4211398737
--1.6578907767,-1.0305540541,1.5032866219,-0.9485639945,0.5217356799,-1.2892784438
--0.9497073409,-0.2706902148,-0.8980093413,1.1631212252,1.0935500306,1.0796816407
--0.3414418972,1.1900152532,-1.0799740976,0.2900146275,-0.0100502953,1.0155777753
-0.2834596984,-1.6045318586,0.2906201163,-0.9871322391,0.4116869363,-0.4082149648
--0.1732457581,-1.0662429634,-0.2879301854,1.0817076546,0.0355317584,-1.5120648523
-0.7113390855,1.0805921551,-0.7136948651,0.9553529924,0.0354211219,0.6505845400
--1.6796197190,-0.1159781223,-0.8934635597,-1.5237477934,-0.8404612305,-1.0101477423
--2.1220375343,-2.3373441844,0.0403150200,-0.0629744659,-0.4618150240,1.1688349421
--0.9765593594,-1.0852132916,-0.0154850265,-1.0077406826,0.2096016056,0.7947237220
-0.5248745716,1.4967017985,-0.9828819567,1.2688124028,2.4111180967,0.3357900578
-0.7812493354,0.5912553041,0.5732001327,-1.0404988811,-0.8665555715,0.1770518579
--0.2450632449,0.3806333998,0.0355312652,0.2831699849,0.7042672076,0.0134086563
--0.0778809795,-0.4167556345,0.7588097664,0.3876852801,0.0747135795,-0.5778188549
-0.1461696917,-0.4424558259,1.8299467374,-1.4725559309,0.1776614966,-2.1793607198
--0.5842738457,0.0181184516,0.4249395866,0.7181140222,-0.3318166331,2.0060460272
--0.3514767097,-1.3793302010,-1.3442318006,-0.8181991154,1.7631750974,-0.2638613543
-0.0383334818,2.0818878381,0.5748390913,-1.6845929985,1.4138134468,-0.7509882353
--1.1880137366,0.5855819252,0.0198947388,-0.0265453275,0.0240049549,0.1598262980
--1.6805440069,0.0098068036,-0.1126843004,-0.1543973774,-0.7083382099,-0.4686580079
-1.8110056315,-0.8982515421,-0.1853972236,1.5106556940,-0.8663122916,-2.0338828590
-0.9477973544,-1.0308524046,1.2995939498,-1.0319990716,-0.1633851528,-0.7973186070
-0.4364908981,2.0582724473,-0.2742005014,-1.1473424784,0.8833269716,0.1575596825
-0.5114496521,0.0782996082,1.3136905169,1.6977256629,0.8522886858,1.8775914011
-1.2478167043,1.9547759761,0.9090843157,1.8305582023,-0.2812475860,0.0474545420
--0.5664901767,-1.5288813900,0.0863410688,0.9917855771,-0.7660657230,-0.7139377067
--0.3181894497,-0.7490957536,0.2366186446,-0.2434442236,-0.6332979192,-1.5808515696
-0.4743809290,0.3090081408,0.6886522333,1.3989375372,-1.3744032261,-0.3083817737
--0.8780898229,0.0354019614,-0.9186367636,-0.8308500242,-1.1765088609,0.7943750245
-1.3602935594,3.9091719578,-1.4383323461,-0.4468332095,-0.6574955062,-1.0337447280
-0.4000238548,-0.0729730066,0.6294363465,1.3428537604,0.1323605426,-1.9735270223
--0.7059475026,1.0818150288,-0.5035482180,0.2487615457,0.0107659603,0.1497439377
-0.1906633534,-0.4661489561,-1.7328381663,0.7965634574,-0.3866043758,0.1034394085
--0.4261236625,0.0433801867,-0.8349311766,1.5213841840,0.3216975916,0.9601090917
--0.2527141073,-0.9595669180,-1.1232099478,-1.4789572297,-1.7682026685,1.0866085091
--0.0035553426,1.1516783933,0.5399332972,-0.3658825978,-1.0455942883,-1.5173270534
-0.6894109505,-0.2508048560,-1.5771593856,-1.9468902089,0.0888163612,-1.5104338236
-0.5918273737,0.4821456099,0.2201814435,-0.7465971372,-0.4669483524,0.1959555041
--0.8110065663,0.9637677446,0.7719070726,-1.0886754152,-0.9291300286,2.3124247802
-0.7487957344,0.6138606303,-1.2452857726,1.4624990981,0.7211034192,0.4935045932
--0.3698177375,0.4385171954,-0.8437128666,-1.2729561152,0.5292748517,-0.0976334253
--1.6629394180,-0.0437726347,1.2517512785,-0.4294600813,-1.0786734936,0.0364557098
-0.5356287635,1.3679128091,-0.7516775842,-0.4308557890,-0.5596133833,0.8426201681
--1.5687046174,0.4794245973,1.6094031731,1.5625523318,-0.3937905161,0.7153266490
--0.2170615964,0.4716828373,1.4168838985,-0.5108551177,-1.3284610870,0.0806771238
-1.1110206543,0.0924512981,-1.0893506585,-0.3718661341,0.8314847232,0.8006576763
-1.2052671300,-0.7108565002,-0.4171419497,-0.5969024311,-1.5940543699,0.1411367216
--0.3146329109,-0.7171853602,1.3051670737,-0.4226940352,0.9931175526,-0.6614542596
--0.4139957991,3.0434708370,0.1229641514,2.4646627038,0.6341361831,0.0034336747
--0.1066547025,1.0281641032,-0.6940296917,0.2303098735,-0.7813154721,2.2811849044
--1.8360115000,-0.7537845730,-3.0369360609,0.9112043628,1.0097369011,-0.4067802497
-2.2112370809,-1.1690586851,-0.3323696085,0.3264913722,-0.4011340791,-0.7060736524
--0.8954222488,-1.2932270541,1.0246058757,0.4792545779,0.4479802514,-0.6773016545
-1.5168722719,-1.1259537255,-0.4253811418,0.0182270513,-0.8879502546,-0.1543365109
--0.2318585551,-1.5386327521,0.2097610318,1.9582472825,-0.2734936667,-0.2537046964
-1.2279660829,0.3933073897,0.5357865458,0.5497835001,-0.2250092357,-1.2008815294
-1.7934542977,-1.5127904855,0.6913155972,1.0361197011,-0.2890339382,0.8219999521
-0.5692161743,-0.5508791317,-1.3107824809,-0.6968130860,-2.3050605605,-0.2533684720
-2.0871146897,-0.4419027595,1.6237104970,-0.3835497949,0.6015451805,0.5526474024
--0.9390581079,-0.4510519585,-0.2760571025,-0.8522843099,-0.3099257898,-0.0501580747
-0.6661210482,0.0589151485,-0.0418956235,1.0105445026,-0.2633349404,0.4760980491
--1.0270457659,0.3354361904,-1.6881961071,-0.5200056551,-0.6173305806,-0.2071324379
--1.2172594170,0.3792451695,-0.2622421795,1.4269857459,-1.4729028599,-0.9413573286
--0.4357501932,1.3080840448,0.0326341486,2.0472364582,0.0497724523,0.4675907916
--0.8847924817,1.3866771680,2.1546044040,-0.1777226977,-0.3011736281,1.4630989001
--0.7524325904,0.9429777060,-0.0726247892,0.7570155395,2.2558068470,-1.3697571676
-0.5298758302,-1.4996129001,-1.5317451652,-0.0493324102,-0.2626672671,0.3993090225
--0.5393092676,-1.7231103886,-0.4039733706,-0.9422666423,-0.5109841086,1.0495947415
--0.4873732221,-0.0148185486,-0.2730098758,-1.3488812858,-0.3989219886,0.2174888441
--0.3013485844,0.1648887811,-0.0835155048,-0.0924944500,0.0353216577,-0.2853887069
--0.8554254700,-0.3608894475,-0.3982400078,-1.0686349042,1.3610645664,1.0093117319
-1.8669763501,0.5080495207,-0.4628156103,-0.5848663073,1.2237354832,0.4098022296
-1.1308503167,-0.1502441442,-0.9965141374,-1.6752095201,-1.9704164757,-0.4451217708
-1.2009883583,-2.1137146408,-0.6081299571,-0.9916185954,0.1409012712,0.1059298182
--1.1046960974,0.0143665030,0.9343677272,-1.5574874379,-1.6304995697,0.9607652157
--0.6166246837,0.3997186542,-0.2669064090,-0.1352999455,0.5548602250,-0.8139741895
--0.3891760695,1.9556991972,0.8084467688,0.3113161852,-1.2380683388,-0.5121763960
--0.2588528410,2.2292719384,-0.2945029992,0.4260854112,0.2452519790,0.9853431029
--0.7036778521,0.0140679716,0.0303354921,0.1926679331,-1.1268260613,0.5026842569
--0.6566840023,0.8263794572,-1.2103455490,0.1201769155,-0.1651787089,-0.0149380965
-0.9207194575,0.0098124926,0.5769556562,-0.7767375653,-0.2064010701,-0.4633051979
-0.2475401817,0.4823959950,-0.2984889052,0.9524258294,1.4111699385,-0.2124780439
-0.7263490806,-1.2627538693,0.3086477669,0.6210454749,-2.0309502823,-0.6085754356
-0.8562603848,-1.6741377120,-1.1096722966,0.6902146135,-0.4959993412,-1.0023591514
--1.1000414136,0.2998048494,-1.4688724382,-0.3223796228,1.4990587919,-0.0278355482
--1.3726599753,0.3429401132,-0.2823553613,0.5740467195,1.3858754499,-1.1749160462
-1.3837637914,-1.8110344149,0.9379230306,-0.8624551103,0.8025219859,-0.4062595659
-0.1847182957,0.5617484798,-0.8183807412,1.4402353767,0.3383604543,-2.3895371818
-1.1222421669,-0.8523897345,-0.2418453713,-0.9247643804,0.3484521461,-0.0743660697
--0.6712054111,-0.1096530994,0.8784250424,1.1683452007,0.4843942125,0.3360951589
-0.3241066514,0.4272393476,-0.4278315132,1.5036928685,-0.0798338699,1.8649406306
--0.6304409125,-0.5156758925,-0.2747636546,0.3966439953,-0.5451060379,0.1567533124
--1.1376161294,-0.3147388101,0.5087759028,0.5769315869,-0.7955668645,-0.7132800834
--0.7476438468,0.5315244182,0.5249617007,0.1322526076,-0.2125942858,-0.5120288512
--2.5575768613,-1.0123091655,0.1923470503,-0.7847991054,-0.3907136014,1.7816434987
-0.0898822985,1.3741687927,0.1878121229,-2.2190634906,-0.6916917375,-0.8521812012
--0.6536273246,-1.7285347619,-0.2993094887,0.1239795390,0.1397485235,1.3018111826
-0.0277510539,-0.8950408543,-0.1561100062,-1.9302387320,-0.0532106252,0.7086807088
-1.5465435269,0.5283679843,1.0856205584,-0.2576313274,-1.2806487168,0.1392187027
-0.5782619967,-1.5528318849,-0.6580653208,-1.1916940025,-0.7980019330,-0.2255822838
--0.5100924442,0.4949377012,-0.4196800943,-0.4170766815,0.4298596698,1.6781968714
-1.2681132747,-0.1804061879,0.3353395215,0.0404778728,-0.3998009067,0.7115186970
--0.2276560125,-0.5252432045,0.1871399463,-0.5400162811,1.1071643736,-0.7255151667
-1.4272608482,0.1205159168,-0.2475287532,-1.0192519931,-0.1152195912,1.2352514108
--0.9823532119,-0.2470689970,1.4134906192,-0.1824448066,0.5848243732,-1.9636683432
-0.6306328357,0.4598773607,-1.2411852112,0.4744866483,0.8020047672,-1.3564678055
-1.1809722719,0.6153736267,-1.8954103898,0.4259002242,0.4495935376,0.6588809731
--0.3659940694,0.6359575290,0.3380617326,-0.8774603377,1.0273616360,1.7343439429
--0.4779211456,0.1348482607,-0.7083477070,0.4141085507,-2.3148838577,-0.2673177167
-0.4554107296,-0.2999776917,1.7745186276,-1.7924360071,0.3458158950,-1.7574423261
--1.0151364946,-0.7995908833,-0.5655949165,-0.1132134925,-0.0210212032,-0.8465992867
--1.7713257213,0.0584883929,0.4729365663,0.6859696077,-3.3620324060,-1.3132843297
-0.7557732373,-0.6027626416,-0.2154031827,0.3534526605,-1.0236978261,0.6837098885
-1.0205722008,0.3803199144,-1.3914981227,-1.1550369092,-0.6165506449,0.3357563981
-1.0741583074,-0.8951352415,1.0278102307,-2.1299612260,-0.4606170217,-0.0425820431
-0.0059764441,-0.0327579331,0.2722290502,-0.9612212717,0.2018840175,-0.4793487548
--0.3862413896,-1.9331521977,0.9124592725,-0.0836291026,-0.7922112851,-0.0958635656
-0.2073397413,1.3896824649,-0.3759653373,-0.0402504995,0.0528930762,1.5322116195
--0.9289467390,1.5345958332,-0.9494600337,0.6556296402,-0.2168766994,-0.4801553850
--1.6880812136,0.7668381423,0.7741792821,-1.3834994151,1.4353042104,2.6287167128
--0.9217569182,-0.1118683942,0.2294691125,0.4398016950,-0.3973522704,1.2496424756
-1.5604239503,0.8603119339,-0.4467562761,2.2298954779,-0.2382584447,-0.8442079514
--0.6112578600,0.0335143013,-0.0558707063,-0.3647449453,0.0644332353,-1.2007723410
--2.3398334022,-1.9725170684,-1.4386335948,0.8643591896,0.0314728944,0.4686878268
--0.8682607679,-1.1628222070,1.0908999630,-0.0787503937,0.5335001908,-1.5866257298
-0.3860645470,-0.1797634980,-0.0836703934,-0.2459992024,-0.0047370323,1.4335846310
-0.0826482930,0.1076744423,-0.2267897408,-0.0748827365,-0.4451879009,-1.9925088182
-0.1403162572,-0.4001875987,-1.4680779629,-1.2529072583,0.3675557744,-0.2214985633
--1.3213689468,-0.4787110108,0.2464726802,0.3705237830,-0.7942362089,-1.1602801385
-0.1109008220,0.8275470802,-1.0202822110,0.3422310022,-0.1121557357,-1.5868768585
-0.9937556156,-0.4901796746,-0.6929295049,0.4300532123,0.7235777403,0.8571382920
--0.6527954444,1.0118288883,0.1505882074,0.8933374202,-1.1431276810,1.2548484058
-1.1092704014,0.7810317999,1.7701827253,1.3569615419,0.1683841628,-2.7035158650
--1.1447411088,0.0194366680,0.7560886272,-1.7586315990,0.9518227065,0.0868489036
-0.5178515366,2.2795173831,-1.5703332639,1.7826643506,1.1952193469,-1.0432256695
--0.2646085193,0.5840618191,-0.6546172516,-2.8005946043,-0.2990116754,1.1892415468
-0.6789015094,1.5431321952,-0.9600943991,1.8472248968,1.4795291495,0.7943775576
--0.3765123975,1.1897454144,1.0208032385,0.3514972300,0.5714942110,1.1640652152
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_c.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_c.csv
deleted file mode 100644
index 6409d57..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_c.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-uhat1,uhat2,uhat3,uhat4,uhat5,uhat6
--0.5970431276,1.9644571186,2.8581920718,0.3336822851,-0.9942852808,0.5009863795
-0.0182019932,1.7543008581,2.2466917128,-0.0864473659,1.7501015883,-0.2719219510
--0.6646218029,0.7882000432,1.3123982015,0.0291953651,-0.0183595554,-0.5588249004
-0.3041627028,1.4260297117,0.4013891725,0.4387285760,-0.6767949950,1.2156408981
-0.3080415611,-2.3612568438,1.3562373892,-0.0887524571,-1.0478225880,0.2279833245
-1.1102135466,-1.3355179523,1.5175137957,-0.2914457219,0.6309651010,1.5542159924
--0.3750674840,0.6209127991,-1.4835375273,-0.8144600730,-0.7455396506,1.1478549803
-1.4734230995,0.2255282580,-0.7050370159,-2.4979692592,0.4537075911,1.1200774711
-2.0278429631,-1.4427300171,0.5403961356,0.8407341818,0.3140312594,0.8195137122
--1.6149655785,-0.8089418562,1.3815810688,1.7898138934,1.9679042023,-1.3005530082
--0.2755977630,0.5980026905,-0.9373441467,0.3815041911,0.3111338100,-1.2695995777
--0.2975061740,-0.8749236050,0.1779066520,-0.2361575413,-1.1993712521,-1.2018225425
--1.2825402275,-0.3577104145,1.8995942610,-0.7619536359,1.9261527400,0.2549977510
--0.1950117688,0.0276080679,-0.4127830466,0.5021540396,0.8049308784,-1.4079837702
-0.0456334419,1.6337230347,-0.2030765577,-0.4451751953,-1.0269237400,0.2297868253
--0.7064283511,-1.5944080013,-1.8457576875,3.3972990909,-0.8113905379,0.4031928346
-0.6869022133,-0.7487949244,-0.7002970827,-1.6540012043,-0.6685116236,2.1558559783
--0.9056012206,1.6537578452,-0.0935723229,-0.4177424962,-0.7827922088,-1.0965771746
--1.4108673168,-0.1526657909,-2.0860459175,-1.4300339212,1.8205676286,-1.3963866243
--0.5002273043,-0.3399087504,0.2027621991,-0.7811584356,-0.6081202834,-0.5198160208
--0.1966401225,0.2754314830,2.1606703618,-1.0252276657,1.0305200452,-0.3663237829
-0.9423540691,0.7666956830,1.6216312394,2.7315920650,-0.5669633942,0.1294828415
--0.5032111555,-0.2136098372,-0.9624645465,-0.5073518362,1.8529743435,1.0464812565
--0.0706422357,-0.5624932357,0.6417029559,0.1106822327,-0.5648899797,0.2273004765
-0.1555984072,0.1319017330,0.8041912071,1.5043778592,-1.1362093293,-1.4625115106
--0.6829072554,0.1231105864,-0.7463346850,-1.7556051868,0.0182871309,1.3242897728
-0.4836822472,-1.1677156970,0.9267983681,0.1541236776,-1.4995756981,0.3342838502
--0.3077717297,0.1065021989,0.5663413950,3.2375541811,-0.4121988713,-0.3936978961
-0.1422450005,0.1446017784,-0.2280636153,-1.5670003785,-1.3965176381,1.1626849759
--0.5988298111,-1.4965152782,0.5431332398,-1.8950082750,1.6699521931,1.2370800417
-2.8746976404,0.7580957785,-0.7339595217,-0.6008727472,0.2385596845,0.1014095588
--2.6700228960,-1.2704087440,0.5840693867,0.7222886974,0.0040762785,-0.5102429766
--0.2782115122,-3.3234438676,-1.7934650536,-1.3785523950,-0.4061594951,-0.8366553692
--0.6967148976,-0.0363622973,-0.2611968674,0.3129215170,0.3129386265,-0.1726092824
-0.0402046937,0.8792427681,-0.5331476333,-1.0733083099,-0.8044108072,0.5838434960
-1.5180370949,0.2334318433,-1.3171921124,-0.4643530942,1.9215806538,-0.0058033158
-0.7563656945,-0.5134812446,-0.2559645287,0.2040444357,-0.6218164834,-1.0029930496
--0.6249147390,1.9404407009,0.2665262803,0.5597759687,-1.1149901482,1.3367894108
-0.4744339282,-1.7097702633,-1.8645512156,-0.0736846579,-1.3252181044,0.5140586604
-0.9158104137,-0.9644630048,-1.4817564666,0.9846826489,0.6392910454,2.5267241117
-0.5364609746,-0.8141007853,0.3372000793,-0.3762203642,-0.2293680809,-2.6645523947
--0.0734802478,-0.6220087695,1.4526685262,0.7493570727,0.4078787234,-2.6336935317
-0.0587578744,-0.8699847497,-0.5242355555,-0.4794854495,-0.4858072680,-0.7477007545
--0.2407166951,-0.3203468407,-0.3689658970,-2.4165529703,1.1224721133,-0.9147506030
-0.0744741105,-1.0663502156,0.2018525004,0.1787101865,-0.7149062503,-1.1498034333
-0.2444709563,0.6730306720,0.2144755307,-0.2282144195,0.0350468684,-0.1805236338
--0.2390260915,1.3909419529,-0.5007056884,-0.6534495825,-0.0847841237,-0.7985575032
-0.7188959090,-0.0421098279,-0.2721075638,-0.7473534301,0.8649118003,0.5212385523
--0.5015783857,0.6049928771,0.4752398468,-0.5198150247,0.0035904764,-0.2662702383
-1.0197207272,-0.4937799065,-2.0519793793,-0.7458038747,0.9733469781,0.1493912332
-1.5174292591,1.5356995338,-0.7742674121,1.2218531030,-1.1312514329,-0.4464500577
-1.3483923243,2.1025617736,0.7357470171,1.0915233924,-2.1303056403,-1.5953693831
-0.4075515335,-0.4022549382,-1.4197719512,0.7209796745,0.4593709476,0.0341408612
--0.7568619442,-0.4619157424,0.1930412082,0.3217207379,-0.8859414115,-0.4786778739
-0.5681134676,0.4010450399,1.3768139995,-0.2865830408,0.3113651021,-1.1179661508
--0.0298286223,1.1353451283,0.8122675983,0.7421053835,-0.0951124157,0.3385079057
--1.6231637691,1.1500085978,-0.1695253546,1.5749876901,-1.2967601255,0.8216667446
-1.3233252145,-0.2943328747,0.0824832495,0.5927644624,-1.0091359254,-0.0784046669
-1.6262580824,1.3479676090,-0.7688615769,0.5870165097,-1.4815829042,-1.5492257821
-0.6818028263,0.4563877043,-0.6063830759,-1.0050973742,-1.9011574220,0.5252749698
--0.3297340633,-1.9878290183,0.1930280850,-0.7056995477,0.4035505567,0.8734846677
-0.8422795969,-0.0686086486,0.8450008200,-0.6150070433,0.2107718492,0.7923768106
-0.9455943990,0.0316159426,-2.1369601254,-0.0585718305,-1.2734388108,0.2291744885
--2.1802948840,0.6068394707,-0.5245701971,-1.3260769199,-0.9834878791,-0.7072045861
--1.7701348833,0.5367533137,-0.1957437854,0.5995379852,-0.6187486557,-1.5745844609
--1.1176897355,-1.6526597428,0.2334153137,1.0604557797,0.9357929297,-0.3050253953
-0.4175794484,1.8303196766,0.8490840727,0.7817106891,0.7110343481,0.7133295932
--0.1964943002,-0.4818922767,1.1130594091,0.6450738934,0.6575107120,0.3145902913
--0.0514206178,0.8556366912,-1.3999812724,-0.2886114710,0.7920136166,0.6960829080
--0.1901124543,1.4712387562,1.5363387733,-1.0025951076,-0.2843685223,0.9100409074
-0.8109179338,0.3238904846,0.6256522145,2.2061012187,-0.2739236756,-0.7457566458
-0.3913362496,-0.3413491593,0.1478906149,-0.3916413989,0.3251831385,0.0245097168
--0.8823778411,1.1926748571,-0.6341592270,-0.5589796229,-1.0518769862,-0.2110828624
-0.4418106002,0.0396072932,-1.5983280145,0.1346865785,-1.4612221719,-0.8379460255
--0.2573625300,1.1205792460,0.7964352244,-0.4552514273,-0.7330815587,0.6475908135
-1.3483117455,0.0788662442,-0.6250567532,0.4237556024,-0.2799573282,1.2334454851
-1.4571156134,-1.4172699378,-1.3825567026,-0.5324836065,0.6324662014,-0.6792444896
--1.0968867604,-0.1579061348,0.5027972539,-0.5868140914,1.0160881336,-1.3805164027
-0.5033360438,-0.6949098258,-0.3353555331,0.2961763584,-1.4418738692,0.9716975289
-1.3377995909,-0.6933694389,-0.1297336949,0.3198599819,1.0700205073,1.9319119128
--0.4893687646,-2.1916423650,-0.5084693605,0.0094820413,-1.5954583614,-0.2415163462
-0.8407375180,1.0851282562,0.9076087022,2.0858882110,0.8550737023,0.4121428611
-0.2329189800,-1.9308292403,-1.9471066316,-0.3333486039,-0.6179148116,-0.4876903850
-0.7887634684,-0.5066737936,0.0140685340,-0.2154659055,0.6856316133,-0.5733476235
-1.2876420408,-1.0017008922,0.4047785308,1.7332830849,-0.7434175661,-0.7506038467
-1.3831933237,0.2610588894,-1.0252886762,-1.6814656007,0.7577395814,0.7010080753
--0.1390007449,0.3206198470,-0.3233859492,-0.5927685850,-1.2963773187,-0.0870908365
-0.0764508525,-0.0681337595,0.4492050165,-1.2001505903,-1.4631666187,1.6555568808
--0.4344763776,-0.2568228099,1.1778776146,-1.0003945433,0.3741289770,-1.6510829465
--1.0371316821,-1.5592859356,0.8159671789,-1.7755574720,0.0434710248,0.5449048695
-0.3444787655,0.3090727676,0.2452982560,-1.0989779141,-0.0480727359,0.6981980650
-0.1919641040,-0.3204360708,0.3328934650,-1.2451886319,0.6561994334,1.8427653499
--1.1720978846,0.7904723055,-3.3362351111,-0.9411742116,-1.2802287987,0.6515088935
-1.1396206811,0.2748270617,-0.5175966998,-0.0735431223,-0.0684056295,1.1448528646
--2.0195769715,-0.4475420741,-0.3429326238,0.3761768981,0.0537397325,-1.0118614556
--1.7267046951,0.7766764222,-1.1638093304,1.1458643850,-0.8626962230,0.6895731392
--0.2814854762,-0.2783129171,-0.3682718240,-3.0456779822,-0.2828212693,-0.2073910030
-0.8362030629,-0.2196532998,1.0696347425,-0.0284164744,-0.9862793221,1.6659680149
-0.8386993754,0.6600397414,-1.0336573298,0.4562314613,-1.2356041607,-0.9510741752
-2.2068096979,0.5415287036,-0.0255683679,-1.4552977819,0.2970715588,1.0732996894
-0.1796356212,1.1528413269,0.0237541456,-0.5372340392,0.4941692266,-0.3645515480
-0.6409734352,0.0604139515,0.5078790903,-1.7618529635,0.3250273463,0.9493556626
--0.1460513305,1.3828333196,0.6312418683,1.9103277546,-1.8952113459,-1.4503796502
--3.6857422734,-0.0841685337,0.9063497823,-2.1378477070,-1.8427389423,1.6708728777
--1.6337658056,-0.1361837568,-0.7428804647,-0.0522557625,0.2745812822,1.1750029750
--0.7140781271,-0.3864649626,-1.5664856393,-1.0558627049,-0.8611850252,-2.0717990875
--1.0082497842,-0.9240520934,1.3600650590,-0.2255766020,-1.4888105086,-0.5233934788
-1.0136010064,-0.1609410773,-1.4104734602,-0.8377364876,-0.3904790472,-0.2556220507
--0.9235316724,-0.3380407315,-1.4787867585,-0.2785107309,0.8689524762,0.1419894719
-0.9725390021,-0.6154797240,-1.5491420218,-1.0885464758,0.8246587658,-1.4542529829
--0.5418985311,-1.6203629923,0.3603642343,0.2084435025,0.2110502977,2.7283800276
-1.1329756393,-0.7382376568,0.6765107641,-0.6703906994,1.3323909189,-0.6675389623
-1.6999369960,-0.0977837869,0.0180434354,-0.6838520359,0.6449245873,-0.1078982923
-1.3564030901,1.3275009700,-0.0577451096,1.6811608990,1.7515181438,-0.3611869398
-0.9469061220,-0.2135540585,-1.6567969585,0.3088311232,-0.4902417764,-1.1306865884
--0.1841890502,-1.4853870850,0.0856503011,-0.6379423853,1.8309828227,0.7852357487
--1.4536915741,0.0632123465,-1.8234177941,1.6595057084,1.1199326538,0.7202726057
-1.4088346446,1.9391106968,0.9451277496,1.2107037403,1.1795972052,-0.5737558057
-0.7655504535,0.3327495520,-0.2048871911,2.0356170778,0.1359660412,2.2997673250
--1.4104923594,-0.2348042172,0.6975444611,0.5913615874,-1.3257257753,-0.7218283404
-0.8337126103,0.8161613886,0.1639138278,-0.8210989482,0.3452162615,1.1874970675
--0.4356284910,0.5187057069,0.3577519398,0.5130210011,1.6999147781,0.8832991404
-0.8846465060,-0.0051902623,-1.2255699057,0.0192750213,0.0062405495,-1.1207934975
-0.2369079064,0.3152940534,-0.1138471334,-0.3799238761,0.4837601417,1.1911298640
--1.4328148841,-0.0354154803,0.3611111888,-0.6364231138,1.1598812716,-0.9336430149
-0.4256491501,-0.4701956609,-1.8513455515,-1.7049516090,-0.1402054173,-1.1659169047
-0.4148241328,0.3010553687,1.1324110281,0.1307862565,-1.5218769161,0.6247000156
-0.6070389717,1.9750231781,0.2070679107,2.2424672508,0.2162197184,-0.2690549140
--1.7752595172,-0.4413987581,-0.3017539787,-2.3063680339,-1.6303755410,-0.8112068999
-0.7811115012,-1.4894385174,0.1936515932,1.6168949288,1.0209677009,-0.5244542530
--0.6734067364,0.2657777140,-0.0038243417,-2.1283693967,0.5399643755,-1.5613418114
--0.2174957932,1.9957083397,-1.3199720918,-2.2776071044,0.8752264806,-2.3067446324
-1.0237897515,1.3155917492,0.2739655446,-1.5709450773,-0.8176618305,0.4567617557
--0.7471269751,1.6420611482,-0.0489931433,0.6869780486,-1.0269445719,-2.1286931543
-1.4273277054,-0.8369015853,-0.2473552077,-1.0403942178,0.8533151937,-1.4161444193
-2.3053408143,1.4644570088,-0.4750353592,2.3704727317,1.6905771157,-1.6750137235
--0.8417034145,-1.6563925000,0.4536428058,0.4382360847,1.3272058716,-0.0161537412
--0.1334965047,0.0348737044,2.6390318650,-0.5154150238,0.1286760028,2.5013499985
--0.6377388045,-1.1059372897,-0.9406951711,0.9965841407,0.9261273877,-0.6615435409
--0.3044004944,-0.6419936851,-0.8493417956,-0.8810166806,1.2122951406,0.4227747943
-0.0927762800,1.1187914870,-0.3282395877,1.9232104950,-1.5108539569,0.3924326075
-0.7696331260,1.3128863032,0.1169529873,2.1307136518,0.7106151747,-0.7394879661
--0.3169533695,-0.1346665759,0.9996726166,0.6566449417,-1.3199045902,1.9146994135
-1.1209568623,0.3780268564,-1.1278817755,-0.0834756235,-0.3652882095,-0.9545461033
--0.1424351862,0.3947473673,0.0960760957,1.8278147469,0.8827012037,-1.3460305046
--0.0460696301,-0.1348995761,0.6021925582,-0.1817705347,-0.6821234444,1.1924973402
-0.0794128789,-0.6782448784,-0.9737902055,-0.2084556001,-0.2846151577,-1.0247814478
-1.0396479644,1.3722297706,0.9341845449,-0.6062307263,0.9081820658,0.8416308138
-0.4180619954,-0.0338592385,-0.8266233510,2.0678630552,-1.4185931428,-1.6437071063
-0.1006336771,0.8545344223,0.5923130449,1.7003825860,-0.8028027195,-0.4544195127
--0.3652576943,-0.7747206319,0.4987438114,0.1485055174,-0.1898679822,1.6070099733
-0.0295764170,-0.3530289029,-0.9733870283,1.8166544249,1.7111368028,-1.3277793325
-0.2832641023,0.8738000118,-0.1992883675,0.3223353066,0.9258268620,-0.2230200504
-1.5255399509,-1.1741505018,-1.6548952594,1.1492836774,-1.3994035634,2.1483503956
--0.0408371910,0.8899494695,1.0347682699,-0.4528970387,1.1073613208,0.4952797226
--0.7490403558,0.7502145281,-0.3304993290,0.2717700198,-0.3568045607,1.7485517770
--0.2088213611,-0.7140297829,0.0793484784,-1.2062147663,-0.2922395886,0.3779819558
--0.2495819968,0.3352199964,-0.1203674115,-0.7606579127,1.2082274335,0.9937045976
-0.2481018030,-1.2799372351,-0.5358000415,-1.0659413994,-0.8745863760,1.9176582287
--0.6318424808,0.3281309586,-0.5961626378,-0.5396088147,-0.1263077738,-0.5198788140
--0.7303715198,-0.2569322658,0.1568709631,1.9514817200,-0.7364148890,-1.1022168783
--2.4520769710,0.1069101303,0.1698165254,0.6942051151,0.8281460028,0.8191075683
-1.3978509400,1.0023270488,-0.2630521366,-0.5830565394,1.6463523933,0.4771658979
--1.0767718403,0.4595819916,0.2872482286,-1.6981461284,0.0236185317,-0.3954284632
-0.4651573703,-0.6799042741,-1.3452905761,0.3304140080,-0.1454021729,-2.0146310976
-0.3926464230,-0.8897315892,0.2017895760,-0.3857399256,0.8294236188,-0.1000763585
--1.2711964311,-0.2252652677,-0.1010781965,1.0126028625,0.6927958655,0.9508566267
--0.0745022617,-0.0001941124,1.3921424253,-2.4328326521,-1.4652483486,0.3846345342
-0.3307660153,1.3827349811,0.5659697128,0.6993403677,-0.0803432645,-0.7980560932
-1.4395988116,0.4074995902,1.0042474786,1.0907817954,-0.5195176924,0.6740252299
-0.8497971310,-0.1023099568,-0.8369796404,2.8315243105,-1.8466679869,-1.3201306883
--1.9802586837,-0.3026898409,0.0735763039,1.2480455448,0.2823876789,0.7240756880
--0.8214792991,0.5728084888,-0.6355821370,0.8955002571,-1.6009133913,1.0827795062
--0.6226660988,-0.2113479451,-0.2077281285,0.7056288442,0.7282736337,-0.3524923630
-2.0156785834,0.4261317390,0.4354259404,-0.4135615335,0.7043689458,-1.0010273054
--1.1938678024,-0.8207651393,-0.4750570852,1.3841687075,1.4371266232,0.4323277221
-2.2215920189,-0.0467132122,-0.3308847291,-0.3737980634,0.3733913374,0.5903136898
-0.3681771160,-1.0535392127,-0.6731617493,0.3385852544,0.4905619093,-0.0140872327
-0.0205557877,0.0550704484,-0.6981519338,0.9164293869,-1.0422603599,-0.0400766508
--0.5570507782,0.7516698280,-0.4000586000,0.5552754565,-0.4110633488,-0.9425706790
-1.7169994409,0.5989763398,-1.7150610826,1.2734600165,-0.4379423364,0.2442528429
--0.3734919114,0.6851968175,-0.1161592764,-1.2465332445,-0.0133770906,-0.9746076476
-0.6896090510,0.4537162423,-0.5098606858,0.0838134122,0.2215448640,-0.9338181008
--0.2099379540,0.0266792409,-0.3662486539,-2.2541100586,-0.8204512381,0.7611786034
--0.9541807107,-1.4262513478,-0.3105062140,0.0570837481,1.1517387198,-0.2610892939
--1.7998439732,0.1541591827,0.3129387559,-0.0795165036,1.1508103114,-0.4006190215
-0.0179155277,0.1791117886,1.4076575419,0.4558639749,0.7469106230,-0.7259696501
--0.6138474833,-0.2423150155,0.1448101820,-0.7990435746,-0.0279480236,-1.0117087121
--1.3626968813,0.3134593972,-0.9013476352,-1.0759731343,-1.7589526155,-1.1135062224
--2.1358541760,1.0517529184,-0.2649633538,0.3500761332,-1.6815056661,-1.8841675164
--0.2732300363,-0.3692284382,1.0570174341,-0.2393173079,1.2547959517,1.0756363615
--1.6862703385,-0.5369078921,-0.6369242805,0.0323463577,0.4108922020,-0.8027437652
-0.1397952975,0.4125397300,0.8116024820,1.0015275666,0.2714761759,-2.5902677539
-1.2800250774,-0.2924960257,-1.3739783929,0.2405021506,1.0444337048,-0.7232994999
-1.7640236604,-0.4289971973,0.7450214645,0.5901412879,0.5279407487,0.8907023481
-1.7501469387,-1.2793636115,-0.7388995388,0.0690156553,0.0097405802,1.4064427134
--0.1588699363,-1.0513261766,0.0158276195,-1.1994590635,0.2634631013,-1.0082328908
-1.4179499206,-1.0327145289,-0.6527251747,-0.2057569002,0.1497138195,0.1749424460
--0.1674403107,-0.4211908380,0.0545002618,-0.0034162811,1.0609715609,1.2897029422
-0.5478829553,0.5344159002,-1.8956191514,0.1652145444,-0.3060729049,1.0614935376
--0.6972611849,0.5745465349,-0.4806010650,-0.4431365401,-0.2385344545,1.2423015750
-0.4170578841,0.3684011031,0.8689572007,-1.4277039840,1.0263180218,-1.1333234801
-1.6047844579,0.6387872114,1.0336837445,1.6093993672,-1.4639886159,-0.8982776163
-0.9084848368,-1.0316255096,-0.6523623006,-0.5171643169,-0.2307658021,-1.8186180420
--1.0691311273,1.3411372194,-0.1362275714,2.3951997078,0.3063366590,-0.1598231567
--0.1594467413,2.4700088685,-1.2902530098,0.7283323535,-2.0246034009,-0.8767294071
--0.6208824069,-0.6707878277,0.4250705465,0.2505395447,-0.4972287407,0.0326843988
--1.3227916249,0.7401988506,1.3245850449,-1.2859072015,2.3109403148,-0.2619295607
--1.4277892392,-1.1971949997,1.1866510792,-1.6231891964,-0.2206031215,0.4679058263
-1.6506475833,0.7822523697,0.4685356907,1.8734497391,0.8920071168,2.1613011439
-0.9127046346,0.5193312047,0.8944519172,1.0416669732,0.6268382310,-0.2955578938
--1.7506028990,1.1154420981,0.5385802794,-0.7407154146,0.1399457702,-0.9221036559
--1.0312855817,0.2960087960,-0.6126117053,-0.8785785087,0.8049976920,0.3505285777
-0.7040949864,1.0669821155,0.2027328834,0.9724814437,-0.0064729835,1.1121459185
--0.6724445359,-1.3200321023,0.0108409239,-0.7409356830,0.3716778126,-1.4674551200
--1.1196089902,0.1887134767,-0.2999337558,-0.1625181957,0.6120763629,0.0132213140
--0.5910231363,-0.3080587139,0.2990054750,0.2504683844,0.4246433649,0.1831549931
--1.2800018569,-2.0494955036,-1.1357830616,0.4875943248,1.2861469708,0.0362277151
--0.8171409789,0.3226359088,-0.7380576527,0.4892498489,0.2283417157,0.4451909641
--0.0402475420,-0.2484413130,-0.6408356539,-1.1785325637,0.5823003986,2.1822563629
-0.7259021694,1.3331227416,0.2669347700,-0.0772869213,-0.0679861755,0.4012839360
-0.5604639195,1.0802546328,-0.2652451656,-2.9399114367,1.4630189441,0.1901286936
--1.4171781222,-0.5044145917,1.8442119141,0.4190027434,0.1832869663,0.8541291226
-1.0680050772,0.5036902866,0.3547553156,3.6456233962,-0.8100558715,0.9226095939
--0.3042454694,-1.8976955112,0.3532691641,-0.1916636207,-0.0753872894,0.4536988019
--0.6512490544,-0.4032090178,-0.7525208960,-3.0083376522,2.0060822340,-1.2628688071
-0.5065533937,1.1439543588,1.2073612510,-0.4448538043,-1.1900590126,2.0862142834
--1.5527840959,0.0043282083,0.2409690372,0.5274113259,-0.6138046722,0.3453588486
-0.9161463795,-0.3131544045,1.2232032816,-1.8285927811,0.9955628148,-1.1910306337
--0.7714986061,-2.0777237007,1.0536951282,1.2016643362,-0.7239032911,0.8684202376
-0.8021314723,-2.2515879086,1.2745807907,-0.7980714505,-0.3571583443,-1.7821450445
-1.5390533021,0.0565577067,0.3332554058,0.5881620129,-0.7325098313,1.8843236245
--0.8313849011,-1.7561074662,0.5939412040,-1.6180884601,-0.9420944551,1.8843809082
-0.2446278553,1.2329048784,-0.3398292738,-2.9634602546,-0.0645858479,1.1080505945
--0.1949706130,0.3044473230,-0.8345102768,0.2856082181,0.4019392759,-1.3058739290
-0.2492237720,1.8779287520,0.8369059500,-0.9887666597,1.7562504632,-0.0060916447
-0.6562907872,-0.4703283927,1.0359201419,1.9163817545,-0.0528805817,-0.8103226172
--0.5514660716,0.7624900677,0.9595106362,1.4577229401,0.3766069911,-0.2956107877
--0.8984367964,-0.7552247488,-0.4322982493,1.5841627751,1.7671311098,-0.4313412521
--0.4827093377,1.2875925935,-0.8314207724,0.6394334802,-2.1969883903,0.3348063324
--1.3043642650,-1.4976414067,-0.0924965644,0.5180522013,-0.6203046507,1.1022608092
--0.2982226737,-0.5813375780,1.3702563403,0.7390508352,-0.6151849706,-0.7711008212
--1.6242819707,-0.1316135027,0.3998850173,0.0370333587,1.3034335052,0.0659296197
-2.2173655546,0.3528905441,-1.1387912477,-0.5222782244,1.2257439440,-0.6912874520
--2.1592264237,1.3140633923,-0.1401834447,0.1051707742,-0.4159006088,-1.4188288959
--0.9378440991,-1.2792693278,-0.5417741431,0.1537519405,0.1262690351,0.5975162642
-0.7154589499,-0.4995606327,-0.2898683286,-1.1643167185,0.4422724959,0.7407248814
-0.9224622886,-0.3948156070,0.7481846099,-0.4650743378,-0.6175096000,0.1731187469
-0.3842094796,-3.2824482082,0.1299513635,1.3052091945,-1.0710189251,0.9611999243
--1.0324299367,1.2118891286,1.0702407218,1.6918980125,-0.1971999343,1.8706281041
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_nc.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_nc.csv
deleted file mode 100644
index 50df125..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/resids_exact_nc.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-uhat1,uhat2,uhat3,uhat4,uhat5,uhat6
--0.2047076595,1.3940722262,-0.7618372134,-0.4064523618,-0.9835047174,0.6143504692
-0.4320838837,-0.3455406434,-0.6670905817,-0.1189901168,0.9254493610,0.6210238496
--0.5096195108,-1.3111654830,-1.7778579702,0.3584445303,-0.5091036181,-0.3345605429
--0.5396230974,-0.4178846116,1.1813562109,0.7589005653,-1.6248554981,0.6320604181
-2.0098643595,-0.1789029452,0.2211447696,1.1684847509,-0.2758914231,-0.2959574480
-1.2709887256,-0.7759513773,-1.2424911223,-0.7253916916,0.3918998569,0.9818126124
--0.0171440436,-0.7308450419,-0.8974420734,2.0089387498,0.6212542485,0.9884987186
-0.2141023632,-0.2530641419,-0.0268375715,-0.1436132264,-0.0490454461,0.2362946064
-0.6937806696,-1.5291444672,1.6164250675,-0.8456182900,2.1770966325,0.6699376936
-1.1482776291,0.6494431187,-0.7328696164,0.2935466599,0.1474127099,0.1410878504
-0.8699510318,-1.1875417504,-0.8202661728,-1.0014779666,0.8989275326,1.7124755784
--1.4326497468,0.9919496849,-0.9742229629,-0.9026181683,-0.6312073760,0.5291111671
-0.2869569982,-0.2079331898,1.0802967062,-0.1784951874,-0.1732826616,0.7402262292
-0.1614765783,2.2269947281,0.5261902275,0.5815151196,0.4686171734,-0.8053661441
-1.3182917243,-0.8841228774,-1.3015784923,-0.3874651459,0.2959072014,-1.2049955699
-0.7617307875,-0.7936263471,-0.2027282619,0.6303738871,-1.7185410217,-0.7465358760
--2.1056696340,-0.5214487220,0.6287097462,-0.6087998795,0.4139707602,1.8993566764
--0.2960698771,0.4606380223,0.5981362751,3.2763384093,1.8268337735,-0.6829172285
-1.6724608152,-0.5329217537,0.2095470930,-0.8292457663,-0.4925324988,-0.4200628420
--0.5366879935,0.5373928201,0.0724274707,-0.7368641806,-0.3178502146,0.4096613289
--0.5267484576,0.3567899695,-1.2362395784,-1.6598227620,-0.1248158141,0.7245523292
-0.4870251302,-0.0003425296,-3.1862457425,-1.2276826148,-0.3622850442,-0.7207050594
-3.2172556724,-2.5672091918,-0.1179121622,3.0356075234,0.0684246861,-0.6214041116
--1.2532436593,0.1223403754,-0.0603538258,1.3417688171,0.5154230149,2.3396539632
--0.5661229629,-0.1212960141,1.2126233609,0.5984719988,0.5544025413,-0.3135168367
-0.0916446522,-0.1749277659,-1.6111675093,-0.2429335180,-1.7828699426,0.1845640907
-0.2790834614,-1.3129124820,0.8629622717,0.5988984163,1.0449345530,0.1496707615
-0.4858449194,-0.7907470022,1.9762941531,2.1195720705,1.5726060391,-0.2129576149
--0.0534045071,-0.2640903741,0.1672041788,-0.9955798925,-0.3045947162,-0.7742785866
-1.3183137022,-0.4106498101,-1.2256416271,0.3184505630,-0.0632474578,2.4133027759
--0.8328608363,-0.0903151434,0.5296982250,1.5177710751,-0.0495809494,0.6752910022
--0.8183166463,-0.2668017401,-0.5833018328,1.1863042942,-0.1234213284,-0.2468830422
--2.3487089624,0.0969209405,-0.8019065445,-0.2116797666,-1.7384107242,0.3302297281
--1.6913289208,-0.8501108390,0.0768708971,-0.1200069498,-0.4471985418,0.2714728080
--0.6861438378,0.9131357710,0.3732470167,2.5596941091,1.0942952117,0.0787483645
-0.7140797305,-1.1641924859,0.2028127773,-1.5521158386,2.2497674269,-0.9995511492
--1.2075353967,-2.5363528958,0.9254627508,0.0302964310,-1.0894299296,-0.3771235690
-0.2801346114,0.9513538897,0.0001161312,-0.9712862129,0.2530552378,2.4503680429
--1.0093282435,-0.8966740866,-0.8273010412,-0.6179529516,-1.1275407315,1.6331053331
-0.4746731597,0.5066534705,-0.3880930642,0.6988719655,-0.2464931700,1.1859349404
--2.3261202921,-0.4111637784,-1.1715211412,-0.2363823482,-0.9990048275,1.2889631913
-0.0224811287,0.5266203431,-0.7813533997,-0.6262688538,-1.5484434888,0.9197430469
--1.4612021847,-1.2360266585,-0.6930432328,0.1456047888,-1.0974491651,1.4354745520
--0.7711884631,0.6630386647,-0.7408141640,1.7684289450,-1.0399209284,-1.3046326756
--1.1582608493,-0.0592082701,-0.1532362927,-0.3177632829,0.5370736674,2.0378671235
-0.4799784338,-0.0970648616,0.0972408868,-1.1262192850,-0.0304610092,-0.7405410286
-0.4581923811,1.2612190605,0.3707443171,0.2612773015,-1.2757458071,0.0253646962
--0.6924809857,1.4544120307,0.0405914968,-1.5712198376,-1.3072989235,2.0715367664
-0.4337353682,-0.3143978483,0.1045872422,-0.9694692257,-0.9883616982,3.5728136791
-1.3739510630,0.9226771587,-1.0234355368,0.8731322791,0.4165022701,1.4531675298
-0.0167732128,1.6442966450,0.7650708727,-1.5508904664,-0.1871395343,1.2900691387
-0.2431650695,-1.3577222975,-0.5015929718,-0.4953136202,0.5753213374,-1.3786600125
--0.0449578442,-0.4683393783,-1.0707534116,1.2467469702,-0.0288522649,1.9727894398
-0.9950156649,-0.5556685071,1.3630125090,-0.1417279054,-0.2566037949,1.7964011177
-1.2434183888,0.3022603212,-0.6377742980,1.2564053519,-1.0883649686,-1.2148085601
--1.0356874807,0.1195753940,0.4831256009,1.0407742865,1.3062949986,-2.4492332709
--1.5376178829,1.4219420047,-0.9523166355,-2.0771478992,-0.4094520039,-2.1962411117
-0.0923245819,-2.1963076088,2.0823457055,-0.5905922915,-0.6356547923,-1.2044212343
-0.7698304941,-0.8211642489,-0.6625787536,0.4264337417,0.8988141155,1.7104232486
--0.6892483068,-0.7081522281,0.4809908468,1.1207900043,-0.4596496759,0.6503333204
-0.9095537700,1.0843342250,0.4561338270,-0.0775173820,0.4462375541,-2.3748533120
--0.0684015261,0.8790417743,1.7613512404,1.1737133872,0.9694611456,0.6940192709
-0.0516317191,0.1260881457,1.9795831186,0.2576829775,-0.9177071744,-1.2561505453
-0.6504828812,0.4384814654,1.0370771069,-1.6954610321,0.4787391040,1.4848624517
-0.7996131227,0.3604824232,0.5907829203,0.3499053805,-2.1438609357,-1.1054579759
--1.0341072182,-0.4698506672,1.9307251878,0.5513125683,0.7743797928,1.9177389460
-0.0084132213,0.3134080753,-0.8316118187,0.0350316880,0.6740901823,-0.8885692816
--2.3231670929,-0.4959108335,-0.0336031977,0.4309164058,0.4779216890,-0.5324174051
--0.4887187899,2.1095101203,-0.6419890733,0.3026549026,-0.5892372759,-0.1007103927
--1.1415391224,1.3908293675,-1.3436733894,0.8617850916,-0.7957710585,-0.5134496732
--1.1786705738,0.1044206414,-0.1529017769,-1.0510615863,-0.3121727050,-2.0683736203
-1.2342215798,0.6785464670,-0.3774094130,0.3428728966,2.4847161086,-0.7180292295
-0.7371728224,2.0693865625,-0.6788282588,0.0354305731,-1.1957758288,0.5680192225
-0.7010238874,-0.1717954656,-0.2411502351,0.9635491986,-0.6574118607,-1.2182359456
-0.9685331988,-0.9293953313,0.3067092744,1.8256473994,0.7535271323,0.4660398645
--0.5752586974,0.0986205067,0.6913787793,1.5847767637,-0.3424126119,-0.0084028498
--0.6125651990,1.1722364988,-1.3966944706,-1.3184434723,-0.1135291286,1.3189816196
--0.8997817437,-1.4500809895,-0.4343183589,0.2794996078,1.3708248535,1.1873802150
--0.6573272152,-0.1234025563,0.1025908745,0.1312776411,-0.3725040314,-0.5189419193
-0.2958189169,-0.8436987523,-0.4760245726,0.2722666858,0.3313235411,0.6036000287
-0.0746948866,0.1605263845,-0.4350690686,-0.5488079310,-0.7280734333,-1.0697440364
--1.1295189141,-1.5560814995,0.1394089135,-1.5773035703,0.1008449486,-0.6964936341
-0.9156261629,-1.0888119201,0.0849878787,-1.5798205744,-0.7231216659,0.7656609174
-0.4087241368,2.4887512439,1.0464983388,1.6155900101,1.9266007969,-1.8967147247
-1.0079287209,-0.5235547792,-0.1017747896,0.7463459045,-0.2416501059,2.1579199636
-1.7502339842,-0.5570435758,-0.5358552973,-0.6016886501,-1.8805252571,1.4017961850
--1.1434708973,0.5877246516,-0.5024454871,1.1184488472,-0.5197454171,0.3426057366
-0.8644887958,-1.1257241625,-0.2435653767,0.5189657414,-0.0360723095,-1.1887422750
--0.2383519863,0.5607917395,-1.2147260621,0.0772990723,-1.6421889584,-0.3534579686
-0.8951540955,0.9494193010,0.4625655195,-0.3890588736,0.0627138243,0.3608617519
-0.0858346521,0.7542339988,1.5369991428,0.1183106517,0.9090053794,-2.5157781480
-2.1230821498,-0.7566950950,0.6239566412,1.4153741169,-0.3503612550,0.0592412758
--0.3117292325,-0.8869537788,-0.6681180044,1.0384456533,1.9433026338,-1.5096420380
-1.9485584820,1.3749574347,-1.0698346235,1.3268318171,1.7799326619,0.5456364152
--0.1889609536,0.0797928912,0.1639824917,0.5362350191,0.5191880517,1.3365681247
-0.7177171509,1.2572091702,-0.1175803597,-0.6898367816,-0.2267238827,1.1453279819
--0.0285699873,0.6421265135,0.3104335993,-0.7446018840,-1.0831585589,1.1755556130
--0.8247771435,-0.4283842816,0.1354406933,0.8153267041,-0.4211019505,-0.6733323776
-0.5686918775,-0.1354946952,-0.1916629567,1.3050788641,-0.6415285918,-1.6435237891
-0.0759924136,-1.2148974856,-0.5395082480,0.2990961749,-0.0448564446,-1.1807596925
--1.6032008676,-0.2999637818,0.6243441933,-0.0204987299,-0.0350585973,0.0297287275
--0.4867780400,-1.2743179250,-0.4848982873,0.4885669596,1.2028836377,0.9525243590
-0.0077274677,1.0889307590,-0.6846444127,-2.8418904592,-1.0505767640,-1.7766210762
--0.8959887593,0.6340669928,0.6960159576,-1.7493995409,-0.6613410813,1.0825672011
--0.3939434351,1.4928744499,-0.7801352546,1.0560136400,0.7699553044,-0.1936244093
-0.0300667898,1.0580810805,1.5884705685,0.5572907649,-0.0263766174,0.9806419143
-1.1427263499,-0.2476022253,0.3685830369,-1.6348313201,-0.1137024416,-0.2306722159
-0.9400441213,-0.9508320697,-0.1263607213,0.3582768802,0.9266215006,0.4099997810
--0.6485014571,-0.8323473636,-1.9182426298,-1.3563428701,1.9677345408,-0.2880958854
-1.5998530580,1.0001373749,0.7201152654,-1.5949515722,0.4174011325,-0.0161846123
--0.6561566580,0.3950176813,-0.9144062469,0.4320048867,0.2192726082,0.2024630018
-0.4688445493,0.1896013104,-1.1378786680,0.0283903591,-1.2558235957,-0.4899501761
-0.8602553712,1.0536194932,-0.8605194200,-0.2804814163,0.3538760456,-0.4037372865
--1.6521148140,-1.0519404994,1.4688084374,-0.9574221773,0.5146054472,-1.3079948376
--0.9530814990,-0.2472938409,-0.8857075420,1.1605731239,1.0994753835,1.0883365845
--0.3454822524,1.1778780900,-1.0753721895,0.3002754009,-0.0017948467,1.0144284271
-0.2791459751,-1.5874019799,0.2841152397,-0.9922789421,0.4197186378,-0.4005831314
--0.1750512429,-1.0481981127,-0.3146563013,1.0775085506,0.0351146053,-1.5215890107
-0.7085845178,1.0864987435,-0.7315324345,0.9657933069,0.0401242523,0.6494933054
--1.6782180440,-0.1222982109,-0.8963594645,-1.5264087824,-0.8343581975,-1.0051073503
--2.1295110019,-2.3486535644,0.0419580722,-0.0761919510,-0.4567108182,1.1575910496
--0.9887187052,-1.0723629572,-0.0236253973,-0.9990067273,0.2064741572,0.8124457348
-0.5130407881,1.4793144937,-1.0090349143,1.2598677207,2.4093441792,0.3247674588
-0.7748625778,0.5632838302,0.5455543004,-1.0148155184,-0.8643213136,0.1894703393
--0.2477656332,0.3483516057,0.0324790519,0.2574023819,0.7238108588,0.0033415794
--0.0818646011,-0.4474142433,0.7560258095,0.4104085039,0.0723371117,-0.5683737562
-0.1433426253,-0.4314436272,1.8191493724,-1.4915734987,0.1781795621,-2.1916661349
--0.5860105771,0.0135147968,0.3970936068,0.7233173353,-0.3263377022,2.0031200305
--0.3555684589,-1.3534492352,-1.3725575478,-0.8150196545,1.7721820606,-0.2484396242
-0.0345071345,2.0950104241,0.5648792334,-1.6871973486,1.4113571824,-0.7667759903
--1.1907059622,0.5506521627,0.0403095956,-0.0313424853,0.0334228077,0.1693946823
--1.6879798789,0.0302161277,-0.1109697214,-0.1419402587,-0.6920313426,-0.4764874721
-1.7996276993,-0.9460593240,-0.2080453221,1.5088038825,-0.8596583317,-2.0298222222
-0.9485247521,-0.9662917461,1.2672522652,-1.0153502636,-0.1664029617,-0.8143903697
-0.4377696499,2.0265054432,-0.2711937558,-1.1740645731,0.8824457068,0.1676242068
-0.5142463798,0.1012676827,1.3211104572,1.7063392486,0.8579123675,1.8690039197
-1.2516486968,1.9374328790,0.9162049622,1.8376374341,-0.2718957832,0.0672695794
--0.5585512299,-1.5538074792,0.0598403187,1.0024804961,-0.7585867445,-0.7317063095
--0.3160539099,-0.6864002529,0.2159411424,-0.2549113306,-0.6324224899,-1.5691715978
-0.4761779829,0.2761462303,0.6924825801,1.3890565868,-1.3757609059,-0.3294308318
--0.8746887383,0.1149046679,-0.8922782472,-0.8261329646,-1.1745767793,0.8113681846
-1.3584741012,3.8504692251,-1.4368729853,-0.4619500215,-0.6609797478,-1.0443828951
-0.4061023189,-0.0695104133,0.6119724928,1.3539721812,0.1250768281,-1.9705871987
--0.7020481437,1.0744288774,-0.5083653430,0.2543048090,0.0056012105,0.1339995813
-0.1910811254,-0.4766183114,-1.7261117406,0.7946842131,-0.3854364472,0.1183947821
--0.4240532656,0.1270164462,-0.8279395301,1.5207954383,0.3212643107,0.9467829521
--0.2535685177,-0.9756686126,-1.1264318853,-1.4792899021,-1.7748346691,1.1048502979
--0.0044491087,1.2683645668,0.5254865348,-0.3879853357,-1.0448986627,-1.5269762817
-0.6887313564,-0.3237867304,-1.5816708169,-1.9344967481,0.0795943643,-1.5113344324
-0.5942857264,0.5880316791,0.2040995229,-0.7626425410,-0.4782593571,0.1868326807
--0.8075146550,0.8538531976,0.7722615174,-1.0633114154,-0.9316107633,2.3217514692
-0.7475244148,0.7022959183,-1.2575225000,1.4500410878,0.7185195884,0.4998220500
--0.3661442678,0.3412826366,-0.8654280309,-1.2407978147,0.5166289412,-0.1000183409
--1.6633141560,0.0470586188,1.2345464975,-0.4670289697,-1.0823314821,0.0382149588
-0.5292729226,1.3167040722,-0.7488196439,-0.4065933570,-0.5558272744,0.8413899605
--1.5693465854,0.5467665701,1.5972688893,1.5391658761,-0.4026456089,0.7220517943
--0.2260044202,0.4557250324,1.4063009254,-0.4726582104,-1.3402874848,0.0793820794
-1.1059692814,0.1380403115,-1.1181738457,-0.4068989386,0.8273775201,0.8026261203
-1.2053075634,-0.6979116883,-0.4375892365,-0.5729634201,-1.6040462844,0.1447509717
--0.3107105525,-0.6781353335,1.3083651168,-0.4498885541,0.9929445646,-0.6635769434
--0.4135597352,3.0624978839,0.1404871591,2.4899477939,0.6188653588,0.0012913192
--0.1071461357,0.9908440516,-0.7060856499,0.2318549372,-0.7838517085,2.2832379825
--1.8366113609,-0.7274125742,-3.0695252737,0.9088803916,1.0127199496,-0.3937556588
-2.2028167310,-1.1930313569,-0.3588650181,0.3205985514,-0.4103883394,-0.7202800787
--0.8896957326,-1.2155822882,1.0540548537,0.4724530593,0.4458659027,-0.6686730855
-1.5131151514,-1.1304226086,-0.4034496329,0.0191490959,-0.8915687100,-0.1665882363
--0.2251909477,-1.4775099775,0.1789472072,1.9552989429,-0.2717998482,-0.2435439879
-1.2287893857,0.3666459241,0.4785148582,0.5656995024,-0.2333829398,-1.2119001422
-1.8011269210,-1.5270093001,0.6707415558,1.0200358175,-0.2952917628,0.8241877775
-0.5806251644,-0.5786243696,-1.2834001416,-0.6888134731,-2.3077434605,-0.2502559354
-2.0968726406,-0.4980632422,1.6333355685,-0.4088078515,0.6011325240,0.5480902817
--0.9224182034,-0.4613038777,-0.2927491129,-0.8382262528,-0.3296429701,-0.0424661608
-0.6721189210,-0.0024376022,-0.0955176064,0.9974935842,-0.2673820114,0.4687485251
--1.0168014631,0.3378814095,-1.6984072013,-0.4913705481,-0.6181791265,-0.1972942537
--1.2156252575,0.3272678969,-0.2491161953,1.4029018535,-1.4779598768,-0.9516399619
--0.4374562909,1.3205837480,0.0614241463,2.0746687198,0.0385898279,0.4709037474
--0.8870897488,1.3413922191,2.1320542789,-0.1972578350,-0.3157645138,1.4629927882
--0.7578176147,0.9647753774,-0.1090432943,0.7566195918,2.2523864111,-1.3601533653
-0.5235539003,-1.5167073208,-1.5716612128,-0.0588003768,-0.2702216489,0.3817933903
--0.5413335104,-1.6460242703,-0.3952413304,-0.9403680333,-0.5044707241,1.0681830468
--0.4923824798,-0.0006585227,-0.2446740184,-1.3566134923,-0.4033944681,0.2073206655
--0.3062235086,0.2131195396,-0.0811290337,-0.0886128365,0.0260441967,-0.2744947683
--0.8603277417,-0.3874583780,-0.4378337945,-1.0612974910,1.3543742559,0.9976336569
-1.8597156093,0.5106315521,-0.5033387008,-0.5881415388,1.2223240186,0.4271427822
-1.1344040194,-0.2023831861,-0.9960413627,-1.6698707908,-1.9657150346,-0.4581305339
-1.2054766346,-2.1099277759,-0.5871088691,-1.0023099421,0.1479530235,0.1151543453
--1.0963665061,0.0050940706,0.9336504700,-1.5459688479,-1.6457755115,0.9531003685
--0.6164859565,0.3931490192,-0.3019719104,-0.1424940676,0.5519718959,-0.8006153746
--0.3894655157,1.9501736871,0.7618926039,0.3320435075,-1.2452011831,-0.5295069881
--0.2607240737,2.1755925178,-0.2992326285,0.4212581678,0.2481583245,0.9979114484
--0.7057223395,0.0101075895,0.0398620600,0.2015170363,-1.1384714888,0.4975412160
--0.6611974924,0.8163837496,-1.2079613544,0.1076369078,-0.1687593401,-0.0068498186
-0.9152771387,0.0406784390,0.5390712449,-0.7718294615,-0.2146633321,-0.4706573744
-0.2478597412,0.5269950639,-0.3212922909,0.9400694677,1.4066791951,-0.2086509410
-0.7260598424,-1.2347390078,0.2983001868,0.6421031847,-2.0385121696,-0.6134475499
-0.8594459054,-1.6026660038,-1.0977870248,0.6797276766,-0.4891342119,-1.0018789489
--1.0949742509,0.3085621982,-1.4878132019,-0.3119177847,1.4852662291,-0.0349038019
--1.3742854684,0.3638338922,-0.3101988354,0.5536490305,1.3720348453,-1.1688461344
-1.3784682626,-1.8503939657,0.9192019167,-0.8473801754,0.8075828141,-0.4196370898
-0.1878782427,0.5729213870,-0.8152076887,1.4193717610,0.3490196747,-2.3802287332
-1.1229597403,-0.9215273194,-0.2581855888,-0.8938408694,0.3478147191,-0.0987283939
--0.6650318751,-0.0752278015,0.8525386034,1.1358908017,0.4796154135,0.3573649845
-0.3241011776,0.3484730782,-0.4540775884,1.5379469531,-0.0767723568,1.8472264331
--0.6272691107,-0.4719130495,-0.2900577415,0.3723860853,-0.5373928391,0.1848483127
--1.1390175112,-0.3736632683,0.5035798458,0.5904410773,-0.7950030432,-0.7379174540
--0.7523212209,0.5772497044,0.5153041443,0.1113531032,-0.2173541316,-0.4940375855
--2.5633569348,-1.0639164830,0.1697575104,-0.7740171188,-0.3946527750,1.7617869802
-0.0748261362,1.4274338462,0.1605186790,-2.2367262581,-0.6900973161,-0.8225076787
--0.6615524969,-1.8041462445,-0.3134584881,0.1287480846,0.1388121759,1.2692659231
-0.0171168180,-0.8060236450,-0.1591849540,-1.9199432227,-0.0604592679,0.7469672042
-1.5398098820,0.4431391932,1.0824736729,-0.2642508700,-1.2823894501,0.1089675146
-0.5790403761,-1.4797901619,-0.6711213972,-1.1760608366,-0.7958432350,-0.1967263662
--0.5090429118,0.4230056471,-0.4503479640,-0.4305478897,0.4214785988,1.6505092355
-1.2666441337,-0.1572940453,0.3218238953,0.0557420447,-0.4110241293,0.7479200698
--0.2224889623,-0.5727118457,0.1904017811,-0.5469761494,1.1084168093,-0.7538831567
-1.4281400071,0.1207598964,-0.2454713771,-1.0127139304,-0.1180548062,1.2568563957
--0.9742411068,-0.2725701634,1.3918954662,-0.1924930780,0.5861735858,-1.9752523965
-0.6301610447,0.4588064895,-1.2625596429,0.4877331585,0.7974561743,-1.3583489950
-1.1858271379,0.5947624887,-1.9184186379,0.4248671605,0.4500017705,0.6517087464
--0.3588966249,0.6342025526,0.3428952826,-0.8707702232,1.0318055939,1.7449582743
--0.4749571525,0.1214717608,-0.6945244317,0.3987171142,-2.3130564251,-0.2658316070
-0.4566276110,-0.2849459829,1.7604387171,-1.7786650157,0.3533394767,-1.7603570799
--1.0118306105,-0.7911931294,-0.5917496694,-0.1357077557,-0.0343918560,-0.8552721784
--1.7739603332,0.0896123405,0.4314768943,0.7128330698,-3.3630712361,-1.3110338116
-0.7478062187,-0.6066083661,-0.2123965255,0.3456176660,-1.0155754808,0.6728418955
-1.0195304985,0.4043492277,-1.3850079359,-1.1419040614,-0.6350471249,0.3497785159
-1.0758947068,-0.9325105091,1.0242572878,-2.1547353095,-0.4770609766,-0.0534222279
-0.0112192283,-0.0028171132,0.2520340049,-0.9568011937,0.1982380834,-0.4697895972
--0.3833737874,-1.9899074014,0.8840275846,-0.0830147911,-0.7945681044,-0.1078116305
-0.2084150221,1.4497385034,-0.3826427673,-0.0206462472,0.0461333377,1.5424042979
--0.9267957736,1.4297365276,-0.9539904465,0.6531625487,-0.2304533872,-0.4796195595
--1.6908947871,0.8191997934,0.7719313466,-1.3744265114,1.4305845127,2.6252419419
--0.9297695920,-0.2147646615,0.2226420326,0.4155209017,-0.4025136167,1.2699764920
-1.5520045711,0.9490810942,-0.4636747808,2.2503671983,-0.2346598245,-0.8542840206
--0.6104665251,-0.0369750570,-0.0718750263,-0.3645384358,0.0577303028,-1.1965566103
--2.3444748918,-1.8625407115,-1.4432198913,0.8588460949,0.0235767637,0.4572494498
--0.8802265307,-1.1860625649,1.0873505807,-0.0776431517,0.5309276800,-1.5730941995
-0.3756041114,-0.0946943315,-0.0781043471,-0.2557330565,-0.0055637314,1.4109350393
-0.0762942030,0.0623884486,-0.2492628234,-0.0719879835,-0.4455953506,-1.9626100016
-0.1349729302,-0.3853985614,-1.4885562589,-1.2542048528,0.3643667912,-0.2617745557
--1.3248533169,-0.5362571292,0.2285475719,0.3678037275,-0.8001339176,-1.1250722261
-0.1021162434,0.8216924054,-1.0050056147,0.3538765236,-0.1108005750,-1.6268770378
-0.9893796578,-0.5445479923,-0.6985699887,0.4275870899,0.7186676814,0.8831142972
--0.6528904987,1.0281908499,0.1322170128,0.8972593946,-1.1487894432,1.2361729916
-1.1052174274,0.7304291994,1.7398796530,1.3531171804,0.1718537295,-2.6784704740
--1.1416939473,0.0578815886,0.7495743571,-1.7551145060,0.9450348217,0.0463244383
-0.5130557203,2.2522998596,-1.5798575447,1.7569742951,1.1897796354,-1.0059329497
--0.2635734004,0.6064424763,-0.6732565922,-2.7690659217,-0.2960408405,1.1480267708
-0.6768033834,1.5538048490,-0.9729001401,1.8032642048,1.4887937090,0.8395074269
--0.3741392058,1.1962552335,1.0153800771,0.4098058451,0.5662269008,1.1278183643
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/results_ar.py b/statsmodels/scikits/statsmodels/tsa/tests/results/results_ar.py
deleted file mode 100644
index e418e06..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/results_ar.py
+++ /dev/null
@@ -1,210 +0,0 @@
-import numpy as np
-import os
-
-class ARLagResults(object):
- """
- Results are from R vars::VARselect for sunspot data.
-
- Comands run were
-
- var_select <- VARselect(SUNACTIVITY, lag.max=16, type=c("const"))
- """
- def __init__(self, type="const"):
- # order of results is AIC, HQ, SC, FPE
- if type == "const":
- ic = [6.311751824815273, 6.321813007357017, 6.336872456958734,
- 551.009492543133547, 5.647615009344886, 5.662706783157502,
- 5.685295957560077, 283.614444209634655, 5.634199640773091,
- 5.654322005856580, 5.684440905060013, 279.835333966272003,
- 5.639415797766900, 5.664568754121261, 5.702217378125553,
- 281.299267441683185, 5.646102475432464, 5.676286023057697,
- 5.721464371862848, 283.187210932784524, 5.628416873122441,
- 5.663631012018546, 5.716339085624555, 278.223839284844701,
- 5.584204185137150, 5.624448915304128, 5.684686713710994,
- 266.191975554941564, 5.541163244029505, 5.586438565467356,
- 5.654206088675081, 254.979353737235556, 5.483155367013447,
- 5.533461279722170, 5.608758527730753, 240.611088468544949,
- 5.489939895595428, 5.545276399575022, 5.628103372384465,
- 242.251199397394288, 5.496713895370946, 5.557080990621412,
- 5.647437688231713, 243.900349905069504, 5.503539311586831,
- 5.568936998108170, 5.666823420519329, 245.573823561989144,
- 5.510365149977393, 5.580793427769605, 5.686209574981622,
- 247.259396991133599, 5.513740912139918, 5.589199781203001,
- 5.702145653215877, 248.099655693709479, 5.515627471325321,
- 5.596116931659277, 5.716592528473011, 248.572915484827206,
- 5.515935627515806, 5.601455679120634, 5.729461000735226,
- 248.654927915301300]
- self.ic = np.asarray(ic).reshape(4,-1, order='F')
-
-class ARResultsOLS(object):
- """
- Results of fitting an AR(9) model to the sunspot data.
-
- Results were taken from Stata using the var command.
- """
- def __init__(self, constant=True):
- self.avobs = 300.
- if constant:
- self.params = [ 6.7430535917332, 1.1649421971129, -.40535742259304,
- -.16653934246587, .14980629416032, -.09462417064796,
- .00491001240749, .0504665930841, -.08635349190816,
- .25349103194757]
-# These are returned by stata VAR, using the (V)AR scale/sigma
-# we return the true OLS bse by default
-# the stata residuals can be achived by np.sqrt(np.diag(res1.cov_params()))
- self.bse_stata = [2.413485601, .0560359041, .0874490762,
- .0900894414, .0899348339, .0900100797,
- .0898385666, .0896997939, .0869773089,
- .0559505756]
-# The below are grom gretl's ARIMA command with conditional maxium likelihood
- self.bse_gretl = [2.45474, 0.0569939, 0.0889440, 0.0916295,
- 0.0914723, 0.0915488, 0.0913744, 0.0912332,
- 0.0884642, 0.0569071]
- self.rmse = 15.1279294937327
- self.fpe = 236.4827257929261
- self.llf = -1235.559128419549
-#NOTE: we use a different definition of these ic than Stata
-# but our order selection results agree with R VARselect
-# close to Stata for Lutkepohl but we penalize the ic for the trend terms
-# self.bic = 8.427186938618863
-# self.aic = 8.30372752279699
-# self.hqic = 8.353136159250697
-
-#NOTE: predictions were taken from gretl, but agree with Stata
- # test predict
-#TODO: remove one of the files
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "AROLSConstantPredict.csv")
- predictresults = np.loadtxt(filename)
- fv = predictresults[:300,0]
- pv = predictresults[300:,1]
- pv_lb = predictresults[300:,2]
- pv_ub = predictresults[300:,3]
- pv_se = predictresults[300:,4]
- del predictresults
-
- # cases - in sample predict
- # n = -1, start = 0 (fitted values)
- self.FVOLSnneg1start0 = fv
- # n=-1, start=9
- self.FVOLSnneg1start9 = fv
- # n=-1, start=100
- self.FVOLSnneg1start100 = fv[100-9:]
- # n = 200, start = 0
- self.FVOLSn200start0 = fv[:192]
- # n = 200, start = 200
- self.FVOLSn200start200 = np.hstack((fv[200-9:],pv[:101-9]))
- # n = 200, start = -109 use above
- self.FVOLSn200startneg109 = self.FVOLSn200start200
- # n = 100, start = 325, post-sample forecasting
- self.FVOLSn100start325 = np.hstack((fv[-1],pv))
- # n = 301, start = 9
- self.FVOLSn301start9 = np.hstack((fv,pv[:2]))
- # n = 301, start = 0
- self.FVOLSdefault = fv
- # n = 4, start = 312
- self.FVOLSn4start312 = np.hstack((fv[-1],pv[:8]))
- # n = 15, start = 312
- self.FVOLSn15start312 = np.hstack((fv[-1],pv[:19]))
-
-
- elif not constant:
- self.params = [1.19582389902985, -0.40591818219637,
- -0.15813796884843, 0.16620079925202,
- -0.08570200254617, 0.01876298948686,
- 0.06130211910707, -0.08461507700047,
- 0.27995084653313]
- self.bse_stata = [.055645055, .088579237, .0912031179, .0909032462,
- .0911161784, .0908611473, .0907743174, .0880993504,
- .0558560278]
- self.bse_gretl = [0.0564990, 0.0899386, 0.0926027, 0.0922983,
- 0.0925145, 0.0922555, 0.0921674, 0.0894513,
- 0.0567132]
- self.rmse = 15.29712618677774
- self.sigma = 226.9820074869752
- self.llf = -1239.41217278661
-# See note above
-# self.bic = 8.433861292817106
-# self.hqic = 8.367215591385756
-# self.aic = 8.322747818577421
- self.fpe = 241.0221316614273
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "AROLSNoConstantPredict.csv")
- predictresults = np.loadtxt(filename)
- fv = predictresults[:300,0]
- pv = predictresults[300:,1]
- pv_lb = predictresults[300:,2]
- pv_ub = predictresults[300:,3]
- pv_se = predictresults[300:,4]
- del predictresults
-
- # cases - in sample predict
- # n = -1, start = 0 (fitted values)
- self.FVOLSnneg1start0 = fv
- # n=-1, start=9
- self.FVOLSnneg1start9 = fv
- # n=-1, start=100
- self.FVOLSnneg1start100 = fv[100-9:]
- # n = 200, start = 0
- self.FVOLSn200start0 = fv[:192]
- # n = 200, start = 200
- self.FVOLSn200start200 = np.hstack((fv[200-9:],pv[:101-9]))
- # n = 200, start = -109 use above
- self.FVOLSn200startneg109 = self.FVOLSn200start200
- # n = 100, start = 325, post-sample forecasting
- self.FVOLSn100start325 = np.hstack((fv[-1],pv))
- # n = 301, start = 9
- self.FVOLSn301start9 = np.hstack((fv,pv[:2]))
- # n = 301, start = 0
- self.FVOLSdefault = fv
- # n = 4, start = 312
- self.FVOLSn4start312 = np.hstack((fv[-1],pv[:8]))
- # n = 15, start = 312
- self.FVOLSn15start312 = np.hstack((fv[-1],pv[:19]))
-
-
-class ARResultsMLE(object):
- """
- Results of fitting an AR(9) model to the sunspot data using exact MLE.
-
- Results were taken from gretl.
- """
- def __init__(self, constant=True):
- self.avobs = 300
- if constant:
-
- # NOTE: Stata's estimated parameters differ from gretl
- filename = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- "ARMLEConstantPredict.csv")
- predictresults = np.loadtxt(filename, delimiter=",")
- year = predictresults[:,0]
- pv = predictresults[:,1]
-
- # cases - in sample predict
- # start = 0 (fitted values)
- self.FVMLEdefault = pv[:309]
- # start=9
- self.FVMLEstart9end308 = pv[9:309]
- # start=100, end=309
- self.FVMLEstart100end308 = pv[100:309]
- # start = 0, end
- self.FVMLEstart0end200 = pv[:201]
- # n = 200, start = 200
- self.FVMLEstart200end334 = pv[200:]
- # start = 309, end=334 post-sample forecasting
- self.FVMLEstart308end334 = pv[308:]
- # end = 310, start = 9
- self.FVMLEstart9end309 = pv[9:310]
- # end = 301, start = 0
- self.FVMLEstart0end301 = pv[:302]
- # end = 312, start = 4
- self.FVMLEstart4end312 = pv[4:313]
- # end = 7, start = 2
- self.FVMLEstart2end7 = pv[2:8]
-
-
- else:
- pass
-
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma.py b/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma.py
deleted file mode 100644
index 1f334ee..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma.py
+++ /dev/null
@@ -1,726 +0,0 @@
-"""
-Results for ARMA models. Produced by gretl.
-"""
-import os
-from numpy import genfromtxt
-
-current_path = os.path.dirname(os.path.abspath(__file__))
-yhat_mle = genfromtxt(open(current_path+"/yhat_exact_nc.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-yhat_css = genfromtxt(open(current_path+"/yhat_css_nc.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-yhatc_mle = genfromtxt(open(current_path+"/yhat_exact_c.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-yhatc_css = genfromtxt(open(current_path+"/yhat_css_c.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-resids_mle = genfromtxt(open(current_path+"/resids_exact_nc.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-resids_css = genfromtxt(open(current_path+"/resids_css_nc.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-residsc_mle = genfromtxt(open(current_path+"/resids_exact_c.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-residsc_css = genfromtxt(open(current_path+"/resids_css_c.csv", "rb"), delimiter=",", skip_header = 1, dtype=float)
-
-forecast_results = genfromtxt(open(current_path+"/results_arma_forecasts.csv",
- "rb"), names=True, delimiter=",", dtype=float)
-
-class Y_arma11(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.788452102751, 0.381793815167]
- self.aic = 714.489820273473
- self.bic = 725.054203027060
- self.arroots = 1.2683 + 0j
- self.maroots = -2.6192 + 0j
- self.bse = [0.042075906061, 0.060925105865]
- self.hqic = 718.741675179309
- self.llf = -354.244910136737
- self.resid = resids_mle[:,0]
- self.fittedvalues = yhat_mle[:,0]
- self.pvalues = [2.39e-78, 3.69e-10]
- self.tvalues = [18.74, 6.267]
- self.sigma2 = 0.994743350844 ** 2
- self.cov_params = [[ 0.0017704, -0.0010612],
- [-0.0010612, 0.0037119 ]]
- self.forecast = forecast_results['fc11']
- self.forecasterr = forecast_results['fe11']
- elif method =="css":
- self.params = [0.791515576984, 0.383078056824]
- self.aic = 710.994047176570
- self.bic = 721.546405865964
- self.arroots = [ 1.2634 + 0.0000j]
- self.maroots = [-2.6104 +0.0000j]
-# self.bse = [0.042369318062, 0.065703859674]
-#NOTE: bse, cov_params, tvalues taken from R
- self.bse = [0.0424015620491, 0.0608752234378]
-# self.cov_params = [
-#[ 0.0017952, -0.0010996],
-#[ -0.0010996, 0.0043170]]
- self.cov_params = [
-[0.00179789246421, -0.00106195321540],
-[-0.00106195321540, 0.00370579282860]]
- self.hqic = 715.241545108550
- self.llf = -352.497023588285
- self.resid = resids_css[1:,0]
- self.fittedvalues = yhat_css[1:,0]
- self.pvalues = [ 7.02e-78, 5.53e-09]
-# self.tvalues = [18.68, 5.830]
- self.tvalues = [18.6671317239, 6.2928857557]
- self.sigma2 = 0.996717562780**2
-
-
-class Y_arma14(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.763798613302, 0.306453049063, -0.835653786888,
- 0.151382611965, 0.421169903784]
- self.aic = 736.001094752429
- self.bic = 757.129860259603
- self.arroots = 1.3092 + 0j
- self.maroots = [1.0392 -0.7070j, 1.0392 + 0.7070j,
- -1.2189 -0.1310j, -1.2189 + 0.1310j]
- self.bse = [0.064888368113, 0.078031359430, 0.076246826219,
- 0.069267771804, 0.071567389557]
- self.cov_params = [[ 0.0042105, -0.0031074, -0.0027947,
- -0.00027766, -0.00037373 ],
-[ -0.0031074, 0.0060889, 0.0033958, -0.0026825, -0.00062289 ],
-[ -0.0027947, 0.0033958, 0.0058136, -0.00063747, -0.0028984 ],
-[ -0.00027766, -0.0026825, -0.00063747, 0.0047980, 0.0026998 ],
-[ -0.00037373, -0.00062289, -0.0028984, 0.0026998, 0.0051219 ]]
- self.hqic = 744.504804564101
- self.llf = -362.000547376215
- self.resid = resids_mle[:,1]
- self.fittedvalues = yhat_mle[:,1]
- self.pvalues = [5.51e-32, 8.59e-05, 5.96e-28, 0.0289, 3.98e-09]
- self.tvalues = [11.77, 3.927, -10.96, 2.185, 5.885]
- self.sigma2 = 1.022607088673 ** 2
- self.bse = [0.064888368113, 0.078031359430, 0.076246826219,
- 0.069267771804, 0.071567389557]
- elif method =="css":
- self.params = [0.772072791055, 0.283961556581, -0.834797380642,
- 0.157773469382, 0.431616426021]
- self.aic = 734.294057687460
- self.bic = 755.398775066249
- self.arroots = [1.2952 +0.0000j]
- self.maroots = [1.0280 -0.6987j, 1.0280 +0.6987j,
- -1.2108 -0.1835j, -1.2108 +0.1835j]
-#NOTE: bse, cov_params, and tvalues taken from R
-# self.bse = [0.083423762397, 0.086852297123, 0.093883465705,
-# 0.068170451942, 0.065938183073]
- self.bse = [0.06106330, 0.07381130, 0.07257705, 0.06857992,
- 0.07046048]
-# self.cov_params = [
-#[ 0.0069595, -0.0053083, -0.0054522, -0.0016324, -0.00099984],
-#[ -0.0053083, 0.0075433, 0.0052442, -0.00071680, 0.0010335],
-#[ -0.0054522, 0.0052442, 0.0088141, 0.0019754, -0.0018231],
-#[ -0.0016324, -0.00071680, 0.0019754, 0.0046472, 0.0011853],
-#[ -0.00099984, 0.0010335, -0.0018231, 0.0011853, 0.0043478]]
- self.cov_params = [
-[ 0.0037287270, -0.0025337305, -0.0023475489, -0.0001894180, -0.0002716368],
-[-0.0025337305, 0.0054481087, 0.0029356374, -0.0027307668, -0.0008073432],
-[-0.0023475489, 0.0029356374, 0.0052674275, -0.0007578638, -0.0028534882],
-[-0.0001894180, -0.0027307668, -0.0007578638, 0.0047032056, 0.0026710177],
-[-0.0002716368, -0.0008073432, -0.0028534882, 0.0026710177, 0.0049646795]
- ]
- self.hqic = 742.789053551421
- self.llf = -361.147028843730
- self.resid = resids_css[1:,1]
- self.fittedvalues = yhat_css[1:,1]
- self.pvalues = [2.15e-20, 0.0011, 6.01e-19, 0.0206, 5.92e-11]
-# self.tvalues = [9.255, 3.269, -8.892, 2.314, 6.546]
- self.tvalues = [ 12.643194, 3.847252, -11.501785, 2.301399,
- 6.126120 ]
- self.sigma2 = 1.031950951582**2
-
-class Y_arma41(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.859167822255, -0.445990454620, -0.094364739597,
- 0.633504596270, 0.039251240870]
- self.aic = 680.801215465509
- self.bic = 701.929980972682
- self.arroots = [1.0209-0j, 0.2966-0.9835j , 0.2966+0.9835j ,
- -1.4652 + 0.0000j ]
- self.maroots = [-25.4769 + 0.0000]
- self.bse = [0.097363938243, 0.136020728785, 0.128467873077,
- 0.081059611396, 0.138536155409]
- self.cov_params = [
-[ 0.0094797, -0.012908, 0.011870, -0.0073247, -0.011669],
-[ -0.012908, 0.018502, -0.017103, 0.010456, 0.015892],
-[ 0.011870, -0.017103, 0.016504, -0.010091, -0.014626],
-[ -0.0073247, 0.010456, -0.010091, 0.0065707, 0.0089767],
-[ -0.011669, 0.015892, -0.014626, 0.0089767, 0.019192]]
- self.hqic = 689.304925277181
- self.llf = -334.400607732754
- self.resid = resids_mle[:,2]
- self.fittedvalues = yhat_mle[:,2]
- self.pvalues = [1.10e-18, 0.0010, 0.4626, 5.48e-15, 0.7769]
- self.tvalues = [8.824, -3.279, -.7345, 7.815, .2833]
- self.sigma2 = 0.911409665692 ** 2
- self.forecast = forecast_results['fc41']
- self.forecasterr = forecast_results['fe41']
- elif method =="css":
- self.params = [0.868370308475, -0.459433478113, -0.086098063077,
- 0.635050245511, 0.033645204508]
- self.aic = 666.171731561927
- self.bic = 687.203720777521
- self.arroots = [1.0184 +0.0000j, 0.2960 -0.9803j, 0.2960 +0.9803j,
- -1.4747 +0.0000j]
- self.maroots = [-29.7219 +0.0000j]
-#NOTE: bse, cov_params, and t are from R
-# self.bse = [0.077822066628, 0.112199961491, 0.104986211369,
-# 0.068394652456, 0.113996438269]
- self.bse = [0.09554032, 0.13387533, 0.12691479, 0.08045129,
- 0.13456419]
-# self.cov_params = [
-#[ 0.0060563, -0.0083712, 0.0076270, -0.0047067, -0.0070610],
-#[ -0.0083712, 0.012589, -0.011391, 0.0069576, 0.0098601],
-#[ 0.0076270, -0.011391, 0.011022, -0.0067771, -0.0089971],
-#[ -0.0047067, 0.0069576, -0.0067771, 0.0046778, 0.0054205],
-#[ -0.0070610, 0.0098601, -0.0089971, 0.0054205, 0.012995]
-# ]
- self.cov_params = [
-[ 0.009127952, -0.01243259, 0.011488329, -0.007070855, -0.011031907],
-[-0.012432590, 0.01792260, -0.016597806, 0.010136298, 0.015053122],
-[ 0.011488329, -0.01659781, 0.016107364, -0.009851695, -0.013923062],
-[-0.007070855, 0.01013630, -0.009851695, 0.006472410, 0.008562476],
-[-0.011031907, 0.01505312, -0.013923062, 0.008562476, 0.018107521]
-]
- self.hqic = 674.640335476392
- self.llf = -327.085865780964
- self.resid = resids_css[4:,2]
- self.fittedvalues = yhat_css[4:,2]
- self.pvalues = [6.51e-29, 4.23e-05, 0.4122, 1.62e-20, 0.7679]
-# self.tvalues = [11.16, -4.095, -0.8201, 9.285, 0.2951]
- self.tvalues = [9.0887381, -3.4315100, -0.6786792, 7.8938778,
- 0.2503143 ]
- self.sigma2 = 0.914551777765**2
-
-class Y_arma22(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.810898877154, -0.535753742985, 0.101765385197,
- -0.691891368356]
- self.aic = 756.286535543453
- self.bic = 773.893840132765
- self.arroots = [ 0.7568 -1.1375j, 0.7568 +1.1375j]
- self.maroots = [-1.1309, 1.2780]
- self.bse = [0.065073834100, 0.060522519771, 0.065569474599,
- 0.071275323591]
- self.cov_params = [
-[ 0.0042346, -0.0012416, -0.0024319, -0.0012756],
-[ -0.0012416, 0.0036630, -0.00022460, -0.0019999],
-[ -0.0024319, -0.00022460, 0.0042994, 0.0017842],
-[ -0.0012756, -0.0019999, 0.0017842, 0.0050802]]
- self.hqic = 763.372960386513
- self.llf = -373.143267771727
- self.resid = resids_mle[:,3]
- self.fittedvalues = yhat_mle[:,3]
- self.pvalues = [1.22e-35 , 8.59e-19, 0.1207, 2.81e-22]
- self.tvalues = [12.46, -8.852, 1.552, -9.707]
- self.sigma2 = 1.069529754715**2
- elif method =="css":
- self.params = [0.811172493623, -0.538952207139, 0.108020549805,
- -0.697398037845]
- self.aic = 749.652327535412
- self.bic = 767.219471266237
- self.arroots = [ 0.7525 -1.1354j, 0.7525 +1.1354j]
- self.maroots = [-1.1225 +0.0000j, 1.2774 +0.0000j]
-#NOTE: bse, cov_params, and tvalues taken from R
-# self.bse = [0.063356402845, 0.064719801680, 0.058293106832,
-# 0.061453528114]
- self.bse = [0.06549657, 0.06127495, 0.06514116, 0.07148213]
-# self.cov_params = [
-#[ 0.0040140, -0.0016670, -0.0019069, -0.0011369],
-#[ -0.0016670, 0.0041887, -0.00019356, -0.0014322],
-#[ -0.0019069, -0.00019356, 0.0033981, 0.0020063],
-#[ -0.0011369, -0.0014322, 0.0020063, 0.0037765]]
- self.cov_params = [
-[ 0.004289801, -0.0012980774, -0.0024461381, -0.001244467],
-[-0.001298077, 0.0037546193, -0.0001725373, -0.002039177],
-[-0.002446138, -0.0001725373, 0.0042433713, 0.001720042],
-[-0.001244467, -0.0020391767, 0.0017200417, 0.005109695]
- ]
- self.hqic = 756.724194601530
- self.llf = -369.826163767706
- self.resid = resids_css[2:,3]
- self.fittedvalues = yhat_css[2:,3]
- self.pvalues = [1.57e-37, 8.26e-17, 0.0639, 7.55e-30]
-# self.tvalues = [ 12.80, -8.327, 1.853, -11.35]
- self.tvalues = [12.385077, -8.795883, 1.657944, -9.755738]
- self.sigma2 = 1.074973483083**2
-
-class Y_arma50(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.726892679311, -0.312619864536, 0.323740181610,
- 0.226499145083, -0.089562902305]
- self.aic = 691.422630427314
- self.bic = 712.551395934487
- self.arroots = [1.0772 +0.0000j, 0.0087 -1.2400j,
- 0.0087 + 1.2400j, -1.9764 +0.0000j,
- 3.4107 + 0.0000j]
- self.maroots = None #TODO: empty array?
- self.bse = [0.062942787895, 0.076539691571, 0.076608230545,
- 0.077330717503, 0.063499540628]
- self.cov_params = [
-[ 0.0039618, -0.0028252, 0.0013351, -0.0013901, -0.00066624],
-[ -0.0028252, 0.0058583, -0.0040200, 0.0026059, -0.0014275],
-[ 0.0013351, -0.0040200, 0.0058688, -0.0041018, 0.0013917],
-[ -0.0013901, 0.0026059, -0.0041018, 0.0059800, -0.0028959],
-[ -0.00066624, -0.0014275, 0.0013917, -0.0028959, 0.0040322]]
- self.hqic = 699.926340238986
- self.llf = -339.711315213657
- self.resid = resids_mle[:,4]
- self.fittedvalues = yhat_mle[:,4]
- self.pvalues = [7.51e-31, 4.42e-05, 2.38e-05, 0.0034, 0.1584]
- self.tvalues = [11.55, -4.084, 4.226, 2.929, -1.410]
- self.sigma2 = 0.938374940397 ** 2
- self.forecast = forecast_results['fc50']
- self.forecasterr = forecast_results['fe50']
- elif method =="css":
-#NOTE: some results use x-12 arima because gretl uses LS estimates for AR CSS
- self.params = [0.725706505843, -0.305501865989, 0.320719417706,
- 0.226552951649, -0.089852608091 ]
-# self.aic = 674.817286564674
- self.aic = 676.8173
-# self.bic = 692.323577617397
- self.bic = 697.8248
- self.arroots = [1.0755 +0.0000j,0.0075-1.2434j, 0.0075 +1.2434j,
- -1.9686 +0.0000j, 3.3994 +0.0000j]
- self.maroots = None
- self.bse = [0.064344956583, 0.078060866211, 0.077980166982,
- 0.078390791831, 0.064384559496]
- self.cov_params = [
-[ 0.0041403, -0.0029335, 0.0013775, -0.0014298, -0.00068813],
-[ -0.0029335, 0.0060935, -0.0041786, 0.0026980, -0.0014765],
-[ 0.0013775, -0.0041786, 0.0060809, -0.0042177, 0.0014572],
-[ -0.0014298, 0.0026980, -0.0042177, 0.0061451, -0.0029853],
-[ -0.00068813, -0.0014765, 0.0014572, -0.0029853, 0.0041454]]
-# self.hqic = 681.867054880965
- self.hqic = 685.2770
- self.llf = -332.408643282337
- self.resid = resids_css[5:,4]
- self.fittedvalues = yhat_css[5:,4]
- self.pvalues = [1.68e-29, 9.09e-05, 3.91e-05, 0.0039, 0.1628]
- self.tvalues = [11.28, -3.914, 4.113, 2.890, -1.396]
-# self.sigma2 = 0.949462810435**2
- self.sigma2 = .939724 ** 2
-
-
-class Y_arma02(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [0.169096401142, -0.683713393265]
- self.aic = 775.017701544762
- self.bic = 785.582084298349
- self.arroots = None
- self.maroots = [-1.0920 + 0j, 1.3393 + 0j]
- self.bse = [0.049254112414, 0.050541821979]
- self.cov_params = [[0.0024260, 0.00078704], [0.00078704,
- 0.0025545]]
- self.hqic = 779.269556450598
- self.llf = -384.508850772381
- self.resid = resids_mle[:,5]
- self.fittedvalues = yhat_mle[:,5]
- self.pvalues = [.0006, 1.07e-41]
- self.tvalues = [3.433, -13.53]
- self.sigma2 = 1.122887152869 ** 2
- elif method =="css":
-# bse, cov_params, tvalues taken from R
- self.params = [0.175605240783, -0.688421349504]
- self.aic = 773.725350463014
- self.bic = 784.289733216601
- self.arroots = None
- self.maroots = [-1.0844 + 0.j, 1.3395 +0.j]
-# self.bse = [0.044465497496, 0.045000813836]
- self.bse = [0.04850046, 0.05023068]
-# self.cov_params = [
-#[ 0.0019772, 0.00090016],
-#[ 0.00090016, 0.0020251]]
- self.cov_params = [
-[0.0023522942, 0.0007545702],
-[0.0007545702, 0.0025231209]
-]
- self.hqic = 777.977205368850
- self.llf = -383.862675231507
- self.resid = resids_css[:,5]
- self.fittedvalues = yhat_css[:,5]
- self.pvalues = [7.84e-05, 7.89e-53]
-# self.tvalues = [3.949, -15.30]
- self.tvalues = [3.620967, -13.705514 ]
- self.sigma2 = 1.123571177436**2
-
-class Y_arma11c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [4.856475759430, 0.664363281011, 0.407547531124]
- self.aic = 737.922644877973
- self.bic = 752.008488549422
- self.arroots = [1.5052 + 0j]
- self.maroots = [-2.4537 + 0j]
- self.bse = [0.273164176960, 0.055495689209, 0.068249092654]
- self.cov_params = [
-[ 0.074619, -0.00012834, 1.5413e-05],
-[ -0.00012834, 0.0030798, -0.0020242],
-[ 1.5413e-05, -0.0020242, 0.0046579]]
- self.hqic = 743.591784752421
- self.llf = -364.961322438987
- self.resid = residsc_mle[:,0]
- self.fittedvalues = yhatc_mle[:,0]
- self.pvalues = [1.04e-70, 5.02e-33, 2.35e-9]
- self.tvalues = [17.78, 11.97, 5.971]
- self.sigma2 = 1.039168068701 ** 2
- self.forecast = forecast_results['fc11c']
- self.forecasterr = forecast_results['fe11c']
- elif method =="css":
-# self.params = [1.625462134333, 0.666386002049, 0.409512270580]
-#NOTE: gretl gives the intercept not the mean, x-12-arima and R agree with us
-#NOTE: params, bse, cov_params, tvals from R
- self.params = [4.872477127267, 0.666395534262, 0.409517026658]
- self.aic = 734.613526514951
- self.bic = 748.683338100810
- self.arroots = [1.5006 +0.0000j]
- self.maroots = [-2.4419 +0.0000]
-# self.bse = [0.294788633992, 0.057503298669, 0.063059352497]
- self.bse = [ 0.2777238133284, 0.0557583459688, 0.0681432545482]
-# self.cov_params = [
-#[ 0.086900, -0.016074, 0.010536],
-#[ -0.016074, 0.0033066, -0.0021977],
-#[ 0.010536, -0.0021977, 0.0039765]
-# ]
- self.cov_params = [
-[7.71305164897e-02, 5.65375305967e-06, 1.29481824075e-06 ],
-[5.65375305967e-06, 3.10899314518e-03, -2.02754322743e-03],
-[1.29481824075e-06, -2.02754322743e-03, 4.64350314042e-03 ]
- ]
- self.hqic = 740.276857090925
- self.llf = -363.306763257476
- self.resid = residsc_css[1:,0]
- self.fittedvalues = yhatc_css[1:,0]
- self.pvalues = [ 3.51e-08, 4.70e-31, 8.35e-11]
-# self.tvalues = [5.514, 11.59, 6.494]
- self.tvalues = [17.544326, 11.951494, 6.009649]
- self.sigma2 = 1.040940645447**2
-
-
-class Y_arma14c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [4.773779823083, 0.591149657917, 0.322267595204,
- -0.702933089342, 0.116129490967, 0.323009574097]
- self.aic = 720.814886758937
- self.bic = 745.465113183973
- self.arroots = [ 1.6916 +0.0000j]
- self.maroots = [1.1071 -0.7821j, 1.1071 +0.7821j,
- -1.2868 -0.1705j,-1.2868 +0.1705j] # had to change order?
- self.bse = [0.160891073193, 0.151756542096, 0.152996852330,
- 0.140231020145, 0.064663675882, 0.065045468010]
- self.cov_params = [
-[0.025886, 0.00026606, -0.00020969, -0.00021435, 4.2558e-05, 5.2904e-05],
-[0.00026606, 0.023030, -0.021269, -0.018787, 0.0015423, 0.0011363],
-[-0.00020969, -0.021269, 0.023408, 0.018469, -0.0035048, -0.0010750],
-[-0.00021435, -0.018787, 0.018469, 0.019665, -0.00085717, -0.0033840],
-[4.2558e-05, 0.0015423, -0.0035048, -0.00085717, 0.0041814, 0.0014543],
-[5.2904e-05, 0.0011363, -0.0010750, -0.0033840, 0.0014543, 0.0042309]]
- self.hqic = 730.735881539221
- self.llf = -353.407443379469
- self.resid = residsc_mle[:,1]
- self.fittedvalues = yhatc_mle[:,1]
- self.pvalues = [1.82e-193, 9.80e-05, 0.0352, 5.37e-07, 0.0725,
- 6.84e-07]
- self.tvalues = [29.67, 3.895, 2.106, -5.013, 1.796, 4.966]
- self.sigma2 = 0.990262659233 ** 2
- elif method =="css":
-#NOTE: params, bse, cov_params, and tvalues from R
-# self.params = [1.502401748545, 0.683090744792, 0.197636417391,
-# -0.763847295045, 0.137000823589, 0.304781097398]
- self.params = [4.740785760452, 0.683056278882, 0.197681128402,
- -0.763804443884, 0.136991271488, 0.304776424257]
- self.aic = 719.977407193363
- self.bic = 744.599577468616
- self.arroots = [1.4639 +0.0000j]
- self.maroots = [1.1306-0.7071j, 1.1306+0.7071j, -1.3554 -0.0896j,
- -1.3554 +0.0896j]
-# self.bse = [0.534723749868, 0.111273280223, 0.119840296133,
-# 0.111263606843, 0.070759105676, 0.061783181500]
- self.bse = [0.1750455599911, 0.0942341854820, 0.0999988749541,
- 0.0929630759694, 0.0628352649371, 0.0645444272345]
-# self.cov_params = [
-#[ 0.28593, -0.059175, 0.053968, 0.046974, 0.00085168, 0.0028000 ],
-#[ -0.059175, 0.012382, -0.011333, -0.0098375, -0.00012631,-0.00058518 ],
-#[ 0.053968, -0.011333, 0.014362, 0.010298, -0.0028117, -0.00011132 ],
-#[ 0.046974, -0.0098375, 0.010298, 0.012380, 0.00031018, -0.0021617 ],
-#[ 0.00085168, -0.00012631, -0.0028117, 0.00031018, 0.0050069, 0.00079958 ],
-#[ .0028000, -0.00058518, -0.00011132, -0.0021617, 0.00079958, 0.0038172 ]]
- self.cov_params = [
-[0.030640948072601, -1.61599091345e-03, 0.001707084515950, 0.001163372764659, -1.78587340563e-04, 0.000116062673743],
-[-0.001615990913449, 8.88008171345e-03, -0.007454252059003, -0.006468410832237, 5.66645379098e-05, -0.000381880917361],
-[0.001707084515950, -7.45425205900e-03, 0.009999774992092, 0.005860013051220, -2.27726197200e-03, 0.000757683049669],
-[0.001163372764659, -6.46841083224e-03, 0.005860013051220, 0.008642133493695, 4.40550745987e-04, -0.002170706208320],
-[-0.000178587340563, 5.66645379098e-05, -0.002277261972002, 0.000440550745987, 3.94827051971e-03, 0.000884171120090 ],
-[0.000116062673743, -3.81880917361e-04, 0.000757683049669, -0.002170706208320, 8.84171120090e-04, 0.004165983087027]
-]
- self.hqic = 729.888235701317
- self.llf = -352.988703596681
- self.resid = residsc_css[1:,1]
- self.fittedvalues = yhatc_css[1:,1]
- self.pvalues = [0.0050, 8.31e-10, 0.0991, 6.64e-12, 0.0528,
- 8.09e-07]
-# self.tvalues = [2.810, 6.139, 1.649, -6.865, 1.936, 4.933]
- self.tvalues = [27.08315344127, 7.24849772286, 1.97683352430,
- -8.21621311385, 2.18016541548, 4.72196341831]
- self.sigma2 = 0.998687642867**2
-
-
-class Y_arma41c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [1.062980233899, 0.768972932892, -0.264824839032,
- -0.279936544064, 0.756963578430, 0.231557444097]
- self.aic = 686.468309958027
- self.bic = 711.118536383063
- self.arroots = [1.0077 +0j, .3044-.9793j, .3044+.9793j,
- -1.2466 +0j]
- self.maroots = [-4.3186 + 0.j]
- self.bse = [2.781653916478, 0.063404432598, 0.091047664068,
- 0.084679571389, 0.054747989396, 0.098952817806]
- self.cov_params =[
-[ 7.7376, 0.0080220, -0.0039840, 0.0064925, 0.0022936, -0.0098015],
-[ 0.0080220, 0.0040201, -0.0054843, 0.0046548, -0.0029922, -0.0047964],
-[ -0.0039840, -0.0054843, 0.0082897, -0.0072913, 0.0043566, 0.0067289],
-[ 0.0064925, 0.0046548, -0.0072913, 0.0071706, -0.0043610, -0.0057962],
-[ 0.0022936, -0.0029922, 0.0043566, -0.0043610, 0.0029973, 0.0036193],
-[ -0.0098015, -0.0047964, 0.0067289, -0.0057962, 0.0036193, 0.0097917]]
- self.hqic = 696.389304738311
- self.llf = -336.234154979014
- self.resid = residsc_mle[:,2]
- self.fittedvalues = yhatc_mle[:,2]
- self.pvalues = [0.7024, 7.50e-34, 0.0036, 0.0009, 1.77e-43, 0.0193]
- self.tvalues = [0.3821, 12.13, -2.909, -3.306, 13.83, 2.340]
- self.sigma2 = 0.915487643192 ** 2
- self.forecast = forecast_results['fc41c']
- self.forecasterr = forecast_results['fe41c']
- elif method =="css":
-# self.params = [-0.077068926631, 0.763816531155, -0.270949972390,
-# -0.284496499726, 0.757135838677, 0.225247299659]
-#NOTE: params, cov_params, bse, and tvalues from R
- self.params = [-2.234160612756, 0.763815335585, -0.270946894536,
- -0.284497190744, 0.757136686518, 0.225260672575]
- self.aic = 668.907200379791
- self.bic = 693.444521131318
- self.arroots = [1.0141 +0.0000j, 0.3036 -0.9765j, 0.3036 +0.9765j,
- -1.2455 +0.0000j]
- self.maroots = [-4.4396 +0.0000j]
-# self.bse = [0.076048453921, 0.067854052128, 0.098041415680,
-# 0.090698349822, 0.057331126067, 0.099985455449]
- self.bse = [2.1842857865614, 0.0644148863289, 0.0923502391706,
- 0.0860004491012, 0.0558014467639, 0.1003832271008]
-# self.cov_params = [
-#[ 0.0057834, 0.00052477, -0.00079965, 0.00061291, -0.00013618, -0.0018963 ],
-#[ 0.00052477, 0.0046042, -0.0062505, 0.0053416, -0.0032941, -0.0047957 ],
-#[-0.00079965, -0.0062505, 0.0096121, -0.0084500, 0.0047967, 0.0064755 ],
-#[ 0.00061291, 0.0053416, -0.0084500, 0.0082262, -0.0048029, -0.0057908 ],
-#[-0.00013618, -0.0032941, 0.0047967, -0.0048029, 0.0032869, 0.0035716 ],
-#[ -0.0018963, -0.0047957, 0.0064755, -0.0057908, 0.0035716, 0.0099971]
-# ]
- self.cov_params = [
-[4.77110439737413, -0.00908682223670, 0.00330914414276, -0.00684678121434, -0.00232348925409, 0.00950558295301],
-[-0.00908682223670, -0.00562941039954, 0.00852856667488, -0.00749429397372, -0.00304322809665, -0.00494984519949],
-[0.00330914414276, -0.00562941039954, 0.00852856667488, -0.00749429397372, 0.00443590637587, 0.00693146988144],
-[-0.00684678121434, 0.00482359594764, -0.00749429397372, 0.00739607724561, -0.00448059420947, -0.00600908311031],
-[-0.00232348925409, -0.00304322809665, 0.00443590637587, -0.00448059420947, 0.00311380146095, 0.00373734623817 ],
-[0.00950558295301, -0.00494984519949, 0.00693146988144, -0.00600908311031, 0.00373734623817, 0.01007679228317]]
- self.hqic = 678.787238280001
- self.llf = -327.453600189896
- self.resid = residsc_css[4:,2]
- self.fittedvalues = yhatc_css[4:,2]
- self.pvalues = [0.3109, 2.15e-29, 0.0057, 0.0017, 8.06e-40,
- 0.0243]
-# self.tvalues = [-1.013, 11.26, -2.764, -3.137, 13.21, 2.253]
- self.tvalues = [-1.02283347101, 11.85774561000, -2.93390571556,
- -3.30808959392, 13.56840602577, 2.24400708246]
- self.sigma2 = 0.915919923456**2
-
-
-class Y_arma22c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [4.507728587708, 0.788365037622, -0.358656861792,
- 0.035886565643, -0.699600200796]
- self.aic = 813.417242529788
- self.bic = 834.546008036962
- self.arroots = [1.0991 -1.2571j, 1.0991 +1.2571j]
- self.maroots = [-1.1702 +0.0000j, 1.2215 +0.0000j]
- self.bse = [0.045346684035, 0.078382496509, 0.07004802526,
- 0.069227816205, 0.070668181454]
- self.cov_params = [
-[ 0.0020563, -2.3845e-05, -6.3775e-06, 4.6698e-05, 5.8515e-05],
-[ -2.3845e-05, 0.0061438, -0.0014403, -0.0035405, -0.0019265],
-[ -6.3775e-06, -0.0014403, 0.0049067, -0.00059888, -0.0025716],
-[ 4.6698e-05, -0.0035405, -0.00059888, 0.0047925, 0.0022931],
-[ 5.8515e-05, -0.0019265, -0.0025716, 0.0022931, 0.0049940]]
- self.hqic = 821.920952341460
- self.llf = -400.708621264894
- self.resid = residsc_mle[:,3]
- self.fittedvalues = yhatc_mle[:,3]
- self.pvalues = [0.0000, 8.48e-24, 3.05e-07, 0.6042, 4.17e-23]
- self.tvalues = [99.41, 10.06, -5.120, 0.5184, -9.900]
- self.sigma2 = 1.196309833136 ** 2
- elif method =="css":
-#NOTE: params, bse, cov_params, and tvalues from R
-# self.params = [2.571274348147, 0.793030965872, -0.363511071688,
-# 0.033543918525, -0.702593972949]
- self.params = [4.507207454494, 0.793055048760, -0.363521072479,
- 0.033519062805, -0.702595834943]
- self.aic = 806.807171655455
- self.bic = 827.887744132445
-# self.bse = [0.369201481343, 0.076041378729, 0.070029488852,
-# 0.062547355221, 0.068166970089]
- self.bse = [0.0446913896589, 0.0783060902603, 0.0697866176073,
- 0.0681463870772, 0.068958002297]
-# self.cov_params = [
-#[ 0.13631, -0.017255, -0.012852, 0.014091, 0.017241],
-#[ -0.017255, 0.0057823, -0.0020013, -0.0026493, -0.0014131],
-#[ -0.012852, -0.0020013, 0.0049041, -0.00042960, -0.0023845],
-#[ 0.014091, -0.0026493, -0.00042960, 0.0039122, 0.0022028],
-#[ 0.017241, -0.0014131, -0.0023845, 0.0022028, 0.0046467]
-# ]
- self.cov_params =[
-[1.99732030964e-03, -2.22972353619e-05, -0.000009957435095, 4.64825632252e-05, 5.98134427402e-05],
-[-2.22972353619e-05, 6.13184377186e-03, -0.001435210779968, -3.47284237940e-03, -1.95077811843e-03 ],
-[-9.95743509501e-06,-1.43521077997e-03, 0.004870171997068, -6.54767224831e-04, -2.44459075151e-03],
-[ 4.64825632252e-05,-3.47284237940e-03, -0.000654767224831, 4.64393007167e-03, 2.34032945541e-03],
-[ 5.98134427402e-05,-1.95077811843e-03, -0.002444590751509, 2.34032945541e-03, 4.75520608091e-03]]
- self.arroots = [1.0908 -1.2494j, 1.0908 +1.2494j]
- self.maroots = [-1.1694 + 0.0000j, 1.2171 +0.0000j]
- self.hqic = 815.293412134796
- self.llf = -397.403585827727
- self.resid = residsc_css[2:,3]
- self.fittedvalues = yhatc_css[2:,3]
- self.pvalues = [3.30e-12, 1.83e-25, 2.09e-07, 0.5918, 6.55e-25]
-# self.tvalues = [ 6.964, 10.43, -5.191, 0.5363, -10.31]
- self.tvalues = [100.851808120009, 10.127629231947, -5.209036989363,
- 0.491868523669, -10.188749840927]
- self.sigma2 = 1.201409294941**2
-
-
-class Y_arma50c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [4.562207236168, 0.754284447885, -0.305849188005,
- 0.253824706641,0.281161230244,-0.172263847479]
- self.aic = 711.817562780112
- self.bic = 736.467789205148
- self.arroots = [-1.6535 + 0.j, .0129 -1.2018j, .0129 + 1.2018j,
- 1.1546 + 0.j, 2.1052 + 0j]
- self.maroots = None
- self.bse = [0.318447388812, 0.062272737541, 0.076600312879,
- 0.077310728819, 0.076837326995, 0.062642955733]
- self.cov_params = [
-[ 0.10141, -6.6930e-05, -7.3157e-05, -4.4815e-05, 7.7676e-05, -0.00013170],
-[-6.6930e-05, 0.0038779, -0.0028465, 0.0013770, -0.0012194, -0.00058978],
-[-7.3157e-05, -0.0028465, 0.0058676, -0.0040145, 0.0024694, -0.0012307],
-[-4.4815e-05, 0.0013770, -0.0040145, 0.0059769, -0.0040413, 0.0013481],
-[ 7.7676e-05, -0.0012194, 0.0024694, -0.0040413, 0.0059040, -0.0028575],
-[-0.00013170, -0.00058978, -0.0012307, 0.0013481, -0.0028575, 0.0039241]]
- self.hqic = 721.738557560396
- self.llf = -348.908781390056
- self.resid = residsc_mle[:,4]
- self.fittedvalues = yhatc_mle[:,4]
- self.pvalues = [1.50e-46, 9.06e-34, 6.53e-05, 0.0010, 0.0003,
- 0.0060]
- self.tvalues = [14.33, 12.11, -3.993, 3.283, 3.659, -2.750]
- self.sigma2 = 0.973930886014 ** 2
- self.forecast = forecast_results['fc50c']
- self.forecasterr = forecast_results['fe50c']
- elif method =="css":
-#NOTE: params, bse, cov_params, tvalues from R
-#likelihood based results from x-12 arima
-# self.params = [0.843173779572, 0.755433266689, -0.296886816205,
-# 0.253572751789, 0.276975022313, -0.172637420881]
- self.params = [4.593494860193, 0.755427402630, -0.296867127441,
- 0.253556723526, 0.276987447724, -0.172647993470]
-# self.aic = 694.843378847617
- self.aic = 696.8434
-# self.bic = 715.850928110886
- self.bic = 721.3522
- self.arroots = [-1.6539 +0.0000j, 0.0091-1.2069j, 0.0091 +1.2069j,
- 1.1508 +0.0000j, 2.0892 +0.0000j]
- self.maroots = None
-# self.bse = [0.236922950898, 0.063573574389, 0.078206936773,
-# 0.078927252266, 0.078183651496, 0.063596048046]
- self.bse = [0.3359627893565, 0.0621593755265, 0.0764672280408,
- 0.0771715117870, 0.0764444608104, 0.0621813373935]
-# self.cov_params = [
-#[ 0.056132, -0.0028895, -0.0012291, -0.0031424, -0.0012502, -0.0028739],
-#[ -0.0028895, 0.0040416, -0.0029508, 0.0014229, -0.0012546,-0.00062818],
-#[ -0.0012291, -0.0029508, 0.0061163, -0.0041939, 0.0025537, -0.0012585],
-#[ -0.0031424, 0.0014229, -0.0041939, 0.0062295, -0.0041928, 0.0014204],
-#[ -0.0012502, -0.0012546, 0.0025537, -0.0041928, 0.0061127, -0.0029479],
-#[ -0.0028739,-0.00062818, -0.0012585, 0.0014204, -0.0029479, 0.0040445]
-# ]
- self.cov_params = [
-[ 1.12870995832e-01, 4.32810158586e-05, -1.89697385245e-05, 0.0000465331836881, -0.000024151327384, 0.000109807500875],
-[ 4.32810158586e-05, 3.86378796585e-03, -2.82098637123e-03, 0.001360256141301, -0.001199382243647, -0.000600542191229],
-[-1.89697385245e-05, -2.82098637123e-03, 5.84723696424e-03, -0.004009391809667, 0.002441359768335, -0.001203154760767],
-[ 4.65331836880e-05, 1.36025614130e-03, -4.00939180967e-03, 0.005955442231484, -0.004008307295820, 0.001357917028471],
-[-2.41513273840e-05, -1.19938224365e-03, 2.44135976834e-03, -0.004008307295820, 0.005843755588588, -0.002818181279545],
-[ 1.09807500875e-04, -6.00542191229e-04, -1.20315476077e-03, 0.001357917028471, -0.002818181279545, 0.003866518720043]]
-# self.hqic = 703.303100827167
- self.hqic = 706.7131
- self.llf = -341.421689423809
- self.resid = residsc_css[5:,4]
- self.fittedvalues = yhatc_css[5:,4]
- self.pvalues = [0.0004, 1.45e-32, 0.0001, 0.0013, 0.0004, 0.0066]
-# self.tvalues = [ 3.559, 11.88, -3.796, 3.213, 3.543, -2.715]
- self.tvalues = [13.67262984389, 12.15307258528, -3.88227918086,
- 3.28562597329, 3.62338153462, -2.77652428699 ]
-# self.sigma2 = 0.987100631424**2
- self.sigma2 = 0.974939 ** 2
-
-class Y_arma02c(object):
- def __init__(self, method="mle"):
- if method == "mle":
- self.params = [4.519277801954, 0.200385403960, -0.643766305844]
- self.aic = 758.051194540770
- self.bic = 772.137038212219
- self.arroots = None
- self.maroots = [-1.1004 + 0.j, 1.4117 + 0.j]
- self.bse = [0.038397713362, 0.049314652466, 0.048961366071]
- self.cov_params = [
-[ 0.0014744, 6.2363e-05, 6.4093e-05 ],
-[ 6.2363e-05, 0.0024319, 0.0014083 ],
-[ 6.4093e-05, 0.0014083, 0.0023972 ]]
- self.hqic = 763.720334415218
- self.llf = -375.025597270385
- self.resid = residsc_mle[:,5]
- self.fittedvalues = yhatc_mle[:,5]
- self.pvalues = [0.0000, 4.84e-5, 1.74e-39]
- self.tvalues = [117.7, 4.063, -13.15]
- self.sigma2 = 1.081406299967 ** 2
- elif method =="css":
-#NOTE: cov_params and tvalues taken from R
- self.params = [4.519869870853, 0.202414429306, -0.647482560461]
- self.aic = 756.679105324347
- self.bic = 770.764948995796
- self.arroots = None
- self.maroots = [ -1.0962 + 0.0000j, 1.4089 + 0.0000j]
- self.bse = [0.038411589816, 0.047983057239, 0.043400749866]
-# self.cov_params = [
-#[ 0.0014755, 9.0191e-05, 7.3561e-06],
-#[ 9.0191e-05, 0.0023024, 0.0012479],
-#[ 7.3561e-06, 0.0012479, 0.0018836]]
- self.cov_params = [
-[1.46121526606e-03, 5.30770136338e-05, 5.34796521051e-05],
-[5.30770136338e-05, 2.37105883909e-03, 1.41090983316e-03],
-[5.34796521051e-05, 1.41090983316e-03, 2.35584355080e-03]]
- self.hqic = 762.348245198795
- self.llf = -374.339552662174
- self.resid = residsc_css[:,5]
- self.fittedvalues = yhatc_css[:,5]
- self.pvalues = [ 0.0000, 2.46e-05, 2.49e-50]
-# self.tvalues = [117.7, 4.218, -14.92]
- self.tvalues = [118.24120637494, 4.15691796413, -13.33981086206]
- self.sigma2 = 1.081576475937**2
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma_forecasts.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma_forecasts.csv
deleted file mode 100644
index 3e92c25..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/results_arma_forecasts.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-"fc11","fe11","fc41","fe41","fc50","fe50","fc11c","fe11c","fc41c","fe41c","fc50c","fe50c"
--0.0931139795,0.994743,-0.4298095393,0.91141,1.24361,0.938375,4.2276592922,1.03917,-1.3985445949,0.915488,4.779739852,0.973931
--0.073415913,1.53122,-1.4961938371,1.22521,0.484195,1.16009,4.4387131881,1.52336,3.0228581596,1.29504,4.692859693,1.21992
--0.057884931,1.78523,-3.770193621,1.2607,0.722602,1.17762,4.5789296469,1.6936,4.071345984,1.37495,3.8280155603,1.24654
--0.0456394955,1.92633,-3.6148341892,1.27585,1.09664,1.20138,4.6720843135,1.76352,0.8457602276,1.38243,3.9467079457,1.26508
--0.0359845562,2.00905,-1.5553772244,1.29131,0.854109,1.31833,4.7339728534,1.79351,-2.3126724383,1.39737,4.5998286564,1.37737
--0.028372099,2.05881,-0.3162209074,1.49296,0.510239,1.39506,4.7750893268,1.80659,-0.833875753,1.5901,4.59173986,1.4486
--0.0223700411,2.08914,-1.6253254747,1.67599,0.579206,1.41288,4.802405602,1.81234,2.8363368346,1.83677,4.1878148976,1.45879
--0.017637706,2.10777,-3.3986372227,1.68533,0.721688,1.43171,4.8205535323,1.81487,3.7095186811,1.86802,4.2337457799,1.46621
--0.0139064864,2.11928,-3.150618693,1.69048,0.60394,1.47332,4.8326103507,1.81598,0.6042207231,1.86845,4.553063531,1.49431
--0.0109645984,2.1264,-1.2381045022,1.70353,0.43997,1.50507,4.8406204582,1.81647,-1.9229410947,1.87871,4.562562544,1.51482
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/results_corrgram.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/results_corrgram.csv
deleted file mode 100644
index 9334a71..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/results_corrgram.csv
+++ /dev/null
@@ -1,41 +0,0 @@
-acvar,acvarfft,Q1,PACOLS,PACYW
-.98685781,.98685781,200.6355,1.002988,.98685781
-.97371846,.97371846,396.9356,-.3956237,-.00650592
-.96014366,.96014366,588.7549,-.1769759,-.0233345
-.94568545,.94568545,775.7759,.0742275,-.04078457
-.93054425,.93054425,957.7706,-.0580367,-.0334311
-.91484806,.91484806,1134.57,.0935246,-.02818214
-.89901438,.89901438,1306.174,.0034315,-.01168091
-.8827679,.8827679,1472.48,.0385079,-.02192074
-.86649857,.86649857,1633.539,.1050301,-.00748351
-.8503736,.8503736,1789.463,-.1834061,-.00143193
-.83435254,.83435254,1940.348,-.0210358,-.00310717
-.81829961,.81829961,2086.244,.0992143,-.00921395
-.80240987,.80240987,2227.266,.2540452,-.0025009
-.78635609,.78635609,2363.419,-.0080142,-.01557323
-.77024519,.77024519,2494.745,-.0524568,-.01164751
-.75437469,.75437469,2621.388,.11607,-.00030521
-.73850631,.73850631,2743.412,-.1211871,-.00893237
-.72274736,.72274736,2860.916,.092306,-.00507808
-.70701465,.70701465,2973.971,.0317384,-.00829011
-.69141553,.69141553,3082.682,-.0422092,-.00460458
-.67600225,.67600225,3187.173,.0628712,-.00246537
-.66067686,.66067686,3287.53,.0086186,-.00610282
-.64543953,.64543953,3383.844,-.0044266,-.0068184
-.63020869,.63020869,3476.178,.001695,-.00994534
-.61518569,.61518569,3564.658,-.128714,-.00216407
-.60054983,.60054983,3649.454,.0279399,.00497323
-.58608693,.58608693,3730.674,.0982797,-.00302243
-.57172016,.57172016,3808.402,.0937156,-.00642863
-.55730727,.55730727,3882.685,-.1677933,-.0125645
-.54281535,.54281535,3953.562,-.116249,-.01382639
-.5282993,.5282993,4021.09,.1120091,-.01135471
-.51386026,.51386026,4085.351,-.1551635,-.00700203
-.49934969,.49934969,4146.39,-.0644834,-.01242531
-.48452688,.48452688,4204.199,.2141102,-.02166683
-.4697521,.4697521,4258.86,.0573164,-.0078988
-.45473224,.45473224,4310.389,.1685996,-.01871847
-.43987621,.43987621,4358.896,-.0405992,-.00300827
-.42500013,.42500013,4404.451,.041648,-.0100618
-.41057995,.41057995,4447.228,.1566605,.0076425
-.3960725,.3960725,4487.278,-.0708302,-.01332486
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/results_process.py b/statsmodels/scikits/statsmodels/tsa/tests/results/results_process.py
deleted file mode 100644
index 7557c8d..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/results_process.py
+++ /dev/null
@@ -1,56 +0,0 @@
-import numpy as np
-from numpy import array
-
-
-class Holder(object):
- pass
-
-
-armarep = Holder()
-armarep.comment = 'mlab.garchma(-res_armarep.ar[1:], res_armarep.ma[1:], 20)' +\
-'mlab.garchar(-res_armarep.ar[1:], res_armarep.ma[1:], 20)'
-armarep.marep = array([[-0.1 ],
- [-0.77 ],
- [-0.305 ],
- [ 0.4635 ],
- [ 0.47575 ],
- [-0.132925 ],
- [-0.4470625 ],
- [-0.11719125 ],
- [ 0.299054375 ],
- [ 0.2432801875 ],
- [-0.11760340625 ],
- [-0.253425853125 ],
- [-0.0326302015625 ],
- [ 0.18642558171875],
- [ 0.11931695210938],
- [-0.08948198932031],
- [-0.14019455634766],
- [ 0.00148831328242],
- [ 0.11289980171934],
- [ 0.05525925023373]])
-armarep.ar = array([ 1. , -0.5, 0.8])
-armarep.ma = array([ 1. , -0.6 , 0.08])
-armarep.name = 'armarep'
-armarep.arrep = array([[ -1.00000000000000e-01],
- [ -7.80000000000000e-01],
- [ -4.60000000000000e-01],
- [ -2.13600000000000e-01],
- [ -9.13600000000000e-02],
- [ -3.77280000000000e-02],
- [ -1.53280000000000e-02],
- [ -6.17856000000000e-03],
- [ -2.48089600000000e-03],
- [ -9.94252799999999e-04],
- [ -3.98080000000000e-04],
- [ -1.59307776000000e-04],
- [ -6.37382655999999e-05],
- [ -2.54983372800000e-05],
- [ -1.01999411200000e-05],
- [ -4.08009768959999e-06],
- [ -1.63206332416000e-06],
- [ -6.52830179327999e-07],
- [ -2.61133041663999e-07],
- [ -1.04453410652160e-07]])
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/savedrvs.py b/statsmodels/scikits/statsmodels/tsa/tests/results/savedrvs.py
deleted file mode 100644
index ba7595f..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/savedrvs.py
+++ /dev/null
@@ -1,250 +0,0 @@
-'''Generated Random Processes for tests
-
-autogenerated by savervs.py
-
-'''
-
-
-import numpy as np
-from numpy import array
-
-
-class Holder(object):
- pass
-
-
-rvsdata = Holder()
-rvsdata.comment = 'generated data, divide by 1000, see savervs'
-rvsdata.xarma32 = array([-1271, -1222, -840, -169, -1016, -980, -1272, -926, 445, 833, -91, -1974, -2231,
- -549, 424, 238, -1665, -1815, 685, 3361, 1912, -1931, -3555, -1817, 387, 730,
- -1154, -702, 973, 1340, -161, 276, 200, 1785, 834, -1469, -1593, -134, 555,
- -422, -2314, -1326, -2268, -3579, -3049, -930, 1155, 962, -644, -217, -561, 224,
- 810, 2445, 2710, 2152, 502, 21, 164, -499, -1093, -492, 531, -605, -1535,
- -2081, -3816, -2257, 487, 2134, 1785, 1495, 1259, 1895, 1339, 617, 1143, 385,
- -1220, -738, 1171, 1047, -234, -107, -1458, -1244, -2737, 33, 2373, 2749, 2725,
- 3331, 1054, 418, 1231, -1171, -1446, -1187, 863, 1386, 757, 734, 283, -735,
- 550, 417, -236, 324, 318, -102, 2126, 3246, 2358, 2156, 726, -983, -803,
- -242, -500, -13, 49, 308, -227, 243, -612, -2329, -2476, -3441, -5435, -4693,
- -2538, -2159, -2656, -906, -211, -288, 1777, 1363, 564, -2035, -1134, -609, -1112,
- 560, 658, 1533, 796, 523, 456, 76, -1164, -749, -1084, -3218, -2107, -310,
- -686, -1625, 2008, 4155, 1650, -1086, -673, 1634, 1999, 449, -1077, -648, -155,
- -327, 228, 1295, 2036, 542, -197, -451, -1554, -2416, -2066, -2146, -1524, -1976,
- -2962, -2621, -2313, -2052, -3314, -2363, -1522, -3305, -3445, -3206, -1501, 2029, 1963,
- 1168, 2050, 2927, 2019, 84, 213, 1783, 617, -767, -425, 739, 281, 506,
- -749, -938, -284, -147, 51, 1296, 3033, 2263, 1409, -1702, -819, -1295, -1831,
- -539, 1327, 1954, 1473, -1535, -1187, -1310, 380, 1621, 2035, 2234, 559, 51,
- -1071, 590, 2128, 1483, 848, 1198, 2707, 1447, -629, 237, 909, 453, -734,
- -802, 1026, 521, -9, 919, 441, -118, -1073, -2428, 98, 823, 102, -438,
- -233, -613, 440, 1143, -743, -1345, 186, -1999, -2351, -887, -584, -883, -623,
- -1522, 974, 2318, 1329, -523, -2599, -1555, 826, -859, -2790, -2753, 807, 1889,
- -95, -1454, 443, 845, -291, 1516, 2804, 1018, 402, -446, -1721, -1824, 1678,
- 2889, -663, -560, 628, 1213, 520, -1344, -3029, -3100, -1603, -1480, -1667, -3356,
- -4405, -2556, 532, 1602, -15, 646, 2279, 1893, -945, -258, 344, -316, 1130,
- 1119, 695, 276, 56, -682, -610, 412, 1058, 259, 746, 1197, 1959, 1896,
- 127, -1301, 1036, 3094, 5213, 3846, 1728, 40, -520, -173, 330, -480, 649,
- 1621, 1622, -1011, -1851, -2687, -756, 401, 1888, 2372, 4153, 2531, -150, 485,
- 2600, 2193, -1238, -2702, -184, 1336, 370, -1196, -1737, 637, 634, 77, -1314,
- -688, -1375, -1973, -1229, -1414, -2230, -1922, -584, 93, 180, 2158, 2976, 1433,
- -173, -1073, -1362, -446, 242, 7, 354, 332, 2003, 1866, -729, -1446, -294,
- 2438, 3955, 1829, 485, 1028, 981, 1335, 513, -1386, -2583, -1063, 465, 1104,
- 85, -892, -78, 766, 1995, 891, -170, 2, -428, -562, -1078, -2591, -2077,
- -135, -238, -1150, -1207, -185, -46, -1319, -1829, -1409, -926, 576, 1119, 454,
- -747, -538, -739, -2994, -3052, -1626, -2472, -1340, -254, -972, -1182, -258, 831,
- 876, -244, -724, -208, -428, -110, 188, -2187, -2695, -1161, 597, 1492, 1594,
- -403, 695, 1834, 1737, 586, -740, 259, -714, -1607, -1082, -365, 2040, 604,
- -1253, -1269, -419, -713, -482, 1379, 2335, 1730, 325, -1377, -1721, -1762, -602,
- -1224, -839, 70, -1058, -118, -691, -1397, -245, -291, -648, -1489, -1088, -1083,
- -160, 1310, 169, -1539, -1558, -2095, -3421, -1609, -465, -867, 311, 272, -157,
- -936, -1003, -492, -1526, -2179, -1237, -662, -144, 638, 596, -629, -1893, -671,
- 324, 408, 367, 1438, 4568, 2576, 677, 701, 2667, 1288, 449, -357, 776,
- 2250, 2324, 968, 245, 1432, 1597, 843, 88, -274, -256, 830, 348, 534,
- 140, -560, -1582, -2012, -287, 1470, -729, -2398, -1433, -1409, -1547, 70, 1438,
- 2246, 408, -293, -566, 374, 1793, 2355, 1104, 358, 2301, 2994, 572, 278,
- 508, -2406, -2767, -1216, -231, -1717, -1038, 2015, 1469, 1471, 1395, 860, 1148,
- 1211, 1189, 494, -536, 383, -136, -2171, -2334, -1181, -294, -841, -2051, -3304,
- -2254, -926, -811, 160, 1960, 2945, 2466, 1922, 2833, 2421, 1197, 3025, 4033,
- 3210, 1497, 1912, 1138, 174, -630, -2423, -999, 296, 1519, 2061, 1400, -424,
- -609, -978, -1747, -1637, -2454, -1547, 885, 2065, 1530, -1956, 846, 2811, 3105,
- 2220, 2732, 4631, 3504, 1996, 246, -419, -1541, -1955, -3171, -2742, -811, -318,
- -1303, -2002, -997, -487, -2089, -3453, -3373, -1940, -620, 384, 365, -133, -1300,
- -833, -1544, -1711, -1981, -315, -155, -1995, -2384, -4010, -5394, -6186, -3794, -1829,
- -2637, -4255, -2014, 282, -174, -2623, -2023, -749, -168, -2387, -3959, -4101, -2004,
- -2070, -2468, -1831, -1518, 606, 305, 684, 2183, 1218, -1008, -2261, -1276, -99,
- 889, 740, -525, -1786, -1716, -452, -872, -1384, -1867, -547, -900, -1464, -1898,
- -1493, -990, 965, 810, 636, -335, -57, 1761, 2837, 773, 215, 920, 483,
- -234, 1301, 2610, 3083, 2329, 920, -827, 22, 4317, 5366, 3711, 2220, 1356,
- 198, -1385, 656, 1163, -370, -1721, -1005, -832, -1455, -1485, 221, -1445, -1502,
- -79, -4, -599, -850, -507, 902, 1909, 1642, -326, -3379, -5642, -7068, -4275,
- -1044, 528, 548, 249, -1384, -2485, -1533, -1776, -2930, -2058, -1721, -475, -166,
- -1761, -2550, -1586, -240, -1584, -1954, 623, 3826, 2094, -1004, -1782, -267, 2490,
- 3336, 2293, 189, -108, -315, -965, -125, 1201, 360, -544, -1602, -2150, -901,
- 1430, 968, -1100, 505, 2880, 2554, 928, 918, 689, -2829, -2478, -2904, -1615,
- -242, 243, -1668, -877, 2385, 543, -2462, -1762, 470, 1344, 1493, 1624, 257,
- -1833, -1947, -805, -413, 905, 2909, 3272, 1148, -1473, -2368, -1054, -2143, -4330,
- -3257, -1939, -1831, -414, -1157, -1212, -1644, -1360, -2409, -4136, -5747, -3415, -1752,
- 373, -1680, -1267, 2267, 2701, 1101, -1714, -3138, -3153, -3256, -3328, -2661, -879,
- 2115, 1795, -324, -1930, -1432, -1613, -2301, -1401, 88, 1369, 1063, -854, -2125,
- 243, 1683, 2011, 2646, 1289, -938, -1205, -1214, 562, 2641, 3335, 2858, 2650,
- 1965, 478, 1391, 486, 255, -1764, -813, 84, -453, -809, -1203, -1590, 730,
- 2059, 234, -319, 0, 624, 1273, 1470, 1882, 2215, 1611, 485, -16, 397,
- 593, -95, 125, 1435, 2673, 3073, 2262, 1803, 983, 666, 1516, 2821, 2395,
- 299, 86, 1150, 1214, 751, -1096, -962, -39, -366, -2125, -2086, -1032, -966,
- -863, -1522, -1793, 1228, 207, -2243, -1916, -1320, -1530, -2318, -1050, -663, -1137,
- -2035, -1198, -246, 753, -185, -709, -231, -1111, -1121, -11, 976, 555, -1947,
- -1304, 807, 529, 231, -285, -553, -695, -2006, -1090, -424, 318, -1113])
-rvsdata.name = 'rvsdata'
-rvsdata.xnormal = array([-1271, 176, -296, 327, -973, 228, -819, 107, 975, 82, -477, -1492, -403,
- 695, 212, 91, -1549, -45, 1557, 1947, -785, -2139, -1264, 295, 806, 278,
- -1244, 787, 752, 173, -738, 969, -646, 1811, -990, -1369, 72, 408, 169,
- -587, -1517, 720, -2150, -1233, -121, 682, 1268, -29, -802, 679, -1041, 934,
- 344, 1788, 486, 460, -834, 40, -93, -751, -374, 345, 500, -1167, -387,
- -966, -2369, 1119, 1148, 1193, 411, 626, 45, 960, -293, 11, 806, -866,
- -1043, 574, 1072, -328, -381, 433, -1857, 409, -2190, 2614, 1005, 864, 1243,
- 1268, -1701, 680, 560, -2567, 639, -663, 1513, 215, 69, 498, -504, -771,
- 1392, -739, -131, 744, -382, -158, 2394, 712, 162, 1064, -1146, -1062, 248,
- -171, -411, 665, -236, 350, -503, 645, -1105, -1447, -337, -2050, -2539, -151,
- 85, -840, -555, 1235, -427, 106, 2227, -828, 252, -2248, 992, -737, -559,
- 1801, -593, 1438, -583, 342, -10, -331, -1053, 466, -1020, -2163, 1003, 224,
- -794, -406, 3338, 1021, -1157, -788, 242, 1219, 267, -455, -843, 183, -196,
- -181, 699, 822, 825, -920, 110, -482, -1332, -843, -256, -989, 232, -1082,
- -1221, -200, -800, -344, -1779, 559, -485, -2241, -84, -1173, 701, 2685, -395,
- 644, 1374, 741, -144, -788, 542, 1044, -1150, -296, 281, 485, -495, 829,
- -1385, 80, 192, -237, 340, 1213, 1634, -264, 479, -2698, 1282, -1759, -422,
- 1003, 1015, 668, 332, -2367, 835, -1347, 1532, 828, 766, 907, -1122, 265,
- -1357, 1658, 879, -199, 433, 532, 1482, -925, -812, 1081, -191, -126, -637,
- -45, 1306, -863, 326, 954, -806, 42, -885, -1504, 2167, -496, -63, -19,
- -61, -654, 1153, 340, -1586, 97, 836, -2868, 439, 380, -652, -34, 197,
- -1342, 2507, 481, -228, -748, -1941, 596, 1137, -1978, -857, -546, 2208, 151,
- -864, -446, 1297, -507, -417, 2265, 596, -1011, 719, -1112, -1279, -184, 2721,
- 371, -2244, 1511, -127, 365, -53, -1399, -1628, -736, 312, -785, -182, -2070,
- -1452, 640, 1479, 648, -754, 1396, 1005, -183, -1661, 1296, -547, -532, 1901,
- -511, 232, -27, -191, -734, 140, 647, 406, -449, 997, 204, 1035, 352,
- -1083, -788, 2025, 1127, 2903, -184, -197, -888, -536, 82, 279, -775, 1426,
- 490, 362, -1900, -219, -1753, 1342, 166, 1677, 753, 2518, -1078, -990, 1138,
- 1235, -197, -2026, -747, 1329, 255, -323, -722, -716, 1677, -746, 298, -1190,
- 509, -1420, -498, 302, -996, -883, -12, 443, 139, 260, 2131, 620, -535,
- -443, -870, -671, 535, 213, -172, 612, -169, 1841, -195, -1629, -3, 265,
- 2091, 1611, -929, 225, 486, -338, 922, -582, -1433, -1072, 765, 424, 696,
- -541, -524, 612, 278, 1405, -777, -163, 188, -805, 36, -692, -1680, 268,
- 810, -688, -359, -120, 386, -248, -1015, -387, -273, -158, 1263, 271, -209,
- -716, 208, -738, -2268, -37, 5, -1793, 1277, 46, -967, 151, 427, 579,
- 178, -621, -189, 167, -563, 481, 93, -2388, -120, 359, 751, 946, 613,
- -1484, 1690, 387, 285, -258, -870, 936, -1574, -400, 204, -70, 2254, -1548,
- -593, -89, -66, -599, 452, 1518, 658, 195, -496, -1363, -468, -759, 681,
- -1159, 579, 368, -1393, 1360, -1277, -474, 959, -779, -77, -864, 141, -632,
- 770, 1119, -1125, -857, -153, -1451, -1597, 1318, -337, -436, 1453, -619, -64,
- -625, -214, 78, -1334, -519, 313, -293, 446, 719, -93, -860, -1006, 823,
- 57, 199, 332, 1112, 3079, -1616, 338, 298, 1515, -1213, 603, -811, 1023,
- 1171, 464, -372, -24, 1105, -43, -1, -208, -340, -102, 970, -632, 743,
- -459, -520, -977, -671, 1096, 974, -1956, -601, 251, -1197, -108, 1305, 661,
- 1135, -1164, 195, -628, 708, 1211, 773, -470, 102, 1923, 405, -1286, 932,
- -349, -2927, 277, 144, -19, -1333, 988, 2027, -952, 1495, 91, -288, 784,
- 127, 341, -324, -670, 967, -1015, -1599, -98, -9, 157, -541, -1040, -1576,
- 297, 67, -285, 1094, 1433, 1051, 440, 491, 1410, -145, -138, 2498, 764,
- 408, -237, 1099, -888, -184, -541, -1975, 1272, 87, 1229, 908, -97, -1121,
- 168, -949, -891, -88, -1521, 596, 1512, 747, 259, -2640, 3297, 236, 1135,
- 500, 1288, 2137, -399, 380, -1022, -439, -1345, -514, -1828, -69, 770, -307,
- -693, -606, 370, -290, -1584, -1193, -834, 148, 404, 771, 18, -207, -1068,
- 393, -1392, -163, -807, 1152, -564, -1495, -210, -2692, -1930, -2043, 660, -58,
- -1329, -1511, 1339, 458, -536, -1669, 511, -210, 167, -2028, -1333, -1271, 661,
- -1274, -334, 64, -619, 1818, -811, 1078, 1446, -927, -1106, -984, 181, 235,
- 902, 44, -836, -1021, -298, 479, -916, -219, -811, 804, -1060, -300, -710,
- -163, -115, 1647, -480, 582, -807, 412, 1486, 972, -1188, 649, 326, -605,
- -109, 1607, 847, 1140, 266, -492, -1229, 912, 3582, 914, 580, 283, -375,
- -834, -1206, 1985, -468, -814, -702, 211, -700, -608, -113, 1086, -2231, 662,
- 581, -565, -131, -197, -39, 1113, 863, 236, -1199, -2557, -2587, -2859, 948,
- 822, 911, 448, 71, -1579, -959, 292, -1273, -1206, 474, -908, 929, -126,
- -1497, -608, 106, 371, -1552, 61, 1758, 2286, -1107, -1079, -534, 404, 2099,
- 1035, 219, -997, 143, -666, -652, 850, 788, -780, -118, -1156, -878, 675,
- 1530, -576, -1022, 1862, 1282, 75, -105, 604, -507, -3169, 907, -2181, 792,
- 540, 180, -1660, 1113, 2179, -2179, -1223, 567, 560, 544, 906, 580, -1054,
- -1474, -186, 110, -189, 1452, 1823, 684, -856, -1508, -974, 353, -1953, -1918,
- 418, -598, -513, 1332, -1457, 226, -905, -78, -1575, -1908, -2347, 923, -460,
- 1745, -2262, 1119, 2445, -200, 25, -1892, -1465, -1012, -1193, -797, -204, 784,
- 2291, -382, -782, -1097, -103, -1085, -802, 521, 547, 1020, 17, -1255, -948,
- 1733, 352, 971, 1444, -955, -1251, -38, -844, 1473, 1673, 1071, 687, 818,
- -109, -758, 1446, -1260, 507, -2043, 1091, -143, -573, 40, -705, -693, 1992,
- 582, -1145, 532, -176, 341, 802, 455, 858, 713, -47, -389, -137, 288,
- 63, -443, 499, 1048, 1202, 1044, 157, 472, -423, 135, 978, 1325, 104,
- -958, 465, 564, -14, 220, -1498, 330, 158, -601, -1414, -14, -29, -535,
- 186, -954, -468, 2492, -1869, -1194, 345, -835, -578, -838, 802, -596, -418,
- -898, 414, 91, 851, -824, -34, 193, -1276, 208, 593, 538, -175, -1954,
- 860, 843, -610, 617, -511, -339, -261, -1495, 833, -298, 637, -1384])
-rvsdata.xar2 = array([-1271, -841, -333, 481, -422, -350, -889, -428, 1077, 1158, -89, -2142, -2073,
- 108, 1335, 1105, -1332, -1663, 892, 3493, 1563, -2635, -4154, -1710, 1515, 2345,
- -125, -486, 426, 757, -346, 314, -222, 1476, 302, -1866, -1571, 84, 1022,
- 189, -1877, -876, -1912, -2325, -1025, 1024, 2600, 1539, -871, -787, -1235, 339,
- 1233, 2604, 1953, 721, -1234, -1307, -522, -514, -525, 183, 908, -532, -1267,
- -1713, -3107, -509, 2294, 3282, 1890, 497, -502, 310, 206, 21, 720, -301,
- -1644, -591, 1421, 1104, -209, -286, -1981, -1033, -2026, 1509, 3226, 2689, 1781,
- 1348, -1514, -1205, 353, -1682, -883, -529, 1531, 1704, 667, 180, -694, -1416,
- 607, 454, -71, 460, 22, -371, 2086, 2567, 1172, 719, -1157, -2347, -1052,
- 161, 243, 779, 266, 174, -497, 160, -729, -2110, -1661, -2324, -3568, -1843,
- 394, 397, -434, 689, 342, 35, 2084, 822, -133, -2765, -1154, -277, -204,
- 1777, 931, 1294, -13, -315, -256, -379, -1228, -327, -667, -2533, -690, 938,
- 302, -633, 2681, 3483, 289, -2298, -1741, 975, 1918, 592, -1329, -1176, -472,
- 29, 959, 1575, 1606, -423, -1031, -1095, -1693, -1649, -729, -748, -1, -709,
- -1788, -1275, -926, -447, -1674, -557, -93, -2038, -1667, -1488, 345, 3705, 2396,
- 709, 743, 981, 269, -1063, -443, 1222, 48, -868, -438, 569, 180, 689,
- -924, -1003, -148, 146, 531, 1564, 2620, 1050, 9, -3216, -1295, -1187, -725,
- 1016, 2190, 1911, 766, -2710, -1716, -1364, 1298, 2549, 2156, 1357, -1114, -1305,
- -1844, 835, 2470, 1359, 286, 81, 1404, 157, -1388, -108, 416, 261, -636,
- -685, 1076, 340, 60, 831, -170, -510, -1208, -2215, 999, 1410, 565, -272,
- -561, -967, 660, 1351, -835, -1247, 256, -2040, -1321, 344, 283, 21, 72,
- -1294, 1436, 2277, 876, -1185, -3327, -1474, 1622, 57, -1623, -1873, 1521, 2304,
- 219, -1423, 50, 244, -246, 1946, 2276, -164, -550, -1471, -2180, -1193, 2857,
- 3253, -1070, -971, -369, 556, 576, -1216, -2889, -2439, -195, 279, 139, -2099,
- -3201, -871, 2383, 2990, 447, 258, 989, 479, -1772, -361, 50, -312, 1627,
- 947, 176, -360, -567, -1008, -383, 845, 1273, 147, 478, 513, 1206, 1061,
- -837, -1988, 853, 2803, 4719, 2190, -804, -2626, -2234, -392, 1083, 288, 1115,
- 1238, 795, -1883, -2123, -2510, 395, 1737, 2869, 2179, 2827, 94, -2329, -772,
- 1781, 1614, -1626, -2855, -142, 1569, 1003, -705, -1781, 605, 628, 498, -1106,
- -624, -1367, -1280, -38, -387, -1173, -757, 423, 856, 732, 2289, 2085, -11,
- -1494, -2060, -1572, 308, 1245, 670, 525, -84, 1511, 1056, -1540, -1763, -375,
- 2672, 3936, 884, -1037, -785, -447, 957, 407, -1586, -2544, -477, 1314, 1986,
- 391, -1204, -547, 443, 2033, 628, -676, -667, -1001, -431, -537, -1894, -979,
- 974, 581, -382, -716, 4, 113, -926, -1185, -757, -172, 1504, 1560, 287,
- -1266, -948, -864, -2485, -1593, -27, -1018, 476, 936, -456, -682, 109, 1007,
- 929, -382, -959, -409, -410, 357, 584, -2100, -2092, -265, 1585, 2346, 1697,
- -1299, -198, 879, 1087, 172, -1276, -171, -1072, -1172, -197, 358, 2639, 384,
- -1606, -1566, -516, -229, 528, 2055, 2038, 798, -876, -2463, -2000, -1127, 780,
- 28, 212, 523, -1080, 234, -549, -1030, 410, 64, -231, -1080, -608, -578,
- 611, 1897, 87, -1736, -1585, -1852, -2285, 415, 1138, 267, 1097, 125, -512,
- -1097, -836, -42, -949, -1257, -219, 161, 683, 1185, 513, -1042, -2096, -333,
- 839, 1037, 742, 1187, 3658, 717, -917, -794, 1338, 255, 138, -828, 291,
- 1818, 1772, 137, -801, 396, 674, 341, -273, -729, -548, 895, 358, 582,
- -172, -949, -1650, -1517, 708, 2298, -472, -2127, -1215, -1106, -385, 1550, 2094,
- 2035, -583, -1289, -1367, 258, 2102, 2325, 339, -790, 1122, 1697, -490, -308,
- -350, -3053, -1991, 78, 1039, -541, 36, 2326, 890, 1044, 481, -425, 204,
- 502, 641, -62, -1041, 166, -362, -1971, -1494, -219, 729, 151, -1283, -2678,
- -1204, 443, 671, 1409, 2225, 2127, 1029, 251, 1096, 606, -201, 2034, 2492,
- 1384, -376, 106, -615, -729, -816, -2263, -130, 1114, 2185, 2099, 490, -1779,
- -1501, -1260, -1148, -377, -1248, -214, 1965, 2425, 1216, -2880, 385, 1984, 2530,
- 1532, 1249, 2370, 873, -107, -1544, -1620, -1870, -1200, -1853, -952, 936, 917,
- -427, -1407, -542, -20, -1329, -2246, -1967, -303, 1145, 1838, 916, -393, -1841,
- -883, -1178, -664, -749, 885, 518, -1523, -1687, -3280, -3711, -3372, -182, 1482,
- -52, -2294, -470, 1229, 683, -1737, -1220, -317, 524, -1451, -2756, -2751, -161,
- -27, -275, -142, -595, 1413, 617, 865, 1829, 103, -1938, -2586, -919, 793,
- 1996, 1244, -839, -2314, -1730, 252, 150, -225, -1066, 63, -476, -713, -1042,
- -641, -107, 1883, 1079, 504, -944, -595, 1482, 2455, 36, -550, -132, -435,
- -391, 1512, 2252, 2185, 888, -874, -2372, -549, 4330, 4652, 2136, -334, -1711,
- -2035, -1979, 1419, 1657, -198, -1689, -1041, -688, -639, -279, 1182, -1146, -845,
- 477, 240, -178, -459, -318, 1088, 1893, 1206, -1180, -4105, -5281, -5031, -437,
- 2988, 3519, 1770, -273, -2682, -2968, -741, -383, -1141, -248, -535, 625, 641,
- -1297, -1966, -818, 700, -584, -756, 1445, 3821, 1227, -2007, -2753, -795, 2840,
- 3704, 1762, -1440, -1890, -1458, -873, 881, 1929, 323, -824, -1976, -2047, 26,
- 2574, 1471, -1132, 221, 2024, 1584, 150, -68, -636, -3644, -1691, -1712, 268,
- 1610, 1334, -1398, -672, 2340, 29, -2370, -1343, 670, 1752, 1973, 1282, -1015,
- -2927, -2020, -43, 787, 2103, 3111, 2122, -715, -3141, -3129, -580, -852, -2310,
- -1003, -246, -208, 1288, -322, -675, -1284, -768, -1547, -2762, -3783, -722, 853,
- 2789, -458, -641, 2161, 1850, 424, -2477, -3659, -2700, -1523, -666, 25, 1137,
- 3188, 1600, -1096, -2774, -1774, -1117, -809, 432, 1297, 1841, 842, -1502, -2570,
- 428, 1979, 2341, 2327, -264, -2626, -2007, -1137, 1567, 3495, 3083, 1406, 401,
- -491, -1351, 610, -96, 125, -1895, -487, 415, 2, -166, -838, -1281, 1387,
- 2332, 27, -612, -680, 103, 1224, 1383, 1353, 1104, 160, -813, -868, 0,
- 498, -45, 214, 1242, 2089, 2094, 787, 55, -773, -511, 956, 2346, 1502,
- -929, -1029, 205, 664, 649, -1310, -1042, -21, -96, -1481, -1150, -208, -127,
- 189, -739, -1154, 1938, 258, -1957, -1349, -936, -653, -892, 414, 182, -480,
- -1372, -444, 422, 1411, 93, -665, -386, -1252, -600, 739, 1429, 599, -2190,
- -1192, 985, 774, 744, -302, -953, -872, -1716, -103, 477, 1071, -766])
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/y_arma_data.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/y_arma_data.csv
deleted file mode 100644
index 45c5788..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/y_arma_data.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-y_arma11,y_arma14,y_arma41,y_arma22,y_arma50,y_arma02,y_arma11c,y_arma14c,y_arma41c,y_arma22c,y_arma50c,y_arma02c
--2.047076594847129505e-01,1.394072226185005814e+00,-7.618372133529945911e-01,-4.064523617925941412e-01,-9.835047173983663127e-01,6.143504692328910499e-01,4.259432631872511976e+00,6.738236941732065333e+00,3.921172305736134511e+00,4.841410872820988587e+00,3.567921955380871424e+00,5.020264181479198839e+00
-2.537649126243639586e-01,4.567375047627766360e-01,-1.169637832882710393e+00,-2.904655508294423649e-01,1.933152260847050830e-01,6.429869148939288959e-01,4.398428009976181663e+00,7.368314202772689114e+00,5.710735793018799633e+00,4.558666615338087702e+00,5.627433726992007834e+00,4.271942218168720551e+00
--1.614848622683232593e-01,-1.272326703442733464e+00,-2.554150415613765990e+00,4.377894222244522737e-01,-3.224625683687642463e-01,-5.829343493568055479e-01,3.894220064383869140e+00,6.410706525591642446e+00,6.653104231835761162e+00,4.369696549146111941e+00,5.441687121317324127e+00,3.719432040526521988e+00
--8.586475013185908001e-01,-9.458320913213410508e-01,-1.416810339850927747e+00,1.292133237669666590e+00,-2.434714935535151170e+00,3.225999093088858238e-01,4.254945463650283699e+00,6.774751472682821074e+00,5.813209651463687067e+00,4.848351385863497676e+00,3.693440719499076152e+00,5.799271295947738381e+00
-1.127289339992149531e+00,-6.883717809906914065e-02,-2.004237998790745490e-01,1.802924788488174057e+00,-1.990610824223469910e+00,-4.553547958839077037e-02,4.888509710140729325e+00,4.026927273300911381e+00,5.506526563168436361e+00,4.708763021171975538e+00,2.747097130265434117e+00,5.199862796144467225e+00
-2.926896038343052453e+00,-8.584562919036573536e-01,-1.274069813257599826e+00,-3.157042843910952135e-01,-2.664447937057304316e-01,5.833794675456229761e-01,6.113454539016629496e+00,2.075139727032463632e+00,6.999617863858643929e+00,4.004972492948537521e+00,4.783782184444534735e+00,5.428226532398705118e+00
-2.775771947041553389e+00,-1.796823860810985218e+00,-3.435812286850086217e+00,3.328747540357390733e-02,1.713166700014400745e-01,1.287328621636036230e+00,5.768913584533245320e+00,5.364144882553992133e+00,6.220457380072278220e+00,3.279857874780836013e+00,4.382208504444793817e+00,5.760983622424917350e+00
-2.396092869971668371e+00,-1.374140342963603212e+00,-3.324410934220093150e+00,6.241378334643327142e-01,-1.008235022896845523e+00,-2.571874757040343296e-01,6.783227456396678789e+00,6.453556693243496234e+00,4.760031787665699454e+00,1.397159712575776425e+00,3.955895170740389766e+00,4.892141935490703197e+00
-2.664703373581160939e+00,-2.274295006054621204e+00,2.847437087200943573e-01,-1.677062469844210035e+00,1.071593491473753934e+00,5.943089576180543565e-02,8.764846998978599757e+00,3.134175247222279470e+00,4.618905799269997559e+00,3.832999293510881422e+00,4.169523377113049989e+00,4.820177423393641192e+00
-3.514120165236296778e+00,-1.695939107720390027e+00,5.749749943751873982e-01,-1.372251161366488947e+00,1.414936450756299369e+00,8.067203104089537558e-02,6.664487842459541511e+00,2.089710848527895237e+00,7.375027854593720456e+00,8.576140496669221847e+00,6.748639486536131216e+00,2.669498198821129265e+00
-4.079031639245426888e+00,-1.383046694106316643e+00,-2.344893313337678364e+00,-6.250943658791198176e-01,1.328692743772108553e+00,1.289696408214198620e+00,5.123872851709446508e+00,4.754158166466891267e+00,7.226677542929837550e+00,7.811349700243606975e+00,6.399961038027319304e+00,2.505802874791816404e+00
-2.115568895475858469e+00,-1.285696195785905438e+00,-5.410382313438887536e+00,-9.582233749130680822e-01,-4.514660067095999096e-03,6.906817862356203763e-01,4.624298391542022379e+00,4.532322449938698483e+00,5.895034864771226069e+00,4.201755661206154180e+00,3.841171273307598000e+00,3.901458429730415567e+00
-1.407990916849725771e+00,-4.315387699941466426e-01,-2.434441803202210153e+00,-2.143241193463130134e-02,1.991430048897706861e-01,-3.245252085642317263e-01,3.298440951207898930e+00,3.023850958378810461e+00,6.011888360633888873e+00,2.048413650493551952e+00,5.931427026305052586e+00,5.352527421085418347e+00
-1.381153138273853553e+00,1.084288569595046825e+00,1.475497484267840553e+00,1.675123411059225464e+00,1.269439435330158350e+00,-1.045172753525086096e+00,3.103686242816811269e+00,4.080448938513448809e+00,6.668471493814188022e+00,3.319703108792883661e+00,7.769291575371815028e+00,3.920245059994244663e+00
-2.468901196498200612e+00,4.531380836694007819e-01,9.757983087292898539e-02,1.159459620823443338e+00,1.329155575330689176e+00,-1.830503306089610316e+00,3.658159191813463718e+00,6.346035248965537612e+00,7.077166516280438913e+00,4.554699042844648105e+00,5.492605970846351937e+00,4.318612795940402371e+00
-3.211626130273146806e+00,-2.190557335162672814e+00,-4.025770289739019070e+00,2.374106873340324220e-01,-1.204791600774974603e+00,-3.953349523769545404e-01,3.372537397371419665e+00,4.291890175742812730e+00,4.582735795002996326e+00,8.003629851130945383e+00,3.299960257085285065e+00,5.863216575797151719e+00
-7.173325572515190096e-01,-1.440903136015097230e+00,-4.563025185706400144e+00,-7.098001117370973390e-01,-4.208258195771114041e-01,2.594451641987153057e+00,4.269616605460259784e+00,1.966875208797961960e+00,3.226094930911747038e+00,6.020287567355888214e+00,3.980251475991546162e+00,6.606646644611915420e+00
--5.344161775827541705e-01,6.575126326774392016e-01,-5.766210270892357936e-01,2.080044842860721221e+00,2.597569170595709132e+00,1.316246656649131541e-01,3.840933541237355975e+00,5.846674991729185145e+00,4.098018048564538773e+00,1.600830935090640228e+00,4.628502633768053265e+00,3.585462029244003368e+00
-1.138068288338715872e+00,5.410281705276032138e-02,2.214383099182642756e+00,1.981718727958543980e+00,1.324496153816917321e+00,-1.821106292140853622e+00,2.401856988014751337e+00,6.656277522679868497e+00,4.283437503067081487e+00,1.384202228703339532e+00,5.999512681027482586e+00,1.528291132932186436e+00
-9.991403387521694546e-01,-3.811617114262618733e-01,1.206231109078024222e-01,-2.586171993187719842e+00,-6.952960055817554164e-01,8.046298768301501925e-01,2.150521954723290996e+00,3.733293634828790175e+00,4.514158688834689848e+00,2.548048973349378077e+00,4.355070413414093622e+00,4.427199029031395838e+00
-5.611440100001408027e-02,5.262380750425947884e-01,-4.953603576685280174e+00,-4.320037329811369453e+00,-1.907598969450933768e-01,1.078018569695110784e+00,2.658257906111643365e+00,4.382200981413502561e+00,5.859367423091468297e+00,4.029777956216626933e+00,5.067531354897734097e+00,4.945705073361552628e+00
-3.301613052297280859e-01,1.746862891830231745e-01,-8.118789816136267490e+00,-3.003177430316123164e+00,7.712387043869168846e-01,-8.794142886128656356e-01,4.258293663630687398e+00,6.153065962604464367e+00,7.355119360103516968e+00,8.075010494827537855e+00,4.923466375553967822e+00,4.909788839978878272e+00
-3.663509651997355565e+00,-2.874794400657883831e+00,-3.617695985036168072e+00,3.937863948442860362e+00,5.309231030866365941e-01,-1.234990868812363196e+00,4.339908625421150745e+00,5.340219971922237185e+00,5.515921408322084218e+00,7.798414613260441719e+00,6.873233673651917286e+00,5.826629709744591601e+00
-2.863535086443183886e+00,-2.579467235640812817e+00,9.915726649245641955e-01,7.298812062776931064e+00,3.223797297234989312e-01,2.727270606602266056e+00,4.237569677073842023e+00,3.860558543165812484e+00,4.509396332971866705e+00,4.004854402537130653e+00,5.452430701800734525e+00,4.871357265495228184e+00
-1.213134378267161750e+00,2.413579806889860346e-01,1.303675711696499651e+00,2.444639467618930695e+00,8.915073927774812557e-01,5.015301818356774355e-01,4.572111121969630432e+00,4.512712257921455361e+00,5.355957290748269983e+00,4.794247150280835257e+00,3.660108072753280872e+00,2.429556238521846101e+00
-8.319915033095105494e-01,-5.188516244935171828e-01,-5.687570288109578875e+00,-3.038003124026212642e+00,-8.719733907399780382e-01,-1.464298441207599888e+00,4.048062396070275071e+00,5.403303064625879060e+00,6.407665900443153539e+00,3.134788283354405181e+00,4.228899286686077730e+00,5.406063202984769944e+00
-9.700496358803369912e-01,-2.724024236513598485e+00,-7.053649446370281240e+00,-3.612813816796582422e+00,2.879464430993158297e-01,3.946224160478077891e-01,4.524770878655016482e+00,3.790844656041213234e+00,7.195887404329030623e+00,2.361511342912992362e+00,3.900621344854551253e+00,6.058011910665634048e+00
-1.357224041730048292e+00,-3.094356072793469803e+00,-1.008363536011467332e+00,1.046340672032860963e+00,2.368592569932105540e+00,-3.138197009761437006e-01,4.525455283146966323e+00,3.669994645124985411e+00,6.551577792201502604e+00,7.779296198399537232e+00,3.376143193000717080e+00,3.340663942774611428e+00
-1.202178532925514798e+00,-1.850307710282078189e+00,3.886862348001593581e+00,1.589445207794040638e+00,1.217857516123329376e+00,-9.122994252851901464e-01,4.653375618486451870e+00,5.177928739455077256e+00,5.315906173013112301e+00,6.297915587978545560e+00,1.981820108745978359e+00,5.388309049864337119e+00
-2.245772790529634744e+00,-1.516478417599159467e+00,-3.673322539992257552e-01,-5.204825623456811323e-01,-1.025887496633735574e-01,2.428428862906994556e+00,4.180686233113284800e+00,3.392074251314660671e+00,5.699029251570543408e+00,5.296396093445565612e-01,4.542328457752607740e+00,6.241995262291350599e+00
-1.441119035565789019e+00,-1.826409292124326011e+00,-5.940822212463317875e+00,9.652051478386652894e-01,4.052444759094290805e-01,1.610732939294483357e+00,7.038160704560359804e+00,3.766346935888272185e+00,5.999371763645894085e+00,1.156864407980374487e+00,5.145335831238890378e+00,4.119984700183874970e+00
--5.465696330630986921e-05,-1.719338771172416180e+00,-6.508425086827775985e+00,2.181828702209119619e+00,1.108177098201627686e+00,-1.781879468348538165e+00,4.807427395222168443e+00,4.255280106544435448e+00,7.009375617216063503e+00,5.319221720194350134e+00,4.137737097068860948e+00,3.233320057309073015e+00
--2.661176385278094081e+00,-1.395987375772736128e+00,-1.270103392180484292e+00,1.110821262560730549e-01,-1.029079612725556148e+00,-1.728302907832516833e-01,3.457531085129489146e+00,7.444270232949445898e-02,4.591567366097629943e+00,5.417009442651860240e+00,3.131299035156448696e+00,3.515272342145693507e+00
--4.686224156394166229e+00,-1.850331606786910221e+00,2.184759340112722548e+00,-2.041081623865537598e+00,-1.542782696707952095e+00,4.958978337833580552e-01,3.116982008029290707e+00,1.386033864121762438e+00,3.652533172280716833e+00,4.691688663117650648e+00,4.512583138494862922e+00,4.507587864330768745e+00
--5.026691791720129920e+00,-9.200819435921128164e-01,-3.295321237037077688e-01,9.793109676417565135e-01,7.543043591655402835e-01,-1.011195992545088074e-01,3.457098235710537537e+00,6.072136861732305491e+00,3.598198391522849260e+00,4.228970068897724310e+00,4.217642302531044329e+00,5.607026952466911851e+00
--3.511138640213175677e+00,-9.744145346579486944e-01,-5.043254897882222032e+00,6.789267989097660383e-01,3.161919450570618739e+00,-1.171798760336695056e+00,5.461214551316098564e+00,5.287352572723380106e+00,4.399439539341723382e+00,3.500205802814739364e+00,5.656071780409132721e+00,4.741463207851570161e+00
--3.703237619293762162e+00,-4.488315090217092518e+00,-4.263381366707648112e+00,-1.872655445832931642e+00,1.413418391066825208e-01,-5.997420261799208951e-01,6.633267216554529888e+00,2.943362263037925697e+00,4.342340090444273493e+00,4.751667085587318873e+00,4.529073913784968042e+00,3.139337629007510344e+00
--3.100678161902562735e+00,-2.501030560910058931e+00,3.785869496888783631e-02,-1.776633578233102639e+00,-6.457530033435663341e-01,3.069899785414676785e+00,5.720232385386712970e+00,5.392964007325414144e+00,4.158870978293464304e+00,5.953350079983978915e+00,3.232746935335669036e+00,5.658934085315204143e+00
--3.347081575849269797e+00,-1.875566408155554532e-01,1.373805813135958065e+00,-1.175124539027547543e+00,-3.084582261338173481e-01,2.304849343261525796e+00,5.650071425020970040e+00,4.727432440567961081e+00,1.757391563622786812e+00,5.363571028525145223e+00,2.433652791019824235e+00,5.946684745186741949e+00
--2.549657823098020248e+00,-1.580664376558950091e+00,-2.049692467577199917e+00,1.306927984545027899e+00,4.255303096775274185e-01,-2.131719678615784375e-01,6.492867362025509514e+00,1.882685262636422330e+00,4.711271395093374892e-01,5.254387646473788642e+00,4.361070860586611531e+00,6.288490364663671173e+00
--4.155153224244511279e+00,-1.638103590486664984e+00,-6.264898634428784696e+00,1.951636392749369397e+00,-1.053489723650152143e+00,3.729657763428336770e-01,6.853313246252220381e+00,3.201130691610448054e+00,2.033728470151813905e+00,4.500078973468650823e+00,4.296945244227881489e+00,2.029974511760805456e+00
--4.141704456103338927e+00,-1.009012869991860128e+00,-5.401447994645365291e+00,-2.514643434433178060e-01,-2.706026508554485677e+00,3.268482030258671456e-01,6.328235046023614530e+00,4.065915530392780752e+00,5.646001626406992102e+00,4.280884981122723865e+00,3.923160234900610277e+00,-2.746902120133274394e-01
--4.718113904319099383e+00,-1.802684091603253824e+00,-1.506657146317793128e+00,-1.004083775292140324e+00,-2.609366810774318424e+00,7.097452710287838196e-01,5.863057920820553548e+00,3.192879991044643706e+00,4.833576665416502216e+00,4.142242653072421454e+00,3.255009115094919636e+00,4.959172727951663973e+00
--5.049019775254445896e+00,-1.381563077028357345e+00,-3.607815631934923606e-01,1.537058909742779589e+00,-2.307742759492474427e+00,-1.690775288074842120e+00,5.308433259777813440e+00,3.269680422232153827e+00,1.538660360555280437e+00,1.342948121733243738e+00,5.136919446565984870e+00,5.150108154036455943e+00
--5.433552651702444614e+00,2.818885562711463677e-02,-3.279417244823289224e+00,1.545791434687723731e+00,-1.477440056825851222e+00,8.359621473279092996e-01,5.133107815890593173e+00,2.991393703367609014e+00,-1.508745328376193129e-03,2.571244256838248532e+00,4.478464671550294263e+00,3.667520676780307909e+00
--4.246275329602491766e+00,-6.130663520806225453e-01,-5.845062440614010590e+00,-1.952098650681894476e+00,-1.746264638512076361e+00,4.958869789032507303e-01,5.315079959506445739e+00,3.972743925412632215e+00,2.793269678504992193e+00,5.584940290483441316e+00,3.892535432986085286e+00,4.697240467623889693e+00
--2.706499974809537523e+00,3.924922185885175718e-01,-4.105156923265349533e+00,-2.044592367564284086e+00,-3.178980144414182973e+00,-1.493057516814380037e+00,5.021757939751064548e+00,6.339447365323519712e+00,4.945394441279040265e+00,5.264834653484440352e+00,3.886343321092996739e+00,4.424725523759203583e+00
--2.651467077068968337e+00,2.492099512157600394e+00,-7.841257565010852915e-01,-1.377536061630622255e+00,-3.839461700572829983e+00,2.582115106873133392e+00,5.587764431662366249e+00,5.405066853022743700e+00,3.860237202046896243e+00,4.107108869533949935e+00,5.487652977036796109e+00,4.996723475156893635e+00
--1.921174944783671457e+00,9.412006395738451436e-01,-2.625864606616613028e-01,-1.331777564711734474e+00,-3.478711161053920087e+00,3.905701109020744077e+00,5.133713232906468527e+00,4.494368763835435487e+00,1.307926951608490818e+00,3.830865832317300601e+00,5.178034455680792902e+00,4.871516117668107881e+00
-2.481098347911347979e-02,4.798757746073640806e-01,-4.210669215598827897e+00,1.519657317589789836e+00,-2.204219357018442960e+00,6.409508337405410705e-01,5.855966104246856929e+00,4.718316150574986878e+00,-1.208460825345432532e+00,3.876182703520312245e+00,5.371607561800637143e+00,4.279769579332299401e+00
-5.608947015146614756e-01,3.307660883373833016e+00,-5.302269633643058810e+00,1.154513370240555448e+00,-2.508472975056526444e+00,-9.069255698958078593e-01,7.453500872994089477e+00,6.136685070718774782e+00,1.577779596919119953e-01,5.811348619317231012e+00,4.013359064508622787e+00,4.274173284761452862e+00
-6.918019772089871733e-01,1.466478696550987060e+00,-3.621146700997774914e+00,-1.135210265489079218e+00,-2.270093923835809324e+00,-2.154054312539678939e+00,8.548631459854339809e+00,8.580677927587142761e+00,3.573725713298050888e+00,7.419094220950942287e+00,2.303293360327956396e+00,2.738280109656968442e+00
-5.933258203294380362e-01,-1.131123560438463516e+00,-1.605861339065547178e+00,7.302998686819989205e-01,-2.052409032866207905e+00,8.576733138557379732e-01,8.266456399981672476e+00,6.358139262462048080e+00,2.805261999954581142e+00,6.240747420223197395e+00,3.704750869121015366e+00,4.521147653224271146e+00
-1.445654395659279334e+00,2.089564369019218382e-01,-6.108205565391249259e-01,1.528236749888444823e+00,-2.038589923301223017e+00,3.072549047348906104e+00,6.531145968474424635e+00,3.659707778937812517e+00,1.361490758831767067e-01,4.413772251719586315e+00,3.702561277299750042e+00,5.074465917376252300e+00
-2.763119467305571675e+00,1.169930847882693081e+00,-3.410135203575566543e+00,1.227364972010503097e+00,-3.034243912264597220e+00,-2.259853471281571657e+00,6.228711353324530187e+00,5.390345214270871210e+00,-7.765975881852327234e-02,3.032668654013584320e+00,3.620297372992901330e+00,3.283416564361951284e+00
-1.617596157559101133e+00,9.274198691471612355e-01,-4.341813534124730367e+00,1.443200242866820027e+00,-1.215922849984176546e+00,-3.882836332642096711e+00,5.969829029753539906e+00,7.359973068273208519e+00,2.975172798878381375e+00,3.885288949269857905e+00,3.261339717609220035e+00,4.941919813889841251e+00
--6.576508653258907877e-01,1.632997792991522257e+00,-4.102480222204741622e+00,-2.327795448610795681e+00,-1.266255394890709596e+00,-1.779812888348156541e+00,3.960817346595896460e+00,7.353020846842392544e+00,4.432314530601574987e+00,6.348169316565152265e+00,2.502149813883460805e+00,6.128471791598121499e+00
--1.013240803735802942e+00,-8.014628681214892580e-01,3.914986840899605802e-01,-4.182871213923220921e+00,-2.436187298675244861e+00,9.875968433588133699e-02,4.923257732371997264e+00,5.474074476059730188e+00,2.808478061409179549e+00,6.312024025740812228e+00,2.064002107289165000e+00,4.387602522912947833e+00
-6.197151744087525671e-03,-3.149234092173039734e+00,-1.654102488856168396e-01,-3.412852847139776769e-01,-1.374484405133386655e+00,3.008339685703273148e+00,7.066411960496671973e+00,5.893878504480790426e+00,-6.355295163345040521e-01,4.776525929809087856e+00,1.379400472880342399e+00,2.425387915421347351e+00
--3.904493631610490012e-01,-1.264212846324545669e+00,-2.225130675970304228e+00,3.537047195554293033e+00,-1.110739285306775681e+00,1.763013865152736503e+00,7.669229880295137747e+00,7.033887082352526576e+00,-9.855532089657668138e-01,2.673791490967353468e+00,2.979947600959134135e-01,4.784590574609719482e+00
-3.385595454556616923e-01,8.543168756601026148e-01,-3.998827467911054701e+00,2.792529087814373145e+00,-8.980532521212729602e-01,-3.434307464143248279e+00,6.673272479165506255e+00,3.658839214659449279e+00,2.051941196236151566e+00,1.813070366847800319e+00,1.733569923426339532e+00,6.495342894923719967e+00
-5.457907858885175933e-01,1.406319903308074437e+00,-4.003999994455309519e-01,7.598421744986120219e-01,-2.194432074523073872e-01,-1.521827718638907312e-01,6.771372674723006746e+00,3.146117206284628764e+00,5.052401051425627898e+00,3.103934056600683444e+00,2.788192216146352820e+00,5.148535415200887755e+00
-4.558412795895107061e-01,1.104444297834384775e-01,3.593332594690472170e+00,-4.491949968717319219e-01,-1.249186860862924409e+00,4.848963876141733631e-01,7.417506132955815623e+00,5.706804425219697663e+00,1.215304517010838303e+00,4.780543049014910117e+00,1.268904798642988219e+00,4.344918043171323241e+00
-1.029599828608850798e+00,-3.071971053391180928e-01,3.348362969849801640e+00,-3.252650131375099285e+00,-7.798963774535212501e-01,7.979538575667203260e-01,4.762983994516790887e+00,5.907165620073715928e+00,-2.723269413874934486e+00,4.328361348759193206e+00,2.685950096418165955e-01,3.347897102570498884e+00
-1.859740361719270263e+00,7.446068548254567432e-01,-5.897576147674840064e-01,-2.397830480271299081e+00,-2.495209820399827194e+00,4.455774218736996417e-03,2.135666466920343343e+00,5.503827401310089407e+00,-2.574279522444243185e+00,4.861401535483356184e+00,1.201085947131323994e+00,2.655449252937117421e+00
-7.374741802790536482e-01,2.322398825206865025e-01,-6.388607919241386934e-01,1.558201954142270029e+00,-1.169242667594004859e+00,7.156079652442062233e-01,1.209797746695326470e+00,3.280608636259185751e+00,2.433976210884713609e+00,6.860566217677655843e+00,3.428522783072619262e+00,4.354001919376115026e+00
-1.950582162144144371e-01,1.650484120201193006e-01,9.187050848428093275e-01,2.397232901981297459e+00,8.846211368723200241e-02,1.915130839190936074e-01,2.395860524137094050e+00,4.892194719829086047e+00,5.158820345845164468e+00,6.636110962149698977e+00,3.735949827975016291e+00,6.185136809968994065e+00
--2.166162878878472142e+00,3.580732411560658135e-01,3.184832216671073635e+00,1.162138682750387897e+00,3.518870334769891306e-02,-1.993834323159580979e+00,3.195440828486001195e+00,6.371795030099142387e+00,3.311349987162778508e+00,5.273050129739965897e+00,3.450213330997202288e+00,5.173169406007716020e+00
--3.083572858198748712e+00,2.049828050997768880e+00,1.369940080228404966e+00,-1.968064312283646089e-02,-1.465151629194637373e+00,4.167797826275299600e-01,3.621458553235387345e+00,5.113646283697613981e+00,-2.572042403930123733e+00,3.535381998201279075e+00,4.275033910035618945e+00,4.819187497449219038e+00
--3.759345714741513689e+00,3.866920217978569774e+00,-2.103677830170176399e+00,-4.413827482702367688e-02,-1.884494713061559912e+00,-1.664631160098107854e-01,3.824917394299513163e+00,6.739145715447541818e+00,-1.224305480377219979e+00,2.002436272864535738e+00,4.451854545236884064e+00,5.366281616039342950e+00
--4.578524685542856076e+00,1.778297781524767363e+00,-2.342573708673762134e+00,-1.198012191420462891e+00,-1.087814814573651923e+00,-2.086338604224302173e+00,4.904593866914863654e+00,6.667415099684595781e+00,3.719124336327230829e+00,5.253414586500423589e+00,3.973608202969439951e+00,3.507768606291574276e+00
--2.825684221751323832e+00,1.017035095562614178e+00,4.304519462972633548e-01,-1.308161149994459427e+00,1.808840797870643113e+00,-7.167306005669671354e-01,5.610262983927929881e+00,4.565759051248619471e+00,6.723464872045026297e+00,6.383075616093323745e+00,4.233965708217838575e+00,3.808504549699757824e+00
--1.019503719482324655e+00,4.065875506696980501e+00,1.787319612937320334e+00,3.785871797822472073e-01,-4.859598417414798810e-01,1.860761205100296634e+00,4.634366340916597160e+00,5.953031621103274773e+00,2.001161800363860266e+00,3.602337542990413866e+00,3.525568024920474830e+00,4.793193174110071730e+00
-1.786485900516896486e-01,3.602429925837669522e+00,-3.578127110716060322e-02,1.737775079834362746e+00,-2.223910956932633631e+00,-6.312674771699231524e-01,4.791120446589096638e+00,6.647638521125487365e+00,-3.934713074554867518e+00,3.509959809463994773e+00,2.288498110193316837e+00,3.623256074928376869e+00
-1.377030533515761768e+00,1.868948230854079462e-01,-2.055257803764825919e+00,3.105518687464257077e+00,-2.031096529580538324e-01,-1.283138892990953739e-01,4.735750670689223618e+00,6.241461733830655056e+00,-2.176226623923146697e+00,3.986486597268589449e+00,2.201362078044586390e+00,5.134844960398845970e+00
-8.802257136493027989e-01,6.991610167673095733e-01,-9.424059896640486489e-01,2.691141223314705844e+00,5.549848900595333312e-01,9.033152868585698769e-01,6.019697038791218091e+00,6.081796153028275143e+00,3.477088450765857708e+00,4.767849061984209769e+00,2.942893996062047712e+00,6.421923977825514385e+00
--1.381855267987889269e-01,3.358675920631863043e+00,-1.269793476586484893e-01,-1.901853822405958461e+00,-6.386590191962151497e-01,9.989271146097629117e-01,7.635877472799797339e+00,3.757307194184470678e+00,4.359092498585783737e+00,4.700958837177121374e+00,3.883273996083135504e+00,3.670302715800173754e+00
--1.242603731882978346e+00,1.179047161150432732e+00,-6.655607401899660269e-03,-3.935150388695539458e+00,2.071500264828480820e-01,1.416157323149925595e+00,6.199934806643137009e+00,3.645732419870664653e+00,2.646933395806181366e-01,3.664391908397746533e+00,4.501513758231745932e+00,2.208611795199703298e+00
--1.980575304377616641e+00,-1.023312785625449362e+00,-1.076612247841705505e+00,-1.100154803106146328e+00,3.105740538097445658e-01,-1.219956835939274509e+00,5.805317603722760289e+00,4.728494949076917919e+00,-3.770431797980794641e+00,4.421206940584860412e+00,2.599085846756127083e+00,5.651612737237668327e+00
--1.516710654879325659e+00,-2.323655834268085751e-01,-1.979048757027758842e+00,1.308402345296667990e+00,4.294516415566841938e-01,-2.959675111221924393e-01,7.029773949233699248e+00,3.801580229547636414e+00,-1.745096512269221911e+00,5.483005158758311737e+00,3.949109605587119098e+00,7.534620038935655018e+00
--1.008203449196294343e+00,1.018038906638925600e-01,-1.753742555218650301e+00,1.038464361603437247e+00,-6.402963602107262231e-01,-6.128757175426355897e-01,6.356158567751506894e+00,1.796323243505194789e+00,2.363618419278966876e+00,5.121392245046798131e+00,3.177370768889981711e+00,4.039345223032076326e+00
--1.895911417887633732e+00,-1.353493576124875197e+00,-4.044122617485270688e-01,-1.680421006422703645e+00,-2.941734439100746057e-01,-1.290065374186449842e+00,6.494096475458992046e+00,3.748179576591863071e+00,4.345436684232510061e+00,6.504187099950051731e+00,4.161836780587097273e+00,3.639340715987385177e+00
--1.010428440734555622e+00,-2.913311355246178458e+00,2.987635913468353333e-02,-3.279635424953385225e+00,-5.459629222529611692e-01,1.379276987703866197e+00,6.519992428468716739e+00,3.821967605340175211e+00,-1.366874441741663837e+00,5.596444265884471747e+00,3.368739435092725110e+00,4.269651927955164794e+00
--3.836429733507723538e-02,8.992082546887905092e-01,1.676376391647649289e-01,7.869692148824882771e-01,1.483872795671443257e+00,-1.291049843292832788e+00,6.845329173990874594e+00,1.840953010689553970e+00,-4.601262519633497305e+00,2.963292356885109946e+00,4.284365403802066652e+00,3.582885009051825165e+00
-1.133727084981247302e+00,1.667861749572196572e+00,-1.002822474434478472e+00,4.399034951128379056e+00,7.289220369490914120e-01,1.313710382185457881e+00,7.786877049577780596e+00,2.650399780779336911e+00,-2.175503178058280973e+00,4.858432397219559107e+00,3.588870920164624501e+00,3.967739611535218813e+00
-3.028928456183230811e+00,-2.343504079657432015e+00,-1.735220721547378053e+00,1.502014569001267841e+00,-2.000598529814214821e+00,3.063481019302902730e+00,8.711264538275468539e+00,3.939224384803575507e+00,2.306019998494040379e+00,3.869607166962059530e+00,4.493807489500436070e+00,5.438974973144796721e+00
-1.912884418398078878e+00,-1.017257808087804083e+00,-1.563967274598344392e+00,-5.979828118169634443e-01,-1.818763994069724443e+00,-8.957388571460802584e-01,7.842133100651661692e+00,4.706804462653856547e+00,2.062018851046006684e+00,2.013173749054140593e+00,3.174823864850833566e+00,5.055864408312224612e+00
-1.936123025836812950e+00,-2.881807603031397713e-01,-6.322762488805153680e-01,-2.405318421708156351e-01,-1.117212170935863585e-01,-2.089224422518605184e+00,6.859814222292866859e+00,4.305888056446495860e+00,-1.504652401585081734e+00,2.724891608993822878e+00,1.953893529791669970e+00,5.706103435960124592e+00
-1.618221552723499768e+00,-8.002646754975277776e-01,-1.541544171952438314e+00,-5.183997404836993006e-01,-1.770290809661849929e+00,-7.887086637616680385e-01,5.784084225940442359e+00,3.699792675914003404e+00,-2.693492530826773645e+00,3.368124005382250985e+00,3.150094770688928847e+00,3.256005576777363686e+00
-2.080028156160730113e+00,1.305113373605160998e+00,-1.579242564349135458e+00,-1.031759963327423257e+00,-2.296390069112169030e+00,1.113842869659726453e+00,4.258537816670777687e+00,2.666290978369139530e+00,6.042940022593121796e-01,3.276888245125995969e+00,4.134579687760838063e+00,3.667555485766595069e+00
-2.067576750771584759e+00,1.650518389633325311e+00,-4.526871086243544617e-02,-5.336818663506125437e-01,-4.757304941173889912e-01,-2.213097572202314289e+00,4.381036304112623014e+00,3.610682949304262923e+00,3.614310001038989917e+00,3.483275795388367513e+00,3.583129797372695435e+00,6.389563758440964136e+00
-3.786017738921322096e+00,-4.475021169250423814e-01,1.094641211652286561e+00,1.816604243070493174e+00,-4.137960824756630185e-01,-6.128853266638312203e-01,4.872969010800280998e+00,4.909625339754276396e+00,2.644042578184389924e+00,4.099073312922418388e+00,3.757909776778407540e+00,6.151163093415396688e+00
-3.483896602799633424e+00,-1.711015863873070142e+00,-5.104956170019500084e-01,2.859627247942449380e+00,6.568479639301256778e-01,2.204250097643949413e-01,3.773568767145410785e+00,5.060001513972095744e+00,-4.371107711584041766e+00,4.335962442428765939e+00,2.918503197900284896e+00,5.090574584299498717e+00
-4.576394942912266117e+00,9.426496451287436074e-01,-3.019032842906256064e+00,1.798851426301030676e+00,1.871164952159827033e+00,2.498610384954699781e-01,4.798982163132473389e+00,5.230029489935797749e+00,-5.885922879260423457e+00,5.282686299998096580e+00,3.374482995803665730e+00,4.608386496870978455e+00
-4.163200436344271615e+00,2.165441207107301036e+00,-2.376162131368675379e+00,-1.205931204947915392e-01,1.637935602027619009e+00,2.460981688298094383e+00,3.263146420542350601e+00,4.191488902458624821e+00,-1.815598761535369476e+00,6.212258418129863458e+00,3.817028694278706613e+00,3.317411050370447256e+00
-3.928017036429528375e+00,1.333673631104954627e+00,-6.458178088186522503e-02,-2.614809517409371509e+00,5.404482446485152636e-01,9.982797489639411159e-01,1.248171468675098428e+00,4.857115197313684796e+00,2.164447559332584703e+00,6.784390463654808912e+00,3.026009329226857947e+00,4.269082725882513252e+00
-3.342461135564160024e+00,1.813969413192767943e+00,1.271570493954519376e+00,-3.241552141702179313e+00,-4.107566534691114990e-01,4.554059273203925340e-01,1.474089932010938409e+00,5.396862418488867164e+00,-1.335624732277542748e-01,2.423500390873732258e+00,2.723503842105398753e+00,5.101459630326847794e+00
-1.799652716973078714e+00,6.944756218125076597e-01,-4.194005994748716826e-01,-1.083790345331669958e-02,6.616246977677708863e-03,-1.257618932044302529e+00,3.330856688646777641e+00,4.323617273943576755e+00,-3.618646261984716617e+00,1.108704578913732419e+00,2.418932105367774810e+00,5.699769803981489247e+00
-1.672723233610053040e+00,-4.900712705065484592e-02,-2.612987182637256378e+00,3.631112288887047956e+00,-1.299422808443319033e-01,-2.561113511042099944e+00,5.022410746851131869e+00,5.238189687817999207e+00,-5.493461308644604912e+00,5.161521639309378351e+00,1.877491626970969385e+00,4.035544796621502783e+00
-1.611958406255827869e+00,-3.091732562761747571e-01,-2.765880768238858867e+00,2.818067235798883186e+00,-2.986442384781843873e-01,-9.983095628402852695e-01,7.515330779140204420e+00,6.175506103179614570e+00,-1.835135034308899904e+00,4.823193971936775348e+00,2.719501996436998859e+00,4.329517824313737329e+00
--3.032516886443232806e-01,-5.896004093191060669e-01,2.372919865267558714e-01,-5.532374295282154186e-01,-3.508148009550304258e-01,9.537541883800372267e-01,7.701903546473513273e+00,6.350400019395164186e+00,9.933807002980103995e-01,3.613308445084823628e+00,3.691216874039355833e+00,4.982059011101596546e+00
--1.337959007393631605e+00,-1.002276626933851666e+00,9.579227200033104683e-01,-1.678868230406534767e+00,1.037460164619667724e+00,1.764842439121176110e+00,7.461032443895634358e+00,5.762777110943723358e+00,5.819435959838257233e-01,2.926436880405554497e+00,3.826542669273639952e+00,4.704638029968001511e+00
--1.233022460530211362e+00,-5.743711226531966751e-02,-1.380807697986606186e+00,-3.842982498171382044e+00,-3.134900402257079222e-01,-1.635880325408218816e+00,6.701998499399708820e+00,6.226440851859729619e+00,-2.691285694757140412e+00,5.804829449411999853e+00,1.525138823745268990e+00,3.493815860942671936e+00
--1.865205496337602131e+00,1.431710762843489970e+00,-2.718995054907896503e+00,-4.593443294069448513e+00,-1.383122156873124453e+00,1.309052096583117608e-01,2.337293587335182110e+00,6.260320734918286334e+00,-2.818298318179969009e+00,5.260742496647727862e+00,3.769612237166608537e-01,5.288363853086943678e+00
--2.206628938695722297e+00,1.551514493449068777e+00,-2.413132556106665660e+00,1.178316695476375520e+00,1.457335410974213152e-01,1.204115957202990028e+00,4.698235367745162705e-02,4.896590014458261031e+00,-1.378430015980652179e+00,3.170740511370718551e+00,2.494619471374078135e+00,6.962789005562388667e+00
--1.860135976104381417e+00,1.798906615382426022e+00,1.434350091326882515e+00,5.291584491944156809e+00,6.768586675674830300e-01,2.077446917403265036e-01,2.813578563378360542e-01,4.655291061699078803e+00,-8.382086229604519545e-01,3.621502355422674846e+00,2.593844517273804939e+00,1.607291002811817471e+00
--3.124042680743386313e-01,7.577307867890251680e-01,2.121353399933311845e+00,1.350895633914932281e+00,-2.789513697782862178e-01,6.753067582859945128e-02,5.177064883997037903e-01,4.187754565173992916e+00,-5.103936229277277192e-01,4.061669028788871039e+00,4.315741458371293859e-01,2.824313347012796793e+00
-1.130011797480357849e+00,-8.391072593324183648e-01,-4.237611371298919405e-01,-1.933216574495729256e+00,2.742387868777405036e-01,-2.994752019428656986e-01,2.576689234901710535e+00,4.197275424097892227e+00,-2.993473679205946425e+00,4.366762917006224320e+00,4.797295118434252714e-01,5.492514421382309386e+00
-6.013461290273439674e-01,-7.688129699543496676e-01,-4.897451212908877416e+00,-2.480162142973378891e+00,2.630291790748110259e+00,-6.105555302220355696e-02,2.831441988274062460e+00,4.603751886326594267e+00,-4.760866155975504554e+00,4.405816125861661270e+00,3.255181258612026340e+00,4.946983860710324699e+00
-1.826389000794743867e+00,1.360554260325545606e+00,-2.665441211971080637e+00,-2.956296864889385922e+00,2.293554557599212451e+00,-3.452188178759939552e-01,4.107295149898662956e+00,3.829840697084754275e+00,-5.231379965522782172e+00,3.965474815393268848e+00,4.403908204209738386e+00,3.258035887312124679e+00
-1.394651957441010781e+00,2.188037568200167815e+00,3.918724289346340317e-01,1.396245913849412656e-01,1.029139151119064621e+00,3.966988293802046206e-01,4.213206276829068564e+00,2.317514670608773919e+00,-2.288681983437580669e+00,4.481009799782624370e+00,3.195088291628812360e+00,6.864843505746224928e+00
-1.317933650233626075e+00,6.196489704735804738e-01,5.453711560110501289e-01,2.872940919956571193e+00,-2.861319974669730426e-01,-4.446493412264039269e-01,5.341245468866937074e+00,2.402731574217447097e+00,-5.277416786616697664e-01,4.779774807980386342e+00,4.143791484593146279e+00,5.334646907298598251e+00
-2.078369651602372858e+00,1.055758634535370666e+00,-3.462383431273311274e+00,1.678371156089661920e+00,1.137865298635378108e+00,-6.250099977772415327e-01,7.340207577136370176e+00,3.994784883241460527e+00,-1.744308929395895547e+00,3.878048144569627986e+00,5.605253434021879144e+00,2.521198941506532343e+00
-3.149956991405951090e-01,3.999108922925000975e-01,-3.508493449203125003e+00,-1.183807484020850787e+00,2.048243675682622555e+00,-1.041283196264988664e+00,8.555754908569184636e+00,5.741224396017981846e+00,-4.554342668069114808e+00,6.039359007999831164e+00,7.062085973272534289e+00,4.566203609589495116e+00
--1.335484915511098825e+00,-9.496044867575319515e-01,-2.101464349861162262e+00,-6.019396382394653910e-01,2.167658385589843473e+00,1.143199269311364175e+00,8.813808214112786033e+00,5.019559988327137567e+00,-6.275070551017204679e+00,6.788630174725600597e+00,5.175258844591393625e+00,3.385675944182517050e+00
--1.762311053362322077e+00,1.495196654900621480e+00,-6.786751093886460584e-01,1.226921069235455297e+00,1.144931843234056057e+00,2.092742335952447963e+00,7.687264647442435539e+00,2.181909398040426940e+00,-3.808404812229323255e+00,3.953596456987713559e+00,6.473631774814190720e+00,5.310460369457939755e+00
--1.242235850301085520e+00,4.067472821829554164e-01,-1.266287029602956693e+00,-4.473018400253331306e-01,1.520755709265585010e+00,-9.731500771403120975e-01,5.208368016111156074e+00,3.098806325055673216e+00,-3.095765099554673938e+00,4.673366002556873511e+00,7.936264835799946127e+00,6.124787052766116346e+00
--1.047907593483522248e+00,-2.688763226369760506e+00,-3.113089820761621773e+00,-2.512693119715510015e-01,1.846380876804381677e+00,-2.282894962031603470e+00,5.906650769498869025e+00,7.191220081857573554e+00,-2.519878654915281402e+00,6.553610623994441831e+00,8.380986906793040703e+00,3.584350310865875411e+00
--1.844627464125473404e-01,1.122766995630271047e-01,-4.121025287637391621e+00,1.797875294197349483e+00,1.585009272754673182e+00,6.660819244520836957e-01,6.893875111118499710e+00,6.874602615116323534e+00,-4.767729824381190085e+00,6.979311980368485102e+00,6.773564231786926904e+00,6.240392836728278603e+00
--1.553126461549380499e+00,1.428128698225768156e+00,-3.387762219870578129e+00,-5.811216978785013199e-01,2.980713220670671015e-01,1.450360386619919950e-01,5.111534095669602706e+00,4.052598079611519744e+00,-4.344976218930746370e+00,5.539882879186871278e+00,5.024728618775607281e+00,4.627643543827098860e+00
--3.994786779790023168e+00,-3.030500860844554722e+00,-1.574365772133774488e+00,-2.334190637396902357e+00,1.041007653499785857e-01,5.435714176373549478e-01,5.284802151532128178e+00,5.099647470951653716e+00,-3.371047890540608272e+00,2.211015009308235690e+00,6.168632169582965119e+00,4.081638605238643080e+00
--4.951401337488436916e+00,-4.281597413464874435e+00,-1.446965890712374803e+00,-1.532118915967320305e+00,9.840892849850390034e-01,1.695384535337644216e+00,5.045181307419701611e+00,6.578181144299732885e+00,-1.598630209145178505e+00,2.396734116344834131e+00,8.386117100329082419e+00,6.105214003038710757e+00
--3.768335176734624703e+00,2.821499338348825159e-01,-3.841967183343979908e+00,1.219078443502037423e+00,3.382258767711604719e+00,-3.293032198175086522e-01,5.688952638614140689e+00,5.508928573275908569e+00,-3.851911527026880222e+00,4.279345597822666214e+00,7.042749744856436678e+00,2.811021302569785441e+00
--2.000378725346092956e+00,1.721205612915869709e+00,-4.147184173872245694e+00,1.613977079281301741e+00,1.245829365421335488e+00,-3.110864252931751506e-01,6.006974816112244930e+00,5.176304910092258460e+00,-5.261539750925154024e+00,4.346664796174861678e+00,5.904321977862433179e+00,4.917188698982512207e+00
--1.529114688558853796e+00,-5.520735524876592137e-01,-2.656566963244266777e+00,-6.190376217729887109e-02,8.875057108964315988e-01,-1.866651543240889222e-01,4.284550674581560692e+00,5.405435297673074402e+00,-4.775343473267573913e+00,3.799120905352531885e+00,7.318339719949468858e+00,4.545836912879165581e+00
--1.382077426139134202e+00,-1.460745776425036890e+00,-2.296335121286509073e-01,2.238441972820927328e-01,1.636529721440337148e+00,-6.973505035377320915e-01,4.318230763979286735e+00,4.610885275325962596e+00,-4.158230463276119337e+00,2.544854833773063874e+00,7.518444240314048344e+00,2.399475115996510866e+00
--9.776006139457309452e-01,-1.267066756597080124e+00,7.938082447649477125e-01,-1.413220720731109603e+00,2.171566498567953474e+00,-2.290059544218771670e+00,5.087184242756512376e+00,4.886844020442945968e+00,-2.652016073078577563e+00,3.729252890668482756e+00,4.806585388871521758e+00,5.511388409605797456e+00
--1.302065558268684420e+00,-4.226338953756406114e-01,-1.123615705427960965e+00,-9.783303329218313582e-01,1.007122282374927735e+00,2.021121699101357638e+00,5.785845498026464639e+00,7.340906335593324172e+00,-3.094773528188479617e+00,8.037933946174717903e+00,4.708212886471146774e+00,5.125970724634678177e+00
--1.605904370796716885e+00,-1.232593778691533970e+00,-4.337633722520346069e+00,2.543933438651938550e-01,2.444625552455861772e+00,1.588729289098186337e+00,3.946041794826312454e+00,6.208758917985891301e+00,-4.361938518167198353e+00,5.252633179210799419e+00,4.261297571469822465e+00,3.252001104075056492e+00
--1.367407857803576876e+00,4.737473641267302416e-01,-2.935007695235578140e+00,-1.540156451526306203e+00,3.867695856989417535e+00,-2.178328585195230538e+00,4.309242335980648875e+00,2.485156214386876172e+00,-4.796033594615051854e+00,3.794170355583786236e+00,5.729969752339677314e+00,4.005477881434223342e+00
--2.255653640435242302e+00,2.505874133578036123e+00,8.426518445301535432e-02,-1.024343935297204800e+00,2.751911341281242152e+00,2.095966177392705743e-01,4.137847859460531019e+00,3.843512617322950575e+00,-3.612947540317437145e+00,3.221189136472135672e+00,5.671551942901556842e+00,3.375065468211977837e+00
--3.921030993293422640e+00,1.630507909858670834e-01,9.695086723449175548e-01,1.016718128066200100e+00,9.242379484877115692e-01,7.640466204237250647e-02,3.887114122371945868e+00,7.938872834349187890e+00,-3.930522720000167780e+00,2.642365263037671497e-01,5.839611272192583691e+00,2.237288727564263002e+00
--1.936331010084744397e+00,-1.525296869443791614e+00,-1.887927094574153530e+00,2.889296467732927809e+00,6.674888846926972930e-01,-2.226209497065793741e+00,5.147626517807525559e+00,8.101203583561597199e+00,-4.036529054131140271e+00,1.460043503492038042e+00,4.555431949381168799e+00,5.518934066493400792e+00
-1.089177159792090732e-01,-1.480781935838115571e+00,-2.662620779159475592e+00,1.034614556451587619e+00,1.577832789279951964e+00,-8.318449178559828017e-01,4.720014009671788635e+00,6.953736907057773919e+00,-4.647597512732412284e+00,5.850995166966205474e+00,3.801198928568325641e+00,3.967097800413919018e+00
-8.857813357540065269e-01,1.626430617356565023e+00,-1.705199505776184621e+00,-3.030289740963192813e+00,2.396803525729377604e+00,1.417714739066025853e+00,5.888658474261237785e+00,5.147574616784824642e+00,-4.378121367908963890e+00,6.743064673446346191e+00,5.278554693669795128e+00,2.382535524532037208e+00
-1.379769462219410325e+00,2.641558084995923483e+00,1.825251076082315738e+00,-7.221922592021288168e-01,2.285832806744356738e+00,2.454150858434434923e+00,8.429248908043021515e+00,5.832642052619546824e+00,-4.493401982967590413e+00,7.640750679033470050e+00,7.192202538343089202e+00,3.930856752560546674e+00
-2.535850865204160254e+00,1.747903449949556043e+00,2.352021208472720559e+00,3.861460703360300784e+00,1.219586203910399957e+00,2.687019828144873168e-01,7.327886179081454010e+00,5.419198983552933058e+00,-3.686637380756415894e+00,7.427129093163848950e+00,7.238967956017155814e+00,5.079134620182847115e+00
-1.918686482430989937e+00,1.901521804749375377e-01,-2.233122763915323938e-01,3.527070754360397853e+00,4.868582213573210415e-01,-1.998178446545642029e+00,6.021843205344657335e+00,4.060183028189632282e+00,-1.173286360505831460e+00,3.527551104234933455e+00,5.874570741275926267e+00,8.095694785062841348e+00
-9.834708323740255498e-01,-1.767532034523958906e+00,-2.275029374245874259e+00,-6.330186885629789373e-01,4.817738872638802627e-01,-1.738891492324635024e+00,4.938549126197735895e+00,4.321312469822547797e+00,-2.291676683720837104e+00,3.359429581762446659e+00,6.659601894279155054e+00,4.369361129868212679e+00
-1.130922016234996885e+00,3.501437177607990003e-01,-2.197358340644391950e-01,-1.733438673028740773e+00,-4.798647781829542547e-01,-9.449763468903303598e-02,4.346695488232400706e+00,3.764062693634334877e+00,-4.867940086837689861e+00,3.469323980260952567e+00,8.250621485366245622e+00,3.199225863983878870e+00
-1.987774937541078035e-01,1.621324503807580752e+00,1.471824066182197965e+00,-1.574909450028733282e+00,-1.444874973655196015e+00,1.828513539814531796e+00,4.486520860130791988e+00,5.335209395860640136e+00,-6.103478888992684759e+00,5.295324495597192538e+00,5.824635096502237985e+00,5.422301366413537771e+00
-1.181252098985606569e+00,4.134968344910459059e+00,-3.613664434624985766e-02,-1.855481006435167224e+00,-1.404220683081923049e+00,-6.819517137232335990e-01,5.418137778231014501e+00,7.113217943178534064e+00,-3.589890359574850365e+00,8.317154553906529912e+00,5.537201981927316830e+00,3.586261854092550827e+00
-1.856101904956906079e+00,3.925455888329151044e+00,-1.552381011240772102e+00,1.217705537328990228e+00,-5.337796791751941994e-01,-2.701922740527604727e+00,5.226323506836971333e+00,5.226959111586891638e+00,-4.693813412962200005e-01,6.616116507490185761e+00,4.891452878561917572e+00,6.033164740847288599e+00
-9.164264286591120579e-01,9.674231528967307536e-01,-2.080074393406138089e+00,2.693222771650090053e+00,-5.630122689619707632e-01,5.148341904779039080e-01,6.093970864738022186e+00,4.375989109329739613e+00,-2.262852418509282870e+00,3.253090895327358734e+00,5.143223292101271049e+00,4.424456203474296245e+00
-6.455961493516636507e-01,1.280927382243076229e+00,-1.905045654688751533e+00,1.415314383325836811e+00,-1.366699782267320806e+00,1.488353364690308878e+00,5.993014095948725029e+00,5.663699500937534381e+00,-5.375949927543592466e+00,4.127864241623477426e+00,5.749506903894103793e+00,1.749369021285917647e+00
-1.579146930776830771e-01,1.672634254975262857e+00,-1.481153727250525964e+00,1.130489333255395579e+00,-8.576220968497063613e-01,8.751866702420707522e-01,5.507422646264366506e+00,5.434873638195527157e+00,-5.476225810067839816e+00,4.600462707919646732e+00,4.738172189305659643e+00,6.056550584723551012e+00
--2.909607925415798046e-01,8.724720745357827933e-01,-2.368999111916266997e+00,-1.715903225118668995e+00,-2.148380708258881278e+00,1.183998800131415230e+00,5.349573112733391866e+00,4.165787047009397170e+00,-3.323558655156205077e+00,3.223375661647526425e+00,4.119277002685489464e+00,4.599970682298828883e+00
--3.306645713722670132e-01,1.909979759437071767e+00,-2.031465225505575400e+00,-3.587823934881999577e+00,-2.860600747815385425e+00,-1.987472501142117043e+00,6.256079522580288099e+00,5.830789907284640528e+00,-5.847171202702261539e-01,2.975383640935380214e+00,5.490481902136949977e+00,4.387879926982361845e+00
-4.263228177411126918e-01,2.157561582795937571e+00,-3.316935045948693705e+00,-2.940545435776955152e+00,-1.864903705361835584e+00,-2.524928902417629573e+00,6.628072144779578068e+00,6.395597652102816610e+00,-2.696110597254691044e+00,5.952264941109109309e+00,4.257662994441343329e+00,3.703930638641808493e+00
-1.193366732033157351e+00,9.826325589930737792e-01,-2.516527984552010544e+00,-1.153359427414173854e+00,-1.706924925159805539e+00,9.752757465543318016e-01,6.304456315745788686e+00,5.489217295081757264e+00,-4.712329429705231831e+00,8.394840572117590938e+00,2.978300494010345023e+00,3.193680706741855779e+00
-3.602778714187879761e-01,1.836253113768347767e+00,-1.211580301569618046e+00,8.376741731740589003e-01,-2.925237604631134580e+00,3.386650484928459992e+00,5.494203647555168324e+00,4.661456842424625435e+00,-4.605837326283065636e+00,5.816965219020976186e+00,3.351541411691269179e+00,7.093379900479445332e+00
-7.232824621865587833e-01,2.360273753448378642e+00,-2.119738764212126370e+00,3.166679016710597150e+00,-1.933442555463390722e+00,7.646785509822175975e-01,5.160871861802658778e+00,3.943309158431016037e+00,-2.819566607777573175e+00,4.778156170584292539e+00,6.104584871203494245e+00,3.806052101117367137e+00
-4.895188127295140856e-01,1.598400661269894441e+00,-4.059440643799568704e+00,1.761520509834790804e+00,-6.930824119684197981e-01,-1.602894020209124637e+00,5.354020572274483136e+00,5.675753062682611372e+00,-2.074769113012784771e+00,4.534992326556606557e+00,6.374140926240183802e+00,2.995667537325232388e+00
--1.417146712806542030e+00,1.162540749823484543e+00,-2.821661381645873767e+00,-1.864701162965589631e+00,-2.148300520105935973e+00,-3.204283294137773574e-01,6.828004225253447856e+00,4.848636180667226014e+00,-4.807445855863754502e+00,4.322166784119967353e+00,3.357618936239717744e+00,7.477707704377309028e+00
--1.223100535472626760e+00,2.399805049786160716e+00,-1.881675152841982834e+00,-2.051458864990816977e+00,-3.036353204927186411e+00,9.162349161972946909e-01,6.747155584887854829e+00,4.424131394752608415e+00,-5.172862866739350807e+00,3.714503085883650080e+00,4.530739860216478121e+00,5.588621204537695952e+00
--2.331620117532256398e+00,3.091363422104554726e+00,2.498570506945987368e-01,1.156413474997385782e+00,-2.338453850701846637e+00,8.381982775322298629e-01,5.346875066248663266e+00,6.416893309367024401e+00,-4.329012813825567463e+00,3.400418611958983206e+00,5.652205932632920593e+00,4.984056855741751058e+00
--2.663511555637592121e+00,2.035013611904984643e+00,2.174964038665803123e-01,2.002099711433644291e+00,-2.770177392028112084e+00,-3.737854810035730058e-01,4.668187886431102385e+00,4.793161363316138512e+00,-2.160875966280075389e+00,3.039640789342107574e+00,5.039753264893064078e+00,4.928799220242923163e+00
--1.080341765991819303e+00,1.594274693509639906e+00,-2.597492751680845480e+00,-5.159732943759440804e-01,-1.862695010933665074e+00,3.223788650687369195e-01,4.396700210807002129e+00,4.087088907698947615e+00,-2.788140969679977488e+00,2.753411555394968069e+00,5.138471736541990964e+00,4.463078872331661451e+00
-7.757674270661434335e-01,8.185867493298183417e-01,-4.025774562613181118e+00,-1.778381660850697710e+00,-3.344381828802922119e+00,2.261965511720037125e-01,4.697408133444811895e+00,4.072430739626219598e+00,-4.819173401705640458e+00,3.401845223177136557e+00,4.451556870688682999e+00,6.392728433143465949e+00
-7.611104818252114601e-01,-8.286425486551746156e-02,-8.714099597121982566e-01,-1.392322392271790887e+00,-2.010274344700349047e+00,-1.187859749674115672e+00,4.220067923014012123e+00,4.198593555867003779e+00,-6.339609891012745635e+00,4.219375112814422124e+00,4.609282730777004566e+00,3.743959361957657883e+00
-6.790603894908642246e-02,3.587434096184727306e+00,1.621506077846056160e+00,2.664330740287865318e+00,-8.178962447624227305e-01,-2.098826921279402513e-01,3.445800902112551078e+00,4.990575469785755836e+00,-4.415085684552428447e+00,7.354874196964784616e+00,3.987913881285179318e+00,2.078377777453091824e+00
--2.114987211631105812e-01,5.188606737658716384e+00,-1.843969134213113703e-01,3.702957121339581548e+00,-2.006425116542370102e+00,2.737147109700642122e+00,1.169552537800597314e+00,4.655034887063085769e+00,-2.251466020449346850e+00,7.997480528203591454e+00,4.994447217168600517e+00,5.452196236741163382e+00
--2.044273108467230760e+00,5.835049444426541054e-01,-6.446928228212241763e+00,7.850216573166128864e-01,-1.431515617724336220e+00,-8.556040301668343950e-03,2.805575485367272748e+00,5.545649097145647133e+00,-2.639006556732358177e+00,4.314394547457116147e+00,6.591809101603595344e+00,5.870140067503667680e+00
--1.101726457346012822e-01,-1.620274964016493735e+00,-6.641148523763781064e+00,-1.094626423534234005e+00,-1.244275022996923497e+00,-2.347922786427476094e+00,2.986861694153729374e+00,6.013670007454654076e+00,-4.749572626239835671e+00,8.989575797021882586e-01,5.871049258764507783e+00,3.692157962858390707e+00
--1.355492099570392295e-01,-7.710785816490806077e-01,-7.460042509833926250e-01,-1.431969779711422142e+00,-6.658354460507525108e-01,-5.212556798169548644e-01,3.640715501686690558e+00,4.199800461076788949e+00,-6.923924389413915748e+00,2.409415786856320629e+00,4.723429037241177575e+00,2.118230114873473902e+00
-1.066566345600753696e+00,-7.877368489464272594e-01,2.450416683951243790e+00,-7.293212181132470162e-01,-1.831209305352095917e+00,2.128019456441309631e-01,4.630997173162287872e+00,3.153504864869932423e+00,-5.121705788364117495e+00,4.961928494411546708e+00,5.848549132384527560e+00,4.270064162359655136e+00
-1.193425803725096435e+00,-1.896760202919263172e+00,-8.562759139084471505e-01,1.806142938563724432e+00,-1.942094921675173724e+00,1.854619225282396755e-01,3.595501587468281190e+00,4.159012662003547689e+00,-2.807186266658452389e+00,6.385983535919036669e+00,7.004357507056047538e+00,6.747016245236693521e+00
-2.083761271791886305e+00,-1.276720735151101849e+00,-5.479757520210992716e+00,2.606765689959579468e+00,-1.441777419428688312e+00,-1.139184854626122068e+00,3.426172540266504640e+00,5.032483969662179923e+00,-1.070486597603295564e+00,3.698943296325017283e+00,4.604898685711097173e+00,5.158872725905403023e+00
-3.913190663892308852e+00,-1.838204721789715279e+00,-4.340440974661147422e+00,8.709417064315086998e-01,-1.368377580730800069e+00,7.857745914260003683e-01,4.206649879981476658e+00,6.144795896611343622e+00,-2.978755867683351433e+00,3.100088655314563901e+00,3.913506554336225740e+00,3.186174085507160747e+00
-4.353600527808068499e+00,-3.456748851778082887e+00,-9.091876232287394721e-01,-1.666746966739525604e+00,-3.835541755542447806e+00,7.176915106309048609e-01,5.999160702075048590e+00,6.123954378276296850e+00,-3.942832587262444122e+00,6.505938216379314909e+00,4.494098247601696627e+00,4.785774580268420841e+00
-5.751111549400718559e+00,-2.606365152484285463e+00,2.712259588367511576e+00,-3.002823022246964513e+00,-2.501744939896656028e+00,-5.772774549715806169e-02,7.052118926317236358e+00,4.556194363128761360e+00,-4.652746919986396890e+00,8.969322605193864817e+00,3.338448377151303603e+00,3.847965444282013703e+00
-4.412564108108409044e+00,-2.197886789007060138e+00,-5.546879011168140972e-01,-1.945269973105419936e+00,-1.544695102302105383e+00,2.213139708179573395e-01,4.681231933766181186e+00,4.183559885287595925e+00,-2.610332668439563797e+00,7.894978062034469168e+00,3.369021545659768524e+00,4.544912566977936663e+00
-3.799001718987409681e+00,-2.137054923626828806e+00,-4.457079794441984433e+00,1.226395757840899492e+00,-2.030637715223882811e+00,8.683575779812516271e-02,3.111532903220851853e+00,5.466003107294981511e+00,-2.524675485755767390e+00,4.537313889249458221e+00,2.228549041068664138e+00,6.596994726986956437e+00
-2.235099628414229045e+00,-1.228748151889619278e+00,-6.116059378706810712e+00,2.226761373624125628e+00,-3.167429537191252198e+00,-8.899723588492577941e-02,2.739760515153621956e+00,5.488751323872038235e+00,-3.267075187526828017e+00,3.180835210134046687e+00,3.677150338628789594e+00,3.917626231455117569e+00
-1.584180587095145309e-01,-7.852655966666166609e-01,-1.812135908497644499e+00,1.811381571465614071e+00,-3.868721454666545601e+00,-1.305486931701104858e+00,5.212141177367930034e+00,5.083612625330649948e+00,-4.227537965591771751e+00,2.436317686035841312e+00,4.677542309159430367e+00,2.750568805364736136e+00
--7.766652041322625877e-01,3.440854525018116616e-01,1.291619621175252419e+00,2.833256115689901211e+00,-2.566560115440099654e+00,4.448779037142117643e-01,4.720370609089600933e+00,4.390812785928678963e+00,-4.009024438940521406e+00,4.226275748530937015e+00,5.640016549047624395e+00,4.977936640280186786e+00
--1.666461426108118760e+00,1.785540568414713203e+00,1.805973667163951024e+00,3.702551833821285943e-01,-2.318949619335108014e+00,2.193260776215153474e+00,6.501093851038027616e+00,4.097104561187784988e+00,-3.380629817883458621e+00,4.993965235226390575e+00,5.038063111393355165e+00,5.840642169186212485e+00
--2.410407352193815633e+00,1.827937464828485625e+00,-2.753275686170967518e+00,-1.916569669564210932e+00,-4.188875821867550364e-01,-1.434728816777196769e+00,7.222656113864077909e+00,3.863332368140850015e+00,-3.557266307242549885e+00,4.348824044871342664e+00,5.264486958202708067e+00,4.345164796256563378e+00
--1.666239550604287967e+00,-6.080677676092065553e-01,-6.016779562497917233e+00,-1.597834161041584933e+00,-1.273227400451314217e+00,-8.484560339955301567e-01,6.599063039814783593e+00,4.026283348567725184e+00,-4.751951651617574157e+00,5.398147519999094257e+00,4.362588794554010718e+00,4.096358997545670455e+00
--1.655180023490592456e+00,-2.622239271382690529e+00,-3.750602427130766081e+00,-1.738716375420507276e+00,-2.284581807216647942e+00,2.062685576388656017e+00,5.465498868731979876e+00,5.571345962541135677e+00,-5.342053777125773451e+00,5.617987145165654006e+00,4.189733685873055613e+00,3.577745219813466715e+00
--2.004071539620203346e+00,-5.295128212567417059e-01,6.047322567267358062e-01,-1.965503770718391330e+00,-2.096982664784231787e+00,1.269103252111400681e-01,6.751060902271214914e+00,5.910331031458312623e+00,-6.200308696641878115e+00,5.715923284776542879e+00,4.030748268924964073e+00,4.600455274492318836e+00
--2.074304412279668330e+00,1.360712017343177704e+00,9.251475424004964587e-01,-2.383440075185935259e-01,-1.083413596973536785e+00,-9.697599544848316544e-01,6.441411052097585355e+00,5.461601793406312133e+00,-5.208872431540392256e+00,3.472725521286179617e+00,4.326691175634730158e+00,4.200401906248015571e+00
--2.612709753918561972e+00,-1.702468264429593536e-01,-3.373551225247855889e+00,7.280554488963435489e-01,2.319313567379489571e-01,8.094720158030519475e-01,6.446830655778663655e+00,5.538956232612101793e+00,-4.981796819407129817e+00,2.406619465325531948e+00,4.497009142654491143e+00,3.232925210389196558e+00
--5.287188450741622248e-01,-6.095815948953712260e-01,-6.264637216247125551e+00,8.323919370189192257e-02,6.473154449270844824e-01,7.835103380678738461e-01,5.984142948224764780e+00,5.229714827305749658e+00,-5.223713406750631449e+00,1.843460253666439286e+00,3.559375867868571408e+00,5.720746949205340215e+00
-1.427558787308593757e+00,-1.557302632852491930e-01,-4.597806285564796092e+00,-1.317988961575996321e+00,-2.188784664657661416e+00,-1.067990096138581313e+00,4.565907732054268031e+00,3.579763228869906388e+00,-6.308078353552398099e+00,3.078447130025423473e+00,4.832425975578442667e+00,5.011868797950294052e+00
-2.764127317348216373e+00,-2.686501783861952930e+00,-8.781008760933330937e-01,-1.878669373366243622e+00,-1.627916373166509167e+00,-2.543525014225115344e-01,2.474722339252600101e+00,4.017719734625418759e+00,-5.754602740312238396e+00,5.835979325068624490e+00,6.232338477435537705e+00,3.576325938558922779e+00
-1.543226017616112777e+00,-2.610207787022556847e+00,6.607750716330882401e-01,-1.309906651928841814e+00,-1.785712370039657992e+00,1.285798377024816475e+00,2.558548751022986067e+00,5.707837790419183932e+00,-3.563140784313889142e+00,6.480571766391602040e+00,6.253921768985826191e+00,3.881109340114460515e+00
-1.816779137249918685e-01,3.486292015042397052e-01,-2.840740209899347946e+00,3.379650278242442574e-01,-8.198855256058732444e-01,-7.181831308890092025e-01,2.723290370302909214e+00,4.875980960146384824e+00,-2.913466572202566773e+00,4.859607613288064343e+00,5.097350440448430220e+00,3.619998990410613793e+00
--4.815905563663037681e-01,1.928041997345812497e+00,-4.815165219484332404e+00,2.363014709460953711e+00,-2.363669136181059116e+00,-1.316525815903691443e+00,1.826417649917365882e+00,4.500876629176228327e+00,-5.308566677002851009e+00,2.653997718300394659e+00,3.362139387239098554e+00,3.670391412629564254e+00
--7.891240805373729295e-01,3.029472701355132802e+00,-3.758047625023254845e+00,2.288737409872124040e+00,-1.964455413069789991e+00,1.455759453557631034e+00,1.522305917526569630e-01,6.006149330688311139e+00,-7.122756661281028912e+00,3.790575847005788646e+00,2.664256832658303153e+00,3.063278519312641279e+00
--1.427442697307999442e+00,1.422722195605895079e+00,-3.664943911779382502e-01,6.045914555489941833e-01,-2.351577888029317887e+00,1.028308835477044436e+00,5.875058199155538396e-01,5.281385630745823789e+00,-4.937230596280533845e+00,5.133190913151953083e+00,5.076220016262959156e+00,5.934188040842376388e+00
--2.056090676664585004e+00,5.489115262117170158e-01,-1.190441230292740515e+00,-8.992542381752988145e-01,-2.054960448025206610e+00,-6.049953351586672134e-01,2.227411624213786467e-01,3.636772975192758217e+00,-3.001759071036718574e+00,5.036880885972359501e+00,5.495733033675129775e+00,5.145021568904277309e+00
--9.582695723029276413e-01,1.852360103617485931e+00,-3.063441926180963559e+00,-1.953418429471264206e+00,-2.071154166554376896e+00,-8.119869804624716414e-01,1.230599694952299483e+00,4.824080340429043545e+00,-2.341051401377775676e+00,5.870680100001074209e+00,4.469277296861590365e+00,1.075704134029249914e+00
--1.582376910602060760e-01,2.189889734009316857e+00,-4.747345179362759460e+00,-3.151931765461429835e-01,-4.509538900066918377e-01,-2.835531601968044879e-01,3.784604545548090115e+00,5.318221682007409967e+00,-6.180781124865310616e+00,5.646261655890591591e+00,5.054598689700086744e+00,3.793705868482695642e+00
-6.959286950578849051e-01,6.932436058180180272e-01,-2.546648440975166849e+00,2.062745429629262883e+00,-2.740780178961054858e+00,-3.269385040430629052e-01,6.430060983904160032e+00,4.100766536154779374e+00,-6.582948750427798146e+00,4.814588188534153268e+00,6.198388469805136580e+00,6.932549558323367833e+00
-1.685347181800349592e+00,-1.541952554884603810e+00,-1.621865943421660017e+00,1.936196794573352475e+00,-3.265755400220438531e+00,-9.629537655635460602e-01,8.370956373988427401e+00,3.038401085353682696e+00,-5.588498992214349315e+00,4.263243556096690590e+00,5.805831702509976822e+00,6.569832060772085036e+00
-5.619516977521017420e-01,-2.315973686782937246e-01,-3.281274591059599288e+00,-2.220697764081182579e-01,-4.628198926143993752e-01,2.151012543333026272e-01,7.745727657241503472e+00,2.685129616860215673e+00,-2.731165510437814525e+00,2.595087672753301433e+00,5.201334641044449647e+00,3.219474986801178940e+00
--1.349268180125596794e+00,1.655809891178515958e+00,-5.231539015833455153e+00,-1.165785651985337124e+00,1.252610657179511477e+00,-4.897586746070302643e-01,8.129168315619942575e+00,2.922562657270405762e+00,-4.085018491545849173e+00,2.790472003681623292e+00,5.383394530934806355e+00,3.586778506060198879e+00
--2.100389066768324486e-01,-1.494682972458925896e+00,-3.584572825600751411e+00,-1.401587609857073202e+00,2.251384033992794853e-01,-5.934183954548903905e-01,7.441139800707047947e+00,3.377305662599260572e+00,-5.913173941404689771e+00,4.668216539632784823e+00,6.737978412044867582e+00,6.493094468850287626e+00
-5.485587735747301519e-01,-2.068089318784515740e+00,-2.243471552217256360e+00,4.381068794323735860e-01,-5.229656391900302514e-01,-1.652041200608006299e+00,7.053254100833267870e+00,4.537533579414166240e+00,-8.793919469542744949e+00,5.559195251967260276e+00,5.876154813035684654e+00,5.726585109741426649e+00
-1.627196506847609303e+00,-5.942359193839545917e-01,-2.204020140251610194e+00,9.430541241391486862e-01,4.904723649761351667e-01,-2.143035632598147555e-01,5.841940752562459593e+00,5.217452086683557866e+00,-7.019671504862639466e+00,4.844290408304894768e+00,4.823209524717708696e+00,5.144027609039376614e+00
-1.046652319512691109e+00,-1.417153156446207207e+00,-3.026556964533268612e+00,5.928952139307762659e-01,1.397674651075489383e+00,1.968044498640865614e+00,5.644068693543877302e+00,4.831472166896566556e+00,-3.728254800048016904e+00,2.836757308576917325e+00,6.056575880500338904e+00,2.951545081531402381e+00
-8.954242013556753532e-01,-6.795137874097305630e-01,-4.097073586783594124e+00,2.247506211259183928e+00,5.553576947692639987e-01,1.975155891931058783e+00,7.154470288911317866e+00,5.087541508707205118e+00,-1.767290320286429406e+00,4.937862198091091948e+00,4.949358407465503262e+00,2.594159642289888712e+00
-2.024594371026763318e-01,-7.194769430688547907e-01,-3.691388889817488916e+00,1.247845108867251085e+00,-5.504762302810077834e-01,2.528715780911335309e-01,7.945662466242399802e+00,4.113873776637209545e+00,-5.456182505782537717e+00,5.985536488560954993e+00,4.227285404794214330e+00,3.250246637205136402e+00
--1.218874410964381649e+00,-1.758523559724021856e+00,-1.962711156225795950e+00,-6.279759711458277049e-01,-7.583446693541391337e-01,-1.969618325843885298e+00,6.209907318174950674e+00,5.171693078300720003e+00,-8.264793271933069008e+00,6.769228940532217464e+00,4.723855349476290932e+00,4.573308323698332956e+00
--2.148197705717832307e+00,-4.649936575244809633e-01,-1.035598528720012679e+00,-1.263971379281882079e+00,-1.440673375841695913e-01,-7.451968988208304001e-01,5.160471704650104741e+00,8.829560451716705671e+00,-8.539634940588666012e+00,6.936680962381640114e+00,3.235429173871033015e+00,4.781272951395972193e+00
--4.544314759852930763e+00,-8.545989354614920153e-01,-2.071564460370118876e+00,-1.859713842565478226e+00,-4.399036977135762916e-01,2.182765786583092726e+00,4.372573258042296906e+00,6.440370574082606048e+00,-4.042071270042837838e+00,4.212542412812976700e+00,2.781187122013275559e+00,4.479168097457306708e+00
--4.486765194885098396e+00,-2.890474908541991184e-01,-3.304044548606963172e+00,-3.223399180927805752e+00,-1.384748085255008476e+00,-1.868236729530169393e-01,2.959165170569567849e+00,4.369281965863372363e+00,-1.220165504047932892e+00,1.617402290075530047e+00,5.815718881738204615e+00,4.828299432327773921e+00
--4.170539930389231209e+00,-7.684023046047836480e-01,-3.367635804336707395e+00,-1.180843434519597057e+00,-8.993294612879940697e-01,-7.435772416320318712e-02,1.629105066454298978e+00,4.767559151104483917e+00,-2.219961471007064091e+00,4.903561968792375936e-01,5.598205773850448708e+00,4.913656571866479084e+00
--3.523686550790576799e+00,-3.056594155900486331e+00,-2.051846010921451136e+00,4.101145198083537835e-01,-3.884020341704730317e-01,1.523945307494584789e+00,3.781118856231072911e+00,5.366156690733308920e+00,-5.953217837094241460e+00,5.092017483868774619e+00,4.999319843892386039e+00,6.942958589801051517e+00
--1.231878446629818269e+00,-8.628479855229758133e-01,-1.852650007446912106e-01,4.164919293050346472e-01,-1.818600026041566453e+00,-6.325278618971902356e-01,5.727470622257770927e+00,6.606226639230827757e+00,-5.685092000716643668e+00,8.653686802421905355e+00,5.247871113133442122e+00,4.355589457239776863e+00
-1.956579062862333629e-01,-1.001402484624956735e+00,-1.648018653455826765e+00,2.434358954106604633e-01,-2.561738949798213039e+00,-6.890056798907446822e-01,4.056488502898882409e+00,6.690025192103395746e+00,-2.331567658168778756e+00,5.552714407733484236e+00,6.007846107145587311e+00,2.146593937367936356e+00
--1.337066816391991875e-01,-2.047520375519126468e+00,-3.749752336434909239e+00,-3.931332829248479488e-01,-1.077515842127684920e+00,1.542742312933534254e+00,2.580269691490353345e+00,5.901132988743353458e+00,-7.691250593657414925e-01,2.210681287616310886e+00,6.434215027836306611e+00,4.875300410899473746e+00
-9.668771311119851442e-01,-6.273495735455852929e-01,-3.464873707554443349e+00,3.764108608449281967e-01,-9.895920052136638612e-01,1.161514522980211739e+00,3.628069278143565946e+00,6.131490020509800409e+00,-2.807926682618690606e+00,3.781176319494426785e+00,5.644086292870081678e+00,6.295275496957128958e+00
-1.023428666895920713e+00,-1.490947232034514069e+00,-1.063370549377949059e+00,2.724388074533869997e-01,-4.805155746626946778e-01,-1.755875309538191154e+00,3.654881850994777803e+00,4.689417980765189675e+00,-5.528393825976275266e+00,4.667400875369982494e+00,5.661798326079645172e+00,3.049022038497731568e+00
-2.150110557047250737e+00,-1.621289848912258469e+00,-2.964810620807755148e-01,-1.087686635188899409e+00,-9.241544841718276615e-01,6.180224836607822736e-01,2.664532191692702057e+00,4.131871114110042598e+00,-5.334562974188926887e+00,4.024744383922982394e+00,6.436296956384975232e+00,3.522493084638647964e+00
-1.266245098542744696e+00,-8.409693056241445142e-01,-4.467070844934712959e-01,-9.450716491339775649e-01,-2.703589839154055818e-01,-1.247291591611538131e+00,2.352935829618759911e+00,5.294486498515911244e+00,-2.184654645284028973e+00,4.832681676656637393e+00,6.616047156565080023e+00,5.649768473177916306e+00
-1.256567595988527186e+00,-5.209123436247662386e-01,-3.554136627479215882e+00,9.851981865032902741e-01,6.066463566938561369e-01,-2.551671700953049182e+00,1.672367682222062335e+00,2.991517995066215185e+00,-1.891614166973339728e+00,5.547414844407583701e+00,7.085151694555714030e+00,4.583695315487106292e+00
-2.417146698983693831e+00,3.423420420221744420e-01,-5.468012133391138896e+00,1.912905303796538226e+00,6.560968323400628854e-01,1.772509328255130079e+00,1.402301657971260163e+00,3.194428186749342480e+00,-4.548483482978877390e+00,5.542356401725575310e+00,6.663883921111593445e+00,4.853820641199992458e+00
-1.999619757842334700e+00,7.041442580822797614e-01,-2.990899524647014918e+00,-1.416389906301699919e-01,1.065260057237635394e+00,2.783868292014194612e+00,2.188410837817223786e+00,5.161519878274964057e+00,-7.214884734592693860e+00,3.448410263284237054e+00,6.816941834764617347e+00,6.767420930176283989e+00
-9.646047438525601203e-01,3.112914907040450485e-01,-7.596712250334166638e-01,-1.123555366811338718e+00,-1.525906179172539012e+00,-4.163455596841435513e-01,3.793433139321964020e+00,5.691750360447885626e+00,-5.329084179349628414e+00,2.839667799187655994e+00,6.447140902238344573e+00,5.071253234787926445e+00
-1.035829306169633535e+00,-2.566617040964844776e-01,6.788594751020946561e-01,-1.970825217969614851e+00,-7.148301052070493711e-01,-2.998344115800775533e+00,5.006537963053346196e+00,6.376420985584982049e+00,-2.529233866513506790e+00,1.454425914995181479e+00,7.646398408348217046e+00,3.384971377637188361e+00
--2.080360628734734263e-02,-8.295629174762977343e-01,-2.782322861236620426e+00,-1.588768468010897106e+00,3.621706258074112172e-01,-9.711881462604883275e-01,3.767405040453775111e+00,4.703163164051236578e+00,-1.541082078909195019e-01,3.066442966190603858e+00,7.223949483958030271e+00,5.153175615421303313e+00
--2.176668615489226077e+00,-2.628618509971152317e-01,-4.108035577763894608e+00,1.697196899449041174e+00,-3.187822838173301143e+00,-2.520907834412116078e-01,4.623391059460301378e+00,4.388386902732331230e+00,-2.616420880557068784e+00,1.018395404878577715e+01,5.566905158542308385e+00,5.490643348955582148e+00
--1.645649893157671961e+00,-1.107320912818145486e-01,-3.029372871602020290e+00,2.739496055782805417e+00,-4.118440239559833849e+00,1.035907301016749438e+00,4.832636701292732262e+00,3.721206062337678144e+00,-4.841557479246949569e+00,9.145626172885091165e+00,5.354959420757586130e+00,4.607999112388111662e+00
-7.534819207450915712e-03,-1.807902225159827014e-01,-1.471331302585488165e+00,-2.877547850274730923e-01,-2.540128763284053015e+00,1.359912408171636944e+00,4.065396168114132180e+00,3.073067398277013140e+00,-5.552206172695045794e+00,5.626049868871110249e-01,8.077022293538270503e+00,2.753384930472553282e+00
-1.471081049679962449e+00,-7.594261866225597846e-01,-3.180930202323744016e-01,-4.211102352125222659e+00,-1.921930323566371390e+00,-4.543019441167683858e-01,4.572059863224049003e+00,6.011934241154983205e+00,-1.318420469346104795e+00,-6.846078514769136092e-01,6.252954475747578122e+00,6.060362421801588795e+00
-1.581846486994021195e+00,-1.260619695530512008e+00,-1.641419606323505143e+00,-3.646624699638710609e+00,-2.492475649143024885e+00,-7.179682574043153576e-01,3.321180551913100132e+00,6.104450065015529781e+00,3.719103162558639042e-01,4.445272293410903686e+00,4.173886015269443917e+00,6.095660541184315662e+00
-8.681041898081029995e-01,-2.368645667974292213e+00,-2.154724203230645063e+00,6.095112830632625212e-01,-3.475142993412908332e+00,-1.507253315314915909e-01,4.119815713223559328e+00,3.784732117363433179e+00,-1.764107174036215753e-01,4.822307205518326256e+00,5.689716050834727312e+00,2.054433501081257329e+00
-7.464971289730815140e-01,-9.377553478592648428e-01,-2.369222972776465763e+00,3.080844885536041744e+00,-2.529406287482803162e+00,1.845371391610271861e+00,3.968941913572073155e+00,2.010025383505255725e+00,-2.710883466293171118e+00,5.545202534322686283e+00,6.088343999382616722e+00,4.926708257184033712e+00
--2.586553280014266543e-01,2.427463824807717163e+00,-2.090201914853412557e+00,2.880203708208450841e+00,-1.997387761319864730e+00,-1.450964694687729151e-01,4.754551282526016109e+00,8.089492130796367420e-01,-1.601383943903980978e+00,5.737130497143407837e+00,4.782675577584496018e+00,3.677885129263262609e+00
--2.248670046397965194e+00,1.597540861553059521e+00,-8.412007692607432752e-01,-6.086934482895658416e-01,-7.480078423641318697e-01,1.489591720044582956e+00,6.654717642939098177e+00,3.186448218260451437e+00,4.658021322860088631e-01,4.823697145528843322e+00,3.414984659017686663e+00,5.487437335735822153e+00
--3.348281158520842737e+00,-5.568998104568737562e-01,-6.790211283644319584e-01,-2.212927024942085374e+00,-1.704558916373672073e+00,2.041808125015635689e+00,5.846991335580540294e+00,3.337831596232551767e+00,2.098744541113711559e+00,3.277236079611692610e+00,3.458622460117518838e+00,7.928515531651342485e+00
--1.442897591944459768e+00,6.003522344310079362e-01,-1.966815026637589447e+00,1.775244020653421240e+00,-2.148144986929362954e+00,-2.434428890479605201e+00,5.420332938498821918e+00,3.619542836945243813e+00,-2.954857026603994186e-01,-8.673261466362269800e-03,4.306900508165536046e+00,4.791877210409132282e+00
--1.155569605286546508e+00,1.618056367957397379e+00,-2.721818127545465149e+00,2.202103774385237411e+00,-1.438884608281588706e+00,-2.209300241018751887e+00,5.135802701613227939e+00,5.306944258591969721e+00,-3.018768166747916482e+00,2.699741853299243655e+00,4.617001162087944088e+00,2.222352491173781530e+00
--3.488644218277279663e+00,-1.118599074445602914e+00,-3.376181105811175254e+00,9.934883595704468995e-02,-8.931507530256683758e-01,8.389966878750507728e-01,5.211812976787111751e+00,6.012687555812719964e+00,-1.814331686260396204e+00,5.796907755573260879e+00,5.797227449713707514e+00,3.538194632175998056e+00
--4.525915842193184879e+00,-2.527108622493257961e+00,-9.006577877899080153e-01,-8.372490761748259125e-01,-6.829973961814596040e-01,-6.776843756425867671e-01,5.850405858604291964e+00,5.002963190238576274e+00,2.325373448708869972e+00,7.853608908550089751e+00,5.246662491251034233e+00,4.548401650003722096e+00
--3.528879989993250366e+00,-4.378075977148361830e-01,-2.926237906261348609e-01,-1.590005961376358634e+00,-1.022521221361091692e+00,8.323101314925480665e-01,5.232798442089570123e+00,4.633711673012578913e+00,4.109426929386743588e+00,8.901357845062772611e+00,5.209590230851312675e+00,4.065213765574621441e+00
--2.562622331885585858e+00,3.925845799236387101e-01,-1.507726935910974619e+00,-8.850671985609452896e-01,-1.397999139484211950e+00,-6.484968177871324180e-01,3.983304983396819043e+00,4.828507420812822915e+00,5.769515094244930253e-01,7.067279836372568624e+00,6.981173134628340549e+00,4.550353080264919470e+00
--1.856378488901909929e+00,-9.512754879744240721e-01,-4.717032237780617088e+00,-9.504417158092401952e-01,-6.267080868992039866e-01,-1.558303820395119388e+00,3.427519950071115318e+00,5.866323724575988052e+00,-3.580441950275538687e+00,4.626256440073035492e+00,4.503333861719587716e+00,4.957952609674167732e+00
--2.736969358397962626e+00,-1.946944243544922237e+00,-3.753120219952545078e+00,-6.556130942003135509e-03,-1.224376561236242056e+00,1.725091624855116246e-01,2.406053051552568434e+00,4.804445006333999402e+00,-2.561227109038436645e+00,3.115903428004852316e+00,3.301671559239126807e+00,5.966307568101433034e+00
--2.561640507428150748e+00,-5.380962687630519437e-01,-2.159943664332669488e+00,1.762954755872925938e+00,-1.427884855214213600e+00,-1.638143791690184425e+00,2.398718774257984521e+00,2.981422967539768543e+00,3.296672324359814610e+00,3.678250983605063418e+00,3.692330793902033115e+00,3.753516855710442357e+00
--9.913390773313958126e-01,-2.876758355812701340e-01,-1.429933999842839754e+00,1.642212480845887779e+00,-3.644403502179132115e-01,1.377236017855435035e+00,1.477832309500654695e+00,4.353594444037942601e+00,5.389545340331116208e+00,4.054115218922375696e+00,6.148688400590705427e+00,3.721102504340284334e+00
--1.056769796014828788e+00,-2.885595533548593883e-01,-2.794503445044823398e+00,1.083090011598699220e+00,-1.380432962374760208e+00,2.497806290360156112e+00,4.167258891973620649e+00,5.486485952944832434e+00,2.519490343192760662e-01,3.409630610888273239e+00,6.497457287133940440e+00,4.337604040259845029e+00
-2.274903620720447606e-02,1.178709472965589811e+00,-2.191907922540886844e+00,1.147040859111712274e+00,-1.401092978881083306e+00,-3.073230208175671940e+00,3.143035241306364913e+00,6.164143814132094334e+00,-4.478989164556971048e+00,3.865238097566201070e+00,4.555747830634098605e+00,2.919483985102220736e+00
--7.017977424499139971e-01,5.864426458347609117e-01,-1.052410741057273169e+00,-1.888349389452816274e+00,2.640406417979324072e-02,-1.251767083818635218e+00,1.900322526990273708e+00,4.288786027707171655e+00,-3.078458539960412743e+00,4.917959417157974578e+00,4.466967039398555883e+00,5.277507025041583866e+00
--4.761575079868316518e-01,2.033879914173334136e+00,-2.119219470474186462e+00,-1.503623604112065859e+00,1.245419952932540264e+00,8.331834933385302566e-01,3.225788328670577521e+00,2.650018181237939974e+00,2.432707009371110729e+00,3.829198120567822716e+00,6.021729223149659305e+00,6.293117544191258794e+00
--4.431170435912721306e-01,3.345382851260067625e+00,-3.650137045873923736e+00,-1.583532031681139873e+00,-1.326217744881488247e-01,9.462570124815141703e-01,4.987162622205646656e+00,4.128336989800555301e+00,4.831569541643758292e+00,3.211246100750840160e+00,5.343902502998335358e+00,4.456169118280133290e+00
-2.268017495856458066e-01,2.729099977591017634e+00,-4.479510528684834902e+00,-1.726598591179099307e-01,8.178885935778972271e-01,1.721393428966342398e+00,5.703450235584239358e+00,1.609590439570473652e+00,8.657061566026498234e-01,5.832052241539065207e+00,3.275055400053695998e+00,5.038320002771330408e+00
-6.307699118156784301e-02,3.615462745775235298e+00,-1.710251122774081978e+00,3.217555815846976586e+00,1.736861623118536535e+00,4.848628069717411115e-01,4.543319198418916294e+00,2.863637671601732659e+00,-2.504718404866137504e+00,8.080870330493329590e+00,3.499845759335292961e+00,6.471067310492218283e+00
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_c.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_c.csv
deleted file mode 100644
index 4f02e59..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_c.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-yhat1,yhat2,yhat3,yhat4,yhat5,yhat6
-NA,NA,NA,NA,NA,4.5198698709
-4.4638884169,6.1052290397,NA,NA,NA,4.6211568997
-4.5297061513,6.7852606117,NA,4.4265316823,NA,4.1251871909
-3.9602765237,4.8426663308,NA,4.3775467632,NA,4.6638495898
-4.5815687774,6.9711679964,3.9046740346,4.8834587090,NA,5.0124149912
-5.0087926543,2.5291015649,5.3456489214,4.2063953585,4.1444537981,3.8226462578
-6.1517552599,5.2296816616,7.5333795817,4.1516376855,5.1136867553,4.7234933012
-5.3130070303,5.7254314486,5.3167426361,3.8287269439,3.5135389778,3.6902876549
-6.7477832649,4.9924192296,3.9257134968,3.0179435611,3.8668566817,4.0913856295
-8.2922458342,2.5999572555,5.8473000820,6.8388231003,4.7804624056,3.8892081590
-5.3999966722,4.3891708623,8.0042422563,7.4647048367,6.0944537362,3.8011029986
-4.9268631863,5.1791461674,5.5593070276,4.4393936180,5.0707636579,5.0474233636
-4.5831258557,3.5554969611,3.9421793689,2.8123626975,4.0280476624,5.1265942735
-3.2974027806,3.8514583889,6.9117810486,2.8096822522,6.9558225063,5.3075943095
-3.6143859021,4.7636977351,7.1271538099,5.0131347637,6.5329706146,4.0927625914
-4.0811339123,5.7051578160,6.2634871532,4.6028275842,4.1489548157,5.4638696555
-3.5826948796,2.8155110640,3.7818169919,7.6988875378,4.6551991126,4.4544693811
-4.7519777500,4.0443288475,4.0557183372,1.9904507513,5.3909621140,4.6969314369
-3.8119226985,6.7892964937,6.2430866800,2.8186465122,4.1748386605,2.9013951798
-2.6485867993,4.0992356258,4.1948686798,3.3126974622,4.9763243887,4.9615908568
-2.8545761967,4.0701375342,3.5589623438,5.0709658525,4.0583583931,5.3007621781
-3.3164932439,5.3681389095,5.5775949891,5.3430809377,5.4945447666,4.7940105785
-4.8488082527,5.5315894882,6.3125616525,8.3333107799,5.0250304075,4.7731983448
-4.3091158506,4.4440913423,3.7146343806,3.8829231475,6.0292240890,4.6581351742
-4.4200202139,4.3730100072,4.3955931234,3.2923427245,4.8217372570,3.8809506614
-4.7345360789,5.2713470756,7.0079625475,4.8821634754,4.2210828280,4.0880291115
-4.0419148539,4.9744459007,6.1241948444,2.2006538002,5.3875145198,5.7264115664
-4.8384415774,3.5984652697,5.8149822581,4.5375867916,3.7860419156,3.7335864769
-4.5129904599,4.9882252271,5.3755538528,7.8777837033,3.3803801788,4.2256312404
-4.7838959538,4.9003150961,4.9989915022,2.4072556732,2.8664933593,5.0096231246
-4.1643911367,3.0255687405,6.5776441045,1.7489561300,4.8926298803,4.0165061687
-7.4924378089,5.4214192593,6.2790219486,4.5955144385,4.1458239067,3.7428759516
-3.7295197453,3.4640190275,6.2192978255,6.8093249192,3.5592524003,4.3497278608
-3.8181297573,1.4159053086,3.7723531357,4.3783584993,4.2009138250,4.6808925884
-3.4154467063,5.0984168421,3.9899186601,5.3115286162,5.0126588188,5.0250858899
-3.9462808187,5.0456900794,5.5941714349,3.9630406522,3.7413790714,4.7498749254
-5.8851230181,3.3809600571,4.4765611391,4.5548423110,5.1610276497,4.1413705286
-6.3521527847,3.3662029598,3.7592101868,5.3989171739,4.3641463290,4.3224903938
-5.1785657669,6.2509846494,3.4857108712,5.4454916696,3.7640425647,5.4391841855
-5.5836779952,2.8961246530,1.8447033566,4.2683544362,3.7087935659,3.7572713237
-6.3245422595,3.8962117268,1.6017833114,4.8790813722,4.5128795972,4.7036273666
-6.4089523567,4.7347946571,4.0948276115,3.5244540223,3.5250952694,2.3397637683
-5.8094546575,4.0753399655,5.2303496492,4.6219786287,3.7529698203,5.7218102567
-5.5544730560,3.6158399596,1.7738594178,3.7524958958,4.0147377845,6.0583143881
-5.0621714358,4.0380565651,-0.3309091132,2.3867566591,5.1894733406,4.8298303241
-5.0751426479,3.2785899719,2.4787297640,5.8212963342,3.8714567839,4.8726493248
-5.2656142924,4.8364457905,5.3496653262,5.9280810035,3.9809821770,5.2369398137
-4.8720291624,5.3507432399,4.0178119686,4.8600780785,4.6198829687,4.4690401548
-5.6421725096,3.8333221355,0.7001785130,4.3552485251,5.1755645482,5.1525751771
-4.8382764584,5.0790928546,0.7208470043,4.6277318103,4.4160767110,4.1213137144
-5.9445523723,4.6147273969,0.8570459633,4.5958633347,5.1597166801,4.7339244637
-7.2103037091,6.3778078385,2.7639919768,6.3396244403,4.4422622251,4.3242121892
-7.8702121119,6.7886553362,4.1263234991,5.5245732507,3.2405500752,4.4965352046
-7.2963798640,4.1763973546,-0.1600861333,4.0890517375,4.5696055109,5.5517151492
-5.6643537150,4.9947050692,-1.5636886008,3.3106643806,3.3086322266,4.4073316087
-6.0072995689,6.2697736177,2.0691562566,3.1343476764,3.3633478655,4.6013838031
-5.5883279888,6.2411856337,4.5057673908,4.7705277987,3.7994372166,5.3165146638
-3.5984097923,5.8089012720,2.6109154113,5.7185371092,3.0690793464,4.4637305813
-5.4487936598,4.5961869311,0.0064327638,4.1807414812,2.8500525448,3.9787323732
-6.9968546928,6.5252777865,-0.4764222179,3.6677213161,2.1852316241,4.2547421291
-7.0114754628,5.7094612450,1.7845275654,2.5034188732,1.3121415371,5.6328822884
-5.9339392306,3.2836794624,4.1247128083,3.7123145926,2.5537901672,4.3513767142
-6.4807493706,5.6558518279,3.2342286446,4.8383462516,2.5360917059,4.1227980926
-6.9519977802,5.3898912721,-2.3024721229,5.6595841763,1.2579562279,4.0486837970
-3.9030199906,4.9570071818,-2.4650094984,4.2619763539,1.8050783736,4.2342017377
-2.3248874185,4.9400224574,2.1495148392,5.8085252355,2.4655119853,4.6540547509
-1.9750115146,3.0841037973,4.2385286818,5.8588795773,3.0148243602,5.4813495494
-3.3943728839,6.7016683181,2.0816194017,4.6269377888,2.8074476747,4.8566055432
-3.6733940551,4.3479350326,-1.3101308002,3.8162616311,3.4961066710,4.1282569870
-4.0174831959,5.1407434243,-2.8479055137,2.9947532051,4.7379516330,4.4547545954
-4.0954754862,6.3427448724,3.0142529383,3.0381759596,4.2548051396,4.2570106365
-5.2251587382,4.9044466182,6.4930344488,6.7809907161,3.9179629668,3.7780146236
-5.5217677687,4.7586507729,2.5035570248,4.1538156632,4.5792511266,5.0111626200
-4.3503372187,6.5952641790,-2.4684776635,3.3687949253,3.7521170007,4.4560080145
-4.9987038746,5.1939214668,-3.0518680185,4.4374920121,2.9309385860,4.4924402772
-4.6736175269,5.9933181904,4.0452921481,4.3424623272,3.2074282680,5.1890942062
-6.1881400549,5.2453461141,5.6750143227,5.2343371038,3.2386325515,4.3534665763
-7.3067702328,3.8667857735,-0.3460302991,4.2493486000,3.4864389949,3.5833518708
-5.3037492146,5.4171061595,-3.5553425834,4.1235266336,4.0517537979,4.6839393287
-5.6994429328,4.5882530917,-1.6846722588,5.1663537388,2.8899327352,5.6058611557
-6.8547919668,3.9859339968,2.8231063267,5.1137828918,4.7638057305,4.2837268432
-5.6569207352,2.7358914572,3.3707207994,4.4173417738,3.3064925980,3.2215657645
-6.2958708598,5.6176912651,0.4629220313,5.9322680266,3.9879829676,4.7626663864
-6.0620743546,2.4452770194,-4.7043791637,3.1676141331,3.6032370375,4.1495746353
-6.5078461348,3.4834942777,-2.6446892777,3.1159814926,4.3332082542,4.7243819775
-7.3383068539,3.6723374200,3.2925974796,5.5489759841,3.7407669274,4.7336361884
-7.9927699015,4.2522575144,2.3256693362,2.5933305753,4.4734232274,5.1525533549
-6.7896622405,4.3052292920,-2.0511251729,3.9215920985,3.4225207354,4.0436040705
-6.2254744061,3.8792920460,-3.9651657804,4.3678594915,2.7705395432,4.9189881378
-5.2991402023,4.1373324835,-0.2809433160,5.0590322180,4.0729227673,3.1068188589
-4.0371526789,3.3087267431,3.3029965780,4.5882258663,3.6303529472,5.7101232618
-4.6857479661,5.1277636884,2.2170528046,5.3574940179,3.1143515272,4.2943312443
-4.9494097867,4.3261189528,-1.1518836526,5.2898759980,4.2018390192,4.4557935574
-3.6585942128,4.8635308638,-5.4280439441,5.3719291031,3.4421694623,3.4460924702
-5.2904395308,4.6489911648,-1.5073158276,5.8516581743,3.7574631749,4.3441253084
-2.9697758269,4.0292590024,3.3069617074,5.6522700842,3.8871624665,3.5594829778
-1.7522080194,5.6072127302,0.1757622613,5.4779015510,3.0111699715,5.3282826755
-2.4938822613,4.5640435871,-4.7751293822,1.1291066168,3.4009160161,4.0145041518
-4.1878497046,4.5429621528,-4.5347999590,4.7148616687,3.1039162563,5.0078559221
-5.3140893399,5.6251086656,-1.8317503887,6.2908115240,2.4131177372,3.2318799498
-7.5350087462,5.2015143159,0.9372826650,4.1568960128,3.1854889066,5.3716021119
-6.8262483154,5.6689126374,0.0146211331,4.6963606142,3.5001433245,3.7303193449
-6.8573416055,4.8671763720,-3.4111463497,3.9011029601,3.4300094727,4.9693083958
-6.0279652120,6.2777169279,-3.8003081984,7.4182878407,2.2243651473,3.5903545346
-1.6716265466,5.1000784402,-0.6927696998,3.2231669946,2.1983432384,5.8189271424
-0.9914587848,5.0351168505,0.6855098694,4.6875513810,3.4251257270,3.6519725959
-1.5221600278,5.1746494896,-1.9229072754,4.2917136471,1.9194385813,3.3653662051
-1.5591184418,4.4249205449,-1.6633146701,5.2171304811,0.8728013403,5.7342486385
-3.7592394981,4.9643119249,-3.3300485422,4.6908942025,2.3610467000,4.8212616672
-3.1323509761,4.4988392307,-3.7141359818,5.0657567877,3.5570215392,4.7018365468
-4.7617577308,3.9297503324,-2.6594865018,4.2778420992,2.9969991039,4.1462208565
-4.2084452695,3.1590718591,-1.2362535341,5.4632264009,2.8331799936,6.0049940707
-5.6486889301,4.0241616798,-1.8167711434,4.5672170597,4.9604478849,2.6239211785
-7.2095713578,4.3783491649,-4.5598306554,4.3662570951,5.3153254374,4.9331155056
-7.8781761249,5.1209739656,-4.6645970271,6.4912879388,5.6894155162,4.5121124658
-7.8820133743,3.6356021982,-3.9021496936,4.5939571309,4.6735707286,4.5294319191
-6.6683956961,2.9607675564,-1.2896297622,3.0084654659,6.8249987512,5.4073093021
-4.4983464234,5.1583332802,-3.4796258634,5.3459830559,7.2172058731,4.1593954194
-6.1382894365,6.4809233804,-4.6144189302,4.9404297054,6.6740514457,3.9389181123
-6.5288656135,4.2992227761,-5.0732570322,4.9436950977,6.3839564942,5.3580532430
-4.4513022567,4.2418199226,-3.5669920872,3.0150079174,5.8337849644,2.8818596610
-5.4885087462,6.0173651580,-1.9820119371,1.8650219395,6.6802071130,5.2356499834
-4.8059523093,5.5376830183,-2.6720766692,4.2509465653,7.0503104534,3.9190462329
-5.7781000088,4.8737957060,-5.1825143205,4.7210633777,5.4603243157,3.7325620990
-5.7221531085,5.4583204388,-5.1675813836,4.4302128408,6.1801871032,5.4770822070
-3.8919108920,5.1202684339,-2.3251155105,4.2459149813,7.6624333629,3.5643473220
-4.6776538878,4.6244585137,-3.7917497279,3.5947416904,6.3502214048,4.8870480155
-5.1831982091,5.3664613288,-3.3444600958,5.8032711021,4.5173404092,5.4004798139
-5.7278600439,6.6208023990,-4.0986848745,7.5704327440,5.8870655719,4.0600557532
-3.5253727130,4.0346348995,-5.0234140643,2.1670884031,4.7023144410,4.5340477982
-4.8180851356,3.5589645750,-3.6347588898,5.3538293229,5.1338742490,4.9360809860
-4.1043005150,5.9129950226,-2.6345075769,2.5318390662,4.9813101302,4.5461376088
-4.1268400811,6.7705453658,-4.3303882392,3.0322000473,5.3912248579,5.0632558666
-5.4737929611,5.3185156766,-4.6324485253,5.1735487417,4.8403451305,6.1070450990
-4.4621316700,5.9234664501,-4.1539676798,7.8078646380,4.4247155415,3.7916699721
-6.1337619431,4.4160090659,-4.0399352271,5.2801445768,5.4956815251,5.6202192820
-8.1826256935,6.9888528260,-4.1590695271,7.0067535895,5.9267554499,5.0903084987
-6.1586365894,4.2039810824,-3.8423847301,4.0392736604,5.7813576514,5.6114408927
-5.5823155836,5.4040340282,-1.4096184055,2.3563694763,5.7614110098,5.0299535962
-4.6528118788,4.5668239341,-4.0615490484,4.3462819021,7.0463654044,2.7776453527
-4.3966807447,4.2438759430,-5.8134791298,3.3672052579,7.3518207998,5.0329259510
-4.6520074631,5.7835474703,-3.7217235877,6.1903149944,4.8598823358,4.3257190445
-5.5497730718,5.3505822780,-1.4858526455,5.9587839524,6.2194084275,4.1180792747
-4.9757543957,3.9376386374,-1.1832255645,3.3224267009,5.5069060639,5.3862964375
-6.1443223807,5.1874464038,-5.5213285493,2.2818808748,4.8693238464,3.0851950877
-5.5571602387,5.5188365428,-6.1219397092,4.7729003917,5.4280432021,4.8722541775
-5.2751633388,4.8569112336,-2.3694537752,3.4162983553,4.4186571596,5.6245126340
-5.2208144891,4.4744038589,-1.5306320121,3.5698742275,4.5863266700,3.5456765263
-6.2183796904,6.4149949432,-1.9224599106,3.8747177476,5.6739357835,5.3537170378
-6.2100907194,4.7109949979,-5.3529424286,6.6973944444,3.7938140621,3.6406172841
-5.8653074433,5.3958413317,-5.1516520010,5.6621955256,3.5442246579,5.4976113805
-5.1347509795,4.3577590422,-1.8710110652,2.9452665645,4.3800338167,5.1322600846
-5.0752917232,4.7757921220,-1.8970893204,4.1987109363,5.4463713313,3.2181939515
-5.3074493822,6.0104737801,-3.1954011697,3.1542540281,4.7857835811,5.3335238545
-6.7982344383,3.6167996115,-6.2351132988,4.1532736192,3.4493159409,5.0979655936
-6.1007547525,5.5684885266,-4.0308711123,3.1105482920,5.9975371173,3.2308639971
-4.8798218511,5.5518380365,-2.2523895735,4.2356495254,5.3309199498,4.5570504515
-4.6496104914,3.7350710567,-2.7022507870,3.5019338461,3.9507391318,3.4599553847
-4.4517917468,5.3056306470,-4.3255252110,4.4650720513,5.3372064805,4.4822156945
-4.8563320846,3.9262668124,-5.7766685392,4.7583898219,4.7417721381,4.2570802523
-4.1770983444,5.1832166696,-4.5832741721,5.4096971623,4.7266506802,3.1789831189
-3.6222203453,4.6036676841,-2.4337467185,7.3140851132,4.1693131591,4.6293282967
-1.4004380114,4.5009664530,-2.4046223847,4.8961999537,4.9468523622,5.3990529799
-4.0704794029,5.5144219975,-5.0794149347,2.5858845728,5.8594373165,4.0824320541
-3.1721102090,4.8592996019,-5.6178215720,2.0680321905,4.8966120608,4.1358520897
-4.2434835995,4.0183344192,-5.3268538820,5.3519107253,5.0347492203,4.3641697381
-4.8701853895,4.3761634667,-2.7137159545,5.3774523904,6.3113146507,5.8071965867
-3.4994554045,5.0228750450,-2.4808114972,6.1396703466,6.0840152969,4.7710346498
-3.8786053236,4.7883288667,-3.6016892996,2.3928157505,4.0201077952,3.9898570548
-4.5630530010,5.6672689474,-5.0011218537,5.4236986268,5.0130087377,4.1060744507
-6.2113225757,4.6748752767,-3.8640706550,6.1431451428,5.1743270686,5.1778216914
-6.6692118943,4.4311680667,-2.7033089077,6.6536703972,3.0894965498,3.8105937973
-3.9308673799,4.8778622775,-1.9228806263,3.6277714253,3.8256500137,5.5295653135
-3.3634165841,5.6644804722,-3.0953105459,2.4579671623,2.9421506072,4.2604743892
-3.1958053778,4.6976424932,-4.7072746661,2.8296201063,3.9624979897,3.7593305269
-5.9244743072,5.1905919565,-3.5709740582,2.8260052618,4.2069404026,4.5376701457
-4.2779557933,4.2040167629,-3.0744972733,5.3605159031,4.6831876215,5.2621417844
-6.8681023885,4.8901946696,-2.9128602937,3.9992282454,4.7944928103,4.3519018189
-6.5837331673,4.0281935383,-4.0836039794,4.4739279293,5.4153109941,4.1439372899
-6.0292631416,4.7783024752,-4.9669891849,5.0567048457,4.6080021079,4.5146014426
-5.0367256872,5.2930641793,-4.5019252091,4.4337022236,4.4697130635,4.3610427677
-6.8263159250,4.7426945447,-5.0895143755,4.7106351417,4.3388652333,5.1749284827
-5.7603050244,5.0118214443,-4.4806807063,2.3050466946,4.2769071858,4.1675962072
-6.2026805110,5.1673278920,-4.8644731473,4.0905789184,4.3852199523,4.9616679374
-5.5237174157,4.9710731469,-6.0106977192,3.0116210107,3.6871847536,5.2787015860
-4.2758843153,3.9164045196,-6.0734228740,5.9235136769,5.0798637339,3.9743686422
-2.5369845297,5.4988485888,-4.9773113332,6.0304491799,5.5177771678,4.6120698610
-3.3392740208,5.1936911941,-3.0813416292,5.6657253200,5.1521729059,4.6296386231
-3.1879718533,4.2005475697,-4.4380844148,3.7260403165,5.1415059919,4.7887884304
-2.2849881368,4.9384576347,-6.8818248938,3.4398684833,4.3474782609,4.9472142313
-0.8535160849,5.6069253847,-6.0023719916,5.3775355859,3.8064616224,4.8626766636
-1.9080333212,4.1744887227,-2.3739976489,5.0095362497,5.0716612840,5.9565747533
-1.0837459085,4.3668474174,-3.1664279437,4.8722974728,4.2145886740,3.6618148661
-2.5056549727,5.5795980097,-4.8542318280,5.4102209783,4.0324964460,4.5218702767
-4.6712151703,4.5614302821,-7.3467098392,4.2213375807,5.6743201447,6.0469404861
-6.6306337091,4.3109607759,-4.8652348504,4.1909724366,5.8041211082,5.1706036813
-7.9164337718,3.7818252069,-2.7390036745,3.7876123461,4.9596898712,4.2296774551
-6.7172003722,3.9491093518,-3.4540741432,2.9887437944,5.2489356091,3.4094143409
-7.6208443066,3.8188588721,-5.9936608927,4.6720717907,5.6821480389,5.2098594179
-6.5105423366,3.9681655724,-6.9229296623,5.3981223958,6.1919212638,4.6647749576
-6.5478990629,4.5768661905,-6.5189609039,5.2910516220,5.0852177794,3.9039232504
-5.2293510860,4.3847226884,-4.5795181516,4.2639626862,5.0439223630,4.0833813308
-5.5564224554,4.3451466460,-2.8062836070,3.3259752138,6.4134744817,3.4878239370
-7.0475211837,5.0444235485,-4.8438731418,6.5127741892,4.4713216462,5.0718235554
-7.2881402547,3.8180075386,-8.1578345202,4.3728348528,4.4244535088,4.7297884643
-5.3221078271,6.2513424156,-7.2556017397,6.2144922083,5.2565821705,5.6676353196
-4.9981362668,7.1081153476,-4.4354767807,3.9521204829,3.2820556433,4.4417755000
-4.2831080183,3.7022657762,-2.5418089632,2.8917207020,3.4978677848,5.1013428478
-3.0552375400,5.8946953086,-3.4442307260,2.0969021300,5.8098824727,4.4403908890
-2.1270561991,4.7211261541,-6.4820535781,3.2136369467,4.1314865274,4.7924565237
-4.8225057666,6.0442809309,-6.6168820083,7.6229097186,4.6442638694,4.6487312432
-5.8127625970,5.6822854741,-2.8887885505,6.2977486770,5.8735823845,3.0681211595
-3.6094334981,5.5870613178,-0.1792135789,3.0798287191,5.6379205941,4.5231436582
-2.9234625310,5.0993039588,-3.0556829420,2.8002418764,5.6690875918,5.1878242843
-4.3317018246,5.9641921933,-5.5986729654,5.4098192649,5.3105563152,4.5160186201
-3.7838581548,4.0154935248,-5.0696097252,4.1840660668,5.8342157602,3.5058732482
-2.9426913722,5.5587113982,-2.4969449963,4.5826437925,6.2005776222,5.4730886684
-2.9519135036,5.1178469883,-0.7831752419,5.0610271262,5.8184666048,4.5448713585
-2.2159148334,2.9548841765,-3.8477364591,5.0544530445,6.4571816404,4.4133313076
-2.2267517510,5.3552900082,-6.6140465829,4.6246209946,6.2567097660,4.5838934328
-3.0680874090,4.4350775497,-5.6067655721,2.9090098796,6.5324346520,4.6766381815
-4.4503908551,5.1715116859,-2.2682729640,4.3937561009,6.1997104492,3.1859496768
-5.1894980166,5.1827655577,-2.0150154961,2.6425511269,7.0566041540,4.3046483698
-3.5536435937,3.8130431062,-3.0368611442,6.5537333188,6.4027768011,4.5627609486
-5.1444999320,5.5282037889,-5.2543582364,9.3567272718,5.4516597904,4.1582800637
-4.7181517653,3.5492474653,-4.8443595036,3.5644066918,6.0723878609,4.0101118231
-4.0672738068,4.8203942797,-2.5378747361,-0.2594726791,7.4474227918,3.9743049730
-4.8789349118,6.1361126692,0.0913687520,3.9186330670,4.8215436416,5.7558267451
-3.2007308395,4.1399070184,-1.4587139201,6.6617384155,4.7100930061,3.2379713165
-4.7472261902,4.0598184017,-3.8524363734,4.3478923167,6.8004487520,4.0602682829
-3.9515925072,3.1004381779,-2.9467869144,6.5483653678,5.1492093631,5.4615699189
-5.1226500263,3.1095252346,0.0691045915,4.2368190326,4.1679421433,3.5978215591
-6.6874733076,5.0555115377,1.4396384083,4.9007600215,4.4022319262,6.0572601646
-5.1776276337,2.4455360558,-0.0486792498,2.9499603431,4.3588858377,3.6751456967
-5.3368869314,4.8310856228,-2.2719973052,2.4145185557,4.2094830158,3.5343072265
-4.9655427044,4.1129324513,-2.7154102209,6.8036917100,4.0495571603,3.5312471220
-5.1993920458,5.2589139487,1.2311145530,5.9528480014,5.3123759769,5.3707439584
-5.7906888495,3.8411797117,3.0722678979,7.4633085632,4.8521186569,4.3489175301
-4.8840628002,5.4250885096,0.8958901414,5.4882276172,5.2262873444,4.9948964387
-3.9110094384,4.6213749157,-2.8569291544,3.9827068139,6.7093562236,4.6135811205
-3.7115185727,6.2419458425,-2.5396579772,2.5831590980,3.9459099203,4.8774097012
-2.6942180584,3.7090370313,1.8791394460,2.9263030605,4.3077772308,4.5173039776
-3.1029241656,4.4819446457,4.9096976273,4.0064962085,4.8284236585,3.6602259575
-1.9447738429,5.1892192459,1.2721852547,3.9225115485,5.2712064250,5.0267310037
-5.3126000256,4.8691533974,-4.4518172763,3.7508403707,4.9994157305,4.3409641274
-2.8314734221,5.5025951378,-2.6098588910,4.7612737762,4.3675590171,4.6783394698
-2.5104927484,3.2045710480,2.6885240480,4.9911923086,5.5783045790,5.5615336318
-4.0680046393,4.3981856321,4.0225754449,3.6711501086,5.9593579190,4.2800024682
-5.3252439683,4.9210880785,0.6210530611,4.5269191631,4.3651887002,4.0818407180
-5.5810416420,1.7076284346,-3.6927423554,6.3958539204,3.7084175682,4.5994102457
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_nc.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_nc.csv
deleted file mode 100644
index c7fb5af..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_css_nc.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-yhat1,yhat2,yhat3,yhat4,yhat5,yhat6
-NA,NA,NA,NA,NA,0.0000000000
--0.1620293012,1.0763252346,NA,NA,NA,0.1078831621
-0.3601405207,0.1766955039,NA,-0.0165592677,NA,-0.3289649557
--0.3276410220,-0.8765652166,NA,0.5607487823,NA,-0.4129752042
--0.8830498027,0.3619650853,-0.4399551803,0.5743380313,NA,0.3040087976
-1.6623838847,-0.6136962904,-0.0379242817,0.3887314691,-0.6720426779,-0.5677674192
-2.8010906652,-1.0090108368,-2.5559025850,-2.1606884569,-0.4565104793,0.4427811692
-2.1873676889,-1.5045283063,-3.3103014448,0.9254180040,-0.9553202931,-0.6441671345
-1.9765028673,-0.5908049198,-1.3263515162,-1.0742758755,-1.1016875679,-0.5134488407
-2.3727887409,-2.5727537198,1.3155327240,-1.5517685481,1.2591223517,-0.1658043749
-3.2186998744,0.0255050356,-1.5521338895,0.2304978781,0.4388472839,-0.3511000927
-3.5581913022,-2.4090822893,-4.4627549060,0.0149018188,0.6318442131,0.1184528446
-1.1218687467,-0.0860811831,-3.5214536569,0.0511823774,0.3779683787,-1.0290729403
-1.2240538679,-1.2128602891,0.9753153044,1.1698629310,0.7963087337,-0.2702123461
-1.1533855064,1.3471252145,1.3932693656,1.4755850066,1.0328374908,-0.6211128092
-2.4581189494,-1.3912883937,-3.8630151452,-0.3488054131,0.5202204427,0.3211239801
-2.8307041762,-0.9586092772,-5.2191970998,-0.1485236932,-0.8277286453,0.7067562946
--0.2418064002,0.2682323272,-1.1621312983,-1.1731786861,0.7586577819,0.8247148211
--0.5350911141,0.5088429408,2.0239646853,2.8126715661,1.8142975337,-1.4212400422
-1.5417494305,-0.8333983591,0.0305314248,-1.8720807250,-0.3597109530,0.4069194511
-0.5829735052,0.0670012529,-3.7576893588,-2.6635149196,-0.0632116734,0.3451164985
--0.1574127394,0.2554475805,-4.9540547603,-1.7914049618,1.1250694242,-0.1450909033
-0.4481067336,-0.3963546295,-3.4848837402,0.9165578791,0.4616456682,-0.6334964678
-4.1314752579,-2.5882646852,1.0871729791,5.9843069077,-0.1880317125,0.3998983267
-1.7808125691,0.2654288652,0.0731513281,1.8332157601,0.3383632385,0.8227803569
-0.7427496991,-0.2537233052,-4.1264500027,-2.8013735686,0.9106291336,-1.6586259800
-0.6927208117,-1.5241304727,-7.9731848527,-4.2338549550,-0.7507761084,0.2552804133
-0.8740479843,-2.2225408928,-2.9637270787,-1.0611665109,0.7866090908,-0.1093100406
-1.2593581157,-1.6871815581,3.7484267162,2.5904379660,1.5242830356,-0.1318389777
-0.9296387917,-1.0508499053,0.8385821650,-0.8525125442,-0.0251047215,0.0037358716
-2.2817462009,-1.8223182006,-6.5379120128,-0.5448796942,0.4567307630,0.9630744311
-0.8186423439,-1.4246039012,-5.9449925044,0.9950262294,1.2267590596,-1.5554781929
--0.3136681181,-1.5516045764,-0.4412878089,0.3247088341,0.7105911772,-0.4856191947
--3.0056414674,-0.9891890496,2.1376014779,-1.9365444196,-1.0880596271,0.2107868423
--4.3530137678,-1.8512980258,-0.7300630138,-1.5778465471,-0.3487805856,-0.1652635750
--4.2367761222,0.1702787396,-5.3002550580,2.2435651676,0.9033292788,-0.1850124752
--2.5011451301,-1.9234430885,-5.2140509172,-1.9294447931,1.2366701326,-0.2174429256
--3.3916655158,-3.4628061387,0.0626358505,-0.7876455397,-0.8785360318,0.6121910205
--2.3427641943,0.7046040012,2.2157268862,-0.5783203152,0.8117945418,0.6947694022
--3.0339991557,-2.0997716110,-1.6883993641,0.6295430828,0.6673256488,-1.4092007089
--1.8325533464,-1.2835063085,-5.1339411876,2.1828615804,-0.0561461477,-0.8983844908
--4.1786055497,-1.5244177091,-4.6308457609,0.3813580643,-1.1524503744,-0.6001159502
--3.2640875930,-0.6398291785,-0.7891696911,-1.1629215322,-1.5173216628,-0.7124449033
--4.2914662232,-1.9841588730,0.3868676290,-0.2204710296,-1.2806920099,-0.3883978653
--4.2865799433,0.0034622129,-3.1597092800,1.8670492859,-2.0223589653,-1.2077703800
--4.7401216386,-0.4352705871,-5.9864916481,-0.8348981801,-1.7224422396,1.2554745655
--3.1718113831,-0.9512944005,-4.4899865859,-2.3132324498,-1.9040690424,-1.5403366655
--1.9639862990,1.0970311937,-0.8131942917,0.2017228525,-2.5357307023,0.5312187777
--2.3620362939,1.1810594179,-0.3732331565,-0.3734232754,-2.5025606470,0.3276001684
--1.3517555860,-0.3707603411,-3.2225082098,0.6599748835,-2.6339908342,-0.7835475414
-0.5469707264,1.6123856105,-6.1084951970,2.7116864438,-2.3315544004,-2.2130916981
-0.4492908626,2.8893302242,-3.1180365590,-0.6502607102,-2.8469139730,-0.7512854763
-0.6404727277,-0.6563373691,-0.5296084743,-0.5094939424,-2.0311413374,-1.1455262079
-0.4515656834,0.8142799595,-1.9844884043,1.6763493211,-1.7872457808,1.3174683496
-1.5250715453,0.8930116711,-2.8018485546,-0.0345620834,-1.9507134808,-1.0708439496
-2.6613210917,0.7981939109,-4.8624432252,0.4115656065,-2.5263285916,-1.4170313258
-0.8805244364,0.2211299364,-3.1532671589,-0.2594344326,-0.8702567836,0.3855312576
--1.1097821097,1.3362547905,-1.6939296989,-3.6089450603,-1.7980382791,1.3172670303
--0.7650130235,-2.2645296027,0.5031617922,-0.7579844828,-2.2753279475,1.2766928632
-0.3003388375,-0.6195675809,-2.7500533439,2.4227934874,-0.6621613838,1.1429327287
--0.5736725545,-0.1484595966,-4.4775696257,2.8828489462,-1.3451158049,-1.0832131452
-0.6174312542,0.4202360093,-2.1711933008,-0.4279113596,-1.1913630750,-0.8397415767
-0.4045580174,0.0451151681,1.6356140658,-0.6973859621,-0.3336257922,1.7392824534
-0.3804509658,-0.8393860763,2.3013898559,-1.5754205024,-1.2556660937,-0.6936069274
-1.0636189873,0.4477986596,-1.2130353833,-2.7506288418,-0.3583804491,1.1254720390
-1.7769900945,0.6508200812,-2.5931608334,1.0157749627,-1.9421917636,-1.2236786196
-0.1855065648,-0.0751668116,1.7755986541,2.3688389712,-0.5996530926,1.1122804175
-0.1580506446,0.8216008907,3.2396156086,0.7295526170,-0.4433040213,-1.4967378571
--2.6049068611,0.0063699766,2.0221656222,-0.3223727173,-0.8717089236,0.5465831457
--2.6240623901,2.4070651677,-0.7803549453,-0.9112893136,-1.0863430337,0.3194176692
--3.4104828225,1.7247616209,-2.1914751667,-0.1426235550,-0.7835969602,0.0040361941
--4.0714248154,0.2918316934,0.8317741206,-1.6667592098,-0.6835966612,-0.0325900640
--1.7593571912,2.0587796319,2.4876492803,0.3592888964,0.7055267207,1.3189199760
--0.5235314445,3.7422360239,0.1964784503,0.7641348737,-1.5494419361,0.5661271110
-0.4103929050,1.2036451343,-2.3847533732,1.2973095141,-0.9624355362,-0.5832838351
-1.4602387816,0.6019643512,-1.6377259360,1.0988426026,0.8836954131,0.9042071051
-0.4745220846,2.2604216657,1.2874095002,-0.5797869711,-0.5210696036,-0.3133676321
--0.3440908381,2.6031059258,0.4293511753,-4.2464043315,-1.1583379667,0.2310597817
--1.3277407832,-0.8343985667,-1.1861631484,-1.2114487883,0.6772451830,-0.6953023813
--1.8177427846,0.5603112539,-1.5156969177,1.0233968209,0.1012539400,-0.9079785206
--1.0851813058,0.0025580865,-1.3195702684,1.6074410989,0.0886550074,0.4686556683
--0.7685202071,0.1240537483,-0.5397969411,-0.1230160796,-0.3919427539,-0.6112440245
--1.9325222542,-1.7540141932,-0.0542071210,-1.6942224341,0.1716101296,0.6253447096
--0.4465359440,-1.6715056084,-0.8912282808,-0.8398094783,-0.4423061361,0.5997095689
-0.1259956623,2.2017347230,-0.9114244186,3.6873239692,0.9656533172,-0.8510503381
-1.2834024430,-1.8305539545,-1.2103091141,2.0866044984,-0.1085569181,1.6817824736
-3.0661167679,-1.6041193446,-1.0592049811,-1.7119702607,-1.2958848525,-1.2476339906
-1.0722998066,0.8347897999,-0.3850676873,-0.7665558693,-0.0896908737,-0.8893961478
-1.8633832542,-1.3426457313,-0.3262718947,-0.5928999144,-0.1352622174,-0.4529482558
-1.1869314978,0.3447991504,-2.0563281885,-0.6496770176,-2.3526304947,0.7670261128
-1.9885004186,0.9036806796,-1.5858387501,-0.6507717029,-1.3937965867,0.2920474733
-1.6668116125,0.2856065415,0.4692764740,0.4022732643,-0.0733459842,-0.6786726587
-3.8085133800,-0.7915243687,0.1494041335,1.8323270012,-1.2824810067,1.7361479332
-2.6332048655,-0.4378132726,-1.9674173475,0.4652059873,0.0893296071,-0.3114582928
-4.3666813626,2.0940639598,-2.5454759166,-0.6543996825,1.1230943513,1.1420266368
-3.2172889176,0.0782467008,0.0684575675,-1.9397364028,0.7766789364,-0.1548087922
-3.3813510177,1.1475333599,0.9668739087,-2.5012650461,0.6779248606,-0.7055084256
-2.6307121938,1.1488234405,-0.5685379178,-0.8293721269,0.4270194698,-0.5899481251
-1.1060925092,0.0797100009,-2.4468013057,2.3429435569,0.5065707180,-0.9164447183
-1.5410502922,0.9519093966,-2.2324375999,2.5196040553,-0.2527915098,0.1708263786
-1.3030535305,-0.2733898149,-0.3756420172,-0.5371835448,-0.3165273152,0.9269187113
--0.8553687173,0.2913302796,1.4560505084,-2.1774563278,-0.1666207370,0.8095705930
--1.2438851463,-1.1317151797,-0.7151890212,-0.9986294871,0.7342518667,0.1492766272
--0.9717952277,0.7464140677,-3.4384526915,-2.8674548946,-0.7129439775,-0.9711124500
--1.8185850743,0.0625997879,-1.6342819484,0.1423130412,-0.6278795004,1.4224602349
--1.8952322671,0.6597433648,-0.1452859683,4.7470751013,0.6943251229,-0.7969948839
--1.4588819814,1.0412210222,1.7645860331,2.9936426919,-0.1611558584,0.3267503974
-0.1919176101,0.0842490462,-0.3237970721,-2.3132919822,-0.6476613428,-0.7372045162
-1.2537852383,0.1489771105,-3.0019208585,-1.1095357636,0.6586122505,0.2553199521
-0.2260397221,0.3635730828,-3.3936467150,-1.3830476291,1.8758240730,-0.3568994020
-2.0586740357,1.8316798374,1.3436146708,-0.2754489386,0.8248273450,0.2198508240
-0.8495164614,0.4149002189,1.6854131956,2.8485797493,0.9769475465,0.0230142731
-1.2226053601,0.0002322890,-2.6254504111,1.9683597101,0.7847949977,-0.2038701241
-1.9728864759,1.4304649464,-5.0117800711,-0.2352434895,1.5265079958,0.2479952476
--0.3857775746,-0.6789142720,-1.2034550085,-1.7650608634,1.0741083549,0.0635176286
--1.4208691562,0.3051814017,0.4012989882,0.9369064417,1.1549821385,1.0771645607
--1.5256955487,2.0112791407,-1.5569071459,0.5398303991,1.1090687730,-0.5649351124
--0.8746618353,-1.6225202630,-2.8251596354,-1.3329769666,1.8108491184,-0.7708301098
--0.8958018319,-0.9683154555,-3.4073304226,0.8425223018,1.5495881509,0.0154973845
-0.1264932574,1.5441068206,-2.4942986602,0.9426260955,1.1385325525,1.1551837809
--1.8727492455,-0.6931566765,-1.6146807921,-2.2712161715,0.5659157893,-0.6252635245
--3.9748419781,-3.1963841219,-1.4314808642,-0.5243782334,0.7744876794,0.9006608134
--4.2932097483,-1.2145518647,-2.8590852266,-0.0497339593,0.9711406711,-0.6650932777
--2.7816280607,1.1299503089,-4.7203843066,2.6544759603,2.1123849370,-0.4881382832
--1.2840514437,-0.9327069523,-2.6920982284,-0.3450737471,0.1832385033,-0.2000738106
--1.3041964466,-1.0439901420,-0.9884432785,-0.1638410828,1.5618161420,-0.1195316486
--1.1237703057,-0.8246109307,-1.0361384927,0.0593352102,1.9939050020,-0.1106988244
--0.7177917125,-0.4407523470,-1.5485552921,-1.6964443552,1.3389389155,0.0150756719
--1.2544276611,0.1467364223,-2.9934019219,1.0725924592,0.6814504551,1.8525906434
--1.4057413396,-1.6081404740,-3.5098467865,0.1444365470,2.4538824102,-1.4273403499
--1.0676399038,1.9202922084,0.0643704456,-0.9977986078,2.7279063863,0.0497703197
--2.2404869864,0.1532439874,1.0821929727,1.1711155054,1.6325761584,0.5450626700
--3.7473366416,-0.6270453274,-1.7025298710,1.3786407738,1.5338011763,-0.1923266381
--0.8388796385,-0.4499295312,-3.9622147290,2.0666136280,1.7412179421,-0.0345263109
-0.4492904376,-0.4318418300,-1.4309990044,-1.8829472626,1.5134765542,1.2601550566
-0.8683198101,2.5632584768,0.5115605591,-2.4199179221,1.4335441209,0.5765594574
-1.2880341609,-0.2068725262,1.4429368928,2.0309025011,1.5008337899,0.2212474408
-2.4851766591,1.7190335705,-0.3096533452,2.5352851772,1.2529239444,-1.2842407399
-1.3016602821,-1.0184362809,-2.5116480189,-0.3895744650,1.1150718064,-0.1580399227
-0.6565410872,0.0411355770,-0.9083880673,-3.1323762102,0.8945384479,0.2138841390
-1.0768673167,1.5859225424,2.3904608298,-0.7440594258,-0.2683661128,1.0341385153
--0.1790414604,0.2257963871,1.4021957017,-1.4086477970,-0.7467251769,0.3517930142
-1.4560780501,3.9984288949,-2.1818173578,-0.1251482230,-0.6661402218,-0.7283957183
-1.6223739312,-0.1143918759,-1.5765261755,2.4444612260,-0.5737782293,0.3650902527
-0.4549327959,1.7470763383,-0.1722074884,0.6187509259,-0.9800954064,1.3849139562
-0.5840383556,1.6292540683,-0.6462225506,-0.3908948507,-1.1793196884,-0.0849224215
--0.0382466852,1.8320389925,-1.2457891641,-0.2369459954,-0.3801780397,0.0973902910
--0.3271092288,0.7583013661,-2.5713985227,-3.2219413371,-1.8150064595,-0.4701454477
--0.2630881327,2.4083664388,-1.7397756604,-0.9936552269,-1.9537200665,-1.0144950788
-0.6015393583,0.5004869491,-2.7367094281,-0.4067622902,-1.2399765727,0.7793202425
-1.1712844378,0.8724853692,-1.9834873742,1.9263495884,-1.9961075760,1.0742257047
--0.0255132722,1.7464131231,-0.8744529916,1.7041799186,-2.6545459746,0.2711739578
-0.8593365503,1.1598834659,-3.2157277772,3.0344766251,-1.2223572637,-1.5052605949
-0.2457927052,1.2063133846,-4.0734126601,-1.4352410817,-1.0696270265,-0.3568840392
--1.7587292989,1.0318922407,-1.1299975686,-1.6206030760,-2.4767398216,0.0736147481
--0.7629155002,2.6119388248,-1.3595461224,-0.4061388568,-1.9446633346,0.1228716286
--2.4464499592,1.5633307746,-1.1993874946,2.5129548291,-1.4417163050,-0.4544626048
--2.1913624203,1.5018233954,-1.5081420931,-0.1441071602,-2.6941797342,-0.4782788113
--0.4294997029,1.5294432495,-3.6086326129,-1.1814792298,-1.7503274589,0.0850598296
-1.0757433927,0.6343211054,-2.1765770334,-0.9696283571,-3.0033918973,-0.5264054900
-0.4819018380,0.5439632591,1.4985419264,0.1996680365,-1.4520324278,-0.2133163669
--0.1048440187,4.1604426344,0.5096327782,3.4726472479,-1.2251096444,0.4559622053
--0.2082616085,1.3372895175,-3.4099921673,-0.1261827055,-2.4412525188,0.3982242094
--2.3214097267,-0.4512162789,-6.3087789152,-1.4211177958,-0.8431409439,-1.6418491340
-0.7598730389,0.5221484725,-1.7706101267,-1.9112243576,-1.1138156974,0.1560459747
--0.4503059263,0.3382168765,2.8757978257,-0.7475482694,-0.9432590507,0.3671384565
-1.4252843588,-0.3581274508,-1.0660369457,-0.1521043440,-1.6686012550,0.4391666189
-0.8557951889,-1.6700281249,-6.0155440661,2.0569821898,-1.2167681837,0.0616966748
-2.1197363662,-0.3254142363,-5.0317565719,-0.1651779946,-1.0793436425,-0.0362253607
-3.7843843535,-2.9058697201,0.4015948577,-0.9699338807,-1.5304811950,0.9710599826
-3.6639968597,-2.1644623930,1.0885490913,-2.6192732274,-3.1032901204,-0.6103751479
-5.3516222160,-1.7468348305,-0.2786307986,-1.0929856632,-1.2347693125,0.2714720455
-3.1328806708,-2.1959700722,-4.4151841710,0.2158512552,-1.7673027748,-0.3892622913
-3.2621453943,-1.5641843422,-4.4278632716,2.7467670287,-2.5500989566,0.1181352020
-1.3756774757,-1.1645107661,-1.5498937290,0.3843958256,-2.3958185948,-0.3641296031
--0.3409150110,-0.9639985923,1.2589854726,0.7860196575,-2.6163325677,-0.0227128879
--0.7816689444,0.3988634004,-0.3486307368,0.5479778811,-2.0177759913,0.7301618761
--1.6579747618,0.8849597588,-2.6806508969,-2.6735852090,-2.6746944292,-0.0649716491
--2.1961153808,0.8915451325,-4.4850343973,-1.5485017509,-1.0105601333,-1.2477650565
--1.1158707559,-0.8991288828,-3.3466290565,-0.7964497332,-1.7735976986,1.0130908349
--1.5166983176,-0.5146942726,0.8777421326,-0.6166224849,-1.6980606762,-0.0905785189
--1.7729558279,1.1958232363,1.0086630472,-0.1458495575,-1.1187352547,-0.6843712475
--1.7572842839,0.1906426210,-2.9753112175,1.7966903531,-1.1291332097,-0.1998397161
--2.3956951952,-1.1176311156,-5.8018216059,0.6681055010,-0.5764200383,0.3737081085
-0.2967084706,-0.0054861191,-3.6012921482,0.3572205585,-0.2183681890,-0.6228683254
-1.5631389591,-0.5727871430,-0.2699709190,-0.8870507780,-1.7688176444,-0.3602823197
-2.6479221150,-2.6245742900,-0.2735926556,0.2475807860,-0.1552128003,0.3250331614
-0.7983025974,-0.0510894527,-2.5738338009,0.4732649733,-1.3747457506,0.0957910586
--0.0924144869,-0.0276571999,-5.6236119883,2.0516985242,-1.1256007974,-0.8043494199
--0.5302712395,0.8002007630,-3.4635446258,1.8626519987,-2.2097073920,0.4704163506
--0.7237648452,1.4086542240,-0.3968298833,0.4119235225,-1.2247518267,0.5256245786
--1.3994066744,-0.2774679310,0.0199043187,-1.0194311537,-1.8897817391,-0.5900572387
--1.8789890298,1.8425476110,-3.6403975824,-1.1766808641,-1.8647530965,-0.3486817825
--0.4057778728,1.7074937390,-4.4488562742,-1.2676190060,-1.8621238285,-0.0710751163
--0.0304203855,1.9559974751,-2.8552962079,1.4416999548,-0.7098298967,0.2816369315
-0.8290867970,0.1321851571,-0.5121936468,1.2459821810,-2.7697560590,0.0394053858
-1.6619931114,-0.5314022181,-1.8124021528,0.1003098464,-1.9618786845,0.2429368025
-0.0233917951,1.3128697780,-4.9491836546,-1.7398323714,-0.1332647927,0.6851573716
--1.5938026981,0.3163514424,-4.5224958562,-0.5391324996,-0.5773835825,-0.1871588296
-0.3638404779,-2.6298377986,-1.4250908111,-1.0021284973,-0.8613260935,0.7374959812
-0.5049543399,0.2581538151,-1.9621747689,1.8678185046,0.1420202189,-0.1399374936
-1.7178577306,-1.3075000570,-3.9049820069,-0.5754499867,0.9132804385,1.6319493398
-0.5713175500,-1.1067531350,-3.6692420736,0.7438133428,0.6351915647,0.1102152614
-0.8329003496,-0.2038010505,-3.4166252352,0.8512011136,-0.0053701924,0.0961182657
--0.0812582815,-1.4437847496,-2.4714870590,-1.2049075580,0.0372221952,-1.2563382425
--1.4005538589,-0.9965180757,-1.5605602294,-1.3962239868,0.0685269483,-0.2331680477
--1.9867378985,0.1577102300,-2.2639115107,-1.0749147372,-0.0491900963,0.4011222879
--4.5766474934,-1.6632162835,-3.4918566715,-1.0043356903,-0.6930563478,0.6653575283
--3.5169126058,0.9601324573,-3.0683263156,-1.3048229736,-1.0390779848,-1.3761689067
--3.5514376047,-2.1615533016,-1.8957360047,2.3403532519,-0.3351914090,0.8152645987
--2.7784219735,-1.3912159698,-1.2708855591,0.6741232567,-0.5379513092,-0.7717465646
--0.3826040904,0.5514294002,-0.9899533327,1.4351298979,-1.7637370168,-0.4634233961
-0.3763857626,-2.5424580767,-3.3300722422,0.0239433986,-1.5073755119,-0.1354545585
--0.3012361436,-0.4469433857,-3.8002132290,0.3359329880,-0.5897910985,0.4499958259
-1.2510846794,-0.9657040275,-1.2505104957,0.8124550886,-1.5876799482,-1.0303601428
-0.7228497089,-1.7418057657,-0.0489523088,-0.0684346421,-0.8089348930,-0.6172289272
-2.2485983104,-0.5939003086,-1.8601977037,-0.7626268426,-0.8551833571,0.7163767516
-0.6259347602,-0.9807897043,-2.3129514163,0.5107115382,-0.1953584105,-1.1952038954
-1.2361744270,-0.2730315847,-3.5726017436,1.4870050796,0.2065032947,1.1136283552
-2.3656138272,0.0681867291,-3.3289612573,0.7358213471,0.0378984213,1.0495243492
-1.4425258895,0.1764432300,-0.0513235180,-1.5376639175,0.7889776785,-0.1490278429
-0.5804185766,0.0433159876,-1.0956591525,-0.1783892109,-1.0606460002,-1.2409017897
-0.9943328883,-0.0299720342,-2.2167279448,-1.4755549755,0.3831918290,-0.1245888595
--0.4053428942,-0.3213502439,-4.5809721441,1.0112272917,0.1742095678,1.0611935462
--2.4014231304,0.4920305503,-2.8139696889,2.3860433953,-3.0947424135,0.3521974125
--1.0130373816,-0.5611101369,-0.0798331799,0.8672821242,-1.9235781184,1.0241560101
-0.3969227423,0.1357090549,-1.3459032509,-2.0811411261,-1.4613133019,-0.4117199010
-1.5758700429,-1.2278617624,-1.9136486565,-2.6854034279,-2.6943596667,-0.2386195026
-1.2543455794,-0.4354934703,-3.0671834757,0.6931403857,-2.6829317083,-0.0548617659
-0.5391573877,-2.3274378127,-1.9932576354,3.1210953850,-2.5822993637,0.3131597722
-0.6702914110,0.8928679916,-1.1407418811,2.2245740680,-1.7805110619,0.3350589156
--0.5605888328,0.8307027192,-1.6153800514,0.7748059668,-2.1833120528,-1.1391249928
--2.4265242403,-0.4450314162,-0.9084902408,-2.6527287200,-1.3072066460,0.7921656495
--3.0033215422,-0.2599596995,-1.5200587505,-0.4546514573,-1.9098865422,-1.5902209391
--0.5443117453,1.5845420667,-2.6659474213,2.5668487197,-1.5033178436,-1.0085279000
--1.1488108161,0.8539179940,-1.9375475110,-0.7650103537,-0.9246236474,0.3703088611
--3.6576550743,-1.3642864155,-1.9915577508,-0.7584986825,-1.2164975870,0.9089413541
--3.9149445370,-0.2580440997,-0.2089533972,-1.3440067590,-1.0177841890,-0.6012744995
--2.6452706249,0.2849101376,-1.2809371951,-0.8101844621,-0.9528112386,1.3440120004
--1.9966947461,-0.5510878893,-3.2489542748,0.3024655425,-0.9942638613,-1.3368052571
--1.4156004116,-1.4682332328,-3.9995929002,-0.3770799139,-0.4301403524,1.3327893009
--2.6725413294,-1.3656433490,-1.1396614533,1.4207237537,-1.3157291195,-0.0512669332
--1.9850946929,0.2025038390,-0.7370044950,1.2121592685,-1.0880180905,0.5200977259
--0.4039743516,-1.3003884417,-2.9450916525,0.1897525914,-0.2373052814,1.2429578845
--1.0865213652,0.3976776731,-3.9620906478,-0.2099206828,-1.5694771417,-0.3697143432
-0.4429433664,0.5670059779,-1.8084993683,-0.1297177905,-0.9254186423,-1.3386159874
--0.9940090446,-0.2456374690,-0.5488862066,-3.2862879547,0.0502006060,1.8764091628
--0.1785085243,2.7613210322,-2.9955197942,1.2170625726,0.1663899009,-0.2429845343
--0.4520997598,1.1859677824,-3.5194161296,-2.0198847559,-0.6616405560,0.9270158714
-0.4395893887,2.4257173314,-2.7310543613,2.8660585859,1.1653674121,-0.6792024082
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_c.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_c.csv
deleted file mode 100644
index 4454938..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_c.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-yhat1,yhat2,yhat3,yhat4,yhat5,yhat6
-4.8564757594,4.7737798231,1.0629802339,4.5077285877,4.5622072362,4.5192778020
-4.3802260168,5.6140133447,3.4640440803,4.6451139813,3.8773321387,4.5438641692
-4.5588418673,5.6225064824,5.3407060303,4.3405011840,5.4600466767,4.2782569409
-3.9507827608,5.3487217610,5.4118204790,4.4096228098,4.3702357145,4.5836303978
-4.5804681490,6.3881841171,4.1502891739,4.7975154783,3.7949197183,4.9718794716
-5.0032409924,3.4106576794,5.4821040681,4.2964182149,4.1528170835,3.8740105400
-6.1439810685,4.7432320834,7.7039949074,4.0943179478,5.1277481550,4.6131286421
-5.3098043569,6.2280284352,5.4650688035,3.8951289718,3.5021875797,3.7720644643
-6.7370040358,4.5769052643,4.0785096637,2.9922651118,3.8554921177,4.0006637112
-8.2794534209,2.8986527047,5.9934467858,6.7863266033,4.7807352842,3.9700512070
-5.3994706147,4.1561554760,8.1640216896,7.4298455092,6.0888272280,3.7754024525
-4.9218045655,5.4072460550,5.7171282128,4.4379132025,5.0405425254,5.1032809723
-4.5809811787,3.3815613729,4.1122940996,2.8103672864,4.0052742863,5.0975296701
-3.2986980116,4.0528408707,7.0812545405,2.8175490692,6.9643606969,5.3282288302
-3.6125257499,4.7123122142,7.2802430740,4.9998742381,6.5195297109,4.0888259706
-4.0789657485,5.8862981771,6.4284934825,4.6063307602,4.1113507949,5.4600237412
-3.5827143922,2.7156701332,3.9263920137,7.6742887717,4.6487630996,4.4507906663
-4.7465347618,4.1929171465,4.1915903715,2.0185734313,5.4112948426,4.6820392038
-3.8127243048,6.8089433136,6.3694834206,2.8142361499,4.1789450524,2.9246777573
-2.6507492591,4.0732023852,4.3113964897,3.3292074089,4.9631906968,4.9470150498
-2.8548980286,4.1067694984,3.6986970613,5.0550056219,4.0370113097,5.3120288563
-3.3159395945,5.3863702796,5.7334881207,5.3434184298,5.4904297697,4.7803059985
-4.8431197809,5.5538298091,6.4783859548,8.3057664495,5.0202593302,4.7801484532
-4.3082119128,4.4230517789,3.8676933770,3.8941721698,6.0173206815,4.6440567890
-4.4165127148,4.3808105249,4.5517660837,3.2898692911,4.7963174021,3.8920677491
-4.7309696514,5.2801924782,7.1540005854,4.8903934701,4.2106121558,4.0817734302
-4.0410886315,4.9585603530,6.2690890362,2.2073876653,5.4001970429,5.7237280604
-4.8332270128,3.5634924463,5.9852363972,4.5417420173,3.7883420643,3.7343618389
-4.5111306180,5.0333269610,5.5439697883,7.8649159665,3.3783377468,4.2256240739
-4.7795160442,4.8885895295,5.1558960118,2.4246478844,2.8723762647,5.0049152206
-4.1634630642,3.0082511574,6.7333312854,1.7577371552,4.9067761467,4.0185751413
-7.4774502912,5.5256888505,6.4253062305,4.5969330228,4.1336608185,3.7435630339
-3.7357425973,3.3978865699,6.3850324197,6.7955618376,3.5374585303,4.3519277114
-3.8136969056,1.4223961614,3.9137300397,4.3787671461,4.1996445120,4.6801971467
-3.4168935420,5.1928940937,4.1313460248,5.3022783788,5.0220531097,5.0231834564
-3.9431774564,5.0539207294,5.7166316517,3.9645588970,3.7344911267,4.7472665236
-5.8769015221,3.4568435077,4.5983046191,4.5476226499,5.1508903972,4.1423306786
-6.3451471244,3.4525233065,3.8923446980,5.3935741113,4.3477370835,4.3221446745
-5.1756374968,6.4372027039,3.6219427792,5.4372556864,3.7588708954,5.4326260847
-5.5770569483,2.8471482674,1.9528836062,4.2697049976,3.7217798152,3.7617662530
-6.3168522717,4.0152314769,1.6965283909,4.8762993376,4.5263133252,4.6945269065
-6.4017152938,4.6879242999,4.1933331002,3.5315279085,3.5152815115,2.3590033197
-5.8043000464,4.0628647407,5.3578122209,4.6217281026,3.7408163831,5.7068734824
-5.5491499549,3.5900272630,1.9076262576,3.7595010920,4.0144473333,6.0648587570
-5.0586337054,4.0577439190,-0.2033612457,2.3925340704,5.1933709218,4.8173241101
-5.0706090032,3.2997132534,2.5787941478,5.8131547100,3.8574885646,4.8777641015
-5.2607840312,4.9485054124,5.4461001297,5.9182842360,3.9711274448,5.2232830270
-4.8688685227,5.4471766809,4.1323447658,4.8544622996,4.6227411767,4.4754849228
-5.6352916186,3.8893758868,0.8326871048,4.3506808570,5.1744439793,5.1377863560
-4.8362453771,5.2120960571,0.8435185540,4.6219865783,4.3982605837,4.1303783461
-5.9360716139,4.6009855369,0.9320453718,4.5894955163,5.1446104974,4.7206233425
-7.2002391355,6.4781161540,2.8379786962,6.3275708285,4.4335990006,4.3336494927
-7.8589048665,6.7603942006,4.2250339511,5.5197677458,3.2453799215,4.4870067920
-7.2880079127,4.1216235213,-0.0568921323,4.0920515138,4.5885026888,5.5531437913
-5.6605978857,4.9893001744,-1.4544737583,3.3192516948,3.3089322709,4.4013827151
-5.9996576521,6.2246279399,2.1629052006,3.1431835658,3.3564521333,4.6034119082
-5.5839811157,6.2030122490,4.6018398852,4.7731816265,3.7989099394,5.3068050470
-3.5999325179,5.7684073507,2.7259948119,5.7192595634,3.0731380327,4.4660071898
-5.4401538781,4.5459108955,0.1333320606,4.1895094201,2.8609833771,3.9746136975
-6.9874270540,6.5774993780,-0.3791701331,3.6788888651,2.1991521821,4.2593156048
-7.0030065424,5.6466682329,1.8589131112,2.5187699145,1.3300193667,5.6218582272
-5.9290930778,3.2147258549,4.2074002314,3.7189410999,2.5774203670,4.3561586046
-6.4719117339,5.6751884826,3.3522646424,4.8391148795,2.5423436095,4.1157435547
-6.9432788786,5.3003261494,-2.1986992167,5.6544382687,1.2520828888,4.0551016887
-3.9058013502,4.9670740876,-2.3785357370,4.2618635503,1.8198346028,4.2300337138
-2.3274874822,4.9332683791,2.2005608972,5.8001104380,2.4927298534,4.6590273147
-1.9782810757,3.0618750432,4.3097362731,5.8544002731,3.0249154799,5.4718072167
-3.3919351286,6.8536873068,2.1982905781,4.6279762364,2.7927026190,4.8585791147
-3.6728791711,4.2580095925,-1.1720611315,3.8239934692,3.4830202934,4.1231045895
-4.0150298486,5.2679069592,-2.7606442537,3.0050313805,4.7362230675,4.4562407086
-4.0936759332,6.3435246151,3.0934721218,3.0473133678,4.2475318785,4.2535252521
-5.2189267343,4.9071082105,6.5755742571,6.7747170150,3.9087825697,3.7839948329
-5.5167441820,4.7603567640,2.6353210273,4.1613171659,4.5774450111,5.0042760365
-4.3493098464,6.6080312279,-2.3363850600,3.3752732310,3.7497202821,4.4612021004
-4.9931132007,5.1208824878,-2.9726618484,4.4417380246,2.9344436368,4.4872541469
-4.6713852933,6.0029299088,4.1021452040,4.3440934596,3.2228513242,5.1884784928
-6.1787618594,5.1745771320,5.7416492012,5.2334424436,3.2508077947,4.3495472054
-7.2968215671,3.8036385547,-0.2381039143,4.2512059998,3.4854256246,3.5891281979
-5.3019815599,5.4234047749,-3.4350762648,4.1250305822,4.0409597160,4.6799152083
-5.6919743584,4.4949496684,-1.6153628173,5.1631451769,2.8790890983,5.6027081261
-6.8455273324,3.9879656085,2.8720877798,5.1119102038,4.7728291303,4.2808615693
-5.6533589575,2.6630513204,3.4378279820,4.4182988889,3.3067630783,3.2271978549
-6.2870734485,5.7527968456,0.5802321899,5.9297928697,3.9866542467,4.7573423130
-6.0565657056,2.3476268043,-4.6153310536,3.1787582624,3.5987337905,4.1562326325
-6.4992350088,3.6521006730,-2.5802817089,3.1251493123,4.3322884862,4.7183434582
-7.3280712146,3.6781654954,3.3313086747,5.5510727677,3.7360679081,4.7379668978
-7.9811338456,4.3861846156,2.3854048002,2.6059423341,4.4712011836,5.1429552448
-6.7833633698,4.3740218160,-1.9538574181,3.9250421993,3.4170601485,4.0505465552
-6.2185606035,3.9566154858,-3.8713701454,4.3685185487,2.7759657937,4.9070885233
-5.2956694987,4.2255769140,-0.2116731766,5.0524457171,4.0911086630,3.1226506162
-4.0365575386,3.3016101817,3.3690117450,4.5822537095,3.6312025332,5.6913656934
-4.6810049068,5.2300614106,2.3111491132,5.3442619448,3.1017103434,4.3083977435
-4.9456666518,4.2695292085,-1.0348726005,5.2771366540,4.1987319966,4.4390656908
-3.6593614820,4.9552024282,-5.3683261795,5.3562294223,3.4428886253,3.4635336323
-5.2827233920,4.6390309766,-1.4726661378,5.8360815201,3.7632889618,4.3292725060
-2.9748761638,4.0804387751,3.3282568897,5.6385260787,3.8887055522,3.5795095867
-1.7555754082,5.6751753356,0.2347093508,5.4691783731,3.0063251114,5.3088506333
-2.4946536258,4.5432705737,-4.6882810045,1.1371210533,3.4052114274,4.0338017891
-4.1837113715,4.5781499465,-4.4598039789,4.7052901780,3.1130957877,4.9866189718
-5.3085210813,5.6339773996,-1.8095666664,6.2784917539,2.4224304377,3.2562181349
-7.5222679253,5.1975586925,0.9696265547,4.1505424843,3.1970476474,5.3466105591
-6.8200590087,5.7023631594,0.0740645056,4.6882898439,3.5015153229,3.7552823674
-6.8480498299,4.8436075323,-3.3225275631,3.8945016948,3.4203501697,4.9441955111
-6.0230358608,6.3444892686,-3.7246481005,7.3985902037,2.2197001661,3.6174909754
-1.6807481593,5.0327737713,-0.6355495512,3.2229962739,2.2200381892,5.7877860305
-0.9954359835,5.0417560243,0.7282770164,4.6773650604,3.4550295425,3.6790900903
-1.5259562726,5.1118066586,-1.8704586819,4.2872456308,1.9203846545,3.3477068258
-1.5630882285,4.3582165014,-1.5830002190,5.2044994046,0.8702085591,5.7481364721
-3.7549736606,4.9417926178,-3.2820793975,4.6843268567,2.3862287825,4.8049943889
-3.1347561478,4.4453204210,-3.6822379437,5.0540212912,3.5792494384,4.7122888702
-4.7551048080,3.9378776629,-2.6490462177,4.2725662973,2.9840379940,4.1364634781
-4.2082698296,3.1409692310,-1.2042524428,5.4501655074,2.8114005656,6.0021858696
-5.6402705812,4.0925686701,-1.7623523648,4.5619001805,4.9603288467,2.6290972338
-7.1993518184,4.4137234260,-4.4965975584,4.3581981090,5.3105678295,4.9273905493
-7.8669020921,5.2331140468,-4.6182735925,6.4797990515,5.6655006210,4.5163625326
-7.8714536976,3.6672964830,-3.8940551133,4.5915388423,4.6426489521,4.5252246208
-6.6620595902,3.0355939785,-1.2723473054,3.0138602942,6.8163321820,5.4045144471
-4.4978161249,5.2521093850,-3.4650064045,5.3429068837,7.2013897016,4.1581061166
-6.1283246576,6.5418530631,-4.5628426333,4.9436949025,6.6375981906,3.9406255118
-6.5220264551,4.2874022968,-5.0425206801,4.9485212918,6.3504543941,5.3494718843
-4.4510895412,4.2834860823,-3.5349617184,3.0321139575,5.8234159081,2.8941415378
-5.4808097984,6.0594754374,-1.9563821489,1.8837131152,6.6862023222,5.2219148626
-4.8043061326,5.5141188355,-2.6263416213,4.2600705765,7.0365091954,3.9318148001
-5.7700669097,4.8610108566,-5.1476926175,4.7265886723,5.4205618362,3.7260588350
-5.7173655586,5.4408507780,-5.1364546621,4.4355440192,6.1584584483,5.4794799277
-3.8925816138,5.0810809362,-2.3068849118,4.2498064428,7.6586496576,3.5653920207
-4.6723601100,4.5857886518,-3.7844271012,3.5984666341,6.3284623050,4.8866883940
-5.1788065263,5.3658831575,-3.3018414389,5.7954666953,4.4919931680,5.3950256386
-5.7213013120,6.6501576761,-4.0601845395,7.5590012131,5.8916731125,4.0632080040
-3.5281308348,3.9745947317,-4.9896851878,2.1772754268,4.7090020514,4.5299321345
-4.8112545959,3.5777349034,-3.6091231986,5.3495585332,5.1315875674,4.9364072796
-4.1046099156,5.9431644946,-2.6105506282,2.5418436307,4.9643847916,4.5440333600
-4.1238367663,6.7856118344,-4.3104945987,3.0309885808,5.3730937799,5.0621723108
-5.4671409847,5.3116757589,-4.5986043694,5.1640171184,4.8281435005,6.0957909547
-4.4613307689,5.9844762021,-4.1307661603,7.7834588913,4.4252395000,3.7986799438
-6.1239080938,4.3681850438,-4.0183666238,5.2702779474,5.5016254226,5.6058704761
-8.1695895936,7.0755914835,-4.1402801866,6.9888930084,5.9117620844,5.0952883614
-6.1553397100,4.0253093238,-3.8123182255,4.0429661280,5.7458947385,5.5943447865
-5.5762879307,5.4272497595,-1.3509815126,2.3628454411,5.7334745066,5.0309046708
-4.6510959827,4.4060563788,-4.0185982913,4.3503406608,7.0383263448,2.7764510697
-4.3937445801,4.2164179089,-5.7752393012,3.3721140006,7.3354890534,5.0298687589
-4.6485046523,5.8003316399,-3.7068433469,6.1864409021,4.8265868072,4.3257498201
-5.5432768763,5.3616256875,-1.4690539579,5.9594715658,6.2113574687,4.1184653273
-4.9730140024,3.9979622530,-1.1349706431,3.3365665189,5.5085115016,5.3790023068
-6.1354492822,5.2689521336,-5.4720260233,2.3000494947,4.8668057001,3.0953995259
-5.5534922764,5.5697732143,-6.0784183683,4.7822332426,5.4202956337,4.8640532445
-5.2701602338,4.8440319254,-2.3497684497,3.4318312617,4.4038921604,5.6247521301
-5.2164315582,4.4585601367,-1.5189016651,3.5816143672,4.5822998363,3.5462491131
-6.2100101494,6.4294568906,-1.8694872463,3.8844018859,5.6762561373,5.3476377449
-6.2038226387,4.6346828728,-5.3046424746,6.6944579861,3.7811032135,3.6481002194
-5.8594613418,5.4361774743,-5.1045811376,5.6684597016,3.5414093939,5.4863699272
-5.1312954448,4.2963380613,-1.8461795794,2.9615017457,4.3934480684,5.1338314336
-5.0707564699,4.8019530509,-1.8754807455,4.2126570200,5.4483140643,3.2186875877
-5.3024642744,6.0227866824,-3.1525505964,3.1728831067,4.7570224997,5.3293573088
-6.7879927759,3.5341819252,-6.2076311366,4.1674001246,3.4233785395,5.0933414819
-6.0959154220,5.6666787812,-3.9985134848,3.1286485921,6.0090104933,3.2355050788
-4.8770092475,5.5071911462,-2.2402244446,4.2458555556,5.3319928535,4.5508172645
-4.6462822076,3.7518689113,-2.6677735581,3.5140694681,3.9302443031,3.4693742748
-4.4493063305,5.3523679747,-4.2833733602,4.4677866226,5.3261432467,4.4750702044
-4.8519104039,3.8704625972,-5.7434472532,4.7589839275,4.7355905046,4.2638381759
-4.1761724219,5.2475077356,-4.5719566477,5.4033924769,4.7243287703,3.1805946558
-3.6216295088,4.5481247568,-2.4212825459,7.3032754131,4.1663012143,4.6330886685
-1.4077245453,4.5433220483,-2.3759544201,4.8974510868,4.9454567083,5.3929741696
-4.0636335345,5.5540880159,-5.0368208549,2.5971037081,5.8474307271,4.0875864261
-3.1755581314,4.8797047351,-5.5786338133,2.0790017788,4.8688312101,4.1328612125
-4.2383507502,4.0432364540,-5.3234953644,5.3476684201,5.0191255136,4.3701405208
-4.8666980186,4.3842779297,-2.7061080702,5.3733806734,6.3115616415,5.7961596186
-3.5006748019,5.0326780821,-2.4626290230,6.1317759485,6.0701470343,4.7742381918
-3.8758838647,4.7620609155,-3.5447255805,2.4007482876,3.9938498188,3.9842301787
-4.5595618905,5.7164547880,-4.9470800659,5.4151564210,5.0136159400,4.1117493504
-6.2023217953,4.6585043199,-3.8157672796,6.1377982947,5.1851163641,5.1680961326
-6.6614906175,4.4862497262,-2.6839089723,6.6469325172,3.0866338668,3.8208368790
-3.9330122023,4.8931946185,-1.8890933487,3.6418136321,3.8294624324,5.5142152207
-3.3624266139,5.7000992690,-3.0593470590,2.4752063660,2.9488767049,4.2701185945
-3.1964625939,4.6574808863,-4.6629639060,2.8498792195,3.9731733634,3.7515961108
-5.9142384115,5.2115779252,-3.5339673537,2.8421070411,4.2028899258,4.5456089182
-4.2795018321,4.1438177734,-3.0497450887,5.3677632986,4.6646717740,5.2503284794
-6.8544789979,4.9168715809,-2.8841045580,4.0102387905,4.7739250489,4.3592520289
-6.5785072521,3.9712129002,-4.0537997178,4.4817181331,5.4048491545,4.1364356484
-6.0225496469,4.8196761345,-4.9419951771,5.0627116887,4.6007970347,4.5203158989
-5.0340614613,5.3113546917,-4.4852476141,4.4424632683,4.4686906053,4.3562024316
-6.8149029635,4.7764049759,-5.0927131551,4.7192587658,4.3400682662,5.1750095538
-5.7572216048,5.0852399903,-4.4719361336,2.3228060531,4.2754642787,4.1667433111
-6.1940809022,5.2030355864,-4.8574647529,4.0975703123,4.3798271060,4.9595683458
-5.5200884428,5.0060145767,-5.9975721396,3.0213633819,3.6806872558,5.2729580918
-4.2745663125,3.8635605519,-6.0675414963,5.9154958287,5.0815281661,3.9769449600
-2.5406332233,5.5287260018,-4.9707983262,6.0247077915,5.5070111460,4.6070789902
-3.3371378536,5.1182959756,-3.0582767542,5.6586511879,5.1252984641,4.6317077025
-3.1891145313,4.1874172320,-4.4072190418,3.7299708526,5.1210920027,4.7838976350
-2.2880847678,4.9543964123,-6.8577933075,3.4404997138,4.3457624987,4.9474460358
-0.8607358563,5.6506140689,-5.9942480303,5.3725082210,3.8214240645,4.8585516794
-1.9090115009,4.1736808673,-2.3648347905,5.0045345282,5.0848408317,5.9477653341
-1.0908043975,4.4115406105,-3.1526538834,4.8691525334,4.1978011210,3.6659718879
-2.5045794681,5.6107177077,-4.8068027320,5.4057595053,4.0101649849,4.5170053684
-4.6660373235,4.5297637335,-7.3279702149,4.2244469007,5.6704477211,6.0418472102
-6.6208094353,4.3177646969,-4.8495994534,4.1942279008,5.7960911223,5.1633893474
-7.9045975935,3.7364557935,-2.7469931299,3.7945467363,4.9378715397,4.2277078776
-6.7112183950,3.9552771862,-3.4322933169,2.9962289039,5.2336807114,3.4118360601
-7.6085801115,3.7984965006,-5.9676742032,4.6716328208,5.6770068511,5.2033915267
-6.5053711455,4.0031176792,-6.8983003181,5.3939807076,6.1822277179,4.6650915721
-6.5392019374,4.6429055517,-6.5390704399,5.2874269484,5.0617439792,3.9017260341
-5.2270108094,4.4630710638,-4.5972120007,4.2644612926,5.0302578587,4.0848685617
-5.5496858310,4.4487542973,-2.8009740648,3.3284628309,6.4133470233,3.4924372586
-7.0371776295,5.1454992863,-4.8038202052,6.5027008055,4.4580512069,5.0688646792
-7.2790384455,3.8305558589,-8.1285657006,4.3740292327,4.4175186905,4.7331314804
-5.3199184459,6.3595515832,-7.2493819308,6.2083486089,5.2600325748,5.6580023585
-4.9934556650,7.1111584018,-4.4671418166,3.9620028681,3.2784158628,4.4464836987
-4.2819567954,3.6290831153,-2.5447505490,2.9033094916,3.5047785669,5.0902289931
-3.0568943057,5.9647541508,-3.4066125502,2.1135453933,5.8188088953,4.4457507456
-2.1304712729,4.5839043211,-6.4217535278,3.2185677448,4.1073127271,4.7816574459
-4.8147659877,6.0868954346,-6.5795439179,7.6120198292,4.6210328822,4.6511473511
-5.8070914019,5.5745830940,-2.8701479375,6.2934298224,5.8679003369,3.0686975933
-3.6115552732,5.6051241927,-0.1565133541,3.0892597963,5.6292173358,4.5247718332
-2.9239742918,5.0645079050,-3.0106595660,2.8086948758,5.6505592764,5.1831295785
-4.3273263869,6.0094500831,-5.5392347499,5.4083365583,5.2901205135,4.5164771585
-3.7841411819,3.9431576374,-5.0346292184,4.1872625796,5.8242205935,3.5092717707
-2.9439589660,5.6025452125,-2.4836601202,4.5822132922,6.1914037917,5.4666134801
-2.9523695391,5.0410134987,-0.7558311054,5.0598205196,5.7990047238,4.5474676004
-2.2194426369,2.8717922780,-3.8104258303,5.0531065528,6.4355422054,4.4086296771
-2.2286583798,5.4099611913,-6.5740490807,4.6269428270,6.2346414362,4.5851645672
-3.0675309699,4.3586276188,-5.5960189493,2.9169547205,6.5151270777,4.6699692987
-4.4460740436,5.2961663528,-2.2639887009,4.3943373517,6.1833794642,3.1948426841
-5.1845831627,5.2075777558,-1.9983201220,2.6474402228,7.0406625177,4.2990464928
-3.5553859823,3.8846966161,-2.9711761962,6.5383306526,6.3769610301,4.5680337551
-5.1368821707,5.6189015736,-5.1948266433,9.3372897936,5.4303467101,4.1543003104
-4.7166452225,3.4762764160,-4.7996852767,3.5709426391,6.0709400596,4.0162537375
-4.0655064696,4.8679798824,-2.5257817203,-0.2397540472,7.4430134883,3.9741481384
-4.8739646478,6.1001218568,0.1309412790,3.9178609675,4.7876906875,5.7503016926
-3.2036693337,4.0978865218,-1.3996139990,6.6508999867,4.6941532361,3.2454641348
-4.7404405197,4.0877490842,-3.7645785945,4.3435381982,6.8122472905,4.0582880196
-3.9524198102,3.0605371217,-2.8759647346,6.5352019477,5.1398339218,5.4600301737
-5.1156643408,3.1298905115,0.1325467265,4.2355351326,4.1474944903,3.6031137112
-6.6783762367,5.0939390625,1.5048033372,4.8953245397,4.4007169152,6.0441346235
-5.1757050832,2.3866379586,0.0443435711,2.9547869931,4.3714863561,3.6838266160
-5.3307733146,5.0024969355,-2.1842578899,2.4141336352,4.2150618862,3.5282264202
-4.9625892048,4.1347588039,-2.6512376363,6.7856744153,4.0409769865,3.5442862768
-5.1941150714,5.4732915830,1.2894533068,5.9372271540,5.2995430730,5.3587242672
-5.7842645137,3.8712216053,3.1499162931,7.4436349050,4.8329832398,4.3608245532
-4.8817417798,5.5837321696,1.0092497588,5.4831170612,5.2140420248,4.9816943324
-3.9102292878,4.5787311311,-2.7490211779,3.9868229598,6.7003222520,4.6231462773
-3.7104173166,6.3020864130,-2.4687305447,2.5978512267,3.9219762100,4.8640467589
-2.6969414480,3.5627605456,1.9264159841,2.9392001484,4.3075157645,4.5246176769
-3.1021142802,4.4852079467,4.9896603230,4.0170818602,4.8452548954,3.6551728846
-1.9498933374,5.1335954089,1.3907402820,3.9319088353,5.2717133432,5.0288914923
-5.3022616650,4.8500804218,-4.3388057198,3.7600673234,4.9716484394,4.3383128810
-2.8381666261,5.5680553555,-2.5366843969,4.7642074766,4.3406980043,4.6799907608
-2.5103293788,3.1495788140,2.7225753380,4.9935148390,5.5794567272,5.5523926628
-4.0647003336,4.5231525968,4.0833849317,3.6763204386,5.9614121030,4.2830503713
-5.3192407560,4.8920386478,0.7357547931,4.5268430470,4.3460743252,4.0771200785
-5.5757491351,1.6517485430,-3.5749591267,6.3889723180,3.6970456936,4.6004392063
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_nc.csv b/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_nc.csv
deleted file mode 100644
index a244bb6..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/results/yhat_exact_nc.csv
+++ /dev/null
@@ -1,251 +0,0 @@
-yhat1,yhat2,yhat3,yhat4,yhat5,yhat6
-0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000
--0.1783189711,0.8022781482,-0.5025472512,-0.1714754341,-0.7321341350,0.0219630653
-0.3481346485,0.0388387795,-0.7762924454,0.0793448919,0.1866410497,-0.2483738064
--0.3190244039,-0.5279474797,-2.5981665507,0.5332326724,-0.8098594374,-0.3094605088
--0.8825750195,0.1100657671,-0.4215685695,0.6344400376,-1.7147194011,0.2504219684
-1.6559073128,-0.0825049146,-0.0315786910,0.4096874072,-0.6583446506,-0.3984331448
-2.7929159906,-1.0659788189,-2.5383702134,-1.9756512744,-0.4499375785,0.2988299030
-2.1819905068,-1.1210762010,-3.2975733628,0.7677510599,-0.9591895768,-0.4934820821
-1.9709227040,-0.7451505389,-1.3316813588,-0.8314441799,-1.1055031411,-0.6105067979
-2.3658425361,-2.3453822264,1.3078446108,-1.6657978212,1.2675237409,-0.0604158194
-3.2090806075,-0.1955049437,-1.5246271406,0.3763836008,0.4297652112,-0.4227791702
-3.5482186423,-2.2776458806,-4.4361593505,-0.0556052066,0.6266927159,0.1615706191
-1.1210339187,-0.2236055802,-3.5147385094,0.1570627755,0.3724256665,-1.0647514377
-1.2196765600,-1.1427061585,0.9493072568,1.0936082914,0.8008222619,-0.2398066095
-1.1506094722,1.3372609611,1.3991583232,1.5469247667,1.0332483739,-0.6255077362
-2.4498953427,-1.3969309880,-3.8230420279,-0.3929631998,0.5137494209,0.3512009236
-2.8230021912,-0.9194544140,-5.1917349319,-0.1010002322,-0.8347965797,0.6950949656
--0.2383463005,0.1968746103,-1.1747573022,-1.1962935664,0.7707353971,0.8145418941
--0.5343925269,0.5870245707,2.0048360062,2.8109644942,1.8170286526,-1.4010434502
-1.5358283323,-0.9185545315,0.0481956402,-1.8493078126,-0.3774457909,0.3949685480
-0.5828628586,0.1694481055,-3.7173639983,-2.6602145678,-0.0659440828,0.3534662405
--0.1568638250,0.1750288187,-4.9325440736,-1.7754948156,1.1335237486,-0.1587092292
-0.4462539796,-0.3075852089,-3.4997838228,0.9022564250,0.4624984170,-0.6135867572
-4.1167787457,-2.7018076111,1.0519264908,5.9570432456,-0.1930432852,0.3876166434
-1.7792573412,0.3626539948,0.0910523508,1.8461674689,0.3371048515,0.8150470185
-0.7403468511,-0.3439238586,-4.0764027788,-2.7950696060,0.9108965518,-1.6488625319
-0.6909661745,-1.4111117545,-7.9166117181,-4.2117122331,-0.7569881099,0.2449516546
-0.8713791223,-2.3036090706,-2.9846576891,-1.0732313985,0.7959865309,-0.1008620861
-1.2555830400,-1.5862173362,3.7196581692,2.5850251003,1.5224522323,-0.1380208387
-0.9274590883,-1.1058286075,0.8583093731,-0.8389331253,-0.0393412919,0.0151260870
-2.2739798719,-1.7360941488,-6.4705204375,-0.5525659273,0.4548254253,0.9354419371
-0.8182619893,-1.4525370311,-5.9251232541,0.9955244080,1.2315984266,-1.5349964262
--0.3124674229,-1.4929083163,-0.4681968476,0.3227618928,0.7093311114,-0.5030600188
--2.9948952356,-1.0002207678,2.1078884430,-1.9210746741,-1.0955841550,0.2244250258
--4.3405479539,-1.8332177146,-0.7027791404,-1.5803831414,-0.3399908525,-0.1798679638
--4.2252183708,0.1897779513,-5.2460676751,2.2310426375,0.9121520237,-0.1722476111
--2.4957022226,-1.9519621945,-5.1888441176,-1.9029518769,1.2307717687,-0.2226184572
--3.3808127733,-3.4523844506,0.0377425637,-0.8053473654,-0.8988082411,0.6195317425
--2.3377533324,0.7091174458,2.2011068544,-0.5571715875,0.8190825054,0.6717440102
--3.0243309828,-2.0873178471,-1.6615994034,0.6080560191,0.6720234797,-1.3991069083
--1.8290329321,-1.2269398121,-5.0933774932,2.1880187410,-0.0544848962,-0.9159974149
--4.1641855848,-1.5356332131,-4.6200945950,0.3748045104,-1.1575830198,-0.5928948438
--3.2569117196,-0.5666574331,-0.8136139135,-1.1496885641,-1.5119176456,-0.7257292810
--4.2778313122,-2.0446017418,0.3800326008,-0.2313700353,-1.2678218311,-0.3861426125
--4.2752918024,0.0873971257,-3.1261809521,1.8635547176,-2.0145137243,-1.2019049762
--4.7262537634,-0.5160014905,-5.9423033274,-0.8258793657,-1.7158036293,1.2364280075
--3.1646923559,-0.8687268419,-4.4759012404,-2.3058696690,-1.9032343373,-1.5184222130
--1.9589860913,1.0376874814,-0.8247172533,0.1936837760,-2.5321627771,0.5105783404
--2.3549103130,1.2555984879,-0.3671737029,-0.3623083391,-2.4903494628,0.3328874299
--1.3491400795,-0.4428013841,-3.1872336788,0.6465250385,-2.6207216272,-0.8122166961
-0.5441214887,1.6633642383,-6.0673405064,2.7054038367,-2.3213334408,-2.1969947086
-0.4486369077,2.8242009941,-3.1195537292,-0.6398966453,-2.8454152613,-0.7753943000
-0.6382836646,-0.6627841821,-0.5351079275,-0.5164471015,-2.0235567680,-1.1151161260
-0.4506387307,0.7646249440,-1.9738330655,1.6699646553,-1.7819861284,1.2761479297
-1.5197010785,0.8676705267,-2.7723609056,-0.0290403799,-1.9458789437,-1.0450449112
-2.6532836382,0.8078444751,-4.8249391350,0.4024259563,-2.5222178486,-1.4336030618
-0.8799670175,0.2110557883,-3.1501635867,-0.2506475494,-0.8568033910,0.4164282234
--1.1055653857,1.3948447407,-1.6908470214,-3.5922789224,-1.8005325064,1.3031809186
--0.7636333424,-2.3280698433,0.4971685047,-0.7677190264,-2.2732985207,1.2979164371
-0.2987989437,-0.5560606183,-2.7061215227,2.4162571913,-0.6510896094,1.1126805448
--0.5709942246,-0.2300173494,-4.4549612949,2.8700464698,-1.3442908063,-1.0594541521
-0.6141923120,0.5272781290,-2.1617512398,-0.4138712127,-1.1889043530,-0.8462020427
-0.4042095605,-0.0156437159,1.6137494761,-0.7068779744,-0.3314796865,1.7410469329
-0.3791169474,-0.7456785708,2.3112858629,-1.5571890993,-1.2586354815,-0.6869085942
-1.0601272390,0.3841244316,-1.1805405351,-2.7477358608,-0.3513488847,1.1099137501
-1.7715813985,0.7020905498,-2.5695859797,1.0068893858,-1.9436224604,-1.2021309808
-0.1866449949,-0.1483596632,1.7503169035,2.3622012140,-0.5856280687,1.0800823655
-0.1570042140,0.8539840747,3.2184354144,0.7312222769,-0.4427329856,-1.4614169181
--2.5948540683,-0.0596820693,2.0119291535,-0.3223355457,-0.8759143533,0.5174901753
--2.6178065924,2.4760908505,-0.7600044408,-0.9059233664,-1.0887236546,0.3469865572
--3.3998541117,1.6738771402,-2.1896719318,-0.1469506051,-0.7756421096,-0.0179649840
--4.0599058016,0.3384886286,0.8078613592,-1.6510340466,-0.6758753108,0.0012986289
--1.7566765419,1.9964889442,2.4661478718,0.3431566067,0.7098159871,1.2927419826
--0.5223752973,3.7742253914,0.2053689640,0.7742258813,-1.5664990963,0.5869684684
-0.4084973347,1.1162901544,-2.3619670781,1.2798712881,-0.9566367853,-0.5943537538
-1.4554844110,0.6005405101,-1.6337847690,1.1063644596,0.8973975020,0.9117181367
-0.4743796722,2.1864394218,1.2697151229,-0.5834103501,-0.5251298906,-0.3200545050
--0.3428219882,2.6291281507,0.4276627515,-4.2146499965,-1.1636748270,0.2287771081
--1.3232480892,-0.8999102294,-1.1792031224,-1.2314324443,0.6830780853,-0.7010149167
--1.8125295718,0.6113331689,-1.5030241844,1.0361356595,0.0981281005,-0.8995675399
--1.0828983358,-0.0587224939,-1.3186734866,1.5872722926,0.0877770731,0.4568683189
--0.7663925038,0.2025879234,-0.5438211752,-0.1031174361,-0.3950183925,-0.5935717401
--1.9260546036,-1.8244994352,-0.0551115196,-1.6998148506,0.1771587437,0.6136160703
--0.4470884341,-1.5895429892,-0.8788606997,-0.8286207952,-0.4427280013,0.6056648814
-0.1257983641,2.1914165288,-0.9010476848,3.6526890467,0.9705721429,-0.8442095815
-1.2786944720,-1.7864605038,-1.1993654242,2.1037032191,-0.1200732727,1.6616848343
-3.0563553157,-1.6049824597,-1.0615217875,-1.7164316590,-1.2990185770,-1.2383445937
-1.0716342300,0.8375434022,-0.3887108722,-0.7594975836,-0.0756489076,-0.9004821475
-1.8565735390,-1.3610564150,-0.3268181099,-0.5956988128,-0.1281018513,-0.4352506952
-1.1848740607,0.3556940726,-2.0418080839,-0.6427010898,-2.3591038934,0.7529811177
-1.9817420987,0.8962843908,-1.5822678536,-0.6519925180,-1.3847358736,0.3026805758
-1.6629355891,0.3091929780,0.4706845704,0.4012301261,-0.0634348275,-0.6721266025
-3.7956258353,-0.8240620851,0.1576223874,1.8211815947,-1.2864546699,1.7300670478
-2.6278364609,-0.4323077896,-1.9491982194,0.4720196092,0.0912322902,-0.2957753767
-4.3521613900,2.0856483159,-2.5401446231,-0.6568281396,1.1187475503,1.1244135636
-3.2102998856,0.0764644609,0.0529985788,-1.9249727358,0.7671721274,-0.1470482329
-3.3710311228,1.1718428997,0.9611368947,-2.4969502577,0.6724019054,-0.7201496857
-2.6244298605,1.1228599035,-0.5548412927,-0.8261646075,0.4277181974,-0.5842865545
-1.1040313561,0.0864875681,-2.4213242260,2.3260334248,0.5115863109,-0.9175897220
-1.5359659926,0.9057242293,-2.2263725203,2.5189710609,-0.2537877938,0.1824501296
-1.2999491789,-0.2896366275,-0.3870522068,-0.5327386996,-0.3157562036,0.9240254609
--0.8511809674,0.2720412981,1.4428210073,-2.1674351900,-0.1654234731,0.8123180801
--1.2407499282,-1.1463678713,-0.6961632853,-1.0010920390,0.7370867238,0.1407407508
--0.9692167370,0.7976437700,-3.4150110125,-2.8440437532,-0.7217810756,-0.9516619915
--1.8126855036,0.0586400436,-1.6329973015,0.1223030554,-0.6242217633,1.3977403665
--1.8902027659,0.7408255349,-0.1541204772,4.7342937270,0.7032352850,-0.7728972226
--1.4551306180,1.0053330121,1.7527703630,2.9857269540,-0.1652489282,0.2982028917
-0.1899676761,0.1117248104,-0.2974004158,-2.2914934547,-0.6523827137,-0.7094749829
-1.2498475861,0.0635343936,-2.9792085831,-1.1238192728,0.6625572500,0.2270403324
-0.2265359427,0.3604168854,-3.3855564773,-1.3613452927,1.8761534251,-0.3290342055
-2.0508086154,1.7930198869,1.3062786758,-0.2923802953,0.8098665429,0.1942358276
-0.8490891009,0.4300476601,1.6832498240,2.8445505609,0.9696915982,0.0453008348
-1.2181142804,0.0021391413,-2.6018640112,1.9588525724,0.7839892530,-0.2212727113
-1.9671105131,1.4518513917,-4.9773018866,-0.2263853068,1.5336382285,0.2667116413
--0.3824034165,-0.7023106459,-1.2157568079,-1.7625127621,1.0681830021,0.0548626848
--1.4168288009,0.3173185649,0.3966970801,0.9266456684,1.1467266899,1.0783139089
--1.5213818254,1.9941492621,-1.5504022693,0.5449771021,1.1010370714,-0.5725669458
--0.8728563506,-1.6405651136,-2.7984335195,-1.3287778626,1.8112662715,-0.7613059513
--0.8930472642,-0.9742220439,-3.3894928531,0.8320819873,1.5448850205,0.0165886191
-0.1250915825,1.5504269091,-2.4914027553,0.9452870846,1.1324295196,1.1501433890
--1.8652757779,-0.6818472965,-1.6163238444,-2.2579986864,0.5608115835,-0.6140196319
--3.9626826323,-3.2092344563,-1.4233404934,-0.5331121887,0.7776151278,0.8829388005
--4.2813759648,-1.1971645598,-2.8329322691,-0.0407892772,0.9729145885,-0.6540706786
--2.7752413032,1.1579217827,-4.6927384743,2.6287925977,2.1101506790,-0.5005567646
--1.2813490554,-0.9004251582,-2.6890460151,-0.3193061440,0.1636948521,-0.1900067337
--1.3002128250,-1.0133315331,-0.9856593216,-0.1865643066,1.5641926098,-0.1289767473
--1.1209432392,-0.8356231294,-1.0253411276,0.0783527779,1.9933869365,-0.0983934093
--0.7160549811,-0.4361486921,-1.5207093122,-1.7016476683,1.3334599846,0.0180016686
--1.2503359119,0.1208554565,-2.9650761748,1.0694129984,0.6724434919,1.8371689133
--1.4019149923,-1.6212630600,-3.4998869286,0.1470408971,2.4563386746,-1.4115525949
--1.0649476783,1.9552219709,0.0439555888,-0.9930014500,2.7184885336,0.0402019355
--2.2330511144,0.1328346633,1.0804783938,1.1586583868,1.6162692911,0.5528921341
--3.7359587094,-0.5792375455,-1.6798817725,1.3804925853,1.5271472164,-0.1963872748
--0.8396070361,-0.5144901897,-3.9298730444,2.0499648200,1.7442357509,-0.0174545482
-0.4480116858,-0.4000748258,-1.4340057500,-1.8562251679,1.5143578190,1.2500905323
-0.8655230824,2.5402904023,0.5041406189,-2.4285315078,1.4279204392,0.5851469388
-1.2842021684,-0.1895294291,1.4358162463,2.0238232693,1.4914819871,0.2014324034
-2.4772377123,1.7439596597,-0.2831525951,2.5245902582,1.2454449659,-1.2664721370
-1.2995247423,-1.0811317817,-2.4909705166,-0.3781073580,1.1141963772,-0.1697198945
-0.6547440333,0.0739974874,-0.9122184142,-3.1224952598,0.8958961277,0.2349331971
-1.0734662321,1.5064198359,2.3641023134,-0.7487764855,-0.2702981944,1.0171453552
--0.1772220022,0.2844991198,1.4007363409,-1.3935309849,-0.7432409353,0.3624311814
-1.4499995860,3.9949663017,-2.1643535040,-0.1362666439,-0.6588565073,-0.7313355419
-1.6184745724,-0.1070057245,-1.5717090504,2.4389179627,-0.5686134794,0.3808346092
-0.4545150240,1.7575456936,-0.1789339141,0.6206301702,-0.9812633351,1.3699585826
-0.5819679587,1.5456178088,-0.6532141971,-0.3903061051,-1.1788864076,-0.0715962819
--0.0373922749,1.8481406871,-1.2425672267,-0.2366133231,-0.3735460392,0.0791485023
--0.3262154627,0.6416151927,-2.5569517603,-3.1998385992,-1.8157020851,-0.4604962194
--0.2624085386,2.4813483132,-1.7352642290,-1.0060486877,-1.9444980697,-1.0135944700
-0.5990810057,0.3946008799,-2.7206275074,-0.3907168865,-1.2286655680,0.7884430659
-1.1677925264,0.9823999162,-1.9838418190,1.9009855885,-1.9936268413,1.0648990157
--0.0242419526,1.6579778352,-0.8622162642,1.7166379289,-2.6519621439,0.2648565010
-0.8556630805,1.2571180247,-3.1940126129,3.0023183245,-1.2097113532,-1.5028756793
-0.2461674432,1.1154821310,-4.0562078792,-1.3976721932,-1.0659690380,-0.3586432882
--1.7523734581,1.0831009776,-1.1328555090,-1.6448655080,-2.4805259305,0.0748449557
--0.7622735321,2.5445968520,-1.3474118386,-0.3827524011,-1.9358082418,0.1161464833
--2.4375071354,1.5792885795,-1.1888045215,2.4747579219,-1.4298899073,-0.4531675605
--2.1863110474,1.4562343820,-1.4793189060,-0.1090743558,-2.6900725310,-0.4802472553
--0.4295401364,1.5164984377,-3.5881853261,-1.2054182408,-1.7403355445,0.0814455794
-1.0718210343,0.5952710786,-2.1797750765,-0.9424338382,-3.0032189093,-0.5242828063
-0.4814657742,0.5249362122,1.4810189187,0.1743829464,-1.4367616036,-0.2111740114
--0.1043525855,4.1977626861,0.5216887365,3.4711021841,-1.2225734080,0.4539091272
--0.2076617475,1.3109175187,-3.3774029545,-0.1238587343,-2.4442355674,0.3851996185
--2.3129893767,-0.4272436071,-6.2822835056,-1.4152249750,-0.8338866836,-1.6276427077
-0.7541465227,0.4445037065,-1.8000591047,-1.9044228390,-1.1117013488,0.1474174057
--0.4465488058,0.3426857597,2.8538663169,-0.7484703140,-0.9396405954,0.3793901820
-1.4186167514,-0.4192502254,-1.0352231211,-0.1491560044,-1.6702950735,0.4290059104
-0.8549718861,-1.6433666592,-5.9582723784,2.0410661876,-1.2083944797,0.0727152875
-2.1120637429,-0.3111954216,-5.0111825305,-0.1490941110,-1.0730858180,-0.0384131860
-3.7729753634,-2.8781244821,0.3742125184,-0.9779334936,-1.5277982950,0.9679474460
-3.6542389088,-2.1083019103,1.0789240199,-2.5940151708,-3.1028774639,-0.6058180272
-5.3349823115,-1.7365829113,-0.2619387883,-1.1070437203,-1.2150521322,0.2637801316
-3.1268827980,-2.1346173214,-4.3615621881,0.2289021736,-1.7632557039,-0.3819127673
-3.2519010915,-1.5666295614,-4.4176521774,2.7181319217,-2.5492504107,0.1082970178
-1.3740433163,-1.1125334935,-1.5630197132,0.4084797179,-2.3907615779,-0.3538469698
--0.3392089132,-0.9764982955,1.2301954749,0.7585873959,-2.6051499434,-0.0260258437
--0.7793716773,0.4441483493,-0.3260806117,0.5675130184,-2.0031851055,0.7302679880
--1.6525897375,0.8631620874,-2.6442323919,-2.6731892614,-2.6712739933,-0.0745754515
--2.1897934509,0.9086395532,-4.4451183497,-1.5390337843,-1.0030057516,-1.2302494243
--1.1138465131,-0.9762150011,-3.3553610967,-0.7983483421,-1.7801110831,0.9945025296
--1.5116890598,-0.5288542986,0.8494062751,-0.6088902784,-1.6935881967,-0.0804103403
--1.7680809037,1.1475924778,1.0062765761,-0.1497311711,-1.1094577937,-0.6952651862
--1.7523820122,0.2172115515,-2.9357174308,1.7893529399,-1.1224428991,-0.1881616411
--2.3884344544,-1.1202131470,-5.7612985154,0.6713807325,-0.5750085736,0.3563675558
-0.2931547679,0.0466529228,-3.6017649228,0.3518818293,-0.2230696301,-0.6098595622
-1.5586506828,-0.5765740080,-0.2909920070,-0.8763594313,-1.7758693967,-0.3695068467
-2.6395925237,-2.6153018576,-0.2728753983,0.2360621960,-0.1399368585,0.3326980085
-0.7981638702,-0.0445198177,-2.5387682995,0.4804590954,-1.3718574215,0.0824322437
--0.0921250407,-0.0221316898,-5.5770578234,2.0309712020,-1.1184679531,-0.7870188278
--0.5284000069,0.8538801836,-3.4588149965,1.8674792420,-2.2126137375,0.4578480052
--0.7217203578,1.4126146061,-0.4063564512,0.4030744193,-1.2131063992,0.5307676195
--1.3948931843,-0.2674722234,0.0175201241,-1.0068911460,-1.8862011079,-0.5981455166
--1.8735467110,1.8116816647,-3.6025131711,-1.1815889680,-1.8564908345,-0.3413296061
--0.4060974323,1.6628946701,-4.4260528884,-1.2552626442,-1.8576330851,-0.0749022192
--0.0301311474,1.9279826136,-2.8449486278,1.4206422449,-0.7022680094,0.2865090459
-0.8259012764,0.0607134489,-0.5240789186,1.2564691179,-2.7766211883,0.0389251833
-1.6569259487,-0.5401595669,-1.7934613892,0.0898480083,-1.9480861217,0.2500050562
-0.0250172882,1.2919759990,-4.9213401805,-1.7194346825,-0.1194241881,0.6790874598
--1.5885071693,0.3557109932,-4.5037747423,-0.5542074345,-0.5824444108,-0.1737813057
-0.3606805309,-2.6410107058,-1.4282638635,-0.9812648815,-0.8719853138,0.7281875326
-0.5042367665,0.3272914000,-1.9458345514,1.8368949935,0.1426576459,-0.1155751694
-1.7116841946,-1.3419253550,-3.8790955680,-0.5429955877,0.9180592376,1.6106795141
-0.5713230237,-1.0279868656,-3.6429959983,0.7095592582,0.6321300515,0.1279294588
-0.8297285478,-0.2475638936,-3.4013311484,0.8754590236,-0.0130833912,0.0680232654
--0.0798568998,-1.3848602914,-2.4662910020,-1.2184170484,0.0366583738,-1.2317008718
--1.3958764848,-1.0422433619,-1.5509026730,-1.3753244825,0.0732867940,-0.2511593134
--1.9809578251,0.2093175475,-2.2413219707,-1.0856967237,-0.0452509227,0.4209788064
--4.5615913311,-1.7164813371,-3.4645632276,-0.9866729228,-0.6946507691,0.6356840057
--3.5089874335,1.0357439399,-3.0541773162,-1.3095915191,-1.0381416372,-1.3436236473
--3.5408033688,-2.2505705109,-1.8926610569,2.3300577425,-0.3279427662,0.7769781033
--2.7716883286,-1.3059871787,-1.2677386737,0.6807427993,-0.5362105759,-0.7414953765
--0.3833824698,0.4783876773,-0.9768972562,1.4194967320,-1.7658957148,-0.4922793137
-0.3753362302,-2.4705260227,-3.2994043724,0.0374146068,-1.4989944409,-0.1077669226
--0.2997670025,-0.4700555282,-3.7866976029,0.3206688162,-0.5785678759,0.4135944532
-1.2459176292,-0.9182353863,-1.2537723305,0.8194149569,-1.5889323840,-1.0019921528
-0.7219705499,-1.7420497454,-0.0510096850,-0.0749727048,-0.8060996780,-0.6388339120
-2.2404862053,-0.5683991422,-1.8386025507,-0.7525785711,-0.8565325697,0.7279608048
-0.6264065513,-0.9797188331,-2.2915769846,0.4974650280,-0.1908098176,-1.1933227060
-1.2313195610,-0.2524204467,-3.5495934954,1.4880381433,0.2060950618,1.1208005818
-2.3585163828,0.0699417054,-3.3337948073,0.7291312325,0.0334544634,1.0389100177
-1.4395618963,0.1898197299,-0.0651467933,-1.5222724810,0.7871502459,-0.1505139527
-0.5792016952,0.0282842788,-1.0815792420,-0.1921602022,-1.0681695819,-1.2379870359
-0.9910270042,-0.0383697880,-2.1905731918,-1.4530607123,0.3965624818,-0.1159159679
--0.4027082823,-0.3524741915,-4.5395124721,0.9843638297,0.1752483979,1.0589430282
--2.3934561119,0.4958762748,-2.8169763461,2.3938783898,-3.1028647588,0.3630654055
--1.0119956793,-0.5851394502,-0.0863233667,0.8541492764,-1.9050816384,1.0101338922
-0.3951863429,0.1730843225,-1.3423503081,-2.0563670427,-1.4448693470,-0.4008797162
-1.5706272587,-1.2578025824,-1.8934536112,-2.6898235059,-2.6907137325,-0.2481786602
-1.2514779772,-0.3787382666,-3.0387517878,0.6925260742,-2.6805748890,-0.0429137010
-0.5380821068,-2.3874938512,-1.9865802055,3.1014911327,-2.5755396252,0.3029670937
-0.6681404456,0.9977272973,-1.1362114684,2.2270411595,-1.7669343741,0.3345230900
--0.5577752593,0.7783410681,-1.6131321159,0.7657330631,-2.1785923550,-1.1356502219
--2.4185115665,-0.3421351490,-0.9016631610,-2.6284479266,-1.3020452996,0.7718316330
--2.9949021630,-0.3487288598,-1.5031402458,-0.4751231777,-1.9134851625,-1.5801448699
--0.5451030802,1.6550314250,-2.6499431012,2.5666422102,-1.4966149111,-1.0127436307
--1.1441693265,0.7439416371,-1.9329612145,-0.7594972589,-0.9167275167,0.3817472381
--3.6456893115,-1.3410460576,-1.9880083685,-0.7596059245,-1.2139250762,0.8954098239
--3.9044841014,-0.3431132663,-0.2145194435,-1.3342729049,-1.0169574900,-0.5786249078
--2.6389165349,0.3301961313,-1.2584641125,-0.8130792151,-0.9524037889,1.3141131839
--1.9913514191,-0.5658769266,-3.2284759789,0.3037631370,-0.9910748781,-1.2965292647
--1.4121160414,-1.4106871144,-3.9816677919,-0.3743598585,-0.4242426436,1.2975813886
--2.6637567508,-1.3597886741,-1.1549380496,1.4090782323,-1.3170842802,-0.0112667539
--1.9807187351,0.2568721567,-0.7313640111,1.2146253910,-1.0831080317,0.4941217206
--0.4038792973,-1.3167504033,-2.9267204578,0.1858306170,-0.2316435192,1.2616332988
--1.0824683912,0.4482802736,-3.9317875756,-0.2060763213,-1.5729467084,-0.3947597342
-0.4398962048,0.5285610573,-1.8019850981,-0.1332348834,-0.9186307575,-1.2980915221
--0.9892132283,-0.2184199454,-0.5393619258,-3.2605978992,0.0556403176,1.8391164431
--0.1795436432,2.7389403749,-2.9768804536,1.1855338900,0.1634190660,-0.2017697583
--0.4500016338,1.1752951286,-3.5066103886,-1.9759240640,-0.6709051154,0.8818860021
-0.4372161970,2.4192075123,-2.7256311999,2.8077499707,1.1706347223,-0.6429555574
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/test_ar.py b/statsmodels/scikits/statsmodels/tsa/tests/test_ar.py
deleted file mode 100644
index 906c4cb..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/test_ar.py
+++ /dev/null
@@ -1,167 +0,0 @@
-"""
-Test AR Model
-"""
-import scikits.statsmodels.api as sm
-from scikits.statsmodels.tsa.ar_model import AR
-from numpy.testing import assert_almost_equal, assert_equal
-from results import results_ar
-import numpy as np
-import numpy.testing as npt
-
-DECIMAL_6 = 6
-DECIMAL_5 = 5
-DECIMAL_4 = 4
-
-class CheckAR(object):
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params, DECIMAL_6)
-
- def test_bse(self):
- bse = np.sqrt(np.diag(self.res1.cov_params())) # no dof correction
- # for compatability with Stata
- assert_almost_equal(bse, self.res2.bse_stata, DECIMAL_6)
- assert_almost_equal(self.res1.bse, self.res2.bse_gretl, DECIMAL_5)
-
- def test_llf(self):
- assert_almost_equal(self.res1.llf, self.res2.llf, DECIMAL_6)
-
- def test_fpe(self):
- assert_almost_equal(self.res1.fpe, self.res2.fpe, DECIMAL_6)
-
-class TestAROLSConstant(CheckAR):
- """
- Test AR fit by OLS with a constant.
- """
- @classmethod
- def setupClass(cls):
- data = sm.datasets.sunspots.load()
- cls.res1 = AR(data.endog).fit(maxlag=9, method='cmle')
- cls.res2 = results_ar.ARResultsOLS(constant=True)
-
- def test_predict(self):
- model = self.res1.model
- params = self.res1.params
- assert_almost_equal(model.predict(params),self.res2.FVOLSnneg1start0,
- DECIMAL_4)
- assert_almost_equal(model.predict(params),self.res2.FVOLSnneg1start9,
- DECIMAL_4)
- assert_almost_equal(model.predict(params, start=100),
- self.res2.FVOLSnneg1start100, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9, end=200),
- self.res2.FVOLSn200start0, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=200, end=400),
- self.res2.FVOLSn200start200, DECIMAL_4)
- #assert_almost_equal(model.predict(params, n=200,start=-109),
- # self.res2.FVOLSn200startneg109, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=424),
- self.res2.FVOLSn100start325, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9, end=310),
- self.res2.FVOLSn301start9, DECIMAL_4)
- assert_almost_equal(model.predict(params),
- self.res2.FVOLSdefault, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=316),
- self.res2.FVOLSn4start312, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=327),
- self.res2.FVOLSn15start312, DECIMAL_4)
-
-
-class TestAROLSNoConstant(CheckAR):
- """f
- Test AR fit by OLS without a constant.
- """
- @classmethod
- def setupClass(cls):
- data = sm.datasets.sunspots.load()
- cls.res1 = AR(data.endog).fit(maxlag=9,method='cmle',trend='nc')
- cls.res2 = results_ar.ARResultsOLS(constant=False)
-
- def test_predict(self):
- model = self.res1.model
- params = self.res1.params
- assert_almost_equal(model.predict(params),self.res2.FVOLSnneg1start0,
- DECIMAL_4)
- assert_almost_equal(model.predict(params),self.res2.FVOLSnneg1start9,
- DECIMAL_4)
- assert_almost_equal(model.predict(params, start=100),
- self.res2.FVOLSnneg1start100, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9, end=200),
- self.res2.FVOLSn200start0, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=200, end=400),
- self.res2.FVOLSn200start200, DECIMAL_4)
- #assert_almost_equal(model.predict(params, n=200,start=-109),
- # self.res2.FVOLSn200startneg109, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308,end=424),
- self.res2.FVOLSn100start325, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9, end=310),
- self.res2.FVOLSn301start9, DECIMAL_4)
- assert_almost_equal(model.predict(params),
- self.res2.FVOLSdefault, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=316),
- self.res2.FVOLSn4start312, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=327),
- self.res2.FVOLSn15start312, DECIMAL_4)
-
- #class TestARMLEConstant(CheckAR):
-class TestARMLEConstant(object):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.sunspots.load()
- cls.res1 = AR(data.endog).fit(maxlag=9,method="mle", disp=-1)
- cls.res2 = results_ar.ARResultsMLE(constant=True)
-
- def test_predict(self):
- model = self.res1.model
- params = self.res1.params
- assert_almost_equal(model.predict(params), self.res2.FVMLEdefault,
- DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9, end=308),
- self.res2.FVMLEstart9end308, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=100, end=308),
- self.res2.FVMLEstart100end308, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=0, end=200),
- self.res2.FVMLEstart0end200, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=200, end=333),
- self.res2.FVMLEstart200end334, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=308, end=333),
- self.res2.FVMLEstart308end334, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=9,end=309),
- self.res2.FVMLEstart9end309, DECIMAL_4)
- assert_almost_equal(model.predict(params, end=301),
- self.res2.FVMLEstart0end301, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=4, end=312),
- self.res2.FVMLEstart4end312, DECIMAL_4)
- assert_almost_equal(model.predict(params, start=2, end=7),
- self.res2.FVMLEstart2end7, DECIMAL_4)
-
-class TestAutolagAR(object):
- @classmethod
- def setupClass(cls):
- data = sm.datasets.sunspots.load()
- endog = data.endog
- results = []
- for lag in range(1,16+1):
- endog_tmp = endog[16-lag:]
- r = AR(endog_tmp).fit(maxlag=lag)
- results.append([r.aic, r.hqic, r.bic, r.fpe])
- cls.res1 = np.asarray(results).T.reshape(4,-1, order='C')
- cls.res2 = results_ar.ARLagResults("const").ic
-
- def test_ic(self):
- npt.assert_almost_equal(self.res1, self.res2, DECIMAL_6)
-
-#TODO: likelihood for ARX model?
-#class TestAutolagARX(object):
-# def setup(self):
-# data = sm.datasets.macrodata.load()
-# endog = data.data.realgdp
-# exog = data.data.realint
-# results = []
-# for lag in range(1, 26):
-# endog_tmp = endog[26-lag:]
-# exog_tmp = exog[26-lag:]
-# r = AR(endog_tmp, exog_tmp).fit(maxlag=lag, trend='ct')
-# results.append([r.aic, r.hqic, r.bic, r.fpe])
-# self.res1 = np.asarray(results).T.reshape(4,-1, order='C')
-
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/test_arima_process.py b/statsmodels/scikits/statsmodels/tsa/tests/test_arima_process.py
deleted file mode 100644
index d29c168..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/test_arima_process.py
+++ /dev/null
@@ -1,74 +0,0 @@
-
-import numpy as np
-from numpy.testing import (assert_array_almost_equal, assert_almost_equal,
- assert_equal)
-
-
-from scikits.statsmodels.tsa.arima_process import (arma_impulse_response,
- lpol_fiar, lpol_fima)
-from scikits.statsmodels.sandbox.tsa.fftarma import ArmaFft
-
-from results.results_process import armarep #benchmarkdata
-
-arlist = [[1.],
- [1, -0.9], #ma representation will need many terms to get high precision
- [1, 0.9],
- [1, -0.9, 0.3]]
-
-malist = [[1.],
- [1, 0.9],
- [1, -0.9],
- [1, 0.9, -0.3]]
-
-
-
-def test_fi():
- #test identity of ma and ar representation of fi lag polynomial
- n = 100
- mafromar = arma_impulse_response(lpol_fiar(0.4, n=n), [1], n)
- assert_array_almost_equal(mafromar, lpol_fima(0.4, n=n), 13)
-
-
-def test_arma_impulse_response():
- arrep = arma_impulse_response(armarep.ma, armarep.ar, nobs=21)[1:]
- marep = arma_impulse_response(armarep.ar, armarep.ma, nobs=21)[1:]
- assert_array_almost_equal(armarep.marep.ravel(), marep, 14)
- #difference in sign convention to matlab for AR term
- assert_array_almost_equal(-armarep.arrep.ravel(), arrep, 14)
-
-
-def test_spectrum():
- nfreq = 20
- w = np.linspace(0, np.pi, nfreq, endpoint=False)
- for ar in arlist:
- for ma in malist:
- arma = ArmaFft(ar, ma, 20)
- spdr, wr = arma.spdroots(w)
- spdp, wp = arma.spdpoly(w, 200)
- spdd, wd = arma.spddirect(nfreq*2)
- assert_equal(w, wr)
- assert_equal(w, wp)
- assert_almost_equal(w, wd[:nfreq], decimal=14)
- assert_almost_equal(spdr, spdp, decimal=7,
- err_msg='spdr spdp not equal for %s, %s' % (ar, ma))
- assert_almost_equal(spdr, spdd[:nfreq], decimal=7,
- err_msg='spdr spdd not equal for %s, %s' % (ar, ma))
-
-def test_armafft():
- #test other methods
- nfreq = 20
- w = np.linspace(0, np.pi, nfreq, endpoint=False)
- for ar in arlist:
- for ma in malist:
- arma = ArmaFft(ar, ma, 20)
- ac1 = arma.invpowerspd(1024)[:10]
- ac2 = arma.acovf(10)[:10]
- assert_almost_equal(ac1, ac2, decimal=7,
- err_msg='acovf not equal for %s, %s' % (ar, ma))
-
-
-if __name__ == '__main__':
- test_fi()
- test_arma_impulse_response()
- test_spectrum()
- test_armafft()
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/test_arma.py b/statsmodels/scikits/statsmodels/tsa/tests/test_arma.py
deleted file mode 100644
index 59e70c6..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/test_arma.py
+++ /dev/null
@@ -1,427 +0,0 @@
-import numpy as np
-from numpy.testing import assert_almost_equal, assert_equal
-import scikits.statsmodels.sandbox.tsa.fftarma as fa
-from scikits.statsmodels.tsa.descriptivestats import TsaDescriptive
-from scikits.statsmodels.tsa.arma_mle import Arma
-from scikits.statsmodels.tsa.arima_model import ARMA
-from results import results_arma
-import os
-try:
- from scikits.statsmodels.tsa.kalmanf import kalman_loglike
- fast_kalman = 1
-except:
- fast_kalman = 0
- #NOTE: the KF with complex input returns a different precision for
- # the hessian imaginary part, so we use approx_hess and the the
- # resulting stats are slightly different.
-
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-
-current_path = os.path.dirname(os.path.abspath(__file__))
-y_arma = np.genfromtxt(open(current_path + '/results/y_arma_data.csv', "rb"),
- delimiter=",", skip_header=1, dtype=float)
-
-
-def test_compare_arma():
- #this is a preliminary test to compare arma_kf, arma_cond_ls and arma_cond_mle
- #the results returned by the fit methods are incomplete
- #for now without random.seed
-
- #np.random.seed(9876565)
- x = fa.ArmaFft([1, -0.5], [1., 0.4], 40).generate_sample(size=200,
- burnin=1000)
-
-# this used kalman filter through descriptive
-# d = ARMA(x)
-# d.fit((1,1), trend='nc')
-# dres = d.res
-
- modkf = ARMA(x)
- ##rkf = mkf.fit((1,1))
- ##rkf.params
- reskf = modkf.fit((1,1), trend='nc', disp=-1)
- dres = reskf
-
- modc = Arma(x)
- resls = modc.fit(order=(1,1))
- rescm = modc.fit_mle(order=(1,1), start_params=[0.4,0.4, 1.], disp=0)
-
- #decimal 1 corresponds to threshold of 5% difference
- #still different sign corrcted
- #assert_almost_equal(np.abs(resls[0] / d.params), np.ones(d.params.shape), decimal=1)
- assert_almost_equal(resls[0] / dres.params, np.ones(dres.params.shape),
- decimal=1)
- #rescm also contains variance estimate as last element of params
-
- #assert_almost_equal(np.abs(rescm.params[:-1] / d.params), np.ones(d.params.shape), decimal=1)
- assert_almost_equal(rescm.params[:-1] / dres.params, np.ones(dres.params.shape), decimal=1)
- #return resls[0], d.params, rescm.params
-
-
-class CheckArmaResults(object):
- """
- res2 are the results from gretl. They are in results/results_arma.
- res1 are from statsmodels
- """
- decimal_params = DECIMAL_4
- def test_params(self):
- assert_almost_equal(self.res1.params, self.res2.params,
- self.decimal_params)
-
- decimal_aic = DECIMAL_4
- def test_aic(self):
- assert_almost_equal(self.res1.aic, self.res2.aic, self.decimal_aic)
-
- decimal_bic = DECIMAL_4
- def test_bic(self):
- assert_almost_equal(self.res1.bic, self.res2.bic, self.decimal_bic)
-
- def test_arroots(self):
- assert_almost_equal(self.res1.arroots, self.res2.arroots, DECIMAL_4)
-
- decimal_maroots = DECIMAL_4
- def test_maroots(self):
- assert_almost_equal(self.res1.maroots, self.res2.maroots,
- self.decimal_maroots)
-
- decimal_bse = DECIMAL_2
- def test_bse(self):
- assert_almost_equal(self.res1.bse, self.res2.bse, self.decimal_bse)
-
- decimal_cov_params = DECIMAL_4
- def test_covparams(self):
- assert_almost_equal(self.res1.cov_params(), self.res2.cov_params,
- self.decimal_cov_params)
-
- decimal_hqic = DECIMAL_4
- def test_hqic(self):
- assert_almost_equal(self.res1.hqic, self.res2.hqic, self.decimal_hqic)
-
- decimal_llf = DECIMAL_4
- def test_llf(self):
- assert_almost_equal(self.res1.llf, self.res2.llf, self.decimal_llf)
-
- decimal_resid = DECIMAL_4
- def test_resid(self):
- assert_almost_equal(self.res1.resid, self.res2.resid,
- self.decimal_resid)
-
- decimal_fittedvalues = DECIMAL_4
- def test_fittedvalues(self):
- assert_almost_equal(self.res1.fittedvalues, self.res2.fittedvalues,
- self.decimal_fittedvalues)
-
- decimal_pvalues = DECIMAL_2
- def test_pvalues(self):
- assert_almost_equal(self.res1.pvalues, self.res2.pvalues,
- self.decimal_pvalues)
-
- decimal_t = DECIMAL_2 # only 2 decimal places in gretl output
- def test_tvalues(self):
- assert_almost_equal(self.res1.tvalues, self.res2.tvalues, self.decimal_t)
-
- decimal_sigma2 = DECIMAL_4
- def test_sigma2(self):
- assert_almost_equal(self.res1.sigma2, self.res2.sigma2,
- self.decimal_sigma2)
-
-class CheckForecast(object):
- def test_forecast(self):
- assert_almost_equal(self.res1.forecast_res, self.res2.forecast,
- DECIMAL_4)
-
- def test_forecasterr(self):
- assert_almost_equal(self.res1.forecast_err, self.res2.forecasterr,
- DECIMAL_4)
-
-#NOTE: Ok
-class Test_Y_ARMA11_NoConst(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,0]
- cls.res1 = ARMA(endog).fit(order=(1,1), trend='nc', disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma11()
-
-#NOTE: Ok
-class Test_Y_ARMA14_NoConst(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,1]
- cls.res1 = ARMA(endog).fit(order=(1,4), trend='nc', disp=-1)
- cls.res2 = results_arma.Y_arma14()
- if fast_kalman:
- cls.decimal_t = 0
-
-
-#NOTE: Ok
-class Test_Y_ARMA41_NoConst(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,2]
- cls.res1 = ARMA(endog).fit(order=(4,1), trend='nc', disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma41()
- cls.decimal_maroots = DECIMAL_3
-
-#NOTE: Ok
-class Test_Y_ARMA22_NoConst(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,3]
- cls.res1 = ARMA(endog).fit(order=(2,2), trend='nc', disp=-1)
- cls.res2 = results_arma.Y_arma22()
- if fast_kalman:
- cls.decimal_t -= 1
-
-#NOTE: Ok
-class Test_Y_ARMA50_NoConst(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,4]
- cls.res1 = ARMA(endog).fit(order=(5,0), trend='nc', disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma50()
-
-#NOTE: Ok
-class Test_Y_ARMA02_NoConst(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,5]
- cls.res1 = ARMA(endog).fit(order=(0,2), trend='nc', disp=-1)
- cls.res2 = results_arma.Y_arma02()
- if fast_kalman:
- cls.decimal_t -= 1
-
-#NOTE: Ok
-class Test_Y_ARMA11_Const(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,6]
- cls.res1 = ARMA(endog).fit(order=(1,1), trend="c", disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma11c()
-
-#NOTE: OK
-class Test_Y_ARMA14_Const(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,7]
- cls.res1 = ARMA(endog).fit(order=(1,4), trend="c", disp=-1)
- cls.res2 = results_arma.Y_arma14c()
- if fast_kalman:
- cls.decimal_t = 0
- cls.decimal_cov_params -= 1
-
-#NOTE: Ok
-class Test_Y_ARMA41_Const(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,8]
- cls.res1 = ARMA(endog).fit(order=(4,1), trend="c", disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma41c()
- cls.decimal_cov_params = DECIMAL_3
- cls.decimal_fittedvalues = DECIMAL_3
- cls.decimal_resid = DECIMAL_3
- if fast_kalman:
- cls.decimal_cov_params -= 2
- cls.decimal_bse -= 1
-
-#NOTE: Ok
-class Test_Y_ARMA22_Const(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,9]
- cls.res1 = ARMA(endog).fit(order=(2,2), trend="c", disp=-1)
- cls.res2 = results_arma.Y_arma22c()
- if fast_kalman:
- cls.decimal_t = 0
-
-#NOTE: Ok
-class Test_Y_ARMA50_Const(CheckArmaResults, CheckForecast):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,10]
- cls.res1 = ARMA(endog).fit(order=(5,0), trend="c", disp=-1)
- (cls.res1.forecast_res, cls.res1.forecast_err,
- confint) = cls.res1.forecast(10)
- cls.res2 = results_arma.Y_arma50c()
-
-#NOTE: Ok
-class Test_Y_ARMA02_Const(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,11]
- cls.res1 = ARMA(endog).fit(order=(0,2), trend="c", disp=-1)
- cls.res2 = results_arma.Y_arma02c()
- if fast_kalman:
- cls.decimal_t -= 1
-
-#NOTE:
-# cov_params and tvalues are off still but not as much vs. R
-class Test_Y_ARMA11_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,0]
- cls.res1 = ARMA(endog).fit(order=(1,1), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma11("css")
- cls.decimal_t = DECIMAL_1
-
-# better vs. R
-class Test_Y_ARMA14_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,1]
- cls.res1 = ARMA(endog).fit(order=(1,4), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma14("css")
- cls.decimal_fittedvalues = DECIMAL_3
- cls.decimal_resid = DECIMAL_3
- cls.decimal_t = DECIMAL_1
-
-#NOTE: Ok
-#NOTE:
-# bse, etc. better vs. R
-# maroot is off because maparams is off a bit (adjust tolerance?)
-class Test_Y_ARMA41_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,2]
- cls.res1 = ARMA(endog).fit(order=(4,1), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma41("css")
- cls.decimal_t = DECIMAL_1
- cls.decimal_pvalues = 0
- cls.decimal_cov_params = DECIMAL_3
- cls.decimal_maroots = DECIMAL_1
-
-#NOTE: Ok
-#same notes as above
-class Test_Y_ARMA22_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,3]
- cls.res1 = ARMA(endog).fit(order=(2,2), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma22("css")
- cls.decimal_t = DECIMAL_1
- cls.decimal_resid = DECIMAL_3
- cls.decimal_pvalues = DECIMAL_1
- cls.decimal_fittedvalues = DECIMAL_3
-
-#NOTE: Ok
-#NOTE: gretl just uses least squares for AR CSS
-# so BIC, etc. is
-# -2*res1.llf + np.log(nobs)*(res1.q+res1.p+res1.k)
-# with no adjustment for p and no extra sigma estimate
-#NOTE: so our tests use x-12 arima results which agree with us and are
-# consistent with the rest of the models
-class Test_Y_ARMA50_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,4]
- cls.res1 = ARMA(endog).fit(order=(5,0), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma50("css")
- cls.decimal_t = 0
- cls.decimal_llf = DECIMAL_1 # looks like rounding error?
-
-#NOTE: ok
-class Test_Y_ARMA02_NoConst_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,5]
- cls.res1 = ARMA(endog).fit(order=(0,2), method="css", trend='nc',
- disp=-1)
- cls.res2 = results_arma.Y_arma02("css")
-
-#NOTE: Ok
-#NOTE: our results are close to --x-12-arima option and R
-class Test_Y_ARMA11_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,6]
- cls.res1 = ARMA(endog).fit(order=(1,1), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma11c("css")
- cls.decimal_params = DECIMAL_3
- cls.decimal_cov_params = DECIMAL_3
- cls.decimal_t = DECIMAL_1
-
-#NOTE: Ok
-class Test_Y_ARMA14_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,7]
- cls.res1 = ARMA(endog).fit(order=(1,4), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma14c("css")
- cls.decimal_t = DECIMAL_1
- cls.decimal_pvalues = DECIMAL_1
-
-#NOTE: Ok
-class Test_Y_ARMA41_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,8]
- cls.res1 = ARMA(endog).fit(order=(4,1), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma41c("css")
- cls.decimal_t = DECIMAL_1
- cls.decimal_cov_params = DECIMAL_1
- cls.decimal_maroots = DECIMAL_3
- cls.decimal_bse = DECIMAL_1
-
-#NOTE: Ok
-class Test_Y_ARMA22_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,9]
- cls.res1 = ARMA(endog).fit(order=(2,2), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma22c("css")
- cls.decimal_t = 0
- cls.decimal_pvalues = DECIMAL_1
-
-#NOTE: Ok
-class Test_Y_ARMA50_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,10]
- cls.res1 = ARMA(endog).fit(order=(5,0), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma50c("css")
- cls.decimal_t = DECIMAL_1
- cls.decimal_params = DECIMAL_3
- cls.decimal_cov_params = DECIMAL_2
-
-#NOTE: Ok
-class Test_Y_ARMA02_Const_CSS(CheckArmaResults):
- @classmethod
- def setupClass(cls):
- endog = y_arma[:,11]
- cls.res1 = ARMA(endog).fit(order=(0,2), trend="c", method="css",
- disp=-1)
- cls.res2 = results_arma.Y_arma02c("css")
-
-def test_reset_trend():
- endog = y_arma[:,0]
- mod = ARMA(endog)
- res1 = mod.fit(order=(1,1), trend="c", disp=-1)
- res2 = mod.fit(order=(1,1), trend="nc", disp=-1)
- assert_equal(len(res1.params), len(res2.params)+1)
-
-
-if __name__ == "__main__":
- import nose
- nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb'], exit=False)
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/test_stattools.py b/statsmodels/scikits/statsmodels/tsa/tests/test_stattools.py
deleted file mode 100644
index 3af5443..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/test_stattools.py
+++ /dev/null
@@ -1,228 +0,0 @@
-from scikits.statsmodels.tsa.stattools import (adfuller, acf, pacf_ols, pacf_yw,
- pacf, grangercausalitytests, coint)
-
-import numpy as np
-from numpy.testing import assert_almost_equal
-from numpy import genfromtxt#, concatenate
-from scikits.statsmodels.datasets import macrodata
-import os
-
-
-DECIMAL_8 = 8
-DECIMAL_6 = 6
-DECIMAL_5 = 5
-DECIMAL_4 = 4
-DECIMAL_3 = 3
-DECIMAL_2 = 2
-DECIMAL_1 = 1
-
-class CheckADF(object):
- """
- Test Augmented Dickey-Fuller
-
- Test values taken from Stata.
- """
- levels = ['1%', '5%', '10%']
- data = macrodata.load()
- x = data.data['realgdp']
- y = data.data['infl']
-
- def test_teststat(self):
- assert_almost_equal(self.res1[0], self.teststat, DECIMAL_5)
-
- def test_pvalue(self):
- assert_almost_equal(self.res1[1], self.pvalue, DECIMAL_5)
-
- def test_critvalues(self):
- critvalues = [self.res1[4][lev] for lev in self.levels]
- assert_almost_equal(critvalues, self.critvalues, DECIMAL_2)
-
-class TestADFConstant(CheckADF):
- """
- Dickey-Fuller test for unit root
- """
- def __init__(self):
- self.res1 = adfuller(self.x, regression="c", autolag=None,
- maxlag=4)
- self.teststat = .97505319
- self.pvalue = .99399563
- self.critvalues = [-3.476, -2.883, -2.573]
-
-class TestADFConstantTrend(CheckADF):
- """
- """
- def __init__(self):
- self.res1 = adfuller(self.x, regression="ct", autolag=None,
- maxlag=4)
- self.teststat = -1.8566374
- self.pvalue = .67682968
- self.critvalues = [-4.007, -3.437, -3.137]
-
-#class TestADFConstantTrendSquared(CheckADF):
-# """
-# """
-# pass
-#TODO: get test values from R?
-
-class TestADFNoConstant(CheckADF):
- """
- """
- def __init__(self):
- self.res1 = adfuller(self.x, regression="nc", autolag=None,
- maxlag=4)
- self.teststat = 3.5227498
- self.pvalue = .99999 # Stata does not return a p-value for noconstant.
- # Tau^max in MacKinnon (1994) is missing, so it is
- # assumed that its right-tail is well-behaved
- self.critvalues = [-2.587, -1.950, -1.617]
-
-# No Unit Root
-
-class TestADFConstant2(CheckADF):
- def __init__(self):
- self.res1 = adfuller(self.y, regression="c", autolag=None,
- maxlag=1)
- self.teststat = -4.3346988
- self.pvalue = .00038661
- self.critvalues = [-3.476, -2.883, -2.573]
-
-class TestADFConstantTrend2(CheckADF):
- def __init__(self):
- self.res1 = adfuller(self.y, regression="ct", autolag=None,
- maxlag=1)
- self.teststat = -4.425093
- self.pvalue = .00199633
- self.critvalues = [-4.006, -3.437, -3.137]
-
-class TestADFNoConstant2(CheckADF):
- def __init__(self):
- self.res1 = adfuller(self.y, regression="nc", autolag=None,
- maxlag=1)
- self.teststat = -2.4511596
- self.pvalue = 0.013747 # Stata does not return a p-value for noconstant
- # this value is just taken from our results
- self.critvalues = [-2.587,-1.950,-1.617]
-
-class CheckCorrGram(object):
- """
- Set up for ACF, PACF tests.
- """
- data = macrodata.load()
- x = data.data['realgdp']
- filename = os.path.dirname(os.path.abspath(__file__))+\
- "/results/results_corrgram.csv"
- results = genfromtxt(open(filename, "rb"), delimiter=",", names=True,dtype=float)
-
- #not needed: add 1. for lag zero
- #self.results['acvar'] = np.concatenate(([1.], self.results['acvar']))
-
-
-class TestACF(CheckCorrGram):
- """
- Test Autocorrelation Function
- """
- def __init__(self):
- self.acf = self.results['acvar']
- #self.acf = np.concatenate(([1.], self.acf))
- self.qstat = self.results['Q1']
- self.res1 = acf(self.x, nlags=40, qstat=True)
-
- def test_acf(self):
- assert_almost_equal(self.res1[0][1:41], self.acf, DECIMAL_8)
-
-# def test_confint(self):
-# pass
-#NOTE: need to figure out how to center confidence intervals
-
- def test_qstat(self):
- assert_almost_equal(self.res1[1][:40], self.qstat, DECIMAL_3)
- # 3 decimal places because of stata rounding
-
-# def pvalue(self):
-# pass
-#NOTE: shouldn't need testing if Q stat is correct
-
-
-class TestACF_FFT(CheckCorrGram):
- """
- Test Autocorrelation Function using FFT
- """
- def __init__(self):
- self.acf = self.results['acvarfft']
- self.qstat = self.results['Q1']
- self.res1 = acf(self.x, nlags=40, qstat=True, fft=True)
-
- def test_acf(self):
- assert_almost_equal(self.res1[0][1:], self.acf, DECIMAL_8)
-
- def test_qstat(self):
- #todo why is res1/qstat 1 short
- assert_almost_equal(self.res1[1], self.qstat, DECIMAL_3)
-
-
-class TestPACF(CheckCorrGram):
- def __init__(self):
- self.pacfols = self.results['PACOLS']
- self.pacfyw = self.results['PACYW']
-
- def test_ols(self):
- pacfols = pacf_ols(self.x, nlags=40)
- assert_almost_equal(pacfols[1:], self.pacfols, DECIMAL_6)
-
- def test_yw(self):
- pacfyw = pacf_yw(self.x, nlags=40, method="mle")
- assert_almost_equal(pacfyw[1:], self.pacfyw, DECIMAL_8)
-
- def test_ld(self):
- pacfyw = pacf_yw(self.x, nlags=40, method="mle")
- pacfld = pacf(self.x, nlags=40, method="ldb")
- assert_almost_equal(pacfyw, pacfld, DECIMAL_8)
-
- pacfyw = pacf(self.x, nlags=40, method="yw")
- pacfld = pacf(self.x, nlags=40, method="ldu")
- assert_almost_equal(pacfyw, pacfld, DECIMAL_8)
-
-class CheckCoint(object):
- """
- Test Cointegration Test Results for 2-variable system
-
- Test values taken from Stata
- """
- levels = ['1%', '5%', '10%']
- data = macrodata.load()
- y1 = data.data['realcons']
- y2 = data.data['realgdp']
-
- def test_tstat(self):
- assert_almost_equal(self.coint_t,self.teststat, DECIMAL_4)
-
-class TestCoint_t(CheckCoint):
- """
- Get AR(1) parameter on residuals
- """
- def __init__(self):
- self.coint_t = coint(self.y1, self.y2, regression ="c")[0]
- self.teststat = -1.8208817
-
-
-def test_grangercausality():
- # some example data
- mdata = macrodata.load().data
- mdata = mdata[['realgdp','realcons']]
- data = mdata.view((float,2))
- data = np.diff(np.log(data), axis=0)
-
- #R: lmtest:grangertest
- r_result = [0.243097, 0.7844328, 195, 2] #f_test
- gr = grangercausalitytests(data[:,1::-1], 2, verbose=False)
- assert_almost_equal(r_result, gr[2][0]['ssr_ftest'], decimal=7)
- assert_almost_equal(gr[2][0]['params_ftest'], gr[2][0]['ssr_ftest'],
- decimal=7)
-
-
-
-if __name__=="__main__":
- import nose
-# nose.runmodule(argv=[__file__, '-vvs','-x','-pdb'], exit=False)
- import numpy as np
- np.testing.run_module_suite()
diff --git a/statsmodels/scikits/statsmodels/tsa/tests/test_tsa_tools.py b/statsmodels/scikits/statsmodels/tsa/tests/test_tsa_tools.py
deleted file mode 100644
index 565df54..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tests/test_tsa_tools.py
+++ /dev/null
@@ -1,209 +0,0 @@
-'''tests for some time series analysis functions
-
-'''
-
-import numpy as np
-from numpy.testing import assert_array_almost_equal, assert_equal
-import scikits.statsmodels.api as sm
-import scikits.statsmodels.tsa.stattools as tsa
-import scikits.statsmodels.tsa.tsatools as tools
-from scikits.statsmodels.tsa.tsatools import vec, vech
-
-from results import savedrvs
-from results.datamlw_tls import mlacf, mlccf, mlpacf, mlywar
-
-xo = savedrvs.rvsdata.xar2
-x100 = xo[-100:]/1000.
-x1000 = xo/1000.
-
-
-def test_acf():
- acf_x = tsa.acf(x100, unbiased=False)[:21]
- assert_array_almost_equal(mlacf.acf100.ravel(), acf_x, 8) #why only dec=8
- acf_x = tsa.acf(x1000, unbiased=False)[:21]
- assert_array_almost_equal(mlacf.acf1000.ravel(), acf_x, 8) #why only dec=9
-
-def test_ccf():
- ccf_x = tsa.ccf(x100[4:], x100[:-4], unbiased=False)[:21]
- assert_array_almost_equal(mlccf.ccf100.ravel()[:21][::-1], ccf_x, 8)
- ccf_x = tsa.ccf(x1000[4:], x1000[:-4], unbiased=False)[:21]
- assert_array_almost_equal(mlccf.ccf1000.ravel()[:21][::-1], ccf_x, 8)
-
-def test_pacf_yw():
- pacfyw = tsa.pacf_yw(x100, 20, method='mle')
- assert_array_almost_equal(mlpacf.pacf100.ravel(), pacfyw, 1)
- pacfyw = tsa.pacf_yw(x1000, 20, method='mle')
- assert_array_almost_equal(mlpacf.pacf1000.ravel(), pacfyw, 2)
- #assert False
-
-def test_pacf_ols():
- pacfols = tsa.pacf_ols(x100, 20)
- assert_array_almost_equal(mlpacf.pacf100.ravel(), pacfols, 2)
- pacfols = tsa.pacf_ols(x1000, 20)
- assert_array_almost_equal(mlpacf.pacf1000.ravel(), pacfols, 5)
- #assert False
-
-def test_ywcoef():
- assert_array_almost_equal(mlywar.arcoef100[1:],
- -sm.regression.yule_walker(x100, 10, method='mle')[0], 8)
- assert_array_almost_equal(mlywar.arcoef1000[1:],
- -sm.regression.yule_walker(x1000, 20, method='mle')[0], 8)
-
-def test_duplication_matrix():
- for k in range(2, 10):
- m = tools.unvech(np.random.randn(k * (k + 1) / 2))
- Dk = tools.duplication_matrix(k)
- assert(np.array_equal(vec(m), np.dot(Dk, vech(m))))
-
-def test_elimination_matrix():
- for k in range(2, 10):
- m = np.random.randn(k, k)
- Lk = tools.elimination_matrix(k)
- assert(np.array_equal(vech(m), np.dot(Lk, vec(m))))
-
-def test_commutation_matrix():
- m = np.random.randn(4, 3)
- K = tools.commutation_matrix(4, 3)
- assert(np.array_equal(vec(m.T), np.dot(K, vec(m))))
-
-def test_vec():
- arr = np.array([[1, 2],
- [3, 4]])
- assert(np.array_equal(vec(arr), [1, 3, 2, 4]))
-
-def test_vech():
- arr = np.array([[1, 2, 3],
- [4, 5, 6],
- [7, 8, 9]])
- assert(np.array_equal(vech(arr), [1, 4, 7, 5, 8, 9]))
-
-
-def test_add_lag_insert():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,:3],lagmat,nddata[3:,-1]))
- lag_data = sm.tsa.add_lag(data, 'realgdp', 3)
- assert_equal(lag_data.view((float,len(lag_data.dtype.names))), results)
-
-def test_add_lag_noinsert():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,:],lagmat))
- lag_data = sm.tsa.add_lag(data, 'realgdp', 3, insert=False)
- assert_equal(lag_data.view((float,len(lag_data.dtype.names))), results)
-
-def test_add_lag_noinsert_atend():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,-1],3,trim='Both')
- results = np.column_stack((nddata[3:,:],lagmat))
- lag_data = sm.tsa.add_lag(data, 'cpi', 3, insert=False)
- assert_equal(lag_data.view((float,len(lag_data.dtype.names))), results)
- # should be the same as insert
- lag_data2 = sm.tsa.add_lag(data, 'cpi', 3, insert=True)
- assert_equal(lag_data2.view((float,len(lag_data2.dtype.names))), results)
-
-def test_add_lag_ndarray():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,:3],lagmat,nddata[3:,-1]))
- lag_data = sm.tsa.add_lag(nddata, 2, 3)
- assert_equal(lag_data, results)
-
-def test_add_lag_noinsert_ndarray():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,:],lagmat))
- lag_data = sm.tsa.add_lag(nddata, 2, 3, insert=False)
- assert_equal(lag_data, results)
-
-def test_add_lag_noinsertatend_ndarray():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,-1],3,trim='Both')
- results = np.column_stack((nddata[3:,:],lagmat))
- lag_data = sm.tsa.add_lag(nddata, 3, 3, insert=False)
- assert_equal(lag_data, results)
- # should be the same as insert also check negative col number
- lag_data2 = sm.tsa.add_lag(nddata, -1, 3, insert=True)
- assert_equal(lag_data2, results)
-
-def test_add_lag1d():
- data = np.random.randn(100)
- lagmat = sm.tsa.lagmat(data,3,trim='Both')
- results = np.column_stack((data[3:],lagmat))
- lag_data = sm.tsa.add_lag(data, lags=3, insert=True)
- assert_equal(results, lag_data)
-
- # add index
- data = data[:,None]
- lagmat = sm.tsa.lagmat(data,3,trim='Both') # test for lagmat too
- results = np.column_stack((data[3:],lagmat))
- lag_data = sm.tsa.add_lag(data,lags=3, insert=True)
- assert_equal(results, lag_data)
-
-def test_add_lag1d_drop():
- data = np.random.randn(100)
- lagmat = sm.tsa.lagmat(data,3,trim='Both')
- lag_data = sm.tsa.add_lag(data, lags=3, drop=True, insert=True)
- assert_equal(lagmat, lag_data)
-
- # no insert, should be the same
- lag_data = sm.tsa.add_lag(data, lags=3, drop=True, insert=False)
- assert_equal(lagmat, lag_data)
-
-def test_add_lag1d_struct():
- data = np.zeros(100, dtype=[('variable',float)])
- nddata = np.random.randn(100)
- data['variable'] = nddata
-
- lagmat = sm.tsa.lagmat(nddata,3,trim='Both', original='in')
- lag_data = sm.tsa.add_lag(data, 'variable', lags=3, insert=True)
- assert_equal(lagmat, lag_data.view((float,4)))
-
- lag_data = sm.tsa.add_lag(data, 'variable', lags=3, insert=False)
- assert_equal(lagmat, lag_data.view((float,4)))
-
- lag_data = sm.tsa.add_lag(data, lags=3, insert=True)
- assert_equal(lagmat, lag_data.view((float,4)))
-
-def test_add_lag_1d_drop_struct():
- data = np.zeros(100, dtype=[('variable',float)])
- nddata = np.random.randn(100)
- data['variable'] = nddata
-
- lagmat = sm.tsa.lagmat(nddata,3,trim='Both')
- lag_data = sm.tsa.add_lag(data, lags=3, drop=True)
- assert_equal(lagmat, lag_data.view((float,3)))
-
-def test_add_lag_drop_insert():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,:2],lagmat,nddata[3:,-1]))
- lag_data = sm.tsa.add_lag(data, 'realgdp', 3, drop=True)
- assert_equal(lag_data.view((float,len(lag_data.dtype.names))), results)
-
-def test_add_lag_drop_noinsert():
- data = sm.datasets.macrodata.load().data[['year','quarter','realgdp','cpi']]
- nddata = data.view((float,4))
- lagmat = sm.tsa.lagmat(nddata[:,2],3,trim='Both')
- results = np.column_stack((nddata[3:,np.array([0,1,3])],lagmat))
- lag_data = sm.tsa.add_lag(data, 'realgdp', 3, insert=False, drop=True)
- assert_equal(lag_data.view((float,len(lag_data.dtype.names))), results)
-
-
-if __name__ == '__main__':
- #running them directly
- # test_acf()
- # test_ccf()
- # test_pacf_yw()
- # test_pacf_ols()
- # test_ywcoef()
-
- import nose
- nose.runmodule()
diff --git a/statsmodels/scikits/statsmodels/tsa/tsatools.py b/statsmodels/scikits/statsmodels/tsa/tsatools.py
deleted file mode 100644
index 3c74aa2..0000000
--- a/statsmodels/scikits/statsmodels/tsa/tsatools.py
+++ /dev/null
@@ -1,552 +0,0 @@
-import numpy as np
-import numpy.lib.recfunctions as nprf
-from scikits.statsmodels.tools.tools import add_constant
-
-def add_trend(X, trend="c", prepend=False):
- """
- Adds a trend and/or constant to an array.
-
- Parameters
- ----------
- X : array-like
- Original array of data.
- trend : str {"c","t","ct","ctt"}
- "c" add constant only
- "t" add trend only
- "ct" add constant and linear trend
- "ctt" add constant and linear and quadratic trend.
- prepend : bool
- If True, prepends the new data to the columns of X.
-
- Notes
- -----
- Returns columns as ["ctt","ct","c"] whenever applicable. There is currently
- no checking for an existing constant or trend.
-
- See also
- --------
- scikits.statsmodels.add_constant
- """
- #TODO: could be generalized for trend of aribitrary order
- trend = trend.lower()
- if trend == "c": # handles structured arrays
- return add_constant(X, prepend=prepend)
- elif trend == "ct" or trend == "t":
- trendorder = 1
- elif trend == "ctt":
- trendorder = 2
- else:
- raise ValueError("trend %s not understood" % trend)
- X = np.asanyarray(X)
- nobs = len(X)
- trendarr = np.vander(np.arange(1,nobs+1, dtype=float), trendorder+1)
- # put in order ctt
- trendarr = np.fliplr(trendarr)
- if trend == "t":
- trendarr = trendarr[:,1]
- if not X.dtype.names:
- if not prepend:
- X = np.column_stack((X, trendarr))
- else:
- X = np.column_stack((trendarr, X))
- else:
- return_rec = data.__clas__ is np.recarray
- if trendorder == 1:
- if trend == "ct":
- dt = [('const',float),('trend',float)]
- else:
- dt = [('trend', float)]
- elif trendorder == 2:
- dt = [('const',float),('trend',float),('trend_squared', float)]
- trendarr = trendarr.view(dt)
- if prepend:
- X = nprf.append_fields(trendarr, X.dtype.names, [X[i] for i
- in data.dtype.names], usemask=False, asrecarray=return_rec)
- else:
- X = nprf.append_fields(X, trendarr.dtype.names, [trendarr[i] for i
- in trendarr.dtype.names], usemask=false, asrecarray=return_rec)
- return X
-
-def add_lag(x, col=None, lags=1, drop=False, insert=True):
- """
- Returns an array with lags included given an array.
-
- Parameters
- ----------
- x : array
- An array or NumPy ndarray subclass. Can be either a 1d or 2d array with
- observations in columns.
- col : 'string', int, or None
- If data is a structured array or a recarray, `col` can be a string
- that is the name of the column containing the variable. Or `col` can
- be an int of the zero-based column index. If it's a 1d array `col`
- can be None.
- lags : int
- The number of lags desired.
- drop : bool
- Whether to keep the contemporaneous variable for the data.
- insert : bool or int
- If True, inserts the lagged values after `col`. If False, appends
- the data. If int inserts the lags at int.
-
- Returns
- -------
- array : ndarray
- Array with lags
-
- Examples
- --------
-
- >>> import scikits.statsmodels.api as sm
- >>> data = sm.datasets.macrodata.load()
- >>> data = data.data[['year','quarter','realgdp','cpi']]
- >>> data = sm.tsa.add_lag(data, 'realgdp', lags=2)
-
- Notes
- -----
- Trims the array both forward and backward, so that the array returned
- so that the length of the returned array is len(`X`) - lags. The lags are
- returned in increasing order, ie., t-1,t-2,...,t-lags
- """
- if x.dtype.names:
- names = x.dtype.names
- if not col and np.squeeze(x).ndim > 1:
- raise IndexError, "col is None and the input array is not 1d"
- elif len(names) == 1:
- col = names[0]
- if isinstance(col, int):
- col = x.dtype.names[col]
- contemp = x[col]
-
- # make names for lags
- tmp_names = [col + '_'+'L(%i)' % i for i in range(1,lags+1)]
- ndlags = lagmat(contemp, maxlag=lags, trim='Both')
-
- # get index for return
- if insert is True:
- ins_idx = list(names).index(col) + 1
- elif insert is False:
- ins_idx = len(names) + 1
- else: # insert is an int
- if insert > len(names):
- raise Warning("insert > number of variables, inserting at the"+
- " last position")
- ins_idx = insert
-
- first_names = list(names[:ins_idx])
- last_names = list(names[ins_idx:])
-
- if drop:
- if col in first_names:
- first_names.pop(first_names.index(col))
- else:
- last_names.pop(last_names.index(col))
-
- if first_names: # only do this if x isn't "empty"
- first_arr = nprf.append_fields(x[first_names][lags:],tmp_names,
- ndlags.T, usemask=False)
- else:
- first_arr = np.zeros(len(x)-lags, dtype=zip(tmp_names,
- (x[col].dtype,)*lags))
- for i,name in enumerate(tmp_names):
- first_arr[name] = ndlags[:,i]
- if last_names:
- return nprf.append_fields(first_arr, last_names,
- [x[name][lags:] for name in last_names], usemask=False)
- else: # lags for last variable
- return first_arr
-
- else: # we have an ndarray
-
- if x.ndim == 1: # make 2d if 1d
- x = x[:,None]
- if col is None:
- col = 0
-
- # handle negative index
- if col < 0:
- col = x.shape[1] + col
-
- contemp = x[:,col]
-
- if insert is True:
- ins_idx = col + 1
- elif insert is False:
- ins_idx = x.shape[1]
- else:
- if insert < 0: # handle negative index
- insert = x.shape[1] + insert + 1
- if insert > x.shape[1]:
- insert = x.shape[1]
- raise Warning("insert > number of variables, inserting at the"+
- " last position")
- ins_idx = insert
-
- ndlags = lagmat(contemp, lags, trim='Both')
- first_cols = range(ins_idx)
- last_cols = range(ins_idx,x.shape[1])
- if drop:
- if col in first_cols:
- first_cols.pop(first_cols.index(col))
- else:
- last_cols.pop(last_cols.index(col))
- return np.column_stack((x[lags:,first_cols],ndlags,
- x[lags:,last_cols]))
-
-def detrend(x, order=1, axis=0):
- '''detrend an array with a trend of given order along axis 0 or 1
-
- Parameters
- ----------
- x : array_like, 1d or 2d
- data, if 2d, then each row or column is independently detrended with the
- same trendorder, but independent trend estimates
- order : int
- specifies the polynomial order of the trend, zero is constant, one is
- linear trend, two is quadratic trend
- axis : int
- for detrending with order > 0, axis can be either 0 observations by rows,
- or 1, observations by columns
-
- Returns
- -------
- detrended data series : ndarray
- The detrended series is the residual of the linear regression of the
- data on the trend of given order.
-
-
- '''
- x = np.asarray(x)
- nobs = x.shape[0]
- if order == 0:
- return x - np.expand_dims(x.mean(ax), x)
- else:
- if x.ndim == 2 and range(2)[axis]==1:
- x = x.T
- elif x.ndim > 2:
- raise NotImplementedError('x.ndim>2 is not implemented until it is needed')
- #could use a polynomial, but this should work also with 2d x, but maybe not yet
- trends = np.vander(np.arange(nobs).astype(float), N=order+1)
- beta = np.linalg.lstsq(trends, x)[0]
- resid = x - np.dot(trends, beta)
- if x.ndim == 2 and range(2)[axis]==1:
- resid = resid.T
- return resid
-
-
-def lagmat(x, maxlag, trim='forward', original='ex'):
- '''create 2d array of lags
-
- Parameters
- ----------
- x : array_like, 1d or 2d
- data; if 2d, observation in rows and variables in columns
- maxlag : int or sequence of ints
- all lags from zero to maxlag are included
- trim : str {'forward', 'backward', 'both', 'none'} or None
- * 'forward' : trim invalid observations in front
- * 'backward' : trim invalid initial observations
- * 'both' : trim invalid observations on both sides
- * 'none', None : no trimming of observations
- original : str {'ex','sep','in'}
- * 'ex' : drops the original array returning only the lagged values.
- * 'in' : returns the original array and the lagged values as a single
- array.
- * 'sep' : returns a tuple (original array, lagged values). The original
- array is truncated to have the same number of rows as
- the returned lagmat.
-
- Returns
- -------
- lagmat : 2d array
- array with lagged observations
- y : 2d array, optional
- Only returned if original == 'sep'
-
- Examples
- --------
- >>> from scikits.statsmodels.tsa.tsatools import lagmat
- >>> import numpy as np
- >>> X = np.arange(1,7).reshape(-1,2)
- >>> lagmat(X, maxlag=2, trim="forward", original='in')
- array([[ 1., 2., 0., 0., 0., 0.],
- [ 3., 4., 1., 2., 0., 0.],
- [ 5., 6., 3., 4., 1., 2.]])
-
- >>> lagmat(X, maxlag=2, trim="backward", original='in')
- array([[ 5., 6., 3., 4., 1., 2.],
- [ 0., 0., 5., 6., 3., 4.],
- [ 0., 0., 0., 0., 5., 6.]])
-
- >>> lagmat(X, maxlag=2, trim="both", original='in')
- array([[ 5., 6., 3., 4., 1., 2.]])
-
- >>> lagmat(X, maxlag=2, trim="none", original='in')
- array([[ 1., 2., 0., 0., 0., 0.],
- [ 3., 4., 1., 2., 0., 0.],
- [ 5., 6., 3., 4., 1., 2.],
- [ 0., 0., 5., 6., 3., 4.],
- [ 0., 0., 0., 0., 5., 6.]])
-
- Notes
- -----
- TODO:
- * allow list of lags additional to maxlag
- * create varnames for columns
- '''
- x = np.asarray(x)
- dropidx = 0
- if x.ndim == 1:
- x = x[:,None]
- nobs, nvar = x.shape
- if original in ['ex','sep']:
- dropidx = nvar
- if maxlag >= nobs:
- raise ValueError("maxlag should be < nobs")
- lm = np.zeros((nobs+maxlag, nvar*(maxlag+1)))
- for k in range(0, int(maxlag+1)):
- lm[maxlag-k:nobs+maxlag-k, nvar*(maxlag-k):nvar*(maxlag-k+1)] = x
- if trim:
- trimlower = trim.lower()
- else:
- trimlower = trim
- if trimlower == 'none' or not trimlower:
- startobs = 0
- stopobs = len(lm)
- elif trimlower == 'forward':
- startobs = 0
- stopobs = nobs+maxlag-k
- elif trimlower == 'both':
- startobs = maxlag
- stopobs = nobs+maxlag-k
- elif trimlower == 'backward':
- startobs = maxlag
- stopobs = len(lm)
-
- else:
- raise ValueError('trim option not valid')
- if original == 'sep':
- return lm[startobs:stopobs,dropidx:], x[startobs:stopobs]
- else:
- return lm[startobs:stopobs,dropidx:]
-
-def lagmat2ds(x, maxlag0, maxlagex=None, dropex=0, trim='forward'):
- '''generate lagmatrix for 2d array, columns arranged by variables
-
- Parameters
- ----------
- x : array_like, 2d
- 2d data, observation in rows and variables in columns
- maxlag0 : int
- for first variable all lags from zero to maxlag are included
- maxlagex : None or int
- max lag for all other variables all lags from zero to maxlag are included
- dropex : int (default is 0)
- exclude first dropex lags from other variables
- for all variables, except the first, lags from dropex to maxlagex are
- included
- trim : string
- * 'forward' : trim invalid observations in front
- * 'backward' : trim invalid initial observations
- * 'both' : trim invalid observations on both sides
- * 'none' : no trimming of observations
-
- Returns
- -------
- lagmat : 2d array
- array with lagged observations, columns ordered by variable
-
- Notes
- -----
- very inefficient for unequal lags, just done for convenience
- '''
- if maxlagex is None:
- maxlagex = maxlag0
- maxlag = max(maxlag0, maxlagex)
- nobs, nvar = x.shape
- lagsli = [lagmat(x[:,0], maxlag, trim=trim, original='in')[:,:maxlag0+1]]
- for k in range(1,nvar):
- lagsli.append(lagmat(x[:,k], maxlag, trim=trim, original='in')[:,dropex:maxlagex+1])
- return np.column_stack(lagsli)
-
-def vec(mat):
- return mat.ravel('F')
-
-def vech(mat):
- # Gets Fortran-order
- return mat.T.take(_triu_indices(len(mat)))
-
-# tril/triu/diag, suitable for ndarray.take
-
-def _tril_indices(n):
- rows, cols = np.tril_indices(n)
- return rows * n + cols
-
-def _triu_indices(n):
- rows, cols = np.triu_indices(n)
- return rows * n + cols
-
-def _diag_indices(n):
- rows, cols = np.diag_indices(n)
- return rows * n + cols
-
-def unvec(v):
- k = int(np.sqrt(len(v)))
- assert(k * k == len(v))
- return v.reshape((k, k), order='F')
-
-def unvech(v):
- # quadratic formula, correct fp error
- rows = .5 * (-1 + np.sqrt(1 + 8 * len(v)))
- rows = int(np.round(rows))
-
- result = np.zeros((rows, rows))
- result[np.triu_indices(rows)] = v
- result = result + result.T
-
- # divide diagonal elements by 2
- result[np.diag_indices(rows)] /= 2
-
- return result
-
-def duplication_matrix(n):
- """
- Create duplication matrix D_n which satisfies vec(S) = D_n vech(S) for
- symmetric matrix S
-
- Returns
- -------
- D_n : ndarray
- """
- tmp = np.eye(n * (n + 1) / 2)
- return np.array([unvech(x).ravel() for x in tmp]).T
-
-def elimination_matrix(n):
- """
- Create the elimination matrix L_n which satisfies vech(M) = L_n vec(M) for
- any matrix M
-
- Parameters
- ----------
-
- Returns
- -------
-
- """
- vech_indices = vec(np.tril(np.ones((n, n))))
- return np.eye(n * n)[vech_indices != 0]
-
-def commutation_matrix(p, q):
- """
- Create the commutation matrix K_{p,q} satisfying vec(A') = K_{p,q} vec(A)
-
- Parameters
- ----------
- p : int
- q : int
-
- Returns
- -------
- K : ndarray (pq x pq)
- """
- K = np.eye(p * q)
- indices = np.arange(p * q).reshape((p, q), order='F')
- return K.take(indices.ravel(), axis=0)
-
-def _ar_transparams(params):
- """
- Transforms params to induce stationarity/invertability.
-
- Parameters
- ----------
- params : array
- The AR coefficients
-
- Reference
- ---------
- Jones(1980)
- """
- newparams = ((1-np.exp(-params))/
- (1+np.exp(-params))).copy()
- tmp = ((1-np.exp(-params))/
- (1+np.exp(-params))).copy()
- for j in range(1,len(params)):
- a = newparams[j]
- for kiter in range(j):
- tmp[kiter] -= a * newparams[j-kiter-1]
- newparams[:j] = tmp[:j]
- return newparams
-
-def _ar_invtransparams(params):
- """
- Inverse of the Jones reparameterization
-
- Parameters
- ----------
- params : array
- The transformed AR coefficients
- """
- # AR coeffs
- tmp = params.copy()
- for j in range(len(params)-1,0,-1):
- a = params[j]
- for kiter in range(j):
- tmp[kiter] = (params[kiter] + a * params[j-kiter-1])/\
- (1-a**2)
- params[:j] = tmp[:j]
- invarcoefs = -np.log((1-params)/(1+params))
- return invarcoefs
-
-def _ma_transparams(params):
- """
- Transforms params to induce stationarity/invertability.
-
- Parameters
- ----------
- params : array
- The ma coeffecients of an (AR)MA model.
-
- Reference
- ---------
- Jones(1980)
- """
- newparams = ((1-np.exp(-params))/(1+np.exp(-params))).copy()
- tmp = ((1-np.exp(-params))/(1+np.exp(-params))).copy()
-
- # levinson-durbin to get macf
- for j in range(1,len(params)):
- b = newparams[j]
- for kiter in range(j):
- tmp[kiter] += b * newparams[j-kiter-1]
- newparams[:j] = tmp[:j]
- return newparams
-
-def _ma_invtransparams(macoefs):
- """
- Inverse of the Jones reparameterization
-
- Parameters
- ----------
- params : array
- The transformed MA coefficients
- """
- tmp = macoefs.copy()
- for j in range(len(macoefs)-1,0,-1):
- b = macoefs[j]
- for kiter in range(j):
- tmp[kiter] = (macoefs[kiter]-b *macoefs[j-kiter-1])/(1-b**2)
- macoefs[:j] = tmp[:j]
- invmacoefs = -np.log((1-macoefs)/(1+macoefs))
- return invmacoefs
-
-
-__all__ = ['lagmat', 'lagmat2ds','add_trend', 'duplication_matrix',
- 'elimination_matrix', 'commutation_matrix',
- 'vec', 'vech', 'unvec', 'unvech']
-
-if __name__ == '__main__':
- # sanity check, mainly for imports
- x = np.random.normal(size=(100,2))
- tmp = lagmat(x,2)
- tmp = lagmat2ds(x,2)
-# grangercausalitytests(x, 2)
diff --git a/statsmodels/scikits/statsmodels/tsa/varma_process.py b/statsmodels/scikits/statsmodels/tsa/varma_process.py
deleted file mode 100644
index f384005..0000000
--- a/statsmodels/scikits/statsmodels/tsa/varma_process.py
+++ /dev/null
@@ -1,726 +0,0 @@
-# -*- coding: utf-8 -*-
-""" Helper and filter functions for VAR and VARMA, and basic VAR class
-
-Created on Mon Jan 11 11:04:23 2010
-Author: josef-pktd
-License: BSD
-
-This is a new version, I didn't look at the old version again, but similar
-ideas.
-
-not copied/cleaned yet:
- * fftn based filtering, creating samples with fft
- * Tests: I ran examples but did not convert them to tests
- examples look good for parameter estimate and forecast, and filter functions
-
-main TODOs:
-* result statistics
-* see whether Bayesian dummy observation can be included without changing
- the single call to linalg.lstsq
-* impulse response function does not treat correlation, see Hamilton and jplv
-
-Extensions
-* constraints, Bayesian priors/penalization
-* Error Correction Form and Cointegration
-* Factor Models Stock-Watson, ???
-
-
-see also VAR section in Notes.txt
-
-"""
-
-import numpy as np
-from numpy.testing import assert_equal
-from scipy import signal
-#might not (yet) need the following
-from scipy.signal.signaltools import _centered as trim_centered
-
-from scikits.statsmodels.tsa.tsatools import lagmat
-
-
-def varfilter(x, a):
- '''apply an autoregressive filter to a series x
-
- Warning: I just found out that convolve doesn't work as I
- thought, this likely doesn't work correctly for
- nvars>3
-
-
- x can be 2d, a can be 1d, 2d, or 3d
-
- Parameters
- ----------
- x : array_like
- data array, 1d or 2d, if 2d then observations in rows
- a : array_like
- autoregressive filter coefficients, ar lag polynomial
- see Notes
-
- Returns
- -------
- y : ndarray, 2d
- filtered array, number of columns determined by x and a
-
- Notes
- -----
-
- In general form this uses the linear filter ::
-
- y = a(L)x
-
- where
- x : nobs, nvars
- a : nlags, nvars, npoly
-
- Depending on the shape and dimension of a this uses different
- Lag polynomial arrays
-
- case 1 : a is 1d or (nlags,1)
- one lag polynomial is applied to all variables (columns of x)
- case 2 : a is 2d, (nlags, nvars)
- each series is independently filtered with its own
- lag polynomial, uses loop over nvar
- case 3 : a is 3d, (nlags, nvars, npoly)
- the ith column of the output array is given by the linear filter
- defined by the 2d array a[:,:,i], i.e. ::
-
- y[:,i] = a(.,.,i)(L) * x
- y[t,i] = sum_p sum_j a(p,j,i)*x(t-p,j)
- for p = 0,...nlags-1, j = 0,...nvars-1,
- for all t >= nlags
-
-
- Note: maybe convert to axis=1, Not
-
- TODO: initial conditions
-
- '''
- x = np.asarray(x)
- a = np.asarray(a)
- if x.ndim == 1:
- x = x[:,None]
- if x.ndim > 2:
- raise ValueError('x array has to be 1d or 2d')
- nvar = x.shape[1]
- nlags = a.shape[0]
- ntrim = nlags//2
- # for x is 2d with ncols >1
-
- if a.ndim == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a[:,None], mode='valid')
- # alternative:
- #return signal.lfilter(a,[1],x.astype(float),axis=0)
- elif a.ndim == 2:
- if min(a.shape) == 1:
- # case: identical ar filter (lag polynomial)
- return signal.convolve(x, a, mode='valid')
-
- # case: independent ar
- #(a bit like recserar in gauss, but no x yet)
- #(no, reserar is inverse filter)
- result = np.zeros((x.shape[0]-nlags+1, nvar))
- for i in range(nvar):
- # could also use np.convolve, but easier for swiching to fft
- result[:,i] = signal.convolve(x[:,i], a[:,i], mode='valid')
- return result
-
- elif a.ndim == 3:
- # case: vector autoregressive with lag matrices
-# #not necessary:
-# if np.any(a.shape[1:] != nvar):
-# raise ValueError('if 3d shape of a has to be (nobs,nvar,nvar)')
- yf = signal.convolve(x[:,:,None], a)
- yvalid = yf[ntrim:-ntrim, yf.shape[1]//2,:]
- return yvalid
-
-def varinversefilter(ar, nobs, version=1):
- '''creates inverse ar filter (MA representation) recursively
-
- The VAR lag polynomial is defined by ::
-
- ar(L) y_t = u_t or
- y_t = -ar_{-1}(L) y_{t-1} + u_t
-
- the returned lagpolynomial is arinv(L)=ar^{-1}(L) in ::
-
- y_t = arinv(L) u_t
-
-
-
- Parameters
- ----------
- ar : array, (nlags,nvars,nvars)
- matrix lagpolynomial, currently no exog
- first row should be identity
-
- Returns
- -------
- arinv : array, (nobs,nvars,nvars)
-
-
- Notes
- -----
-
- '''
- nlags, nvars, nvarsex = ar.shape
- if nvars != nvarsex:
- print 'exogenous variables not implemented not tested'
- arinv = np.zeros((nobs+1, nvarsex, nvars))
- arinv[0,:,:] = ar[0]
- arinv[1:nlags,:,:] = -ar[1:]
- if version == 1:
- for i in range(2,nobs+1):
- tmp = np.zeros((nvars,nvars))
- for p in range(1,nlags):
- tmp += np.dot(-ar[p],arinv[i-p,:,:])
- arinv[i,:,:] = tmp
- if version == 0:
- for i in range(nlags+1,nobs+1):
- print ar[1:].shape, arinv[i-1:i-nlags:-1,:,:].shape
- #arinv[i,:,:] = np.dot(-ar[1:],arinv[i-1:i-nlags:-1,:,:])
- #print np.tensordot(-ar[1:],arinv[i-1:i-nlags:-1,:,:],axes=([2],[1])).shape
- #arinv[i,:,:] = np.tensordot(-ar[1:],arinv[i-1:i-nlags:-1,:,:],axes=([2],[1]))
- raise NotImplementedError('waiting for generalized ufuncs or something')
-
- return arinv
-
-def vargenerate(ar, u, initvalues=None):
- '''generate an VAR process with errors u
-
- similar to gauss
- uses loop
-
- Parameters
- ----------
- ar : array (nlags,nvars,nvars)
- matrix lagpolynomial
- u : array (nobs,nvars)
- exogenous variable, error term for VAR
-
- Returns
- -------
- sar : array (1+nobs,nvars)
- sample of var process, inverse filtered u
- does not trim initial condition y_0 = 0
-
- Examples
- --------
- # generate random sample of VAR
- nobs, nvars = 10, 2
- u = numpy.random.randn(nobs,nvars)
- a21 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0. ],
- [ 0., -0.6]]])
- vargenerate(a21,u)
-
- # Impulse Response to an initial shock to the first variable
- imp = np.zeros((nobs, nvars))
- imp[0,0] = 1
- vargenerate(a21,imp)
-
- '''
- nlags, nvars, nvarsex = ar.shape
- nlagsm1 = nlags - 1
- nobs = u.shape[0]
- if nvars != nvarsex:
- print 'exogenous variables not implemented not tested'
- if u.shape[1] != nvars:
- raise ValueError('u needs to have nvars columns')
- if initvalues is None:
- sar = np.zeros((nobs+nlagsm1, nvars))
- start = nlagsm1
- else:
- start = max(nlagsm1, initvalues.shape[0])
- sar = np.zeros((nobs+start, nvars))
- sar[start-initvalues.shape[0]:start] = initvalues
- #sar[nlagsm1:] = u
- sar[start:] = u
- #if version == 1:
- for i in range(start,start+nobs):
- for p in range(1,nlags):
- sar[i] += np.dot(sar[i-p,:],-ar[p])
-
- return sar
-
-
-def padone(x, front=0, back=0, axis=0, fillvalue=0):
- '''pad with zeros along one axis, currently only axis=0
-
-
- can be used sequentially to pad several axis
-
- Examples
- --------
- >>> padone(np.ones((2,3)),1,3,axis=1)
- array([[ 0., 1., 1., 1., 0., 0., 0.],
- [ 0., 1., 1., 1., 0., 0., 0.]])
-
- >>> padone(np.ones((2,3)),1,1, fillvalue=np.nan)
- array([[ NaN, NaN, NaN],
- [ 1., 1., 1.],
- [ 1., 1., 1.],
- [ NaN, NaN, NaN]])
- '''
- #primitive version
- shape = np.array(x.shape)
- shape[axis] += (front + back)
- shapearr = np.array(x.shape)
- out = np.empty(shape)
- out.fill(fillvalue)
- startind = np.zeros(x.ndim)
- startind[axis] = front
- endind = startind + shapearr
- myslice = [slice(startind[k], endind[k]) for k in range(len(endind))]
- #print myslice
- #print out.shape
- #print out[tuple(myslice)].shape
- out[tuple(myslice)] = x
- return out
-
-def trimone(x, front=0, back=0, axis=0):
- '''trim number of array elements along one axis
-
-
- Examples
- --------
- >>> xp = padone(np.ones((2,3)),1,3,axis=1)
- >>> xp
- array([[ 0., 1., 1., 1., 0., 0., 0.],
- [ 0., 1., 1., 1., 0., 0., 0.]])
- >>> trimone(xp,1,3,1)
- array([[ 1., 1., 1.],
- [ 1., 1., 1.]])
- '''
- shape = np.array(x.shape)
- shape[axis] -= (front + back)
- #print shape, front, back
- shapearr = np.array(x.shape)
- startind = np.zeros(x.ndim)
- startind[axis] = front
- endind = startind + shape
- myslice = [slice(startind[k], endind[k]) for k in range(len(endind))]
- #print myslice
- #print shape, endind
- #print x[tuple(myslice)].shape
- return x[tuple(myslice)]
-
-
-
-def ar2full(ar):
- '''make reduced lagpolynomial into a right side lagpoly array
- '''
- nlags, nvar,nvarex = ar.shape
- return np.r_[np.eye(nvar,nvarex)[None,:,:],-ar]
-
-def ar2lhs(ar):
- '''convert full (rhs) lagpolynomial into a reduced, left side lagpoly array
-
- this is mainly a reminder about the definition
- '''
- return -ar[1:]
-
-
-
-class _Var(object):
- '''obsolete VAR class, use tsa.VAR instead, for internal use only
-
-
- Example
- -------
-
- >>> v = Var(ar2s)
- >>> v.fit(1)
- >>> v.arhat
- array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.77784898, 0.01726193],
- [ 0.10733009, -0.78665335]]])
-
- '''
-
- def __init__(self, y):
- self.y = y
- self.nobs, self.nvars = y.shape
-
-
- def fit(self, nlags):
- '''estimate parameters using ols
-
- Parameters
- ----------
- nlags : integer
- number of lags to include in regression, same for all variables
-
- Returns
- -------
- None, but attaches
-
- arhat : array (nlags, nvar, nvar)
- full lag polynomial array
- arlhs : array (nlags-1, nvar, nvar)
- reduced lag polynomial for left hand side
- other statistics as returned by linalg.lstsq : need to be completed
-
-
-
- This currently assumes all parameters are estimated without restrictions.
- In this case SUR is identical to OLS
-
- estimation results are attached to the class instance
-
-
- '''
- self.nlags = nlags # without current period
- nvars = self.nvars
- #TODO: ar2s looks like a module variable, bug?
- #lmat = lagmat(ar2s, nlags, trim='both', original='in')
- lmat = lagmat(self.y, nlags, trim='both', original='in')
- self.yred = lmat[:,:nvars]
- self.xred = lmat[:,nvars:]
- res = np.linalg.lstsq(self.xred, self.yred)
- self.estresults = res
- self.arlhs = res[0].reshape(nlags, nvars, nvars)
- self.arhat = ar2full(self.arlhs)
- self.rss = res[1]
- self.xredrank = res[2]
-
- def predict(self):
- '''calculate estimated timeseries (yhat) for sample
-
- '''
-
- if not hasattr(self, 'yhat'):
- self.yhat = varfilter(self.y, self.arhat)
- return self.yhat
-
- def covmat(self):
- ''' covariance matrix of estimate
- # not sure it's correct, need to check orientation everywhere
- # looks ok, display needs getting used to
- >>> v.rss[None,None,:]*np.linalg.inv(np.dot(v.xred.T,v.xred))[:,:,None]
- array([[[ 0.37247445, 0.32210609],
- [ 0.1002642 , 0.08670584]],
-
- [[ 0.1002642 , 0.08670584],
- [ 0.45903637, 0.39696255]]])
- >>>
- >>> v.rss[0]*np.linalg.inv(np.dot(v.xred.T,v.xred))
- array([[ 0.37247445, 0.1002642 ],
- [ 0.1002642 , 0.45903637]])
- >>> v.rss[1]*np.linalg.inv(np.dot(v.xred.T,v.xred))
- array([[ 0.32210609, 0.08670584],
- [ 0.08670584, 0.39696255]])
- '''
-
- #check if orientation is same as self.arhat
- self.paramcov = (self.rss[None,None,:] *
- np.linalg.inv(np.dot(self.xred.T, self.xred))[:,:,None])
-
- def forecast(self, horiz=1, u=None):
- '''calculates forcast for horiz number of periods at end of sample
-
- Parameters
- ----------
- horiz : int (optional, default=1)
- forecast horizon
- u : array (horiz, nvars)
- error term for forecast periods. If None, then u is zero.
-
- Returns
- -------
- yforecast : array (nobs+horiz, nvars)
- this includes the sample and the forecasts
- '''
- if u is None:
- u = np.zeros((horiz, self.nvars))
- return vargenerate(self.arhat, u, initvalues=self.y)
-
-
-class VarmaPoly(object):
- '''class to keep track of Varma polynomial format
-
-
- Examples
- --------
-
- ar23 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.6, 0. ],
- [ 0.2, -0.6]],
-
- [[-0.1, 0. ],
- [ 0.1, -0.1]]])
-
- ma22 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[ 0.4, 0. ],
- [ 0.2, 0.3]]])
-
-
- '''
- def __init__(self, ar, ma=None):
- self.ar = ar
- self.ma = ma
- nlags, nvarall, nvars = ar.shape
- self.nlags, self.nvarall, self.nvars = nlags, nvarall, nvars
- self.isstructured = not (ar[0,:nvars] == np.eye(nvars)).all()
- if self.ma is None:
- self.ma = np.eye(nvars)[None,...]
- self.isindependent = True
- else:
- self.isindependent = not (ma[0] == np.eye(nvars)).all()
- self.malags = ar.shape[0]
- self.hasexog = nvarall > nvars
- self.arm1 = -ar[1:]
-
-
- #@property
- def vstack(self, a=None, name='ar'):
- '''stack lagpolynomial vertically in 2d array
-
- '''
- if not a is None:
- a = a
- elif name == 'ar':
- a = self.ar
- elif name == 'ma':
- a = self.ma
- else:
- raise ValueError('no array or name given')
- return a.reshape(-1, self.nvarall)
-
- #@property
- def hstack(self, a=None, name='ar'):
- '''stack lagpolynomial horizontally in 2d array
-
- '''
- if not a is None:
- a = a
- elif name == 'ar':
- a = self.ar
- elif name == 'ma':
- a = self.ma
- else:
- raise ValueError('no array or name given')
- return a.swapaxes(1,2).reshape(-1, self.nvarall).T
-
- #@property
- def stacksquare(self, a=None, name='ar', orientation='vertical'):
- '''stack lagpolynomial vertically in 2d square array with eye
-
- '''
- if not a is None:
- a = a
- elif name == 'ar':
- a = self.ar
- elif name == 'ma':
- a = self.ma
- else:
- raise ValueError('no array or name given')
- astacked = a.reshape(-1, self.nvarall)
- lenpk, nvars = astacked.shape #[0]
- amat = np.eye(lenpk, k=nvars)
- amat[:,:nvars] = astacked
- return amat
-
- #@property
- def vstackarma_minus1(self):
- '''stack ar and lagpolynomial vertically in 2d array
-
- '''
- a = np.concatenate((self.ar[1:], self.ma[1:]),0)
- return a.reshape(-1, self.nvarall)
-
- #@property
- def hstackarma_minus1(self):
- '''stack ar and lagpolynomial vertically in 2d array
-
- this is the Kalman Filter representation, I think
- '''
- a = np.concatenate((self.ar[1:], self.ma[1:]),0)
- return a.swapaxes(1,2).reshape(-1, self.nvarall)
-
- def getisstationary(self, a=None):
- '''check whether the auto-regressive lag-polynomial is stationary
-
- Returns
- -------
- isstationary : boolean
-
- *attaches*
-
- areigenvalues : complex array
- eigenvalues sorted by absolute value
-
- References
- ----------
- formula taken from NAG manual
-
- '''
- if not a is None:
- a = a
- else:
- if self.isstructured:
- a = -self.reduceform(self.ar)[1:]
- else:
- a = -self.ar[1:]
- amat = self.stacksquare(a)
- ev = np.sort(np.linalg.eigvals(amat))[::-1]
- self.areigenvalues = ev
- return (np.abs(ev) < 1).all()
-
- def getisinvertible(self, a=None):
- '''check whether the auto-regressive lag-polynomial is stationary
-
- Returns
- -------
- isinvertible : boolean
-
- *attaches*
-
- maeigenvalues : complex array
- eigenvalues sorted by absolute value
-
- References
- ----------
- formula taken from NAG manual
-
- '''
- if not a is None:
- a = a
- else:
- if self.isindependent:
- a = self.reduceform(self.ma)[1:]
- else:
- a = self.ma[1:]
- if a.shape[0] == 0:
- # no ma lags
- self.maeigenvalues = np.array([], np.complex)
- return True
-
-
- amat = self.stacksquare(a)
- ev = np.sort(np.linalg.eigvals(amat))[::-1]
- self.maeigenvalues = ev
- return (np.abs(ev) < 1).all()
-
- def reduceform(self, apoly):
- '''
-
- this assumes no exog, todo
-
- '''
- if apoly.ndim != 3:
- raise ValueError('apoly needs to be 3d')
- nlags, nvarsex, nvars = apoly.shape
-
- a = np.empty_like(apoly)
- try:
- a0inv = np.linalg.inv(a[0,:nvars, :])
- except np.linalg.LinAlgError:
- raise ValueError('matrix not invertible',
- 'ask for implementation of pinv')
-
- for lag in range(nlags):
- a[lag] = np.dot(a0inv, apoly[lag])
-
- return a
-
-
-
-
-if __name__ == "__main__":
- # some example lag polynomials
- a21 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0. ],
- [ 0., -0.6]]])
-
- a22 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0. ],
- [ 0.1, -0.8]]])
-
- a23 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.8, 0.2],
- [ 0.1, -0.6]]])
-
- a24 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.6, 0. ],
- [ 0.2, -0.6]],
-
- [[-0.1, 0. ],
- [ 0.1, -0.1]]])
-
- a31 = np.r_[np.eye(3)[None,:,:], 0.8*np.eye(3)[None,:,:]]
- a32 = np.array([[[ 1. , 0. , 0. ],
- [ 0. , 1. , 0. ],
- [ 0. , 0. , 1. ]],
-
- [[ 0.8, 0. , 0. ],
- [ 0.1, 0.6, 0. ],
- [ 0. , 0. , 0.9]]])
-
- ########
- ut = np.random.randn(1000,2)
- ar2s = vargenerate(a22,ut)
- #res = np.linalg.lstsq(lagmat(ar2s,1)[:,1:], ar2s)
- res = np.linalg.lstsq(lagmat(ar2s,1), ar2s)
- bhat = res[0].reshape(1,2,2)
- arhat = ar2full(bhat)
- #print maxabs(arhat - a22)
-
-
- v = Var(ar2s)
- v.fit(1)
- v.forecast()
- v.forecast(25)[-30:]
-
-
- ar23 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-0.6, 0. ],
- [ 0.2, -0.6]],
-
- [[-0.1, 0. ],
- [ 0.1, -0.1]]])
-
- ma22 = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[ 0.4, 0. ],
- [ 0.2, 0.3]]])
-
- ar23ns = np.array([[[ 1. , 0. ],
- [ 0. , 1. ]],
-
- [[-1.9, 0. ],
- [ 0.4, -0.6]],
-
- [[ 0.3, 0. ],
- [ 0.1, -0.1]]])
-
- vp = VarmaPoly(ar23, ma22)
- print vars(vp)
- print vp.vstack()
- print vp.vstack(a24)
- print vp.hstackarma_minus1()
- print vp.getisstationary()
- print vp.getisinvertible()
-
- vp2 = VarmaPoly(ar23ns)
- print vp2.getisstationary()
- print vp2.getisinvertible() # no ma lags
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/__init__.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/__init__.py
deleted file mode 100644
index 8ec6816..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-from scikits.statsmodels import NoseWrapper as Tester
-test = Tester().test
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/api.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/api.py
deleted file mode 100644
index a0a1248..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/api.py
+++ /dev/null
@@ -1,4 +0,0 @@
-# pylint: disable=W0611
-
-from .var_model import VAR
-from .dynamic import DynamicVAR
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e1.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e1.dat
deleted file mode 100644
index e070637..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e1.dat
+++ /dev/null
@@ -1,99 +0,0 @@
-/*quarterly, seasonally adjusted, West German
-fixed investment, disposable income, consumption expenditures
-in billions of DM, 1960Q1-1982Q4;
-source: Deutsche Bundesbank
-*/
-<1960 Q1>
-invest income cons
-180 451 415
-179 465 421
-185 485 434
-192 493 448
-211 509 459
-202 520 458
-207 521 479
-214 540 487
-231 548 497
-229 558 510
-234 574 516
-237 583 525
-206 591 529
-250 599 538
-259 610 546
-263 627 555
-264 642 574
-280 653 574
-282 660 586
-292 694 602
-286 709 617
-302 734 639
-304 751 653
-307 763 668
-317 766 679
-314 779 686
-306 808 697
-304 785 688
-292 794 704
-275 799 699
-273 799 709
-301 812 715
-280 837 724
-289 853 746
-303 876 758
-322 897 779
-315 922 798
-339 949 816
-364 979 837
-371 988 858
-375 1025 881
-432 1063 905
-453 1104 934
-460 1131 968
-475 1137 983
-496 1178 1013
-494 1211 1034
-498 1256 1064
-526 1290 1101
-519 1314 1102
-516 1346 1145
-531 1385 1173
-573 1416 1216
-551 1436 1229
-538 1462 1242
-532 1493 1267
-558 1516 1295
-524 1557 1317
-525 1613 1355
-519 1642 1371
-526 1690 1402
-510 1759 1452
-519 1756 1485
-538 1780 1516
-549 1807 1549
-570 1831 1567
-559 1873 1588
-584 1897 1631
-611 1910 1650
-597 1943 1685
-603 1976 1722
-619 2018 1752
-635 2040 1774
-658 2070 1807
-675 2121 1831
-700 2132 1842
-692 2199 1890
-759 2253 1958
-782 2276 1948
-816 2318 1994
-844 2369 2061
-830 2423 2056
-853 2457 2102
-852 2470 2121
-833 2521 2145
-860 2545 2164
-870 2580 2206
-830 2620 2225
-801 2639 2235
-824 2618 2237
-831 2628 2250
-830 2651 2271
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e2.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e2.dat
deleted file mode 100644
index 4793942..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e2.dat
+++ /dev/null
@@ -1,113 +0,0 @@
-/*quarterly, seasonally adjusted, U.S.
-fixed investment (y1), change in business inventories (y2),
-1947Q1-1972Q4;
-source: U.S. Department of Commerce, Bureau of Economic Analysis,
-The National Income and Product Accounts of the United States, 1929-1974
-*/
-
-<1947 Q1>
- y1 y2
- 69.6 0.1
- 67.6 -0.9
- 69.5 -2.9
- 74.7 2.7
- 77.1 4.1
- 77.4 5.6
- 76.6 6.9
- 76.1 5.3
- 71.8 -0.3
- 68.9 -7.1
- 68.5 -2.5
- 70.6 -7.7
- 75.4 4.4
- 82.3 7.7
- 88.2 8.0
- 86.9 22.1
- 83.4 13.4
- 80.3 19.9
- 79.4 14.6
- 78.6 7.0
- 79.3 7.3
- 80.3 -2.7
- 75.3 5.4
- 80.6 7.2
- 83.9 3.9
- 84.2 5.1
- 84.4 1.9
- 83.8 -5.0
- 82.8 -3.4
- 84.1 -4.1
- 87.0 -2.7
- 88.5 1.5
- 92.1 5.9
- 96.1 8.0
- 98.3 7.8
- 98.8 9.2
- 96.6 7.5
- 97.4 5.5
- 97.6 4.9
- 96.6 5.4
- 96.2 2.5
- 95.3 2.9
- 96.4 3.7
- 94.9 -3.0
- 90.0 -6.8
- 87.2 -6.2
- 88.0 0.3
- 93.0 5.3
- 98.3 5.0
-101.6 13.0
-102.6 -0.4
-101.4 8.2
-104.9 13.5
-101.8 4.9
- 98.8 3.0
- 98.6 -3.9
- 97.7 -3.8
- 99.2 1.9
-101.3 6.6
-104.6 6.7
-106.1 10.6
-109.9 9.2
-111.1 8.0
-110.1 4.7
-110.7 7.6
-116.0 7.0
-118.5 9.3
-122.0 7.1
-124.0 6.1
-124.0 8.0
-124.9 7.3
-126.4 7.9
-133.4 13.4
-137.9 10.6
-140.1 12.4
-143.8 8.8
-147.5 13.5
-146.2 17.8
-145.0 15.1
-139.7 20.5
-136.4 14.6
-139.6 7.5
-141.1 12.2
-145.5 13.8
-148.9 6.3
-148.9 11.8
-150.7 9.2
-155.0 7.6
-159.1 9.8
-158.4 12.2
-158.1 13.4
-154.3 6.8
-151.8 2.9
-150.0 4.8
-150.4 6.3
-149.5 3.3
-154.3 7.9
-158.4 10.0
-162.1 5.0
-166.0 3.7
-174.3 4.8
-176.1 10.1
-178.2 12.1
-186.7 10.8
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e3.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e3.dat
deleted file mode 100644
index 688e57e..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e3.dat
+++ /dev/null
@@ -1,146 +0,0 @@
-/*quarterly, seasonally adjusted real U.S. money (M1),
-GNP in 1982 Dollars,
-discount rate on 91-day treasury bills (rd),
-yield on long term treasury bonds (rb),
-1954Q1-1987Q4;
-source: Business Conditions Digest
-*/
-
-<1954 Q1>
-M1 gnp rd rb
-450.9 1406.8 0.010800000 0.026133333
-453.0 1401.2 0.0081333333 0.025233333
-459.1 1418.0 0.0087000000 0.024900000
-464.6 1438.8 0.010366667 0.025666667
-469.6 1469.6 0.012600000 0.027466667
-473.1 1485.7 0.015133333 0.028166667
-474.6 1505.5 0.018633333 0.029266667
-474.3 1518.7 0.023466667 0.028900000
-475.4 1515.7 0.023800000 0.028866667
-472.9 1522.6 0.025966667 0.029900000
-468.7 1523.7 0.025966667 0.031266667
-467.5 1540.6 0.030633333 0.033000000
-464.7 1553.3 0.031700000 0.032733333
-461.2 1552.4 0.031566667 0.034333333
-457.1 1561.5 0.033800000 0.036300000
-453.0 1537.3 0.033433333 0.035333333
-447.5 1506.1 0.018366667 0.032566667
-449.6 1514.2 0.010200000 0.031533333
-454.2 1550.0 0.017100000 0.035700000
-458.5 1586.7 0.027866667 0.037533333
-464.1 1606.4 0.028000000 0.039166667
-466.3 1637.0 0.030200000 0.040600000
-468.1 1629.5 0.035333333 0.041566667
-460.0 1643.4 0.043000000 0.041666667
-459.2 1671.6 0.039433333 0.042233333
-455.7 1666.8 0.030900000 0.041066667
-459.5 1668.4 0.023933333 0.038300000
-455.9 1654.1 0.023600000 0.039066667
-458.0 1671.3 0.023766667 0.038266667
-461.5 1692.1 0.023266667 0.038033333
-462.2 1716.3 0.023233333 0.039733333
-465.4 1754.9 0.024766667 0.040066667
-467.4 1777.9 0.027400000 0.040600000
-468.5 1796.4 0.027166667 0.038900000
-466.5 1813.1 0.028566667 0.039800000
-467.7 1810.1 0.028033333 0.038766667
-471.9 1834.6 0.029100000 0.039133333
-474.8 1860.0 0.029433333 0.039800000
-477.7 1892.5 0.032800000 0.040133333
-479.9 1906.1 0.034966667 0.041066667
-481.9 1948.7 0.035366667 0.041566667
-484.8 1965.4 0.034800000 0.041633333
-491.3 1985.2 0.035066667 0.041433333
-495.6 1993.7 0.036866667 0.041400000
-498.3 2036.9 0.039000000 0.041500000
-497.6 2066.4 0.038800000 0.041433333
-501.7 2099.3 0.038600000 0.041966667
-507.8 2147.6 0.041566667 0.043500000
-511.8 2190.1 0.046333333 0.045566667
-511.8 2195.8 0.045966667 0.045833333
-506.2 2218.3 0.050500000 0.047800000
-503.1 2229.2 0.045800000 0.046966667
-507.1 2241.8 0.045266667 0.044400000
-510.8 2255.2 0.036566667 0.047100000
-518.0 2287.7 0.043466667 0.049333333
-521.3 2300.6 0.047866667 0.053300000
-521.9 2327.3 0.050633333 0.052433333
-525.4 2366.9 0.055066667 0.053033333
-528.3 2385.3 0.052266667 0.050733333
-533.8 2383.0 0.055800000 0.054200000
-536.5 2416.5 0.061400000 0.058833333
-532.8 2419.8 0.062400000 0.059133333
-527.6 2433.2 0.070466667 0.061366667
-523.2 2423.5 0.073166667 0.065333333
-521.4 2408.6 0.072600000 0.065633333
-518.1 2406.5 0.067533333 0.068200000
-519.4 2435.8 0.063833333 0.066500000
-521.2 2413.8 0.053600000 0.062666667
-524.7 2478.6 0.038600000 0.058233333
-530.8 2478.4 0.042066667 0.058833333
-534.1 2491.1 0.050500000 0.057500000
-536.5 2491.0 0.042333333 0.055200000
-542.6 2545.6 0.034333333 0.056500000
-547.8 2595.1 0.037466667 0.056566667
-554.4 2622.1 0.042400000 0.056266667
-562.5 2671.3 0.048500000 0.056100000
-565.2 2734.0 0.056400000 0.061000000
-560.1 2741.0 0.066100000 0.062266667
-556.1 2738.3 0.083900000 0.065966667
-548.5 2762.8 0.074633333 0.063000000
-542.1 2747.4 0.076033333 0.066366667
-532.8 2755.2 0.082666667 0.070500000
-522.8 2719.3 0.082833333 0.072700000
-511.9 2695.4 0.073333333 0.069733333
-505.3 2642.7 0.058700000 0.067033333
-506.8 2669.6 0.054000000 0.069733333
-505.5 2714.9 0.063333333 0.070933333
-501.0 2752.7 0.056833333 0.072233333
-502.2 2804.4 0.049533333 0.069100000
-505.5 2816.9 0.051666667 0.068866667
-502.6 2828.6 0.051700000 0.067900000
-505.3 2856.8 0.046966667 0.065500000
-508.1 2896.0 0.046233333 0.070133333
-507.7 2942.7 0.048266667 0.070966667
-509.4 3001.8 0.054733333 0.069766667
-513.0 2994.1 0.061366667 0.071600000
-513.7 3020.5 0.064100000 0.075800000
-514.1 3115.9 0.064833333 0.078500000
-512.5 3142.6 0.073166667 0.079333333
-509.7 3181.6 0.086800000 0.081966667
-503.3 3181.7 0.093600000 0.084366667
-496.1 3178.9 0.093733333 0.084366667
-497.2 3207.4 0.096300000 0.084833333
-487.6 3201.3 0.11803333 0.096066667
-474.0 3233.4 0.13460000 0.11150000
-451.2 3157.0 0.10050000 0.10016667
-464.9 3159.1 0.092366667 0.10433333
-465.3 3199.2 0.13710000 0.11640000
-455.3 3261.1 0.14366667 0.12010000
-453.7 3250.2 0.14830000 0.12656667
-448.9 3264.6 0.15086667 0.13600000
-447.1 3219.3 0.12023333 0.13230000
-451.2 3170.4 0.12893333 0.13446667
-447.1 3179.9 0.12360000 0.12943333
-449.1 3154.5 0.097066667 0.12200000
-464.9 3159.3 0.079333333 0.10340000
-475.8 3186.6 0.080800000 0.10436667
-484.3 3258.3 0.084200000 0.10346667
-493.6 3306.4 0.091866667 0.11260000
-496.4 3365.1 0.087933333 0.11323333
-497.5 3451.7 0.091333333 0.11543333
-500.4 3498.0 0.098433333 0.12686667
-501.5 3520.6 0.10343333 0.12340000
-502.2 3535.2 0.089733333 0.11373333
-511.0 3577.5 0.081833333 0.11426667
-518.2 3599.2 0.075233333 0.10913333
-533.9 3635.8 0.071033333 0.10590000
-543.2 3662.4 0.071466667 0.10080000
-553.4 3719.3 0.068866667 0.089033333
-576.8 3711.6 0.061300000 0.079466667
-598.0 3721.3 0.055333333 0.078866667
-620.0 3734.7 0.053400000 0.078400000
-631.9 3776.7 0.055333333 0.076366667
-634.8 3823.0 0.057333333 0.085766667
-630.1 3865.3 0.060333333 0.090833333
-630.5 3923.0 0.060033333 0.092400000
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e4.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e4.dat
deleted file mode 100644
index f71f626..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e4.dat
+++ /dev/null
@@ -1,121 +0,0 @@
-/*quarterly, unadjusted, West German
-real per capita disposable income,
-personal consumption expenditures,
-1960Q1-1987Q4;
-source: Deutsches Institut fuer Wirtschaftsforschung, Berlin
-*/
-
-<1960 Q1>
-inc cons
-1684.6080 1505.3198
-1757.2068 1632.8338
-1842.7211 1655.8021
-2027.3177 1889.8641
-1859.0561 1600.8018
-1832.6429 1686.0382
-1893.5360 1739.6939
-2098.9234 1958.8067
-1873.2676 1645.0461
-1908.6426 1798.0200
-1989.5797 1805.1480
-2203.5812 2038.5067
-1931.2619 1673.9302
-1980.3270 1829.8065
-2065.5097 1848.9135
-2256.8667 2065.9135
-2040.4667 1758.5866
-2098.8673 1894.7205
-2145.8642 1910.8631
-2427.6995 2165.6707
-2178.3079 1830.4957
-2268.4690 2024.4865
-2313.5771 2040.4966
-2548.2016 2274.2020
-2239.8707 1919.7148
-2286.0157 2070.1321
-2379.5459 2085.6752
-2535.5248 2269.4856
-2247.8021 1942.0016
-2311.8334 2063.5617
-2332.9532 2088.5606
-2579.1389 2320.2063
-2348.2887 1965.2127
-2404.7787 2164.5546
-2478.4108 2182.9295
-2808.6086 2467.3345
-2535.4286 2121.2628
-2605.4529 2307.8719
-2688.1167 2333.5107
-2998.7831 2626.8251
-2695.4440 2252.5326
-2764.9544 2445.3018
-2879.4832 2484.5415
-3255.6348 2810.1885
-2825.4761 2383.4010
-2877.2233 2575.9185
-2955.7203 2578.9525
-3378.4279 2872.9650
-3014.1083 2517.0234
-3030.1896 2645.5602
-3092.0762 2682.6305
-3491.3989 2962.6573
-3098.3107 2607.4582
-3091.6898 2755.3575
-3144.9089 2732.3144
-3535.0880 2988.6982
-3096.3842 2606.4549
-3110.8586 2748.4852
-3222.0775 2775.8346
-3613.9943 3012.7843
-3233.5315 2647.7614
-3319.4594 2854.9956
-3323.1825 2880.3328
-3723.1654 3164.0112
-3312.5138 2808.3615
-3324.6223 2965.6652
-3418.3893 2978.0314
-3824.4625 3280.6247
-3414.6557 2914.1164
-3438.2362 3095.7771
-3487.2942 3122.1189
-3973.8991 3438.6965
-3546.9684 3053.1464
-3553.1513 3216.7262
-3655.2346 3254.8354
-4102.7937 3543.8848
-3680.9675 3130.1370
-3783.8147 3406.7708
-3755.9600 3327.0867
-4261.4059 3669.2334
-3797.3271 3279.6486
-3786.5219 3324.2316
-3790.9261 3369.4241
-4282.9525 3682.5376
-3848.1635 3250.4014
-3764.6489 3308.7353
-3759.0830 3339.1146
-4294.2124 3661.0499
-3811.5833 3224.8444
-3709.8919 3291.6504
-3641.5356 3260.4145
-4180.7126 3611.8419
-3734.1328 3259.6856
-3698.3154 3361.7589
-3664.9417 3347.9925
-4237.3911 3700.2983
-3847.0869 3323.8678
-3766.3393 3424.4785
-3783.3845 3430.6044
-4327.6089 3753.7867
-3887.8617 3335.6273
-3839.1482 3469.0466
-3859.0148 3533.5180
-4431.0216 3859.7411
-4049.0191 3452.2034
-4053.1962 3669.5399
-4077.4384 3673.5696
-4653.9432 3999.3784
-4191.4281 3540.2152
-4163.4328 3750.5110
-4177.7770 3775.5819
-4811.1361 4150.3215
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e5.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e5.dat
deleted file mode 100644
index 4be7319..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e5.dat
+++ /dev/null
@@ -1,345 +0,0 @@
-/*monthly West German
-interest rate on 3-months loans in the money market (i_short),
-yields on bonds outstanding for total fixed interest securities (i_long),
-1960M1-1987M12;
-source: Deutsche Bundesbank
-*/
-
-<1960 M1>
- i_short i_long
- 4.3600000 6.2000000
- 4.4700000 6.2000000
- 4.7100000 6.2000000
- 4.5900000 6.2000000
- 4.6400000 6.2000000
- 5.2500000 6.4000000
- 5.5800000 6.6000000
- 5.4400000 6.5000000
- 5.6100000 6.4000000
- 6.1000000 6.4000000
- 5.3800000 6.2000000
- 5.0600000 6.2000000
- 4.6600000 6.1000000
- 4.1300000 6.1000000
- 3.7300000 6.0000000
- 3.3400000 5.8000000
- 3.2300000 5.7000000
- 3.1300000 5.7000000
- 3.1600000 5.8000000
- 3.0900000 5.9000000
- 3.0600000 6.0000000
- 4.0500000 6.0000000
- 3.7100000 6.0000000
- 3.8300000 6.0000000
- 2.9300000 5.9000000
- 2.9400000 5.9000000
- 3.0200000 5.8000000
- 3.0800000 5.8000000
- 3.0800000 5.9000000
- 3.1300000 6.0000000
- 3.2900000 6.0000000
- 3.2600000 6.1000000
- 3.2000000 6.1000000
- 4.4500000 6.2000000
- 4.3300000 6.2000000
- 4.3500000 6.2000000
- 3.2900000 6.1000000
- 3.3100000 6.1000000
- 3.5300000 6.1000000
- 3.5600000 6.1000000
- 3.6000000 6.1000000
- 3.8300000 6.1000000
- 3.9800000 6.1000000
- 3.8100000 6.1000000
- 3.7500000 6.1000000
- 5.1300000 6.1000000
- 5.0000000 6.1000000
- 4.9800000 6.1000000
- 3.3300000 6.0000000
- 3.3300000 6.0000000
- 3.4600000 6.0000000
- 3.5500000 6.1000000
- 3.6900000 6.2000000
- 3.7500000 6.2000000
- 3.6900000 6.3000000
- 3.9100000 6.3000000
- 4.0800000 6.3000000
- 5.4200000 6.3000000
- 5.5000000 6.3000000
- 5.3600000 6.3000000
- 3.8800000 6.3000000
- 3.9500000 6.4000000
- 4.2800000 6.4000000
- 4.5200000 6.5000000
- 4.6900000 6.7000000
- 4.8000000 6.8000000
- 5.0800000 6.9000000
- 5.2700000 7.0000000
- 5.3600000 7.1000000
- 6.6600000 7.2000000
- 6.5800000 7.3000000
- 6.5500000 7.4000000
- 5.2300000 7.3000000
- 5.3600000 7.3000000
- 5.6900000 7.4000000
- 6.2100000 7.6000000
- 6.3500000 7.7000000
- 6.8100000 7.9000000
- 6.8900000 8.1000000
- 7.0000000 8.1000000
- 6.8000000 8.1000000
- 7.8800000 8.0000000
- 7.7300000 7.9000000
- 7.5700000 7.6000000
- 5.6900000 7.4000000
- 5.5600000 7.3000000
- 5.0400000 7.2000000
- 4.4800000 6.9000000
- 3.6900000 6.8000000
- 3.9800000 6.9000000
- 3.5100000 6.9000000
- 3.5600000 6.9000000
- 3.4300000 6.9000000
- 4.2000000 6.9000000
- 4.0000000 7.0000000
- 4.0700000 7.0000000
- 3.3200000 6.9000000
- 3.4500000 7.0000000
- 3.5200000 7.0000000
- 3.6400000 6.9000000
- 3.6800000 6.7000000
- 3.7200000 6.7000000
- 3.5900000 6.7000000
- 3.5500000 6.6000000
- 3.5400000 6.5000000
- 4.7500000 6.5000000
- 4.5000000 6.6000000
- 4.4400000 6.5000000
- 3.8700000 6.5000000
- 3.9100000 6.5000000
- 4.2100000 6.6000000
- 4.4000000 6.7000000
- 4.3800000 6.8000000
- 5.5000000 6.9000000
- 5.7800000 7.1000000
- 6.5000000 7.1000000
- 6.9400000 7.2000000
- 7.4200000 7.3000000
- 7.6900000 7.3000000
- 8.8300000 7.4000000
- 9.2900000 7.5000000
- 9.5100000 7.6000000
- 9.8100000 7.9000000
- 9.8600000 8.0000000
- 9.9300000 8.2000000
- 9.8800000 8.6000000
- 9.5900000 8.6000000
- 9.1600000 8.4000000
- 9.3600000 8.4000000
- 9.5300000 8.5000000
- 8.8400000 8.6000000
- 8.1200000 8.3000000
- 7.5000000 7.9000000
- 7.4700000 7.9000000
- 7.4600000 8.0000000
- 6.3600000 8.0000000
- 6.1600000 8.1000000
- 6.8000000 8.3000000
- 7.6600000 8.5000000
- 7.5600000 8.5000000
- 7.5900000 8.4000000
- 7.8000000 8.3000000
- 6.7900000 8.2000000
- 6.6300000 8.1000000
- 5.1900000 7.9000000
- 4.8800000 7.7000000
- 4.8000000 7.8000000
- 4.7800000 8.0000000
- 4.7100000 8.2000000
- 4.6500000 8.3000000
- 4.6500000 8.4000000
- 4.8000000 8.3000000
- 5.3200000 8.3000000
- 6.8800000 8.4000000
- 8.0700000 8.6000000
- 8.6000000 8.7000000
- 7.8900000 8.6000000
- 7.9600000 8.6000000
- 8.7700000 8.7000000
- 10.620000 8.9000000
- 12.420000 9.4000000
- 13.620000 10.200000
- 14.300000 10.300000
- 14.570000 10.100000
- 14.250000 9.8000000
- 14.490000 9.9000000
- 13.620000 9.6000000
- 13.200000 9.7000000
- 12.090000 9.7000000
- 10.670000 10.000000
- 11.200000 10.700000
- 10.070000 10.800000
- 9.1000000 10.800000
- 9.4600000 10.900000
- 9.4800000 10.900000
- 9.6500000 10.900000
- 9.6900000 10.800000
- 9.7800000 10.900000
- 9.0400000 10.600000
- 8.6000000 9.9000000
- 7.7400000 9.4000000
- 6.4300000 9.0000000
- 5.7100000 8.9000000
- 4.8900000 8.8000000
- 4.9900000 8.5000000
- 4.8800000 8.4000000
- 4.6600000 8.4000000
- 3.8800000 8.6000000
- 3.9300000 8.7000000
- 4.0700000 8.7000000
- 4.1200000 8.7000000
- 4.2100000 8.6000000
- 3.9300000 8.4000000
- 3.7200000 8.2000000
- 3.7400000 7.8000000
- 3.6200000 7.8000000
- 3.7700000 8.0000000
- 4.1400000 8.3000000
- 4.4700000 8.4000000
- 4.5600000 8.3000000
- 4.5600000 8.1000000
- 4.8500000 8.0000000
- 4.6900000 7.6000000
- 4.9300000 7.4000000
- 4.7800000 7.2000000
- 4.7100000 7.1000000
- 4.7300000 7.0000000
- 4.6200000 6.6000000
- 4.4400000 6.4000000
- 4.2800000 6.4000000
- 4.2900000 6.3000000
- 4.1200000 6.1000000
- 4.1500000 6.0000000
- 4.1300000 6.0000000
- 4.1500000 6.0000000
- 3.9800000 6.0000000
- 3.5800000 5.8000000
- 3.4600000 5.7000000
- 3.5100000 5.6000000
- 3.5600000 5.6000000
- 3.6000000 5.8000000
- 3.6800000 6.0000000
- 3.7500000 6.3000000
- 3.7000000 6.6000000
- 3.7000000 6.4000000
- 3.9500000 6.3000000
- 3.8500000 6.6000000
- 4.0600000 6.6000000
- 3.8900000 6.7000000
- 4.1500000 7.0000000
- 4.4700000 7.1000000
- 5.5400000 7.2000000
- 5.9200000 7.6000000
- 6.4600000 8.0000000
- 6.8400000 7.9000000
- 7.0900000 7.7000000
- 7.8900000 7.8000000
- 8.7600000 7.9000000
- 9.6500000 8.3000000
- 9.5800000 8.0000000
- 8.8600000 8.1000000
- 8.9700000 8.5000000
- 9.6400000 9.5000000
- 10.220000 9.6000000
- 10.260000 8.8000000
- 10.110000 8.3000000
- 9.7000000 8.0000000
- 8.9800000 7.9000000
- 8.9700000 8.3000000
- 9.0800000 8.5000000
- 9.4500000 9.0000000
- 10.200000 9.1000000
- 9.4700000 9.2000000
- 10.670000 9.9000000
- 13.600000 10.400000
- 13.190000 10.400000
- 13.200000 11.000000
- 13.090000 11.100000
- 12.960000 11.200000
- 12.900000 11.500000
- 12.500000 11.300000
- 11.780000 10.600000
- 11.080000 10.200000
- 10.820000 9.9000000
- 10.460000 10.000000
- 10.270000 9.9000000
- 9.8700000 9.6000000
- 9.3300000 9.1000000
- 9.1800000 8.9000000
- 9.2800000 9.2000000
- 9.4600000 9.5000000
- 9.0000000 9.2000000
- 8.1800000 8.8000000
- 7.5800000 8.4000000
- 7.3100000 8.2000000
- 6.6200000 8.0000000
- 5.8200000 7.7000000
- 5.8300000 7.7000000
- 5.4500000 7.4000000
- 5.2000000 7.4000000
- 5.3300000 7.7000000
- 5.5700000 8.1000000
- 5.5700000 8.2000000
- 5.7100000 8.3000000
- 5.8800000 8.4000000
- 6.1800000 8.2000000
- 6.3000000 8.2000000
- 6.4800000 8.3000000
- 6.1200000 8.2000000
- 5.9500000 8.1000000
- 5.8600000 7.9000000
- 5.8400000 7.9000000
- 6.1000000 8.0000000
- 6.1300000 8.1000000
- 6.1300000 8.1000000
- 6.0200000 7.9000000
- 5.8200000 7.7000000
- 6.0700000 7.4000000
- 5.9600000 7.2000000
- 5.8300000 7.0000000
- 5.8700000 7.1000000
- 6.1600000 7.5000000
- 6.3900000 7.7000000
- 6.0200000 7.3000000
- 5.8400000 7.1000000
- 5.6800000 7.0000000
- 5.3400000 6.8000000
- 4.7900000 6.5000000
- 4.6900000 6.4000000
- 4.8100000 6.6000000
- 4.8400000 6.7000000
- 4.8300000 6.6000000
- 4.6700000 6.4000000
- 4.4900000 6.3000000
- 4.5400000 6.0000000
- 4.4900000 5.6000000
- 4.6000000 5.9000000
- 4.6000000 6.0000000
- 4.6300000 6.0000000
- 4.5700000 5.8000000
- 4.5000000 5.8000000
- 4.5900000 6.0000000
- 4.6900000 6.1000000
- 4.8100000 6.0000000
- 4.4900000 5.9000000
- 3.9700000 5.7000000
- 3.9900000 5.6000000
- 3.8900000 5.5000000
- 3.7600000 5.4000000
- 3.7000000 5.5000000
- 3.8300000 5.8000000
- 3.9500000 6.0000000
- 3.9900000 6.2000000
- 4.7000000 6.5000000
- 3.9400000 6.0000000
- 3.6500000 5.8000000
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e6.dat b/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e6.dat
deleted file mode 100644
index da5080c..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/data/e6.dat
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
-sample: 1972Q2 -- 1998Q4
-West German data until 1990Q2, all of Germany aferwards
-Dp - \Delta log gdp deflator (source: Deutsches Institut für Wirtschaftsforschung,
- Volkswirtschaftliche Gesamtrechnung)
-R - nominal long term interest rate (Umlaufsrendite)
- (source: Monatsberichte der Deutschen Bundesbank,
- quarterly values are values of last month of quarter)
-*/
-<1972 Q2>
- Dp R
--0.00313258 0.083
-0.0188713 0.083
-0.0248036 0.087
-0.0162776 0.087
-2.89679E-4 0.102
-0.016829 0.098
-0.0385835 0.097
--0.00144386 0.107
-0.0127239 0.109
-0.0238972 0.108
-0.0427728 0.099
--0.0103779 0.089
-0.00558424 0.084
-0.00870609 0.087
-0.0389199 0.086
--0.0196176 0.078
-0.00731993 0.083
-0.0180764 0.081
-0.0237775 0.074
--0.0144377 0.07
-0.0110059 0.064
-0.0104017 0.06
-0.0354648 0.06
--0.0157599 0.056
-0.0100193 0.06
-0.0180621 0.064
-0.0256915 0.066
--0.0170689 0.071
-0.00350475 0.08
-0.0256438 0.078
-0.0315075 0.08
--0.0132775 0.095
-0.0130968 0.083
-0.0151458 0.083
-0.0312119 0.091
--0.0207896 0.104
-0.0104489 0.111
-0.018106 0.113
-0.0405002 0.099
--0.0201483 0.096
-0.00380802 0.092
-0.0215569 0.088
-0.0327106 0.08
--0.0201726 0.074
--0.00333166 0.081
-0.0192871 0.084
-0.0345473 0.083
--0.0262156 0.079
--0.00519753 0.081
-0.0132318 0.077
-0.0374279 0.07
--0.0291948 0.077
--0.00261354 0.07
-0.0172353 0.064
-0.0376387 0.066
--0.0204763 0.06
-9.00269E-4 0.06
-0.0125732 0.058
-0.0344677 0.06
--0.0220394 0.056
--0.00202703 0.055
-0.00173426 0.062
-0.0365901 0.058
--0.0252557 0.056
-9.2268E-4 0.06
-0.00451374 0.063
-0.0383272 0.062
--0.0211368 0.07
--5.33104E-4 0.071
-0.00981092 0.071
-0.0373549 0.078
--0.016232 0.09
-0.00197124 0.09
-0.00687361 0.091
-0.0274582 0.09
--0.0140786 0.086
-0.0166497 0.086
-0.0144682 0.088
-0.043004 0.087
--0.0127769 0.082
-0.00927353 0.084
-0.0179157 0.082
-0.030508 0.074
--0.0105906 0.065
-0.00747108 0.067
-0.00467587 0.061
-0.0310678 0.056
--0.0153685 0.062
-8.10146E-4 0.069
-0.00806475 0.074
-0.0287657 0.074
--0.0183783 0.071
-0.00449467 0.064
-0.00988674 0.061
-0.0245948 0.055
--0.0185189 0.058
--0.00590181 0.059
-0.00581503 0.055
-0.0243654 0.051
--0.0157485 0.051
--0.00749254 0.05
-0.00388288 0.051
-0.0242448 0.051
--0.014647 0.047
--0.00204897 0.047
-0.00247526 0.041
-0.0239234 0.038
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/dynamic.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/dynamic.py
deleted file mode 100644
index 4855749..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/dynamic.py
+++ /dev/null
@@ -1,373 +0,0 @@
-# pylint: disable=W0201
-
-import numpy as np
-
-from scikits.statsmodels.tools.decorators import cache_readonly
-
-import var_model as _model
-import util
-import plotting
-
-FULL_SAMPLE = 0
-ROLLING = 1
-EXPANDING = 2
-
-try:
- import pandas as pn
-except ImportError:
- pass
-
-def _get_window_type(window_type):
- if window_type in (FULL_SAMPLE, ROLLING, EXPANDING):
- return window_type
- elif isinstance(window_type, basestring):
- window_type_up = window_type.upper()
-
- if window_type_up in ('FULL SAMPLE', 'FULL_SAMPLE'):
- return FULL_SAMPLE
- elif window_type_up == 'ROLLING':
- return ROLLING
- elif window_type_up == 'EXPANDING':
- return EXPANDING
-
- raise Exception('Unrecognized window type: %s' % window_type)
-
-def require_pandas():
- try:
- import pandas as pn
- except ImportError:
- raise ImportError('pandas is required to use this code (for now)')
-
-class DynamicVAR(object):
- """
- Estimates time-varying vector autoregression (VAR(p)) using
- equation-by-equation least squares
-
- Parameters
- ----------
- data : pandas.{DataFrame, DataMatrix}
- lag_order : int, default 1
- window : int
- window_type : {'expanding', 'rolling'}
- min_periods : int or None
- Minimum number of observations to require in window, defaults to window
- size if None specified
- trend : {'c', 'nc', 'ct', 'ctt'}
- TODO
-
- Returns
- -------
- **Attributes**:
-
- coefs : WidePanel
- items : coefficient names
- major_axis : dates
- minor_axis : VAR equation names
- """
- def __init__(self, data, lag_order=1, window=None, window_type='expanding',
- trend='c', min_periods=None):
- require_pandas()
-
- self.lag_order = lag_order
-
- self.names = list(data.columns)
- self.neqs = len(self.names)
-
- self._y_orig = data
-
- # TODO: deal with trend
- self._x_orig = _make_lag_matrix(data, lag_order)
- self._x_orig['intercept'] = 1
-
- (self.y, self.x, self.x_filtered, self._index,
- self._time_has_obs) = _filter_data(self._y_orig, self._x_orig)
-
- self.lag_order = lag_order
- self.trendorder = util.get_trendorder(trend)
-
- self._set_window(window_type, window, min_periods)
-
- def _set_window(self, window_type, window, min_periods):
- self._window_type = _get_window_type(window_type)
-
- if self._is_rolling:
- if window is None:
- raise Exception('Must pass window when doing rolling '
- 'regression')
-
- if min_periods is None:
- min_periods = window
- else:
- window = len(self.x)
- if min_periods is None:
- min_periods = 1
-
- self._window = int(window)
- self._min_periods = min_periods
-
- @cache_readonly
- def T(self):
- """
- Number of time periods in results
- """
- return len(self.result_index)
-
- @property
- def nobs(self):
- # Stub, do I need this?
- data = dict((eq, r.nobs) for eq, r in self.equations.iteritems())
- return pn.DataMatrix(data)
-
- @cache_readonly
- def equations(self):
- eqs = {}
- for col, ts in self.y.iteritems():
- model = pn.ols(y=ts, x=self.x, window=self._window,
- window_type=self._window_type,
- min_periods=self._min_periods)
-
- eqs[col] = model
-
- return eqs
-
- @cache_readonly
- def coefs(self):
- """
- Return dynamic regression coefficients as WidePanel
- """
- data = {}
- for eq, result in self.equations.iteritems():
- data[eq] = result.beta
-
- panel = pn.WidePanel.fromDict(data)
-
- # Coefficient names become items
- return panel.swapaxes('items', 'minor')
-
- @property
- def result_index(self):
- return self.coefs.major_axis
-
- @cache_readonly
- def _coefs_raw(self):
- """
- Reshape coefficients to be more amenable to dynamic calculations
-
- Returns
- -------
- coefs : (time_periods x lag_order x neqs x neqs)
- """
- coef_panel = self.coefs.copy()
- del coef_panel['intercept']
-
- coef_values = coef_panel.swapaxes('items', 'major').values
- coef_values = coef_values.reshape((len(coef_values),
- self.lag_order,
- self.neqs, self.neqs))
-
- return coef_values
-
- @cache_readonly
- def _intercepts_raw(self):
- """
- Similar to _coefs_raw, return intercept values in easy-to-use matrix
- form
-
- Returns
- -------
- intercepts : (T x K)
- """
- return self.coefs['intercept'].values
-
- @cache_readonly
- def resid(self):
- data = {}
- for eq, result in self.equations.iteritems():
- data[eq] = result.resid
-
- return pn.DataMatrix(data)
-
- def forecast(self, steps=1):
- """
- Produce dynamic forecast
-
- Parameters
- ----------
- steps
-
- Returns
- -------
- forecasts : pandas.DataMatrix
- """
- output = np.empty((self.T - steps, self.neqs))
-
- y_values = self.y.values
- y_index_map = self.y.index.indexMap
- result_index_map = self.result_index.indexMap
-
- coefs = self._coefs_raw
- intercepts = self._intercepts_raw
-
- # can only produce this many forecasts
- forc_index = self.result_index[steps:]
- for i, date in enumerate(forc_index):
- # TODO: check that this does the right thing in weird cases...
- idx = y_index_map[date] - steps
- result_idx = result_index_map[date] - steps
-
- y_slice = y_values[:idx]
-
- forcs = _model.forecast(y_slice, coefs[result_idx],
- intercepts[result_idx], steps)
-
- output[i] = forcs[-1]
-
- return pn.DataMatrix(output, index=forc_index, columns=self.names)
-
- def plot_forecast(self, steps=1, figsize=(10, 10)):
- """
- Plot h-step ahead forecasts against actual realizations of time
- series. Note that forecasts are lined up with their respective
- realizations.
-
- Parameters
- ----------
- steps :
- """
- import matplotlib.pyplot as plt
-
- fig, axes = plt.subplots(figsize=figsize, nrows=self.neqs,
- sharex=True)
-
- forc = self.forecast(steps=steps)
- dates = forc.index
-
- y_overlay = self.y.reindex(dates)
-
- for i, col in enumerate(forc.columns):
- ax = axes[i]
-
- y_ts = y_overlay[col]
- forc_ts = forc[col]
-
- y_handle = ax.plot(dates, y_ts.values, 'k.', ms=2)
- forc_handle = ax.plot(dates, forc_ts.values, 'k-')
-
- fig.legend((y_handle, forc_handle), ('Y', 'Forecast'))
- fig.autofmt_xdate()
-
- fig.suptitle('Dynamic %d-step forecast' % steps)
-
- # pretty things up a bit
- plotting.adjust_subplots(bottom=0.15, left=0.10)
- plt.draw_if_interactive()
-
- @property
- def _is_rolling(self):
- return self._window_type == ROLLING
-
- @cache_readonly
- def r2(self):
- """Returns the r-squared values."""
- data = dict((eq, r.r2) for eq, r in self.equations.iteritems())
- return pn.DataMatrix(data)
-
-class DynamicPanelVAR(DynamicVAR):
- """
- Dynamic (time-varying) panel vector autoregression using panel ordinary
- least squares
-
- Parameters
- ----------
- """
- def __init__(self, data, lag_order=1, window=None, window_type='expanding',
- trend='c', min_periods=None):
- self.lag_order = lag_order
- self.neqs = len(data.columns)
-
- self._y_orig = data
-
- # TODO: deal with trend
- self._x_orig = _make_lag_matrix(data, lag_order)
- self._x_orig['intercept'] = 1
-
- (self.y, self.x, self.x_filtered, self._index,
- self._time_has_obs) = _filter_data(self._y_orig, self._x_orig)
-
- self.lag_order = lag_order
- self.trendorder = util.get_trendorder(trend)
-
- self._set_window(window_type, window, min_periods)
-
-
-def _filter_data(lhs, rhs):
- """
- Data filtering routine for dynamic VAR
-
- lhs : DataFrame
- original data
- rhs : DataFrame
- lagged variables
-
- Returns
- -------
-
- """
- def _has_all_columns(df):
- return np.isfinite(df.values).sum(1) == len(df.columns)
-
- rhs_valid = _has_all_columns(rhs)
- if not rhs_valid.all():
- pre_filtered_rhs = rhs[rhs_valid]
- else:
- pre_filtered_rhs = rhs
-
- index = lhs.index.union(rhs.index)
- if not index.equals(rhs.index) or not index.equals(lhs.index):
- rhs = rhs.reindex(index)
- lhs = lhs.reindex(index)
-
- rhs_valid = _has_all_columns(rhs)
-
- lhs_valid = _has_all_columns(lhs)
- valid = rhs_valid & lhs_valid
-
- if not valid.all():
- filt_index = rhs.index[valid]
- filtered_rhs = rhs.reindex(filt_index)
- filtered_lhs = lhs.reindex(filt_index)
- else:
- filtered_rhs, filtered_lhs = rhs, lhs
-
- return filtered_lhs, filtered_rhs, pre_filtered_rhs, index, valid
-
-def _make_lag_matrix(x, lags):
- data = {}
- columns = []
- for i in range(1, 1 + lags):
- lagstr = 'L%d.'% i
- lag = x.shift(i).rename(columns=lambda c: lagstr + c)
- data.update(lag._series)
- columns.extend(lag.columns)
-
- return pn.DataMatrix(data, columns=columns)
-
-class Equation(object):
- """
- Stub, estimate one equation
- """
-
- def __init__(self, y, x):
- pass
-
-if __name__ == '__main__':
- import pandas.util.testing as ptest
-
- ptest.N = 500
- data = ptest.makeTimeDataFrame().cumsum(0)
-
- var = DynamicVAR(data, lag_order=2, window_type='expanding')
- var2 = DynamicVAR(data, lag_order=2, window=10,
- window_type='rolling')
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/irf.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/irf.py
deleted file mode 100644
index e90da5e..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/irf.py
+++ /dev/null
@@ -1,361 +0,0 @@
-"""
-Impulse reponse-related code
-"""
-
-from __future__ import division
-
-import numpy as np
-import numpy.linalg as la
-import scipy.linalg as L
-
-from scipy import stats
-
-from scikits.statsmodels.tools.decorators import cache_readonly
-from scikits.statsmodels.tools.tools import chain_dot
-#from scikits.statsmodels.tsa.api import VAR
-
-import scikits.statsmodels.tsa.tsatools as tsa
-import scikits.statsmodels.tsa.vector_ar.plotting as plotting
-import scikits.statsmodels.tsa.vector_ar.util as util
-
-mat = np.array
-
-class BaseIRAnalysis(object):
- """
- Base class for plotting and computing IRF-related statistics, want to be
- able to handle known and estimated processes
- """
-
- def __init__(self, model, P=None, periods=10, order=None):
- self.model = model
- self.periods = periods
- self.neqs, self.lags, self.T = model.neqs, model.k_ar, model.nobs
-
- self.order = order
-
- if P is None:
- sigma = model.sigma_u
-
- # TODO, may be difficult at the moment
- # if order is not None:
- # indexer = [model.get_eq_index(name) for name in order]
- # sigma = sigma[:, indexer][indexer, :]
-
- # if sigma.shape != model.sigma_u.shape:
- # raise ValueError('variable order is wrong length')
-
- P = la.cholesky(sigma)
-
- self.P = P
-
- self.irfs = model.ma_rep(periods)
- self.orth_irfs = model.orth_ma_rep(periods)
-
- self.cum_effects = self.irfs.cumsum(axis=0)
- self.orth_cum_effects = self.orth_irfs.cumsum(axis=0)
-
- self.lr_effects = model.long_run_effects()
- self.orth_lr_effects = np.dot(model.long_run_effects(), P)
-
- # auxiliary stuff
- self._A = util.comp_matrix(model.coefs)
-
- def cov(self, *args, **kwargs):
- raise NotImplementedError
-
- def cum_effect_cov(self, *args, **kwargs):
- raise NotImplementedError
-
- def plot(self, orth=False, impulse=None, response=None, signif=0.05,
- plot_params=None, subplot_params=None, plot_stderr=True,
- stderr_type='asym', repl=1000, seed=None):
- """
- Plot impulse responses
-
- Parameters
- ----------
- orth : bool, default False
- Compute orthogonalized impulse responses
- impulse : string or int
- variable providing the impulse
- response : string or int
- variable affected by the impulse
- signif : float (0 < signif < 1)
- Significance level for error bars, defaults to 95% CI
- subplot_params : dict
- To pass to subplot plotting funcions. Example: if fonts are too big,
- pass {'fontsize' : 8} or some number to your taste.
- plot_params : dict
-
- plot_stderr: bool, default True
- Plot standard impulse response error bands
- stderr_type: string
- 'asym': default, computes asymptotic standard errors
- 'mc': monte carlo standard errors (use rpl)
- repl: int, default 1000
- Number of replications for monte carlo standard errors
- seed: int
- np.random.seed for Monte Carlo replications
- """
- periods = self.periods
- model = self.model
-
- if orth:
- title = 'Impulse responses (orthogonalized)'
- irfs = self.orth_irfs
- else:
- title = 'Impulse responses'
- irfs = self.irfs
-
- if stderr_type not in ['asym','mc']:
- raise TypeError
- else:
- if stderr_type == 'asym':
- stderr = self.cov(orth=orth)
- if stderr_type == 'mc':
- stderr = self.cov_mc(orth=orth, repl=repl,
- signif=signif, seed=seed)
- plotting.irf_grid_plot(irfs, stderr, impulse, response,
- self.model.names, title, signif=signif,
- subplot_params=subplot_params,
- plot_params=plot_params, stderr_type=stderr_type)
-
- def plot_cum_effects(self, orth=False, impulse=None, response=None,
- signif=0.05, plot_params=None,
- subplot_params=None, plot_stderr=True):
- """
-
- """
-
- if orth:
- title = 'Cumulative responses responses (orthogonalized)'
- cum_effects = self.orth_cum_effects
- lr_effects = self.orth_lr_effects
- else:
- title = 'Cumulative responses'
- cum_effects = self.cum_effects
- lr_effects = self.lr_effects
-
- try:
- stderr = self.cum_effect_cov(orth=orth)
- except NotImplementedError: # pragma: no cover
- stderr = None
-
- if not plot_stderr:
- stderr = None
-
- plotting.irf_grid_plot(cum_effects, stderr, impulse, response,
- self.model.names, title, signif=signif,
- hlines=lr_effects, subplot_params=subplot_params,
- plot_params=plot_params, stderr_type='asym')
-
-class IRAnalysis(BaseIRAnalysis):
- """
- Impulse response analysis class. Computes impulse responses, asymptotic
- standard errors, and produces relevant plots
-
- Parameters
- ----------
- model : VAR instance
-
- Notes
- -----
- Using Lutkepohl (2005) notation
- """
- def __init__(self, model, P=None, periods=10, order=None):
- BaseIRAnalysis.__init__(self, model, P=P, periods=periods,
- order=order)
-
- self.cov_a = model._cov_alpha
- self.cov_sig = model._cov_sigma
-
- # memoize dict for G matrix function
- self._g_memo = {}
-
- def cov(self, orth=False):
- """
- Compute asymptotic standard errors for impulse response coefficients
-
- Notes
- -----
- Lutkepohl eq 3.7.5
-
- Returns
- -------
- """
- if orth:
- return self._orth_cov()
-
- covs = self._empty_covm(self.periods + 1)
- covs[0] = np.zeros((self.neqs ** 2, self.neqs ** 2))
- for i in range(1, self.periods + 1):
- Gi = self.G[i - 1]
- covs[i] = chain_dot(Gi, self.cov_a, Gi.T)
-
- return covs
-
- def cov_mc(self, orth=False, repl=1000, signif=0.05, seed=None):
- """
- IRF Monte Carlo standard errors
- """
- model = self.model
- periods = self.periods
- return model.stderr_MC_irf(orth=orth, repl=repl,
- T=periods, signif=signif, seed=seed)
-
- @cache_readonly
- def G(self):
- # Gi matrices as defined on p. 111
-
- K = self.neqs
-
- # nlags = self.model.p
- # J = np.hstack((np.eye(K),) + (np.zeros((K, K)),) * (nlags - 1))
-
- def _make_g(i):
- # p. 111 Lutkepohl
- G = 0.
- for m in range(i):
- # be a bit cute to go faster
- idx = i - 1 - m
- if idx in self._g_memo:
- apow = self._g_memo[idx]
- else:
- apow = la.matrix_power(self._A.T, idx)
- # apow = np.dot(J, apow)
- apow = apow[:K]
- self._g_memo[idx] = apow
-
- # take first K rows
- piece = np.kron(apow, self.irfs[m])
- G = G + piece
-
- return G
-
- return [_make_g(i) for i in range(1, self.periods + 1)]
-
- def _orth_cov(self):
- # Lutkepohl 3.7.8
-
- Ik = np.eye(self.neqs)
- PIk = np.kron(self.P.T, Ik)
- H = self.H
-
- covs = self._empty_covm(self.periods + 1)
- for i in range(self.periods + 1):
- if i == 0:
- apiece = 0
- else:
- Ci = np.dot(PIk, self.G[i-1])
- apiece = chain_dot(Ci, self.cov_a, Ci.T)
-
- Cibar = np.dot(np.kron(Ik, self.irfs[i]), H)
- bpiece = chain_dot(Cibar, self.cov_sig, Cibar.T) / self.T
-
- # Lutkepohl typo, cov_sig correct
- covs[i] = apiece + bpiece
-
- return covs
-
- def cum_effect_cov(self, orth=False):
- """
- Compute asymptotic standard errors for cumulative impulse response
- coefficients
-
- Parameters
- ----------
- orth : boolean
-
- Notes
- -----
- eq. 3.7.7 (non-orth), 3.7.10 (orth)
-
- Returns
- -------
-
- """
- Ik = np.eye(self.neqs)
- PIk = np.kron(self.P.T, Ik)
-
- F = 0.
- covs = self._empty_covm(self.periods + 1)
- for i in range(self.periods + 1):
- if i > 0:
- F = F + self.G[i - 1]
-
- if orth:
- if i == 0:
- apiece = 0
- else:
- Bn = np.dot(PIk, F)
- apiece = chain_dot(Bn, self.cov_a, Bn.T)
-
- Bnbar = np.dot(np.kron(Ik, self.cum_effects[i]), self.H)
- bpiece = chain_dot(Bnbar, self.cov_sig, Bnbar.T) / self.T
-
- covs[i] = apiece + bpiece
- else:
- if i == 0:
- covs[i] = np.zeros((self.neqs**2, self.neqs**2))
- continue
-
- covs[i] = chain_dot(F, self.cov_a, F.T)
-
- return covs
-
- def lr_effect_cov(self, orth=False):
- """
-
- Returns
- -------
-
- """
- lre = self.lr_effects
- Finfty = np.kron(np.tile(lre.T, self.lags), lre)
- Ik = np.eye(self.neqs)
-
- if orth:
- Binf = np.dot(np.kron(self.P.T, np.eye(self.neqs)), Finfty)
- Binfbar = np.dot(np.kron(Ik, lre), self.H)
-
- return (chain_dot(Binf, self.cov_a, Binf.T) +
- chain_dot(Binfbar, self.cov_sig, Binfbar.T))
- else:
- return chain_dot(Finfty, self.cov_a, Finfty.T)
-
- def stderr(self, orth=False):
- return np.array([tsa.unvec(np.sqrt(np.diag(c)))
- for c in self.cov(orth=orth)])
-
- def cum_effect_stderr(self, orth=False):
- return np.array([tsa.unvec(np.sqrt(np.diag(c)))
- for c in self.cum_effect_cov(orth=orth)])
-
- def lr_effect_stderr(self, orth=False):
- cov = self.lr_effect_cov(orth=orth)
- return tsa.unvec(np.sqrt(np.diag(cov)))
-
- def _empty_covm(self, periods):
- return np.zeros((periods, self.neqs ** 2, self.neqs ** 2),
- dtype=float)
-
- @cache_readonly
- def H(self):
- k = self.neqs
- Lk = tsa.elimination_matrix(k)
- Kkk = tsa.commutation_matrix(k, k)
- Ik = np.eye(k)
-
- # B = chain_dot(Lk, np.eye(k**2) + commutation_matrix(k, k),
- # np.kron(self.P, np.eye(k)), Lk.T)
-
- # return np.dot(Lk.T, L.inv(B))
-
- B = chain_dot(Lk,
- np.dot(np.kron(Ik, self.P), Kkk) + np.kron(self.P, Ik),
- Lk.T)
-
- return np.dot(Lk.T, L.inv(B))
-
- def fevd_table(self):
- pass
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/output.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/output.py
deleted file mode 100644
index 71b080a..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/output.py
+++ /dev/null
@@ -1,276 +0,0 @@
-from cStringIO import StringIO
-import numpy as np
-
-from scikits.statsmodels.iolib import SimpleTable
-import scikits.statsmodels.tsa.vector_ar.util as util
-
-mat = np.array
-
-_default_table_fmt = dict(
- empty_cell = '',
- colsep=' ',
- row_pre = '',
- row_post = '',
- table_dec_above='=',
- table_dec_below='=',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
-)
-
-class VARSummary(object):
- default_fmt = dict(
- #data_fmts = ["%#12.6g","%#12.6g","%#10.4g","%#5.4g"],
- #data_fmts = ["%#10.4g","%#10.4g","%#10.4g","%#6.4g"],
- data_fmts = ["%#15.6F","%#15.6F","%#15.3F","%#14.3F"],
- empty_cell = '',
- #colwidths = 10,
- colsep=' ',
- row_pre = '',
- row_post = '',
- table_dec_above='=',
- table_dec_below='=',
- header_dec_below='-',
- header_fmt = '%s',
- stub_fmt = '%s',
- title_align='c',
- header_align = 'r',
- data_aligns = 'r',
- stubs_align = 'l',
- fmt = 'txt'
- )
-
- part1_fmt = dict(default_fmt,
- data_fmts = ["%s"],
- colwidths = 15,
- colsep=' ',
- table_dec_below='',
- header_dec_below=None,
- )
- part2_fmt = dict(default_fmt,
- data_fmts = ["%#12.6g","%#12.6g","%#10.4g","%#5.4g"],
- colwidths = None,
- colsep=' ',
- table_dec_above='-',
- table_dec_below='-',
- header_dec_below=None,
- )
-
- def __init__(self, estimator):
- self.model = estimator
- self.summary = self.make()
-
- def __repr__(self):
- return self.summary
-
- def make(self, endog_names=None, exog_names=None):
- """
- Summary of VAR model
- """
- buf = StringIO()
-
- print >> buf, self._header_table()
- print >> buf, self._stats_table()
- print >> buf, self._coef_table()
- print >> buf, self._resid_info()
-
- return buf.getvalue()
-
- def _header_table(self):
- import time
-
- model = self.model
-
- t = time.localtime()
-
- # TODO: change when we allow coef restrictions
- # ncoefs = len(model.beta)
-
- # Header information
- part1title = "Summary of Regression Results"
- part1data = [[model._model_type],
- ["OLS"], #TODO: change when fit methods change
- [time.strftime("%a, %d, %b, %Y", t)],
- [time.strftime("%H:%M:%S", t)]]
- part1header = None
- part1stubs = ('Model:',
- 'Method:',
- 'Date:',
- 'Time:')
- part1 = SimpleTable(part1data, part1header, part1stubs,
- title=part1title, txt_fmt=self.part1_fmt)
-
- return str(part1)
-
- def _stats_table(self):
- # TODO: do we want individual statistics or should users just
- # use results if wanted?
- # Handle overall fit statistics
-
- model = self.model
-
-
- part2Lstubs = ('No. of Equations:',
- 'Nobs:',
- 'Log likelihood:',
- 'AIC:')
- part2Rstubs = ('BIC:',
- 'HQIC:',
- 'FPE:',
- 'Det(Omega_mle):')
- part2Ldata = [[model.neqs], [model.nobs], [model.llf], [model.aic]]
- part2Rdata = [[model.bic], [model.hqic], [model.fpe], [model.detomega]]
- part2Lheader = None
- part2L = SimpleTable(part2Ldata, part2Lheader, part2Lstubs,
- txt_fmt = self.part2_fmt)
- part2R = SimpleTable(part2Rdata, part2Lheader, part2Rstubs,
- txt_fmt = self.part2_fmt)
- part2L.extend_right(part2R)
-
- return str(part2L)
-
- def _coef_table(self):
- model = self.model
- k = model.neqs
-
- Xnames = self.model.coef_names
-
- data = zip(model.params.T.ravel(),
- model.stderr.T.ravel(),
- model.tvalues.T.ravel(),
- model.pvalues.T.ravel())
-
- header = ('coefficient','std. error','t-stat','prob')
-
- buf = StringIO()
- dim = k * model.k_ar + model.k_trend
- for i in range(k):
- section = "Results for equation %s" % model.names[i]
- print >> buf, section
-
- table = SimpleTable(data[dim * i : dim * (i + 1)], header,
- Xnames, title=None, txt_fmt = self.default_fmt)
-
- print >> buf, str(table)
-
- if i < k - 1: buf.write('\n')
-
- return buf.getvalue()
-
- def _resid_info(self):
- buf = StringIO()
- names = self.model.names
-
- print >> buf, "Correlation matrix of residuals"
- print >> buf, pprint_matrix(self.model.resid_corr, names, names)
-
- return buf.getvalue()
-
-def causality_summary(results, variables, equation, kind):
- title = "Granger causality %s-test" % kind
- null_hyp = 'H_0: %s do not Granger-cause %s' % (variables, equation)
- return hypothesis_test_table(results, title, null_hyp)
-
-def normality_summary(results):
- title = "Normality skew/kurtosis Chi^2-test"
- null_hyp = 'H_0: data generated by normally-distributed process'
- return hypothesis_test_table(results, title, null_hyp)
-
-def hypothesis_test_table(results, title, null_hyp):
- fmt = dict(_default_table_fmt,
- data_fmts=["%#15.6F","%#15.6F","%#15.3F", "%s"])
-
- buf = StringIO()
- table = SimpleTable([[results['statistic'],
- results['crit_value'],
- results['pvalue'],
- str(results['df'])]],
- ['Test statistic', 'Critical Value', 'p-value',
- 'df'], [''], title=None, txt_fmt=fmt)
-
- print >> buf, title
- print >> buf, table
-
- print >> buf, null_hyp
-
- buf.write("Conclusion: %s H_0" % results['conclusion'])
- buf.write(" at %.2f%% significance level" % (results['signif'] * 100))
-
- return buf.getvalue()
-
-
-def print_ic_table(ics, selected_orders):
- """
- For VAR order selection
-
- """
- # Can factor this out into a utility method if so desired
-
- cols = sorted(ics)
-
- data = mat([["%#10.4g" % v for v in ics[c]] for c in cols],
- dtype=object).T
-
- # start minimums
- for i, col in enumerate(cols):
- idx = int(selected_orders[col]), i
- data[idx] = data[idx] + '*'
- # data[idx] = data[idx][:-1] + '*' # super hack, ugh
-
- fmt = dict(_default_table_fmt,
- data_fmts=("%s",) * len(cols))
-
- buf = StringIO()
- table = SimpleTable(data, cols, range(len(data)),
- title='VAR Order Selection', txt_fmt=fmt)
- print >> buf, table
- print >> buf, '* Minimum'
-
- print buf.getvalue()
-
-
-def pprint_matrix(values, rlabels, clabels, col_space=None):
- buf = StringIO()
-
- T, K = len(rlabels), len(clabels)
-
- if col_space is None:
- min_space = 10
- col_space = [max(len(str(c)) + 2, min_space) for c in clabels]
- else:
- col_space = (col_space,) * K
-
- row_space = max([len(str(x)) for x in rlabels]) + 2
-
- head = _pfixed('', row_space)
-
- for j, h in enumerate(clabels):
- head += _pfixed(h, col_space[j])
-
- print >> buf, head
-
- for i, rlab in enumerate(rlabels):
- line = ('%s' % rlab).ljust(row_space)
-
- for j in range(K):
- line += _pfixed(values[i,j], col_space[j])
-
- print >> buf, line
-
- return buf.getvalue()
-
-def _pfixed(s, space, nanRep=None, float_format=None):
- if isinstance(s, float):
- if float_format:
- formatted = float_format(s)
- else:
- formatted = "%#8.6F" % s
-
- return formatted.rjust(space)
- else:
- return ('%s' % s)[:space].rjust(space)
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/plotting.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/plotting.py
deleted file mode 100644
index f050328..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/plotting.py
+++ /dev/null
@@ -1,259 +0,0 @@
-import numpy as np
-import scikits.statsmodels.tsa.vector_ar.util as util
-
-class MPLConfigurator(object):
-
- def __init__(self):
- self._inverse_actions = []
-
- def revert(self):
- for action in self._inverse_actions:
- action()
-
- def set_fontsize(self, size):
- import matplotlib as mpl
- old_size = mpl.rcParams['font.size']
- mpl.rcParams['font.size'] = size
-
- def revert():
- mpl.rcParams['font.size'] = old_size
-
- self._inverse_actions.append(revert)
-
-#-------------------------------------------------------------------------------
-# Plotting functions
-
-def plot_mts(Y, names=None, index=None):
- """
- Plot multiple time series
- """
- import matplotlib.pyplot as plt
-
- k = Y.shape[1]
- rows, cols = k, 1
-
- plt.figure(figsize=(10, 10))
-
- for j in range(k):
- ts = Y[:, j]
-
- ax = plt.subplot(rows, cols, j+1)
- if index is not None:
- ax.plot(index, ts)
- else:
- ax.plot(ts)
-
- if names is not None:
- ax.set_title(names[j])
-
-def plot_var_forc(prior, forc, err_upper, err_lower,
- index=None, names=None, plot_stderr=True):
- import matplotlib.pyplot as plt
-
- n, k = prior.shape
- rows, cols = k, 1
-
- fig = plt.figure(figsize=(10, 10))
-
- prange = np.arange(n)
- rng_f = np.arange(n - 1, n + len(forc))
- rng_err = np.arange(n, n + len(forc))
-
- for j in range(k):
- ax = plt.subplot(rows, cols, j+1)
-
- p1 = ax.plot(prange, prior[:, j], 'k')
- p2 = ax.plot(rng_f, np.r_[prior[-1:, j], forc[:, j]], 'k--')
-
- if plot_stderr:
- p3 = ax.plot(rng_err, err_upper[:, j], 'k-.')
- ax.plot(rng_err, err_lower[:, j], 'k-.')
-
- if names is not None:
- ax.set_title(names[j])
-
- fig.legend((p1, p2, p3), ('Observed', 'Forecast', 'Forc 2 STD err'),
- 'upper right')
-
-def plot_with_error(y, error, x=None, axes=None, value_fmt='k',
- error_fmt='k--', alpha=0.05, stderr_type = 'asym'):
- """
- Make plot with optional error bars
-
- Parameters
- ----------
- y :
- error : array or None
-
- """
- import matplotlib.pyplot as plt
-
- if axes is None:
- axes = plt.gca()
-
- x = x if x is not None else range(len(y))
- plot_action = lambda y, fmt: axes.plot(x, y, fmt)
- plot_action(y, value_fmt)
-
- #changed this
- if error is not None:
- if stderr_type == 'asym':
- q = util.norm_signif_level(alpha)
- plot_action(y - q * error, error_fmt)
- plot_action(y + q * error, error_fmt)
- if stderr_type == 'mc':
- plot_action(error[0], error_fmt)
- plot_action(error[1], error_fmt)
-
-def plot_full_acorr(acorr, fontsize=8, linewidth=8, xlabel=None,
- err_bound=None):
- """
-
- Parameters
- ----------
-
-
-
- """
- import matplotlib.pyplot as plt
-
- config = MPLConfigurator()
- config.set_fontsize(fontsize)
-
- k = acorr.shape[1]
- fig, axes = plt.subplots(k, k, figsize=(10, 10), squeeze=False)
-
- for i in range(k):
- for j in range(k):
- ax = axes[i][j]
- acorr_plot(acorr[:, i, j], linewidth=linewidth,
- xlabel=xlabel, ax=ax)
-
- if err_bound is not None:
- ax.axhline(err_bound, color='k', linestyle='--')
- ax.axhline(-err_bound, color='k', linestyle='--')
-
- adjust_subplots()
- config.revert()
-
- return fig
-
-def acorr_plot(acorr, linewidth=8, xlabel=None, ax=None):
- import matplotlib.pyplot as plt
-
- if ax is None:
- ax = plt.gca()
-
- if xlabel is None:
- xlabel = np.arange(len(acorr))
-
- ax.vlines(xlabel, [0], acorr, lw=linewidth)
-
- ax.axhline(0, color='k')
- ax.set_ylim([-1, 1])
-
- # hack?
- ax.set_xlim([-1, xlabel[-1] + 1])
-
-def plot_acorr_with_error():
- pass
-
-def adjust_subplots(**kwds):
- import matplotlib.pyplot as plt
-
- passed_kwds = dict(bottom=0.05, top=0.925,
- left=0.05, right=0.95,
- hspace=0.2)
- passed_kwds.update(kwds)
- plt.subplots_adjust(**passed_kwds)
-
-#-------------------------------------------------------------------------------
-# Multiple impulse response (cum_effects, etc.) cplots
-
-def irf_grid_plot(values, stderr, impcol, rescol, names, title,
- signif=0.05, hlines=None, subplot_params=None,
- plot_params=None, figsize=(10,10), stderr_type='asym'):
- """
- Reusable function to make flexible grid plots of impulse responses and
- comulative effects
-
- values : (T + 1) x k x k
- stderr : T x k x k
- hlines : k x k
- """
- import matplotlib.pyplot as plt
-
- if subplot_params is None:
- subplot_params = {}
- if plot_params is None:
- plot_params = {}
-
- nrows, ncols, to_plot = _get_irf_plot_config(names, impcol, rescol)
-
- fig, axes = plt.subplots(nrows=nrows, ncols=ncols, sharex=True,
- squeeze=False, figsize=figsize)
-
- # fill out space
- adjust_subplots()
-
- fig.suptitle(title, fontsize=14)
-
- subtitle_temp = r'%s$\rightarrow$%s'
-
- k = len(names)
-
- rng = range(len(values))
- for (j, i, ai, aj) in to_plot:
- ax = axes[ai][aj]
-
- # HACK?
- if stderr is not None:
- if stderr_type == 'asym':
- sig = np.sqrt(stderr[:, j * k + i, j * k + i])
- plot_with_error(values[:, i, j], sig, x=rng, axes=ax,
- alpha=signif, value_fmt='b', stderr_type='asym')
- if stderr_type == 'mc':
- errs = stderr[0][:, i, j], stderr[1][:, i, j]
- plot_with_error(values[:, i, j], errs, x=rng, axes=ax,
- alpha=signif, value_fmt='b', stderr_type='mc')
- else:
- plot_with_error(values[:, i, j], None, x=rng, axes=ax,
- value_fmt='b')
-
- ax.axhline(0, color='k')
-
- if hlines is not None:
- ax.axhline(hlines[i,j], color='k')
-
- sz = subplot_params.get('fontsize', 12)
- ax.set_title(subtitle_temp % (names[j], names[i]), fontsize=sz)
-
-
-def _get_irf_plot_config(names, impcol, rescol):
- nrows = ncols = k = len(names)
- if impcol is not None and rescol is not None:
- # plot one impulse-response pair
- nrows = ncols = 1
- j = util.get_index(names, impcol)
- i = util.get_index(names, rescol)
- to_plot = [(j, i, 0, 0)]
- elif impcol is not None:
- # plot impacts of impulse in one variable
- ncols = 1
- j = util.get_index(names, impcol)
- to_plot = [(j, i, i, 0) for i in range(k)]
- elif rescol is not None:
- # plot only things having impact on particular variable
- ncols = 1
- i = util.get_index(names, rescol)
- to_plot = [(j, i, j, 0) for j in range(k)]
- else:
- # plot everything
- to_plot = [(j, i, i, j) for i in range(k) for j in range(k)]
-
- return nrows, ncols, to_plot
-
-#-------------------------------------------------------------------------------
-# Forecast error variance decomposition
-
-
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/__init__.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/__init__.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/__init__.py
deleted file mode 100644
index d3f5a12..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var.py
deleted file mode 100644
index e69a1be..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var.py
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-Test Results for the VAR model. Obtained from Stata using
-datasets/macrodata/var.do
-"""
-
-import numpy as np
-
-class MacrodataResults(object):
- def __init__(self):
- params = [-0.2794863875, 0.0082427826, 0.6750534746, 0.2904420695,
- 0.0332267098, -0.0073250059, 0.0015269951, -0.1004938623,
- -0.1231841792, 0.2686635768, 0.2325045441, 0.0257430635,
- 0.0235035714, 0.0054596064, -1.97116e+00, 0.3809752365,
- 4.4143364022, 0.8001168377, 0.2255078864, -0.1241109271,
- -0.0239026118]
- params = np.asarray(params).reshape(3,-1)
- params = np.hstack((params[:,-1][:,None],params[:,:-1:2],params[:,1::2]))
- self.params = params
- self.neqs = 3
- self.nobs = 200
- self.df_eq = 7
- self.nobs_1 = 200
- self.df_model_1 = 6
- self.rmse_1 = .0075573716985351
- self.rsquared_1 = .2739094844780006
- self.llf_1 = 696.8213727557811
- self.nobs_2 = 200
- self.rmse_2 = .0065444260782597
- self.rsquared_2 = .1423626064753714
- self.llf_2 = 725.6033255319256
- self.nobs_3 = 200
- self.rmse_3 = .0395942039671031
- self.rsquared_3 = .2955406949737428
- self.llf_3 = 365.5895183036045
-# These are from Stata. They use the LL based definition
-# We return Lutkepohl statistics. See Stata TS manual page 436
-# self.bic = -19.06939794312953
-# self.aic = -19.41572126661708
-# self.hqic = -19.27556951526737
-# These are from R. See var.R in macrodata folder
- self.bic = -2.758301611618373e+01
- self.aic = -2.792933943967127e+01
- self.hqic = -2.778918768832157e+01
- self.fpe = 7.421287668357018e-13
- self.detsig = 6.01498432283e-13
- self.llf = 1962.572126661708
- self.chi2_1 = 75.44775165699033 # don't know how they calculate this
- # it's not -2 * (ll1 - ll0)
- self.chi2_2 = 33.19878716815366
- self.chi2_3 = 83.90568280242312
- bse = [.1666662376, .1704584393, .1289691456, .1433308696, .0257313781,
- .0253307796, .0010992645,.1443272761,.1476111934,.1116828804,
- .1241196435, .0222824956, .021935591, .0009519255, .8731894193,
- .8930573331, .6756886998, .7509319263, .1348105496, .1327117543,
- .0057592114]
- bse = np.asarray(bse).reshape(3,-1)
- bse = np.hstack((bse[:,-1][:,None],bse[:,:-1:2],bse[:,1::2]))
- self.bse = bse
-
-
-
-#array([[ -2.79434736e-01, 6.75015752e-01, 3.32194508e-02,
-# 8.22108491e-03, 2.90457628e-01, -7.32090753e-03,
-# 1.52697235e-03],
-# [ -1.00467978e-01, 2.68639553e-01, 2.57387265e-02,
-# -1.23173928e-01, 2.32499436e-01, 2.35037610e-02,
-# 5.45960305e-03],
-# [ -1.97097367e+00, 4.41416233e+00, 2.25478953e-01,
-# 3.80785849e-01, 8.00280918e-01, -1.24079062e-01,
-# -2.39025209e-02]])
-
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var_data.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var_data.py
deleted file mode 100644
index 5485f72..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/tests/results/results_var_data.py
+++ /dev/null
@@ -1,97 +0,0 @@
-import numpy as np
-from numpy import array, rec, inf, nan
-
-
-class Holder(object):
- pass
-
-
-var_results = Holder()
-var_results.comment = 'VAR test data converted from vars_results.npz'
-var_results.causality = array([(9.317172089406967e-08,), (0.5183914225971917,), (4.8960835385969403e-14,)],
- dtype=[('causedby', '>> make_lag_names(['foo', 'bar'], 2, 1)
- ['const', 'L1.foo', 'L1.bar', 'L2.foo', 'L2.bar']
-
- """
- lag_names = []
-
- # take care of lagged endogenous names
- for i in range(1, lag_order + 1):
- for name in names:
- lag_names.append('L'+str(i)+'.'+name)
-
- # handle the constant name
- if trendorder != 0:
- lag_names.insert(0, 'const')
- if trendorder > 1:
- lag_names.insert(0, 'trend')
- if trendorder > 2:
- lag_names.insert(0, 'trend**2')
-
- return lag_names
-
-def comp_matrix(coefs):
- """
- Return compansion matrix for the VAR(1) representation for a VAR(p) process
- (companion form)
-
- A = [A_1 A_2 ... A_p-1 A_p
- I_K 0 0 0
- 0 I_K ... 0 0
- 0 ... I_K 0]
- """
- p, k, k2 = coefs.shape
- assert(k == k2)
-
- kp = k * p
-
- result = np.zeros((kp, kp))
- result[:k] = np.concatenate(coefs, axis=1)
-
- # Set I_K matrices
- if p > 1:
- result[np.arange(k, kp), np.arange(kp-k)] = 1
-
- return result
-
-#-------------------------------------------------------------------------------
-# Miscellaneous stuff
-
-def parse_lutkepohl_data(path): # pragma: no cover
- """
- Parse data files from Lutkepohl (2005) book
-
- Source for data files: www.jmulti.de
- """
-
- from collections import deque
- from datetime import datetime
- import pandas
- import pandas.core.datetools as dt
- import re
-
- regex = re.compile('<(.*) (\w)([\d]+)>.*')
- lines = deque(open(path))
-
- to_skip = 0
- while '*/' not in lines.popleft():
- to_skip += 1
-
- while True:
- to_skip += 1
- line = lines.popleft()
- m = regex.match(line)
- if m:
- year, freq, start_point = m.groups()
- break
-
- data = np.genfromtxt(path, names=True, skip_header=to_skip+1)
-
- n = len(data)
-
- # generate the corresponding date range (using pandas for now)
- start_point = int(start_point)
- year = int(year)
-
- offsets = {
- 'Q' : dt.BQuarterEnd(),
- 'M' : dt.BMonthEnd(),
- 'A' : dt.BYearEnd()
- }
-
- # create an instance
- offset = offsets[freq]
-
- inc = offset * (start_point - 1)
- start_date = offset.rollforward(datetime(year, 1, 1)) + inc
-
- offset = offsets[freq]
- date_range = pandas.DateRange(start_date, offset=offset, periods=n)
-
- return data, date_range
-
-def get_logdet(m):
- from scikits.statsmodels.tools.compatibility import np_slogdet
- logdet = np_slogdet(m)
-
- if logdet[0] == -1: # pragma: no cover
- raise ValueError("Matrix is not positive definite")
- elif logdet[0] == 0: # pragma: no cover
- raise ValueError("Matrix is singular")
- else:
- logdet = logdet[1]
-
- return logdet
-
-def norm_signif_level(alpha=0.05):
- return stats.norm.ppf(1 - alpha / 2)
-
-
-def acf_to_acorr(acf):
- diag = np.diag(acf[0])
- # numpy broadcasting sufficient
- return acf / np.sqrt(np.outer(diag, diag))
-
-
-def varsim(coefs, intercept, sig_u, steps=100, initvalues=None, seed=None):
- """
- Simulate simple VAR(p) process with known coefficients, intercept, white
- noise covariance, etc.
- """
- if seed is not None:
- np.random.seed(seed=seed)
- from numpy.random import multivariate_normal as rmvnorm
- p, k, k = coefs.shape
- ugen = rmvnorm(np.zeros(len(sig_u)), sig_u, steps)
- result = np.zeros((steps, k))
- result[p:] = intercept + ugen[p:]
-
- # add in AR terms
- for t in xrange(p, steps):
- ygen = result[t]
- for j in xrange(p):
- ygen += np.dot(coefs[j], result[t-j-1])
-
- return result
-
-def get_index(lst, name):
- try:
- result = lst.index(name)
- except Exception:
- if not isinstance(name, int):
- raise
- result = name
- return result
-
diff --git a/statsmodels/scikits/statsmodels/tsa/vector_ar/var_model.py b/statsmodels/scikits/statsmodels/tsa/vector_ar/var_model.py
deleted file mode 100644
index e70b31e..0000000
--- a/statsmodels/scikits/statsmodels/tsa/vector_ar/var_model.py
+++ /dev/null
@@ -1,1608 +0,0 @@
-"""
-Vector Autoregression (VAR) processes
-
-References
-----------
-Lutkepohl (2005) New Introduction to Multiple Time Series Analysis
-"""
-
-from __future__ import division
-
-from collections import defaultdict
-from cStringIO import StringIO
-
-import numpy as np
-import numpy.linalg as npl
-from numpy.linalg import cholesky as chol, solve
-import scipy.stats as stats
-import scipy.linalg as L
-
-from scikits.statsmodels.tools.decorators import cache_readonly
-from scikits.statsmodels.tools.tools import chain_dot
-from scikits.statsmodels.tsa.tsatools import vec, unvec
-
-from scikits.statsmodels.tsa.vector_ar.irf import IRAnalysis
-from scikits.statsmodels.tsa.vector_ar.output import VARSummary
-
-import scikits.statsmodels.tsa.tsatools as tsa
-import scikits.statsmodels.tsa.vector_ar.output as output
-import scikits.statsmodels.tsa.vector_ar.plotting as plotting
-import scikits.statsmodels.tsa.vector_ar.util as util
-import scikits.statsmodels.tsa.base.tsa_model as tsbase
-import scikits.statsmodels.base.wrapper as wrap
-
-mat = np.array
-
-#-------------------------------------------------------------------------------
-# VAR process routines
-
-def ma_rep(coefs, maxn=10):
- r"""
- MA(\infty) representation of VAR(p) process
-
- Parameters
- ----------
- coefs : ndarray (p x k x k)
- maxn : int
- Number of MA matrices to compute
-
- Notes
- -----
- VAR(p) process as
-
- .. math:: y_t = A_1 y_{t-1} + \ldots + A_p y_{t-p} + u_t
-
- can be equivalently represented as
-
- .. math:: y_t = \mu + \sum_{i=0}^\infty \Phi_i u_{t-i}
-
- e.g. can recursively compute the \Phi_i matrices with \Phi_0 = I_k
-
- Returns
- -------
- phis : ndarray (maxn + 1 x k x k)
- """
- p, k, k = coefs.shape
- phis = np.zeros((maxn+1, k, k))
- phis[0] = np.eye(k)
-
- # recursively compute Phi matrices
- for i in xrange(1, maxn + 1):
- for j in xrange(1, i+1):
- if j > p:
- break
-
- phis[i] += np.dot(phis[i-j], coefs[j-1])
-
- return phis
-
-def is_stable(coefs, verbose=False):
- """
- Determine stability of VAR(p) system by examining the eigenvalues of the
- VAR(1) representation
-
- Parameters
- ----------
- coefs : ndarray (p x k x k)
-
- Returns
- -------
- is_stable : bool
- """
- A_var1 = util.comp_matrix(coefs)
- eigs = np.linalg.eigvals(A_var1)
-
- if verbose:
- print 'Eigenvalues of VAR(1) rep'
- for val in np.abs(eigs):
- print val
-
- return (np.abs(eigs) <= 1).all()
-
-def var_acf(coefs, sig_u, nlags=None):
- """
- Compute autocovariance function ACF_y(h) up to nlags of stable VAR(p)
- process
-
- Parameters
- ----------
- coefs : ndarray (p x k x k)
- Coefficient matrices A_i
- sig_u : ndarray (k x k)
- Covariance of white noise process u_t
- nlags : int, optional
- Defaults to order p of system
-
- Notes
- -----
- Ref: Lutkepohl p.28-29
-
- Returns
- -------
- acf : ndarray, (p, k, k)
- """
- p, k, _ = coefs.shape
- if nlags is None:
- nlags = p
-
- # p x k x k, ACF for lags 0, ..., p-1
- result = np.zeros((nlags + 1, k, k))
- result[:p] = _var_acf(coefs, sig_u)
-
- # yule-walker equations
- for h in xrange(p, nlags + 1):
- # compute ACF for lag=h
- # G(h) = A_1 G(h-1) + ... + A_p G(h-p)
-
- for j in xrange(p):
- result[h] += np.dot(coefs[j], result[h-j-1])
-
- return result
-
-def _var_acf(coefs, sig_u):
- """
- Compute autocovariance function ACF_y(h) for h=1,...,p
-
- Notes
- -----
- Lutkepohl (2005) p.29
- """
- p, k, k2 = coefs.shape
- assert(k == k2)
-
- A = util.comp_matrix(coefs)
- # construct VAR(1) noise covariance
- SigU = np.zeros((k*p, k*p))
- SigU[:k,:k] = sig_u
-
- # vec(ACF) = (I_(kp)^2 - kron(A, A))^-1 vec(Sigma_U)
- vecACF = L.solve(np.eye((k*p)**2) - np.kron(A, A), vec(SigU))
-
- acf = unvec(vecACF)
- acf = acf[:k].T.reshape((p, k, k))
-
- return acf
-
-def forecast(y, coefs, intercept, steps):
- """
- Produce linear MSE forecast
-
- Parameters
- ----------
- y :
- coefs :
- intercept :
- steps :
-
- Returns
- -------
- forecasts : ndarray (steps x neqs)
-
- Notes
- -----
- Lutkepohl p. 37
-
- Also used by DynamicVAR class
- """
- p = len(coefs)
- k = len(coefs[0])
- # initial value
- forcs = np.zeros((steps, k)) + intercept
-
- # h=0 forecast should be latest observation
- # forcs[0] = y[-1]
-
- # make indices easier to think about
- for h in xrange(1, steps + 1):
- # y_t(h) = intercept + sum_1^p A_i y_t_(h-i)
- f = forcs[h - 1]
- for i in xrange(1, p + 1):
- # slightly hackish
- if h - i <= 0:
- # e.g. when h=1, h-1 = 0, which is y[-1]
- prior_y = y[h - i - 1]
- else:
- # e.g. when h=2, h-1=1, which is forcs[0]
- prior_y = forcs[h - i - 1]
-
- # i=1 is coefs[0]
- f = f + np.dot(coefs[i - 1], prior_y)
- forcs[h - 1] = f
-
- return forcs
-
-def forecast_cov(ma_coefs, sig_u, steps):
- """
- Compute theoretical forecast error variance matrices
-
- Parameters
- ----------
-
- Returns
- -------
- forc_covs : ndarray (steps x neqs x neqs)
- """
- k = len(sig_u)
- forc_covs = np.zeros((steps, k, k))
-
- prior = np.zeros((k, k))
- for h in xrange(steps):
- # Sigma(h) = Sigma(h-1) + Phi Sig_u Phi'
- phi = ma_coefs[h]
- var = chain_dot(phi, sig_u, phi.T)
- forc_covs[h] = prior = prior + var
-
- return forc_covs
-
-def var_loglike(resid, omega, nobs):
- r"""
- Returns the value of the VAR(p) log-likelihood.
-
- Parameters
- ----------
- resid : ndarray (T x K)
- omega : ndarray
- Sigma hat matrix. Each element i,j is the average product of the
- OLS residual for variable i and the OLS residual for variable j or
- np.dot(resid.T,resid)/nobs. There should be no correction for the
- degrees of freedom.
- nobs : int
-
- Returns
- -------
- llf : float
- The value of the loglikelihood function for a VAR(p) model
-
- Notes
- -----
- The loglikelihood function for the VAR(p) is
-
- .. math::
-
- -\left(\frac{T}{2}\right)
- \left(\ln\left|\Omega\right|-K\ln\left(2\pi\right)-K\right)
- """
- logdet = util.get_logdet(np.asarray(omega))
- neqs = len(omega)
- part1 = - (nobs * neqs / 2) * np.log(2 * np.pi)
- part2 = - (nobs / 2) * (logdet + neqs)
- return part1 + part2
-
-def _reordered(self, order):
- #Create new arrays to hold rearranged results from .fit()
- endog = self.endog
- endog_lagged = self.endog_lagged
- params = self.params
- sigma_u = self.sigma_u
- names = self.names
- k_ar = self.k_ar
- endog_new = np.zeros([np.size(endog,0),np.size(endog,1)])
- endog_lagged_new = np.zeros([np.size(endog_lagged,0), np.size(endog_lagged,1)])
- params_new_inc, params_new = [np.zeros([np.size(params,0), np.size(params,1)])
- for i in range(2)]
- sigma_u_new_inc, sigma_u_new = [np.zeros([np.size(sigma_u,0), np.size(sigma_u,1)])
- for i in range(2)]
- num_end = len(self.params[0])
- names_new = []
-
- #Rearrange elements and fill in new arrays
- k = self.k_trend
- for i, c in enumerate(order):
- endog_new[:,i] = self.endog[:,c]
- if k > 0:
- params_new_inc[0,i] = params[0,i]
- endog_lagged_new[:,0] = endog_lagged[:,0]
- for j in range(k_ar):
- params_new_inc[i+j*num_end+k,:] = self.params[c+j*num_end+k,:]
- endog_lagged_new[:,i+j*num_end+k] = endog_lagged[:,c+j*num_end+k]
- sigma_u_new_inc[i,:] = sigma_u[c,:]
- names_new.append(names[c])
- for i, c in enumerate(order):
- params_new[:,i] = params_new_inc[:,c]
- sigma_u_new[:,i] = sigma_u_new_inc[:,c]
-
- return VARResults(endog=endog_new, endog_lagged=endog_lagged_new,
- params=params_new, sigma_u=sigma_u_new,
- lag_order=self.k_ar, model=self.model,
- trend='c', names=names_new, dates=self.dates)
-
-#-------------------------------------------------------------------------------
-# VARProcess class: for known or unknown VAR process
-
-class VAR(tsbase.TimeSeriesModel):
- r"""
- Fit VAR(p) process and do lag order selection
-
- .. math:: y_t = A_1 y_{t-1} + \ldots + A_p y_{t-p} + u_t
-
- Parameters
- ----------
- endog : np.ndarray (structured or homogeneous) or DataFrame
- names : array-like
- must match number of columns of endog
- dates : array-like
- must match number of rows of endog
-
- Notes
- -----
- **References**
- Lutkepohl (2005) New Introduction to Multiple Time Series Analysis
-
- Returns
- -------
- .fit() method returns VARResults object
- """
- def __init__(self, endog, dates=None, names=None, freq=None):
- super(VAR, self).__init__(endog, None, dates, freq)
- if names is not None:
- import warnings
- warnings.warn("The names argument is deprecated and will be "
- "removed in the next release.", FutureWarning)
- self.names = names
- else:
- self.names = self.endog_names
- self.y = self.endog #keep alias for now
- self.neqs = self.endog.shape[1]
-
- def _get_predict_start(self, start, k_ar):
- if start is None:
- start = k_ar
- return super(VAR, self)._get_predict_start(start)
-
- def predict(self, params, start=None, end=None, lags=1, trend='c'):
- """
- Returns in-sample predictions or forecasts
- """
- start = self._get_predict_start(start, lags)
- end, out_of_sample = self._get_predict_end(end)
-
- if end < start:
- raise ValueError("end is before start")
- if end == start + out_of_sample:
- return np.array([])
-
- k_trend = util.get_trendorder(trend)
- k = self.neqs
- k_ar = lags
-
- predictedvalues = np.zeros((end + 1 - start + out_of_sample, k))
- if k_trend != 0:
- intercept = params[:k_trend]
- predictedvalues += intercept
-
- y = self.y
- X = util.get_var_endog(y, lags, trend=trend)
- fittedvalues = np.dot(X, params)
-
- fv_start = start - k_ar
- pv_end = min(len(predictedvalues), len(fittedvalues) - fv_start)
- fv_end = min(len(fittedvalues), end-k_ar+1)
- predictedvalues[:pv_end] = fittedvalues[fv_start:fv_end]
-
- if not out_of_sample:
- return predictedvalues
-
- # fit out of sample
- y = y[-k_ar:]
- coefs = params[k_trend:].reshape((k_ar, k, k)).swapaxes(1,2)
- predictedvalues[pv_end:] = forecast(y, coefs, intercept, out_of_sample)
- return predictedvalues
-
- def fit(self, maxlags=None, method='ols', ic=None, trend='c',
- verbose=False):
- """
- Fit the VAR model
-
- Parameters
- ----------
- maxlags : int
- Maximum number of lags to check for order selection, defaults to
- 12 * (nobs/100.)**(1./4), see select_order function
- method : {'ols'}
- Estimation method to use
- ic : {'aic', 'fpe', 'hqic', 'bic', None}
- Information criterion to use for VAR order selection.
- aic : Akaike
- fpe : Final prediction error
- hqic : Hannan-Quinn
- bic : Bayesian a.k.a. Schwarz
- verbose : bool, default False
- Print order selection output to the screen
- trend, str {"c", "ct", "ctt", "nc"}
- "c" - add constant
- "ct" - constant and trend
- "ctt" - constant, linear and quadratic trend
- "nc" - co constant, no trend
- Note that these are prepended to the columns of the dataset.
-
- Notes
- -----
- Lutkepohl pp. 146-153
-
- Returns
- -------
- est : VARResults
- """
- lags = maxlags
-
- if ic is not None:
- selections = self.select_order(maxlags=maxlags, verbose=verbose)
- if ic not in selections:
- raise Exception("%s not recognized, must be among %s"
- % (ic, sorted(selections)))
- lags = selections[ic]
- if verbose:
- print 'Using %d based on %s criterion' % (lags, ic)
- else:
- if lags is None:
- lags = 1
-
- k_trend = util.get_trendorder(trend)
- self.exog_names = util.make_lag_names(self.endog_names, lags, k_trend)
- self.nobs = len(self.endog) - lags
-
- return self._estimate_var(lags, trend=trend)
-
- def _estimate_var(self, lags, offset=0, trend='c'):
- """
- lags : int
- offset : int
- Periods to drop from beginning-- for order selection so it's an
- apples-to-apples comparison
- trend : string or None
- As per above
- """
- # have to do this again because select_order doesn't call fit
- self.k_trend = k_trend = util.get_trendorder(trend)
-
- if offset < 0: # pragma: no cover
- raise ValueError('offset must be >= 0')
-
- y = self.y[offset:]
-
- z = util.get_var_endog(y, lags, trend=trend)
- y_sample = y[lags:]
-
- # Lutkepohl p75, about 5x faster than stated formula
- params = np.linalg.lstsq(z, y_sample)[0]
- resid = y_sample - np.dot(z, params)
-
- # Unbiased estimate of covariance matrix $\Sigma_u$ of the white noise
- # process $u$
- # equivalent definition
- # .. math:: \frac{1}{T - Kp - 1} Y^\prime (I_T - Z (Z^\prime Z)^{-1}
- # Z^\prime) Y
- # Ref: Lutkepohl p.75
- # df_resid right now is T - Kp - 1, which is a suggested correction
-
- avobs = len(y_sample)
-
- df_resid = avobs - (self.neqs * lags + k_trend)
-
- sse = np.dot(resid.T, resid)
- omega = sse / df_resid
-
- varfit = VARResults(y, z, params, omega, lags, names=self.endog_names,
- trend=trend, dates=self._data.dates, model=self)
- return VARResultsWrapper(varfit)
-
- def select_order(self, maxlags=None, verbose=True):
- """
- Compute lag order selections based on each of the available information
- criteria
-
- Parameters
- ----------
- maxlags : int
- if None, defaults to 12 * (nobs/100.)**(1./4)
- verbose : bool, default True
- If True, print table of info criteria and selected orders
-
- Returns
- -------
- selections : dict {info_crit -> selected_order}
- """
- if maxlags is None:
- maxlags = int(round(12*(len(self.endog)/100.)**(1/4.)))
-
- ics = defaultdict(list)
- for p in range(maxlags + 1):
- # exclude some periods to same amount of data used for each lag
- # order
- result = self._estimate_var(p, offset=maxlags-p)
-
- for k, v in result.info_criteria.iteritems():
- ics[k].append(v)
-
- selected_orders = dict((k, mat(v).argmin())
- for k, v in ics.iteritems())
-
- if verbose:
- output.print_ic_table(ics, selected_orders)
-
- return selected_orders
-
-class VARProcess(object):
- """
- Class represents a known VAR(p) process
-
- Parameters
- ----------
- coefs : ndarray (p x k x k)
- intercept : ndarray (length k)
- sigma_u : ndarray (k x k)
- names : sequence (length k)
-
- Returns
- -------
- **Attributes**:
- """
- def __init__(self, coefs, intercept, sigma_u, names=None):
- self.k_ar = len(coefs)
- self.neqs = coefs.shape[1]
- self.coefs = coefs
- self.intercept = intercept
- self.sigma_u = sigma_u
- self.names = names
-
- def get_eq_index(self, name):
- "Return integer position of requested equation name"
- return util.get_index(self.names, name)
-
- def __str__(self):
- output = ('VAR(%d) process for %d-dimensional response y_t'
- % (self.k_ar, self.neqs))
- output += '\nstable: %s' % self.is_stable()
- output += '\nmean: %s' % self.mean()
-
- return output
-
- def is_stable(self, verbose=False):
- """Determine stability based on model coefficients
-
- Parameters
- ----------
- verbose : bool
- Print eigenvalues of the VAR(1) companion
-
- Notes
- -----
- Checks if det(I - Az) = 0 for any mod(z) <= 1, so all the eigenvalues of
- the companion matrix must lie outside the unit circle
- """
- return is_stable(self.coefs, verbose=verbose)
-
- def plotsim(self, steps=1000):
- """
- Plot a simulation from the VAR(p) process for the desired number of
- steps
- """
- Y = util.varsim(self.coefs, self.intercept, self.sigma_u, steps=steps)
- plotting.plot_mts(Y)
-
- def mean(self):
- r"""Mean of stable process
-
- Lutkepohl eq. 2.1.23
-
- .. math:: \mu = (I - A_1 - \dots - A_p)^{-1} \alpha
- """
- return solve(self._char_mat, self.intercept)
-
- def ma_rep(self, maxn=10):
- r"""Compute MA(:math:`\infty`) coefficient matrices
-
- Parameters
- ----------
- maxn : int
- Number of coefficient matrices to compute
-
- Returns
- -------
- coefs : ndarray (maxn x k x k)
- """
- return ma_rep(self.coefs, maxn=maxn)
-
- def orth_ma_rep(self, maxn=10, P=None):
- r"""Compute Orthogonalized MA coefficient matrices using P matrix such
- that :math:`\Sigma_u = PP^\prime`. P defaults to the Cholesky
- decomposition of :math:`\Sigma_u`
-
- Parameters
- ----------
- maxn : int
- Number of coefficient matrices to compute
- P : ndarray (k x k), optional
- Matrix such that Sigma_u = PP', defaults to Cholesky descomp
-
- Returns
- -------
- coefs : ndarray (maxn x k x k)
- """
- if P is None:
- P = self._chol_sigma_u
-
- ma_mats = self.ma_rep(maxn=maxn)
- return mat([np.dot(coefs, P) for coefs in ma_mats])
-
- def long_run_effects(self):
- """Compute long-run effect of unit impulse
-
- .. math::
-
- \Psi_\infty = \sum_{i=0}^\infty \Phi_i
-
- """
- return L.inv(self._char_mat)
-
- @cache_readonly
- def _chol_sigma_u(self):
- return chol(self.sigma_u)
-
- @cache_readonly
- def _char_mat(self):
- return np.eye(self.neqs) - self.coefs.sum(0)
-
- def acf(self, nlags=None):
- """Compute theoretical autocovariance function
-
- Returns
- -------
- acf : ndarray (p x k x k)
- """
- return var_acf(self.coefs, self.sigma_u, nlags=nlags)
-
- def acorr(self, nlags=None):
- """Compute theoretical autocorrelation function
-
- Returns
- -------
- acorr : ndarray (p x k x k)
- """
- return util.acf_to_acorr(self.acf(nlags=nlags))
-
- def plot_acorr(self, nlags=10, linewidth=8):
- "Plot theoretical autocorrelation function"
- plotting.plot_full_acorr(self.acorr(nlags=nlags), linewidth=linewidth)
-
- def forecast(self, y, steps):
- """Produce linear minimum MSE forecasts for desired number of steps
- ahead, using prior values y
-
- Parameters
- ----------
- y : ndarray (p x k)
- steps : int
-
- Returns
- -------
- forecasts : ndarray (steps x neqs)
-
- Notes
- -----
- Lutkepohl pp 37-38
- """
- return forecast(y, self.coefs, self.intercept, steps)
-
- def mse(self, steps):
- """
- Compute theoretical forecast error variance matrices
-
- Parameters
- ----------
- steps : int
- Number of steps ahead
-
- Notes
- -----
- .. math:: \mathrm{MSE}(h) = \sum_{i=0}^{h-1} \Phi \Sigma_u \Phi^T
-
- Returns
- -------
- forc_covs : ndarray (steps x neqs x neqs)
- """
- ma_coefs = self.ma_rep(steps)
-
- k = len(self.sigma_u)
- forc_covs = np.zeros((steps, k, k))
-
- prior = np.zeros((k, k))
- for h in xrange(steps):
- # Sigma(h) = Sigma(h-1) + Phi Sig_u Phi'
- phi = ma_coefs[h]
- var = chain_dot(phi, self.sigma_u, phi.T)
- forc_covs[h] = prior = prior + var
-
- return forc_covs
-
- forecast_cov = mse
-
- def _forecast_vars(self, steps):
- covs = self.forecast_cov(steps)
-
- # Take diagonal for each cov
- inds = np.arange(self.neqs)
- return covs[:, inds, inds]
-
- def forecast_interval(self, y, steps, alpha=0.05):
- """Construct forecast interval estimates assuming the y are Gaussian
-
- Parameters
- ----------
-
- Notes
- -----
- Lutkepohl pp. 39-40
-
- Returns
- -------
- (lower, mid, upper) : (ndarray, ndarray, ndarray)
- """
- assert(0 < alpha < 1)
- q = util.norm_signif_level(alpha)
-
- point_forecast = self.forecast(y, steps)
- sigma = np.sqrt(self._forecast_vars(steps))
-
- forc_lower = point_forecast - q * sigma
- forc_upper = point_forecast + q * sigma
-
- return point_forecast, forc_lower, forc_upper
-
-#-------------------------------------------------------------------------------
-# VARResults class
-
-
-class VARResults(VARProcess):
- """Estimate VAR(p) process with fixed number of lags
-
- Parameters
- ----------
- endog : array
- endog_lagged : array
- params : array
- sigma_u : array
- lag_order : int
- model : VAR model instance
- trend : str {'nc', 'c', 'ct'}
- names : array-like
- List of names of the endogenous variables in order of appearance in `endog`.
- dates
-
-
- Returns
- -------
- **Attributes**
- aic
- bic
- bse
- coefs : ndarray (p x K x K)
- Estimated A_i matrices, A_i = coefs[i-1]
- coef_names
- cov_params
- dates
- detomega
- df_model : int
- df_resid : int
- endog
- endog_lagged
- fittedvalues
- fpe
- intercept
- info_criteria
- k_ar : int
- k_trend : int
- llf
- model
- names
- neqs : int
- Number of variables (equations)
- nobs : int
- n_totobs : int
- params
- k_ar : int
- Order of VAR process
- params : ndarray (Kp + 1) x K
- A_i matrices and intercept in stacked form [int A_1 ... A_p]
- pvalues
- names : list
- variables names
- resid
- roots : array
- The roots of the VAR process are the solution to
- (I - coefs[0]*z - coefs[1]*z**2 ... - coefs[p-1]*z**k_ar) = 0.
- Note that the inverse roots are returned, and stability requires that
- the roots lie outside the unit circle.
- sigma_u : ndarray (K x K)
- Estimate of white noise process variance Var[u_t]
- sigma_u_mle
- stderr
- trenorder
- tvalues
- y :
- ys_lagged
- """
- _model_type = 'VAR'
-
- def __init__(self, endog, endog_lagged, params, sigma_u, lag_order,
- model=None, trend='c', names=None, dates=None):
-
- self.model = model
- self.y = self.endog = endog #keep alias for now
- self.ys_lagged = self.endog_lagged = endog_lagged #keep alias for now
- self.dates = dates
-
- self.n_totobs, neqs = self.y.shape
- self.nobs = self.n_totobs - lag_order
- k_trend = util.get_trendorder(trend)
- if k_trend > 0: # make this the polynomial trend order
- trendorder = k_trend - 1
- else:
- trendorder = None
- self.k_trend = k_trend
- self.trendorder = trendorder
-
- #TODO: deprecate coef_names
- self.coef_names = self.exog_names = util.make_lag_names(names,
- lag_order, k_trend)
- self.params = params
-
- # Initialize VARProcess parent class
- # construct coefficient matrices
- # Each matrix needs to be transposed
- reshaped = self.params[self.k_trend:]
- reshaped = reshaped.reshape((lag_order, neqs, neqs))
-
- # Need to transpose each coefficient matrix
- intercept = self.params[0]
- coefs = reshaped.swapaxes(1, 2).copy()
-
- super(VARResults, self).__init__(coefs, intercept, sigma_u, names=names)
-
- def plot(self):
- """Plot input time series
- """
- plotting.plot_mts(self.y, names=self.names, index=self.dates)
-
- @property
- def df_model(self):
- """Number of estimated parameters, including the intercept / trends
- """
- return self.neqs * self.k_ar + self.k_trend
-
- @property
- def df_resid(self):
- "Number of observations minus number of estimated parameters"
- return self.nobs - self.df_model
-
- @cache_readonly
- def fittedvalues(self):
- """The predicted insample values of the response variables of the model.
- """
- return np.dot(self.ys_lagged, self.params)
-
- @cache_readonly
- def resid(self):
- """Residuals of response variable resulting from estimated coefficients
- """
- return self.y[self.k_ar:] - self.fittedvalues
-
- def sample_acov(self, nlags=1):
- return _compute_acov(self.y[self.k_ar:], nlags=nlags)
-
- def sample_acorr(self, nlags=1):
- acovs = self.sample_acov(nlags=nlags)
- return _acovs_to_acorrs(acovs)
-
- def plot_sample_acorr(self, nlags=10, linewidth=8):
- "Plot theoretical autocorrelation function"
- plotting.plot_full_acorr(self.sample_acorr(nlags=nlags),
- linewidth=linewidth)
-
- def resid_acov(self, nlags=1):
- """
- Compute centered sample autocovariance (including lag 0)
-
- Parameters
- ----------
- nlags : int
-
- Returns
- -------
- """
- return _compute_acov(self.resid, nlags=nlags)
-
- def resid_acorr(self, nlags=1):
- """
- Compute sample autocorrelation (including lag 0)
-
- Parameters
- ----------
- nlags : int
-
- Returns
- -------
- """
- acovs = self.resid_acov(nlags=nlags)
- return _acovs_to_acorrs(acovs)
-
- @cache_readonly
- def resid_corr(self):
- "Centered residual correlation matrix"
- return self.resid_acorr(0)[0]
-
- @cache_readonly
- def sigma_u_mle(self):
- """(Biased) maximum likelihood estimate of noise process covariance
- """
- return self.sigma_u * self.df_resid / self.nobs
-
- @cache_readonly
- def cov_params(self):
- """Estimated variance-covariance of model coefficients
-
- Notes
- -----
- Covariance of vec(B), where B is the matrix
- [intercept, A_1, ..., A_p] (K x (Kp + 1))
- Adjusted to be an unbiased estimator
- Ref: Lutkepohl p.74-75
- """
- z = self.ys_lagged
- return np.kron(L.inv(np.dot(z.T, z)), self.sigma_u)
-
- def cov_ybar(self):
- r"""Asymptotically consistent estimate of covariance of the sample mean
-
- .. math::
-
- \sqrt(T) (\bar{y} - \mu) \rightarrow {\cal N}(0, \Sigma_{\bar{y}})\\
-
- \Sigma_{\bar{y}} = B \Sigma_u B^\prime, \text{where } B = (I_K - A_1
- - \cdots - A_p)^{-1}
-
- Notes
- -----
- Lutkepohl Proposition 3.3
- """
-
- Ainv = L.inv(np.eye(self.neqs) - self.coefs.sum(0))
- return chain_dot(Ainv, self.sigma_u, Ainv.T)
-
-#------------------------------------------------------------
-# Estimation-related things
-
- @cache_readonly
- def _zz(self):
- # Z'Z
- return np.dot(self.ys_lagged.T, self.ys_lagged)
-
- @property
- def _cov_alpha(self):
- """
- Estimated covariance matrix of model coefficients ex intercept
- """
- # drop intercept
- return self.cov_params[self.neqs:, self.neqs:]
-
- @cache_readonly
- def _cov_sigma(self):
- """
- Estimated covariance matrix of vech(sigma_u)
- """
- D_K = tsa.duplication_matrix(self.neqs)
- D_Kinv = npl.pinv(D_K)
-
- sigxsig = np.kron(self.sigma_u, self.sigma_u)
- return 2 * chain_dot(D_Kinv, sigxsig, D_Kinv.T)
-
- @cache_readonly
- def llf(self):
- "Compute VAR(p) loglikelihood"
- return var_loglike(self.resid, self.sigma_u_mle, self.nobs)
-
- @cache_readonly
- def stderr(self):
- """Standard errors of coefficients, reshaped to match in size
- """
- stderr = np.sqrt(np.diag(self.cov_params))
- return stderr.reshape((self.df_model, self.neqs), order='C')
-
- bse = stderr # statsmodels interface?
-
- @cache_readonly
- def tvalues(self):
- """Compute t-statistics. Use Student-t(T - Kp - 1) = t(df_resid) to test
- significance.
- """
- return self.params / self.stderr
-
- @cache_readonly
- def pvalues(self):
- """Two-sided p-values for model coefficients from Student t-distribution
- """
- return stats.t.sf(np.abs(self.tvalues), self.df_resid)*2
-
- def plot_forecast(self, steps, alpha=0.05, plot_stderr=True):
- """
- Plot forecast
- """
- mid, lower, upper = self.forecast_interval(self.y[-self.k_ar:], steps,
- alpha=alpha)
- plotting.plot_var_forc(self.y, mid, lower, upper, names=self.names,
- plot_stderr=plot_stderr)
-
- # Forecast error covariance functions
-
- def forecast_cov(self, steps=1):
- r"""Compute forecast covariance matrices for desired number of steps
-
- Parameters
- ----------
- steps : int
-
- Notes
- -----
- .. math:: \Sigma_{\hat y}(h) = \Sigma_y(h) + \Omega(h) / T
-
- Ref: Lutkepohl pp. 96-97
-
- Returns
- -------
- covs : ndarray (steps x k x k)
- """
- mse = self.mse(steps)
- omegas = self._omega_forc_cov(steps)
- return mse + omegas / self.nobs
-
- #Monte Carlo irf standard errors
- def stderr_MC_irf(self, orth=False, repl=1000, T=10, signif=0.05, seed=None):
- """
- Compute Monte Carlo standard errors assuming normally distributed for impulse response functions
-
- Notes
- -----
- Lutkepohl Appendix D
-
- Returns
- ------
- Tuple of lower and upper arrays of ma_rep monte carlo standard errors
-
- """
- if orth:
- raise NotImplementedError("Orthogonalized MC standard errors not available")
- #use mean for starting value
- neqs = self.neqs
- mean = self.mean()
- k_ar = self.k_ar
- coefs = self.coefs
- sigma_u = self.sigma_u
- intercept = self.intercept
- df_model = self.df_model
- nobs = self.nobs
- disc = 100 #number of simulated observations to discard
-
- ma_coll = np.zeros((repl, T+1, neqs, neqs))
- for i in range(repl):
- #discard first hundred to eliminate correct for starting bias
- sim = util.varsim(coefs, intercept, sigma_u, steps=nobs+disc)
- sim = sim[disc:]
- ma_coll[i,:,:,:] = VAR(sim).fit(maxlags=k_ar).ma_rep(maxn=T)
- ma_sort = np.sort(ma_coll, axis=0) #sort to get quantiles
- index = round(signif/2*repl)-1,round((1-signif/2)*repl)-1
- lower = ma_sort[index[0],:, :, :]
- upper = ma_sort[index[1],:, :, :]
- return lower, upper
-
- def _omega_forc_cov(self, steps):
- # Approximate MSE matrix \Omega(h) as defined in Lut p97
- G = self._zz
- Ginv = L.inv(G)
-
- # memoize powers of B for speedup
- # TODO: see if can memoize better
- B = self._bmat_forc_cov()
- _B = {}
- def bpow(i):
- if i not in _B:
- _B[i] = np.linalg.matrix_power(B, i)
-
- return _B[i]
-
- phis = self.ma_rep(steps)
- sig_u = self.sigma_u
-
- omegas = np.zeros((steps, self.neqs, self.neqs))
- for h in range(1, steps + 1):
- if h == 1:
- omegas[h-1] = self.df_model * self.sigma_u
- continue
-
- om = omegas[h-1]
- for i in range(h):
- for j in range(h):
- Bi = bpow(h - 1 - i)
- Bj = bpow(h - 1 - j)
- mult = np.trace(chain_dot(Bi.T, Ginv, Bj, G))
- om += mult * chain_dot(phis[i], sig_u, phis[j].T)
- omegas[h-1] = om
-
- return omegas
-
- def _bmat_forc_cov(self):
- # B as defined on p. 96 of Lut
- upper = np.zeros((1, self.df_model))
- upper[0,0] = 1
-
- lower_dim = self.neqs * (self.k_ar - 1)
- I = np.eye(lower_dim)
- lower = np.column_stack((np.zeros((lower_dim, 1)), I,
- np.zeros((lower_dim, self.neqs))))
-
- return np.vstack((upper, self.params.T, lower))
-
- def summary(self):
- """Compute console output summary of estimates
-
- Returns
- -------
- summary : VARSummary
- """
- return VARSummary(self)
-
- def irf(self, periods=10, var_decomp=None, var_order=None):
- """Analyze impulse responses to shocks in system
-
- Parameters
- ----------
- periods : int
- var_decomp : ndarray (k x k), lower triangular
- Must satisfy Omega = P P', where P is the passed matrix. Defaults to
- Cholesky decomposition of Omega
- var_order : sequence
- Alternate variable order for Cholesky decomposition
-
- Returns
- -------
- irf : IRAnalysis
- """
- if var_order is not None:
- raise NotImplementedError('alternate variable order not implemented'
- ' (yet)')
-
- return IRAnalysis(self, P=var_decomp, periods=periods)
-
- def fevd(self, periods=10, var_decomp=None):
- """
- Compute forecast error variance decomposition ("fevd")
-
- Returns
- -------
- fevd : FEVD instance
- """
- return FEVD(self, P=var_decomp, periods=periods)
-
- def reorder(self, order):
- """Reorder variables for structural specification
- """
- if len(order) != len(self.params[0,:]):
- raise ValueError("Reorder specification length should match number of endogenous variables")
- #This convert order to list of integers if given as strings
- if type(order[0]) is str:
- order_new = []
- for i, nam in enumerate(order):
- order_new.append(self.names.index(order[i]))
- order = order_new
- return _reordered(self, order)
-
-#-------------------------------------------------------------------------------
-# VAR Diagnostics: Granger-causality, whiteness of residuals, normality, etc.
-
- def test_causality(self, equation, variables, kind='f', signif=0.05,
- verbose=True):
- """Compute test statistic for null hypothesis of Granger-noncausality,
- general function to test joint Granger-causality of multiple variables
-
- Parameters
- ----------
- equation : string or int
- Equation to test for causality
- variables : sequence (of strings or ints)
- List, tuple, etc. of variables to test for Granger-causality
- kind : {'f', 'wald'}
- Perform F-test or Wald (chi-sq) test
- signif : float, default 5%
- Significance level for computing critical values for test,
- defaulting to standard 0.95 level
-
- Notes
- -----
- Null hypothesis is that there is no Granger-causality for the indicated
- variables. The degrees of freedom in the F-test are based on the
- number of variables in the VAR system, that is, degrees of freedom
- are equal to the number of equations in the VAR times degree of freedom
- of a single equation.
-
- Returns
- -------
- results : dict
- """
- if isinstance(variables, (basestring, int, np.integer)):
- variables = [variables]
-
- k, p = self.neqs, self.k_ar
-
- # number of restrictions
- N = len(variables) * self.k_ar
-
- # Make restriction matrix
- C = np.zeros((N, k ** 2 * p + k), dtype=float)
-
- eq_index = self.get_eq_index(equation)
- vinds = mat([self.get_eq_index(v) for v in variables])
-
- # remember, vec is column order!
- offsets = np.concatenate([k + k ** 2 * j + k * vinds + eq_index
- for j in range(p)])
- C[np.arange(N), offsets] = 1
-
- # Lutkepohl 3.6.5
- Cb = np.dot(C, vec(self.params.T))
- middle = L.inv(chain_dot(C, self.cov_params, C.T))
-
- # wald statistic
- lam_wald = statistic = chain_dot(Cb, middle, Cb)
-
- if kind.lower() == 'wald':
- df = N
- dist = stats.chi2(df)
- elif kind.lower() == 'f':
- statistic = lam_wald / N
- df = (N, k * self.df_resid)
- dist = stats.f(*df)
- else:
- raise Exception('kind %s not recognized' % kind)
-
- pvalue = dist.sf(statistic)
- crit_value = dist.ppf(1 - signif)
-
- conclusion = 'fail to reject' if statistic < crit_value else 'reject'
- results = {
- 'statistic' : statistic,
- 'crit_value' : crit_value,
- 'pvalue' : pvalue,
- 'df' : df,
- 'conclusion' : conclusion,
- 'signif' : signif
- }
-
- if verbose:
- summ = output.causality_summary(results, variables, equation, kind)
-
- print summ
-
- return results
-
- def test_whiteness(self, nlags=10, plot=True, linewidth=8):
- """
- Test white noise assumption. Sample (Y) autocorrelations are compared
- with the standard :math:`2 / \sqrt(T)` bounds.
-
- Parameters
- ----------
- plot : boolean, default True
- Plot autocorrelations with 2 / sqrt(T) bounds
- """
- acorrs = self.sample_acorr(nlags)
- bound = 2 / np.sqrt(self.nobs)
-
- # TODO: this probably needs some UI work
-
- if (np.abs(acorrs) > bound).any():
- print ('FAIL: Some autocorrelations exceed %.4f bound. '
- 'See plot' % bound)
- else:
- print 'PASS: No autocorrelations exceed %.4f bound' % bound
-
- if plot:
- fig = plotting.plot_full_acorr(acorrs[1:],
- xlabel=np.arange(1, nlags+1),
- err_bound=bound,
- linewidth=linewidth)
- fig.suptitle(r"ACF plots with $2 / \sqrt{T}$ bounds "
- "for testing whiteness assumption")
-
- def test_normality(self, signif=0.05, verbose=True):
- """
- Test assumption of normal-distributed errors using Jarque-Bera-style
- omnibus Chi^2 test
-
- Parameters
- ----------
- signif : float
- Test significance threshold
-
- Notes
- -----
- H0 (null) : data are generated by a Gaussian-distributed process
- """
- Pinv = npl.inv(self._chol_sigma_u)
-
- w = np.array([np.dot(Pinv, u) for u in self.resid])
-
- b1 = (w ** 3).sum(0) / self.nobs
- lam_skew = self.nobs * np.dot(b1, b1) / 6
-
- b2 = (w ** 4).sum(0) / self.nobs - 3
- lam_kurt = self.nobs * np.dot(b2, b2) / 24
-
- lam_omni = lam_skew + lam_kurt
-
- omni_dist = stats.chi2(self.neqs * 2)
- omni_pvalue = omni_dist.sf(lam_omni)
- crit_omni = omni_dist.ppf(1 - signif)
-
- conclusion = 'fail to reject' if lam_omni < crit_omni else 'reject'
-
- results = {
- 'statistic' : lam_omni,
- 'crit_value' : crit_omni,
- 'pvalue' : omni_pvalue,
- 'df' : self.neqs * 2,
- 'conclusion' : conclusion,
- 'signif' : signif
- }
-
- if verbose:
- summ = output.normality_summary(results)
- print summ
-
- return results
-
- @cache_readonly
- def detomega(self):
- r"""
- Return determinant of white noise covariance with degrees of freedom
- correction:
-
- .. math::
-
- \hat \Omega = \frac{T}{T - Kp - 1} \hat \Omega_{\mathrm{MLE}}
- """
- return L.det(self.sigma_u)
-
- @cache_readonly
- def info_criteria(self):
- "information criteria for lagorder selection"
- nobs = self.nobs
- neqs = self.neqs
- lag_order = self.k_ar
- free_params = lag_order * neqs ** 2 + neqs * self.k_trend
-
- ld = util.get_logdet(self.sigma_u_mle)
-
- # See Lutkepohl pp. 146-150
-
- aic = ld + (2. / nobs) * free_params
- bic = ld + (np.log(nobs) / nobs) * free_params
- hqic = ld + (2. * np.log(np.log(nobs)) / nobs) * free_params
- fpe = ((nobs + self.df_model) / self.df_resid) ** neqs * np.exp(ld)
-
- return {
- 'aic' : aic,
- 'bic' : bic,
- 'hqic' : hqic,
- 'fpe' : fpe
- }
-
- @property
- def aic(self):
- "Akaike information criterion"
- return self.info_criteria['aic']
-
- @property
- def fpe(self):
- """Final Prediction Error (FPE)
-
- Lutkepohl p. 147, see info_criteria
- """
- return self.info_criteria['fpe']
-
- @property
- def hqic(self):
- "Hannan-Quinn criterion"
- return self.info_criteria['hqic']
-
- @property
- def bic(self):
- "Bayesian a.k.a. Schwarz info criterion"
- return self.info_criteria['bic']
-
- @cache_readonly
- def roots(self):
- neqs = self.neqs
- k_ar = self.k_ar
- p = neqs * k_ar
- arr = np.zeros((p,p))
- arr[:neqs,:] = np.column_stack(self.coefs)
- arr[neqs:,:-neqs] = np.eye(p-neqs)
- roots = np.linalg.eig(arr)[0]**-1
- idx = np.argsort(np.abs(roots))[::-1] # sort by reverse modulus
- return roots[idx]
-
-class VARResultsWrapper(wrap.ResultsWrapper):
- _attrs = {'bse' : 'columns_eq', 'cov_params' : 'cov',
- 'params' : 'columns_eq', 'pvalues' : 'columns_eq',
- 'tvalues' : 'columns_eq', 'sigma_u' : 'cov_eq',
- 'sigma_u_mle' : 'cov_eq',
- 'stderr' : 'columns_eq'}
- _wrap_attrs = wrap.union_dicts(tsbase.TimeSeriesResultsWrapper._wrap_attrs,
- _attrs)
- _methods = {}
- _wrap_methods = wrap.union_dicts(tsbase.TimeSeriesResultsWrapper._wrap_methods,
- _methods)
- _wrap_methods.pop('cov_params') # not yet a method in VARResults
-wrap.populate_wrapper(VARResultsWrapper, VARResults)
-
-class FEVD(object):
- """
- Compute and plot Forecast error variance decomposition and asymptotic
- standard errors
- """
- def __init__(self, model, P=None, periods=None):
- self.periods = periods
-
- self.model = model
- self.neqs = model.neqs
- self.names = model.names
-
- self.irfobj = model.irf(var_decomp=P, periods=periods)
- self.orth_irfs = self.irfobj.orth_irfs
-
- # cumulative impulse responses
- irfs = (self.orth_irfs[:periods] ** 2).cumsum(axis=0)
-
- rng = range(self.neqs)
- mse = self.model.mse(periods)[:, rng, rng]
-
- # lag x equation x component
- fevd = np.empty_like(irfs)
-
- for i in range(periods):
- fevd[i] = (irfs[i].T / mse[i]).T
-
- # switch to equation x lag x component
- self.decomp = fevd.swapaxes(0, 1)
-
- def summary(self):
- buf = StringIO()
-
- rng = range(self.periods)
- for i in range(self.neqs):
- ppm = output.pprint_matrix(self.decomp[i], rng, self.names)
-
- print >> buf, 'FEVD for %s' % self.names[i]
- print >> buf, ppm
-
- print buf.getvalue()
-
- def cov(self):
- """Compute asymptotic standard errors
-
- Returns
- -------
- """
- raise NotImplementedError
-
- def plot(self, periods=None, figsize=(10,10), **plot_kwds):
- """Plot graphical display of FEVD
-
- Parameters
- ----------
- periods : int, default None
- Defaults to number originally specified. Can be at most that number
- """
- import matplotlib.pyplot as plt
-
- k = self.neqs
- periods = periods or self.periods
-
- fig, axes = plt.subplots(nrows=k, figsize=figsize)
-
- fig.suptitle('Forecast error variance decomposition (FEVD)')
-
- colors = [str(c) for c in np.arange(k, dtype=float) / k]
- ticks = np.arange(periods)
-
- limits = self.decomp.cumsum(2)
-
- for i in range(k):
- ax = axes[i]
-
- this_limits = limits[i].T
-
- handles = []
-
- for j in range(k):
- lower = this_limits[j - 1] if j > 0 else 0
- upper = this_limits[j]
- handle = ax.bar(ticks, upper - lower, bottom=lower,
- color=colors[j], label=self.names[j],
- **plot_kwds)
-
- handles.append(handle)
-
- ax.set_title(self.names[i])
-
- # just use the last axis to get handles for plotting
- handles, labels = ax.get_legend_handles_labels()
- fig.legend(handles, labels, loc='upper right')
- plotting.adjust_subplots(right=0.85)
-
-#-------------------------------------------------------------------------------
-
-def _compute_acov(x, nlags=1):
- x = x - x.mean(0)
-
- result = []
- for lag in xrange(nlags + 1):
- if lag > 0:
- r = np.dot(x[lag:].T, x[:-lag])
- else:
- r = np.dot(x.T, x)
-
- result.append(r)
-
- return np.array(result) / len(x)
-
-def _acovs_to_acorrs(acovs):
- sd = np.sqrt(np.diag(acovs[0]))
- return acovs / np.outer(sd, sd)
-
-if __name__ == '__main__':
- import scikits.statsmodels.api as sm
- from scikits.statsmodels.tsa.vector_ar.util import parse_lutkepohl_data
- import scikits.statsmodels.tools.data as data_util
-
- np.set_printoptions(linewidth=140, precision=5)
-
- sdata, dates = parse_lutkepohl_data('data/%s.dat' % 'e1')
-
- names = sdata.dtype.names
- data = data_util.struct_to_ndarray(sdata)
- adj_data = np.diff(np.log(data), axis=0)
- # est = VAR(adj_data, p=2, dates=dates[1:], names=names)
- model = VAR(adj_data[:-16], dates=dates[1:-16], names=names)
- # model = VAR(adj_data[:-16], dates=dates[1:-16], names=names)
-
- est = model.fit(maxlags=2)
- irf = est.irf()
-
- y = est.y[-2:]
- """
- # irf.plot_irf()
-
- # i = 2; j = 1
- # cv = irf.cum_effect_cov(orth=True)
- # print np.sqrt(cv[:, j * 3 + i, j * 3 + i]) / 1e-2
-
- # data = np.genfromtxt('Canada.csv', delimiter=',', names=True)
- # data = data.view((float, 4))
- """
-
- '''
- mdata = sm.datasets.macrodata.load().data
- mdata2 = mdata[['realgdp','realcons','realinv']]
- names = mdata2.dtype.names
- data = mdata2.view((float,3))
- data = np.diff(np.log(data), axis=0)
-
- import pandas as pn
- df = pn.DataFrame.fromRecords(mdata)
- df = np.log(df.reindex(columns=names))
- df = (df - df.shift(1)).dropIncompleteRows()
-
- model = VAR(df)
- est = model.fit(maxlags=2)
- irf = est.irf()
- '''
diff --git a/statsmodels/scikits/statsmodels/version.py b/statsmodels/scikits/statsmodels/version.py
deleted file mode 100644
index 50560e6..0000000
--- a/statsmodels/scikits/statsmodels/version.py
+++ /dev/null
@@ -1,10 +0,0 @@
-
-# THIS FILE IS GENERATED FROM SETUP.PY
-short_version = '0.4.0'
-version = '0.4.0'
-full_version = '0.4.0.dev-98decf2'
-git_revision = '98decf2e6a3ee53cb99c17d139352994fc0bb6de'
-release = False
-
-if not release:
- version = full_version
diff --git a/statsmodels/setup.cfg b/statsmodels/setup.cfg
deleted file mode 100644
index e69de29..0000000
diff --git a/statsmodels/setup.py b/statsmodels/setup.py
deleted file mode 100644
index a540407..0000000
--- a/statsmodels/setup.py
+++ /dev/null
@@ -1,207 +0,0 @@
-"""
-setuptools must be installed first. If you do not have setuptools installed
-please download and install it from http://pypi.python.org/pypi/setuptools
-"""
-
-import os
-import sys
-import subprocess
-import setuptools
-from numpy.distutils.core import setup
-import numpy
-
-compile_cython = 0
-if "--with-cython" in sys.argv:
- compile_cython = 1
- sys.argv.remove('--with-cython')
-
-curdir = os.path.abspath(os.path.dirname(__file__))
-README = open(os.path.join(curdir, "README.txt")).read()
-CHANGES = open(os.path.join(curdir, "CHANGES.txt")).read()
-
-DISTNAME = 'scikits.statsmodels'
-DESCRIPTION = 'Statistical computations and models for use with SciPy'
-LONG_DESCRIPTION = README + '\n\n' + CHANGES
-MAINTAINER = 'Skipper Seabold, Josef Perktold'
-MAINTAINER_EMAIL ='pystatsmodels@googlegroups.com'
-URL = 'http://statsmodels.sourceforge.net/'
-LICENSE = 'BSD License'
-DOWNLOAD_URL = ''
-
-MAJ = 0
-MIN = 4
-REV = 0
-ISRELEASED = False
-VERSION = '%d.%d.%d' % (MAJ,MIN,REV)
-
-classifiers = [ 'Development Status :: 4 - Beta',
- 'Environment :: Console',
- 'Programming Language :: Python :: 2.5',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3.2',
- 'Operating System :: OS Independent',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: BSD License',
- 'Topic :: Scientific/Engineering']
-
-# Return the git revision as a string
-def git_version():
- def _minimal_ext_cmd(cmd):
- # construct minimal environment
- env = {}
- for k in ['SYSTEMROOT', 'PATH']:
- v = os.environ.get(k)
- if v is not None:
- env[k] = v
- # LANGUAGE is used on win32
- env['LANGUAGE'] = 'C'
- env['LANG'] = 'C'
- env['LC_ALL'] = 'C'
- out = subprocess.Popen(" ".join(cmd), stdout = subprocess.PIPE, env=env,
- shell=True).communicate()[0]
- return out
-
- try:
- out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
- GIT_REVISION = out.strip().decode('ascii')
- except OSError:
- GIT_REVISION = "Unknown"
-
- return GIT_REVISION
-
-def write_version_py(filename='scikits/statsmodels/version.py'):
- cnt = """
-# THIS FILE IS GENERATED FROM SETUP.PY
-short_version = '%(version)s'
-version = '%(version)s'
-full_version = '%(full_version)s'
-git_revision = '%(git_revision)s'
-release = %(isrelease)s
-
-if not release:
- version = full_version
-"""
- # Adding the git rev number needs to be done inside write_version_py(),
- # otherwise the import of numpy.version messes up the build under Python 3.
- FULLVERSION = VERSION
- dowrite = True
- if os.path.exists('.git'):
- GIT_REVISION = git_version()
- elif os.path.exists(filename):
- # must be a source distribution, use existing version file
- try:
- from scikits.statsmodels.version import git_revision as GIT_REVISION
- print "debug import success GIT_REVISION", GIT_REVISION
- except ImportError:
- dowrite = False
- #changed: if we are not in a git repository then don't update version.py
-## raise ImportError("Unable to import git_revision. Try removing " \
-## "scikits/statsmodels/version.py and the build directory " \
-## "before building.")
- else:
- GIT_REVISION = "Unknown"
-
- if not ISRELEASED:
- FULLVERSION += '.dev-' + GIT_REVISION[:7]
-
-
- if dowrite:
- a = open(filename, 'w')
- try:
- a.write(cnt % {'version': VERSION,
- 'full_version' : FULLVERSION,
- 'git_revision' : GIT_REVISION,
- 'isrelease': str(ISRELEASED)})
- finally:
- a.close()
-
-def configuration(parent_package='', top_path=None, package_name=DISTNAME):
- #if os.path.fexists('MANIFEST'): os.remove('MANIFEST')
-
- from numpy.distutils.misc_util import Configuration
- config = Configuration(None, parent_package, top_path,
- namespace_packages = ['scikits'],
- name = DISTNAME,
- version = VERSION,
- maintainer = MAINTAINER,
- maintainer_email = MAINTAINER_EMAIL,
- description = DESCRIPTION,
- license = LICENSE,
- url = URL,
- download_url = DOWNLOAD_URL,
- long_description = LONG_DESCRIPTION)
- config.add_subpackage('scikits')
- config.add_data_files('scikits/__init__.py')
- config.add_data_dir('scikits/statsmodels/tests')
- config.add_data_dir('scikits/statsmodels/examples')
- config.add_data_dir('scikits/statsmodels/sandbox/examples')
- config.add_data_dir('scikits/statsmodels/docs')
- config.add_data_dir('scikits/statsmodels/iolib/tests')
- config.add_data_dir('scikits/statsmodels/discrete/tests')
- config.add_data_dir('scikits/statsmodels/genmod/tests')
- config.add_data_dir('scikits/statsmodels/regression/tests')
- config.add_data_dir('scikits/statsmodels/robust/tests')
- config.add_data_dir('scikits/statsmodels/tsa/vector_ar/tests')
- config.add_data_dir('scikits/statsmodels/tsa/filters/tests')
- config.add_data_files('scikits/statsmodels/docs/build/htmlhelp/statsmodelsdoc.chm')
- config.add_data_files('scikits/statsmodels/iolib/tests/results/macrodata.npy')
- config.add_data_dir('scikits/statsmodels/nonparametric/tests')
- vardatafiles = [os.path.join(r,d) for r,ds,f in \
- os.walk('scikits/statsmodels/tsa/vector_ar/data')
- for d in f if not os.path.splitext(d)[1] in ['.py',
- '.pyc']]
- for f in vardatafiles:
- config.add_data_files(f)
- extradatafiles = [os.path.join(r,d) for r,ds,f in \
- os.walk('scikits/statsmodels/datasets')
- for d in f if not os.path.splitext(d)[1] in
- ['.py', '.pyc']]
- for f in extradatafiles:
- config.add_data_files(f)
- tsaresultsfiles = [os.path.join(r,d) for r,ds,f in \
- os.walk('scikits/statsmodels/tsa/tests/results') for \
- d in f if not os.path.splitext(d)[1] in ['.py',
- '.do', '.pyc', '.swp']]
- for f in tsaresultsfiles:
- config.add_data_files(f)
- kderesultsfiles = [os.path.join(r,d) for r,ds,f in \
- os.walk('scikits/statsmodels/nonparametric/tests/results') for \
- d in f if not os.path.splitext(d)[1] in ['.py',
- '.do', '.pyc', '.swp']]
- for f in kderesultsfiles:
- config.add_data_files(f)
-
-
- if compile_cython:
- config.add_extension('tsa/kalmanf/kalman_loglike',
- sources = ['scikits/statsmodels/tsa/kalmanf/kalman_loglike.c'],
- include_dirs=[numpy.get_include()])
-
- #config.add_subpackage(DISTNAME)
- #config.add_subpackage('scikits/statsmodels/examples')
- #config.add_subpackage('scikits/statsmodels/tests')
-
-
- config.set_options(
- ignore_setup_xxx_py = True,
- assume_default_configuration = True,
- delegate_options_to_subpackages = True,
- quiet = False,
- )
-
- return config
-
-if __name__ == "__main__":
- write_version_py()
- setup(configuration = configuration,
- #name = DISTNAME,
- install_requires = ['pandas >= 0.3.0'],
- namespace_packages = ['scikits'],
- packages = setuptools.find_packages(),
- include_package_data = True,
- test_suite="nose.collector",
- zip_safe = False, # the package can not run out of an .egg file bc of
- # nose tests
- classifiers = classifiers)
diff --git a/statsmodels/stderr.npy b/statsmodels/stderr.npy
deleted file mode 100644
index dbe26ed..0000000
Binary files a/statsmodels/stderr.npy and /dev/null differ
diff --git a/statsmodels/tools/R2nparray/DESCRIPTION b/statsmodels/tools/R2nparray/DESCRIPTION
deleted file mode 100644
index 4dce7bc..0000000
--- a/statsmodels/tools/R2nparray/DESCRIPTION
+++ /dev/null
@@ -1,10 +0,0 @@
-Package: R2nparray
-Version: 0.1
-Date: 2011-08-23
-Title: R to Numpy Arrays
-Author: Skipper Seabold
-Maintainer: Skipper Seabold
-Description: Writes R matrices, vectors, and scalars to a file as numpy arrays
-License: BSD
-URL: http://www.github.com/statsmodels/statsmodels
-Repository: github
diff --git a/statsmodels/tools/R2nparray/R/R2nparray.R b/statsmodels/tools/R2nparray/R/R2nparray.R
deleted file mode 100644
index 05ba3b7..0000000
--- a/statsmodels/tools/R2nparray/R/R2nparray.R
+++ /dev/null
@@ -1,39 +0,0 @@
-# This function respects the digits option
-
-mkarray <- function(X, name) {
- cat(name); cat(" = np.array(["); cat(X, sep=","); cat("])")
- if (is.matrix(X)) {
- i <- as.character(nrow(X))
- j <- as.character(ncol(X))
- cat(".reshape("); cat(i); cat(","); cat(j); cat(", order='F')")
- }
- cat("\n\n")
-}
-
-R2nparray <- function(..., fname, append=FALSE) {
- if (!is.list(...)) {
- to_write <- list(...)
- }
- else {
- to_write <- (...)
- }
- sink(file=fname, append=append)
- # assumes appended file already imports numpy
- if (file.info(fname)$size == 0) {
- cat("import numpy as np\n\n")
- }
- for (i in c(1:length(to_write))) {
- name <- names(to_write)[i]
- X <- to_write[[i]]
- name <- gsub("\\.", "_", name) # make name pythonic
- mkarray(X=X, name=name)
- }
- sink()
-}
-
-
-
-#fname <- "RResults.py"
-#R2array(A=A,B=B,params=params,fname=fname)
-#also takes a lsit
-#R2array(list(A=A,B=B,params=params),fname=fname)
diff --git a/statsmodels/tools/R2nparray/R/R2nparray.Rd b/statsmodels/tools/R2nparray/R/R2nparray.Rd
deleted file mode 100644
index fc2707a..0000000
--- a/statsmodels/tools/R2nparray/R/R2nparray.Rd
+++ /dev/null
@@ -1,80 +0,0 @@
-\name{R2nparray}
-\alias{R2nparray}
-%- Also NEED an '\alias' for EACH other topic documented here.
-\title{
-%% ~~function to do ... ~~
-}
-\description{
-%% ~~ A concise (1-5 lines) description of what the function does. ~~
-}
-\usage{
-R2nparray(..., fname, append = FALSE)
-}
-%- maybe also 'usage' for other objects documented here.
-\arguments{
- \item{\dots}{
-%% ~~Describe \code{\dots} here~~
-}
- \item{fname}{
-%% ~~Describe \code{fname} here~~
-}
- \item{append}{
-%% ~~Describe \code{append} here~~
-}
-}
-\details{
-%% ~~ If necessary, more details than the description above ~~
-}
-\value{
-%% ~Describe the value returned
-%% If it is a LIST, use
-%% \item{comp1 }{Description of 'comp1'}
-%% \item{comp2 }{Description of 'comp2'}
-%% ...
-}
-\references{
-%% ~put references to the literature/web site here ~
-}
-\author{
-%% ~~who you are~~
-}
-\note{
-%% ~~further notes~~
-}
-
-%% ~Make other sections like Warning with \section{Warning }{....} ~
-
-\seealso{
-%% ~~objects to See Also as \code{\link{help}}, ~~~
-}
-\examples{
-##---- Should be DIRECTLY executable !! ----
-##-- ==> Define data, use random,
-##-- or do help(data=index) for the standard data sets.
-
-## The function is currently defined as
-function(..., fname, append=FALSE) {
- if (!is.list(...)) {
- to_write <- list(...)
- }
- else {
- to_write <- (...)
- }
- sink(file=fname, append=append)
- # assumes appended file already imports numpy
- if (file.info(fname)$size == 0) {
- cat("import numpy as np\n\n")
- }
- for (i in c(1:length(to_write))) {
- name <- names(to_write)[i]
- X <- to_write[[i]]
- name <- gsub("\\.", "_", name) # make name pythonic
- mkarray(X=X, name=name)
- }
- sink()
- }
-}
-% Add one or more standard keywords, see file 'KEYWORDS' in the
-% R documentation directory.
-\keyword{ ~kwd1 }
-\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
diff --git a/statsmodels/tools/R2nparray/README b/statsmodels/tools/R2nparray/README
deleted file mode 100644
index 686812d..0000000
--- a/statsmodels/tools/R2nparray/README
+++ /dev/null
@@ -1,3 +0,0 @@
-To install run in the parent of this directory
-
- R CMD INSTALL R2nparray
diff --git a/statsmodels/tools/R2nparray/man/R2nparray.Rd b/statsmodels/tools/R2nparray/man/R2nparray.Rd
deleted file mode 100644
index cf3a67f..0000000
--- a/statsmodels/tools/R2nparray/man/R2nparray.Rd
+++ /dev/null
@@ -1,65 +0,0 @@
-\name{R2nparray}
-\alias{R2nparray}
-%- Also NEED an '\alias' for EACH other topic documented here.
-\title{Write R data to file as Numpy Arrays
-%% ~~function to do ... ~~
-}
-\description{Takes a matrix, scalar, or vector in R and dumps it to a file
-as a NumPy array.
-%% ~~ A concise (1-5 lines) description of what the function does. ~~
-}
-\usage{
-R2nparray(..., fname, append = FALSE)
-}
-%- maybe also 'usage' for other objects documented here.
-\arguments{
- \item{\dots}{Scalars, vectors, or matrices. Can be part of a list or not.
-%% ~~Describe \code{\dots} here~~
-}
- \item{fname}{Filename to write the arrays to.
-%% ~~Describe \code{fname} here~~
-}
- \item{append}{Whether or not to append to an existing file or overwrite it.
-%% ~~Describe \code{append} here~~
-}
-}
-\details{The names of the arugments are the names of the arrays in the file.
-%% ~~ If necessary, more details than the description above ~~
-}
-\value{
-%% ~Describe the value returned
-%% If it is a LIST, use
-%% \item{comp1 }{Description of 'comp1'}
-%% \item{comp2 }{Description of 'comp2'}
-%% ...
-}
-\references{
-%% ~put references to the literature/web site here ~
-}
-\author{Skipper Seabold
-%% ~~who you are~~
-}
-\note{
-%% ~~further notes~~
-}
-
-%% ~Make other sections like Warning with \section{Warning }{....} ~
-
-\seealso{
-%% ~~objects to See Also as \code{\link{help}}, ~~~
-}
-\examples{
-mdat <- matrix(c(1,2,3, 11,12,13), nrow = 2, ncol=3)
-scalar <- 127.5
-vec <- c(1,2,3)
-
-R2nparray(mdat=mdat, myscalar=scalar, vec=vec, fname="./numpyarrays")
-
-# or use a list
-
-lst = list(mdat=mdat, myscalar=scalar, vec=vec)
-R2nparray(lst, fname="./numpyarrays")
-}
-% Add one or more standard keywords, see file 'KEYWORDS' in the
-% R documentation directory.
-\keyword{ IO }
diff --git a/statsmodels/tools/README.txt b/statsmodels/tools/README.txt
deleted file mode 100644
index fc07ec6..0000000
--- a/statsmodels/tools/README.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-This directory is only of interest to developers. It contains files needed to build the docs
-automatically and to do code maintenance.
-
-How to update the main entry page
----------------------------------
-
-If you want to update the main docs page from the most recent release then from the docs directory
-run the following (with your credentials).
-
-make clean
-make html
-rsync -avPr -e ssh build/html/* jseabold,statsmodels@web.sourceforge.net:htdocs/
-
-How to update the nightly builds
---------------------------------
-Note that this is done automatically with the update_web.py script except for
-new releases. They should be done by hand if there are any backported changes.
-
-Important: Make sure you have the version installed for which you are building
-the documentation.
-
-To update devel branch (from the master branch)
-
-Make sure you have master installed
-cd to docs directory
-make clean
-make html
-
-rsync -avPr -e ssh build/html/* jseabold,statsmodels@web.sourceforge.net:htdocs/devel
-
-How to add a new directory
----------------------------
-If you want to create a new directory on the sourceforge site.
-This can be done on linux as follows
-
-sftp jseabold,statsmodels@web.sourceforge.net
-
-
-mkdir 0.2release
-bye
-
-Then make sure you have the release installed, cd to the docs directory and run
-
-make clean
-make html
-
-rsync -avPr -e ssh build/html/* jseabold,statsmodels@web.sourceforge.net:htdocs/0.2release
diff --git a/statsmodels/tools/code_maintenance.py b/statsmodels/tools/code_maintenance.py
deleted file mode 100644
index d3f3ae1..0000000
--- a/statsmodels/tools/code_maintenance.py
+++ /dev/null
@@ -1,84 +0,0 @@
-"""
-Code maintenance script modified from PyMC
-"""
-
-#!/usr/bin/env python
-import sys
-import os
-
-# This is a function, not a test case, because it has to be run from inside
-# the source tree to work well.
-
-mod_strs = ['IPython', 'pylab', 'matplotlib', 'scipy','Pdb']
-
-dep_files = {}
-for mod_str in mod_strs:
- dep_files[mod_str] = []
-
-def remove_whitespace(fname):
- # Remove trailing whitespace
- fd = open(fname,mode='U') # open in universal newline mode
- lines = []
- for line in fd.readlines():
- lines.append( line.rstrip() )
- fd.close()
-
- fd = open(fname,mode='w')
- fd.seek(0)
- for line in lines:
- fd.write(line+'\n')
- fd.close()
- # print 'Removed whitespace from %s'%fname
-
-def find_whitespace(fname):
- fd = open(fname, mode='U')
- for line in fd.readlines():
- #print repr(line)
- if ' \n' in line:
- print fname
- break
-
-
-# print
-print_only = True
-
-# ====================
-# = Strip whitespace =
-# ====================
-for dirname, dirs, files in os.walk('.'):
- if dirname[1:].find('.')==-1:
- # print dirname
- for fname in files:
- if fname[-2:] in ['c', 'f'] or fname[-3:]=='.py' or fname[-4:] in ['.pyx', '.txt', '.tex', '.sty', '.cls'] or fname.find('.')==-1:
- # print fname
- if print_only:
- find_whitespace(dirname + '/' + fname)
- else:
- remove_whitespace(dirname + '/' + fname)
-
-
-"""
-
-# ==========================
-# = Check for dependencies =
-# ==========================
-for dirname, dirs, files in os.walk('pymc'):
- for fname in files:
- if fname[-3:]=='.py' or fname[-4:]=='.pyx':
- if dirname.find('sandbox')==-1 and fname != 'test_dependencies.py'\
- and dirname.find('examples')==-1:
- for mod_str in mod_strs:
- if file(dirname+'/'+fname).read().find(mod_str)>=0:
- dep_files[mod_str].append(dirname+'/'+fname)
-
-
-print 'Instances of optional dependencies found are:'
-for mod_str in mod_strs:
- print '\t'+mod_str+':'
- for fname in dep_files[mod_str]:
- print '\t\t'+fname
-if len(dep_files['Pdb'])>0:
- raise ValueError, 'Looks like Pdb was not commented out in '+', '.join(dep_files[mod_str])
-
-
-"""
diff --git a/statsmodels/tools/dataset_rst.py b/statsmodels/tools/dataset_rst.py
deleted file mode 100644
index d5adab2..0000000
--- a/statsmodels/tools/dataset_rst.py
+++ /dev/null
@@ -1,54 +0,0 @@
-#! /usr/bin/env python
-"""
-Run this script to convert dataset documentation to ReST files. Relies
-on the meta-information from the datasets of the currently installed version.
-Ie., it imports the datasets package to scrape the meta-information.
-"""
-
-import scikits.statsmodels.api as sm
-import os
-from os.path import join
-import inspect
-from string import Template
-
-datasets = dict(inspect.getmembers(sm.datasets, inspect.ismodule))
-datasets.pop('datautils')
-datasets.pop('nile') #TODO: fix docstring in nile
-
-doc_template = Template(u"""$TITLE
-$title_
-
-Description
------------
-
-$DESCRIPTION
-
-Notes
------
-$NOTES
-
-Source
-------
-$SOURCE
-
-Copyright
----------
-
-$COPYRIGHT
-""")
-
-for dataset in datasets:
- write_pth = join('../scikits/statsmodels/docs/source/datasets/generated',
- dataset+'.rst')
- data_mod = datasets[dataset]
- with open(os.path.realpath(write_pth), 'w') as rst_file:
- title = getattr(data_mod,'TITLE')
- descr = getattr(data_mod, 'DESCRLONG')
- copyr = getattr(data_mod, 'COPYRIGHT')
- notes = getattr(data_mod, 'NOTE')
- source = getattr(data_mod, 'SOURCE')
- write_file = doc_template.substitute(TITLE=title,
- title_='='*len(title),
- DESCRIPTION=descr, NOTES=notes,
- SOURCE=source, COPYRIGHT=copyr)
- rst_file.write(write_file)
diff --git a/statsmodels/tools/mat2nparray.ado b/statsmodels/tools/mat2nparray.ado
deleted file mode 100644
index bd7f6f3..0000000
--- a/statsmodels/tools/mat2nparray.ado
+++ /dev/null
@@ -1,50 +0,0 @@
-capture program drop mat2array
-program define mat2array
- version 11.2
- syntax namelist(min=1), SAVing(str) [ Format(str) APPend REPlace ]
- if "`format'"=="" local format "%16.0g"
- local saving: subinstr local saving "." ".", count(local ext)
- if !`ext' local saving "`saving'.py"
- tempname myfile
- file open `myfile' using "`saving'", write text `append' `replace'
- file write `myfile' "import numpy as np" _n _n
-
- foreach mat of local namelist {
- mkarray `mat' `myfile' `format'
- }
-file close `myfile'
-end
-
-capture program drop mkarray
-program define mkarray
-
- args mat myfile fmt
- local nrows = rowsof(`mat')
- local ncols = colsof(`mat')
- local i 1
- local j 1
- file write `myfile' "`mat' = np.array(["
- local justifyn = length("`mat' = np.array([")
- forvalues i=1/`nrows' {
- forvalues j = 1/`ncols' {
- if `i' > 1 | `j' > 1 { // then we need to indent
- forvalues k=1/`justifyn' {
- file write `myfile' " "
- }
- }
- if `i' < `nrows' | `j' < `ncols' {
- file write `myfile' `fmt' (`mat'[`i',`j']) ", " _n
- }
- else {
- file write `myfile' `fmt' (`mat'[`i',`j'])
- }
- }
- }
-
- if `nrows' == 1 | `ncols' == 1 {
- file write `myfile' "])" _n _n
- }
- else {
- file write `myfile' "]).reshape(`nrows',`ncols')" _n _n
- }
-end
\ No newline at end of file
diff --git a/statsmodels/tools/migrate_issues_gh.py b/statsmodels/tools/migrate_issues_gh.py
deleted file mode 100644
index 9ff6c16..0000000
--- a/statsmodels/tools/migrate_issues_gh.py
+++ /dev/null
@@ -1,371 +0,0 @@
-#!/usr/bin/env python
-"""Launchpad to github bug migration script.
-
-There's a ton of code from Hydrazine copied here:
-https://launchpad.net/hydrazine
-
-
-Usage
------
-
-This code is meant to port a bug database for a project from Launchpad to
-GitHub. It was used to port the IPython bug history.
-
-The code is meant to be used interactively. I ran it multiple times in one long
-IPython session, until the data structures I was getting from Launchpad looked
-right. Then I turned off (see 'if 0' markers below) the Launchpad part, and ran
-it again with the github part executing and using the 'bugs' variable from my
-interactive namespace (via"%run -i" in IPython).
-
-This code is NOT fire and forget, it's meant to be used with some intelligent
-supervision at the wheel. Start by making a test repository (I made one called
-ipython/BugsTest) and upload only a few issues into that. Once you are sure
-that everything is OK, run it against your real repo with all your issues.
-
-You should read all the code below and roughly understand what's going on
-before using this. Since I didn't intend to use this more than once, it's not
-particularly robust or documented. It got the job done and I've never used it
-again.
-
-Configuration
--------------
-
-To pull things off LP, you need to log in first (see the Hydrazine docs). Your
-Hydrazine credentials will be cached locally and this script can reuse them.
-
-To push to GH, you need to set below the GH repository owner, API token and
-repository name you wan to push issues into. See the GH section for the
-necessary variables.
-"""
-
-import collections
-import os.path
-import subprocess
-import sys
-import time
-
-from pprint import pformat
-
-import launchpadlib
-from launchpadlib.credentials import Credentials
-from launchpadlib.launchpad import (
- Launchpad, STAGING_SERVICE_ROOT, EDGE_SERVICE_ROOT )
-
-#-----------------------------------------------------------------------------
-# Launchpad configuration
-#-----------------------------------------------------------------------------
-# The official LP project name
-PROJECT_NAME = 'statsmodels'
-
-# How LP marks your bugs, I don't know where this is stored, but they use it to
-# generate bug descriptions and we need to split on this string to create
-# shorter Github bug titles
-PROJECT_ID = 'statsmodels'
-
-# Default Launchpad server, see their docs for details
-service_root = EDGE_SERVICE_ROOT
-
-#-----------------------------------------------------------------------------
-# Code copied/modified from Hydrazine (https://launchpad.net/hydrazine)
-#-----------------------------------------------------------------------------
-
-# Constants for the names in LP of certain
-lp_importances = ['Critical', 'High', 'Medium', 'Low', 'Wishlist', 'Undecided']
-
-lp_status = ['Confirmed', 'Triaged', 'Fix Committed', 'Fix Released',
- 'In Progress',"Won't Fix", "Incomplete", "Invalid", "New"]
-
-def squish(a):
- return a.lower().replace(' ', '_').replace("'",'')
-
-lp_importances_c = set(map(squish, lp_importances))
-lp_status_c = set(map(squish, lp_status))
-
-def trace(s):
- sys.stderr.write(s + '\n')
-
-
-def create_session():
- lplib_cachedir = os.path.expanduser("~/.cache/launchpadlib/")
- hydrazine_cachedir = os.path.expanduser("~/.cache/hydrazine/")
- rrd_dir = os.path.expanduser("~/.cache/hydrazine/rrd")
- for d in [lplib_cachedir, hydrazine_cachedir, rrd_dir]:
- if not os.path.isdir(d):
- os.makedirs(d, mode=0700)
-
- hydrazine_credentials_filename = os.path.join(hydrazine_cachedir,
- 'credentials')
- if os.path.exists(hydrazine_credentials_filename):
- credentials = Credentials()
- credentials.load(file(
- os.path.expanduser("~/.cache/hydrazine/credentials"),
- "r"))
- trace('loaded existing credentials')
- return Launchpad(credentials, service_root,
- lplib_cachedir)
- # TODO: handle the case of having credentials that have expired etc
- else:
- launchpad = Launchpad.get_token_and_login(
- 'Hydrazine',
- service_root,
- lplib_cachedir)
- trace('saving credentials...')
- launchpad.credentials.save(file(
- hydrazine_credentials_filename,
- "w"))
- return launchpad
-
-def canonical_enum(entered, options):
- entered = squish(entered)
- return entered if entered in options else None
-
-def canonical_importance(from_importance):
- return canonical_enum(from_importance, lp_importances_c)
-
-def canonical_status(entered):
- return canonical_enum(entered, lp_status_c)
-
-#-----------------------------------------------------------------------------
-# Functions and classes
-#-----------------------------------------------------------------------------
-
-class Base(object):
- def __str__(self):
- a = dict([(k,v) for (k,v) in self.__dict__.iteritems()
- if not k.startswith('_')])
- return pformat(a)
-
- __repr__ = __str__
-
-
-class Message(Base):
- def __init__(self, m):
- self.content = m.content
- o = m.owner
- self.owner = o.name
- self.owner_name = o.display_name
- self.date = m.date_created
-
-class Bug(Base):
- def __init__(self, bt):
- # Cache a few things for which launchpad will make a web request each
- # time.
- bug = bt.bug
- o = bt.owner
- a = bt.assignee
- dupe = bug.duplicate_of
- # Store from the launchpadlib bug objects only what we want, and as
- # local data
- self.id = bug.id
- self.lp_url = 'https://bugs.launchpad.net/%s/+bug/%i' % \
- (PROJECT_NAME, self.id)
- self.title = bt.title
- self.description = bug.description
- # Every bug has an owner (who created it)
- self.owner = o.name
- self.owner_name = o.display_name
- # Not all bugs have been assigned to someone yet
- try:
- self.assignee = a.name
- self.assignee_name = a.display_name
- except AttributeError:
- self.assignee = self.assignee_name = None
- # Store status/importance in canonical format
- self.status = canonical_status(bt.status)
- self.importance = canonical_importance(bt.importance)
- self.tags = bug.tags
- # Store the bug discussion messages, but skip m[0], which is the same
- # as the bug description we already stored
- self.messages = map(Message, list(bug.messages)[1:])
- self.milestone = getattr(bt.milestone, 'name', None)
-
- # Duplicate handling disabled, since the default query already filters
- # out the duplicates. Keep the code here in case we ever want to look
- # into this...
- if 0:
- # Track duplicates conveniently
- try:
- self.duplicate_of = dupe.id
- self.is_duplicate = True
- except AttributeError:
- self.duplicate_of = None
- self.is_duplicate = False
-
- # dbg dupe info
- if bug.number_of_duplicates > 0:
- self.duplicates = [b.id for b in bug.duplicates]
- else:
- self.duplicates = []
-
- # tmp - debug
- self._bt = bt
- self._bug = bug
-
-#-----------------------------------------------------------------------------
-# Main script
-#-----------------------------------------------------------------------------
-
-#-----------------------------------------------------------------------------
-# Launchpad part
-#-----------------------------------------------------------------------------
-# launchpad = create_session()
-launchpad = Launchpad.login_with('statsmodels', 'production')
-project = launchpad.projects[PROJECT_NAME]
-# Note: by default, this will give us all bugs except duplicates and those
-# with status "won't fix" or 'invalid'
-bug_tasks = project.searchTasks(status=lp_status)
-
-bugs = {}
-for bt in list(bug_tasks):
- b = Bug(bt)
- bugs[b.id] = b
- print b.title
- sys.stdout.flush()
-
-#-----------------------------------------------------------------------------
-# Github part
-#-----------------------------------------------------------------------------
-#http://pypi.python.org/pypi/github2
-#http://github.com/ask/python-github2
-# Github libraries
-from github2 import core, issues, client
-for mod in (core, issues, client):
- reload(mod)
-
-
-def format_title(bug):
- return bug.title.split('{0}: '.format(PROJECT_ID), 1)[1].strip('"')
-
-
-def format_body(bug):
- body = \
-"""Original Launchpad bug {bug.id}: {bug.lp_url}
-Reported by: {bug.owner} ({owner_name}).
-
-{description}""".format(bug=bug, owner_name=bug.owner_name.encode('utf-8'),
- description=bug.description.encode('utf-8'))
- return body
-
-
-def format_message(num, m):
- body = \
-"""[ LP comment {num} by: {owner_name}, on {m.date!s} ]
-
-{content}""".format(num=num, m=m, owner_name=m.owner_name.encode('utf-8'),
- content=m.content.encode('utf-8'))
- return body
-
-
-# Config
-user = 'wesm'
-token= '12efaff85b8e17f63ee835c5632b8cf0'
-
-repo = 'statsmodels/statsmodels'
-#repo = 'ipython/ipython'
-
-# Skip bugs with this status:
-# to_skip = set([u'fix_committed', u'incomplete'])
-to_skip = set()
-
-# Only label these importance levels:
-gh_importances = set([u'critical', u'high', u'low', u'medium', u'wishlist'])
-
-# Start script
-gh = client.Github(username=user, api_token=token)
-
-# Filter out the full LP bug dict to process only the ones we want
-bugs_todo = dict( (id, b) for (id, b) in bugs.iteritems()
- if not b.status in to_skip )
-
-# Select which bug ids to run
-#bids = bugs_todo.keys()[50:100]
-# bids = bugs_todo.keys()[12:]
-
-bids = bugs_todo.keys()
-#bids = bids[:5]+[502787]
-
-# Start loop over bug ids and file them on Github
-nbugs = len(bids)
-gh_issues = [] # for reporting at the end
-for n, bug_id in enumerate(bids):
- bug = bugs[bug_id]
- title = format_title(bug)
- body = format_body(bug)
-
- print
- if len(title)<65:
- print bug.id, '[{0}/{1}]'.format(n+1, nbugs), title
- else:
- print bug.id, title[:65]+'...'
-
- # still check bug.status, in case we manually added other bugs to the list
- # above (mostly during testing)
- if bug.status in to_skip:
- print '--- Skipping - status:',bug.status
- continue
-
- print '+++ Filing...',
- sys.stdout.flush()
-
- # Create github issue for this bug
- issue = gh.issues.open(repo, title=title, body=body)
- print 'created GitHub #', issue.number
- gh_issues.append(issue.number)
- sys.stdout.flush()
-
- # Mark status as a label
- #status = 'status-{0}'.format(b.status)
- #gh.issues.add_label(repo, issue.number, status)
-
- # Mark any extra tags we might have as labels
- for tag in b.tags:
- label = 'tag-{0}'.format(tag)
- gh.issues.add_label(repo, issue.number, label)
-
- # If bug has assignee, add it as label
- if bug.assignee:
- gh.issues.add_label(repo, issue.number,
- #bug.assignee
- # Github bug, gets confused with dots in labels.
- bug.assignee.replace('.','_')
- )
-
- if bug.importance in gh_importances:
- if bug.importance == 'wishlist':
- label = bug.importance
- else:
- label = 'prio-{0}'.format(bug.importance)
- gh.issues.add_label(repo, issue.number, label)
-
- if bug.milestone:
- label = 'milestone-{0}'.format(bug.milestone).replace('.','_')
- gh.issues.add_label(repo, issue.number, label)
-
- # Add original message thread
- for num, message in enumerate(bug.messages):
- # Messages on LP are numbered from 1
- comment = format_message(num+1, message)
- gh.issues.comment(repo, issue.number, comment)
- time.sleep(0.5) # soft sleep after each message to prevent gh block
-
- if bug.status in ['fix_committed', 'fix_released', 'invalid']:
- gh.issues.close(repo, issue.number)
-
- # too many fast requests and gh will block us, so sleep for a while
- # I just eyeballed these values by trial and error.
- time.sleep(1) # soft sleep after each request
- # And longer one after every batch
- batch_size = 10
- tsleep = 60
- if (len(gh_issues) % batch_size)==0:
- print
- print '*** SLEEPING for {0} seconds to avoid github blocking... ***'.format(tsleep)
- sys.stdout.flush()
- time.sleep(tsleep)
-
-# Summary report
-print
-print '*'*80
-print 'Summary of GitHub issues filed:'
-print gh_issues
-print 'Total:', len(gh_issues)
diff --git a/statsmodels/tools/update_web.py b/statsmodels/tools/update_web.py
deleted file mode 100644
index a1014b8..0000000
--- a/statsmodels/tools/update_web.py
+++ /dev/null
@@ -1,263 +0,0 @@
-#!/usr/bin/python
-"""
-This script installs the trunk version, builds the docs, then uploads them
-to ...
-
-Then it installs the devel version, builds the docs, and uploads them to
-...
-
-Depends
--------
-virtualenv
-"""
-import base64
-import subprocess
-import os
-import shutil
-import re
-import smtplib
-import sys
-from email.MIMEText import MIMEText
-
-######### INITIAL SETUP ##########
-
-#hard-coded "curren working directory" ie., you will need file permissions
-#for this folder
-script = os.path.abspath(sys.argv[0])
-dname = os.path.abspath(os.path.dirname(script))
-gname = 'statsmodels'
-gitdname = os.path.join(dname, gname)
-os.chdir(dname)
-
-# hard-coded git branch names
-repo = 'git://github.com/statsmodels/statsmodels.git'
-stable_trunk = 'master'
-last_release = 'v0.3.1'
-#branches = [stable_trunk, last_release]
-#NOTE: just update the releases by hand
-branches = [stable_trunk]
-
-# virtual environment directory
-virtual_dir = 'BUILDENV'
-virtual_dir = os.path.join(dname, virtual_dir)
-# this points to the newly installed python in the virtualenv
-virtual_python = os.path.join(virtual_dir,'bin','python')
-
-
-# my security holes
-with open('/home/skipper/statsmodels/gmail.txt') as f:
- pwd = f.readline().strip()
-gmail_pwd = base64.b64decode(pwd)
-
-########### EMAIL #############
-email_name ='statsmodels.dev' + 'AT' + 'gmail' +'.com'
-email_name = email_name.replace('AT','@')
-gmail_pwd= gmail_pwd
-to_email = [email_name, ('josef.pktd' + 'AT' + 'gmail' + '.com').replace('AT',
-'@')]
-
-
-########### FUNCTIONS ###############
-
-def create_virtualenv():
- # make a virtualenv for installation if it doesn't exist
- # and easy_install sphinx
- if not os.path.exists(virtual_dir):
- retcode = subprocess.call(['/usr/local/bin/virtualenv', virtual_dir])
- if retcode != 0:
- msg = """There was a problem creating the virtualenv"""
- raise Exception(msg)
- retcode = subprocess.call([virtual_dir+'/bin/easy_install', 'sphinx'])
- if retcode != 0:
- msg = """There was a problem installing sphinx"""
- raise Exception(msg)
-
-def create_update_gitdir():
- """
- Creates a directory for local repo if it doesn't exist, updates repo otherwise.
- """
- if not os.path.exists(gitdname):
- retcode = subprocess.call('git clone '+repo, shell=True)
- if retcode != 0:
- msg = """There was a problem cloning the repo"""
- raise Exception(msg)
- else:
- os.chdir(gitdname)
- retcode = subprocess.call('git pull', shell=True)
- if retcode != 0:
- msg = """There was a problem pulling from the repo."""
- raise Exception(msg)
-
-def getdirs():
- """
- Get current directories of cwd in order to restore to this
- """
- dirs = [i for i in os.listdir(dname) if not \
- os.path.isfile(os.path.join(dname, i))]
- return dirs
-
-def newdir(dirs):
- """
- Returns difference in directories between dirs and current directories
-
- If the difference is greater than one directory it raises an error.
- """
- dirs = set(dirs)
- newdirs = set([i for i in os.listdir(dname) if not \
- os.path.isfile(os.path.join(dname,i))])
- newdir = newdirs.difference(dirs)
- if len(newdir) != 1:
- msg = """There was more than one directory created. Don't know what to delete."""
- raise Exception(msg)
- newdir = newdir.pop()
- return newdir
-
-def install_branch(branch):
- """
- Installs the branch in a virtualenv.
- """
-
- # if it's already in the virtualenv, remove it
- ver = '.'.join(map(str,(sys.version_info.major,sys.version_info.minor)))
- sitepack = os.path.join(virtual_dir,'lib','python'+ver, 'site-packages')
- dir_list = os.listdir(sitepack)
- for f in dir_list:
- if 'scikits.statsmodels' in f:
- shutil.rmtree(os.path.join(sitepack, f))
-
- # checkout the branch
- os.chdir(gitdname)
- retcode = subprocess.call('git checkout ' + branch, shell=True)
- if retcode != 0:
- msg = """Could not checkout out branch %s""" % branch
- raise Exception(msg)
-
- # build and install
- retcode = subprocess.call(" ".join([virtual_python, 'setup.py', 'build']),
- shell=True)
- if retcode != 0:
- msg = """ Could not build branch %s""" % branch
- raise Exception(msg)
- retcode = subprocess.call(" ".join([virtual_python, os.path.join(gitdname,
- 'setup.py'), 'install']), shell=True)
- if retcode != 0:
- os.chdir(dname)
- msg = """Could not install branch %s""" % branch
- raise Exception(msg)
- os.chdir(dname)
-
-def build_docs(branch):
- """
- Changes into gitdname and builds the docs using sphinx in the
- BUILDENV virtualenv
- """
- os.chdir(os.path.join(gitdname,'scikits','statsmodels','docs'))
- sphinx_dir = os.path.join(virtual_dir,'bin')
- #NOTE: don't use make.py, just use make and specify which sphinx
- # retcode = subprocess.call([virtual_python,'make.py','html',
- # '--sphinx_dir='+sphinx_dir])
- retcode = subprocess.call(" ".join(['make','html',
- 'SPHINXBUILD='+sphinx_dir+'/sphinx-build']), shell=True)
- if retcode != 0:
- os.chdir(dname)
- msg = """Could not build the html docs for branch %s""" % branch
- raise Exception(msg)
- os.chdir(dname)
-
-def build_pdf(branch):
- """
- Changes into new_branch_dir and builds the docs using sphinx in the
- BUILDENV virtualenv
- """
- os.chdir(os.path.join(gitdname,'scikits','statsmodels','docs'))
- sphinx_dir = os.path.join(virtual_dir,'bin')
- retcode = subprocess.call(" ".join(['make','latexpdf',
- 'SPHINXBUILD='+sphinx_dir+'/sphinx-build']), shell=True)
- if retcode != 0:
- os.chdir(old_cwd)
- msg = """Could not build the pdf docs for branch %s""" % branch
- raise Exception(msg)
- os.chdir(dname)
-
-def upload_docs(branch):
- if branch == 'master':
- remote_dir = 'devel'
- else:
- remote_dir = ''
- # old_cwd = os.getcwd()
- os.chdir(os.path.join(gitdname,'scikits','statsmodels','docs'))
- retcode = subprocess.call(['rsync', '-avPr' ,'-e ssh', 'build/html/',
- 'jseabold,statsmodels@web.sourceforge.net:htdocs/'+remote_dir])
- if retcode != 0:
- os.chdir(old_cwd)
- msg = """Could not upload html to %s for branch %s""" % (remote_dir, branch)
- raise Exception(msg)
- os.chdir(dname)
-
-#TODO: upload pdf is not tested
-def upload_pdf(branch):
- if branch == 'master':
- remote_dir = 'devel'
- else:
- remote_dir = ''
- os.chdir(os.path.join(dname, new_branch_dir,'scikits','statsmodels','docs'))
- retcode = subprocess.call(['rsync', '-avPr', '-e ssh',
- 'build/latex/statsmodels.pdf',
- 'jseabold,statsmodels@web.sourceforge.net:htdocs/'+remote_dir+'pdf/'])
- if retcode != 0:
- os.chdir(old_cwd)
- msg = """Could not upload pdf to %s for branch %s""" % (remote_dir+'/pdf',
- branch)
- raise Exception(msg)
- os.chdir(dname)
-
-
-def email_me(status='ok'):
- if status == 'ok':
- message = """
- HTML Documentation uploaded successfully.
- """
- subject = "Statsmodels HTML Build OK"
- else:
- message = status
- subject = "Statsmodels HTML Build Failed"
-
- msg = MIMEText(message)
- msg['Subject'] = subject
- msg['From'] = email_name
- msg['To'] = email_name
-
- server = smtplib.SMTP('smtp.gmail.com',587)
- server.ehlo()
- server.starttls()
- server.ehlo()
- server.login(email_name, gmail_pwd)
- server.sendmail(email_name, to_email, msg.as_string())
- server.close()
-
-
-############### MAIN ###################
-
-def main():
- # get branch, install in virtualenv, build the docs, upload, and cleanup
- msg = ''
- for branch in branches:
- try:
- #create virtualenv
- create_virtualenv()
- create_update_gitdir()
- install_branch(branch)
- build_docs(branch)
- upload_docs(branch)
- # build_pdf(new_branch_dir)
- # upload_pdf(branch, new_branch_dir)
- except Exception as status:
- msg += status.args[0] + '\n'
-
- if msg == '': # if it doesn't something went wrong and was caught above
- email_me()
- else:
- email_me(msg)
-
-if __name__ == "__main__":
- main()
diff --git a/statsmodels/totobs.npy b/statsmodels/totobs.npy
deleted file mode 100644
index 1ee79b0..0000000
Binary files a/statsmodels/totobs.npy and /dev/null differ
diff --git a/statsmodels/type.npy b/statsmodels/type.npy
deleted file mode 100644
index c4ac733..0000000
Binary files a/statsmodels/type.npy and /dev/null differ